diff --git a/.buildkite/ftr_configs.yml b/.buildkite/ftr_configs.yml index b26b54b767658..10924aaa18785 100644 --- a/.buildkite/ftr_configs.yml +++ b/.buildkite/ftr_configs.yml @@ -32,6 +32,7 @@ disabled: - x-pack/plugins/observability_onboarding/e2e/ftr_config_runner.ts - x-pack/plugins/observability_onboarding/e2e/ftr_config.ts - x-pack/test/osquery_cypress/cli_config.ts + - x-pack/test/osquery_cypress/serverless_cli_config.ts - x-pack/test/osquery_cypress/config.ts - x-pack/test/osquery_cypress/visual_config.ts - x-pack/test/security_solution_cypress/cli_config.ts @@ -265,6 +266,7 @@ enabled: - x-pack/test/functional_with_es_ssl/apps/cases/group2/config.ts - x-pack/test/functional_with_es_ssl/apps/discover_ml_uptime/config.ts - x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/config.ts + - x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/shared/config.ts - x-pack/test/functional/apps/advanced_settings/config.ts - x-pack/test/functional/apps/aiops/config.ts - x-pack/test/functional/apps/api_keys/config.ts @@ -353,7 +355,6 @@ enabled: - x-pack/test/reporting_functional/reporting_and_deprecated_security.config.ts - x-pack/test/reporting_functional/reporting_and_security.config.ts - x-pack/test/reporting_functional/reporting_without_security.config.ts - - x-pack/test/reporting_functional/reporting_and_timeout.config.ts - x-pack/test/rule_registry/security_and_spaces/config_basic.ts - x-pack/test/rule_registry/security_and_spaces/config_trial.ts - x-pack/test/rule_registry/spaces_only/config_basic.ts @@ -418,6 +419,7 @@ enabled: - x-pack/performance/journeys/ecommerce_dashboard_saved_search_only.ts - x-pack/performance/journeys/ecommerce_dashboard_tsvb_gauge_only.ts - x-pack/performance/journeys/dashboard_listing_page.ts + - x-pack/performance/journeys/tags_listing_page.ts - x-pack/performance/journeys/cloud_security_dashboard.ts - x-pack/performance/journeys/apm_service_inventory.ts - x-pack/test/custom_branding/config.ts diff --git a/.buildkite/pipelines/on_merge_unsupported_ftrs.yml b/.buildkite/pipelines/on_merge_unsupported_ftrs.yml index 068c7d9ab223c..30e7929fd6e19 100644 --- a/.buildkite/pipelines/on_merge_unsupported_ftrs.yml +++ b/.buildkite/pipelines/on_merge_unsupported_ftrs.yml @@ -55,25 +55,21 @@ steps: queue: n2-4-spot depends_on: build timeout_in_minutes: 120 - parallelism: 4 + parallelism: 14 retry: automatic: - - exit_status: '-1' - limit: 3 - exit_status: '*' limit: 1 - command: .buildkite/scripts/steps/functional/security_solution_investigations.sh - label: 'Investigations - Security Solution Tests' + label: 'Investigations - Security Solution Cypress Tests' agents: queue: n2-4-spot depends_on: build timeout_in_minutes: 120 - parallelism: 4 + parallelism: 6 retry: automatic: - - exit_status: '-1' - limit: 3 - exit_status: '*' limit: 1 @@ -86,11 +82,9 @@ steps: parallelism: 2 retry: automatic: - - exit_status: '-1' - limit: 3 - exit_status: '*' limit: 1 - + - command: .buildkite/scripts/steps/functional/defend_workflows.sh label: 'Defend Workflows Cypress Tests' agents: @@ -100,8 +94,6 @@ steps: parallelism: 2 retry: automatic: - - exit_status: '-1' - limit: 3 - exit_status: '*' limit: 1 artifact_paths: @@ -116,8 +108,6 @@ steps: parallelism: 6 retry: automatic: - - exit_status: '-1' - limit: 3 - exit_status: '*' limit: 1 artifact_paths: diff --git a/.buildkite/pipelines/pull_request/base.yml b/.buildkite/pipelines/pull_request/base.yml index 62950b16bec65..bb96479a2b83a 100644 --- a/.buildkite/pipelines/pull_request/base.yml +++ b/.buildkite/pipelines/pull_request/base.yml @@ -101,7 +101,7 @@ steps: queue: n2-4-spot depends_on: build timeout_in_minutes: 40 - parallelism: 10 + parallelism: 16 soft_fail: true retry: automatic: @@ -130,7 +130,7 @@ steps: queue: n2-4-spot depends_on: build timeout_in_minutes: 40 - parallelism: 4 + parallelism: 6 soft_fail: true retry: automatic: diff --git a/.buildkite/pipelines/pull_request/defend_workflows.yml b/.buildkite/pipelines/pull_request/defend_workflows.yml index 02f9239a8e6a2..953cc3ab971fa 100644 --- a/.buildkite/pipelines/pull_request/defend_workflows.yml +++ b/.buildkite/pipelines/pull_request/defend_workflows.yml @@ -16,10 +16,10 @@ steps: - command: .buildkite/scripts/steps/functional/defend_workflows_vagrant.sh label: 'Defend Workflows Endpoint Cypress Tests' agents: - queue: n2-16-virt + queue: n2-4-virt depends_on: build timeout_in_minutes: 120 - parallelism: 6 + parallelism: 5 retry: automatic: - exit_status: '*' diff --git a/.buildkite/pipelines/pull_request/osquery_cypress.yml b/.buildkite/pipelines/pull_request/osquery_cypress.yml index 9d7c399e87253..07e26e8f1ff6b 100644 --- a/.buildkite/pipelines/pull_request/osquery_cypress.yml +++ b/.buildkite/pipelines/pull_request/osquery_cypress.yml @@ -20,5 +20,21 @@ steps: depends_on: build timeout_in_minutes: 50 soft_fail: true + retry: + automatic: false + artifact_paths: + - "target/kibana-osquery/**/*" + + - command: .buildkite/scripts/steps/functional/security_serverless_osquery.sh + label: 'Serverless Osquery Cypress Tests' + agents: + queue: n2-4-spot + depends_on: build + timeout_in_minutes: 50 + parallelism: 6 + retry: + automatic: + - exit_status: '*' + limit: 1 artifact_paths: - "target/kibana-osquery/**/*" diff --git a/.buildkite/pipelines/pull_request/security_solution.yml b/.buildkite/pipelines/pull_request/security_solution.yml index bd0c8b2df1749..58b416548ec5f 100644 --- a/.buildkite/pipelines/pull_request/security_solution.yml +++ b/.buildkite/pipelines/pull_request/security_solution.yml @@ -5,13 +5,13 @@ steps: queue: n2-4-spot depends_on: build timeout_in_minutes: 60 - parallelism: 10 + parallelism: 16 retry: automatic: - exit_status: '*' limit: 1 artifact_paths: - - "target/kibana-security-solution/**/*" + - 'target/kibana-security-solution/**/*' - command: .buildkite/scripts/steps/functional/security_solution_explore.sh label: 'Explore - Security Solution Cypress Tests' @@ -19,13 +19,13 @@ steps: queue: n2-4-spot depends_on: build timeout_in_minutes: 60 - parallelism: 2 + parallelism: 4 retry: automatic: - exit_status: '*' limit: 1 artifact_paths: - - "target/kibana-security-solution/**/*" + - 'target/kibana-security-solution/**/*' - command: .buildkite/scripts/steps/functional/security_solution_investigations.sh label: 'Investigations - Security Solution Cypress Tests' @@ -33,13 +33,13 @@ steps: queue: n2-4-spot depends_on: build timeout_in_minutes: 120 - parallelism: 4 + parallelism: 6 retry: automatic: - exit_status: '*' limit: 1 artifact_paths: - - "target/kibana-security-solution/**/*" + - 'target/kibana-security-solution/**/*' - command: .buildkite/scripts/steps/functional/security_solution_burn.sh label: 'Security Solution Cypress tests, burning changed specs' @@ -48,6 +48,15 @@ steps: depends_on: build timeout_in_minutes: 120 parallelism: 1 + retry: + automatic: false soft_fail: true artifact_paths: - - "target/kibana-security-solution/**/*" + - 'target/kibana-security-solution/**/*' + + - command: .buildkite/scripts/steps/code_generation/security_solution_codegen.sh + label: 'Security Solution OpenAPI codegen' + agents: + queue: n2-2-spot + timeout_in_minutes: 60 + parallelism: 1 diff --git a/.buildkite/pipelines/quality-gates/pipeline.tests-production.yaml b/.buildkite/pipelines/quality-gates/pipeline.tests-production.yaml index 483532b9c7435..5a0738ead7d9c 100644 --- a/.buildkite/pipelines/quality-gates/pipeline.tests-production.yaml +++ b/.buildkite/pipelines/quality-gates/pipeline.tests-production.yaml @@ -1,11 +1,6 @@ steps: - - label: ":pipeline::kibana::seedling: Trigger Kibana Tests for ${ENVIRONMENT}" - command: echo "replace me with Kibana specific tests" - agent: - image: "docker.elastic.co/ci-agent-images/basic-buildkite-agent:1688566364" - - - label: ":pipeline::fleet::seedling: Trigger Fleet Kibana Tests for ${ENVIRONMENT}" - command: echo "replace me with Fleet specific Kibana tests" + - label: ":pipeline::fleet::seedling: Trigger Observability Kibana Tests for ${ENVIRONMENT}" + command: echo "replace me with Observability specific Kibana tests" agent: image: "docker.elastic.co/ci-agent-images/basic-buildkite-agent:1688566364" diff --git a/.buildkite/pipelines/quality-gates/pipeline.tests-qa.yaml b/.buildkite/pipelines/quality-gates/pipeline.tests-qa.yaml index 483532b9c7435..669b306bc2ceb 100644 --- a/.buildkite/pipelines/quality-gates/pipeline.tests-qa.yaml +++ b/.buildkite/pipelines/quality-gates/pipeline.tests-qa.yaml @@ -13,3 +13,8 @@ steps: command: echo "replace me with Security specific Kibana tests" agent: image: "docker.elastic.co/ci-agent-images/basic-buildkite-agent:1688566364" + + - label: ":pipeline::lock::seedling: Trigger Control Plane Kibana Tests for ${ENVIRONMENT}" + command: echo "replace me with Control Plane specific Kibana tests" + agent: + image: "docker.elastic.co/ci-agent-images/basic-buildkite-agent:1688566364" diff --git a/.buildkite/pipelines/quality-gates/pipeline.tests-staging.yaml b/.buildkite/pipelines/quality-gates/pipeline.tests-staging.yaml index 483532b9c7435..5a0738ead7d9c 100644 --- a/.buildkite/pipelines/quality-gates/pipeline.tests-staging.yaml +++ b/.buildkite/pipelines/quality-gates/pipeline.tests-staging.yaml @@ -1,11 +1,6 @@ steps: - - label: ":pipeline::kibana::seedling: Trigger Kibana Tests for ${ENVIRONMENT}" - command: echo "replace me with Kibana specific tests" - agent: - image: "docker.elastic.co/ci-agent-images/basic-buildkite-agent:1688566364" - - - label: ":pipeline::fleet::seedling: Trigger Fleet Kibana Tests for ${ENVIRONMENT}" - command: echo "replace me with Fleet specific Kibana tests" + - label: ":pipeline::fleet::seedling: Trigger Observability Kibana Tests for ${ENVIRONMENT}" + command: echo "replace me with Observability specific Kibana tests" agent: image: "docker.elastic.co/ci-agent-images/basic-buildkite-agent:1688566364" diff --git a/.buildkite/pipelines/serverless.yml b/.buildkite/pipelines/serverless.yml index 08f8cbe2a9ef3..f78905d383ba9 100644 --- a/.buildkite/pipelines/serverless.yml +++ b/.buildkite/pipelines/serverless.yml @@ -66,35 +66,7 @@ steps: queue: n2-4-spot depends_on: build timeout_in_minutes: 40 - parallelism: 12 - retry: - automatic: - - exit_status: '*' - limit: 1 - artifact_paths: - - "target/kibana-security-serverless/**/*" - - - command: .buildkite/scripts/steps/functional/security_serverless.sh - label: 'Explore - Security Solution Cypress Tests' - agents: - queue: n2-4-spot - depends_on: build - timeout_in_minutes: 40 - parallelism: 12 - retry: - automatic: - - exit_status: '*' - limit: 1 - artifact_paths: - - "target/kibana-security-serverless/**/*" - - - command: .buildkite/scripts/steps/functional/security_serverless.sh - label: 'Serverless Security Cypress Tests' - agents: - queue: n2-4-spot - depends_on: build - timeout_in_minutes: 40 - parallelism: 12 + parallelism: 16 retry: automatic: - exit_status: '*' @@ -103,7 +75,7 @@ steps: - "target/kibana-security-serverless/**/*" - command: .buildkite/scripts/steps/functional/security_serverless_explore.sh - label: 'Explore - Security Solution Cypress Tests' + label: 'Serverless Explore - Security Solution Cypress Tests' agents: queue: n2-4-spot depends_on: build @@ -117,7 +89,7 @@ steps: - "target/kibana-security-serverless/**/*" - command: .buildkite/scripts/steps/functional/security_serverless_investigations.sh - label: 'Investigations - Security Solution Cypress Tests' + label: 'Serverless Investigations - Security Solution Cypress Tests' agents: queue: n2-4-spot depends_on: build diff --git a/.buildkite/scripts/common/util.sh b/.buildkite/scripts/common/util.sh index e22a807fc1830..eca5fe352abcf 100755 --- a/.buildkite/scripts/common/util.sh +++ b/.buildkite/scripts/common/util.sh @@ -31,7 +31,7 @@ check_for_changed_files() { SHOULD_AUTO_COMMIT_CHANGES="${2:-}" CUSTOM_FIX_MESSAGE="${3:-}" - GIT_CHANGES="$(git ls-files --modified -- . ':!:.bazelrc')" + GIT_CHANGES="$(git status --porcelain -- . ':!:.bazelrc')" if [ "$GIT_CHANGES" ]; then if ! is_auto_commit_disabled && [[ "$SHOULD_AUTO_COMMIT_CHANGES" == "true" && "${BUILDKITE_PULL_REQUEST:-}" ]]; then @@ -54,7 +54,7 @@ check_for_changed_files() { git config --global user.name kibanamachine git config --global user.email '42973632+kibanamachine@users.noreply.github.com' gh pr checkout "${BUILDKITE_PULL_REQUEST}" - git add -u -- . ':!.bazelrc' + git add -A -- . ':!.bazelrc' git commit -m "$NEW_COMMIT_MESSAGE" git push diff --git a/.buildkite/scripts/pipelines/pull_request/pipeline.ts b/.buildkite/scripts/pipelines/pull_request/pipeline.ts index 5906213d6f5aa..cadfa23b53f9d 100644 --- a/.buildkite/scripts/pipelines/pull_request/pipeline.ts +++ b/.buildkite/scripts/pipelines/pull_request/pipeline.ts @@ -10,6 +10,7 @@ import { execSync } from 'child_process'; import fs from 'fs'; import prConfigs from '../../../pull_requests.json'; import { areChangesSkippable, doAnyChangesMatch } from '#pipeline-utils'; + const prConfig = prConfigs.jobs.find((job) => job.pipelineSlug === 'kibana-pull-request'); if (!prConfig) { diff --git a/.buildkite/scripts/steps/add_gh_labels_to_bk_metadata.ts b/.buildkite/scripts/steps/add_gh_labels_to_bk_metadata.ts index d018786f9397b..71deb29c8f6b8 100644 --- a/.buildkite/scripts/steps/add_gh_labels_to_bk_metadata.ts +++ b/.buildkite/scripts/steps/add_gh_labels_to_bk_metadata.ts @@ -27,15 +27,15 @@ const fetchLabels = (prNumber: PrNumber) => try { const labels = pipe(head, firstMatch, parseInt10, fetchLabels)(`${process.env[parseTarget]}`); - execSync(`buildkite-agent meta-data set gh_labels ${labels}`); - if (alsoAnnotate) - execSync( - `buildkite-agent annotate --context 'default' --style 'info' "Github Labels: ${labels}"` - ); + if (labels) { + execSync(`buildkite-agent meta-data set gh_labels ${labels}`); + if (alsoAnnotate) + execSync( + `buildkite-agent annotate --context 'default' --style 'info' "Github Labels: ${labels}"` + ); + } } catch (e) { - console.error( - `\n!!! Error fetching Github Labels (stringified): \n${JSON.stringify(e, null, 2)}` - ); + console.error(`Error fetching Github Labels for issue ${firstMatch}`); } export {}; diff --git a/.buildkite/scripts/steps/code_generation/security_solution_codegen.sh b/.buildkite/scripts/steps/code_generation/security_solution_codegen.sh new file mode 100755 index 0000000000000..f6d31f3e94bbc --- /dev/null +++ b/.buildkite/scripts/steps/code_generation/security_solution_codegen.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +set -euo pipefail + +source .buildkite/scripts/common/util.sh + +.buildkite/scripts/bootstrap.sh + +echo --- Security Solution OpenAPI Code Generation + +(cd x-pack/plugins/security_solution && yarn openapi:generate) +check_for_changed_files "yarn openapi:generate" true \ No newline at end of file diff --git a/.buildkite/scripts/steps/functional/apm_cypress.sh b/.buildkite/scripts/steps/functional/apm_cypress.sh index 36b6cb3f1ea2f..55f99a819c076 100755 --- a/.buildkite/scripts/steps/functional/apm_cypress.sh +++ b/.buildkite/scripts/steps/functional/apm_cypress.sh @@ -16,7 +16,7 @@ GH_APM_TEAM_LABEL="Team:APM" if (! is_pr); then echo "--- Add GH labels to buildkite metadata" ts-node .buildkite/scripts/steps/add_gh_labels_to_bk_metadata.ts BUILDKITE_MESSAGE true - GH_ON_MERGE_LABELS="$(buildkite-agent meta-data get gh_labels)" + GH_ON_MERGE_LABELS="$(buildkite-agent meta-data get gh_labels --default '')" fi # Enabling cypress dashboard recording when PR is labeled with `apm:cypress-record` and we are not using the flaky test runner OR on merge with Team:APM label applied diff --git a/.buildkite/scripts/steps/functional/defend_workflows.sh b/.buildkite/scripts/steps/functional/defend_workflows.sh index 039d25d2ed8a8..555d6cba2d374 100755 --- a/.buildkite/scripts/steps/functional/defend_workflows.sh +++ b/.buildkite/scripts/steps/functional/defend_workflows.sh @@ -10,4 +10,6 @@ export KIBANA_INSTALL_DIR=${KIBANA_BUILD_LOCATION} echo "--- Defend Workflows Cypress tests" -yarn --cwd x-pack/plugins/security_solution cypress:dw:run +cd x-pack/plugins/security_solution + +yarn cypress:dw:run; status=$?; yarn junit:merge && exit $status diff --git a/.buildkite/scripts/steps/functional/defend_workflows_vagrant.sh b/.buildkite/scripts/steps/functional/defend_workflows_vagrant.sh index a99cf0e86f4ec..57b7b43163400 100755 --- a/.buildkite/scripts/steps/functional/defend_workflows_vagrant.sh +++ b/.buildkite/scripts/steps/functional/defend_workflows_vagrant.sh @@ -8,7 +8,8 @@ source .buildkite/scripts/steps/functional/common_cypress.sh export JOB=kibana-defend-workflows-endpoint-cypress export KIBANA_INSTALL_DIR=${KIBANA_BUILD_LOCATION} - echo "--- Defend Workflows Endpoint Cypress tests" -yarn --cwd x-pack/plugins/security_solution cypress:dw:endpoint:run +cd x-pack/plugins/security_solution + +yarn cypress:dw:endpoint:run; status=$?; yarn junit:merge && exit $status diff --git a/.buildkite/scripts/steps/functional/response_ops.sh b/.buildkite/scripts/steps/functional/response_ops.sh index ad603752c1239..1c065b2373b66 100755 --- a/.buildkite/scripts/steps/functional/response_ops.sh +++ b/.buildkite/scripts/steps/functional/response_ops.sh @@ -10,4 +10,6 @@ export KIBANA_INSTALL_DIR=${KIBANA_BUILD_LOCATION} echo "--- Response Ops Cypress Tests on Security Solution" -yarn --cwd x-pack/test/security_solution_cypress cypress:run:respops:ess +cd x-pack/test/security_solution_cypress + +yarn cypress:run:respops:ess; status=$?; yarn junit:merge && exit $status diff --git a/.buildkite/scripts/steps/functional/response_ops_cases.sh b/.buildkite/scripts/steps/functional/response_ops_cases.sh index 6d4cac8ef4472..52eb3fce1985e 100755 --- a/.buildkite/scripts/steps/functional/response_ops_cases.sh +++ b/.buildkite/scripts/steps/functional/response_ops_cases.sh @@ -10,4 +10,6 @@ export KIBANA_INSTALL_DIR=${KIBANA_BUILD_LOCATION} echo "--- Response Ops Cases Cypress Tests on Security Solution" -yarn --cwd x-pack/test/security_solution_cypress cypress:run:cases:ess +cd x-pack/test/security_solution_cypress + +yarn cypress:run:cases:ess; status=$?; yarn junit:merge && exit $status diff --git a/.buildkite/scripts/steps/functional/security_serverless.sh b/.buildkite/scripts/steps/functional/security_serverless.sh index 22b40c0f0c963..0a14478414bf3 100644 --- a/.buildkite/scripts/steps/functional/security_serverless.sh +++ b/.buildkite/scripts/steps/functional/security_serverless.sh @@ -10,4 +10,6 @@ export KIBANA_INSTALL_DIR=${KIBANA_BUILD_LOCATION} echo "--- Security Serverless Cypress Tests" -yarn --cwd x-pack/test/security_solution_cypress cypress:run:serverless +cd x-pack/test/security_solution_cypress + +yarn cypress:run:serverless; status=$?; yarn junit:merge && exit $status diff --git a/.buildkite/scripts/steps/functional/security_serverless_explore.sh b/.buildkite/scripts/steps/functional/security_serverless_explore.sh index a61c49daf130c..805f4fe147180 100644 --- a/.buildkite/scripts/steps/functional/security_serverless_explore.sh +++ b/.buildkite/scripts/steps/functional/security_serverless_explore.sh @@ -10,4 +10,6 @@ export KIBANA_INSTALL_DIR=${KIBANA_BUILD_LOCATION} echo "--- Explore - Security Solution Cypress Tests" -yarn --cwd x-pack/test/security_solution_cypress cypress:explore:run:serverless +cd x-pack/test/security_solution_cypress + +yarn cypress:explore:run:serverless; status=$?; yarn junit:merge && exit $status diff --git a/.buildkite/scripts/steps/functional/security_serverless_investigations.sh b/.buildkite/scripts/steps/functional/security_serverless_investigations.sh index 57989361049b5..15f249d474c40 100644 --- a/.buildkite/scripts/steps/functional/security_serverless_investigations.sh +++ b/.buildkite/scripts/steps/functional/security_serverless_investigations.sh @@ -10,4 +10,6 @@ export KIBANA_INSTALL_DIR=${KIBANA_BUILD_LOCATION} echo "--- Investigations Cypress Tests on Serverless" -yarn --cwd x-pack/test/security_solution_cypress cypress:investigations:run:serverless +cd x-pack/test/security_solution_cypress + +yarn cypress:investigations:run:serverless; status=$?; yarn junit:merge && exit $status diff --git a/.buildkite/scripts/steps/functional/security_serverless_osquery.sh b/.buildkite/scripts/steps/functional/security_serverless_osquery.sh new file mode 100755 index 0000000000000..60312fcaf681a --- /dev/null +++ b/.buildkite/scripts/steps/functional/security_serverless_osquery.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env bash + +set -euo pipefail + +source .buildkite/scripts/common/util.sh +source .buildkite/scripts/steps/functional/common_cypress.sh + +.buildkite/scripts/bootstrap.sh +node scripts/build_kibana_platform_plugins.js + +export JOB=kibana-osquery-cypress-serverless + +echo "--- Security Osquery Serverless Cypress" + +yarn --cwd x-pack/plugins/osquery cypress:serverless:run diff --git a/.buildkite/scripts/steps/functional/security_solution.sh b/.buildkite/scripts/steps/functional/security_solution.sh index fdddc8573cff1..f02419a0b6f8c 100755 --- a/.buildkite/scripts/steps/functional/security_solution.sh +++ b/.buildkite/scripts/steps/functional/security_solution.sh @@ -10,4 +10,6 @@ export KIBANA_INSTALL_DIR=${KIBANA_BUILD_LOCATION} echo "--- Security Solution Cypress tests (Chrome)" -yarn --cwd x-pack/test/security_solution_cypress cypress:run:ess +cd x-pack/test/security_solution_cypress + +yarn cypress:run:ess; status=$?; yarn junit:merge && exit $status diff --git a/.buildkite/scripts/steps/functional/security_solution_explore.sh b/.buildkite/scripts/steps/functional/security_solution_explore.sh index ff373dd8238e1..e7d21b61f7209 100644 --- a/.buildkite/scripts/steps/functional/security_solution_explore.sh +++ b/.buildkite/scripts/steps/functional/security_solution_explore.sh @@ -10,4 +10,6 @@ export KIBANA_INSTALL_DIR=${KIBANA_BUILD_LOCATION} echo "--- Explore Cypress Tests on Security Solution" -yarn --cwd x-pack/test/security_solution_cypress cypress:explore:run:ess +cd x-pack/test/security_solution_cypress + +yarn cypress:explore:run:ess; status=$?; yarn junit:merge && exit $status diff --git a/.buildkite/scripts/steps/functional/security_solution_investigations.sh b/.buildkite/scripts/steps/functional/security_solution_investigations.sh index 5e7bcf9aa550e..217e79bc9ecfc 100644 --- a/.buildkite/scripts/steps/functional/security_solution_investigations.sh +++ b/.buildkite/scripts/steps/functional/security_solution_investigations.sh @@ -10,4 +10,6 @@ export KIBANA_INSTALL_DIR=${KIBANA_BUILD_LOCATION} echo "--- Investigations - Security Solution Cypress Tests" -yarn --cwd x-pack/test/security_solution_cypress cypress:investigations:run:ess +cd x-pack/test/security_solution_cypress + +yarn cypress:investigations:run:ess; status=$?; yarn junit:merge && exit $status diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index eecffc061f483..911bfb5161dc0 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -70,7 +70,7 @@ packages/kbn-cli-dev-mode @elastic/kibana-operations x-pack/plugins/cloud_integrations/cloud_chat @elastic/kibana-core x-pack/plugins/cloud_integrations/cloud_chat_provider @elastic/kibana-core x-pack/plugins/cloud_integrations/cloud_data_migration @elastic/platform-onboarding -x-pack/plugins/cloud_defend @elastic/sec-cloudnative-integrations +x-pack/plugins/cloud_defend @elastic/kibana-cloud-security-posture x-pack/plugins/cloud_integrations/cloud_experiments @elastic/kibana-core x-pack/plugins/cloud_integrations/cloud_full_story @elastic/kibana-core x-pack/plugins/cloud_integrations/cloud_gain_sight @elastic/kibana-core @@ -459,7 +459,7 @@ src/plugins/kibana_overview @elastic/appex-sharedux src/plugins/kibana_react @elastic/appex-sharedux src/plugins/kibana_usage_collection @elastic/kibana-core src/plugins/kibana_utils @elastic/kibana-app-services -x-pack/plugins/kubernetes_security @elastic/sec-cloudnative-integrations +x-pack/plugins/kubernetes_security @elastic/kibana-cloud-security-posture packages/kbn-language-documentation-popover @elastic/kibana-visualizations packages/kbn-lens-embeddable-utils @elastic/infra-monitoring-ui x-pack/plugins/lens @elastic/kibana-visualizations @@ -595,7 +595,7 @@ packages/kbn-search-api-panels @elastic/enterprise-search-frontend examples/search_examples @elastic/kibana-data-discovery packages/kbn-search-response-warnings @elastic/kibana-data-discovery x-pack/plugins/searchprofiler @elastic/platform-deployment-management -x-pack/test/security_api_integration/packages/helpers @elastic/kibana-core +x-pack/test/security_api_integration/packages/helpers @elastic/kibana-security x-pack/plugins/security @elastic/kibana-security x-pack/plugins/security_solution_ess @elastic/security-solution x-pack/test/cases_api_integration/common/plugins/security_solution @elastic/response-ops @@ -604,6 +604,7 @@ x-pack/plugins/security_solution @elastic/security-solution x-pack/plugins/security_solution_serverless @elastic/security-solution x-pack/packages/security-solution/side_nav @elastic/security-threat-hunting-explore x-pack/packages/security-solution/storybook/config @elastic/security-threat-hunting-explore +x-pack/packages/security-solution/upselling @elastic/security-threat-hunting-explore x-pack/test/security_functional/plugins/test_endpoints @elastic/kibana-security packages/kbn-securitysolution-autocomplete @elastic/security-detection-engine x-pack/packages/security-solution/data_table @elastic/security-threat-hunting-investigations @@ -632,7 +633,7 @@ x-pack/plugins/serverless_search @elastic/enterprise-search-frontend packages/serverless/storybook/config @elastic/appex-sharedux packages/serverless/types @elastic/appex-sharedux test/plugin_functional/plugins/session_notifications @elastic/kibana-core -x-pack/plugins/session_view @elastic/sec-cloudnative-integrations +x-pack/plugins/session_view @elastic/kibana-cloud-security-posture packages/kbn-set-map @elastic/kibana-operations examples/share_examples @elastic/kibana-app-services src/plugins/share @elastic/appex-sharedux @@ -1277,6 +1278,7 @@ x-pack/plugins/cloud_integrations/cloud_full_story/server/config.ts @elastic/kib /x-pack/test_serverless/functional/test_suites/security/cypress/screens/endpoint_management @elastic/security-defend-workflows /x-pack/test_serverless/functional/test_suites/security/cypress/tasks/endpoint_management @elastic/security-defend-workflows /x-pack/plugins/security_solution_serverless/public/upselling/sections/endpoint_management @elastic/security-defend-workflows +/x-pack/plugins/security_solution_serverless/server/endpoint @elastic/security-defend-workflows ## Security Solution sub teams - security-telemetry (Data Engineering) x-pack/plugins/security_solution/server/usage/ @elastic/security-data-analytics @@ -1289,6 +1291,7 @@ x-pack/test/security_solution_cypress/cli_config.ts @elastic/security-engineerin x-pack/test/security_solution_cypress/config.ts @elastic/security-engineering-productivity x-pack/test/security_solution_cypress/runner.ts @elastic/security-engineering-productivity x-pack/test/security_solution_cypress/serverless_config.ts @elastic/security-engineering-productivity +x-pack/test/security_solution_cypress/cypress/tags.ts @elastic/security-engineering-productivity ## Security Solution sub teams - adaptive-workload-protection x-pack/plugins/security_solution/public/common/components/sessions_viewer @elastic/kibana-cloud-security-posture diff --git a/api_docs/actions.devdocs.json b/api_docs/actions.devdocs.json index 3c2653e17a1a1..12eec5ba79786 100644 --- a/api_docs/actions.devdocs.json +++ b/api_docs/actions.devdocs.json @@ -2311,124 +2311,6 @@ } ], "interfaces": [ - { - "parentPluginId": "actions", - "id": "def-server.ActionResult", - "type": "Interface", - "tags": [], - "label": "ActionResult", - "description": [], - "signature": [ - { - "pluginId": "actions", - "scope": "server", - "docId": "kibActionsPluginApi", - "section": "def-server.ActionResult", - "text": "ActionResult" - }, - "" - ], - "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false, - "trackAdoption": false, - "children": [ - { - "parentPluginId": "actions", - "id": "def-server.ActionResult.id", - "type": "string", - "tags": [], - "label": "id", - "description": [], - "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "actions", - "id": "def-server.ActionResult.actionTypeId", - "type": "string", - "tags": [], - "label": "actionTypeId", - "description": [], - "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "actions", - "id": "def-server.ActionResult.name", - "type": "string", - "tags": [], - "label": "name", - "description": [], - "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "actions", - "id": "def-server.ActionResult.isMissingSecrets", - "type": "CompoundType", - "tags": [], - "label": "isMissingSecrets", - "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "actions", - "id": "def-server.ActionResult.config", - "type": "Uncategorized", - "tags": [], - "label": "config", - "description": [], - "signature": [ - "Config | undefined" - ], - "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "actions", - "id": "def-server.ActionResult.isPreconfigured", - "type": "boolean", - "tags": [], - "label": "isPreconfigured", - "description": [], - "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "actions", - "id": "def-server.ActionResult.isDeprecated", - "type": "boolean", - "tags": [], - "label": "isDeprecated", - "description": [], - "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "actions", - "id": "def-server.ActionResult.isSystemAction", - "type": "boolean", - "tags": [], - "label": "isSystemAction", - "description": [], - "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false, - "trackAdoption": false - } - ], - "initialIsOpen": false - }, { "parentPluginId": "actions", "id": "def-server.ActionsApiRequestHandlerContext", @@ -2967,43 +2849,37 @@ }, { "parentPluginId": "actions", - "id": "def-server.FindActionResult", + "id": "def-server.FindConnectorResult", "type": "Interface", "tags": [], - "label": "FindActionResult", + "label": "FindConnectorResult", "description": [], "signature": [ { "pluginId": "actions", "scope": "server", "docId": "kibActionsPluginApi", - "section": "def-server.FindActionResult", - "text": "FindActionResult" + "section": "def-server.FindConnectorResult", + "text": "FindConnectorResult" }, " extends ", - { - "pluginId": "actions", - "scope": "server", - "docId": "kibActionsPluginApi", - "section": "def-server.ActionResult", - "text": "ActionResult" - }, + "Connector", "<", "ActionTypeConfig", ">" ], - "path": "x-pack/plugins/actions/server/types.ts", + "path": "x-pack/plugins/actions/server/application/connector/types/connector.ts", "deprecated": false, "trackAdoption": false, "children": [ { "parentPluginId": "actions", - "id": "def-server.FindActionResult.referencedByCount", + "id": "def-server.FindConnectorResult.referencedByCount", "type": "number", "tags": [], "label": "referencedByCount", "description": [], - "path": "x-pack/plugins/actions/server/types.ts", + "path": "x-pack/plugins/actions/server/application/connector/types/connector.ts", "deprecated": false, "trackAdoption": false } @@ -3268,6 +3144,22 @@ "trackAdoption": false, "initialIsOpen": false }, + { + "parentPluginId": "actions", + "id": "def-server.ActionResult", + "type": "Type", + "tags": [], + "label": "ActionResult", + "description": [], + "signature": [ + "Connector", + "" + ], + "path": "x-pack/plugins/actions/server/types.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "actions", "id": "def-server.ActionsAuthorization", @@ -3325,13 +3217,13 @@ }, "<", "ActionTypeConfig", - ">>; getAll: ({ includeSystemActions }?: GetAllOptions) => Promise<", + ">>; getAll: ({ includeSystemActions }?: { includeSystemActions?: boolean | undefined; }) => Promise<", { "pluginId": "actions", "scope": "server", "docId": "kibActionsPluginApi", - "section": "def-server.FindActionResult", - "text": "FindActionResult" + "section": "def-server.FindConnectorResult", + "text": "FindConnectorResult" }, "[]>; getBulk: ({ ids, throwIfSystemAction, }: { ids: string[]; throwIfSystemAction?: boolean | undefined; }) => Promise<", { @@ -5545,13 +5437,10 @@ { "parentPluginId": "actions", "id": "def-common.AlertingConnectorFeature.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, "trackAdoption": false @@ -5559,13 +5448,10 @@ { "parentPluginId": "actions", "id": "def-common.AlertingConnectorFeature.compatibility", - "type": "Any", + "type": "string", "tags": [], "label": "compatibility", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, "trackAdoption": false @@ -5598,13 +5484,10 @@ { "parentPluginId": "actions", "id": "def-common.CasesConnectorFeature.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, "trackAdoption": false @@ -5612,13 +5495,10 @@ { "parentPluginId": "actions", "id": "def-common.CasesConnectorFeature.compatibility", - "type": "Any", + "type": "string", "tags": [], "label": "compatibility", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, "trackAdoption": false @@ -5724,13 +5604,10 @@ { "parentPluginId": "actions", "id": "def-common.GeneralFeature.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, "trackAdoption": false @@ -5738,13 +5615,10 @@ { "parentPluginId": "actions", "id": "def-common.GeneralFeature.compatibility", - "type": "Any", + "type": "string", "tags": [], "label": "compatibility", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, "trackAdoption": false @@ -5792,13 +5666,10 @@ { "parentPluginId": "actions", "id": "def-common.SecuritySolutionFeature.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, "trackAdoption": false @@ -5806,13 +5677,10 @@ { "parentPluginId": "actions", "id": "def-common.SecuritySolutionFeature.compatibility", - "type": "Any", + "type": "string", "tags": [], "label": "compatibility", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, "trackAdoption": false @@ -5845,13 +5713,10 @@ { "parentPluginId": "actions", "id": "def-common.UptimeConnectorFeature.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, "trackAdoption": false @@ -5859,13 +5724,10 @@ { "parentPluginId": "actions", "id": "def-common.UptimeConnectorFeature.compatibility", - "type": "Any", + "type": "string", "tags": [], "label": "compatibility", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, "trackAdoption": false diff --git a/api_docs/actions.mdx b/api_docs/actions.mdx index 25f69e85c5a24..156dea95415c9 100644 --- a/api_docs/actions.mdx +++ b/api_docs/actions.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/actions title: "actions" image: https://source.unsplash.com/400x175/?github description: API docs for the actions plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'actions'] --- import actionsObj from './actions.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-o | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 275 | 10 | 269 | 27 | +| 267 | 0 | 261 | 28 | ## Client diff --git a/api_docs/advanced_settings.mdx b/api_docs/advanced_settings.mdx index 097a62a9fbb31..be020a2f7bb3b 100644 --- a/api_docs/advanced_settings.mdx +++ b/api_docs/advanced_settings.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/advancedSettings title: "advancedSettings" image: https://source.unsplash.com/400x175/?github description: API docs for the advancedSettings plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'advancedSettings'] --- import advancedSettingsObj from './advanced_settings.devdocs.json'; diff --git a/api_docs/aiops.devdocs.json b/api_docs/aiops.devdocs.json index a5d2c0392ddfb..7d557f4d3c601 100644 --- a/api_docs/aiops.devdocs.json +++ b/api_docs/aiops.devdocs.json @@ -550,6 +550,28 @@ "deprecated": false, "trackAdoption": false }, + { + "parentPluginId": "aiops", + "id": "def-public.AiopsAppDependencies.i18n", + "type": "Object", + "tags": [], + "label": "i18n", + "description": [ + "\nInternationalisation service" + ], + "signature": [ + { + "pluginId": "@kbn/core-i18n-browser", + "scope": "common", + "docId": "kibKbnCoreI18nBrowserPluginApi", + "section": "def-common.I18nStart", + "text": "I18nStart" + } + ], + "path": "x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts", + "deprecated": false, + "trackAdoption": false + }, { "parentPluginId": "aiops", "id": "def-public.AiopsAppDependencies.fieldStats", diff --git a/api_docs/aiops.mdx b/api_docs/aiops.mdx index 941637122e531..a040b8e23f683 100644 --- a/api_docs/aiops.mdx +++ b/api_docs/aiops.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/aiops title: "aiops" image: https://source.unsplash.com/400x175/?github description: API docs for the aiops plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'aiops'] --- import aiopsObj from './aiops.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) for questi | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 60 | 1 | 3 | 0 | +| 61 | 1 | 3 | 0 | ## Client diff --git a/api_docs/alerting.devdocs.json b/api_docs/alerting.devdocs.json index 1804e89ca9334..9fd1a0f9641b4 100644 --- a/api_docs/alerting.devdocs.json +++ b/api_docs/alerting.devdocs.json @@ -108,13 +108,13 @@ "deprecated": true, "trackAdoption": false, "references": [ - { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/es_query/index.ts" - }, { "plugin": "ml", "path": "x-pack/plugins/ml/public/alerting/register_ml_alerts.ts" + }, + { + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/es_query/index.ts" } ], "children": [ @@ -3105,14 +3105,6 @@ "plugin": "ruleRegistry", "path": "x-pack/plugins/rule_registry/server/utils/create_persistence_rule_type_wrapper.ts" }, - { - "plugin": "observability", - "path": "x-pack/plugins/observability/server/lib/rules/slo_burn_rate/executor.ts" - }, - { - "plugin": "observability", - "path": "x-pack/plugins/observability/server/lib/rules/threshold/threshold_executor.ts" - }, { "plugin": "ml", "path": "x-pack/plugins/ml/server/lib/alerts/register_jobs_monitoring_rule_type.ts" @@ -3129,6 +3121,22 @@ "plugin": "ml", "path": "x-pack/plugins/ml/server/lib/alerts/register_anomaly_detection_alert_type.ts" }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/notifications/legacy_rules_notification_alert_type.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_preview/api/preview_rules/route.ts" + }, + { + "plugin": "observability", + "path": "x-pack/plugins/observability/server/lib/rules/slo_burn_rate/executor.ts" + }, + { + "plugin": "observability", + "path": "x-pack/plugins/observability/server/lib/rules/threshold/threshold_executor.ts" + }, { "plugin": "infra", "path": "x-pack/plugins/infra/server/lib/alerting/log_threshold/log_threshold_executor.ts" @@ -3157,14 +3165,6 @@ "plugin": "monitoring", "path": "x-pack/plugins/monitoring/server/alerts/base_rule.ts" }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/notifications/legacy_rules_notification_alert_type.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_preview/api/preview_rules/route.ts" - }, { "plugin": "stackAlerts", "path": "x-pack/plugins/stack_alerts/server/rule_types/index_threshold/rule_type.ts" @@ -4692,7 +4692,7 @@ "MuteOptions", ") => Promise; unmuteInstance: (options: ", "MuteOptions", - ") => Promise; runSoon: (options: { id: string; }) => Promise; listRuleTypes: () => Promise Promise; runSoon: (options: { id: string; }) => Promise; listRuleTypes: () => Promise>; getSpaceId: () => string | undefined; getAuthorization: () => ", { diff --git a/api_docs/alerting.mdx b/api_docs/alerting.mdx index 51c1b5e833cde..01f5eebc54d5a 100644 --- a/api_docs/alerting.mdx +++ b/api_docs/alerting.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/alerting title: "alerting" image: https://source.unsplash.com/400x175/?github description: API docs for the alerting plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'alerting'] --- import alertingObj from './alerting.devdocs.json'; diff --git a/api_docs/apm.devdocs.json b/api_docs/apm.devdocs.json index 4e0efa8b4f074..28779a9fc58a8 100644 --- a/api_docs/apm.devdocs.json +++ b/api_docs/apm.devdocs.json @@ -263,21 +263,9 @@ "APMPluginSetupDependencies", ") => { config$: ", "Observable", - "; enabled: boolean; autoCreateApmDataView: boolean; serviceMapEnabled: boolean; serviceMapFingerprintBucketSize: number; serviceMapFingerprintGlobalBucketSize: number; serviceMapTraceIdBucketSize: number; serviceMapTraceIdGlobalBucketSize: number; serviceMapMaxTracesPerRequest: number; serviceMapTerminateAfter: number; serviceMapMaxTraces: number; ui: Readonly<{} & { enabled: boolean; maxTraceItems: number; }>; searchAggregatedTransactions: ", + "; searchAggregatedTransactions: ", "SearchAggregatedTransactionSetting", - "; telemetryCollectionEnabled: boolean; metricsInterval: number; agent: Readonly<{} & { migrations: Readonly<{} & { enabled: boolean; }>; }>; forceSyntheticSource: boolean; latestAgentVersionsUrl: string; serverlessOnboarding: boolean; serverless: Readonly<{} & { enabled: true; }>; managedServiceUrl: string; featureFlags: Readonly<{} & { agentConfigurationAvailable: boolean; configurableIndicesAvailable: boolean; infrastructureTabAvailable: boolean; infraUiAvailable: boolean; migrationToFleetAvailable: boolean; sourcemapApiAvailable: boolean; storageExplorerAvailable: boolean; }>; }>>; getApmIndices: () => Promise>; createApmEventClient: ({ request, context, debug, }: { debug?: boolean | undefined; request: ", - { - "pluginId": "@kbn/core-http-server", - "scope": "common", - "docId": "kibKbnCoreHttpServerPluginApi", - "section": "def-common.KibanaRequest", - "text": "KibanaRequest" - }, - "; context: ", - "ApmPluginRequestHandlerContext", - "; }) => Promise<", - "APMEventClient", - ">; }" + "; telemetryCollectionEnabled: boolean; metricsInterval: number; agent: Readonly<{} & { migrations: Readonly<{} & { enabled: boolean; }>; }>; forceSyntheticSource: boolean; latestAgentVersionsUrl: string; serverless: Readonly<{} & { enabled: true; }>; serverlessOnboarding: boolean; managedServiceUrl: string; featureFlags: Readonly<{} & { agentConfigurationAvailable: boolean; configurableIndicesAvailable: boolean; infrastructureTabAvailable: boolean; infraUiAvailable: boolean; migrationToFleetAvailable: boolean; sourcemapApiAvailable: boolean; storageExplorerAvailable: boolean; }>; }>>; }" ], "path": "x-pack/plugins/apm/server/plugin.ts", "deprecated": false, @@ -409,518 +397,7 @@ } ], "functions": [], - "interfaces": [ - { - "parentPluginId": "apm", - "id": "def-server.APMRouteHandlerResources", - "type": "Interface", - "tags": [], - "label": "APMRouteHandlerResources", - "description": [], - "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false, - "trackAdoption": false, - "children": [ - { - "parentPluginId": "apm", - "id": "def-server.APMRouteHandlerResources.request", - "type": "Object", - "tags": [], - "label": "request", - "description": [], - "signature": [ - { - "pluginId": "@kbn/core-http-server", - "scope": "common", - "docId": "kibKbnCoreHttpServerPluginApi", - "section": "def-common.KibanaRequest", - "text": "KibanaRequest" - }, - "" - ], - "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "apm", - "id": "def-server.APMRouteHandlerResources.context", - "type": "CompoundType", - "tags": [], - "label": "context", - "description": [], - "signature": [ - { - "pluginId": "@kbn/core-http-request-handler-context-server", - "scope": "common", - "docId": "kibKbnCoreHttpRequestHandlerContextServerPluginApi", - "section": "def-common.RequestHandlerContext", - "text": "RequestHandlerContext" - }, - " & { licensing: Promise<", - { - "pluginId": "licensing", - "scope": "server", - "docId": "kibLicensingPluginApi", - "section": "def-server.LicensingApiRequestHandlerContext", - "text": "LicensingApiRequestHandlerContext" - }, - ">; alerting: Promise<", - { - "pluginId": "alerting", - "scope": "server", - "docId": "kibAlertingPluginApi", - "section": "def-server.AlertingApiRequestHandlerContext", - "text": "AlertingApiRequestHandlerContext" - }, - ">; rac: Promise<", - { - "pluginId": "ruleRegistry", - "scope": "server", - "docId": "kibRuleRegistryPluginApi", - "section": "def-server.RacApiRequestHandlerContext", - "text": "RacApiRequestHandlerContext" - }, - ">; }" - ], - "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "apm", - "id": "def-server.APMRouteHandlerResources.params", - "type": "Object", - "tags": [], - "label": "params", - "description": [], - "signature": [ - "{ query: { _inspect: boolean; }; }" - ], - "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "apm", - "id": "def-server.APMRouteHandlerResources.config", - "type": "Object", - "tags": [], - "label": "config", - "description": [], - "signature": [ - "{ readonly indices: Readonly<{} & { error: string; metric: string; transaction: string; span: string; onboarding: string; }>; readonly enabled: boolean; readonly autoCreateApmDataView: boolean; readonly serviceMapEnabled: boolean; readonly serviceMapFingerprintBucketSize: number; readonly serviceMapFingerprintGlobalBucketSize: number; readonly serviceMapTraceIdBucketSize: number; readonly serviceMapTraceIdGlobalBucketSize: number; readonly serviceMapMaxTracesPerRequest: number; readonly serviceMapTerminateAfter: number; readonly serviceMapMaxTraces: number; readonly ui: Readonly<{} & { enabled: boolean; maxTraceItems: number; }>; readonly searchAggregatedTransactions: ", - "SearchAggregatedTransactionSetting", - "; readonly telemetryCollectionEnabled: boolean; readonly metricsInterval: number; readonly agent: Readonly<{} & { migrations: Readonly<{} & { enabled: boolean; }>; }>; readonly forceSyntheticSource: boolean; readonly latestAgentVersionsUrl: string; readonly serverlessOnboarding: boolean; readonly serverless: Readonly<{} & { enabled: true; }>; readonly managedServiceUrl: string; readonly featureFlags: Readonly<{} & { agentConfigurationAvailable: boolean; configurableIndicesAvailable: boolean; infrastructureTabAvailable: boolean; infraUiAvailable: boolean; migrationToFleetAvailable: boolean; sourcemapApiAvailable: boolean; storageExplorerAvailable: boolean; }>; }" - ], - "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "apm", - "id": "def-server.APMRouteHandlerResources.featureFlags", - "type": "Object", - "tags": [], - "label": "featureFlags", - "description": [], - "signature": [ - "{ agentConfigurationAvailable: boolean; configurableIndicesAvailable: boolean; infrastructureTabAvailable: boolean; infraUiAvailable: boolean; migrationToFleetAvailable: boolean; sourcemapApiAvailable: boolean; storageExplorerAvailable: boolean; }" - ], - "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "apm", - "id": "def-server.APMRouteHandlerResources.logger", - "type": "Object", - "tags": [], - "label": "logger", - "description": [], - "signature": [ - { - "pluginId": "@kbn/logging", - "scope": "common", - "docId": "kibKbnLoggingPluginApi", - "section": "def-common.Logger", - "text": "Logger" - } - ], - "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "apm", - "id": "def-server.APMRouteHandlerResources.core", - "type": "Object", - "tags": [], - "label": "core", - "description": [], - "signature": [ - "APMCore" - ], - "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "apm", - "id": "def-server.APMRouteHandlerResources.plugins", - "type": "Object", - "tags": [], - "label": "plugins", - "description": [], - "signature": [ - "{ data: { setup: ", - { - "pluginId": "data", - "scope": "server", - "docId": "kibDataPluginApi", - "section": "def-server.DataPluginSetup", - "text": "DataPluginSetup" - }, - "; start: () => Promise<", - { - "pluginId": "data", - "scope": "server", - "docId": "kibDataPluginApi", - "section": "def-server.DataPluginStart", - "text": "DataPluginStart" - }, - ">; }; features: { setup: ", - { - "pluginId": "features", - "scope": "server", - "docId": "kibFeaturesPluginApi", - "section": "def-server.PluginSetupContract", - "text": "PluginSetupContract" - }, - "; start: () => Promise<", - { - "pluginId": "features", - "scope": "server", - "docId": "kibFeaturesPluginApi", - "section": "def-server.PluginStartContract", - "text": "PluginStartContract" - }, - ">; }; licensing: { setup: ", - { - "pluginId": "licensing", - "scope": "server", - "docId": "kibLicensingPluginApi", - "section": "def-server.LicensingPluginSetup", - "text": "LicensingPluginSetup" - }, - "; start: () => Promise<", - { - "pluginId": "licensing", - "scope": "server", - "docId": "kibLicensingPluginApi", - "section": "def-server.LicensingPluginStart", - "text": "LicensingPluginStart" - }, - ">; }; observability: { setup: { getAlertDetailsConfig(): Readonly<{} & { uptime: Readonly<{} & { enabled: boolean; }>; metrics: Readonly<{} & { enabled: boolean; }>; observability: Readonly<{} & { enabled: boolean; }>; logs: Readonly<{} & { enabled: boolean; }>; }>; getScopedAnnotationsClient: (requestContext: ", - { - "pluginId": "@kbn/core-http-request-handler-context-server", - "scope": "common", - "docId": "kibKbnCoreHttpRequestHandlerContextServerPluginApi", - "section": "def-common.RequestHandlerContext", - "text": "RequestHandlerContext" - }, - " & { licensing: Promise<", - { - "pluginId": "licensing", - "scope": "server", - "docId": "kibLicensingPluginApi", - "section": "def-server.LicensingApiRequestHandlerContext", - "text": "LicensingApiRequestHandlerContext" - }, - ">; }, request: ", - { - "pluginId": "@kbn/core-http-server", - "scope": "common", - "docId": "kibKbnCoreHttpServerPluginApi", - "section": "def-common.KibanaRequest", - "text": "KibanaRequest" - }, - ") => Promise<{ readonly index: string; create: (createParams: { annotation: { type: string; }; '@timestamp': string; message: string; } & { tags?: string[] | undefined; service?: { name?: string | undefined; environment?: string | undefined; version?: string | undefined; } | undefined; }) => Promise<{ _id: string; _index: string; _source: ", - "Annotation", - "; }>; getById: (getByIdParams: { id: string; }) => Promise<", - "GetResponse", - ">; delete: (deleteParams: { id: string; }) => Promise<", - "WriteResponseBase", - ">; } | undefined>; alertsLocator: ", - { - "pluginId": "share", - "scope": "common", - "docId": "kibSharePluginApi", - "section": "def-common.LocatorPublic", - "text": "LocatorPublic" - }, - "<", - { - "pluginId": "observability", - "scope": "common", - "docId": "kibObservabilityPluginApi", - "section": "def-common.AlertsLocatorParams", - "text": "AlertsLocatorParams" - }, - ">; }; start: () => Promise; }; ruleRegistry: { setup: ", - { - "pluginId": "ruleRegistry", - "scope": "server", - "docId": "kibRuleRegistryPluginApi", - "section": "def-server.RuleRegistryPluginSetupContract", - "text": "RuleRegistryPluginSetupContract" - }, - "; start: () => Promise<", - { - "pluginId": "ruleRegistry", - "scope": "server", - "docId": "kibRuleRegistryPluginApi", - "section": "def-server.RuleRegistryPluginStartContract", - "text": "RuleRegistryPluginStartContract" - }, - ">; }; infra: { setup: ", - { - "pluginId": "infra", - "scope": "server", - "docId": "kibInfraPluginApi", - "section": "def-server.InfraPluginSetup", - "text": "InfraPluginSetup" - }, - "; start: () => Promise<", - { - "pluginId": "infra", - "scope": "server", - "docId": "kibInfraPluginApi", - "section": "def-server.InfraPluginStart", - "text": "InfraPluginStart" - }, - ">; }; dataViews: { setup: {}; start: () => Promise<", - { - "pluginId": "dataViews", - "scope": "server", - "docId": "kibDataViewsPluginApi", - "section": "def-server.DataViewsServerPluginStart", - "text": "DataViewsServerPluginStart" - }, - ">; }; share: { setup: ", - { - "pluginId": "share", - "scope": "server", - "docId": "kibSharePluginApi", - "section": "def-server.SharePluginSetup", - "text": "SharePluginSetup" - }, - "; start: () => Promise; }; actions?: { setup: ", - { - "pluginId": "actions", - "scope": "server", - "docId": "kibActionsPluginApi", - "section": "def-server.PluginSetupContract", - "text": "PluginSetupContract" - }, - "; start: () => Promise<", - { - "pluginId": "actions", - "scope": "server", - "docId": "kibActionsPluginApi", - "section": "def-server.PluginStartContract", - "text": "PluginStartContract" - }, - ">; } | undefined; alerting?: { setup: ", - { - "pluginId": "alerting", - "scope": "server", - "docId": "kibAlertingPluginApi", - "section": "def-server.PluginSetupContract", - "text": "PluginSetupContract" - }, - "; start: () => Promise<", - { - "pluginId": "alerting", - "scope": "server", - "docId": "kibAlertingPluginApi", - "section": "def-server.PluginStartContract", - "text": "PluginStartContract" - }, - ">; } | undefined; cloud?: { setup: ", - { - "pluginId": "cloud", - "scope": "server", - "docId": "kibCloudPluginApi", - "section": "def-server.CloudSetup", - "text": "CloudSetup" - }, - "; start: () => Promise; } | undefined; fleet?: { setup: never; start: () => Promise<", - { - "pluginId": "fleet", - "scope": "server", - "docId": "kibFleetPluginApi", - "section": "def-server.FleetStartContract", - "text": "FleetStartContract" - }, - ">; } | undefined; home?: { setup: ", - { - "pluginId": "home", - "scope": "server", - "docId": "kibHomePluginApi", - "section": "def-server.HomeServerPluginSetup", - "text": "HomeServerPluginSetup" - }, - "; start: () => Promise<", - { - "pluginId": "home", - "scope": "server", - "docId": "kibHomePluginApi", - "section": "def-server.HomeServerPluginStart", - "text": "HomeServerPluginStart" - }, - ">; } | undefined; ml?: { setup: ", - { - "pluginId": "ml", - "scope": "server", - "docId": "kibMlPluginApi", - "section": "def-server.MlPluginSetup", - "text": "MlPluginSetup" - }, - "; start: () => Promise; } | undefined; security?: { setup: ", - { - "pluginId": "security", - "scope": "server", - "docId": "kibSecurityPluginApi", - "section": "def-server.SecurityPluginSetup", - "text": "SecurityPluginSetup" - }, - "; start: () => Promise<", - { - "pluginId": "security", - "scope": "server", - "docId": "kibSecurityPluginApi", - "section": "def-server.SecurityPluginStart", - "text": "SecurityPluginStart" - }, - ">; } | undefined; spaces?: { setup: ", - { - "pluginId": "spaces", - "scope": "server", - "docId": "kibSpacesPluginApi", - "section": "def-server.SpacesPluginSetup", - "text": "SpacesPluginSetup" - }, - "; start: () => Promise<", - { - "pluginId": "spaces", - "scope": "server", - "docId": "kibSpacesPluginApi", - "section": "def-server.SpacesPluginStart", - "text": "SpacesPluginStart" - }, - ">; } | undefined; taskManager?: { setup: ", - { - "pluginId": "taskManager", - "scope": "server", - "docId": "kibTaskManagerPluginApi", - "section": "def-server.TaskManagerSetupContract", - "text": "TaskManagerSetupContract" - }, - "; start: () => Promise<", - { - "pluginId": "taskManager", - "scope": "server", - "docId": "kibTaskManagerPluginApi", - "section": "def-server.TaskManagerStartContract", - "text": "TaskManagerStartContract" - }, - ">; } | undefined; usageCollection?: { setup: ", - { - "pluginId": "usageCollection", - "scope": "server", - "docId": "kibUsageCollectionPluginApi", - "section": "def-server.UsageCollectionSetup", - "text": "UsageCollectionSetup" - }, - "; start: () => Promise; } | undefined; customIntegrations?: { setup: ", - { - "pluginId": "customIntegrations", - "scope": "server", - "docId": "kibCustomIntegrationsPluginApi", - "section": "def-server.CustomIntegrationsPluginSetup", - "text": "CustomIntegrationsPluginSetup" - }, - "; start: () => Promise<", - { - "pluginId": "customIntegrations", - "scope": "server", - "docId": "kibCustomIntegrationsPluginApi", - "section": "def-server.CustomIntegrationsPluginStart", - "text": "CustomIntegrationsPluginStart" - }, - ">; } | undefined; }" - ], - "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "apm", - "id": "def-server.APMRouteHandlerResources.ruleDataClient", - "type": "Object", - "tags": [], - "label": "ruleDataClient", - "description": [], - "signature": [ - { - "pluginId": "ruleRegistry", - "scope": "server", - "docId": "kibRuleRegistryPluginApi", - "section": "def-server.IRuleDataClient", - "text": "IRuleDataClient" - } - ], - "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "apm", - "id": "def-server.APMRouteHandlerResources.telemetryUsageCounter", - "type": "Object", - "tags": [], - "label": "telemetryUsageCounter", - "description": [], - "signature": [ - { - "pluginId": "usageCollection", - "scope": "server", - "docId": "kibUsageCollectionPluginApi", - "section": "def-server.IUsageCounter", - "text": "IUsageCounter" - }, - " | undefined" - ], - "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "apm", - "id": "def-server.APMRouteHandlerResources.kibanaVersion", - "type": "string", - "tags": [], - "label": "kibanaVersion", - "description": [], - "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false, - "trackAdoption": false - } - ], - "initialIsOpen": false - } - ], + "interfaces": [], "enums": [], "misc": [ { @@ -961,24 +438,9 @@ "label": "APMConfig", "description": [], "signature": [ - "{ readonly indices: Readonly<{} & { error: string; metric: string; transaction: string; span: string; onboarding: string; }>; readonly enabled: boolean; readonly autoCreateApmDataView: boolean; readonly serviceMapEnabled: boolean; readonly serviceMapFingerprintBucketSize: number; readonly serviceMapFingerprintGlobalBucketSize: number; readonly serviceMapTraceIdBucketSize: number; readonly serviceMapTraceIdGlobalBucketSize: number; readonly serviceMapMaxTracesPerRequest: number; readonly serviceMapTerminateAfter: number; readonly serviceMapMaxTraces: number; readonly ui: Readonly<{} & { enabled: boolean; maxTraceItems: number; }>; readonly searchAggregatedTransactions: ", + "{ readonly enabled: boolean; readonly autoCreateApmDataView: boolean; readonly serviceMapEnabled: boolean; readonly serviceMapFingerprintBucketSize: number; readonly serviceMapFingerprintGlobalBucketSize: number; readonly serviceMapTraceIdBucketSize: number; readonly serviceMapTraceIdGlobalBucketSize: number; readonly serviceMapMaxTracesPerRequest: number; readonly serviceMapTerminateAfter: number; readonly serviceMapMaxTraces: number; readonly ui: Readonly<{} & { enabled: boolean; maxTraceItems: number; }>; readonly searchAggregatedTransactions: ", "SearchAggregatedTransactionSetting", - "; readonly telemetryCollectionEnabled: boolean; readonly metricsInterval: number; readonly agent: Readonly<{} & { migrations: Readonly<{} & { enabled: boolean; }>; }>; readonly forceSyntheticSource: boolean; readonly latestAgentVersionsUrl: string; readonly serverlessOnboarding: boolean; readonly serverless: Readonly<{} & { enabled: true; }>; readonly managedServiceUrl: string; readonly featureFlags: Readonly<{} & { agentConfigurationAvailable: boolean; configurableIndicesAvailable: boolean; infrastructureTabAvailable: boolean; infraUiAvailable: boolean; migrationToFleetAvailable: boolean; sourcemapApiAvailable: boolean; storageExplorerAvailable: boolean; }>; }" - ], - "path": "x-pack/plugins/apm/server/index.ts", - "deprecated": false, - "trackAdoption": false, - "initialIsOpen": false - }, - { - "parentPluginId": "apm", - "id": "def-server.ApmIndicesConfigName", - "type": "Type", - "tags": [], - "label": "ApmIndicesConfigName", - "description": [], - "signature": [ - "\"error\" | \"metric\" | \"transaction\" | \"span\" | \"onboarding\"" + "; readonly telemetryCollectionEnabled: boolean; readonly metricsInterval: number; readonly agent: Readonly<{} & { migrations: Readonly<{} & { enabled: boolean; }>; }>; readonly forceSyntheticSource: boolean; readonly latestAgentVersionsUrl: string; readonly serverless: Readonly<{} & { enabled: true; }>; readonly serverlessOnboarding: boolean; readonly managedServiceUrl: string; readonly featureFlags: Readonly<{} & { agentConfigurationAvailable: boolean; configurableIndicesAvailable: boolean; infrastructureTabAvailable: boolean; infraUiAvailable: boolean; migrationToFleetAvailable: boolean; sourcemapApiAvailable: boolean; storageExplorerAvailable: boolean; }>; }" ], "path": "x-pack/plugins/apm/server/index.ts", "deprecated": false, @@ -1010,13 +472,7 @@ "<{ 'service.environment': ", "StringC", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { 'service.name': string; start: string; end: string; } & { 'service.environment'?: string | undefined; }; }; }) => Promise<{ content: ", "APMDownstreamDependency", "[]; }>; } & ", @@ -1112,13 +568,7 @@ "<", "CorrelationsEventType", ".Error>]>; }>>; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { body: { sets: { foreground: { start: string; end: string; 'service.name': string; label: string; } & { filter?: string | undefined; 'service.environment'?: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { start: string; end: string; 'error.grouping_name': string; }; }; }) => Promise<{ content: Partial<", "APMError", "> | undefined; }>; } & ", @@ -1186,13 +630,7 @@ "; 'transaction.type': ", "StringC", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { 'service.name': string; start: string; end: string; } & { 'service.environment'?: string | undefined; 'transaction.type'?: string | undefined; }; }; }) => Promise<{ content: ", "ServiceSummary", "; }>; } & ", @@ -1314,13 +752,7 @@ "; end: ", "StringC", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { body: { stats: ({ 'service.environment': \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; end: ", "Type", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params?: { query?: { kuery?: string | undefined; start?: number | undefined; end?: number | undefined; } | undefined; } | undefined; }) => Promise<{ esResponses: { existingIndexTemplates: ", "IndicesGetIndexTemplateIndexTemplateItem", "[]; fieldCaps?: ", @@ -1381,7 +807,7 @@ "IngestGetPipelineResponse", " | undefined; }; diagnosticsPrivileges: { index: Record; cluster: Record; hasAllClusterPrivileges: boolean; hasAllIndexPrivileges: boolean; hasAllPrivileges: boolean; }; apmIndices: Readonly<{ error: string; onboarding: string; span: string; transaction: string; metric: string; }>; apmIndexTemplates: { name: string; isNonStandard: boolean; exists: boolean; }[]; fleetPackageInfo: { isInstalled: boolean; version?: string | undefined; }; kibanaVersion: string; elasticsearchVersion: string; apmEvents: ", + ">; cluster: Record; hasAllClusterPrivileges: boolean; hasAllIndexPrivileges: boolean; hasAllPrivileges: boolean; }; apmIndices: Readonly<{} & { error: string; metric: string; transaction: string; span: string; onboarding: string; }>; apmIndexTemplates: { name: string; isNonStandard: boolean; exists: boolean; }[]; fleetPackageInfo: { isInstalled: boolean; version?: string | undefined; }; kibanaVersion: string; elasticsearchVersion: string; apmEvents: ", "ApmEvent", "[]; invalidIndices?: ", "IndiciesItem", @@ -1440,13 +866,7 @@ "; fieldValues: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { kuery: string; } & { start: number; end: number; } & { offset?: string | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { kuery: string; } & { start: number; end: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; fieldName: ", "StringC", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { kuery: string; } & { start: number; end: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { kuery: string; } & { start: number; end: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { kuery: string; } & { start: number; end: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { kuery: string; } & { start: number; end: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { kuery: string; } & { start: number; end: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { kuery: string; } & { start: number; end: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { kuery: string; } & { start: number; end: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/get_latest_agent_versions\": { endpoint: \"GET /internal/apm/get_latest_agent_versions\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<", "AgentLatestVersionsResponse", ">; } & ", @@ -2116,13 +1476,7 @@ "; agentLanguage: ", "StringC", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/settings/labs\": { endpoint: \"GET /internal/apm/settings/labs\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<{ labsItems: string[]; }>; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/time_range_metadata\": { endpoint: \"GET /internal/apm/time_range_metadata\"; params?: ", @@ -2170,25 +1518,13 @@ "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { useSpanName: boolean; enableServiceTransactionMetrics: boolean; enableContinuousRollups: boolean; } & { kuery: string; } & { start: number; end: number; }; }; }) => Promise<", "TimeRangeMetadata", ">; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/debug-telemetry\": { endpoint: \"GET /internal/apm/debug-telemetry\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/services/{serviceName}/infrastructure_attributes\": { endpoint: \"GET /internal/apm/services/{serviceName}/infrastructure_attributes\"; params?: ", @@ -2230,13 +1566,7 @@ "text": "NonEmptyStringBrand" }, ">]>; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { kuery: string; } & { start: number; end: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { traceId: string; spanId: string; }; query: { kuery: string; } & { start: number; end: number; }; }; }) => Promise<{ spanLinksDetails: ", "SpanLinkDetails", "[]; }>; } & ", @@ -2346,13 +1670,7 @@ "text": "ProcessorEvent" }, ".span>]>; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { traceId: string; spanId: string; }; query: { kuery: string; } & { start: number; end: number; } & { processorEvent: ", { "pluginId": "observability", @@ -2424,13 +1742,7 @@ "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { indexLifecyclePhase: ", "IndexLifecyclePhaseSelectOption", "; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", @@ -2446,13 +1758,7 @@ ">; } & { kuery: string; } & { start: number; end: number; }; }; }) => Promise<{ services: { serviceName: string; }[]; }>; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/storage_explorer/is_cross_cluster_search\": { endpoint: \"GET /internal/apm/storage_explorer/is_cross_cluster_search\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<{ isCrossClusterSearch: boolean; }>; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/storage_explorer_summary_stats\": { endpoint: \"GET /internal/apm/storage_explorer_summary_stats\"; params?: ", @@ -2518,13 +1824,7 @@ "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { indexLifecyclePhase: ", "IndexLifecyclePhaseSelectOption", "; } & { probability: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", @@ -2542,13 +1842,7 @@ ">; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/storage_explorer/privileges\": { endpoint: \"GET /internal/apm/storage_explorer/privileges\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<{ hasPrivileges: boolean; }>; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/storage_chart\": { endpoint: \"GET /internal/apm/storage_chart\"; params?: ", @@ -2614,13 +1908,7 @@ "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { indexLifecyclePhase: ", "IndexLifecyclePhaseSelectOption", "; } & { probability: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", @@ -2704,13 +1992,7 @@ "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { indexLifecyclePhase: ", "IndexLifecyclePhaseSelectOption", "; } & { probability: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", @@ -2790,13 +2072,7 @@ "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { indexLifecyclePhase: ", "IndexLifecyclePhaseSelectOption", "; } & { probability: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", @@ -2832,13 +2108,7 @@ "<", "PrivilegeType", ".AGENT_CONFIG>]>>; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { body: { name: string; privileges: ", "PrivilegeType", "[]; }; }; }) => Promise<", @@ -2852,37 +2122,19 @@ "<{ id: ", "StringC", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { body: { id: string; }; }; }) => Promise<", "InvalidateAgentKeyResponse", ">; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/agent_keys/privileges\": { endpoint: \"GET /internal/apm/agent_keys/privileges\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<", "AgentKeysPrivilegesResponse", ">; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/agent_keys\": { endpoint: \"GET /internal/apm/agent_keys\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<", "AgentKeysResponse", ">; } & ", @@ -2936,13 +2188,7 @@ ".span>]>; id: ", "StringC", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { processorEvent: ", { "pluginId": "observability", @@ -2954,13 +2200,7 @@ "; id: string; }; }; }) => Promise<{ metadata: Partial>; }>; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/has_data\": { endpoint: \"GET /internal/apm/has_data\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<{ hasData: boolean; }>; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/fallback_to_transactions\": { endpoint: \"GET /internal/apm/fallback_to_transactions\"; params?: ", @@ -2978,13 +2218,7 @@ "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params?: { query?: ({ kuery: string; } & { start?: number | undefined; end?: number | undefined; }) | undefined; } | undefined; }) => Promise<{ fallbackToTransactions: boolean; }>; } & ", "APMRouteCreateOptions", "; \"POST /internal/apm/correlations/p_values/transactions\": { endpoint: \"POST /internal/apm/correlations/p_values/transactions\"; params?: ", @@ -3040,13 +2274,7 @@ "<", "StringC", ">; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { body: { serviceName?: string | undefined; transactionName?: string | undefined; transactionType?: string | undefined; durationMin?: number | undefined; durationMax?: number | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }>>; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { body: { serviceName?: string | undefined; transactionName?: string | undefined; transactionType?: string | undefined; durationMin?: number | undefined; durationMax?: number | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { body: { serviceName?: string | undefined; transactionName?: string | undefined; transactionType?: string | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { serviceName?: string | undefined; transactionName?: string | undefined; transactionType?: string | undefined; samplerShardSize?: string | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { serviceName?: string | undefined; transactionName?: string | undefined; transactionType?: string | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; sampleRangeTo: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { start: number; end: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { dependencyName: string; spanName: string; percentileThreshold: number; } & { start: number; end: number; } & { kuery: string; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { start: number; end: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { dependencyName: string; spanName: string; searchServiceDestinationMetrics: boolean; } & { start: number; end: number; } & { kuery: string; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { dependencyName: string; spanName: string; searchServiceDestinationMetrics: boolean; } & { start: number; end: number; } & { kuery: string; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { dependencyName: string; spanName: string; searchServiceDestinationMetrics: boolean; } & { start: number; end: number; } & { kuery: string; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { dependencyName: string; } & { start: number; end: number; }; }; }) => Promise<{ metadata: ", "MetadataForDependencyResponse", "; }>; } & ", @@ -3832,13 +2994,7 @@ "<{ kuery: ", "StringC", "; }>]>; }>]> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { dependencyName: string; } & { start: number; end: number; } & { numBuckets: number; }; } & { query?: ({ environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; }>]> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { start: number; end: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/fleet/java_agent_versions\": { endpoint: \"GET /internal/apm/fleet/java_agent_versions\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<{ versions: string[] | undefined; }>; } & ", "APMRouteCreateOptions", "; \"POST /internal/apm/fleet/cloud_apm_package_policy\": { endpoint: \"POST /internal/apm/fleet/cloud_apm_package_policy\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<{ cloudApmPackagePolicy: ", { "pluginId": "fleet", @@ -3950,25 +3088,13 @@ "; }>; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/fleet/migration_check\": { endpoint: \"GET /internal/apm/fleet/migration_check\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<", "RunMigrationCheckResponse", ">; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/fleet/apm_server_schema/unsupported\": { endpoint: \"GET /internal/apm/fleet/apm_server_schema/unsupported\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<{ unsupported: ", "UnsupportedApmServerSchema", "; }>; } & ", @@ -3984,45 +3110,21 @@ ", ", "UnknownC", ">; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { body: { schema: { [x: string]: unknown; }; }; }; }) => Promise; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/fleet/agents\": { endpoint: \"GET /internal/apm/fleet/agents\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<", "FleetAgentResponse", ">; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/fleet/has_apm_policies\": { endpoint: \"GET /internal/apm/fleet/has_apm_policies\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<{ hasApmPolicies: boolean; }>; } & ", "APMRouteCreateOptions", "; \"POST /internal/apm/sourcemaps/migrate_fleet_artifacts\": { endpoint: \"POST /internal/apm/sourcemaps/migrate_fleet_artifacts\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise; } & ", "APMRouteCreateOptions", "; \"POST /api/apm/androidmaps 2023-10-31\": { endpoint: \"POST /api/apm/androidmaps 2023-10-31\"; params?: ", @@ -4036,13 +3138,7 @@ "; map_file: ", "Type", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { body: { service_name: string; service_version: string; map_file: string; }; }; }) => Promise<", { "pluginId": "fleet", @@ -4060,13 +3156,7 @@ "<{ id: ", "StringC", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { id: string; }; }; }) => Promise; } & ", "APMRouteCreateOptions", "; \"POST /api/apm/sourcemaps 2023-10-31\": { endpoint: \"POST /api/apm/sourcemaps 2023-10-31\"; params?: ", @@ -4082,13 +3172,7 @@ "; sourcemap: ", "Type", "<{ version: number; sources: string[]; mappings: string; } & { names?: string[] | undefined; file?: string | undefined; sourceRoot?: string | undefined; sourcesContent?: (string | null)[] | undefined; }, string | Buffer, unknown>; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { body: { service_name: string; service_version: string; bundle_filepath: string; sourcemap: { version: number; sources: string[]; mappings: string; } & { names?: string[] | undefined; file?: string | undefined; sourceRoot?: string | undefined; sourcesContent?: (string | null)[] | undefined; }; }; }; }) => Promise<", { "pluginId": "fleet", @@ -4108,13 +3192,7 @@ "; perPage: ", "Type", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params?: { query?: { page?: number | undefined; perPage?: number | undefined; } | undefined; } | undefined; }) => Promise<", "ListSourceMapArtifactsResponse", " | undefined>; } & ", @@ -4126,13 +3204,7 @@ "<{ id: ", "StringC", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { id: string; }; }; }) => Promise<{ result: string; }>; } & ", "APMRouteCreateOptions", "; \"PUT /internal/apm/settings/custom_links/{id}\": { endpoint: \"PUT /internal/apm/settings/custom_links/{id}\"; params?: ", @@ -4174,13 +3246,7 @@ "; }>]>; value: ", "StringC", "; }>>; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { id: string; }; body: { label: string; url: string; } & { id?: string | undefined; filters?: { key: \"\" | \"service.name\" | \"service.environment\" | \"transaction.name\" | \"transaction.type\"; value: string; }[] | undefined; }; }; }) => Promise; } & ", "APMRouteCreateOptions", "; \"POST /internal/apm/settings/custom_links\": { endpoint: \"POST /internal/apm/settings/custom_links\"; params?: ", @@ -4218,13 +3284,7 @@ "; }>]>; value: ", "StringC", "; }>>; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { body: { label: string; url: string; } & { id?: string | undefined; filters?: { key: \"\" | \"service.name\" | \"service.environment\" | \"transaction.name\" | \"transaction.type\"; value: string; }[] | undefined; }; }; }) => Promise; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/settings/custom_links\": { endpoint: \"GET /internal/apm/settings/custom_links\"; params?: ", @@ -4240,13 +3300,7 @@ "; 'transaction.type': ", "StringC", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params?: { query?: { 'service.name'?: string | undefined; 'service.environment'?: string | undefined; 'transaction.name'?: string | undefined; 'transaction.type'?: string | undefined; } | undefined; } | undefined; }) => Promise<{ customLinks: ", "CustomLink", "[]; }>; } & ", @@ -4264,13 +3318,7 @@ "; 'transaction.type': ", "StringC", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params?: { query?: { 'service.name'?: string | undefined; 'service.environment'?: string | undefined; 'transaction.name'?: string | undefined; 'transaction.type'?: string | undefined; } | undefined; } | undefined; }) => Promise<", "Transaction", ">; } & ", @@ -4280,13 +3328,7 @@ "<{ body: ", "PartialC", "; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { body: { readonly error?: string | undefined; readonly metric?: string | undefined; readonly transaction?: string | undefined; readonly span?: string | undefined; readonly onboarding?: string | undefined; }; }; }) => Promise<", { "pluginId": "@kbn/core-saved-objects-common", @@ -4298,45 +3340,21 @@ "<{}>>; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/settings/apm-indices\": { endpoint: \"GET /internal/apm/settings/apm-indices\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, - ") => Promise>; } & ", + "APMRouteHandlerResources", + ") => Promise>; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/settings/apm-index-settings\": { endpoint: \"GET /internal/apm/settings/apm-index-settings\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<{ apmIndexSettings: ", "ApmIndexSettingsResponse", "; }>; } & ", "APMRouteCreateOptions", "; \"POST /internal/apm/settings/anomaly-detection/update_to_v3\": { endpoint: \"POST /internal/apm/settings/anomaly-detection/update_to_v3\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<{ update: boolean; }>; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/settings/anomaly-detection/environments\": { endpoint: \"GET /internal/apm/settings/anomaly-detection/environments\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<{ environments: string[]; }>; } & ", "APMRouteCreateOptions", "; \"POST /internal/apm/settings/anomaly-detection/jobs\": { endpoint: \"POST /internal/apm/settings/anomaly-detection/jobs\"; params?: ", @@ -4364,13 +3382,7 @@ "text": "NonEmptyStringBrand" }, ">]>>; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { body: { environments: (\"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", ")[]; }; }; }) => Promise<{ jobCreated: true; }>; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/settings/anomaly-detection/jobs\": { endpoint: \"GET /internal/apm/settings/anomaly-detection/jobs\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<{ jobs: ", "ApmMlJob", "[]; hasLegacyJobs: boolean; }>; } & ", @@ -4402,13 +3408,7 @@ "<{ serviceName: ", "StringC", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { serviceName: string; }; }; }) => Promise<{ agentName: string | undefined; }>; } & ", "APMRouteCreateOptions", "; \"GET /api/apm/settings/agent-configuration/environments 2023-10-31\": { endpoint: \"GET /api/apm/settings/agent-configuration/environments 2023-10-31\"; params?: ", @@ -4418,13 +3418,7 @@ "<{ serviceName: ", "StringC", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params?: { query?: { serviceName?: string | undefined; } | undefined; } | undefined; }) => Promise<{ environments: ", "EnvironmentsResponse", "; }>; } & ", @@ -4448,13 +3442,7 @@ "; mark_as_applied_by_agent: ", "BooleanC", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { body: { service: { name?: string | undefined; environment?: string | undefined; }; } & { etag?: string | undefined; mark_as_applied_by_agent?: boolean | undefined; }; }; }) => Promise<", { "pluginId": "@kbn/es-types", @@ -4504,13 +3492,7 @@ ">]>; }>]>; }>]> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query?: { overwrite?: boolean | undefined; } | undefined; } & { body: { agent_name?: string | undefined; } & { service: { name?: string | undefined; environment?: string | undefined; }; settings: { [x: string]: string; } & { [x: string]: any; }; }; }; }) => Promise; } & ", "APMRouteCreateOptions", "; \"DELETE /api/apm/settings/agent-configuration 2023-10-31\": { endpoint: \"DELETE /api/apm/settings/agent-configuration 2023-10-31\"; params?: ", @@ -4524,13 +3506,7 @@ "; environment: ", "StringC", "; }>; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { body: { service: { name?: string | undefined; environment?: string | undefined; }; }; }; }) => Promise<{ result: string; }>; } & ", "APMRouteCreateOptions", "; \"GET /api/apm/settings/agent-configuration/view 2023-10-31\": { endpoint: \"GET /api/apm/settings/agent-configuration/view 2023-10-31\"; params?: ", @@ -4542,25 +3518,13 @@ "; environment: ", "StringC", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params?: { query?: { name?: string | undefined; environment?: string | undefined; } | undefined; } | undefined; }) => Promise<", "AgentConfiguration", ">; } & ", "APMRouteCreateOptions", "; \"GET /api/apm/settings/agent-configuration 2023-10-31\": { endpoint: \"GET /api/apm/settings/agent-configuration 2023-10-31\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<{ configurations: ", "AgentConfiguration", "[]; }>; } & ", @@ -4629,16 +3593,10 @@ "ArrayC", "<", "StringC", - ">; kqlFilter: ", - "StringC", - "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + ">; searchConfiguration: ", + "Type", + "<{ query: { query: string | { [x: string]: any; }; language: string; }; }, string, unknown>; }>]>; }> | undefined; handler: ({}: ", + "APMRouteHandlerResources", " & { params: { query: { aggregationType?: ", "AggregationType", " | undefined; serviceName?: string | undefined; errorGroupingKey?: string | undefined; transactionType?: string | undefined; transactionName?: string | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", @@ -4651,7 +3609,7 @@ "section": "def-common.NonEmptyStringBrand", "text": "NonEmptyStringBrand" }, - ">; } & { start: number; end: number; } & { interval: string; } & { groupBy?: string[] | undefined; kqlFilter?: string | undefined; }; }; }) => Promise<{ latencyChartPreview: ", + ">; } & { start: number; end: number; } & { interval: string; } & { groupBy?: string[] | undefined; searchConfiguration?: { query: { query: string | { [x: string]: any; }; language: string; }; } | undefined; }; }; }) => Promise<{ latencyChartPreview: ", "PreviewChartResponse", "; }>; } & ", "APMRouteCreateOptions", @@ -4719,16 +3677,10 @@ "ArrayC", "<", "StringC", - ">; kqlFilter: ", - "StringC", - "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + ">; searchConfiguration: ", + "Type", + "<{ query: { query: string | { [x: string]: any; }; language: string; }; }, string, unknown>; }>]>; }> | undefined; handler: ({}: ", + "APMRouteHandlerResources", " & { params: { query: { aggregationType?: ", "AggregationType", " | undefined; serviceName?: string | undefined; errorGroupingKey?: string | undefined; transactionType?: string | undefined; transactionName?: string | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", @@ -4741,7 +3693,7 @@ "section": "def-common.NonEmptyStringBrand", "text": "NonEmptyStringBrand" }, - ">; } & { start: number; end: number; } & { interval: string; } & { groupBy?: string[] | undefined; kqlFilter?: string | undefined; }; }; }) => Promise<{ errorCountChartPreview: ", + ">; } & { start: number; end: number; } & { interval: string; } & { groupBy?: string[] | undefined; searchConfiguration?: { query: { query: string | { [x: string]: any; }; language: string; }; } | undefined; }; }; }) => Promise<{ errorCountChartPreview: ", "PreviewChartResponse", "; }>; } & ", "APMRouteCreateOptions", @@ -4809,16 +3761,10 @@ "ArrayC", "<", "StringC", - ">; kqlFilter: ", - "StringC", - "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + ">; searchConfiguration: ", + "Type", + "<{ query: { query: string | { [x: string]: any; }; language: string; }; }, string, unknown>; }>]>; }> | undefined; handler: ({}: ", + "APMRouteHandlerResources", " & { params: { query: { aggregationType?: ", "AggregationType", " | undefined; serviceName?: string | undefined; errorGroupingKey?: string | undefined; transactionType?: string | undefined; transactionName?: string | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", @@ -4831,7 +3777,7 @@ "section": "def-common.NonEmptyStringBrand", "text": "NonEmptyStringBrand" }, - ">; } & { start: number; end: number; } & { interval: string; } & { groupBy?: string[] | undefined; kqlFilter?: string | undefined; }; }; }) => Promise<{ errorRateChartPreview: ", + ">; } & { start: number; end: number; } & { interval: string; } & { groupBy?: string[] | undefined; searchConfiguration?: { query: { query: string | { [x: string]: any; }; language: string; }; } | undefined; }; }; }) => Promise<{ errorRateChartPreview: ", "PreviewChartResponse", "; }>; } & ", "APMRouteCreateOptions", @@ -4886,13 +3832,7 @@ "<{ offset: ", "StringC", "; }>]>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { transactionType: string; transactionName: string; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { transactionType: string; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }>]>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { transactionType: string; bucketSizeInSeconds: number; } & { transactionName?: string | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { transactionType: string; } & { transactionName?: string | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { transactionType: string; transactionName: string; } & { transactionId?: string | undefined; traceId?: string | undefined; sampleRangeFrom?: number | undefined; sampleRangeTo?: number | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { transactionType: string; latencyAggregationType: ", "LatencyAggregationType", "; bucketSizeInSeconds: number; useDurationSummary: boolean; } & { transactionName?: string | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", @@ -5476,13 +4386,7 @@ "<", "LatencyAggregationType", ".p99>]>; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", ", ", "UndefinedC", "]>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { traceId: string; spanId: string; }; query: { start: number; end: number; } & { parentTransactionId?: string | undefined; }; }; }) => Promise<{ span?: ", "Span", " | undefined; parentTransaction?: ", @@ -5676,13 +4568,7 @@ "; end: ", "Type", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { traceId: string; transactionId: string; }; query: { start: number; end: number; }; }; }) => Promise<", "Transaction", ">; } & ", @@ -5736,13 +4622,7 @@ "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { body: { traceIds: string[]; serviceName: ", "Branded", "]>; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { start: number; end: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; end: ", "Type", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { transactionId: string; }; query: { start: number; end: number; }; }; }) => Promise<{ transaction: ", "Transaction", "; }>; } & ", @@ -5872,13 +4740,7 @@ "; end: ", "Type", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { traceId: string; }; query: { start: number; end: number; }; }; }) => Promise<{ transaction: ", "Transaction", "; }>; } & ", @@ -5920,15 +4782,9 @@ "; }>, ", "TypeC", "<{ probability: ", - "Type", - "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "Type", + "; }>]>; }> | undefined; handler: ({}: ", + "APMRouteHandlerResources", " & { params: { query: { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { traceId: string; }; query: { start: number; end: number; } & { entryTransactionId: string; }; }; }) => Promise<{ traceItems: ", "TraceItems", "; entryTransaction?: ", @@ -5996,23 +4846,11 @@ "<{ serviceName: ", "StringC", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { fieldName: string; fieldValue: string; } & { start: number; end: number; } & { serviceName?: string | undefined; }; }; }) => Promise<{ terms: string[]; }>; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/service-group/counts\": { endpoint: \"GET /internal/apm/service-group/counts\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/service-group/services\": { endpoint: \"GET /internal/apm/service-group/services\"; params?: ", @@ -6030,13 +4868,7 @@ "<{ kuery: ", "StringC", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { start: number; end: number; } & { kuery?: string | undefined; }; }; }) => Promise<{ items: ", "LookupServicesResponse", "; }>; } & ", @@ -6048,13 +4880,7 @@ "<{ serviceGroupId: ", "StringC", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { serviceGroupId: string; }; }; }) => Promise; } & ", "APMRouteCreateOptions", "; \"POST /internal/apm/service-group\": { endpoint: \"POST /internal/apm/service-group\"; params?: ", @@ -6086,13 +4912,7 @@ ", ", "UndefinedC", "]>; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { serviceGroupId?: string | undefined; } | undefined; body: { groupName: string; kuery: string; description: string | undefined; color: string | undefined; }; }; }) => Promise<", "SavedServiceGroup", ">; } & ", @@ -6104,25 +4924,13 @@ "<{ serviceGroup: ", "StringC", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { serviceGroup: string; }; }; }) => Promise<{ serviceGroup: ", "SavedServiceGroup", "; }>; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/service-groups\": { endpoint: \"GET /internal/apm/service-groups\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<{ serviceGroups: ", "SavedServiceGroup", "[]; }>; } & ", @@ -6162,13 +4970,7 @@ "text": "NonEmptyStringBrand" }, ">]>; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { start: number; end: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { start: number; end: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { numBuckets: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { latencyAggregationType: ", "LatencyAggregationType", "; transactionType: string; serviceNodeIds: string[]; numBuckets: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", @@ -6514,13 +5292,7 @@ "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { latencyAggregationType: ", "LatencyAggregationType", "; transactionType: string; } & { offset?: string | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", @@ -6628,13 +5400,7 @@ "<", "RollupInterval", ".None>]>; }>]>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { transactionType: string; bucketSizeInSeconds: number; } & { transactionName?: string | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; end: ", "Type", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; serviceNodeName: string; }; query: { start: number; end: number; }; }; }) => Promise<", "ServiceInstanceMetadataDetailsResponse", " & ({} | ", @@ -6718,13 +5478,7 @@ "<", "StringC", ">; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; body: { '@timestamp': number; service: { version: string; } & { environment?: string | undefined; }; } & { message?: string | undefined; tags?: string[] | undefined; }; }; }) => Promise<{ _id: string; _index: string; _source: ", "Annotation", "; }>; } & ", @@ -6764,13 +5518,7 @@ "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; serviceNodeName: string; }; query: { kuery: string; } & { start: number; end: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; end: ", "Type", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { start: number; end: number; }; }; }) => Promise<", "ServiceTransactionTypesResponse", ">; } & ", @@ -6884,13 +5620,7 @@ "; end: ", "Type", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { start: number; end: number; }; }; }) => Promise<", "ServiceAgentResponse", ">; } & ", @@ -6908,13 +5638,7 @@ "; end: ", "Type", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { start: number; end: number; }; }; }) => Promise<", "ServiceMetadataIcons", ">; } & ", @@ -6932,13 +5656,7 @@ "; end: ", "Type", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { start: number; end: number; }; }; }) => Promise<", "ServiceMetadataDetails", ">; } & ", @@ -7030,13 +5748,7 @@ "<{ serviceNames: ", "Type", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; end: ", "Type", "; }>]>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { serviceGroup?: string | undefined; } & { probability: number; } & { documentType: ", "ApmDocumentType", ".TransactionMetric | ", @@ -7206,13 +5912,7 @@ "<{ offset: ", "StringC", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { dependencyName: string; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { serviceName?: string | undefined; serviceGroup?: string | undefined; kuery?: string | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/observability_overview/has_data\": { endpoint: \"GET /internal/apm/observability_overview/has_data\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<", "HasDataResponse", ">; } & ", @@ -7376,13 +6058,7 @@ "; intervalString: ", "StringC", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { start: number; end: number; } & { bucketSize: number; intervalString: string; }; }; }) => Promise<", "ObservabilityOverviewResponse", ">; } & ", @@ -7430,13 +6106,7 @@ "<{ serverlessId: ", "StringC", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; }>]>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { kuery: string; } & { start: number; end: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { agentName: string; } & { serviceNodeName?: string | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { body: { serviceName?: string | undefined; transactionName?: string | undefined; transactionType?: string | undefined; termFilters?: { fieldName: string; fieldValue: string | number; }[] | undefined; durationMin?: number | undefined; durationMax?: number | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; groupId: string; }; query: { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { groupId?: string | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; groupId: string; errorId: string; }; query: { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; groupId: string; }; query: { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; }>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { transactionType: string; transactionName: string; maxNumberOfErrorGroups: number; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { path: { serviceName: string; }; query: { sortField?: string | undefined; sortDirection?: \"asc\" | \"desc\" | undefined; } & { environment: \"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", "; end: ", "Type", "; }>]>; }> | undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", " & { params: { query: { serviceName?: string | undefined; } & { start: number; end: number; }; }; }) => Promise<{ environments: (\"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ", "Branded", ")[]; }>; } & ", "APMRouteCreateOptions", "; \"GET /internal/apm/data_view/title\": { endpoint: \"GET /internal/apm/data_view/title\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<{ apmDataViewTitle: string; }>; } & ", "APMRouteCreateOptions", "; \"POST /internal/apm/data_view/static\": { endpoint: \"POST /internal/apm/data_view/static\"; params?: undefined; handler: ({}: ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, + "APMRouteHandlerResources", ") => Promise<{ created: boolean; dataView: ", { "pluginId": "dataViews", @@ -8480,151 +7054,13 @@ "description": [], "signature": [ "Observable", - "; enabled: boolean; autoCreateApmDataView: boolean; serviceMapEnabled: boolean; serviceMapFingerprintBucketSize: number; serviceMapFingerprintGlobalBucketSize: number; serviceMapTraceIdBucketSize: number; serviceMapTraceIdGlobalBucketSize: number; serviceMapMaxTracesPerRequest: number; serviceMapTerminateAfter: number; serviceMapMaxTraces: number; ui: Readonly<{} & { enabled: boolean; maxTraceItems: number; }>; searchAggregatedTransactions: ", + "; searchAggregatedTransactions: ", "SearchAggregatedTransactionSetting", - "; telemetryCollectionEnabled: boolean; metricsInterval: number; agent: Readonly<{} & { migrations: Readonly<{} & { enabled: boolean; }>; }>; forceSyntheticSource: boolean; latestAgentVersionsUrl: string; serverlessOnboarding: boolean; serverless: Readonly<{} & { enabled: true; }>; managedServiceUrl: string; featureFlags: Readonly<{} & { agentConfigurationAvailable: boolean; configurableIndicesAvailable: boolean; infrastructureTabAvailable: boolean; infraUiAvailable: boolean; migrationToFleetAvailable: boolean; sourcemapApiAvailable: boolean; storageExplorerAvailable: boolean; }>; }>>" + "; telemetryCollectionEnabled: boolean; metricsInterval: number; agent: Readonly<{} & { migrations: Readonly<{} & { enabled: boolean; }>; }>; forceSyntheticSource: boolean; latestAgentVersionsUrl: string; serverless: Readonly<{} & { enabled: true; }>; serverlessOnboarding: boolean; managedServiceUrl: string; featureFlags: Readonly<{} & { agentConfigurationAvailable: boolean; configurableIndicesAvailable: boolean; infrastructureTabAvailable: boolean; infraUiAvailable: boolean; migrationToFleetAvailable: boolean; sourcemapApiAvailable: boolean; storageExplorerAvailable: boolean; }>; }>>" ], "path": "x-pack/plugins/apm/server/types.ts", "deprecated": false, "trackAdoption": false - }, - { - "parentPluginId": "apm", - "id": "def-server.APMPluginSetup.getApmIndices", - "type": "Function", - "tags": [], - "label": "getApmIndices", - "description": [], - "signature": [ - "() => Promise>" - ], - "path": "x-pack/plugins/apm/server/types.ts", - "deprecated": false, - "trackAdoption": false, - "children": [], - "returnComment": [] - }, - { - "parentPluginId": "apm", - "id": "def-server.APMPluginSetup.createApmEventClient", - "type": "Function", - "tags": [], - "label": "createApmEventClient", - "description": [], - "signature": [ - "(params: { debug?: boolean | undefined; request: ", - { - "pluginId": "@kbn/core-http-server", - "scope": "common", - "docId": "kibKbnCoreHttpServerPluginApi", - "section": "def-common.KibanaRequest", - "text": "KibanaRequest" - }, - "; context: ", - "ApmPluginRequestHandlerContext", - "; }) => Promise<", - "APMEventClient", - ">" - ], - "path": "x-pack/plugins/apm/server/types.ts", - "deprecated": false, - "trackAdoption": false, - "children": [ - { - "parentPluginId": "apm", - "id": "def-server.APMPluginSetup.createApmEventClient.$1", - "type": "Object", - "tags": [], - "label": "params", - "description": [], - "path": "x-pack/plugins/apm/server/types.ts", - "deprecated": false, - "trackAdoption": false, - "children": [ - { - "parentPluginId": "apm", - "id": "def-server.APMPluginSetup.createApmEventClient.$1.debug", - "type": "CompoundType", - "tags": [], - "label": "debug", - "description": [], - "signature": [ - "boolean | undefined" - ], - "path": "x-pack/plugins/apm/server/types.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "apm", - "id": "def-server.APMPluginSetup.createApmEventClient.$1.request", - "type": "Object", - "tags": [], - "label": "request", - "description": [], - "signature": [ - { - "pluginId": "@kbn/core-http-server", - "scope": "common", - "docId": "kibKbnCoreHttpServerPluginApi", - "section": "def-common.KibanaRequest", - "text": "KibanaRequest" - }, - "" - ], - "path": "x-pack/plugins/apm/server/types.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "apm", - "id": "def-server.APMPluginSetup.createApmEventClient.$1.context", - "type": "CompoundType", - "tags": [], - "label": "context", - "description": [], - "signature": [ - { - "pluginId": "@kbn/core-http-request-handler-context-server", - "scope": "common", - "docId": "kibKbnCoreHttpRequestHandlerContextServerPluginApi", - "section": "def-common.RequestHandlerContext", - "text": "RequestHandlerContext" - }, - " & { licensing: Promise<", - { - "pluginId": "licensing", - "scope": "server", - "docId": "kibLicensingPluginApi", - "section": "def-server.LicensingApiRequestHandlerContext", - "text": "LicensingApiRequestHandlerContext" - }, - ">; alerting: Promise<", - { - "pluginId": "alerting", - "scope": "server", - "docId": "kibAlertingPluginApi", - "section": "def-server.AlertingApiRequestHandlerContext", - "text": "AlertingApiRequestHandlerContext" - }, - ">; rac: Promise<", - { - "pluginId": "ruleRegistry", - "scope": "server", - "docId": "kibRuleRegistryPluginApi", - "section": "def-server.RacApiRequestHandlerContext", - "text": "RacApiRequestHandlerContext" - }, - ">; }" - ], - "path": "x-pack/plugins/apm/server/types.ts", - "deprecated": false, - "trackAdoption": false - } - ] - } - ], - "returnComment": [] } ], "lifecycle": "setup", diff --git a/api_docs/apm.mdx b/api_docs/apm.mdx index 371ecef52af79..4106499edfff2 100644 --- a/api_docs/apm.mdx +++ b/api_docs/apm.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/apm title: "apm" image: https://source.unsplash.com/400x175/?github description: API docs for the apm plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'apm'] --- import apmObj from './apm.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/apm-ui](https://github.com/orgs/elastic/teams/apm-ui) for ques | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 48 | 0 | 48 | 120 | +| 29 | 0 | 29 | 118 | ## Client @@ -42,9 +42,6 @@ Contact [@elastic/apm-ui](https://github.com/orgs/elastic/teams/apm-ui) for ques ### Classes -### Interfaces - - ### Consts, variables and types diff --git a/api_docs/apm_data_access.devdocs.json b/api_docs/apm_data_access.devdocs.json new file mode 100644 index 0000000000000..aaab84fef1ef1 --- /dev/null +++ b/api_docs/apm_data_access.devdocs.json @@ -0,0 +1,178 @@ +{ + "id": "apmDataAccess", + "client": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [], + "objects": [] + }, + "server": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [ + { + "parentPluginId": "apmDataAccess", + "id": "def-server.APMDataAccessConfig", + "type": "Type", + "tags": [], + "label": "APMDataAccessConfig", + "description": [], + "signature": [ + "{ readonly indices: Readonly<{} & { error: string; metric: string; transaction: string; span: string; onboarding: string; }>; }" + ], + "path": "x-pack/plugins/apm_data_access/server/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "apmDataAccess", + "id": "def-server.APMIndices", + "type": "Type", + "tags": [], + "label": "APMIndices", + "description": [], + "signature": [ + "{ readonly error: string; readonly metric: string; readonly transaction: string; readonly span: string; readonly onboarding: string; }" + ], + "path": "x-pack/plugins/apm_data_access/server/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + } + ], + "objects": [], + "setup": { + "parentPluginId": "apmDataAccess", + "id": "def-server.ApmDataAccessPluginSetup", + "type": "Interface", + "tags": [], + "label": "ApmDataAccessPluginSetup", + "description": [], + "path": "x-pack/plugins/apm_data_access/server/types.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "apmDataAccess", + "id": "def-server.ApmDataAccessPluginSetup.apmIndicesFromConfigFile", + "type": "Object", + "tags": [], + "label": "apmIndicesFromConfigFile", + "description": [], + "signature": [ + "{ readonly error: string; readonly metric: string; readonly transaction: string; readonly span: string; readonly onboarding: string; }" + ], + "path": "x-pack/plugins/apm_data_access/server/types.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "apmDataAccess", + "id": "def-server.ApmDataAccessPluginSetup.getApmIndices", + "type": "Function", + "tags": [], + "label": "getApmIndices", + "description": [], + "signature": [ + "(soClient: ", + { + "pluginId": "@kbn/core-saved-objects-api-server", + "scope": "common", + "docId": "kibKbnCoreSavedObjectsApiServerPluginApi", + "section": "def-common.SavedObjectsClientContract", + "text": "SavedObjectsClientContract" + }, + ") => Promise>" + ], + "path": "x-pack/plugins/apm_data_access/server/types.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "apmDataAccess", + "id": "def-server.ApmDataAccessPluginSetup.getApmIndices.$1", + "type": "Object", + "tags": [], + "label": "soClient", + "description": [], + "signature": [ + { + "pluginId": "@kbn/core-saved-objects-api-server", + "scope": "common", + "docId": "kibKbnCoreSavedObjectsApiServerPluginApi", + "section": "def-common.SavedObjectsClientContract", + "text": "SavedObjectsClientContract" + } + ], + "path": "x-pack/plugins/apm_data_access/server/types.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] + } + ], + "lifecycle": "setup", + "initialIsOpen": true + }, + "start": { + "parentPluginId": "apmDataAccess", + "id": "def-server.ApmDataAccessPluginStart", + "type": "Interface", + "tags": [], + "label": "ApmDataAccessPluginStart", + "description": [], + "path": "x-pack/plugins/apm_data_access/server/types.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "lifecycle": "start", + "initialIsOpen": true + } + }, + "common": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [ + { + "parentPluginId": "apmDataAccess", + "id": "def-common.PLUGIN_ID", + "type": "string", + "tags": [], + "label": "PLUGIN_ID", + "description": [], + "signature": [ + "\"apmDataAccess\"" + ], + "path": "x-pack/plugins/apm_data_access/common/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "apmDataAccess", + "id": "def-common.PLUGIN_NAME", + "type": "string", + "tags": [], + "label": "PLUGIN_NAME", + "description": [], + "signature": [ + "\"apmDataAccess\"" + ], + "path": "x-pack/plugins/apm_data_access/common/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + } + ], + "objects": [] + } +} \ No newline at end of file diff --git a/api_docs/apm_data_access.mdx b/api_docs/apm_data_access.mdx new file mode 100644 index 0000000000000..14f0d21f5b4fd --- /dev/null +++ b/api_docs/apm_data_access.mdx @@ -0,0 +1,41 @@ +--- +#### +#### This document is auto-generated and is meant to be viewed inside our experimental, new docs system. +#### Reach out in #docs-engineering for more info. +#### +id: kibApmDataAccessPluginApi +slug: /kibana-dev-docs/api/apmDataAccess +title: "apmDataAccess" +image: https://source.unsplash.com/400x175/?github +description: API docs for the apmDataAccess plugin +date: 2023-08-27 +tags: ['contributor', 'dev', 'apidocs', 'kibana', 'apmDataAccess'] +--- +import apmDataAccessObj from './apm_data_access.devdocs.json'; + + + +Contact [@elastic/apm-ui](https://github.com/orgs/elastic/teams/apm-ui) for questions regarding this plugin. + +**Code health stats** + +| Public API count | Any count | Items lacking comments | Missing exports | +|-------------------|-----------|------------------------|-----------------| +| 9 | 0 | 9 | 0 | + +## Server + +### Setup + + +### Start + + +### Consts, variables and types + + +## Common + +### Consts, variables and types + + diff --git a/api_docs/asset_manager.mdx b/api_docs/asset_manager.mdx index 4e8d0114d9e55..8a09637dd6555 100644 --- a/api_docs/asset_manager.mdx +++ b/api_docs/asset_manager.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/assetManager title: "assetManager" image: https://source.unsplash.com/400x175/?github description: API docs for the assetManager plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'assetManager'] --- import assetManagerObj from './asset_manager.devdocs.json'; diff --git a/api_docs/banners.mdx b/api_docs/banners.mdx index bb200ec48dec3..ca874490feef3 100644 --- a/api_docs/banners.mdx +++ b/api_docs/banners.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/banners title: "banners" image: https://source.unsplash.com/400x175/?github description: API docs for the banners plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'banners'] --- import bannersObj from './banners.devdocs.json'; diff --git a/api_docs/bfetch.mdx b/api_docs/bfetch.mdx index ebefb81f8cbc7..0eabc07d3b2dc 100644 --- a/api_docs/bfetch.mdx +++ b/api_docs/bfetch.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/bfetch title: "bfetch" image: https://source.unsplash.com/400x175/?github description: API docs for the bfetch plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'bfetch'] --- import bfetchObj from './bfetch.devdocs.json'; diff --git a/api_docs/canvas.mdx b/api_docs/canvas.mdx index 13131319104aa..ca9d92b8e303d 100644 --- a/api_docs/canvas.mdx +++ b/api_docs/canvas.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/canvas title: "canvas" image: https://source.unsplash.com/400x175/?github description: API docs for the canvas plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'canvas'] --- import canvasObj from './canvas.devdocs.json'; diff --git a/api_docs/cases.devdocs.json b/api_docs/cases.devdocs.json index b749532e5f360..15f422cdf22ba 100644 --- a/api_docs/cases.devdocs.json +++ b/api_docs/cases.devdocs.json @@ -70,7 +70,7 @@ "section": "def-public.ICasesDeepLinkId", "text": "ICasesDeepLinkId" }, - ", Partial>> | undefined; }) => { id: \"cases\"; path: string; deepLinks: ({ id: \"cases_create\"; path: string; title: any; keywords?: T[\"keywords\"] | undefined; navLinkStatus?: T[\"navLinkStatus\"] | undefined; searchable?: T[\"searchable\"] | undefined; category?: T[\"category\"] | undefined; order?: T[\"order\"] | undefined; tooltip?: T[\"tooltip\"] | undefined; euiIconType?: T[\"euiIconType\"] | undefined; icon?: T[\"icon\"] | undefined; deepLinks?: T[\"deepLinks\"] | undefined; } | { id: \"cases_configure\"; path: string; title: any; keywords?: T[\"keywords\"] | undefined; navLinkStatus?: T[\"navLinkStatus\"] | undefined; searchable?: T[\"searchable\"] | undefined; category?: T[\"category\"] | undefined; order?: T[\"order\"] | undefined; tooltip?: T[\"tooltip\"] | undefined; euiIconType?: T[\"euiIconType\"] | undefined; icon?: T[\"icon\"] | undefined; deepLinks?: T[\"deepLinks\"] | undefined; })[]; title: any; keywords?: T[\"keywords\"] | undefined; navLinkStatus?: T[\"navLinkStatus\"] | undefined; searchable?: T[\"searchable\"] | undefined; category?: T[\"category\"] | undefined; order?: T[\"order\"] | undefined; tooltip?: T[\"tooltip\"] | undefined; euiIconType?: T[\"euiIconType\"] | undefined; icon?: T[\"icon\"] | undefined; }" + ", Partial>> | undefined; }) => { id: \"cases\"; path: string; deepLinks: ({ id: \"cases_create\"; path: string; title: string | T[\"title\"]; keywords?: T[\"keywords\"] | undefined; navLinkStatus?: T[\"navLinkStatus\"] | undefined; searchable?: T[\"searchable\"] | undefined; category?: T[\"category\"] | undefined; order?: T[\"order\"] | undefined; tooltip?: T[\"tooltip\"] | undefined; euiIconType?: T[\"euiIconType\"] | undefined; icon?: T[\"icon\"] | undefined; deepLinks?: T[\"deepLinks\"] | undefined; } | { id: \"cases_configure\"; path: string; title: string | T[\"title\"]; keywords?: T[\"keywords\"] | undefined; navLinkStatus?: T[\"navLinkStatus\"] | undefined; searchable?: T[\"searchable\"] | undefined; category?: T[\"category\"] | undefined; order?: T[\"order\"] | undefined; tooltip?: T[\"tooltip\"] | undefined; euiIconType?: T[\"euiIconType\"] | undefined; icon?: T[\"icon\"] | undefined; deepLinks?: T[\"deepLinks\"] | undefined; })[]; title: string | T[\"title\"]; keywords?: T[\"keywords\"] | undefined; navLinkStatus?: T[\"navLinkStatus\"] | undefined; searchable?: T[\"searchable\"] | undefined; category?: T[\"category\"] | undefined; order?: T[\"order\"] | undefined; tooltip?: T[\"tooltip\"] | undefined; euiIconType?: T[\"euiIconType\"] | undefined; icon?: T[\"icon\"] | undefined; }" ], "path": "x-pack/plugins/cases/public/common/navigation/deep_links.ts", "deprecated": false, diff --git a/api_docs/cases.mdx b/api_docs/cases.mdx index 64f299ea9b310..e96a42911d33f 100644 --- a/api_docs/cases.mdx +++ b/api_docs/cases.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cases title: "cases" image: https://source.unsplash.com/400x175/?github description: API docs for the cases plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cases'] --- import casesObj from './cases.devdocs.json'; diff --git a/api_docs/charts.devdocs.json b/api_docs/charts.devdocs.json index b8c332abcc153..e3d53d5208a1d 100644 --- a/api_docs/charts.devdocs.json +++ b/api_docs/charts.devdocs.json @@ -1576,13 +1576,10 @@ { "parentPluginId": "charts", "id": "def-public.defaultCountLabel", - "type": "Any", + "type": "string", "tags": [], "label": "defaultCountLabel", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/charts/common/static/components/collections.ts", "deprecated": false, "trackAdoption": false, @@ -1660,7 +1657,7 @@ "label": "LabelRotation", "description": [], "signature": [ - "{ readonly Horizontal: number; readonly Vertical: number; readonly Angled: number; }" + "{ readonly Horizontal: number; readonly Vertical: number; readonly Angled: number; readonly VerticalRotation: number; }" ], "path": "src/plugins/charts/common/static/components/collections.ts", "deprecated": false, @@ -1868,13 +1865,10 @@ { "parentPluginId": "charts", "id": "def-public.vislibColorMaps.ColorSchemas.Blues.label", - "type": "Any", + "type": "string", "tags": [], "label": "label", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, "trackAdoption": false @@ -1930,13 +1924,10 @@ { "parentPluginId": "charts", "id": "def-public.vislibColorMaps.ColorSchemas.Greens.label", - "type": "Any", + "type": "string", "tags": [], "label": "label", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, "trackAdoption": false @@ -1992,13 +1983,10 @@ { "parentPluginId": "charts", "id": "def-public.vislibColorMaps.ColorSchemas.Greys.label", - "type": "Any", + "type": "string", "tags": [], "label": "label", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, "trackAdoption": false @@ -2054,13 +2042,10 @@ { "parentPluginId": "charts", "id": "def-public.vislibColorMaps.ColorSchemas.Reds.label", - "type": "Any", + "type": "string", "tags": [], "label": "label", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, "trackAdoption": false @@ -2116,13 +2101,10 @@ { "parentPluginId": "charts", "id": "def-public.vislibColorMaps.ColorSchemas.YellowToRed.label", - "type": "Any", + "type": "string", "tags": [], "label": "label", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, "trackAdoption": false @@ -2178,13 +2160,10 @@ { "parentPluginId": "charts", "id": "def-public.vislibColorMaps.ColorSchemas.GreenToRed.label", - "type": "Any", + "type": "string", "tags": [], "label": "label", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, "trackAdoption": false @@ -3374,7 +3353,7 @@ "label": "AllowedSettingsOverrides", "description": [], "signature": [ - "{ settings?: { debug?: boolean | undefined; theme?: ", + "{ settings?: { theme?: ", "MakeOverridesSerializable", "<", "RecursivePartial", @@ -3390,7 +3369,7 @@ "LegendPositionConfig", " | undefined; rotation?: ", "Rotation", - " | undefined; ariaLabelHeadingLevel?: \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"p\" | undefined; ariaUseDefaultSummary?: boolean | undefined; flatLegend?: boolean | undefined; legendMaxDepth?: number | undefined; legendSize?: number | undefined; showLegendExtra?: boolean | undefined; rendering?: ", + " | undefined; debug?: boolean | undefined; ariaLabelHeadingLevel?: \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"p\" | undefined; ariaUseDefaultSummary?: boolean | undefined; flatLegend?: boolean | undefined; legendMaxDepth?: number | undefined; legendSize?: number | undefined; showLegendExtra?: boolean | undefined; rendering?: ", "Rendering", " | undefined; animateData?: boolean | undefined; externalPointerEvents?: ", "MakeOverridesSerializable", @@ -3470,13 +3449,10 @@ { "parentPluginId": "charts", "id": "def-common.defaultCountLabel", - "type": "Any", + "type": "string", "tags": [], "label": "defaultCountLabel", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/charts/common/static/components/collections.ts", "deprecated": false, "trackAdoption": false, @@ -3623,7 +3599,7 @@ "label": "LabelRotation", "description": [], "signature": [ - "{ readonly Horizontal: number; readonly Vertical: number; readonly Angled: number; }" + "{ readonly Horizontal: number; readonly Vertical: number; readonly Angled: number; readonly VerticalRotation: number; }" ], "path": "src/plugins/charts/common/static/components/collections.ts", "deprecated": false, @@ -3831,13 +3807,10 @@ { "parentPluginId": "charts", "id": "def-common.vislibColorMaps.ColorSchemas.Blues.label", - "type": "Any", + "type": "string", "tags": [], "label": "label", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, "trackAdoption": false @@ -3893,13 +3866,10 @@ { "parentPluginId": "charts", "id": "def-common.vislibColorMaps.ColorSchemas.Greens.label", - "type": "Any", + "type": "string", "tags": [], "label": "label", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, "trackAdoption": false @@ -3955,13 +3925,10 @@ { "parentPluginId": "charts", "id": "def-common.vislibColorMaps.ColorSchemas.Greys.label", - "type": "Any", + "type": "string", "tags": [], "label": "label", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, "trackAdoption": false @@ -4017,13 +3984,10 @@ { "parentPluginId": "charts", "id": "def-common.vislibColorMaps.ColorSchemas.Reds.label", - "type": "Any", + "type": "string", "tags": [], "label": "label", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, "trackAdoption": false @@ -4079,13 +4043,10 @@ { "parentPluginId": "charts", "id": "def-common.vislibColorMaps.ColorSchemas.YellowToRed.label", - "type": "Any", + "type": "string", "tags": [], "label": "label", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, "trackAdoption": false @@ -4141,13 +4102,10 @@ { "parentPluginId": "charts", "id": "def-common.vislibColorMaps.ColorSchemas.GreenToRed.label", - "type": "Any", + "type": "string", "tags": [], "label": "label", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, "trackAdoption": false diff --git a/api_docs/charts.mdx b/api_docs/charts.mdx index 48b127dfd0d7d..681fd115ec23b 100644 --- a/api_docs/charts.mdx +++ b/api_docs/charts.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/charts title: "charts" image: https://source.unsplash.com/400x175/?github description: API docs for the charts plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'charts'] --- import chartsObj from './charts.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/k | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 268 | 16 | 253 | 10 | +| 268 | 2 | 253 | 10 | ## Client diff --git a/api_docs/cloud.mdx b/api_docs/cloud.mdx index 40d3ccad9780e..77a526408f4b0 100644 --- a/api_docs/cloud.mdx +++ b/api_docs/cloud.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloud title: "cloud" image: https://source.unsplash.com/400x175/?github description: API docs for the cloud plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloud'] --- import cloudObj from './cloud.devdocs.json'; diff --git a/api_docs/cloud_chat.mdx b/api_docs/cloud_chat.mdx index b6dd61ebdcc36..cfcaef11e0495 100644 --- a/api_docs/cloud_chat.mdx +++ b/api_docs/cloud_chat.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudChat title: "cloudChat" image: https://source.unsplash.com/400x175/?github description: API docs for the cloudChat plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudChat'] --- import cloudChatObj from './cloud_chat.devdocs.json'; diff --git a/api_docs/cloud_chat_provider.mdx b/api_docs/cloud_chat_provider.mdx index 66f429f968b29..90623ed3cabbf 100644 --- a/api_docs/cloud_chat_provider.mdx +++ b/api_docs/cloud_chat_provider.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudChatProvider title: "cloudChatProvider" image: https://source.unsplash.com/400x175/?github description: API docs for the cloudChatProvider plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudChatProvider'] --- import cloudChatProviderObj from './cloud_chat_provider.devdocs.json'; diff --git a/api_docs/cloud_data_migration.devdocs.json b/api_docs/cloud_data_migration.devdocs.json index 46a118a592a92..752512ce7b863 100644 --- a/api_docs/cloud_data_migration.devdocs.json +++ b/api_docs/cloud_data_migration.devdocs.json @@ -144,13 +144,10 @@ { "parentPluginId": "cloudDataMigration", "id": "def-common.PLUGIN_NAME", - "type": "Any", + "type": "string", "tags": [], "label": "PLUGIN_NAME", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/cloud_integrations/cloud_data_migration/common/index.ts", "deprecated": false, "trackAdoption": false, diff --git a/api_docs/cloud_data_migration.mdx b/api_docs/cloud_data_migration.mdx index 407165f9528d5..200917e1df2cc 100644 --- a/api_docs/cloud_data_migration.mdx +++ b/api_docs/cloud_data_migration.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudDataMigration title: "cloudDataMigration" image: https://source.unsplash.com/400x175/?github description: API docs for the cloudDataMigration plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudDataMigration'] --- import cloudDataMigrationObj from './cloud_data_migration.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/platform-onboarding](https://github.com/orgs/elastic/teams/pla | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 8 | 1 | 8 | 1 | +| 8 | 0 | 8 | 1 | ## Client diff --git a/api_docs/cloud_defend.mdx b/api_docs/cloud_defend.mdx index ec3778b98074d..444e96e7af5a1 100644 --- a/api_docs/cloud_defend.mdx +++ b/api_docs/cloud_defend.mdx @@ -8,14 +8,14 @@ slug: /kibana-dev-docs/api/cloudDefend title: "cloudDefend" image: https://source.unsplash.com/400x175/?github description: API docs for the cloudDefend plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudDefend'] --- import cloudDefendObj from './cloud_defend.devdocs.json'; Defend for containers (D4C) -Contact [@elastic/sec-cloudnative-integrations](https://github.com/orgs/elastic/teams/sec-cloudnative-integrations) for questions regarding this plugin. +Contact [@elastic/kibana-cloud-security-posture](https://github.com/orgs/elastic/teams/kibana-cloud-security-posture) for questions regarding this plugin. **Code health stats** diff --git a/api_docs/cloud_experiments.mdx b/api_docs/cloud_experiments.mdx index b644ba0d74fac..341cf076b4719 100644 --- a/api_docs/cloud_experiments.mdx +++ b/api_docs/cloud_experiments.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudExperiments title: "cloudExperiments" image: https://source.unsplash.com/400x175/?github description: API docs for the cloudExperiments plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudExperiments'] --- import cloudExperimentsObj from './cloud_experiments.devdocs.json'; diff --git a/api_docs/cloud_security_posture.mdx b/api_docs/cloud_security_posture.mdx index 2446fa1d0e038..06bf0861f49c4 100644 --- a/api_docs/cloud_security_posture.mdx +++ b/api_docs/cloud_security_posture.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudSecurityPosture title: "cloudSecurityPosture" image: https://source.unsplash.com/400x175/?github description: API docs for the cloudSecurityPosture plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudSecurityPosture'] --- import cloudSecurityPostureObj from './cloud_security_posture.devdocs.json'; diff --git a/api_docs/console.mdx b/api_docs/console.mdx index 8881efeab2d3d..d92bc0f73ea27 100644 --- a/api_docs/console.mdx +++ b/api_docs/console.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/console title: "console" image: https://source.unsplash.com/400x175/?github description: API docs for the console plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'console'] --- import consoleObj from './console.devdocs.json'; diff --git a/api_docs/content_management.mdx b/api_docs/content_management.mdx index 5e8fc2d2e776d..0cbbe70e1a21c 100644 --- a/api_docs/content_management.mdx +++ b/api_docs/content_management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/contentManagement title: "contentManagement" image: https://source.unsplash.com/400x175/?github description: API docs for the contentManagement plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'contentManagement'] --- import contentManagementObj from './content_management.devdocs.json'; diff --git a/api_docs/controls.devdocs.json b/api_docs/controls.devdocs.json index e8be4c1768a68..5f249c50c376d 100644 --- a/api_docs/controls.devdocs.json +++ b/api_docs/controls.devdocs.json @@ -1551,7 +1551,7 @@ "label": "getDisplayName", "description": [], "signature": [ - "() => any" + "() => string" ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container_factory.ts", "deprecated": false, @@ -2669,7 +2669,7 @@ "label": "getDisplayName", "description": [], "signature": [ - "() => any" + "() => string" ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, @@ -2701,7 +2701,7 @@ "label": "getDescription", "description": [], "signature": [ - "() => any" + "() => string" ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, @@ -3381,7 +3381,7 @@ "label": "getDisplayName", "description": [], "signature": [ - "() => any" + "() => string" ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable_factory.tsx", "deprecated": false, @@ -3397,7 +3397,7 @@ "label": "getDescription", "description": [], "signature": [ - "() => any" + "() => string" ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable_factory.tsx", "deprecated": false, @@ -6862,7 +6862,7 @@ "label": "newState", "description": [], "signature": [ - "{ viewMode?: ", + "{ version?: string | undefined; viewMode?: ", { "pluginId": "embeddable", "scope": "common", diff --git a/api_docs/controls.mdx b/api_docs/controls.mdx index 1674d723cbc35..8520fe445cb41 100644 --- a/api_docs/controls.mdx +++ b/api_docs/controls.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/controls title: "controls" image: https://source.unsplash.com/400x175/?github description: API docs for the controls plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'controls'] --- import controlsObj from './controls.devdocs.json'; diff --git a/api_docs/custom_integrations.mdx b/api_docs/custom_integrations.mdx index b1be4828778fc..72e8b57af178f 100644 --- a/api_docs/custom_integrations.mdx +++ b/api_docs/custom_integrations.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/customIntegrations title: "customIntegrations" image: https://source.unsplash.com/400x175/?github description: API docs for the customIntegrations plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'customIntegrations'] --- import customIntegrationsObj from './custom_integrations.devdocs.json'; diff --git a/api_docs/dashboard.devdocs.json b/api_docs/dashboard.devdocs.json index 41d2c52b9dc61..22b75247b5d5b 100644 --- a/api_docs/dashboard.devdocs.json +++ b/api_docs/dashboard.devdocs.json @@ -728,7 +728,7 @@ "section": "def-common.DashboardPanelMap", "text": "DashboardPanelMap" }, - ", versionOverride?: string | undefined) => ", + ", removeLegacyVersion?: boolean | undefined) => ", "SavedDashboardPanel", "[]" ], @@ -760,12 +760,12 @@ { "parentPluginId": "dashboard", "id": "def-common.convertPanelMapToSavedPanels.$2", - "type": "string", + "type": "CompoundType", "tags": [], - "label": "versionOverride", + "label": "removeLegacyVersion", "description": [], "signature": [ - "string | undefined" + "boolean | undefined" ], "path": "src/plugins/dashboard/common/lib/dashboard_panel_converters.ts", "deprecated": false, @@ -800,7 +800,7 @@ "section": "def-common.SavedObjectEmbeddableInput", "text": "SavedObjectEmbeddableInput" }, - ">, version: string | undefined) => ", + ">, removeLegacyVersion: boolean | undefined) => ", "SavedDashboardPanel" ], "path": "src/plugins/dashboard/common/lib/dashboard_panel_converters.ts", @@ -840,12 +840,12 @@ { "parentPluginId": "dashboard", "id": "def-common.convertPanelStateToSavedDashboardPanel.$2", - "type": "string", + "type": "CompoundType", "tags": [], - "label": "version", + "label": "removeLegacyVersion", "description": [], "signature": [ - "string | undefined" + "boolean | undefined" ], "path": "src/plugins/dashboard/common/lib/dashboard_panel_converters.ts", "deprecated": false, @@ -1761,6 +1761,22 @@ "path": "src/plugins/dashboard/common/dashboard_container/types.ts", "deprecated": false, "trackAdoption": false + }, + { + "parentPluginId": "dashboard", + "id": "def-common.DashboardPanelState.version", + "type": "string", + "tags": [], + "label": "version", + "description": [ + "\nThis version key was used to store Kibana version information from versions 7.3.0 -> 8.11.0.\nAs of version 8.11.0, the versioning information is now per-embeddable-type and is stored on the\nembeddable's input. This key is needed for BWC, but its value will be removed on Dashboard save." + ], + "signature": [ + "string | undefined" + ], + "path": "src/plugins/dashboard/common/dashboard_container/types.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1830,7 +1846,7 @@ "\nFor BWC reasons, dashboard state is stored with panels as an array instead of a map" ], "signature": [ - "{ id?: string | undefined; tags?: string[] | undefined; description?: string | undefined; title?: string | undefined; query?: ", + "{ id?: string | undefined; tags?: string[] | undefined; description?: string | undefined; title?: string | undefined; version?: string | undefined; query?: ", { "pluginId": "@kbn/es-query", "scope": "common", diff --git a/api_docs/dashboard.mdx b/api_docs/dashboard.mdx index d5fe884018180..b605ff90efd7b 100644 --- a/api_docs/dashboard.mdx +++ b/api_docs/dashboard.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dashboard title: "dashboard" image: https://source.unsplash.com/400x175/?github description: API docs for the dashboard plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dashboard'] --- import dashboardObj from './dashboard.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kib | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 100 | 0 | 98 | 9 | +| 101 | 0 | 98 | 9 | ## Client diff --git a/api_docs/dashboard_enhanced.devdocs.json b/api_docs/dashboard_enhanced.devdocs.json index 30c8672eeed00..d4a4e797abcf1 100644 --- a/api_docs/dashboard_enhanced.devdocs.json +++ b/api_docs/dashboard_enhanced.devdocs.json @@ -212,7 +212,7 @@ "label": "getDisplayName", "description": [], "signature": [ - "() => any" + "() => string" ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, diff --git a/api_docs/dashboard_enhanced.mdx b/api_docs/dashboard_enhanced.mdx index 5eeb708daf35b..30c5d52676122 100644 --- a/api_docs/dashboard_enhanced.mdx +++ b/api_docs/dashboard_enhanced.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dashboardEnhanced title: "dashboardEnhanced" image: https://source.unsplash.com/400x175/?github description: API docs for the dashboardEnhanced plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dashboardEnhanced'] --- import dashboardEnhancedObj from './dashboard_enhanced.devdocs.json'; diff --git a/api_docs/data.devdocs.json b/api_docs/data.devdocs.json index 3076a7d7b395e..bee45b5ee444a 100644 --- a/api_docs/data.devdocs.json +++ b/api_docs/data.devdocs.json @@ -8743,22 +8743,6 @@ "deprecated": true, "trackAdoption": false, "references": [ - { - "plugin": "@kbn/core-saved-objects-api-browser", - "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-internal", - "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-internal", - "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-mocks", - "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts" - }, { "plugin": "@kbn/core-saved-objects-api-server-internal", "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/utils/internal_utils.ts" @@ -8771,6 +8755,18 @@ "plugin": "@kbn/core-saved-objects-server-internal", "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.ts" }, + { + "plugin": "@kbn/core-saved-objects-api-browser", + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" + }, + { + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" + }, + { + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" + }, { "plugin": "home", "path": "src/plugins/home/server/services/sample_data/data_sets/logs_tsdb/saved_objects.ts" @@ -8820,20 +8816,8 @@ "path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts" }, { - "plugin": "graph", - "path": "x-pack/plugins/graph/server/sample_data/logs.ts" - }, - { - "plugin": "graph", - "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts" - }, - { - "plugin": "graph", - "path": "x-pack/plugins/graph/server/sample_data/flights.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts" }, { "plugin": "osquery", @@ -8923,6 +8907,26 @@ "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts" }, + { + "plugin": "@kbn/core-saved-objects-browser-mocks", + "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts" + }, + { + "plugin": "graph", + "path": "x-pack/plugins/graph/server/sample_data/logs.ts" + }, + { + "plugin": "graph", + "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts" + }, + { + "plugin": "graph", + "path": "x-pack/plugins/graph/server/sample_data/flights.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" + }, { "plugin": "alerting", "path": "x-pack/plugins/alerting/server/rules_client/lib/siem_legacy_actions/retrieve_migrated_legacy_actions.mock.ts" @@ -8962,6 +8966,10 @@ { "plugin": "fleet", "path": "x-pack/plugins/fleet/server/services/epm/packages/get.test.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.test.ts" } ] }, @@ -9048,6 +9056,65 @@ ], "initialIsOpen": false }, + { + "parentPluginId": "data", + "id": "def-public.SavedQuery", + "type": "Interface", + "tags": [], + "label": "SavedQuery", + "description": [], + "path": "src/plugins/data/common/query/types.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "data", + "id": "def-public.SavedQuery.id", + "type": "string", + "tags": [], + "label": "id", + "description": [], + "path": "src/plugins/data/common/query/types.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "data", + "id": "def-public.SavedQuery.attributes", + "type": "Object", + "tags": [], + "label": "attributes", + "description": [], + "signature": [ + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataQueryPluginApi", + "section": "def-common.SavedQueryAttributes", + "text": "SavedQueryAttributes" + } + ], + "path": "src/plugins/data/common/query/types.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "data", + "id": "def-public.SavedQuery.namespaces", + "type": "Array", + "tags": [], + "label": "namespaces", + "description": [], + "signature": [ + "string[]" + ], + "path": "src/plugins/data/common/query/types.ts", + "deprecated": false, + "trackAdoption": false + } + ], + "initialIsOpen": false + }, { "parentPluginId": "data", "id": "def-public.SearchSourceFields", @@ -11089,13 +11156,10 @@ { "parentPluginId": "data", "id": "def-public.AggGroupLabels.AggGroupNames.Buckets", - "type": "Any", + "type": "string", "tags": [], "label": "[AggGroupNames.Buckets]", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/aggs/agg_groups.ts", "deprecated": false, "trackAdoption": false @@ -11103,13 +11167,10 @@ { "parentPluginId": "data", "id": "def-public.AggGroupLabels.AggGroupNames.Metrics", - "type": "Any", + "type": "string", "tags": [], "label": "[AggGroupNames.Metrics]", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/aggs/agg_groups.ts", "deprecated": false, "trackAdoption": false @@ -11117,13 +11178,10 @@ { "parentPluginId": "data", "id": "def-public.AggGroupLabels.AggGroupNames.None", - "type": "Any", + "type": "string", "tags": [], "label": "[AggGroupNames.None]", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/aggs/agg_groups.ts", "deprecated": false, "trackAdoption": false @@ -11735,7 +11793,7 @@ "label": "intervalOptions", "description": [], "signature": [ - "({ display: any; val: string; enabled(agg: ", + "({ display: string; val: string; enabled(agg: ", { "pluginId": "data", "scope": "common", @@ -11743,7 +11801,7 @@ "section": "def-common.IBucketAggConfig", "text": "IBucketAggConfig" }, - "): boolean; } | { display: any; val: string; })[]" + "): boolean; } | { display: string; val: string; })[]" ], "path": "src/plugins/data/public/index.ts", "deprecated": false, @@ -12052,13 +12110,10 @@ { "parentPluginId": "data", "id": "def-public.search.aggs.parentPipelineType", - "type": "Any", + "type": "string", "tags": [], "label": "parentPipelineType", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/public/index.ts", "deprecated": false, "trackAdoption": false @@ -12161,13 +12216,10 @@ { "parentPluginId": "data", "id": "def-public.search.aggs.siblingPipelineType", - "type": "Any", + "type": "string", "tags": [], "label": "siblingPipelineType", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/public/index.ts", "deprecated": false, "trackAdoption": false @@ -12233,7 +12285,7 @@ "label": "boundsDescendingRaw", "description": [], "signature": [ - "({ bound: number; interval: moment.Duration; boundLabel: any; intervalLabel: any; } | { bound: moment.Duration; interval: moment.Duration; boundLabel: any; intervalLabel: any; })[]" + "({ bound: number; interval: moment.Duration; boundLabel: string; intervalLabel: string; } | { bound: moment.Duration; interval: moment.Duration; boundLabel: string; intervalLabel: string; })[]" ], "path": "src/plugins/data/public/index.ts", "deprecated": false, @@ -12792,10 +12844,6 @@ "plugin": "dashboard", "path": "src/plugins/dashboard/public/services/data/data_service.ts" }, - { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/threshold/expression.tsx" - }, { "plugin": "dataVisualizer", "path": "x-pack/plugins/data_visualizer/public/application/common/components/stats_table/components/field_data_row/document_stats.tsx" @@ -12808,6 +12856,10 @@ "plugin": "dataVisualizer", "path": "x-pack/plugins/data_visualizer/public/application/common/components/stats_table/components/field_data_expanded_row/choropleth_map.tsx" }, + { + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/threshold/expression.tsx" + }, { "plugin": "expressionPartitionVis", "path": "src/plugins/chart_expressions/expression_partition_vis/public/utils/layers/get_color.test.ts" @@ -13256,6 +13308,10 @@ "plugin": "@kbn/visualization-ui-components", "path": "packages/kbn-visualization-ui-components/components/query_input/filter_query_input.tsx" }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts" + }, { "plugin": "observability", "path": "x-pack/plugins/observability/public/components/threshold/hooks/use_metrics_explorer_data.ts" @@ -13316,10 +13372,6 @@ "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/public/entity_analytics/components/risk_score_preview_section.tsx" }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts" - }, { "plugin": "timelines", "path": "x-pack/plugins/timelines/public/mock/index_pattern.ts" @@ -13504,6 +13556,18 @@ "plugin": "dataViews", "path": "src/plugins/data_views/common/data_views/data_view.ts" }, + { + "plugin": "logsShared", + "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts" + }, + { + "plugin": "dataViews", + "path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts" + }, + { + "plugin": "dataViews", + "path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts" + }, { "plugin": "savedObjectsManagement", "path": "src/plugins/saved_objects_management/public/management_section/objects_table/components/flyout.tsx" @@ -13565,16 +13629,88 @@ "path": "x-pack/plugins/lens/public/app_plugin/lens_top_nav.tsx" }, { - "plugin": "dataViews", - "path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts" + "plugin": "triggersActionsUi", + "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts" }, { - "plugin": "dataViews", - "path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts" + "plugin": "dataVisualizer", + "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts" }, { - "plugin": "triggersActionsUi", - "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx" }, { "plugin": "ml", @@ -13593,8 +13729,8 @@ "path": "x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts" }, { - "plugin": "logsShared", - "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts" + "plugin": "timelines", + "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts" }, { "plugin": "visTypeTimeseries", @@ -13668,90 +13804,6 @@ "plugin": "stackAlerts", "path": "x-pack/plugins/stack_alerts/public/rule_types/components/data_view_select_popover.tsx" }, - { - "plugin": "dataVisualizer", - "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_embeddable.tsx" - }, { "plugin": "infra", "path": "x-pack/plugins/infra/public/pages/logs/settings/validation_errors.ts" @@ -13841,8 +13893,8 @@ "path": "x-pack/plugins/security_solution/public/detection_engine/rule_details_ui/pages/rule_details/index.tsx" }, { - "plugin": "timelines", - "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/public/flyout/preview/components/rule_preview.tsx" }, { "plugin": "transform", @@ -15826,6 +15878,17 @@ "returnComment": [], "children": [] }, + { + "parentPluginId": "data", + "id": "def-server.DataViewsService.scriptedFieldsEnabled", + "type": "boolean", + "tags": [], + "label": "scriptedFieldsEnabled", + "description": [], + "path": "src/plugins/data_views/common/data_views/data_views.ts", + "deprecated": false, + "trackAdoption": false + }, { "parentPluginId": "data", "id": "def-server.DataViewsService.Unnamed", @@ -19155,6 +19218,24 @@ "trackAdoption": false } ] + }, + { + "parentPluginId": "data", + "id": "def-server.DataViewsServerPluginStart.getScriptedFieldsEnabled", + "type": "Function", + "tags": [], + "label": "getScriptedFieldsEnabled", + "description": [ + "\n" + ], + "signature": [ + "() => boolean" + ], + "path": "src/plugins/data_views/server/types.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [] } ], "initialIsOpen": false @@ -20992,6 +21073,10 @@ "plugin": "@kbn/visualization-ui-components", "path": "packages/kbn-visualization-ui-components/components/query_input/filter_query_input.tsx" }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts" + }, { "plugin": "observability", "path": "x-pack/plugins/observability/public/components/threshold/hooks/use_metrics_explorer_data.ts" @@ -21052,10 +21137,6 @@ "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/public/entity_analytics/components/risk_score_preview_section.tsx" }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts" - }, { "plugin": "timelines", "path": "x-pack/plugins/timelines/public/mock/index_pattern.ts" @@ -21237,80 +21318,164 @@ "path": "src/plugins/data_views/common/data_views/data_view.ts" }, { - "plugin": "dataViews", - "path": "src/plugins/data_views/common/data_views/data_view.ts" + "plugin": "dataViews", + "path": "src/plugins/data_views/common/data_views/data_view.ts" + }, + { + "plugin": "logsShared", + "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts" + }, + { + "plugin": "dataViews", + "path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts" + }, + { + "plugin": "dataViews", + "path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts" + }, + { + "plugin": "savedObjectsManagement", + "path": "src/plugins/saved_objects_management/public/management_section/objects_table/components/flyout.tsx" + }, + { + "plugin": "savedObjectsManagement", + "path": "src/plugins/saved_objects_management/public/management_section/objects_table/components/flyout.tsx" + }, + { + "plugin": "unifiedSearch", + "path": "src/plugins/unified_search/public/autocomplete/providers/value_suggestion_provider.ts" + }, + { + "plugin": "unifiedSearch", + "path": "src/plugins/unified_search/public/query_string_input/fetch_index_patterns.ts" + }, + { + "plugin": "unifiedSearch", + "path": "src/plugins/unified_search/public/dataview_picker/change_dataview.tsx" + }, + { + "plugin": "controls", + "path": "src/plugins/controls/public/services/options_list/options_list_service.ts" + }, + { + "plugin": "controls", + "path": "src/plugins/controls/public/services/options_list/options_list_service.ts" + }, + { + "plugin": "@kbn/unified-field-list", + "path": "packages/kbn-unified-field-list/src/services/field_existing/field_existing_utils.ts" + }, + { + "plugin": "@kbn/unified-field-list", + "path": "packages/kbn-unified-field-list/src/hooks/use_existing_fields.ts" + }, + { + "plugin": "@kbn/unified-field-list", + "path": "packages/kbn-unified-field-list/src/hooks/use_existing_fields.ts" + }, + { + "plugin": "@kbn/event-annotation-components", + "path": "packages/kbn-event-annotation-components/components/group_editor_controls/group_editor_controls.tsx" + }, + { + "plugin": "@kbn/event-annotation-components", + "path": "packages/kbn-event-annotation-components/components/table_list.tsx" + }, + { + "plugin": "lens", + "path": "x-pack/plugins/lens/public/data_views_service/loader.ts" + }, + { + "plugin": "@kbn/unified-field-list", + "path": "packages/kbn-unified-field-list/src/services/field_stats/load_field_stats.ts" + }, + { + "plugin": "lens", + "path": "x-pack/plugins/lens/public/app_plugin/lens_top_nav.tsx" + }, + { + "plugin": "triggersActionsUi", + "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts" + }, + { + "plugin": "dataVisualizer", + "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx" }, { - "plugin": "savedObjectsManagement", - "path": "src/plugins/saved_objects_management/public/management_section/objects_table/components/flyout.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts" }, { - "plugin": "savedObjectsManagement", - "path": "src/plugins/saved_objects_management/public/management_section/objects_table/components/flyout.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" }, { - "plugin": "unifiedSearch", - "path": "src/plugins/unified_search/public/autocomplete/providers/value_suggestion_provider.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" }, { - "plugin": "unifiedSearch", - "path": "src/plugins/unified_search/public/query_string_input/fetch_index_patterns.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" }, { - "plugin": "unifiedSearch", - "path": "src/plugins/unified_search/public/dataview_picker/change_dataview.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" }, { - "plugin": "controls", - "path": "src/plugins/controls/public/services/options_list/options_list_service.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" }, { - "plugin": "controls", - "path": "src/plugins/controls/public/services/options_list/options_list_service.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" }, { - "plugin": "@kbn/unified-field-list", - "path": "packages/kbn-unified-field-list/src/services/field_existing/field_existing_utils.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" }, { - "plugin": "@kbn/unified-field-list", - "path": "packages/kbn-unified-field-list/src/hooks/use_existing_fields.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx" }, { - "plugin": "@kbn/unified-field-list", - "path": "packages/kbn-unified-field-list/src/hooks/use_existing_fields.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx" }, { - "plugin": "@kbn/event-annotation-components", - "path": "packages/kbn-event-annotation-components/components/group_editor_controls/group_editor_controls.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts" }, { - "plugin": "@kbn/event-annotation-components", - "path": "packages/kbn-event-annotation-components/components/table_list.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/data_views_service/loader.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts" }, { - "plugin": "@kbn/unified-field-list", - "path": "packages/kbn-unified-field-list/src/services/field_stats/load_field_stats.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/app_plugin/lens_top_nav.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx" }, { - "plugin": "dataViews", - "path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts" }, { - "plugin": "dataViews", - "path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts" }, { - "plugin": "triggersActionsUi", - "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx" }, { "plugin": "ml", @@ -21329,8 +21494,8 @@ "path": "x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts" }, { - "plugin": "logsShared", - "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts" + "plugin": "timelines", + "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts" }, { "plugin": "visTypeTimeseries", @@ -21404,90 +21569,6 @@ "plugin": "stackAlerts", "path": "x-pack/plugins/stack_alerts/public/rule_types/components/data_view_select_popover.tsx" }, - { - "plugin": "dataVisualizer", - "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_embeddable.tsx" - }, { "plugin": "infra", "path": "x-pack/plugins/infra/public/pages/logs/settings/validation_errors.ts" @@ -21577,8 +21658,8 @@ "path": "x-pack/plugins/security_solution/public/detection_engine/rule_details_ui/pages/rule_details/index.tsx" }, { - "plugin": "timelines", - "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/public/flyout/preview/components/rule_preview.tsx" }, { "plugin": "transform", @@ -24433,6 +24514,17 @@ "returnComment": [], "children": [] }, + { + "parentPluginId": "data", + "id": "def-common.DataViewsService.scriptedFieldsEnabled", + "type": "boolean", + "tags": [], + "label": "scriptedFieldsEnabled", + "description": [], + "path": "src/plugins/data_views/common/data_views/data_views.ts", + "deprecated": false, + "trackAdoption": false + }, { "parentPluginId": "data", "id": "def-common.DataViewsService.Unnamed", @@ -27710,22 +27802,6 @@ "deprecated": true, "trackAdoption": false, "references": [ - { - "plugin": "@kbn/core-saved-objects-api-browser", - "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-internal", - "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-internal", - "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-mocks", - "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts" - }, { "plugin": "@kbn/core-saved-objects-api-server-internal", "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/utils/internal_utils.ts" @@ -27738,6 +27814,18 @@ "plugin": "@kbn/core-saved-objects-server-internal", "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.ts" }, + { + "plugin": "@kbn/core-saved-objects-api-browser", + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" + }, + { + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" + }, + { + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" + }, { "plugin": "home", "path": "src/plugins/home/server/services/sample_data/data_sets/logs_tsdb/saved_objects.ts" @@ -27787,20 +27875,8 @@ "path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts" }, { - "plugin": "graph", - "path": "x-pack/plugins/graph/server/sample_data/logs.ts" - }, - { - "plugin": "graph", - "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts" - }, - { - "plugin": "graph", - "path": "x-pack/plugins/graph/server/sample_data/flights.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts" }, { "plugin": "osquery", @@ -27890,6 +27966,26 @@ "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts" }, + { + "plugin": "@kbn/core-saved-objects-browser-mocks", + "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts" + }, + { + "plugin": "graph", + "path": "x-pack/plugins/graph/server/sample_data/logs.ts" + }, + { + "plugin": "graph", + "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts" + }, + { + "plugin": "graph", + "path": "x-pack/plugins/graph/server/sample_data/flights.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" + }, { "plugin": "alerting", "path": "x-pack/plugins/alerting/server/rules_client/lib/siem_legacy_actions/retrieve_migrated_legacy_actions.mock.ts" @@ -27929,6 +28025,10 @@ { "plugin": "fleet", "path": "x-pack/plugins/fleet/server/services/epm/packages/get.test.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.test.ts" } ] }, @@ -28890,6 +28990,21 @@ "trackAdoption": false, "initialIsOpen": false }, + { + "parentPluginId": "data", + "id": "def-common.SAVED_QUERY_BASE_URL", + "type": "string", + "tags": [], + "label": "SAVED_QUERY_BASE_URL", + "description": [], + "signature": [ + "\"/internal/saved_query\"" + ], + "path": "src/plugins/data/common/constants.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "data", "id": "def-common.SCRIPT_LANGUAGES_ROUTE_LATEST_VERSION", diff --git a/api_docs/data.mdx b/api_docs/data.mdx index b2dd5b01cfafd..af1c8dea25eb8 100644 --- a/api_docs/data.mdx +++ b/api_docs/data.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/data title: "data" image: https://source.unsplash.com/400x175/?github description: API docs for the data plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data'] --- import dataObj from './data.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/k | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 3301 | 119 | 2575 | 27 | +| 3308 | 33 | 2581 | 26 | ## Client diff --git a/api_docs/data_query.devdocs.json b/api_docs/data_query.devdocs.json index 30d5d5a046c8b..68ae04e7173c3 100644 --- a/api_docs/data_query.devdocs.json +++ b/api_docs/data_query.devdocs.json @@ -1471,9 +1471,9 @@ ", { overwrite }?: { overwrite?: boolean | undefined; }) => Promise<", { "pluginId": "data", - "scope": "public", + "scope": "common", "docId": "kibDataQueryPluginApi", - "section": "def-public.SavedQuery", + "section": "def-common.SavedQuery", "text": "SavedQuery" }, ">; updateQuery: (id: string, attributes: ", @@ -1487,33 +1487,33 @@ ") => Promise<", { "pluginId": "data", - "scope": "public", + "scope": "common", "docId": "kibDataQueryPluginApi", - "section": "def-public.SavedQuery", + "section": "def-common.SavedQuery", "text": "SavedQuery" }, ">; getAllSavedQueries: () => Promise<", { "pluginId": "data", - "scope": "public", + "scope": "common", "docId": "kibDataQueryPluginApi", - "section": "def-public.SavedQuery", + "section": "def-common.SavedQuery", "text": "SavedQuery" }, "[]>; findSavedQueries: (search?: string, perPage?: number, page?: number) => Promise<{ total: number; queries: ", { "pluginId": "data", - "scope": "public", + "scope": "common", "docId": "kibDataQueryPluginApi", - "section": "def-public.SavedQuery", + "section": "def-common.SavedQuery", "text": "SavedQuery" }, "[]; }>; getSavedQuery: (id: string) => Promise<", { "pluginId": "data", - "scope": "public", + "scope": "common", "docId": "kibDataQueryPluginApi", - "section": "def-public.SavedQuery", + "section": "def-common.SavedQuery", "text": "SavedQuery" }, ">; deleteSavedQuery: (id: string) => Promise<{}>; getSavedQueryCount: () => Promise; }" @@ -2851,9 +2851,9 @@ ", { overwrite }?: { overwrite?: boolean | undefined; }) => Promise<", { "pluginId": "data", - "scope": "public", + "scope": "common", "docId": "kibDataQueryPluginApi", - "section": "def-public.SavedQuery", + "section": "def-common.SavedQuery", "text": "SavedQuery" }, ">; updateQuery: (id: string, attributes: ", @@ -2867,33 +2867,33 @@ ") => Promise<", { "pluginId": "data", - "scope": "public", + "scope": "common", "docId": "kibDataQueryPluginApi", - "section": "def-public.SavedQuery", + "section": "def-common.SavedQuery", "text": "SavedQuery" }, ">; getAllSavedQueries: () => Promise<", { "pluginId": "data", - "scope": "public", + "scope": "common", "docId": "kibDataQueryPluginApi", - "section": "def-public.SavedQuery", + "section": "def-common.SavedQuery", "text": "SavedQuery" }, "[]>; findSavedQueries: (search?: string, perPage?: number, page?: number) => Promise<{ total: number; queries: ", { "pluginId": "data", - "scope": "public", + "scope": "common", "docId": "kibDataQueryPluginApi", - "section": "def-public.SavedQuery", + "section": "def-common.SavedQuery", "text": "SavedQuery" }, "[]; }>; getSavedQuery: (id: string) => Promise<", { "pluginId": "data", - "scope": "public", + "scope": "common", "docId": "kibDataQueryPluginApi", - "section": "def-public.SavedQuery", + "section": "def-common.SavedQuery", "text": "SavedQuery" }, ">; deleteSavedQuery: (id: string) => Promise<{}>; getSavedQueryCount: () => Promise; }" @@ -3041,45 +3041,6 @@ ], "initialIsOpen": false }, - { - "parentPluginId": "data", - "id": "def-public.SavedQuery", - "type": "Interface", - "tags": [], - "label": "SavedQuery", - "description": [], - "path": "src/plugins/data/public/query/saved_query/types.ts", - "deprecated": false, - "trackAdoption": false, - "children": [ - { - "parentPluginId": "data", - "id": "def-public.SavedQuery.id", - "type": "string", - "tags": [], - "label": "id", - "description": [], - "path": "src/plugins/data/public/query/saved_query/types.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "data", - "id": "def-public.SavedQuery.attributes", - "type": "Object", - "tags": [], - "label": "attributes", - "description": [], - "signature": [ - "SavedQueryAttributes" - ], - "path": "src/plugins/data/public/query/saved_query/types.ts", - "deprecated": false, - "trackAdoption": false - } - ], - "initialIsOpen": false - }, { "parentPluginId": "data", "id": "def-public.SavedQueryService", @@ -3100,13 +3061,19 @@ "description": [], "signature": [ "(attributes: ", - "SavedQueryAttributes", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataQueryPluginApi", + "section": "def-common.SavedQueryAttributes", + "text": "SavedQueryAttributes" + }, ") => Promise<", { "pluginId": "data", - "scope": "public", + "scope": "common", "docId": "kibDataQueryPluginApi", - "section": "def-public.SavedQuery", + "section": "def-common.SavedQuery", "text": "SavedQuery" }, ">" @@ -3123,7 +3090,13 @@ "label": "attributes", "description": [], "signature": [ - "SavedQueryAttributes" + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataQueryPluginApi", + "section": "def-common.SavedQueryAttributes", + "text": "SavedQueryAttributes" + } ], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, @@ -3142,13 +3115,19 @@ "description": [], "signature": [ "(id: string, attributes: ", - "SavedQueryAttributes", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataQueryPluginApi", + "section": "def-common.SavedQueryAttributes", + "text": "SavedQueryAttributes" + }, ") => Promise<", { "pluginId": "data", - "scope": "public", + "scope": "common", "docId": "kibDataQueryPluginApi", - "section": "def-public.SavedQuery", + "section": "def-common.SavedQuery", "text": "SavedQuery" }, ">" @@ -3180,7 +3159,13 @@ "label": "attributes", "description": [], "signature": [ - "SavedQueryAttributes" + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataQueryPluginApi", + "section": "def-common.SavedQueryAttributes", + "text": "SavedQueryAttributes" + } ], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, @@ -3201,9 +3186,9 @@ "() => Promise<", { "pluginId": "data", - "scope": "public", + "scope": "common", "docId": "kibDataQueryPluginApi", - "section": "def-public.SavedQuery", + "section": "def-common.SavedQuery", "text": "SavedQuery" }, "[]>" @@ -3225,9 +3210,9 @@ "(searchText?: string | undefined, perPage?: number | undefined, activePage?: number | undefined) => Promise<{ total: number; queries: ", { "pluginId": "data", - "scope": "public", + "scope": "common", "docId": "kibDataQueryPluginApi", - "section": "def-public.SavedQuery", + "section": "def-common.SavedQuery", "text": "SavedQuery" }, "[]; }>" @@ -3295,9 +3280,9 @@ "(id: string) => Promise<", { "pluginId": "data", - "scope": "public", + "scope": "common", "docId": "kibDataQueryPluginApi", - "section": "def-public.SavedQuery", + "section": "def-common.SavedQuery", "text": "SavedQuery" }, ">" @@ -4660,6 +4645,20 @@ "path": "src/plugins/data/common/query/types.ts", "deprecated": false, "trackAdoption": false + }, + { + "parentPluginId": "data", + "id": "def-common.SavedQuery.namespaces", + "type": "Array", + "tags": [], + "label": "namespaces", + "description": [], + "signature": [ + "string[]" + ], + "path": "src/plugins/data/common/query/types.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/data_query.mdx b/api_docs/data_query.mdx index cb8d5837f20c3..ab8235af7ffb7 100644 --- a/api_docs/data_query.mdx +++ b/api_docs/data_query.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/data-query title: "data.query" image: https://source.unsplash.com/400x175/?github description: API docs for the data.query plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.query'] --- import dataQueryObj from './data_query.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/k | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 3301 | 119 | 2575 | 27 | +| 3308 | 33 | 2581 | 26 | ## Client diff --git a/api_docs/data_search.devdocs.json b/api_docs/data_search.devdocs.json index d8398694e33df..97b33f8d418ea 100644 --- a/api_docs/data_search.devdocs.json +++ b/api_docs/data_search.devdocs.json @@ -1412,15 +1412,12 @@ { "parentPluginId": "data", "id": "def-public.noSearchSessionStorageCapabilityMessage", - "type": "Any", + "type": "string", "tags": [], "label": "noSearchSessionStorageCapabilityMessage", "description": [ "\nMessage to display in case storing\nsession session is disabled due to turned off capability" ], - "signature": [ - "any" - ], "path": "src/plugins/data/public/search/session/i18n.ts", "deprecated": false, "trackAdoption": false, @@ -3157,7 +3154,7 @@ "section": "def-common.SavedObjectsFindOptionsReference", "text": "SavedObjectsFindOptionsReference" }, - "[] | undefined; hasNoReferenceOperator?: \"AND\" | \"OR\" | undefined; typeToNamespacesMap?: Map | undefined; migrationVersionCompatibility?: \"raw\" | \"compatible\" | undefined; }" + "[] | undefined; hasNoReferenceOperator?: \"AND\" | \"OR\" | undefined; typeToNamespacesMap?: Map | undefined; migrationVersionCompatibility?: \"raw\" | \"compatible\" | undefined; downwardConversion?: \"allow\" | \"forbid\" | undefined; }" ], "path": "src/plugins/data/server/search/session/types.ts", "deprecated": false, @@ -30239,6 +30236,17 @@ "trackAdoption": false } ] + }, + { + "parentPluginId": "data", + "id": "def-common.SearchSourceDependencies.scriptedFieldsEnabled", + "type": "boolean", + "tags": [], + "label": "scriptedFieldsEnabled", + "description": [], + "path": "src/plugins/data/common/search/search_source/search_source.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -32092,7 +32100,7 @@ "label": "boundsDescendingRaw", "description": [], "signature": [ - "({ bound: number; interval: moment.Duration; boundLabel: any; intervalLabel: any; } | { bound: moment.Duration; interval: moment.Duration; boundLabel: any; intervalLabel: any; })[]" + "({ bound: number; interval: moment.Duration; boundLabel: string; intervalLabel: string; } | { bound: moment.Duration; interval: moment.Duration; boundLabel: string; intervalLabel: string; })[]" ], "path": "src/plugins/data/common/search/aggs/buckets/lib/time_buckets/calc_auto_interval.ts", "deprecated": false, @@ -34193,7 +34201,7 @@ "label": "intervalOptions", "description": [], "signature": [ - "({ display: any; val: string; enabled(agg: ", + "({ display: string; val: string; enabled(agg: ", { "pluginId": "data", "scope": "common", @@ -34201,7 +34209,7 @@ "section": "def-common.IBucketAggConfig", "text": "IBucketAggConfig" }, - "): boolean; } | { display: any; val: string; })[]" + "): boolean; } | { display: string; val: string; })[]" ], "path": "src/plugins/data/common/search/aggs/buckets/_interval_options.ts", "deprecated": false, @@ -34962,13 +34970,10 @@ { "parentPluginId": "data", "id": "def-common.parentPipelineType", - "type": "Any", + "type": "string", "tags": [], "label": "parentPipelineType", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/aggs/metrics/lib/parent_pipeline_agg_helper.ts", "deprecated": false, "trackAdoption": false, @@ -35220,13 +35225,10 @@ { "parentPluginId": "data", "id": "def-common.siblingPipelineType", - "type": "Any", + "type": "string", "tags": [], "label": "siblingPipelineType", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/aggs/metrics/lib/sibling_pipeline_agg_helper.ts", "deprecated": false, "trackAdoption": false, @@ -35373,13 +35375,10 @@ { "parentPluginId": "data", "id": "def-common.AggGroupLabels.AggGroupNames.Buckets", - "type": "Any", + "type": "string", "tags": [], "label": "[AggGroupNames.Buckets]", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/aggs/agg_groups.ts", "deprecated": false, "trackAdoption": false @@ -35387,13 +35386,10 @@ { "parentPluginId": "data", "id": "def-common.AggGroupLabels.AggGroupNames.Metrics", - "type": "Any", + "type": "string", "tags": [], "label": "[AggGroupNames.Metrics]", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/aggs/agg_groups.ts", "deprecated": false, "trackAdoption": false @@ -35401,13 +35397,10 @@ { "parentPluginId": "data", "id": "def-common.AggGroupLabels.AggGroupNames.None", - "type": "Any", + "type": "string", "tags": [], "label": "[AggGroupNames.None]", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/aggs/agg_groups.ts", "deprecated": false, "trackAdoption": false @@ -35486,13 +35479,10 @@ { "parentPluginId": "data", "id": "def-common.cidrFunction.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/cidr.ts", "deprecated": false, "trackAdoption": false @@ -35550,13 +35540,10 @@ { "parentPluginId": "data", "id": "def-common.cidrFunction.args.mask.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/cidr.ts", "deprecated": false, "trackAdoption": false @@ -35685,13 +35672,10 @@ { "parentPluginId": "data", "id": "def-common.dateRangeFunction.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/date_range.ts", "deprecated": false, "trackAdoption": false @@ -35735,13 +35719,10 @@ { "parentPluginId": "data", "id": "def-common.dateRangeFunction.args.from.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/date_range.ts", "deprecated": false, "trackAdoption": false @@ -35776,13 +35757,10 @@ { "parentPluginId": "data", "id": "def-common.dateRangeFunction.args.to.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/date_range.ts", "deprecated": false, "trackAdoption": false @@ -36086,13 +36064,10 @@ { "parentPluginId": "data", "id": "def-common.existsFilterFunction.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", "deprecated": false, "trackAdoption": false @@ -36150,13 +36125,10 @@ { "parentPluginId": "data", "id": "def-common.existsFilterFunction.args.field.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", "deprecated": false, "trackAdoption": false @@ -36205,13 +36177,10 @@ { "parentPluginId": "data", "id": "def-common.existsFilterFunction.args.negate.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", "deprecated": false, "trackAdoption": false @@ -36342,13 +36311,10 @@ { "parentPluginId": "data", "id": "def-common.extendedBoundsFunction.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", "deprecated": false, "trackAdoption": false @@ -36392,13 +36358,10 @@ { "parentPluginId": "data", "id": "def-common.extendedBoundsFunction.args.min.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", "deprecated": false, "trackAdoption": false @@ -36433,13 +36396,10 @@ { "parentPluginId": "data", "id": "def-common.extendedBoundsFunction.args.max.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", "deprecated": false, "trackAdoption": false @@ -36568,13 +36528,10 @@ { "parentPluginId": "data", "id": "def-common.fieldFunction.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/field.ts", "deprecated": false, "trackAdoption": false @@ -36632,13 +36589,10 @@ { "parentPluginId": "data", "id": "def-common.fieldFunction.args.name.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/field.ts", "deprecated": false, "trackAdoption": false @@ -36687,13 +36641,10 @@ { "parentPluginId": "data", "id": "def-common.fieldFunction.args.type.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/field.ts", "deprecated": false, "trackAdoption": false @@ -36728,13 +36679,10 @@ { "parentPluginId": "data", "id": "def-common.fieldFunction.args.script.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/field.ts", "deprecated": false, "trackAdoption": false @@ -36856,13 +36804,10 @@ { "parentPluginId": "data", "id": "def-common.geoBoundingBoxFunction.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, "trackAdoption": false @@ -36906,13 +36851,10 @@ { "parentPluginId": "data", "id": "def-common.geoBoundingBoxFunction.args.top.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, "trackAdoption": false @@ -36947,13 +36889,10 @@ { "parentPluginId": "data", "id": "def-common.geoBoundingBoxFunction.args.left.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, "trackAdoption": false @@ -36988,13 +36927,10 @@ { "parentPluginId": "data", "id": "def-common.geoBoundingBoxFunction.args.bottom.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, "trackAdoption": false @@ -37029,13 +36965,10 @@ { "parentPluginId": "data", "id": "def-common.geoBoundingBoxFunction.args.right.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, "trackAdoption": false @@ -37070,13 +37003,10 @@ { "parentPluginId": "data", "id": "def-common.geoBoundingBoxFunction.args.wkt.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, "trackAdoption": false @@ -37111,13 +37041,10 @@ { "parentPluginId": "data", "id": "def-common.geoBoundingBoxFunction.args.topLeft.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, "trackAdoption": false @@ -37152,13 +37079,10 @@ { "parentPluginId": "data", "id": "def-common.geoBoundingBoxFunction.args.bottomRight.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, "trackAdoption": false @@ -37193,13 +37117,10 @@ { "parentPluginId": "data", "id": "def-common.geoBoundingBoxFunction.args.topRight.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, "trackAdoption": false @@ -37234,13 +37155,10 @@ { "parentPluginId": "data", "id": "def-common.geoBoundingBoxFunction.args.bottomLeft.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, "trackAdoption": false @@ -37362,13 +37280,10 @@ { "parentPluginId": "data", "id": "def-common.geoPointFunction.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/geo_point.ts", "deprecated": false, "trackAdoption": false @@ -37412,13 +37327,10 @@ { "parentPluginId": "data", "id": "def-common.geoPointFunction.args.lat.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/geo_point.ts", "deprecated": false, "trackAdoption": false @@ -37453,13 +37365,10 @@ { "parentPluginId": "data", "id": "def-common.geoPointFunction.args.lon.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/geo_point.ts", "deprecated": false, "trackAdoption": false @@ -37522,13 +37431,10 @@ { "parentPluginId": "data", "id": "def-common.geoPointFunction.args.point.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/geo_point.ts", "deprecated": false, "trackAdoption": false @@ -37650,13 +37556,10 @@ { "parentPluginId": "data", "id": "def-common.ipRangeFunction.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/ip_range.ts", "deprecated": false, "trackAdoption": false @@ -37714,13 +37617,10 @@ { "parentPluginId": "data", "id": "def-common.ipRangeFunction.args.from.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/ip_range.ts", "deprecated": false, "trackAdoption": false @@ -37769,13 +37669,10 @@ { "parentPluginId": "data", "id": "def-common.ipRangeFunction.args.to.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/ip_range.ts", "deprecated": false, "trackAdoption": false @@ -37904,13 +37801,10 @@ { "parentPluginId": "data", "id": "def-common.kibana.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/kibana.ts", "deprecated": false, "trackAdoption": false @@ -38117,13 +38011,10 @@ { "parentPluginId": "data", "id": "def-common.kibanaFilterFunction.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", "deprecated": false, "trackAdoption": false @@ -38195,13 +38086,10 @@ { "parentPluginId": "data", "id": "def-common.kibanaFilterFunction.args.query.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", "deprecated": false, "trackAdoption": false @@ -38250,13 +38138,10 @@ { "parentPluginId": "data", "id": "def-common.kibanaFilterFunction.args.negate.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", "deprecated": false, "trackAdoption": false @@ -38305,13 +38190,10 @@ { "parentPluginId": "data", "id": "def-common.kibanaFilterFunction.args.disabled.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", "deprecated": false, "trackAdoption": false @@ -38426,13 +38308,10 @@ { "parentPluginId": "data", "id": "def-common.kibanaTimerangeFunction.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/timerange.ts", "deprecated": false, "trackAdoption": false @@ -38490,13 +38369,10 @@ { "parentPluginId": "data", "id": "def-common.kibanaTimerangeFunction.args.from.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/timerange.ts", "deprecated": false, "trackAdoption": false @@ -38545,13 +38421,10 @@ { "parentPluginId": "data", "id": "def-common.kibanaTimerangeFunction.args.to.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/timerange.ts", "deprecated": false, "trackAdoption": false @@ -38600,13 +38473,10 @@ { "parentPluginId": "data", "id": "def-common.kibanaTimerangeFunction.args.mode.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/timerange.ts", "deprecated": false, "trackAdoption": false @@ -38735,13 +38605,10 @@ { "parentPluginId": "data", "id": "def-common.kqlFunction.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/kql.ts", "deprecated": false, "trackAdoption": false @@ -38813,13 +38680,10 @@ { "parentPluginId": "data", "id": "def-common.kqlFunction.args.q.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/kql.ts", "deprecated": false, "trackAdoption": false @@ -38934,13 +38798,10 @@ { "parentPluginId": "data", "id": "def-common.luceneFunction.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/lucene.ts", "deprecated": false, "trackAdoption": false @@ -39012,13 +38873,10 @@ { "parentPluginId": "data", "id": "def-common.luceneFunction.args.q.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/lucene.ts", "deprecated": false, "trackAdoption": false @@ -39276,13 +39134,10 @@ { "parentPluginId": "data", "id": "def-common.numericalRangeFunction.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", "deprecated": false, "trackAdoption": false @@ -39326,13 +39181,10 @@ { "parentPluginId": "data", "id": "def-common.numericalRangeFunction.args.from.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", "deprecated": false, "trackAdoption": false @@ -39367,13 +39219,10 @@ { "parentPluginId": "data", "id": "def-common.numericalRangeFunction.args.to.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", "deprecated": false, "trackAdoption": false @@ -39408,13 +39257,10 @@ { "parentPluginId": "data", "id": "def-common.numericalRangeFunction.args.label.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", "deprecated": false, "trackAdoption": false @@ -39501,13 +39347,10 @@ { "parentPluginId": "data", "id": "def-common.parentPipelineAggHelper.subtype", - "type": "Any", + "type": "string", "tags": [], "label": "subtype", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/aggs/metrics/lib/parent_pipeline_agg_helper.ts", "deprecated": false, "trackAdoption": false @@ -39649,13 +39492,10 @@ { "parentPluginId": "data", "id": "def-common.phraseFilterFunction.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", "deprecated": false, "trackAdoption": false @@ -39713,13 +39553,10 @@ { "parentPluginId": "data", "id": "def-common.phraseFilterFunction.args.field.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", "deprecated": false, "trackAdoption": false @@ -39782,13 +39619,10 @@ { "parentPluginId": "data", "id": "def-common.phraseFilterFunction.args.phrase.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", "deprecated": false, "trackAdoption": false @@ -39837,13 +39671,10 @@ { "parentPluginId": "data", "id": "def-common.phraseFilterFunction.args.negate.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", "deprecated": false, "trackAdoption": false @@ -39974,13 +39805,10 @@ { "parentPluginId": "data", "id": "def-common.queryFilterFunction.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/query_filter.ts", "deprecated": false, "trackAdoption": false @@ -40052,13 +39880,10 @@ { "parentPluginId": "data", "id": "def-common.queryFilterFunction.args.input.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/query_filter.ts", "deprecated": false, "trackAdoption": false @@ -40093,13 +39918,10 @@ { "parentPluginId": "data", "id": "def-common.queryFilterFunction.args.label.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/query_filter.ts", "deprecated": false, "trackAdoption": false @@ -40221,13 +40043,10 @@ { "parentPluginId": "data", "id": "def-common.rangeFilterFunction.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/range_filter.ts", "deprecated": false, "trackAdoption": false @@ -40285,13 +40104,10 @@ { "parentPluginId": "data", "id": "def-common.rangeFilterFunction.args.field.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/range_filter.ts", "deprecated": false, "trackAdoption": false @@ -40340,13 +40156,10 @@ { "parentPluginId": "data", "id": "def-common.rangeFilterFunction.args.range.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/range_filter.ts", "deprecated": false, "trackAdoption": false @@ -40395,13 +40208,10 @@ { "parentPluginId": "data", "id": "def-common.rangeFilterFunction.args.negate.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/range_filter.ts", "deprecated": false, "trackAdoption": false @@ -40532,13 +40342,10 @@ { "parentPluginId": "data", "id": "def-common.rangeFunction.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/range.ts", "deprecated": false, "trackAdoption": false @@ -40582,13 +40389,10 @@ { "parentPluginId": "data", "id": "def-common.rangeFunction.args.gt.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/range.ts", "deprecated": false, "trackAdoption": false @@ -40623,13 +40427,10 @@ { "parentPluginId": "data", "id": "def-common.rangeFunction.args.lt.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/range.ts", "deprecated": false, "trackAdoption": false @@ -40664,13 +40465,10 @@ { "parentPluginId": "data", "id": "def-common.rangeFunction.args.gte.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/range.ts", "deprecated": false, "trackAdoption": false @@ -40705,13 +40503,10 @@ { "parentPluginId": "data", "id": "def-common.rangeFunction.args.lte.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/range.ts", "deprecated": false, "trackAdoption": false @@ -40841,13 +40636,10 @@ { "parentPluginId": "data", "id": "def-common.removeFilterFunction.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", "deprecated": false, "trackAdoption": false @@ -40905,13 +40697,10 @@ { "parentPluginId": "data", "id": "def-common.removeFilterFunction.args.group.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", "deprecated": false, "trackAdoption": false @@ -40946,13 +40735,10 @@ { "parentPluginId": "data", "id": "def-common.removeFilterFunction.args.from.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", "deprecated": false, "trackAdoption": false @@ -41015,13 +40801,10 @@ { "parentPluginId": "data", "id": "def-common.removeFilterFunction.args.ungrouped.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", "deprecated": false, "trackAdoption": false @@ -41182,13 +40965,10 @@ { "parentPluginId": "data", "id": "def-common.selectFilterFunction.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/select_filter.ts", "deprecated": false, "trackAdoption": false @@ -41246,13 +41026,10 @@ { "parentPluginId": "data", "id": "def-common.selectFilterFunction.args.group.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/select_filter.ts", "deprecated": false, "trackAdoption": false @@ -41301,13 +41078,10 @@ { "parentPluginId": "data", "id": "def-common.selectFilterFunction.args.from.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/select_filter.ts", "deprecated": false, "trackAdoption": false @@ -41370,13 +41144,10 @@ { "parentPluginId": "data", "id": "def-common.selectFilterFunction.args.ungrouped.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/expressions/select_filter.ts", "deprecated": false, "trackAdoption": false @@ -41495,13 +41266,10 @@ { "parentPluginId": "data", "id": "def-common.siblingPipelineAggHelper.subtype", - "type": "Any", + "type": "string", "tags": [], "label": "subtype", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/data/common/search/aggs/metrics/lib/sibling_pipeline_agg_helper.ts", "deprecated": false, "trackAdoption": false diff --git a/api_docs/data_search.mdx b/api_docs/data_search.mdx index f9b12d448d526..01d44b6713ebd 100644 --- a/api_docs/data_search.mdx +++ b/api_docs/data_search.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/data-search title: "data.search" image: https://source.unsplash.com/400x175/?github description: API docs for the data.search plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.search'] --- import dataSearchObj from './data_search.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/k | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 3301 | 119 | 2575 | 27 | +| 3308 | 33 | 2581 | 26 | ## Client diff --git a/api_docs/data_view_editor.mdx b/api_docs/data_view_editor.mdx index f982d68f11caa..c65f646077e48 100644 --- a/api_docs/data_view_editor.mdx +++ b/api_docs/data_view_editor.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataViewEditor title: "dataViewEditor" image: https://source.unsplash.com/400x175/?github description: API docs for the dataViewEditor plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViewEditor'] --- import dataViewEditorObj from './data_view_editor.devdocs.json'; diff --git a/api_docs/data_view_field_editor.devdocs.json b/api_docs/data_view_field_editor.devdocs.json index d4916b3da0d34..b961c3f8fa265 100644 --- a/api_docs/data_view_field_editor.devdocs.json +++ b/api_docs/data_view_field_editor.devdocs.json @@ -95,7 +95,7 @@ "section": "def-public.FormatEditorState", "text": "FormatEditorState" }, - ") => { error: any; samples: ", + ") => { error: string | undefined; samples: ", { "pluginId": "dataViewFieldEditor", "scope": "public", diff --git a/api_docs/data_view_field_editor.mdx b/api_docs/data_view_field_editor.mdx index 0bc783a2ff599..e090aa0aede5b 100644 --- a/api_docs/data_view_field_editor.mdx +++ b/api_docs/data_view_field_editor.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataViewFieldEditor title: "dataViewFieldEditor" image: https://source.unsplash.com/400x175/?github description: API docs for the dataViewFieldEditor plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViewFieldEditor'] --- import dataViewFieldEditorObj from './data_view_field_editor.devdocs.json'; diff --git a/api_docs/data_view_management.mdx b/api_docs/data_view_management.mdx index 1dba864cec118..469f0df154986 100644 --- a/api_docs/data_view_management.mdx +++ b/api_docs/data_view_management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataViewManagement title: "dataViewManagement" image: https://source.unsplash.com/400x175/?github description: API docs for the dataViewManagement plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViewManagement'] --- import dataViewManagementObj from './data_view_management.devdocs.json'; diff --git a/api_docs/data_views.devdocs.json b/api_docs/data_views.devdocs.json index 7da5deb550cc2..3ac18c3d9e79a 100644 --- a/api_docs/data_views.devdocs.json +++ b/api_docs/data_views.devdocs.json @@ -71,6 +71,10 @@ "plugin": "@kbn/visualization-ui-components", "path": "packages/kbn-visualization-ui-components/components/query_input/filter_query_input.tsx" }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts" + }, { "plugin": "observability", "path": "x-pack/plugins/observability/public/components/threshold/hooks/use_metrics_explorer_data.ts" @@ -131,10 +135,6 @@ "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/public/entity_analytics/components/risk_score_preview_section.tsx" }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts" - }, { "plugin": "timelines", "path": "x-pack/plugins/timelines/public/mock/index_pattern.ts" @@ -303,6 +303,10 @@ "plugin": "@kbn/es-query", "path": "packages/kbn-es-query/src/kuery/functions/utils/get_full_field_name_node.test.ts" }, + { + "plugin": "data", + "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts" + }, { "plugin": "data", "path": "src/plugins/data/common/search/search_source/inspect/inspector_stats.ts" @@ -313,15 +317,15 @@ }, { "plugin": "data", - "path": "src/plugins/data/common/search/aggs/param_types/field.ts" + "path": "src/plugins/data/public/search/errors/painless_error.tsx" }, { "plugin": "data", - "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts" + "path": "src/plugins/data/common/search/aggs/param_types/field.ts" }, { - "plugin": "data", - "path": "src/plugins/data/public/search/errors/painless_error.tsx" + "plugin": "logsShared", + "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts" }, { "plugin": "savedObjectsManagement", @@ -388,180 +392,176 @@ "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts" + "plugin": "dataVisualizer", + "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts" }, { "plugin": "ml", - "path": "x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts" + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx" }, { "plugin": "ml", - "path": "x-pack/plugins/ml/server/lib/alerts/alerting_service.ts" + "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts" }, { "plugin": "ml", - "path": "x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts" - }, - { - "plugin": "logsShared", - "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts" + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" }, { - "plugin": "visTypeTimeseries", - "path": "src/plugins/vis_types/timeseries/common/index_patterns_utils.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" }, { - "plugin": "visTypeTimeseries", - "path": "src/plugins/vis_types/timeseries/common/index_patterns_utils.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" }, { - "plugin": "visTypeTimeseries", - "path": "src/plugins/vis_types/timeseries/server/lib/get_fields.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" }, { - "plugin": "apm", - "path": "x-pack/plugins/apm/server/routes/data_view/create_static_data_view.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" }, { - "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/utils/observability_data_views/observability_data_views.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" }, { - "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/report_definition_field.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" }, { - "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/use_filter_values.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx" }, { - "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/filter_value_btn.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/expressions/boundary_index_expression.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/expressions/entity_index_expression.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/components/data_view_select_popover.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts" }, { - "plugin": "dataVisualizer", - "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/server/lib/alerts/alerting_service.ts" }, { "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx" + "path": "x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts" + "plugin": "timelines", + "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" + "plugin": "visTypeTimeseries", + "path": "src/plugins/vis_types/timeseries/common/index_patterns_utils.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" + "plugin": "visTypeTimeseries", + "path": "src/plugins/vis_types/timeseries/common/index_patterns_utils.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" + "plugin": "visTypeTimeseries", + "path": "src/plugins/vis_types/timeseries/server/lib/get_fields.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" + "plugin": "apm", + "path": "x-pack/plugins/apm/server/routes/data_view/create_static_data_view.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" + "plugin": "exploratoryView", + "path": "x-pack/plugins/exploratory_view/public/utils/observability_data_views/observability_data_views.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" + "plugin": "exploratoryView", + "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/report_definition_field.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" + "plugin": "exploratoryView", + "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/use_filter_values.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx" + "plugin": "exploratoryView", + "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/filter_value_btn.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/expressions/boundary_index_expression.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/expressions/entity_index_expression.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_embeddable.tsx" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/components/data_view_select_popover.tsx" }, { "plugin": "infra", @@ -652,8 +652,8 @@ "path": "x-pack/plugins/security_solution/public/detection_engine/rule_details_ui/pages/rule_details/index.tsx" }, { - "plugin": "timelines", - "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/public/flyout/preview/components/rule_preview.tsx" }, { "plugin": "transform", @@ -3667,6 +3667,45 @@ "deprecated": false, "trackAdoption": false, "children": [ + { + "parentPluginId": "dataViews", + "id": "def-public.DataViewsPublicPlugin.Unnamed", + "type": "Function", + "tags": [], + "label": "Constructor", + "description": [], + "signature": [ + "any" + ], + "path": "src/plugins/data_views/public/plugin.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "dataViews", + "id": "def-public.DataViewsPublicPlugin.Unnamed.$1", + "type": "Object", + "tags": [], + "label": "initializerContext", + "description": [], + "signature": [ + { + "pluginId": "@kbn/core-plugins-browser", + "scope": "common", + "docId": "kibKbnCorePluginsBrowserPluginApi", + "section": "def-common.PluginInitializerContext", + "text": "PluginInitializerContext" + }, + "" + ], + "path": "src/plugins/data_views/public/plugin.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] + }, { "parentPluginId": "dataViews", "id": "def-public.DataViewsPublicPlugin.setup", @@ -3914,6 +3953,17 @@ "returnComment": [], "children": [] }, + { + "parentPluginId": "dataViews", + "id": "def-public.DataViewsService.scriptedFieldsEnabled", + "type": "boolean", + "tags": [], + "label": "scriptedFieldsEnabled", + "description": [], + "path": "src/plugins/data_views/common/data_views/data_views.ts", + "deprecated": false, + "trackAdoption": false + }, { "parentPluginId": "dataViews", "id": "def-public.DataViewsService.Unnamed", @@ -5474,6 +5524,17 @@ "deprecated": false, "trackAdoption": false }, + { + "parentPluginId": "dataViews", + "id": "def-public.DataViewsServicePublic.scriptedFieldsEnabled", + "type": "boolean", + "tags": [], + "label": "scriptedFieldsEnabled", + "description": [], + "path": "src/plugins/data_views/public/data_views_service_public.ts", + "deprecated": false, + "trackAdoption": false + }, { "parentPluginId": "dataViews", "id": "def-public.DataViewsServicePublic.Unnamed", @@ -6488,6 +6549,17 @@ } ], "returnComment": [] + }, + { + "parentPluginId": "dataViews", + "id": "def-public.DataViewsServicePublicDeps.scriptedFieldsEnabled", + "type": "boolean", + "tags": [], + "label": "scriptedFieldsEnabled", + "description": [], + "path": "src/plugins/data_views/public/data_views_service_public.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7963,6 +8035,10 @@ "plugin": "@kbn/visualization-ui-components", "path": "packages/kbn-visualization-ui-components/components/query_input/filter_query_input.tsx" }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts" + }, { "plugin": "observability", "path": "x-pack/plugins/observability/public/components/threshold/hooks/use_metrics_explorer_data.ts" @@ -8023,10 +8099,6 @@ "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/public/entity_analytics/components/risk_score_preview_section.tsx" }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts" - }, { "plugin": "timelines", "path": "x-pack/plugins/timelines/public/mock/index_pattern.ts" @@ -8195,6 +8267,10 @@ "plugin": "@kbn/es-query", "path": "packages/kbn-es-query/src/kuery/functions/utils/get_full_field_name_node.test.ts" }, + { + "plugin": "data", + "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts" + }, { "plugin": "data", "path": "src/plugins/data/common/search/search_source/inspect/inspector_stats.ts" @@ -8205,15 +8281,15 @@ }, { "plugin": "data", - "path": "src/plugins/data/common/search/aggs/param_types/field.ts" + "path": "src/plugins/data/public/search/errors/painless_error.tsx" }, { "plugin": "data", - "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts" + "path": "src/plugins/data/common/search/aggs/param_types/field.ts" }, { - "plugin": "data", - "path": "src/plugins/data/public/search/errors/painless_error.tsx" + "plugin": "logsShared", + "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts" }, { "plugin": "savedObjectsManagement", @@ -8280,180 +8356,176 @@ "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts" + "plugin": "dataVisualizer", + "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts" }, { "plugin": "ml", - "path": "x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts" + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx" }, { "plugin": "ml", - "path": "x-pack/plugins/ml/server/lib/alerts/alerting_service.ts" + "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts" }, { "plugin": "ml", - "path": "x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts" - }, - { - "plugin": "logsShared", - "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts" + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" }, { - "plugin": "visTypeTimeseries", - "path": "src/plugins/vis_types/timeseries/common/index_patterns_utils.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" }, { - "plugin": "visTypeTimeseries", - "path": "src/plugins/vis_types/timeseries/common/index_patterns_utils.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" }, { - "plugin": "visTypeTimeseries", - "path": "src/plugins/vis_types/timeseries/server/lib/get_fields.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" }, { - "plugin": "apm", - "path": "x-pack/plugins/apm/server/routes/data_view/create_static_data_view.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" }, { - "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/utils/observability_data_views/observability_data_views.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" }, { - "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/report_definition_field.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" }, { - "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/use_filter_values.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx" }, { - "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/filter_value_btn.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/expressions/boundary_index_expression.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/expressions/entity_index_expression.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/components/data_view_select_popover.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts" }, { - "plugin": "dataVisualizer", - "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/server/lib/alerts/alerting_service.ts" }, { "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx" + "path": "x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts" + "plugin": "timelines", + "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" + "plugin": "visTypeTimeseries", + "path": "src/plugins/vis_types/timeseries/common/index_patterns_utils.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" + "plugin": "visTypeTimeseries", + "path": "src/plugins/vis_types/timeseries/common/index_patterns_utils.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" + "plugin": "visTypeTimeseries", + "path": "src/plugins/vis_types/timeseries/server/lib/get_fields.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" + "plugin": "apm", + "path": "x-pack/plugins/apm/server/routes/data_view/create_static_data_view.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" + "plugin": "exploratoryView", + "path": "x-pack/plugins/exploratory_view/public/utils/observability_data_views/observability_data_views.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" + "plugin": "exploratoryView", + "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/report_definition_field.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" + "plugin": "exploratoryView", + "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/use_filter_values.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx" + "plugin": "exploratoryView", + "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/filter_value_btn.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/expressions/boundary_index_expression.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/expressions/entity_index_expression.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_embeddable.tsx" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/components/data_view_select_popover.tsx" }, { "plugin": "infra", @@ -8544,8 +8616,8 @@ "path": "x-pack/plugins/security_solution/public/detection_engine/rule_details_ui/pages/rule_details/index.tsx" }, { - "plugin": "timelines", - "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/public/flyout/preview/components/rule_preview.tsx" }, { "plugin": "transform", @@ -10746,7 +10818,7 @@ "section": "def-common.DataViewsService", "text": "DataViewsService" }, - ">; }" + ">; getScriptedFieldsEnabled: () => boolean; }" ], "path": "src/plugins/data_views/server/plugin.ts", "deprecated": false, @@ -10847,6 +10919,17 @@ "returnComment": [], "children": [] }, + { + "parentPluginId": "dataViews", + "id": "def-server.DataViewsService.scriptedFieldsEnabled", + "type": "boolean", + "tags": [], + "label": "scriptedFieldsEnabled", + "description": [], + "path": "src/plugins/data_views/common/data_views/data_views.ts", + "deprecated": false, + "trackAdoption": false + }, { "parentPluginId": "dataViews", "id": "def-server.DataViewsService.Unnamed", @@ -14931,6 +15014,24 @@ "trackAdoption": false } ] + }, + { + "parentPluginId": "dataViews", + "id": "def-server.DataViewsServerPluginStart.getScriptedFieldsEnabled", + "type": "Function", + "tags": [], + "label": "getScriptedFieldsEnabled", + "description": [ + "\n" + ], + "signature": [ + "() => boolean" + ], + "path": "src/plugins/data_views/server/types.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [] } ], "lifecycle": "start", @@ -15008,6 +15109,10 @@ "plugin": "@kbn/visualization-ui-components", "path": "packages/kbn-visualization-ui-components/components/query_input/filter_query_input.tsx" }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts" + }, { "plugin": "observability", "path": "x-pack/plugins/observability/public/components/threshold/hooks/use_metrics_explorer_data.ts" @@ -15068,10 +15173,6 @@ "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/public/entity_analytics/components/risk_score_preview_section.tsx" }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts" - }, { "plugin": "timelines", "path": "x-pack/plugins/timelines/public/mock/index_pattern.ts" @@ -15240,6 +15341,10 @@ "plugin": "@kbn/es-query", "path": "packages/kbn-es-query/src/kuery/functions/utils/get_full_field_name_node.test.ts" }, + { + "plugin": "data", + "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts" + }, { "plugin": "data", "path": "src/plugins/data/common/search/search_source/inspect/inspector_stats.ts" @@ -15250,15 +15355,15 @@ }, { "plugin": "data", - "path": "src/plugins/data/common/search/aggs/param_types/field.ts" + "path": "src/plugins/data/public/search/errors/painless_error.tsx" }, { "plugin": "data", - "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts" + "path": "src/plugins/data/common/search/aggs/param_types/field.ts" }, { - "plugin": "data", - "path": "src/plugins/data/public/search/errors/painless_error.tsx" + "plugin": "logsShared", + "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts" }, { "plugin": "savedObjectsManagement", @@ -15325,180 +15430,176 @@ "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts" + "plugin": "dataVisualizer", + "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts" }, { "plugin": "ml", - "path": "x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts" + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx" }, { "plugin": "ml", - "path": "x-pack/plugins/ml/server/lib/alerts/alerting_service.ts" + "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts" }, { "plugin": "ml", - "path": "x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts" - }, - { - "plugin": "logsShared", - "path": "x-pack/plugins/logs_shared/common/log_views/resolved_log_view.ts" + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" }, { - "plugin": "visTypeTimeseries", - "path": "src/plugins/vis_types/timeseries/common/index_patterns_utils.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" }, { - "plugin": "visTypeTimeseries", - "path": "src/plugins/vis_types/timeseries/common/index_patterns_utils.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" }, { - "plugin": "visTypeTimeseries", - "path": "src/plugins/vis_types/timeseries/server/lib/get_fields.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" }, { - "plugin": "apm", - "path": "x-pack/plugins/apm/server/routes/data_view/create_static_data_view.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" }, { - "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/utils/observability_data_views/observability_data_views.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" }, { - "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/report_definition_field.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" }, { - "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/use_filter_values.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx" }, { - "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/filter_value_btn.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/expressions/boundary_index_expression.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/expressions/entity_index_expression.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts" }, { - "plugin": "stackAlerts", - "path": "x-pack/plugins/stack_alerts/public/rule_types/components/data_view_select_popover.tsx" + "plugin": "ml", + "path": "x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts" }, { - "plugin": "dataVisualizer", - "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts" + "plugin": "ml", + "path": "x-pack/plugins/ml/server/lib/alerts/alerting_service.ts" }, { "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx" + "path": "x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts" + "plugin": "timelines", + "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" + "plugin": "visTypeTimeseries", + "path": "src/plugins/vis_types/timeseries/common/index_patterns_utils.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" + "plugin": "visTypeTimeseries", + "path": "src/plugins/vis_types/timeseries/common/index_patterns_utils.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" + "plugin": "visTypeTimeseries", + "path": "src/plugins/vis_types/timeseries/server/lib/get_fields.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts" + "plugin": "apm", + "path": "x-pack/plugins/apm/server/routes/data_view/create_static_data_view.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" + "plugin": "exploratoryView", + "path": "x-pack/plugins/exploratory_view/public/utils/observability_data_views/observability_data_views.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" + "plugin": "exploratoryView", + "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/report_definition_field.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx" + "plugin": "exploratoryView", + "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/use_filter_values.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx" + "plugin": "exploratoryView", + "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/series_editor/columns/filter_value_btn.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/job_creator/job_creator.ts" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/expressions/boundary_index_expression.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/common/results_loader/categorization_examples_loader.ts" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/expressions/entity_index_expression.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/index_or_search/preconfigured_job_redirect.ts" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/pick_fields_step/components/bucket_span_estimator/estimate_bucket_span.ts" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/jobs/new_job/pages/components/datafeed_step/components/data_view/change_data_view.tsx" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/use_outlier_data.ts" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/exploration_results_table/use_exploration_results.ts" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/source_selection/source_selection.tsx" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/index.tsx" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_embeddable.tsx" + "plugin": "stackAlerts", + "path": "x-pack/plugins/stack_alerts/public/rule_types/components/data_view_select_popover.tsx" }, { "plugin": "infra", @@ -15589,8 +15690,8 @@ "path": "x-pack/plugins/security_solution/public/detection_engine/rule_details_ui/pages/rule_details/index.tsx" }, { - "plugin": "timelines", - "path": "x-pack/plugins/timelines/server/search_strategy/index_fields/index.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/public/flyout/preview/components/rule_preview.tsx" }, { "plugin": "transform", @@ -18556,6 +18657,17 @@ "returnComment": [], "children": [] }, + { + "parentPluginId": "dataViews", + "id": "def-common.DataViewsService.scriptedFieldsEnabled", + "type": "boolean", + "tags": [], + "label": "scriptedFieldsEnabled", + "description": [], + "path": "src/plugins/data_views/common/data_views/data_views.ts", + "deprecated": false, + "trackAdoption": false + }, { "parentPluginId": "dataViews", "id": "def-common.DataViewsService.Unnamed", @@ -21225,6 +21337,17 @@ "trackAdoption": false, "children": [], "returnComment": [] + }, + { + "parentPluginId": "dataViews", + "id": "def-common.DataViewsServiceDeps.scriptedFieldsEnabled", + "type": "boolean", + "tags": [], + "label": "scriptedFieldsEnabled", + "description": [], + "path": "src/plugins/data_views/common/data_views/data_views.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -24254,22 +24377,6 @@ "deprecated": true, "trackAdoption": false, "references": [ - { - "plugin": "@kbn/core-saved-objects-api-browser", - "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-internal", - "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-internal", - "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-mocks", - "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts" - }, { "plugin": "@kbn/core-saved-objects-api-server-internal", "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/utils/internal_utils.ts" @@ -24282,6 +24389,18 @@ "plugin": "@kbn/core-saved-objects-server-internal", "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.ts" }, + { + "plugin": "@kbn/core-saved-objects-api-browser", + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" + }, + { + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" + }, + { + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" + }, { "plugin": "home", "path": "src/plugins/home/server/services/sample_data/data_sets/logs_tsdb/saved_objects.ts" @@ -24331,20 +24450,8 @@ "path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts" }, { - "plugin": "graph", - "path": "x-pack/plugins/graph/server/sample_data/logs.ts" - }, - { - "plugin": "graph", - "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts" - }, - { - "plugin": "graph", - "path": "x-pack/plugins/graph/server/sample_data/flights.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts" }, { "plugin": "osquery", @@ -24434,6 +24541,26 @@ "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts" }, + { + "plugin": "@kbn/core-saved-objects-browser-mocks", + "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts" + }, + { + "plugin": "graph", + "path": "x-pack/plugins/graph/server/sample_data/logs.ts" + }, + { + "plugin": "graph", + "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts" + }, + { + "plugin": "graph", + "path": "x-pack/plugins/graph/server/sample_data/flights.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" + }, { "plugin": "alerting", "path": "x-pack/plugins/alerting/server/rules_client/lib/siem_legacy_actions/retrieve_migrated_legacy_actions.mock.ts" @@ -24473,6 +24600,10 @@ { "plugin": "fleet", "path": "x-pack/plugins/fleet/server/services/epm/packages/get.test.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.test.ts" } ] }, diff --git a/api_docs/data_views.mdx b/api_docs/data_views.mdx index ddafd97db27cc..f63b778953e91 100644 --- a/api_docs/data_views.mdx +++ b/api_docs/data_views.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataViews title: "dataViews" image: https://source.unsplash.com/400x175/?github description: API docs for the dataViews plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViews'] --- import dataViewsObj from './data_views.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/k | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 1024 | 0 | 246 | 2 | +| 1034 | 0 | 254 | 2 | ## Client diff --git a/api_docs/data_visualizer.mdx b/api_docs/data_visualizer.mdx index 7ce6cb745989c..497b81760c838 100644 --- a/api_docs/data_visualizer.mdx +++ b/api_docs/data_visualizer.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataVisualizer title: "dataVisualizer" image: https://source.unsplash.com/400x175/?github description: API docs for the dataVisualizer plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataVisualizer'] --- import dataVisualizerObj from './data_visualizer.devdocs.json'; diff --git a/api_docs/deprecations_by_api.mdx b/api_docs/deprecations_by_api.mdx index 720a95ed2dd6c..e65c834327823 100644 --- a/api_docs/deprecations_by_api.mdx +++ b/api_docs/deprecations_by_api.mdx @@ -7,7 +7,7 @@ id: kibDevDocsDeprecationsByApi slug: /kibana-dev-docs/api-meta/deprecated-api-list-by-api title: Deprecated API usage by API description: A list of deprecated APIs, which plugins are still referencing them, and when they need to be removed by. -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana'] --- @@ -16,39 +16,36 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Deprecated API | Referencing plugin(s) | Remove By | | ---------------|-----------|-----------| -| | stackAlerts, ml | - | -| | ruleRegistry, observability, ml, infra, monitoring, securitySolution, stackAlerts, synthetics, transform, uptime | - | +| | ml, stackAlerts | - | +| | ruleRegistry, ml, securitySolution, observability, infra, monitoring, stackAlerts, synthetics, transform, uptime | - | +| | @kbn/es-query, @kbn/visualization-ui-components, securitySolution, observability, timelines, lists, threatIntelligence, savedSearch, dataViews, logsShared, savedObjectsManagement, unifiedSearch, controls, @kbn/unified-field-list, @kbn/event-annotation-components, lens, triggersActionsUi, dataVisualizer, ml, visTypeTimeseries, apm, exploratoryView, fleet, stackAlerts, infra, canvas, enterpriseSearch, graph, transform, upgradeAssistant, uptime, ux, maps, dataViewManagement, inputControlVis, visDefaultEditor, presentationUtil, visTypeTimelion, visTypeVega, data | - | +| | @kbn/es-query, @kbn/visualization-ui-components, securitySolution, observability, timelines, lists, threatIntelligence, savedSearch, dataViews, logsShared, savedObjectsManagement, unifiedSearch, controls, @kbn/unified-field-list, @kbn/event-annotation-components, lens, triggersActionsUi, dataVisualizer, ml, visTypeTimeseries, apm, exploratoryView, fleet, stackAlerts, infra, canvas, enterpriseSearch, graph, transform, upgradeAssistant, uptime, ux, maps, dataViewManagement, inputControlVis, visDefaultEditor, presentationUtil, visTypeTimelion, visTypeVega, data | - | +| | @kbn/es-query, @kbn/visualization-ui-components, securitySolution, observability, timelines, lists, threatIntelligence, savedSearch, data, logsShared, savedObjectsManagement, unifiedSearch, controls, @kbn/unified-field-list, @kbn/event-annotation-components, lens, triggersActionsUi, dataVisualizer, ml, visTypeTimeseries, apm, exploratoryView, fleet, stackAlerts, infra, canvas, enterpriseSearch, graph, transform, upgradeAssistant, uptime, ux, maps, dataViewManagement, inputControlVis, visDefaultEditor, presentationUtil, visTypeTimelion, visTypeVega | - | +| | home, data, esUiShared, savedObjectsManagement, ml, exploratoryView, fleet, observability, apm, indexLifecycleManagement, observabilityOnboarding, synthetics, upgradeAssistant, uptime, ux, kibanaOverview | - | +| | share, uiActions, guidedOnboarding, home, management, spaces, security, savedObjects, serverless, visualizations, controls, dashboard, savedObjectsTagging, expressionXY, lens, expressionMetricVis, expressionGauge, alerting, triggersActionsUi, cases, licenseManagement, advancedSettings, maps, dataVisualizer, aiops, ml, exploratoryView, fleet, observability, infra, profiling, apm, expressionImage, expressionMetric, expressionError, expressionRevealImage, expressionRepeatImage, expressionShape, indexManagement, crossClusterReplication, enterpriseSearch, globalSearchBar, graph, grokdebugger, indexLifecycleManagement, ingestPipelines, logstash, monitoring, observabilityOnboarding, osquery, devTools, painlessLab, remoteClusters, rollup, searchprofiler, newsfeed, securitySolution, snapshotRestore, synthetics, transform, upgradeAssistant, uptime, ux, watcher, cloudDataMigration, console, filesManagement, kibanaOverview, visDefaultEditor, expressionHeatmap, expressionLegacyMetricVis, expressionPartitionVis, expressionTagcloud, visTypeTable, visTypeTimelion, visTypeTimeseries, visTypeVega, visTypeVislib | - | +| | encryptedSavedObjects, actions, data, ml, securitySolution, logstash, cloudChat | - | +| | actions, ml, savedObjectsTagging, enterpriseSearch | - | +| | @kbn/core-saved-objects-browser-internal, @kbn/core, savedObjects, presentationUtil, visualizations, dataVisualizer, ml, aiops, dashboardEnhanced, graph, lens, securitySolution, eventAnnotation, @kbn/core-saved-objects-browser-mocks | - | +| | @kbn/core, ml, savedObjects, embeddable, visualizations, canvas, graph, @kbn/core-saved-objects-common, @kbn/core-saved-objects-server, actions, alerting, securitySolution, savedSearch, enterpriseSearch, taskManager, @kbn/core-saved-objects-server-internal, @kbn/core-saved-objects-api-server | - | | | stackAlerts, alerting, securitySolution, inputControlVis | - | | | stackAlerts, infra, graph, inputControlVis, securitySolution, savedObjects | - | -| | dashboard, stackAlerts, dataVisualizer, expressionPartitionVis | - | -| | @kbn/es-query, @kbn/visualization-ui-components, observability, securitySolution, timelines, lists, threatIntelligence, savedSearch, dataViews, savedObjectsManagement, unifiedSearch, controls, @kbn/unified-field-list, @kbn/event-annotation-components, lens, triggersActionsUi, ml, logsShared, visTypeTimeseries, apm, exploratoryView, fleet, stackAlerts, dataVisualizer, infra, canvas, enterpriseSearch, graph, transform, upgradeAssistant, uptime, ux, maps, dataViewManagement, inputControlVis, visDefaultEditor, presentationUtil, visTypeTimelion, visTypeVega, data | - | +| | dashboard, dataVisualizer, stackAlerts, expressionPartitionVis | - | | | stackAlerts, alerting, securitySolution, inputControlVis | - | -| | @kbn/es-query, @kbn/visualization-ui-components, observability, securitySolution, timelines, lists, threatIntelligence, savedSearch, dataViews, savedObjectsManagement, unifiedSearch, controls, @kbn/unified-field-list, @kbn/event-annotation-components, lens, triggersActionsUi, ml, logsShared, visTypeTimeseries, apm, exploratoryView, fleet, stackAlerts, dataVisualizer, infra, canvas, enterpriseSearch, graph, transform, upgradeAssistant, uptime, ux, maps, dataViewManagement, inputControlVis, visDefaultEditor, presentationUtil, visTypeTimelion, visTypeVega, data | - | -| | @kbn/es-query, @kbn/visualization-ui-components, observability, securitySolution, timelines, lists, threatIntelligence, savedSearch, data, savedObjectsManagement, unifiedSearch, controls, @kbn/unified-field-list, @kbn/event-annotation-components, lens, triggersActionsUi, ml, logsShared, visTypeTimeseries, apm, exploratoryView, fleet, stackAlerts, dataVisualizer, infra, canvas, enterpriseSearch, graph, transform, upgradeAssistant, uptime, ux, maps, dataViewManagement, inputControlVis, visDefaultEditor, presentationUtil, visTypeTimelion, visTypeVega | - | -| | inspector, data, savedObjects, dataViewEditor, unifiedSearch, embeddable, visualizations, controls, dashboard, licensing, savedObjectsTagging, eventAnnotation, dataViewFieldEditor, lens, security, triggersActionsUi, cases, @kbn/ml-date-picker, aiops, observabilityShared, exploratoryView, fleet, observability, telemetry, advancedSettings, maps, dataVisualizer, ml, banners, reporting, timelines, cloudSecurityPosture, runtimeFields, indexManagement, dashboardEnhanced, imageEmbeddable, graph, monitoring, securitySolution, synthetics, transform, uptime, cloudLinks, console, dataViewManagement, filesManagement, uiActions, visTypeVislib | - | -| | home, data, esUiShared, savedObjectsManagement, exploratoryView, fleet, observability, ml, apm, indexLifecycleManagement, observabilityOnboarding, synthetics, upgradeAssistant, uptime, ux, kibanaOverview | - | -| | share, uiActions, guidedOnboarding, home, management, spaces, savedObjects, serverless, visualizations, controls, dashboard, savedObjectsTagging, expressionXY, lens, expressionMetricVis, expressionGauge, security, alerting, triggersActionsUi, cases, aiops, exploratoryView, fleet, observability, licenseManagement, advancedSettings, maps, dataVisualizer, ml, infra, profiling, apm, expressionImage, expressionMetric, expressionError, expressionRevealImage, expressionRepeatImage, expressionShape, indexManagement, crossClusterReplication, enterpriseSearch, globalSearchBar, graph, grokdebugger, indexLifecycleManagement, ingestPipelines, logstash, monitoring, observabilityOnboarding, osquery, devTools, painlessLab, remoteClusters, rollup, searchprofiler, newsfeed, securitySolution, serverlessSearch, snapshotRestore, synthetics, transform, upgradeAssistant, uptime, ux, watcher, cloudDataMigration, console, filesManagement, kibanaOverview, visDefaultEditor, expressionHeatmap, expressionLegacyMetricVis, expressionPartitionVis, expressionTagcloud, visTypeTable, visTypeTimelion, visTypeTimeseries, visTypeVega, visTypeVislib | - | -| | encryptedSavedObjects, actions, data, ml, logstash, securitySolution, cloudChat | - | -| | actions, ml, savedObjectsTagging, enterpriseSearch | - | -| | @kbn/core-saved-objects-browser-internal, @kbn/core, savedObjects, presentationUtil, visualizations, aiops, ml, dataVisualizer, dashboardEnhanced, graph, lens, securitySolution, eventAnnotation, @kbn/core-saved-objects-browser-mocks | - | -| | @kbn/core, savedObjects, embeddable, visualizations, canvas, graph, ml, @kbn/core-saved-objects-common, @kbn/core-saved-objects-server, actions, alerting, savedSearch, enterpriseSearch, securitySolution, taskManager, @kbn/core-saved-objects-server-internal, @kbn/core-saved-objects-api-server | - | -| | observability, @kbn/securitysolution-data-table, securitySolution | - | -| | @kbn/core-plugins-browser-internal, @kbn/core-root-browser-internal, home, savedObjects, unifiedSearch, presentationUtil, visualizations, fileUpload, dashboardEnhanced, transform, discover, observability, dataVisualizer | - | -| | @kbn/core-saved-objects-browser-mocks, savedObjects, presentationUtil, observability, dashboardEnhanced, @kbn/core-saved-objects-browser-internal | - | -| | monitoring | - | | | alerting, discover, securitySolution | - | -| | @kbn/core-saved-objects-api-browser, @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-browser-mocks, @kbn/core-saved-objects-api-server-internal, @kbn/core-saved-objects-import-export-server-internal, @kbn/core-saved-objects-server-internal, home, fleet, graph, lists, osquery, securitySolution, alerting | - | -| | @kbn/core-saved-objects-api-browser, @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-browser-mocks, @kbn/core-saved-objects-api-server-internal, @kbn/core-saved-objects-import-export-server-internal, @kbn/core-saved-objects-server-internal, home, fleet, graph, lists, osquery, securitySolution, alerting | - | +| | @kbn/core-saved-objects-api-server-internal, @kbn/core-saved-objects-import-export-server-internal, @kbn/core-saved-objects-server-internal, @kbn/core-saved-objects-api-browser, @kbn/core-saved-objects-browser-internal, home, fleet, osquery, securitySolution, @kbn/core-saved-objects-browser-mocks, graph, lists, alerting | - | +| | @kbn/core-saved-objects-api-server-internal, @kbn/core-saved-objects-import-export-server-internal, @kbn/core-saved-objects-server-internal, @kbn/core-saved-objects-api-browser, @kbn/core-saved-objects-browser-internal, home, fleet, osquery, securitySolution, @kbn/core-saved-objects-browser-mocks, graph, lists, alerting | - | | | alerting, discover, securitySolution | - | | | securitySolution | - | +| | inspector, data, licensing, security, savedObjects, dataViewEditor, unifiedSearch, embeddable, visualizations, controls, dashboard, savedObjectsTagging, eventAnnotation, dataViewFieldEditor, lens, triggersActionsUi, cases, observabilityShared, telemetry, advancedSettings, maps, exploratoryView, fleet, observability, banners, reporting, timelines, cloudSecurityPosture, runtimeFields, indexManagement, dashboardEnhanced, imageEmbeddable, graph, monitoring, securitySolution, synthetics, transform, uptime, cloudLinks, console, dataViewManagement, filesManagement, uiActions, visTypeVislib | - | +| | observability, @kbn/securitysolution-data-table, securitySolution | - | | | @kbn/securitysolution-data-table, securitySolution | - | | | securitySolution | - | -| | @kbn/securitysolution-data-table, securitySolution | - | -| | @kbn/securitysolution-data-table, securitySolution | - | +| | securitySolution, @kbn/securitysolution-data-table | - | +| | securitySolution, @kbn/securitysolution-data-table | - | | | securitySolution | - | | | securitySolution | - | -| | @kbn/core-saved-objects-api-browser, @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-api-server, @kbn/core, home, savedObjectsTagging, canvas, savedObjects, @kbn/core-saved-objects-browser-mocks, @kbn/core-saved-objects-import-export-server-internal, savedObjectsTaggingOss, lists, securitySolution, upgradeAssistant, savedObjectsManagement, @kbn/core-ui-settings-server-internal | - | -| | @kbn/core-saved-objects-migration-server-internal, actions, dataViews, data, alerting, lens, cases, savedObjectsTagging, visualizations, savedSearch, canvas, graph, lists, maps, securitySolution, dashboard, @kbn/core-test-helpers-so-type-serializer | - | +| | @kbn/core-saved-objects-api-browser, @kbn/core-saved-objects-browser-internal, @kbn/core, savedObjectsTaggingOss, savedObjectsTagging, securitySolution, lists, upgradeAssistant, savedObjectsManagement, @kbn/core-saved-objects-api-server, @kbn/core-saved-objects-import-export-server-internal, home, canvas, savedObjects, @kbn/core-saved-objects-browser-mocks, @kbn/core-ui-settings-server-internal | - | +| | @kbn/core-saved-objects-migration-server-internal, actions, dataViews, data, alerting, lens, lists, savedObjectsTagging, securitySolution, cases, visualizations, savedSearch, canvas, graph, maps, dashboard, @kbn/core-test-helpers-so-type-serializer | - | | | lists, securitySolution, @kbn/securitysolution-io-ts-list-types | - | | | lists, securitySolution, @kbn/securitysolution-io-ts-list-types | - | | | lists, securitySolution, @kbn/securitysolution-io-ts-list-types | - | @@ -61,20 +58,27 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | securitySolution | - | | | securitySolution | - | | | securitySolution | - | -| | exploratoryView, fleet, dataVisualizer, cloudSecurityPosture, discoverEnhanced, osquery, synthetics | - | -| | @kbn/core-lifecycle-browser, @kbn/core-saved-objects-browser-internal, @kbn/core, visualizations, exploratoryView, transform, @kbn/core-saved-objects-browser-mocks | - | +| | monitoring | - | +| | dataVisualizer, exploratoryView, fleet, cloudSecurityPosture, discoverEnhanced, osquery, synthetics | - | +| | @kbn/core-plugins-browser-internal, @kbn/core-root-browser-internal, home, savedObjects, unifiedSearch, presentationUtil, visualizations, fileUpload, dashboardEnhanced, transform, discover, dataVisualizer | - | +| | @kbn/core, @kbn/core-lifecycle-browser, @kbn/core-saved-objects-browser-internal, visualizations, exploratoryView, transform, @kbn/core-saved-objects-browser-mocks | - | | | actions, alerting | - | | | discover | - | | | data, discover, imageEmbeddable, embeddable | - | | | @kbn/core-saved-objects-browser-mocks, discover, @kbn/core-saved-objects-browser-internal | - | | | advancedSettings, discover | - | -| | @kbn/core-saved-objects-api-browser, @kbn/core, savedObjects, savedObjectsManagement, visualizations, savedObjectsTagging, eventAnnotation, lens, graph, dashboard, savedObjectsTaggingOss, kibanaUtils, expressions, data, embeddable, controls, uiActionsEnhanced, maps, canvas, dashboardEnhanced, globalSearchProviders | - | +| | @kbn/core-saved-objects-api-server-internal | - | +| | @kbn/core-saved-objects-api-server-internal | - | +| | @kbn/core-saved-objects-api-server-internal, canvas, @kbn/core-saved-objects-browser-internal | - | +| | @kbn/core-saved-objects-server-internal, @kbn/core-plugins-server-internal, savedObjectsTagging, @kbn/core-saved-objects-server-mocks | - | +| | @kbn/core, kibanaUtils, expressions, data, savedObjectsTaggingOss, embeddable, visualizations, controls, savedObjectsTagging, uiActionsEnhanced, lens, maps, canvas, dashboardEnhanced, globalSearchProviders, @kbn/core-saved-objects-api-browser, savedObjects, savedObjectsManagement, eventAnnotation, graph, dashboard | - | | | @kbn/core-saved-objects-browser, @kbn/core-saved-objects-browser-internal, @kbn/core, home, savedObjects, visualizations, lens, visTypeTimeseries, @kbn/core-saved-objects-browser-mocks | - | -| | @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-browser-mocks, savedObjects | - | -| | @kbn/core-saved-objects-browser-mocks, home, @kbn/core-saved-objects-browser-internal | - | -| | @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-browser-mocks, savedObjects, visualizations | - | +| | @kbn/core-saved-objects-browser-internal, savedObjects, @kbn/core-saved-objects-browser-mocks | - | +| | home, @kbn/core-saved-objects-browser-mocks, @kbn/core-saved-objects-browser-internal | - | +| | @kbn/core-saved-objects-browser-internal, savedObjects, visualizations, @kbn/core-saved-objects-browser-mocks | - | | | @kbn/core-saved-objects-browser-mocks, @kbn/core-saved-objects-browser-internal | - | -| | @kbn/core-saved-objects-browser-mocks, savedObjects, dashboardEnhanced, @kbn/core-saved-objects-browser-internal | - | +| | savedObjects, presentationUtil, @kbn/core-saved-objects-browser-mocks, dashboardEnhanced, @kbn/core-saved-objects-browser-internal | - | +| | savedObjects, @kbn/core-saved-objects-browser-mocks, dashboardEnhanced, @kbn/core-saved-objects-browser-internal | - | | | @kbn/core-saved-objects-browser-mocks, savedObjects, @kbn/core-saved-objects-browser-internal | - | | | @kbn/core-saved-objects-browser-mocks, @kbn/core-saved-objects-browser-internal | - | | | @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-browser-mocks, savedObjects | - | @@ -83,22 +87,18 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | @kbn/core-saved-objects-browser-internal | - | | | @kbn/core-saved-objects-browser-internal | - | | | @kbn/core-saved-objects-browser-internal, @kbn/core, savedObjects, visualizations, graph | - | -| | @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-api-server-internal, canvas | - | | | @kbn/core-saved-objects-browser-internal, @kbn/core | - | | | @kbn/core-saved-objects-browser-internal, @kbn/core | - | | | @kbn/core-saved-objects-browser-internal, @kbn/core | - | | | @kbn/core-saved-objects-browser-internal, @kbn/core | - | -| | @kbn/core-saved-objects-browser-internal, @kbn/core, spaces, savedSearch, visualizations, lens, cases, maps, canvas, graph | - | +| | @kbn/core-saved-objects-browser-internal, @kbn/core, cases, spaces, savedSearch, visualizations, lens, maps, canvas, graph | - | | | @kbn/core-saved-objects-browser-internal, @kbn/core | - | | | @kbn/core-saved-objects-browser-internal, @kbn/core | - | | | @kbn/core-saved-objects-browser-internal, @kbn/core | - | | | @kbn/core-saved-objects-browser-internal, @kbn/core | - | | | @kbn/core-saved-objects-browser-internal | - | -| | @kbn/core-root-browser-internal, @kbn/core-saved-objects-browser-mocks | - | -| | @kbn/core-saved-objects-api-server-internal | - | -| | @kbn/core-saved-objects-api-server-internal, fleet | - | -| | @kbn/core-saved-objects-server-internal, @kbn/core-plugins-server-internal, savedObjectsTagging, @kbn/core-saved-objects-server-mocks | - | | | home, osquery | - | +| | @kbn/core-root-browser-internal, @kbn/core-saved-objects-browser-mocks | - | | | visTypeTimeseries, graph, dataViewManagement, dataViews | - | | | visTypeTimeseries, graph, dataViewManagement, dataViews | - | | | visTypeTimeseries, graph, dataViewManagement | - | @@ -141,13 +141,13 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | @kbn/core-lifecycle-browser-mocks, @kbn/core, @kbn/core-plugins-browser-internal | - | | | @kbn/core | - | | | @kbn/core-plugins-server-internal | - | -| | security, aiops, licenseManagement, ml, profiling, apm, crossClusterReplication, logstash, painlessLab, searchprofiler, watcher | 8.8.0 | -| | spaces, security, actions, alerting, ml, remoteClusters, graph, indexLifecycleManagement, mapsEms, osquery, painlessLab, rollup, searchprofiler, securitySolution, snapshotRestore, transform, upgradeAssistant | 8.8.0 | +| | security, licenseManagement, aiops, ml, profiling, apm, crossClusterReplication, logstash, painlessLab, searchprofiler, watcher | 8.8.0 | +| | spaces, security, actions, alerting, ml, osquery, securitySolution, remoteClusters, graph, indexLifecycleManagement, mapsEms, painlessLab, rollup, searchprofiler, snapshotRestore, transform, upgradeAssistant | 8.8.0 | | | apm, fleet, security, securitySolution | 8.8.0 | | | apm, fleet, security, securitySolution | 8.8.0 | | | spaces, security, alerting | 8.8.0 | | | embeddable, presentationUtil, dashboard, lens, discover, graph | 8.8.0 | -| | @kbn/core-application-browser-internal, @kbn/core-application-browser-mocks, management, fleet, security, kibanaOverview, @kbn/core | 8.8.0 | +| | @kbn/core-application-browser-internal, management, @kbn/core-application-browser-mocks, fleet, security, kibanaOverview, @kbn/core | 8.8.0 | | | apm | 8.8.0 | | | security | 8.8.0 | | | mapsEms | 8.8.0 | @@ -189,6 +189,7 @@ Safe to remove. | | expressions | | | expressions | | | expressions | +| | home | | | kibanaReact | | | kibanaReact | | | kibanaReact | @@ -196,6 +197,10 @@ Safe to remove. | | licensing | | | licensing | | | licensing | +| | lists | +| | lists | +| | lists | +| | lists | | | reporting | | | reporting | | | reporting | diff --git a/api_docs/deprecations_by_plugin.mdx b/api_docs/deprecations_by_plugin.mdx index ee36712c5326a..60ee9c7f95207 100644 --- a/api_docs/deprecations_by_plugin.mdx +++ b/api_docs/deprecations_by_plugin.mdx @@ -7,7 +7,7 @@ id: kibDevDocsDeprecationsByPlugin slug: /kibana-dev-docs/api-meta/deprecated-api-list-by-plugin title: Deprecated API usage by plugin description: A list of deprecated APIs, which plugins are still referencing them, and when they need to be removed by. -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana'] --- @@ -40,14 +40,14 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectsBulkUpdateOptions) | - | | | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectsBulkResolveResponse) | - | | | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectsBulkCreateObject) | - | -| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/server/index.ts#:~:text=SavedObjectAttributes), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectAttributes), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObjectAttributes), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/server/index.ts#:~:text=SavedObjectAttributes) | - | -| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectsStart), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/server/index.ts#:~:text=SavedObjectsStart) | - | +| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/server/index.ts#:~:text=SavedObjectAttributes), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObjectAttributes), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectAttributes), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/server/index.ts#:~:text=SavedObjectAttributes) | - | +| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/server/index.ts#:~:text=SavedObjectsStart), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectsStart) | - | | | [mocks.ts](https://github.com/elastic/kibana/tree/main/src/core/public/mocks.ts#:~:text=savedObjectsServiceMock) | - | | | [mocks.ts](https://github.com/elastic/kibana/tree/main/src/core/public/mocks.ts#:~:text=simpleSavedObjectMock) | - | -| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObject), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObject) | - | -| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectAttributeSingle), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObjectAttributeSingle) | - | -| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectAttribute), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObjectAttribute) | - | -| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectReference), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObjectReference) | - | +| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObject), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObject) | - | +| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObjectAttributeSingle), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectAttributeSingle) | - | +| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObjectAttribute), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectAttribute) | - | +| | [index.ts](https://github.com/elastic/kibana/tree/main/src/core/types/index.ts#:~:text=SavedObjectReference), [index.ts](https://github.com/elastic/kibana/tree/main/src/core/public/index.ts#:~:text=SavedObjectReference) | - | @@ -314,14 +314,6 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] -## @kbn/ml-date-picker - -| Deprecated API | Reference location(s) | Remove By | -| ---------------|-----------|-----------| -| | [use_date_picker_context.tsx](https://github.com/elastic/kibana/tree/main/x-pack/packages/ml/date_picker/src/hooks/use_date_picker_context.tsx#:~:text=toMountPoint) | - | - - - ## @kbn/react-kibana-context-styled | Deprecated API | Reference location(s) | Remove By | @@ -379,7 +371,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/plugin.ts#:~:text=authc) | - | | | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/plugin.ts#:~:text=authz) | - | | | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/plugin.ts#:~:text=index) | - | -| | [actions_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/actions_client.ts#:~:text=SavedObjectAttributes), [actions_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/actions_client.ts#:~:text=SavedObjectAttributes), [actions_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/actions_client.ts#:~:text=SavedObjectAttributes), [actions_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/actions_client.ts#:~:text=SavedObjectAttributes), [actions_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/actions_client.ts#:~:text=SavedObjectAttributes), [actions_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/actions_client.ts#:~:text=SavedObjectAttributes), [actions_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/actions_client.ts#:~:text=SavedObjectAttributes), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/types.ts#:~:text=SavedObjectAttributes), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/types.ts#:~:text=SavedObjectAttributes), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/types.ts#:~:text=SavedObjectAttributes)+ 10 more | - | +| | [actions_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/actions_client/actions_client.ts#:~:text=SavedObjectAttributes), [actions_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/actions_client/actions_client.ts#:~:text=SavedObjectAttributes), [actions_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/actions_client/actions_client.ts#:~:text=SavedObjectAttributes), [actions_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/actions_client/actions_client.ts#:~:text=SavedObjectAttributes), [actions_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/actions_client/actions_client.ts#:~:text=SavedObjectAttributes), [actions_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/actions_client/actions_client.ts#:~:text=SavedObjectAttributes), [actions_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/actions_client/actions_client.ts#:~:text=SavedObjectAttributes), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/types.ts#:~:text=SavedObjectAttributes), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/types.ts#:~:text=SavedObjectAttributes), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/types.ts#:~:text=SavedObjectAttributes)+ 10 more | - | | | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/saved_objects/index.ts#:~:text=convertToMultiNamespaceTypeVersion), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/saved_objects/index.ts#:~:text=convertToMultiNamespaceTypeVersion) | - | @@ -399,7 +391,6 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [embeddable_change_point_chart.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/aiops/public/embeddable/embeddable_change_point_chart.tsx#:~:text=toMountPoint), [embeddable_change_point_chart.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/aiops/public/embeddable/embeddable_change_point_chart.tsx#:~:text=toMountPoint), [log_categorization_app_state.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/aiops/public/components/log_categorization/log_categorization_app_state.tsx#:~:text=toMountPoint), [log_categorization_app_state.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/aiops/public/components/log_categorization/log_categorization_app_state.tsx#:~:text=toMountPoint), [show_flyout.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/aiops/public/components/log_categorization/show_flyout.tsx#:~:text=toMountPoint), [show_flyout.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/aiops/public/components/log_categorization/show_flyout.tsx#:~:text=toMountPoint), [show_flyout.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/aiops/public/components/log_categorization/show_flyout.tsx#:~:text=toMountPoint), [log_rate_analysis_app_state.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/aiops/public/components/log_rate_analysis/log_rate_analysis_app_state.tsx#:~:text=toMountPoint), [log_rate_analysis_app_state.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/aiops/public/components/log_rate_analysis/log_rate_analysis_app_state.tsx#:~:text=toMountPoint), [log_rate_analysis_content_wrapper.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/aiops/public/components/log_rate_analysis/log_rate_analysis_content/log_rate_analysis_content_wrapper.tsx#:~:text=toMountPoint)+ 3 more | - | | | [embeddable_change_point_chart.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/aiops/public/embeddable/embeddable_change_point_chart.tsx#:~:text=KibanaThemeProvider), [embeddable_change_point_chart.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/aiops/public/embeddable/embeddable_change_point_chart.tsx#:~:text=KibanaThemeProvider), [embeddable_change_point_chart.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/aiops/public/embeddable/embeddable_change_point_chart.tsx#:~:text=KibanaThemeProvider) | - | | | [plugin.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/aiops/public/plugin.tsx#:~:text=license%24) | 8.8.0 | | | [search_utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/aiops/public/application/utils/search_utils.ts#:~:text=SimpleSavedObject), [search_utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/aiops/public/application/utils/search_utils.ts#:~:text=SimpleSavedObject) | - | @@ -581,9 +572,9 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [inspector_stats.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/search_source/inspect/inspector_stats.ts#:~:text=title), [response_writer.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/tabify/response_writer.ts#:~:text=title), [field.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/param_types/field.ts#:~:text=title), [get_display_value.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/query/filter_manager/lib/get_display_value.ts#:~:text=title), [painless_error.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/errors/painless_error.tsx#:~:text=title), [agg_config.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/agg_config.test.ts#:~:text=title), [_terms_other_bucket_helper.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/_terms_other_bucket_helper.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [rare_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/rare_terms.test.ts#:~:text=title)+ 3 more | - | -| | [inspector_stats.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/search_source/inspect/inspector_stats.ts#:~:text=title), [response_writer.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/tabify/response_writer.ts#:~:text=title), [field.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/param_types/field.ts#:~:text=title), [get_display_value.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/query/filter_manager/lib/get_display_value.ts#:~:text=title), [painless_error.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/errors/painless_error.tsx#:~:text=title), [agg_config.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/agg_config.test.ts#:~:text=title), [_terms_other_bucket_helper.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/_terms_other_bucket_helper.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [rare_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/rare_terms.test.ts#:~:text=title)+ 3 more | - | -| | [inspector_stats.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/search_source/inspect/inspector_stats.ts#:~:text=title), [response_writer.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/tabify/response_writer.ts#:~:text=title), [field.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/param_types/field.ts#:~:text=title), [get_display_value.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/query/filter_manager/lib/get_display_value.ts#:~:text=title), [painless_error.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/errors/painless_error.tsx#:~:text=title), [agg_config.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/agg_config.test.ts#:~:text=title), [_terms_other_bucket_helper.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/_terms_other_bucket_helper.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [rare_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/rare_terms.test.ts#:~:text=title)+ 3 more | - | +| | [get_display_value.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/query/filter_manager/lib/get_display_value.ts#:~:text=title), [inspector_stats.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/search_source/inspect/inspector_stats.ts#:~:text=title), [response_writer.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/tabify/response_writer.ts#:~:text=title), [painless_error.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/errors/painless_error.tsx#:~:text=title), [field.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/param_types/field.ts#:~:text=title), [agg_config.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/agg_config.test.ts#:~:text=title), [_terms_other_bucket_helper.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/_terms_other_bucket_helper.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [rare_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/rare_terms.test.ts#:~:text=title)+ 3 more | - | +| | [get_display_value.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/query/filter_manager/lib/get_display_value.ts#:~:text=title), [inspector_stats.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/search_source/inspect/inspector_stats.ts#:~:text=title), [response_writer.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/tabify/response_writer.ts#:~:text=title), [painless_error.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/errors/painless_error.tsx#:~:text=title), [field.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/param_types/field.ts#:~:text=title), [agg_config.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/agg_config.test.ts#:~:text=title), [_terms_other_bucket_helper.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/_terms_other_bucket_helper.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [rare_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/rare_terms.test.ts#:~:text=title)+ 3 more | - | +| | [get_display_value.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/query/filter_manager/lib/get_display_value.ts#:~:text=title), [inspector_stats.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/search_source/inspect/inspector_stats.ts#:~:text=title), [response_writer.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/tabify/response_writer.ts#:~:text=title), [painless_error.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/errors/painless_error.tsx#:~:text=title), [field.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/param_types/field.ts#:~:text=title), [agg_config.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/agg_config.test.ts#:~:text=title), [_terms_other_bucket_helper.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/_terms_other_bucket_helper.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [multi_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/multi_terms.test.ts#:~:text=title), [rare_terms.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/common/search/aggs/buckets/rare_terms.test.ts#:~:text=title)+ 3 more | - | | | [search_interceptor.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/search_interceptor/search_interceptor.ts#:~:text=toMountPoint), [search_interceptor.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/search_interceptor/search_interceptor.ts#:~:text=toMountPoint), [search_interceptor.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/search_interceptor/search_interceptor.ts#:~:text=toMountPoint), [search_interceptor.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/search_interceptor/search_interceptor.ts#:~:text=toMountPoint), [shard_failure_open_modal_button.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/shard_failure_modal/shard_failure_open_modal_button.tsx#:~:text=toMountPoint), [shard_failure_open_modal_button.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/shard_failure_modal/shard_failure_open_modal_button.tsx#:~:text=toMountPoint), [handle_warnings.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/fetch/handle_warnings.tsx#:~:text=toMountPoint), [handle_warnings.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/fetch/handle_warnings.tsx#:~:text=toMountPoint), [delete_button.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/sessions_mgmt/components/actions/delete_button.tsx#:~:text=toMountPoint), [delete_button.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/sessions_mgmt/components/actions/delete_button.tsx#:~:text=toMountPoint)+ 8 more | - | | | [get_columns.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/sessions_mgmt/lib/get_columns.tsx#:~:text=RedirectAppLinks), [get_columns.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/sessions_mgmt/lib/get_columns.tsx#:~:text=RedirectAppLinks), [get_columns.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/sessions_mgmt/lib/get_columns.tsx#:~:text=RedirectAppLinks), [connected_search_session_indicator.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/session_indicator/connected_search_session_indicator/connected_search_session_indicator.tsx#:~:text=RedirectAppLinks), [connected_search_session_indicator.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/session_indicator/connected_search_session_indicator/connected_search_session_indicator.tsx#:~:text=RedirectAppLinks), [connected_search_session_indicator.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/session_indicator/connected_search_session_indicator/connected_search_session_indicator.tsx#:~:text=RedirectAppLinks) | - | | | [session_service.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/server/search/session/session_service.ts#:~:text=authc) | - | @@ -656,7 +647,6 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [use_data_visualizer_grid_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts#:~:text=title), [use_data_visualizer_grid_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts#:~:text=title) | - | | | [use_data_visualizer_grid_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/hooks/use_data_visualizer_grid_data.ts#:~:text=title) | - | | | [results_links.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx#:~:text=indexPatternId), [actions_panel.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/components/actions_panel/actions_panel.tsx#:~:text=indexPatternId) | - | -| | [grid_embeddable.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/embeddables/grid_embeddable/grid_embeddable.tsx#:~:text=toMountPoint), [grid_embeddable.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/embeddables/grid_embeddable/grid_embeddable.tsx#:~:text=toMountPoint), [index_data_visualizer.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/index_data_visualizer.tsx#:~:text=toMountPoint), [index_data_visualizer.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/index_data_visualizer.tsx#:~:text=toMountPoint), [data_comparison_app_state.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/data_comparison/data_comparison_app_state.tsx#:~:text=toMountPoint), [data_comparison_app_state.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/data_comparison/data_comparison_app_state.tsx#:~:text=toMountPoint) | - | | | [file_data_visualizer.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/file_data_visualizer/file_data_visualizer.tsx#:~:text=KibanaThemeProvider), [file_data_visualizer.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/file_data_visualizer/file_data_visualizer.tsx#:~:text=KibanaThemeProvider), [file_data_visualizer.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/file_data_visualizer/file_data_visualizer.tsx#:~:text=KibanaThemeProvider), [grid_embeddable.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/embeddables/grid_embeddable/grid_embeddable.tsx#:~:text=KibanaThemeProvider), [grid_embeddable.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/embeddables/grid_embeddable/grid_embeddable.tsx#:~:text=KibanaThemeProvider), [grid_embeddable.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/embeddables/grid_embeddable/grid_embeddable.tsx#:~:text=KibanaThemeProvider), [index_data_visualizer.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/index_data_visualizer.tsx#:~:text=KibanaThemeProvider), [index_data_visualizer.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/index_data_visualizer.tsx#:~:text=KibanaThemeProvider), [index_data_visualizer.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/index_data_visualizer.tsx#:~:text=KibanaThemeProvider), [data_comparison_app_state.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/data_comparison/data_comparison_app_state.tsx#:~:text=KibanaThemeProvider)+ 2 more | - | | | [index_data_visualizer.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/index_data_visualizer.tsx#:~:text=savedObjects) | - | | | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/common/types/index.ts#:~:text=SimpleSavedObject), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/common/types/index.ts#:~:text=SimpleSavedObject) | - | @@ -897,8 +887,8 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [install.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts#:~:text=migrationVersion), [install.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion) | - | -| | [install.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts#:~:text=migrationVersion), [install.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [install.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts#:~:text=migrationVersion), [install.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion)+ 14 more | - | +| | [install.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts#:~:text=migrationVersion), [install.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts#:~:text=migrationVersion), [install.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [install.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.test.ts#:~:text=migrationVersion) | - | +| | [install.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts#:~:text=migrationVersion), [install.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts#:~:text=migrationVersion), [install.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [get.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/packages/get.test.ts#:~:text=migrationVersion), [install.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.test.ts#:~:text=migrationVersion), [install.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts#:~:text=migrationVersion), [install.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts#:~:text=migrationVersion)+ 22 more | - | | | [query_bar.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx#:~:text=title), [query_bar.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx#:~:text=title) | - | | | [query_bar.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx#:~:text=title), [query_bar.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx#:~:text=title) | - | | | [query_bar.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx#:~:text=title) | - | @@ -909,7 +899,6 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [agent_policy_config.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/common/services/agent_policy_config.test.ts#:~:text=mode), [agent_policy_config.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/common/services/agent_policy_config.test.ts#:~:text=mode), [agent_policy_watch.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/agent_policy_watch.test.ts#:~:text=mode), [agent_policy_watch.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/agent_policy_watch.test.ts#:~:text=mode), [agent_policy_watch.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/agent_policy_watch.test.ts#:~:text=mode) | 8.8.0 | | | [agent_policy_config.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/common/services/agent_policy_config.test.ts#:~:text=mode), [agent_policy_config.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/common/services/agent_policy_config.test.ts#:~:text=mode), [agent_policy_watch.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/agent_policy_watch.test.ts#:~:text=mode), [agent_policy_watch.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/agent_policy_watch.test.ts#:~:text=mode), [agent_policy_watch.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/agent_policy_watch.test.ts#:~:text=mode) | 8.8.0 | | | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/applications/integrations/index.tsx#:~:text=appBasePath) | 8.8.0 | -| | [install.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts#:~:text=migrationVersion) | - | @@ -1098,7 +1087,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [find_object_by_title.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_objects_utils/find_object_by_title.test.ts#:~:text=SimpleSavedObject), [find_object_by_title.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_objects_utils/find_object_by_title.test.ts#:~:text=SimpleSavedObject) | - | | | [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/types.ts#:~:text=ResolvedSimpleSavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/types.ts#:~:text=ResolvedSimpleSavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/types.ts#:~:text=ResolvedSimpleSavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/types.ts#:~:text=ResolvedSimpleSavedObject) | - | | | [find_object_by_title.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_objects_utils/find_object_by_title.test.ts#:~:text=simpleSavedObjectMock), [find_object_by_title.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_objects_utils/find_object_by_title.test.ts#:~:text=simpleSavedObjectMock) | - | -| | [saved_object_store.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_object_store.ts#:~:text=SavedObjectReference), [saved_object_store.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_object_store.ts#:~:text=SavedObjectReference), [saved_object_store.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_object_store.ts#:~:text=SavedObjectReference), [selectors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/state_management/selectors.ts#:~:text=SavedObjectReference), [selectors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/state_management/selectors.ts#:~:text=SavedObjectReference), [selectors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/state_management/selectors.ts#:~:text=SavedObjectReference), [state_helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts#:~:text=SavedObjectReference), [state_helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts#:~:text=SavedObjectReference), [state_helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts#:~:text=SavedObjectReference), [state_helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts#:~:text=SavedObjectReference)+ 48 more | - | +| | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/common/embeddable_factory/index.ts#:~:text=SavedObjectReference), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/common/embeddable_factory/index.ts#:~:text=SavedObjectReference), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/common/embeddable_factory/index.ts#:~:text=SavedObjectReference), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/common/embeddable_factory/index.ts#:~:text=SavedObjectReference), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/common/embeddable_factory/index.ts#:~:text=SavedObjectReference), [saved_object_store.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_object_store.ts#:~:text=SavedObjectReference), [saved_object_store.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_object_store.ts#:~:text=SavedObjectReference), [saved_object_store.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_object_store.ts#:~:text=SavedObjectReference), [selectors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/state_management/selectors.ts#:~:text=SavedObjectReference), [selectors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/state_management/selectors.ts#:~:text=SavedObjectReference)+ 48 more | - | | | [saved_objects.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/server/saved_objects.ts#:~:text=convertToMultiNamespaceTypeVersion) | - | @@ -1200,10 +1189,9 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | ---------------|-----------|-----------| | | [register_ml_alerts.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/alerting/register_ml_alerts.ts#:~:text=registerNavigation) | - | | | [register_jobs_monitoring_rule_type.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/lib/alerts/register_jobs_monitoring_rule_type.ts#:~:text=alertFactory), [register_jobs_monitoring_rule_type.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/lib/alerts/register_jobs_monitoring_rule_type.ts#:~:text=alertFactory), [register_anomaly_detection_alert_type.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/lib/alerts/register_anomaly_detection_alert_type.ts#:~:text=alertFactory), [register_anomaly_detection_alert_type.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/lib/alerts/register_anomaly_detection_alert_type.ts#:~:text=alertFactory) | - | -| | [index_patterns.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts#:~:text=title), [rollup.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts#:~:text=title), [alerting_service.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/lib/alerts/alerting_service.ts#:~:text=title), [data_recognizer.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts#:~:text=title), [configuration_step_details.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx#:~:text=title), [data_loader.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title)+ 40 more | - | -| | [index_patterns.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts#:~:text=title), [rollup.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts#:~:text=title), [alerting_service.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/lib/alerts/alerting_service.ts#:~:text=title), [data_recognizer.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts#:~:text=title), [configuration_step_details.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx#:~:text=title), [data_loader.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title)+ 40 more | - | -| | [index_patterns.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/models/data_frame_analytics/index_patterns.ts#:~:text=title), [rollup.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/models/job_service/new_job_caps/rollup.ts#:~:text=title), [alerting_service.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/lib/alerts/alerting_service.ts#:~:text=title), [data_recognizer.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/models/data_recognizer/data_recognizer.ts#:~:text=title), [configuration_step_details.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx#:~:text=title), [data_loader.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title)+ 15 more | - | -| | [clone_action_name.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx#:~:text=toMountPoint), [clone_action_name.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx#:~:text=toMountPoint), [force_stop_dialog.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/model_management/force_stop_dialog.tsx#:~:text=toMountPoint), [force_stop_dialog.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/model_management/force_stop_dialog.tsx#:~:text=toMountPoint), [deployment_setup.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/model_management/deployment_setup.tsx#:~:text=toMountPoint), [deployment_setup.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/model_management/deployment_setup.tsx#:~:text=toMountPoint), [header_menu_portal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/components/header_menu_portal/header_menu_portal.tsx#:~:text=toMountPoint), [header_menu_portal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/components/header_menu_portal/header_menu_portal.tsx#:~:text=toMountPoint), [resolve_job_selection.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/embeddables/common/resolve_job_selection.tsx#:~:text=toMountPoint), [resolve_job_selection.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/embeddables/common/resolve_job_selection.tsx#:~:text=toMountPoint)+ 10 more | - | +| | [configuration_step_details.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx#:~:text=title), [data_loader.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [configuration_step_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx#:~:text=title), [configuration_step_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx#:~:text=title), [configuration_step_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx#:~:text=title), [page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx#:~:text=title)+ 38 more | - | +| | [configuration_step_details.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx#:~:text=title), [data_loader.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [configuration_step_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx#:~:text=title), [configuration_step_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx#:~:text=title), [configuration_step_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx#:~:text=title), [page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx#:~:text=title)+ 38 more | - | +| | [configuration_step_details.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_details.tsx#:~:text=title), [data_loader.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/datavisualizer/index_based/data_loader/data_loader.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [use_index_data.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/hooks/use_index_data.ts#:~:text=title), [configuration_step_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx#:~:text=title), [configuration_step_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx#:~:text=title), [configuration_step_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/components/configuration_step/configuration_step_form.tsx#:~:text=title), [page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx#:~:text=title)+ 14 more | - | | | [jobs_list_page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx#:~:text=RedirectAppLinks), [jobs_list_page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx#:~:text=RedirectAppLinks), [jobs_list_page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx#:~:text=RedirectAppLinks) | - | | | [anomaly_charts_embeddable.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_embeddable.tsx#:~:text=KibanaThemeProvider), [anomaly_charts_embeddable.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_embeddable.tsx#:~:text=KibanaThemeProvider), [anomaly_charts_embeddable.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_embeddable.tsx#:~:text=KibanaThemeProvider), [anomaly_swimlane_embeddable.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/embeddables/anomaly_swimlane/anomaly_swimlane_embeddable.tsx#:~:text=KibanaThemeProvider), [anomaly_swimlane_embeddable.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/embeddables/anomaly_swimlane/anomaly_swimlane_embeddable.tsx#:~:text=KibanaThemeProvider), [anomaly_swimlane_embeddable.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/embeddables/anomaly_swimlane/anomaly_swimlane_embeddable.tsx#:~:text=KibanaThemeProvider), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/app.tsx#:~:text=KibanaThemeProvider), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/app.tsx#:~:text=KibanaThemeProvider), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/app.tsx#:~:text=KibanaThemeProvider), [jobs_list_page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx#:~:text=KibanaThemeProvider)+ 2 more | - | | | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/plugin.ts#:~:text=license%24) | 8.8.0 | @@ -1254,8 +1242,6 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/application/index.tsx#:~:text=RedirectAppLinks), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/application/index.tsx#:~:text=RedirectAppLinks), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/application/index.tsx#:~:text=RedirectAppLinks) | - | | | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/application/index.tsx#:~:text=KibanaThemeProvider), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/application/index.tsx#:~:text=KibanaThemeProvider), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/application/index.tsx#:~:text=KibanaThemeProvider) | - | | | [render_cell_value.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/alerts_table/render_cell_value.tsx#:~:text=DeprecatedCellValueElementProps), [render_cell_value.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/alerts_table/render_cell_value.tsx#:~:text=DeprecatedCellValueElementProps) | - | -| | [use_fetch_slo_definitions.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/hooks/slo/use_fetch_slo_definitions.ts#:~:text=savedObjects) | - | -| | [use_fetch_slo_definitions.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/hooks/slo/use_fetch_slo_definitions.ts#:~:text=find) | - | @@ -1410,8 +1396,8 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [open_modal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/components/edition_modal/open_modal.tsx#:~:text=toMountPoint), [open_modal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/components/edition_modal/open_modal.tsx#:~:text=toMountPoint), [open_modal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/components/edition_modal/open_modal.tsx#:~:text=toMountPoint), [open_assign_flyout.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/components/assign_flyout/open_assign_flyout.tsx#:~:text=toMountPoint), [open_assign_flyout.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/components/assign_flyout/open_assign_flyout.tsx#:~:text=toMountPoint) | - | | | [mount_section.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/management/mount_section.tsx#:~:text=KibanaThemeProvider), [mount_section.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/management/mount_section.tsx#:~:text=KibanaThemeProvider), [mount_section.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/management/mount_section.tsx#:~:text=KibanaThemeProvider) | - | | | [request_handler_context.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/server/request_handler_context.ts#:~:text=authz) | - | -| | [get_table_column_definition.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/ui_api/get_table_column_definition.tsx#:~:text=SavedObject), [get_table_column_definition.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/ui_api/get_table_column_definition.tsx#:~:text=SavedObject), [get_table_column_definition.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/ui_api/get_table_column_definition.tsx#:~:text=SavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/types.ts#:~:text=SavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/types.ts#:~:text=SavedObject), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObject), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObject), [utils.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.test.ts#:~:text=SavedObject), [utils.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.test.ts#:~:text=SavedObject), [utils.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.test.ts#:~:text=SavedObject)+ 3 more | - | -| | [get_table_column_definition.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/ui_api/get_table_column_definition.tsx#:~:text=SavedObjectReference), [get_table_column_definition.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/ui_api/get_table_column_definition.tsx#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObjectReference), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObjectReference)+ 11 more | - | +| | [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/types.ts#:~:text=SavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/types.ts#:~:text=SavedObject), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObject), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObject), [utils.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.test.ts#:~:text=SavedObject), [utils.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.test.ts#:~:text=SavedObject), [utils.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.test.ts#:~:text=SavedObject), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts#:~:text=SavedObject), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts#:~:text=SavedObject), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts#:~:text=SavedObject)+ 3 more | - | +| | [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [references.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/common/references.ts#:~:text=SavedObjectReference), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObjectReference), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObjectReference), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObjectReference), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/public/utils.ts#:~:text=SavedObjectReference)+ 11 more | - | | | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/server/plugin.ts#:~:text=getAllIndices) | - | | | [tag.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/server/saved_objects/tag.ts#:~:text=convertToMultiNamespaceTypeVersion) | - | @@ -1423,7 +1409,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | ---------------|-----------|-----------| | | [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/types.ts#:~:text=SavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/types.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject) | 8.8.0 | | | [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject) | - | -| | [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [inject_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/inject_tag_references.test.ts#:~:text=SavedObjectReference), [inject_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/inject_tag_references.test.ts#:~:text=SavedObjectReference), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObjectReference), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObjectReference)+ 2 more | - | +| | [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObjectReference), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObjectReference), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObjectReference), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference), [extract_tag_references.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts#:~:text=SavedObjectReference)+ 2 more | - | @@ -1484,12 +1470,12 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | | [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion)+ 12 more | - | | | [dependencies_start_mock.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/mock/endpoint/dependencies_start_mock.ts#:~:text=indexPatterns) | - | | | [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=migrationVersion)+ 78 more | - | -| | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [use_rule_from_timeline.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/rules/use_rule_from_timeline.tsx#:~:text=title), [get_es_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/exceptions/get_es_query_filter.ts#:~:text=title), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/utils.ts#:~:text=title), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/filter_group/index.tsx#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/components/detection_page_filters/index.tsx#:~:text=title), [risk_score_preview_section.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/entity_analytics/components/risk_score_preview_section.tsx#:~:text=title), [get_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts#:~:text=title)+ 26 more | - | +| | [get_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [use_rule_from_timeline.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/rules/use_rule_from_timeline.tsx#:~:text=title), [get_es_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/exceptions/get_es_query_filter.ts#:~:text=title), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/utils.ts#:~:text=title), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/filter_group/index.tsx#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/components/detection_page_filters/index.tsx#:~:text=title), [risk_score_preview_section.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/entity_analytics/components/risk_score_preview_section.tsx#:~:text=title)+ 28 more | - | | | [wrap_search_source_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_preview/api/preview_rules/wrap_search_source_client.ts#:~:text=create) | - | | | [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_preview/api/preview_rules/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_preview/api/preview_rules/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_preview/api/preview_rules/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_preview/api/preview_rules/wrap_search_source_client.test.ts#:~:text=fetch) | - | | | [api.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/hooks/eql/api.ts#:~:text=options) | - | -| | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [use_rule_from_timeline.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/rules/use_rule_from_timeline.tsx#:~:text=title), [get_es_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/exceptions/get_es_query_filter.ts#:~:text=title), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/utils.ts#:~:text=title), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/filter_group/index.tsx#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/components/detection_page_filters/index.tsx#:~:text=title), [risk_score_preview_section.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/entity_analytics/components/risk_score_preview_section.tsx#:~:text=title), [get_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts#:~:text=title)+ 26 more | - | -| | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [use_rule_from_timeline.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/rules/use_rule_from_timeline.tsx#:~:text=title), [get_es_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/exceptions/get_es_query_filter.ts#:~:text=title), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/utils.ts#:~:text=title), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/filter_group/index.tsx#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/components/detection_page_filters/index.tsx#:~:text=title), [risk_score_preview_section.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/entity_analytics/components/risk_score_preview_section.tsx#:~:text=title), [get_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts#:~:text=title)+ 8 more | - | +| | [get_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [use_rule_from_timeline.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/rules/use_rule_from_timeline.tsx#:~:text=title), [get_es_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/exceptions/get_es_query_filter.ts#:~:text=title), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/utils.ts#:~:text=title), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/filter_group/index.tsx#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/components/detection_page_filters/index.tsx#:~:text=title), [risk_score_preview_section.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/entity_analytics/components/risk_score_preview_section.tsx#:~:text=title)+ 28 more | - | +| | [get_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/utils/get_query_filter.ts#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=title), [use_rule_from_timeline.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/rules/use_rule_from_timeline.tsx#:~:text=title), [get_es_query_filter.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/containers/detection_engine/exceptions/get_es_query_filter.ts#:~:text=title), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/utils.ts#:~:text=title), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/filter_group/index.tsx#:~:text=title), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/detections/components/detection_page_filters/index.tsx#:~:text=title), [risk_score_preview_section.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/entity_analytics/components/risk_score_preview_section.tsx#:~:text=title)+ 9 more | - | | | [use_update_data_view.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/sourcerer/use_update_data_view.tsx#:~:text=toMountPoint), [use_update_data_view.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/sourcerer/use_update_data_view.tsx#:~:text=toMountPoint), [use_update_data_view.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/sourcerer/use_update_data_view.tsx#:~:text=toMountPoint), [ingest_pipelines.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/explore/containers/risk_score/onboarding/api/ingest_pipelines.ts#:~:text=toMountPoint), [ingest_pipelines.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/explore/containers/risk_score/onboarding/api/ingest_pipelines.ts#:~:text=toMountPoint), [ingest_pipelines.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/explore/containers/risk_score/onboarding/api/ingest_pipelines.ts#:~:text=toMountPoint), [stored_scripts.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/explore/containers/risk_score/onboarding/api/stored_scripts.ts#:~:text=toMountPoint), [stored_scripts.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/explore/containers/risk_score/onboarding/api/stored_scripts.ts#:~:text=toMountPoint), [stored_scripts.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/explore/containers/risk_score/onboarding/api/stored_scripts.ts#:~:text=toMountPoint), [saved_objects.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/explore/containers/risk_score/onboarding/api/saved_objects.ts#:~:text=toMountPoint)+ 5 more | - | | | [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/app/app.tsx#:~:text=KibanaThemeProvider), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/app/app.tsx#:~:text=KibanaThemeProvider), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/app/app.tsx#:~:text=KibanaThemeProvider) | - | | | [policy_config.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [create_default_policy.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/handlers/create_default_policy.test.ts#:~:text=mode), [create_default_policy.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/handlers/create_default_policy.test.ts#:~:text=mode), [license_watch.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/policy/license_watch.test.ts#:~:text=mode), [license_watch.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/policy/license_watch.test.ts#:~:text=mode), [license_watch.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/policy/license_watch.test.ts#:~:text=mode)+ 7 more | 8.8.0 | @@ -1500,23 +1486,23 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/events_viewer/index.tsx#:~:text=DeprecatedRowRenderer), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/events_viewer/index.tsx#:~:text=DeprecatedRowRenderer) | - | | | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#:~:text=BeatFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=BeatFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=BeatFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=BeatFields) | - | | | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#:~:text=BrowserField), [helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/drag_and_drop/helpers.ts#:~:text=BrowserField), [helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/drag_and_drop/helpers.ts#:~:text=BrowserField), [helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/drag_and_drop/helpers.ts#:~:text=BrowserField), [helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/drag_and_drop/helpers.ts#:~:text=BrowserField), [columns.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/event_details/columns.tsx#:~:text=BrowserField), [columns.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/event_details/columns.tsx#:~:text=BrowserField), [enrichment_summary.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/event_details/cti_details/enrichment_summary.tsx#:~:text=BrowserField), [enrichment_summary.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/event_details/cti_details/enrichment_summary.tsx#:~:text=BrowserField), [use_data_view.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/use_data_view.tsx#:~:text=BrowserField)+ 29 more | - | -| | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/timeline/cells/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/timeline/cells/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/header_actions/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/header_actions/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/header_actions/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields)+ 104 more | - | +| | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/timeline/cells/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/timeline/cells/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/header_actions/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/header_actions/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/header_actions/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields)+ 102 more | - | | | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#:~:text=IndexFieldsStrategyRequest), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=IndexFieldsStrategyRequest), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=IndexFieldsStrategyRequest), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=IndexFieldsStrategyRequest), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=IndexFieldsStrategyRequest), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=IndexFieldsStrategyRequest) | - | | | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#:~:text=IndexFieldsStrategyResponse), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=IndexFieldsStrategyResponse), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=IndexFieldsStrategyResponse), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=IndexFieldsStrategyResponse), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=IndexFieldsStrategyResponse), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=IndexFieldsStrategyResponse) | - | | | [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/hooks/types.ts#:~:text=SimpleSavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/hooks/types.ts#:~:text=SimpleSavedObject) | - | | | [legacy_types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts#:~:text=SavedObjectAttributes), [legacy_types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts#:~:text=SavedObjectAttributes), [legacy_migrations.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts#:~:text=SavedObjectAttributes), [legacy_migrations.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts#:~:text=SavedObjectAttributes), [legacy_types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts#:~:text=SavedObjectAttributes), [legacy_types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts#:~:text=SavedObjectAttributes), [legacy_migrations.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts#:~:text=SavedObjectAttributes), [legacy_migrations.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts#:~:text=SavedObjectAttributes) | - | | | [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=SavedObject), [host_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts#:~:text=SavedObject), [user_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts#:~:text=SavedObject), [user_risk_score_dashboards.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts#:~:text=SavedObject) | - | | | [timelines.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/timeline/saved_object_mappings/timelines.ts#:~:text=convertToMultiNamespaceTypeVersion), [notes.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/timeline/saved_object_mappings/notes.ts#:~:text=convertToMultiNamespaceTypeVersion), [pinned_events.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/timeline/saved_object_mappings/pinned_events.ts#:~:text=convertToMultiNamespaceTypeVersion), [legacy_saved_object_mappings.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_saved_object_mappings.ts#:~:text=convertToMultiNamespaceTypeVersion) | - | -| | [policy_hooks.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID), [policy_hooks.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/trusted_apps/constants.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/trusted_apps/constants.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID), [api_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/trusted_apps/service/api_client.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID), [api_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/trusted_apps/service/api_client.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID), [api_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/trusted_apps/service/api_client.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID), [lists.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID), [manifest_manager.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID), [manifest_manager.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID)+ 35 more | - | +| | [lists.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID), [lists.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID), [manifest_manager.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID), [manifest_manager.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID), [trusted_app_validator.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/trusted_app_validator.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID), [trusted_app_validator.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/trusted_app_validator.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID), [receiver.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/telemetry/receiver.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID), [receiver.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/telemetry/receiver.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID), [policy_hooks.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID), [policy_hooks.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_ID)+ 36 more | - | | | [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/trusted_apps/constants.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_NAME), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/trusted_apps/constants.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_NAME), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/trusted_apps/index.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_NAME), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/trusted_apps/index.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_NAME) | - | | | [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/trusted_apps/constants.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_DESCRIPTION), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/trusted_apps/constants.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_DESCRIPTION), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/trusted_apps/index.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_DESCRIPTION), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/trusted_apps/index.ts#:~:text=ENDPOINT_TRUSTED_APPS_LIST_DESCRIPTION) | - | -| | [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID), [form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/event_filters/view/components/form.tsx#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID), [form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/event_filters/view/components/form.tsx#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/event_filters/view/utils.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID), [utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/event_filters/view/utils.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID), [service_actions.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/event_filters/service/service_actions.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID), [service_actions.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/event_filters/service/service_actions.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID), [service_actions.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/event_filters/service/service_actions.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID)+ 33 more | - | -| | [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_NAME), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_NAME), [create_event_filters.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_NAME), [create_event_filters.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_NAME), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/event_filters/index.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_NAME), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/event_filters/index.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_NAME) | - | -| | [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_DESCRIPTION), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_DESCRIPTION), [create_event_filters.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_DESCRIPTION), [create_event_filters.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_DESCRIPTION), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/event_filters/index.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_DESCRIPTION), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/event_filters/index.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_DESCRIPTION) | - | -| | [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/constants.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/constants.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID), [host_isolation_exceptions_api_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/host_isolation_exceptions_api_client.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID), [host_isolation_exceptions_api_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/host_isolation_exceptions_api_client.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID), [host_isolation_exceptions_api_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/host_isolation_exceptions_api_client.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID), [lists.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID), [manifest_manager.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID), [manifest_manager.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID), [manifest_manager.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID), [manifest_manager.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID)+ 17 more | - | +| | [lists.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID), [lists.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID), [manifest_manager.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID), [manifest_manager.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID), [create_event_filters.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID), [create_event_filters.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID), [create_event_filters.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID), [event_filter_validator.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/event_filter_validator.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID), [event_filter_validator.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/event_filter_validator.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID), [security_lists.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/telemetry/tasks/security_lists.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_ID)+ 34 more | - | +| | [create_event_filters.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_NAME), [create_event_filters.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_NAME), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_NAME), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_NAME), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/event_filters/index.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_NAME), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/event_filters/index.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_NAME) | - | +| | [create_event_filters.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_DESCRIPTION), [create_event_filters.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_DESCRIPTION), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_DESCRIPTION), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_DESCRIPTION), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/event_filters/index.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_DESCRIPTION), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/event_filters/index.ts#:~:text=ENDPOINT_EVENT_FILTERS_LIST_DESCRIPTION) | - | +| | [lists.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID), [lists.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID), [manifest_manager.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID), [manifest_manager.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID), [manifest_manager.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID), [manifest_manager.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID), [host_isolation_exceptions_validator.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/host_isolation_exceptions_validator.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID), [host_isolation_exceptions_validator.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/host_isolation_exceptions_validator.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/constants.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/constants.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID)+ 18 more | - | | | [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/constants.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_NAME), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/constants.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_NAME), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/host_isolation_exceptions/index.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_NAME), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/host_isolation_exceptions/index.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_NAME) | - | | | [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/constants.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_DESCRIPTION), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/constants.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_DESCRIPTION), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/host_isolation_exceptions/index.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_DESCRIPTION), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/host_isolation_exceptions/index.ts#:~:text=ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_DESCRIPTION) | - | -| | [policy_hooks.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [policy_hooks.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/blocklist/constants.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/blocklist/constants.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [blocklists_api_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/blocklist/services/blocklists_api_client.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [blocklists_api_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/blocklist/services/blocklists_api_client.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [blocklists_api_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/blocklist/services/blocklists_api_client.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [lists.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [manifest_manager.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [manifest_manager.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID)+ 15 more | - | +| | [lists.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [lists.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [manifest_manager.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [manifest_manager.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [blocklist_validator.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/blocklist_validator.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [blocklist_validator.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/blocklist_validator.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [policy_hooks.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [policy_hooks.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/blocklist/constants.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/blocklist/constants.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_ID)+ 16 more | - | | | [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/blocklist/constants.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_NAME), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/blocklist/constants.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_NAME), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/blocklists/index.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_NAME), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/blocklists/index.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_NAME) | - | | | [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/blocklist/constants.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_DESCRIPTION), [constants.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/blocklist/constants.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_DESCRIPTION), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/blocklists/index.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_DESCRIPTION), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/scripts/endpoint/blocklists/index.ts#:~:text=ENDPOINT_BLOCKLISTS_LIST_DESCRIPTION) | - | @@ -1530,14 +1516,6 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ -## serverlessSearch - -| Deprecated API | Reference location(s) | Remove By | -| ---------------|-----------|-----------| -| | [elasticsearch.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/serverless_search/public/application/elasticsearch.tsx#:~:text=KibanaThemeProvider), [elasticsearch.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/serverless_search/public/application/elasticsearch.tsx#:~:text=KibanaThemeProvider), [elasticsearch.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/serverless_search/public/application/elasticsearch.tsx#:~:text=KibanaThemeProvider), [indexing_api.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/serverless_search/public/application/indexing_api.tsx#:~:text=KibanaThemeProvider), [indexing_api.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/serverless_search/public/application/indexing_api.tsx#:~:text=KibanaThemeProvider), [indexing_api.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/serverless_search/public/application/indexing_api.tsx#:~:text=KibanaThemeProvider) | - | - - - ## share | Deprecated API | Reference location(s) | Remove By | @@ -1640,7 +1618,7 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | | [filter_term_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_define/common/filter_agg/components/filter_term_form.tsx#:~:text=title), [common.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/hooks/use_search_items/common.ts#:~:text=title), [es_index_service.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/services/es_index_service.ts#:~:text=title), [transforms.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/server/routes/api/transforms.ts#:~:text=title), [common.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_define/common/common.test.ts#:~:text=title), [filter_term_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_define/common/filter_agg/components/filter_term_form.tsx#:~:text=title), [common.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/hooks/use_search_items/common.ts#:~:text=title), [es_index_service.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/services/es_index_service.ts#:~:text=title), [transforms.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/server/routes/api/transforms.ts#:~:text=title), [common.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_define/common/common.test.ts#:~:text=title) | - | | | [filter_term_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_define/common/filter_agg/components/filter_term_form.tsx#:~:text=title), [common.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/hooks/use_search_items/common.ts#:~:text=title), [es_index_service.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/services/es_index_service.ts#:~:text=title), [transforms.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/server/routes/api/transforms.ts#:~:text=title), [common.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_define/common/common.test.ts#:~:text=title), [filter_term_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_define/common/filter_agg/components/filter_term_form.tsx#:~:text=title), [common.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/hooks/use_search_items/common.ts#:~:text=title), [es_index_service.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/services/es_index_service.ts#:~:text=title), [transforms.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/server/routes/api/transforms.ts#:~:text=title), [common.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_define/common/common.test.ts#:~:text=title) | - | | | [filter_term_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_define/common/filter_agg/components/filter_term_form.tsx#:~:text=title), [common.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/hooks/use_search_items/common.ts#:~:text=title), [es_index_service.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/services/es_index_service.ts#:~:text=title), [transforms.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/server/routes/api/transforms.ts#:~:text=title), [common.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_define/common/common.test.ts#:~:text=title) | - | -| | [toast_notification_text.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/components/toast_notification_text.tsx#:~:text=toMountPoint), [toast_notification_text.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/components/toast_notification_text.tsx#:~:text=toMountPoint), [step_create_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_create/step_create_form.tsx#:~:text=toMountPoint), [step_create_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_create/step_create_form.tsx#:~:text=toMountPoint), [step_create_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_create/step_create_form.tsx#:~:text=toMountPoint), [step_create_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_create/step_create_form.tsx#:~:text=toMountPoint), [step_create_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_create/step_create_form.tsx#:~:text=toMountPoint), [step_details_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_details/step_details_form.tsx#:~:text=toMountPoint), [step_details_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_details/step_details_form.tsx#:~:text=toMountPoint), [step_details_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_details/step_details_form.tsx#:~:text=toMountPoint)+ 21 more | - | +| | [toast_notification_text.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/components/toast_notification_text.tsx#:~:text=toMountPoint), [toast_notification_text.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/components/toast_notification_text.tsx#:~:text=toMountPoint), [step_create_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_create/step_create_form.tsx#:~:text=toMountPoint), [step_create_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_create/step_create_form.tsx#:~:text=toMountPoint), [step_create_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_create/step_create_form.tsx#:~:text=toMountPoint), [step_create_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_create/step_create_form.tsx#:~:text=toMountPoint), [step_create_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_create/step_create_form.tsx#:~:text=toMountPoint), [step_details_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_details/step_details_form.tsx#:~:text=toMountPoint), [step_details_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_details/step_details_form.tsx#:~:text=toMountPoint), [step_details_form.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/sections/create_transform/components/step_details/step_details_form.tsx#:~:text=toMountPoint)+ 19 more | - | | | [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/app.tsx#:~:text=KibanaThemeProvider), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/app.tsx#:~:text=KibanaThemeProvider), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/app.tsx#:~:text=KibanaThemeProvider) | - | | | [license.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/server/services/license.ts#:~:text=license%24) | 8.8.0 | | | [mount_management_section.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/public/app/mount_management_section.ts#:~:text=savedObjects) | - | @@ -1830,7 +1808,7 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | | [services.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/services.ts#:~:text=SavedObjectsStart), [services.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/services.ts#:~:text=SavedObjectsStart) | - | | | [saved_visualization_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts#:~:text=SavedObjectAttribute), [saved_visualization_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts#:~:text=SavedObjectAttribute) | - | | | [saved_visualize_utils.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualize_utils.ts#:~:text=SavedObjectAttributes), [saved_visualize_utils.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualize_utils.ts#:~:text=SavedObjectAttributes), [visualize_embeddable.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx#:~:text=SavedObjectAttributes), [visualize_embeddable.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx#:~:text=SavedObjectAttributes), [visualize_embeddable_factory.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/embeddable/visualize_embeddable_factory.tsx#:~:text=SavedObjectAttributes), [visualize_embeddable_factory.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/embeddable/visualize_embeddable_factory.tsx#:~:text=SavedObjectAttributes) | - | -| | [saved_visualization_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts#:~:text=SavedObjectReference), [saved_visualization_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts#:~:text=SavedObjectReference), [saved_visualization_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts#:~:text=SavedObjectReference), [saved_visualize_utils.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualize_utils.ts#:~:text=SavedObjectReference), [saved_visualize_utils.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualize_utils.ts#:~:text=SavedObjectReference), [saved_visualize_utils.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualize_utils.ts#:~:text=SavedObjectReference), [saved_visualize_utils.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualize_utils.ts#:~:text=SavedObjectReference), [saved_visualize_utils.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualize_utils.ts#:~:text=SavedObjectReference), [saved_visualize_utils.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualize_utils.ts#:~:text=SavedObjectReference), [visualize_embeddable_factory.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/embeddable/visualize_embeddable_factory.tsx#:~:text=SavedObjectReference)+ 10 more | - | +| | [controls_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/controls_references.ts#:~:text=SavedObjectReference), [controls_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/controls_references.ts#:~:text=SavedObjectReference), [controls_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/controls_references.ts#:~:text=SavedObjectReference), [timeseries_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/timeseries_references.ts#:~:text=SavedObjectReference), [timeseries_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/timeseries_references.ts#:~:text=SavedObjectReference), [timeseries_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/timeseries_references.ts#:~:text=SavedObjectReference), [saved_visualization_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts#:~:text=SavedObjectReference), [saved_visualization_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts#:~:text=SavedObjectReference), [saved_visualization_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts#:~:text=SavedObjectReference), [saved_visualize_utils.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/utils/saved_visualize_utils.ts#:~:text=SavedObjectReference)+ 10 more | - | | | [visualization.ts](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/server/saved_objects/visualization.ts#:~:text=convertToMultiNamespaceTypeVersion) | - | diff --git a/api_docs/deprecations_by_team.mdx b/api_docs/deprecations_by_team.mdx index 3cbc2fcddf409..d206e9441bfb3 100644 --- a/api_docs/deprecations_by_team.mdx +++ b/api_docs/deprecations_by_team.mdx @@ -7,7 +7,7 @@ id: kibDevDocsDeprecationsDueByTeam slug: /kibana-dev-docs/api-meta/deprecations-due-by-team title: Deprecated APIs due to be removed, by team description: Lists the teams that are referencing deprecated APIs with a remove by date. -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana'] --- diff --git a/api_docs/dev_tools.mdx b/api_docs/dev_tools.mdx index 978512db42e56..0deed4c53d6b8 100644 --- a/api_docs/dev_tools.mdx +++ b/api_docs/dev_tools.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/devTools title: "devTools" image: https://source.unsplash.com/400x175/?github description: API docs for the devTools plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'devTools'] --- import devToolsObj from './dev_tools.devdocs.json'; diff --git a/api_docs/discover.devdocs.json b/api_docs/discover.devdocs.json index 9179225514ff6..fbe23a8c3fc4a 100644 --- a/api_docs/discover.devdocs.json +++ b/api_docs/discover.devdocs.json @@ -1293,14 +1293,6 @@ "deprecated": true, "trackAdoption": false, "references": [ - { - "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/hooks/use_discover_link.tsx" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/multi_page_layout/hooks/use_get_logs_discover_link.tsx" - }, { "plugin": "dataVisualizer", "path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx" @@ -1309,6 +1301,14 @@ "plugin": "dataVisualizer", "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/components/actions_panel/actions_panel.tsx" }, + { + "plugin": "exploratoryView", + "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/hooks/use_discover_link.tsx" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/multi_page_layout/hooks/use_get_logs_discover_link.tsx" + }, { "plugin": "cloudSecurityPosture", "path": "x-pack/plugins/cloud_security_posture/public/pages/configurations/findings_flyout/overview_tab.tsx" diff --git a/api_docs/discover.mdx b/api_docs/discover.mdx index 8084995cc93ad..710b44411e6b3 100644 --- a/api_docs/discover.mdx +++ b/api_docs/discover.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/discover title: "discover" image: https://source.unsplash.com/400x175/?github description: API docs for the discover plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'discover'] --- import discoverObj from './discover.devdocs.json'; diff --git a/api_docs/discover_enhanced.mdx b/api_docs/discover_enhanced.mdx index 6e366078040fd..635ed241be90c 100644 --- a/api_docs/discover_enhanced.mdx +++ b/api_docs/discover_enhanced.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/discoverEnhanced title: "discoverEnhanced" image: https://source.unsplash.com/400x175/?github description: API docs for the discoverEnhanced plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'discoverEnhanced'] --- import discoverEnhancedObj from './discover_enhanced.devdocs.json'; diff --git a/api_docs/ecs_data_quality_dashboard.mdx b/api_docs/ecs_data_quality_dashboard.mdx index 19f103eb80e2d..cf53c8b6708d0 100644 --- a/api_docs/ecs_data_quality_dashboard.mdx +++ b/api_docs/ecs_data_quality_dashboard.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/ecsDataQualityDashboard title: "ecsDataQualityDashboard" image: https://source.unsplash.com/400x175/?github description: API docs for the ecsDataQualityDashboard plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ecsDataQualityDashboard'] --- import ecsDataQualityDashboardObj from './ecs_data_quality_dashboard.devdocs.json'; diff --git a/api_docs/embeddable.devdocs.json b/api_docs/embeddable.devdocs.json index 91ca6c26e505e..59893ec0f6f38 100644 --- a/api_docs/embeddable.devdocs.json +++ b/api_docs/embeddable.devdocs.json @@ -1546,7 +1546,7 @@ "section": "def-common.PanelState", "text": "PanelState" }, - "<{ id: string; }>) => Promise) => Promise" + "<{ id: string; version?: string | undefined; }>" ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, @@ -2169,7 +2169,7 @@ "label": "getDisplayName", "description": [], "signature": [ - "({ embeddable }: ActionContext) => any" + "({ embeddable }: ActionContext) => string" ], "path": "src/plugins/embeddable/public/embeddable_panel/panel_actions/edit_panel_action/edit_panel_action.ts", "deprecated": false, @@ -4262,7 +4262,7 @@ "label": "getDisplayName", "description": [], "signature": [ - "() => any" + "() => string" ], "path": "src/plugins/embeddable/public/embeddable_panel/panel_actions/inspect_panel_action/inspect_panel_action.ts", "deprecated": false, @@ -4496,7 +4496,7 @@ "label": "getDisplayName", "description": [], "signature": [ - "() => any" + "() => string" ], "path": "src/plugins/embeddable/public/embeddable_panel/panel_actions/remove_panel_action/remove_panel_action.ts", "deprecated": false, @@ -5874,6 +5874,133 @@ "returnComment": [], "initialIsOpen": false }, + { + "parentPluginId": "embeddable", + "id": "def-public.runEmbeddableFactoryMigrations", + "type": "Function", + "tags": [], + "label": "runEmbeddableFactoryMigrations", + "description": [ + "\nA helper function that migrates an Embeddable Input to its latest version. Note that this function\nonly runs the embeddable factory's migrations." + ], + "signature": [ + "(initialInput: { version?: string | undefined; }, factory: { migrations?: ", + { + "pluginId": "kibanaUtils", + "scope": "common", + "docId": "kibKibanaUtilsPluginApi", + "section": "def-common.MigrateFunctionsObject", + "text": "MigrateFunctionsObject" + }, + " | ", + { + "pluginId": "kibanaUtils", + "scope": "common", + "docId": "kibKibanaUtilsPluginApi", + "section": "def-common.GetMigrationFunctionObjectFn", + "text": "GetMigrationFunctionObjectFn" + }, + " | undefined; latestVersion?: string | undefined; }) => { input: ToType; migrationRun: boolean; }" + ], + "path": "src/plugins/embeddable/public/lib/factory_migrations/run_factory_migrations.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "embeddable", + "id": "def-public.runEmbeddableFactoryMigrations.$1", + "type": "Object", + "tags": [], + "label": "initialInput", + "description": [], + "path": "src/plugins/embeddable/public/lib/factory_migrations/run_factory_migrations.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "embeddable", + "id": "def-public.runEmbeddableFactoryMigrations.$1.version", + "type": "string", + "tags": [], + "label": "version", + "description": [], + "signature": [ + "string | undefined" + ], + "path": "src/plugins/embeddable/public/lib/factory_migrations/run_factory_migrations.ts", + "deprecated": false, + "trackAdoption": false + } + ] + }, + { + "parentPluginId": "embeddable", + "id": "def-public.runEmbeddableFactoryMigrations.$2", + "type": "Object", + "tags": [], + "label": "factory", + "description": [], + "path": "src/plugins/embeddable/public/lib/factory_migrations/run_factory_migrations.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "embeddable", + "id": "def-public.runEmbeddableFactoryMigrations.$2.migrations", + "type": "CompoundType", + "tags": [], + "label": "migrations", + "description": [], + "signature": [ + { + "pluginId": "kibanaUtils", + "scope": "common", + "docId": "kibKibanaUtilsPluginApi", + "section": "def-common.MigrateFunctionsObject", + "text": "MigrateFunctionsObject" + }, + " | ", + { + "pluginId": "kibanaUtils", + "scope": "common", + "docId": "kibKibanaUtilsPluginApi", + "section": "def-common.GetMigrationFunctionObjectFn", + "text": "GetMigrationFunctionObjectFn" + }, + " | undefined" + ], + "path": "src/plugins/embeddable/public/lib/factory_migrations/run_factory_migrations.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "embeddable", + "id": "def-public.runEmbeddableFactoryMigrations.$2.latestVersion", + "type": "string", + "tags": [], + "label": "latestVersion", + "description": [], + "signature": [ + "string | undefined" + ], + "path": "src/plugins/embeddable/public/lib/factory_migrations/run_factory_migrations.ts", + "deprecated": false, + "trackAdoption": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, { "parentPluginId": "embeddable", "id": "def-public.shouldFetch$", @@ -6562,6 +6689,22 @@ "deprecated": false, "trackAdoption": false, "children": [ + { + "parentPluginId": "embeddable", + "id": "def-public.EmbeddableFactory.latestVersion", + "type": "string", + "tags": [], + "label": "latestVersion", + "description": [ + "\nThe version of this Embeddable factory. This will be used in the client side migration system\nto ensure that input from any source is compatible with the latest version of this embeddable.\nIf the latest version is not defined, all clientside migrations will be skipped. If migrations\nare added to this factory but a latestVersion is not set, an error will be thrown on server start" + ], + "signature": [ + "string | undefined" + ], + "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", + "deprecated": false, + "trackAdoption": false + }, { "parentPluginId": "embeddable", "id": "def-public.EmbeddableFactory.type", @@ -6916,7 +7059,7 @@ "tags": [], "label": "create", "description": [ - "\nResolves to undefined if a new Embeddable cannot be directly created and the user will instead be redirected\nelsewhere.\n\nThis will likely change in future iterations when we improve in place editing capabilities." + "\nCreates an Embeddable instance, running the inital input through all registered migrations. Resolves to undefined if a new Embeddable\ncannot be directly created and the user will instead be redirected elsewhere." ], "signature": [ "(initialInput: TEmbeddableInput, parent?: ", @@ -9293,20 +9436,6 @@ "path": "src/plugins/embeddable/common/types.ts", "deprecated": false, "trackAdoption": false - }, - { - "parentPluginId": "embeddable", - "id": "def-public.PanelState.version", - "type": "string", - "tags": [], - "label": "version", - "description": [], - "signature": [ - "string | undefined" - ], - "path": "src/plugins/embeddable/common/types.ts", - "deprecated": false, - "trackAdoption": false } ], "initialIsOpen": false @@ -9845,7 +9974,7 @@ "section": "def-public.EmbeddableFactory", "text": "EmbeddableFactory" }, - ", \"create\" | \"type\" | \"isEditable\" | \"getDisplayName\"> & Partial, \"create\" | \"type\" | \"latestVersion\" | \"isEditable\" | \"getDisplayName\"> & Partial | undefined; readonly ssl: Readonly<{ certificateAuthorities?: string | string[] | undefined; } & { verificationMode: \"none\" | \"full\" | \"certificate\"; }>; readonly enabled: boolean; readonly accessCheckTimeout: number; readonly accessCheckTimeoutWarning: number; readonly canDeployEntSearch: boolean; readonly hasConnectors: boolean; readonly hasDefaultIngestPipeline: boolean; readonly hasDocumentLevelSecurityEnabled: boolean; readonly hasIncrementalSyncEnabled: boolean; readonly hasNativeConnectors: boolean; readonly hasWebCrawler: boolean; readonly isCloud: boolean; }" + "{ readonly host?: string | undefined; readonly customHeaders?: Readonly<{} & {}> | undefined; readonly ssl: Readonly<{ certificateAuthorities?: string | string[] | undefined; } & { verificationMode: \"none\" | \"full\" | \"certificate\"; }>; readonly enabled: boolean; readonly ui: Readonly<{} & { enabled: boolean; }>; readonly accessCheckTimeout: number; readonly accessCheckTimeoutWarning: number; readonly canDeployEntSearch: boolean; readonly hasConnectors: boolean; readonly hasDefaultIngestPipeline: boolean; readonly hasDocumentLevelSecurityEnabled: boolean; readonly hasIncrementalSyncEnabled: boolean; readonly hasNativeConnectors: boolean; readonly hasWebCrawler: boolean; readonly isCloud: boolean; }" ], "path": "x-pack/plugins/enterprise_search/server/index.ts", "deprecated": false, @@ -280,14 +280,43 @@ "section": "def-common.Type", "text": "Type" }, - "<\"none\" | \"full\" | \"certificate\">; }>; }>" + "<\"none\" | \"full\" | \"certificate\">; }>; ui: ", + { + "pluginId": "@kbn/config-schema", + "scope": "common", + "docId": "kibKbnConfigSchemaPluginApi", + "section": "def-common.ObjectType", + "text": "ObjectType" + }, + "<{ enabled: ", + { + "pluginId": "@kbn/config-schema", + "scope": "common", + "docId": "kibKbnConfigSchemaPluginApi", + "section": "def-common.Type", + "text": "Type" + }, + "; }>; }>" ], "path": "x-pack/plugins/enterprise_search/server/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false } - ] + ], + "start": { + "parentPluginId": "enterpriseSearch", + "id": "def-server.EnterpriseSearchPluginStart", + "type": "Type", + "tags": [], + "label": "EnterpriseSearchPluginStart", + "description": [], + "path": "x-pack/plugins/enterprise_search/server/index.ts", + "deprecated": false, + "trackAdoption": false, + "lifecycle": "start", + "initialIsOpen": true + } }, "common": { "classes": [], diff --git a/api_docs/enterprise_search.mdx b/api_docs/enterprise_search.mdx index 2b9fb987dc1a9..ed57d3f4c4321 100644 --- a/api_docs/enterprise_search.mdx +++ b/api_docs/enterprise_search.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/enterpriseSearch title: "enterpriseSearch" image: https://source.unsplash.com/400x175/?github description: API docs for the enterpriseSearch plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'enterpriseSearch'] --- import enterpriseSearchObj from './enterprise_search.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/enterprise-search-frontend](https://github.com/orgs/elastic/te | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 10 | 0 | 10 | 0 | +| 11 | 0 | 11 | 0 | ## Client @@ -30,6 +30,9 @@ Contact [@elastic/enterprise-search-frontend](https://github.com/orgs/elastic/te ## Server +### Start + + ### Objects diff --git a/api_docs/es_ui_shared.mdx b/api_docs/es_ui_shared.mdx index 5beca4d64f553..82358ed6e51e0 100644 --- a/api_docs/es_ui_shared.mdx +++ b/api_docs/es_ui_shared.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/esUiShared title: "esUiShared" image: https://source.unsplash.com/400x175/?github description: API docs for the esUiShared plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'esUiShared'] --- import esUiSharedObj from './es_ui_shared.devdocs.json'; diff --git a/api_docs/event_annotation.devdocs.json b/api_docs/event_annotation.devdocs.json index a8456010389bb..e11e847c4ed5f 100644 --- a/api_docs/event_annotation.devdocs.json +++ b/api_docs/event_annotation.devdocs.json @@ -382,7 +382,7 @@ "section": "def-common.EventAnnotationGroupConfig", "text": "EventAnnotationGroupConfig" }, - ", \"annotations\" | \"ignoreGlobalFilters\" | \"indexPatternId\">[]; }) => ", + ", \"ignoreGlobalFilters\" | \"annotations\" | \"indexPatternId\">[]; }) => ", { "pluginId": "expressions", "scope": "common", @@ -434,7 +434,7 @@ "section": "def-common.EventAnnotationGroupConfig", "text": "EventAnnotationGroupConfig" }, - ", \"annotations\" | \"ignoreGlobalFilters\" | \"indexPatternId\">[]" + ", \"ignoreGlobalFilters\" | \"annotations\" | \"indexPatternId\">[]" ], "path": "packages/kbn-event-annotation-components/types.ts", "deprecated": false, @@ -1473,13 +1473,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.manualPointEventAnnotation.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -1551,13 +1548,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.manualPointEventAnnotation.args.id.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -1592,13 +1586,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.manualPointEventAnnotation.args.time.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -1633,13 +1624,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.manualPointEventAnnotation.args.label.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -1674,13 +1662,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.manualPointEventAnnotation.args.color.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -1729,13 +1714,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.manualPointEventAnnotation.args.lineStyle.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -1770,13 +1752,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.manualPointEventAnnotation.args.lineWidth.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -1811,13 +1790,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.manualPointEventAnnotation.args.icon.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -1880,13 +1856,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.manualPointEventAnnotation.args.textVisibility.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -1921,13 +1894,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.manualPointEventAnnotation.args.isHidden.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -2080,13 +2050,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.manualRangeEventAnnotation.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -2158,13 +2125,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.manualRangeEventAnnotation.args.id.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -2199,13 +2163,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.manualRangeEventAnnotation.args.time.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -2240,13 +2201,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.manualRangeEventAnnotation.args.endTime.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -2347,13 +2305,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.manualRangeEventAnnotation.args.label.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -2388,13 +2343,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.manualRangeEventAnnotation.args.color.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -2429,13 +2381,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.manualRangeEventAnnotation.args.isHidden.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -2556,13 +2505,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.queryPointEventAnnotation.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -2634,13 +2580,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.queryPointEventAnnotation.args.id.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -2675,13 +2618,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.queryPointEventAnnotation.args.filter.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -2730,13 +2670,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.queryPointEventAnnotation.args.extraFields.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -2771,13 +2708,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.queryPointEventAnnotation.args.timeField.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -2812,13 +2746,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.queryPointEventAnnotation.args.label.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -2853,13 +2784,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.queryPointEventAnnotation.args.color.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -2908,13 +2836,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.queryPointEventAnnotation.args.lineStyle.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -2949,13 +2874,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.queryPointEventAnnotation.args.lineWidth.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -2990,13 +2912,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.queryPointEventAnnotation.args.icon.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -3059,13 +2978,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.queryPointEventAnnotation.args.textVisibility.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -3100,13 +3016,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.queryPointEventAnnotation.args.textField.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, "trackAdoption": false @@ -3141,13 +3054,10 @@ { "parentPluginId": "eventAnnotation", "id": "def-common.queryPointEventAnnotation.args.isHidden.help", - "type": "Any", + "type": "string", "tags": [], "label": "help", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, "trackAdoption": false diff --git a/api_docs/event_annotation.mdx b/api_docs/event_annotation.mdx index f0945f0e182ad..c12dd514ee6dc 100644 --- a/api_docs/event_annotation.mdx +++ b/api_docs/event_annotation.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/eventAnnotation title: "eventAnnotation" image: https://source.unsplash.com/400x175/?github description: API docs for the eventAnnotation plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'eventAnnotation'] --- import eventAnnotationObj from './event_annotation.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/k | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 195 | 30 | 195 | 5 | +| 195 | 0 | 195 | 5 | ## Client diff --git a/api_docs/event_log.mdx b/api_docs/event_log.mdx index edb404868f80e..50557c87f40cd 100644 --- a/api_docs/event_log.mdx +++ b/api_docs/event_log.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/eventLog title: "eventLog" image: https://source.unsplash.com/400x175/?github description: API docs for the eventLog plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'eventLog'] --- import eventLogObj from './event_log.devdocs.json'; diff --git a/api_docs/exploratory_view.mdx b/api_docs/exploratory_view.mdx index a42ef1092c2d3..d32073e4574d0 100644 --- a/api_docs/exploratory_view.mdx +++ b/api_docs/exploratory_view.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/exploratoryView title: "exploratoryView" image: https://source.unsplash.com/400x175/?github description: API docs for the exploratoryView plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'exploratoryView'] --- import exploratoryViewObj from './exploratory_view.devdocs.json'; diff --git a/api_docs/expression_error.mdx b/api_docs/expression_error.mdx index 9edeb48602e83..2f1ca931577cf 100644 --- a/api_docs/expression_error.mdx +++ b/api_docs/expression_error.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionError title: "expressionError" image: https://source.unsplash.com/400x175/?github description: API docs for the expressionError plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionError'] --- import expressionErrorObj from './expression_error.devdocs.json'; diff --git a/api_docs/expression_gauge.devdocs.json b/api_docs/expression_gauge.devdocs.json index eb53b79bbe044..6c131768104a0 100644 --- a/api_docs/expression_gauge.devdocs.json +++ b/api_docs/expression_gauge.devdocs.json @@ -1231,7 +1231,7 @@ "section": "def-common.MakeOverridesSerializable", "text": "MakeOverridesSerializable" }, - "; tooltipValueFormatter?: \"ignore\" | undefined; }>> & Partial; tooltipValueFormatter?: \"ignore\" | undefined; }>> & Partial { name: \"metric\"; aliases: never[]; type: \"render\"; inputTypes: (\"string\" | \"number\" | \"null\")[]; help: any; args: { label: { types: \"string\"[]; aliases: string[]; help: any; default: string; }; labelFont: { types: \"style\"[]; help: any; default: string; }; metricFont: { types: \"style\"[]; help: any; default: string; }; metricFormat: { types: \"string\"[]; aliases: string[]; help: any; }; }; fn: (input: ", + "() => { name: \"metric\"; aliases: never[]; type: \"render\"; inputTypes: (\"string\" | \"number\" | \"null\")[]; help: string; args: { label: { types: \"string\"[]; aliases: string[]; help: string; default: string; }; labelFont: { types: \"style\"[]; help: string; default: string; }; metricFont: { types: \"style\"[]; help: string; default: string; }; metricFormat: { types: \"string\"[]; aliases: string[]; help: string; }; }; fn: (input: ", { "pluginId": "expressionMetric", "scope": "common", diff --git a/api_docs/expression_metric.mdx b/api_docs/expression_metric.mdx index 7f9766f8d9879..1394013c42f46 100644 --- a/api_docs/expression_metric.mdx +++ b/api_docs/expression_metric.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionMetric title: "expressionMetric" image: https://source.unsplash.com/400x175/?github description: API docs for the expressionMetric plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionMetric'] --- import expressionMetricObj from './expression_metric.devdocs.json'; diff --git a/api_docs/expression_metric_vis.devdocs.json b/api_docs/expression_metric_vis.devdocs.json index dfd0f3a000d80..aa7d4960d1447 100644 --- a/api_docs/expression_metric_vis.devdocs.json +++ b/api_docs/expression_metric_vis.devdocs.json @@ -868,7 +868,7 @@ "label": "overrides", "description": [], "signature": [ - "(Partial { name: \"repeatImage\"; aliases: never[]; type: \"render\"; inputTypes: \"number\"[]; help: any; args: { emptyImage: { types: (\"string\" | \"null\")[]; help: any; default: null; }; image: { types: (\"string\" | \"null\")[]; help: any; default: null; }; max: { types: (\"number\" | \"null\")[]; help: any; default: number; }; size: { types: \"number\"[]; default: number; help: any; }; }; fn: (count: number, args: Arguments) => Promise<{ type: \"render\"; as: string; value: { image: string | null; emptyImage: string | null; size: number; max: number | null; count: number; }; }>; }" + "() => { name: \"repeatImage\"; aliases: never[]; type: \"render\"; inputTypes: \"number\"[]; help: string; args: { emptyImage: { types: (\"string\" | \"null\")[]; help: string; default: null; }; image: { types: (\"string\" | \"null\")[]; help: string; default: null; }; max: { types: (\"number\" | \"null\")[]; help: string; default: number; }; size: { types: \"number\"[]; default: number; help: string; }; }; fn: (count: number, args: Arguments) => Promise<{ type: \"render\"; as: string; value: { image: string | null; emptyImage: string | null; size: number; max: number | null; count: number; }; }>; }" ], "path": "src/plugins/expression_repeat_image/common/expression_functions/repeat_image_function.ts", "deprecated": false, diff --git a/api_docs/expression_repeat_image.mdx b/api_docs/expression_repeat_image.mdx index 1bf0f3ed5990b..0f27eeefb8562 100644 --- a/api_docs/expression_repeat_image.mdx +++ b/api_docs/expression_repeat_image.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionRepeatImage title: "expressionRepeatImage" image: https://source.unsplash.com/400x175/?github description: API docs for the expressionRepeatImage plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionRepeatImage'] --- import expressionRepeatImageObj from './expression_repeat_image.devdocs.json'; diff --git a/api_docs/expression_reveal_image.devdocs.json b/api_docs/expression_reveal_image.devdocs.json index 1b1e64a2fd210..950dce68bd57a 100644 --- a/api_docs/expression_reveal_image.devdocs.json +++ b/api_docs/expression_reveal_image.devdocs.json @@ -180,7 +180,7 @@ "label": "revealImageFunction", "description": [], "signature": [ - "() => { name: \"revealImage\"; aliases: never[]; type: \"render\"; inputTypes: \"number\"[]; help: any; args: { image: { types: (\"string\" | \"null\")[]; help: any; default: null; }; emptyImage: { types: (\"string\" | \"null\")[]; help: any; default: null; }; origin: { types: \"string\"[]; help: any; default: string; options: ", + "() => { name: \"revealImage\"; aliases: never[]; type: \"render\"; inputTypes: \"number\"[]; help: string; args: { image: { types: (\"string\" | \"null\")[]; help: string; default: null; }; emptyImage: { types: (\"string\" | \"null\")[]; help: string; default: null; }; origin: { types: \"string\"[]; help: string; default: string; options: ", "Origin", "[]; }; }; fn: (percent: number, args: Arguments) => Promise<{ type: \"render\"; as: string; value: { image: string; emptyImage: string; origin: ", "Origin", diff --git a/api_docs/expression_reveal_image.mdx b/api_docs/expression_reveal_image.mdx index c2a874fa054fd..8b98af077ce01 100644 --- a/api_docs/expression_reveal_image.mdx +++ b/api_docs/expression_reveal_image.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionRevealImage title: "expressionRevealImage" image: https://source.unsplash.com/400x175/?github description: API docs for the expressionRevealImage plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionRevealImage'] --- import expressionRevealImageObj from './expression_reveal_image.devdocs.json'; diff --git a/api_docs/expression_shape.mdx b/api_docs/expression_shape.mdx index 63d16038a95ef..98746549579db 100644 --- a/api_docs/expression_shape.mdx +++ b/api_docs/expression_shape.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionShape title: "expressionShape" image: https://source.unsplash.com/400x175/?github description: API docs for the expressionShape plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionShape'] --- import expressionShapeObj from './expression_shape.devdocs.json'; diff --git a/api_docs/expression_tagcloud.mdx b/api_docs/expression_tagcloud.mdx index 7e31be6b1b19e..6b6459db0cbf4 100644 --- a/api_docs/expression_tagcloud.mdx +++ b/api_docs/expression_tagcloud.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionTagcloud title: "expressionTagcloud" image: https://source.unsplash.com/400x175/?github description: API docs for the expressionTagcloud plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionTagcloud'] --- import expressionTagcloudObj from './expression_tagcloud.devdocs.json'; diff --git a/api_docs/expression_x_y.devdocs.json b/api_docs/expression_x_y.devdocs.json index 748dacf2ef706..02acfe81488e7 100644 --- a/api_docs/expression_x_y.devdocs.json +++ b/api_docs/expression_x_y.devdocs.json @@ -1916,7 +1916,7 @@ }, "<", "YDomainRange", - " | undefined>; hide?: boolean | undefined; showOverlappingTicks?: boolean | undefined; showOverlappingLabels?: boolean | undefined; timeAxisLayerCount?: number | undefined; integersOnly?: boolean | undefined; tickFormat?: \"ignore\" | undefined; labelFormat?: \"ignore\" | undefined; showDuplicatedTicks?: boolean | undefined; }>> & Partial; hide?: boolean | undefined; showOverlappingTicks?: boolean | undefined; showOverlappingLabels?: boolean | undefined; timeAxisLayerCount?: number | undefined; integersOnly?: boolean | undefined; tickFormat?: \"ignore\" | undefined; labelFormat?: \"ignore\" | undefined; showDuplicatedTicks?: boolean | undefined; }>> & Partial any" + " | undefined) => string" ], "path": "src/plugins/field_formats/common/converters/string.ts", "deprecated": false, @@ -4871,13 +4814,10 @@ { "parentPluginId": "fieldFormats", "id": "def-common.TruncateFormat.title", - "type": "Any", + "type": "string", "tags": [], "label": "title", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/field_formats/common/converters/truncate.ts", "deprecated": false, "trackAdoption": false @@ -4988,13 +4928,10 @@ { "parentPluginId": "fieldFormats", "id": "def-common.UrlFormat.title", - "type": "Any", + "type": "string", "tags": [], "label": "title", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/field_formats/common/converters/url.ts", "deprecated": false, "trackAdoption": false @@ -5028,7 +4965,7 @@ "label": "urlTypes", "description": [], "signature": [ - "{ kind: string; text: any; }[]" + "{ kind: string; text: string; }[]" ], "path": "src/plugins/field_formats/common/converters/url.ts", "deprecated": false, @@ -5542,7 +5479,7 @@ "label": "DURATION_INPUT_FORMATS", "description": [], "signature": [ - "{ text: any; kind: string; }[]" + "{ text: string; kind: string; }[]" ], "path": "src/plugins/field_formats/common/constants/duration_formats.ts", "deprecated": false, @@ -5557,7 +5494,7 @@ "label": "DURATION_OUTPUT_FORMATS", "description": [], "signature": [ - "({ text: any; method: string; shortText?: undefined; } | { text: any; shortText: any; method: string; })[]" + "({ text: string; method: string; shortText?: undefined; } | { text: string; shortText: string; method: string; })[]" ], "path": "src/plugins/field_formats/common/constants/duration_formats.ts", "deprecated": false, @@ -6652,7 +6589,7 @@ "label": "DEFAULT_DURATION_INPUT_FORMAT", "description": [], "signature": [ - "{ text: any; kind: string; }" + "{ text: string; kind: string; }" ], "path": "src/plugins/field_formats/common/constants/duration_formats.ts", "deprecated": false, @@ -6667,7 +6604,7 @@ "label": "DEFAULT_DURATION_OUTPUT_FORMAT", "description": [], "signature": [ - "{ text: any; method: string; }" + "{ text: string; method: string; }" ], "path": "src/plugins/field_formats/common/constants/duration_formats.ts", "deprecated": false, diff --git a/api_docs/field_formats.mdx b/api_docs/field_formats.mdx index 1250b62d6986e..1bbaddb481395 100644 --- a/api_docs/field_formats.mdx +++ b/api_docs/field_formats.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/fieldFormats title: "fieldFormats" image: https://source.unsplash.com/400x175/?github description: API docs for the fieldFormats plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fieldFormats'] --- import fieldFormatsObj from './field_formats.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/k | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 292 | 26 | 253 | 3 | +| 292 | 5 | 253 | 3 | ## Client diff --git a/api_docs/file_upload.mdx b/api_docs/file_upload.mdx index aee7c00433d2e..e1a79337334bd 100644 --- a/api_docs/file_upload.mdx +++ b/api_docs/file_upload.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/fileUpload title: "fileUpload" image: https://source.unsplash.com/400x175/?github description: API docs for the fileUpload plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fileUpload'] --- import fileUploadObj from './file_upload.devdocs.json'; diff --git a/api_docs/files.mdx b/api_docs/files.mdx index 21e658389deb6..7f17255730f38 100644 --- a/api_docs/files.mdx +++ b/api_docs/files.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/files title: "files" image: https://source.unsplash.com/400x175/?github description: API docs for the files plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'files'] --- import filesObj from './files.devdocs.json'; diff --git a/api_docs/files_management.devdocs.json b/api_docs/files_management.devdocs.json index cf433bf45ec7e..5568b8b1261fa 100644 --- a/api_docs/files_management.devdocs.json +++ b/api_docs/files_management.devdocs.json @@ -40,13 +40,10 @@ { "parentPluginId": "filesManagement", "id": "def-common.PLUGIN_NAME", - "type": "Any", + "type": "string", "tags": [], "label": "PLUGIN_NAME", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/files_management/common/index.ts", "deprecated": false, "trackAdoption": false, diff --git a/api_docs/files_management.mdx b/api_docs/files_management.mdx index 0cc7cc60a7097..86120a8ee7ea9 100644 --- a/api_docs/files_management.mdx +++ b/api_docs/files_management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/filesManagement title: "filesManagement" image: https://source.unsplash.com/400x175/?github description: API docs for the filesManagement plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'filesManagement'] --- import filesManagementObj from './files_management.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sh | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 2 | 1 | 2 | 0 | +| 2 | 0 | 2 | 0 | ## Common diff --git a/api_docs/fleet.devdocs.json b/api_docs/fleet.devdocs.json index f2d95d5d0909e..81bd886607d5f 100644 --- a/api_docs/fleet.devdocs.json +++ b/api_docs/fleet.devdocs.json @@ -656,6 +656,26 @@ "deprecated": false, "trackAdoption": false }, + { + "parentPluginId": "fleet", + "id": "def-public.FleetStartServices.dashboard", + "type": "Object", + "tags": [], + "label": "dashboard", + "description": [], + "signature": [ + { + "pluginId": "dashboard", + "scope": "public", + "docId": "kibDashboardPluginApi", + "section": "def-public.DashboardStart", + "text": "DashboardStart" + } + ], + "path": "x-pack/plugins/fleet/public/plugin.ts", + "deprecated": false, + "trackAdoption": false + }, { "parentPluginId": "fleet", "id": "def-public.FleetStartServices.cloud", @@ -23920,7 +23940,7 @@ "section": "def-common.RegistryPackage", "text": "RegistryPackage" }, - ", \"internal\" | \"assets\" | \"elasticsearch\" | \"readme\" | \"data_streams\">" + ", \"assets\" | \"internal\" | \"elasticsearch\" | \"readme\" | \"data_streams\">" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, diff --git a/api_docs/fleet.mdx b/api_docs/fleet.mdx index 5d57b6678f33a..d336eac814d9d 100644 --- a/api_docs/fleet.mdx +++ b/api_docs/fleet.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/fleet title: "fleet" image: https://source.unsplash.com/400x175/?github description: API docs for the fleet plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fleet'] --- import fleetObj from './fleet.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/fleet](https://github.com/orgs/elastic/teams/fleet) for questi | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 1188 | 3 | 1072 | 41 | +| 1189 | 3 | 1073 | 41 | ## Client diff --git a/api_docs/global_search.mdx b/api_docs/global_search.mdx index e6522d611ab2e..c0d0a0ca7c584 100644 --- a/api_docs/global_search.mdx +++ b/api_docs/global_search.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/globalSearch title: "globalSearch" image: https://source.unsplash.com/400x175/?github description: API docs for the globalSearch plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'globalSearch'] --- import globalSearchObj from './global_search.devdocs.json'; diff --git a/api_docs/guided_onboarding.mdx b/api_docs/guided_onboarding.mdx index fc76fb9e2d959..22e0b061c9670 100644 --- a/api_docs/guided_onboarding.mdx +++ b/api_docs/guided_onboarding.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/guidedOnboarding title: "guidedOnboarding" image: https://source.unsplash.com/400x175/?github description: API docs for the guidedOnboarding plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'guidedOnboarding'] --- import guidedOnboardingObj from './guided_onboarding.devdocs.json'; diff --git a/api_docs/home.devdocs.json b/api_docs/home.devdocs.json index 63a5d51330144..e39bab658985d 100644 --- a/api_docs/home.devdocs.json +++ b/api_docs/home.devdocs.json @@ -107,11 +107,21 @@ "parentPluginId": "home", "id": "def-public.FeatureCatalogueRegistry.get", "type": "Function", - "tags": [], + "tags": [ + "deprecated" + ], "label": "get", "description": [], "signature": [ - "() => ", + "(features?: Map) => ", { "pluginId": "home", "scope": "public", @@ -122,6 +132,57 @@ "[]" ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", + "deprecated": true, + "trackAdoption": false, + "references": [], + "children": [ + { + "parentPluginId": "home", + "id": "def-public.FeatureCatalogueRegistry.get.$1", + "type": "Object", + "tags": [], + "label": "features", + "description": [], + "signature": [ + "Map" + ], + "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "home", + "id": "def-public.FeatureCatalogueRegistry.getFeatures$", + "type": "Function", + "tags": [], + "label": "getFeatures$", + "description": [], + "signature": [ + "() => ", + "Observable", + "<", + { + "pluginId": "home", + "scope": "public", + "docId": "kibHomePluginApi", + "section": "def-public.FeatureCatalogueEntry", + "text": "FeatureCatalogueEntry" + }, + "[]>" + ], + "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", "deprecated": false, "trackAdoption": false, "children": [], @@ -201,7 +262,7 @@ "\nConvert instruction variant id into display text.\n" ], "signature": [ - "(id: \"ESC\" | \"OSX\" | \"DEB\" | \"RPM\" | \"DOCKER\" | \"WINDOWS\" | \"NODE\" | \"DJANGO\" | \"FLASK\" | \"RAILS\" | \"RACK\" | \"JS\" | \"GO\" | \"JAVA\" | \"DOTNET\" | \"LINUX\" | \"PHP\" | \"FLEET\" | \"OPEN_TELEMETRY\" | \"OTHER_LINUX\") => any" + "(id: \"ESC\" | \"OSX\" | \"DEB\" | \"RPM\" | \"DOCKER\" | \"WINDOWS\" | \"NODE\" | \"DJANGO\" | \"FLASK\" | \"RAILS\" | \"RACK\" | \"JS\" | \"GO\" | \"JAVA\" | \"DOTNET\" | \"LINUX\" | \"PHP\" | \"FLEET\" | \"OPEN_TELEMETRY\" | \"OTHER_LINUX\") => string" ], "path": "src/plugins/home/common/instruction_variant.ts", "deprecated": false, diff --git a/api_docs/home.mdx b/api_docs/home.mdx index f278f248c80a8..0f37070ada8ae 100644 --- a/api_docs/home.mdx +++ b/api_docs/home.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/home title: "home" image: https://source.unsplash.com/400x175/?github description: API docs for the home plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'home'] --- import homeObj from './home.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 145 | 0 | 106 | 0 | +| 147 | 0 | 108 | 0 | ## Client diff --git a/api_docs/image_embeddable.mdx b/api_docs/image_embeddable.mdx index d878c3b1e0282..35c1633364813 100644 --- a/api_docs/image_embeddable.mdx +++ b/api_docs/image_embeddable.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/imageEmbeddable title: "imageEmbeddable" image: https://source.unsplash.com/400x175/?github description: API docs for the imageEmbeddable plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'imageEmbeddable'] --- import imageEmbeddableObj from './image_embeddable.devdocs.json'; diff --git a/api_docs/index_lifecycle_management.mdx b/api_docs/index_lifecycle_management.mdx index 7a322702eb41e..a006c41ed2358 100644 --- a/api_docs/index_lifecycle_management.mdx +++ b/api_docs/index_lifecycle_management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/indexLifecycleManagement title: "indexLifecycleManagement" image: https://source.unsplash.com/400x175/?github description: API docs for the indexLifecycleManagement plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'indexLifecycleManagement'] --- import indexLifecycleManagementObj from './index_lifecycle_management.devdocs.json'; diff --git a/api_docs/index_management.devdocs.json b/api_docs/index_management.devdocs.json index 9bfac0cb5d6df..3da3a9bee799e 100644 --- a/api_docs/index_management.devdocs.json +++ b/api_docs/index_management.devdocs.json @@ -114,27 +114,24 @@ "children": [ { "parentPluginId": "indexManagement", - "id": "def-public.Index.health", + "id": "def-public.Index.name", "type": "string", "tags": [], - "label": "health", + "label": "name", "description": [], - "signature": [ - "string | undefined" - ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-public.Index.status", - "type": "string", + "id": "def-public.Index.primary", + "type": "CompoundType", "tags": [], - "label": "status", + "label": "primary", "description": [], "signature": [ - "string | undefined" + "string | number | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, @@ -142,52 +139,49 @@ }, { "parentPluginId": "indexManagement", - "id": "def-public.Index.name", - "type": "string", + "id": "def-public.Index.replica", + "type": "CompoundType", "tags": [], - "label": "name", + "label": "replica", "description": [], + "signature": [ + "string | number | undefined" + ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-public.Index.uuid", - "type": "string", + "id": "def-public.Index.isFrozen", + "type": "boolean", "tags": [], - "label": "uuid", + "label": "isFrozen", "description": [], - "signature": [ - "string | undefined" - ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-public.Index.primary", - "type": "CompoundType", + "id": "def-public.Index.hidden", + "type": "boolean", "tags": [], - "label": "primary", + "label": "hidden", "description": [], - "signature": [ - "string | number | undefined" - ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-public.Index.replica", + "id": "def-public.Index.aliases", "type": "CompoundType", "tags": [], - "label": "replica", + "label": "aliases", "description": [], "signature": [ - "string | number | undefined" + "string | string[]" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, @@ -195,79 +189,85 @@ }, { "parentPluginId": "indexManagement", - "id": "def-public.Index.documents", - "type": "number", + "id": "def-public.Index.data_stream", + "type": "string", "tags": [], - "label": "documents", + "label": "data_stream", "description": [], + "signature": [ + "string | undefined" + ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-public.Index.documents_deleted", - "type": "number", + "id": "def-public.Index.health", + "type": "CompoundType", "tags": [], - "label": "documents_deleted", + "label": "health", "description": [], + "signature": [ + "HealthStatus", + " | undefined" + ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-public.Index.size", - "type": "string", + "id": "def-public.Index.status", + "type": "CompoundType", "tags": [], - "label": "size", + "label": "status", "description": [], + "signature": [ + "IndicesStatsIndexMetadataState", + " | undefined" + ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-public.Index.primary_size", + "id": "def-public.Index.uuid", "type": "string", "tags": [], - "label": "primary_size", - "description": [], - "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "indexManagement", - "id": "def-public.Index.isFrozen", - "type": "boolean", - "tags": [], - "label": "isFrozen", + "label": "uuid", "description": [], + "signature": [ + "string | undefined" + ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-public.Index.hidden", - "type": "boolean", + "id": "def-public.Index.documents", + "type": "number", "tags": [], - "label": "hidden", + "label": "documents", "description": [], + "signature": [ + "number | undefined" + ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-public.Index.aliases", - "type": "CompoundType", + "id": "def-public.Index.size", + "type": "string", "tags": [], - "label": "aliases", + "label": "size", "description": [], "signature": [ - "string | string[]" + "string | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, @@ -275,10 +275,10 @@ }, { "parentPluginId": "indexManagement", - "id": "def-public.Index.data_stream", + "id": "def-public.Index.primary_size", "type": "string", "tags": [], - "label": "data_stream", + "label": "primary_size", "description": [], "signature": [ "string | undefined" @@ -289,13 +289,13 @@ }, { "parentPluginId": "indexManagement", - "id": "def-public.Index.Unnamed", - "type": "IndexSignature", + "id": "def-public.Index.documents_deleted", + "type": "number", "tags": [], - "label": "[key: string]: any", + "label": "documents_deleted", "description": [], "signature": [ - "[key: string]: any" + "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, @@ -442,27 +442,24 @@ "children": [ { "parentPluginId": "indexManagement", - "id": "def-server.Index.health", + "id": "def-server.Index.name", "type": "string", "tags": [], - "label": "health", + "label": "name", "description": [], - "signature": [ - "string | undefined" - ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-server.Index.status", - "type": "string", + "id": "def-server.Index.primary", + "type": "CompoundType", "tags": [], - "label": "status", + "label": "primary", "description": [], "signature": [ - "string | undefined" + "string | number | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, @@ -470,52 +467,49 @@ }, { "parentPluginId": "indexManagement", - "id": "def-server.Index.name", - "type": "string", + "id": "def-server.Index.replica", + "type": "CompoundType", "tags": [], - "label": "name", + "label": "replica", "description": [], + "signature": [ + "string | number | undefined" + ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-server.Index.uuid", - "type": "string", + "id": "def-server.Index.isFrozen", + "type": "boolean", "tags": [], - "label": "uuid", + "label": "isFrozen", "description": [], - "signature": [ - "string | undefined" - ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-server.Index.primary", - "type": "CompoundType", + "id": "def-server.Index.hidden", + "type": "boolean", "tags": [], - "label": "primary", + "label": "hidden", "description": [], - "signature": [ - "string | number | undefined" - ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-server.Index.replica", + "id": "def-server.Index.aliases", "type": "CompoundType", "tags": [], - "label": "replica", + "label": "aliases", "description": [], "signature": [ - "string | number | undefined" + "string | string[]" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, @@ -523,79 +517,85 @@ }, { "parentPluginId": "indexManagement", - "id": "def-server.Index.documents", - "type": "number", + "id": "def-server.Index.data_stream", + "type": "string", "tags": [], - "label": "documents", + "label": "data_stream", "description": [], + "signature": [ + "string | undefined" + ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-server.Index.documents_deleted", - "type": "number", + "id": "def-server.Index.health", + "type": "CompoundType", "tags": [], - "label": "documents_deleted", + "label": "health", "description": [], + "signature": [ + "HealthStatus", + " | undefined" + ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-server.Index.size", - "type": "string", + "id": "def-server.Index.status", + "type": "CompoundType", "tags": [], - "label": "size", + "label": "status", "description": [], + "signature": [ + "IndicesStatsIndexMetadataState", + " | undefined" + ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-server.Index.primary_size", + "id": "def-server.Index.uuid", "type": "string", "tags": [], - "label": "primary_size", - "description": [], - "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "indexManagement", - "id": "def-server.Index.isFrozen", - "type": "boolean", - "tags": [], - "label": "isFrozen", + "label": "uuid", "description": [], + "signature": [ + "string | undefined" + ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-server.Index.hidden", - "type": "boolean", + "id": "def-server.Index.documents", + "type": "number", "tags": [], - "label": "hidden", + "label": "documents", "description": [], + "signature": [ + "number | undefined" + ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-server.Index.aliases", - "type": "CompoundType", + "id": "def-server.Index.size", + "type": "string", "tags": [], - "label": "aliases", + "label": "size", "description": [], "signature": [ - "string | string[]" + "string | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, @@ -603,10 +603,10 @@ }, { "parentPluginId": "indexManagement", - "id": "def-server.Index.data_stream", + "id": "def-server.Index.primary_size", "type": "string", "tags": [], - "label": "data_stream", + "label": "primary_size", "description": [], "signature": [ "string | undefined" @@ -617,13 +617,13 @@ }, { "parentPluginId": "indexManagement", - "id": "def-server.Index.Unnamed", - "type": "IndexSignature", + "id": "def-server.Index.documents_deleted", + "type": "number", "tags": [], - "label": "[key: string]: any", + "label": "documents_deleted", "description": [], "signature": [ - "[key: string]: any" + "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, @@ -764,7 +764,7 @@ "label": "IndexManagementConfig", "description": [], "signature": [ - "{ readonly ui: Readonly<{} & { enabled: boolean; }>; readonly enableIndexActions: boolean; readonly enableLegacyTemplates: boolean; readonly dev: Readonly<{} & { enableIndexDetailsPage: boolean; }>; }" + "{ readonly ui: Readonly<{} & { enabled: boolean; }>; readonly enableIndexActions: boolean; readonly enableLegacyTemplates: boolean; readonly dev: Readonly<{} & { enableIndexDetailsPage: boolean; }>; readonly enableIndexStats: boolean; }" ], "path": "x-pack/plugins/index_management/server/config.ts", "deprecated": false, @@ -1641,27 +1641,24 @@ "children": [ { "parentPluginId": "indexManagement", - "id": "def-common.Index.health", + "id": "def-common.Index.name", "type": "string", "tags": [], - "label": "health", + "label": "name", "description": [], - "signature": [ - "string | undefined" - ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-common.Index.status", - "type": "string", + "id": "def-common.Index.primary", + "type": "CompoundType", "tags": [], - "label": "status", + "label": "primary", "description": [], "signature": [ - "string | undefined" + "string | number | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, @@ -1669,52 +1666,49 @@ }, { "parentPluginId": "indexManagement", - "id": "def-common.Index.name", - "type": "string", + "id": "def-common.Index.replica", + "type": "CompoundType", "tags": [], - "label": "name", + "label": "replica", "description": [], + "signature": [ + "string | number | undefined" + ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-common.Index.uuid", - "type": "string", + "id": "def-common.Index.isFrozen", + "type": "boolean", "tags": [], - "label": "uuid", + "label": "isFrozen", "description": [], - "signature": [ - "string | undefined" - ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-common.Index.primary", - "type": "CompoundType", + "id": "def-common.Index.hidden", + "type": "boolean", "tags": [], - "label": "primary", + "label": "hidden", "description": [], - "signature": [ - "string | number | undefined" - ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-common.Index.replica", + "id": "def-common.Index.aliases", "type": "CompoundType", "tags": [], - "label": "replica", + "label": "aliases", "description": [], "signature": [ - "string | number | undefined" + "string | string[]" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, @@ -1722,79 +1716,85 @@ }, { "parentPluginId": "indexManagement", - "id": "def-common.Index.documents", - "type": "number", + "id": "def-common.Index.data_stream", + "type": "string", "tags": [], - "label": "documents", + "label": "data_stream", "description": [], + "signature": [ + "string | undefined" + ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-common.Index.documents_deleted", - "type": "number", + "id": "def-common.Index.health", + "type": "CompoundType", "tags": [], - "label": "documents_deleted", + "label": "health", "description": [], + "signature": [ + "HealthStatus", + " | undefined" + ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-common.Index.size", - "type": "string", + "id": "def-common.Index.status", + "type": "CompoundType", "tags": [], - "label": "size", + "label": "status", "description": [], + "signature": [ + "IndicesStatsIndexMetadataState", + " | undefined" + ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-common.Index.primary_size", + "id": "def-common.Index.uuid", "type": "string", "tags": [], - "label": "primary_size", - "description": [], - "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "indexManagement", - "id": "def-common.Index.isFrozen", - "type": "boolean", - "tags": [], - "label": "isFrozen", + "label": "uuid", "description": [], + "signature": [ + "string | undefined" + ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-common.Index.hidden", - "type": "boolean", + "id": "def-common.Index.documents", + "type": "number", "tags": [], - "label": "hidden", + "label": "documents", "description": [], + "signature": [ + "number | undefined" + ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, "trackAdoption": false }, { "parentPluginId": "indexManagement", - "id": "def-common.Index.aliases", - "type": "CompoundType", + "id": "def-common.Index.size", + "type": "string", "tags": [], - "label": "aliases", + "label": "size", "description": [], "signature": [ - "string | string[]" + "string | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, @@ -1802,10 +1802,10 @@ }, { "parentPluginId": "indexManagement", - "id": "def-common.Index.data_stream", + "id": "def-common.Index.primary_size", "type": "string", "tags": [], - "label": "data_stream", + "label": "primary_size", "description": [], "signature": [ "string | undefined" @@ -1816,13 +1816,13 @@ }, { "parentPluginId": "indexManagement", - "id": "def-common.Index.Unnamed", - "type": "IndexSignature", + "id": "def-common.Index.documents_deleted", + "type": "number", "tags": [], - "label": "[key: string]: any", + "label": "documents_deleted", "description": [], "signature": [ - "[key: string]: any" + "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, diff --git a/api_docs/index_management.mdx b/api_docs/index_management.mdx index c8ce675099881..6474dfd6af1d0 100644 --- a/api_docs/index_management.mdx +++ b/api_docs/index_management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/indexManagement title: "indexManagement" image: https://source.unsplash.com/400x175/?github description: API docs for the indexManagement plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'indexManagement'] --- import indexManagementObj from './index_management.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/platform-deployment-management](https://github.com/orgs/elasti | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 185 | 0 | 180 | 4 | +| 182 | 0 | 177 | 4 | ## Client diff --git a/api_docs/infra.mdx b/api_docs/infra.mdx index dc5c82c7aba8e..92f85a2271862 100644 --- a/api_docs/infra.mdx +++ b/api_docs/infra.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/infra title: "infra" image: https://source.unsplash.com/400x175/?github description: API docs for the infra plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'infra'] --- import infraObj from './infra.devdocs.json'; diff --git a/api_docs/inspector.mdx b/api_docs/inspector.mdx index a75b0fd3fa809..e0e34adebf732 100644 --- a/api_docs/inspector.mdx +++ b/api_docs/inspector.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/inspector title: "inspector" image: https://source.unsplash.com/400x175/?github description: API docs for the inspector plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'inspector'] --- import inspectorObj from './inspector.devdocs.json'; diff --git a/api_docs/interactive_setup.mdx b/api_docs/interactive_setup.mdx index 40c3de6ef8c01..c6ff2326e4396 100644 --- a/api_docs/interactive_setup.mdx +++ b/api_docs/interactive_setup.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/interactiveSetup title: "interactiveSetup" image: https://source.unsplash.com/400x175/?github description: API docs for the interactiveSetup plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'interactiveSetup'] --- import interactiveSetupObj from './interactive_setup.devdocs.json'; diff --git a/api_docs/kbn_ace.mdx b/api_docs/kbn_ace.mdx index c405cdbb4db68..12f12d63b880d 100644 --- a/api_docs/kbn_ace.mdx +++ b/api_docs/kbn_ace.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ace title: "@kbn/ace" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ace plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ace'] --- import kbnAceObj from './kbn_ace.devdocs.json'; diff --git a/api_docs/kbn_aiops_components.mdx b/api_docs/kbn_aiops_components.mdx index 3a427c3d810e1..d1bb90e738819 100644 --- a/api_docs/kbn_aiops_components.mdx +++ b/api_docs/kbn_aiops_components.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-aiops-components title: "@kbn/aiops-components" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/aiops-components plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/aiops-components'] --- import kbnAiopsComponentsObj from './kbn_aiops_components.devdocs.json'; diff --git a/api_docs/kbn_aiops_utils.mdx b/api_docs/kbn_aiops_utils.mdx index 7fd30f4e6bd1d..fa6e6129e421f 100644 --- a/api_docs/kbn_aiops_utils.mdx +++ b/api_docs/kbn_aiops_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-aiops-utils title: "@kbn/aiops-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/aiops-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/aiops-utils'] --- import kbnAiopsUtilsObj from './kbn_aiops_utils.devdocs.json'; diff --git a/api_docs/kbn_alerting_api_integration_helpers.devdocs.json b/api_docs/kbn_alerting_api_integration_helpers.devdocs.json new file mode 100644 index 0000000000000..8f4c6849b5061 --- /dev/null +++ b/api_docs/kbn_alerting_api_integration_helpers.devdocs.json @@ -0,0 +1,430 @@ +{ + "id": "@kbn/alerting-api-integration-helpers", + "client": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [], + "objects": [] + }, + "server": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [], + "objects": [] + }, + "common": { + "classes": [ + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.ESTestIndexTool", + "type": "Class", + "tags": [], + "label": "ESTestIndexTool", + "description": [], + "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.ESTestIndexTool.Unnamed", + "type": "Function", + "tags": [], + "label": "Constructor", + "description": [], + "signature": [ + "any" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.ESTestIndexTool.Unnamed.$1", + "type": "Object", + "tags": [], + "label": "es", + "description": [], + "signature": [ + "default" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.ESTestIndexTool.Unnamed.$2", + "type": "Any", + "tags": [], + "label": "retry", + "description": [], + "signature": [ + "any" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.ESTestIndexTool.Unnamed.$3", + "type": "string", + "tags": [], + "label": "index", + "description": [], + "signature": [ + "string" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.ESTestIndexTool.setup", + "type": "Function", + "tags": [], + "label": "setup", + "description": [], + "signature": [ + "() => Promise<", + "TransportResult", + "<", + "IndicesCreateResponse", + ", unknown>>" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [] + }, + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.ESTestIndexTool.destroy", + "type": "Function", + "tags": [], + "label": "destroy", + "description": [], + "signature": [ + "() => Promise<", + "TransportResult", + "<", + "IndicesResponseBase", + ", unknown> | undefined>" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [] + }, + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.ESTestIndexTool.search", + "type": "Function", + "tags": [], + "label": "search", + "description": [], + "signature": [ + "(source: string, reference?: string | undefined) => Promise<", + "TransportResult", + "<", + "SearchResponse", + ">, unknown>>" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.ESTestIndexTool.search.$1", + "type": "string", + "tags": [], + "label": "source", + "description": [], + "signature": [ + "string" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.ESTestIndexTool.search.$2", + "type": "string", + "tags": [], + "label": "reference", + "description": [], + "signature": [ + "string | undefined" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": false + } + ], + "returnComment": [] + }, + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.ESTestIndexTool.getAll", + "type": "Function", + "tags": [], + "label": "getAll", + "description": [], + "signature": [ + "(size?: number) => Promise<", + "TransportResult", + "<", + "SearchResponse", + ">, unknown>>" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.ESTestIndexTool.getAll.$1", + "type": "number", + "tags": [], + "label": "size", + "description": [], + "signature": [ + "number" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.ESTestIndexTool.removeAll", + "type": "Function", + "tags": [], + "label": "removeAll", + "description": [], + "signature": [ + "() => Promise<", + "DeleteByQueryResponse", + ">" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [] + }, + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.ESTestIndexTool.waitForDocs", + "type": "Function", + "tags": [], + "label": "waitForDocs", + "description": [], + "signature": [ + "(source: string, reference: string, numDocs?: number) => Promise" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.ESTestIndexTool.waitForDocs.$1", + "type": "string", + "tags": [], + "label": "source", + "description": [], + "signature": [ + "string" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.ESTestIndexTool.waitForDocs.$2", + "type": "string", + "tags": [], + "label": "reference", + "description": [], + "signature": [ + "string" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.ESTestIndexTool.waitForDocs.$3", + "type": "number", + "tags": [], + "label": "numDocs", + "description": [], + "signature": [ + "number" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] + } + ], + "initialIsOpen": false + } + ], + "functions": [ + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.getHttpProxyServer", + "type": "Function", + "tags": [], + "label": "getHttpProxyServer", + "description": [], + "signature": [ + "(targetUrl: string, kbnTestServerConfig: any, onProxyResHandler: (proxyRes?: unknown, req?: unknown, res?: unknown) => void) => Promise<", + "node_modules/@types/http-proxy/index", + ">" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/get_proxy_server.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.getHttpProxyServer.$1", + "type": "string", + "tags": [], + "label": "targetUrl", + "description": [], + "signature": [ + "string" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/get_proxy_server.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.getHttpProxyServer.$2", + "type": "Any", + "tags": [], + "label": "kbnTestServerConfig", + "description": [], + "signature": [ + "any" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/get_proxy_server.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.getHttpProxyServer.$3", + "type": "Function", + "tags": [], + "label": "onProxyResHandler", + "description": [], + "signature": [ + "(proxyRes?: unknown, req?: unknown, res?: unknown) => void" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/get_proxy_server.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.getProxyPort", + "type": "Function", + "tags": [], + "label": "getProxyPort", + "description": [], + "signature": [ + "(kbnTestServerConfig: any) => number" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/get_proxy_server.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.getProxyPort.$1", + "type": "Any", + "tags": [], + "label": "kbnTestServerConfig", + "description": [], + "signature": [ + "any" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/get_proxy_server.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + } + ], + "interfaces": [], + "enums": [], + "misc": [ + { + "parentPluginId": "@kbn/alerting-api-integration-helpers", + "id": "def-common.ES_TEST_INDEX_NAME", + "type": "string", + "tags": [], + "label": "ES_TEST_INDEX_NAME", + "description": [], + "signature": [ + "\".kibana-alerting-test-data\"" + ], + "path": "x-pack/test/alerting_api_integration/packages/helpers/es_test_index_tool.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + } + ], + "objects": [] + } +} \ No newline at end of file diff --git a/api_docs/kbn_alerting_api_integration_helpers.mdx b/api_docs/kbn_alerting_api_integration_helpers.mdx new file mode 100644 index 0000000000000..024767cd731d6 --- /dev/null +++ b/api_docs/kbn_alerting_api_integration_helpers.mdx @@ -0,0 +1,36 @@ +--- +#### +#### This document is auto-generated and is meant to be viewed inside our experimental, new docs system. +#### Reach out in #docs-engineering for more info. +#### +id: kibKbnAlertingApiIntegrationHelpersPluginApi +slug: /kibana-dev-docs/api/kbn-alerting-api-integration-helpers +title: "@kbn/alerting-api-integration-helpers" +image: https://source.unsplash.com/400x175/?github +description: API docs for the @kbn/alerting-api-integration-helpers plugin +date: 2023-08-27 +tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerting-api-integration-helpers'] +--- +import kbnAlertingApiIntegrationHelpersObj from './kbn_alerting_api_integration_helpers.devdocs.json'; + + + +Contact [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) for questions regarding this plugin. + +**Code health stats** + +| Public API count | Any count | Items lacking comments | Missing exports | +|-------------------|-----------|------------------------|-----------------| +| 24 | 3 | 24 | 0 | + +## Common + +### Functions + + +### Classes + + +### Consts, variables and types + + diff --git a/api_docs/kbn_alerting_state_types.mdx b/api_docs/kbn_alerting_state_types.mdx index 2fe86f2d22b8b..6872b20792374 100644 --- a/api_docs/kbn_alerting_state_types.mdx +++ b/api_docs/kbn_alerting_state_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-alerting-state-types title: "@kbn/alerting-state-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/alerting-state-types plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerting-state-types'] --- import kbnAlertingStateTypesObj from './kbn_alerting_state_types.devdocs.json'; diff --git a/api_docs/kbn_alerts_as_data_utils.mdx b/api_docs/kbn_alerts_as_data_utils.mdx index 6737b11b51f03..79b7a86a85920 100644 --- a/api_docs/kbn_alerts_as_data_utils.mdx +++ b/api_docs/kbn_alerts_as_data_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-alerts-as-data-utils title: "@kbn/alerts-as-data-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/alerts-as-data-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerts-as-data-utils'] --- import kbnAlertsAsDataUtilsObj from './kbn_alerts_as_data_utils.devdocs.json'; diff --git a/api_docs/kbn_alerts_ui_shared.mdx b/api_docs/kbn_alerts_ui_shared.mdx index a9afa800b7e69..0e8d1fc5b9187 100644 --- a/api_docs/kbn_alerts_ui_shared.mdx +++ b/api_docs/kbn_alerts_ui_shared.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-alerts-ui-shared title: "@kbn/alerts-ui-shared" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/alerts-ui-shared plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerts-ui-shared'] --- import kbnAlertsUiSharedObj from './kbn_alerts_ui_shared.devdocs.json'; diff --git a/api_docs/kbn_analytics.mdx b/api_docs/kbn_analytics.mdx index 85acfc92a413f..ff754cd865054 100644 --- a/api_docs/kbn_analytics.mdx +++ b/api_docs/kbn_analytics.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics title: "@kbn/analytics" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/analytics plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics'] --- import kbnAnalyticsObj from './kbn_analytics.devdocs.json'; diff --git a/api_docs/kbn_analytics_client.devdocs.json b/api_docs/kbn_analytics_client.devdocs.json index 729a79904b379..08169d4866da6 100644 --- a/api_docs/kbn_analytics_client.devdocs.json +++ b/api_docs/kbn_analytics_client.devdocs.json @@ -602,38 +602,6 @@ "deprecated": false, "trackAdoption": true, "references": [ - { - "plugin": "@kbn/ebt-tools", - "path": "packages/kbn-ebt-tools/src/performance_metric_events/helpers.ts" - }, - { - "plugin": "@kbn/core-analytics-browser-internal", - "path": "packages/core/analytics/core-analytics-browser-internal/src/track_clicks.ts" - }, - { - "plugin": "@kbn/core-analytics-browser-internal", - "path": "packages/core/analytics/core-analytics-browser-internal/src/track_viewport_size.ts" - }, - { - "plugin": "@kbn/core-analytics-browser-internal", - "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" - }, - { - "plugin": "@kbn/core-analytics-browser-internal", - "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" - }, - { - "plugin": "@kbn/core-analytics-browser-internal", - "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" - }, - { - "plugin": "@kbn/core-analytics-browser-internal", - "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" - }, - { - "plugin": "@kbn/core-root-browser-internal", - "path": "packages/core/root/core-root-browser-internal/src/core_system.ts" - }, { "plugin": "@kbn/core-status-server-internal", "path": "packages/core/status/core-status-server-internal/src/status_service.ts" @@ -662,6 +630,10 @@ "plugin": "@kbn/core-plugins-server-internal", "path": "packages/core/plugins/core-plugins-server-internal/src/plugin_context.ts" }, + { + "plugin": "@kbn/ebt-tools", + "path": "packages/kbn-ebt-tools/src/performance_metric_events/helpers.ts" + }, { "plugin": "@kbn/core-analytics-server-internal", "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" @@ -690,6 +662,34 @@ "plugin": "@kbn/core-root-server-internal", "path": "packages/core/root/core-root-server-internal/src/server.ts" }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/track_clicks.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/track_viewport_size.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-root-browser-internal", + "path": "packages/core/root/core-root-browser-internal/src/core_system.ts" + }, { "plugin": "security", "path": "x-pack/plugins/security/server/analytics/analytics_service.ts" @@ -710,6 +710,22 @@ "plugin": "fleet", "path": "x-pack/plugins/fleet/server/services/telemetry/fleet_usage_sender.ts" }, + { + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts" + }, + { + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts" + }, + { + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts" + }, + { + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts" + }, { "plugin": "infra", "path": "x-pack/plugins/infra/public/services/telemetry/telemetry_client.ts" @@ -742,22 +758,6 @@ "plugin": "globalSearchBar", "path": "x-pack/plugins/global_search_bar/public/telemetry/event_reporter.ts" }, - { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts" - }, - { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts" - }, - { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts" - }, - { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts" - }, { "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/public/common/lib/telemetry/telemetry_client.ts" @@ -1256,46 +1256,6 @@ "deprecated": false, "trackAdoption": true, "references": [ - { - "plugin": "@kbn/core-application-browser-internal", - "path": "packages/core/application/core-application-browser-internal/src/register_analytics_context_provider.ts" - }, - { - "plugin": "@kbn/core-analytics-browser-internal", - "path": "packages/core/analytics/core-analytics-browser-internal/src/track_viewport_size.ts" - }, - { - "plugin": "@kbn/core-analytics-browser-internal", - "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" - }, - { - "plugin": "@kbn/core-analytics-browser-internal", - "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" - }, - { - "plugin": "@kbn/core-analytics-browser-internal", - "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" - }, - { - "plugin": "@kbn/core-analytics-browser-internal", - "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" - }, - { - "plugin": "@kbn/core-analytics-browser-internal", - "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" - }, - { - "plugin": "@kbn/core-analytics-browser-internal", - "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" - }, - { - "plugin": "@kbn/core-execution-context-browser-internal", - "path": "packages/core/execution-context/core-execution-context-browser-internal/src/execution_context_service.ts" - }, - { - "plugin": "@kbn/core-chrome-browser-internal", - "path": "packages/core/chrome/core-chrome-browser-internal/src/register_analytics_context_provider.ts" - }, { "plugin": "@kbn/core-elasticsearch-server-internal", "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/register_analytics_context_provider.ts" @@ -1348,6 +1308,46 @@ "plugin": "licensing", "path": "x-pack/plugins/licensing/common/register_analytics_context_provider.ts" }, + { + "plugin": "@kbn/core-application-browser-internal", + "path": "packages/core/application/core-application-browser-internal/src/register_analytics_context_provider.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/track_viewport_size.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-execution-context-browser-internal", + "path": "packages/core/execution-context/core-execution-context-browser-internal/src/execution_context_service.ts" + }, + { + "plugin": "@kbn/core-chrome-browser-internal", + "path": "packages/core/chrome/core-chrome-browser-internal/src/register_analytics_context_provider.ts" + }, { "plugin": "cloud", "path": "x-pack/plugins/cloud/common/register_cloud_deployment_id_analytics_context.ts" @@ -1358,11 +1358,11 @@ }, { "plugin": "telemetry", - "path": "src/plugins/telemetry/server/plugin.ts" + "path": "src/plugins/telemetry/public/plugin.ts" }, { "plugin": "telemetry", - "path": "src/plugins/telemetry/public/plugin.ts" + "path": "src/plugins/telemetry/server/plugin.ts" }, { "plugin": "securitySolution", diff --git a/api_docs/kbn_analytics_client.mdx b/api_docs/kbn_analytics_client.mdx index 5d9ab96b22204..19dc10d4fa688 100644 --- a/api_docs/kbn_analytics_client.mdx +++ b/api_docs/kbn_analytics_client.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-client title: "@kbn/analytics-client" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/analytics-client plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-client'] --- import kbnAnalyticsClientObj from './kbn_analytics_client.devdocs.json'; diff --git a/api_docs/kbn_analytics_shippers_elastic_v3_browser.mdx b/api_docs/kbn_analytics_shippers_elastic_v3_browser.mdx index b45b51a34f87f..05ef3415fb544 100644 --- a/api_docs/kbn_analytics_shippers_elastic_v3_browser.mdx +++ b/api_docs/kbn_analytics_shippers_elastic_v3_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-shippers-elastic-v3-browser title: "@kbn/analytics-shippers-elastic-v3-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/analytics-shippers-elastic-v3-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-elastic-v3-browser'] --- import kbnAnalyticsShippersElasticV3BrowserObj from './kbn_analytics_shippers_elastic_v3_browser.devdocs.json'; diff --git a/api_docs/kbn_analytics_shippers_elastic_v3_common.mdx b/api_docs/kbn_analytics_shippers_elastic_v3_common.mdx index 917f2488b8911..7fc3bc4172509 100644 --- a/api_docs/kbn_analytics_shippers_elastic_v3_common.mdx +++ b/api_docs/kbn_analytics_shippers_elastic_v3_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-shippers-elastic-v3-common title: "@kbn/analytics-shippers-elastic-v3-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/analytics-shippers-elastic-v3-common plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-elastic-v3-common'] --- import kbnAnalyticsShippersElasticV3CommonObj from './kbn_analytics_shippers_elastic_v3_common.devdocs.json'; diff --git a/api_docs/kbn_analytics_shippers_elastic_v3_server.mdx b/api_docs/kbn_analytics_shippers_elastic_v3_server.mdx index e053f76a81c4b..c4a870440c4c7 100644 --- a/api_docs/kbn_analytics_shippers_elastic_v3_server.mdx +++ b/api_docs/kbn_analytics_shippers_elastic_v3_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-shippers-elastic-v3-server title: "@kbn/analytics-shippers-elastic-v3-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/analytics-shippers-elastic-v3-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-elastic-v3-server'] --- import kbnAnalyticsShippersElasticV3ServerObj from './kbn_analytics_shippers_elastic_v3_server.devdocs.json'; diff --git a/api_docs/kbn_analytics_shippers_fullstory.mdx b/api_docs/kbn_analytics_shippers_fullstory.mdx index 30d140b612a04..dce630ea8be40 100644 --- a/api_docs/kbn_analytics_shippers_fullstory.mdx +++ b/api_docs/kbn_analytics_shippers_fullstory.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-shippers-fullstory title: "@kbn/analytics-shippers-fullstory" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/analytics-shippers-fullstory plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-fullstory'] --- import kbnAnalyticsShippersFullstoryObj from './kbn_analytics_shippers_fullstory.devdocs.json'; diff --git a/api_docs/kbn_analytics_shippers_gainsight.mdx b/api_docs/kbn_analytics_shippers_gainsight.mdx index 335a0a6ea6b07..d7e27a73b471c 100644 --- a/api_docs/kbn_analytics_shippers_gainsight.mdx +++ b/api_docs/kbn_analytics_shippers_gainsight.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-shippers-gainsight title: "@kbn/analytics-shippers-gainsight" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/analytics-shippers-gainsight plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-gainsight'] --- import kbnAnalyticsShippersGainsightObj from './kbn_analytics_shippers_gainsight.devdocs.json'; diff --git a/api_docs/kbn_apm_config_loader.mdx b/api_docs/kbn_apm_config_loader.mdx index 96e67e175b3c1..b3d25217be2f9 100644 --- a/api_docs/kbn_apm_config_loader.mdx +++ b/api_docs/kbn_apm_config_loader.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-apm-config-loader title: "@kbn/apm-config-loader" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/apm-config-loader plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/apm-config-loader'] --- import kbnApmConfigLoaderObj from './kbn_apm_config_loader.devdocs.json'; diff --git a/api_docs/kbn_apm_synthtrace.mdx b/api_docs/kbn_apm_synthtrace.mdx index bceb838a745f7..48b59d222c6f9 100644 --- a/api_docs/kbn_apm_synthtrace.mdx +++ b/api_docs/kbn_apm_synthtrace.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-apm-synthtrace title: "@kbn/apm-synthtrace" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/apm-synthtrace plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/apm-synthtrace'] --- import kbnApmSynthtraceObj from './kbn_apm_synthtrace.devdocs.json'; diff --git a/api_docs/kbn_apm_synthtrace_client.mdx b/api_docs/kbn_apm_synthtrace_client.mdx index 22217bd57e12b..885dc1cf92265 100644 --- a/api_docs/kbn_apm_synthtrace_client.mdx +++ b/api_docs/kbn_apm_synthtrace_client.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-apm-synthtrace-client title: "@kbn/apm-synthtrace-client" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/apm-synthtrace-client plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/apm-synthtrace-client'] --- import kbnApmSynthtraceClientObj from './kbn_apm_synthtrace_client.devdocs.json'; diff --git a/api_docs/kbn_apm_utils.mdx b/api_docs/kbn_apm_utils.mdx index fae7d6590ecdf..49fc4b5bb6efa 100644 --- a/api_docs/kbn_apm_utils.mdx +++ b/api_docs/kbn_apm_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-apm-utils title: "@kbn/apm-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/apm-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/apm-utils'] --- import kbnApmUtilsObj from './kbn_apm_utils.devdocs.json'; diff --git a/api_docs/kbn_axe_config.mdx b/api_docs/kbn_axe_config.mdx index 2427430fc187e..40d59657d55af 100644 --- a/api_docs/kbn_axe_config.mdx +++ b/api_docs/kbn_axe_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-axe-config title: "@kbn/axe-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/axe-config plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/axe-config'] --- import kbnAxeConfigObj from './kbn_axe_config.devdocs.json'; diff --git a/api_docs/kbn_cases_components.devdocs.json b/api_docs/kbn_cases_components.devdocs.json index 45a0779eaea00..074fdc9435b06 100644 --- a/api_docs/kbn_cases_components.devdocs.json +++ b/api_docs/kbn_cases_components.devdocs.json @@ -27,7 +27,7 @@ "label": "getStatusConfiguration", "description": [], "signature": [ - "() => { open: { color: string; label: any; icon: \"folderOpen\"; }; \"in-progress\": { color: string; label: any; icon: \"folderExclamation\"; }; closed: { color: string; label: any; icon: \"folderCheck\"; }; }" + "() => { open: { color: string; label: string; icon: \"folderOpen\"; }; \"in-progress\": { color: string; label: string; icon: \"folderExclamation\"; }; closed: { color: string; label: string; icon: \"folderCheck\"; }; }" ], "path": "packages/kbn-cases-components/src/status/config.ts", "deprecated": false, diff --git a/api_docs/kbn_cases_components.mdx b/api_docs/kbn_cases_components.mdx index c01c94fc9c2f5..284edf993856e 100644 --- a/api_docs/kbn_cases_components.mdx +++ b/api_docs/kbn_cases_components.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-cases-components title: "@kbn/cases-components" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/cases-components plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/cases-components'] --- import kbnCasesComponentsObj from './kbn_cases_components.devdocs.json'; diff --git a/api_docs/kbn_cell_actions.mdx b/api_docs/kbn_cell_actions.mdx index 785ab3cc9b510..f93a5e02b1cbf 100644 --- a/api_docs/kbn_cell_actions.mdx +++ b/api_docs/kbn_cell_actions.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-cell-actions title: "@kbn/cell-actions" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/cell-actions plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/cell-actions'] --- import kbnCellActionsObj from './kbn_cell_actions.devdocs.json'; diff --git a/api_docs/kbn_chart_expressions_common.mdx b/api_docs/kbn_chart_expressions_common.mdx index 5e309c9df351b..808fe61b936e8 100644 --- a/api_docs/kbn_chart_expressions_common.mdx +++ b/api_docs/kbn_chart_expressions_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-chart-expressions-common title: "@kbn/chart-expressions-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/chart-expressions-common plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/chart-expressions-common'] --- import kbnChartExpressionsCommonObj from './kbn_chart_expressions_common.devdocs.json'; diff --git a/api_docs/kbn_chart_icons.mdx b/api_docs/kbn_chart_icons.mdx index 0d41a58b46463..1be81ee8035dc 100644 --- a/api_docs/kbn_chart_icons.mdx +++ b/api_docs/kbn_chart_icons.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-chart-icons title: "@kbn/chart-icons" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/chart-icons plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/chart-icons'] --- import kbnChartIconsObj from './kbn_chart_icons.devdocs.json'; diff --git a/api_docs/kbn_ci_stats_core.mdx b/api_docs/kbn_ci_stats_core.mdx index f837c97cc9f00..db7e1aefb5a68 100644 --- a/api_docs/kbn_ci_stats_core.mdx +++ b/api_docs/kbn_ci_stats_core.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ci-stats-core title: "@kbn/ci-stats-core" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ci-stats-core plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ci-stats-core'] --- import kbnCiStatsCoreObj from './kbn_ci_stats_core.devdocs.json'; diff --git a/api_docs/kbn_ci_stats_performance_metrics.mdx b/api_docs/kbn_ci_stats_performance_metrics.mdx index 0e89309e8f298..06fceede0dc57 100644 --- a/api_docs/kbn_ci_stats_performance_metrics.mdx +++ b/api_docs/kbn_ci_stats_performance_metrics.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ci-stats-performance-metrics title: "@kbn/ci-stats-performance-metrics" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ci-stats-performance-metrics plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ci-stats-performance-metrics'] --- import kbnCiStatsPerformanceMetricsObj from './kbn_ci_stats_performance_metrics.devdocs.json'; diff --git a/api_docs/kbn_ci_stats_reporter.mdx b/api_docs/kbn_ci_stats_reporter.mdx index f419a515695a0..dfb225c7b01c5 100644 --- a/api_docs/kbn_ci_stats_reporter.mdx +++ b/api_docs/kbn_ci_stats_reporter.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ci-stats-reporter title: "@kbn/ci-stats-reporter" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ci-stats-reporter plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ci-stats-reporter'] --- import kbnCiStatsReporterObj from './kbn_ci_stats_reporter.devdocs.json'; diff --git a/api_docs/kbn_cli_dev_mode.mdx b/api_docs/kbn_cli_dev_mode.mdx index 10efc871c8616..a54d38f667b97 100644 --- a/api_docs/kbn_cli_dev_mode.mdx +++ b/api_docs/kbn_cli_dev_mode.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-cli-dev-mode title: "@kbn/cli-dev-mode" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/cli-dev-mode plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/cli-dev-mode'] --- import kbnCliDevModeObj from './kbn_cli_dev_mode.devdocs.json'; diff --git a/api_docs/kbn_code_editor.mdx b/api_docs/kbn_code_editor.mdx index dbb8f61abcad1..217826ddff48a 100644 --- a/api_docs/kbn_code_editor.mdx +++ b/api_docs/kbn_code_editor.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-code-editor title: "@kbn/code-editor" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/code-editor plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/code-editor'] --- import kbnCodeEditorObj from './kbn_code_editor.devdocs.json'; diff --git a/api_docs/kbn_code_editor_mocks.mdx b/api_docs/kbn_code_editor_mocks.mdx index b1c0b209258bd..fecd7bd0b037c 100644 --- a/api_docs/kbn_code_editor_mocks.mdx +++ b/api_docs/kbn_code_editor_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-code-editor-mocks title: "@kbn/code-editor-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/code-editor-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/code-editor-mocks'] --- import kbnCodeEditorMocksObj from './kbn_code_editor_mocks.devdocs.json'; diff --git a/api_docs/kbn_coloring.devdocs.json b/api_docs/kbn_coloring.devdocs.json index a62c386424a76..e8c0cba7b4c2c 100644 --- a/api_docs/kbn_coloring.devdocs.json +++ b/api_docs/kbn_coloring.devdocs.json @@ -667,8 +667,7 @@ "label": "makeColorWithAlpha", "description": [], "signature": [ - "(color: string, newAlpha: number) => ", - "Color" + "(color: string, newAlpha: number) => chroma.Color" ], "path": "packages/kbn-coloring/src/color_manipulation/index.ts", "deprecated": false, diff --git a/api_docs/kbn_coloring.mdx b/api_docs/kbn_coloring.mdx index 7d3bf8f9d84d0..f249ccb8cff35 100644 --- a/api_docs/kbn_coloring.mdx +++ b/api_docs/kbn_coloring.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-coloring title: "@kbn/coloring" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/coloring plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/coloring'] --- import kbnColoringObj from './kbn_coloring.devdocs.json'; diff --git a/api_docs/kbn_config.mdx b/api_docs/kbn_config.mdx index a811eb8e79a21..d1111022056da 100644 --- a/api_docs/kbn_config.mdx +++ b/api_docs/kbn_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-config title: "@kbn/config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/config plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/config'] --- import kbnConfigObj from './kbn_config.devdocs.json'; diff --git a/api_docs/kbn_config_mocks.mdx b/api_docs/kbn_config_mocks.mdx index e0d51c953032b..dd51c0e6041d2 100644 --- a/api_docs/kbn_config_mocks.mdx +++ b/api_docs/kbn_config_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-config-mocks title: "@kbn/config-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/config-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/config-mocks'] --- import kbnConfigMocksObj from './kbn_config_mocks.devdocs.json'; diff --git a/api_docs/kbn_config_schema.devdocs.json b/api_docs/kbn_config_schema.devdocs.json index a4d1c926d9f23..4d82048910c62 100644 --- a/api_docs/kbn_config_schema.devdocs.json +++ b/api_docs/kbn_config_schema.devdocs.json @@ -1433,6 +1433,122 @@ ], "returnComment": [], "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/config-schema", + "id": "def-common.offeringBasedSchema", + "type": "Function", + "tags": [], + "label": "offeringBasedSchema", + "description": [ + "\nHelper to apply different validations depending on whether Kibana is running the Serverless or Traditional offering.\n" + ], + "signature": [ + "(opts: { serverless?: ", + { + "pluginId": "@kbn/config-schema", + "scope": "common", + "docId": "kibKbnConfigSchemaPluginApi", + "section": "def-common.Type", + "text": "Type" + }, + " | undefined; traditional?: ", + { + "pluginId": "@kbn/config-schema", + "scope": "common", + "docId": "kibKbnConfigSchemaPluginApi", + "section": "def-common.Type", + "text": "Type" + }, + " | undefined; options?: ", + "TypeOptions", + " | undefined; }) => ", + { + "pluginId": "@kbn/config-schema", + "scope": "common", + "docId": "kibKbnConfigSchemaPluginApi", + "section": "def-common.ConditionalType", + "text": "ConditionalType" + }, + "" + ], + "path": "packages/kbn-config-schema/src/helpers/offering_based_schema.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/config-schema", + "id": "def-common.offeringBasedSchema.$1", + "type": "Object", + "tags": [], + "label": "opts", + "description": [], + "path": "packages/kbn-config-schema/src/helpers/offering_based_schema.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/config-schema", + "id": "def-common.offeringBasedSchema.$1.serverless", + "type": "Object", + "tags": [], + "label": "serverless", + "description": [], + "signature": [ + { + "pluginId": "@kbn/config-schema", + "scope": "common", + "docId": "kibKbnConfigSchemaPluginApi", + "section": "def-common.Type", + "text": "Type" + }, + " | undefined" + ], + "path": "packages/kbn-config-schema/src/helpers/offering_based_schema.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/config-schema", + "id": "def-common.offeringBasedSchema.$1.traditional", + "type": "Object", + "tags": [], + "label": "traditional", + "description": [], + "signature": [ + { + "pluginId": "@kbn/config-schema", + "scope": "common", + "docId": "kibKbnConfigSchemaPluginApi", + "section": "def-common.Type", + "text": "Type" + }, + " | undefined" + ], + "path": "packages/kbn-config-schema/src/helpers/offering_based_schema.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/config-schema", + "id": "def-common.offeringBasedSchema.$1.options", + "type": "Object", + "tags": [], + "label": "options", + "description": [], + "signature": [ + "TypeOptions", + " | undefined" + ], + "path": "packages/kbn-config-schema/src/helpers/offering_based_schema.ts", + "deprecated": false, + "trackAdoption": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false } ], "interfaces": [ diff --git a/api_docs/kbn_config_schema.mdx b/api_docs/kbn_config_schema.mdx index 0898dcd5177bd..af7914fcc316d 100644 --- a/api_docs/kbn_config_schema.mdx +++ b/api_docs/kbn_config_schema.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-config-schema title: "@kbn/config-schema" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/config-schema plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/config-schema'] --- import kbnConfigSchemaObj from './kbn_config_schema.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 135 | 3 | 133 | 18 | +| 140 | 3 | 137 | 18 | ## Common diff --git a/api_docs/kbn_content_management_content_editor.mdx b/api_docs/kbn_content_management_content_editor.mdx index d735dff753a0c..90ab9c971e566 100644 --- a/api_docs/kbn_content_management_content_editor.mdx +++ b/api_docs/kbn_content_management_content_editor.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-content-management-content-editor title: "@kbn/content-management-content-editor" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/content-management-content-editor plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/content-management-content-editor'] --- import kbnContentManagementContentEditorObj from './kbn_content_management_content_editor.devdocs.json'; diff --git a/api_docs/kbn_content_management_tabbed_table_list_view.mdx b/api_docs/kbn_content_management_tabbed_table_list_view.mdx index bee0a38ed3048..55f88a81f52be 100644 --- a/api_docs/kbn_content_management_tabbed_table_list_view.mdx +++ b/api_docs/kbn_content_management_tabbed_table_list_view.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-content-management-tabbed-table-list-view title: "@kbn/content-management-tabbed-table-list-view" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/content-management-tabbed-table-list-view plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/content-management-tabbed-table-list-view'] --- import kbnContentManagementTabbedTableListViewObj from './kbn_content_management_tabbed_table_list_view.devdocs.json'; diff --git a/api_docs/kbn_content_management_table_list_view.mdx b/api_docs/kbn_content_management_table_list_view.mdx index 36aeb8f6cd566..62ff3bf55a43e 100644 --- a/api_docs/kbn_content_management_table_list_view.mdx +++ b/api_docs/kbn_content_management_table_list_view.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-content-management-table-list-view title: "@kbn/content-management-table-list-view" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/content-management-table-list-view plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/content-management-table-list-view'] --- import kbnContentManagementTableListViewObj from './kbn_content_management_table_list_view.devdocs.json'; diff --git a/api_docs/kbn_content_management_table_list_view_table.mdx b/api_docs/kbn_content_management_table_list_view_table.mdx index 9f9b0a9d35cc0..fe0a8708dfe8e 100644 --- a/api_docs/kbn_content_management_table_list_view_table.mdx +++ b/api_docs/kbn_content_management_table_list_view_table.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-content-management-table-list-view-table title: "@kbn/content-management-table-list-view-table" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/content-management-table-list-view-table plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/content-management-table-list-view-table'] --- import kbnContentManagementTableListViewTableObj from './kbn_content_management_table_list_view_table.devdocs.json'; diff --git a/api_docs/kbn_content_management_utils.mdx b/api_docs/kbn_content_management_utils.mdx index e508c6eb3b3a8..3196d6f65f225 100644 --- a/api_docs/kbn_content_management_utils.mdx +++ b/api_docs/kbn_content_management_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-content-management-utils title: "@kbn/content-management-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/content-management-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/content-management-utils'] --- import kbnContentManagementUtilsObj from './kbn_content_management_utils.devdocs.json'; diff --git a/api_docs/kbn_core_analytics_browser.mdx b/api_docs/kbn_core_analytics_browser.mdx index 1d45f071691d3..d14487ea41909 100644 --- a/api_docs/kbn_core_analytics_browser.mdx +++ b/api_docs/kbn_core_analytics_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-browser title: "@kbn/core-analytics-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-analytics-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-browser'] --- import kbnCoreAnalyticsBrowserObj from './kbn_core_analytics_browser.devdocs.json'; diff --git a/api_docs/kbn_core_analytics_browser_internal.mdx b/api_docs/kbn_core_analytics_browser_internal.mdx index 3949481f6b726..fa13ab7f9255b 100644 --- a/api_docs/kbn_core_analytics_browser_internal.mdx +++ b/api_docs/kbn_core_analytics_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-browser-internal title: "@kbn/core-analytics-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-analytics-browser-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-browser-internal'] --- import kbnCoreAnalyticsBrowserInternalObj from './kbn_core_analytics_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_analytics_browser_mocks.mdx b/api_docs/kbn_core_analytics_browser_mocks.mdx index bd91cdaefddd7..3c2e40646419b 100644 --- a/api_docs/kbn_core_analytics_browser_mocks.mdx +++ b/api_docs/kbn_core_analytics_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-browser-mocks title: "@kbn/core-analytics-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-analytics-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-browser-mocks'] --- import kbnCoreAnalyticsBrowserMocksObj from './kbn_core_analytics_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_analytics_server.mdx b/api_docs/kbn_core_analytics_server.mdx index 65014f6fe8016..179a57ea33efb 100644 --- a/api_docs/kbn_core_analytics_server.mdx +++ b/api_docs/kbn_core_analytics_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-server title: "@kbn/core-analytics-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-analytics-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-server'] --- import kbnCoreAnalyticsServerObj from './kbn_core_analytics_server.devdocs.json'; diff --git a/api_docs/kbn_core_analytics_server_internal.mdx b/api_docs/kbn_core_analytics_server_internal.mdx index 7d76c2c9274a1..96ca98e81e987 100644 --- a/api_docs/kbn_core_analytics_server_internal.mdx +++ b/api_docs/kbn_core_analytics_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-server-internal title: "@kbn/core-analytics-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-analytics-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-server-internal'] --- import kbnCoreAnalyticsServerInternalObj from './kbn_core_analytics_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_analytics_server_mocks.mdx b/api_docs/kbn_core_analytics_server_mocks.mdx index e314184cf738d..4c7ccc6366467 100644 --- a/api_docs/kbn_core_analytics_server_mocks.mdx +++ b/api_docs/kbn_core_analytics_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-server-mocks title: "@kbn/core-analytics-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-analytics-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-server-mocks'] --- import kbnCoreAnalyticsServerMocksObj from './kbn_core_analytics_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_application_browser.devdocs.json b/api_docs/kbn_core_application_browser.devdocs.json index 3a19d55a1ffda..20496e028aadf 100644 --- a/api_docs/kbn_core_application_browser.devdocs.json +++ b/api_docs/kbn_core_application_browser.devdocs.json @@ -1170,14 +1170,14 @@ "plugin": "@kbn/core-application-browser-internal", "path": "packages/core/application/core-application-browser-internal/src/ui/app_container.tsx" }, - { - "plugin": "@kbn/core-application-browser-mocks", - "path": "packages/core/application/core-application-browser-mocks/src/application_service.mock.ts" - }, { "plugin": "management", "path": "src/plugins/management/public/application.tsx" }, + { + "plugin": "@kbn/core-application-browser-mocks", + "path": "packages/core/application/core-application-browser-mocks/src/application_service.mock.ts" + }, { "plugin": "fleet", "path": "x-pack/plugins/fleet/public/applications/integrations/index.tsx" diff --git a/api_docs/kbn_core_application_browser.mdx b/api_docs/kbn_core_application_browser.mdx index 5738b67634cde..989f10722449b 100644 --- a/api_docs/kbn_core_application_browser.mdx +++ b/api_docs/kbn_core_application_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-application-browser title: "@kbn/core-application-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-application-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-application-browser'] --- import kbnCoreApplicationBrowserObj from './kbn_core_application_browser.devdocs.json'; diff --git a/api_docs/kbn_core_application_browser_internal.mdx b/api_docs/kbn_core_application_browser_internal.mdx index d34650d5edaa0..d50591d1e9dbf 100644 --- a/api_docs/kbn_core_application_browser_internal.mdx +++ b/api_docs/kbn_core_application_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-application-browser-internal title: "@kbn/core-application-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-application-browser-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-application-browser-internal'] --- import kbnCoreApplicationBrowserInternalObj from './kbn_core_application_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_application_browser_mocks.mdx b/api_docs/kbn_core_application_browser_mocks.mdx index d7628edda262f..f796b3d255f1f 100644 --- a/api_docs/kbn_core_application_browser_mocks.mdx +++ b/api_docs/kbn_core_application_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-application-browser-mocks title: "@kbn/core-application-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-application-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-application-browser-mocks'] --- import kbnCoreApplicationBrowserMocksObj from './kbn_core_application_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_application_common.mdx b/api_docs/kbn_core_application_common.mdx index ed51de509dbb3..f29f080d74320 100644 --- a/api_docs/kbn_core_application_common.mdx +++ b/api_docs/kbn_core_application_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-application-common title: "@kbn/core-application-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-application-common plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-application-common'] --- import kbnCoreApplicationCommonObj from './kbn_core_application_common.devdocs.json'; diff --git a/api_docs/kbn_core_apps_browser_internal.mdx b/api_docs/kbn_core_apps_browser_internal.mdx index 4a5ed52963133..05ca26b8c4a62 100644 --- a/api_docs/kbn_core_apps_browser_internal.mdx +++ b/api_docs/kbn_core_apps_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-apps-browser-internal title: "@kbn/core-apps-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-apps-browser-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-apps-browser-internal'] --- import kbnCoreAppsBrowserInternalObj from './kbn_core_apps_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_apps_browser_mocks.mdx b/api_docs/kbn_core_apps_browser_mocks.mdx index 883a14233541b..fff9a3d151111 100644 --- a/api_docs/kbn_core_apps_browser_mocks.mdx +++ b/api_docs/kbn_core_apps_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-apps-browser-mocks title: "@kbn/core-apps-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-apps-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-apps-browser-mocks'] --- import kbnCoreAppsBrowserMocksObj from './kbn_core_apps_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_apps_server_internal.mdx b/api_docs/kbn_core_apps_server_internal.mdx index f0abbde5d32f8..622abb23a6d12 100644 --- a/api_docs/kbn_core_apps_server_internal.mdx +++ b/api_docs/kbn_core_apps_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-apps-server-internal title: "@kbn/core-apps-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-apps-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-apps-server-internal'] --- import kbnCoreAppsServerInternalObj from './kbn_core_apps_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_base_browser_mocks.mdx b/api_docs/kbn_core_base_browser_mocks.mdx index 9fb3ac5346b72..758066e522448 100644 --- a/api_docs/kbn_core_base_browser_mocks.mdx +++ b/api_docs/kbn_core_base_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-base-browser-mocks title: "@kbn/core-base-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-base-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-base-browser-mocks'] --- import kbnCoreBaseBrowserMocksObj from './kbn_core_base_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_base_common.mdx b/api_docs/kbn_core_base_common.mdx index 1184608d871a6..c707ab678587b 100644 --- a/api_docs/kbn_core_base_common.mdx +++ b/api_docs/kbn_core_base_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-base-common title: "@kbn/core-base-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-base-common plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-base-common'] --- import kbnCoreBaseCommonObj from './kbn_core_base_common.devdocs.json'; diff --git a/api_docs/kbn_core_base_server_internal.mdx b/api_docs/kbn_core_base_server_internal.mdx index baa170bb092cb..4c618ba242e87 100644 --- a/api_docs/kbn_core_base_server_internal.mdx +++ b/api_docs/kbn_core_base_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-base-server-internal title: "@kbn/core-base-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-base-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-base-server-internal'] --- import kbnCoreBaseServerInternalObj from './kbn_core_base_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_base_server_mocks.mdx b/api_docs/kbn_core_base_server_mocks.mdx index bab3f98d24b06..894745dbd0c4e 100644 --- a/api_docs/kbn_core_base_server_mocks.mdx +++ b/api_docs/kbn_core_base_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-base-server-mocks title: "@kbn/core-base-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-base-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-base-server-mocks'] --- import kbnCoreBaseServerMocksObj from './kbn_core_base_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_capabilities_browser_mocks.mdx b/api_docs/kbn_core_capabilities_browser_mocks.mdx index 95ef7613a7c7d..34a979ba604be 100644 --- a/api_docs/kbn_core_capabilities_browser_mocks.mdx +++ b/api_docs/kbn_core_capabilities_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-capabilities-browser-mocks title: "@kbn/core-capabilities-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-capabilities-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-capabilities-browser-mocks'] --- import kbnCoreCapabilitiesBrowserMocksObj from './kbn_core_capabilities_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_capabilities_common.mdx b/api_docs/kbn_core_capabilities_common.mdx index ca7c8062fe44b..a62909a5aa718 100644 --- a/api_docs/kbn_core_capabilities_common.mdx +++ b/api_docs/kbn_core_capabilities_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-capabilities-common title: "@kbn/core-capabilities-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-capabilities-common plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-capabilities-common'] --- import kbnCoreCapabilitiesCommonObj from './kbn_core_capabilities_common.devdocs.json'; diff --git a/api_docs/kbn_core_capabilities_server.mdx b/api_docs/kbn_core_capabilities_server.mdx index 93198937f495a..8c170352eb320 100644 --- a/api_docs/kbn_core_capabilities_server.mdx +++ b/api_docs/kbn_core_capabilities_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-capabilities-server title: "@kbn/core-capabilities-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-capabilities-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-capabilities-server'] --- import kbnCoreCapabilitiesServerObj from './kbn_core_capabilities_server.devdocs.json'; diff --git a/api_docs/kbn_core_capabilities_server_mocks.mdx b/api_docs/kbn_core_capabilities_server_mocks.mdx index 45ce6da80243d..7f6296d6e8b86 100644 --- a/api_docs/kbn_core_capabilities_server_mocks.mdx +++ b/api_docs/kbn_core_capabilities_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-capabilities-server-mocks title: "@kbn/core-capabilities-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-capabilities-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-capabilities-server-mocks'] --- import kbnCoreCapabilitiesServerMocksObj from './kbn_core_capabilities_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_chrome_browser.mdx b/api_docs/kbn_core_chrome_browser.mdx index 6029ae3bec1ae..c280c8feaa78b 100644 --- a/api_docs/kbn_core_chrome_browser.mdx +++ b/api_docs/kbn_core_chrome_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-chrome-browser title: "@kbn/core-chrome-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-chrome-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-chrome-browser'] --- import kbnCoreChromeBrowserObj from './kbn_core_chrome_browser.devdocs.json'; diff --git a/api_docs/kbn_core_chrome_browser_mocks.mdx b/api_docs/kbn_core_chrome_browser_mocks.mdx index c3fb562af09a6..965908826726d 100644 --- a/api_docs/kbn_core_chrome_browser_mocks.mdx +++ b/api_docs/kbn_core_chrome_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-chrome-browser-mocks title: "@kbn/core-chrome-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-chrome-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-chrome-browser-mocks'] --- import kbnCoreChromeBrowserMocksObj from './kbn_core_chrome_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_config_server_internal.mdx b/api_docs/kbn_core_config_server_internal.mdx index 44787d809e41f..b74b7f10d8a22 100644 --- a/api_docs/kbn_core_config_server_internal.mdx +++ b/api_docs/kbn_core_config_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-config-server-internal title: "@kbn/core-config-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-config-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-config-server-internal'] --- import kbnCoreConfigServerInternalObj from './kbn_core_config_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_browser.mdx b/api_docs/kbn_core_custom_branding_browser.mdx index cddfc058a76c8..c0fc90ec38703 100644 --- a/api_docs/kbn_core_custom_branding_browser.mdx +++ b/api_docs/kbn_core_custom_branding_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-browser title: "@kbn/core-custom-branding-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-browser'] --- import kbnCoreCustomBrandingBrowserObj from './kbn_core_custom_branding_browser.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_browser_internal.mdx b/api_docs/kbn_core_custom_branding_browser_internal.mdx index e6f8f6378478c..2be65db01f6f5 100644 --- a/api_docs/kbn_core_custom_branding_browser_internal.mdx +++ b/api_docs/kbn_core_custom_branding_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-browser-internal title: "@kbn/core-custom-branding-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-browser-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-browser-internal'] --- import kbnCoreCustomBrandingBrowserInternalObj from './kbn_core_custom_branding_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_browser_mocks.mdx b/api_docs/kbn_core_custom_branding_browser_mocks.mdx index b9cbc965f520e..8629c864f1614 100644 --- a/api_docs/kbn_core_custom_branding_browser_mocks.mdx +++ b/api_docs/kbn_core_custom_branding_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-browser-mocks title: "@kbn/core-custom-branding-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-browser-mocks'] --- import kbnCoreCustomBrandingBrowserMocksObj from './kbn_core_custom_branding_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_common.mdx b/api_docs/kbn_core_custom_branding_common.mdx index 8d43d7789c997..c6fa8b71c28e8 100644 --- a/api_docs/kbn_core_custom_branding_common.mdx +++ b/api_docs/kbn_core_custom_branding_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-common title: "@kbn/core-custom-branding-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-common plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-common'] --- import kbnCoreCustomBrandingCommonObj from './kbn_core_custom_branding_common.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_server.mdx b/api_docs/kbn_core_custom_branding_server.mdx index 7d3e23a4d805e..f5a7a66ec4f5d 100644 --- a/api_docs/kbn_core_custom_branding_server.mdx +++ b/api_docs/kbn_core_custom_branding_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-server title: "@kbn/core-custom-branding-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-server'] --- import kbnCoreCustomBrandingServerObj from './kbn_core_custom_branding_server.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_server_internal.mdx b/api_docs/kbn_core_custom_branding_server_internal.mdx index 119d01620ecdd..c040c69e71ffa 100644 --- a/api_docs/kbn_core_custom_branding_server_internal.mdx +++ b/api_docs/kbn_core_custom_branding_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-server-internal title: "@kbn/core-custom-branding-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-server-internal'] --- import kbnCoreCustomBrandingServerInternalObj from './kbn_core_custom_branding_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_server_mocks.mdx b/api_docs/kbn_core_custom_branding_server_mocks.mdx index 4084726f875c6..5c2fea9a71f84 100644 --- a/api_docs/kbn_core_custom_branding_server_mocks.mdx +++ b/api_docs/kbn_core_custom_branding_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-server-mocks title: "@kbn/core-custom-branding-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-server-mocks'] --- import kbnCoreCustomBrandingServerMocksObj from './kbn_core_custom_branding_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_browser.mdx b/api_docs/kbn_core_deprecations_browser.mdx index 517fd2062e9ba..fc5c5888a8efa 100644 --- a/api_docs/kbn_core_deprecations_browser.mdx +++ b/api_docs/kbn_core_deprecations_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-browser title: "@kbn/core-deprecations-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-browser'] --- import kbnCoreDeprecationsBrowserObj from './kbn_core_deprecations_browser.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_browser_internal.mdx b/api_docs/kbn_core_deprecations_browser_internal.mdx index 1de5704f3c5be..375517c6c9ae5 100644 --- a/api_docs/kbn_core_deprecations_browser_internal.mdx +++ b/api_docs/kbn_core_deprecations_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-browser-internal title: "@kbn/core-deprecations-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-browser-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-browser-internal'] --- import kbnCoreDeprecationsBrowserInternalObj from './kbn_core_deprecations_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_browser_mocks.mdx b/api_docs/kbn_core_deprecations_browser_mocks.mdx index 598737203fd25..f826dd08959f3 100644 --- a/api_docs/kbn_core_deprecations_browser_mocks.mdx +++ b/api_docs/kbn_core_deprecations_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-browser-mocks title: "@kbn/core-deprecations-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-browser-mocks'] --- import kbnCoreDeprecationsBrowserMocksObj from './kbn_core_deprecations_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_common.mdx b/api_docs/kbn_core_deprecations_common.mdx index 16702a8ca7ade..d55255f55c030 100644 --- a/api_docs/kbn_core_deprecations_common.mdx +++ b/api_docs/kbn_core_deprecations_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-common title: "@kbn/core-deprecations-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-common plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-common'] --- import kbnCoreDeprecationsCommonObj from './kbn_core_deprecations_common.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_server.mdx b/api_docs/kbn_core_deprecations_server.mdx index cd1144b2d852c..4b6147035bab7 100644 --- a/api_docs/kbn_core_deprecations_server.mdx +++ b/api_docs/kbn_core_deprecations_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-server title: "@kbn/core-deprecations-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-server'] --- import kbnCoreDeprecationsServerObj from './kbn_core_deprecations_server.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_server_internal.mdx b/api_docs/kbn_core_deprecations_server_internal.mdx index 0908266c2819a..1580a1539097d 100644 --- a/api_docs/kbn_core_deprecations_server_internal.mdx +++ b/api_docs/kbn_core_deprecations_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-server-internal title: "@kbn/core-deprecations-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-server-internal'] --- import kbnCoreDeprecationsServerInternalObj from './kbn_core_deprecations_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_server_mocks.mdx b/api_docs/kbn_core_deprecations_server_mocks.mdx index 33961abadd7c8..8e45f95c31b9a 100644 --- a/api_docs/kbn_core_deprecations_server_mocks.mdx +++ b/api_docs/kbn_core_deprecations_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-server-mocks title: "@kbn/core-deprecations-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-server-mocks'] --- import kbnCoreDeprecationsServerMocksObj from './kbn_core_deprecations_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_doc_links_browser.mdx b/api_docs/kbn_core_doc_links_browser.mdx index 47bee0498cc58..9d5e740198180 100644 --- a/api_docs/kbn_core_doc_links_browser.mdx +++ b/api_docs/kbn_core_doc_links_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-doc-links-browser title: "@kbn/core-doc-links-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-doc-links-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-doc-links-browser'] --- import kbnCoreDocLinksBrowserObj from './kbn_core_doc_links_browser.devdocs.json'; diff --git a/api_docs/kbn_core_doc_links_browser_mocks.mdx b/api_docs/kbn_core_doc_links_browser_mocks.mdx index de24e2a453cbf..837e3e09d30e7 100644 --- a/api_docs/kbn_core_doc_links_browser_mocks.mdx +++ b/api_docs/kbn_core_doc_links_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-doc-links-browser-mocks title: "@kbn/core-doc-links-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-doc-links-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-doc-links-browser-mocks'] --- import kbnCoreDocLinksBrowserMocksObj from './kbn_core_doc_links_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_doc_links_server.mdx b/api_docs/kbn_core_doc_links_server.mdx index 9997a15df84bf..a46854daa8e1d 100644 --- a/api_docs/kbn_core_doc_links_server.mdx +++ b/api_docs/kbn_core_doc_links_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-doc-links-server title: "@kbn/core-doc-links-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-doc-links-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-doc-links-server'] --- import kbnCoreDocLinksServerObj from './kbn_core_doc_links_server.devdocs.json'; diff --git a/api_docs/kbn_core_doc_links_server_mocks.mdx b/api_docs/kbn_core_doc_links_server_mocks.mdx index 06998e395141a..04aed2ec968ec 100644 --- a/api_docs/kbn_core_doc_links_server_mocks.mdx +++ b/api_docs/kbn_core_doc_links_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-doc-links-server-mocks title: "@kbn/core-doc-links-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-doc-links-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-doc-links-server-mocks'] --- import kbnCoreDocLinksServerMocksObj from './kbn_core_doc_links_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_elasticsearch_client_server_internal.mdx b/api_docs/kbn_core_elasticsearch_client_server_internal.mdx index c0d20f10d34d1..5614dfecddeae 100644 --- a/api_docs/kbn_core_elasticsearch_client_server_internal.mdx +++ b/api_docs/kbn_core_elasticsearch_client_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-client-server-internal title: "@kbn/core-elasticsearch-client-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-elasticsearch-client-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-client-server-internal'] --- import kbnCoreElasticsearchClientServerInternalObj from './kbn_core_elasticsearch_client_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx b/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx index ff77c423b5434..5234f41e82b0e 100644 --- a/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx +++ b/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-client-server-mocks title: "@kbn/core-elasticsearch-client-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-elasticsearch-client-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-client-server-mocks'] --- import kbnCoreElasticsearchClientServerMocksObj from './kbn_core_elasticsearch_client_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_elasticsearch_server.mdx b/api_docs/kbn_core_elasticsearch_server.mdx index 17f5e711d82cf..28153855dfbed 100644 --- a/api_docs/kbn_core_elasticsearch_server.mdx +++ b/api_docs/kbn_core_elasticsearch_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-server title: "@kbn/core-elasticsearch-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-elasticsearch-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-server'] --- import kbnCoreElasticsearchServerObj from './kbn_core_elasticsearch_server.devdocs.json'; diff --git a/api_docs/kbn_core_elasticsearch_server_internal.mdx b/api_docs/kbn_core_elasticsearch_server_internal.mdx index 5fbd5caf660d4..7eaa5e3f26262 100644 --- a/api_docs/kbn_core_elasticsearch_server_internal.mdx +++ b/api_docs/kbn_core_elasticsearch_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-server-internal title: "@kbn/core-elasticsearch-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-elasticsearch-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-server-internal'] --- import kbnCoreElasticsearchServerInternalObj from './kbn_core_elasticsearch_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_elasticsearch_server_mocks.mdx b/api_docs/kbn_core_elasticsearch_server_mocks.mdx index b0d55b5453f9e..381eb93653104 100644 --- a/api_docs/kbn_core_elasticsearch_server_mocks.mdx +++ b/api_docs/kbn_core_elasticsearch_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-server-mocks title: "@kbn/core-elasticsearch-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-elasticsearch-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-server-mocks'] --- import kbnCoreElasticsearchServerMocksObj from './kbn_core_elasticsearch_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_environment_server_internal.mdx b/api_docs/kbn_core_environment_server_internal.mdx index d2bcc01cfae66..dbd36a1e93529 100644 --- a/api_docs/kbn_core_environment_server_internal.mdx +++ b/api_docs/kbn_core_environment_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-environment-server-internal title: "@kbn/core-environment-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-environment-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-environment-server-internal'] --- import kbnCoreEnvironmentServerInternalObj from './kbn_core_environment_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_environment_server_mocks.mdx b/api_docs/kbn_core_environment_server_mocks.mdx index 693855766d831..b90ea4c02eb99 100644 --- a/api_docs/kbn_core_environment_server_mocks.mdx +++ b/api_docs/kbn_core_environment_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-environment-server-mocks title: "@kbn/core-environment-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-environment-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-environment-server-mocks'] --- import kbnCoreEnvironmentServerMocksObj from './kbn_core_environment_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_browser.mdx b/api_docs/kbn_core_execution_context_browser.mdx index 24dc11b0df6f3..5083a5c46e97d 100644 --- a/api_docs/kbn_core_execution_context_browser.mdx +++ b/api_docs/kbn_core_execution_context_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-browser title: "@kbn/core-execution-context-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-browser'] --- import kbnCoreExecutionContextBrowserObj from './kbn_core_execution_context_browser.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_browser_internal.mdx b/api_docs/kbn_core_execution_context_browser_internal.mdx index 49404516a0f49..732fb847f9542 100644 --- a/api_docs/kbn_core_execution_context_browser_internal.mdx +++ b/api_docs/kbn_core_execution_context_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-browser-internal title: "@kbn/core-execution-context-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-browser-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-browser-internal'] --- import kbnCoreExecutionContextBrowserInternalObj from './kbn_core_execution_context_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_browser_mocks.mdx b/api_docs/kbn_core_execution_context_browser_mocks.mdx index 39f45e628ed96..5213a0340ba30 100644 --- a/api_docs/kbn_core_execution_context_browser_mocks.mdx +++ b/api_docs/kbn_core_execution_context_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-browser-mocks title: "@kbn/core-execution-context-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-browser-mocks'] --- import kbnCoreExecutionContextBrowserMocksObj from './kbn_core_execution_context_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_common.mdx b/api_docs/kbn_core_execution_context_common.mdx index 1ed93378e090b..4b4fbda91fe66 100644 --- a/api_docs/kbn_core_execution_context_common.mdx +++ b/api_docs/kbn_core_execution_context_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-common title: "@kbn/core-execution-context-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-common plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-common'] --- import kbnCoreExecutionContextCommonObj from './kbn_core_execution_context_common.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_server.mdx b/api_docs/kbn_core_execution_context_server.mdx index 130c639198d1c..88816b0e09f90 100644 --- a/api_docs/kbn_core_execution_context_server.mdx +++ b/api_docs/kbn_core_execution_context_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-server title: "@kbn/core-execution-context-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-server'] --- import kbnCoreExecutionContextServerObj from './kbn_core_execution_context_server.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_server_internal.mdx b/api_docs/kbn_core_execution_context_server_internal.mdx index f6e610241dd4b..07a7eb01d52cd 100644 --- a/api_docs/kbn_core_execution_context_server_internal.mdx +++ b/api_docs/kbn_core_execution_context_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-server-internal title: "@kbn/core-execution-context-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-server-internal'] --- import kbnCoreExecutionContextServerInternalObj from './kbn_core_execution_context_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_server_mocks.mdx b/api_docs/kbn_core_execution_context_server_mocks.mdx index 640440f8b0b5a..963dba2c75e2a 100644 --- a/api_docs/kbn_core_execution_context_server_mocks.mdx +++ b/api_docs/kbn_core_execution_context_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-server-mocks title: "@kbn/core-execution-context-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-server-mocks'] --- import kbnCoreExecutionContextServerMocksObj from './kbn_core_execution_context_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_fatal_errors_browser.mdx b/api_docs/kbn_core_fatal_errors_browser.mdx index dfcd60cf89c99..1f52673861d25 100644 --- a/api_docs/kbn_core_fatal_errors_browser.mdx +++ b/api_docs/kbn_core_fatal_errors_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-fatal-errors-browser title: "@kbn/core-fatal-errors-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-fatal-errors-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-fatal-errors-browser'] --- import kbnCoreFatalErrorsBrowserObj from './kbn_core_fatal_errors_browser.devdocs.json'; diff --git a/api_docs/kbn_core_fatal_errors_browser_mocks.mdx b/api_docs/kbn_core_fatal_errors_browser_mocks.mdx index c8936bb5a25d6..f5715120bd0a5 100644 --- a/api_docs/kbn_core_fatal_errors_browser_mocks.mdx +++ b/api_docs/kbn_core_fatal_errors_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-fatal-errors-browser-mocks title: "@kbn/core-fatal-errors-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-fatal-errors-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-fatal-errors-browser-mocks'] --- import kbnCoreFatalErrorsBrowserMocksObj from './kbn_core_fatal_errors_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_http_browser.mdx b/api_docs/kbn_core_http_browser.mdx index e8f7f7a0946bb..bd2d11bd42a27 100644 --- a/api_docs/kbn_core_http_browser.mdx +++ b/api_docs/kbn_core_http_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-browser title: "@kbn/core-http-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-browser'] --- import kbnCoreHttpBrowserObj from './kbn_core_http_browser.devdocs.json'; diff --git a/api_docs/kbn_core_http_browser_internal.mdx b/api_docs/kbn_core_http_browser_internal.mdx index 421bf787efb71..7605a1b477cb4 100644 --- a/api_docs/kbn_core_http_browser_internal.mdx +++ b/api_docs/kbn_core_http_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-browser-internal title: "@kbn/core-http-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-browser-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-browser-internal'] --- import kbnCoreHttpBrowserInternalObj from './kbn_core_http_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_http_browser_mocks.mdx b/api_docs/kbn_core_http_browser_mocks.mdx index 5e630a3512a2d..3dacc0ae28d09 100644 --- a/api_docs/kbn_core_http_browser_mocks.mdx +++ b/api_docs/kbn_core_http_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-browser-mocks title: "@kbn/core-http-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-browser-mocks'] --- import kbnCoreHttpBrowserMocksObj from './kbn_core_http_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_http_common.mdx b/api_docs/kbn_core_http_common.mdx index e807b3d1ca973..e740f35a5b1ac 100644 --- a/api_docs/kbn_core_http_common.mdx +++ b/api_docs/kbn_core_http_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-common title: "@kbn/core-http-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-common plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-common'] --- import kbnCoreHttpCommonObj from './kbn_core_http_common.devdocs.json'; diff --git a/api_docs/kbn_core_http_context_server_mocks.mdx b/api_docs/kbn_core_http_context_server_mocks.mdx index e97bcffec84dc..1be1032d870fd 100644 --- a/api_docs/kbn_core_http_context_server_mocks.mdx +++ b/api_docs/kbn_core_http_context_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-context-server-mocks title: "@kbn/core-http-context-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-context-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-context-server-mocks'] --- import kbnCoreHttpContextServerMocksObj from './kbn_core_http_context_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_http_request_handler_context_server.mdx b/api_docs/kbn_core_http_request_handler_context_server.mdx index 9f79da75560e3..bcc8ecd0bf34c 100644 --- a/api_docs/kbn_core_http_request_handler_context_server.mdx +++ b/api_docs/kbn_core_http_request_handler_context_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-request-handler-context-server title: "@kbn/core-http-request-handler-context-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-request-handler-context-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-request-handler-context-server'] --- import kbnCoreHttpRequestHandlerContextServerObj from './kbn_core_http_request_handler_context_server.devdocs.json'; diff --git a/api_docs/kbn_core_http_resources_server.mdx b/api_docs/kbn_core_http_resources_server.mdx index 462ac1aeed8e8..36c881e5c7b02 100644 --- a/api_docs/kbn_core_http_resources_server.mdx +++ b/api_docs/kbn_core_http_resources_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-resources-server title: "@kbn/core-http-resources-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-resources-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-resources-server'] --- import kbnCoreHttpResourcesServerObj from './kbn_core_http_resources_server.devdocs.json'; diff --git a/api_docs/kbn_core_http_resources_server_internal.mdx b/api_docs/kbn_core_http_resources_server_internal.mdx index eb71465ccc80b..9031cc8cee98e 100644 --- a/api_docs/kbn_core_http_resources_server_internal.mdx +++ b/api_docs/kbn_core_http_resources_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-resources-server-internal title: "@kbn/core-http-resources-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-resources-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-resources-server-internal'] --- import kbnCoreHttpResourcesServerInternalObj from './kbn_core_http_resources_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_http_resources_server_mocks.mdx b/api_docs/kbn_core_http_resources_server_mocks.mdx index 0a379933fad32..0fae0f4032350 100644 --- a/api_docs/kbn_core_http_resources_server_mocks.mdx +++ b/api_docs/kbn_core_http_resources_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-resources-server-mocks title: "@kbn/core-http-resources-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-resources-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-resources-server-mocks'] --- import kbnCoreHttpResourcesServerMocksObj from './kbn_core_http_resources_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_http_router_server_internal.mdx b/api_docs/kbn_core_http_router_server_internal.mdx index 12c82a00d44cd..a7be580124a6f 100644 --- a/api_docs/kbn_core_http_router_server_internal.mdx +++ b/api_docs/kbn_core_http_router_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-router-server-internal title: "@kbn/core-http-router-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-router-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-router-server-internal'] --- import kbnCoreHttpRouterServerInternalObj from './kbn_core_http_router_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_http_router_server_mocks.devdocs.json b/api_docs/kbn_core_http_router_server_mocks.devdocs.json index 8dbc1fe6e57a7..929989bc0c910 100644 --- a/api_docs/kbn_core_http_router_server_mocks.devdocs.json +++ b/api_docs/kbn_core_http_router_server_mocks.devdocs.json @@ -80,7 +80,7 @@ "section": "def-common.RouteConfigOptions", "text": "RouteConfigOptions" }, - ", \"access\"> | undefined; access: \"internal\" | \"public\"; enableQueryVersion?: boolean | undefined; }" + ", \"access\"> | undefined; access: \"public\" | \"internal\"; enableQueryVersion?: boolean | undefined; }" ], "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts", "deprecated": false, diff --git a/api_docs/kbn_core_http_router_server_mocks.mdx b/api_docs/kbn_core_http_router_server_mocks.mdx index 463f6013fe2ec..923e23587eb00 100644 --- a/api_docs/kbn_core_http_router_server_mocks.mdx +++ b/api_docs/kbn_core_http_router_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-router-server-mocks title: "@kbn/core-http-router-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-router-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-router-server-mocks'] --- import kbnCoreHttpRouterServerMocksObj from './kbn_core_http_router_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_http_server.devdocs.json b/api_docs/kbn_core_http_server.devdocs.json index 7cdd8448f1dce..efe1548d0c612 100644 --- a/api_docs/kbn_core_http_server.devdocs.json +++ b/api_docs/kbn_core_http_server.devdocs.json @@ -3473,11 +3473,11 @@ }, { "plugin": "actions", - "path": "x-pack/plugins/actions/server/routes/get.ts" + "path": "x-pack/plugins/actions/server/routes/connector/get_all/get_all.ts" }, { "plugin": "actions", - "path": "x-pack/plugins/actions/server/routes/get_all.ts" + "path": "x-pack/plugins/actions/server/routes/get.ts" }, { "plugin": "actions", @@ -3624,28 +3624,60 @@ "path": "x-pack/plugins/rule_registry/server/routes/get_aad_fields_by_rule_type.ts" }, { - "plugin": "guidedOnboarding", - "path": "src/plugins/guided_onboarding/server/routes/guide_state_routes.ts" + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/find_endpoint_list_item_route.ts" }, { - "plugin": "guidedOnboarding", - "path": "src/plugins/guided_onboarding/server/routes/plugin_state_routes.ts" + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/find_exception_list_item_route.ts" }, { - "plugin": "guidedOnboarding", - "path": "src/plugins/guided_onboarding/server/routes/config_routes.ts" + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/find_exception_list_route.ts" }, { - "plugin": "observability", - "path": "x-pack/plugins/observability/server/lib/annotations/register_annotation_apis.ts" + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/list_item/find_list_item_route.ts" }, { - "plugin": "triggersActionsUi", - "path": "x-pack/plugins/triggers_actions_ui/server/routes/health.ts" + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/list_index/find_list_route.ts" }, { - "plugin": "triggersActionsUi", - "path": "x-pack/plugins/triggers_actions_ui/server/routes/config.ts" + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/internal/find_lists_by_size_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/read_endpoint_list_item_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/read_exception_list_item_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/read_exception_list_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/list_index/read_list_index_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/list_item/read_list_item_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/list/read_list_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/list_privileges/read_list_privileges_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/summary_exception_list_route.ts" }, { "plugin": "savedObjectsTagging", @@ -3671,6 +3703,94 @@ "plugin": "fleet", "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" }, + { + "plugin": "guidedOnboarding", + "path": "src/plugins/guided_onboarding/server/routes/guide_state_routes.ts" + }, + { + "plugin": "guidedOnboarding", + "path": "src/plugins/guided_onboarding/server/routes/plugin_state_routes.ts" + }, + { + "plugin": "guidedOnboarding", + "path": "src/plugins/guided_onboarding/server/routes/config_routes.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/fleet_integrations/api/get_installed_integrations/route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_exceptions/api/find_exception_references/route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/index/read_index_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/get_signals_migration_status_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/privileges/read_privileges_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/get_timeline/index.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/get_timelines/index.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/resolve_timeline/index.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/draft_timelines/get_draft_timelines/index.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/telemetry/telemetry_detection_rules_preview_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/index/read_alerts_index_exists_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/endpoint/routes/resolver.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_dev_tool_content/routes/read_prebuilt_dev_tool_content_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/risk_score/index_status/index.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/tags/routes/get_tags_by_name.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_status_route.ts" + }, + { + "plugin": "observability", + "path": "x-pack/plugins/observability/server/lib/annotations/register_annotation_apis.ts" + }, + { + "plugin": "triggersActionsUi", + "path": "x-pack/plugins/triggers_actions_ui/server/routes/health.ts" + }, + { + "plugin": "triggersActionsUi", + "path": "x-pack/plugins/triggers_actions_ui/server/routes/config.ts" + }, { "plugin": "visTypeTimeseries", "path": "src/plugins/vis_types/timeseries/server/routes/fields.ts" @@ -3787,6 +3907,10 @@ "plugin": "indexManagement", "path": "x-pack/plugins/index_management/server/routes/api/indices/register_list_route.ts" }, + { + "plugin": "indexManagement", + "path": "x-pack/plugins/index_management/server/routes/api/indices/register_get_route.ts" + }, { "plugin": "indexManagement", "path": "x-pack/plugins/index_management/server/routes/api/templates/register_get_routes.ts" @@ -4303,62 +4427,6 @@ "plugin": "licenseManagement", "path": "x-pack/plugins/license_management/server/routes/api/license/register_start_trial_routes.ts" }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/find_endpoint_list_item_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/find_exception_list_item_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/find_exception_list_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/find_list_item_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/find_list_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/find_lists_by_size_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/read_endpoint_list_item_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/read_exception_list_item_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/read_exception_list_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/read_list_index_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/read_list_item_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/read_list_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/read_privileges_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/summary_exception_list_route.ts" - }, { "plugin": "logstash", "path": "x-pack/plugins/logstash/server/routes/cluster/load.ts" @@ -4392,164 +4460,68 @@ "path": "x-pack/plugins/rollup/server/routes/api/jobs/register_get_route.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_cluster_health/get_cluster_health_route.ts" + "plugin": "serverlessSearch", + "path": "x-pack/plugins/serverless_search/server/routes/api_key_routes.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_space_health/get_space_health_route.ts" + "plugin": "serverlessSearch", + "path": "x-pack/plugins/serverless_search/server/routes/indices_routes.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/rule_execution_logs/get_rule_execution_events/get_rule_execution_events_route.ts" + "plugin": "serverlessSearch", + "path": "x-pack/plugins/serverless_search/server/routes/connectors_routes.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/rule_execution_logs/get_rule_execution_results/get_rule_execution_results_route.ts" + "plugin": "serverlessSearch", + "path": "x-pack/plugins/serverless_search/server/routes/connectors_routes.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.ts" + "plugin": "snapshotRestore", + "path": "x-pack/plugins/snapshot_restore/server/routes/api/app.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/get_prebuilt_rules_status/get_prebuilt_rules_status_route.ts" + "plugin": "snapshotRestore", + "path": "x-pack/plugins/snapshot_restore/server/routes/api/repositories.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/find_rules/route.ts" + "plugin": "snapshotRestore", + "path": "x-pack/plugins/snapshot_restore/server/routes/api/repositories.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/filters/route.ts" + "plugin": "snapshotRestore", + "path": "x-pack/plugins/snapshot_restore/server/routes/api/repositories.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/read_rule/route.ts" + "plugin": "snapshotRestore", + "path": "x-pack/plugins/snapshot_restore/server/routes/api/repositories.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/tags/read_tags/route.ts" + "plugin": "snapshotRestore", + "path": "x-pack/plugins/snapshot_restore/server/routes/api/snapshots.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/fleet_integrations/api/get_installed_integrations/route.ts" + "plugin": "snapshotRestore", + "path": "x-pack/plugins/snapshot_restore/server/routes/api/snapshots.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_exceptions/api/find_exception_references/route.ts" + "plugin": "snapshotRestore", + "path": "x-pack/plugins/snapshot_restore/server/routes/api/restore.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/index/read_index_route.ts" + "plugin": "snapshotRestore", + "path": "x-pack/plugins/snapshot_restore/server/routes/api/policy.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/get_signals_migration_status_route.ts" + "plugin": "snapshotRestore", + "path": "x-pack/plugins/snapshot_restore/server/routes/api/policy.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/privileges/read_privileges_route.ts" + "plugin": "snapshotRestore", + "path": "x-pack/plugins/snapshot_restore/server/routes/api/policy.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/get_timeline/index.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/get_timelines/index.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/resolve_timeline/index.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/draft_timelines/get_draft_timelines/index.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/telemetry/telemetry_detection_rules_preview_route.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/index/read_alerts_index_exists_route.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/routes/resolver.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_dev_tool_content/routes/read_prebuilt_dev_tool_content_route.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/risk_score/index_status/index.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/tags/routes/get_tags_by_name.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_status_route.ts" - }, - { - "plugin": "serverlessSearch", - "path": "x-pack/plugins/serverless_search/server/routes/api_key_routes.ts" - }, - { - "plugin": "serverlessSearch", - "path": "x-pack/plugins/serverless_search/server/routes/indices_routes.ts" - }, - { - "plugin": "snapshotRestore", - "path": "x-pack/plugins/snapshot_restore/server/routes/api/app.ts" - }, - { - "plugin": "snapshotRestore", - "path": "x-pack/plugins/snapshot_restore/server/routes/api/repositories.ts" - }, - { - "plugin": "snapshotRestore", - "path": "x-pack/plugins/snapshot_restore/server/routes/api/repositories.ts" - }, - { - "plugin": "snapshotRestore", - "path": "x-pack/plugins/snapshot_restore/server/routes/api/repositories.ts" - }, - { - "plugin": "snapshotRestore", - "path": "x-pack/plugins/snapshot_restore/server/routes/api/repositories.ts" - }, - { - "plugin": "snapshotRestore", - "path": "x-pack/plugins/snapshot_restore/server/routes/api/snapshots.ts" - }, - { - "plugin": "snapshotRestore", - "path": "x-pack/plugins/snapshot_restore/server/routes/api/snapshots.ts" - }, - { - "plugin": "snapshotRestore", - "path": "x-pack/plugins/snapshot_restore/server/routes/api/restore.ts" - }, - { - "plugin": "snapshotRestore", - "path": "x-pack/plugins/snapshot_restore/server/routes/api/policy.ts" - }, - { - "plugin": "snapshotRestore", - "path": "x-pack/plugins/snapshot_restore/server/routes/api/policy.ts" - }, - { - "plugin": "snapshotRestore", - "path": "x-pack/plugins/snapshot_restore/server/routes/api/policy.ts" - }, - { - "plugin": "snapshotRestore", - "path": "x-pack/plugins/snapshot_restore/server/routes/api/policy.ts" + "plugin": "snapshotRestore", + "path": "x-pack/plugins/snapshot_restore/server/routes/api/policy.ts" }, { "plugin": "snapshotRestore", @@ -4852,173 +4824,357 @@ "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" }, { - "plugin": "@kbn/core-http-router-server-mocks", - "path": "packages/core/http/core-http-router-server-mocks/src/router.mock.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/security/types.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/__mocks__/server.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" }, { - "plugin": "actions", - "path": "x-pack/plugins/actions/server/routes/connector_types.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" }, { - "plugin": "actions", - "path": "x-pack/plugins/actions/server/routes/connector_types.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" }, { - "plugin": "actions", - "path": "x-pack/plugins/actions/server/routes/connector_types.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" }, { - "plugin": "actions", - "path": "x-pack/plugins/actions/server/routes/connector_types.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" }, { - "plugin": "actions", - "path": "x-pack/plugins/actions/server/routes/get.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" }, { - "plugin": "actions", - "path": "x-pack/plugins/actions/server/routes/get.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" }, { - "plugin": "actions", - "path": "x-pack/plugins/actions/server/routes/get.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" }, { - "plugin": "actions", - "path": "x-pack/plugins/actions/server/routes/get_all.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" }, { - "plugin": "actions", - "path": "x-pack/plugins/actions/server/routes/get_all.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" }, { - "plugin": "actions", - "path": "x-pack/plugins/actions/server/routes/get_all.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/aggregate_rules.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/aggregate_rules.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/aggregate_rules.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/aggregate_rules.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/find_rules.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/find_rules.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/find_rules.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/find_rules.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/find_rules.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_action_error_log.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/data_streams/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_action_error_log.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/setup/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_flapping_settings.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_global_execution_kpi.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_global_execution_logs.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_rule.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_rule.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_rule.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_rule_alert_summary.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_rule_alert_summary.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_rule_execution_kpi.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_rule_execution_kpi.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_rule_execution_log.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/enrollment_api_key/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_rule_execution_log.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/enrollment_api_key/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_rule_state.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/enrollment_api_key/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_rule_state.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/enrollment_api_key/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_rule_state.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/output/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_rule_tags.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/output/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_rule_tags.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/settings/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/get_rule_tags.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/app/index.ts" }, { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/health.test.ts" - }, + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/download_source/index.tsx" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/download_source/index.tsx" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/fleet_server_hosts/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/fleet_server_hosts/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/fleet_proxies/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/fleet_proxies/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/uninstall_token/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/uninstall_token/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/security/fleet_router.test.ts" + }, + { + "plugin": "@kbn/core-http-router-server-mocks", + "path": "packages/core/http/core-http-router-server-mocks/src/router.mock.ts" + }, + { + "plugin": "actions", + "path": "x-pack/plugins/actions/server/routes/connector_types.test.ts" + }, + { + "plugin": "actions", + "path": "x-pack/plugins/actions/server/routes/connector_types.test.ts" + }, + { + "plugin": "actions", + "path": "x-pack/plugins/actions/server/routes/connector_types.test.ts" + }, + { + "plugin": "actions", + "path": "x-pack/plugins/actions/server/routes/connector_types.test.ts" + }, + { + "plugin": "actions", + "path": "x-pack/plugins/actions/server/routes/get.test.ts" + }, + { + "plugin": "actions", + "path": "x-pack/plugins/actions/server/routes/get.test.ts" + }, + { + "plugin": "actions", + "path": "x-pack/plugins/actions/server/routes/get.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/aggregate_rules.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/aggregate_rules.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/aggregate_rules.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/aggregate_rules.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/find_rules.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/find_rules.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/find_rules.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/find_rules.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/find_rules.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_action_error_log.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_action_error_log.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_flapping_settings.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_global_execution_kpi.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_global_execution_logs.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_rule.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_rule.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_rule.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_rule_alert_summary.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_rule_alert_summary.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_rule_execution_kpi.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_rule_execution_kpi.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_rule_execution_log.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_rule_execution_log.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_rule_state.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_rule_state.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_rule_state.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_rule_tags.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_rule_tags.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/get_rule_tags.test.ts" + }, + { + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/health.test.ts" + }, { "plugin": "alerting", "path": "x-pack/plugins/alerting/server/routes/health.test.ts" @@ -5455,6 +5611,18 @@ "plugin": "remoteClusters", "path": "x-pack/plugins/remote_clusters/server/routes/api/get_route.test.ts" }, + { + "plugin": "actions", + "path": "x-pack/plugins/actions/server/routes/connector/get_all/get_all.test.ts" + }, + { + "plugin": "actions", + "path": "x-pack/plugins/actions/server/routes/connector/get_all/get_all.test.ts" + }, + { + "plugin": "actions", + "path": "x-pack/plugins/actions/server/routes/connector/get_all/get_all.test.ts" + }, { "plugin": "crossClusterReplication", "path": "x-pack/plugins/cross_cluster_replication/server/routes/api/auto_follow_pattern/register_fetch_route.test.ts" @@ -5608,264 +5776,68 @@ "path": "packages/core/rendering/core-rendering-server-internal/src/bootstrap/register_bootstrap_route.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/services/security/types.ts" + "plugin": "indexManagement", + "path": "x-pack/plugins/index_management/server/test/helpers/router_mock.ts" }, { "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" + "path": "x-pack/plugins/fleet/server/services/security/fleet_router.test.ts" }, { "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" + "path": "x-pack/plugins/fleet/server/services/security/fleet_router.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" + "plugin": "security", + "path": "x-pack/plugins/security/server/routes/anonymous_access/get_capabilities.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" + "plugin": "security", + "path": "x-pack/plugins/security/server/routes/anonymous_access/get_state.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" + "plugin": "security", + "path": "x-pack/plugins/security/server/routes/api_keys/enabled.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" + "plugin": "security", + "path": "x-pack/plugins/security/server/routes/api_keys/get.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" + "plugin": "security", + "path": "x-pack/plugins/security/server/routes/authentication/index.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" + "plugin": "security", + "path": "x-pack/plugins/security/server/routes/indices/get_fields.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" + "plugin": "security", + "path": "x-pack/plugins/security/server/routes/role_mapping/feature_check.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" + "plugin": "security", + "path": "x-pack/plugins/security/server/routes/role_mapping/get.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" + "plugin": "security", + "path": "x-pack/plugins/security/server/routes/role_mapping/get.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" + "plugin": "security", + "path": "x-pack/plugins/security/server/routes/role_mapping/get.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" + "plugin": "security", + "path": "x-pack/plugins/security/server/routes/role_mapping/get.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" + "plugin": "security", + "path": "x-pack/plugins/security/server/routes/security_checkup/get_state.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/data_streams/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/setup/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/enrollment_api_key/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/enrollment_api_key/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/enrollment_api_key/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/enrollment_api_key/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/output/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/output/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/settings/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/app/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/download_source/index.tsx" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/download_source/index.tsx" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/fleet_server_hosts/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/fleet_server_hosts/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/fleet_proxies/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/fleet_proxies/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/uninstall_token/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/uninstall_token/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/services/security/fleet_router.test.ts" - }, - { - "plugin": "indexManagement", - "path": "x-pack/plugins/index_management/server/test/helpers/router_mock.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/services/security/fleet_router.test.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/services/security/fleet_router.test.ts" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/server/routes/anonymous_access/get_capabilities.test.ts" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/server/routes/anonymous_access/get_state.test.ts" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/server/routes/api_keys/enabled.test.ts" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/server/routes/api_keys/get.test.ts" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/server/routes/authentication/index.test.ts" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/server/routes/indices/get_fields.test.ts" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/server/routes/role_mapping/feature_check.test.ts" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/server/routes/role_mapping/get.test.ts" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/server/routes/role_mapping/get.test.ts" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/server/routes/role_mapping/get.test.ts" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/server/routes/role_mapping/get.test.ts" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/server/routes/security_checkup/get_state.test.ts" + "plugin": "security", + "path": "x-pack/plugins/security/server/routes/views/index.test.ts" }, { "plugin": "security", @@ -6490,24 +6462,60 @@ "path": "x-pack/plugins/rule_registry/server/routes/get_alert_summary.ts" }, { - "plugin": "observability", - "path": "x-pack/plugins/observability/server/lib/annotations/register_annotation_apis.ts" + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/create_endpoint_list_item_route.ts" }, { - "plugin": "triggersActionsUi", - "path": "x-pack/plugins/triggers_actions_ui/server/data/routes/time_series_query.ts" + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/create_endpoint_list_route.ts" }, { - "plugin": "triggersActionsUi", - "path": "x-pack/plugins/triggers_actions_ui/server/data/routes/fields.ts" + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/create_exception_list_item_route.ts" }, { - "plugin": "triggersActionsUi", - "path": "x-pack/plugins/triggers_actions_ui/server/data/routes/indices.ts" + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/create_exception_list_route.ts" }, { - "plugin": "ml", - "path": "x-pack/plugins/ml/server/routes/job_service.ts" + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/list_index/create_list_index_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/list_item/create_list_item_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/list/create_list_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/duplicate_exception_list_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/export_exception_list_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/list_index/export_list_item_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/internal/create_exception_filter_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/import_exceptions_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/list/import_list_item_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/internal/create_exceptions_list_route.ts" }, { "plugin": "savedObjectsTagging", @@ -6530,16 +6538,144 @@ "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" }, { - "plugin": "visTypeTimeseries", - "path": "src/plugins/vis_types/timeseries/server/routes/vis.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/create_timelines/index.ts" }, { - "plugin": "infra", - "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/import_timelines/index.ts" }, { - "plugin": "profiling", - "path": "x-pack/plugins/profiling/server/routes/setup.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/prepackaged_timelines/install_prepackaged_timelines/index.ts" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/server/routes/job_service.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/api/create_legacy_notification/route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/index/create_index_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_exceptions/api/create_rule_exceptions/route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_preview/api/preview_rules/route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/create_signals_migration_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/finalize_signals_migration_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/query_signals_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/open_close_signals_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/export_timelines/index.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/draft_timelines/clean_draft_timelines/index.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/endpoint/routes/resolver.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/endpoint/routes/resolver.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/risk_score/indices/delete_indices_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/routes/create_prebuilt_saved_objects.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/routes/delete_prebuilt_saved_objects.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/risk_score/onboarding/routes/install_risk_scores.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/exceptions/api/manage_exceptions/route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/dashboards/routes/get_dashboards_by_tags.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/set_alert_tags_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_score_preview_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_init_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_enable_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_disable_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_score_calculation_route.ts" + }, + { + "plugin": "observability", + "path": "x-pack/plugins/observability/server/lib/annotations/register_annotation_apis.ts" + }, + { + "plugin": "triggersActionsUi", + "path": "x-pack/plugins/triggers_actions_ui/server/data/routes/time_series_query.ts" + }, + { + "plugin": "triggersActionsUi", + "path": "x-pack/plugins/triggers_actions_ui/server/data/routes/fields.ts" + }, + { + "plugin": "triggersActionsUi", + "path": "x-pack/plugins/triggers_actions_ui/server/data/routes/indices.ts" + }, + { + "plugin": "visTypeTimeseries", + "path": "src/plugins/vis_types/timeseries/server/routes/vis.ts" + }, + { + "plugin": "infra", + "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts" + }, + { + "plugin": "profiling", + "path": "x-pack/plugins/profiling/server/routes/setup.ts" }, { "plugin": "assetManager", @@ -7025,62 +7161,6 @@ "plugin": "licenseManagement", "path": "x-pack/plugins/license_management/server/routes/api/license/register_permissions_route.ts" }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/create_endpoint_list_item_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/create_endpoint_list_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/create_exception_list_item_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/create_exception_list_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/create_list_index_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/create_list_item_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/create_list_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/duplicate_exception_list_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/export_exception_list_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/export_list_item_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/get_exception_filter_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/import_exceptions_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/import_list_item_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/internal/create_exceptions_list_route.ts" - }, { "plugin": "logstash", "path": "x-pack/plugins/logstash/server/routes/pipelines/delete.ts" @@ -7130,437 +7210,445 @@ "path": "x-pack/plugins/searchprofiler/server/routes/profile.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_cluster_health/get_cluster_health_route.ts" + "plugin": "serverless", + "path": "x-pack/plugins/serverless/server/plugin.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_rule_health/get_rule_health_route.ts" + "plugin": "snapshotRestore", + "path": "x-pack/plugins/snapshot_restore/server/routes/api/repositories.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_space_health/get_space_health_route.ts" + "plugin": "snapshotRestore", + "path": "x-pack/plugins/snapshot_restore/server/routes/api/snapshots.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/setup/setup_health_route.ts" + "plugin": "snapshotRestore", + "path": "x-pack/plugins/snapshot_restore/server/routes/api/restore.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/api/create_legacy_notification/route.ts" + "plugin": "snapshotRestore", + "path": "x-pack/plugins/snapshot_restore/server/routes/api/policy.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/index/create_index_route.ts" + "plugin": "snapshotRestore", + "path": "x-pack/plugins/snapshot_restore/server/routes/api/policy.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/create_timelines/index.ts" + "plugin": "snapshotRestore", + "path": "x-pack/plugins/snapshot_restore/server/routes/api/policy.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/import_timelines/index.ts" + "plugin": "synthetics", + "path": "x-pack/plugins/synthetics/server/server.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/prepackaged_timelines/install_prepackaged_timelines/index.ts" + "plugin": "upgradeAssistant", + "path": "x-pack/plugins/upgrade_assistant/server/routes/reindex_indices/reindex_indices.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/review_rule_installation/review_rule_installation_route.ts" + "plugin": "upgradeAssistant", + "path": "x-pack/plugins/upgrade_assistant/server/routes/reindex_indices/reindex_indices.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/review_rule_upgrade/review_rule_upgrade_route.ts" + "plugin": "upgradeAssistant", + "path": "x-pack/plugins/upgrade_assistant/server/routes/reindex_indices/batch_reindex_indices.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/perform_rule_installation/perform_rule_installation_route.ts" + "plugin": "upgradeAssistant", + "path": "x-pack/plugins/upgrade_assistant/server/routes/system_indices_migration.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/perform_rule_upgrade/perform_rule_upgrade_route.ts" + "plugin": "upgradeAssistant", + "path": "x-pack/plugins/upgrade_assistant/server/routes/update_index_settings.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_actions/route.ts" + "plugin": "upgradeAssistant", + "path": "x-pack/plugins/upgrade_assistant/server/routes/ml_snapshots.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_create_rules/route.ts" + "plugin": "upgradeAssistant", + "path": "x-pack/plugins/upgrade_assistant/server/routes/cluster_settings.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_delete_rules/route.ts" + "plugin": "uptime", + "path": "x-pack/plugins/uptime/server/legacy_uptime/uptime_server.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/create_rule/route.ts" + "plugin": "watcher", + "path": "x-pack/plugins/watcher/server/routes/api/indices/register_get_route.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/export_rules/route.ts" + "plugin": "watcher", + "path": "x-pack/plugins/watcher/server/routes/api/watches/register_delete_route.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/import_rules/route.ts" + "plugin": "watcher", + "path": "x-pack/plugins/watcher/server/routes/api/watch/register_visualize_route.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/coverage_overview/route.ts" + "plugin": "watcher", + "path": "x-pack/plugins/watcher/server/routes/api/register_list_fields_route.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_exceptions/api/create_rule_exceptions/route.ts" + "plugin": "grokdebugger", + "path": "x-pack/plugins/grokdebugger/server/lib/kibana_framework.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_preview/api/preview_rules/route.ts" + "plugin": "console", + "path": "src/plugins/console/server/routes/api/console/proxy/index.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/create_signals_migration_route.ts" + "plugin": "console", + "path": "src/plugins/console/server/routes/api/console/spec_definitions/index.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/finalize_signals_migration_route.ts" + "plugin": "contentManagement", + "path": "src/plugins/content_management/server/plugin.test.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/query_signals_route.ts" + "plugin": "contentManagement", + "path": "src/plugins/content_management/server/plugin.test.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/open_close_signals_route.ts" + "plugin": "contentManagement", + "path": "src/plugins/content_management/server/plugin.test.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/export_timelines/index.ts" + "plugin": "contentManagement", + "path": "src/plugins/content_management/server/plugin.test.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/draft_timelines/clean_draft_timelines/index.ts" + "plugin": "contentManagement", + "path": "src/plugins/content_management/server/plugin.test.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/routes/resolver.ts" + "plugin": "contentManagement", + "path": "src/plugins/content_management/server/plugin.test.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/routes/resolver.ts" + "plugin": "contentManagement", + "path": "src/plugins/content_management/server/plugin.test.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/risk_score/indices/delete_indices_route.ts" + "plugin": "contentManagement", + "path": "src/plugins/content_management/server/plugin.test.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/routes/create_prebuilt_saved_objects.ts" + "plugin": "dataViewManagement", + "path": "src/plugins/data_view_management/server/routes/preview_scripted_field.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/routes/delete_prebuilt_saved_objects.ts" + "plugin": "ftrApis", + "path": "src/plugins/ftr_apis/server/routes/kbn_client_so/bulk_delete.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/risk_score/onboarding/routes/install_risk_scores.ts" + "plugin": "ftrApis", + "path": "src/plugins/ftr_apis/server/routes/kbn_client_so/create.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/exceptions/api/manage_exceptions/route.ts" + "plugin": "ftrApis", + "path": "src/plugins/ftr_apis/server/routes/kbn_client_so/clean.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/dashboards/routes/get_dashboards_by_tags.ts" + "plugin": "interactiveSetup", + "path": "src/plugins/interactive_setup/server/routes/configure.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/set_alert_tags_route.ts" + "plugin": "interactiveSetup", + "path": "src/plugins/interactive_setup/server/routes/enroll.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_score_preview_route.ts" + "plugin": "interactiveSetup", + "path": "src/plugins/interactive_setup/server/routes/ping.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_init_route.ts" + "plugin": "interactiveSetup", + "path": "src/plugins/interactive_setup/server/routes/verify.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_enable_route.ts" + "plugin": "savedObjectsManagement", + "path": "src/plugins/saved_objects_management/server/routes/bulk_delete.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_disable_route.ts" + "plugin": "savedObjectsManagement", + "path": "src/plugins/saved_objects_management/server/routes/bulk_get.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_score_calculation_route.ts" + "plugin": "savedObjectsManagement", + "path": "src/plugins/saved_objects_management/server/routes/scroll_count.ts" }, { - "plugin": "serverless", - "path": "x-pack/plugins/serverless/server/plugin.ts" + "plugin": "visTypeTimelion", + "path": "src/plugins/vis_types/timelion/server/routes/run.ts" }, { - "plugin": "snapshotRestore", - "path": "x-pack/plugins/snapshot_restore/server/routes/api/repositories.ts" + "plugin": "@kbn/core-http-router-server-internal", + "path": "packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_route.test.ts" }, { - "plugin": "snapshotRestore", - "path": "x-pack/plugins/snapshot_restore/server/routes/api/snapshots.ts" + "plugin": "@kbn/core-http-router-server-internal", + "path": "packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_route.test.ts" }, { - "plugin": "snapshotRestore", - "path": "x-pack/plugins/snapshot_restore/server/routes/api/restore.ts" + "plugin": "@kbn/core-http-router-server-internal", + "path": "packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_route.test.ts" }, { - "plugin": "snapshotRestore", - "path": "x-pack/plugins/snapshot_restore/server/routes/api/policy.ts" + "plugin": "@kbn/core-http-router-server-internal", + "path": "packages/core/http/core-http-router-server-internal/src/router.ts" }, { - "plugin": "snapshotRestore", - "path": "x-pack/plugins/snapshot_restore/server/routes/api/policy.ts" + "plugin": "@kbn/core-http-router-server-internal", + "path": "packages/core/http/core-http-router-server-internal/src/router.ts" }, { - "plugin": "snapshotRestore", - "path": "x-pack/plugins/snapshot_restore/server/routes/api/policy.ts" + "plugin": "@kbn/core-http-router-server-internal", + "path": "packages/core/http/core-http-router-server-internal/src/router.test.ts" }, { - "plugin": "synthetics", - "path": "x-pack/plugins/synthetics/server/server.ts" + "plugin": "@kbn/core-http-router-server-internal", + "path": "packages/core/http/core-http-router-server-internal/src/router.test.ts" }, { - "plugin": "upgradeAssistant", - "path": "x-pack/plugins/upgrade_assistant/server/routes/reindex_indices/reindex_indices.ts" + "plugin": "@kbn/core-http-router-server-internal", + "path": "packages/core/http/core-http-router-server-internal/src/router.test.ts" }, { - "plugin": "upgradeAssistant", - "path": "x-pack/plugins/upgrade_assistant/server/routes/reindex_indices/reindex_indices.ts" + "plugin": "@kbn/core-http-server-internal", + "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" }, { - "plugin": "upgradeAssistant", - "path": "x-pack/plugins/upgrade_assistant/server/routes/reindex_indices/batch_reindex_indices.ts" + "plugin": "@kbn/core-http-server-internal", + "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" }, { - "plugin": "upgradeAssistant", - "path": "x-pack/plugins/upgrade_assistant/server/routes/system_indices_migration.ts" + "plugin": "@kbn/core-http-server-internal", + "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" }, { - "plugin": "upgradeAssistant", - "path": "x-pack/plugins/upgrade_assistant/server/routes/update_index_settings.ts" + "plugin": "@kbn/core-http-server-internal", + "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" }, { - "plugin": "upgradeAssistant", - "path": "x-pack/plugins/upgrade_assistant/server/routes/ml_snapshots.ts" + "plugin": "@kbn/core-http-server-internal", + "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" }, { - "plugin": "upgradeAssistant", - "path": "x-pack/plugins/upgrade_assistant/server/routes/cluster_settings.ts" + "plugin": "@kbn/core-http-server-internal", + "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" }, { - "plugin": "uptime", - "path": "x-pack/plugins/uptime/server/legacy_uptime/uptime_server.ts" + "plugin": "@kbn/core-http-server-internal", + "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" }, { - "plugin": "watcher", - "path": "x-pack/plugins/watcher/server/routes/api/indices/register_get_route.ts" + "plugin": "@kbn/core-http-server-internal", + "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" }, { - "plugin": "watcher", - "path": "x-pack/plugins/watcher/server/routes/api/watches/register_delete_route.ts" + "plugin": "@kbn/core-http-server-internal", + "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" }, { - "plugin": "watcher", - "path": "x-pack/plugins/watcher/server/routes/api/watch/register_visualize_route.ts" + "plugin": "@kbn/core-http-server-internal", + "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" }, { - "plugin": "watcher", - "path": "x-pack/plugins/watcher/server/routes/api/register_list_fields_route.ts" + "plugin": "@kbn/core-http-server-internal", + "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" }, { - "plugin": "grokdebugger", - "path": "x-pack/plugins/grokdebugger/server/lib/kibana_framework.ts" + "plugin": "@kbn/core-http-server-internal", + "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" }, { - "plugin": "console", - "path": "src/plugins/console/server/routes/api/console/proxy/index.ts" + "plugin": "@kbn/core-http-server-internal", + "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" }, { - "plugin": "console", - "path": "src/plugins/console/server/routes/api/console/spec_definitions/index.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/security/types.ts" }, { - "plugin": "contentManagement", - "path": "src/plugins/content_management/server/plugin.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" }, { - "plugin": "contentManagement", - "path": "src/plugins/content_management/server/plugin.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" }, { - "plugin": "contentManagement", - "path": "src/plugins/content_management/server/plugin.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" }, { - "plugin": "contentManagement", - "path": "src/plugins/content_management/server/plugin.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" }, { - "plugin": "contentManagement", - "path": "src/plugins/content_management/server/plugin.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" }, { - "plugin": "contentManagement", - "path": "src/plugins/content_management/server/plugin.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" }, { - "plugin": "contentManagement", - "path": "src/plugins/content_management/server/plugin.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" }, { - "plugin": "contentManagement", - "path": "src/plugins/content_management/server/plugin.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" }, { - "plugin": "dataViewManagement", - "path": "src/plugins/data_view_management/server/routes/preview_scripted_field.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" }, { - "plugin": "ftrApis", - "path": "src/plugins/ftr_apis/server/routes/kbn_client_so/bulk_delete.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" }, { - "plugin": "ftrApis", - "path": "src/plugins/ftr_apis/server/routes/kbn_client_so/create.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" }, { - "plugin": "ftrApis", - "path": "src/plugins/ftr_apis/server/routes/kbn_client_so/clean.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" }, { - "plugin": "interactiveSetup", - "path": "src/plugins/interactive_setup/server/routes/configure.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" }, { - "plugin": "interactiveSetup", - "path": "src/plugins/interactive_setup/server/routes/enroll.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" }, { - "plugin": "interactiveSetup", - "path": "src/plugins/interactive_setup/server/routes/ping.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" }, { - "plugin": "interactiveSetup", - "path": "src/plugins/interactive_setup/server/routes/verify.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" }, { - "plugin": "savedObjectsManagement", - "path": "src/plugins/saved_objects_management/server/routes/bulk_delete.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" }, { - "plugin": "savedObjectsManagement", - "path": "src/plugins/saved_objects_management/server/routes/bulk_get.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/setup/index.ts" }, { - "plugin": "savedObjectsManagement", - "path": "src/plugins/saved_objects_management/server/routes/scroll_count.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/setup/index.ts" }, { - "plugin": "visTypeTimelion", - "path": "src/plugins/vis_types/timelion/server/routes/run.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" }, { - "plugin": "@kbn/core-http-router-server-internal", - "path": "packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_route.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" }, { - "plugin": "@kbn/core-http-router-server-internal", - "path": "packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_route.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" }, { - "plugin": "@kbn/core-http-router-server-internal", - "path": "packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_route.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" }, { - "plugin": "@kbn/core-http-router-server-internal", - "path": "packages/core/http/core-http-router-server-internal/src/router.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" }, { - "plugin": "@kbn/core-http-router-server-internal", - "path": "packages/core/http/core-http-router-server-internal/src/router.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" }, { - "plugin": "@kbn/core-http-router-server-internal", - "path": "packages/core/http/core-http-router-server-internal/src/router.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" }, { - "plugin": "@kbn/core-http-router-server-internal", - "path": "packages/core/http/core-http-router-server-internal/src/router.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" }, { - "plugin": "@kbn/core-http-router-server-internal", - "path": "packages/core/http/core-http-router-server-internal/src/router.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" }, { - "plugin": "@kbn/core-http-server-internal", - "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/enrollment_api_key/index.ts" }, { - "plugin": "@kbn/core-http-server-internal", - "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/enrollment_api_key/index.ts" }, { - "plugin": "@kbn/core-http-server-internal", - "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/output/index.ts" }, { - "plugin": "@kbn/core-http-server-internal", - "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/output/index.ts" }, { - "plugin": "@kbn/core-http-server-internal", - "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/app/index.ts" }, { - "plugin": "@kbn/core-http-server-internal", - "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/app/index.ts" }, { - "plugin": "@kbn/core-http-server-internal", - "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/preconfiguration/index.ts" }, { - "plugin": "@kbn/core-http-server-internal", - "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/preconfiguration/index.ts" }, { - "plugin": "@kbn/core-http-server-internal", - "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/download_source/index.tsx" }, { - "plugin": "@kbn/core-http-server-internal", - "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/health_check/index.ts" }, { - "plugin": "@kbn/core-http-server-internal", - "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/fleet_server_hosts/index.ts" }, { - "plugin": "@kbn/core-http-server-internal", - "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/fleet_proxies/index.ts" }, { - "plugin": "@kbn/core-http-server-internal", - "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/message_signing_service/index.ts" }, { "plugin": "@kbn/core-http-router-server-mocks", "path": "packages/core/http/core-http-router-server-mocks/src/router.mock.ts" }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/__mocks__/server.ts" - }, { "plugin": "actions", "path": "x-pack/plugins/actions/server/routes/create.test.ts" @@ -8071,239 +8159,59 @@ }, { "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/rule/apis/create/create_rule_route.test.ts" - }, - { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/rule/apis/create/create_rule_route.test.ts" - }, - { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/rule/apis/create/create_rule_route.test.ts" - }, - { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/rule/apis/create/create_rule_route.test.ts" - }, - { - "plugin": "home", - "path": "src/plugins/home/server/plugin.test.ts" - }, - { - "plugin": "home", - "path": "src/plugins/home/server/plugin.test.ts" - }, - { - "plugin": "savedObjectsManagement", - "path": "src/plugins/saved_objects_management/server/routes/index.test.ts" - }, - { - "plugin": "savedObjectsManagement", - "path": "src/plugins/saved_objects_management/server/routes/index.test.ts" - }, - { - "plugin": "savedObjectsManagement", - "path": "src/plugins/saved_objects_management/server/routes/index.test.ts" - }, - { - "plugin": "savedObjectsManagement", - "path": "src/plugins/saved_objects_management/server/routes/index.test.ts" - }, - { - "plugin": "@kbn/core-capabilities-server-internal", - "path": "packages/core/capabilities/core-capabilities-server-internal/src/capabilities_service.test.ts" - }, - { - "plugin": "@kbn/core-capabilities-server-internal", - "path": "packages/core/capabilities/core-capabilities-server-internal/src/capabilities_service.test.ts" - }, - { - "plugin": "@kbn/core-capabilities-server-internal", - "path": "packages/core/capabilities/core-capabilities-server-internal/src/capabilities_service.test.ts" - }, - { - "plugin": "@kbn/core-capabilities-server-internal", - "path": "packages/core/capabilities/core-capabilities-server-internal/src/capabilities_service.test.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/services/security/types.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/setup/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/setup/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" + "path": "x-pack/plugins/alerting/server/routes/rule/apis/create/create_rule_route.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/enrollment_api_key/index.ts" + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/rule/apis/create/create_rule_route.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/enrollment_api_key/index.ts" + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/rule/apis/create/create_rule_route.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/output/index.ts" + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/rule/apis/create/create_rule_route.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/output/index.ts" + "plugin": "home", + "path": "src/plugins/home/server/plugin.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/app/index.ts" + "plugin": "home", + "path": "src/plugins/home/server/plugin.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/app/index.ts" + "plugin": "savedObjectsManagement", + "path": "src/plugins/saved_objects_management/server/routes/index.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/preconfiguration/index.ts" + "plugin": "savedObjectsManagement", + "path": "src/plugins/saved_objects_management/server/routes/index.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/preconfiguration/index.ts" + "plugin": "savedObjectsManagement", + "path": "src/plugins/saved_objects_management/server/routes/index.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/download_source/index.tsx" + "plugin": "savedObjectsManagement", + "path": "src/plugins/saved_objects_management/server/routes/index.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/health_check/index.ts" + "plugin": "@kbn/core-capabilities-server-internal", + "path": "packages/core/capabilities/core-capabilities-server-internal/src/capabilities_service.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/fleet_server_hosts/index.ts" + "plugin": "@kbn/core-capabilities-server-internal", + "path": "packages/core/capabilities/core-capabilities-server-internal/src/capabilities_service.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/fleet_proxies/index.ts" + "plugin": "@kbn/core-capabilities-server-internal", + "path": "packages/core/capabilities/core-capabilities-server-internal/src/capabilities_service.test.ts" }, { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/message_signing_service/index.ts" + "plugin": "@kbn/core-capabilities-server-internal", + "path": "packages/core/capabilities/core-capabilities-server-internal/src/capabilities_service.test.ts" }, { "plugin": "encryptedSavedObjects", @@ -8624,13 +8532,45 @@ "path": "x-pack/plugins/alerting/server/routes/update_rule.ts" }, { - "plugin": "guidedOnboarding", - "path": "src/plugins/guided_onboarding/server/routes/plugin_state_routes.ts" + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/update_endpoint_list_item_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/update_exception_list_item_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/update_exception_list_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/list_item/update_list_item_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/list/update_list_route.ts" }, { "plugin": "fleet", "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" }, + { + "plugin": "guidedOnboarding", + "path": "src/plugins/guided_onboarding/server/routes/plugin_state_routes.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/risk_score/indices/create_index_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/risk_score/stored_scripts/create_script_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/tags/routes/create_tag.ts" + }, { "plugin": "infra", "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts" @@ -8851,26 +8791,6 @@ "plugin": "licenseManagement", "path": "x-pack/plugins/license_management/server/routes/api/license/register_license_route.ts" }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/update_endpoint_list_item_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/update_exception_list_item_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/update_exception_list_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/update_list_item_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/update_list_route.ts" - }, { "plugin": "logstash", "path": "x-pack/plugins/logstash/server/routes/pipeline/save.ts" @@ -8887,30 +8807,6 @@ "plugin": "rollup", "path": "x-pack/plugins/rollup/server/routes/api/jobs/register_create_route.ts" }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/install_prebuilt_rules_and_timelines/install_prebuilt_rules_and_timelines_route.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_update_rules/route.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/update_rule/route.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/risk_score/indices/create_index_route.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/risk_score/stored_scripts/create_script_route.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/tags/routes/create_tag.ts" - }, { "plugin": "snapshotRestore", "path": "x-pack/plugins/snapshot_restore/server/routes/api/repositories.ts" @@ -8988,12 +8884,60 @@ "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" }, { - "plugin": "@kbn/core-http-router-server-mocks", - "path": "packages/core/http/core-http-router-server-mocks/src/router.mock.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/security/types.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/__mocks__/server.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/output/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/settings/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/download_source/index.tsx" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/fleet_server_hosts/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/fleet_proxies/index.ts" + }, + { + "plugin": "@kbn/core-http-router-server-mocks", + "path": "packages/core/http/core-http-router-server-mocks/src/router.mock.ts" }, { "plugin": "actions", @@ -9103,58 +9047,6 @@ "plugin": "spaces", "path": "x-pack/plugins/spaces/server/routes/api/external/put.test.ts" }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/services/security/types.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent_policy/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/output/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/settings/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/download_source/index.tsx" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/fleet_server_hosts/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/fleet_proxies/index.ts" - }, { "plugin": "indexManagement", "path": "x-pack/plugins/index_management/server/test/helpers/router_mock.ts" @@ -9362,56 +9254,32 @@ "trackAdoption": true, "references": [ { - "plugin": "@kbn/core-http-router-server-internal", - "path": "packages/core/http/core-http-router-server-internal/src/router.ts" - }, - { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/bulk_delete_rules.ts" - }, - { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/bulk_enable_rules.ts" - }, - { - "plugin": "alerting", - "path": "x-pack/plugins/alerting/server/routes/bulk_disable_rules.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" - }, - { - "plugin": "infra", - "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts" + "plugin": "@kbn/core-http-router-server-internal", + "path": "packages/core/http/core-http-router-server-internal/src/router.ts" }, { - "plugin": "enterpriseSearch", - "path": "x-pack/plugins/enterprise_search/server/routes/workplace_search/security.ts" + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/bulk_delete_rules.ts" }, { - "plugin": "enterpriseSearch", - "path": "x-pack/plugins/enterprise_search/server/routes/workplace_search/sources.ts" + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/bulk_enable_rules.ts" }, { - "plugin": "enterpriseSearch", - "path": "x-pack/plugins/enterprise_search/server/routes/workplace_search/sources.ts" + "plugin": "alerting", + "path": "x-pack/plugins/alerting/server/routes/bulk_disable_rules.ts" }, { "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/patch_list_item_route.ts" + "path": "x-pack/plugins/lists/server/routes/list_item/patch_list_item_route.ts" }, { "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/patch_list_route.ts" + "path": "x-pack/plugins/lists/server/routes/list/patch_list_route.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_patch_rules/route.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/patch_rule/route.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" }, { "plugin": "securitySolution", @@ -9429,6 +9297,22 @@ "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/pinned_events/persist_pinned_event.ts" }, + { + "plugin": "infra", + "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts" + }, + { + "plugin": "enterpriseSearch", + "path": "x-pack/plugins/enterprise_search/server/routes/workplace_search/security.ts" + }, + { + "plugin": "enterpriseSearch", + "path": "x-pack/plugins/enterprise_search/server/routes/workplace_search/sources.ts" + }, + { + "plugin": "enterpriseSearch", + "path": "x-pack/plugins/enterprise_search/server/routes/workplace_search/sources.ts" + }, { "plugin": "@kbn/core-http-router-server-internal", "path": "packages/core/http/core-http-router-server-internal/src/router.ts" @@ -9442,12 +9326,16 @@ "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" }, { - "plugin": "@kbn/core-http-router-server-mocks", - "path": "packages/core/http/core-http-router-server-mocks/src/router.mock.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/security/types.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/__mocks__/server.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" + }, + { + "plugin": "@kbn/core-http-router-server-mocks", + "path": "packages/core/http/core-http-router-server-mocks/src/router.mock.ts" }, { "plugin": "alerting", @@ -9505,14 +9393,6 @@ "plugin": "ruleRegistry", "path": "x-pack/plugins/rule_registry/server/routes/__mocks__/server.ts" }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/services/security/types.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" - }, { "plugin": "indexManagement", "path": "x-pack/plugins/index_management/server/test/helpers/router_mock.ts" @@ -9764,8 +9644,28 @@ "path": "x-pack/plugins/alerting/server/routes/maintenance_window/delete_maintenance_window.ts" }, { - "plugin": "observability", - "path": "x-pack/plugins/observability/server/lib/annotations/register_annotation_apis.ts" + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/delete_endpoint_list_item_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/delete_exception_list_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/delete_exception_list_item_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/list_index/delete_list_index_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/list_item/delete_list_item_route.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/routes/list/delete_list_route.ts" }, { "plugin": "savedObjectsTagging", @@ -9775,6 +9675,30 @@ "plugin": "fleet", "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/delete_signals_migration_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/index/delete_index_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/delete_timelines/index.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/notes/delete_note.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/risk_score/stored_scripts/delete_script_route.ts" + }, + { + "plugin": "observability", + "path": "x-pack/plugins/observability/server/lib/annotations/register_annotation_apis.ts" + }, { "plugin": "infra", "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts" @@ -9935,30 +9859,6 @@ "plugin": "ingestPipelines", "path": "x-pack/plugins/ingest_pipelines/server/routes/api/delete.ts" }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/delete_endpoint_list_item_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/delete_exception_list_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/delete_exception_list_item_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/delete_list_index_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/delete_list_item_route.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/routes/delete_list_route.ts" - }, { "plugin": "logstash", "path": "x-pack/plugins/logstash/server/routes/pipeline/delete.ts" @@ -9967,34 +9867,6 @@ "plugin": "reporting", "path": "x-pack/plugins/reporting/server/test_helpers/create_mock_reportingplugin.ts" }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_delete_rules/route.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/delete_rule/route.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/delete_signals_migration_route.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/index/delete_index_route.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/timelines/delete_timelines/index.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/timeline/routes/notes/delete_note.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/risk_score/stored_scripts/delete_script_route.ts" - }, { "plugin": "snapshotRestore", "path": "x-pack/plugins/snapshot_restore/server/routes/api/repositories.ts" @@ -10048,12 +9920,56 @@ "path": "packages/core/http/core-http-server-internal/src/http_server.test.ts" }, { - "plugin": "@kbn/core-http-router-server-mocks", - "path": "packages/core/http/core-http-router-server-mocks/src/router.mock.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/security/types.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/__mocks__/server.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/enrollment_api_key/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/enrollment_api_key/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/output/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/download_source/index.tsx" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/fleet_server_hosts/index.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/routes/fleet_proxies/index.ts" + }, + { + "plugin": "@kbn/core-http-router-server-mocks", + "path": "packages/core/http/core-http-router-server-mocks/src/router.mock.ts" }, { "plugin": "actions", @@ -10151,54 +10067,6 @@ "plugin": "spaces", "path": "x-pack/plugins/spaces/server/routes/api/external/delete.test.ts" }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/services/security/types.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/services/security/fleet_router.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/epm/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/package_policy/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/agent/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/enrollment_api_key/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/enrollment_api_key/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/output/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/download_source/index.tsx" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/fleet_server_hosts/index.ts" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/routes/fleet_proxies/index.ts" - }, { "plugin": "indexManagement", "path": "x-pack/plugins/index_management/server/test/helpers/router_mock.ts" @@ -11599,7 +11467,7 @@ "label": "access", "description": [], "signature": [ - "\"internal\" | \"public\"" + "\"public\" | \"internal\"" ], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, @@ -12703,7 +12571,7 @@ "\nDefines intended request origin of the route:\n- public. The route is public, declared stable and intended for external access.\n In the future, may require an incomming request to contain a specified header.\n- internal. The route is internal and intended for internal access only.\n\nDefaults to 'internal' If not declared," ], "signature": [ - "\"internal\" | \"public\" | undefined" + "\"public\" | \"internal\" | undefined" ], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, @@ -13797,10 +13665,6 @@ "deprecated": false, "trackAdoption": true, "references": [ - { - "plugin": "@kbn/core-http-router-server-mocks", - "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts" - }, { "plugin": "dataViews", "path": "src/plugins/data_views/server/rest_api_routes/public/runtime_fields/get_runtime_field.ts" @@ -13857,6 +13721,18 @@ "plugin": "data", "path": "src/plugins/data/server/scripts/route.ts" }, + { + "plugin": "telemetry", + "path": "src/plugins/telemetry/server/routes/telemetry_config.ts" + }, + { + "plugin": "telemetry", + "path": "src/plugins/telemetry/server/routes/telemetry_config.ts" + }, + { + "plugin": "telemetry", + "path": "src/plugins/telemetry/server/routes/telemetry_last_reported.ts" + }, { "plugin": "ml", "path": "x-pack/plugins/ml/server/routes/json_schema.ts" @@ -14074,236 +13950,268 @@ "path": "x-pack/plugins/ml/server/routes/management.ts" }, { - "plugin": "telemetry", - "path": "src/plugins/telemetry/server/routes/telemetry_config.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/live_query/get_live_query_details_route.ts" }, { - "plugin": "telemetry", - "path": "src/plugins/telemetry/server/routes/telemetry_config.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/live_query/get_live_query_results_route.ts" }, { - "plugin": "telemetry", - "path": "src/plugins/telemetry/server/routes/telemetry_last_reported.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/live_query/find_live_query_route.ts" }, { - "plugin": "logsShared", - "path": "x-pack/plugins/logs_shared/server/lib/adapters/framework/kibana_framework_adapter.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/saved_query/find_saved_query_route.ts" }, { - "plugin": "infra", - "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/saved_query/read_saved_query_route.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/server/routes/custom_elements/find.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/status/create_status_route.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/server/routes/custom_elements/get.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agent_policies.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/server/routes/shareables/download.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agent_policy.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/server/routes/workpad/find.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agent_status_for_agent_policy.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/server/routes/workpad/get.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_package_policies.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/server/routes/workpad/resolve.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agents.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/server/routes/templates/list.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agent_details.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/server/routes/functions/functions.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/pack/find_pack_route.ts" }, { - "plugin": "cloudDefend", - "path": "x-pack/plugins/cloud_defend/server/routes/policies/policies.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/pack/read_pack_route.ts" }, { - "plugin": "cloudDefend", - "path": "x-pack/plugins/cloud_defend/server/routes/status/status.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/privileges_check/privileges_check_route.ts" }, { - "plugin": "cloudSecurityPosture", - "path": "x-pack/plugins/cloud_security_posture/server/routes/compliance_dashboard/compliance_dashboard.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/asset/get_assets_status_route.ts" }, { - "plugin": "cloudSecurityPosture", - "path": "x-pack/plugins/cloud_security_posture/server/routes/benchmarks/benchmarks.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.ts" }, { - "plugin": "cloudSecurityPosture", - "path": "x-pack/plugins/cloud_security_posture/server/routes/status/status.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/get_prebuilt_rules_status/get_prebuilt_rules_status_route.ts" }, { - "plugin": "cloudSecurityPosture", - "path": "x-pack/plugins/cloud_security_posture/server/routes/csp_rule_template/get_csp_rule_template.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_cluster_health/get_cluster_health_route.ts" }, { - "plugin": "cloudSecurityPosture", - "path": "x-pack/plugins/cloud_security_posture/server/routes/detection_engine/get_detection_engine_alerts_count_by_rule_tags.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_space_health/get_space_health_route.ts" }, { - "plugin": "fileUpload", - "path": "x-pack/plugins/file_upload/server/routes.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/rule_execution_logs/get_rule_execution_events/get_rule_execution_events_route.ts" }, { - "plugin": "kubernetesSecurity", - "path": "x-pack/plugins/kubernetes_security/server/routes/aggregate.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/rule_execution_logs/get_rule_execution_results/get_rule_execution_results_route.ts" }, { - "plugin": "kubernetesSecurity", - "path": "x-pack/plugins/kubernetes_security/server/routes/count.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/find_rules/route.ts" }, { - "plugin": "kubernetesSecurity", - "path": "x-pack/plugins/kubernetes_security/server/routes/multi_terms_aggregate.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/filters/route.ts" }, { - "plugin": "maps", - "path": "x-pack/plugins/maps/server/mvt/mvt_routes.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/read_rule/route.ts" }, { - "plugin": "maps", - "path": "x-pack/plugins/maps/server/mvt/mvt_routes.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/tags/read_tags/route.ts" }, { - "plugin": "maps", - "path": "x-pack/plugins/maps/server/data_indexing/indexing_routes.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/endpoint/routes/metadata/index.ts" }, { - "plugin": "maps", - "path": "x-pack/plugins/maps/server/data_indexing/indexing_routes.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/endpoint/routes/metadata/index.ts" }, { - "plugin": "maps", - "path": "x-pack/plugins/maps/server/routes.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/endpoint/routes/metadata/index.ts" }, { - "plugin": "maps", - "path": "x-pack/plugins/maps/server/routes.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/endpoint/routes/policy/index.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/live_query/get_live_query_details_route.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/endpoint/routes/policy/index.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/live_query/get_live_query_results_route.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/file_info_handler.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/live_query/find_live_query_route.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/file_download_handler.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/saved_query/find_saved_query_route.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/details.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/saved_query/read_saved_query_route.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/status.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/status/create_status_route.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/state.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agent_policies.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/audit_log.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agent_policy.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/list.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agent_status_for_agent_policy.ts" + "plugin": "@kbn/core-http-router-server-mocks", + "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_package_policies.ts" + "plugin": "logsShared", + "path": "x-pack/plugins/logs_shared/server/lib/adapters/framework/kibana_framework_adapter.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agents.ts" + "plugin": "infra", + "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/fleet_wrapper/get_agent_details.ts" + "plugin": "canvas", + "path": "x-pack/plugins/canvas/server/routes/custom_elements/find.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/pack/find_pack_route.ts" + "plugin": "canvas", + "path": "x-pack/plugins/canvas/server/routes/custom_elements/get.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/pack/read_pack_route.ts" + "plugin": "canvas", + "path": "x-pack/plugins/canvas/server/routes/shareables/download.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/privileges_check/privileges_check_route.ts" + "plugin": "canvas", + "path": "x-pack/plugins/canvas/server/routes/workpad/find.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/asset/get_assets_status_route.ts" + "plugin": "canvas", + "path": "x-pack/plugins/canvas/server/routes/workpad/get.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/routes/metadata/index.ts" + "plugin": "canvas", + "path": "x-pack/plugins/canvas/server/routes/workpad/resolve.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/routes/metadata/index.ts" + "plugin": "canvas", + "path": "x-pack/plugins/canvas/server/routes/templates/list.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/routes/metadata/index.ts" + "plugin": "canvas", + "path": "x-pack/plugins/canvas/server/routes/functions/functions.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/routes/policy/index.ts" + "plugin": "cloudDefend", + "path": "x-pack/plugins/cloud_defend/server/routes/policies/policies.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/routes/policy/index.ts" + "plugin": "cloudDefend", + "path": "x-pack/plugins/cloud_defend/server/routes/status/status.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/file_info_handler.ts" + "plugin": "cloudSecurityPosture", + "path": "x-pack/plugins/cloud_security_posture/server/routes/compliance_dashboard/compliance_dashboard.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/file_download_handler.ts" + "plugin": "cloudSecurityPosture", + "path": "x-pack/plugins/cloud_security_posture/server/routes/benchmarks/benchmarks.ts" + }, + { + "plugin": "cloudSecurityPosture", + "path": "x-pack/plugins/cloud_security_posture/server/routes/status/status.ts" + }, + { + "plugin": "cloudSecurityPosture", + "path": "x-pack/plugins/cloud_security_posture/server/routes/csp_rule_template/get_csp_rule_template.ts" + }, + { + "plugin": "cloudSecurityPosture", + "path": "x-pack/plugins/cloud_security_posture/server/routes/detection_engine/get_detection_engine_alerts_count_by_rule_tags.ts" + }, + { + "plugin": "fileUpload", + "path": "x-pack/plugins/file_upload/server/routes.ts" + }, + { + "plugin": "kubernetesSecurity", + "path": "x-pack/plugins/kubernetes_security/server/routes/aggregate.ts" + }, + { + "plugin": "kubernetesSecurity", + "path": "x-pack/plugins/kubernetes_security/server/routes/count.ts" + }, + { + "plugin": "kubernetesSecurity", + "path": "x-pack/plugins/kubernetes_security/server/routes/multi_terms_aggregate.ts" + }, + { + "plugin": "maps", + "path": "x-pack/plugins/maps/server/mvt/mvt_routes.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/details.ts" + "plugin": "maps", + "path": "x-pack/plugins/maps/server/mvt/mvt_routes.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/status.ts" + "plugin": "maps", + "path": "x-pack/plugins/maps/server/data_indexing/indexing_routes.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/state.ts" + "plugin": "maps", + "path": "x-pack/plugins/maps/server/data_indexing/indexing_routes.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/audit_log.ts" + "plugin": "maps", + "path": "x-pack/plugins/maps/server/routes.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/routes/actions/list.ts" + "plugin": "maps", + "path": "x-pack/plugins/maps/server/routes.ts" }, { "plugin": "sessionView", @@ -14508,7 +14416,7 @@ "section": "def-common.RouteConfigOptions", "text": "RouteConfigOptions" }, - ", \"access\"> | undefined; access: \"internal\" | \"public\"; enableQueryVersion?: boolean | undefined; }" + ", \"access\"> | undefined; access: \"public\" | \"internal\"; enableQueryVersion?: boolean | undefined; }" ], "path": "packages/core/http/core-http-server/src/versioning/types.ts", "deprecated": false, @@ -14549,10 +14457,6 @@ "deprecated": false, "trackAdoption": true, "references": [ - { - "plugin": "@kbn/core-http-router-server-mocks", - "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts" - }, { "plugin": "dataViews", "path": "src/plugins/data_views/server/rest_api_routes/public/runtime_fields/put_runtime_field.ts" @@ -14577,6 +14481,18 @@ "plugin": "data", "path": "src/plugins/data/server/query/routes.ts" }, + { + "plugin": "telemetry", + "path": "src/plugins/telemetry/server/routes/telemetry_user_has_seen_notice.ts" + }, + { + "plugin": "telemetry", + "path": "src/plugins/telemetry/server/routes/telemetry_last_reported.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/install_prebuilt_rules_and_timelines/install_prebuilt_rules_and_timelines_route.ts" + }, { "plugin": "ml", "path": "x-pack/plugins/ml/server/routes/annotations.ts" @@ -14618,12 +14534,24 @@ "path": "x-pack/plugins/ml/server/routes/anomaly_detectors.ts" }, { - "plugin": "telemetry", - "path": "src/plugins/telemetry/server/routes/telemetry_user_has_seen_notice.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/saved_query/update_saved_query_route.ts" }, { - "plugin": "telemetry", - "path": "src/plugins/telemetry/server/routes/telemetry_last_reported.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/pack/update_pack_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_update_rules/route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/update_rule/route.ts" + }, + { + "plugin": "@kbn/core-http-router-server-mocks", + "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts" }, { "plugin": "logsShared", @@ -14649,14 +14577,6 @@ "plugin": "canvas", "path": "x-pack/plugins/canvas/server/routes/workpad/update.ts" }, - { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/saved_query/update_saved_query_route.ts" - }, - { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/pack/update_pack_route.ts" - }, { "plugin": "transform", "path": "x-pack/plugins/transform/server/routes/api/transforms.ts" @@ -14704,7 +14624,7 @@ "section": "def-common.RouteConfigOptions", "text": "RouteConfigOptions" }, - ", \"access\"> | undefined; access: \"internal\" | \"public\"; enableQueryVersion?: boolean | undefined; }" + ", \"access\"> | undefined; access: \"public\" | \"internal\"; enableQueryVersion?: boolean | undefined; }" ], "path": "packages/core/http/core-http-server/src/versioning/types.ts", "deprecated": false, @@ -14745,10 +14665,6 @@ "deprecated": false, "trackAdoption": true, "references": [ - { - "plugin": "@kbn/core-http-router-server-mocks", - "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts" - }, { "plugin": "dataViews", "path": "src/plugins/data_views/server/rest_api_routes/public/fields/update_fields.ts" @@ -14834,12 +14750,16 @@ "path": "src/plugins/unified_search/server/autocomplete/value_suggestions_route.ts" }, { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/server/routes/log_rate_analysis.ts" + "plugin": "telemetry", + "path": "src/plugins/telemetry/server/routes/telemetry_opt_in_stats.ts" }, { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/server/routes/log_categorization.ts" + "plugin": "telemetry", + "path": "src/plugins/telemetry/server/routes/telemetry_opt_in.ts" + }, + { + "plugin": "telemetry", + "path": "src/plugins/telemetry/server/routes/telemetry_usage_stats.ts" }, { "plugin": "ml", @@ -15134,80 +15054,80 @@ "path": "x-pack/plugins/ml/server/routes/alerting.ts" }, { - "plugin": "telemetry", - "path": "src/plugins/telemetry/server/routes/telemetry_opt_in_stats.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/live_query/create_live_query_route.ts" }, { - "plugin": "telemetry", - "path": "src/plugins/telemetry/server/routes/telemetry_opt_in.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/saved_query/create_saved_query_route.ts" }, { - "plugin": "telemetry", - "path": "src/plugins/telemetry/server/routes/telemetry_usage_stats.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/pack/create_pack_route.ts" }, { - "plugin": "logsShared", - "path": "x-pack/plugins/logs_shared/server/lib/adapters/framework/kibana_framework_adapter.ts" + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/asset/update_assets_route.ts" }, { - "plugin": "infra", - "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/review_rule_installation/review_rule_installation_route.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/server/routes/custom_elements/create.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/review_rule_upgrade/review_rule_upgrade_route.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/server/routes/shareables/zip.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/perform_rule_installation/perform_rule_installation_route.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/server/routes/workpad/create.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/perform_rule_upgrade/perform_rule_upgrade_route.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/server/routes/workpad/import.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_cluster_health/get_cluster_health_route.ts" }, { - "plugin": "fileUpload", - "path": "x-pack/plugins/file_upload/server/routes.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_rule_health/get_rule_health_route.ts" }, { - "plugin": "fileUpload", - "path": "x-pack/plugins/file_upload/server/routes.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_space_health/get_space_health_route.ts" }, { - "plugin": "fileUpload", - "path": "x-pack/plugins/file_upload/server/routes.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/setup/setup_health_route.ts" }, { - "plugin": "fileUpload", - "path": "x-pack/plugins/file_upload/server/routes.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_actions/route.ts" }, { - "plugin": "maps", - "path": "x-pack/plugins/maps/server/data_indexing/indexing_routes.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_create_rules/route.ts" }, { - "plugin": "maps", - "path": "x-pack/plugins/maps/server/data_indexing/indexing_routes.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_delete_rules/route.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/live_query/create_live_query_route.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/create_rule/route.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/saved_query/create_saved_query_route.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/export_rules/route.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/pack/create_pack_route.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/import_rules/route.ts" }, { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/asset/update_assets_route.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/coverage_overview/route.ts" }, { "plugin": "securitySolution", @@ -15253,6 +15173,66 @@ "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/server/endpoint/routes/suggestions/index.ts" }, + { + "plugin": "@kbn/core-http-router-server-mocks", + "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts" + }, + { + "plugin": "aiops", + "path": "x-pack/plugins/aiops/server/routes/log_rate_analysis.ts" + }, + { + "plugin": "aiops", + "path": "x-pack/plugins/aiops/server/routes/log_categorization.ts" + }, + { + "plugin": "logsShared", + "path": "x-pack/plugins/logs_shared/server/lib/adapters/framework/kibana_framework_adapter.ts" + }, + { + "plugin": "infra", + "path": "x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts" + }, + { + "plugin": "canvas", + "path": "x-pack/plugins/canvas/server/routes/custom_elements/create.ts" + }, + { + "plugin": "canvas", + "path": "x-pack/plugins/canvas/server/routes/shareables/zip.ts" + }, + { + "plugin": "canvas", + "path": "x-pack/plugins/canvas/server/routes/workpad/create.ts" + }, + { + "plugin": "canvas", + "path": "x-pack/plugins/canvas/server/routes/workpad/import.ts" + }, + { + "plugin": "fileUpload", + "path": "x-pack/plugins/file_upload/server/routes.ts" + }, + { + "plugin": "fileUpload", + "path": "x-pack/plugins/file_upload/server/routes.ts" + }, + { + "plugin": "fileUpload", + "path": "x-pack/plugins/file_upload/server/routes.ts" + }, + { + "plugin": "fileUpload", + "path": "x-pack/plugins/file_upload/server/routes.ts" + }, + { + "plugin": "maps", + "path": "x-pack/plugins/maps/server/data_indexing/indexing_routes.ts" + }, + { + "plugin": "maps", + "path": "x-pack/plugins/maps/server/data_indexing/indexing_routes.ts" + }, { "plugin": "transform", "path": "x-pack/plugins/transform/server/routes/api/field_histograms.ts" @@ -15372,7 +15352,7 @@ "section": "def-common.RouteConfigOptions", "text": "RouteConfigOptions" }, - ", \"access\"> | undefined; access: \"internal\" | \"public\"; enableQueryVersion?: boolean | undefined; }" + ", \"access\"> | undefined; access: \"public\" | \"internal\"; enableQueryVersion?: boolean | undefined; }" ], "path": "packages/core/http/core-http-server/src/versioning/types.ts", "deprecated": false, @@ -15413,6 +15393,14 @@ "deprecated": false, "trackAdoption": true, "references": [ + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_patch_rules/route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/patch_rule/route.ts" + }, { "plugin": "@kbn/core-http-router-server-mocks", "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts" @@ -15456,7 +15444,7 @@ "section": "def-common.RouteConfigOptions", "text": "RouteConfigOptions" }, - ", \"access\"> | undefined; access: \"internal\" | \"public\"; enableQueryVersion?: boolean | undefined; }" + ", \"access\"> | undefined; access: \"public\" | \"internal\"; enableQueryVersion?: boolean | undefined; }" ], "path": "packages/core/http/core-http-server/src/versioning/types.ts", "deprecated": false, @@ -15497,10 +15485,6 @@ "deprecated": false, "trackAdoption": true, "references": [ - { - "plugin": "@kbn/core-http-router-server-mocks", - "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts" - }, { "plugin": "dataViews", "path": "src/plugins/data_views/server/rest_api_routes/public/runtime_fields/delete_runtime_field.ts" @@ -15561,6 +15545,26 @@ "plugin": "ml", "path": "x-pack/plugins/ml/server/routes/anomaly_detectors.ts" }, + { + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/saved_query/delete_saved_query_route.ts" + }, + { + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/routes/pack/delete_pack_route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_delete_rules/route.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/delete_rule/route.ts" + }, + { + "plugin": "@kbn/core-http-router-server-mocks", + "path": "packages/core/http/core-http-router-server-mocks/src/versioned_router.mock.ts" + }, { "plugin": "logsShared", "path": "x-pack/plugins/logs_shared/server/lib/adapters/framework/kibana_framework_adapter.ts" @@ -15581,14 +15585,6 @@ "plugin": "maps", "path": "x-pack/plugins/maps/server/data_indexing/indexing_routes.ts" }, - { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/saved_query/delete_saved_query_route.ts" - }, - { - "plugin": "osquery", - "path": "x-pack/plugins/osquery/server/routes/pack/delete_pack_route.ts" - }, { "plugin": "@kbn/core-http-router-server-internal", "path": "packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_router.ts" @@ -15632,7 +15628,7 @@ "section": "def-common.RouteConfigOptions", "text": "RouteConfigOptions" }, - ", \"access\"> | undefined; access: \"internal\" | \"public\"; enableQueryVersion?: boolean | undefined; }" + ", \"access\"> | undefined; access: \"public\" | \"internal\"; enableQueryVersion?: boolean | undefined; }" ], "path": "packages/core/http/core-http-server/src/versioning/types.ts", "deprecated": false, @@ -18116,7 +18112,7 @@ "section": "def-common.RouteConfigOptions", "text": "RouteConfigOptions" }, - ", \"access\"> | undefined; access: \"internal\" | \"public\"; enableQueryVersion?: boolean | undefined; }" + ", \"access\"> | undefined; access: \"public\" | \"internal\"; enableQueryVersion?: boolean | undefined; }" ], "path": "packages/core/http/core-http-server/src/versioning/types.ts", "deprecated": false, @@ -18186,7 +18182,7 @@ "section": "def-common.RouteConfigOptions", "text": "RouteConfigOptions" }, - ", \"access\"> | undefined; access: \"internal\" | \"public\"; enableQueryVersion?: boolean | undefined; }" + ", \"access\"> | undefined; access: \"public\" | \"internal\"; enableQueryVersion?: boolean | undefined; }" ], "path": "packages/core/http/core-http-server/src/versioning/types.ts", "deprecated": false, diff --git a/api_docs/kbn_core_http_server.mdx b/api_docs/kbn_core_http_server.mdx index 437e44d218051..1f3d0c36ddcb3 100644 --- a/api_docs/kbn_core_http_server.mdx +++ b/api_docs/kbn_core_http_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-server title: "@kbn/core-http-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-server'] --- import kbnCoreHttpServerObj from './kbn_core_http_server.devdocs.json'; diff --git a/api_docs/kbn_core_http_server_internal.mdx b/api_docs/kbn_core_http_server_internal.mdx index b51a5c58ddd5e..3e4602a8630a8 100644 --- a/api_docs/kbn_core_http_server_internal.mdx +++ b/api_docs/kbn_core_http_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-server-internal title: "@kbn/core-http-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-server-internal'] --- import kbnCoreHttpServerInternalObj from './kbn_core_http_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_http_server_mocks.mdx b/api_docs/kbn_core_http_server_mocks.mdx index 270418054f48c..0b89b8d20b34b 100644 --- a/api_docs/kbn_core_http_server_mocks.mdx +++ b/api_docs/kbn_core_http_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-server-mocks title: "@kbn/core-http-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-server-mocks'] --- import kbnCoreHttpServerMocksObj from './kbn_core_http_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_i18n_browser.mdx b/api_docs/kbn_core_i18n_browser.mdx index f62926869cafc..e29a08d166da5 100644 --- a/api_docs/kbn_core_i18n_browser.mdx +++ b/api_docs/kbn_core_i18n_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-browser title: "@kbn/core-i18n-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-i18n-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-browser'] --- import kbnCoreI18nBrowserObj from './kbn_core_i18n_browser.devdocs.json'; diff --git a/api_docs/kbn_core_i18n_browser_mocks.mdx b/api_docs/kbn_core_i18n_browser_mocks.mdx index a35b76e4bf7ac..0fdf89cd9dd90 100644 --- a/api_docs/kbn_core_i18n_browser_mocks.mdx +++ b/api_docs/kbn_core_i18n_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-browser-mocks title: "@kbn/core-i18n-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-i18n-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-browser-mocks'] --- import kbnCoreI18nBrowserMocksObj from './kbn_core_i18n_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_i18n_server.mdx b/api_docs/kbn_core_i18n_server.mdx index 262fc4813ec93..cea78e99bb51d 100644 --- a/api_docs/kbn_core_i18n_server.mdx +++ b/api_docs/kbn_core_i18n_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-server title: "@kbn/core-i18n-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-i18n-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-server'] --- import kbnCoreI18nServerObj from './kbn_core_i18n_server.devdocs.json'; diff --git a/api_docs/kbn_core_i18n_server_internal.mdx b/api_docs/kbn_core_i18n_server_internal.mdx index 90dce34c1e78f..1b2315689ec2d 100644 --- a/api_docs/kbn_core_i18n_server_internal.mdx +++ b/api_docs/kbn_core_i18n_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-server-internal title: "@kbn/core-i18n-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-i18n-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-server-internal'] --- import kbnCoreI18nServerInternalObj from './kbn_core_i18n_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_i18n_server_mocks.mdx b/api_docs/kbn_core_i18n_server_mocks.mdx index 7bc85ebe38982..efd68bea787f5 100644 --- a/api_docs/kbn_core_i18n_server_mocks.mdx +++ b/api_docs/kbn_core_i18n_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-server-mocks title: "@kbn/core-i18n-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-i18n-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-server-mocks'] --- import kbnCoreI18nServerMocksObj from './kbn_core_i18n_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_injected_metadata_browser_mocks.mdx b/api_docs/kbn_core_injected_metadata_browser_mocks.mdx index 2785456382182..8aba9cd81ff1a 100644 --- a/api_docs/kbn_core_injected_metadata_browser_mocks.mdx +++ b/api_docs/kbn_core_injected_metadata_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-injected-metadata-browser-mocks title: "@kbn/core-injected-metadata-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-injected-metadata-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-injected-metadata-browser-mocks'] --- import kbnCoreInjectedMetadataBrowserMocksObj from './kbn_core_injected_metadata_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_integrations_browser_internal.mdx b/api_docs/kbn_core_integrations_browser_internal.mdx index e26b1cf1d159f..9fbd0303f6bfb 100644 --- a/api_docs/kbn_core_integrations_browser_internal.mdx +++ b/api_docs/kbn_core_integrations_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-integrations-browser-internal title: "@kbn/core-integrations-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-integrations-browser-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-integrations-browser-internal'] --- import kbnCoreIntegrationsBrowserInternalObj from './kbn_core_integrations_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_integrations_browser_mocks.mdx b/api_docs/kbn_core_integrations_browser_mocks.mdx index ba4aaeaf73778..ca5a581ba6473 100644 --- a/api_docs/kbn_core_integrations_browser_mocks.mdx +++ b/api_docs/kbn_core_integrations_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-integrations-browser-mocks title: "@kbn/core-integrations-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-integrations-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-integrations-browser-mocks'] --- import kbnCoreIntegrationsBrowserMocksObj from './kbn_core_integrations_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_lifecycle_browser.devdocs.json b/api_docs/kbn_core_lifecycle_browser.devdocs.json index 731dd471e31c9..fce341ae312bd 100644 --- a/api_docs/kbn_core_lifecycle_browser.devdocs.json +++ b/api_docs/kbn_core_lifecycle_browser.devdocs.json @@ -613,10 +613,6 @@ "plugin": "visualizations", "path": "src/plugins/visualizations/public/visualize_app/components/visualize_listing.tsx" }, - { - "plugin": "observability", - "path": "x-pack/plugins/observability/public/hooks/slo/use_fetch_slo_definitions.ts" - }, { "plugin": "dataVisualizer", "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/index_data_visualizer.tsx" diff --git a/api_docs/kbn_core_lifecycle_browser.mdx b/api_docs/kbn_core_lifecycle_browser.mdx index 71352de1d3b98..bdd63d5e29410 100644 --- a/api_docs/kbn_core_lifecycle_browser.mdx +++ b/api_docs/kbn_core_lifecycle_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-lifecycle-browser title: "@kbn/core-lifecycle-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-lifecycle-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-lifecycle-browser'] --- import kbnCoreLifecycleBrowserObj from './kbn_core_lifecycle_browser.devdocs.json'; diff --git a/api_docs/kbn_core_lifecycle_browser_mocks.mdx b/api_docs/kbn_core_lifecycle_browser_mocks.mdx index 7235cede5536f..dc577814f7a3d 100644 --- a/api_docs/kbn_core_lifecycle_browser_mocks.mdx +++ b/api_docs/kbn_core_lifecycle_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-lifecycle-browser-mocks title: "@kbn/core-lifecycle-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-lifecycle-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-lifecycle-browser-mocks'] --- import kbnCoreLifecycleBrowserMocksObj from './kbn_core_lifecycle_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_lifecycle_server.mdx b/api_docs/kbn_core_lifecycle_server.mdx index b37fe3970cf1c..2acfaa971baaf 100644 --- a/api_docs/kbn_core_lifecycle_server.mdx +++ b/api_docs/kbn_core_lifecycle_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-lifecycle-server title: "@kbn/core-lifecycle-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-lifecycle-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-lifecycle-server'] --- import kbnCoreLifecycleServerObj from './kbn_core_lifecycle_server.devdocs.json'; diff --git a/api_docs/kbn_core_lifecycle_server_mocks.mdx b/api_docs/kbn_core_lifecycle_server_mocks.mdx index bb0a34fbe9a77..07a2da83ef799 100644 --- a/api_docs/kbn_core_lifecycle_server_mocks.mdx +++ b/api_docs/kbn_core_lifecycle_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-lifecycle-server-mocks title: "@kbn/core-lifecycle-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-lifecycle-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-lifecycle-server-mocks'] --- import kbnCoreLifecycleServerMocksObj from './kbn_core_lifecycle_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_logging_browser_mocks.mdx b/api_docs/kbn_core_logging_browser_mocks.mdx index 434b2dda89893..d8d685ef1fd2c 100644 --- a/api_docs/kbn_core_logging_browser_mocks.mdx +++ b/api_docs/kbn_core_logging_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-browser-mocks title: "@kbn/core-logging-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-logging-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-browser-mocks'] --- import kbnCoreLoggingBrowserMocksObj from './kbn_core_logging_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_logging_common_internal.mdx b/api_docs/kbn_core_logging_common_internal.mdx index 854d6796811ae..4e3e458ac4242 100644 --- a/api_docs/kbn_core_logging_common_internal.mdx +++ b/api_docs/kbn_core_logging_common_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-common-internal title: "@kbn/core-logging-common-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-logging-common-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-common-internal'] --- import kbnCoreLoggingCommonInternalObj from './kbn_core_logging_common_internal.devdocs.json'; diff --git a/api_docs/kbn_core_logging_server.mdx b/api_docs/kbn_core_logging_server.mdx index e2ad1d9356d64..5fddb161d56b4 100644 --- a/api_docs/kbn_core_logging_server.mdx +++ b/api_docs/kbn_core_logging_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-server title: "@kbn/core-logging-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-logging-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-server'] --- import kbnCoreLoggingServerObj from './kbn_core_logging_server.devdocs.json'; diff --git a/api_docs/kbn_core_logging_server_internal.mdx b/api_docs/kbn_core_logging_server_internal.mdx index fbe52c0e81eac..98f6f52df3ce9 100644 --- a/api_docs/kbn_core_logging_server_internal.mdx +++ b/api_docs/kbn_core_logging_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-server-internal title: "@kbn/core-logging-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-logging-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-server-internal'] --- import kbnCoreLoggingServerInternalObj from './kbn_core_logging_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_logging_server_mocks.mdx b/api_docs/kbn_core_logging_server_mocks.mdx index d7dc3c275c481..0b5b810523bf6 100644 --- a/api_docs/kbn_core_logging_server_mocks.mdx +++ b/api_docs/kbn_core_logging_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-server-mocks title: "@kbn/core-logging-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-logging-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-server-mocks'] --- import kbnCoreLoggingServerMocksObj from './kbn_core_logging_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_metrics_collectors_server_internal.mdx b/api_docs/kbn_core_metrics_collectors_server_internal.mdx index 0fd264172a6f8..59fa4d927a693 100644 --- a/api_docs/kbn_core_metrics_collectors_server_internal.mdx +++ b/api_docs/kbn_core_metrics_collectors_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-collectors-server-internal title: "@kbn/core-metrics-collectors-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-metrics-collectors-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-collectors-server-internal'] --- import kbnCoreMetricsCollectorsServerInternalObj from './kbn_core_metrics_collectors_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_metrics_collectors_server_mocks.mdx b/api_docs/kbn_core_metrics_collectors_server_mocks.mdx index aa290423ed3d6..026c4165f4709 100644 --- a/api_docs/kbn_core_metrics_collectors_server_mocks.mdx +++ b/api_docs/kbn_core_metrics_collectors_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-collectors-server-mocks title: "@kbn/core-metrics-collectors-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-metrics-collectors-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-collectors-server-mocks'] --- import kbnCoreMetricsCollectorsServerMocksObj from './kbn_core_metrics_collectors_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_metrics_server.mdx b/api_docs/kbn_core_metrics_server.mdx index b50ba05b37b6c..7a6c30898d8e1 100644 --- a/api_docs/kbn_core_metrics_server.mdx +++ b/api_docs/kbn_core_metrics_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-server title: "@kbn/core-metrics-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-metrics-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-server'] --- import kbnCoreMetricsServerObj from './kbn_core_metrics_server.devdocs.json'; diff --git a/api_docs/kbn_core_metrics_server_internal.mdx b/api_docs/kbn_core_metrics_server_internal.mdx index 5d81169930a4c..8a0ae00bcc702 100644 --- a/api_docs/kbn_core_metrics_server_internal.mdx +++ b/api_docs/kbn_core_metrics_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-server-internal title: "@kbn/core-metrics-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-metrics-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-server-internal'] --- import kbnCoreMetricsServerInternalObj from './kbn_core_metrics_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_metrics_server_mocks.mdx b/api_docs/kbn_core_metrics_server_mocks.mdx index 7904a5fa1086a..d447e218ec036 100644 --- a/api_docs/kbn_core_metrics_server_mocks.mdx +++ b/api_docs/kbn_core_metrics_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-server-mocks title: "@kbn/core-metrics-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-metrics-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-server-mocks'] --- import kbnCoreMetricsServerMocksObj from './kbn_core_metrics_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_mount_utils_browser.mdx b/api_docs/kbn_core_mount_utils_browser.mdx index 76a62c6dad652..f21c05d076ae3 100644 --- a/api_docs/kbn_core_mount_utils_browser.mdx +++ b/api_docs/kbn_core_mount_utils_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-mount-utils-browser title: "@kbn/core-mount-utils-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-mount-utils-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-mount-utils-browser'] --- import kbnCoreMountUtilsBrowserObj from './kbn_core_mount_utils_browser.devdocs.json'; diff --git a/api_docs/kbn_core_node_server.mdx b/api_docs/kbn_core_node_server.mdx index ccb8ec6d417ae..778f6f10229ba 100644 --- a/api_docs/kbn_core_node_server.mdx +++ b/api_docs/kbn_core_node_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-node-server title: "@kbn/core-node-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-node-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-node-server'] --- import kbnCoreNodeServerObj from './kbn_core_node_server.devdocs.json'; diff --git a/api_docs/kbn_core_node_server_internal.mdx b/api_docs/kbn_core_node_server_internal.mdx index 8a8d18e1bb486..214a5e592ea98 100644 --- a/api_docs/kbn_core_node_server_internal.mdx +++ b/api_docs/kbn_core_node_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-node-server-internal title: "@kbn/core-node-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-node-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-node-server-internal'] --- import kbnCoreNodeServerInternalObj from './kbn_core_node_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_node_server_mocks.mdx b/api_docs/kbn_core_node_server_mocks.mdx index fece750d65614..e9941593c0bbc 100644 --- a/api_docs/kbn_core_node_server_mocks.mdx +++ b/api_docs/kbn_core_node_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-node-server-mocks title: "@kbn/core-node-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-node-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-node-server-mocks'] --- import kbnCoreNodeServerMocksObj from './kbn_core_node_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_notifications_browser.mdx b/api_docs/kbn_core_notifications_browser.mdx index d7a0cf3dbf534..29506209155bd 100644 --- a/api_docs/kbn_core_notifications_browser.mdx +++ b/api_docs/kbn_core_notifications_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-notifications-browser title: "@kbn/core-notifications-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-notifications-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-notifications-browser'] --- import kbnCoreNotificationsBrowserObj from './kbn_core_notifications_browser.devdocs.json'; diff --git a/api_docs/kbn_core_notifications_browser_internal.mdx b/api_docs/kbn_core_notifications_browser_internal.mdx index 190b0e4ce0166..6053190b75597 100644 --- a/api_docs/kbn_core_notifications_browser_internal.mdx +++ b/api_docs/kbn_core_notifications_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-notifications-browser-internal title: "@kbn/core-notifications-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-notifications-browser-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-notifications-browser-internal'] --- import kbnCoreNotificationsBrowserInternalObj from './kbn_core_notifications_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_notifications_browser_mocks.mdx b/api_docs/kbn_core_notifications_browser_mocks.mdx index 7a2809ea024e4..d36912aa0e2ed 100644 --- a/api_docs/kbn_core_notifications_browser_mocks.mdx +++ b/api_docs/kbn_core_notifications_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-notifications-browser-mocks title: "@kbn/core-notifications-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-notifications-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-notifications-browser-mocks'] --- import kbnCoreNotificationsBrowserMocksObj from './kbn_core_notifications_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_overlays_browser.mdx b/api_docs/kbn_core_overlays_browser.mdx index b9257319b2399..4009425f972c8 100644 --- a/api_docs/kbn_core_overlays_browser.mdx +++ b/api_docs/kbn_core_overlays_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-overlays-browser title: "@kbn/core-overlays-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-overlays-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-overlays-browser'] --- import kbnCoreOverlaysBrowserObj from './kbn_core_overlays_browser.devdocs.json'; diff --git a/api_docs/kbn_core_overlays_browser_internal.mdx b/api_docs/kbn_core_overlays_browser_internal.mdx index 0202eee61e7f3..2d40b6c659817 100644 --- a/api_docs/kbn_core_overlays_browser_internal.mdx +++ b/api_docs/kbn_core_overlays_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-overlays-browser-internal title: "@kbn/core-overlays-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-overlays-browser-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-overlays-browser-internal'] --- import kbnCoreOverlaysBrowserInternalObj from './kbn_core_overlays_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_overlays_browser_mocks.mdx b/api_docs/kbn_core_overlays_browser_mocks.mdx index e5877e7a7539c..81e339446267f 100644 --- a/api_docs/kbn_core_overlays_browser_mocks.mdx +++ b/api_docs/kbn_core_overlays_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-overlays-browser-mocks title: "@kbn/core-overlays-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-overlays-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-overlays-browser-mocks'] --- import kbnCoreOverlaysBrowserMocksObj from './kbn_core_overlays_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_plugins_browser.mdx b/api_docs/kbn_core_plugins_browser.mdx index 8ee8e06bca2a8..1598853aa54a9 100644 --- a/api_docs/kbn_core_plugins_browser.mdx +++ b/api_docs/kbn_core_plugins_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-plugins-browser title: "@kbn/core-plugins-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-plugins-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-plugins-browser'] --- import kbnCorePluginsBrowserObj from './kbn_core_plugins_browser.devdocs.json'; diff --git a/api_docs/kbn_core_plugins_browser_mocks.mdx b/api_docs/kbn_core_plugins_browser_mocks.mdx index 4ca945ba522d3..5e532fac376d5 100644 --- a/api_docs/kbn_core_plugins_browser_mocks.mdx +++ b/api_docs/kbn_core_plugins_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-plugins-browser-mocks title: "@kbn/core-plugins-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-plugins-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-plugins-browser-mocks'] --- import kbnCorePluginsBrowserMocksObj from './kbn_core_plugins_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_plugins_server.mdx b/api_docs/kbn_core_plugins_server.mdx index 3523f56c827fd..d69929d30a7dd 100644 --- a/api_docs/kbn_core_plugins_server.mdx +++ b/api_docs/kbn_core_plugins_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-plugins-server title: "@kbn/core-plugins-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-plugins-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-plugins-server'] --- import kbnCorePluginsServerObj from './kbn_core_plugins_server.devdocs.json'; diff --git a/api_docs/kbn_core_plugins_server_mocks.mdx b/api_docs/kbn_core_plugins_server_mocks.mdx index bed9f92e1eb0f..ea463fb52463d 100644 --- a/api_docs/kbn_core_plugins_server_mocks.mdx +++ b/api_docs/kbn_core_plugins_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-plugins-server-mocks title: "@kbn/core-plugins-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-plugins-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-plugins-server-mocks'] --- import kbnCorePluginsServerMocksObj from './kbn_core_plugins_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_preboot_server.mdx b/api_docs/kbn_core_preboot_server.mdx index 43baf16adf79d..b535c2cdeacd0 100644 --- a/api_docs/kbn_core_preboot_server.mdx +++ b/api_docs/kbn_core_preboot_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-preboot-server title: "@kbn/core-preboot-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-preboot-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-preboot-server'] --- import kbnCorePrebootServerObj from './kbn_core_preboot_server.devdocs.json'; diff --git a/api_docs/kbn_core_preboot_server_mocks.mdx b/api_docs/kbn_core_preboot_server_mocks.mdx index fffb674f170a2..50fe3a7108c4f 100644 --- a/api_docs/kbn_core_preboot_server_mocks.mdx +++ b/api_docs/kbn_core_preboot_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-preboot-server-mocks title: "@kbn/core-preboot-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-preboot-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-preboot-server-mocks'] --- import kbnCorePrebootServerMocksObj from './kbn_core_preboot_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_rendering_browser_mocks.mdx b/api_docs/kbn_core_rendering_browser_mocks.mdx index 46b891629a363..6f544ce8ff480 100644 --- a/api_docs/kbn_core_rendering_browser_mocks.mdx +++ b/api_docs/kbn_core_rendering_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-rendering-browser-mocks title: "@kbn/core-rendering-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-rendering-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-rendering-browser-mocks'] --- import kbnCoreRenderingBrowserMocksObj from './kbn_core_rendering_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_rendering_server_internal.mdx b/api_docs/kbn_core_rendering_server_internal.mdx index ea30520ff12a6..89574c6e90f9c 100644 --- a/api_docs/kbn_core_rendering_server_internal.mdx +++ b/api_docs/kbn_core_rendering_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-rendering-server-internal title: "@kbn/core-rendering-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-rendering-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-rendering-server-internal'] --- import kbnCoreRenderingServerInternalObj from './kbn_core_rendering_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_rendering_server_mocks.mdx b/api_docs/kbn_core_rendering_server_mocks.mdx index 5a351c5484d66..4c1ffdd186314 100644 --- a/api_docs/kbn_core_rendering_server_mocks.mdx +++ b/api_docs/kbn_core_rendering_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-rendering-server-mocks title: "@kbn/core-rendering-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-rendering-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-rendering-server-mocks'] --- import kbnCoreRenderingServerMocksObj from './kbn_core_rendering_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_root_server_internal.mdx b/api_docs/kbn_core_root_server_internal.mdx index 48ec82b90fe8b..14547b07ff8ca 100644 --- a/api_docs/kbn_core_root_server_internal.mdx +++ b/api_docs/kbn_core_root_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-root-server-internal title: "@kbn/core-root-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-root-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-root-server-internal'] --- import kbnCoreRootServerInternalObj from './kbn_core_root_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_api_browser.devdocs.json b/api_docs/kbn_core_saved_objects_api_browser.devdocs.json index 8ccd20de9a425..94d374afbba24 100644 --- a/api_docs/kbn_core_saved_objects_api_browser.devdocs.json +++ b/api_docs/kbn_core_saved_objects_api_browser.devdocs.json @@ -65,6 +65,22 @@ "plugin": "@kbn/core", "path": "src/core/public/index.ts" }, + { + "plugin": "cases", + "path": "x-pack/plugins/cases/common/ui/types.ts" + }, + { + "plugin": "cases", + "path": "x-pack/plugins/cases/common/ui/types.ts" + }, + { + "plugin": "cases", + "path": "x-pack/plugins/cases/common/ui/types.ts" + }, + { + "plugin": "cases", + "path": "x-pack/plugins/cases/common/ui/types.ts" + }, { "plugin": "spaces", "path": "x-pack/plugins/spaces/public/legacy_urls/types.ts" @@ -121,22 +137,6 @@ "plugin": "lens", "path": "x-pack/plugins/lens/public/types.ts" }, - { - "plugin": "cases", - "path": "x-pack/plugins/cases/common/ui/types.ts" - }, - { - "plugin": "cases", - "path": "x-pack/plugins/cases/common/ui/types.ts" - }, - { - "plugin": "cases", - "path": "x-pack/plugins/cases/common/ui/types.ts" - }, - { - "plugin": "cases", - "path": "x-pack/plugins/cases/common/ui/types.ts" - }, { "plugin": "maps", "path": "x-pack/plugins/maps/public/map_attribute_service.ts" @@ -1054,10 +1054,6 @@ "plugin": "@kbn/core-saved-objects-browser-internal", "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" }, - { - "plugin": "@kbn/core-saved-objects-browser-mocks", - "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts" - }, { "plugin": "savedObjects", "path": "src/plugins/saved_objects/public/saved_object/helpers/create_source.ts" @@ -1078,6 +1074,10 @@ "plugin": "savedObjects", "path": "src/plugins/saved_objects/public/saved_object/helpers/save_with_confirmation.ts" }, + { + "plugin": "@kbn/core-saved-objects-browser-mocks", + "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts" + }, { "plugin": "savedObjects", "path": "src/plugins/saved_objects/public/saved_object/saved_object.test.ts" @@ -1269,14 +1269,14 @@ "deprecated": true, "trackAdoption": false, "references": [ - { - "plugin": "@kbn/core-saved-objects-browser-mocks", - "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts" - }, { "plugin": "home", "path": "src/plugins/home/public/application/components/home_app.js" }, + { + "plugin": "@kbn/core-saved-objects-browser-mocks", + "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts" + }, { "plugin": "@kbn/core-saved-objects-browser-internal", "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.ts" @@ -1378,10 +1378,6 @@ "plugin": "@kbn/core-saved-objects-browser-internal", "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" }, - { - "plugin": "@kbn/core-saved-objects-browser-mocks", - "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts" - }, { "plugin": "savedObjects", "path": "src/plugins/saved_objects/public/saved_object/helpers/build_saved_object.ts" @@ -1390,6 +1386,10 @@ "plugin": "visualizations", "path": "src/plugins/visualizations/public/visualize_app/components/visualize_listing.tsx" }, + { + "plugin": "@kbn/core-saved-objects-browser-mocks", + "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts" + }, { "plugin": "@kbn/core-saved-objects-browser-internal", "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.ts" @@ -1623,10 +1623,6 @@ "deprecated": true, "trackAdoption": false, "references": [ - { - "plugin": "@kbn/core-saved-objects-browser-mocks", - "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts" - }, { "plugin": "savedObjects", "path": "src/plugins/saved_objects/public/saved_object/helpers/find_object_by_title.ts" @@ -1636,8 +1632,8 @@ "path": "src/plugins/presentation_util/public/services/dashboards/dashboards_service.ts" }, { - "plugin": "observability", - "path": "x-pack/plugins/observability/public/hooks/slo/use_fetch_slo_definitions.ts" + "plugin": "@kbn/core-saved-objects-browser-mocks", + "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts" }, { "plugin": "dashboardEnhanced", @@ -1727,14 +1723,14 @@ "deprecated": true, "trackAdoption": false, "references": [ - { - "plugin": "@kbn/core-saved-objects-browser-mocks", - "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts" - }, { "plugin": "savedObjects", "path": "src/plugins/saved_objects/public/saved_object/helpers/initialize_saved_object.ts" }, + { + "plugin": "@kbn/core-saved-objects-browser-mocks", + "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts" + }, { "plugin": "dashboardEnhanced", "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/components/collect_config_container.tsx" @@ -3008,12 +3004,12 @@ "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts" }, { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/public/application/utils/search_utils.ts" + "plugin": "dataVisualizer", + "path": "x-pack/plugins/data_visualizer/common/types/index.ts" }, { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/public/application/utils/search_utils.ts" + "plugin": "dataVisualizer", + "path": "x-pack/plugins/data_visualizer/common/types/index.ts" }, { "plugin": "ml", @@ -3024,12 +3020,12 @@ "path": "x-pack/plugins/ml/common/types/kibana.ts" }, { - "plugin": "dataVisualizer", - "path": "x-pack/plugins/data_visualizer/common/types/index.ts" + "plugin": "aiops", + "path": "x-pack/plugins/aiops/public/application/utils/search_utils.ts" }, { - "plugin": "dataVisualizer", - "path": "x-pack/plugins/data_visualizer/common/types/index.ts" + "plugin": "aiops", + "path": "x-pack/plugins/aiops/public/application/utils/search_utils.ts" }, { "plugin": "dashboardEnhanced", diff --git a/api_docs/kbn_core_saved_objects_api_browser.mdx b/api_docs/kbn_core_saved_objects_api_browser.mdx index 3a7502daf62fa..a5622110500dc 100644 --- a/api_docs/kbn_core_saved_objects_api_browser.mdx +++ b/api_docs/kbn_core_saved_objects_api_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-api-browser title: "@kbn/core-saved-objects-api-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-api-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-api-browser'] --- import kbnCoreSavedObjectsApiBrowserObj from './kbn_core_saved_objects_api_browser.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_api_server.devdocs.json b/api_docs/kbn_core_saved_objects_api_server.devdocs.json index 5727e00e06d62..528190aba475a 100644 --- a/api_docs/kbn_core_saved_objects_api_server.devdocs.json +++ b/api_docs/kbn_core_saved_objects_api_server.devdocs.json @@ -861,8 +861,8 @@ "pluginId": "@kbn/core-saved-objects-api-server", "scope": "common", "docId": "kibKbnCoreSavedObjectsApiServerPluginApi", - "section": "def-common.SavedObjectsResolveOptions", - "text": "SavedObjectsResolveOptions" + "section": "def-common.SavedObjectsGetOptions", + "text": "SavedObjectsGetOptions" }, " | undefined) => Promise<", { @@ -909,15 +909,15 @@ "tags": [], "label": "options", "description": [ - "{@link SavedObjectsResolveOptions } - options for the bulk resolve operation" + "{@link SavedObjectsGetOptions } - options for the bulk resolve operation" ], "signature": [ { "pluginId": "@kbn/core-saved-objects-api-server", "scope": "common", "docId": "kibKbnCoreSavedObjectsApiServerPluginApi", - "section": "def-common.SavedObjectsResolveOptions", - "text": "SavedObjectsResolveOptions" + "section": "def-common.SavedObjectsGetOptions", + "text": "SavedObjectsGetOptions" }, " | undefined" ], @@ -1047,8 +1047,8 @@ "pluginId": "@kbn/core-saved-objects-api-server", "scope": "common", "docId": "kibKbnCoreSavedObjectsApiServerPluginApi", - "section": "def-common.SavedObjectsResolveOptions", - "text": "SavedObjectsResolveOptions" + "section": "def-common.SavedObjectsGetOptions", + "text": "SavedObjectsGetOptions" }, " | undefined) => Promise<", { @@ -1105,15 +1105,15 @@ "tags": [], "label": "options", "description": [ - "{@link SavedObjectsResolveOptions } - options for the resolve operation" + "{@link SavedObjectsGetOptions } - options for the resolve operation" ], "signature": [ { "pluginId": "@kbn/core-saved-objects-api-server", "scope": "common", "docId": "kibKbnCoreSavedObjectsApiServerPluginApi", - "section": "def-common.SavedObjectsResolveOptions", - "text": "SavedObjectsResolveOptions" + "section": "def-common.SavedObjectsGetOptions", + "text": "SavedObjectsGetOptions" }, " | undefined" ], @@ -2294,22 +2294,6 @@ "deprecated": true, "trackAdoption": false, "references": [ - { - "plugin": "@kbn/core-saved-objects-api-browser", - "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-internal", - "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-internal", - "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-mocks", - "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts" - }, { "plugin": "@kbn/core-saved-objects-api-server-internal", "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/utils/internal_utils.ts" @@ -2322,6 +2306,18 @@ "plugin": "@kbn/core-saved-objects-server-internal", "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.ts" }, + { + "plugin": "@kbn/core-saved-objects-api-browser", + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" + }, + { + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" + }, + { + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" + }, { "plugin": "home", "path": "src/plugins/home/server/services/sample_data/data_sets/logs_tsdb/saved_objects.ts" @@ -2371,20 +2367,8 @@ "path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts" }, { - "plugin": "graph", - "path": "x-pack/plugins/graph/server/sample_data/logs.ts" - }, - { - "plugin": "graph", - "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts" - }, - { - "plugin": "graph", - "path": "x-pack/plugins/graph/server/sample_data/flights.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts" }, { "plugin": "osquery", @@ -2474,6 +2458,26 @@ "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts" }, + { + "plugin": "@kbn/core-saved-objects-browser-mocks", + "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts" + }, + { + "plugin": "graph", + "path": "x-pack/plugins/graph/server/sample_data/logs.ts" + }, + { + "plugin": "graph", + "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts" + }, + { + "plugin": "graph", + "path": "x-pack/plugins/graph/server/sample_data/flights.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" + }, { "plugin": "alerting", "path": "x-pack/plugins/alerting/server/rules_client/lib/siem_legacy_actions/retrieve_migrated_legacy_actions.mock.ts" @@ -2513,6 +2517,10 @@ { "plugin": "fleet", "path": "x-pack/plugins/fleet/server/services/epm/packages/get.test.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.test.ts" } ] }, @@ -2636,31 +2644,31 @@ }, { "plugin": "actions", - "path": "x-pack/plugins/actions/server/actions_client.ts" + "path": "x-pack/plugins/actions/server/actions_client/actions_client.ts" }, { "plugin": "actions", - "path": "x-pack/plugins/actions/server/actions_client.ts" + "path": "x-pack/plugins/actions/server/actions_client/actions_client.ts" }, { "plugin": "actions", - "path": "x-pack/plugins/actions/server/actions_client.ts" + "path": "x-pack/plugins/actions/server/actions_client/actions_client.ts" }, { "plugin": "actions", - "path": "x-pack/plugins/actions/server/actions_client.ts" + "path": "x-pack/plugins/actions/server/actions_client/actions_client.ts" }, { "plugin": "actions", - "path": "x-pack/plugins/actions/server/actions_client.ts" + "path": "x-pack/plugins/actions/server/actions_client/actions_client.ts" }, { "plugin": "actions", - "path": "x-pack/plugins/actions/server/actions_client.ts" + "path": "x-pack/plugins/actions/server/actions_client/actions_client.ts" }, { "plugin": "actions", - "path": "x-pack/plugins/actions/server/actions_client.ts" + "path": "x-pack/plugins/actions/server/actions_client/actions_client.ts" }, { "plugin": "actions", @@ -2786,6 +2794,22 @@ "plugin": "alerting", "path": "x-pack/plugins/alerting/server/types.ts" }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts" + }, { "plugin": "savedSearch", "path": "src/plugins/saved_search/server/saved_objects/search_migrations.ts" @@ -2822,22 +2846,6 @@ "plugin": "enterpriseSearch", "path": "x-pack/plugins/enterprise_search/server/collectors/lib/telemetry.ts" }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts" - }, { "plugin": "taskManager", "path": "x-pack/plugins/task_manager/server/task_store.test.ts" @@ -3255,10 +3263,6 @@ "plugin": "@kbn/core-saved-objects-api-server-internal", "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/bulk_create.ts" }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts" - }, { "plugin": "@kbn/core-saved-objects-api-server-internal", "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/test_helpers/repository.test.common.ts" @@ -4815,8 +4819,8 @@ "pluginId": "@kbn/core-saved-objects-api-server", "scope": "common", "docId": "kibKbnCoreSavedObjectsApiServerPluginApi", - "section": "def-common.SavedObjectsResolveOptions", - "text": "SavedObjectsResolveOptions" + "section": "def-common.SavedObjectsGetOptions", + "text": "SavedObjectsGetOptions" }, " | undefined) => Promise<", { @@ -4863,15 +4867,15 @@ "tags": [], "label": "options", "description": [ - "{@link SavedObjectsResolveOptions } - options for the bulk resolve operation" + "{@link SavedObjectsGetOptions } - options for the bulk resolve operation" ], "signature": [ { "pluginId": "@kbn/core-saved-objects-api-server", "scope": "common", "docId": "kibKbnCoreSavedObjectsApiServerPluginApi", - "section": "def-common.SavedObjectsResolveOptions", - "text": "SavedObjectsResolveOptions" + "section": "def-common.SavedObjectsGetOptions", + "text": "SavedObjectsGetOptions" }, " | undefined" ], @@ -4900,8 +4904,8 @@ "pluginId": "@kbn/core-saved-objects-api-server", "scope": "common", "docId": "kibKbnCoreSavedObjectsApiServerPluginApi", - "section": "def-common.SavedObjectsResolveOptions", - "text": "SavedObjectsResolveOptions" + "section": "def-common.SavedObjectsGetOptions", + "text": "SavedObjectsGetOptions" }, " | undefined) => Promise<", { @@ -4958,15 +4962,15 @@ "tags": [], "label": "options", "description": [ - "{@link SavedObjectsResolveOptions } - options for the resolve operation" + "{@link SavedObjectsGetOptions } - options for the resolve operation" ], "signature": [ { "pluginId": "@kbn/core-saved-objects-api-server", "scope": "common", "docId": "kibKbnCoreSavedObjectsApiServerPluginApi", - "section": "def-common.SavedObjectsResolveOptions", - "text": "SavedObjectsResolveOptions" + "section": "def-common.SavedObjectsGetOptions", + "text": "SavedObjectsGetOptions" }, " | undefined" ], @@ -6825,6 +6829,20 @@ "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", "deprecated": false, "trackAdoption": false + }, + { + "parentPluginId": "@kbn/core-saved-objects-api-server", + "id": "def-common.SavedObjectsFindOptions.downwardConversion", + "type": "CompoundType", + "tags": [], + "label": "downwardConversion", + "description": [], + "signature": [ + "\"allow\" | \"forbid\" | undefined" + ], + "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7100,6 +7118,20 @@ "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/get.ts", "deprecated": false, "trackAdoption": false + }, + { + "parentPluginId": "@kbn/core-saved-objects-api-server", + "id": "def-common.SavedObjectsGetOptions.downwardConversion", + "type": "CompoundType", + "tags": [], + "label": "downwardConversion", + "description": [], + "signature": [ + "\"allow\" | \"forbid\" | undefined" + ], + "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/get.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7537,55 +7569,6 @@ ], "initialIsOpen": false }, - { - "parentPluginId": "@kbn/core-saved-objects-api-server", - "id": "def-common.SavedObjectsResolveOptions", - "type": "Interface", - "tags": [], - "label": "SavedObjectsResolveOptions", - "description": [ - "\nOptions for the saved objects get operation\n" - ], - "signature": [ - { - "pluginId": "@kbn/core-saved-objects-api-server", - "scope": "common", - "docId": "kibKbnCoreSavedObjectsApiServerPluginApi", - "section": "def-common.SavedObjectsResolveOptions", - "text": "SavedObjectsResolveOptions" - }, - " extends ", - { - "pluginId": "@kbn/core-saved-objects-api-server", - "scope": "common", - "docId": "kibKbnCoreSavedObjectsApiServerPluginApi", - "section": "def-common.SavedObjectsBaseOptions", - "text": "SavedObjectsBaseOptions" - } - ], - "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/resolve.ts", - "deprecated": false, - "trackAdoption": false, - "children": [ - { - "parentPluginId": "@kbn/core-saved-objects-api-server", - "id": "def-common.SavedObjectsResolveOptions.migrationVersionCompatibility", - "type": "CompoundType", - "tags": [], - "label": "migrationVersionCompatibility", - "description": [ - "{@link SavedObjectsRawDocParseOptions.migrationVersionCompatibility}" - ], - "signature": [ - "\"raw\" | \"compatible\" | undefined" - ], - "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/resolve.ts", - "deprecated": false, - "trackAdoption": false - } - ], - "initialIsOpen": false - }, { "parentPluginId": "@kbn/core-saved-objects-api-server", "id": "def-common.SavedObjectsResolveResponse", @@ -8247,7 +8230,7 @@ "section": "def-common.SavedObjectsFindOptionsReference", "text": "SavedObjectsFindOptionsReference" }, - "[] | undefined; hasNoReferenceOperator?: \"AND\" | \"OR\" | undefined; typeToNamespacesMap?: Map | undefined; migrationVersionCompatibility?: \"raw\" | \"compatible\" | undefined; }" + "[] | undefined; hasNoReferenceOperator?: \"AND\" | \"OR\" | undefined; typeToNamespacesMap?: Map | undefined; migrationVersionCompatibility?: \"raw\" | \"compatible\" | undefined; downwardConversion?: \"allow\" | \"forbid\" | undefined; }" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/create_point_in_time_finder.ts", "deprecated": false, diff --git a/api_docs/kbn_core_saved_objects_api_server.mdx b/api_docs/kbn_core_saved_objects_api_server.mdx index 256af90de496a..4163a9a0328c7 100644 --- a/api_docs/kbn_core_saved_objects_api_server.mdx +++ b/api_docs/kbn_core_saved_objects_api_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-api-server title: "@kbn/core-saved-objects-api-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-api-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-api-server'] --- import kbnCoreSavedObjectsApiServerObj from './kbn_core_saved_objects_api_server.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 351 | 1 | 5 | 1 | +| 351 | 1 | 7 | 1 | ## Common diff --git a/api_docs/kbn_core_saved_objects_api_server_mocks.mdx b/api_docs/kbn_core_saved_objects_api_server_mocks.mdx index 16e9c56e59bd1..4b46bcd6cc501 100644 --- a/api_docs/kbn_core_saved_objects_api_server_mocks.mdx +++ b/api_docs/kbn_core_saved_objects_api_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-api-server-mocks title: "@kbn/core-saved-objects-api-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-api-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-api-server-mocks'] --- import kbnCoreSavedObjectsApiServerMocksObj from './kbn_core_saved_objects_api_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_base_server_internal.mdx b/api_docs/kbn_core_saved_objects_base_server_internal.mdx index 8e85ce16d0104..f4bf4e003f1d2 100644 --- a/api_docs/kbn_core_saved_objects_base_server_internal.mdx +++ b/api_docs/kbn_core_saved_objects_base_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-base-server-internal title: "@kbn/core-saved-objects-base-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-base-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-base-server-internal'] --- import kbnCoreSavedObjectsBaseServerInternalObj from './kbn_core_saved_objects_base_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_base_server_mocks.mdx b/api_docs/kbn_core_saved_objects_base_server_mocks.mdx index 20253dcfaedd8..2f7e8dc1d9263 100644 --- a/api_docs/kbn_core_saved_objects_base_server_mocks.mdx +++ b/api_docs/kbn_core_saved_objects_base_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-base-server-mocks title: "@kbn/core-saved-objects-base-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-base-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-base-server-mocks'] --- import kbnCoreSavedObjectsBaseServerMocksObj from './kbn_core_saved_objects_base_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_browser.devdocs.json b/api_docs/kbn_core_saved_objects_browser.devdocs.json index 487ebe0921108..c36309dcf903d 100644 --- a/api_docs/kbn_core_saved_objects_browser.devdocs.json +++ b/api_docs/kbn_core_saved_objects_browser.devdocs.json @@ -33,6 +33,10 @@ "deprecated": true, "trackAdoption": false, "references": [ + { + "plugin": "@kbn/core", + "path": "src/core/server/index.ts" + }, { "plugin": "@kbn/core-lifecycle-browser", "path": "packages/core/lifecycle/core-lifecycle-browser/src/core_start.ts" @@ -88,10 +92,6 @@ { "plugin": "@kbn/core-saved-objects-browser-mocks", "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts" - }, - { - "plugin": "@kbn/core", - "path": "src/core/server/index.ts" } ], "children": [ diff --git a/api_docs/kbn_core_saved_objects_browser.mdx b/api_docs/kbn_core_saved_objects_browser.mdx index 5d2e7ab785cdd..6cec57d98f2ee 100644 --- a/api_docs/kbn_core_saved_objects_browser.mdx +++ b/api_docs/kbn_core_saved_objects_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-browser title: "@kbn/core-saved-objects-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-browser'] --- import kbnCoreSavedObjectsBrowserObj from './kbn_core_saved_objects_browser.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_browser_internal.mdx b/api_docs/kbn_core_saved_objects_browser_internal.mdx index d2af4605a8702..fcf260fed8d46 100644 --- a/api_docs/kbn_core_saved_objects_browser_internal.mdx +++ b/api_docs/kbn_core_saved_objects_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-browser-internal title: "@kbn/core-saved-objects-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-browser-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-browser-internal'] --- import kbnCoreSavedObjectsBrowserInternalObj from './kbn_core_saved_objects_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_browser_mocks.mdx b/api_docs/kbn_core_saved_objects_browser_mocks.mdx index 1787663a86ee6..66a0a7538c91d 100644 --- a/api_docs/kbn_core_saved_objects_browser_mocks.mdx +++ b/api_docs/kbn_core_saved_objects_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-browser-mocks title: "@kbn/core-saved-objects-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-browser-mocks'] --- import kbnCoreSavedObjectsBrowserMocksObj from './kbn_core_saved_objects_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_common.devdocs.json b/api_docs/kbn_core_saved_objects_common.devdocs.json index 413c658b8baf4..34f58a56a00b1 100644 --- a/api_docs/kbn_core_saved_objects_common.devdocs.json +++ b/api_docs/kbn_core_saved_objects_common.devdocs.json @@ -1046,20 +1046,192 @@ "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" }, { - "plugin": "@kbn/core-saved-objects-api-browser", - "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" + "plugin": "@kbn/core", + "path": "src/core/types/index.ts" }, { - "plugin": "@kbn/core-saved-objects-api-browser", - "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" + "plugin": "savedObjectsTaggingOss", + "path": "src/plugins/saved_objects_tagging_oss/public/api.ts" }, { - "plugin": "@kbn/core-saved-objects-api-browser", - "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" + "plugin": "savedObjectsTaggingOss", + "path": "src/plugins/saved_objects_tagging_oss/public/api.ts" }, { - "plugin": "@kbn/core-saved-objects-api-browser", - "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" + "plugin": "savedObjectsTaggingOss", + "path": "src/plugins/saved_objects_tagging_oss/public/api.ts" + }, + { + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/common/types.ts" + }, + { + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/common/types.ts" + }, + { + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts" + }, + { + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" + }, + { + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts" + }, + { + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts" + }, + { + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts" + }, + { + "plugin": "upgradeAssistant", + "path": "x-pack/plugins/upgrade_assistant/common/types.ts" + }, + { + "plugin": "upgradeAssistant", + "path": "x-pack/plugins/upgrade_assistant/common/types.ts" + }, + { + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts" + }, + { + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts" + }, + { + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts" + }, + { + "plugin": "savedObjectsManagement", + "path": "src/plugins/saved_objects_management/server/lib/find_relationships.test.ts" + }, + { + "plugin": "savedObjectsManagement", + "path": "src/plugins/saved_objects_management/server/lib/find_relationships.test.ts" + }, + { + "plugin": "savedObjectsManagement", + "path": "src/plugins/saved_objects_management/server/lib/find_relationships.test.ts" + }, + { + "plugin": "savedObjectsManagement", + "path": "src/plugins/saved_objects_management/server/lib/find_relationships.test.ts" + }, + { + "plugin": "@kbn/core-saved-objects-api-server", + "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts" + }, + { + "plugin": "@kbn/core-saved-objects-api-server", + "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts" + }, + { + "plugin": "@kbn/core-saved-objects-api-server", + "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts" + }, + { + "plugin": "@kbn/core-saved-objects-api-server", + "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts" + }, + { + "plugin": "@kbn/core-saved-objects-import-export-server-internal", + "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/errors.ts" + }, + { + "plugin": "@kbn/core-saved-objects-import-export-server-internal", + "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/errors.ts" + }, + { + "plugin": "@kbn/core-saved-objects-import-export-server-internal", + "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/lib/regenerate_ids.ts" + }, + { + "plugin": "@kbn/core-saved-objects-import-export-server-internal", + "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/lib/regenerate_ids.ts" + }, + { + "plugin": "@kbn/core-saved-objects-import-export-server-internal", + "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" + }, + { + "plugin": "@kbn/core-saved-objects-import-export-server-internal", + "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" + }, + { + "plugin": "@kbn/core-saved-objects-import-export-server-internal", + "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" + }, + { + "plugin": "@kbn/core-saved-objects-import-export-server-internal", + "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" + }, + { + "plugin": "@kbn/core-saved-objects-import-export-server-internal", + "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" + }, + { + "plugin": "@kbn/core-saved-objects-import-export-server-internal", + "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" + }, + { + "plugin": "@kbn/core-saved-objects-import-export-server-internal", + "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" + }, + { + "plugin": "@kbn/core-saved-objects-import-export-server-internal", + "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" + }, + { + "plugin": "@kbn/core-saved-objects-import-export-server-internal", + "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" + }, + { + "plugin": "@kbn/core-saved-objects-import-export-server-internal", + "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" }, { "plugin": "@kbn/core-saved-objects-api-browser", @@ -1098,20 +1270,20 @@ "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" }, { - "plugin": "@kbn/core-saved-objects-api-server", - "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts" + "plugin": "@kbn/core-saved-objects-api-browser", + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" }, { - "plugin": "@kbn/core-saved-objects-api-server", - "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts" + "plugin": "@kbn/core-saved-objects-api-browser", + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" }, { - "plugin": "@kbn/core-saved-objects-api-server", - "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts" + "plugin": "@kbn/core-saved-objects-api-browser", + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" }, { - "plugin": "@kbn/core-saved-objects-api-server", - "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts" + "plugin": "@kbn/core-saved-objects-api-browser", + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" }, { "plugin": "@kbn/core-saved-objects-browser-internal", @@ -1270,216 +1442,44 @@ "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts" }, { - "plugin": "@kbn/core-saved-objects-import-export-server-internal", - "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/errors.ts" - }, - { - "plugin": "@kbn/core-saved-objects-import-export-server-internal", - "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/errors.ts" - }, - { - "plugin": "@kbn/core-saved-objects-import-export-server-internal", - "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/lib/regenerate_ids.ts" - }, - { - "plugin": "@kbn/core-saved-objects-import-export-server-internal", - "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/lib/regenerate_ids.ts" + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts" }, { - "plugin": "@kbn/core-saved-objects-import-export-server-internal", - "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts" }, { - "plugin": "@kbn/core-saved-objects-import-export-server-internal", - "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts" }, { - "plugin": "@kbn/core-saved-objects-import-export-server-internal", - "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts" }, { - "plugin": "@kbn/core-saved-objects-import-export-server-internal", - "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts" }, { - "plugin": "@kbn/core-saved-objects-import-export-server-internal", - "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts" }, { - "plugin": "@kbn/core-saved-objects-import-export-server-internal", - "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts" }, { - "plugin": "@kbn/core-saved-objects-import-export-server-internal", - "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts" }, { - "plugin": "@kbn/core-saved-objects-import-export-server-internal", - "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" + "plugin": "@kbn/core-ui-settings-server-internal", + "path": "packages/core/ui-settings/core-ui-settings-server-internal/src/saved_objects/transforms.test.ts" }, { - "plugin": "@kbn/core-saved-objects-import-export-server-internal", - "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" - }, - { - "plugin": "@kbn/core-saved-objects-import-export-server-internal", - "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/apply_export_transforms.ts" - }, - { - "plugin": "@kbn/core", - "path": "src/core/types/index.ts" - }, - { - "plugin": "savedObjectsTaggingOss", - "path": "src/plugins/saved_objects_tagging_oss/public/api.ts" - }, - { - "plugin": "savedObjectsTaggingOss", - "path": "src/plugins/saved_objects_tagging_oss/public/api.ts" - }, - { - "plugin": "savedObjectsTaggingOss", - "path": "src/plugins/saved_objects_tagging_oss/public/api.ts" - }, - { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/common/types.ts" - }, - { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/common/types.ts" - }, - { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts" - }, - { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" - }, - { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts" - }, - { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts" - }, - { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/host_risk_score_dashboards.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts" - }, - { - "plugin": "upgradeAssistant", - "path": "x-pack/plugins/upgrade_assistant/common/types.ts" - }, - { - "plugin": "upgradeAssistant", - "path": "x-pack/plugins/upgrade_assistant/common/types.ts" - }, - { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts" - }, - { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts" - }, - { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts" - }, - { - "plugin": "savedObjectsManagement", - "path": "src/plugins/saved_objects_management/server/lib/find_relationships.test.ts" - }, - { - "plugin": "savedObjectsManagement", - "path": "src/plugins/saved_objects_management/server/lib/find_relationships.test.ts" - }, - { - "plugin": "savedObjectsManagement", - "path": "src/plugins/saved_objects_management/server/lib/find_relationships.test.ts" - }, - { - "plugin": "savedObjectsManagement", - "path": "src/plugins/saved_objects_management/server/lib/find_relationships.test.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-internal", - "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-internal", - "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-internal", - "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-internal", - "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-internal", - "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-internal", - "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-internal", - "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-internal", - "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts" - }, - { - "plugin": "@kbn/core-ui-settings-server-internal", - "path": "packages/core/ui-settings/core-ui-settings-server-internal/src/saved_objects/transforms.test.ts" - }, - { - "plugin": "@kbn/core-ui-settings-server-internal", - "path": "packages/core/ui-settings/core-ui-settings-server-internal/src/saved_objects/transforms.test.ts" + "plugin": "@kbn/core-ui-settings-server-internal", + "path": "packages/core/ui-settings/core-ui-settings-server-internal/src/saved_objects/transforms.test.ts" }, { "plugin": "@kbn/core-ui-settings-server-internal", @@ -1519,6 +1519,10 @@ "deprecated": true, "trackAdoption": false, "references": [ + { + "plugin": "@kbn/core", + "path": "src/core/types/index.ts" + }, { "plugin": "@kbn/core", "path": "src/core/public/index.ts" @@ -1554,10 +1558,6 @@ { "plugin": "advancedSettings", "path": "src/plugins/advanced_settings/public/management_app/lib/to_editable_config.ts" - }, - { - "plugin": "@kbn/core", - "path": "src/core/types/index.ts" } ], "initialIsOpen": false @@ -1575,6 +1575,18 @@ "deprecated": true, "trackAdoption": false, "references": [ + { + "plugin": "@kbn/core", + "path": "src/core/types/index.ts" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/common/types/modules.ts" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/common/types/modules.ts" + }, { "plugin": "@kbn/core", "path": "src/core/public/index.ts" @@ -1742,18 +1754,6 @@ { "plugin": "savedObjects", "path": "src/plugins/saved_objects/public/saved_object/helpers/save_with_confirmation.test.ts" - }, - { - "plugin": "@kbn/core", - "path": "src/core/types/index.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/common/types/modules.ts" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/common/types/modules.ts" } ], "initialIsOpen": false @@ -1784,11 +1784,11 @@ "references": [ { "plugin": "@kbn/core", - "path": "src/core/public/index.ts" + "path": "src/core/types/index.ts" }, { "plugin": "@kbn/core", - "path": "src/core/types/index.ts" + "path": "src/core/public/index.ts" } ], "initialIsOpen": false @@ -1807,824 +1807,824 @@ "trackAdoption": false, "references": [ { - "plugin": "@kbn/core-saved-objects-api-browser", - "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts" + "plugin": "@kbn/core", + "path": "src/core/types/index.ts" }, { - "plugin": "@kbn/core-saved-objects-api-browser", - "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts" + "plugin": "kibanaUtils", + "path": "src/plugins/kibana_utils/common/persistable_state/types.ts" }, { - "plugin": "@kbn/core-saved-objects-api-browser", - "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_update.ts" + "plugin": "kibanaUtils", + "path": "src/plugins/kibana_utils/common/persistable_state/types.ts" }, { - "plugin": "@kbn/core-saved-objects-api-browser", - "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_update.ts" + "plugin": "kibanaUtils", + "path": "src/plugins/kibana_utils/common/persistable_state/types.ts" }, { - "plugin": "@kbn/core-saved-objects-api-browser", - "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/update.ts" + "plugin": "kibanaUtils", + "path": "src/plugins/kibana_utils/common/persistable_state/types.ts" }, { - "plugin": "@kbn/core-saved-objects-api-browser", - "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/update.ts" + "plugin": "kibanaUtils", + "path": "src/plugins/kibana_utils/common/persistable_state/types.ts" }, { - "plugin": "@kbn/core", - "path": "src/core/public/index.ts" + "plugin": "expressions", + "path": "src/plugins/expressions/common/expression_functions/expression_function.ts" }, { - "plugin": "savedObjects", - "path": "src/plugins/saved_objects/public/types.ts" + "plugin": "expressions", + "path": "src/plugins/expressions/common/expression_functions/expression_function.ts" }, { - "plugin": "savedObjects", - "path": "src/plugins/saved_objects/public/types.ts" + "plugin": "expressions", + "path": "src/plugins/expressions/common/expression_functions/expression_function.ts" }, { - "plugin": "savedObjects", - "path": "src/plugins/saved_objects/public/types.ts" + "plugin": "expressions", + "path": "src/plugins/expressions/common/service/expressions_services.ts" }, { - "plugin": "savedObjects", - "path": "src/plugins/saved_objects/public/types.ts" + "plugin": "expressions", + "path": "src/plugins/expressions/common/service/expressions_services.ts" }, { - "plugin": "savedObjects", - "path": "src/plugins/saved_objects/public/types.ts" + "plugin": "expressions", + "path": "src/plugins/expressions/common/service/expressions_services.ts" }, { - "plugin": "savedObjects", - "path": "src/plugins/saved_objects/public/types.ts" + "plugin": "expressions", + "path": "src/plugins/expressions/common/service/expressions_services.ts" }, { - "plugin": "savedObjectsManagement", - "path": "src/plugins/saved_objects_management/public/services/types/record.ts" + "plugin": "expressions", + "path": "src/plugins/expressions/common/executor/executor.ts" }, { - "plugin": "savedObjectsManagement", - "path": "src/plugins/saved_objects_management/public/services/types/record.ts" + "plugin": "expressions", + "path": "src/plugins/expressions/common/executor/executor.ts" }, { - "plugin": "visualizations", - "path": "src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts" + "plugin": "expressions", + "path": "src/plugins/expressions/common/executor/executor.ts" }, { - "plugin": "visualizations", - "path": "src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts" + "plugin": "data", + "path": "src/plugins/data/common/query/filters/persistable_state.ts" }, { - "plugin": "visualizations", - "path": "src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts" + "plugin": "data", + "path": "src/plugins/data/common/query/filters/persistable_state.ts" }, { - "plugin": "visualizations", - "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts" + "plugin": "data", + "path": "src/plugins/data/common/query/filters/persistable_state.ts" }, { - "plugin": "visualizations", - "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts" + "plugin": "data", + "path": "src/plugins/data/common/query/persistable_state.ts" }, { - "plugin": "visualizations", - "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts" + "plugin": "data", + "path": "src/plugins/data/common/query/persistable_state.ts" }, { - "plugin": "visualizations", - "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts" + "plugin": "data", + "path": "src/plugins/data/common/query/persistable_state.ts" }, { - "plugin": "visualizations", - "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts" + "plugin": "savedObjectsTaggingOss", + "path": "src/plugins/saved_objects_tagging_oss/public/api.ts" }, { - "plugin": "visualizations", - "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts" + "plugin": "savedObjectsTaggingOss", + "path": "src/plugins/saved_objects_tagging_oss/public/api.ts" }, { - "plugin": "visualizations", - "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable_factory.tsx" + "plugin": "savedObjectsTaggingOss", + "path": "src/plugins/saved_objects_tagging_oss/public/api.ts" }, { - "plugin": "visualizations", - "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable_factory.tsx" + "plugin": "savedObjectsTaggingOss", + "path": "src/plugins/saved_objects_tagging_oss/public/api.ts" }, { - "plugin": "visualizations", - "path": "src/plugins/visualizations/public/visualize_app/components/visualize_listing.tsx" + "plugin": "embeddable", + "path": "src/plugins/embeddable/common/lib/migrate_base_input.ts" }, { - "plugin": "visualizations", - "path": "src/plugins/visualizations/public/visualize_app/components/visualize_listing.tsx" + "plugin": "embeddable", + "path": "src/plugins/embeddable/common/lib/migrate_base_input.ts" }, { - "plugin": "visualizations", - "path": "src/plugins/visualizations/public/visualize_app/components/visualize_listing.tsx" + "plugin": "embeddable", + "path": "src/plugins/embeddable/common/lib/migrate_base_input.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/public/ui_api/get_table_column_definition.tsx" + "plugin": "embeddable", + "path": "src/plugins/embeddable/common/lib/inject.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/public/ui_api/get_table_column_definition.tsx" + "plugin": "embeddable", + "path": "src/plugins/embeddable/common/lib/inject.ts" }, { - "plugin": "eventAnnotation", - "path": "src/plugins/event_annotation/public/event_annotation_service/service.tsx" + "plugin": "visualizations", + "path": "src/plugins/visualizations/public/utils/saved_visualization_references/controls_references.ts" }, { - "plugin": "eventAnnotation", - "path": "src/plugins/event_annotation/public/event_annotation_service/service.tsx" + "plugin": "visualizations", + "path": "src/plugins/visualizations/public/utils/saved_visualization_references/controls_references.ts" }, { - "plugin": "eventAnnotation", - "path": "src/plugins/event_annotation/public/event_annotation_service/service.tsx" + "plugin": "visualizations", + "path": "src/plugins/visualizations/public/utils/saved_visualization_references/controls_references.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/persistence/saved_object_store.ts" + "plugin": "visualizations", + "path": "src/plugins/visualizations/public/utils/saved_visualization_references/timeseries_references.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/persistence/saved_object_store.ts" + "plugin": "visualizations", + "path": "src/plugins/visualizations/public/utils/saved_visualization_references/timeseries_references.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/persistence/saved_object_store.ts" + "plugin": "visualizations", + "path": "src/plugins/visualizations/public/utils/saved_visualization_references/timeseries_references.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/state_management/selectors.ts" + "plugin": "controls", + "path": "src/plugins/controls/common/options_list/options_list_persistable_state.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/state_management/selectors.ts" + "plugin": "controls", + "path": "src/plugins/controls/common/options_list/options_list_persistable_state.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/state_management/selectors.ts" + "plugin": "controls", + "path": "src/plugins/controls/common/options_list/options_list_persistable_state.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts" + "plugin": "controls", + "path": "src/plugins/controls/common/range_slider/range_slider_persistable_state.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts" + "plugin": "controls", + "path": "src/plugins/controls/common/range_slider/range_slider_persistable_state.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts" + "plugin": "controls", + "path": "src/plugins/controls/common/range_slider/range_slider_persistable_state.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts" + "plugin": "controls", + "path": "src/plugins/controls/common/time_slider/time_slider_persistable_state.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts" + "plugin": "controls", + "path": "src/plugins/controls/common/time_slider/time_slider_persistable_state.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts" + "plugin": "controls", + "path": "src/plugins/controls/common/time_slider/time_slider_persistable_state.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts" + "plugin": "controls", + "path": "src/plugins/controls/common/control_group/control_group_persistable_state.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/utils.ts" + "plugin": "controls", + "path": "src/plugins/controls/common/control_group/control_group_persistable_state.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/utils.ts" + "plugin": "controls", + "path": "src/plugins/controls/common/control_group/control_group_persistable_state.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/utils.ts" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/common/references.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/utils.ts" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/common/references.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/common/references.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/common/references.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/common/references.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/common/references.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.tsx" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.tsx" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.tsx" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.tsx" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/public/components/connected/tag_list.tsx" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/visualizations/xy/state_helpers.ts" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/public/components/connected/tag_list.tsx" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/visualizations/xy/state_helpers.ts" + "plugin": "uiActionsEnhanced", + "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/visualizations/xy/state_helpers.ts" + "plugin": "uiActionsEnhanced", + "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/visualizations/xy/visualization.tsx" + "plugin": "uiActionsEnhanced", + "path": "src/plugins/ui_actions_enhanced/public/services/ui_actions_service_enhancements.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/visualizations/xy/visualization.tsx" + "plugin": "uiActionsEnhanced", + "path": "src/plugins/ui_actions_enhanced/public/services/ui_actions_service_enhancements.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/datasources/text_based/text_based_languages.tsx" + "plugin": "uiActionsEnhanced", + "path": "src/plugins/ui_actions_enhanced/public/services/ui_actions_service_enhancements.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/datasources/text_based/text_based_languages.tsx" + "plugin": "uiActionsEnhanced", + "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_enhancement.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/app_plugin/save_modal_container.tsx" + "plugin": "uiActionsEnhanced", + "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_enhancement.ts" }, { "plugin": "lens", - "path": "x-pack/plugins/lens/public/app_plugin/save_modal_container.tsx" + "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts" }, { "plugin": "lens", - "path": "x-pack/plugins/lens/public/types.ts" + "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts" }, { "plugin": "lens", - "path": "x-pack/plugins/lens/public/types.ts" + "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts" }, { "plugin": "lens", - "path": "x-pack/plugins/lens/public/types.ts" + "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts" }, { "plugin": "lens", - "path": "x-pack/plugins/lens/public/types.ts" + "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/types.ts" + "plugin": "maps", + "path": "x-pack/plugins/maps/common/migrations/references.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/types.ts" + "plugin": "maps", + "path": "x-pack/plugins/maps/common/migrations/references.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/types.ts" + "plugin": "maps", + "path": "x-pack/plugins/maps/common/migrations/references.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/types.ts" + "plugin": "maps", + "path": "x-pack/plugins/maps/common/migrations/references.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/types.ts" + "plugin": "maps", + "path": "x-pack/plugins/maps/common/migrations/references.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/types.ts" + "plugin": "maps", + "path": "x-pack/plugins/maps/public/map_attribute_service.ts" }, { - "plugin": "graph", - "path": "x-pack/plugins/graph/public/services/persistence/saved_workspace_references.ts" + "plugin": "maps", + "path": "x-pack/plugins/maps/public/map_attribute_service.ts" }, { - "plugin": "graph", - "path": "x-pack/plugins/graph/public/services/persistence/saved_workspace_references.ts" + "plugin": "canvas", + "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_lens.ts" }, { - "plugin": "graph", - "path": "x-pack/plugins/graph/public/services/persistence/saved_workspace_references.ts" + "plugin": "canvas", + "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_lens.ts" }, { - "plugin": "graph", - "path": "x-pack/plugins/graph/public/types/persistence.ts" + "plugin": "canvas", + "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_map.ts" }, { - "plugin": "graph", - "path": "x-pack/plugins/graph/public/types/persistence.ts" + "plugin": "canvas", + "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_map.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.test.ts" + "plugin": "canvas", + "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_search.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.test.ts" + "plugin": "canvas", + "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_search.ts" }, { - "plugin": "lens", - "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.test.ts" + "plugin": "canvas", + "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_visualization.ts" }, { - "plugin": "dashboard", - "path": "src/plugins/dashboard/common/bwc/types.ts" + "plugin": "canvas", + "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_visualization.ts" }, { - "plugin": "dashboard", - "path": "src/plugins/dashboard/common/bwc/types.ts" + "plugin": "canvas", + "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/embeddable.ts" }, { - "plugin": "savedObjectsTaggingOss", - "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts" + "plugin": "canvas", + "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/embeddable.ts" }, { - "plugin": "savedObjectsTaggingOss", - "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts" + "plugin": "dashboardEnhanced", + "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/dashboard_drilldown_persistable_state.ts" }, { - "plugin": "savedObjectsTaggingOss", - "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts" + "plugin": "dashboardEnhanced", + "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/dashboard_drilldown_persistable_state.ts" }, { - "plugin": "savedObjectsTaggingOss", - "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts" + "plugin": "dashboardEnhanced", + "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/dashboard_drilldown_persistable_state.ts" }, { - "plugin": "savedObjectsTaggingOss", - "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts" + "plugin": "uiActionsEnhanced", + "path": "src/plugins/ui_actions_enhanced/server/dynamic_action_enhancement.ts" }, { - "plugin": "savedObjectsTaggingOss", - "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts" + "plugin": "uiActionsEnhanced", + "path": "src/plugins/ui_actions_enhanced/server/dynamic_action_enhancement.ts" }, { - "plugin": "savedObjectsTaggingOss", - "path": "src/plugins/saved_objects_tagging_oss/public/decorator/inject_tag_references.test.ts" + "plugin": "uiActionsEnhanced", + "path": "src/plugins/ui_actions_enhanced/server/dynamic_action_enhancement.ts" }, { - "plugin": "savedObjectsTaggingOss", - "path": "src/plugins/saved_objects_tagging_oss/public/decorator/inject_tag_references.test.ts" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/common/references.test.ts" }, { - "plugin": "@kbn/core", - "path": "src/core/types/index.ts" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/common/references.test.ts" }, { - "plugin": "kibanaUtils", - "path": "src/plugins/kibana_utils/common/persistable_state/types.ts" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts" }, { - "plugin": "kibanaUtils", - "path": "src/plugins/kibana_utils/common/persistable_state/types.ts" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts" }, { - "plugin": "kibanaUtils", - "path": "src/plugins/kibana_utils/common/persistable_state/types.ts" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts" }, { - "plugin": "kibanaUtils", - "path": "src/plugins/kibana_utils/common/persistable_state/types.ts" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts" }, { - "plugin": "kibanaUtils", - "path": "src/plugins/kibana_utils/common/persistable_state/types.ts" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts" }, { - "plugin": "expressions", - "path": "src/plugins/expressions/common/expression_functions/expression_function.ts" + "plugin": "globalSearchProviders", + "path": "x-pack/plugins/global_search_providers/server/providers/saved_objects/map_object_to_result.test.ts" }, { - "plugin": "expressions", - "path": "src/plugins/expressions/common/expression_functions/expression_function.ts" + "plugin": "globalSearchProviders", + "path": "x-pack/plugins/global_search_providers/server/providers/saved_objects/map_object_to_result.test.ts" }, { "plugin": "expressions", - "path": "src/plugins/expressions/common/expression_functions/expression_function.ts" + "path": "src/plugins/expressions/common/executor/executor.test.ts" }, { "plugin": "expressions", - "path": "src/plugins/expressions/common/service/expressions_services.ts" + "path": "src/plugins/expressions/common/executor/executor.test.ts" }, { "plugin": "expressions", - "path": "src/plugins/expressions/common/service/expressions_services.ts" + "path": "src/plugins/expressions/common/executor/executor.test.ts" }, { - "plugin": "expressions", - "path": "src/plugins/expressions/common/service/expressions_services.ts" + "plugin": "@kbn/core-saved-objects-api-browser", + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts" }, { - "plugin": "expressions", - "path": "src/plugins/expressions/common/service/expressions_services.ts" + "plugin": "@kbn/core-saved-objects-api-browser", + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts" }, { - "plugin": "expressions", - "path": "src/plugins/expressions/common/executor/executor.ts" + "plugin": "@kbn/core-saved-objects-api-browser", + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_update.ts" }, { - "plugin": "expressions", - "path": "src/plugins/expressions/common/executor/executor.ts" + "plugin": "@kbn/core-saved-objects-api-browser", + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_update.ts" }, { - "plugin": "expressions", - "path": "src/plugins/expressions/common/executor/executor.ts" + "plugin": "@kbn/core-saved-objects-api-browser", + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/update.ts" }, { - "plugin": "data", - "path": "src/plugins/data/common/query/filters/persistable_state.ts" + "plugin": "@kbn/core-saved-objects-api-browser", + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/update.ts" }, { - "plugin": "data", - "path": "src/plugins/data/common/query/filters/persistable_state.ts" + "plugin": "@kbn/core", + "path": "src/core/public/index.ts" }, { - "plugin": "data", - "path": "src/plugins/data/common/query/filters/persistable_state.ts" + "plugin": "savedObjects", + "path": "src/plugins/saved_objects/public/types.ts" }, { - "plugin": "data", - "path": "src/plugins/data/common/query/persistable_state.ts" + "plugin": "savedObjects", + "path": "src/plugins/saved_objects/public/types.ts" }, { - "plugin": "data", - "path": "src/plugins/data/common/query/persistable_state.ts" + "plugin": "savedObjects", + "path": "src/plugins/saved_objects/public/types.ts" }, { - "plugin": "data", - "path": "src/plugins/data/common/query/persistable_state.ts" + "plugin": "savedObjects", + "path": "src/plugins/saved_objects/public/types.ts" }, { - "plugin": "savedObjectsTaggingOss", - "path": "src/plugins/saved_objects_tagging_oss/public/api.ts" + "plugin": "savedObjects", + "path": "src/plugins/saved_objects/public/types.ts" }, { - "plugin": "savedObjectsTaggingOss", - "path": "src/plugins/saved_objects_tagging_oss/public/api.ts" + "plugin": "savedObjects", + "path": "src/plugins/saved_objects/public/types.ts" }, { - "plugin": "savedObjectsTaggingOss", - "path": "src/plugins/saved_objects_tagging_oss/public/api.ts" + "plugin": "savedObjectsManagement", + "path": "src/plugins/saved_objects_management/public/services/types/record.ts" }, { - "plugin": "savedObjectsTaggingOss", - "path": "src/plugins/saved_objects_tagging_oss/public/api.ts" + "plugin": "savedObjectsManagement", + "path": "src/plugins/saved_objects_management/public/services/types/record.ts" }, { - "plugin": "embeddable", - "path": "src/plugins/embeddable/common/lib/migrate_base_input.ts" + "plugin": "visualizations", + "path": "src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts" }, { - "plugin": "embeddable", - "path": "src/plugins/embeddable/common/lib/migrate_base_input.ts" + "plugin": "visualizations", + "path": "src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts" }, { - "plugin": "embeddable", - "path": "src/plugins/embeddable/common/lib/migrate_base_input.ts" + "plugin": "visualizations", + "path": "src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts" }, { - "plugin": "embeddable", - "path": "src/plugins/embeddable/common/lib/inject.ts" + "plugin": "visualizations", + "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts" }, { - "plugin": "embeddable", - "path": "src/plugins/embeddable/common/lib/inject.ts" + "plugin": "visualizations", + "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts" }, { "plugin": "visualizations", - "path": "src/plugins/visualizations/public/utils/saved_visualization_references/controls_references.ts" + "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts" }, { "plugin": "visualizations", - "path": "src/plugins/visualizations/public/utils/saved_visualization_references/controls_references.ts" + "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts" }, { "plugin": "visualizations", - "path": "src/plugins/visualizations/public/utils/saved_visualization_references/controls_references.ts" + "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts" }, { "plugin": "visualizations", - "path": "src/plugins/visualizations/public/utils/saved_visualization_references/timeseries_references.ts" + "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts" }, { "plugin": "visualizations", - "path": "src/plugins/visualizations/public/utils/saved_visualization_references/timeseries_references.ts" + "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable_factory.tsx" }, { "plugin": "visualizations", - "path": "src/plugins/visualizations/public/utils/saved_visualization_references/timeseries_references.ts" + "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable_factory.tsx" }, { - "plugin": "controls", - "path": "src/plugins/controls/common/options_list/options_list_persistable_state.ts" + "plugin": "visualizations", + "path": "src/plugins/visualizations/public/visualize_app/components/visualize_listing.tsx" }, { - "plugin": "controls", - "path": "src/plugins/controls/common/options_list/options_list_persistable_state.ts" + "plugin": "visualizations", + "path": "src/plugins/visualizations/public/visualize_app/components/visualize_listing.tsx" }, { - "plugin": "controls", - "path": "src/plugins/controls/common/options_list/options_list_persistable_state.ts" + "plugin": "visualizations", + "path": "src/plugins/visualizations/public/visualize_app/components/visualize_listing.tsx" }, { - "plugin": "controls", - "path": "src/plugins/controls/common/range_slider/range_slider_persistable_state.ts" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/public/ui_api/get_table_column_definition.tsx" }, { - "plugin": "controls", - "path": "src/plugins/controls/common/range_slider/range_slider_persistable_state.ts" + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/public/ui_api/get_table_column_definition.tsx" }, { - "plugin": "controls", - "path": "src/plugins/controls/common/range_slider/range_slider_persistable_state.ts" + "plugin": "eventAnnotation", + "path": "src/plugins/event_annotation/public/event_annotation_service/service.tsx" }, { - "plugin": "controls", - "path": "src/plugins/controls/common/time_slider/time_slider_persistable_state.ts" + "plugin": "eventAnnotation", + "path": "src/plugins/event_annotation/public/event_annotation_service/service.tsx" }, { - "plugin": "controls", - "path": "src/plugins/controls/common/time_slider/time_slider_persistable_state.ts" + "plugin": "eventAnnotation", + "path": "src/plugins/event_annotation/public/event_annotation_service/service.tsx" }, { - "plugin": "controls", - "path": "src/plugins/controls/common/time_slider/time_slider_persistable_state.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/persistence/saved_object_store.ts" }, { - "plugin": "controls", - "path": "src/plugins/controls/common/control_group/control_group_persistable_state.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/persistence/saved_object_store.ts" }, { - "plugin": "controls", - "path": "src/plugins/controls/common/control_group/control_group_persistable_state.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/persistence/saved_object_store.ts" }, { - "plugin": "controls", - "path": "src/plugins/controls/common/control_group/control_group_persistable_state.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/state_management/selectors.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/common/references.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/state_management/selectors.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/common/references.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/state_management/selectors.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/common/references.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/common/references.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/common/references.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/common/references.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/public/utils.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/utils.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/public/components/connected/tag_list.tsx" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/utils.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/public/components/connected/tag_list.tsx" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/utils.ts" }, { - "plugin": "uiActionsEnhanced", - "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/utils.ts" }, { - "plugin": "uiActionsEnhanced", - "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts" }, { - "plugin": "uiActionsEnhanced", - "path": "src/plugins/ui_actions_enhanced/public/services/ui_actions_service_enhancements.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts" }, { - "plugin": "uiActionsEnhanced", - "path": "src/plugins/ui_actions_enhanced/public/services/ui_actions_service_enhancements.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts" }, { - "plugin": "uiActionsEnhanced", - "path": "src/plugins/ui_actions_enhanced/public/services/ui_actions_service_enhancements.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts" }, { - "plugin": "uiActionsEnhanced", - "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_enhancement.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/datasources/form_based/loader.ts" }, { - "plugin": "uiActionsEnhanced", - "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_enhancement.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.tsx" }, { "plugin": "lens", - "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts" + "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.tsx" }, { "plugin": "lens", - "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts" + "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.tsx" }, { "plugin": "lens", - "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts" + "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.tsx" }, { "plugin": "lens", - "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts" + "path": "x-pack/plugins/lens/public/visualizations/xy/state_helpers.ts" }, { "plugin": "lens", - "path": "x-pack/plugins/lens/common/embeddable_factory/index.ts" + "path": "x-pack/plugins/lens/public/visualizations/xy/state_helpers.ts" }, { - "plugin": "maps", - "path": "x-pack/plugins/maps/common/migrations/references.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/visualizations/xy/state_helpers.ts" }, { - "plugin": "maps", - "path": "x-pack/plugins/maps/common/migrations/references.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/visualizations/xy/visualization.tsx" }, { - "plugin": "maps", - "path": "x-pack/plugins/maps/common/migrations/references.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/visualizations/xy/visualization.tsx" }, { - "plugin": "maps", - "path": "x-pack/plugins/maps/common/migrations/references.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/datasources/text_based/text_based_languages.tsx" }, { - "plugin": "maps", - "path": "x-pack/plugins/maps/common/migrations/references.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/datasources/text_based/text_based_languages.tsx" }, { - "plugin": "maps", - "path": "x-pack/plugins/maps/public/map_attribute_service.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/app_plugin/save_modal_container.tsx" }, { - "plugin": "maps", - "path": "x-pack/plugins/maps/public/map_attribute_service.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/app_plugin/save_modal_container.tsx" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_lens.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/types.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_lens.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/types.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_map.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/types.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_map.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/types.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_search.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/types.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_search.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/types.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_visualization.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/types.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/saved_visualization.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/types.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/embeddable.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/types.ts" }, { - "plugin": "canvas", - "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/external/embeddable.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/types.ts" }, { - "plugin": "dashboardEnhanced", - "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/dashboard_drilldown_persistable_state.ts" + "plugin": "graph", + "path": "x-pack/plugins/graph/public/services/persistence/saved_workspace_references.ts" }, { - "plugin": "dashboardEnhanced", - "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/dashboard_drilldown_persistable_state.ts" + "plugin": "graph", + "path": "x-pack/plugins/graph/public/services/persistence/saved_workspace_references.ts" }, { - "plugin": "dashboardEnhanced", - "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/dashboard_drilldown_persistable_state.ts" + "plugin": "graph", + "path": "x-pack/plugins/graph/public/services/persistence/saved_workspace_references.ts" }, { - "plugin": "uiActionsEnhanced", - "path": "src/plugins/ui_actions_enhanced/server/dynamic_action_enhancement.ts" + "plugin": "graph", + "path": "x-pack/plugins/graph/public/types/persistence.ts" }, { - "plugin": "uiActionsEnhanced", - "path": "src/plugins/ui_actions_enhanced/server/dynamic_action_enhancement.ts" + "plugin": "graph", + "path": "x-pack/plugins/graph/public/types/persistence.ts" }, { - "plugin": "uiActionsEnhanced", - "path": "src/plugins/ui_actions_enhanced/server/dynamic_action_enhancement.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.test.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/common/references.test.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.test.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/common/references.test.ts" + "plugin": "lens", + "path": "x-pack/plugins/lens/public/datasources/form_based/form_based.test.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts" + "plugin": "dashboard", + "path": "src/plugins/dashboard/common/bwc/types.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts" + "plugin": "dashboard", + "path": "src/plugins/dashboard/common/bwc/types.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/public/utils.test.ts" + "plugin": "savedObjectsTaggingOss", + "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts" + "plugin": "savedObjectsTaggingOss", + "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/common/test_utils/index.ts" + "plugin": "savedObjectsTaggingOss", + "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts" }, { - "plugin": "globalSearchProviders", - "path": "x-pack/plugins/global_search_providers/server/providers/saved_objects/map_object_to_result.test.ts" + "plugin": "savedObjectsTaggingOss", + "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts" }, { - "plugin": "globalSearchProviders", - "path": "x-pack/plugins/global_search_providers/server/providers/saved_objects/map_object_to_result.test.ts" + "plugin": "savedObjectsTaggingOss", + "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts" }, { - "plugin": "expressions", - "path": "src/plugins/expressions/common/executor/executor.test.ts" + "plugin": "savedObjectsTaggingOss", + "path": "src/plugins/saved_objects_tagging_oss/public/decorator/extract_tag_references.test.ts" }, { - "plugin": "expressions", - "path": "src/plugins/expressions/common/executor/executor.test.ts" + "plugin": "savedObjectsTaggingOss", + "path": "src/plugins/saved_objects_tagging_oss/public/decorator/inject_tag_references.test.ts" }, { - "plugin": "expressions", - "path": "src/plugins/expressions/common/executor/executor.test.ts" + "plugin": "savedObjectsTaggingOss", + "path": "src/plugins/saved_objects_tagging_oss/public/decorator/inject_tag_references.test.ts" }, { "plugin": "lens", diff --git a/api_docs/kbn_core_saved_objects_common.mdx b/api_docs/kbn_core_saved_objects_common.mdx index e83d133f7abfb..7620b45e627da 100644 --- a/api_docs/kbn_core_saved_objects_common.mdx +++ b/api_docs/kbn_core_saved_objects_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-common title: "@kbn/core-saved-objects-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-common plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-common'] --- import kbnCoreSavedObjectsCommonObj from './kbn_core_saved_objects_common.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_import_export_server_internal.mdx b/api_docs/kbn_core_saved_objects_import_export_server_internal.mdx index 074c73bf582c1..7d5f16de565c4 100644 --- a/api_docs/kbn_core_saved_objects_import_export_server_internal.mdx +++ b/api_docs/kbn_core_saved_objects_import_export_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-import-export-server-internal title: "@kbn/core-saved-objects-import-export-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-import-export-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-import-export-server-internal'] --- import kbnCoreSavedObjectsImportExportServerInternalObj from './kbn_core_saved_objects_import_export_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_import_export_server_mocks.mdx b/api_docs/kbn_core_saved_objects_import_export_server_mocks.mdx index 7c06907f01386..3aaedb2917441 100644 --- a/api_docs/kbn_core_saved_objects_import_export_server_mocks.mdx +++ b/api_docs/kbn_core_saved_objects_import_export_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-import-export-server-mocks title: "@kbn/core-saved-objects-import-export-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-import-export-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-import-export-server-mocks'] --- import kbnCoreSavedObjectsImportExportServerMocksObj from './kbn_core_saved_objects_import_export_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_migration_server_internal.mdx b/api_docs/kbn_core_saved_objects_migration_server_internal.mdx index ac4d31f6439e6..bf7666ffe7c21 100644 --- a/api_docs/kbn_core_saved_objects_migration_server_internal.mdx +++ b/api_docs/kbn_core_saved_objects_migration_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-migration-server-internal title: "@kbn/core-saved-objects-migration-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-migration-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-migration-server-internal'] --- import kbnCoreSavedObjectsMigrationServerInternalObj from './kbn_core_saved_objects_migration_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_migration_server_mocks.mdx b/api_docs/kbn_core_saved_objects_migration_server_mocks.mdx index 2797085c4ae07..81fe7e0c21411 100644 --- a/api_docs/kbn_core_saved_objects_migration_server_mocks.mdx +++ b/api_docs/kbn_core_saved_objects_migration_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-migration-server-mocks title: "@kbn/core-saved-objects-migration-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-migration-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-migration-server-mocks'] --- import kbnCoreSavedObjectsMigrationServerMocksObj from './kbn_core_saved_objects_migration_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_server.devdocs.json b/api_docs/kbn_core_saved_objects_server.devdocs.json index 706b7e0a90e51..097e6c4edbe8c 100644 --- a/api_docs/kbn_core_saved_objects_server.devdocs.json +++ b/api_docs/kbn_core_saved_objects_server.devdocs.json @@ -5759,22 +5759,6 @@ "deprecated": true, "trackAdoption": false, "references": [ - { - "plugin": "@kbn/core-saved-objects-api-browser", - "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-internal", - "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-internal", - "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" - }, - { - "plugin": "@kbn/core-saved-objects-browser-mocks", - "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts" - }, { "plugin": "@kbn/core-saved-objects-api-server-internal", "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/utils/internal_utils.ts" @@ -5787,6 +5771,18 @@ "plugin": "@kbn/core-saved-objects-server-internal", "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.ts" }, + { + "plugin": "@kbn/core-saved-objects-api-browser", + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" + }, + { + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" + }, + { + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" + }, { "plugin": "home", "path": "src/plugins/home/server/services/sample_data/data_sets/logs_tsdb/saved_objects.ts" @@ -5836,20 +5832,8 @@ "path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts" }, { - "plugin": "graph", - "path": "x-pack/plugins/graph/server/sample_data/logs.ts" - }, - { - "plugin": "graph", - "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts" - }, - { - "plugin": "graph", - "path": "x-pack/plugins/graph/server/sample_data/flights.ts" - }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts" }, { "plugin": "osquery", @@ -5939,6 +5923,26 @@ "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/server/lib/risk_score/prebuilt_saved_objects/saved_object/user_risk_score_dashboards.ts" }, + { + "plugin": "@kbn/core-saved-objects-browser-mocks", + "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts" + }, + { + "plugin": "graph", + "path": "x-pack/plugins/graph/server/sample_data/logs.ts" + }, + { + "plugin": "graph", + "path": "x-pack/plugins/graph/server/sample_data/ecommerce.ts" + }, + { + "plugin": "graph", + "path": "x-pack/plugins/graph/server/sample_data/flights.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.mock.ts" + }, { "plugin": "alerting", "path": "x-pack/plugins/alerting/server/rules_client/lib/siem_legacy_actions/retrieve_migrated_legacy_actions.mock.ts" @@ -5978,6 +5982,10 @@ { "plugin": "fleet", "path": "x-pack/plugins/fleet/server/services/epm/packages/get.test.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/services/epm/kibana/assets/install.test.ts" } ] }, @@ -6101,31 +6109,31 @@ }, { "plugin": "actions", - "path": "x-pack/plugins/actions/server/actions_client.ts" + "path": "x-pack/plugins/actions/server/actions_client/actions_client.ts" }, { "plugin": "actions", - "path": "x-pack/plugins/actions/server/actions_client.ts" + "path": "x-pack/plugins/actions/server/actions_client/actions_client.ts" }, { "plugin": "actions", - "path": "x-pack/plugins/actions/server/actions_client.ts" + "path": "x-pack/plugins/actions/server/actions_client/actions_client.ts" }, { "plugin": "actions", - "path": "x-pack/plugins/actions/server/actions_client.ts" + "path": "x-pack/plugins/actions/server/actions_client/actions_client.ts" }, { "plugin": "actions", - "path": "x-pack/plugins/actions/server/actions_client.ts" + "path": "x-pack/plugins/actions/server/actions_client/actions_client.ts" }, { "plugin": "actions", - "path": "x-pack/plugins/actions/server/actions_client.ts" + "path": "x-pack/plugins/actions/server/actions_client/actions_client.ts" }, { "plugin": "actions", - "path": "x-pack/plugins/actions/server/actions_client.ts" + "path": "x-pack/plugins/actions/server/actions_client/actions_client.ts" }, { "plugin": "actions", @@ -6251,6 +6259,22 @@ "plugin": "alerting", "path": "x-pack/plugins/alerting/server/types.ts" }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts" + }, { "plugin": "savedSearch", "path": "src/plugins/saved_search/server/saved_objects/search_migrations.ts" @@ -6287,22 +6311,6 @@ "plugin": "enterpriseSearch", "path": "x-pack/plugins/enterprise_search/server/collectors/lib/telemetry.ts" }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_types.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_migrations.ts" - }, { "plugin": "taskManager", "path": "x-pack/plugins/task_manager/server/task_store.test.ts" @@ -10547,6 +10555,26 @@ "plugin": "lens", "path": "x-pack/plugins/lens/server/saved_objects.ts" }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/server/saved_objects/exception_list.ts" + }, + { + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/server/saved_objects/tag.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/timeline/saved_object_mappings/timelines.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/timeline/saved_object_mappings/notes.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/timeline/saved_object_mappings/pinned_events.ts" + }, { "plugin": "cases", "path": "x-pack/plugins/cases/server/saved_object_types/cases.ts" @@ -10568,8 +10596,8 @@ "path": "x-pack/plugins/cases/server/saved_object_types/connector_mappings.ts" }, { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/server/saved_objects/tag.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_saved_object_mappings.ts" }, { "plugin": "visualizations", @@ -10591,30 +10619,10 @@ "plugin": "graph", "path": "x-pack/plugins/graph/server/saved_objects/graph_workspace.ts" }, - { - "plugin": "lists", - "path": "x-pack/plugins/lists/server/saved_objects/exception_list.ts" - }, { "plugin": "maps", "path": "x-pack/plugins/maps/server/saved_objects/setup_saved_objects.ts" }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/timeline/saved_object_mappings/timelines.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/timeline/saved_object_mappings/notes.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/timeline/saved_object_mappings/pinned_events.ts" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy/logic/rule_actions/legacy_saved_object_mappings.ts" - }, { "plugin": "dashboard", "path": "src/plugins/dashboard/server/dashboard_saved_object/dashboard_saved_object.ts" diff --git a/api_docs/kbn_core_saved_objects_server.mdx b/api_docs/kbn_core_saved_objects_server.mdx index 27f722ea5557c..3ee496c52a7d6 100644 --- a/api_docs/kbn_core_saved_objects_server.mdx +++ b/api_docs/kbn_core_saved_objects_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-server title: "@kbn/core-saved-objects-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-server'] --- import kbnCoreSavedObjectsServerObj from './kbn_core_saved_objects_server.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_server_internal.mdx b/api_docs/kbn_core_saved_objects_server_internal.mdx index 99711bfb96cb0..6dffcb5581650 100644 --- a/api_docs/kbn_core_saved_objects_server_internal.mdx +++ b/api_docs/kbn_core_saved_objects_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-server-internal title: "@kbn/core-saved-objects-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-server-internal'] --- import kbnCoreSavedObjectsServerInternalObj from './kbn_core_saved_objects_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_server_mocks.mdx b/api_docs/kbn_core_saved_objects_server_mocks.mdx index db035524c1adb..ebc790d2c19d8 100644 --- a/api_docs/kbn_core_saved_objects_server_mocks.mdx +++ b/api_docs/kbn_core_saved_objects_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-server-mocks title: "@kbn/core-saved-objects-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-server-mocks'] --- import kbnCoreSavedObjectsServerMocksObj from './kbn_core_saved_objects_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_utils_server.mdx b/api_docs/kbn_core_saved_objects_utils_server.mdx index c36dc4d28e158..5660bf95ca16a 100644 --- a/api_docs/kbn_core_saved_objects_utils_server.mdx +++ b/api_docs/kbn_core_saved_objects_utils_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-utils-server title: "@kbn/core-saved-objects-utils-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-utils-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-utils-server'] --- import kbnCoreSavedObjectsUtilsServerObj from './kbn_core_saved_objects_utils_server.devdocs.json'; diff --git a/api_docs/kbn_core_status_common.mdx b/api_docs/kbn_core_status_common.mdx index 22b5b60521b8f..42cdf9446b02b 100644 --- a/api_docs/kbn_core_status_common.mdx +++ b/api_docs/kbn_core_status_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-common title: "@kbn/core-status-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-status-common plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-common'] --- import kbnCoreStatusCommonObj from './kbn_core_status_common.devdocs.json'; diff --git a/api_docs/kbn_core_status_common_internal.mdx b/api_docs/kbn_core_status_common_internal.mdx index 39ed1ed1fcfe9..6aa9d90c60c95 100644 --- a/api_docs/kbn_core_status_common_internal.mdx +++ b/api_docs/kbn_core_status_common_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-common-internal title: "@kbn/core-status-common-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-status-common-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-common-internal'] --- import kbnCoreStatusCommonInternalObj from './kbn_core_status_common_internal.devdocs.json'; diff --git a/api_docs/kbn_core_status_server.mdx b/api_docs/kbn_core_status_server.mdx index f15e87ff20fe8..9d8dc0aa7283e 100644 --- a/api_docs/kbn_core_status_server.mdx +++ b/api_docs/kbn_core_status_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-server title: "@kbn/core-status-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-status-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-server'] --- import kbnCoreStatusServerObj from './kbn_core_status_server.devdocs.json'; diff --git a/api_docs/kbn_core_status_server_internal.mdx b/api_docs/kbn_core_status_server_internal.mdx index c860646b9abc8..d963d66d780d4 100644 --- a/api_docs/kbn_core_status_server_internal.mdx +++ b/api_docs/kbn_core_status_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-server-internal title: "@kbn/core-status-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-status-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-server-internal'] --- import kbnCoreStatusServerInternalObj from './kbn_core_status_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_status_server_mocks.mdx b/api_docs/kbn_core_status_server_mocks.mdx index 70d5ec3b98379..10f573493d020 100644 --- a/api_docs/kbn_core_status_server_mocks.mdx +++ b/api_docs/kbn_core_status_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-server-mocks title: "@kbn/core-status-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-status-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-server-mocks'] --- import kbnCoreStatusServerMocksObj from './kbn_core_status_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_test_helpers_deprecations_getters.mdx b/api_docs/kbn_core_test_helpers_deprecations_getters.mdx index 3904b9de8e90e..4c18ae7f08eb3 100644 --- a/api_docs/kbn_core_test_helpers_deprecations_getters.mdx +++ b/api_docs/kbn_core_test_helpers_deprecations_getters.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-deprecations-getters title: "@kbn/core-test-helpers-deprecations-getters" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-test-helpers-deprecations-getters plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-deprecations-getters'] --- import kbnCoreTestHelpersDeprecationsGettersObj from './kbn_core_test_helpers_deprecations_getters.devdocs.json'; diff --git a/api_docs/kbn_core_test_helpers_http_setup_browser.mdx b/api_docs/kbn_core_test_helpers_http_setup_browser.mdx index 22c7fbc536a2f..9cf7c0c85ea53 100644 --- a/api_docs/kbn_core_test_helpers_http_setup_browser.mdx +++ b/api_docs/kbn_core_test_helpers_http_setup_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-http-setup-browser title: "@kbn/core-test-helpers-http-setup-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-test-helpers-http-setup-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-http-setup-browser'] --- import kbnCoreTestHelpersHttpSetupBrowserObj from './kbn_core_test_helpers_http_setup_browser.devdocs.json'; diff --git a/api_docs/kbn_core_test_helpers_kbn_server.devdocs.json b/api_docs/kbn_core_test_helpers_kbn_server.devdocs.json index abfa1ee5e5563..f410d08aa0a63 100644 --- a/api_docs/kbn_core_test_helpers_kbn_server.devdocs.json +++ b/api_docs/kbn_core_test_helpers_kbn_server.devdocs.json @@ -234,6 +234,74 @@ "returnComment": [], "initialIsOpen": false }, + { + "parentPluginId": "@kbn/core-test-helpers-kbn-server", + "id": "def-common.createTestServerlessInstances", + "type": "Function", + "tags": [ + "note" + ], + "label": "createTestServerlessInstances", + "description": [ + "\nSee docs in {@link TestUtils}. This function provides the same utilities but\nconfigured for serverless.\n" + ], + "signature": [ + "({\n adjustTimeout,\n}: { adjustTimeout: (timeout: number) => void; }) => ", + "TestServerlessUtils" + ], + "path": "packages/core/test-helpers/core-test-helpers-kbn-server/src/create_serverless_root.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/core-test-helpers-kbn-server", + "id": "def-common.createTestServerlessInstances.$1", + "type": "Object", + "tags": [], + "label": "{\n adjustTimeout,\n}", + "description": [], + "path": "packages/core/test-helpers/core-test-helpers-kbn-server/src/create_serverless_root.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/core-test-helpers-kbn-server", + "id": "def-common.createTestServerlessInstances.$1.adjustTimeout", + "type": "Function", + "tags": [], + "label": "adjustTimeout", + "description": [], + "signature": [ + "(timeout: number) => void" + ], + "path": "packages/core/test-helpers/core-test-helpers-kbn-server/src/create_serverless_root.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/core-test-helpers-kbn-server", + "id": "def-common.createTestServerlessInstances.$1.adjustTimeout.$1", + "type": "number", + "tags": [], + "label": "timeout", + "description": [], + "signature": [ + "number" + ], + "path": "packages/core/test-helpers/core-test-helpers-kbn-server/src/create_serverless_root.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, { "parentPluginId": "@kbn/core-test-helpers-kbn-server", "id": "def-common.createTestServers", @@ -688,6 +756,42 @@ "deprecated": false, "trackAdoption": false, "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/core-test-helpers-kbn-server", + "id": "def-common.TestServerlessESUtils", + "type": "Type", + "tags": [], + "label": "TestServerlessESUtils", + "description": [], + "signature": [ + "{ stop: () => Promise; es: any; }" + ], + "path": "packages/core/test-helpers/core-test-helpers-kbn-server/src/create_serverless_root.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/core-test-helpers-kbn-server", + "id": "def-common.TestServerlessKibanaUtils", + "type": "Type", + "tags": [], + "label": "TestServerlessKibanaUtils", + "description": [], + "signature": [ + { + "pluginId": "@kbn/core-test-helpers-kbn-server", + "scope": "common", + "docId": "kibKbnCoreTestHelpersKbnServerPluginApi", + "section": "def-common.TestKibanaUtils", + "text": "TestKibanaUtils" + } + ], + "path": "packages/core/test-helpers/core-test-helpers-kbn-server/src/create_serverless_root.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false } ], "objects": [ diff --git a/api_docs/kbn_core_test_helpers_kbn_server.mdx b/api_docs/kbn_core_test_helpers_kbn_server.mdx index 3093f6854cbb5..0ff759b018c38 100644 --- a/api_docs/kbn_core_test_helpers_kbn_server.mdx +++ b/api_docs/kbn_core_test_helpers_kbn_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-kbn-server title: "@kbn/core-test-helpers-kbn-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-test-helpers-kbn-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-kbn-server'] --- import kbnCoreTestHelpersKbnServerObj from './kbn_core_test_helpers_kbn_server.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 55 | 1 | 49 | 0 | +| 61 | 1 | 54 | 1 | ## Common diff --git a/api_docs/kbn_core_test_helpers_so_type_serializer.mdx b/api_docs/kbn_core_test_helpers_so_type_serializer.mdx index aff3c50cd477b..17675b95533f2 100644 --- a/api_docs/kbn_core_test_helpers_so_type_serializer.mdx +++ b/api_docs/kbn_core_test_helpers_so_type_serializer.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-so-type-serializer title: "@kbn/core-test-helpers-so-type-serializer" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-test-helpers-so-type-serializer plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-so-type-serializer'] --- import kbnCoreTestHelpersSoTypeSerializerObj from './kbn_core_test_helpers_so_type_serializer.devdocs.json'; diff --git a/api_docs/kbn_core_test_helpers_test_utils.mdx b/api_docs/kbn_core_test_helpers_test_utils.mdx index a1608bcba2800..26d6af6234066 100644 --- a/api_docs/kbn_core_test_helpers_test_utils.mdx +++ b/api_docs/kbn_core_test_helpers_test_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-test-utils title: "@kbn/core-test-helpers-test-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-test-helpers-test-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-test-utils'] --- import kbnCoreTestHelpersTestUtilsObj from './kbn_core_test_helpers_test_utils.devdocs.json'; diff --git a/api_docs/kbn_core_theme_browser.mdx b/api_docs/kbn_core_theme_browser.mdx index fe4cbb1a4efda..f9986495adcbe 100644 --- a/api_docs/kbn_core_theme_browser.mdx +++ b/api_docs/kbn_core_theme_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-theme-browser title: "@kbn/core-theme-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-theme-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-theme-browser'] --- import kbnCoreThemeBrowserObj from './kbn_core_theme_browser.devdocs.json'; diff --git a/api_docs/kbn_core_theme_browser_mocks.mdx b/api_docs/kbn_core_theme_browser_mocks.mdx index 54d108a479b76..c9041fbc05159 100644 --- a/api_docs/kbn_core_theme_browser_mocks.mdx +++ b/api_docs/kbn_core_theme_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-theme-browser-mocks title: "@kbn/core-theme-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-theme-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-theme-browser-mocks'] --- import kbnCoreThemeBrowserMocksObj from './kbn_core_theme_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_browser.mdx b/api_docs/kbn_core_ui_settings_browser.mdx index 3e3a1dba67339..48730b643af9f 100644 --- a/api_docs/kbn_core_ui_settings_browser.mdx +++ b/api_docs/kbn_core_ui_settings_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-browser title: "@kbn/core-ui-settings-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-browser'] --- import kbnCoreUiSettingsBrowserObj from './kbn_core_ui_settings_browser.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_browser_internal.mdx b/api_docs/kbn_core_ui_settings_browser_internal.mdx index 0e12cff8b06a3..2d59d80bacf0a 100644 --- a/api_docs/kbn_core_ui_settings_browser_internal.mdx +++ b/api_docs/kbn_core_ui_settings_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-browser-internal title: "@kbn/core-ui-settings-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-browser-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-browser-internal'] --- import kbnCoreUiSettingsBrowserInternalObj from './kbn_core_ui_settings_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_browser_mocks.mdx b/api_docs/kbn_core_ui_settings_browser_mocks.mdx index a48616a42fdfd..c77426f8beead 100644 --- a/api_docs/kbn_core_ui_settings_browser_mocks.mdx +++ b/api_docs/kbn_core_ui_settings_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-browser-mocks title: "@kbn/core-ui-settings-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-browser-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-browser-mocks'] --- import kbnCoreUiSettingsBrowserMocksObj from './kbn_core_ui_settings_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_common.mdx b/api_docs/kbn_core_ui_settings_common.mdx index 8d0a414c5f20b..430e58913211f 100644 --- a/api_docs/kbn_core_ui_settings_common.mdx +++ b/api_docs/kbn_core_ui_settings_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-common title: "@kbn/core-ui-settings-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-common plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-common'] --- import kbnCoreUiSettingsCommonObj from './kbn_core_ui_settings_common.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_server.mdx b/api_docs/kbn_core_ui_settings_server.mdx index a6ee2815950e0..e93743b432780 100644 --- a/api_docs/kbn_core_ui_settings_server.mdx +++ b/api_docs/kbn_core_ui_settings_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-server title: "@kbn/core-ui-settings-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-server'] --- import kbnCoreUiSettingsServerObj from './kbn_core_ui_settings_server.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_server_internal.devdocs.json b/api_docs/kbn_core_ui_settings_server_internal.devdocs.json index 19b0355b0870b..f78d51ab09830 100644 --- a/api_docs/kbn_core_ui_settings_server_internal.devdocs.json +++ b/api_docs/kbn_core_ui_settings_server_internal.devdocs.json @@ -306,7 +306,7 @@ "section": "def-common.ConditionalType", "text": "ConditionalType" }, - "; }>" + "; }>" ], "path": "packages/core/ui-settings/core-ui-settings-server-internal/src/ui_settings_config.ts", "deprecated": false, diff --git a/api_docs/kbn_core_ui_settings_server_internal.mdx b/api_docs/kbn_core_ui_settings_server_internal.mdx index 29044a6529dfc..08af4649b729a 100644 --- a/api_docs/kbn_core_ui_settings_server_internal.mdx +++ b/api_docs/kbn_core_ui_settings_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-server-internal title: "@kbn/core-ui-settings-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-server-internal'] --- import kbnCoreUiSettingsServerInternalObj from './kbn_core_ui_settings_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_server_mocks.mdx b/api_docs/kbn_core_ui_settings_server_mocks.mdx index bddeca4ea7c44..c0c1ac1228089 100644 --- a/api_docs/kbn_core_ui_settings_server_mocks.mdx +++ b/api_docs/kbn_core_ui_settings_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-server-mocks title: "@kbn/core-ui-settings-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-server-mocks'] --- import kbnCoreUiSettingsServerMocksObj from './kbn_core_ui_settings_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_usage_data_server.devdocs.json b/api_docs/kbn_core_usage_data_server.devdocs.json index 11fa425905aff..b2bd17618b373 100644 --- a/api_docs/kbn_core_usage_data_server.devdocs.json +++ b/api_docs/kbn_core_usage_data_server.devdocs.json @@ -1654,6 +1654,34 @@ "deprecated": false, "trackAdoption": false }, + { + "parentPluginId": "@kbn/core-usage-data-server", + "id": "def-common.CoreUsageStats.apiCalls.savedObjectsImport.compatibilityModeEnabled.yes", + "type": "number", + "tags": [], + "label": "'apiCalls.savedObjectsImport.compatibilityModeEnabled.yes'", + "description": [], + "signature": [ + "number | undefined" + ], + "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/core-usage-data-server", + "id": "def-common.CoreUsageStats.apiCalls.savedObjectsImport.compatibilityModeEnabled.no", + "type": "number", + "tags": [], + "label": "'apiCalls.savedObjectsImport.compatibilityModeEnabled.no'", + "description": [], + "signature": [ + "number | undefined" + ], + "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", + "deprecated": false, + "trackAdoption": false + }, { "parentPluginId": "@kbn/core-usage-data-server", "id": "def-common.CoreUsageStats.apiCalls.savedObjectsImport.overwriteEnabled.yes", diff --git a/api_docs/kbn_core_usage_data_server.mdx b/api_docs/kbn_core_usage_data_server.mdx index f358ebb530589..462badecec11f 100644 --- a/api_docs/kbn_core_usage_data_server.mdx +++ b/api_docs/kbn_core_usage_data_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-usage-data-server title: "@kbn/core-usage-data-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-usage-data-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-usage-data-server'] --- import kbnCoreUsageDataServerObj from './kbn_core_usage_data_server.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 153 | 0 | 142 | 0 | +| 155 | 0 | 144 | 0 | ## Common diff --git a/api_docs/kbn_core_usage_data_server_internal.mdx b/api_docs/kbn_core_usage_data_server_internal.mdx index c6e0f49f09fd3..0924bb4cb53fc 100644 --- a/api_docs/kbn_core_usage_data_server_internal.mdx +++ b/api_docs/kbn_core_usage_data_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-usage-data-server-internal title: "@kbn/core-usage-data-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-usage-data-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-usage-data-server-internal'] --- import kbnCoreUsageDataServerInternalObj from './kbn_core_usage_data_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_usage_data_server_mocks.mdx b/api_docs/kbn_core_usage_data_server_mocks.mdx index 377e7d6375dc1..fafe77abc0878 100644 --- a/api_docs/kbn_core_usage_data_server_mocks.mdx +++ b/api_docs/kbn_core_usage_data_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-usage-data-server-mocks title: "@kbn/core-usage-data-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-usage-data-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-usage-data-server-mocks'] --- import kbnCoreUsageDataServerMocksObj from './kbn_core_usage_data_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_user_settings_server.mdx b/api_docs/kbn_core_user_settings_server.mdx index fe4c945cc76b6..2cc059d13e7a4 100644 --- a/api_docs/kbn_core_user_settings_server.mdx +++ b/api_docs/kbn_core_user_settings_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-user-settings-server title: "@kbn/core-user-settings-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-user-settings-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-user-settings-server'] --- import kbnCoreUserSettingsServerObj from './kbn_core_user_settings_server.devdocs.json'; diff --git a/api_docs/kbn_core_user_settings_server_internal.mdx b/api_docs/kbn_core_user_settings_server_internal.mdx index 919b63add7907..d020c3a61afb4 100644 --- a/api_docs/kbn_core_user_settings_server_internal.mdx +++ b/api_docs/kbn_core_user_settings_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-user-settings-server-internal title: "@kbn/core-user-settings-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-user-settings-server-internal plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-user-settings-server-internal'] --- import kbnCoreUserSettingsServerInternalObj from './kbn_core_user_settings_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_user_settings_server_mocks.mdx b/api_docs/kbn_core_user_settings_server_mocks.mdx index 9a2db35b29629..04a9ed8062543 100644 --- a/api_docs/kbn_core_user_settings_server_mocks.mdx +++ b/api_docs/kbn_core_user_settings_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-user-settings-server-mocks title: "@kbn/core-user-settings-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-user-settings-server-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-user-settings-server-mocks'] --- import kbnCoreUserSettingsServerMocksObj from './kbn_core_user_settings_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_crypto.mdx b/api_docs/kbn_crypto.mdx index b92ca0fb181c3..53aeefbc3ea9c 100644 --- a/api_docs/kbn_crypto.mdx +++ b/api_docs/kbn_crypto.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-crypto title: "@kbn/crypto" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/crypto plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/crypto'] --- import kbnCryptoObj from './kbn_crypto.devdocs.json'; diff --git a/api_docs/kbn_crypto_browser.mdx b/api_docs/kbn_crypto_browser.mdx index 92c720f6e1197..4480e7ba31b8b 100644 --- a/api_docs/kbn_crypto_browser.mdx +++ b/api_docs/kbn_crypto_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-crypto-browser title: "@kbn/crypto-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/crypto-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/crypto-browser'] --- import kbnCryptoBrowserObj from './kbn_crypto_browser.devdocs.json'; diff --git a/api_docs/kbn_cypress_config.mdx b/api_docs/kbn_cypress_config.mdx index 3930552ff5b11..245b5481f108f 100644 --- a/api_docs/kbn_cypress_config.mdx +++ b/api_docs/kbn_cypress_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-cypress-config title: "@kbn/cypress-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/cypress-config plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/cypress-config'] --- import kbnCypressConfigObj from './kbn_cypress_config.devdocs.json'; diff --git a/api_docs/kbn_data_service.mdx b/api_docs/kbn_data_service.mdx index 81a58ad3ed141..f3b25c9d7fa59 100644 --- a/api_docs/kbn_data_service.mdx +++ b/api_docs/kbn_data_service.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-data-service title: "@kbn/data-service" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/data-service plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/data-service'] --- import kbnDataServiceObj from './kbn_data_service.devdocs.json'; diff --git a/api_docs/kbn_datemath.mdx b/api_docs/kbn_datemath.mdx index 99b470fdac1f6..eb0906b8126ba 100644 --- a/api_docs/kbn_datemath.mdx +++ b/api_docs/kbn_datemath.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-datemath title: "@kbn/datemath" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/datemath plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/datemath'] --- import kbnDatemathObj from './kbn_datemath.devdocs.json'; diff --git a/api_docs/kbn_deeplinks_analytics.mdx b/api_docs/kbn_deeplinks_analytics.mdx index fca79a30d8f08..2b2901290ec82 100644 --- a/api_docs/kbn_deeplinks_analytics.mdx +++ b/api_docs/kbn_deeplinks_analytics.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-deeplinks-analytics title: "@kbn/deeplinks-analytics" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/deeplinks-analytics plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/deeplinks-analytics'] --- import kbnDeeplinksAnalyticsObj from './kbn_deeplinks_analytics.devdocs.json'; diff --git a/api_docs/kbn_deeplinks_devtools.mdx b/api_docs/kbn_deeplinks_devtools.mdx index 2aa1e34707e25..f6ef60137c559 100644 --- a/api_docs/kbn_deeplinks_devtools.mdx +++ b/api_docs/kbn_deeplinks_devtools.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-deeplinks-devtools title: "@kbn/deeplinks-devtools" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/deeplinks-devtools plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/deeplinks-devtools'] --- import kbnDeeplinksDevtoolsObj from './kbn_deeplinks_devtools.devdocs.json'; diff --git a/api_docs/kbn_deeplinks_management.mdx b/api_docs/kbn_deeplinks_management.mdx index 6b1cee5736481..85c5b288869ce 100644 --- a/api_docs/kbn_deeplinks_management.mdx +++ b/api_docs/kbn_deeplinks_management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-deeplinks-management title: "@kbn/deeplinks-management" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/deeplinks-management plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/deeplinks-management'] --- import kbnDeeplinksManagementObj from './kbn_deeplinks_management.devdocs.json'; diff --git a/api_docs/kbn_deeplinks_ml.mdx b/api_docs/kbn_deeplinks_ml.mdx index db6e8db29479a..2a49ea70c42da 100644 --- a/api_docs/kbn_deeplinks_ml.mdx +++ b/api_docs/kbn_deeplinks_ml.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-deeplinks-ml title: "@kbn/deeplinks-ml" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/deeplinks-ml plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/deeplinks-ml'] --- import kbnDeeplinksMlObj from './kbn_deeplinks_ml.devdocs.json'; diff --git a/api_docs/kbn_deeplinks_observability.mdx b/api_docs/kbn_deeplinks_observability.mdx index be7aa4661f51a..9be629cfabb3b 100644 --- a/api_docs/kbn_deeplinks_observability.mdx +++ b/api_docs/kbn_deeplinks_observability.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-deeplinks-observability title: "@kbn/deeplinks-observability" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/deeplinks-observability plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/deeplinks-observability'] --- import kbnDeeplinksObservabilityObj from './kbn_deeplinks_observability.devdocs.json'; diff --git a/api_docs/kbn_deeplinks_search.devdocs.json b/api_docs/kbn_deeplinks_search.devdocs.json index eecdacc4c7145..bb431ec8a89e7 100644 --- a/api_docs/kbn_deeplinks_search.devdocs.json +++ b/api_docs/kbn_deeplinks_search.devdocs.json @@ -45,7 +45,7 @@ "label": "DeepLinkId", "description": [], "signature": [ - "\"serverlessElasticsearch\" | \"serverlessIndexingApi\"" + "\"serverlessElasticsearch\" | \"serverlessConnectors\"" ], "path": "packages/deeplinks/search/deep_links.ts", "deprecated": false, @@ -69,13 +69,13 @@ }, { "parentPluginId": "@kbn/deeplinks-search", - "id": "def-common.SERVERLESS_ES_INDEXING_API_ID", + "id": "def-common.SERVERLESS_ES_CONNECTORS_ID", "type": "string", "tags": [], - "label": "SERVERLESS_ES_INDEXING_API_ID", + "label": "SERVERLESS_ES_CONNECTORS_ID", "description": [], "signature": [ - "\"serverlessIndexingApi\"" + "\"serverlessConnectors\"" ], "path": "packages/deeplinks/search/constants.ts", "deprecated": false, diff --git a/api_docs/kbn_deeplinks_search.mdx b/api_docs/kbn_deeplinks_search.mdx index 5da0301e738fc..d86848ab792cb 100644 --- a/api_docs/kbn_deeplinks_search.mdx +++ b/api_docs/kbn_deeplinks_search.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-deeplinks-search title: "@kbn/deeplinks-search" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/deeplinks-search plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/deeplinks-search'] --- import kbnDeeplinksSearchObj from './kbn_deeplinks_search.devdocs.json'; diff --git a/api_docs/kbn_default_nav_analytics.devdocs.json b/api_docs/kbn_default_nav_analytics.devdocs.json index 82c562b654726..17b5e0d62238c 100644 --- a/api_docs/kbn_default_nav_analytics.devdocs.json +++ b/api_docs/kbn_default_nav_analytics.devdocs.json @@ -145,13 +145,10 @@ { "parentPluginId": "@kbn/default-nav-analytics", "id": "def-common.defaultNavigation.title", - "type": "Any", + "type": "string", "tags": [], "label": "title", "description": [], - "signature": [ - "any" - ], "path": "packages/default-nav/analytics/default_navigation.ts", "deprecated": false, "trackAdoption": false diff --git a/api_docs/kbn_default_nav_analytics.mdx b/api_docs/kbn_default_nav_analytics.mdx index 342cb9174cc37..3593caf659e22 100644 --- a/api_docs/kbn_default_nav_analytics.mdx +++ b/api_docs/kbn_default_nav_analytics.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-default-nav-analytics title: "@kbn/default-nav-analytics" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/default-nav-analytics plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/default-nav-analytics'] --- import kbnDefaultNavAnalyticsObj from './kbn_default_nav_analytics.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/k | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 7 | 1 | 7 | 0 | +| 7 | 0 | 7 | 0 | ## Common diff --git a/api_docs/kbn_default_nav_devtools.devdocs.json b/api_docs/kbn_default_nav_devtools.devdocs.json index 7ae5c10bbfc30..dbdf1885d3139 100644 --- a/api_docs/kbn_default_nav_devtools.devdocs.json +++ b/api_docs/kbn_default_nav_devtools.devdocs.json @@ -131,13 +131,10 @@ { "parentPluginId": "@kbn/default-nav-devtools", "id": "def-common.defaultNavigation.title", - "type": "Any", + "type": "string", "tags": [], "label": "title", "description": [], - "signature": [ - "any" - ], "path": "packages/default-nav/devtools/default_navigation.ts", "deprecated": false, "trackAdoption": false diff --git a/api_docs/kbn_default_nav_devtools.mdx b/api_docs/kbn_default_nav_devtools.mdx index 0bb313ec04730..20ded4d19b794 100644 --- a/api_docs/kbn_default_nav_devtools.mdx +++ b/api_docs/kbn_default_nav_devtools.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-default-nav-devtools title: "@kbn/default-nav-devtools" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/default-nav-devtools plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/default-nav-devtools'] --- import kbnDefaultNavDevtoolsObj from './kbn_default_nav_devtools.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/platform-deployment-management](https://github.com/orgs/elasti | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 7 | 1 | 7 | 0 | +| 7 | 0 | 7 | 0 | ## Common diff --git a/api_docs/kbn_default_nav_management.devdocs.json b/api_docs/kbn_default_nav_management.devdocs.json index 36be968bcbfc7..17e0d18c97a95 100644 --- a/api_docs/kbn_default_nav_management.devdocs.json +++ b/api_docs/kbn_default_nav_management.devdocs.json @@ -145,13 +145,10 @@ { "parentPluginId": "@kbn/default-nav-management", "id": "def-common.defaultNavigation.title", - "type": "Any", + "type": "string", "tags": [], "label": "title", "description": [], - "signature": [ - "any" - ], "path": "packages/default-nav/management/default_navigation.ts", "deprecated": false, "trackAdoption": false @@ -175,7 +172,7 @@ "label": "children", "description": [], "signature": [ - "[{ id: \"root\"; title: string; children: [{ link: \"monitoring\"; }]; }, { id: \"integration_management\"; title: any; children: [{ link: \"integrations\"; }, { link: \"fleet\"; }, { link: \"osquery\"; }]; }, { id: \"stack_management\"; title: any; children: [{ id: \"ingest\"; title: any; children: [{ link: \"management:ingest_pipelines\"; }, { link: \"management:pipelines\"; }]; }, { id: \"data\"; title: any; children: [{ link: \"management:index_management\"; }, { link: \"management:transform\"; }]; }, { id: \"alerts_and_insights\"; title: any; children: [{ link: \"management:triggersActions\"; }, { link: \"management:cases\"; }, { link: \"management:triggersActionsConnectors\"; }, { link: \"management:jobsListLink\"; }]; }, { id: \"kibana\"; title: string; children: [{ link: \"management:dataViews\"; }, { link: \"management:objects\"; }, { link: \"management:tags\"; }, { link: \"management:spaces\"; }, { link: \"management:settings\"; }]; }]; }]" + "[{ id: \"root\"; title: string; children: [{ link: \"monitoring\"; }]; }, { id: \"integration_management\"; title: string; children: [{ link: \"integrations\"; }, { link: \"fleet\"; }, { link: \"osquery\"; }]; }, { id: \"stack_management\"; title: string; children: [{ id: \"ingest\"; title: string; children: [{ link: \"management:ingest_pipelines\"; }, { link: \"management:pipelines\"; }]; }, { id: \"data\"; title: string; children: [{ link: \"management:index_management\"; }, { link: \"management:transform\"; }]; }, { id: \"alerts_and_insights\"; title: string; children: [{ link: \"management:triggersActions\"; }, { link: \"management:cases\"; }, { link: \"management:triggersActionsConnectors\"; }, { link: \"management:jobsListLink\"; }]; }, { id: \"kibana\"; title: string; children: [{ link: \"management:dataViews\"; }, { link: \"management:objects\"; }, { link: \"management:tags\"; }, { link: \"management:spaces\"; }, { link: \"management:settings\"; }]; }]; }]" ], "path": "packages/default-nav/management/default_navigation.ts", "deprecated": false, diff --git a/api_docs/kbn_default_nav_management.mdx b/api_docs/kbn_default_nav_management.mdx index 7cfd864f1b649..6a59815548b70 100644 --- a/api_docs/kbn_default_nav_management.mdx +++ b/api_docs/kbn_default_nav_management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-default-nav-management title: "@kbn/default-nav-management" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/default-nav-management plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/default-nav-management'] --- import kbnDefaultNavManagementObj from './kbn_default_nav_management.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/platform-deployment-management](https://github.com/orgs/elasti | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 7 | 1 | 7 | 0 | +| 7 | 0 | 7 | 0 | ## Common diff --git a/api_docs/kbn_default_nav_ml.devdocs.json b/api_docs/kbn_default_nav_ml.devdocs.json index 7c79c7686c12f..2b213eea008dc 100644 --- a/api_docs/kbn_default_nav_ml.devdocs.json +++ b/api_docs/kbn_default_nav_ml.devdocs.json @@ -145,13 +145,10 @@ { "parentPluginId": "@kbn/default-nav-ml", "id": "def-common.defaultNavigation.title", - "type": "Any", + "type": "string", "tags": [], "label": "title", "description": [], - "signature": [ - "any" - ], "path": "packages/default-nav/ml/default_navigation.ts", "deprecated": false, "trackAdoption": false @@ -175,7 +172,7 @@ "label": "children", "description": [], "signature": [ - "[{ title: string; id: \"root\"; children: [{ link: \"ml:overview\"; }, { link: \"ml:notifications\"; }]; }, { title: any; id: \"anomaly_detection\"; children: [{ title: any; link: \"ml:anomalyDetection\"; }, { link: \"ml:anomalyExplorer\"; }, { link: \"ml:singleMetricViewer\"; }, { link: \"ml:settings\"; }]; }, { id: \"data_frame_analytics\"; title: any; children: [{ title: string; link: \"ml:dataFrameAnalytics\"; }, { link: \"ml:resultExplorer\"; }, { link: \"ml:analyticsMap\"; }]; }, { id: \"model_management\"; title: any; children: [{ link: \"ml:nodesOverview\"; }, { link: \"ml:nodes\"; }]; }, { id: \"data_visualizer\"; title: any; children: [{ title: any; link: \"ml:fileUpload\"; }, { title: any; link: \"ml:indexDataVisualizer\"; }]; }, { id: \"aiops_labs\"; title: any; children: [{ link: \"ml:logRateAnalysis\"; }, { link: \"ml:logPatternAnalysis\"; }, { link: \"ml:changePointDetections\"; }]; }]" + "[{ title: string; id: \"root\"; children: [{ link: \"ml:overview\"; }, { link: \"ml:notifications\"; }]; }, { title: string; id: \"anomaly_detection\"; children: [{ title: string; link: \"ml:anomalyDetection\"; }, { link: \"ml:anomalyExplorer\"; }, { link: \"ml:singleMetricViewer\"; }, { link: \"ml:settings\"; }]; }, { id: \"data_frame_analytics\"; title: string; children: [{ title: string; link: \"ml:dataFrameAnalytics\"; }, { link: \"ml:resultExplorer\"; }, { link: \"ml:analyticsMap\"; }]; }, { id: \"model_management\"; title: string; children: [{ link: \"ml:nodesOverview\"; }, { link: \"ml:nodes\"; }]; }, { id: \"data_visualizer\"; title: string; children: [{ title: string; link: \"ml:fileUpload\"; }, { title: string; link: \"ml:indexDataVisualizer\"; }]; }, { id: \"aiops_labs\"; title: string; children: [{ link: \"ml:logRateAnalysis\"; }, { link: \"ml:logPatternAnalysis\"; }, { link: \"ml:changePointDetections\"; }]; }]" ], "path": "packages/default-nav/ml/default_navigation.ts", "deprecated": false, diff --git a/api_docs/kbn_default_nav_ml.mdx b/api_docs/kbn_default_nav_ml.mdx index 4fc68f28e288e..ac48118e857b6 100644 --- a/api_docs/kbn_default_nav_ml.mdx +++ b/api_docs/kbn_default_nav_ml.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-default-nav-ml title: "@kbn/default-nav-ml" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/default-nav-ml plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/default-nav-ml'] --- import kbnDefaultNavMlObj from './kbn_default_nav_ml.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) for questi | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 7 | 1 | 7 | 0 | +| 7 | 0 | 7 | 0 | ## Common diff --git a/api_docs/kbn_dev_cli_errors.mdx b/api_docs/kbn_dev_cli_errors.mdx index e080061b46594..3e48e391c2e53 100644 --- a/api_docs/kbn_dev_cli_errors.mdx +++ b/api_docs/kbn_dev_cli_errors.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dev-cli-errors title: "@kbn/dev-cli-errors" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/dev-cli-errors plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dev-cli-errors'] --- import kbnDevCliErrorsObj from './kbn_dev_cli_errors.devdocs.json'; diff --git a/api_docs/kbn_dev_cli_runner.mdx b/api_docs/kbn_dev_cli_runner.mdx index 7d11e9ee4b475..49f1183b853a0 100644 --- a/api_docs/kbn_dev_cli_runner.mdx +++ b/api_docs/kbn_dev_cli_runner.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dev-cli-runner title: "@kbn/dev-cli-runner" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/dev-cli-runner plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dev-cli-runner'] --- import kbnDevCliRunnerObj from './kbn_dev_cli_runner.devdocs.json'; diff --git a/api_docs/kbn_dev_proc_runner.mdx b/api_docs/kbn_dev_proc_runner.mdx index af2e8cb04fdea..a5506257db0e2 100644 --- a/api_docs/kbn_dev_proc_runner.mdx +++ b/api_docs/kbn_dev_proc_runner.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dev-proc-runner title: "@kbn/dev-proc-runner" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/dev-proc-runner plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dev-proc-runner'] --- import kbnDevProcRunnerObj from './kbn_dev_proc_runner.devdocs.json'; diff --git a/api_docs/kbn_dev_utils.mdx b/api_docs/kbn_dev_utils.mdx index e35dfe02816a2..3831dc633df10 100644 --- a/api_docs/kbn_dev_utils.mdx +++ b/api_docs/kbn_dev_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dev-utils title: "@kbn/dev-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/dev-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dev-utils'] --- import kbnDevUtilsObj from './kbn_dev_utils.devdocs.json'; diff --git a/api_docs/kbn_discover_utils.mdx b/api_docs/kbn_discover_utils.mdx index 63d1b38143a1f..284041ac597d7 100644 --- a/api_docs/kbn_discover_utils.mdx +++ b/api_docs/kbn_discover_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-discover-utils title: "@kbn/discover-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/discover-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/discover-utils'] --- import kbnDiscoverUtilsObj from './kbn_discover_utils.devdocs.json'; diff --git a/api_docs/kbn_doc_links.devdocs.json b/api_docs/kbn_doc_links.devdocs.json index 68cda4d7b4e6b..5dd70d02389dd 100644 --- a/api_docs/kbn_doc_links.devdocs.json +++ b/api_docs/kbn_doc_links.devdocs.json @@ -202,7 +202,7 @@ "label": "console", "description": [], "signature": [ - "{ readonly guide: string; }" + "{ readonly guide: string; readonly serverlessGuide: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", "deprecated": false, @@ -840,7 +840,7 @@ "label": "fleet", "description": [], "signature": [ - "{ readonly beatsAgentComparison: string; readonly guide: string; readonly fleetServer: string; readonly fleetServerAddFleetServer: string; readonly settings: string; readonly settingsFleetServerHostSettings: string; readonly settingsFleetServerProxySettings: string; readonly troubleshooting: string; readonly elasticAgent: string; readonly datastreams: string; readonly datastreamsILM: string; readonly datastreamsNamingScheme: string; readonly datastreamsManualRollover: string; readonly datastreamsTSDS: string; readonly datastreamsTSDSMetrics: string; readonly installElasticAgent: string; readonly installElasticAgentStandalone: string; readonly packageSignatures: string; readonly upgradeElasticAgent: string; readonly learnMoreBlog: string; readonly apiKeysLearnMore: string; readonly onPremRegistry: string; readonly secureLogstash: string; readonly agentPolicy: string; readonly api: string; readonly uninstallAgent: string; }" + "{ readonly beatsAgentComparison: string; readonly guide: string; readonly fleetServer: string; readonly fleetServerAddFleetServer: string; readonly settings: string; readonly logstashSettings: string; readonly kafkaSettings: string; readonly settingsFleetServerHostSettings: string; readonly settingsFleetServerProxySettings: string; readonly troubleshooting: string; readonly elasticAgent: string; readonly datastreams: string; readonly datastreamsILM: string; readonly datastreamsNamingScheme: string; readonly datastreamsManualRollover: string; readonly datastreamsTSDS: string; readonly datastreamsTSDSMetrics: string; readonly installElasticAgent: string; readonly installElasticAgentStandalone: string; readonly packageSignatures: string; readonly upgradeElasticAgent: string; readonly learnMoreBlog: string; readonly apiKeysLearnMore: string; readonly onPremRegistry: string; readonly secureLogstash: string; readonly agentPolicy: string; readonly api: string; readonly uninstallAgent: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", "deprecated": false, @@ -930,6 +930,20 @@ "deprecated": false, "trackAdoption": false }, + { + "parentPluginId": "@kbn/doc-links", + "id": "def-common.DocLinks.serverlessClients", + "type": "Object", + "tags": [], + "label": "serverlessClients", + "description": [], + "signature": [ + "{ readonly goApiReference: string; readonly goGettingStarted: string; readonly httpApis: string; readonly httpApiReferences: string; readonly jsApiReference: string; readonly jsGettingStarted: string; readonly phpApiReference: string; readonly phpGettingStarted: string; readonly pythonApiReference: string; readonly pythonGettingStarted: string; readonly pythonReferences: string; readonly rubyApiReference: string; readonly rubyGettingStarted: string; }" + ], + "path": "packages/kbn-doc-links/src/types.ts", + "deprecated": false, + "trackAdoption": false + }, { "parentPluginId": "@kbn/doc-links", "id": "def-common.DocLinks.serverlessSearch", @@ -938,7 +952,7 @@ "label": "serverlessSearch", "description": [], "signature": [ - "{ readonly integrations: string; }" + "{ readonly gettingStartedExplore: string; readonly gettingStartedIngest: string; readonly gettingStartedSearch: string; readonly integrations: string; readonly integrationsBeats: string; readonly integrationsConnectorClient: string; readonly integrationsLogstash: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", "deprecated": false, diff --git a/api_docs/kbn_doc_links.mdx b/api_docs/kbn_doc_links.mdx index 138dba0ac8a6b..0e7d1bea1f6c2 100644 --- a/api_docs/kbn_doc_links.mdx +++ b/api_docs/kbn_doc_links.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-doc-links title: "@kbn/doc-links" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/doc-links plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/doc-links'] --- import kbnDocLinksObj from './kbn_doc_links.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/docs](https://github.com/orgs/elastic/teams/docs) for question | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 72 | 0 | 72 | 2 | +| 73 | 0 | 73 | 2 | ## Common diff --git a/api_docs/kbn_docs_utils.mdx b/api_docs/kbn_docs_utils.mdx index 77f8f8638e504..e7281efede527 100644 --- a/api_docs/kbn_docs_utils.mdx +++ b/api_docs/kbn_docs_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-docs-utils title: "@kbn/docs-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/docs-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/docs-utils'] --- import kbnDocsUtilsObj from './kbn_docs_utils.devdocs.json'; diff --git a/api_docs/kbn_dom_drag_drop.mdx b/api_docs/kbn_dom_drag_drop.mdx index 50407e08c93ee..0f3f2fbe0c29d 100644 --- a/api_docs/kbn_dom_drag_drop.mdx +++ b/api_docs/kbn_dom_drag_drop.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dom-drag-drop title: "@kbn/dom-drag-drop" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/dom-drag-drop plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dom-drag-drop'] --- import kbnDomDragDropObj from './kbn_dom_drag_drop.devdocs.json'; diff --git a/api_docs/kbn_ebt_tools.mdx b/api_docs/kbn_ebt_tools.mdx index acabfdcec5d54..65c38434d7111 100644 --- a/api_docs/kbn_ebt_tools.mdx +++ b/api_docs/kbn_ebt_tools.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ebt-tools title: "@kbn/ebt-tools" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ebt-tools plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ebt-tools'] --- import kbnEbtToolsObj from './kbn_ebt_tools.devdocs.json'; diff --git a/api_docs/kbn_ecs.mdx b/api_docs/kbn_ecs.mdx index 88b7649281502..96b728520475a 100644 --- a/api_docs/kbn_ecs.mdx +++ b/api_docs/kbn_ecs.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ecs title: "@kbn/ecs" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ecs plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ecs'] --- import kbnEcsObj from './kbn_ecs.devdocs.json'; diff --git a/api_docs/kbn_ecs_data_quality_dashboard.devdocs.json b/api_docs/kbn_ecs_data_quality_dashboard.devdocs.json index 0015a2f6b419c..48c4823f73460 100644 --- a/api_docs/kbn_ecs_data_quality_dashboard.devdocs.json +++ b/api_docs/kbn_ecs_data_quality_dashboard.devdocs.json @@ -11,7 +11,7 @@ "label": "DATA_QUALITY_PROMPT_CONTEXT_PILL", "description": [], "signature": [ - "(indexName: string) => any" + "(indexName: string) => string" ], "path": "x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/translations.ts", "deprecated": false, @@ -112,13 +112,10 @@ { "parentPluginId": "@kbn/ecs-data-quality-dashboard", "id": "def-public.DATA_QUALITY_PROMPT_CONTEXT_PILL_TOOLTIP", - "type": "Any", + "type": "string", "tags": [], "label": "DATA_QUALITY_PROMPT_CONTEXT_PILL_TOOLTIP", "description": [], - "signature": [ - "any" - ], "path": "x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/translations.ts", "deprecated": false, "trackAdoption": false, @@ -141,13 +138,10 @@ { "parentPluginId": "@kbn/ecs-data-quality-dashboard", "id": "def-public.DATA_QUALITY_SUGGESTED_USER_PROMPT", - "type": "Any", + "type": "string", "tags": [], "label": "DATA_QUALITY_SUGGESTED_USER_PROMPT", "description": [], - "signature": [ - "any" - ], "path": "x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/translations.ts", "deprecated": false, "trackAdoption": false, diff --git a/api_docs/kbn_ecs_data_quality_dashboard.mdx b/api_docs/kbn_ecs_data_quality_dashboard.mdx index 6623f0d77836c..09acca737b1ed 100644 --- a/api_docs/kbn_ecs_data_quality_dashboard.mdx +++ b/api_docs/kbn_ecs_data_quality_dashboard.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ecs-data-quality-dashboard title: "@kbn/ecs-data-quality-dashboard" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ecs-data-quality-dashboard plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ecs-data-quality-dashboard'] --- import kbnEcsDataQualityDashboardObj from './kbn_ecs_data_quality_dashboard.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/security-threat-hunting-investigations](https://github.com/org | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 13 | 2 | 5 | 0 | +| 13 | 0 | 5 | 0 | ## Client diff --git a/api_docs/kbn_elastic_assistant.devdocs.json b/api_docs/kbn_elastic_assistant.devdocs.json index 4485abc1850c8..b6c7aa46db706 100644 --- a/api_docs/kbn_elastic_assistant.devdocs.json +++ b/api_docs/kbn_elastic_assistant.devdocs.json @@ -80,6 +80,43 @@ ], "initialIsOpen": false }, + { + "parentPluginId": "@kbn/elastic-assistant", + "id": "def-public.AssistantAvatar", + "type": "Function", + "tags": [], + "label": "AssistantAvatar", + "description": [ + "\nDefault Elastic AI Assistant logo\n\nTODO: Can be removed once added to EUI" + ], + "signature": [ + "({ size }: ", + "AssistantAvatarProps", + ") => JSX.Element" + ], + "path": "x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_avatar/assistant_avatar.tsx", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/elastic-assistant", + "id": "def-public.AssistantAvatar.$1", + "type": "Object", + "tags": [], + "label": "{ size = 's' }", + "description": [], + "signature": [ + "AssistantAvatarProps" + ], + "path": "x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_avatar/assistant_avatar.tsx", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, { "parentPluginId": "@kbn/elastic-assistant", "id": "def-public.AssistantOverlay", @@ -122,7 +159,7 @@ "label": "AssistantProvider", "description": [], "signature": [ - "({ actionTypeRegistry, assistantTelemetry, augmentMessageCodeBlocks, baseAllow, baseAllowReplacement, defaultAllow, defaultAllowReplacement, docLinks, basePromptContexts, baseQuickPrompts, baseSystemPrompts, children, getComments, http, getInitialConversations, nameSpace, setConversations, setDefaultAllow, setDefaultAllowReplacement, title, }: React.PropsWithChildren<", + "({ actionTypeRegistry, assistantAvailability, assistantTelemetry, augmentMessageCodeBlocks, baseAllow, baseAllowReplacement, defaultAllow, defaultAllowReplacement, docLinks, basePromptContexts, baseQuickPrompts, baseSystemPrompts, children, getComments, http, getInitialConversations, nameSpace, setConversations, setDefaultAllow, setDefaultAllowReplacement, title, }: React.PropsWithChildren<", "AssistantProviderProps", ">) => JSX.Element" ], @@ -135,7 +172,7 @@ "id": "def-public.AssistantProvider.$1", "type": "CompoundType", "tags": [], - "label": "{\n actionTypeRegistry,\n assistantTelemetry,\n augmentMessageCodeBlocks,\n baseAllow,\n baseAllowReplacement,\n defaultAllow,\n defaultAllowReplacement,\n docLinks,\n basePromptContexts = [],\n baseQuickPrompts = [],\n baseSystemPrompts = BASE_SYSTEM_PROMPTS,\n children,\n getComments,\n http,\n getInitialConversations,\n nameSpace = DEFAULT_ASSISTANT_NAMESPACE,\n setConversations,\n setDefaultAllow,\n setDefaultAllowReplacement,\n title = DEFAULT_ASSISTANT_TITLE,\n}", + "label": "{\n actionTypeRegistry,\n assistantAvailability,\n assistantTelemetry,\n augmentMessageCodeBlocks,\n baseAllow,\n baseAllowReplacement,\n defaultAllow,\n defaultAllowReplacement,\n docLinks,\n basePromptContexts = [],\n baseQuickPrompts = [],\n baseSystemPrompts = BASE_SYSTEM_PROMPTS,\n children,\n getComments,\n http,\n getInitialConversations,\n nameSpace = DEFAULT_ASSISTANT_NAMESPACE,\n setConversations,\n setDefaultAllow,\n setDefaultAllowReplacement,\n title = DEFAULT_ASSISTANT_TITLE,\n}", "description": [], "signature": [ "React.PropsWithChildren<", @@ -350,6 +387,64 @@ } ], "interfaces": [ + { + "parentPluginId": "@kbn/elastic-assistant", + "id": "def-public.AssistantAvailability", + "type": "Interface", + "tags": [], + "label": "AssistantAvailability", + "description": [], + "path": "x-pack/packages/kbn-elastic-assistant/impl/assistant_context/types.tsx", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/elastic-assistant", + "id": "def-public.AssistantAvailability.isAssistantEnabled", + "type": "boolean", + "tags": [], + "label": "isAssistantEnabled", + "description": [], + "path": "x-pack/packages/kbn-elastic-assistant/impl/assistant_context/types.tsx", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/elastic-assistant", + "id": "def-public.AssistantAvailability.hasAssistantPrivilege", + "type": "boolean", + "tags": [], + "label": "hasAssistantPrivilege", + "description": [], + "path": "x-pack/packages/kbn-elastic-assistant/impl/assistant_context/types.tsx", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/elastic-assistant", + "id": "def-public.AssistantAvailability.hasConnectorsAllPrivilege", + "type": "boolean", + "tags": [], + "label": "hasConnectorsAllPrivilege", + "description": [], + "path": "x-pack/packages/kbn-elastic-assistant/impl/assistant_context/types.tsx", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/elastic-assistant", + "id": "def-public.AssistantAvailability.hasConnectorsReadPrivilege", + "type": "boolean", + "tags": [], + "label": "hasConnectorsReadPrivilege", + "description": [], + "path": "x-pack/packages/kbn-elastic-assistant/impl/assistant_context/types.tsx", + "deprecated": false, + "trackAdoption": false + } + ], + "initialIsOpen": false + }, { "parentPluginId": "@kbn/elastic-assistant", "id": "def-public.AssistantTelemetry", @@ -1074,13 +1169,10 @@ { "parentPluginId": "@kbn/elastic-assistant", "id": "def-public.ELASTIC_AI_ASSISTANT_TITLE", - "type": "Any", + "type": "string", "tags": [], "label": "ELASTIC_AI_ASSISTANT_TITLE", "description": [], - "signature": [ - "any" - ], "path": "x-pack/packages/kbn-elastic-assistant/impl/assistant/use_conversation/translations.ts", "deprecated": false, "trackAdoption": false, @@ -1121,13 +1213,10 @@ { "parentPluginId": "@kbn/elastic-assistant", "id": "def-public.WELCOME_CONVERSATION_TITLE", - "type": "Any", + "type": "string", "tags": [], "label": "WELCOME_CONVERSATION_TITLE", "description": [], - "signature": [ - "any" - ], "path": "x-pack/packages/kbn-elastic-assistant/impl/assistant/use_conversation/translations.ts", "deprecated": false, "trackAdoption": false, diff --git a/api_docs/kbn_elastic_assistant.mdx b/api_docs/kbn_elastic_assistant.mdx index ee0df955e86c8..948eebd6f3ec6 100644 --- a/api_docs/kbn_elastic_assistant.mdx +++ b/api_docs/kbn_elastic_assistant.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-elastic-assistant title: "@kbn/elastic-assistant" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/elastic-assistant plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/elastic-assistant'] --- import kbnElasticAssistantObj from './kbn_elastic_assistant.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/security-solution](https://github.com/orgs/elastic/teams/secur | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 77 | 2 | 58 | 4 | +| 84 | 0 | 64 | 5 | ## Client diff --git a/api_docs/kbn_es.mdx b/api_docs/kbn_es.mdx index 5e9ff2e2100bf..ff77ace035ed4 100644 --- a/api_docs/kbn_es.mdx +++ b/api_docs/kbn_es.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es title: "@kbn/es" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/es plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es'] --- import kbnEsObj from './kbn_es.devdocs.json'; diff --git a/api_docs/kbn_es_archiver.mdx b/api_docs/kbn_es_archiver.mdx index 10bf3c8527291..48339d76586cc 100644 --- a/api_docs/kbn_es_archiver.mdx +++ b/api_docs/kbn_es_archiver.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es-archiver title: "@kbn/es-archiver" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/es-archiver plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es-archiver'] --- import kbnEsArchiverObj from './kbn_es_archiver.devdocs.json'; diff --git a/api_docs/kbn_es_errors.mdx b/api_docs/kbn_es_errors.mdx index f4cc62aeb9ee4..4472f665f5d44 100644 --- a/api_docs/kbn_es_errors.mdx +++ b/api_docs/kbn_es_errors.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es-errors title: "@kbn/es-errors" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/es-errors plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es-errors'] --- import kbnEsErrorsObj from './kbn_es_errors.devdocs.json'; diff --git a/api_docs/kbn_es_query.mdx b/api_docs/kbn_es_query.mdx index 90a1e8492e20d..b341bb8139d82 100644 --- a/api_docs/kbn_es_query.mdx +++ b/api_docs/kbn_es_query.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es-query title: "@kbn/es-query" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/es-query plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es-query'] --- import kbnEsQueryObj from './kbn_es_query.devdocs.json'; diff --git a/api_docs/kbn_es_types.mdx b/api_docs/kbn_es_types.mdx index fd19378e02a4a..1d7ab45668c0d 100644 --- a/api_docs/kbn_es_types.mdx +++ b/api_docs/kbn_es_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es-types title: "@kbn/es-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/es-types plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es-types'] --- import kbnEsTypesObj from './kbn_es_types.devdocs.json'; diff --git a/api_docs/kbn_eslint_plugin_imports.mdx b/api_docs/kbn_eslint_plugin_imports.mdx index f52fafb8cfe10..85d7b67b931e2 100644 --- a/api_docs/kbn_eslint_plugin_imports.mdx +++ b/api_docs/kbn_eslint_plugin_imports.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-eslint-plugin-imports title: "@kbn/eslint-plugin-imports" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/eslint-plugin-imports plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/eslint-plugin-imports'] --- import kbnEslintPluginImportsObj from './kbn_eslint_plugin_imports.devdocs.json'; diff --git a/api_docs/kbn_event_annotation_common.devdocs.json b/api_docs/kbn_event_annotation_common.devdocs.json index 54277c81fd4d3..8aeb9fd601424 100644 --- a/api_docs/kbn_event_annotation_common.devdocs.json +++ b/api_docs/kbn_event_annotation_common.devdocs.json @@ -543,13 +543,10 @@ { "parentPluginId": "@kbn/event-annotation-common", "id": "def-common.defaultAnnotationLabel", - "type": "Any", + "type": "string", "tags": [], "label": "defaultAnnotationLabel", "description": [], - "signature": [ - "any" - ], "path": "packages/kbn-event-annotation-common/util.ts", "deprecated": false, "trackAdoption": false, diff --git a/api_docs/kbn_event_annotation_common.mdx b/api_docs/kbn_event_annotation_common.mdx index 8f281ade51e16..aefd56b548980 100644 --- a/api_docs/kbn_event_annotation_common.mdx +++ b/api_docs/kbn_event_annotation_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-event-annotation-common title: "@kbn/event-annotation-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/event-annotation-common plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/event-annotation-common'] --- import kbnEventAnnotationCommonObj from './kbn_event_annotation_common.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/k | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 39 | 1 | 39 | 0 | +| 39 | 0 | 39 | 0 | ## Common diff --git a/api_docs/kbn_event_annotation_components.devdocs.json b/api_docs/kbn_event_annotation_components.devdocs.json index 54b9e95eb01e1..64b85baf88e09 100644 --- a/api_docs/kbn_event_annotation_components.devdocs.json +++ b/api_docs/kbn_event_annotation_components.devdocs.json @@ -1052,7 +1052,7 @@ "section": "def-common.EventAnnotationGroupConfig", "text": "EventAnnotationGroupConfig" }, - ", \"annotations\" | \"ignoreGlobalFilters\" | \"indexPatternId\">[]; }) => ", + ", \"ignoreGlobalFilters\" | \"annotations\" | \"indexPatternId\">[]; }) => ", { "pluginId": "expressions", "scope": "common", @@ -1104,7 +1104,7 @@ "section": "def-common.EventAnnotationGroupConfig", "text": "EventAnnotationGroupConfig" }, - ", \"annotations\" | \"ignoreGlobalFilters\" | \"indexPatternId\">[]" + ", \"ignoreGlobalFilters\" | \"annotations\" | \"indexPatternId\">[]" ], "path": "packages/kbn-event-annotation-components/types.ts", "deprecated": false, @@ -1343,13 +1343,10 @@ { "parentPluginId": "@kbn/event-annotation-components", "id": "def-public.defaultAnnotationLabel", - "type": "Any", + "type": "string", "tags": [], "label": "defaultAnnotationLabel", "description": [], - "signature": [ - "any" - ], "path": "packages/kbn-event-annotation-common/util.ts", "deprecated": false, "trackAdoption": false, diff --git a/api_docs/kbn_event_annotation_components.mdx b/api_docs/kbn_event_annotation_components.mdx index 36ea81e316851..ea6dcdbdc00bd 100644 --- a/api_docs/kbn_event_annotation_components.mdx +++ b/api_docs/kbn_event_annotation_components.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-event-annotation-components title: "@kbn/event-annotation-components" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/event-annotation-components plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/event-annotation-components'] --- import kbnEventAnnotationComponentsObj from './kbn_event_annotation_components.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/k | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 65 | 1 | 65 | 1 | +| 65 | 0 | 65 | 1 | ## Client diff --git a/api_docs/kbn_expandable_flyout.mdx b/api_docs/kbn_expandable_flyout.mdx index 4ab2b36c26b83..0d8cc6e077e01 100644 --- a/api_docs/kbn_expandable_flyout.mdx +++ b/api_docs/kbn_expandable_flyout.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-expandable-flyout title: "@kbn/expandable-flyout" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/expandable-flyout plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/expandable-flyout'] --- import kbnExpandableFlyoutObj from './kbn_expandable_flyout.devdocs.json'; diff --git a/api_docs/kbn_field_types.mdx b/api_docs/kbn_field_types.mdx index 4a5ce014311df..3b3e56adfc936 100644 --- a/api_docs/kbn_field_types.mdx +++ b/api_docs/kbn_field_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-field-types title: "@kbn/field-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/field-types plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/field-types'] --- import kbnFieldTypesObj from './kbn_field_types.devdocs.json'; diff --git a/api_docs/kbn_find_used_node_modules.mdx b/api_docs/kbn_find_used_node_modules.mdx index 352d265c053a9..cfe88d1bde2b0 100644 --- a/api_docs/kbn_find_used_node_modules.mdx +++ b/api_docs/kbn_find_used_node_modules.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-find-used-node-modules title: "@kbn/find-used-node-modules" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/find-used-node-modules plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/find-used-node-modules'] --- import kbnFindUsedNodeModulesObj from './kbn_find_used_node_modules.devdocs.json'; diff --git a/api_docs/kbn_ftr_common_functional_services.mdx b/api_docs/kbn_ftr_common_functional_services.mdx index 4c65b96e7af90..d0705e6dc283e 100644 --- a/api_docs/kbn_ftr_common_functional_services.mdx +++ b/api_docs/kbn_ftr_common_functional_services.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ftr-common-functional-services title: "@kbn/ftr-common-functional-services" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ftr-common-functional-services plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ftr-common-functional-services'] --- import kbnFtrCommonFunctionalServicesObj from './kbn_ftr_common_functional_services.devdocs.json'; diff --git a/api_docs/kbn_generate.mdx b/api_docs/kbn_generate.mdx index 86eb975123e88..fcdad1b70904e 100644 --- a/api_docs/kbn_generate.mdx +++ b/api_docs/kbn_generate.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-generate title: "@kbn/generate" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/generate plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/generate'] --- import kbnGenerateObj from './kbn_generate.devdocs.json'; diff --git a/api_docs/kbn_generate_console_definitions.mdx b/api_docs/kbn_generate_console_definitions.mdx index fa9a3a0b5355d..914b58c9e1b30 100644 --- a/api_docs/kbn_generate_console_definitions.mdx +++ b/api_docs/kbn_generate_console_definitions.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-generate-console-definitions title: "@kbn/generate-console-definitions" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/generate-console-definitions plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/generate-console-definitions'] --- import kbnGenerateConsoleDefinitionsObj from './kbn_generate_console_definitions.devdocs.json'; diff --git a/api_docs/kbn_generate_csv.mdx b/api_docs/kbn_generate_csv.mdx index 852a9811f28d0..6ee11bddb2d49 100644 --- a/api_docs/kbn_generate_csv.mdx +++ b/api_docs/kbn_generate_csv.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-generate-csv title: "@kbn/generate-csv" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/generate-csv plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/generate-csv'] --- import kbnGenerateCsvObj from './kbn_generate_csv.devdocs.json'; diff --git a/api_docs/kbn_generate_csv_types.mdx b/api_docs/kbn_generate_csv_types.mdx index 317305554df04..d39bbce63cfe8 100644 --- a/api_docs/kbn_generate_csv_types.mdx +++ b/api_docs/kbn_generate_csv_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-generate-csv-types title: "@kbn/generate-csv-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/generate-csv-types plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/generate-csv-types'] --- import kbnGenerateCsvTypesObj from './kbn_generate_csv_types.devdocs.json'; diff --git a/api_docs/kbn_guided_onboarding.mdx b/api_docs/kbn_guided_onboarding.mdx index 8ccb5f3625b37..84a8a9e171c7a 100644 --- a/api_docs/kbn_guided_onboarding.mdx +++ b/api_docs/kbn_guided_onboarding.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-guided-onboarding title: "@kbn/guided-onboarding" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/guided-onboarding plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/guided-onboarding'] --- import kbnGuidedOnboardingObj from './kbn_guided_onboarding.devdocs.json'; diff --git a/api_docs/kbn_handlebars.mdx b/api_docs/kbn_handlebars.mdx index 6b6ca35c01291..a02c973db1b15 100644 --- a/api_docs/kbn_handlebars.mdx +++ b/api_docs/kbn_handlebars.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-handlebars title: "@kbn/handlebars" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/handlebars plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/handlebars'] --- import kbnHandlebarsObj from './kbn_handlebars.devdocs.json'; diff --git a/api_docs/kbn_hapi_mocks.mdx b/api_docs/kbn_hapi_mocks.mdx index 3911f8ccf2912..3be545a28d8a0 100644 --- a/api_docs/kbn_hapi_mocks.mdx +++ b/api_docs/kbn_hapi_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-hapi-mocks title: "@kbn/hapi-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/hapi-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/hapi-mocks'] --- import kbnHapiMocksObj from './kbn_hapi_mocks.devdocs.json'; diff --git a/api_docs/kbn_health_gateway_server.mdx b/api_docs/kbn_health_gateway_server.mdx index 478fadf1ed8d1..95399d10993f2 100644 --- a/api_docs/kbn_health_gateway_server.mdx +++ b/api_docs/kbn_health_gateway_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-health-gateway-server title: "@kbn/health-gateway-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/health-gateway-server plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/health-gateway-server'] --- import kbnHealthGatewayServerObj from './kbn_health_gateway_server.devdocs.json'; diff --git a/api_docs/kbn_home_sample_data_card.mdx b/api_docs/kbn_home_sample_data_card.mdx index 2d3a33ad484f7..3fdb063cc8ed5 100644 --- a/api_docs/kbn_home_sample_data_card.mdx +++ b/api_docs/kbn_home_sample_data_card.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-home-sample-data-card title: "@kbn/home-sample-data-card" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/home-sample-data-card plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/home-sample-data-card'] --- import kbnHomeSampleDataCardObj from './kbn_home_sample_data_card.devdocs.json'; diff --git a/api_docs/kbn_home_sample_data_tab.mdx b/api_docs/kbn_home_sample_data_tab.mdx index 8079fe3178771..d1fe6f67d1908 100644 --- a/api_docs/kbn_home_sample_data_tab.mdx +++ b/api_docs/kbn_home_sample_data_tab.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-home-sample-data-tab title: "@kbn/home-sample-data-tab" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/home-sample-data-tab plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/home-sample-data-tab'] --- import kbnHomeSampleDataTabObj from './kbn_home_sample_data_tab.devdocs.json'; diff --git a/api_docs/kbn_i18n.devdocs.json b/api_docs/kbn_i18n.devdocs.json index 5cea6349dcdbc..a57c972d1826f 100644 --- a/api_docs/kbn_i18n.devdocs.json +++ b/api_docs/kbn_i18n.devdocs.json @@ -517,7 +517,7 @@ "section": "def-common.TranslateArguments", "text": "TranslateArguments" }, - ") => any" + ") => string" ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, diff --git a/api_docs/kbn_i18n.mdx b/api_docs/kbn_i18n.mdx index 1c6e9afc0f432..9e5e797ed7af6 100644 --- a/api_docs/kbn_i18n.mdx +++ b/api_docs/kbn_i18n.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-i18n title: "@kbn/i18n" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/i18n plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/i18n'] --- import kbnI18nObj from './kbn_i18n.devdocs.json'; diff --git a/api_docs/kbn_i18n_react.mdx b/api_docs/kbn_i18n_react.mdx index 4753a7602c6a9..cd4eff16bf1a4 100644 --- a/api_docs/kbn_i18n_react.mdx +++ b/api_docs/kbn_i18n_react.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-i18n-react title: "@kbn/i18n-react" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/i18n-react plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/i18n-react'] --- import kbnI18nReactObj from './kbn_i18n_react.devdocs.json'; diff --git a/api_docs/kbn_import_resolver.mdx b/api_docs/kbn_import_resolver.mdx index 8c5f3bc5ccc61..d338e162ca3d8 100644 --- a/api_docs/kbn_import_resolver.mdx +++ b/api_docs/kbn_import_resolver.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-import-resolver title: "@kbn/import-resolver" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/import-resolver plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/import-resolver'] --- import kbnImportResolverObj from './kbn_import_resolver.devdocs.json'; diff --git a/api_docs/kbn_infra_forge.mdx b/api_docs/kbn_infra_forge.mdx index a766471cdd0c9..7f1743037a9d9 100644 --- a/api_docs/kbn_infra_forge.mdx +++ b/api_docs/kbn_infra_forge.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-infra-forge title: "@kbn/infra-forge" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/infra-forge plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/infra-forge'] --- import kbnInfraForgeObj from './kbn_infra_forge.devdocs.json'; diff --git a/api_docs/kbn_interpreter.mdx b/api_docs/kbn_interpreter.mdx index fe1362a2e1af2..e689c9a981602 100644 --- a/api_docs/kbn_interpreter.mdx +++ b/api_docs/kbn_interpreter.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-interpreter title: "@kbn/interpreter" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/interpreter plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/interpreter'] --- import kbnInterpreterObj from './kbn_interpreter.devdocs.json'; diff --git a/api_docs/kbn_io_ts_utils.mdx b/api_docs/kbn_io_ts_utils.mdx index 4d29413493798..f32c16e14b11e 100644 --- a/api_docs/kbn_io_ts_utils.mdx +++ b/api_docs/kbn_io_ts_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-io-ts-utils title: "@kbn/io-ts-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/io-ts-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/io-ts-utils'] --- import kbnIoTsUtilsObj from './kbn_io_ts_utils.devdocs.json'; diff --git a/api_docs/kbn_jest_serializers.mdx b/api_docs/kbn_jest_serializers.mdx index 8cabf7b62fcc1..e94ec7da78fa2 100644 --- a/api_docs/kbn_jest_serializers.mdx +++ b/api_docs/kbn_jest_serializers.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-jest-serializers title: "@kbn/jest-serializers" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/jest-serializers plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/jest-serializers'] --- import kbnJestSerializersObj from './kbn_jest_serializers.devdocs.json'; diff --git a/api_docs/kbn_journeys.mdx b/api_docs/kbn_journeys.mdx index 81cedbcee5a74..1fcae21edbda5 100644 --- a/api_docs/kbn_journeys.mdx +++ b/api_docs/kbn_journeys.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-journeys title: "@kbn/journeys" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/journeys plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/journeys'] --- import kbnJourneysObj from './kbn_journeys.devdocs.json'; diff --git a/api_docs/kbn_json_ast.mdx b/api_docs/kbn_json_ast.mdx index f508da29caae5..03dabe18e335d 100644 --- a/api_docs/kbn_json_ast.mdx +++ b/api_docs/kbn_json_ast.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-json-ast title: "@kbn/json-ast" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/json-ast plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/json-ast'] --- import kbnJsonAstObj from './kbn_json_ast.devdocs.json'; diff --git a/api_docs/kbn_kibana_manifest_schema.mdx b/api_docs/kbn_kibana_manifest_schema.mdx index 9e486150d13cd..858f2dbe80626 100644 --- a/api_docs/kbn_kibana_manifest_schema.mdx +++ b/api_docs/kbn_kibana_manifest_schema.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-kibana-manifest-schema title: "@kbn/kibana-manifest-schema" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/kibana-manifest-schema plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/kibana-manifest-schema'] --- import kbnKibanaManifestSchemaObj from './kbn_kibana_manifest_schema.devdocs.json'; diff --git a/api_docs/kbn_language_documentation_popover.mdx b/api_docs/kbn_language_documentation_popover.mdx index 36909485c210b..fc5a0dc014ec7 100644 --- a/api_docs/kbn_language_documentation_popover.mdx +++ b/api_docs/kbn_language_documentation_popover.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-language-documentation-popover title: "@kbn/language-documentation-popover" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/language-documentation-popover plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/language-documentation-popover'] --- import kbnLanguageDocumentationPopoverObj from './kbn_language_documentation_popover.devdocs.json'; diff --git a/api_docs/kbn_lens_embeddable_utils.mdx b/api_docs/kbn_lens_embeddable_utils.mdx index 837ad6207d28f..0759669ba5e44 100644 --- a/api_docs/kbn_lens_embeddable_utils.mdx +++ b/api_docs/kbn_lens_embeddable_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-lens-embeddable-utils title: "@kbn/lens-embeddable-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/lens-embeddable-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/lens-embeddable-utils'] --- import kbnLensEmbeddableUtilsObj from './kbn_lens_embeddable_utils.devdocs.json'; diff --git a/api_docs/kbn_logging.mdx b/api_docs/kbn_logging.mdx index add0b2c4e4b62..64bb3bb8cea9b 100644 --- a/api_docs/kbn_logging.mdx +++ b/api_docs/kbn_logging.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-logging title: "@kbn/logging" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/logging plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/logging'] --- import kbnLoggingObj from './kbn_logging.devdocs.json'; diff --git a/api_docs/kbn_logging_mocks.mdx b/api_docs/kbn_logging_mocks.mdx index 66750d32d7ce6..2ed01c7003a79 100644 --- a/api_docs/kbn_logging_mocks.mdx +++ b/api_docs/kbn_logging_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-logging-mocks title: "@kbn/logging-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/logging-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/logging-mocks'] --- import kbnLoggingMocksObj from './kbn_logging_mocks.devdocs.json'; diff --git a/api_docs/kbn_managed_vscode_config.mdx b/api_docs/kbn_managed_vscode_config.mdx index 1cc277fbdbc45..e82a57e691d04 100644 --- a/api_docs/kbn_managed_vscode_config.mdx +++ b/api_docs/kbn_managed_vscode_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-managed-vscode-config title: "@kbn/managed-vscode-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/managed-vscode-config plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/managed-vscode-config'] --- import kbnManagedVscodeConfigObj from './kbn_managed_vscode_config.devdocs.json'; diff --git a/api_docs/kbn_management_cards_navigation.mdx b/api_docs/kbn_management_cards_navigation.mdx index 6989bb8445f79..712ccba5cee4c 100644 --- a/api_docs/kbn_management_cards_navigation.mdx +++ b/api_docs/kbn_management_cards_navigation.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-cards-navigation title: "@kbn/management-cards-navigation" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/management-cards-navigation plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-cards-navigation'] --- import kbnManagementCardsNavigationObj from './kbn_management_cards_navigation.devdocs.json'; diff --git a/api_docs/kbn_management_settings_section_registry.mdx b/api_docs/kbn_management_settings_section_registry.mdx index a52cefa5cb2f0..b6237b4bb0774 100644 --- a/api_docs/kbn_management_settings_section_registry.mdx +++ b/api_docs/kbn_management_settings_section_registry.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-settings-section-registry title: "@kbn/management-settings-section-registry" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/management-settings-section-registry plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-settings-section-registry'] --- import kbnManagementSettingsSectionRegistryObj from './kbn_management_settings_section_registry.devdocs.json'; diff --git a/api_docs/kbn_management_storybook_config.mdx b/api_docs/kbn_management_storybook_config.mdx index 4fd56c20785f1..64d44bc84c3aa 100644 --- a/api_docs/kbn_management_storybook_config.mdx +++ b/api_docs/kbn_management_storybook_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-management-storybook-config title: "@kbn/management-storybook-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/management-storybook-config plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/management-storybook-config'] --- import kbnManagementStorybookConfigObj from './kbn_management_storybook_config.devdocs.json'; diff --git a/api_docs/kbn_mapbox_gl.mdx b/api_docs/kbn_mapbox_gl.mdx index 76c2b386beda7..e1e960c68e716 100644 --- a/api_docs/kbn_mapbox_gl.mdx +++ b/api_docs/kbn_mapbox_gl.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-mapbox-gl title: "@kbn/mapbox-gl" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/mapbox-gl plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/mapbox-gl'] --- import kbnMapboxGlObj from './kbn_mapbox_gl.devdocs.json'; diff --git a/api_docs/kbn_maps_vector_tile_utils.mdx b/api_docs/kbn_maps_vector_tile_utils.mdx index 3956c3bb40a25..787b4a50905e8 100644 --- a/api_docs/kbn_maps_vector_tile_utils.mdx +++ b/api_docs/kbn_maps_vector_tile_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-maps-vector-tile-utils title: "@kbn/maps-vector-tile-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/maps-vector-tile-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/maps-vector-tile-utils'] --- import kbnMapsVectorTileUtilsObj from './kbn_maps_vector_tile_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_agg_utils.mdx b/api_docs/kbn_ml_agg_utils.mdx index 644521bc1b575..cab94f9a66b8b 100644 --- a/api_docs/kbn_ml_agg_utils.mdx +++ b/api_docs/kbn_ml_agg_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-agg-utils title: "@kbn/ml-agg-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-agg-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-agg-utils'] --- import kbnMlAggUtilsObj from './kbn_ml_agg_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_anomaly_utils.mdx b/api_docs/kbn_ml_anomaly_utils.mdx index c06e547ed26df..40d088e435566 100644 --- a/api_docs/kbn_ml_anomaly_utils.mdx +++ b/api_docs/kbn_ml_anomaly_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-anomaly-utils title: "@kbn/ml-anomaly-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-anomaly-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-anomaly-utils'] --- import kbnMlAnomalyUtilsObj from './kbn_ml_anomaly_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_category_validator.mdx b/api_docs/kbn_ml_category_validator.mdx index 7192147d32662..e024a5335ec4e 100644 --- a/api_docs/kbn_ml_category_validator.mdx +++ b/api_docs/kbn_ml_category_validator.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-category-validator title: "@kbn/ml-category-validator" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-category-validator plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-category-validator'] --- import kbnMlCategoryValidatorObj from './kbn_ml_category_validator.devdocs.json'; diff --git a/api_docs/kbn_ml_data_frame_analytics_utils.mdx b/api_docs/kbn_ml_data_frame_analytics_utils.mdx index 382be4b18ea2f..9bf3cd5950829 100644 --- a/api_docs/kbn_ml_data_frame_analytics_utils.mdx +++ b/api_docs/kbn_ml_data_frame_analytics_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-data-frame-analytics-utils title: "@kbn/ml-data-frame-analytics-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-data-frame-analytics-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-data-frame-analytics-utils'] --- import kbnMlDataFrameAnalyticsUtilsObj from './kbn_ml_data_frame_analytics_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_data_grid.mdx b/api_docs/kbn_ml_data_grid.mdx index e2bfc0cad2bfa..edb8839d057b4 100644 --- a/api_docs/kbn_ml_data_grid.mdx +++ b/api_docs/kbn_ml_data_grid.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-data-grid title: "@kbn/ml-data-grid" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-data-grid plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-data-grid'] --- import kbnMlDataGridObj from './kbn_ml_data_grid.devdocs.json'; diff --git a/api_docs/kbn_ml_date_picker.devdocs.json b/api_docs/kbn_ml_date_picker.devdocs.json index 37b14af61fb1b..69aa0e7997284 100644 --- a/api_docs/kbn_ml_date_picker.devdocs.json +++ b/api_docs/kbn_ml_date_picker.devdocs.json @@ -524,138 +524,25 @@ }, { "parentPluginId": "@kbn/ml-date-picker", - "id": "def-common.DatePickerDependencies.wrapWithTheme", - "type": "Function", + "id": "def-common.DatePickerDependencies.i18n", + "type": "Object", "tags": [], - "label": "wrapWithTheme", + "label": "i18n", "description": [ - "\nhelper to be used with notifications." + "\nInternationalisation service" ], "signature": [ - "(node: React.ReactNode, theme$: ", - "Observable", - "<", { - "pluginId": "@kbn/react-kibana-context-common", + "pluginId": "@kbn/core-i18n-browser", "scope": "common", - "docId": "kibKbnReactKibanaContextCommonPluginApi", - "section": "def-common.KibanaTheme", - "text": "KibanaTheme" - }, - ">) => JSX.Element" - ], - "path": "x-pack/packages/ml/date_picker/src/hooks/use_date_picker_context.tsx", - "deprecated": false, - "trackAdoption": false, - "returnComment": [], - "children": [ - { - "parentPluginId": "@kbn/ml-date-picker", - "id": "def-common.DatePickerDependencies.wrapWithTheme.$1", - "type": "CompoundType", - "tags": [], - "label": "node", - "description": [], - "signature": [ - "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" - ], - "path": "src/plugins/kibana_react/public/theme.tsx", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "@kbn/ml-date-picker", - "id": "def-common.DatePickerDependencies.wrapWithTheme.$2", - "type": "Object", - "tags": [], - "label": "theme$", - "description": [], - "signature": [ - "Observable", - "<", - { - "pluginId": "@kbn/react-kibana-context-common", - "scope": "common", - "docId": "kibKbnReactKibanaContextCommonPluginApi", - "section": "def-common.KibanaTheme", - "text": "KibanaTheme" - }, - ">" - ], - "path": "src/plugins/kibana_react/public/theme.tsx", - "deprecated": false, - "trackAdoption": false + "docId": "kibKbnCoreI18nBrowserPluginApi", + "section": "def-common.I18nStart", + "text": "I18nStart" } - ] - }, - { - "parentPluginId": "@kbn/ml-date-picker", - "id": "def-common.DatePickerDependencies.toMountPoint", - "type": "Function", - "tags": [], - "label": "toMountPoint", - "description": [ - "\nhelper to be used with notifications." - ], - "signature": [ - "(node: React.ReactNode, { theme$ }?: ", - { - "pluginId": "kibanaReact", - "scope": "public", - "docId": "kibKibanaReactPluginApi", - "section": "def-public.ToMountPointOptions", - "text": "ToMountPointOptions" - }, - ") => ", - { - "pluginId": "@kbn/core-mount-utils-browser", - "scope": "common", - "docId": "kibKbnCoreMountUtilsBrowserPluginApi", - "section": "def-common.MountPoint", - "text": "MountPoint" - }, - "" ], "path": "x-pack/packages/ml/date_picker/src/hooks/use_date_picker_context.tsx", "deprecated": false, - "trackAdoption": false, - "returnComment": [], - "children": [ - { - "parentPluginId": "@kbn/ml-date-picker", - "id": "def-common.DatePickerDependencies.toMountPoint.$1", - "type": "CompoundType", - "tags": [], - "label": "node", - "description": [], - "signature": [ - "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" - ], - "path": "src/plugins/kibana_react/public/util/index.tsx", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "@kbn/ml-date-picker", - "id": "def-common.DatePickerDependencies.toMountPoint.$2", - "type": "Object", - "tags": [], - "label": "__1", - "description": [], - "signature": [ - { - "pluginId": "kibanaReact", - "scope": "public", - "docId": "kibKibanaReactPluginApi", - "section": "def-public.ToMountPointOptions", - "text": "ToMountPointOptions" - } - ], - "path": "src/plugins/kibana_react/public/util/index.tsx", - "deprecated": false, - "trackAdoption": false - } - ] + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_ml_date_picker.mdx b/api_docs/kbn_ml_date_picker.mdx index 26510920fb55f..2b3394ce935b7 100644 --- a/api_docs/kbn_ml_date_picker.mdx +++ b/api_docs/kbn_ml_date_picker.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-date-picker title: "@kbn/ml-date-picker" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-date-picker plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-date-picker'] --- import kbnMlDatePickerObj from './kbn_ml_date_picker.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) for questi | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 52 | 0 | 4 | 0 | +| 47 | 0 | 0 | 0 | ## Common diff --git a/api_docs/kbn_ml_date_utils.mdx b/api_docs/kbn_ml_date_utils.mdx index a9941ae75a008..482650b801c89 100644 --- a/api_docs/kbn_ml_date_utils.mdx +++ b/api_docs/kbn_ml_date_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-date-utils title: "@kbn/ml-date-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-date-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-date-utils'] --- import kbnMlDateUtilsObj from './kbn_ml_date_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_error_utils.mdx b/api_docs/kbn_ml_error_utils.mdx index 30ea003dd3069..0fbfa82c82fe6 100644 --- a/api_docs/kbn_ml_error_utils.mdx +++ b/api_docs/kbn_ml_error_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-error-utils title: "@kbn/ml-error-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-error-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-error-utils'] --- import kbnMlErrorUtilsObj from './kbn_ml_error_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_in_memory_table.mdx b/api_docs/kbn_ml_in_memory_table.mdx index 380a359c49e96..3b26af23bd7c9 100644 --- a/api_docs/kbn_ml_in_memory_table.mdx +++ b/api_docs/kbn_ml_in_memory_table.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-in-memory-table title: "@kbn/ml-in-memory-table" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-in-memory-table plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-in-memory-table'] --- import kbnMlInMemoryTableObj from './kbn_ml_in_memory_table.devdocs.json'; diff --git a/api_docs/kbn_ml_is_defined.mdx b/api_docs/kbn_ml_is_defined.mdx index dcdb40a2563f6..3c6f65652b115 100644 --- a/api_docs/kbn_ml_is_defined.mdx +++ b/api_docs/kbn_ml_is_defined.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-is-defined title: "@kbn/ml-is-defined" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-is-defined plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-is-defined'] --- import kbnMlIsDefinedObj from './kbn_ml_is_defined.devdocs.json'; diff --git a/api_docs/kbn_ml_is_populated_object.mdx b/api_docs/kbn_ml_is_populated_object.mdx index ae82932c2d477..efa8a632face3 100644 --- a/api_docs/kbn_ml_is_populated_object.mdx +++ b/api_docs/kbn_ml_is_populated_object.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-is-populated-object title: "@kbn/ml-is-populated-object" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-is-populated-object plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-is-populated-object'] --- import kbnMlIsPopulatedObjectObj from './kbn_ml_is_populated_object.devdocs.json'; diff --git a/api_docs/kbn_ml_kibana_theme.mdx b/api_docs/kbn_ml_kibana_theme.mdx index 449dac356fcbe..a6348b55facb5 100644 --- a/api_docs/kbn_ml_kibana_theme.mdx +++ b/api_docs/kbn_ml_kibana_theme.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-kibana-theme title: "@kbn/ml-kibana-theme" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-kibana-theme plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-kibana-theme'] --- import kbnMlKibanaThemeObj from './kbn_ml_kibana_theme.devdocs.json'; diff --git a/api_docs/kbn_ml_local_storage.mdx b/api_docs/kbn_ml_local_storage.mdx index 9ba7230c4f974..5fc61b4cd357f 100644 --- a/api_docs/kbn_ml_local_storage.mdx +++ b/api_docs/kbn_ml_local_storage.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-local-storage title: "@kbn/ml-local-storage" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-local-storage plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-local-storage'] --- import kbnMlLocalStorageObj from './kbn_ml_local_storage.devdocs.json'; diff --git a/api_docs/kbn_ml_nested_property.mdx b/api_docs/kbn_ml_nested_property.mdx index d81bd96fadfb2..8adab86b8f8a1 100644 --- a/api_docs/kbn_ml_nested_property.mdx +++ b/api_docs/kbn_ml_nested_property.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-nested-property title: "@kbn/ml-nested-property" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-nested-property plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-nested-property'] --- import kbnMlNestedPropertyObj from './kbn_ml_nested_property.devdocs.json'; diff --git a/api_docs/kbn_ml_number_utils.mdx b/api_docs/kbn_ml_number_utils.mdx index 78f5536d2a603..958179a5dd149 100644 --- a/api_docs/kbn_ml_number_utils.mdx +++ b/api_docs/kbn_ml_number_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-number-utils title: "@kbn/ml-number-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-number-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-number-utils'] --- import kbnMlNumberUtilsObj from './kbn_ml_number_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_query_utils.mdx b/api_docs/kbn_ml_query_utils.mdx index f028123b4e326..fce4c3e85c1ac 100644 --- a/api_docs/kbn_ml_query_utils.mdx +++ b/api_docs/kbn_ml_query_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-query-utils title: "@kbn/ml-query-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-query-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-query-utils'] --- import kbnMlQueryUtilsObj from './kbn_ml_query_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_random_sampler_utils.mdx b/api_docs/kbn_ml_random_sampler_utils.mdx index 10e38d630f1f5..9c52b51d3b79e 100644 --- a/api_docs/kbn_ml_random_sampler_utils.mdx +++ b/api_docs/kbn_ml_random_sampler_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-random-sampler-utils title: "@kbn/ml-random-sampler-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-random-sampler-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-random-sampler-utils'] --- import kbnMlRandomSamplerUtilsObj from './kbn_ml_random_sampler_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_route_utils.mdx b/api_docs/kbn_ml_route_utils.mdx index 781f01593ee17..6bc6910f08dd1 100644 --- a/api_docs/kbn_ml_route_utils.mdx +++ b/api_docs/kbn_ml_route_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-route-utils title: "@kbn/ml-route-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-route-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-route-utils'] --- import kbnMlRouteUtilsObj from './kbn_ml_route_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_runtime_field_utils.mdx b/api_docs/kbn_ml_runtime_field_utils.mdx index f3e1a906e339c..e13e794fed9f6 100644 --- a/api_docs/kbn_ml_runtime_field_utils.mdx +++ b/api_docs/kbn_ml_runtime_field_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-runtime-field-utils title: "@kbn/ml-runtime-field-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-runtime-field-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-runtime-field-utils'] --- import kbnMlRuntimeFieldUtilsObj from './kbn_ml_runtime_field_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_string_hash.mdx b/api_docs/kbn_ml_string_hash.mdx index e38fd5c8d89b9..52a68821ec2ee 100644 --- a/api_docs/kbn_ml_string_hash.mdx +++ b/api_docs/kbn_ml_string_hash.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-string-hash title: "@kbn/ml-string-hash" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-string-hash plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-string-hash'] --- import kbnMlStringHashObj from './kbn_ml_string_hash.devdocs.json'; diff --git a/api_docs/kbn_ml_trained_models_utils.devdocs.json b/api_docs/kbn_ml_trained_models_utils.devdocs.json index 78b0f58eaba25..4401041f76b06 100644 --- a/api_docs/kbn_ml_trained_models_utils.devdocs.json +++ b/api_docs/kbn_ml_trained_models_utils.devdocs.json @@ -40,13 +40,10 @@ { "parentPluginId": "@kbn/ml-trained-models-utils", "id": "def-common.BUILT_IN_MODEL_TYPE", - "type": "Any", + "type": "string", "tags": [], "label": "BUILT_IN_MODEL_TYPE", "description": [], - "signature": [ - "any" - ], "path": "x-pack/packages/ml/trained_models_utils/src/constants/trained_models.ts", "deprecated": false, "trackAdoption": false, diff --git a/api_docs/kbn_ml_trained_models_utils.mdx b/api_docs/kbn_ml_trained_models_utils.mdx index 5c4b808234317..46edc30de8bfa 100644 --- a/api_docs/kbn_ml_trained_models_utils.mdx +++ b/api_docs/kbn_ml_trained_models_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-trained-models-utils title: "@kbn/ml-trained-models-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-trained-models-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-trained-models-utils'] --- import kbnMlTrainedModelsUtilsObj from './kbn_ml_trained_models_utils.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) for questi | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 8 | 1 | 8 | 0 | +| 8 | 0 | 8 | 0 | ## Common diff --git a/api_docs/kbn_ml_url_state.mdx b/api_docs/kbn_ml_url_state.mdx index 73d34a5f758fc..aca26086b3ff8 100644 --- a/api_docs/kbn_ml_url_state.mdx +++ b/api_docs/kbn_ml_url_state.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-url-state title: "@kbn/ml-url-state" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-url-state plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-url-state'] --- import kbnMlUrlStateObj from './kbn_ml_url_state.devdocs.json'; diff --git a/api_docs/kbn_monaco.mdx b/api_docs/kbn_monaco.mdx index cceef607a016d..8326e7e9a65a8 100644 --- a/api_docs/kbn_monaco.mdx +++ b/api_docs/kbn_monaco.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-monaco title: "@kbn/monaco" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/monaco plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/monaco'] --- import kbnMonacoObj from './kbn_monaco.devdocs.json'; diff --git a/api_docs/kbn_object_versioning.mdx b/api_docs/kbn_object_versioning.mdx index a0d0b9909006b..2b8be0a1bc604 100644 --- a/api_docs/kbn_object_versioning.mdx +++ b/api_docs/kbn_object_versioning.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-object-versioning title: "@kbn/object-versioning" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/object-versioning plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/object-versioning'] --- import kbnObjectVersioningObj from './kbn_object_versioning.devdocs.json'; diff --git a/api_docs/kbn_observability_alert_details.mdx b/api_docs/kbn_observability_alert_details.mdx index b885ef4e33397..5a29f6c6a4ff7 100644 --- a/api_docs/kbn_observability_alert_details.mdx +++ b/api_docs/kbn_observability_alert_details.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-observability-alert-details title: "@kbn/observability-alert-details" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/observability-alert-details plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/observability-alert-details'] --- import kbnObservabilityAlertDetailsObj from './kbn_observability_alert_details.devdocs.json'; diff --git a/api_docs/kbn_optimizer.mdx b/api_docs/kbn_optimizer.mdx index 56501bb419d6d..e41b8abccf98a 100644 --- a/api_docs/kbn_optimizer.mdx +++ b/api_docs/kbn_optimizer.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-optimizer title: "@kbn/optimizer" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/optimizer plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/optimizer'] --- import kbnOptimizerObj from './kbn_optimizer.devdocs.json'; diff --git a/api_docs/kbn_optimizer_webpack_helpers.mdx b/api_docs/kbn_optimizer_webpack_helpers.mdx index 527cf7a229999..da21e6d7f010b 100644 --- a/api_docs/kbn_optimizer_webpack_helpers.mdx +++ b/api_docs/kbn_optimizer_webpack_helpers.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-optimizer-webpack-helpers title: "@kbn/optimizer-webpack-helpers" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/optimizer-webpack-helpers plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/optimizer-webpack-helpers'] --- import kbnOptimizerWebpackHelpersObj from './kbn_optimizer_webpack_helpers.devdocs.json'; diff --git a/api_docs/kbn_osquery_io_ts_types.mdx b/api_docs/kbn_osquery_io_ts_types.mdx index 7e9fae33d4c3a..f6ad41d05fd4a 100644 --- a/api_docs/kbn_osquery_io_ts_types.mdx +++ b/api_docs/kbn_osquery_io_ts_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-osquery-io-ts-types title: "@kbn/osquery-io-ts-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/osquery-io-ts-types plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/osquery-io-ts-types'] --- import kbnOsqueryIoTsTypesObj from './kbn_osquery_io_ts_types.devdocs.json'; diff --git a/api_docs/kbn_performance_testing_dataset_extractor.mdx b/api_docs/kbn_performance_testing_dataset_extractor.mdx index efef1122083d8..130045baec01e 100644 --- a/api_docs/kbn_performance_testing_dataset_extractor.mdx +++ b/api_docs/kbn_performance_testing_dataset_extractor.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-performance-testing-dataset-extractor title: "@kbn/performance-testing-dataset-extractor" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/performance-testing-dataset-extractor plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/performance-testing-dataset-extractor'] --- import kbnPerformanceTestingDatasetExtractorObj from './kbn_performance_testing_dataset_extractor.devdocs.json'; diff --git a/api_docs/kbn_plugin_generator.mdx b/api_docs/kbn_plugin_generator.mdx index d0fafbceaff08..8e025eb0e225e 100644 --- a/api_docs/kbn_plugin_generator.mdx +++ b/api_docs/kbn_plugin_generator.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-plugin-generator title: "@kbn/plugin-generator" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/plugin-generator plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/plugin-generator'] --- import kbnPluginGeneratorObj from './kbn_plugin_generator.devdocs.json'; diff --git a/api_docs/kbn_plugin_helpers.mdx b/api_docs/kbn_plugin_helpers.mdx index 94dbac6a7460f..8d1539a0cc874 100644 --- a/api_docs/kbn_plugin_helpers.mdx +++ b/api_docs/kbn_plugin_helpers.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-plugin-helpers title: "@kbn/plugin-helpers" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/plugin-helpers plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/plugin-helpers'] --- import kbnPluginHelpersObj from './kbn_plugin_helpers.devdocs.json'; diff --git a/api_docs/kbn_random_sampling.mdx b/api_docs/kbn_random_sampling.mdx index c754b389ab158..106843c187be9 100644 --- a/api_docs/kbn_random_sampling.mdx +++ b/api_docs/kbn_random_sampling.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-random-sampling title: "@kbn/random-sampling" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/random-sampling plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/random-sampling'] --- import kbnRandomSamplingObj from './kbn_random_sampling.devdocs.json'; diff --git a/api_docs/kbn_react_field.mdx b/api_docs/kbn_react_field.mdx index d73dfed0dceb2..eef9612c0611e 100644 --- a/api_docs/kbn_react_field.mdx +++ b/api_docs/kbn_react_field.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-field title: "@kbn/react-field" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/react-field plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-field'] --- import kbnReactFieldObj from './kbn_react_field.devdocs.json'; diff --git a/api_docs/kbn_react_kibana_context_common.mdx b/api_docs/kbn_react_kibana_context_common.mdx index 1f655867eb108..d9e3d8f0b877f 100644 --- a/api_docs/kbn_react_kibana_context_common.mdx +++ b/api_docs/kbn_react_kibana_context_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-kibana-context-common title: "@kbn/react-kibana-context-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/react-kibana-context-common plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-kibana-context-common'] --- import kbnReactKibanaContextCommonObj from './kbn_react_kibana_context_common.devdocs.json'; diff --git a/api_docs/kbn_react_kibana_context_render.mdx b/api_docs/kbn_react_kibana_context_render.mdx index b8c1c95ba27e1..7a54b9c3cf56b 100644 --- a/api_docs/kbn_react_kibana_context_render.mdx +++ b/api_docs/kbn_react_kibana_context_render.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-kibana-context-render title: "@kbn/react-kibana-context-render" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/react-kibana-context-render plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-kibana-context-render'] --- import kbnReactKibanaContextRenderObj from './kbn_react_kibana_context_render.devdocs.json'; diff --git a/api_docs/kbn_react_kibana_context_root.mdx b/api_docs/kbn_react_kibana_context_root.mdx index e70ef516ed832..ed2ddbc18d26f 100644 --- a/api_docs/kbn_react_kibana_context_root.mdx +++ b/api_docs/kbn_react_kibana_context_root.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-kibana-context-root title: "@kbn/react-kibana-context-root" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/react-kibana-context-root plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-kibana-context-root'] --- import kbnReactKibanaContextRootObj from './kbn_react_kibana_context_root.devdocs.json'; diff --git a/api_docs/kbn_react_kibana_context_styled.mdx b/api_docs/kbn_react_kibana_context_styled.mdx index 940f8819dbe40..d211bad49f204 100644 --- a/api_docs/kbn_react_kibana_context_styled.mdx +++ b/api_docs/kbn_react_kibana_context_styled.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-kibana-context-styled title: "@kbn/react-kibana-context-styled" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/react-kibana-context-styled plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-kibana-context-styled'] --- import kbnReactKibanaContextStyledObj from './kbn_react_kibana_context_styled.devdocs.json'; diff --git a/api_docs/kbn_react_kibana_context_theme.mdx b/api_docs/kbn_react_kibana_context_theme.mdx index ec2e4a9005c7c..df5d64177ad95 100644 --- a/api_docs/kbn_react_kibana_context_theme.mdx +++ b/api_docs/kbn_react_kibana_context_theme.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-kibana-context-theme title: "@kbn/react-kibana-context-theme" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/react-kibana-context-theme plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-kibana-context-theme'] --- import kbnReactKibanaContextThemeObj from './kbn_react_kibana_context_theme.devdocs.json'; diff --git a/api_docs/kbn_react_kibana_mount.mdx b/api_docs/kbn_react_kibana_mount.mdx index ed105519a0fae..3e382fc24e158 100644 --- a/api_docs/kbn_react_kibana_mount.mdx +++ b/api_docs/kbn_react_kibana_mount.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-kibana-mount title: "@kbn/react-kibana-mount" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/react-kibana-mount plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-kibana-mount'] --- import kbnReactKibanaMountObj from './kbn_react_kibana_mount.devdocs.json'; diff --git a/api_docs/kbn_repo_file_maps.mdx b/api_docs/kbn_repo_file_maps.mdx index 9abc420933544..60096810ea562 100644 --- a/api_docs/kbn_repo_file_maps.mdx +++ b/api_docs/kbn_repo_file_maps.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-repo-file-maps title: "@kbn/repo-file-maps" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/repo-file-maps plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/repo-file-maps'] --- import kbnRepoFileMapsObj from './kbn_repo_file_maps.devdocs.json'; diff --git a/api_docs/kbn_repo_linter.mdx b/api_docs/kbn_repo_linter.mdx index cdc2b81aebbd0..2a8a28d195c24 100644 --- a/api_docs/kbn_repo_linter.mdx +++ b/api_docs/kbn_repo_linter.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-repo-linter title: "@kbn/repo-linter" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/repo-linter plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/repo-linter'] --- import kbnRepoLinterObj from './kbn_repo_linter.devdocs.json'; diff --git a/api_docs/kbn_repo_path.mdx b/api_docs/kbn_repo_path.mdx index e404112a6e0c4..37822409c3082 100644 --- a/api_docs/kbn_repo_path.mdx +++ b/api_docs/kbn_repo_path.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-repo-path title: "@kbn/repo-path" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/repo-path plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/repo-path'] --- import kbnRepoPathObj from './kbn_repo_path.devdocs.json'; diff --git a/api_docs/kbn_repo_source_classifier.mdx b/api_docs/kbn_repo_source_classifier.mdx index 380418dc220d8..c48c228e9c199 100644 --- a/api_docs/kbn_repo_source_classifier.mdx +++ b/api_docs/kbn_repo_source_classifier.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-repo-source-classifier title: "@kbn/repo-source-classifier" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/repo-source-classifier plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/repo-source-classifier'] --- import kbnRepoSourceClassifierObj from './kbn_repo_source_classifier.devdocs.json'; diff --git a/api_docs/kbn_reporting_common.devdocs.json b/api_docs/kbn_reporting_common.devdocs.json index 0413d5a18cb0c..bb90486c2546c 100644 --- a/api_docs/kbn_reporting_common.devdocs.json +++ b/api_docs/kbn_reporting_common.devdocs.json @@ -137,7 +137,7 @@ "label": "humanFriendlyMessage", "description": [], "signature": [ - "() => any" + "() => string" ], "path": "packages/kbn-reporting/common/errors.ts", "deprecated": false, @@ -593,7 +593,7 @@ "label": "humanFriendlyMessage", "description": [], "signature": [ - "() => any" + "() => string" ], "path": "packages/kbn-reporting/common/errors.ts", "deprecated": false, @@ -879,7 +879,7 @@ "label": "humanFriendlyMessage", "description": [], "signature": [ - "() => any" + "() => string" ], "path": "packages/kbn-reporting/common/errors.ts", "deprecated": false, diff --git a/api_docs/kbn_reporting_common.mdx b/api_docs/kbn_reporting_common.mdx index 9dab892aad9c6..b7c081dbd71c3 100644 --- a/api_docs/kbn_reporting_common.mdx +++ b/api_docs/kbn_reporting_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-reporting-common title: "@kbn/reporting-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/reporting-common plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/reporting-common'] --- import kbnReportingCommonObj from './kbn_reporting_common.devdocs.json'; diff --git a/api_docs/kbn_rison.mdx b/api_docs/kbn_rison.mdx index 318e2ba75a757..df37ed5d4dbdb 100644 --- a/api_docs/kbn_rison.mdx +++ b/api_docs/kbn_rison.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-rison title: "@kbn/rison" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/rison plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/rison'] --- import kbnRisonObj from './kbn_rison.devdocs.json'; diff --git a/api_docs/kbn_rrule.mdx b/api_docs/kbn_rrule.mdx index 35a77cb839a11..a74f200253661 100644 --- a/api_docs/kbn_rrule.mdx +++ b/api_docs/kbn_rrule.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-rrule title: "@kbn/rrule" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/rrule plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/rrule'] --- import kbnRruleObj from './kbn_rrule.devdocs.json'; diff --git a/api_docs/kbn_rule_data_utils.mdx b/api_docs/kbn_rule_data_utils.mdx index b7dbb1c041e0c..9c6e83e432ee3 100644 --- a/api_docs/kbn_rule_data_utils.mdx +++ b/api_docs/kbn_rule_data_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-rule-data-utils title: "@kbn/rule-data-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/rule-data-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/rule-data-utils'] --- import kbnRuleDataUtilsObj from './kbn_rule_data_utils.devdocs.json'; diff --git a/api_docs/kbn_saved_objects_settings.mdx b/api_docs/kbn_saved_objects_settings.mdx index fe3c7d9146536..50d159db3e195 100644 --- a/api_docs/kbn_saved_objects_settings.mdx +++ b/api_docs/kbn_saved_objects_settings.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-saved-objects-settings title: "@kbn/saved-objects-settings" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/saved-objects-settings plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/saved-objects-settings'] --- import kbnSavedObjectsSettingsObj from './kbn_saved_objects_settings.devdocs.json'; diff --git a/api_docs/kbn_search_api_panels.devdocs.json b/api_docs/kbn_search_api_panels.devdocs.json index 5f1b06dd23303..d477957673f4f 100644 --- a/api_docs/kbn_search_api_panels.devdocs.json +++ b/api_docs/kbn_search_api_panels.devdocs.json @@ -27,7 +27,7 @@ "label": "CodeBox", "description": [], "signature": [ - "({ application, codeSnippet, http, languageType, languages, pluginId, selectedLanguage, setSelectedLanguage, sharePlugin, showTryInConsole, }: React.PropsWithChildren) => JSX.Element" + "({ application, codeSnippet, languageType, languages, assetBasePath, selectedLanguage, setSelectedLanguage, sharePlugin, consoleRequest, }: React.PropsWithChildren) => JSX.Element" ], "path": "packages/kbn-search-api-panels/components/code_box.tsx", "deprecated": false, @@ -38,7 +38,7 @@ "id": "def-common.CodeBox.$1", "type": "CompoundType", "tags": [], - "label": "{\n application,\n codeSnippet,\n http,\n languageType,\n languages,\n pluginId,\n selectedLanguage,\n setSelectedLanguage,\n sharePlugin,\n showTryInConsole,\n}", + "label": "{\n application,\n codeSnippet,\n languageType,\n languages,\n assetBasePath,\n selectedLanguage,\n setSelectedLanguage,\n sharePlugin,\n consoleRequest,\n}", "description": [], "signature": [ "React.PropsWithChildren" @@ -54,43 +54,183 @@ }, { "parentPluginId": "@kbn/search-api-panels", - "id": "def-common.GithubLink", + "id": "def-common.getConsoleRequest", "type": "Function", "tags": [], - "label": "GithubLink", + "label": "getConsoleRequest", "description": [], "signature": [ - "({ label, href, http, pluginId }: React.PropsWithChildren<{ label: string; href: string; http: ", + "(code: keyof ", { - "pluginId": "@kbn/core-http-browser", + "pluginId": "@kbn/search-api-panels", "scope": "common", - "docId": "kibKbnCoreHttpBrowserPluginApi", - "section": "def-common.HttpSetup", - "text": "HttpSetup" + "docId": "kibKbnSearchApiPanelsPluginApi", + "section": "def-common.LanguageDefinition", + "text": "LanguageDefinition" }, - "; pluginId: string; }>) => JSX.Element" + ") => string | undefined" ], - "path": "packages/kbn-search-api-panels/components/github_link.tsx", + "path": "packages/kbn-search-api-panels/utils.ts", "deprecated": false, "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/search-api-panels", - "id": "def-common.GithubLink.$1", + "id": "def-common.getConsoleRequest.$1", "type": "CompoundType", "tags": [], - "label": "{ label, href, http, pluginId }", + "label": "code", "description": [], "signature": [ - "React.PropsWithChildren<{ label: string; href: string; http: ", + "keyof ", { - "pluginId": "@kbn/core-http-browser", + "pluginId": "@kbn/search-api-panels", "scope": "common", - "docId": "kibKbnCoreHttpBrowserPluginApi", - "section": "def-common.HttpSetup", - "text": "HttpSetup" + "docId": "kibKbnSearchApiPanelsPluginApi", + "section": "def-common.LanguageDefinition", + "text": "LanguageDefinition" + } + ], + "path": "packages/kbn-search-api-panels/utils.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/search-api-panels", + "id": "def-common.getLanguageDefinitionCodeSnippet", + "type": "Function", + "tags": [], + "label": "getLanguageDefinitionCodeSnippet", + "description": [], + "signature": [ + "(language: Partial<", + { + "pluginId": "@kbn/search-api-panels", + "scope": "common", + "docId": "kibKbnSearchApiPanelsPluginApi", + "section": "def-common.LanguageDefinition", + "text": "LanguageDefinition" + }, + ">, key: keyof ", + { + "pluginId": "@kbn/search-api-panels", + "scope": "common", + "docId": "kibKbnSearchApiPanelsPluginApi", + "section": "def-common.LanguageDefinition", + "text": "LanguageDefinition" + }, + ", args: ", + { + "pluginId": "@kbn/search-api-panels", + "scope": "common", + "docId": "kibKbnSearchApiPanelsPluginApi", + "section": "def-common.LanguageDefinitionSnippetArguments", + "text": "LanguageDefinitionSnippetArguments" + }, + ") => string" + ], + "path": "packages/kbn-search-api-panels/utils.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/search-api-panels", + "id": "def-common.getLanguageDefinitionCodeSnippet.$1", + "type": "Object", + "tags": [], + "label": "language", + "description": [], + "signature": [ + "Partial<", + { + "pluginId": "@kbn/search-api-panels", + "scope": "common", + "docId": "kibKbnSearchApiPanelsPluginApi", + "section": "def-common.LanguageDefinition", + "text": "LanguageDefinition" }, - "; pluginId: string; }>" + ">" + ], + "path": "packages/kbn-search-api-panels/utils.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/search-api-panels", + "id": "def-common.getLanguageDefinitionCodeSnippet.$2", + "type": "CompoundType", + "tags": [], + "label": "key", + "description": [], + "signature": [ + "keyof ", + { + "pluginId": "@kbn/search-api-panels", + "scope": "common", + "docId": "kibKbnSearchApiPanelsPluginApi", + "section": "def-common.LanguageDefinition", + "text": "LanguageDefinition" + } + ], + "path": "packages/kbn-search-api-panels/utils.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/search-api-panels", + "id": "def-common.getLanguageDefinitionCodeSnippet.$3", + "type": "Object", + "tags": [], + "label": "args", + "description": [], + "signature": [ + { + "pluginId": "@kbn/search-api-panels", + "scope": "common", + "docId": "kibKbnSearchApiPanelsPluginApi", + "section": "def-common.LanguageDefinitionSnippetArguments", + "text": "LanguageDefinitionSnippetArguments" + } + ], + "path": "packages/kbn-search-api-panels/utils.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/search-api-panels", + "id": "def-common.GithubLink", + "type": "Function", + "tags": [], + "label": "GithubLink", + "description": [], + "signature": [ + "({ assetBasePath, label, href }: React.PropsWithChildren<{ assetBasePath: string; label: string; href: string; }>) => JSX.Element" + ], + "path": "packages/kbn-search-api-panels/components/github_link.tsx", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/search-api-panels", + "id": "def-common.GithubLink.$1", + "type": "CompoundType", + "tags": [], + "label": "{ assetBasePath, label, href }", + "description": [], + "signature": [ + "React.PropsWithChildren<{ assetBasePath: string; label: string; href: string; }>" ], "path": "packages/kbn-search-api-panels/components/github_link.tsx", "deprecated": false, @@ -109,7 +249,7 @@ "label": "IngestData", "description": [], "signature": [ - "({ codeSnippet, selectedLanguage, setSelectedLanguage, docLinks, http, pluginId, application, sharePlugin, languages, showTryInConsole, }: React.PropsWithChildren) => JSX.Element" + "({ codeSnippet, selectedLanguage, setSelectedLanguage, docLinks, assetBasePath, application, sharePlugin, languages, consoleRequest, }: React.PropsWithChildren) => JSX.Element" ], "path": "packages/kbn-search-api-panels/components/ingest_data.tsx", "deprecated": false, @@ -120,7 +260,7 @@ "id": "def-common.IngestData.$1", "type": "CompoundType", "tags": [], - "label": "{\n codeSnippet,\n selectedLanguage,\n setSelectedLanguage,\n docLinks,\n http,\n pluginId,\n application,\n sharePlugin,\n languages,\n showTryInConsole,\n}", + "label": "{\n codeSnippet,\n selectedLanguage,\n setSelectedLanguage,\n docLinks,\n assetBasePath,\n application,\n sharePlugin,\n languages,\n consoleRequest,\n}", "description": [], "signature": [ "React.PropsWithChildren" @@ -142,7 +282,7 @@ "label": "InstallClientPanel", "description": [], "signature": [ - "({ codeSnippet, showTryInConsole, language, languages, setSelectedLanguage, http, pluginId, application, sharePlugin, isPanelLeft, overviewPanelProps, }: React.PropsWithChildren) => JSX.Element" + "({ codeSnippet, consoleRequest, language, languages, setSelectedLanguage, assetBasePath, application, sharePlugin, isPanelLeft, overviewPanelProps, }: React.PropsWithChildren) => JSX.Element" ], "path": "packages/kbn-search-api-panels/components/install_client.tsx", "deprecated": false, @@ -153,7 +293,7 @@ "id": "def-common.InstallClientPanel.$1", "type": "CompoundType", "tags": [], - "label": "{\n codeSnippet,\n showTryInConsole,\n language,\n languages,\n setSelectedLanguage,\n http,\n pluginId,\n application,\n sharePlugin,\n isPanelLeft = true,\n overviewPanelProps,\n}", + "label": "{\n codeSnippet,\n consoleRequest,\n language,\n languages,\n setSelectedLanguage,\n assetBasePath,\n application,\n sharePlugin,\n isPanelLeft = true,\n overviewPanelProps,\n}", "description": [], "signature": [ "React.PropsWithChildren" @@ -175,7 +315,7 @@ "label": "IntegrationsPanel", "description": [], "signature": [ - "({ docLinks, http, pluginId, }: React.PropsWithChildren<", + "({ docLinks, assetBasePath, }: React.PropsWithChildren<", { "pluginId": "@kbn/search-api-panels", "scope": "common", @@ -194,7 +334,7 @@ "id": "def-common.IntegrationsPanel.$1", "type": "CompoundType", "tags": [], - "label": "{\n docLinks,\n http,\n pluginId,\n}", + "label": "{\n docLinks,\n assetBasePath,\n}", "description": [], "signature": [ "React.PropsWithChildren<", @@ -224,7 +364,7 @@ "label": "LanguageClientPanel", "description": [], "signature": [ - "({ language, setSelectedLanguage, isSelectedLanguage, http, pluginId, src, }: React.PropsWithChildren) => JSX.Element" + "({ language, setSelectedLanguage, isSelectedLanguage, assetBasePath, src, }: React.PropsWithChildren) => JSX.Element" ], "path": "packages/kbn-search-api-panels/components/language_client_panel.tsx", "deprecated": false, @@ -235,7 +375,7 @@ "id": "def-common.LanguageClientPanel.$1", "type": "CompoundType", "tags": [], - "label": "{\n language,\n setSelectedLanguage,\n isSelectedLanguage,\n http,\n pluginId,\n src,\n}", + "label": "{\n language,\n setSelectedLanguage,\n isSelectedLanguage,\n assetBasePath,\n src,\n}", "description": [], "signature": [ "React.PropsWithChildren" @@ -456,30 +596,10 @@ }, { "parentPluginId": "@kbn/search-api-panels", - "id": "def-common.IntegrationsPanelProps.http", - "type": "Object", - "tags": [], - "label": "http", - "description": [], - "signature": [ - { - "pluginId": "@kbn/core-http-browser", - "scope": "common", - "docId": "kibKbnCoreHttpBrowserPluginApi", - "section": "def-common.HttpSetup", - "text": "HttpSetup" - } - ], - "path": "packages/kbn-search-api-panels/components/integrations_panel.tsx", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "@kbn/search-api-panels", - "id": "def-common.IntegrationsPanelProps.pluginId", + "id": "def-common.IntegrationsPanelProps.assetBasePath", "type": "string", "tags": [], - "label": "pluginId", + "label": "assetBasePath", "description": [], "path": "packages/kbn-search-api-panels/components/integrations_panel.tsx", "deprecated": false, @@ -574,6 +694,20 @@ "deprecated": false, "trackAdoption": false }, + { + "parentPluginId": "@kbn/search-api-panels", + "id": "def-common.LanguageDefinition.github", + "type": "Object", + "tags": [], + "label": "github", + "description": [], + "signature": [ + "{ link: string; label: string; } | undefined" + ], + "path": "packages/kbn-search-api-panels/types.ts", + "deprecated": false, + "trackAdoption": false + }, { "parentPluginId": "@kbn/search-api-panels", "id": "def-common.LanguageDefinition.iconType", diff --git a/api_docs/kbn_search_api_panels.mdx b/api_docs/kbn_search_api_panels.mdx index 49db14f806dbd..e6000785ce807 100644 --- a/api_docs/kbn_search_api_panels.mdx +++ b/api_docs/kbn_search_api_panels.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-search-api-panels title: "@kbn/search-api-panels" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/search-api-panels plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/search-api-panels'] --- import kbnSearchApiPanelsObj from './kbn_search_api_panels.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/enterprise-search-frontend](https://github.com/orgs/elastic/te | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 58 | 1 | 58 | 0 | +| 64 | 1 | 64 | 0 | ## Common diff --git a/api_docs/kbn_search_response_warnings.mdx b/api_docs/kbn_search_response_warnings.mdx index 353f5f947f7bc..fd9c7e2458db0 100644 --- a/api_docs/kbn_search_response_warnings.mdx +++ b/api_docs/kbn_search_response_warnings.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-search-response-warnings title: "@kbn/search-response-warnings" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/search-response-warnings plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/search-response-warnings'] --- import kbnSearchResponseWarningsObj from './kbn_search_response_warnings.devdocs.json'; diff --git a/api_docs/kbn_security_solution_navigation.mdx b/api_docs/kbn_security_solution_navigation.mdx index b6f6fc12979c3..9549659ff3954 100644 --- a/api_docs/kbn_security_solution_navigation.mdx +++ b/api_docs/kbn_security_solution_navigation.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-security-solution-navigation title: "@kbn/security-solution-navigation" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/security-solution-navigation plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/security-solution-navigation'] --- import kbnSecuritySolutionNavigationObj from './kbn_security_solution_navigation.devdocs.json'; diff --git a/api_docs/kbn_security_solution_side_nav.mdx b/api_docs/kbn_security_solution_side_nav.mdx index bc10dd050a379..a491bb7f6e2a5 100644 --- a/api_docs/kbn_security_solution_side_nav.mdx +++ b/api_docs/kbn_security_solution_side_nav.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-security-solution-side-nav title: "@kbn/security-solution-side-nav" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/security-solution-side-nav plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/security-solution-side-nav'] --- import kbnSecuritySolutionSideNavObj from './kbn_security_solution_side_nav.devdocs.json'; diff --git a/api_docs/kbn_security_solution_storybook_config.mdx b/api_docs/kbn_security_solution_storybook_config.mdx index 37dd3c56051a2..c3bb51b273089 100644 --- a/api_docs/kbn_security_solution_storybook_config.mdx +++ b/api_docs/kbn_security_solution_storybook_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-security-solution-storybook-config title: "@kbn/security-solution-storybook-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/security-solution-storybook-config plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/security-solution-storybook-config'] --- import kbnSecuritySolutionStorybookConfigObj from './kbn_security_solution_storybook_config.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_autocomplete.devdocs.json b/api_docs/kbn_securitysolution_autocomplete.devdocs.json index fd3a4ca6431f9..436117f912a54 100644 --- a/api_docs/kbn_securitysolution_autocomplete.devdocs.json +++ b/api_docs/kbn_securitysolution_autocomplete.devdocs.json @@ -842,7 +842,7 @@ "label": "smallLists", "description": [], "signature": [ - "{ _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]" + "{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]" ], "path": "packages/kbn-securitysolution-autocomplete/src/field_value_lists/index.tsx", "deprecated": false, @@ -856,7 +856,7 @@ "label": "largeLists", "description": [], "signature": [ - "{ _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]" + "{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]" ], "path": "packages/kbn-securitysolution-autocomplete/src/field_value_lists/index.tsx", "deprecated": false, diff --git a/api_docs/kbn_securitysolution_autocomplete.mdx b/api_docs/kbn_securitysolution_autocomplete.mdx index f0b7dfdde66a1..3f64c87846b1f 100644 --- a/api_docs/kbn_securitysolution_autocomplete.mdx +++ b/api_docs/kbn_securitysolution_autocomplete.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-autocomplete title: "@kbn/securitysolution-autocomplete" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-autocomplete plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-autocomplete'] --- import kbnSecuritysolutionAutocompleteObj from './kbn_securitysolution_autocomplete.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_data_table.mdx b/api_docs/kbn_securitysolution_data_table.mdx index 4cde6815cdc02..1f89e8514e09d 100644 --- a/api_docs/kbn_securitysolution_data_table.mdx +++ b/api_docs/kbn_securitysolution_data_table.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-data-table title: "@kbn/securitysolution-data-table" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-data-table plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-data-table'] --- import kbnSecuritysolutionDataTableObj from './kbn_securitysolution_data_table.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_ecs.mdx b/api_docs/kbn_securitysolution_ecs.mdx index 10af0e60fdffa..054118cd63d8c 100644 --- a/api_docs/kbn_securitysolution_ecs.mdx +++ b/api_docs/kbn_securitysolution_ecs.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-ecs title: "@kbn/securitysolution-ecs" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-ecs plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-ecs'] --- import kbnSecuritysolutionEcsObj from './kbn_securitysolution_ecs.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_es_utils.devdocs.json b/api_docs/kbn_securitysolution_es_utils.devdocs.json index 4119a04abaa4d..ffa1a41949e97 100644 --- a/api_docs/kbn_securitysolution_es_utils.devdocs.json +++ b/api_docs/kbn_securitysolution_es_utils.devdocs.json @@ -93,6 +93,58 @@ "returnComment": [], "initialIsOpen": false }, + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.createDataStream", + "type": "Function", + "tags": [], + "label": "createDataStream", + "description": [ + "\ncreates data stream" + ], + "signature": [ + "(esClient: ", + "ElasticsearchClient", + ", name: string) => Promise" + ], + "path": "packages/kbn-securitysolution-es-utils/src/create_data_stream/index.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.createDataStream.$1", + "type": "Object", + "tags": [], + "label": "esClient", + "description": [], + "signature": [ + "ElasticsearchClient" + ], + "path": "packages/kbn-securitysolution-es-utils/src/create_data_stream/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.createDataStream.$2", + "type": "string", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string" + ], + "path": "packages/kbn-securitysolution-es-utils/src/create_data_stream/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, { "parentPluginId": "@kbn/securitysolution-es-utils", "id": "def-common.decodeVersion", @@ -206,6 +258,58 @@ "returnComment": [], "initialIsOpen": false }, + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.deleteDataStream", + "type": "Function", + "tags": [], + "label": "deleteDataStream", + "description": [ + "\ndeletes data stream" + ], + "signature": [ + "(esClient: ", + "ElasticsearchClient", + ", name: string) => Promise" + ], + "path": "packages/kbn-securitysolution-es-utils/src/delete_data_stream/index.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.deleteDataStream.$1", + "type": "Object", + "tags": [], + "label": "esClient", + "description": [], + "signature": [ + "ElasticsearchClient" + ], + "path": "packages/kbn-securitysolution-es-utils/src/delete_data_stream/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.deleteDataStream.$2", + "type": "string", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string" + ], + "path": "packages/kbn-securitysolution-es-utils/src/delete_data_stream/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, { "parentPluginId": "@kbn/securitysolution-es-utils", "id": "def-common.deleteIndexTemplate", @@ -447,6 +551,58 @@ "returnComment": [], "initialIsOpen": false }, + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.getDataStreamExists", + "type": "Function", + "tags": [], + "label": "getDataStreamExists", + "description": [ + "\nchecks if data stream exists" + ], + "signature": [ + "(esClient: ", + "ElasticsearchClient", + ", name: string) => Promise" + ], + "path": "packages/kbn-securitysolution-es-utils/src/get_data_stream_exists/index.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.getDataStreamExists.$1", + "type": "Object", + "tags": [], + "label": "esClient", + "description": [], + "signature": [ + "ElasticsearchClient" + ], + "path": "packages/kbn-securitysolution-es-utils/src/get_data_stream_exists/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.getDataStreamExists.$2", + "type": "string", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string" + ], + "path": "packages/kbn-securitysolution-es-utils/src/get_data_stream_exists/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, { "parentPluginId": "@kbn/securitysolution-es-utils", "id": "def-common.getIndexAliases", @@ -3195,6 +3351,129 @@ "returnComment": [], "initialIsOpen": false }, + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.migrateToDataStream", + "type": "Function", + "tags": [], + "label": "migrateToDataStream", + "description": [ + "\nmigrate to data stream" + ], + "signature": [ + "(esClient: ", + "ElasticsearchClient", + ", name: string) => Promise" + ], + "path": "packages/kbn-securitysolution-es-utils/src/migrate_to_data_stream/index.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.migrateToDataStream.$1", + "type": "Object", + "tags": [], + "label": "esClient", + "description": [], + "signature": [ + "ElasticsearchClient" + ], + "path": "packages/kbn-securitysolution-es-utils/src/migrate_to_data_stream/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.migrateToDataStream.$2", + "type": "string", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string" + ], + "path": "packages/kbn-securitysolution-es-utils/src/migrate_to_data_stream/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.putMappings", + "type": "Function", + "tags": [], + "label": "putMappings", + "description": [ + "\nupdate mappings of index" + ], + "signature": [ + "(esClient: ", + "ElasticsearchClient", + ", index: string, mappings: Record) => Promise" + ], + "path": "packages/kbn-securitysolution-es-utils/src/put_mappings/index.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.putMappings.$1", + "type": "Object", + "tags": [], + "label": "esClient", + "description": [], + "signature": [ + "ElasticsearchClient" + ], + "path": "packages/kbn-securitysolution-es-utils/src/put_mappings/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.putMappings.$2", + "type": "string", + "tags": [], + "label": "index", + "description": [], + "signature": [ + "string" + ], + "path": "packages/kbn-securitysolution-es-utils/src/put_mappings/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.putMappings.$3", + "type": "Object", + "tags": [], + "label": "mappings", + "description": [], + "signature": [ + "Record" + ], + "path": "packages/kbn-securitysolution-es-utils/src/put_mappings/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, { "parentPluginId": "@kbn/securitysolution-es-utils", "id": "def-common.readIndex", @@ -3295,6 +3574,56 @@ "returnComment": [], "initialIsOpen": false }, + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.removePolicyFromIndex", + "type": "Function", + "tags": [], + "label": "removePolicyFromIndex", + "description": [], + "signature": [ + "(esClient: ", + "ElasticsearchClient", + ", index: string) => Promise" + ], + "path": "packages/kbn-securitysolution-es-utils/src/remove_policy_from_index/index.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.removePolicyFromIndex.$1", + "type": "Object", + "tags": [], + "label": "esClient", + "description": [], + "signature": [ + "ElasticsearchClient" + ], + "path": "packages/kbn-securitysolution-es-utils/src/remove_policy_from_index/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.removePolicyFromIndex.$2", + "type": "string", + "tags": [], + "label": "index", + "description": [], + "signature": [ + "string" + ], + "path": "packages/kbn-securitysolution-es-utils/src/remove_policy_from_index/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, { "parentPluginId": "@kbn/securitysolution-es-utils", "id": "def-common.setIndexTemplate", @@ -3490,6 +3819,39 @@ "returnComment": [], "initialIsOpen": false }, + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.stringifyZodError", + "type": "Function", + "tags": [], + "label": "stringifyZodError", + "description": [], + "signature": [ + "(err: Zod.ZodError) => string" + ], + "path": "packages/kbn-securitysolution-es-utils/src/transform_error/index.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-es-utils", + "id": "def-common.stringifyZodError.$1", + "type": "Object", + "tags": [], + "label": "err", + "description": [], + "signature": [ + "Zod.ZodError" + ], + "path": "packages/kbn-securitysolution-es-utils/src/transform_error/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, { "parentPluginId": "@kbn/securitysolution-es-utils", "id": "def-common.transformError", diff --git a/api_docs/kbn_securitysolution_es_utils.mdx b/api_docs/kbn_securitysolution_es_utils.mdx index bb3bf5a90fe5b..56c35e1829266 100644 --- a/api_docs/kbn_securitysolution_es_utils.mdx +++ b/api_docs/kbn_securitysolution_es_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-es-utils title: "@kbn/securitysolution-es-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-es-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-es-utils'] --- import kbnSecuritysolutionEsUtilsObj from './kbn_securitysolution_es_utils.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/security-detection-engine](https://github.com/orgs/elastic/tea | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 68 | 0 | 62 | 1 | +| 89 | 0 | 78 | 1 | ## Common diff --git a/api_docs/kbn_securitysolution_exception_list_components.devdocs.json b/api_docs/kbn_securitysolution_exception_list_components.devdocs.json index 54a88998dab7d..e590d21733685 100644 --- a/api_docs/kbn_securitysolution_exception_list_components.devdocs.json +++ b/api_docs/kbn_securitysolution_exception_list_components.devdocs.json @@ -834,7 +834,7 @@ "label": "formattedDateComponent", "description": [], "signature": [ - "\"symbol\" | \"object\" | \"big\" | \"link\" | \"small\" | \"sub\" | \"sup\" | \"source\" | \"desc\" | \"filter\" | \"text\" | \"map\" | \"head\" | React.ComponentType | \"slot\" | \"style\" | \"title\" | \"meta\" | \"pattern\" | \"summary\" | \"template\" | \"main\" | \"path\" | \"form\" | \"span\" | \"body\" | \"q\" | \"label\" | \"data\" | \"progress\" | \"legend\" | \"article\" | \"image\" | \"menu\" | \"stop\" | \"base\" | \"s\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"p\" | \"canvas\" | \"svg\" | \"select\" | \"output\" | \"script\" | \"time\" | \"mask\" | \"input\" | \"section\" | \"circle\" | \"code\" | \"line\" | \"area\" | \"animate\" | \"view\" | \"var\" | \"html\" | \"a\" | \"img\" | \"audio\" | \"br\" | \"clipPath\" | \"textarea\" | \"abbr\" | \"address\" | \"aside\" | \"b\" | \"bdi\" | \"bdo\" | \"blockquote\" | \"button\" | \"caption\" | \"cite\" | \"col\" | \"colgroup\" | \"datalist\" | \"dd\" | \"del\" | \"details\" | \"dfn\" | \"dialog\" | \"div\" | \"dl\" | \"dt\" | \"em\" | \"embed\" | \"fieldset\" | \"figcaption\" | \"figure\" | \"footer\" | \"header\" | \"hgroup\" | \"hr\" | \"i\" | \"iframe\" | \"ins\" | \"kbd\" | \"keygen\" | \"li\" | \"mark\" | \"menuitem\" | \"meter\" | \"nav\" | \"noindex\" | \"noscript\" | \"ol\" | \"optgroup\" | \"option\" | \"param\" | \"picture\" | \"pre\" | \"rp\" | \"rt\" | \"ruby\" | \"samp\" | \"strong\" | \"table\" | \"tbody\" | \"td\" | \"tfoot\" | \"th\" | \"thead\" | \"tr\" | \"track\" | \"u\" | \"ul\" | \"video\" | \"wbr\" | \"webview\" | \"animateMotion\" | \"animateTransform\" | \"defs\" | \"ellipse\" | \"feBlend\" | \"feColorMatrix\" | \"feComponentTransfer\" | \"feComposite\" | \"feConvolveMatrix\" | \"feDiffuseLighting\" | \"feDisplacementMap\" | \"feDistantLight\" | \"feDropShadow\" | \"feFlood\" | \"feFuncA\" | \"feFuncB\" | \"feFuncG\" | \"feFuncR\" | \"feGaussianBlur\" | \"feImage\" | \"feMerge\" | \"feMergeNode\" | \"feMorphology\" | \"feOffset\" | \"fePointLight\" | \"feSpecularLighting\" | \"feSpotLight\" | \"feTile\" | \"feTurbulence\" | \"foreignObject\" | \"g\" | \"linearGradient\" | \"marker\" | \"metadata\" | \"mpath\" | \"polygon\" | \"polyline\" | \"radialGradient\" | \"rect\" | \"switch\" | \"textPath\" | \"tspan\" | \"use\"" + "\"symbol\" | \"object\" | \"big\" | \"link\" | \"small\" | \"sub\" | \"sup\" | \"source\" | \"desc\" | \"filter\" | \"text\" | \"map\" | \"head\" | React.ComponentType | \"slot\" | \"style\" | \"title\" | \"meta\" | \"pattern\" | \"summary\" | \"template\" | \"span\" | \"main\" | \"path\" | \"form\" | \"body\" | \"q\" | \"label\" | \"data\" | \"progress\" | \"legend\" | \"article\" | \"image\" | \"menu\" | \"stop\" | \"base\" | \"s\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"p\" | \"canvas\" | \"svg\" | \"select\" | \"output\" | \"script\" | \"time\" | \"mask\" | \"input\" | \"section\" | \"circle\" | \"code\" | \"line\" | \"area\" | \"animate\" | \"view\" | \"var\" | \"html\" | \"a\" | \"img\" | \"audio\" | \"br\" | \"clipPath\" | \"textarea\" | \"abbr\" | \"address\" | \"aside\" | \"b\" | \"bdi\" | \"bdo\" | \"blockquote\" | \"button\" | \"caption\" | \"cite\" | \"col\" | \"colgroup\" | \"datalist\" | \"dd\" | \"del\" | \"details\" | \"dfn\" | \"dialog\" | \"div\" | \"dl\" | \"dt\" | \"em\" | \"embed\" | \"fieldset\" | \"figcaption\" | \"figure\" | \"footer\" | \"header\" | \"hgroup\" | \"hr\" | \"i\" | \"iframe\" | \"ins\" | \"kbd\" | \"keygen\" | \"li\" | \"mark\" | \"menuitem\" | \"meter\" | \"nav\" | \"noindex\" | \"noscript\" | \"ol\" | \"optgroup\" | \"option\" | \"param\" | \"picture\" | \"pre\" | \"rp\" | \"rt\" | \"ruby\" | \"samp\" | \"strong\" | \"table\" | \"tbody\" | \"td\" | \"tfoot\" | \"th\" | \"thead\" | \"tr\" | \"track\" | \"u\" | \"ul\" | \"video\" | \"wbr\" | \"webview\" | \"animateMotion\" | \"animateTransform\" | \"defs\" | \"ellipse\" | \"feBlend\" | \"feColorMatrix\" | \"feComponentTransfer\" | \"feComposite\" | \"feConvolveMatrix\" | \"feDiffuseLighting\" | \"feDisplacementMap\" | \"feDistantLight\" | \"feDropShadow\" | \"feFlood\" | \"feFuncA\" | \"feFuncB\" | \"feFuncG\" | \"feFuncR\" | \"feGaussianBlur\" | \"feImage\" | \"feMerge\" | \"feMergeNode\" | \"feMorphology\" | \"feOffset\" | \"fePointLight\" | \"feSpecularLighting\" | \"feSpotLight\" | \"feTile\" | \"feTurbulence\" | \"foreignObject\" | \"g\" | \"linearGradient\" | \"marker\" | \"metadata\" | \"mpath\" | \"polygon\" | \"polyline\" | \"radialGradient\" | \"rect\" | \"switch\" | \"textPath\" | \"tspan\" | \"use\"" ], "path": "packages/kbn-securitysolution-exception-list-components/src/exception_item_card/meta/index.tsx", "deprecated": false, @@ -848,7 +848,7 @@ "label": "securityLinkAnchorComponent", "description": [], "signature": [ - "\"symbol\" | \"object\" | \"big\" | \"link\" | \"small\" | \"sub\" | \"sup\" | \"source\" | \"desc\" | \"filter\" | \"text\" | \"map\" | \"head\" | React.ComponentType | \"slot\" | \"style\" | \"title\" | \"meta\" | \"pattern\" | \"summary\" | \"template\" | \"main\" | \"path\" | \"form\" | \"span\" | \"body\" | \"q\" | \"label\" | \"data\" | \"progress\" | \"legend\" | \"article\" | \"image\" | \"menu\" | \"stop\" | \"base\" | \"s\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"p\" | \"canvas\" | \"svg\" | \"select\" | \"output\" | \"script\" | \"time\" | \"mask\" | \"input\" | \"section\" | \"circle\" | \"code\" | \"line\" | \"area\" | \"animate\" | \"view\" | \"var\" | \"html\" | \"a\" | \"img\" | \"audio\" | \"br\" | \"clipPath\" | \"textarea\" | \"abbr\" | \"address\" | \"aside\" | \"b\" | \"bdi\" | \"bdo\" | \"blockquote\" | \"button\" | \"caption\" | \"cite\" | \"col\" | \"colgroup\" | \"datalist\" | \"dd\" | \"del\" | \"details\" | \"dfn\" | \"dialog\" | \"div\" | \"dl\" | \"dt\" | \"em\" | \"embed\" | \"fieldset\" | \"figcaption\" | \"figure\" | \"footer\" | \"header\" | \"hgroup\" | \"hr\" | \"i\" | \"iframe\" | \"ins\" | \"kbd\" | \"keygen\" | \"li\" | \"mark\" | \"menuitem\" | \"meter\" | \"nav\" | \"noindex\" | \"noscript\" | \"ol\" | \"optgroup\" | \"option\" | \"param\" | \"picture\" | \"pre\" | \"rp\" | \"rt\" | \"ruby\" | \"samp\" | \"strong\" | \"table\" | \"tbody\" | \"td\" | \"tfoot\" | \"th\" | \"thead\" | \"tr\" | \"track\" | \"u\" | \"ul\" | \"video\" | \"wbr\" | \"webview\" | \"animateMotion\" | \"animateTransform\" | \"defs\" | \"ellipse\" | \"feBlend\" | \"feColorMatrix\" | \"feComponentTransfer\" | \"feComposite\" | \"feConvolveMatrix\" | \"feDiffuseLighting\" | \"feDisplacementMap\" | \"feDistantLight\" | \"feDropShadow\" | \"feFlood\" | \"feFuncA\" | \"feFuncB\" | \"feFuncG\" | \"feFuncR\" | \"feGaussianBlur\" | \"feImage\" | \"feMerge\" | \"feMergeNode\" | \"feMorphology\" | \"feOffset\" | \"fePointLight\" | \"feSpecularLighting\" | \"feSpotLight\" | \"feTile\" | \"feTurbulence\" | \"foreignObject\" | \"g\" | \"linearGradient\" | \"marker\" | \"metadata\" | \"mpath\" | \"polygon\" | \"polyline\" | \"radialGradient\" | \"rect\" | \"switch\" | \"textPath\" | \"tspan\" | \"use\"" + "\"symbol\" | \"object\" | \"big\" | \"link\" | \"small\" | \"sub\" | \"sup\" | \"source\" | \"desc\" | \"filter\" | \"text\" | \"map\" | \"head\" | React.ComponentType | \"slot\" | \"style\" | \"title\" | \"meta\" | \"pattern\" | \"summary\" | \"template\" | \"span\" | \"main\" | \"path\" | \"form\" | \"body\" | \"q\" | \"label\" | \"data\" | \"progress\" | \"legend\" | \"article\" | \"image\" | \"menu\" | \"stop\" | \"base\" | \"s\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"p\" | \"canvas\" | \"svg\" | \"select\" | \"output\" | \"script\" | \"time\" | \"mask\" | \"input\" | \"section\" | \"circle\" | \"code\" | \"line\" | \"area\" | \"animate\" | \"view\" | \"var\" | \"html\" | \"a\" | \"img\" | \"audio\" | \"br\" | \"clipPath\" | \"textarea\" | \"abbr\" | \"address\" | \"aside\" | \"b\" | \"bdi\" | \"bdo\" | \"blockquote\" | \"button\" | \"caption\" | \"cite\" | \"col\" | \"colgroup\" | \"datalist\" | \"dd\" | \"del\" | \"details\" | \"dfn\" | \"dialog\" | \"div\" | \"dl\" | \"dt\" | \"em\" | \"embed\" | \"fieldset\" | \"figcaption\" | \"figure\" | \"footer\" | \"header\" | \"hgroup\" | \"hr\" | \"i\" | \"iframe\" | \"ins\" | \"kbd\" | \"keygen\" | \"li\" | \"mark\" | \"menuitem\" | \"meter\" | \"nav\" | \"noindex\" | \"noscript\" | \"ol\" | \"optgroup\" | \"option\" | \"param\" | \"picture\" | \"pre\" | \"rp\" | \"rt\" | \"ruby\" | \"samp\" | \"strong\" | \"table\" | \"tbody\" | \"td\" | \"tfoot\" | \"th\" | \"thead\" | \"tr\" | \"track\" | \"u\" | \"ul\" | \"video\" | \"wbr\" | \"webview\" | \"animateMotion\" | \"animateTransform\" | \"defs\" | \"ellipse\" | \"feBlend\" | \"feColorMatrix\" | \"feComponentTransfer\" | \"feComposite\" | \"feConvolveMatrix\" | \"feDiffuseLighting\" | \"feDisplacementMap\" | \"feDistantLight\" | \"feDropShadow\" | \"feFlood\" | \"feFuncA\" | \"feFuncB\" | \"feFuncG\" | \"feFuncR\" | \"feGaussianBlur\" | \"feImage\" | \"feMerge\" | \"feMergeNode\" | \"feMorphology\" | \"feOffset\" | \"fePointLight\" | \"feSpecularLighting\" | \"feSpotLight\" | \"feTile\" | \"feTurbulence\" | \"foreignObject\" | \"g\" | \"linearGradient\" | \"marker\" | \"metadata\" | \"mpath\" | \"polygon\" | \"polyline\" | \"radialGradient\" | \"rect\" | \"switch\" | \"textPath\" | \"tspan\" | \"use\"" ], "path": "packages/kbn-securitysolution-exception-list-components/src/exception_item_card/meta/index.tsx", "deprecated": false, @@ -987,7 +987,7 @@ "label": "securityLinkAnchorComponent", "description": [], "signature": [ - "\"symbol\" | \"object\" | \"big\" | \"link\" | \"small\" | \"sub\" | \"sup\" | \"source\" | \"desc\" | \"filter\" | \"text\" | \"map\" | \"head\" | React.ComponentType | \"slot\" | \"style\" | \"title\" | \"meta\" | \"pattern\" | \"summary\" | \"template\" | \"main\" | \"path\" | \"form\" | \"span\" | \"body\" | \"q\" | \"label\" | \"data\" | \"progress\" | \"legend\" | \"article\" | \"image\" | \"menu\" | \"stop\" | \"base\" | \"s\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"p\" | \"canvas\" | \"svg\" | \"select\" | \"output\" | \"script\" | \"time\" | \"mask\" | \"input\" | \"section\" | \"circle\" | \"code\" | \"line\" | \"area\" | \"animate\" | \"view\" | \"var\" | \"html\" | \"a\" | \"img\" | \"audio\" | \"br\" | \"clipPath\" | \"textarea\" | \"abbr\" | \"address\" | \"aside\" | \"b\" | \"bdi\" | \"bdo\" | \"blockquote\" | \"button\" | \"caption\" | \"cite\" | \"col\" | \"colgroup\" | \"datalist\" | \"dd\" | \"del\" | \"details\" | \"dfn\" | \"dialog\" | \"div\" | \"dl\" | \"dt\" | \"em\" | \"embed\" | \"fieldset\" | \"figcaption\" | \"figure\" | \"footer\" | \"header\" | \"hgroup\" | \"hr\" | \"i\" | \"iframe\" | \"ins\" | \"kbd\" | \"keygen\" | \"li\" | \"mark\" | \"menuitem\" | \"meter\" | \"nav\" | \"noindex\" | \"noscript\" | \"ol\" | \"optgroup\" | \"option\" | \"param\" | \"picture\" | \"pre\" | \"rp\" | \"rt\" | \"ruby\" | \"samp\" | \"strong\" | \"table\" | \"tbody\" | \"td\" | \"tfoot\" | \"th\" | \"thead\" | \"tr\" | \"track\" | \"u\" | \"ul\" | \"video\" | \"wbr\" | \"webview\" | \"animateMotion\" | \"animateTransform\" | \"defs\" | \"ellipse\" | \"feBlend\" | \"feColorMatrix\" | \"feComponentTransfer\" | \"feComposite\" | \"feConvolveMatrix\" | \"feDiffuseLighting\" | \"feDisplacementMap\" | \"feDistantLight\" | \"feDropShadow\" | \"feFlood\" | \"feFuncA\" | \"feFuncB\" | \"feFuncG\" | \"feFuncR\" | \"feGaussianBlur\" | \"feImage\" | \"feMerge\" | \"feMergeNode\" | \"feMorphology\" | \"feOffset\" | \"fePointLight\" | \"feSpecularLighting\" | \"feSpotLight\" | \"feTile\" | \"feTurbulence\" | \"foreignObject\" | \"g\" | \"linearGradient\" | \"marker\" | \"metadata\" | \"mpath\" | \"polygon\" | \"polyline\" | \"radialGradient\" | \"rect\" | \"switch\" | \"textPath\" | \"tspan\" | \"use\"" + "\"symbol\" | \"object\" | \"big\" | \"link\" | \"small\" | \"sub\" | \"sup\" | \"source\" | \"desc\" | \"filter\" | \"text\" | \"map\" | \"head\" | React.ComponentType | \"slot\" | \"style\" | \"title\" | \"meta\" | \"pattern\" | \"summary\" | \"template\" | \"span\" | \"main\" | \"path\" | \"form\" | \"body\" | \"q\" | \"label\" | \"data\" | \"progress\" | \"legend\" | \"article\" | \"image\" | \"menu\" | \"stop\" | \"base\" | \"s\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"p\" | \"canvas\" | \"svg\" | \"select\" | \"output\" | \"script\" | \"time\" | \"mask\" | \"input\" | \"section\" | \"circle\" | \"code\" | \"line\" | \"area\" | \"animate\" | \"view\" | \"var\" | \"html\" | \"a\" | \"img\" | \"audio\" | \"br\" | \"clipPath\" | \"textarea\" | \"abbr\" | \"address\" | \"aside\" | \"b\" | \"bdi\" | \"bdo\" | \"blockquote\" | \"button\" | \"caption\" | \"cite\" | \"col\" | \"colgroup\" | \"datalist\" | \"dd\" | \"del\" | \"details\" | \"dfn\" | \"dialog\" | \"div\" | \"dl\" | \"dt\" | \"em\" | \"embed\" | \"fieldset\" | \"figcaption\" | \"figure\" | \"footer\" | \"header\" | \"hgroup\" | \"hr\" | \"i\" | \"iframe\" | \"ins\" | \"kbd\" | \"keygen\" | \"li\" | \"mark\" | \"menuitem\" | \"meter\" | \"nav\" | \"noindex\" | \"noscript\" | \"ol\" | \"optgroup\" | \"option\" | \"param\" | \"picture\" | \"pre\" | \"rp\" | \"rt\" | \"ruby\" | \"samp\" | \"strong\" | \"table\" | \"tbody\" | \"td\" | \"tfoot\" | \"th\" | \"thead\" | \"tr\" | \"track\" | \"u\" | \"ul\" | \"video\" | \"wbr\" | \"webview\" | \"animateMotion\" | \"animateTransform\" | \"defs\" | \"ellipse\" | \"feBlend\" | \"feColorMatrix\" | \"feComponentTransfer\" | \"feComposite\" | \"feConvolveMatrix\" | \"feDiffuseLighting\" | \"feDisplacementMap\" | \"feDistantLight\" | \"feDropShadow\" | \"feFlood\" | \"feFuncA\" | \"feFuncB\" | \"feFuncG\" | \"feFuncR\" | \"feGaussianBlur\" | \"feImage\" | \"feMerge\" | \"feMergeNode\" | \"feMorphology\" | \"feOffset\" | \"fePointLight\" | \"feSpecularLighting\" | \"feSpotLight\" | \"feTile\" | \"feTurbulence\" | \"foreignObject\" | \"g\" | \"linearGradient\" | \"marker\" | \"metadata\" | \"mpath\" | \"polygon\" | \"polyline\" | \"radialGradient\" | \"rect\" | \"switch\" | \"textPath\" | \"tspan\" | \"use\"" ], "path": "packages/kbn-securitysolution-exception-list-components/src/exception_item_card/exception_item_card.tsx", "deprecated": false, @@ -1001,7 +1001,7 @@ "label": "formattedDateComponent", "description": [], "signature": [ - "\"symbol\" | \"object\" | \"big\" | \"link\" | \"small\" | \"sub\" | \"sup\" | \"source\" | \"desc\" | \"filter\" | \"text\" | \"map\" | \"head\" | React.ComponentType | \"slot\" | \"style\" | \"title\" | \"meta\" | \"pattern\" | \"summary\" | \"template\" | \"main\" | \"path\" | \"form\" | \"span\" | \"body\" | \"q\" | \"label\" | \"data\" | \"progress\" | \"legend\" | \"article\" | \"image\" | \"menu\" | \"stop\" | \"base\" | \"s\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"p\" | \"canvas\" | \"svg\" | \"select\" | \"output\" | \"script\" | \"time\" | \"mask\" | \"input\" | \"section\" | \"circle\" | \"code\" | \"line\" | \"area\" | \"animate\" | \"view\" | \"var\" | \"html\" | \"a\" | \"img\" | \"audio\" | \"br\" | \"clipPath\" | \"textarea\" | \"abbr\" | \"address\" | \"aside\" | \"b\" | \"bdi\" | \"bdo\" | \"blockquote\" | \"button\" | \"caption\" | \"cite\" | \"col\" | \"colgroup\" | \"datalist\" | \"dd\" | \"del\" | \"details\" | \"dfn\" | \"dialog\" | \"div\" | \"dl\" | \"dt\" | \"em\" | \"embed\" | \"fieldset\" | \"figcaption\" | \"figure\" | \"footer\" | \"header\" | \"hgroup\" | \"hr\" | \"i\" | \"iframe\" | \"ins\" | \"kbd\" | \"keygen\" | \"li\" | \"mark\" | \"menuitem\" | \"meter\" | \"nav\" | \"noindex\" | \"noscript\" | \"ol\" | \"optgroup\" | \"option\" | \"param\" | \"picture\" | \"pre\" | \"rp\" | \"rt\" | \"ruby\" | \"samp\" | \"strong\" | \"table\" | \"tbody\" | \"td\" | \"tfoot\" | \"th\" | \"thead\" | \"tr\" | \"track\" | \"u\" | \"ul\" | \"video\" | \"wbr\" | \"webview\" | \"animateMotion\" | \"animateTransform\" | \"defs\" | \"ellipse\" | \"feBlend\" | \"feColorMatrix\" | \"feComponentTransfer\" | \"feComposite\" | \"feConvolveMatrix\" | \"feDiffuseLighting\" | \"feDisplacementMap\" | \"feDistantLight\" | \"feDropShadow\" | \"feFlood\" | \"feFuncA\" | \"feFuncB\" | \"feFuncG\" | \"feFuncR\" | \"feGaussianBlur\" | \"feImage\" | \"feMerge\" | \"feMergeNode\" | \"feMorphology\" | \"feOffset\" | \"fePointLight\" | \"feSpecularLighting\" | \"feSpotLight\" | \"feTile\" | \"feTurbulence\" | \"foreignObject\" | \"g\" | \"linearGradient\" | \"marker\" | \"metadata\" | \"mpath\" | \"polygon\" | \"polyline\" | \"radialGradient\" | \"rect\" | \"switch\" | \"textPath\" | \"tspan\" | \"use\"" + "\"symbol\" | \"object\" | \"big\" | \"link\" | \"small\" | \"sub\" | \"sup\" | \"source\" | \"desc\" | \"filter\" | \"text\" | \"map\" | \"head\" | React.ComponentType | \"slot\" | \"style\" | \"title\" | \"meta\" | \"pattern\" | \"summary\" | \"template\" | \"span\" | \"main\" | \"path\" | \"form\" | \"body\" | \"q\" | \"label\" | \"data\" | \"progress\" | \"legend\" | \"article\" | \"image\" | \"menu\" | \"stop\" | \"base\" | \"s\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"p\" | \"canvas\" | \"svg\" | \"select\" | \"output\" | \"script\" | \"time\" | \"mask\" | \"input\" | \"section\" | \"circle\" | \"code\" | \"line\" | \"area\" | \"animate\" | \"view\" | \"var\" | \"html\" | \"a\" | \"img\" | \"audio\" | \"br\" | \"clipPath\" | \"textarea\" | \"abbr\" | \"address\" | \"aside\" | \"b\" | \"bdi\" | \"bdo\" | \"blockquote\" | \"button\" | \"caption\" | \"cite\" | \"col\" | \"colgroup\" | \"datalist\" | \"dd\" | \"del\" | \"details\" | \"dfn\" | \"dialog\" | \"div\" | \"dl\" | \"dt\" | \"em\" | \"embed\" | \"fieldset\" | \"figcaption\" | \"figure\" | \"footer\" | \"header\" | \"hgroup\" | \"hr\" | \"i\" | \"iframe\" | \"ins\" | \"kbd\" | \"keygen\" | \"li\" | \"mark\" | \"menuitem\" | \"meter\" | \"nav\" | \"noindex\" | \"noscript\" | \"ol\" | \"optgroup\" | \"option\" | \"param\" | \"picture\" | \"pre\" | \"rp\" | \"rt\" | \"ruby\" | \"samp\" | \"strong\" | \"table\" | \"tbody\" | \"td\" | \"tfoot\" | \"th\" | \"thead\" | \"tr\" | \"track\" | \"u\" | \"ul\" | \"video\" | \"wbr\" | \"webview\" | \"animateMotion\" | \"animateTransform\" | \"defs\" | \"ellipse\" | \"feBlend\" | \"feColorMatrix\" | \"feComponentTransfer\" | \"feComposite\" | \"feConvolveMatrix\" | \"feDiffuseLighting\" | \"feDisplacementMap\" | \"feDistantLight\" | \"feDropShadow\" | \"feFlood\" | \"feFuncA\" | \"feFuncB\" | \"feFuncG\" | \"feFuncR\" | \"feGaussianBlur\" | \"feImage\" | \"feMerge\" | \"feMergeNode\" | \"feMorphology\" | \"feOffset\" | \"fePointLight\" | \"feSpecularLighting\" | \"feSpotLight\" | \"feTile\" | \"feTurbulence\" | \"foreignObject\" | \"g\" | \"linearGradient\" | \"marker\" | \"metadata\" | \"mpath\" | \"polygon\" | \"polyline\" | \"radialGradient\" | \"rect\" | \"switch\" | \"textPath\" | \"tspan\" | \"use\"" ], "path": "packages/kbn-securitysolution-exception-list-components/src/exception_item_card/exception_item_card.tsx", "deprecated": false, diff --git a/api_docs/kbn_securitysolution_exception_list_components.mdx b/api_docs/kbn_securitysolution_exception_list_components.mdx index 6dd9dc4996c9f..20971469c73fa 100644 --- a/api_docs/kbn_securitysolution_exception_list_components.mdx +++ b/api_docs/kbn_securitysolution_exception_list_components.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-exception-list-components title: "@kbn/securitysolution-exception-list-components" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-exception-list-components plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-exception-list-components'] --- import kbnSecuritysolutionExceptionListComponentsObj from './kbn_securitysolution_exception_list_components.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_grouping.mdx b/api_docs/kbn_securitysolution_grouping.mdx index 801b08a382805..4ca9b1e792962 100644 --- a/api_docs/kbn_securitysolution_grouping.mdx +++ b/api_docs/kbn_securitysolution_grouping.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-grouping title: "@kbn/securitysolution-grouping" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-grouping plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-grouping'] --- import kbnSecuritysolutionGroupingObj from './kbn_securitysolution_grouping.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_hook_utils.mdx b/api_docs/kbn_securitysolution_hook_utils.mdx index f322b627d0596..7d7422fca1c58 100644 --- a/api_docs/kbn_securitysolution_hook_utils.mdx +++ b/api_docs/kbn_securitysolution_hook_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-hook-utils title: "@kbn/securitysolution-hook-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-hook-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-hook-utils'] --- import kbnSecuritysolutionHookUtilsObj from './kbn_securitysolution_hook_utils.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_io_ts_alerting_types.mdx b/api_docs/kbn_securitysolution_io_ts_alerting_types.mdx index 5a90e1e24eaf9..be611f3748d61 100644 --- a/api_docs/kbn_securitysolution_io_ts_alerting_types.mdx +++ b/api_docs/kbn_securitysolution_io_ts_alerting_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-io-ts-alerting-types title: "@kbn/securitysolution-io-ts-alerting-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-io-ts-alerting-types plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-io-ts-alerting-types'] --- import kbnSecuritysolutionIoTsAlertingTypesObj from './kbn_securitysolution_io_ts_alerting_types.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_io_ts_list_types.devdocs.json b/api_docs/kbn_securitysolution_io_ts_list_types.devdocs.json index 5dc5e1d380969..e407327295855 100644 --- a/api_docs/kbn_securitysolution_io_ts_list_types.devdocs.json +++ b/api_docs/kbn_securitysolution_io_ts_list_types.devdocs.json @@ -3905,7 +3905,7 @@ "label": "FoundAllListItemsSchema", "description": [], "signature": [ - "{ data: { _version: string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]; total: number; }" + "{ data: { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]; total: number; }" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/found_all_list_items_schema/index.ts", "deprecated": false, @@ -3950,7 +3950,7 @@ "label": "FoundListItemSchema", "description": [], "signature": [ - "{ cursor: string; data: { _version: string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]; page: number; per_page: number; total: number; }" + "{ cursor: string; data: { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]; page: number; per_page: number; total: number; }" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/found_list_item_schema/index.ts", "deprecated": false, @@ -3965,7 +3965,7 @@ "label": "FoundListsBySizeSchema", "description": [], "signature": [ - "{ largeLists: { _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; smallLists: { _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; }" + "{ largeLists: { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; smallLists: { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; }" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/found_lists_by_size_schema/index.ts", "deprecated": false, @@ -3980,7 +3980,7 @@ "label": "FoundListSchema", "description": [], "signature": [ - "{ cursor: string; data: { _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; page: number; per_page: number; total: number; }" + "{ cursor: string; data: { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; page: number; per_page: number; total: number; }" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/found_list_schema/index.ts", "deprecated": false, @@ -4355,7 +4355,7 @@ "label": "ListArraySchema", "description": [], "signature": [ - "{ _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]" + "{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/list_schema/index.ts", "deprecated": false, @@ -4400,7 +4400,7 @@ "label": "ListItemArraySchema", "description": [], "signature": [ - "{ _version: string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]" + "{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/list_item_schema/index.ts", "deprecated": false, @@ -4430,7 +4430,7 @@ "label": "ListItemSchema", "description": [], "signature": [ - "{ _version: string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }" + "{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/list_item_schema/index.ts", "deprecated": false, @@ -4460,7 +4460,7 @@ "label": "ListSchema", "description": [], "signature": [ - "{ _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }" + "{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/list_schema/index.ts", "deprecated": false, @@ -4737,6 +4737,21 @@ "trackAdoption": false, "initialIsOpen": false }, + { + "parentPluginId": "@kbn/securitysolution-io-ts-list-types", + "id": "def-common.NullableMetaOrUndefined", + "type": "Type", + "tags": [], + "label": "NullableMetaOrUndefined", + "description": [], + "signature": [ + "object | null | undefined" + ], + "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/meta/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", "id": "def-common.OsType", @@ -5135,7 +5150,7 @@ "label": "SearchListItemArraySchema", "description": [], "signature": [ - "{ items: { _version: string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]; value: unknown; }[]" + "{ items: { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]; value: unknown; }[]" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/search_list_item_schema/index.ts", "deprecated": false, @@ -5150,7 +5165,7 @@ "label": "SearchListItemSchema", "description": [], "signature": [ - "{ items: { _version: string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]; value: unknown; }" + "{ items: { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]; value: unknown; }" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/search_list_item_schema/index.ts", "deprecated": false, @@ -8182,6 +8197,12 @@ "StringC", ", ", "UndefinedC", + "]>; '@timestamp': ", + "UnionC", + "<[", + "Type", + ", ", + "UndefinedC", "]>; created_at: ", "StringC", "; created_by: ", @@ -8518,6 +8539,12 @@ "StringC", ", ", "UndefinedC", + "]>; '@timestamp': ", + "UnionC", + "<[", + "Type", + ", ", + "UndefinedC", "]>; created_at: ", "StringC", "; created_by: ", @@ -8590,6 +8617,12 @@ "StringC", ", ", "UndefinedC", + "]>; '@timestamp': ", + "UnionC", + "<[", + "Type", + ", ", + "UndefinedC", "]>; created_at: ", "StringC", "; created_by: ", @@ -8642,6 +8675,12 @@ "StringC", ", ", "UndefinedC", + "]>; '@timestamp': ", + "UnionC", + "<[", + "Type", + ", ", + "UndefinedC", "]>; created_at: ", "StringC", "; created_by: ", @@ -8714,6 +8753,12 @@ "StringC", ", ", "UndefinedC", + "]>; '@timestamp': ", + "UnionC", + "<[", + "Type", + ", ", + "UndefinedC", "]>; created_at: ", "StringC", "; created_by: ", @@ -9709,6 +9754,12 @@ "StringC", ", ", "UndefinedC", + "]>; '@timestamp': ", + "UnionC", + "<[", + "Type", + ", ", + "UndefinedC", "]>; created_at: ", "StringC", "; created_by: ", @@ -9775,6 +9826,12 @@ "StringC", ", ", "UndefinedC", + "]>; '@timestamp': ", + "UnionC", + "<[", + "Type", + ", ", + "UndefinedC", "]>; created_at: ", "StringC", "; created_by: ", @@ -9857,6 +9914,12 @@ "StringC", ", ", "UndefinedC", + "]>; '@timestamp': ", + "UnionC", + "<[", + "Type", + ", ", + "UndefinedC", "]>; created_at: ", "StringC", "; created_by: ", @@ -9933,6 +9996,12 @@ "StringC", ", ", "UndefinedC", + "]>; '@timestamp': ", + "UnionC", + "<[", + "Type", + ", ", + "UndefinedC", "]>; created_at: ", "StringC", "; created_by: ", @@ -10310,6 +10379,30 @@ "trackAdoption": false, "initialIsOpen": false }, + { + "parentPluginId": "@kbn/securitysolution-io-ts-list-types", + "id": "def-common.nullableMetaOrUndefined", + "type": "Object", + "tags": [], + "label": "nullableMetaOrUndefined", + "description": [], + "signature": [ + "UnionC", + "<[", + "UnionC", + "<[", + "ObjectC", + ", ", + "UndefinedC", + "]>, ", + "NullC", + "]>" + ], + "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/meta/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", "id": "def-common.osType", @@ -10765,6 +10858,12 @@ "StringC", ", ", "UndefinedC", + "]>; '@timestamp': ", + "UnionC", + "<[", + "Type", + ", ", + "UndefinedC", "]>; created_at: ", "StringC", "; created_by: ", @@ -10835,6 +10934,12 @@ "StringC", ", ", "UndefinedC", + "]>; '@timestamp': ", + "UnionC", + "<[", + "Type", + ", ", + "UndefinedC", "]>; created_at: ", "StringC", "; created_by: ", @@ -11083,6 +11188,42 @@ "trackAdoption": false, "initialIsOpen": false }, + { + "parentPluginId": "@kbn/securitysolution-io-ts-list-types", + "id": "def-common.timestamp", + "type": "Object", + "tags": [], + "label": "timestamp", + "description": [], + "signature": [ + "Type", + "" + ], + "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/timestamp/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-io-ts-list-types", + "id": "def-common.timestampOrUndefined", + "type": "Object", + "tags": [], + "label": "timestampOrUndefined", + "description": [], + "signature": [ + "UnionC", + "<[", + "Type", + ", ", + "UndefinedC", + "]>" + ], + "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/timestamp/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", "id": "def-common.total", diff --git a/api_docs/kbn_securitysolution_io_ts_list_types.mdx b/api_docs/kbn_securitysolution_io_ts_list_types.mdx index 49b266f6f55e9..3934f363dbb0d 100644 --- a/api_docs/kbn_securitysolution_io_ts_list_types.mdx +++ b/api_docs/kbn_securitysolution_io_ts_list_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-io-ts-list-types title: "@kbn/securitysolution-io-ts-list-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-io-ts-list-types plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-io-ts-list-types'] --- import kbnSecuritysolutionIoTsListTypesObj from './kbn_securitysolution_io_ts_list_types.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/security-detection-engine](https://github.com/orgs/elastic/tea | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 528 | 0 | 515 | 0 | +| 532 | 0 | 519 | 0 | ## Common diff --git a/api_docs/kbn_securitysolution_io_ts_types.mdx b/api_docs/kbn_securitysolution_io_ts_types.mdx index 9ce64d1746c52..c09574a362c76 100644 --- a/api_docs/kbn_securitysolution_io_ts_types.mdx +++ b/api_docs/kbn_securitysolution_io_ts_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-io-ts-types title: "@kbn/securitysolution-io-ts-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-io-ts-types plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-io-ts-types'] --- import kbnSecuritysolutionIoTsTypesObj from './kbn_securitysolution_io_ts_types.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_io_ts_utils.mdx b/api_docs/kbn_securitysolution_io_ts_utils.mdx index 6f2ee1e36ecf6..7cf96376fb427 100644 --- a/api_docs/kbn_securitysolution_io_ts_utils.mdx +++ b/api_docs/kbn_securitysolution_io_ts_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-io-ts-utils title: "@kbn/securitysolution-io-ts-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-io-ts-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-io-ts-utils'] --- import kbnSecuritysolutionIoTsUtilsObj from './kbn_securitysolution_io_ts_utils.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_list_api.devdocs.json b/api_docs/kbn_securitysolution_list_api.devdocs.json index 1a07636db6652..fa3108bcd8c04 100644 --- a/api_docs/kbn_securitysolution_list_api.devdocs.json +++ b/api_docs/kbn_securitysolution_list_api.devdocs.json @@ -317,7 +317,7 @@ "section": "def-common.DeleteListParams", "text": "DeleteListParams" }, - ") => Promise<{ _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }>" + ") => Promise<{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }>" ], "path": "packages/kbn-securitysolution-list-api/src/list_api/index.ts", "deprecated": false, @@ -701,7 +701,7 @@ "section": "def-common.FindListsParams", "text": "FindListsParams" }, - ") => Promise<{ largeLists: { _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; smallLists: { _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; }>" + ") => Promise<{ largeLists: { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; smallLists: { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; }>" ], "path": "packages/kbn-securitysolution-list-api/src/list_api/index.ts", "deprecated": false, @@ -748,7 +748,7 @@ "section": "def-common.FindListsParams", "text": "FindListsParams" }, - ") => Promise<{ cursor: string; data: { _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; page: number; per_page: number; total: number; }>" + ") => Promise<{ cursor: string; data: { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; page: number; per_page: number; total: number; }>" ], "path": "packages/kbn-securitysolution-list-api/src/list_api/index.ts", "deprecated": false, @@ -913,7 +913,7 @@ "section": "def-common.ImportListParams", "text": "ImportListParams" }, - ") => Promise<{ _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }>" + ") => Promise<{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }>" ], "path": "packages/kbn-securitysolution-list-api/src/list_api/index.ts", "deprecated": false, diff --git a/api_docs/kbn_securitysolution_list_api.mdx b/api_docs/kbn_securitysolution_list_api.mdx index cfff83e47ccf4..c11abcb6a9c98 100644 --- a/api_docs/kbn_securitysolution_list_api.mdx +++ b/api_docs/kbn_securitysolution_list_api.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-list-api title: "@kbn/securitysolution-list-api" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-list-api plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-list-api'] --- import kbnSecuritysolutionListApiObj from './kbn_securitysolution_list_api.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_list_constants.devdocs.json b/api_docs/kbn_securitysolution_list_constants.devdocs.json index f691ec2fa0f08..f39f80212e340 100644 --- a/api_docs/kbn_securitysolution_list_constants.devdocs.json +++ b/api_docs/kbn_securitysolution_list_constants.devdocs.json @@ -69,51 +69,55 @@ "references": [ { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts" + "path": "x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts" + "path": "x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/blocklist/constants.ts" + "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/blocklist/constants.ts" + "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/blocklist/services/blocklists_api_client.ts" + "path": "x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/blocklist_validator.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/blocklist/services/blocklists_api_client.ts" + "path": "x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/blocklist_validator.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/blocklist/services/blocklists_api_client.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/blocklist/constants.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/blocklist/constants.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/blocklist_validator.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/blocklist/services/blocklists_api_client.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/blocklist_validator.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/blocklist/services/blocklists_api_client.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/public/management/pages/blocklist/services/blocklists_api_client.ts" }, { "plugin": "securitySolution", @@ -217,19 +221,19 @@ "references": [ { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts" + "path": "x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts" + "path": "x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts" }, { "plugin": "securitySolution", @@ -257,103 +261,107 @@ "references": [ { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts" + "path": "x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts" + "path": "x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts" + "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/view/components/form.tsx" + "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/view/components/form.tsx" + "path": "x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/view/utils.ts" + "path": "x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/view/utils.ts" + "path": "x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/service/service_actions.ts" + "path": "x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/event_filter_validator.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/service/service_actions.ts" + "path": "x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/event_filter_validator.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/service/service_actions.ts" + "path": "x-pack/plugins/security_solution/server/lib/telemetry/tasks/security_lists.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/service/api_client.ts" + "path": "x-pack/plugins/security_solution/server/lib/telemetry/tasks/security_lists.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/service/api_client.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/service/api_client.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/view/components/form.tsx" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/view/components/form.tsx" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/view/utils.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/view/utils.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/service/service_actions.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/service/service_actions.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/service/service_actions.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/event_filter_validator.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/service/api_client.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/event_filter_validator.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/service/api_client.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/telemetry/tasks/security_lists.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/service/api_client.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/telemetry/tasks/security_lists.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts" }, { "plugin": "securitySolution", @@ -445,19 +453,19 @@ "references": [ { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts" + "path": "x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts" + "path": "x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/fleet_integration/handlers/create_event_filters.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/event_filters/constants.ts" }, { "plugin": "securitySolution", @@ -517,51 +525,55 @@ "references": [ { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/constants.ts" + "path": "x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/constants.ts" + "path": "x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/host_isolation_exceptions_api_client.ts" + "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/host_isolation_exceptions_api_client.ts" + "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/host_isolation_exceptions_api_client.ts" + "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts" + "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" + "path": "x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/host_isolation_exceptions_validator.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" + "path": "x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/host_isolation_exceptions_validator.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/constants.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/constants.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/host_isolation_exceptions_validator.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/host_isolation_exceptions_api_client.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/host_isolation_exceptions_validator.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/host_isolation_exceptions_api_client.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/public/management/pages/host_isolation_exceptions/host_isolation_exceptions_api_client.ts" }, { "plugin": "lists", @@ -845,68 +857,72 @@ "path": "x-pack/plugins/lists/server/saved_objects/migrations.ts" }, { - "plugin": "lists", - "path": "x-pack/plugins/lists/common/schemas/response/exception_list_schema.mock.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts" }, { - "plugin": "lists", - "path": "x-pack/plugins/lists/common/schemas/response/exception_list_schema.mock.ts" + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts" + "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts" + "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/trusted_apps/constants.ts" + "path": "x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/trusted_app_validator.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/trusted_apps/constants.ts" + "path": "x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/trusted_app_validator.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/trusted_apps/service/api_client.ts" + "path": "x-pack/plugins/security_solution/server/lib/telemetry/receiver.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/trusted_apps/service/api_client.ts" + "path": "x-pack/plugins/security_solution/server/lib/telemetry/receiver.ts" }, { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/management/pages/trusted_apps/service/api_client.ts" + "plugin": "lists", + "path": "x-pack/plugins/lists/common/schemas/response/exception_list_schema.mock.ts" + }, + { + "plugin": "lists", + "path": "x-pack/plugins/lists/common/schemas/response/exception_list_schema.mock.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/policy/view/policy_hooks.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/endpoint/services/artifacts/manifest_manager/manifest_manager.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/trusted_apps/constants.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/trusted_app_validator.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/trusted_apps/constants.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lists_integration/endpoint/validators/trusted_app_validator.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/trusted_apps/service/api_client.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/telemetry/receiver.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/trusted_apps/service/api_client.ts" }, { "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/server/lib/telemetry/receiver.ts" + "path": "x-pack/plugins/security_solution/public/management/pages/trusted_apps/service/api_client.ts" }, { "plugin": "lists", @@ -1135,21 +1151,6 @@ ], "initialIsOpen": false }, - { - "parentPluginId": "@kbn/securitysolution-list-constants", - "id": "def-common.EXCEPTION_FILTER", - "type": "string", - "tags": [], - "label": "EXCEPTION_FILTER", - "description": [], - "signature": [ - "\"/internal/lists/_create_filter\"" - ], - "path": "packages/kbn-securitysolution-list-constants/index.ts", - "deprecated": false, - "trackAdoption": false, - "initialIsOpen": false - }, { "parentPluginId": "@kbn/securitysolution-list-constants", "id": "def-common.EXCEPTION_LIST_ITEM_URL", @@ -1216,13 +1217,13 @@ }, { "parentPluginId": "@kbn/securitysolution-list-constants", - "id": "def-common.FIND_LISTS_BY_SIZE", + "id": "def-common.INTERNAL_EXCEPTION_FILTER", "type": "string", "tags": [], - "label": "FIND_LISTS_BY_SIZE", + "label": "INTERNAL_EXCEPTION_FILTER", "description": [], "signature": [ - "\"/internal/lists/_find_lists_by_size\"" + "\"/internal/lists/_create_filter\"" ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, @@ -1255,6 +1256,21 @@ "trackAdoption": false, "initialIsOpen": false }, + { + "parentPluginId": "@kbn/securitysolution-list-constants", + "id": "def-common.INTERNAL_FIND_LISTS_BY_SIZE", + "type": "string", + "tags": [], + "label": "INTERNAL_FIND_LISTS_BY_SIZE", + "description": [], + "signature": [ + "\"/internal/lists/_find_lists_by_size\"" + ], + "path": "packages/kbn-securitysolution-list-constants/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "@kbn/securitysolution-list-constants", "id": "def-common.INTERNAL_LIST_URL", diff --git a/api_docs/kbn_securitysolution_list_constants.mdx b/api_docs/kbn_securitysolution_list_constants.mdx index e90bb418822fc..68b0c2db71ec3 100644 --- a/api_docs/kbn_securitysolution_list_constants.mdx +++ b/api_docs/kbn_securitysolution_list_constants.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-list-constants title: "@kbn/securitysolution-list-constants" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-list-constants plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-list-constants'] --- import kbnSecuritysolutionListConstantsObj from './kbn_securitysolution_list_constants.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_list_hooks.devdocs.json b/api_docs/kbn_securitysolution_list_hooks.devdocs.json index 14c2ee5a4b122..a16b45f6a1c79 100644 --- a/api_docs/kbn_securitysolution_list_hooks.devdocs.json +++ b/api_docs/kbn_securitysolution_list_hooks.devdocs.json @@ -421,7 +421,7 @@ "section": "def-common.DeleteListParams", "text": "DeleteListParams" }, - ">], { _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }>" + ">], { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }>" ], "path": "packages/kbn-securitysolution-list-hooks/src/use_delete_list/index.ts", "deprecated": false, @@ -559,7 +559,7 @@ "section": "def-common.FindListsParams", "text": "FindListsParams" }, - ">], { cursor: string; data: { _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; page: number; per_page: number; total: number; }>" + ">], { cursor: string; data: { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; page: number; per_page: number; total: number; }>" ], "path": "packages/kbn-securitysolution-list-hooks/src/use_find_lists/index.ts", "deprecated": false, @@ -600,7 +600,7 @@ "section": "def-common.FindListsParams", "text": "FindListsParams" }, - ">], { largeLists: { _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; smallLists: { _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; }>" + ">], { largeLists: { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; smallLists: { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; }>" ], "path": "packages/kbn-securitysolution-list-hooks/src/use_find_lists_by_size/index.ts", "deprecated": false, @@ -641,7 +641,7 @@ "section": "def-common.ImportListParams", "text": "ImportListParams" }, - ">], { _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }>" + ">], { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }>" ], "path": "packages/kbn-securitysolution-list-hooks/src/use_import_list/index.ts", "deprecated": false, diff --git a/api_docs/kbn_securitysolution_list_hooks.mdx b/api_docs/kbn_securitysolution_list_hooks.mdx index 28bd4841879c5..28f25630bad9e 100644 --- a/api_docs/kbn_securitysolution_list_hooks.mdx +++ b/api_docs/kbn_securitysolution_list_hooks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-list-hooks title: "@kbn/securitysolution-list-hooks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-list-hooks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-list-hooks'] --- import kbnSecuritysolutionListHooksObj from './kbn_securitysolution_list_hooks.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_list_utils.devdocs.json b/api_docs/kbn_securitysolution_list_utils.devdocs.json index 880b165fbb561..b47a7562eeffd 100644 --- a/api_docs/kbn_securitysolution_list_utils.devdocs.json +++ b/api_docs/kbn_securitysolution_list_utils.devdocs.json @@ -617,7 +617,7 @@ "section": "def-common.FormattedBuilderEntry", "text": "FormattedBuilderEntry" }, - ", newField: { _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }) => { index: number; updatedEntry: ", + ", newField: { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }) => { index: number; updatedEntry: ", { "pluginId": "@kbn/securitysolution-list-utils", "scope": "common", @@ -664,7 +664,7 @@ "- newly selected list" ], "signature": [ - "{ _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }" + "{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }" ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, @@ -3326,13 +3326,10 @@ { "parentPluginId": "@kbn/securitysolution-list-utils", "id": "def-common.doesNotExistOperator.message", - "type": "Any", + "type": "string", "tags": [], "label": "message", "description": [], - "signature": [ - "any" - ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, "trackAdoption": false @@ -3407,13 +3404,10 @@ { "parentPluginId": "@kbn/securitysolution-list-utils", "id": "def-common.doesNotMatchOperator.message", - "type": "Any", + "type": "string", "tags": [], "label": "message", "description": [], - "signature": [ - "any" - ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, "trackAdoption": false @@ -3488,13 +3482,10 @@ { "parentPluginId": "@kbn/securitysolution-list-utils", "id": "def-common.existsOperator.message", - "type": "Any", + "type": "string", "tags": [], "label": "message", "description": [], - "signature": [ - "any" - ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, "trackAdoption": false @@ -3569,13 +3560,10 @@ { "parentPluginId": "@kbn/securitysolution-list-utils", "id": "def-common.isInListOperator.message", - "type": "Any", + "type": "string", "tags": [], "label": "message", "description": [], - "signature": [ - "any" - ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, "trackAdoption": false @@ -3650,13 +3638,10 @@ { "parentPluginId": "@kbn/securitysolution-list-utils", "id": "def-common.isNotInListOperator.message", - "type": "Any", + "type": "string", "tags": [], "label": "message", "description": [], - "signature": [ - "any" - ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, "trackAdoption": false @@ -3731,13 +3716,10 @@ { "parentPluginId": "@kbn/securitysolution-list-utils", "id": "def-common.isNotOneOfOperator.message", - "type": "Any", + "type": "string", "tags": [], "label": "message", "description": [], - "signature": [ - "any" - ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, "trackAdoption": false @@ -3812,13 +3794,10 @@ { "parentPluginId": "@kbn/securitysolution-list-utils", "id": "def-common.isNotOperator.message", - "type": "Any", + "type": "string", "tags": [], "label": "message", "description": [], - "signature": [ - "any" - ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, "trackAdoption": false @@ -3893,13 +3872,10 @@ { "parentPluginId": "@kbn/securitysolution-list-utils", "id": "def-common.isOneOfOperator.message", - "type": "Any", + "type": "string", "tags": [], "label": "message", "description": [], - "signature": [ - "any" - ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, "trackAdoption": false @@ -3974,13 +3950,10 @@ { "parentPluginId": "@kbn/securitysolution-list-utils", "id": "def-common.isOperator.message", - "type": "Any", + "type": "string", "tags": [], "label": "message", "description": [], - "signature": [ - "any" - ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, "trackAdoption": false @@ -4055,13 +4028,10 @@ { "parentPluginId": "@kbn/securitysolution-list-utils", "id": "def-common.matchesOperator.message", - "type": "Any", + "type": "string", "tags": [], "label": "message", "description": [], - "signature": [ - "any" - ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, "trackAdoption": false diff --git a/api_docs/kbn_securitysolution_list_utils.mdx b/api_docs/kbn_securitysolution_list_utils.mdx index 970aab1522f14..fbaf26a08afda 100644 --- a/api_docs/kbn_securitysolution_list_utils.mdx +++ b/api_docs/kbn_securitysolution_list_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-list-utils title: "@kbn/securitysolution-list-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-list-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-list-utils'] --- import kbnSecuritysolutionListUtilsObj from './kbn_securitysolution_list_utils.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/security-detection-engine](https://github.com/orgs/elastic/tea | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 207 | 10 | 160 | 0 | +| 207 | 0 | 160 | 0 | ## Common diff --git a/api_docs/kbn_securitysolution_rules.mdx b/api_docs/kbn_securitysolution_rules.mdx index 5c07ef1ded446..503dbea5e90c3 100644 --- a/api_docs/kbn_securitysolution_rules.mdx +++ b/api_docs/kbn_securitysolution_rules.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-rules title: "@kbn/securitysolution-rules" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-rules plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-rules'] --- import kbnSecuritysolutionRulesObj from './kbn_securitysolution_rules.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_t_grid.mdx b/api_docs/kbn_securitysolution_t_grid.mdx index 21fb3a335ccc5..c18f0aee856de 100644 --- a/api_docs/kbn_securitysolution_t_grid.mdx +++ b/api_docs/kbn_securitysolution_t_grid.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-t-grid title: "@kbn/securitysolution-t-grid" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-t-grid plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-t-grid'] --- import kbnSecuritysolutionTGridObj from './kbn_securitysolution_t_grid.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_utils.devdocs.json b/api_docs/kbn_securitysolution_utils.devdocs.json index 19d6d2a0a2340..54c9d41a2d799 100644 --- a/api_docs/kbn_securitysolution_utils.devdocs.json +++ b/api_docs/kbn_securitysolution_utils.devdocs.json @@ -520,13 +520,10 @@ { "parentPluginId": "@kbn/securitysolution-utils", "id": "def-common.FILENAME_WILDCARD_WARNING", - "type": "Any", + "type": "string", "tags": [], "label": "FILENAME_WILDCARD_WARNING", "description": [], - "signature": [ - "any" - ], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", "deprecated": false, "trackAdoption": false, @@ -535,13 +532,10 @@ { "parentPluginId": "@kbn/securitysolution-utils", "id": "def-common.FILEPATH_WARNING", - "type": "Any", + "type": "string", "tags": [], "label": "FILEPATH_WARNING", "description": [], - "signature": [ - "any" - ], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", "deprecated": false, "trackAdoption": false, diff --git a/api_docs/kbn_securitysolution_utils.mdx b/api_docs/kbn_securitysolution_utils.mdx index 02ac0326ecf46..224f28a97aab6 100644 --- a/api_docs/kbn_securitysolution_utils.mdx +++ b/api_docs/kbn_securitysolution_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-utils title: "@kbn/securitysolution-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-utils'] --- import kbnSecuritysolutionUtilsObj from './kbn_securitysolution_utils.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/security-detection-engine](https://github.com/orgs/elastic/tea | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 31 | 2 | 29 | 0 | +| 31 | 0 | 29 | 0 | ## Common diff --git a/api_docs/kbn_server_http_tools.mdx b/api_docs/kbn_server_http_tools.mdx index 00d06d7167c58..4c2ae2be26f35 100644 --- a/api_docs/kbn_server_http_tools.mdx +++ b/api_docs/kbn_server_http_tools.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-server-http-tools title: "@kbn/server-http-tools" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/server-http-tools plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/server-http-tools'] --- import kbnServerHttpToolsObj from './kbn_server_http_tools.devdocs.json'; diff --git a/api_docs/kbn_server_route_repository.mdx b/api_docs/kbn_server_route_repository.mdx index 117312c618eb2..0e11d4c75f087 100644 --- a/api_docs/kbn_server_route_repository.mdx +++ b/api_docs/kbn_server_route_repository.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-server-route-repository title: "@kbn/server-route-repository" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/server-route-repository plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/server-route-repository'] --- import kbnServerRouteRepositoryObj from './kbn_server_route_repository.devdocs.json'; diff --git a/api_docs/kbn_serverless_project_switcher.mdx b/api_docs/kbn_serverless_project_switcher.mdx index 997208987faa0..02870910d4897 100644 --- a/api_docs/kbn_serverless_project_switcher.mdx +++ b/api_docs/kbn_serverless_project_switcher.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-serverless-project-switcher title: "@kbn/serverless-project-switcher" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/serverless-project-switcher plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/serverless-project-switcher'] --- import kbnServerlessProjectSwitcherObj from './kbn_serverless_project_switcher.devdocs.json'; diff --git a/api_docs/kbn_serverless_storybook_config.mdx b/api_docs/kbn_serverless_storybook_config.mdx index 9d0df11cddae6..b7711cd1667bd 100644 --- a/api_docs/kbn_serverless_storybook_config.mdx +++ b/api_docs/kbn_serverless_storybook_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-serverless-storybook-config title: "@kbn/serverless-storybook-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/serverless-storybook-config plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/serverless-storybook-config'] --- import kbnServerlessStorybookConfigObj from './kbn_serverless_storybook_config.devdocs.json'; diff --git a/api_docs/kbn_shared_svg.mdx b/api_docs/kbn_shared_svg.mdx index e03c2405dfd5d..f56cbd879d2d1 100644 --- a/api_docs/kbn_shared_svg.mdx +++ b/api_docs/kbn_shared_svg.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-svg title: "@kbn/shared-svg" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-svg plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-svg'] --- import kbnSharedSvgObj from './kbn_shared_svg.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_avatar_solution.mdx b/api_docs/kbn_shared_ux_avatar_solution.mdx index 882d99b3827ff..7b1478e0a02ce 100644 --- a/api_docs/kbn_shared_ux_avatar_solution.mdx +++ b/api_docs/kbn_shared_ux_avatar_solution.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-avatar-solution title: "@kbn/shared-ux-avatar-solution" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-avatar-solution plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-avatar-solution'] --- import kbnSharedUxAvatarSolutionObj from './kbn_shared_ux_avatar_solution.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_avatar_user_profile_components.mdx b/api_docs/kbn_shared_ux_avatar_user_profile_components.mdx index 214eb5a7a8fea..5ca9b6e67bba7 100644 --- a/api_docs/kbn_shared_ux_avatar_user_profile_components.mdx +++ b/api_docs/kbn_shared_ux_avatar_user_profile_components.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-avatar-user-profile-components title: "@kbn/shared-ux-avatar-user-profile-components" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-avatar-user-profile-components plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-avatar-user-profile-components'] --- import kbnSharedUxAvatarUserProfileComponentsObj from './kbn_shared_ux_avatar_user_profile_components.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_button_exit_full_screen.mdx b/api_docs/kbn_shared_ux_button_exit_full_screen.mdx index 38162575facf4..12746699d6141 100644 --- a/api_docs/kbn_shared_ux_button_exit_full_screen.mdx +++ b/api_docs/kbn_shared_ux_button_exit_full_screen.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-button-exit-full-screen title: "@kbn/shared-ux-button-exit-full-screen" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-button-exit-full-screen plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-button-exit-full-screen'] --- import kbnSharedUxButtonExitFullScreenObj from './kbn_shared_ux_button_exit_full_screen.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.mdx b/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.mdx index 1873bd99937e4..c47240e1e0fa5 100644 --- a/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.mdx +++ b/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-button-exit-full-screen-mocks title: "@kbn/shared-ux-button-exit-full-screen-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-button-exit-full-screen-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-button-exit-full-screen-mocks'] --- import kbnSharedUxButtonExitFullScreenMocksObj from './kbn_shared_ux_button_exit_full_screen_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_button_toolbar.mdx b/api_docs/kbn_shared_ux_button_toolbar.mdx index e01c7c3dddf12..d0ed901bcd991 100644 --- a/api_docs/kbn_shared_ux_button_toolbar.mdx +++ b/api_docs/kbn_shared_ux_button_toolbar.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-button-toolbar title: "@kbn/shared-ux-button-toolbar" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-button-toolbar plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-button-toolbar'] --- import kbnSharedUxButtonToolbarObj from './kbn_shared_ux_button_toolbar.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_card_no_data.mdx b/api_docs/kbn_shared_ux_card_no_data.mdx index d268386ea10e1..766e81f834253 100644 --- a/api_docs/kbn_shared_ux_card_no_data.mdx +++ b/api_docs/kbn_shared_ux_card_no_data.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-card-no-data title: "@kbn/shared-ux-card-no-data" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-card-no-data plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-card-no-data'] --- import kbnSharedUxCardNoDataObj from './kbn_shared_ux_card_no_data.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_card_no_data_mocks.mdx b/api_docs/kbn_shared_ux_card_no_data_mocks.mdx index 1b543ea284d67..28490a743cc81 100644 --- a/api_docs/kbn_shared_ux_card_no_data_mocks.mdx +++ b/api_docs/kbn_shared_ux_card_no_data_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-card-no-data-mocks title: "@kbn/shared-ux-card-no-data-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-card-no-data-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-card-no-data-mocks'] --- import kbnSharedUxCardNoDataMocksObj from './kbn_shared_ux_card_no_data_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_chrome_navigation.mdx b/api_docs/kbn_shared_ux_chrome_navigation.mdx index f97ce72e19cce..f3612feaa560f 100644 --- a/api_docs/kbn_shared_ux_chrome_navigation.mdx +++ b/api_docs/kbn_shared_ux_chrome_navigation.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-chrome-navigation title: "@kbn/shared-ux-chrome-navigation" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-chrome-navigation plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-chrome-navigation'] --- import kbnSharedUxChromeNavigationObj from './kbn_shared_ux_chrome_navigation.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_context.mdx b/api_docs/kbn_shared_ux_file_context.mdx index 7a3c1a9788c2e..0c420e1f338f2 100644 --- a/api_docs/kbn_shared_ux_file_context.mdx +++ b/api_docs/kbn_shared_ux_file_context.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-context title: "@kbn/shared-ux-file-context" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-context plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-context'] --- import kbnSharedUxFileContextObj from './kbn_shared_ux_file_context.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_image.mdx b/api_docs/kbn_shared_ux_file_image.mdx index 28722cd4507a0..3f9ce1a9319a5 100644 --- a/api_docs/kbn_shared_ux_file_image.mdx +++ b/api_docs/kbn_shared_ux_file_image.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-image title: "@kbn/shared-ux-file-image" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-image plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-image'] --- import kbnSharedUxFileImageObj from './kbn_shared_ux_file_image.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_image_mocks.mdx b/api_docs/kbn_shared_ux_file_image_mocks.mdx index e47391ae5c9ca..09752f9c49d62 100644 --- a/api_docs/kbn_shared_ux_file_image_mocks.mdx +++ b/api_docs/kbn_shared_ux_file_image_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-image-mocks title: "@kbn/shared-ux-file-image-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-image-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-image-mocks'] --- import kbnSharedUxFileImageMocksObj from './kbn_shared_ux_file_image_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_mocks.mdx b/api_docs/kbn_shared_ux_file_mocks.mdx index be80dec7e9af1..42aa84cf5d3da 100644 --- a/api_docs/kbn_shared_ux_file_mocks.mdx +++ b/api_docs/kbn_shared_ux_file_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-mocks title: "@kbn/shared-ux-file-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-mocks'] --- import kbnSharedUxFileMocksObj from './kbn_shared_ux_file_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_picker.mdx b/api_docs/kbn_shared_ux_file_picker.mdx index fe350e5336905..f733b7c4c7083 100644 --- a/api_docs/kbn_shared_ux_file_picker.mdx +++ b/api_docs/kbn_shared_ux_file_picker.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-picker title: "@kbn/shared-ux-file-picker" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-picker plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-picker'] --- import kbnSharedUxFilePickerObj from './kbn_shared_ux_file_picker.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_types.mdx b/api_docs/kbn_shared_ux_file_types.mdx index 1c60d453b8dc0..7cddeb714d5a1 100644 --- a/api_docs/kbn_shared_ux_file_types.mdx +++ b/api_docs/kbn_shared_ux_file_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-types title: "@kbn/shared-ux-file-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-types plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-types'] --- import kbnSharedUxFileTypesObj from './kbn_shared_ux_file_types.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_upload.mdx b/api_docs/kbn_shared_ux_file_upload.mdx index 967a3756931e1..afcfc8b4e2b45 100644 --- a/api_docs/kbn_shared_ux_file_upload.mdx +++ b/api_docs/kbn_shared_ux_file_upload.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-upload title: "@kbn/shared-ux-file-upload" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-upload plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-upload'] --- import kbnSharedUxFileUploadObj from './kbn_shared_ux_file_upload.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_util.mdx b/api_docs/kbn_shared_ux_file_util.mdx index 367a2528aef5a..a4c2c04c15aa0 100644 --- a/api_docs/kbn_shared_ux_file_util.mdx +++ b/api_docs/kbn_shared_ux_file_util.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-util title: "@kbn/shared-ux-file-util" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-util plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-util'] --- import kbnSharedUxFileUtilObj from './kbn_shared_ux_file_util.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_link_redirect_app.mdx b/api_docs/kbn_shared_ux_link_redirect_app.mdx index f4936db708142..75c8f8ffaf798 100644 --- a/api_docs/kbn_shared_ux_link_redirect_app.mdx +++ b/api_docs/kbn_shared_ux_link_redirect_app.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-link-redirect-app title: "@kbn/shared-ux-link-redirect-app" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-link-redirect-app plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-link-redirect-app'] --- import kbnSharedUxLinkRedirectAppObj from './kbn_shared_ux_link_redirect_app.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_link_redirect_app_mocks.mdx b/api_docs/kbn_shared_ux_link_redirect_app_mocks.mdx index ce9b24781ec47..18283822e6243 100644 --- a/api_docs/kbn_shared_ux_link_redirect_app_mocks.mdx +++ b/api_docs/kbn_shared_ux_link_redirect_app_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-link-redirect-app-mocks title: "@kbn/shared-ux-link-redirect-app-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-link-redirect-app-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-link-redirect-app-mocks'] --- import kbnSharedUxLinkRedirectAppMocksObj from './kbn_shared_ux_link_redirect_app_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_markdown.mdx b/api_docs/kbn_shared_ux_markdown.mdx index a3004fe367380..de16336341246 100644 --- a/api_docs/kbn_shared_ux_markdown.mdx +++ b/api_docs/kbn_shared_ux_markdown.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-markdown title: "@kbn/shared-ux-markdown" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-markdown plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-markdown'] --- import kbnSharedUxMarkdownObj from './kbn_shared_ux_markdown.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_markdown_mocks.mdx b/api_docs/kbn_shared_ux_markdown_mocks.mdx index 074af9654e40e..097a147257c7d 100644 --- a/api_docs/kbn_shared_ux_markdown_mocks.mdx +++ b/api_docs/kbn_shared_ux_markdown_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-markdown-mocks title: "@kbn/shared-ux-markdown-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-markdown-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-markdown-mocks'] --- import kbnSharedUxMarkdownMocksObj from './kbn_shared_ux_markdown_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_analytics_no_data.mdx b/api_docs/kbn_shared_ux_page_analytics_no_data.mdx index 72a984ad5d2ef..322e374c70823 100644 --- a/api_docs/kbn_shared_ux_page_analytics_no_data.mdx +++ b/api_docs/kbn_shared_ux_page_analytics_no_data.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-analytics-no-data title: "@kbn/shared-ux-page-analytics-no-data" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-analytics-no-data plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-analytics-no-data'] --- import kbnSharedUxPageAnalyticsNoDataObj from './kbn_shared_ux_page_analytics_no_data.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_analytics_no_data_mocks.mdx b/api_docs/kbn_shared_ux_page_analytics_no_data_mocks.mdx index 7feb0d33a8f80..32e7126a694d7 100644 --- a/api_docs/kbn_shared_ux_page_analytics_no_data_mocks.mdx +++ b/api_docs/kbn_shared_ux_page_analytics_no_data_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-analytics-no-data-mocks title: "@kbn/shared-ux-page-analytics-no-data-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-analytics-no-data-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-analytics-no-data-mocks'] --- import kbnSharedUxPageAnalyticsNoDataMocksObj from './kbn_shared_ux_page_analytics_no_data_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_kibana_no_data.mdx b/api_docs/kbn_shared_ux_page_kibana_no_data.mdx index bf6e1b87c0010..8e07e7aee25e8 100644 --- a/api_docs/kbn_shared_ux_page_kibana_no_data.mdx +++ b/api_docs/kbn_shared_ux_page_kibana_no_data.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-kibana-no-data title: "@kbn/shared-ux-page-kibana-no-data" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-kibana-no-data plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-kibana-no-data'] --- import kbnSharedUxPageKibanaNoDataObj from './kbn_shared_ux_page_kibana_no_data.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_kibana_no_data_mocks.mdx b/api_docs/kbn_shared_ux_page_kibana_no_data_mocks.mdx index 053c0813f9021..b4be98d8ed53f 100644 --- a/api_docs/kbn_shared_ux_page_kibana_no_data_mocks.mdx +++ b/api_docs/kbn_shared_ux_page_kibana_no_data_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-kibana-no-data-mocks title: "@kbn/shared-ux-page-kibana-no-data-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-kibana-no-data-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-kibana-no-data-mocks'] --- import kbnSharedUxPageKibanaNoDataMocksObj from './kbn_shared_ux_page_kibana_no_data_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_kibana_template.mdx b/api_docs/kbn_shared_ux_page_kibana_template.mdx index bd3cf24f2b0c7..610f5baee21d4 100644 --- a/api_docs/kbn_shared_ux_page_kibana_template.mdx +++ b/api_docs/kbn_shared_ux_page_kibana_template.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-kibana-template title: "@kbn/shared-ux-page-kibana-template" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-kibana-template plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-kibana-template'] --- import kbnSharedUxPageKibanaTemplateObj from './kbn_shared_ux_page_kibana_template.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_kibana_template_mocks.mdx b/api_docs/kbn_shared_ux_page_kibana_template_mocks.mdx index 0695d0b95ec8d..96cb16258284b 100644 --- a/api_docs/kbn_shared_ux_page_kibana_template_mocks.mdx +++ b/api_docs/kbn_shared_ux_page_kibana_template_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-kibana-template-mocks title: "@kbn/shared-ux-page-kibana-template-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-kibana-template-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-kibana-template-mocks'] --- import kbnSharedUxPageKibanaTemplateMocksObj from './kbn_shared_ux_page_kibana_template_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_no_data.mdx b/api_docs/kbn_shared_ux_page_no_data.mdx index 03f5d9c6e0789..43ca2ab4f0630 100644 --- a/api_docs/kbn_shared_ux_page_no_data.mdx +++ b/api_docs/kbn_shared_ux_page_no_data.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-no-data title: "@kbn/shared-ux-page-no-data" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-no-data plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-no-data'] --- import kbnSharedUxPageNoDataObj from './kbn_shared_ux_page_no_data.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_no_data_config.mdx b/api_docs/kbn_shared_ux_page_no_data_config.mdx index 10d32091ca4c0..7351a2b7b91ae 100644 --- a/api_docs/kbn_shared_ux_page_no_data_config.mdx +++ b/api_docs/kbn_shared_ux_page_no_data_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-no-data-config title: "@kbn/shared-ux-page-no-data-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-no-data-config plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-no-data-config'] --- import kbnSharedUxPageNoDataConfigObj from './kbn_shared_ux_page_no_data_config.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_no_data_config_mocks.mdx b/api_docs/kbn_shared_ux_page_no_data_config_mocks.mdx index 125cf9b243a8b..26d1c208c8205 100644 --- a/api_docs/kbn_shared_ux_page_no_data_config_mocks.mdx +++ b/api_docs/kbn_shared_ux_page_no_data_config_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-no-data-config-mocks title: "@kbn/shared-ux-page-no-data-config-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-no-data-config-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-no-data-config-mocks'] --- import kbnSharedUxPageNoDataConfigMocksObj from './kbn_shared_ux_page_no_data_config_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_no_data_mocks.mdx b/api_docs/kbn_shared_ux_page_no_data_mocks.mdx index d994a7712e419..9c84bcac635c1 100644 --- a/api_docs/kbn_shared_ux_page_no_data_mocks.mdx +++ b/api_docs/kbn_shared_ux_page_no_data_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-no-data-mocks title: "@kbn/shared-ux-page-no-data-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-no-data-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-no-data-mocks'] --- import kbnSharedUxPageNoDataMocksObj from './kbn_shared_ux_page_no_data_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_solution_nav.mdx b/api_docs/kbn_shared_ux_page_solution_nav.mdx index 7dc7e0f52a3f6..438e9fd227a65 100644 --- a/api_docs/kbn_shared_ux_page_solution_nav.mdx +++ b/api_docs/kbn_shared_ux_page_solution_nav.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-solution-nav title: "@kbn/shared-ux-page-solution-nav" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-solution-nav plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-solution-nav'] --- import kbnSharedUxPageSolutionNavObj from './kbn_shared_ux_page_solution_nav.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_prompt_no_data_views.mdx b/api_docs/kbn_shared_ux_prompt_no_data_views.mdx index 0f6c48885d13c..9567f91c2df54 100644 --- a/api_docs/kbn_shared_ux_prompt_no_data_views.mdx +++ b/api_docs/kbn_shared_ux_prompt_no_data_views.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-prompt-no-data-views title: "@kbn/shared-ux-prompt-no-data-views" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-prompt-no-data-views plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-prompt-no-data-views'] --- import kbnSharedUxPromptNoDataViewsObj from './kbn_shared_ux_prompt_no_data_views.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_prompt_no_data_views_mocks.mdx b/api_docs/kbn_shared_ux_prompt_no_data_views_mocks.mdx index 849efcad0f435..32192d47a5527 100644 --- a/api_docs/kbn_shared_ux_prompt_no_data_views_mocks.mdx +++ b/api_docs/kbn_shared_ux_prompt_no_data_views_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-prompt-no-data-views-mocks title: "@kbn/shared-ux-prompt-no-data-views-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-prompt-no-data-views-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-prompt-no-data-views-mocks'] --- import kbnSharedUxPromptNoDataViewsMocksObj from './kbn_shared_ux_prompt_no_data_views_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_prompt_not_found.mdx b/api_docs/kbn_shared_ux_prompt_not_found.mdx index 7a7b927fd6988..46886c63b982c 100644 --- a/api_docs/kbn_shared_ux_prompt_not_found.mdx +++ b/api_docs/kbn_shared_ux_prompt_not_found.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-prompt-not-found title: "@kbn/shared-ux-prompt-not-found" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-prompt-not-found plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-prompt-not-found'] --- import kbnSharedUxPromptNotFoundObj from './kbn_shared_ux_prompt_not_found.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_router.mdx b/api_docs/kbn_shared_ux_router.mdx index 255161288d28c..3d9c9dee3dd0f 100644 --- a/api_docs/kbn_shared_ux_router.mdx +++ b/api_docs/kbn_shared_ux_router.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-router title: "@kbn/shared-ux-router" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-router plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-router'] --- import kbnSharedUxRouterObj from './kbn_shared_ux_router.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_router_mocks.mdx b/api_docs/kbn_shared_ux_router_mocks.mdx index 39b4e5aec744b..64a02a17da466 100644 --- a/api_docs/kbn_shared_ux_router_mocks.mdx +++ b/api_docs/kbn_shared_ux_router_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-router-mocks title: "@kbn/shared-ux-router-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-router-mocks plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-router-mocks'] --- import kbnSharedUxRouterMocksObj from './kbn_shared_ux_router_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_storybook_config.mdx b/api_docs/kbn_shared_ux_storybook_config.mdx index 3acc41ae78f94..9fb1090644aaf 100644 --- a/api_docs/kbn_shared_ux_storybook_config.mdx +++ b/api_docs/kbn_shared_ux_storybook_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-storybook-config title: "@kbn/shared-ux-storybook-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-storybook-config plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-storybook-config'] --- import kbnSharedUxStorybookConfigObj from './kbn_shared_ux_storybook_config.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_storybook_mock.mdx b/api_docs/kbn_shared_ux_storybook_mock.mdx index a402d2bab9080..e55bcc2111d2c 100644 --- a/api_docs/kbn_shared_ux_storybook_mock.mdx +++ b/api_docs/kbn_shared_ux_storybook_mock.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-storybook-mock title: "@kbn/shared-ux-storybook-mock" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-storybook-mock plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-storybook-mock'] --- import kbnSharedUxStorybookMockObj from './kbn_shared_ux_storybook_mock.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_utility.mdx b/api_docs/kbn_shared_ux_utility.mdx index 1e775df2fb59a..1810303c17cb8 100644 --- a/api_docs/kbn_shared_ux_utility.mdx +++ b/api_docs/kbn_shared_ux_utility.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-utility title: "@kbn/shared-ux-utility" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-utility plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-utility'] --- import kbnSharedUxUtilityObj from './kbn_shared_ux_utility.devdocs.json'; diff --git a/api_docs/kbn_slo_schema.devdocs.json b/api_docs/kbn_slo_schema.devdocs.json index f128798cd26e0..f3d983b94c45e 100644 --- a/api_docs/kbn_slo_schema.devdocs.json +++ b/api_docs/kbn_slo_schema.devdocs.json @@ -551,7 +551,7 @@ "label": "CreateSLOInput", "description": [], "signature": [ - "{ name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; } & { id?: string | undefined; settings?: { syncDelay?: string | undefined; frequency?: string | undefined; } | undefined; tags?: string[] | undefined; groupBy?: string | undefined; }" + "{ name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; } & { id?: string | undefined; settings?: { syncDelay?: string | undefined; frequency?: string | undefined; } | undefined; tags?: string[] | undefined; groupBy?: string | undefined; }" ], "path": "x-pack/packages/kbn-slo-schema/src/rest_specs/slo.ts", "deprecated": false, @@ -566,7 +566,7 @@ "label": "CreateSLOParams", "description": [], "signature": [ - "{ name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; timeWindow: { duration: ", + "{ name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: ", { "pluginId": "@kbn/slo-schema", "scope": "common", @@ -688,6 +688,25 @@ "trackAdoption": false, "initialIsOpen": false }, + { + "parentPluginId": "@kbn/slo-schema", + "id": "def-common.FindSloDefinitionsResponse", + "type": "Type", + "tags": [ + "private" + ], + "label": "FindSloDefinitionsResponse", + "description": [ + "\nThe response type for /internal/observability/slo/_definitions\n" + ], + "signature": [ + "({ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; })[]" + ], + "path": "x-pack/packages/kbn-slo-schema/src/rest_specs/slo.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "@kbn/slo-schema", "id": "def-common.FindSLOParams", @@ -711,7 +730,7 @@ "label": "FindSLOResponse", "description": [], "signature": [ - "{ page: number; perPage: number; total: number; results: ({ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; } & { summary: { status: \"HEALTHY\" | \"NO_DATA\" | \"DEGRADING\" | \"VIOLATED\"; sliValue: number; errorBudget: { initial: number; consumed: number; remaining: number; isEstimated: boolean; }; }; })[]; }" + "{ page: number; perPage: number; total: number; results: ({ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; } & { summary: { status: \"HEALTHY\" | \"NO_DATA\" | \"DEGRADING\" | \"VIOLATED\"; sliValue: number; errorBudget: { initial: number; consumed: number; remaining: number; isEstimated: boolean; }; }; })[]; }" ], "path": "x-pack/packages/kbn-slo-schema/src/rest_specs/slo.ts", "deprecated": false, @@ -741,7 +760,7 @@ "label": "GetPreviewDataParams", "description": [], "signature": [ - "{ indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; }" + "{ indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; }" ], "path": "x-pack/packages/kbn-slo-schema/src/rest_specs/slo.ts", "deprecated": false, @@ -816,7 +835,7 @@ "label": "GetSLOResponse", "description": [], "signature": [ - "{ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; } & { summary: { status: \"HEALTHY\" | \"NO_DATA\" | \"DEGRADING\" | \"VIOLATED\"; sliValue: number; errorBudget: { initial: number; consumed: number; remaining: number; isEstimated: boolean; }; }; }" + "{ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; } & { summary: { status: \"HEALTHY\" | \"NO_DATA\" | \"DEGRADING\" | \"VIOLATED\"; sliValue: number; errorBudget: { initial: number; consumed: number; remaining: number; isEstimated: boolean; }; }; }" ], "path": "x-pack/packages/kbn-slo-schema/src/rest_specs/slo.ts", "deprecated": false, @@ -831,7 +850,7 @@ "label": "HistogramIndicator", "description": [], "signature": [ - "{ type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }" + "{ type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }" ], "path": "x-pack/packages/kbn-slo-schema/src/rest_specs/slo.ts", "deprecated": false, @@ -861,7 +880,7 @@ "label": "Indicator", "description": [], "signature": [ - "{ type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }" + "{ type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }" ], "path": "x-pack/packages/kbn-slo-schema/src/rest_specs/slo.ts", "deprecated": false, @@ -891,7 +910,7 @@ "label": "KQLCustomIndicator", "description": [], "signature": [ - "{ type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; }" + "{ type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; }" ], "path": "x-pack/packages/kbn-slo-schema/src/rest_specs/slo.ts", "deprecated": false, @@ -921,7 +940,7 @@ "label": "MetricCustomIndicator", "description": [], "signature": [ - "{ type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; }" + "{ type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; }" ], "path": "x-pack/packages/kbn-slo-schema/src/rest_specs/slo.ts", "deprecated": false, @@ -936,7 +955,7 @@ "label": "SLOResponse", "description": [], "signature": [ - "{ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; }" + "{ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; }" ], "path": "x-pack/packages/kbn-slo-schema/src/rest_specs/slo.ts", "deprecated": false, @@ -951,7 +970,7 @@ "label": "SLOWithSummaryResponse", "description": [], "signature": [ - "{ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; } & { summary: { status: \"HEALTHY\" | \"NO_DATA\" | \"DEGRADING\" | \"VIOLATED\"; sliValue: number; errorBudget: { initial: number; consumed: number; remaining: number; isEstimated: boolean; }; }; }" + "{ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; } & { summary: { status: \"HEALTHY\" | \"NO_DATA\" | \"DEGRADING\" | \"VIOLATED\"; sliValue: number; errorBudget: { initial: number; consumed: number; remaining: number; isEstimated: boolean; }; }; }" ], "path": "x-pack/packages/kbn-slo-schema/src/rest_specs/slo.ts", "deprecated": false, @@ -1050,7 +1069,7 @@ "label": "UpdateSLOInput", "description": [], "signature": [ - "{ name?: string | undefined; description?: string | undefined; indicator?: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; } | undefined; timeWindow?: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; } | undefined; budgetingMethod?: \"occurrences\" | \"timeslices\" | undefined; objective?: ({ target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }) | undefined; settings?: { syncDelay?: string | undefined; frequency?: string | undefined; } | undefined; tags?: string[] | undefined; groupBy?: string | undefined; }" + "{ name?: string | undefined; description?: string | undefined; indicator?: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; } | undefined; timeWindow?: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; } | undefined; budgetingMethod?: \"occurrences\" | \"timeslices\" | undefined; objective?: ({ target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }) | undefined; settings?: { syncDelay?: string | undefined; frequency?: string | undefined; } | undefined; tags?: string[] | undefined; groupBy?: string | undefined; }" ], "path": "x-pack/packages/kbn-slo-schema/src/rest_specs/slo.ts", "deprecated": false, @@ -1065,7 +1084,7 @@ "label": "UpdateSLOParams", "description": [], "signature": [ - "{ name?: string | undefined; description?: string | undefined; indicator?: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; } | undefined; timeWindow?: { duration: ", + "{ name?: string | undefined; description?: string | undefined; indicator?: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; } | undefined; timeWindow?: { duration: ", { "pluginId": "@kbn/slo-schema", "scope": "common", @@ -1120,7 +1139,7 @@ "label": "UpdateSLOResponse", "description": [], "signature": [ - "{ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; }" + "{ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; }" ], "path": "x-pack/packages/kbn-slo-schema/src/rest_specs/slo.ts", "deprecated": false, @@ -1758,27 +1777,31 @@ "<{ type: ", "LiteralC", "<\"sli.kql.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "StringC", "; total: ", "StringC", "; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.metric.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "TypeC", "<{ metrics: ", @@ -1821,18 +1844,22 @@ "StringC", "; }>; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.histogram.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", "; timestampField: ", "StringC", - "; filter: ", - "StringC", "; good: ", "UnionC", "<[", @@ -1893,7 +1920,11 @@ "PartialC", "<{ filter: ", "StringC", - "; }>]>]>; }>; }>]>; timeWindow: ", + "; }>]>]>; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>]>; timeWindow: ", "UnionC", "<[", "TypeC", @@ -2370,6 +2401,396 @@ "trackAdoption": false, "initialIsOpen": false }, + { + "parentPluginId": "@kbn/slo-schema", + "id": "def-common.findSloDefinitionsParamsSchema", + "type": "Object", + "tags": [ + "private" + ], + "label": "findSloDefinitionsParamsSchema", + "description": [ + "\nThe query params schema for /internal/observability/slo/_definitions\n" + ], + "signature": [ + "TypeC", + "<{ query: ", + "TypeC", + "<{ search: ", + "StringC", + "; }>; }>" + ], + "path": "x-pack/packages/kbn-slo-schema/src/rest_specs/slo.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/slo-schema", + "id": "def-common.findSloDefinitionsResponseSchema", + "type": "Object", + "tags": [ + "private" + ], + "label": "findSloDefinitionsResponseSchema", + "description": [ + "\nThe response schema for /internal/observability/slo/_definitions\n" + ], + "signature": [ + "ArrayC", + "<", + "IntersectionC", + "<[", + "TypeC", + "<{ id: ", + "StringC", + "; name: ", + "StringC", + "; description: ", + "StringC", + "; indicator: ", + "UnionC", + "<[", + "TypeC", + "<{ type: ", + "LiteralC", + "<\"sli.apm.transactionDuration\">; params: ", + "IntersectionC", + "<[", + "TypeC", + "<{ environment: ", + "UnionC", + "<[", + "LiteralC", + "<\"*\">, ", + "StringC", + "]>; service: ", + "UnionC", + "<[", + "LiteralC", + "<\"*\">, ", + "StringC", + "]>; transactionType: ", + "UnionC", + "<[", + "LiteralC", + "<\"*\">, ", + "StringC", + "]>; transactionName: ", + "UnionC", + "<[", + "LiteralC", + "<\"*\">, ", + "StringC", + "]>; threshold: ", + "NumberC", + "; index: ", + "StringC", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", + "TypeC", + "<{ type: ", + "LiteralC", + "<\"sli.apm.transactionErrorRate\">; params: ", + "IntersectionC", + "<[", + "TypeC", + "<{ environment: ", + "UnionC", + "<[", + "LiteralC", + "<\"*\">, ", + "StringC", + "]>; service: ", + "UnionC", + "<[", + "LiteralC", + "<\"*\">, ", + "StringC", + "]>; transactionType: ", + "UnionC", + "<[", + "LiteralC", + "<\"*\">, ", + "StringC", + "]>; transactionName: ", + "UnionC", + "<[", + "LiteralC", + "<\"*\">, ", + "StringC", + "]>; index: ", + "StringC", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", + "TypeC", + "<{ type: ", + "LiteralC", + "<\"sli.kql.custom\">; params: ", + "IntersectionC", + "<[", + "TypeC", + "<{ index: ", + "StringC", + "; good: ", + "StringC", + "; total: ", + "StringC", + "; timestampField: ", + "StringC", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", + "TypeC", + "<{ type: ", + "LiteralC", + "<\"sli.metric.custom\">; params: ", + "IntersectionC", + "<[", + "TypeC", + "<{ index: ", + "StringC", + "; good: ", + "TypeC", + "<{ metrics: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "TypeC", + "<{ name: ", + "StringC", + "; aggregation: ", + "KeyofC", + "<{ sum: boolean; }>; field: ", + "StringC", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>>; equation: ", + "StringC", + "; }>; total: ", + "TypeC", + "<{ metrics: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "TypeC", + "<{ name: ", + "StringC", + "; aggregation: ", + "KeyofC", + "<{ sum: boolean; }>; field: ", + "StringC", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>>; equation: ", + "StringC", + "; }>; timestampField: ", + "StringC", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", + "TypeC", + "<{ type: ", + "LiteralC", + "<\"sli.histogram.custom\">; params: ", + "IntersectionC", + "<[", + "TypeC", + "<{ index: ", + "StringC", + "; timestampField: ", + "StringC", + "; good: ", + "UnionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ field: ", + "StringC", + "; aggregation: ", + "LiteralC", + "<\"value_count\">; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>, ", + "IntersectionC", + "<[", + "TypeC", + "<{ field: ", + "StringC", + "; aggregation: ", + "LiteralC", + "<\"range\">; from: ", + "NumberC", + "; to: ", + "NumberC", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>]>; total: ", + "UnionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ field: ", + "StringC", + "; aggregation: ", + "LiteralC", + "<\"value_count\">; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>, ", + "IntersectionC", + "<[", + "TypeC", + "<{ field: ", + "StringC", + "; aggregation: ", + "LiteralC", + "<\"range\">; from: ", + "NumberC", + "; to: ", + "NumberC", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>]>; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>]>; timeWindow: ", + "UnionC", + "<[", + "TypeC", + "<{ duration: ", + "Type", + "<", + { + "pluginId": "@kbn/slo-schema", + "scope": "common", + "docId": "kibKbnSloSchemaPluginApi", + "section": "def-common.Duration", + "text": "Duration" + }, + ", string, unknown>; type: ", + "LiteralC", + "<\"rolling\">; }>, ", + "TypeC", + "<{ duration: ", + "Type", + "<", + { + "pluginId": "@kbn/slo-schema", + "scope": "common", + "docId": "kibKbnSloSchemaPluginApi", + "section": "def-common.Duration", + "text": "Duration" + }, + ", string, unknown>; type: ", + "LiteralC", + "<\"calendarAligned\">; }>]>; budgetingMethod: ", + "UnionC", + "<[", + "LiteralC", + "<\"occurrences\">, ", + "LiteralC", + "<\"timeslices\">]>; objective: ", + "IntersectionC", + "<[", + "TypeC", + "<{ target: ", + "NumberC", + "; }>, ", + "PartialC", + "<{ timesliceTarget: ", + "NumberC", + "; timesliceWindow: ", + "Type", + "<", + { + "pluginId": "@kbn/slo-schema", + "scope": "common", + "docId": "kibKbnSloSchemaPluginApi", + "section": "def-common.Duration", + "text": "Duration" + }, + ", string, unknown>; }>]>; revision: ", + "NumberC", + "; settings: ", + "TypeC", + "<{ syncDelay: ", + "Type", + "<", + { + "pluginId": "@kbn/slo-schema", + "scope": "common", + "docId": "kibKbnSloSchemaPluginApi", + "section": "def-common.Duration", + "text": "Duration" + }, + ", string, unknown>; frequency: ", + "Type", + "<", + { + "pluginId": "@kbn/slo-schema", + "scope": "common", + "docId": "kibKbnSloSchemaPluginApi", + "section": "def-common.Duration", + "text": "Duration" + }, + ", string, unknown>; }>; enabled: ", + "BooleanC", + "; tags: ", + "ArrayC", + "<", + "StringC", + ">; groupBy: ", + "UnionC", + "<[", + "LiteralC", + "<\"*\">, ", + "StringC", + "]>; createdAt: ", + "Type", + "; updatedAt: ", + "Type", + "; }>, ", + "PartialC", + "<{ instanceId: ", + "UnionC", + "<[", + "LiteralC", + "<\"*\">, ", + "StringC", + "]>; }>]>>" + ], + "path": "x-pack/packages/kbn-slo-schema/src/rest_specs/slo.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "@kbn/slo-schema", "id": "def-common.findSLOParamsSchema", @@ -2524,27 +2945,31 @@ "<{ type: ", "LiteralC", "<\"sli.kql.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "StringC", "; total: ", "StringC", "; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.metric.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "TypeC", "<{ metrics: ", @@ -2587,18 +3012,22 @@ "StringC", "; }>; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.histogram.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", "; timestampField: ", "StringC", - "; filter: ", - "StringC", "; good: ", "UnionC", "<[", @@ -2659,7 +3088,11 @@ "PartialC", "<{ filter: ", "StringC", - "; }>]>]>; }>; }>]>; timeWindow: ", + "; }>]>]>; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>]>; timeWindow: ", "UnionC", "<[", "TypeC", @@ -2912,27 +3345,31 @@ "<{ type: ", "LiteralC", "<\"sli.kql.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "StringC", "; total: ", "StringC", "; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.metric.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "TypeC", "<{ metrics: ", @@ -2975,18 +3412,22 @@ "StringC", "; }>; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.histogram.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", "; timestampField: ", "StringC", - "; filter: ", - "StringC", "; good: ", "UnionC", "<[", @@ -3047,7 +3488,11 @@ "PartialC", "<{ filter: ", "StringC", - "; }>]>]>; }>; }>]>; }>; }>" + "; }>]>]>; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>]>; }>; }>" ], "path": "x-pack/packages/kbn-slo-schema/src/rest_specs/slo.ts", "deprecated": false, @@ -3344,27 +3789,31 @@ "<{ type: ", "LiteralC", "<\"sli.kql.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "StringC", "; total: ", "StringC", "; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.metric.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "TypeC", "<{ metrics: ", @@ -3407,18 +3856,22 @@ "StringC", "; }>; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.histogram.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", "; timestampField: ", "StringC", - "; filter: ", - "StringC", "; good: ", "UnionC", "<[", @@ -3479,7 +3932,11 @@ "PartialC", "<{ filter: ", "StringC", - "; }>]>]>; }>; }>]>; timeWindow: ", + "; }>]>]>; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>]>; timeWindow: ", "UnionC", "<[", "TypeC", @@ -3628,13 +4085,13 @@ "<{ type: ", "LiteralC", "<\"sli.histogram.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", "; timestampField: ", "StringC", - "; filter: ", - "StringC", "; good: ", "UnionC", "<[", @@ -3695,7 +4152,11 @@ "PartialC", "<{ filter: ", "StringC", - "; }>]>]>; }>; }>" + "; }>]>]>; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>" ], "path": "x-pack/packages/kbn-slo-schema/src/schema/indicators.ts", "deprecated": false, @@ -3880,27 +4341,31 @@ "<{ type: ", "LiteralC", "<\"sli.kql.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "StringC", "; total: ", "StringC", "; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.metric.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "TypeC", "<{ metrics: ", @@ -3943,18 +4408,22 @@ "StringC", "; }>; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.histogram.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", "; timestampField: ", "StringC", - "; filter: ", - "StringC", "; good: ", "UnionC", "<[", @@ -4015,7 +4484,11 @@ "PartialC", "<{ filter: ", "StringC", - "; }>]>]>; }>; }>]>" + "; }>]>]>; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>]>" ], "path": "x-pack/packages/kbn-slo-schema/src/schema/indicators.ts", "deprecated": false, @@ -4076,18 +4549,22 @@ "<{ type: ", "LiteralC", "<\"sli.kql.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "StringC", "; total: ", "StringC", "; timestampField: ", "StringC", - "; }>; }>" + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>" ], "path": "x-pack/packages/kbn-slo-schema/src/schema/indicators.ts", "deprecated": false, @@ -4142,11 +4619,11 @@ "<{ type: ", "LiteralC", "<\"sli.metric.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "TypeC", "<{ metrics: ", @@ -4189,7 +4666,11 @@ "StringC", "; }>; timestampField: ", "StringC", - "; }>; }>" + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>" ], "path": "x-pack/packages/kbn-slo-schema/src/schema/indicators.ts", "deprecated": false, @@ -4515,27 +4996,31 @@ "<{ type: ", "LiteralC", "<\"sli.kql.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "StringC", "; total: ", "StringC", "; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.metric.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "TypeC", "<{ metrics: ", @@ -4578,18 +5063,22 @@ "StringC", "; }>; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.histogram.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", "; timestampField: ", "StringC", - "; filter: ", - "StringC", "; good: ", "UnionC", "<[", @@ -4650,7 +5139,11 @@ "PartialC", "<{ filter: ", "StringC", - "; }>]>]>; }>; }>]>; timeWindow: ", + "; }>]>]>; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>]>; timeWindow: ", "UnionC", "<[", "TypeC", @@ -4861,27 +5354,31 @@ "<{ type: ", "LiteralC", "<\"sli.kql.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "StringC", "; total: ", "StringC", "; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.metric.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "TypeC", "<{ metrics: ", @@ -4924,18 +5421,22 @@ "StringC", "; }>; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.histogram.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", "; timestampField: ", "StringC", - "; filter: ", - "StringC", "; good: ", "UnionC", "<[", @@ -4996,7 +5497,11 @@ "PartialC", "<{ filter: ", "StringC", - "; }>]>]>; }>; }>]>; timeWindow: ", + "; }>]>]>; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>]>; timeWindow: ", "UnionC", "<[", "TypeC", @@ -5203,27 +5708,31 @@ "<{ type: ", "LiteralC", "<\"sli.kql.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "StringC", "; total: ", "StringC", "; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.metric.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "TypeC", "<{ metrics: ", @@ -5266,18 +5775,22 @@ "StringC", "; }>; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.histogram.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", "; timestampField: ", "StringC", - "; filter: ", - "StringC", "; good: ", "UnionC", "<[", @@ -5338,7 +5851,11 @@ "PartialC", "<{ filter: ", "StringC", - "; }>]>]>; }>; }>]>; timeWindow: ", + "; }>]>]>; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>]>; timeWindow: ", "UnionC", "<[", "TypeC", @@ -5577,27 +6094,31 @@ "<{ type: ", "LiteralC", "<\"sli.kql.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "StringC", "; total: ", "StringC", "; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.metric.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "TypeC", "<{ metrics: ", @@ -5640,18 +6161,22 @@ "StringC", "; }>; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.histogram.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", "; timestampField: ", "StringC", - "; filter: ", - "StringC", "; good: ", "UnionC", "<[", @@ -5712,7 +6237,11 @@ "PartialC", "<{ filter: ", "StringC", - "; }>]>]>; }>; }>]>; timeWindow: ", + "; }>]>]>; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>]>; timeWindow: ", "UnionC", "<[", "TypeC", @@ -6315,27 +6844,31 @@ "<{ type: ", "LiteralC", "<\"sli.kql.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "StringC", "; total: ", "StringC", "; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.metric.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "TypeC", "<{ metrics: ", @@ -6378,18 +6911,22 @@ "StringC", "; }>; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.histogram.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", "; timestampField: ", "StringC", - "; filter: ", - "StringC", "; good: ", "UnionC", "<[", @@ -6450,7 +6987,11 @@ "PartialC", "<{ filter: ", "StringC", - "; }>]>]>; }>; }>]>; timeWindow: ", + "; }>]>]>; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>]>; timeWindow: ", "UnionC", "<[", "TypeC", @@ -6647,27 +7188,31 @@ "<{ type: ", "LiteralC", "<\"sli.kql.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "StringC", "; total: ", "StringC", "; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.metric.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "TypeC", "<{ metrics: ", @@ -6710,18 +7255,22 @@ "StringC", "; }>; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.histogram.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", "; timestampField: ", "StringC", - "; filter: ", - "StringC", "; good: ", "UnionC", "<[", @@ -6782,7 +7331,11 @@ "PartialC", "<{ filter: ", "StringC", - "; }>]>]>; }>; }>]>; timeWindow: ", + "; }>]>]>; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>]>; timeWindow: ", "UnionC", "<[", "TypeC", diff --git a/api_docs/kbn_slo_schema.mdx b/api_docs/kbn_slo_schema.mdx index 74e22890aea41..1091c76f7e3e6 100644 --- a/api_docs/kbn_slo_schema.mdx +++ b/api_docs/kbn_slo_schema.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-slo-schema title: "@kbn/slo-schema" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/slo-schema plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/slo-schema'] --- import kbnSloSchemaObj from './kbn_slo_schema.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/actionable-observability](https://github.com/orgs/elastic/team | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 130 | 0 | 130 | 0 | +| 133 | 0 | 130 | 0 | ## Common diff --git a/api_docs/kbn_some_dev_log.mdx b/api_docs/kbn_some_dev_log.mdx index 7ccc711ffec51..5181c4268f817 100644 --- a/api_docs/kbn_some_dev_log.mdx +++ b/api_docs/kbn_some_dev_log.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-some-dev-log title: "@kbn/some-dev-log" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/some-dev-log plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/some-dev-log'] --- import kbnSomeDevLogObj from './kbn_some_dev_log.devdocs.json'; diff --git a/api_docs/kbn_std.mdx b/api_docs/kbn_std.mdx index 9419624fe1b64..9a8a29a64b219 100644 --- a/api_docs/kbn_std.mdx +++ b/api_docs/kbn_std.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-std title: "@kbn/std" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/std plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/std'] --- import kbnStdObj from './kbn_std.devdocs.json'; diff --git a/api_docs/kbn_stdio_dev_helpers.mdx b/api_docs/kbn_stdio_dev_helpers.mdx index 01f2a3fe722e8..0e2e56f904579 100644 --- a/api_docs/kbn_stdio_dev_helpers.mdx +++ b/api_docs/kbn_stdio_dev_helpers.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-stdio-dev-helpers title: "@kbn/stdio-dev-helpers" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/stdio-dev-helpers plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/stdio-dev-helpers'] --- import kbnStdioDevHelpersObj from './kbn_stdio_dev_helpers.devdocs.json'; diff --git a/api_docs/kbn_storybook.mdx b/api_docs/kbn_storybook.mdx index 509adfada930c..ae70a1eb0e85d 100644 --- a/api_docs/kbn_storybook.mdx +++ b/api_docs/kbn_storybook.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-storybook title: "@kbn/storybook" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/storybook plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/storybook'] --- import kbnStorybookObj from './kbn_storybook.devdocs.json'; diff --git a/api_docs/kbn_telemetry_tools.mdx b/api_docs/kbn_telemetry_tools.mdx index bed75cebc4ebd..77aa14ef46e30 100644 --- a/api_docs/kbn_telemetry_tools.mdx +++ b/api_docs/kbn_telemetry_tools.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-telemetry-tools title: "@kbn/telemetry-tools" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/telemetry-tools plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/telemetry-tools'] --- import kbnTelemetryToolsObj from './kbn_telemetry_tools.devdocs.json'; diff --git a/api_docs/kbn_test.mdx b/api_docs/kbn_test.mdx index eb21d28bcccd2..cf92cf89a1f60 100644 --- a/api_docs/kbn_test.mdx +++ b/api_docs/kbn_test.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-test title: "@kbn/test" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/test plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/test'] --- import kbnTestObj from './kbn_test.devdocs.json'; diff --git a/api_docs/kbn_test_jest_helpers.mdx b/api_docs/kbn_test_jest_helpers.mdx index 2996916ce82dd..94848b389c64e 100644 --- a/api_docs/kbn_test_jest_helpers.mdx +++ b/api_docs/kbn_test_jest_helpers.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-test-jest-helpers title: "@kbn/test-jest-helpers" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/test-jest-helpers plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/test-jest-helpers'] --- import kbnTestJestHelpersObj from './kbn_test_jest_helpers.devdocs.json'; diff --git a/api_docs/kbn_test_subj_selector.mdx b/api_docs/kbn_test_subj_selector.mdx index 1a0dc4f113f00..def1729475793 100644 --- a/api_docs/kbn_test_subj_selector.mdx +++ b/api_docs/kbn_test_subj_selector.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-test-subj-selector title: "@kbn/test-subj-selector" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/test-subj-selector plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/test-subj-selector'] --- import kbnTestSubjSelectorObj from './kbn_test_subj_selector.devdocs.json'; diff --git a/api_docs/kbn_text_based_editor.mdx b/api_docs/kbn_text_based_editor.mdx index 37e19b6610af3..b09dfce1c8f43 100644 --- a/api_docs/kbn_text_based_editor.mdx +++ b/api_docs/kbn_text_based_editor.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-text-based-editor title: "@kbn/text-based-editor" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/text-based-editor plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/text-based-editor'] --- import kbnTextBasedEditorObj from './kbn_text_based_editor.devdocs.json'; diff --git a/api_docs/kbn_tooling_log.mdx b/api_docs/kbn_tooling_log.mdx index c0e891396dce2..8928cd9e1ef44 100644 --- a/api_docs/kbn_tooling_log.mdx +++ b/api_docs/kbn_tooling_log.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-tooling-log title: "@kbn/tooling-log" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/tooling-log plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/tooling-log'] --- import kbnToolingLogObj from './kbn_tooling_log.devdocs.json'; diff --git a/api_docs/kbn_ts_projects.mdx b/api_docs/kbn_ts_projects.mdx index 96cca4b893cde..8bfb1caa89c37 100644 --- a/api_docs/kbn_ts_projects.mdx +++ b/api_docs/kbn_ts_projects.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ts-projects title: "@kbn/ts-projects" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ts-projects plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ts-projects'] --- import kbnTsProjectsObj from './kbn_ts_projects.devdocs.json'; diff --git a/api_docs/kbn_typed_react_router_config.mdx b/api_docs/kbn_typed_react_router_config.mdx index cea81124526bb..235c44cdb1d49 100644 --- a/api_docs/kbn_typed_react_router_config.mdx +++ b/api_docs/kbn_typed_react_router_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-typed-react-router-config title: "@kbn/typed-react-router-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/typed-react-router-config plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/typed-react-router-config'] --- import kbnTypedReactRouterConfigObj from './kbn_typed_react_router_config.devdocs.json'; diff --git a/api_docs/kbn_ui_actions_browser.devdocs.json b/api_docs/kbn_ui_actions_browser.devdocs.json index 3613ab2507d1b..7a589d952a59a 100644 --- a/api_docs/kbn_ui_actions_browser.devdocs.json +++ b/api_docs/kbn_ui_actions_browser.devdocs.json @@ -641,13 +641,10 @@ { "parentPluginId": "@kbn/ui-actions-browser", "id": "def-common.rowClickTrigger.title", - "type": "Any", + "type": "string", "tags": [], "label": "title", "description": [], - "signature": [ - "any" - ], "path": "packages/kbn-ui-actions-browser/src/triggers/row_click_trigger.ts", "deprecated": false, "trackAdoption": false @@ -655,13 +652,10 @@ { "parentPluginId": "@kbn/ui-actions-browser", "id": "def-common.rowClickTrigger.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "packages/kbn-ui-actions-browser/src/triggers/row_click_trigger.ts", "deprecated": false, "trackAdoption": false diff --git a/api_docs/kbn_ui_actions_browser.mdx b/api_docs/kbn_ui_actions_browser.mdx index 28534552bf03d..5cac86c2e72da 100644 --- a/api_docs/kbn_ui_actions_browser.mdx +++ b/api_docs/kbn_ui_actions_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ui-actions-browser title: "@kbn/ui-actions-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ui-actions-browser plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ui-actions-browser'] --- import kbnUiActionsBrowserObj from './kbn_ui_actions_browser.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sh | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 49 | 2 | 35 | 0 | +| 49 | 0 | 35 | 0 | ## Common diff --git a/api_docs/kbn_ui_shared_deps_src.mdx b/api_docs/kbn_ui_shared_deps_src.mdx index 3f7ee1de09d29..a28108326ef6a 100644 --- a/api_docs/kbn_ui_shared_deps_src.mdx +++ b/api_docs/kbn_ui_shared_deps_src.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ui-shared-deps-src title: "@kbn/ui-shared-deps-src" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ui-shared-deps-src plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ui-shared-deps-src'] --- import kbnUiSharedDepsSrcObj from './kbn_ui_shared_deps_src.devdocs.json'; diff --git a/api_docs/kbn_ui_theme.mdx b/api_docs/kbn_ui_theme.mdx index e9f6d4a2aba64..7d891bef67c97 100644 --- a/api_docs/kbn_ui_theme.mdx +++ b/api_docs/kbn_ui_theme.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ui-theme title: "@kbn/ui-theme" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ui-theme plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ui-theme'] --- import kbnUiThemeObj from './kbn_ui_theme.devdocs.json'; diff --git a/api_docs/kbn_unified_field_list.devdocs.json b/api_docs/kbn_unified_field_list.devdocs.json index 210d3430aa7a7..88f3b347e3f0b 100644 --- a/api_docs/kbn_unified_field_list.devdocs.json +++ b/api_docs/kbn_unified_field_list.devdocs.json @@ -771,7 +771,7 @@ "\nReturns a user-friendly description of a field type" ], "signature": [ - "(type: string | undefined) => any" + "(type: string | undefined) => string" ], "path": "packages/kbn-unified-field-list/src/utils/field_types/get_field_type_description.ts", "deprecated": false, @@ -806,7 +806,7 @@ "\nReturns a user-friendly name of a field type" ], "signature": [ - "(type: string | undefined) => any" + "(type: string | undefined) => string" ], "path": "packages/kbn-unified-field-list/src/utils/field_types/get_field_type_name.ts", "deprecated": false, diff --git a/api_docs/kbn_unified_field_list.mdx b/api_docs/kbn_unified_field_list.mdx index 4a8e1d97e4b0e..b707322239b88 100644 --- a/api_docs/kbn_unified_field_list.mdx +++ b/api_docs/kbn_unified_field_list.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-unified-field-list title: "@kbn/unified-field-list" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/unified-field-list plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/unified-field-list'] --- import kbnUnifiedFieldListObj from './kbn_unified_field_list.devdocs.json'; diff --git a/api_docs/kbn_url_state.mdx b/api_docs/kbn_url_state.mdx index 06d856fa83997..c2edf67a0cd7e 100644 --- a/api_docs/kbn_url_state.mdx +++ b/api_docs/kbn_url_state.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-url-state title: "@kbn/url-state" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/url-state plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/url-state'] --- import kbnUrlStateObj from './kbn_url_state.devdocs.json'; diff --git a/api_docs/kbn_use_tracked_promise.mdx b/api_docs/kbn_use_tracked_promise.mdx index d8fa7b77fac93..c180e071cf6e2 100644 --- a/api_docs/kbn_use_tracked_promise.mdx +++ b/api_docs/kbn_use_tracked_promise.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-use-tracked-promise title: "@kbn/use-tracked-promise" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/use-tracked-promise plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/use-tracked-promise'] --- import kbnUseTrackedPromiseObj from './kbn_use_tracked_promise.devdocs.json'; diff --git a/api_docs/kbn_user_profile_components.mdx b/api_docs/kbn_user_profile_components.mdx index 3fd1084822dd1..e2036e0b09d81 100644 --- a/api_docs/kbn_user_profile_components.mdx +++ b/api_docs/kbn_user_profile_components.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-user-profile-components title: "@kbn/user-profile-components" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/user-profile-components plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/user-profile-components'] --- import kbnUserProfileComponentsObj from './kbn_user_profile_components.devdocs.json'; diff --git a/api_docs/kbn_utility_types.mdx b/api_docs/kbn_utility_types.mdx index a076dcf2fca9d..3e555f37b331c 100644 --- a/api_docs/kbn_utility_types.mdx +++ b/api_docs/kbn_utility_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-utility-types title: "@kbn/utility-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/utility-types plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/utility-types'] --- import kbnUtilityTypesObj from './kbn_utility_types.devdocs.json'; diff --git a/api_docs/kbn_utility_types_jest.mdx b/api_docs/kbn_utility_types_jest.mdx index f77c074ac5f0a..a09f8ba920312 100644 --- a/api_docs/kbn_utility_types_jest.mdx +++ b/api_docs/kbn_utility_types_jest.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-utility-types-jest title: "@kbn/utility-types-jest" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/utility-types-jest plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/utility-types-jest'] --- import kbnUtilityTypesJestObj from './kbn_utility_types_jest.devdocs.json'; diff --git a/api_docs/kbn_utils.mdx b/api_docs/kbn_utils.mdx index 7e23711dc6b80..4265f2652a1a0 100644 --- a/api_docs/kbn_utils.mdx +++ b/api_docs/kbn_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-utils title: "@kbn/utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/utils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/utils'] --- import kbnUtilsObj from './kbn_utils.devdocs.json'; diff --git a/api_docs/kbn_visualization_ui_components.devdocs.json b/api_docs/kbn_visualization_ui_components.devdocs.json index 8fee65d445c51..0b9da0c5161ea 100644 --- a/api_docs/kbn_visualization_ui_components.devdocs.json +++ b/api_docs/kbn_visualization_ui_components.devdocs.json @@ -2533,13 +2533,10 @@ { "parentPluginId": "@kbn/visualization-ui-components", "id": "def-public.emptyTitleText", - "type": "Any", + "type": "string", "tags": [], "label": "emptyTitleText", "description": [], - "signature": [ - "any" - ], "path": "packages/kbn-visualization-ui-components/components/dimension_buttons/constants.ts", "deprecated": false, "trackAdoption": false, diff --git a/api_docs/kbn_visualization_ui_components.mdx b/api_docs/kbn_visualization_ui_components.mdx index cadd7cb792618..d9c56f9f23313 100644 --- a/api_docs/kbn_visualization_ui_components.mdx +++ b/api_docs/kbn_visualization_ui_components.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-visualization-ui-components title: "@kbn/visualization-ui-components" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/visualization-ui-components plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/visualization-ui-components'] --- import kbnVisualizationUiComponentsObj from './kbn_visualization_ui_components.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/k | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 155 | 1 | 151 | 3 | +| 155 | 0 | 151 | 3 | ## Client diff --git a/api_docs/kbn_yarn_lock_validator.mdx b/api_docs/kbn_yarn_lock_validator.mdx index 6cfb71c12eb5f..bd52309605437 100644 --- a/api_docs/kbn_yarn_lock_validator.mdx +++ b/api_docs/kbn_yarn_lock_validator.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-yarn-lock-validator title: "@kbn/yarn-lock-validator" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/yarn-lock-validator plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/yarn-lock-validator'] --- import kbnYarnLockValidatorObj from './kbn_yarn_lock_validator.devdocs.json'; diff --git a/api_docs/kibana_overview.mdx b/api_docs/kibana_overview.mdx index 200fc59a040b5..d62ae4148d29a 100644 --- a/api_docs/kibana_overview.mdx +++ b/api_docs/kibana_overview.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kibanaOverview title: "kibanaOverview" image: https://source.unsplash.com/400x175/?github description: API docs for the kibanaOverview plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kibanaOverview'] --- import kibanaOverviewObj from './kibana_overview.devdocs.json'; diff --git a/api_docs/kibana_react.devdocs.json b/api_docs/kibana_react.devdocs.json index 8467d7714fea5..04518800ede3e 100644 --- a/api_docs/kibana_react.devdocs.json +++ b/api_docs/kibana_react.devdocs.json @@ -776,6 +776,126 @@ "plugin": "spaces", "path": "x-pack/plugins/spaces/public/space_selector/space_selector.tsx" }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/authentication/access_agreement/access_agreement_page.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/authentication/access_agreement/access_agreement_page.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/authentication/access_agreement/access_agreement_page.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/authentication/logged_out/logged_out_page.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/authentication/logged_out/logged_out_page.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/authentication/logged_out/logged_out_page.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/authentication/login/login_page.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/authentication/login/login_page.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/authentication/login/login_page.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/authentication/overwritten_session/overwritten_session_page.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/authentication/overwritten_session/overwritten_session_page.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/authentication/overwritten_session/overwritten_session_page.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/management/api_keys/api_keys_management_app.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/management/api_keys/api_keys_management_app.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/management/api_keys/api_keys_management_app.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/management/users/users_management_app.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/management/users/users_management_app.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/management/users/users_management_app.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/management/roles/roles_management_app.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/management/roles/roles_management_app.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/management/roles/roles_management_app.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/management/role_mappings/role_mappings_management_app.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/management/role_mappings/role_mappings_management_app.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/management/role_mappings/role_mappings_management_app.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/nav_control/nav_control_service.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/nav_control/nav_control_service.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/nav_control/nav_control_service.tsx" + }, { "plugin": "savedObjects", "path": "src/plugins/saved_objects/public/save_modal/show_saved_object_save_modal.tsx" @@ -1068,126 +1188,6 @@ "plugin": "lens", "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx" }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/authentication/access_agreement/access_agreement_page.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/authentication/access_agreement/access_agreement_page.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/authentication/access_agreement/access_agreement_page.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/authentication/logged_out/logged_out_page.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/authentication/logged_out/logged_out_page.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/authentication/logged_out/logged_out_page.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/authentication/login/login_page.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/authentication/login/login_page.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/authentication/login/login_page.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/authentication/overwritten_session/overwritten_session_page.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/authentication/overwritten_session/overwritten_session_page.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/authentication/overwritten_session/overwritten_session_page.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/management/api_keys/api_keys_management_app.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/management/api_keys/api_keys_management_app.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/management/api_keys/api_keys_management_app.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/management/users/users_management_app.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/management/users/users_management_app.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/management/users/users_management_app.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/management/roles/roles_management_app.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/management/roles/roles_management_app.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/management/roles/roles_management_app.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/management/role_mappings/role_mappings_management_app.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/management/role_mappings/role_mappings_management_app.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/management/role_mappings/role_mappings_management_app.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/nav_control/nav_control_service.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/nav_control/nav_control_service.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/nav_control/nav_control_service.tsx" - }, { "plugin": "alerting", "path": "x-pack/plugins/alerting/public/application/maintenance_windows.tsx" @@ -1236,66 +1236,6 @@ "plugin": "cases", "path": "x-pack/plugins/cases/public/application.tsx" }, - { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/public/embeddable/embeddable_change_point_chart.tsx" - }, - { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/public/embeddable/embeddable_change_point_chart.tsx" - }, - { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/public/embeddable/embeddable_change_point_chart.tsx" - }, - { - "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/application/index.tsx" - }, - { - "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/application/index.tsx" - }, - { - "plugin": "exploratoryView", - "path": "x-pack/plugins/exploratory_view/public/application/index.tsx" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/public/applications/integrations/app.tsx" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/public/applications/integrations/app.tsx" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/public/applications/integrations/app.tsx" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/public/applications/fleet/app.tsx" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/public/applications/fleet/app.tsx" - }, - { - "plugin": "fleet", - "path": "x-pack/plugins/fleet/public/applications/fleet/app.tsx" - }, - { - "plugin": "observability", - "path": "x-pack/plugins/observability/public/application/index.tsx" - }, - { - "plugin": "observability", - "path": "x-pack/plugins/observability/public/application/index.tsx" - }, - { - "plugin": "observability", - "path": "x-pack/plugins/observability/public/application/index.tsx" - }, { "plugin": "licenseManagement", "path": "x-pack/plugins/license_management/public/shared_imports.ts" @@ -1396,6 +1336,18 @@ "plugin": "dataVisualizer", "path": "x-pack/plugins/data_visualizer/public/application/data_comparison/data_comparison_app_state.tsx" }, + { + "plugin": "aiops", + "path": "x-pack/plugins/aiops/public/embeddable/embeddable_change_point_chart.tsx" + }, + { + "plugin": "aiops", + "path": "x-pack/plugins/aiops/public/embeddable/embeddable_change_point_chart.tsx" + }, + { + "plugin": "aiops", + "path": "x-pack/plugins/aiops/public/embeddable/embeddable_change_point_chart.tsx" + }, { "plugin": "ml", "path": "x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_embeddable.tsx" @@ -1444,6 +1396,54 @@ "plugin": "ml", "path": "x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx" }, + { + "plugin": "exploratoryView", + "path": "x-pack/plugins/exploratory_view/public/application/index.tsx" + }, + { + "plugin": "exploratoryView", + "path": "x-pack/plugins/exploratory_view/public/application/index.tsx" + }, + { + "plugin": "exploratoryView", + "path": "x-pack/plugins/exploratory_view/public/application/index.tsx" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/public/applications/integrations/app.tsx" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/public/applications/integrations/app.tsx" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/public/applications/integrations/app.tsx" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/public/applications/fleet/app.tsx" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/public/applications/fleet/app.tsx" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/public/applications/fleet/app.tsx" + }, + { + "plugin": "observability", + "path": "x-pack/plugins/observability/public/application/index.tsx" + }, + { + "plugin": "observability", + "path": "x-pack/plugins/observability/public/application/index.tsx" + }, + { + "plugin": "observability", + "path": "x-pack/plugins/observability/public/application/index.tsx" + }, { "plugin": "infra", "path": "x-pack/plugins/infra/public/apps/common_providers.tsx" @@ -1856,30 +1856,6 @@ "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/public/app/app.tsx" }, - { - "plugin": "serverlessSearch", - "path": "x-pack/plugins/serverless_search/public/application/elasticsearch.tsx" - }, - { - "plugin": "serverlessSearch", - "path": "x-pack/plugins/serverless_search/public/application/elasticsearch.tsx" - }, - { - "plugin": "serverlessSearch", - "path": "x-pack/plugins/serverless_search/public/application/elasticsearch.tsx" - }, - { - "plugin": "serverlessSearch", - "path": "x-pack/plugins/serverless_search/public/application/indexing_api.tsx" - }, - { - "plugin": "serverlessSearch", - "path": "x-pack/plugins/serverless_search/public/application/indexing_api.tsx" - }, - { - "plugin": "serverlessSearch", - "path": "x-pack/plugins/serverless_search/public/application/indexing_api.tsx" - }, { "plugin": "snapshotRestore", "path": "x-pack/plugins/snapshot_restore/public/shared_imports.ts" @@ -2801,6 +2777,18 @@ "plugin": "savedObjectsManagement", "path": "src/plugins/saved_objects_management/public/management_section/objects_table/saved_objects_table.tsx" }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx" + }, + { + "plugin": "ml", + "path": "x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx" + }, { "plugin": "exploratoryView", "path": "x-pack/plugins/exploratory_view/public/application/index.tsx" @@ -2885,18 +2873,6 @@ "plugin": "observability", "path": "x-pack/plugins/observability/public/application/index.tsx" }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx" - }, { "plugin": "apm", "path": "x-pack/plugins/apm/public/components/routing/app_root/index.tsx" @@ -3158,6 +3134,30 @@ "plugin": "data", "path": "src/plugins/data/public/search/search_service.ts" }, + { + "plugin": "licensing", + "path": "x-pack/plugins/licensing/public/expired_banner.tsx" + }, + { + "plugin": "licensing", + "path": "x-pack/plugins/licensing/public/expired_banner.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/session/session_expiration_toast.tsx" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/public/session/session_expiration_toast.tsx" + }, { "plugin": "savedObjects", "path": "src/plugins/saved_objects/public/saved_object/helpers/confirm_modal_promise.tsx" @@ -3306,14 +3306,6 @@ "plugin": "dashboard", "path": "src/plugins/dashboard/public/dashboard_listing/dashboard_listing_table.tsx" }, - { - "plugin": "licensing", - "path": "x-pack/plugins/licensing/public/expired_banner.tsx" - }, - { - "plugin": "licensing", - "path": "x-pack/plugins/licensing/public/expired_banner.tsx" - }, { "plugin": "savedObjectsTagging", "path": "x-pack/plugins/saved_objects_tagging/public/components/edition_modal/open_modal.tsx" @@ -3386,22 +3378,6 @@ "plugin": "lens", "path": "x-pack/plugins/lens/public/trigger_actions/open_lens_config/helpers.ts" }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/account_management/account_management_app.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/session/session_expiration_toast.tsx" - }, - { - "plugin": "security", - "path": "x-pack/plugins/security/public/session/session_expiration_toast.tsx" - }, { "plugin": "triggersActionsUi", "path": "x-pack/plugins/triggers_actions_ui/public/application/hooks/use_bulk_edit_response.tsx" @@ -3463,68 +3439,36 @@ "path": "x-pack/plugins/cases/public/components/visualizations/actions/add_to_existing_case.tsx" }, { - "plugin": "@kbn/ml-date-picker", - "path": "x-pack/packages/ml/date_picker/src/hooks/use_date_picker_context.tsx" - }, - { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/public/embeddable/embeddable_change_point_chart.tsx" - }, - { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/public/embeddable/embeddable_change_point_chart.tsx" - }, - { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/public/components/log_categorization/log_categorization_app_state.tsx" - }, - { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/public/components/log_categorization/log_categorization_app_state.tsx" - }, - { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/public/components/log_categorization/show_flyout.tsx" - }, - { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/public/components/log_categorization/show_flyout.tsx" - }, - { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/public/components/log_categorization/show_flyout.tsx" - }, - { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/public/components/log_rate_analysis/log_rate_analysis_app_state.tsx" + "plugin": "observabilityShared", + "path": "x-pack/plugins/observability_shared/public/components/header_menu/header_menu_portal.tsx" }, { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/public/components/log_rate_analysis/log_rate_analysis_app_state.tsx" + "plugin": "observabilityShared", + "path": "x-pack/plugins/observability_shared/public/components/header_menu/header_menu_portal.tsx" }, { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/public/components/log_rate_analysis/log_rate_analysis_content/log_rate_analysis_content_wrapper.tsx" + "plugin": "telemetry", + "path": "src/plugins/telemetry/public/services/telemetry_notifications/render_opt_in_status_notice_banner.tsx" }, { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/public/components/log_rate_analysis/log_rate_analysis_content/log_rate_analysis_content_wrapper.tsx" + "plugin": "telemetry", + "path": "src/plugins/telemetry/public/services/telemetry_notifications/render_opt_in_status_notice_banner.tsx" }, { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/public/components/change_point_detection/change_point_detection_root.tsx" + "plugin": "advancedSettings", + "path": "src/plugins/advanced_settings/public/management_app/components/form/form.tsx" }, { - "plugin": "aiops", - "path": "x-pack/plugins/aiops/public/components/change_point_detection/change_point_detection_root.tsx" + "plugin": "advancedSettings", + "path": "src/plugins/advanced_settings/public/management_app/components/form/form.tsx" }, { - "plugin": "observabilityShared", - "path": "x-pack/plugins/observability_shared/public/components/header_menu/header_menu_portal.tsx" + "plugin": "maps", + "path": "x-pack/plugins/maps/public/render_app.tsx" }, { - "plugin": "observabilityShared", - "path": "x-pack/plugins/observability_shared/public/components/header_menu/header_menu_portal.tsx" + "plugin": "maps", + "path": "x-pack/plugins/maps/public/render_app.tsx" }, { "plugin": "exploratoryView", @@ -3630,134 +3574,6 @@ "plugin": "observability", "path": "x-pack/plugins/observability/public/pages/overview/components/header_menu/header_menu_portal.tsx" }, - { - "plugin": "telemetry", - "path": "src/plugins/telemetry/public/services/telemetry_notifications/render_opt_in_status_notice_banner.tsx" - }, - { - "plugin": "telemetry", - "path": "src/plugins/telemetry/public/services/telemetry_notifications/render_opt_in_status_notice_banner.tsx" - }, - { - "plugin": "advancedSettings", - "path": "src/plugins/advanced_settings/public/management_app/components/form/form.tsx" - }, - { - "plugin": "advancedSettings", - "path": "src/plugins/advanced_settings/public/management_app/components/form/form.tsx" - }, - { - "plugin": "maps", - "path": "x-pack/plugins/maps/public/render_app.tsx" - }, - { - "plugin": "maps", - "path": "x-pack/plugins/maps/public/render_app.tsx" - }, - { - "plugin": "dataVisualizer", - "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/embeddables/grid_embeddable/grid_embeddable.tsx" - }, - { - "plugin": "dataVisualizer", - "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/embeddables/grid_embeddable/grid_embeddable.tsx" - }, - { - "plugin": "dataVisualizer", - "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/index_data_visualizer.tsx" - }, - { - "plugin": "dataVisualizer", - "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/index_data_visualizer.tsx" - }, - { - "plugin": "dataVisualizer", - "path": "x-pack/plugins/data_visualizer/public/application/data_comparison/data_comparison_app_state.tsx" - }, - { - "plugin": "dataVisualizer", - "path": "x-pack/plugins/data_visualizer/public/application/data_comparison/data_comparison_app_state.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/model_management/force_stop_dialog.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/model_management/force_stop_dialog.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/model_management/deployment_setup.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/model_management/deployment_setup.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/components/header_menu_portal/header_menu_portal.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/components/header_menu_portal/header_menu_portal.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/embeddables/common/resolve_job_selection.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/embeddables/common/resolve_job_selection.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/embeddables/anomaly_swimlane/anomaly_swimlane_setup_flyout.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/embeddables/anomaly_swimlane/anomaly_swimlane_setup_flyout.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/embeddables/job_creation/common/create_flyout.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/embeddables/job_creation/common/create_flyout.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_setup_flyout.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_setup_flyout.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/routing/use_active_route.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/routing/use_active_route.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/app.tsx" - }, - { - "plugin": "ml", - "path": "x-pack/plugins/ml/public/application/app.tsx" - }, { "plugin": "banners", "path": "x-pack/plugins/banners/public/plugin.tsx" @@ -4142,14 +3958,6 @@ "plugin": "transform", "path": "x-pack/plugins/transform/public/app/sections/create_transform/components/step_details/step_details_form.tsx" }, - { - "plugin": "transform", - "path": "x-pack/plugins/transform/public/app/sections/create_transform/components/wizard/wizard.tsx" - }, - { - "plugin": "transform", - "path": "x-pack/plugins/transform/public/app/sections/create_transform/components/wizard/wizard.tsx" - }, { "plugin": "transform", "path": "x-pack/plugins/transform/public/app/hooks/use_delete_transform.tsx" @@ -6209,13 +6017,10 @@ { "parentPluginId": "kibanaReact", "id": "def-public.NO_DATA_RECOMMENDED", - "type": "Any", + "type": "string", "tags": [], "label": "NO_DATA_RECOMMENDED", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/kibana_react/public/page_template/no_data_page/no_data_page.tsx", "deprecated": false, "trackAdoption": false, diff --git a/api_docs/kibana_react.mdx b/api_docs/kibana_react.mdx index e270cf7dd2574..cc8ace45bde7e 100644 --- a/api_docs/kibana_react.mdx +++ b/api_docs/kibana_react.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kibanaReact title: "kibanaReact" image: https://source.unsplash.com/400x175/?github description: API docs for the kibanaReact plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kibanaReact'] --- import kibanaReactObj from './kibana_react.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sh | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 186 | 1 | 147 | 5 | +| 186 | 0 | 147 | 5 | ## Client diff --git a/api_docs/kibana_utils.devdocs.json b/api_docs/kibana_utils.devdocs.json index a9f8c8bbeaced..a0c1a249a615d 100644 --- a/api_docs/kibana_utils.devdocs.json +++ b/api_docs/kibana_utils.devdocs.json @@ -9243,7 +9243,7 @@ "section": "def-common.Serializable", "text": "Serializable" }, - ">) => S" + ">, loose: boolean | undefined) => S" ], "path": "src/plugins/kibana_utils/common/persistable_state/migrate_to_latest.ts", "deprecated": false, @@ -9299,6 +9299,21 @@ "deprecated": false, "trackAdoption": false, "isRequired": true + }, + { + "parentPluginId": "kibanaUtils", + "id": "def-common.migrateToLatest.$3", + "type": "CompoundType", + "tags": [], + "label": "loose", + "description": [], + "signature": [ + "boolean | undefined" + ], + "path": "src/plugins/kibana_utils/common/persistable_state/migrate_to_latest.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": false } ], "returnComment": [], @@ -10079,7 +10094,7 @@ "tags": [], "label": "migrations", "description": [ - "\nA list of migration functions, which migrate the persistable state\nserializable object to the next version. Migration functions should are\nkeyed by the Kibana version using semver, where the version indicates to\nwhich version the state will be migrated to." + "\nA list of migration functions, which migrate the persistable state\nserializable object to the next version. Migration functions should be\nkeyed using semver, where the version indicates which version the state\nwill be migrated to." ], "signature": [ { diff --git a/api_docs/kibana_utils.mdx b/api_docs/kibana_utils.mdx index 653fc0d1ece0b..1d2b873219196 100644 --- a/api_docs/kibana_utils.mdx +++ b/api_docs/kibana_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kibanaUtils title: "kibanaUtils" image: https://source.unsplash.com/400x175/?github description: API docs for the kibanaUtils plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kibanaUtils'] --- import kibanaUtilsObj from './kibana_utils.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-app-services](https://github.com/orgs/elastic/teams/kib | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 609 | 3 | 416 | 9 | +| 610 | 3 | 417 | 9 | ## Client diff --git a/api_docs/kubernetes_security.mdx b/api_docs/kubernetes_security.mdx index 31d95dd7b8306..8ef272f042272 100644 --- a/api_docs/kubernetes_security.mdx +++ b/api_docs/kubernetes_security.mdx @@ -8,14 +8,14 @@ slug: /kibana-dev-docs/api/kubernetesSecurity title: "kubernetesSecurity" image: https://source.unsplash.com/400x175/?github description: API docs for the kubernetesSecurity plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kubernetesSecurity'] --- import kubernetesSecurityObj from './kubernetes_security.devdocs.json'; -Contact [@elastic/sec-cloudnative-integrations](https://github.com/orgs/elastic/teams/sec-cloudnative-integrations) for questions regarding this plugin. +Contact [@elastic/kibana-cloud-security-posture](https://github.com/orgs/elastic/teams/kibana-cloud-security-posture) for questions regarding this plugin. **Code health stats** diff --git a/api_docs/lens.devdocs.json b/api_docs/lens.devdocs.json index b704f6bfd49f0..331601a978bd5 100644 --- a/api_docs/lens.devdocs.json +++ b/api_docs/lens.devdocs.json @@ -8459,7 +8459,7 @@ }, "<", "YDomainRange", - " | undefined>; hide?: boolean | undefined; showOverlappingTicks?: boolean | undefined; showOverlappingLabels?: boolean | undefined; timeAxisLayerCount?: number | undefined; integersOnly?: boolean | undefined; tickFormat?: \"ignore\" | undefined; labelFormat?: \"ignore\" | undefined; showDuplicatedTicks?: boolean | undefined; }>> & Partial; hide?: boolean | undefined; showOverlappingTicks?: boolean | undefined; showOverlappingLabels?: boolean | undefined; timeAxisLayerCount?: number | undefined; integersOnly?: boolean | undefined; tickFormat?: \"ignore\" | undefined; labelFormat?: \"ignore\" | undefined; showDuplicatedTicks?: boolean | undefined; }>> & Partial | LensAttributes; overrides?: Partial | LensAttributes; overrides?: Partial string" @@ -1829,17 +1829,17 @@ "trackAdoption": false, "children": [], "returnComment": [ - "The list index name" + "The list data stream/index name" ] }, { "parentPluginId": "lists", - "id": "def-server.ListClient.getListItemIndex", + "id": "def-server.ListClient.getListItemName", "type": "Function", "tags": [], - "label": "getListItemIndex", + "label": "getListItemName", "description": [ - "\nReturns the list item index name" + "\nReturns the list item data stream or index name" ], "signature": [ "() => string" @@ -1849,7 +1849,7 @@ "trackAdoption": false, "children": [], "returnComment": [ - "The list item index name" + "The list item data stream/index name" ] }, { @@ -1864,7 +1864,7 @@ "signature": [ "({ id }: ", "GetListOptions", - ") => Promise<{ _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; } | null>" + ") => Promise<{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; } | null>" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, @@ -1902,7 +1902,7 @@ "signature": [ "({ id, deserializer, immutable, serializer, name, description, type, meta, version, }: ", "CreateListOptions", - ") => Promise<{ _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }>" + ") => Promise<{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }>" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, @@ -1940,7 +1940,7 @@ "signature": [ "({ id, deserializer, serializer, name, description, immutable, type, meta, version, }: ", "CreateListIfItDoesNotExistOptions", - ") => Promise<{ _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }>" + ") => Promise<{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }>" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, @@ -1986,6 +1986,26 @@ "True if the list index exists, otherwise false" ] }, + { + "parentPluginId": "lists", + "id": "def-server.ListClient.getListDataStreamExists", + "type": "Function", + "tags": [], + "label": "getListDataStreamExists", + "description": [ + "\nTrue if the list data stream exists, otherwise false" + ], + "signature": [ + "() => Promise" + ], + "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [ + "True if the list data stream exists, otherwise false" + ] + }, { "parentPluginId": "lists", "id": "def-server.ListClient.getListItemIndexExists", @@ -2008,9 +2028,31 @@ }, { "parentPluginId": "lists", - "id": "def-server.ListClient.createListBootStrapIndex", + "id": "def-server.ListClient.getListItemDataStreamExists", "type": "Function", "tags": [], + "label": "getListItemDataStreamExists", + "description": [ + "\nTrue if the list item data stream exists, otherwise false" + ], + "signature": [ + "() => Promise" + ], + "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [ + "True if the list item data stream exists, otherwise false" + ] + }, + { + "parentPluginId": "lists", + "id": "def-server.ListClient.createListBootStrapIndex", + "type": "Function", + "tags": [ + "deprecated" + ], "label": "createListBootStrapIndex", "description": [ "\nCreates the list boot strap index for ILM policies." @@ -2019,8 +2061,9 @@ "() => Promise" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", - "deprecated": false, + "deprecated": true, "trackAdoption": false, + "references": [], "children": [], "returnComment": [ "The contents of the bootstrap response from Elasticsearch" @@ -2028,9 +2071,67 @@ }, { "parentPluginId": "lists", - "id": "def-server.ListClient.createListItemBootStrapIndex", + "id": "def-server.ListClient.createListDataStream", + "type": "Function", + "tags": [], + "label": "createListDataStream", + "description": [ + "\nCreates list data stream" + ], + "signature": [ + "() => Promise" + ], + "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [ + "The contents of the create data stream from Elasticsearch" + ] + }, + { + "parentPluginId": "lists", + "id": "def-server.ListClient.migrateListIndexToDataStream", "type": "Function", "tags": [], + "label": "migrateListIndexToDataStream", + "description": [ + "\nupdate list index mappings with @timestamp and migrates it to data stream" + ], + "signature": [ + "() => Promise" + ], + "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [] + }, + { + "parentPluginId": "lists", + "id": "def-server.ListClient.migrateListItemIndexToDataStream", + "type": "Function", + "tags": [], + "label": "migrateListItemIndexToDataStream", + "description": [ + "\nupdate list items index mappings with @timestamp and migrates it to data stream" + ], + "signature": [ + "() => Promise" + ], + "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [] + }, + { + "parentPluginId": "lists", + "id": "def-server.ListClient.createListItemBootStrapIndex", + "type": "Function", + "tags": [ + "deprecated" + ], "label": "createListItemBootStrapIndex", "description": [ "\nCreates the list item boot strap index for ILM policies." @@ -2039,13 +2140,34 @@ "() => Promise" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", - "deprecated": false, + "deprecated": true, "trackAdoption": false, + "references": [], "children": [], "returnComment": [ "The contents of the bootstrap response from Elasticsearch" ] }, + { + "parentPluginId": "lists", + "id": "def-server.ListClient.createListItemDataStream", + "type": "Function", + "tags": [], + "label": "createListItemDataStream", + "description": [ + "\nCreates list item data stream" + ], + "signature": [ + "() => Promise" + ], + "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [ + "The contents of the create data stream from Elasticsearch" + ] + }, { "parentPluginId": "lists", "id": "def-server.ListClient.getListPolicyExists", @@ -2250,7 +2372,9 @@ "parentPluginId": "lists", "id": "def-server.ListClient.setListPolicy", "type": "Function", - "tags": [], + "tags": [ + "deprecated" + ], "label": "setListPolicy", "description": [ "\nSets the list policy" @@ -2259,8 +2383,9 @@ "() => Promise" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", - "deprecated": false, + "deprecated": true, "trackAdoption": false, + "references": [], "children": [], "returnComment": [ "The contents of the list policy set" @@ -2270,7 +2395,9 @@ "parentPluginId": "lists", "id": "def-server.ListClient.setListItemPolicy", "type": "Function", - "tags": [], + "tags": [ + "deprecated" + ], "label": "setListItemPolicy", "description": [ "\nSets the list item policy" @@ -2279,8 +2406,9 @@ "() => Promise" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", - "deprecated": false, + "deprecated": true, "trackAdoption": false, + "references": [], "children": [], "returnComment": [ "The contents of the list policy set" @@ -2326,6 +2454,46 @@ "True if the list item index was deleted, otherwise false" ] }, + { + "parentPluginId": "lists", + "id": "def-server.ListClient.deleteListDataStream", + "type": "Function", + "tags": [], + "label": "deleteListDataStream", + "description": [ + "\nDeletes the list data stream" + ], + "signature": [ + "() => Promise" + ], + "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [ + "True if the list index was deleted, otherwise false" + ] + }, + { + "parentPluginId": "lists", + "id": "def-server.ListClient.deleteListItemDataStream", + "type": "Function", + "tags": [], + "label": "deleteListItemDataStream", + "description": [ + "\nDeletes the list item data stream" + ], + "signature": [ + "() => Promise" + ], + "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [ + "True if the list index was deleted, otherwise false" + ] + }, { "parentPluginId": "lists", "id": "def-server.ListClient.deleteListPolicy", @@ -2458,7 +2626,7 @@ "signature": [ "({ id }: ", "DeleteListItemOptions", - ") => Promise<{ _version: string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; } | null>" + ") => Promise<{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; } | null>" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, @@ -2496,7 +2664,7 @@ "signature": [ "({ listId, value, type, }: ", "DeleteListItemByValueOptions", - ") => Promise<{ _version: string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]>" + ") => Promise<{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]>" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, @@ -2534,7 +2702,7 @@ "signature": [ "({ id }: ", "DeleteListOptions", - ") => Promise<{ _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; } | null>" + ") => Promise<{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; } | null>" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, @@ -2608,7 +2776,7 @@ "signature": [ "({ deserializer, serializer, type, listId, stream, meta, version, }: ", "ImportListItemsToStreamOptions", - ") => Promise<{ _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; } | null>" + ") => Promise<{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; } | null>" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, @@ -2644,7 +2812,7 @@ "signature": [ "({ listId, value, type, }: ", "GetListItemByValueOptions", - ") => Promise<{ _version: string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]>" + ") => Promise<{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]>" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, @@ -2682,7 +2850,7 @@ "signature": [ "({ id, deserializer, serializer, listId, value, type, meta, }: ", "CreateListItemOptions", - ") => Promise<{ _version: string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; } | null>" + ") => Promise<{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; } | null>" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, @@ -2718,7 +2886,7 @@ "signature": [ "({ _version, id, value, meta, }: ", "UpdateListItemOptions", - ") => Promise<{ _version: string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; } | null>" + ") => Promise<{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; } | null>" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, @@ -2742,6 +2910,42 @@ ], "returnComment": [] }, + { + "parentPluginId": "lists", + "id": "def-server.ListClient.patchListItem", + "type": "Function", + "tags": [], + "label": "patchListItem", + "description": [ + "\nPatches a list item's value given the id of the list item.\nSee {@link https://www.elastic.co/guide/en/elasticsearch/reference/current/optimistic-concurrency-control.html}\nfor more information around optimistic concurrency control." + ], + "signature": [ + "({ _version, id, value, meta, }: ", + "UpdateListItemOptions", + ") => Promise<{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; } | null>" + ], + "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "lists", + "id": "def-server.ListClient.patchListItem.$1", + "type": "Object", + "tags": [], + "label": "{\n _version,\n id,\n value,\n meta,\n }", + "description": [], + "signature": [ + "UpdateListItemOptions" + ], + "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] + }, { "parentPluginId": "lists", "id": "def-server.ListClient.updateList", @@ -2754,7 +2958,7 @@ "signature": [ "({ _version, id, name, description, meta, version, }: ", "UpdateListOptions", - ") => Promise<{ _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; } | null>" + ") => Promise<{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; } | null>" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, @@ -2778,6 +2982,42 @@ ], "returnComment": [] }, + { + "parentPluginId": "lists", + "id": "def-server.ListClient.patchList", + "type": "Function", + "tags": [], + "label": "patchList", + "description": [ + "\nPatches a list container's value given the id of the list." + ], + "signature": [ + "({ _version, id, name, description, meta, version, }: ", + "UpdateListOptions", + ") => Promise<{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; } | null>" + ], + "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "lists", + "id": "def-server.ListClient.patchList.$1", + "type": "Object", + "tags": [], + "label": "{\n _version,\n id,\n name,\n description,\n meta,\n version,\n }", + "description": [], + "signature": [ + "UpdateListOptions" + ], + "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] + }, { "parentPluginId": "lists", "id": "def-server.ListClient.getListItem", @@ -2790,7 +3030,7 @@ "signature": [ "({ id }: ", "GetListItemOptions", - ") => Promise<{ _version: string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; } | null>" + ") => Promise<{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; } | null>" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, @@ -2828,7 +3068,7 @@ "signature": [ "({ type, listId, value, }: ", "GetListItemsByValueOptions", - ") => Promise<{ _version: string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]>" + ") => Promise<{ _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]>" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, @@ -2866,7 +3106,7 @@ "signature": [ "({ type, listId, value, }: ", "SearchListItemByValuesOptions", - ") => Promise<{ items: { _version: string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]; value: unknown; }[]>" + ") => Promise<{ items: { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]; value: unknown; }[]>" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, @@ -2904,7 +3144,7 @@ "signature": [ "({ filter, currentIndexPosition, perPage, page, sortField, sortOrder, searchAfter, runtimeMappings, }: ", "FindListOptions", - ") => Promise<{ cursor: string; data: { _version: string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; page: number; per_page: number; total: number; }>" + ") => Promise<{ cursor: string; data: { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; description: string; deserializer: string | undefined; id: string; immutable: boolean; meta: object | undefined; name: string; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; version: number; }[]; page: number; per_page: number; total: number; }>" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, @@ -2942,7 +3182,7 @@ "signature": [ "({ listId, filter, currentIndexPosition, perPage, page, runtimeMappings, sortField, sortOrder, searchAfter, }: ", "FindListItemOptions", - ") => Promise<{ cursor: string; data: { _version: string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]; page: number; per_page: number; total: number; } | null>" + ") => Promise<{ cursor: string; data: { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]; page: number; per_page: number; total: number; } | null>" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, @@ -2978,7 +3218,7 @@ "signature": [ "({ listId, filter, sortField, sortOrder, }: ", "FindAllListItemsOptions", - ") => Promise<{ data: { _version: string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]; total: number; } | null>" + ") => Promise<{ data: { _version: string | undefined; '@timestamp': string | undefined; created_at: string; created_by: string; deserializer: string | undefined; id: string; list_id: string; meta: object | undefined; serializer: string | undefined; tie_breaker_id: string; type: \"boolean\" | \"geo_point\" | \"geo_shape\" | \"ip\" | \"binary\" | \"keyword\" | \"text\" | \"date\" | \"date_nanos\" | \"integer\" | \"long\" | \"short\" | \"byte\" | \"float\" | \"half_float\" | \"double\" | \"integer_range\" | \"float_range\" | \"long_range\" | \"double_range\" | \"date_range\" | \"ip_range\" | \"shape\"; updated_at: string; updated_by: string; value: string; }[]; total: number; } | null>" ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, diff --git a/api_docs/lists.mdx b/api_docs/lists.mdx index d9930040ed046..3b883a4cb8e3b 100644 --- a/api_docs/lists.mdx +++ b/api_docs/lists.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/lists title: "lists" image: https://source.unsplash.com/400x175/?github description: API docs for the lists plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'lists'] --- import listsObj from './lists.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/security-detection-engine](https://github.com/orgs/elastic/tea | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 210 | 0 | 94 | 51 | +| 222 | 0 | 96 | 51 | ## Client diff --git a/api_docs/logs_shared.mdx b/api_docs/logs_shared.mdx index d8fbe858d753d..efa07980aef8f 100644 --- a/api_docs/logs_shared.mdx +++ b/api_docs/logs_shared.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/logsShared title: "logsShared" image: https://source.unsplash.com/400x175/?github description: API docs for the logsShared plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'logsShared'] --- import logsSharedObj from './logs_shared.devdocs.json'; diff --git a/api_docs/management.mdx b/api_docs/management.mdx index 18ecbda2ce64c..75a8989c83e52 100644 --- a/api_docs/management.mdx +++ b/api_docs/management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/management title: "management" image: https://source.unsplash.com/400x175/?github description: API docs for the management plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'management'] --- import managementObj from './management.devdocs.json'; diff --git a/api_docs/maps.mdx b/api_docs/maps.mdx index f3f28a8aef7f1..83b03ebf331cd 100644 --- a/api_docs/maps.mdx +++ b/api_docs/maps.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/maps title: "maps" image: https://source.unsplash.com/400x175/?github description: API docs for the maps plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'maps'] --- import mapsObj from './maps.devdocs.json'; diff --git a/api_docs/maps_ems.mdx b/api_docs/maps_ems.mdx index b6ff9efaa8dc5..f7b3d5c07658d 100644 --- a/api_docs/maps_ems.mdx +++ b/api_docs/maps_ems.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/mapsEms title: "mapsEms" image: https://source.unsplash.com/400x175/?github description: API docs for the mapsEms plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'mapsEms'] --- import mapsEmsObj from './maps_ems.devdocs.json'; diff --git a/api_docs/ml.mdx b/api_docs/ml.mdx index d29cc9e62530d..1099448709f4f 100644 --- a/api_docs/ml.mdx +++ b/api_docs/ml.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/ml title: "ml" image: https://source.unsplash.com/400x175/?github description: API docs for the ml plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ml'] --- import mlObj from './ml.devdocs.json'; diff --git a/api_docs/monitoring.mdx b/api_docs/monitoring.mdx index acc2ea7d932f1..98531b0c5255f 100644 --- a/api_docs/monitoring.mdx +++ b/api_docs/monitoring.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/monitoring title: "monitoring" image: https://source.unsplash.com/400x175/?github description: API docs for the monitoring plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'monitoring'] --- import monitoringObj from './monitoring.devdocs.json'; diff --git a/api_docs/monitoring_collection.mdx b/api_docs/monitoring_collection.mdx index 9dacaef9bce8a..a0677949b07a8 100644 --- a/api_docs/monitoring_collection.mdx +++ b/api_docs/monitoring_collection.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/monitoringCollection title: "monitoringCollection" image: https://source.unsplash.com/400x175/?github description: API docs for the monitoringCollection plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'monitoringCollection'] --- import monitoringCollectionObj from './monitoring_collection.devdocs.json'; diff --git a/api_docs/navigation.mdx b/api_docs/navigation.mdx index ddd03909ca079..6bccca9f1803a 100644 --- a/api_docs/navigation.mdx +++ b/api_docs/navigation.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/navigation title: "navigation" image: https://source.unsplash.com/400x175/?github description: API docs for the navigation plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'navigation'] --- import navigationObj from './navigation.devdocs.json'; diff --git a/api_docs/newsfeed.mdx b/api_docs/newsfeed.mdx index 7fcac650a7ba0..e52bd0e46e7a3 100644 --- a/api_docs/newsfeed.mdx +++ b/api_docs/newsfeed.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/newsfeed title: "newsfeed" image: https://source.unsplash.com/400x175/?github description: API docs for the newsfeed plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'newsfeed'] --- import newsfeedObj from './newsfeed.devdocs.json'; diff --git a/api_docs/notifications.mdx b/api_docs/notifications.mdx index 51f2c8ba425ea..4b27af7de4dab 100644 --- a/api_docs/notifications.mdx +++ b/api_docs/notifications.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/notifications title: "notifications" image: https://source.unsplash.com/400x175/?github description: API docs for the notifications plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'notifications'] --- import notificationsObj from './notifications.devdocs.json'; diff --git a/api_docs/observability.devdocs.json b/api_docs/observability.devdocs.json index 2b615018f7ead..3816bbd3603fd 100644 --- a/api_docs/observability.devdocs.json +++ b/api_docs/observability.devdocs.json @@ -498,7 +498,7 @@ "label": "formatAlertEvaluationValue", "description": [], "signature": [ - "(ruleTypeId?: string | undefined, evaluationValue?: number | undefined) => any" + "(ruleTypeId?: string | undefined, evaluationValue?: number | undefined) => string | number" ], "path": "x-pack/plugins/observability/public/utils/format_alert_evaluation_value.ts", "deprecated": false, @@ -3207,7 +3207,7 @@ "Maybe", ", { defaultValue, extended }?: FormatterOptions) => string; asPercent: (numerator: ", "Maybe", - ", denominator: number | undefined, fallbackResult?: any) => any; }; }) => { reason: string; link?: string | undefined; }" + ", denominator: number | undefined, fallbackResult?: string) => string; }; }) => { reason: string; link?: string | undefined; }" ], "path": "x-pack/plugins/observability/public/rules/create_observability_rule_type_registry.ts", "deprecated": false, @@ -3226,7 +3226,7 @@ "Maybe", ", { defaultValue, extended }?: FormatterOptions) => string; asPercent: (numerator: ", "Maybe", - ", denominator: number | undefined, fallbackResult?: any) => any; }; }" + ", denominator: number | undefined, fallbackResult?: string) => string; }; }" ], "path": "x-pack/plugins/observability/public/rules/create_observability_rule_type_registry.ts", "deprecated": false, @@ -4220,7 +4220,7 @@ "Maybe", ", { defaultValue, extended }?: FormatterOptions) => string; asPercent: (numerator: ", "Maybe", - ", denominator: number | undefined, fallbackResult?: any) => any; }; }) => { reason: string; link?: string | undefined; }" + ", denominator: number | undefined, fallbackResult?: string) => string; }; }) => { reason: string; link?: string | undefined; }" ], "path": "x-pack/plugins/observability/public/rules/create_observability_rule_type_registry.ts", "deprecated": false, @@ -4239,7 +4239,7 @@ "Maybe", ", { defaultValue, extended }?: FormatterOptions) => string; asPercent: (numerator: ", "Maybe", - ", denominator: number | undefined, fallbackResult?: any) => any; }; }" + ", denominator: number | undefined, fallbackResult?: string) => string; }; }" ], "path": "x-pack/plugins/observability/public/rules/create_observability_rule_type_registry.ts", "deprecated": false, @@ -4470,7 +4470,7 @@ "text": "LocatorPublic" }, "<", - "RulesLocatorParams", + "RulesParams", ">; ruleDetailsLocator: ", { "pluginId": "share", @@ -7898,7 +7898,7 @@ "label": "config", "description": [], "signature": [ - "{ readonly enabled: boolean; readonly annotations: Readonly<{} & { index: string; enabled: boolean; }>; readonly unsafe: Readonly<{} & { alertDetails: Readonly<{} & { uptime: Readonly<{} & { enabled: boolean; }>; metrics: Readonly<{} & { enabled: boolean; }>; observability: Readonly<{} & { enabled: boolean; }>; logs: Readonly<{} & { enabled: boolean; }>; }>; thresholdRule: Readonly<{} & { enabled: boolean; }>; }>; readonly thresholdRule: Readonly<{} & { groupByPageSize: number; }>; readonly compositeSlo: Readonly<{} & { enabled: boolean; }>; }" + "{ readonly enabled: boolean; readonly unsafe: Readonly<{} & { alertDetails: Readonly<{} & { uptime: Readonly<{} & { enabled: boolean; }>; metrics: Readonly<{} & { enabled: boolean; }>; observability: Readonly<{} & { enabled: boolean; }>; logs: Readonly<{} & { enabled: boolean; }>; }>; thresholdRule: Readonly<{} & { enabled: boolean; }>; }>; readonly annotations: Readonly<{} & { index: string; enabled: boolean; }>; readonly thresholdRule: Readonly<{} & { groupByPageSize: number; }>; readonly compositeSlo: Readonly<{} & { enabled: boolean; }>; }" ], "path": "x-pack/plugins/observability/server/routes/types.ts", "deprecated": false, @@ -8410,27 +8410,31 @@ "<{ type: ", "LiteralC", "<\"sli.kql.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "StringC", "; total: ", "StringC", "; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.metric.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "TypeC", "<{ metrics: ", @@ -8473,18 +8477,22 @@ "StringC", "; }>; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.histogram.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", "; timestampField: ", "StringC", - "; filter: ", - "StringC", "; good: ", "UnionC", "<[", @@ -8545,7 +8553,11 @@ "PartialC", "<{ filter: ", "StringC", - "; }>]>]>; }>; }>]>; }>; }> | undefined; handler: ({}: ", + "; }>]>]>; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>]>; }>; }> | undefined; handler: ({}: ", { "pluginId": "observability", "scope": "server", @@ -8553,7 +8565,7 @@ "section": "def-server.ObservabilityRouteHandlerResources", "text": "ObservabilityRouteHandlerResources" }, - " & { params: { body: { indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; }; }; }) => Promise<{ date: string; sliValue: number; }[]>; } & ", + " & { params: { body: { indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; }; }; }) => Promise<{ date: string; sliValue: number; }[]>; } & ", { "pluginId": "observability", "scope": "server", @@ -8629,7 +8641,7 @@ "section": "def-server.ObservabilityRouteHandlerResources", "text": "ObservabilityRouteHandlerResources" }, - " & { params: { path: { id: string; }; }; }) => Promise<{ sloResources: { \".slo-observability.sli\": string; \".slo-observability.sli-mappings\": string; \".slo-observability.sli-settings\": string; \".slo-observability.sli.pipeline\": string; } | undefined; sloSummaryResources: { \".slo-observability.summary\": string; \".slo-observability.summary-mappings\": string; \".slo-observability.summary-settings\": string; } | undefined; slo: string | { id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; timeWindow: { duration: ", + " & { params: { path: { id: string; }; }; }) => Promise<{ sloResources: { \".slo-observability.sli\": string; \".slo-observability.sli-mappings\": string; \".slo-observability.sli-settings\": string; \".slo-observability.sli.pipeline\": string; } | undefined; sloSummaryResources: { \".slo-observability.summary\": string; \".slo-observability.summary-mappings\": string; \".slo-observability.summary-settings\": string; } | undefined; slo: string | { id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: ", { "pluginId": "@kbn/slo-schema", "scope": "common", @@ -8800,27 +8812,31 @@ "<{ type: ", "LiteralC", "<\"sli.kql.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "StringC", "; total: ", "StringC", "; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.metric.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "TypeC", "<{ metrics: ", @@ -8863,18 +8879,22 @@ "StringC", "; }>; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.histogram.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", "; timestampField: ", "StringC", - "; filter: ", - "StringC", "; good: ", "UnionC", "<[", @@ -8935,7 +8955,11 @@ "PartialC", "<{ filter: ", "StringC", - "; }>]>]>; }>; }>]>; timeWindow: ", + "; }>]>]>; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>]>; timeWindow: ", "UnionC", "<[", "TypeC", @@ -9031,7 +9055,7 @@ "section": "def-server.ObservabilityRouteHandlerResources", "text": "ObservabilityRouteHandlerResources" }, - " & { params: { path: { id: string; }; body: { name?: string | undefined; description?: string | undefined; indicator?: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; } | undefined; timeWindow?: { duration: ", + " & { params: { path: { id: string; }; body: { name?: string | undefined; description?: string | undefined; indicator?: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; } | undefined; timeWindow?: { duration: ", { "pluginId": "@kbn/slo-schema", "scope": "common", @@ -9071,7 +9095,7 @@ "section": "def-common.Duration", "text": "Duration" }, - " | undefined; } | undefined; tags?: string[] | undefined; groupBy?: string | undefined; }; }; }) => Promise<{ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; }>; } & ", + " | undefined; } | undefined; tags?: string[] | undefined; groupBy?: string | undefined; }; }; }) => Promise<{ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; }>; } & ", { "pluginId": "observability", "scope": "server", @@ -9105,7 +9129,7 @@ "section": "def-server.ObservabilityRouteHandlerResources", "text": "ObservabilityRouteHandlerResources" }, - " & { params: { path: { id: string; }; } & { query?: { instanceId?: string | undefined; } | undefined; }; }) => Promise<{ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; } & { summary: { status: \"HEALTHY\" | \"NO_DATA\" | \"DEGRADING\" | \"VIOLATED\"; sliValue: number; errorBudget: { initial: number; consumed: number; remaining: number; isEstimated: boolean; }; }; }>; } & ", + " & { params: { path: { id: string; }; } & { query?: { instanceId?: string | undefined; } | undefined; }; }) => Promise<{ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; } & { summary: { status: \"HEALTHY\" | \"NO_DATA\" | \"DEGRADING\" | \"VIOLATED\"; sliValue: number; errorBudget: { initial: number; consumed: number; remaining: number; isEstimated: boolean; }; }; }>; } & ", { "pluginId": "observability", "scope": "server", @@ -9147,7 +9171,29 @@ "section": "def-server.ObservabilityRouteHandlerResources", "text": "ObservabilityRouteHandlerResources" }, - " & { params?: { query?: { kqlQuery?: string | undefined; page?: string | undefined; perPage?: string | undefined; sortBy?: \"status\" | \"error_budget_consumed\" | \"error_budget_remaining\" | \"sli_value\" | undefined; sortDirection?: \"asc\" | \"desc\" | undefined; } | undefined; } | undefined; }) => Promise<{ page: number; perPage: number; total: number; results: ({ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; } & { summary: { status: \"HEALTHY\" | \"NO_DATA\" | \"DEGRADING\" | \"VIOLATED\"; sliValue: number; errorBudget: { initial: number; consumed: number; remaining: number; isEstimated: boolean; }; }; })[]; }>; } & ", + " & { params?: { query?: { kqlQuery?: string | undefined; page?: string | undefined; perPage?: string | undefined; sortBy?: \"status\" | \"error_budget_consumed\" | \"error_budget_remaining\" | \"sli_value\" | undefined; sortDirection?: \"asc\" | \"desc\" | undefined; } | undefined; } | undefined; }) => Promise<{ page: number; perPage: number; total: number; results: ({ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; } & { summary: { status: \"HEALTHY\" | \"NO_DATA\" | \"DEGRADING\" | \"VIOLATED\"; sliValue: number; errorBudget: { initial: number; consumed: number; remaining: number; isEstimated: boolean; }; }; })[]; }>; } & ", + { + "pluginId": "observability", + "scope": "server", + "docId": "kibObservabilityPluginApi", + "section": "def-server.ObservabilityRouteCreateOptions", + "text": "ObservabilityRouteCreateOptions" + }, + "; \"GET /internal/observability/slos/_definitions\": { endpoint: \"GET /internal/observability/slos/_definitions\"; params?: ", + "TypeC", + "<{ query: ", + "TypeC", + "<{ search: ", + "StringC", + "; }>; }> | undefined; handler: ({}: ", + { + "pluginId": "observability", + "scope": "server", + "docId": "kibObservabilityPluginApi", + "section": "def-server.ObservabilityRouteHandlerResources", + "text": "ObservabilityRouteHandlerResources" + }, + " & { params: { query: { search: string; }; }; }) => Promise<({ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; })[]>; } & ", { "pluginId": "observability", "scope": "server", @@ -9348,27 +9394,31 @@ "<{ type: ", "LiteralC", "<\"sli.kql.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "StringC", "; total: ", "StringC", "; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.metric.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "TypeC", "<{ metrics: ", @@ -9411,18 +9461,22 @@ "StringC", "; }>; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.histogram.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", "; timestampField: ", "StringC", - "; filter: ", - "StringC", "; good: ", "UnionC", "<[", @@ -9483,7 +9537,11 @@ "PartialC", "<{ filter: ", "StringC", - "; }>]>]>; }>; }>]>; timeWindow: ", + "; }>]>]>; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>]>; timeWindow: ", "UnionC", "<[", "TypeC", @@ -9583,7 +9641,7 @@ "section": "def-server.ObservabilityRouteHandlerResources", "text": "ObservabilityRouteHandlerResources" }, - " & { params: { body: { name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; timeWindow: { duration: ", + " & { params: { body: { name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: ", { "pluginId": "@kbn/slo-schema", "scope": "common", @@ -9674,7 +9732,7 @@ "label": "ObservabilityConfig", "description": [], "signature": [ - "{ readonly enabled: boolean; readonly annotations: Readonly<{} & { index: string; enabled: boolean; }>; readonly unsafe: Readonly<{} & { alertDetails: Readonly<{} & { uptime: Readonly<{} & { enabled: boolean; }>; metrics: Readonly<{} & { enabled: boolean; }>; observability: Readonly<{} & { enabled: boolean; }>; logs: Readonly<{} & { enabled: boolean; }>; }>; thresholdRule: Readonly<{} & { enabled: boolean; }>; }>; readonly thresholdRule: Readonly<{} & { groupByPageSize: number; }>; readonly compositeSlo: Readonly<{} & { enabled: boolean; }>; }" + "{ readonly enabled: boolean; readonly unsafe: Readonly<{} & { alertDetails: Readonly<{} & { uptime: Readonly<{} & { enabled: boolean; }>; metrics: Readonly<{} & { enabled: boolean; }>; observability: Readonly<{} & { enabled: boolean; }>; logs: Readonly<{} & { enabled: boolean; }>; }>; thresholdRule: Readonly<{} & { enabled: boolean; }>; }>; readonly annotations: Readonly<{} & { index: string; enabled: boolean; }>; readonly thresholdRule: Readonly<{} & { groupByPageSize: number; }>; readonly compositeSlo: Readonly<{} & { enabled: boolean; }>; }" ], "path": "x-pack/plugins/observability/server/index.ts", "deprecated": false, @@ -10124,27 +10182,31 @@ "<{ type: ", "LiteralC", "<\"sli.kql.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "StringC", "; total: ", "StringC", "; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.metric.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "TypeC", "<{ metrics: ", @@ -10187,18 +10249,22 @@ "StringC", "; }>; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.histogram.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", "; timestampField: ", "StringC", - "; filter: ", - "StringC", "; good: ", "UnionC", "<[", @@ -10259,7 +10325,11 @@ "PartialC", "<{ filter: ", "StringC", - "; }>]>]>; }>; }>]>; }>; }> | undefined; handler: ({}: ", + "; }>]>]>; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>]>; }>; }> | undefined; handler: ({}: ", { "pluginId": "observability", "scope": "server", @@ -10267,7 +10337,7 @@ "section": "def-server.ObservabilityRouteHandlerResources", "text": "ObservabilityRouteHandlerResources" }, - " & { params: { body: { indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; }; }; }) => Promise<{ date: string; sliValue: number; }[]>; } & ", + " & { params: { body: { indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; }; }; }) => Promise<{ date: string; sliValue: number; }[]>; } & ", { "pluginId": "observability", "scope": "server", @@ -10343,7 +10413,7 @@ "section": "def-server.ObservabilityRouteHandlerResources", "text": "ObservabilityRouteHandlerResources" }, - " & { params: { path: { id: string; }; }; }) => Promise<{ sloResources: { \".slo-observability.sli\": string; \".slo-observability.sli-mappings\": string; \".slo-observability.sli-settings\": string; \".slo-observability.sli.pipeline\": string; } | undefined; sloSummaryResources: { \".slo-observability.summary\": string; \".slo-observability.summary-mappings\": string; \".slo-observability.summary-settings\": string; } | undefined; slo: string | { id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; timeWindow: { duration: ", + " & { params: { path: { id: string; }; }; }) => Promise<{ sloResources: { \".slo-observability.sli\": string; \".slo-observability.sli-mappings\": string; \".slo-observability.sli-settings\": string; \".slo-observability.sli.pipeline\": string; } | undefined; sloSummaryResources: { \".slo-observability.summary\": string; \".slo-observability.summary-mappings\": string; \".slo-observability.summary-settings\": string; } | undefined; slo: string | { id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: ", { "pluginId": "@kbn/slo-schema", "scope": "common", @@ -10514,27 +10584,31 @@ "<{ type: ", "LiteralC", "<\"sli.kql.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "StringC", "; total: ", "StringC", "; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.metric.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "TypeC", "<{ metrics: ", @@ -10577,18 +10651,22 @@ "StringC", "; }>; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.histogram.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", "; timestampField: ", "StringC", - "; filter: ", - "StringC", "; good: ", "UnionC", "<[", @@ -10649,7 +10727,11 @@ "PartialC", "<{ filter: ", "StringC", - "; }>]>]>; }>; }>]>; timeWindow: ", + "; }>]>]>; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>]>; timeWindow: ", "UnionC", "<[", "TypeC", @@ -10745,7 +10827,7 @@ "section": "def-server.ObservabilityRouteHandlerResources", "text": "ObservabilityRouteHandlerResources" }, - " & { params: { path: { id: string; }; body: { name?: string | undefined; description?: string | undefined; indicator?: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; } | undefined; timeWindow?: { duration: ", + " & { params: { path: { id: string; }; body: { name?: string | undefined; description?: string | undefined; indicator?: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; } | undefined; timeWindow?: { duration: ", { "pluginId": "@kbn/slo-schema", "scope": "common", @@ -10785,7 +10867,7 @@ "section": "def-common.Duration", "text": "Duration" }, - " | undefined; } | undefined; tags?: string[] | undefined; groupBy?: string | undefined; }; }; }) => Promise<{ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; }>; } & ", + " | undefined; } | undefined; tags?: string[] | undefined; groupBy?: string | undefined; }; }; }) => Promise<{ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; }>; } & ", { "pluginId": "observability", "scope": "server", @@ -10819,7 +10901,7 @@ "section": "def-server.ObservabilityRouteHandlerResources", "text": "ObservabilityRouteHandlerResources" }, - " & { params: { path: { id: string; }; } & { query?: { instanceId?: string | undefined; } | undefined; }; }) => Promise<{ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; } & { summary: { status: \"HEALTHY\" | \"NO_DATA\" | \"DEGRADING\" | \"VIOLATED\"; sliValue: number; errorBudget: { initial: number; consumed: number; remaining: number; isEstimated: boolean; }; }; }>; } & ", + " & { params: { path: { id: string; }; } & { query?: { instanceId?: string | undefined; } | undefined; }; }) => Promise<{ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; } & { summary: { status: \"HEALTHY\" | \"NO_DATA\" | \"DEGRADING\" | \"VIOLATED\"; sliValue: number; errorBudget: { initial: number; consumed: number; remaining: number; isEstimated: boolean; }; }; }>; } & ", { "pluginId": "observability", "scope": "server", @@ -10861,7 +10943,29 @@ "section": "def-server.ObservabilityRouteHandlerResources", "text": "ObservabilityRouteHandlerResources" }, - " & { params?: { query?: { kqlQuery?: string | undefined; page?: string | undefined; perPage?: string | undefined; sortBy?: \"status\" | \"error_budget_consumed\" | \"error_budget_remaining\" | \"sli_value\" | undefined; sortDirection?: \"asc\" | \"desc\" | undefined; } | undefined; } | undefined; }) => Promise<{ page: number; perPage: number; total: number; results: ({ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; } & { summary: { status: \"HEALTHY\" | \"NO_DATA\" | \"DEGRADING\" | \"VIOLATED\"; sliValue: number; errorBudget: { initial: number; consumed: number; remaining: number; isEstimated: boolean; }; }; })[]; }>; } & ", + " & { params?: { query?: { kqlQuery?: string | undefined; page?: string | undefined; perPage?: string | undefined; sortBy?: \"status\" | \"error_budget_consumed\" | \"error_budget_remaining\" | \"sli_value\" | undefined; sortDirection?: \"asc\" | \"desc\" | undefined; } | undefined; } | undefined; }) => Promise<{ page: number; perPage: number; total: number; results: ({ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; } & { summary: { status: \"HEALTHY\" | \"NO_DATA\" | \"DEGRADING\" | \"VIOLATED\"; sliValue: number; errorBudget: { initial: number; consumed: number; remaining: number; isEstimated: boolean; }; }; })[]; }>; } & ", + { + "pluginId": "observability", + "scope": "server", + "docId": "kibObservabilityPluginApi", + "section": "def-server.ObservabilityRouteCreateOptions", + "text": "ObservabilityRouteCreateOptions" + }, + "; \"GET /internal/observability/slos/_definitions\": { endpoint: \"GET /internal/observability/slos/_definitions\"; params?: ", + "TypeC", + "<{ query: ", + "TypeC", + "<{ search: ", + "StringC", + "; }>; }> | undefined; handler: ({}: ", + { + "pluginId": "observability", + "scope": "server", + "docId": "kibObservabilityPluginApi", + "section": "def-server.ObservabilityRouteHandlerResources", + "text": "ObservabilityRouteHandlerResources" + }, + " & { params: { query: { search: string; }; }; }) => Promise<({ id: string; name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: string; type: \"rolling\"; } | { duration: string; type: \"calendarAligned\"; }; budgetingMethod: \"occurrences\" | \"timeslices\"; objective: { target: number; } & { timesliceTarget?: number | undefined; timesliceWindow?: string | undefined; }; revision: number; settings: { syncDelay: string; frequency: string; }; enabled: boolean; tags: string[]; groupBy: string; createdAt: string; updatedAt: string; } & { instanceId?: string | undefined; })[]>; } & ", { "pluginId": "observability", "scope": "server", @@ -11062,27 +11166,31 @@ "<{ type: ", "LiteralC", "<\"sli.kql.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "StringC", "; total: ", "StringC", "; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.metric.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", - "; filter: ", - "StringC", "; good: ", "TypeC", "<{ metrics: ", @@ -11125,18 +11233,22 @@ "StringC", "; }>; timestampField: ", "StringC", - "; }>; }>, ", + "; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>, ", "TypeC", "<{ type: ", "LiteralC", "<\"sli.histogram.custom\">; params: ", + "IntersectionC", + "<[", "TypeC", "<{ index: ", "StringC", "; timestampField: ", "StringC", - "; filter: ", - "StringC", "; good: ", "UnionC", "<[", @@ -11197,7 +11309,11 @@ "PartialC", "<{ filter: ", "StringC", - "; }>]>]>; }>; }>]>; timeWindow: ", + "; }>]>]>; }>, ", + "PartialC", + "<{ filter: ", + "StringC", + "; }>]>; }>]>; timeWindow: ", "UnionC", "<[", "TypeC", @@ -11297,7 +11413,7 @@ "section": "def-server.ObservabilityRouteHandlerResources", "text": "ObservabilityRouteHandlerResources" }, - " & { params: { body: { name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; filter: string; good: string; total: string; timestampField: string; }; } | { type: \"sli.metric.custom\"; params: { index: string; filter: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; filter: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); }; }; timeWindow: { duration: ", + " & { params: { body: { name: string; description: string; indicator: { type: \"sli.apm.transactionDuration\"; params: { environment: string; service: string; transactionType: string; transactionName: string; threshold: number; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.apm.transactionErrorRate\"; params: { environment: string; service: string; transactionType: string; transactionName: string; index: string; } & { filter?: string | undefined; }; } | { type: \"sli.kql.custom\"; params: { index: string; good: string; total: string; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.metric.custom\"; params: { index: string; good: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; total: { metrics: ({ name: string; aggregation: \"sum\"; field: string; } & { filter?: string | undefined; })[]; equation: string; }; timestampField: string; } & { filter?: string | undefined; }; } | { type: \"sli.histogram.custom\"; params: { index: string; timestampField: string; good: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); total: ({ field: string; aggregation: \"value_count\"; } & { filter?: string | undefined; }) | ({ field: string; aggregation: \"range\"; from: number; to: number; } & { filter?: string | undefined; }); } & { filter?: string | undefined; }; }; timeWindow: { duration: ", { "pluginId": "@kbn/slo-schema", "scope": "common", @@ -11522,13 +11638,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.enableInspectEsQueries.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -11550,13 +11663,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.enableInspectEsQueries.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -11626,13 +11736,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.maxSuggestions.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -11651,13 +11758,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.maxSuggestions.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -11713,13 +11817,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.enableComparisonByDefault.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -11741,13 +11842,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.enableComparisonByDefault.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -11817,13 +11915,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.defaultApmServiceEnvironment.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -11831,13 +11926,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.defaultApmServiceEnvironment.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -11904,13 +11996,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmProgressiveLoading.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -11918,13 +12007,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmProgressiveLoading.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12041,13 +12127,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmProgressiveLoading.optionLabels.ProgressiveLoadingQuality.off", - "type": "Any", + "type": "string", "tags": [], "label": "[ProgressiveLoadingQuality.off]", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12055,13 +12138,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmProgressiveLoading.optionLabels.ProgressiveLoadingQuality.low", - "type": "Any", + "type": "string", "tags": [], "label": "[ProgressiveLoadingQuality.low]", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12069,13 +12149,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmProgressiveLoading.optionLabels.ProgressiveLoadingQuality.medium", - "type": "Any", + "type": "string", "tags": [], "label": "[ProgressiveLoadingQuality.medium]", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12083,13 +12160,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmProgressiveLoading.optionLabels.ProgressiveLoadingQuality.high", - "type": "Any", + "type": "string", "tags": [], "label": "[ProgressiveLoadingQuality.high]", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12140,13 +12214,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmServiceInventoryOptimizedSorting.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12154,13 +12225,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmServiceInventoryOptimizedSorting.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12272,13 +12340,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmServiceGroupMaxNumberOfServices.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12297,13 +12362,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmServiceGroupMaxNumberOfServices.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12359,13 +12421,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmTraceExplorerTab.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12373,13 +12432,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmTraceExplorerTab.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12491,13 +12547,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmLabsButton.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12505,13 +12558,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmLabsButton.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12609,13 +12659,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.enableInfrastructureHostsView.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12637,13 +12684,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.enableInfrastructureHostsView.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12699,13 +12743,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.enableAwsLambdaMetrics.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12713,13 +12754,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.enableAwsLambdaMetrics.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12831,13 +12869,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.enableAgentExplorerView.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12845,13 +12880,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.enableAgentExplorerView.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12949,13 +12981,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmAWSLambdaPriceFactor.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -12988,13 +13017,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmAWSLambdaPriceFactor.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -13066,13 +13092,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmAWSLambdaRequestCostPerMillion.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -13139,13 +13162,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmEnableServiceMetrics.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -13167,13 +13187,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmEnableServiceMetrics.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -13243,13 +13260,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmEnableContinuousRollups.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -13271,13 +13285,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmEnableContinuousRollups.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -13347,13 +13358,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.enableCriticalPath.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -13361,13 +13369,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.enableCriticalPath.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -13479,13 +13484,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.syntheticsThrottlingEnabled.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -13507,13 +13509,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.syntheticsThrottlingEnabled.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -13583,13 +13582,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.enableLegacyUptimeApp.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -13611,13 +13607,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.enableLegacyUptimeApp.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -13687,13 +13680,10 @@ { "parentPluginId": "observability", "id": "def-server.uiSettings.apmEnableProfilingIntegration.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/server/ui_settings.ts", "deprecated": false, "trackAdoption": false @@ -13964,7 +13954,7 @@ "label": "asInteger", "description": [], "signature": [ - "(value: number | null | undefined) => any" + "(value: number | null | undefined) => string" ], "path": "x-pack/plugins/observability/common/utils/formatters/formatters.ts", "deprecated": false, @@ -13999,7 +13989,7 @@ "signature": [ "(numerator: ", "Maybe", - ", denominator: number | undefined, fallbackResult: any) => any" + ", denominator: number | undefined, fallbackResult: string) => string" ], "path": "x-pack/plugins/observability/common/utils/formatters/formatters.ts", "deprecated": false, @@ -14039,12 +14029,12 @@ { "parentPluginId": "observability", "id": "def-common.asPercent.$3", - "type": "Any", + "type": "string", "tags": [], "label": "fallbackResult", "description": [], "signature": [ - "any" + "string" ], "path": "x-pack/plugins/observability/common/utils/formatters/formatters.ts", "deprecated": false, @@ -14928,7 +14918,7 @@ "signature": [ "(numerator: ", "Maybe", - ", denominator: number | undefined, fallbackResult?: any) => any" + ", denominator: number | undefined, fallbackResult?: string) => string" ], "path": "x-pack/plugins/observability/common/utils/formatters/formatters.ts", "deprecated": false, @@ -14966,13 +14956,10 @@ { "parentPluginId": "observability", "id": "def-common.AsPercent.$3", - "type": "Any", + "type": "string", "tags": [], "label": "fallbackResult", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/observability/common/utils/formatters/formatters.ts", "deprecated": false, "trackAdoption": false diff --git a/api_docs/observability.mdx b/api_docs/observability.mdx index 078841d9806bb..b56f37f94ff54 100644 --- a/api_docs/observability.mdx +++ b/api_docs/observability.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/observability title: "observability" image: https://source.unsplash.com/400x175/?github description: API docs for the observability plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'observability'] --- import observabilityObj from './observability.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/actionable-observability](https://github.com/orgs/elastic/team | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 541 | 46 | 532 | 16 | +| 541 | 2 | 532 | 16 | ## Client diff --git a/api_docs/observability_a_i_assistant.devdocs.json b/api_docs/observability_a_i_assistant.devdocs.json index a72e21c7dcd4e..add55aaff694a 100644 --- a/api_docs/observability_a_i_assistant.devdocs.json +++ b/api_docs/observability_a_i_assistant.devdocs.json @@ -486,8 +486,8 @@ "pluginId": "actions", "scope": "server", "docId": "kibActionsPluginApi", - "section": "def-server.FindActionResult", - "text": "FindActionResult" + "section": "def-server.FindConnectorResult", + "text": "FindConnectorResult" }, "[]>; } & ", "ObservabilityAIAssistantRouteCreateOptions", @@ -819,8 +819,8 @@ "pluginId": "actions", "scope": "server", "docId": "kibActionsPluginApi", - "section": "def-server.FindActionResult", - "text": "FindActionResult" + "section": "def-server.FindConnectorResult", + "text": "FindConnectorResult" }, "[]>; } & ", "ObservabilityAIAssistantRouteCreateOptions", @@ -1258,8 +1258,8 @@ "pluginId": "actions", "scope": "server", "docId": "kibActionsPluginApi", - "section": "def-server.FindActionResult", - "text": "FindActionResult" + "section": "def-server.FindConnectorResult", + "text": "FindConnectorResult" }, "[]>; } & ", "ObservabilityAIAssistantRouteCreateOptions", diff --git a/api_docs/observability_a_i_assistant.mdx b/api_docs/observability_a_i_assistant.mdx index 09485143a3bc5..f753fe36998f0 100644 --- a/api_docs/observability_a_i_assistant.mdx +++ b/api_docs/observability_a_i_assistant.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/observabilityAIAssistant title: "observabilityAIAssistant" image: https://source.unsplash.com/400x175/?github description: API docs for the observabilityAIAssistant plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'observabilityAIAssistant'] --- import observabilityAIAssistantObj from './observability_a_i_assistant.devdocs.json'; diff --git a/api_docs/observability_onboarding.mdx b/api_docs/observability_onboarding.mdx index d334d11abeb06..136c44242be76 100644 --- a/api_docs/observability_onboarding.mdx +++ b/api_docs/observability_onboarding.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/observabilityOnboarding title: "observabilityOnboarding" image: https://source.unsplash.com/400x175/?github description: API docs for the observabilityOnboarding plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'observabilityOnboarding'] --- import observabilityOnboardingObj from './observability_onboarding.devdocs.json'; diff --git a/api_docs/observability_shared.mdx b/api_docs/observability_shared.mdx index 895047172ccfb..2b289bfdb3869 100644 --- a/api_docs/observability_shared.mdx +++ b/api_docs/observability_shared.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/observabilityShared title: "observabilityShared" image: https://source.unsplash.com/400x175/?github description: API docs for the observabilityShared plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'observabilityShared'] --- import observabilitySharedObj from './observability_shared.devdocs.json'; diff --git a/api_docs/osquery.mdx b/api_docs/osquery.mdx index a55fb090cc886..22e28cbb18b9e 100644 --- a/api_docs/osquery.mdx +++ b/api_docs/osquery.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/osquery title: "osquery" image: https://source.unsplash.com/400x175/?github description: API docs for the osquery plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'osquery'] --- import osqueryObj from './osquery.devdocs.json'; diff --git a/api_docs/plugin_directory.mdx b/api_docs/plugin_directory.mdx index f03442577c57d..21150f17c5898 100644 --- a/api_docs/plugin_directory.mdx +++ b/api_docs/plugin_directory.mdx @@ -7,7 +7,7 @@ id: kibDevDocsPluginDirectory slug: /kibana-dev-docs/api-meta/plugin-api-directory title: Directory description: Directory of public APIs available through plugins or packages. -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana'] --- @@ -15,34 +15,35 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Count | Plugins or Packages with a
public API | Number of teams | |--------------|----------|------------------------| -| 664 | 554 | 40 | +| 666 | 556 | 39 | ### Public API health stats | API Count | Any Count | Missing comments | Missing exports | |--------------|----------|-----------------|--------| -| 72187 | 559 | 61676 | 1489 | +| 72265 | 227 | 61729 | 1491 | ## Plugin Directory | Plugin name           | Maintaining team | Description | API Cnt | Any Cnt | Missing
comments | Missing
exports | |--------------|----------------|-----------|--------------|----------|---------------|--------| -| | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 275 | 10 | 269 | 27 | +| | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 267 | 0 | 261 | 28 | | | [@elastic/appex-sharedux @elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/appex-sharedux ) | - | 17 | 1 | 15 | 2 | -| | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | AIOps plugin maintained by ML team. | 60 | 1 | 3 | 0 | +| | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | AIOps plugin maintained by ML team. | 61 | 1 | 3 | 0 | | | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 786 | 1 | 755 | 46 | -| | [@elastic/apm-ui](https://github.com/orgs/elastic/teams/apm-ui) | The user interface for Elastic APM | 48 | 0 | 48 | 120 | +| | [@elastic/apm-ui](https://github.com/orgs/elastic/teams/apm-ui) | The user interface for Elastic APM | 29 | 0 | 29 | 118 | +| | [@elastic/apm-ui](https://github.com/orgs/elastic/teams/apm-ui) | - | 9 | 0 | 9 | 0 | | | [@elastic/infra-monitoring-ui](https://github.com/orgs/elastic/teams/infra-monitoring-ui) | Asset manager plugin for entity assets (inventory, topology, etc) | 2 | 0 | 2 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 9 | 0 | 9 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | Considering using bfetch capabilities when fetching large amounts of data. This services supports batching HTTP requests and streaming responses back. | 91 | 1 | 75 | 2 | | | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds Canvas application to Kibana | 9 | 0 | 8 | 3 | | | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | The Case management system in Kibana | 94 | 0 | 75 | 27 | -| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 268 | 16 | 253 | 10 | +| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 268 | 2 | 253 | 10 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 72 | 0 | 16 | 0 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | Chat available on Elastic Cloud deployments for quicker assistance. | 3 | 0 | 2 | 0 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | This plugin exists as a workaround for using `cloudChat` plugin in plugins which can't have a direct dependency on security plugin. | 5 | 0 | 5 | 0 | -| | [@elastic/platform-onboarding](https://github.com/orgs/elastic/teams/platform-onboarding) | Static migration page where self-managed users can see text/copy about migrating to Elastic Cloud | 8 | 1 | 8 | 1 | -| | [@elastic/sec-cloudnative-integrations](https://github.com/orgs/elastic/teams/sec-cloudnative-integrations) | Defend for containers (D4C) | 52 | 0 | 43 | 2 | +| | [@elastic/platform-onboarding](https://github.com/orgs/elastic/teams/platform-onboarding) | Static migration page where self-managed users can see text/copy about migrating to Elastic Cloud | 8 | 0 | 8 | 1 | +| | [@elastic/kibana-cloud-security-posture](https://github.com/orgs/elastic/teams/kibana-cloud-security-posture) | Defend for containers (D4C) | 52 | 0 | 43 | 2 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | Provides the necessary APIs to implement A/B testing scenarios, fetching the variations in configuration and reporting back metrics to track conversion rates of the experiments. | 12 | 0 | 0 | 0 | | cloudFullStory | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | When Kibana runs on Elastic Cloud, this plugin registers FullStory as a shipper for telemetry. | 0 | 0 | 0 | 0 | | cloudGainsight | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | When Kibana runs on Elastic Cloud, this plugin registers Gainsight as a shipper for telemetry. | 0 | 0 | 0 | 0 | @@ -54,30 +55,30 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | crossClusterReplication | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 0 | 0 | 0 | 0 | | customBranding | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | Enables customization of Kibana | 0 | 0 | 0 | 0 | | | [@elastic/fleet](https://github.com/orgs/elastic/teams/fleet) | Add custom data integrations so they can be displayed in the Fleet integrations app | 268 | 0 | 249 | 1 | -| | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds the Dashboard app to Kibana | 100 | 0 | 98 | 9 | +| | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds the Dashboard app to Kibana | 101 | 0 | 98 | 9 | | | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | - | 54 | 0 | 51 | 0 | -| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Data services are useful for searching and querying data from Elasticsearch. Helpful utilities include: a re-usable react query bar, KQL autocomplete, async search, Data Views (Index Patterns) and field formatters. | 3301 | 119 | 2575 | 27 | +| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Data services are useful for searching and querying data from Elasticsearch. Helpful utilities include: a re-usable react query bar, KQL autocomplete, async search, Data Views (Index Patterns) and field formatters. | 3308 | 33 | 2581 | 26 | | | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | This plugin provides the ability to create data views via a modal flyout inside Kibana apps | 16 | 0 | 7 | 0 | | | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | Reusable data view field editor across Kibana | 72 | 0 | 33 | 0 | | | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | Data view management app | 2 | 0 | 2 | 0 | -| | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | Data services are useful for searching and querying data from Elasticsearch. Helpful utilities include: a re-usable react query bar, KQL autocomplete, async search, Data Views (Index Patterns) and field formatters. | 1024 | 0 | 246 | 2 | +| | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | Data services are useful for searching and querying data from Elasticsearch. Helpful utilities include: a re-usable react query bar, KQL autocomplete, async search, Data Views (Index Patterns) and field formatters. | 1034 | 0 | 254 | 2 | | | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | The Data Visualizer tools help you understand your data, by analyzing the metrics and fields in a log file or an existing Elasticsearch index. | 31 | 3 | 25 | 1 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 12 | 0 | 10 | 3 | | | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | This plugin contains the Discover application and the saved search embeddable. | 79 | 0 | 52 | 15 | | | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | - | 37 | 0 | 35 | 2 | | discoverLogExplorer | [@elastic/infra-monitoring-ui](https://github.com/orgs/elastic/teams/infra-monitoring-ui) | This plugin exposes and registers Logs+ features. | 0 | 0 | 0 | 0 | | | [@elastic/security-threat-hunting-investigations](https://github.com/orgs/elastic/teams/security-threat-hunting-investigations) | APIs used to assess the quality of data in Elasticsearch indexes | 2 | 0 | 0 | 0 | -| | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds embeddables service to Kibana | 537 | 11 | 439 | 7 | +| | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds embeddables service to Kibana | 542 | 1 | 442 | 7 | | | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Extends embeddable plugin with more functionality | 14 | 0 | 14 | 0 | | | [@elastic/kibana-security](https://github.com/orgs/elastic/teams/kibana-security) | This plugin provides encryption and decryption utilities for saved objects containing sensitive information. | 51 | 0 | 44 | 0 | -| | [@elastic/enterprise-search-frontend](https://github.com/orgs/elastic/teams/enterprise-search-frontend) | Adds dashboards for discovering and managing Enterprise Search products. | 10 | 0 | 10 | 0 | +| | [@elastic/enterprise-search-frontend](https://github.com/orgs/elastic/teams/enterprise-search-frontend) | Adds dashboards for discovering and managing Enterprise Search products. | 11 | 0 | 11 | 0 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 115 | 3 | 111 | 3 | -| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | The Event Annotation service contains expressions for event annotations | 195 | 30 | 195 | 5 | +| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | The Event Annotation service contains expressions for event annotations | 195 | 0 | 195 | 5 | | | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 111 | 0 | 111 | 11 | | | [@elastic/uptime](https://github.com/orgs/elastic/teams/uptime) | - | 132 | 1 | 132 | 14 | | | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds 'error' renderer to expressions | 17 | 0 | 15 | 2 | | | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Expression Gauge plugin adds a `gauge` renderer and function to the expression plugin. The renderer will display the `gauge` chart. | 59 | 0 | 59 | 2 | -| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Expression Heatmap plugin adds a `heatmap` renderer and function to the expression plugin. The renderer will display the `heatmap` chart. | 112 | 14 | 108 | 2 | +| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Expression Heatmap plugin adds a `heatmap` renderer and function to the expression plugin. The renderer will display the `heatmap` chart. | 112 | 0 | 108 | 2 | | | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds 'image' function and renderer to expressions | 26 | 0 | 26 | 0 | | | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Adds a `metric` renderer and function to the expression plugin. The renderer will display the `legacy metric` chart. | 51 | 0 | 51 | 2 | | | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds 'metric' function and renderer to expressions | 32 | 0 | 27 | 0 | @@ -88,13 +89,13 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds 'shape' function and renderer to expressions | 148 | 0 | 146 | 0 | | | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Expression Tagcloud plugin adds a `tagcloud` renderer and function to the expression plugin. The renderer will display the `Wordcloud` chart. | 6 | 0 | 6 | 2 | | | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Expression XY plugin adds a `xy` renderer and function to the expression plugin. The renderer will display the `xy` chart. | 175 | 0 | 165 | 13 | -| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Adds expression runtime to Kibana | 2205 | 74 | 1746 | 5 | +| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Adds expression runtime to Kibana | 2205 | 17 | 1746 | 5 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 235 | 0 | 99 | 2 | -| | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | Index pattern fields and ambiguous values formatters | 292 | 26 | 253 | 3 | +| | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | Index pattern fields and ambiguous values formatters | 292 | 5 | 253 | 3 | | | [@elastic/kibana-gis](https://github.com/orgs/elastic/teams/kibana-gis) | The file upload plugin contains components and services for uploading a file, analyzing its data, and then importing the data into an Elasticsearch index. Supported file types include CSV, TSV, newline-delimited JSON and GeoJSON. | 62 | 0 | 62 | 2 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | File upload, download, sharing, and serving over HTTP implementation in Kibana. | 239 | 0 | 24 | 9 | -| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | Simple UI for managing files in Kibana | 2 | 1 | 2 | 0 | -| | [@elastic/fleet](https://github.com/orgs/elastic/teams/fleet) | - | 1188 | 3 | 1072 | 41 | +| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | Simple UI for managing files in Kibana | 2 | 0 | 2 | 0 | +| | [@elastic/fleet](https://github.com/orgs/elastic/teams/fleet) | - | 1189 | 3 | 1073 | 41 | | ftrApis | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 0 | 0 | 0 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 68 | 0 | 14 | 5 | | globalSearchBar | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 0 | 0 | 0 | 0 | @@ -102,25 +103,25 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | graph | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 0 | 0 | 0 | 0 | | grokdebugger | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 0 | 0 | 0 | 0 | | | [@elastic/platform-onboarding](https://github.com/orgs/elastic/teams/platform-onboarding) | Guided onboarding framework | 58 | 0 | 57 | 0 | -| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 145 | 0 | 106 | 0 | +| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 147 | 0 | 108 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | Image embeddable | 3 | 0 | 3 | 1 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 4 | 0 | 4 | 0 | -| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 185 | 0 | 180 | 4 | +| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 182 | 0 | 177 | 4 | | | [@elastic/infra-monitoring-ui](https://github.com/orgs/elastic/teams/infra-monitoring-ui) | This plugin visualizes data from Filebeat and Metricbeat, and integrates with other Observability solutions | 45 | 0 | 42 | 11 | | ingestPipelines | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 0 | 0 | 0 | 0 | | inputControlVis | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds Input Control visualization to Kibana | 0 | 0 | 0 | 0 | | | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | - | 123 | 2 | 96 | 4 | | | [@elastic/kibana-security](https://github.com/orgs/elastic/teams/kibana-security) | This plugin provides UI and APIs for the interactive setup mode. | 28 | 0 | 18 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 6 | 0 | 6 | 0 | -| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 186 | 1 | 147 | 5 | +| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 186 | 0 | 147 | 5 | | kibanaUsageCollection | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 0 | 0 | 0 | 0 | -| | [@elastic/kibana-app-services](https://github.com/orgs/elastic/teams/kibana-app-services) | - | 609 | 3 | 416 | 9 | -| | [@elastic/sec-cloudnative-integrations](https://github.com/orgs/elastic/teams/sec-cloudnative-integrations) | - | 5 | 0 | 5 | 1 | +| | [@elastic/kibana-app-services](https://github.com/orgs/elastic/teams/kibana-app-services) | - | 610 | 3 | 417 | 9 | +| | [@elastic/kibana-cloud-security-posture](https://github.com/orgs/elastic/teams/kibana-cloud-security-posture) | - | 5 | 0 | 5 | 1 | | | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Visualization editor allowing to quickly and easily configure compelling visualizations to use on dashboards and canvas workpads. Exposes components to embed visualizations and link into the Lens editor from within other apps in Kibana. | 616 | 0 | 519 | 61 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 8 | 0 | 8 | 0 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 4 | 0 | 4 | 1 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 117 | 0 | 42 | 10 | -| | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 210 | 0 | 94 | 51 | +| | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 222 | 0 | 96 | 51 | | | [@elastic/infra-monitoring-ui](https://github.com/orgs/elastic/teams/infra-monitoring-ui) | Exposes the shared components and APIs to access and visualize logs. | 269 | 10 | 256 | 27 | | logstash | [@elastic/logstash](https://github.com/orgs/elastic/teams/logstash) | - | 0 | 0 | 0 | 0 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 47 | 0 | 47 | 7 | @@ -132,14 +133,14 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 34 | 0 | 34 | 2 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 17 | 0 | 17 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 2 | 0 | 2 | 1 | -| | [@elastic/actionable-observability](https://github.com/orgs/elastic/teams/actionable-observability) | - | 541 | 46 | 532 | 16 | +| | [@elastic/actionable-observability](https://github.com/orgs/elastic/teams/actionable-observability) | - | 541 | 2 | 532 | 16 | | | [@elastic/obs-ai-assistant](https://github.com/orgs/elastic/teams/obs-ai-assistant) | - | 42 | 0 | 39 | 7 | | | [@elastic/apm-ui](https://github.com/orgs/elastic/teams/apm-ui) | - | 14 | 0 | 14 | 0 | | | [@elastic/observability-ui](https://github.com/orgs/elastic/teams/observability-ui) | - | 277 | 1 | 276 | 11 | | | [@elastic/security-defend-workflows](https://github.com/orgs/elastic/teams/security-defend-workflows) | - | 24 | 0 | 24 | 7 | | painlessLab | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 0 | 0 | 0 | 0 | -| | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | The Presentation Utility Plugin is a set of common, shared components and toolkits for solutions within the Presentation space, (e.g. Dashboards, Canvas). | 218 | 8 | 164 | 11 | -| | [@elastic/profiling-ui](https://github.com/orgs/elastic/teams/profiling-ui) | - | 19 | 2 | 19 | 3 | +| | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | The Presentation Utility Plugin is a set of common, shared components and toolkits for solutions within the Presentation space, (e.g. Dashboards, Canvas). | 218 | 2 | 164 | 11 | +| | [@elastic/profiling-ui](https://github.com/orgs/elastic/teams/profiling-ui) | - | 19 | 1 | 19 | 3 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 4 | 0 | 4 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | Reporting Services enables applications to feature reports that the user can automate with Watcher and download later. | 42 | 0 | 22 | 5 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 21 | 0 | 21 | 0 | @@ -155,13 +156,13 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/kibana-reporting-services](https://github.com/orgs/elastic/teams/kibana-reporting-services) | Kibana Screenshotting Plugin | 27 | 0 | 8 | 5 | | searchprofiler | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 0 | 0 | 0 | 0 | | | [@elastic/kibana-security](https://github.com/orgs/elastic/teams/kibana-security) | This plugin provides authentication and authorization features, and exposes functionality to understand the capabilities of the currently authenticated user. | 270 | 0 | 87 | 3 | -| | [@elastic/security-solution](https://github.com/orgs/elastic/teams/security-solution) | - | 195 | 3 | 129 | 34 | +| | [@elastic/security-solution](https://github.com/orgs/elastic/teams/security-solution) | - | 177 | 3 | 111 | 34 | | | [@elastic/security-solution](https://github.com/orgs/elastic/teams/security-solution) | ESS customizations for Security Solution. | 6 | 0 | 6 | 0 | | | [@elastic/security-solution](https://github.com/orgs/elastic/teams/security-solution) | Serverless customizations for security. | 6 | 0 | 6 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | The core Serverless plugin, providing APIs to Serverless Project plugins. | 17 | 0 | 16 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | Serverless customizations for observability. | 6 | 0 | 6 | 0 | | | [@elastic/enterprise-search-frontend](https://github.com/orgs/elastic/teams/enterprise-search-frontend) | Serverless customizations for search. | 6 | 0 | 6 | 0 | -| | [@elastic/sec-cloudnative-integrations](https://github.com/orgs/elastic/teams/sec-cloudnative-integrations) | - | 134 | 0 | 134 | 8 | +| | [@elastic/kibana-cloud-security-posture](https://github.com/orgs/elastic/teams/kibana-cloud-security-posture) | - | 134 | 0 | 134 | 8 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | Adds URL Service and sharing capabilities to Kibana | 119 | 0 | 60 | 10 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 22 | 1 | 22 | 1 | | | [@elastic/kibana-security](https://github.com/orgs/elastic/teams/kibana-security) | This plugin provides the Spaces feature, which allows saved objects to be organized into meaningful categories. | 253 | 0 | 65 | 0 | @@ -178,8 +179,8 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/security-threat-hunting-investigations](https://github.com/orgs/elastic/teams/security-threat-hunting-investigations) | - | 257 | 1 | 213 | 22 | | | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | This plugin provides access to the transforms features provided by Elastic. Transforms enable you to convert existing Elasticsearch indices into summarized indices, which provide opportunities for new insights and analytics. | 4 | 0 | 4 | 1 | | translations | [@elastic/kibana-localization](https://github.com/orgs/elastic/teams/kibana-localization) | - | 0 | 0 | 0 | 0 | -| | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 571 | 12 | 545 | 50 | -| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | Adds UI Actions service to Kibana | 145 | 2 | 103 | 9 | +| | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 573 | 1 | 547 | 51 | +| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | Adds UI Actions service to Kibana | 145 | 0 | 103 | 9 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | Extends UI Actions plugin with more functionality | 206 | 0 | 140 | 9 | | | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | The `unifiedHistogram` plugin provides UI components to create a layout including a resizable histogram and a main display. | 53 | 0 | 23 | 2 | | | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Contains all the key functionality of Kibana's unified search experience.Contains all the key functionality of Kibana's unified search experience. | 142 | 2 | 104 | 22 | @@ -212,6 +213,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 11 | 5 | 11 | 0 | | | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 33 | 0 | 0 | 0 | | | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 20 | 0 | 0 | 0 | +| | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 24 | 3 | 24 | 0 | | | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 16 | 0 | 15 | 0 | | | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 25 | 0 | 25 | 0 | | | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 8 | 0 | 7 | 1 | @@ -240,7 +242,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 116 | 0 | 90 | 1 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 75 | 0 | 46 | 10 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 24 | 0 | 24 | 0 | -| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 135 | 3 | 133 | 18 | +| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 140 | 3 | 137 | 18 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 6 | 0 | 4 | 4 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 14 | 0 | 14 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 9 | 0 | 9 | 0 | @@ -361,7 +363,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 4 | 0 | 4 | 1 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 25 | 1 | 24 | 0 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 111 | 1 | 0 | 0 | -| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 351 | 1 | 5 | 1 | +| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 351 | 1 | 7 | 1 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 11 | 0 | 11 | 0 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 89 | 0 | 61 | 10 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 4 | 0 | 4 | 0 | @@ -384,7 +386,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 4 | 0 | 4 | 0 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 11 | 0 | 11 | 0 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 5 | 0 | 5 | 0 | -| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 55 | 1 | 49 | 0 | +| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 61 | 1 | 54 | 1 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 15 | 0 | 14 | 1 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 9 | 0 | 9 | 0 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 6 | 0 | 4 | 0 | @@ -396,7 +398,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 32 | 1 | 16 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 18 | 1 | 17 | 3 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 6 | 0 | 6 | 0 | -| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 153 | 0 | 142 | 0 | +| | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 155 | 0 | 144 | 0 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 8 | 0 | 8 | 2 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 7 | 0 | 7 | 0 | | | [@elastic/kibana-security](https://github.com/orgs/elastic/teams/kibana-security) | - | 6 | 0 | 6 | 0 | @@ -413,30 +415,30 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 3 | 0 | 3 | 0 | | | [@elastic/apm-ui](https://github.com/orgs/elastic/teams/apm-ui) | - | 3 | 0 | 3 | 0 | | | [@elastic/enterprise-search-frontend](https://github.com/orgs/elastic/teams/enterprise-search-frontend) | - | 4 | 0 | 4 | 0 | -| | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | - | 7 | 1 | 7 | 0 | -| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 7 | 1 | 7 | 0 | -| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 7 | 1 | 7 | 0 | -| | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 7 | 1 | 7 | 0 | +| | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | - | 7 | 0 | 7 | 0 | +| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 7 | 0 | 7 | 0 | +| | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 7 | 0 | 7 | 0 | +| | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 7 | 0 | 7 | 0 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 9 | 1 | 9 | 0 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 101 | 0 | 85 | 0 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 15 | 0 | 9 | 0 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 27 | 2 | 24 | 0 | | | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | - | 59 | 0 | 34 | 3 | -| | [@elastic/docs](https://github.com/orgs/elastic/teams/docs) | - | 72 | 0 | 72 | 2 | +| | [@elastic/docs](https://github.com/orgs/elastic/teams/docs) | - | 73 | 0 | 73 | 2 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 1 | 0 | 1 | 0 | | | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 39 | 0 | 26 | 5 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 19 | 0 | 11 | 0 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 35125 | 0 | 34718 | 0 | -| | [@elastic/security-threat-hunting-investigations](https://github.com/orgs/elastic/teams/security-threat-hunting-investigations) | - | 13 | 2 | 5 | 0 | -| | [@elastic/security-solution](https://github.com/orgs/elastic/teams/security-solution) | - | 77 | 2 | 58 | 4 | +| | [@elastic/security-threat-hunting-investigations](https://github.com/orgs/elastic/teams/security-threat-hunting-investigations) | - | 13 | 0 | 5 | 0 | +| | [@elastic/security-solution](https://github.com/orgs/elastic/teams/security-solution) | - | 84 | 0 | 64 | 5 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 4 | 0 | 4 | 0 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 27 | 0 | 14 | 1 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 7 | 0 | 3 | 0 | | | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | - | 255 | 1 | 195 | 15 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 12 | 0 | 12 | 0 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 2 | 0 | 1 | 0 | -| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 39 | 1 | 39 | 0 | -| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 65 | 1 | 65 | 1 | +| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 39 | 0 | 39 | 0 | +| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 65 | 0 | 65 | 1 | | | [@elastic/security-threat-hunting-investigations](https://github.com/orgs/elastic/teams/security-threat-hunting-investigations) | - | 36 | 0 | 14 | 3 | | | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | - | 20 | 0 | 16 | 0 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 2 | 0 | 0 | 0 | @@ -476,7 +478,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 37 | 0 | 0 | 0 | | | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 152 | 1 | 0 | 0 | | | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 141 | 0 | 5 | 0 | -| | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 52 | 0 | 4 | 0 | +| | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 47 | 0 | 0 | 0 | | | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 11 | 0 | 0 | 0 | | | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 36 | 4 | 8 | 0 | | | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 11 | 0 | 0 | 0 | @@ -491,7 +493,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 5 | 0 | 0 | 0 | | | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 8 | 0 | 0 | 0 | | | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 2 | 0 | 1 | 0 | -| | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 8 | 1 | 8 | 0 | +| | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 8 | 0 | 8 | 0 | | | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | - | 31 | 1 | 24 | 1 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 71 | 0 | 69 | 3 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 55 | 1 | 50 | 0 | @@ -519,7 +521,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 16 | 0 | 16 | 1 | | | [@elastic/security-detections-response](https://github.com/orgs/elastic/teams/security-detections-response) | - | 107 | 0 | 104 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 2 | 0 | 2 | 0 | -| | [@elastic/enterprise-search-frontend](https://github.com/orgs/elastic/teams/enterprise-search-frontend) | - | 58 | 1 | 58 | 0 | +| | [@elastic/enterprise-search-frontend](https://github.com/orgs/elastic/teams/enterprise-search-frontend) | - | 64 | 1 | 64 | 0 | | | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | - | 16 | 0 | 8 | 0 | | | [@elastic/security-threat-hunting-explore](https://github.com/orgs/elastic/teams/security-threat-hunting-explore) | - | 50 | 0 | 47 | 0 | | | [@elastic/security-threat-hunting-explore](https://github.com/orgs/elastic/teams/security-threat-hunting-explore) | - | 29 | 0 | 23 | 0 | @@ -527,21 +529,21 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 56 | 1 | 41 | 1 | | | [@elastic/security-threat-hunting-investigations](https://github.com/orgs/elastic/teams/security-threat-hunting-investigations) | - | 95 | 0 | 72 | 7 | | | [@elastic/security-threat-hunting-explore](https://github.com/orgs/elastic/teams/security-threat-hunting-explore) | - | 341 | 1 | 337 | 32 | -| | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 68 | 0 | 62 | 1 | +| | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 89 | 0 | 78 | 1 | | | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 104 | 0 | 93 | 1 | | | [@elastic/security-threat-hunting-explore](https://github.com/orgs/elastic/teams/security-threat-hunting-explore) | - | 17 | 0 | 12 | 7 | | | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 15 | 0 | 7 | 0 | | | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 147 | 0 | 125 | 0 | -| | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 528 | 0 | 515 | 0 | +| | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 532 | 0 | 519 | 0 | | | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 67 | 0 | 37 | 0 | | | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 28 | 0 | 21 | 0 | | | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 69 | 0 | 65 | 0 | | | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 35 | 0 | 23 | 0 | | | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 62 | 0 | 49 | 0 | -| | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 207 | 10 | 160 | 0 | +| | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 207 | 0 | 160 | 0 | | | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 26 | 0 | 23 | 0 | | | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 120 | 0 | 116 | 0 | -| | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 31 | 2 | 29 | 0 | +| | [@elastic/security-detection-engine](https://github.com/orgs/elastic/teams/security-detection-engine) | - | 31 | 0 | 29 | 0 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 54 | 0 | 51 | 1 | | | [@elastic/apm-ui](https://github.com/orgs/elastic/teams/apm-ui) | - | 31 | 0 | 30 | 1 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 10 | 0 | 7 | 1 | @@ -586,7 +588,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 2 | 0 | 0 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 15 | 0 | 4 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 9 | 0 | 3 | 0 | -| | [@elastic/actionable-observability](https://github.com/orgs/elastic/teams/actionable-observability) | - | 130 | 0 | 130 | 0 | +| | [@elastic/actionable-observability](https://github.com/orgs/elastic/teams/actionable-observability) | - | 133 | 0 | 130 | 0 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 20 | 0 | 12 | 0 | | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 102 | 2 | 65 | 1 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 4 | 0 | 2 | 0 | @@ -599,7 +601,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 72 | 0 | 55 | 0 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 39 | 0 | 25 | 1 | | | [@elastic/apm-ui](https://github.com/orgs/elastic/teams/apm-ui) | - | 86 | 0 | 86 | 1 | -| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 49 | 2 | 35 | 0 | +| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 49 | 0 | 35 | 0 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 47 | 0 | 38 | 0 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 7 | 0 | 6 | 0 | | | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | Contains functionality for the field list and field stats which can be integrated into apps | 306 | 0 | 277 | 9 | @@ -609,6 +611,6 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 36 | 0 | 15 | 1 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 2 | 0 | 2 | 0 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 24 | 0 | 14 | 0 | -| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 155 | 1 | 151 | 3 | +| | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | - | 155 | 0 | 151 | 3 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 6 | 0 | 2 | 0 | diff --git a/api_docs/presentation_util.devdocs.json b/api_docs/presentation_util.devdocs.json index fa2eee15cf28c..9582e337fbb17 100644 --- a/api_docs/presentation_util.devdocs.json +++ b/api_docs/presentation_util.devdocs.json @@ -3785,13 +3785,10 @@ { "parentPluginId": "presentationUtil", "id": "def-common.projects.DEFER_BELOW_FOLD.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, "trackAdoption": false @@ -3799,13 +3796,10 @@ { "parentPluginId": "presentationUtil", "id": "def-common.projects.DEFER_BELOW_FOLD.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, "trackAdoption": false @@ -3896,13 +3890,10 @@ { "parentPluginId": "presentationUtil", "id": "def-common.projects.DASHBOARD_CONTROLS.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, "trackAdoption": false @@ -3910,13 +3901,10 @@ { "parentPluginId": "presentationUtil", "id": "def-common.projects.DASHBOARD_CONTROLS.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, "trackAdoption": false @@ -4007,13 +3995,10 @@ { "parentPluginId": "presentationUtil", "id": "def-common.projects.BY_VALUE_EMBEDDABLE.name", - "type": "Any", + "type": "string", "tags": [], "label": "name", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, "trackAdoption": false @@ -4021,13 +4006,10 @@ { "parentPluginId": "presentationUtil", "id": "def-common.projects.BY_VALUE_EMBEDDABLE.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, "trackAdoption": false diff --git a/api_docs/presentation_util.mdx b/api_docs/presentation_util.mdx index 041e9bb457efe..4537f1aaa382e 100644 --- a/api_docs/presentation_util.mdx +++ b/api_docs/presentation_util.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/presentationUtil title: "presentationUtil" image: https://source.unsplash.com/400x175/?github description: API docs for the presentationUtil plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'presentationUtil'] --- import presentationUtilObj from './presentation_util.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kib | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 218 | 8 | 164 | 11 | +| 218 | 2 | 164 | 11 | ## Client diff --git a/api_docs/profiling.devdocs.json b/api_docs/profiling.devdocs.json index 11469e74de24f..c6b864a1e228a 100644 --- a/api_docs/profiling.devdocs.json +++ b/api_docs/profiling.devdocs.json @@ -335,13 +335,10 @@ { "parentPluginId": "profiling", "id": "def-common.NOT_AVAILABLE_LABEL", - "type": "Any", + "type": "string", "tags": [], "label": "NOT_AVAILABLE_LABEL", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/profiling/common/index.ts", "deprecated": false, "trackAdoption": false, diff --git a/api_docs/profiling.mdx b/api_docs/profiling.mdx index 796304b388ec8..666c0b0728b34 100644 --- a/api_docs/profiling.mdx +++ b/api_docs/profiling.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/profiling title: "profiling" image: https://source.unsplash.com/400x175/?github description: API docs for the profiling plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'profiling'] --- import profilingObj from './profiling.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/profiling-ui](https://github.com/orgs/elastic/teams/profiling- | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 19 | 2 | 19 | 3 | +| 19 | 1 | 19 | 3 | ## Client diff --git a/api_docs/remote_clusters.mdx b/api_docs/remote_clusters.mdx index d158b823aa966..48964ea52d155 100644 --- a/api_docs/remote_clusters.mdx +++ b/api_docs/remote_clusters.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/remoteClusters title: "remoteClusters" image: https://source.unsplash.com/400x175/?github description: API docs for the remoteClusters plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'remoteClusters'] --- import remoteClustersObj from './remote_clusters.devdocs.json'; diff --git a/api_docs/reporting.mdx b/api_docs/reporting.mdx index 6d39091749d8c..7408291672e89 100644 --- a/api_docs/reporting.mdx +++ b/api_docs/reporting.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/reporting title: "reporting" image: https://source.unsplash.com/400x175/?github description: API docs for the reporting plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'reporting'] --- import reportingObj from './reporting.devdocs.json'; diff --git a/api_docs/rollup.mdx b/api_docs/rollup.mdx index c835f9274e239..28839dcda51e7 100644 --- a/api_docs/rollup.mdx +++ b/api_docs/rollup.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/rollup title: "rollup" image: https://source.unsplash.com/400x175/?github description: API docs for the rollup plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'rollup'] --- import rollupObj from './rollup.devdocs.json'; diff --git a/api_docs/rule_registry.mdx b/api_docs/rule_registry.mdx index 7a7dd9b1254ce..01e12cb14489c 100644 --- a/api_docs/rule_registry.mdx +++ b/api_docs/rule_registry.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/ruleRegistry title: "ruleRegistry" image: https://source.unsplash.com/400x175/?github description: API docs for the ruleRegistry plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ruleRegistry'] --- import ruleRegistryObj from './rule_registry.devdocs.json'; diff --git a/api_docs/runtime_fields.mdx b/api_docs/runtime_fields.mdx index 245417dc183ff..4b267e9becdbe 100644 --- a/api_docs/runtime_fields.mdx +++ b/api_docs/runtime_fields.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/runtimeFields title: "runtimeFields" image: https://source.unsplash.com/400x175/?github description: API docs for the runtimeFields plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'runtimeFields'] --- import runtimeFieldsObj from './runtime_fields.devdocs.json'; diff --git a/api_docs/saved_objects.mdx b/api_docs/saved_objects.mdx index 5a8562e32b3bf..4a9281d014c6f 100644 --- a/api_docs/saved_objects.mdx +++ b/api_docs/saved_objects.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjects title: "savedObjects" image: https://source.unsplash.com/400x175/?github description: API docs for the savedObjects plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjects'] --- import savedObjectsObj from './saved_objects.devdocs.json'; diff --git a/api_docs/saved_objects_finder.mdx b/api_docs/saved_objects_finder.mdx index ab4912dce6121..3376746a8adbb 100644 --- a/api_docs/saved_objects_finder.mdx +++ b/api_docs/saved_objects_finder.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjectsFinder title: "savedObjectsFinder" image: https://source.unsplash.com/400x175/?github description: API docs for the savedObjectsFinder plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsFinder'] --- import savedObjectsFinderObj from './saved_objects_finder.devdocs.json'; diff --git a/api_docs/saved_objects_management.mdx b/api_docs/saved_objects_management.mdx index caec5c09c86f3..421169a7d23b0 100644 --- a/api_docs/saved_objects_management.mdx +++ b/api_docs/saved_objects_management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjectsManagement title: "savedObjectsManagement" image: https://source.unsplash.com/400x175/?github description: API docs for the savedObjectsManagement plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsManagement'] --- import savedObjectsManagementObj from './saved_objects_management.devdocs.json'; diff --git a/api_docs/saved_objects_tagging.mdx b/api_docs/saved_objects_tagging.mdx index 46e4834cf5c93..e2c292d5cc3c5 100644 --- a/api_docs/saved_objects_tagging.mdx +++ b/api_docs/saved_objects_tagging.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjectsTagging title: "savedObjectsTagging" image: https://source.unsplash.com/400x175/?github description: API docs for the savedObjectsTagging plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsTagging'] --- import savedObjectsTaggingObj from './saved_objects_tagging.devdocs.json'; diff --git a/api_docs/saved_objects_tagging_oss.mdx b/api_docs/saved_objects_tagging_oss.mdx index 6b22233136fad..3e74104fb3386 100644 --- a/api_docs/saved_objects_tagging_oss.mdx +++ b/api_docs/saved_objects_tagging_oss.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjectsTaggingOss title: "savedObjectsTaggingOss" image: https://source.unsplash.com/400x175/?github description: API docs for the savedObjectsTaggingOss plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsTaggingOss'] --- import savedObjectsTaggingOssObj from './saved_objects_tagging_oss.devdocs.json'; diff --git a/api_docs/saved_search.mdx b/api_docs/saved_search.mdx index c88777ba19588..f2faf5e7be486 100644 --- a/api_docs/saved_search.mdx +++ b/api_docs/saved_search.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedSearch title: "savedSearch" image: https://source.unsplash.com/400x175/?github description: API docs for the savedSearch plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedSearch'] --- import savedSearchObj from './saved_search.devdocs.json'; diff --git a/api_docs/screenshot_mode.mdx b/api_docs/screenshot_mode.mdx index 4e7b2321a2786..840454485a5dd 100644 --- a/api_docs/screenshot_mode.mdx +++ b/api_docs/screenshot_mode.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/screenshotMode title: "screenshotMode" image: https://source.unsplash.com/400x175/?github description: API docs for the screenshotMode plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'screenshotMode'] --- import screenshotModeObj from './screenshot_mode.devdocs.json'; diff --git a/api_docs/screenshotting.mdx b/api_docs/screenshotting.mdx index f264d22440b01..008e51de23d88 100644 --- a/api_docs/screenshotting.mdx +++ b/api_docs/screenshotting.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/screenshotting title: "screenshotting" image: https://source.unsplash.com/400x175/?github description: API docs for the screenshotting plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'screenshotting'] --- import screenshottingObj from './screenshotting.devdocs.json'; diff --git a/api_docs/security.devdocs.json b/api_docs/security.devdocs.json index f948514fa2fae..cb7f0176a308f 100644 --- a/api_docs/security.devdocs.json +++ b/api_docs/security.devdocs.json @@ -3210,10 +3210,6 @@ "plugin": "ml", "path": "x-pack/plugins/ml/server/routes/annotations.ts" }, - { - "plugin": "logstash", - "path": "x-pack/plugins/logstash/server/routes/pipeline/save.ts" - }, { "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/server/request_context_factory.ts" @@ -3238,6 +3234,10 @@ "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/open_close_signals_route.ts" }, + { + "plugin": "logstash", + "path": "x-pack/plugins/logstash/server/routes/pipeline/save.ts" + }, { "plugin": "cloudChat", "path": "x-pack/plugins/cloud_integrations/cloud_chat/server/routes/chat.ts" @@ -3278,6 +3278,10 @@ "plugin": "ml", "path": "x-pack/plugins/ml/server/saved_objects/initialization/initialization.ts" }, + { + "plugin": "savedObjectsTagging", + "path": "x-pack/plugins/saved_objects_tagging/server/request_handler_context.ts" + }, { "plugin": "ml", "path": "x-pack/plugins/ml/server/saved_objects/sync_task.ts" @@ -3290,10 +3294,6 @@ "plugin": "ml", "path": "x-pack/plugins/ml/server/plugin.ts" }, - { - "plugin": "savedObjectsTagging", - "path": "x-pack/plugins/saved_objects_tagging/server/request_handler_context.ts" - }, { "plugin": "enterpriseSearch", "path": "x-pack/plugins/enterprise_search/server/lib/check_access.ts" diff --git a/api_docs/security.mdx b/api_docs/security.mdx index bf9a4ea869395..e2059f2c5d448 100644 --- a/api_docs/security.mdx +++ b/api_docs/security.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/security title: "security" image: https://source.unsplash.com/400x175/?github description: API docs for the security plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'security'] --- import securityObj from './security.devdocs.json'; diff --git a/api_docs/security_solution.devdocs.json b/api_docs/security_solution.devdocs.json index 555399636c3d2..e9b4ad63731a2 100644 --- a/api_docs/security_solution.devdocs.json +++ b/api_docs/security_solution.devdocs.json @@ -390,357 +390,6 @@ } ], "initialIsOpen": false - }, - { - "parentPluginId": "securitySolution", - "id": "def-public.UpsellingService", - "type": "Class", - "tags": [], - "label": "UpsellingService", - "description": [], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts", - "deprecated": false, - "trackAdoption": false, - "children": [ - { - "parentPluginId": "securitySolution", - "id": "def-public.UpsellingService.sections$", - "type": "Object", - "tags": [], - "label": "sections$", - "description": [], - "signature": [ - "Observable", - ">>" - ], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "securitySolution", - "id": "def-public.UpsellingService.pages$", - "type": "Object", - "tags": [], - "label": "pages$", - "description": [], - "signature": [ - "Observable", - ">>" - ], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "securitySolution", - "id": "def-public.UpsellingService.messages$", - "type": "Object", - "tags": [], - "label": "messages$", - "description": [], - "signature": [ - "Observable", - ">" - ], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts", - "deprecated": false, - "trackAdoption": false - }, - { - "parentPluginId": "securitySolution", - "id": "def-public.UpsellingService.Unnamed", - "type": "Function", - "tags": [], - "label": "Constructor", - "description": [], - "signature": [ - "any" - ], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts", - "deprecated": false, - "trackAdoption": false, - "children": [], - "returnComment": [] - }, - { - "parentPluginId": "securitySolution", - "id": "def-public.UpsellingService.setSections", - "type": "Function", - "tags": [], - "label": "setSections", - "description": [], - "signature": [ - "(sections: Partial>>) => void" - ], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts", - "deprecated": false, - "trackAdoption": false, - "children": [ - { - "parentPluginId": "securitySolution", - "id": "def-public.UpsellingService.setSections.$1", - "type": "Object", - "tags": [], - "label": "sections", - "description": [], - "signature": [ - "Partial>>" - ], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts", - "deprecated": false, - "trackAdoption": false, - "isRequired": true - } - ], - "returnComment": [] - }, - { - "parentPluginId": "securitySolution", - "id": "def-public.UpsellingService.setPages", - "type": "Function", - "tags": [], - "label": "setPages", - "description": [], - "signature": [ - "(pages: Partial>>) => void" - ], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts", - "deprecated": false, - "trackAdoption": false, - "children": [ - { - "parentPluginId": "securitySolution", - "id": "def-public.UpsellingService.setPages.$1", - "type": "Object", - "tags": [], - "label": "pages", - "description": [], - "signature": [ - "Partial>>" - ], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts", - "deprecated": false, - "trackAdoption": false, - "isRequired": true - } - ], - "returnComment": [] - }, - { - "parentPluginId": "securitySolution", - "id": "def-public.UpsellingService.setMessages", - "type": "Function", - "tags": [], - "label": "setMessages", - "description": [], - "signature": [ - "(messages: Partial>) => void" - ], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts", - "deprecated": false, - "trackAdoption": false, - "children": [ - { - "parentPluginId": "securitySolution", - "id": "def-public.UpsellingService.setMessages.$1", - "type": "Object", - "tags": [], - "label": "messages", - "description": [], - "signature": [ - "Partial>" - ], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts", - "deprecated": false, - "trackAdoption": false, - "isRequired": true - } - ], - "returnComment": [] - }, - { - "parentPluginId": "securitySolution", - "id": "def-public.UpsellingService.isPageUpsellable", - "type": "Function", - "tags": [], - "label": "isPageUpsellable", - "description": [], - "signature": [ - "(id: ", - { - "pluginId": "@kbn/security-solution-navigation", - "scope": "common", - "docId": "kibKbnSecuritySolutionNavigationPluginApi", - "section": "def-common.SecurityPageName", - "text": "SecurityPageName" - }, - ") => boolean" - ], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts", - "deprecated": false, - "trackAdoption": false, - "children": [ - { - "parentPluginId": "securitySolution", - "id": "def-public.UpsellingService.isPageUpsellable.$1", - "type": "Enum", - "tags": [], - "label": "id", - "description": [], - "signature": [ - { - "pluginId": "@kbn/security-solution-navigation", - "scope": "common", - "docId": "kibKbnSecuritySolutionNavigationPluginApi", - "section": "def-common.SecurityPageName", - "text": "SecurityPageName" - } - ], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts", - "deprecated": false, - "trackAdoption": false, - "isRequired": true - } - ], - "returnComment": [] - }, - { - "parentPluginId": "securitySolution", - "id": "def-public.UpsellingService.getPageUpselling", - "type": "Function", - "tags": [], - "label": "getPageUpselling", - "description": [], - "signature": [ - "(id: ", - { - "pluginId": "@kbn/security-solution-navigation", - "scope": "common", - "docId": "kibKbnSecuritySolutionNavigationPluginApi", - "section": "def-common.SecurityPageName", - "text": "SecurityPageName" - }, - ") => React.ComponentType<{}> | undefined" - ], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts", - "deprecated": false, - "trackAdoption": false, - "children": [ - { - "parentPluginId": "securitySolution", - "id": "def-public.UpsellingService.getPageUpselling.$1", - "type": "Enum", - "tags": [], - "label": "id", - "description": [], - "signature": [ - { - "pluginId": "@kbn/security-solution-navigation", - "scope": "common", - "docId": "kibKbnSecuritySolutionNavigationPluginApi", - "section": "def-common.SecurityPageName", - "text": "SecurityPageName" - } - ], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts", - "deprecated": false, - "trackAdoption": false, - "isRequired": true - } - ], - "returnComment": [] - }, - { - "parentPluginId": "securitySolution", - "id": "def-public.UpsellingService.getSectionsValue", - "type": "Function", - "tags": [], - "label": "getSectionsValue", - "description": [], - "signature": [ - "() => Map<", - { - "pluginId": "securitySolution", - "scope": "public", - "docId": "kibSecuritySolutionPluginApi", - "section": "def-public.UpsellingSectionId", - "text": "UpsellingSectionId" - }, - ", React.ComponentType<{}>>" - ], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts", - "deprecated": false, - "trackAdoption": false, - "children": [], - "returnComment": [] - }, - { - "parentPluginId": "securitySolution", - "id": "def-public.UpsellingService.getMessagesValue", - "type": "Function", - "tags": [], - "label": "getMessagesValue", - "description": [], - "signature": [ - "() => Map<\"investigation_guide\", string>" - ], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts", - "deprecated": false, - "trackAdoption": false, - "children": [], - "returnComment": [] - } - ], - "initialIsOpen": false } ], "functions": [], @@ -2061,53 +1710,7 @@ } ], "enums": [], - "misc": [ - { - "parentPluginId": "securitySolution", - "id": "def-public.PageUpsellings", - "type": "Type", - "tags": [], - "label": "PageUpsellings", - "description": [], - "signature": [ - "{ administration?: React.ComponentType<{}> | undefined; alerts?: React.ComponentType<{}> | undefined; assets?: React.ComponentType<{}> | undefined; blocklist?: React.ComponentType<{}> | undefined; cases?: React.ComponentType<{}> | undefined; cases_configure?: React.ComponentType<{}> | undefined; cases_create?: React.ComponentType<{}> | undefined; \"cloud_security_posture-benchmarks\"?: React.ComponentType<{}> | undefined; \"cloud_security_posture-dashboard\"?: React.ComponentType<{}> | undefined; \"cloud_security_posture-findings\"?: React.ComponentType<{}> | undefined; \"cloud_security_posture-rules\"?: React.ComponentType<{}> | undefined; cloud_defend?: React.ComponentType<{}> | undefined; \"cloud_defend-policies\"?: React.ComponentType<{}> | undefined; dashboards?: React.ComponentType<{}> | undefined; data_quality?: React.ComponentType<{}> | undefined; detections?: React.ComponentType<{}> | undefined; detection_response?: React.ComponentType<{}> | undefined; endpoints?: React.ComponentType<{}> | undefined; event_filters?: React.ComponentType<{}> | undefined; exceptions?: React.ComponentType<{}> | undefined; explore?: React.ComponentType<{}> | undefined; host_isolation_exceptions?: React.ComponentType<{}> | undefined; hosts?: React.ComponentType<{}> | undefined; \"hosts-anomalies\"?: React.ComponentType<{}> | undefined; \"hosts-risk\"?: React.ComponentType<{}> | undefined; \"hosts-events\"?: React.ComponentType<{}> | undefined; investigations?: React.ComponentType<{}> | undefined; kubernetes?: React.ComponentType<{}> | undefined; get_started?: React.ComponentType<{}> | undefined; \"machine_learning-landing\"?: React.ComponentType<{}> | undefined; network?: React.ComponentType<{}> | undefined; \"network-anomalies\"?: React.ComponentType<{}> | undefined; \"network-dns\"?: React.ComponentType<{}> | undefined; \"network-events\"?: React.ComponentType<{}> | undefined; \"network-http\"?: React.ComponentType<{}> | undefined; \"network-tls\"?: React.ComponentType<{}> | undefined; \"\"?: React.ComponentType<{}> | undefined; overview?: React.ComponentType<{}> | undefined; policy?: React.ComponentType<{}> | undefined; project_settings?: React.ComponentType<{}> | undefined; response_actions_history?: React.ComponentType<{}> | undefined; rules?: React.ComponentType<{}> | undefined; \"rules-add\"?: React.ComponentType<{}> | undefined; \"rules-create\"?: React.ComponentType<{}> | undefined; \"rules-landing\"?: React.ComponentType<{}> | undefined; sessions?: React.ComponentType<{}> | undefined; threat_intelligence?: React.ComponentType<{}> | undefined; timelines?: React.ComponentType<{}> | undefined; \"timelines-templates\"?: React.ComponentType<{}> | undefined; trusted_apps?: React.ComponentType<{}> | undefined; uncommon_processes?: React.ComponentType<{}> | undefined; users?: React.ComponentType<{}> | undefined; \"users-anomalies\"?: React.ComponentType<{}> | undefined; \"users-authentications\"?: React.ComponentType<{}> | undefined; \"users-events\"?: React.ComponentType<{}> | undefined; \"users-risk\"?: React.ComponentType<{}> | undefined; entity_analytics?: React.ComponentType<{}> | undefined; \"entity_analytics-management\"?: React.ComponentType<{}> | undefined; \"coverage-overview\"?: React.ComponentType<{}> | undefined; }" - ], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/types.ts", - "deprecated": false, - "trackAdoption": false, - "initialIsOpen": false - }, - { - "parentPluginId": "securitySolution", - "id": "def-public.SectionUpsellings", - "type": "Type", - "tags": [], - "label": "SectionUpsellings", - "description": [], - "signature": [ - "{ entity_analytics_panel?: React.ComponentType<{}> | undefined; endpointPolicyProtections?: React.ComponentType<{}> | undefined; osquery_automated_response_actions?: React.ComponentType<{}> | undefined; }" - ], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/types.ts", - "deprecated": false, - "trackAdoption": false, - "initialIsOpen": false - }, - { - "parentPluginId": "securitySolution", - "id": "def-public.UpsellingSectionId", - "type": "Type", - "tags": [], - "label": "UpsellingSectionId", - "description": [], - "signature": [ - "\"entity_analytics_panel\" | \"endpointPolicyProtections\" | \"osquery_automated_response_actions\"" - ], - "path": "x-pack/plugins/security_solution/public/common/lib/upsellings/types.ts", - "deprecated": false, - "trackAdoption": false, - "initialIsOpen": false - } - ], + "misc": [], "objects": [], "setup": { "parentPluginId": "securitySolution", @@ -2242,6 +1845,38 @@ ], "returnComment": [] }, + { + "parentPluginId": "securitySolution", + "id": "def-public.PluginStart.setIsILMAvailable", + "type": "Function", + "tags": [], + "label": "setIsILMAvailable", + "description": [], + "signature": [ + "(isILMAvailable: boolean) => void" + ], + "path": "x-pack/plugins/security_solution/public/types.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-public.PluginStart.setIsILMAvailable.$1", + "type": "boolean", + "tags": [], + "label": "isILMAvailable", + "description": [], + "signature": [ + "boolean" + ], + "path": "x-pack/plugins/security_solution/public/types.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] + }, { "parentPluginId": "securitySolution", "id": "def-public.PluginStart.setIsSidebarEnabled", @@ -2335,13 +1970,7 @@ "description": [], "signature": [ "() => ", - { - "pluginId": "securitySolution", - "scope": "public", - "docId": "kibSecuritySolutionPluginApi", - "section": "def-public.UpsellingService", - "text": "UpsellingService" - } + "UpsellingService" ], "path": "x-pack/plugins/security_solution/public/types.ts", "deprecated": false, diff --git a/api_docs/security_solution.mdx b/api_docs/security_solution.mdx index 3130e47267169..489e4afcf77f3 100644 --- a/api_docs/security_solution.mdx +++ b/api_docs/security_solution.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/securitySolution title: "securitySolution" image: https://source.unsplash.com/400x175/?github description: API docs for the securitySolution plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'securitySolution'] --- import securitySolutionObj from './security_solution.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/security-solution](https://github.com/orgs/elastic/teams/secur | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 195 | 3 | 129 | 34 | +| 177 | 3 | 111 | 34 | ## Client @@ -37,9 +37,6 @@ Contact [@elastic/security-solution](https://github.com/orgs/elastic/teams/secur ### Interfaces -### Consts, variables and types - - ## Server ### Setup diff --git a/api_docs/security_solution_ess.mdx b/api_docs/security_solution_ess.mdx index 9fe8027ee8d04..64992f8cf8e8f 100644 --- a/api_docs/security_solution_ess.mdx +++ b/api_docs/security_solution_ess.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/securitySolutionEss title: "securitySolutionEss" image: https://source.unsplash.com/400x175/?github description: API docs for the securitySolutionEss plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'securitySolutionEss'] --- import securitySolutionEssObj from './security_solution_ess.devdocs.json'; diff --git a/api_docs/security_solution_serverless.mdx b/api_docs/security_solution_serverless.mdx index 6a4abbd44713f..d1b382dbb992f 100644 --- a/api_docs/security_solution_serverless.mdx +++ b/api_docs/security_solution_serverless.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/securitySolutionServerless title: "securitySolutionServerless" image: https://source.unsplash.com/400x175/?github description: API docs for the securitySolutionServerless plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'securitySolutionServerless'] --- import securitySolutionServerlessObj from './security_solution_serverless.devdocs.json'; diff --git a/api_docs/serverless.mdx b/api_docs/serverless.mdx index e641d33506a55..4e249bcb1fa87 100644 --- a/api_docs/serverless.mdx +++ b/api_docs/serverless.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/serverless title: "serverless" image: https://source.unsplash.com/400x175/?github description: API docs for the serverless plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'serverless'] --- import serverlessObj from './serverless.devdocs.json'; diff --git a/api_docs/serverless_observability.mdx b/api_docs/serverless_observability.mdx index ab041cda0d2b1..9069f83242edb 100644 --- a/api_docs/serverless_observability.mdx +++ b/api_docs/serverless_observability.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/serverlessObservability title: "serverlessObservability" image: https://source.unsplash.com/400x175/?github description: API docs for the serverlessObservability plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'serverlessObservability'] --- import serverlessObservabilityObj from './serverless_observability.devdocs.json'; diff --git a/api_docs/serverless_search.mdx b/api_docs/serverless_search.mdx index fc0aa2be70988..cc833bb3fa820 100644 --- a/api_docs/serverless_search.mdx +++ b/api_docs/serverless_search.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/serverlessSearch title: "serverlessSearch" image: https://source.unsplash.com/400x175/?github description: API docs for the serverlessSearch plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'serverlessSearch'] --- import serverlessSearchObj from './serverless_search.devdocs.json'; diff --git a/api_docs/session_view.mdx b/api_docs/session_view.mdx index 7ac0882b8cd6d..9ad0689c65005 100644 --- a/api_docs/session_view.mdx +++ b/api_docs/session_view.mdx @@ -8,14 +8,14 @@ slug: /kibana-dev-docs/api/sessionView title: "sessionView" image: https://source.unsplash.com/400x175/?github description: API docs for the sessionView plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'sessionView'] --- import sessionViewObj from './session_view.devdocs.json'; -Contact [@elastic/sec-cloudnative-integrations](https://github.com/orgs/elastic/teams/sec-cloudnative-integrations) for questions regarding this plugin. +Contact [@elastic/kibana-cloud-security-posture](https://github.com/orgs/elastic/teams/kibana-cloud-security-posture) for questions regarding this plugin. **Code health stats** diff --git a/api_docs/share.mdx b/api_docs/share.mdx index 84d0a9fa5c1d9..b2fb7f8d19929 100644 --- a/api_docs/share.mdx +++ b/api_docs/share.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/share title: "share" image: https://source.unsplash.com/400x175/?github description: API docs for the share plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'share'] --- import shareObj from './share.devdocs.json'; diff --git a/api_docs/snapshot_restore.mdx b/api_docs/snapshot_restore.mdx index 3832f4e7a8327..bcdffc91d877e 100644 --- a/api_docs/snapshot_restore.mdx +++ b/api_docs/snapshot_restore.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/snapshotRestore title: "snapshotRestore" image: https://source.unsplash.com/400x175/?github description: API docs for the snapshotRestore plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'snapshotRestore'] --- import snapshotRestoreObj from './snapshot_restore.devdocs.json'; diff --git a/api_docs/spaces.mdx b/api_docs/spaces.mdx index 1f7dad2e6e0dd..be9f7be5b7d19 100644 --- a/api_docs/spaces.mdx +++ b/api_docs/spaces.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/spaces title: "spaces" image: https://source.unsplash.com/400x175/?github description: API docs for the spaces plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'spaces'] --- import spacesObj from './spaces.devdocs.json'; diff --git a/api_docs/stack_alerts.mdx b/api_docs/stack_alerts.mdx index 9f04183dcdfe0..8ee2ecca52709 100644 --- a/api_docs/stack_alerts.mdx +++ b/api_docs/stack_alerts.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/stackAlerts title: "stackAlerts" image: https://source.unsplash.com/400x175/?github description: API docs for the stackAlerts plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'stackAlerts'] --- import stackAlertsObj from './stack_alerts.devdocs.json'; diff --git a/api_docs/stack_connectors.mdx b/api_docs/stack_connectors.mdx index a47fab157577f..e2cf8937c66b3 100644 --- a/api_docs/stack_connectors.mdx +++ b/api_docs/stack_connectors.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/stackConnectors title: "stackConnectors" image: https://source.unsplash.com/400x175/?github description: API docs for the stackConnectors plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'stackConnectors'] --- import stackConnectorsObj from './stack_connectors.devdocs.json'; diff --git a/api_docs/task_manager.mdx b/api_docs/task_manager.mdx index b55121b4ac525..04762d5c2fb39 100644 --- a/api_docs/task_manager.mdx +++ b/api_docs/task_manager.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/taskManager title: "taskManager" image: https://source.unsplash.com/400x175/?github description: API docs for the taskManager plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'taskManager'] --- import taskManagerObj from './task_manager.devdocs.json'; diff --git a/api_docs/telemetry.mdx b/api_docs/telemetry.mdx index e22377f07c12f..c259758604871 100644 --- a/api_docs/telemetry.mdx +++ b/api_docs/telemetry.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/telemetry title: "telemetry" image: https://source.unsplash.com/400x175/?github description: API docs for the telemetry plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetry'] --- import telemetryObj from './telemetry.devdocs.json'; diff --git a/api_docs/telemetry_collection_manager.mdx b/api_docs/telemetry_collection_manager.mdx index cc6341caa41be..b1288a76f0c6c 100644 --- a/api_docs/telemetry_collection_manager.mdx +++ b/api_docs/telemetry_collection_manager.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/telemetryCollectionManager title: "telemetryCollectionManager" image: https://source.unsplash.com/400x175/?github description: API docs for the telemetryCollectionManager plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetryCollectionManager'] --- import telemetryCollectionManagerObj from './telemetry_collection_manager.devdocs.json'; diff --git a/api_docs/telemetry_collection_xpack.mdx b/api_docs/telemetry_collection_xpack.mdx index 4a2192c588ba2..72a63451854a0 100644 --- a/api_docs/telemetry_collection_xpack.mdx +++ b/api_docs/telemetry_collection_xpack.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/telemetryCollectionXpack title: "telemetryCollectionXpack" image: https://source.unsplash.com/400x175/?github description: API docs for the telemetryCollectionXpack plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetryCollectionXpack'] --- import telemetryCollectionXpackObj from './telemetry_collection_xpack.devdocs.json'; diff --git a/api_docs/telemetry_management_section.mdx b/api_docs/telemetry_management_section.mdx index 9db6fba20450c..f8311ed6e055b 100644 --- a/api_docs/telemetry_management_section.mdx +++ b/api_docs/telemetry_management_section.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/telemetryManagementSection title: "telemetryManagementSection" image: https://source.unsplash.com/400x175/?github description: API docs for the telemetryManagementSection plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetryManagementSection'] --- import telemetryManagementSectionObj from './telemetry_management_section.devdocs.json'; diff --git a/api_docs/text_based_languages.mdx b/api_docs/text_based_languages.mdx index a63a0ddca50fc..98c9227312683 100644 --- a/api_docs/text_based_languages.mdx +++ b/api_docs/text_based_languages.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/textBasedLanguages title: "textBasedLanguages" image: https://source.unsplash.com/400x175/?github description: API docs for the textBasedLanguages plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'textBasedLanguages'] --- import textBasedLanguagesObj from './text_based_languages.devdocs.json'; diff --git a/api_docs/threat_intelligence.mdx b/api_docs/threat_intelligence.mdx index bd49514e781be..b95b3582d6f06 100644 --- a/api_docs/threat_intelligence.mdx +++ b/api_docs/threat_intelligence.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/threatIntelligence title: "threatIntelligence" image: https://source.unsplash.com/400x175/?github description: API docs for the threatIntelligence plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'threatIntelligence'] --- import threatIntelligenceObj from './threat_intelligence.devdocs.json'; diff --git a/api_docs/timelines.devdocs.json b/api_docs/timelines.devdocs.json index 747cc36b3cd4b..bca1001561f09 100644 --- a/api_docs/timelines.devdocs.json +++ b/api_docs/timelines.devdocs.json @@ -1377,30 +1377,6 @@ "deprecated": true, "trackAdoption": false, "references": [ - { - "plugin": "@kbn/securitysolution-data-table", - "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" - }, - { - "plugin": "@kbn/securitysolution-data-table", - "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" - }, - { - "plugin": "@kbn/securitysolution-data-table", - "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" - }, - { - "plugin": "@kbn/securitysolution-data-table", - "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" - }, - { - "plugin": "@kbn/securitysolution-data-table", - "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" - }, - { - "plugin": "@kbn/securitysolution-data-table", - "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" - }, { "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts" @@ -1437,6 +1413,30 @@ "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/public/common/components/event_details/cti_details/enrichment_summary.tsx" }, + { + "plugin": "@kbn/securitysolution-data-table", + "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" + }, + { + "plugin": "@kbn/securitysolution-data-table", + "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" + }, + { + "plugin": "@kbn/securitysolution-data-table", + "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" + }, + { + "plugin": "@kbn/securitysolution-data-table", + "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" + }, + { + "plugin": "@kbn/securitysolution-data-table", + "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" + }, + { + "plugin": "@kbn/securitysolution-data-table", + "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" + }, { "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/public/common/containers/source/use_data_view.tsx" @@ -4273,34 +4273,6 @@ "deprecated": true, "trackAdoption": false, "references": [ - { - "plugin": "@kbn/securitysolution-data-table", - "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" - }, - { - "plugin": "@kbn/securitysolution-data-table", - "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" - }, - { - "plugin": "@kbn/securitysolution-data-table", - "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" - }, - { - "plugin": "@kbn/securitysolution-data-table", - "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" - }, - { - "plugin": "@kbn/securitysolution-data-table", - "path": "x-pack/packages/security-solution/data_table/components/data_table/index.tsx" - }, - { - "plugin": "@kbn/securitysolution-data-table", - "path": "x-pack/packages/security-solution/data_table/components/data_table/index.tsx" - }, - { - "plugin": "@kbn/securitysolution-data-table", - "path": "x-pack/packages/security-solution/data_table/components/data_table/index.tsx" - }, { "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts" @@ -4453,6 +4425,34 @@ "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/public/common/containers/source/mock.ts" }, + { + "plugin": "@kbn/securitysolution-data-table", + "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" + }, + { + "plugin": "@kbn/securitysolution-data-table", + "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" + }, + { + "plugin": "@kbn/securitysolution-data-table", + "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" + }, + { + "plugin": "@kbn/securitysolution-data-table", + "path": "x-pack/packages/security-solution/data_table/components/data_table/column_headers/helpers.tsx" + }, + { + "plugin": "@kbn/securitysolution-data-table", + "path": "x-pack/packages/security-solution/data_table/components/data_table/index.tsx" + }, + { + "plugin": "@kbn/securitysolution-data-table", + "path": "x-pack/packages/security-solution/data_table/components/data_table/index.tsx" + }, + { + "plugin": "@kbn/securitysolution-data-table", + "path": "x-pack/packages/security-solution/data_table/components/data_table/index.tsx" + }, { "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/public/common/store/sourcerer/model.ts" @@ -4749,14 +4749,6 @@ "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/public/flyout/left/context.tsx" }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/flyout/right/hooks/use_prevalence.tsx" - }, - { - "plugin": "securitySolution", - "path": "x-pack/plugins/security_solution/public/flyout/right/hooks/use_prevalence.tsx" - }, { "plugin": "@kbn/securitysolution-data-table", "path": "x-pack/packages/security-solution/data_table/mock/mock_source.ts" diff --git a/api_docs/timelines.mdx b/api_docs/timelines.mdx index 49b0364fa1008..537f82e83474d 100644 --- a/api_docs/timelines.mdx +++ b/api_docs/timelines.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/timelines title: "timelines" image: https://source.unsplash.com/400x175/?github description: API docs for the timelines plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'timelines'] --- import timelinesObj from './timelines.devdocs.json'; diff --git a/api_docs/transform.mdx b/api_docs/transform.mdx index 85a1836888377..a0e07e1312834 100644 --- a/api_docs/transform.mdx +++ b/api_docs/transform.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/transform title: "transform" image: https://source.unsplash.com/400x175/?github description: API docs for the transform plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'transform'] --- import transformObj from './transform.devdocs.json'; diff --git a/api_docs/triggers_actions_ui.devdocs.json b/api_docs/triggers_actions_ui.devdocs.json index 5ad44fa0f8e76..9d84568f429d3 100644 --- a/api_docs/triggers_actions_ui.devdocs.json +++ b/api_docs/triggers_actions_ui.devdocs.json @@ -819,7 +819,7 @@ "section": "def-public.TIME_UNITS", "text": "TIME_UNITS" }, - ", timeValue: string) => any" + ", timeValue: string) => string" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/get_time_unit_label.ts", "deprecated": false, @@ -6086,13 +6086,10 @@ { "parentPluginId": "triggersActionsUi", "id": "def-public.connectorDeprecatedMessage", - "type": "Any", + "type": "string", "tags": [], "label": "connectorDeprecatedMessage", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/triggers_actions_ui/public/common/connectors_selection.tsx", "deprecated": false, "trackAdoption": false, @@ -6122,13 +6119,10 @@ { "parentPluginId": "triggersActionsUi", "id": "def-public.deprecatedMessage", - "type": "Any", + "type": "string", "tags": [], "label": "deprecatedMessage", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/triggers_actions_ui/public/common/connectors_selection.tsx", "deprecated": false, "trackAdoption": false, @@ -6704,13 +6698,10 @@ { "parentPluginId": "triggersActionsUi", "id": "def-public.builtInComparators.COMPARATORS.GREATER_THAN.text", - "type": "Any", + "type": "string", "tags": [], "label": "text", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", "deprecated": false, "trackAdoption": false @@ -6762,13 +6753,10 @@ { "parentPluginId": "triggersActionsUi", "id": "def-public.builtInComparators.COMPARATORS.GREATER_THAN_OR_EQUALS.text", - "type": "Any", + "type": "string", "tags": [], "label": "text", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", "deprecated": false, "trackAdoption": false @@ -6820,13 +6808,10 @@ { "parentPluginId": "triggersActionsUi", "id": "def-public.builtInComparators.COMPARATORS.LESS_THAN.text", - "type": "Any", + "type": "string", "tags": [], "label": "text", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", "deprecated": false, "trackAdoption": false @@ -6878,13 +6863,10 @@ { "parentPluginId": "triggersActionsUi", "id": "def-public.builtInComparators.COMPARATORS.LESS_THAN_OR_EQUALS.text", - "type": "Any", + "type": "string", "tags": [], "label": "text", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", "deprecated": false, "trackAdoption": false @@ -6936,13 +6918,10 @@ { "parentPluginId": "triggersActionsUi", "id": "def-public.builtInComparators.COMPARATORS.BETWEEN.text", - "type": "Any", + "type": "string", "tags": [], "label": "text", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", "deprecated": false, "trackAdoption": false @@ -6994,13 +6973,10 @@ { "parentPluginId": "triggersActionsUi", "id": "def-public.builtInComparators.COMPARATORS.NOT_BETWEEN.text", - "type": "Any", + "type": "string", "tags": [], "label": "text", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", "deprecated": false, "trackAdoption": false @@ -7066,13 +7042,10 @@ { "parentPluginId": "triggersActionsUi", "id": "def-public.builtInGroupByTypes.all.text", - "type": "Any", + "type": "string", "tags": [], "label": "text", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/group_by_types.ts", "deprecated": false, "trackAdoption": false @@ -7132,13 +7105,10 @@ { "parentPluginId": "triggersActionsUi", "id": "def-public.builtInGroupByTypes.top.text", - "type": "Any", + "type": "string", "tags": [], "label": "text", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/group_by_types.ts", "deprecated": false, "trackAdoption": false @@ -7201,13 +7171,10 @@ { "parentPluginId": "triggersActionsUi", "id": "def-public.firstFieldOption.text", - "type": "Any", + "type": "string", "tags": [], "label": "text", "description": [], - "signature": [ - "any" - ], "path": "x-pack/plugins/triggers_actions_ui/public/common/index_controls/index.ts", "deprecated": false, "trackAdoption": false @@ -8222,6 +8189,42 @@ "trackAdoption": false, "children": [], "returnComment": [] + }, + { + "parentPluginId": "triggersActionsUi", + "id": "def-public.TriggersAndActionsUIPublicPluginStart.getGlobalRuleEventLogList", + "type": "Function", + "tags": [], + "label": "getGlobalRuleEventLogList", + "description": [], + "signature": [ + "(props: ", + "GlobalRuleEventLogListProps", + ") => React.ReactElement<", + "GlobalRuleEventLogListProps", + ", string | React.JSXElementConstructor>" + ], + "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "triggersActionsUi", + "id": "def-public.TriggersAndActionsUIPublicPluginStart.getGlobalRuleEventLogList.$1", + "type": "Object", + "tags": [], + "label": "props", + "description": [], + "signature": [ + "GlobalRuleEventLogListProps" + ], + "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] } ], "lifecycle": "start", @@ -8874,7 +8877,7 @@ "label": "getTooManyIntervalsErrorMessage", "description": [], "signature": [ - "(intervals: number, maxIntervals: number) => any" + "(intervals: number, maxIntervals: number) => string" ], "path": "x-pack/plugins/triggers_actions_ui/common/data/lib/date_range_info.ts", "deprecated": false, diff --git a/api_docs/triggers_actions_ui.mdx b/api_docs/triggers_actions_ui.mdx index 72462a186cd85..ba30d73aa695f 100644 --- a/api_docs/triggers_actions_ui.mdx +++ b/api_docs/triggers_actions_ui.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/triggersActionsUi title: "triggersActionsUi" image: https://source.unsplash.com/400x175/?github description: API docs for the triggersActionsUi plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'triggersActionsUi'] --- import triggersActionsUiObj from './triggers_actions_ui.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-o | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 571 | 12 | 545 | 50 | +| 573 | 1 | 547 | 51 | ## Client diff --git a/api_docs/ui_actions.devdocs.json b/api_docs/ui_actions.devdocs.json index 466038b9bb162..7c43d3c333e58 100644 --- a/api_docs/ui_actions.devdocs.json +++ b/api_docs/ui_actions.devdocs.json @@ -2543,13 +2543,10 @@ { "parentPluginId": "uiActions", "id": "def-public.rowClickTrigger.title", - "type": "Any", + "type": "string", "tags": [], "label": "title", "description": [], - "signature": [ - "any" - ], "path": "packages/kbn-ui-actions-browser/src/triggers/row_click_trigger.ts", "deprecated": false, "trackAdoption": false @@ -2557,13 +2554,10 @@ { "parentPluginId": "uiActions", "id": "def-public.rowClickTrigger.description", - "type": "Any", + "type": "string", "tags": [], "label": "description", "description": [], - "signature": [ - "any" - ], "path": "packages/kbn-ui-actions-browser/src/triggers/row_click_trigger.ts", "deprecated": false, "trackAdoption": false diff --git a/api_docs/ui_actions.mdx b/api_docs/ui_actions.mdx index 61fd92f9d3061..59461208040fb 100644 --- a/api_docs/ui_actions.mdx +++ b/api_docs/ui_actions.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/uiActions title: "uiActions" image: https://source.unsplash.com/400x175/?github description: API docs for the uiActions plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'uiActions'] --- import uiActionsObj from './ui_actions.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sh | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 145 | 2 | 103 | 9 | +| 145 | 0 | 103 | 9 | ## Client diff --git a/api_docs/ui_actions_enhanced.mdx b/api_docs/ui_actions_enhanced.mdx index 57d8b452493bd..cc5c9ab49e3f3 100644 --- a/api_docs/ui_actions_enhanced.mdx +++ b/api_docs/ui_actions_enhanced.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/uiActionsEnhanced title: "uiActionsEnhanced" image: https://source.unsplash.com/400x175/?github description: API docs for the uiActionsEnhanced plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'uiActionsEnhanced'] --- import uiActionsEnhancedObj from './ui_actions_enhanced.devdocs.json'; diff --git a/api_docs/unified_histogram.mdx b/api_docs/unified_histogram.mdx index da2cdd06a97aa..a630416c11ab3 100644 --- a/api_docs/unified_histogram.mdx +++ b/api_docs/unified_histogram.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/unifiedHistogram title: "unifiedHistogram" image: https://source.unsplash.com/400x175/?github description: API docs for the unifiedHistogram plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'unifiedHistogram'] --- import unifiedHistogramObj from './unified_histogram.devdocs.json'; diff --git a/api_docs/unified_search.devdocs.json b/api_docs/unified_search.devdocs.json index 4cf3f2c105d74..a9e18958ae822 100644 --- a/api_docs/unified_search.devdocs.json +++ b/api_docs/unified_search.devdocs.json @@ -473,9 +473,9 @@ "[] | undefined; prependFilterBar?: React.ReactNode; isRefreshPaused?: boolean | undefined; dateRangeFrom?: string | undefined; dateRangeTo?: string | undefined; showSaveQuery?: boolean | undefined; savedQuery?: ", { "pluginId": "data", - "scope": "public", + "scope": "common", "docId": "kibDataQueryPluginApi", - "section": "def-public.SavedQuery", + "section": "def-common.SavedQuery", "text": "SavedQuery" }, " | undefined; onQueryChange?: ((payload: { dateRange: ", @@ -513,17 +513,17 @@ " | QT | undefined; }, isUpdate?: boolean | undefined) => void) | undefined; onSaved?: ((savedQuery: ", { "pluginId": "data", - "scope": "public", + "scope": "common", "docId": "kibDataQueryPluginApi", - "section": "def-public.SavedQuery", + "section": "def-common.SavedQuery", "text": "SavedQuery" }, ") => void) | undefined; onSavedQueryUpdated?: ((savedQuery: ", { "pluginId": "data", - "scope": "public", + "scope": "common", "docId": "kibDataQueryPluginApi", - "section": "def-public.SavedQuery", + "section": "def-common.SavedQuery", "text": "SavedQuery" }, ") => void) | undefined; onTimeRangeChange?: ((payload: { dateRange: ", diff --git a/api_docs/unified_search.mdx b/api_docs/unified_search.mdx index cec7ebcd68d21..29b60ef9ba2a4 100644 --- a/api_docs/unified_search.mdx +++ b/api_docs/unified_search.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/unifiedSearch title: "unifiedSearch" image: https://source.unsplash.com/400x175/?github description: API docs for the unifiedSearch plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'unifiedSearch'] --- import unifiedSearchObj from './unified_search.devdocs.json'; diff --git a/api_docs/unified_search_autocomplete.mdx b/api_docs/unified_search_autocomplete.mdx index 7fdcb2c3d8177..c4841c41d195c 100644 --- a/api_docs/unified_search_autocomplete.mdx +++ b/api_docs/unified_search_autocomplete.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/unifiedSearch-autocomplete title: "unifiedSearch.autocomplete" image: https://source.unsplash.com/400x175/?github description: API docs for the unifiedSearch.autocomplete plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'unifiedSearch.autocomplete'] --- import unifiedSearchAutocompleteObj from './unified_search_autocomplete.devdocs.json'; diff --git a/api_docs/uptime.mdx b/api_docs/uptime.mdx index 9318b8462b02d..f1286c087db99 100644 --- a/api_docs/uptime.mdx +++ b/api_docs/uptime.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/uptime title: "uptime" image: https://source.unsplash.com/400x175/?github description: API docs for the uptime plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'uptime'] --- import uptimeObj from './uptime.devdocs.json'; diff --git a/api_docs/url_forwarding.mdx b/api_docs/url_forwarding.mdx index 1480341356374..957eb4e03ced2 100644 --- a/api_docs/url_forwarding.mdx +++ b/api_docs/url_forwarding.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/urlForwarding title: "urlForwarding" image: https://source.unsplash.com/400x175/?github description: API docs for the urlForwarding plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'urlForwarding'] --- import urlForwardingObj from './url_forwarding.devdocs.json'; diff --git a/api_docs/usage_collection.mdx b/api_docs/usage_collection.mdx index 3308b197c53cd..fa2b9129d89ad 100644 --- a/api_docs/usage_collection.mdx +++ b/api_docs/usage_collection.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/usageCollection title: "usageCollection" image: https://source.unsplash.com/400x175/?github description: API docs for the usageCollection plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'usageCollection'] --- import usageCollectionObj from './usage_collection.devdocs.json'; diff --git a/api_docs/ux.mdx b/api_docs/ux.mdx index 58f5395038666..810a5d673020b 100644 --- a/api_docs/ux.mdx +++ b/api_docs/ux.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/ux title: "ux" image: https://source.unsplash.com/400x175/?github description: API docs for the ux plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ux'] --- import uxObj from './ux.devdocs.json'; diff --git a/api_docs/vis_default_editor.mdx b/api_docs/vis_default_editor.mdx index e392681c5af69..dbbae9539a725 100644 --- a/api_docs/vis_default_editor.mdx +++ b/api_docs/vis_default_editor.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visDefaultEditor title: "visDefaultEditor" image: https://source.unsplash.com/400x175/?github description: API docs for the visDefaultEditor plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visDefaultEditor'] --- import visDefaultEditorObj from './vis_default_editor.devdocs.json'; diff --git a/api_docs/vis_type_gauge.mdx b/api_docs/vis_type_gauge.mdx index 4315ed076acb4..27db91508aca7 100644 --- a/api_docs/vis_type_gauge.mdx +++ b/api_docs/vis_type_gauge.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeGauge title: "visTypeGauge" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeGauge plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeGauge'] --- import visTypeGaugeObj from './vis_type_gauge.devdocs.json'; diff --git a/api_docs/vis_type_heatmap.mdx b/api_docs/vis_type_heatmap.mdx index bf7c8d90d9d1f..456f175d60618 100644 --- a/api_docs/vis_type_heatmap.mdx +++ b/api_docs/vis_type_heatmap.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeHeatmap title: "visTypeHeatmap" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeHeatmap plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeHeatmap'] --- import visTypeHeatmapObj from './vis_type_heatmap.devdocs.json'; diff --git a/api_docs/vis_type_pie.mdx b/api_docs/vis_type_pie.mdx index 12b55329dbfb1..da8d6a3973b97 100644 --- a/api_docs/vis_type_pie.mdx +++ b/api_docs/vis_type_pie.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypePie title: "visTypePie" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypePie plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypePie'] --- import visTypePieObj from './vis_type_pie.devdocs.json'; diff --git a/api_docs/vis_type_table.mdx b/api_docs/vis_type_table.mdx index 0797845860ccf..733e732cd3ab3 100644 --- a/api_docs/vis_type_table.mdx +++ b/api_docs/vis_type_table.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeTable title: "visTypeTable" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeTable plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeTable'] --- import visTypeTableObj from './vis_type_table.devdocs.json'; diff --git a/api_docs/vis_type_timelion.mdx b/api_docs/vis_type_timelion.mdx index 912056fc65e2e..301209ec5c2bb 100644 --- a/api_docs/vis_type_timelion.mdx +++ b/api_docs/vis_type_timelion.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeTimelion title: "visTypeTimelion" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeTimelion plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeTimelion'] --- import visTypeTimelionObj from './vis_type_timelion.devdocs.json'; diff --git a/api_docs/vis_type_timeseries.mdx b/api_docs/vis_type_timeseries.mdx index 20f3af522d34d..322739c4bc06f 100644 --- a/api_docs/vis_type_timeseries.mdx +++ b/api_docs/vis_type_timeseries.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeTimeseries title: "visTypeTimeseries" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeTimeseries plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeTimeseries'] --- import visTypeTimeseriesObj from './vis_type_timeseries.devdocs.json'; diff --git a/api_docs/vis_type_vega.mdx b/api_docs/vis_type_vega.mdx index bbb883d7dfdd3..e94a506ad7287 100644 --- a/api_docs/vis_type_vega.mdx +++ b/api_docs/vis_type_vega.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeVega title: "visTypeVega" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeVega plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeVega'] --- import visTypeVegaObj from './vis_type_vega.devdocs.json'; diff --git a/api_docs/vis_type_vislib.mdx b/api_docs/vis_type_vislib.mdx index 85f49c4d6a0ca..84b94d59db87f 100644 --- a/api_docs/vis_type_vislib.mdx +++ b/api_docs/vis_type_vislib.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeVislib title: "visTypeVislib" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeVislib plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeVislib'] --- import visTypeVislibObj from './vis_type_vislib.devdocs.json'; diff --git a/api_docs/vis_type_xy.devdocs.json b/api_docs/vis_type_xy.devdocs.json index 93579858eaf00..de45fb3d360e0 100644 --- a/api_docs/vis_type_xy.devdocs.json +++ b/api_docs/vis_type_xy.devdocs.json @@ -11,7 +11,7 @@ "label": "getPositions", "description": [], "signature": [ - "() => ({ text: any; value: \"top\"; } | { text: any; value: \"left\"; } | { text: any; value: \"right\"; } | { text: any; value: \"bottom\"; })[]" + "() => ({ text: string; value: \"top\"; } | { text: string; value: \"left\"; } | { text: string; value: \"right\"; } | { text: string; value: \"bottom\"; })[]" ], "path": "src/plugins/vis_types/xy/public/editor/positions.ts", "deprecated": false, @@ -28,7 +28,7 @@ "label": "getScaleTypes", "description": [], "signature": [ - "() => { text: any; value: ", + "() => { text: string; value: ", { "pluginId": "visTypeXy", "scope": "public", diff --git a/api_docs/vis_type_xy.mdx b/api_docs/vis_type_xy.mdx index 6f9e9cdbd42bc..baffc295456fd 100644 --- a/api_docs/vis_type_xy.mdx +++ b/api_docs/vis_type_xy.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeXy title: "visTypeXy" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeXy plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeXy'] --- import visTypeXyObj from './vis_type_xy.devdocs.json'; diff --git a/api_docs/visualizations.devdocs.json b/api_docs/visualizations.devdocs.json index 152024c118779..02291d78d807b 100644 --- a/api_docs/visualizations.devdocs.json +++ b/api_docs/visualizations.devdocs.json @@ -6715,7 +6715,7 @@ "section": "def-common.SavedObjectReference", "text": "SavedObjectReference" }, - "[]; }; isEditable: () => Promise; getDisplayName: () => any; createFromSavedObject: (savedObjectId: string, input: Partial<", + "[]; }; isEditable: () => Promise; getDisplayName: () => string; createFromSavedObject: (savedObjectId: string, input: Partial<", { "pluginId": "visualizations", "scope": "public", diff --git a/api_docs/visualizations.mdx b/api_docs/visualizations.mdx index 585dfa1f89ecc..a95a9af129b9e 100644 --- a/api_docs/visualizations.mdx +++ b/api_docs/visualizations.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visualizations title: "visualizations" image: https://source.unsplash.com/400x175/?github description: API docs for the visualizations plugin -date: 2023-08-22 +date: 2023-08-27 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visualizations'] --- import visualizationsObj from './visualizations.devdocs.json'; diff --git a/catalog-info.yaml b/catalog-info.yaml index 534e34ba27008..d37b33eb0ebff 100644 --- a/catalog-info.yaml +++ b/catalog-info.yaml @@ -50,7 +50,7 @@ spec: description: Pipeline that tests the service integration in various environments spec: repository: elastic/kibana - pipeline_file: ./.buildkite/pipelines/pipeline.kibana-tests.yaml + pipeline_file: ./.buildkite/pipelines/quality-gates/pipeline.kibana-tests.yaml provider_settings: trigger_mode: none teams: @@ -68,3 +68,59 @@ spec: access_level: BUILD_AND_READ everyone: access_level: READ_ONLY + +--- +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: Kibana-UI-Service + description: Kibana UI Service provides the UX for visualizing Elasticsearch data. It is comprised of a client side for presentation and user event handling and a server side application for UX servicing and interaction with Elasticsearch. + annotations: + backstage.io/source-location: url:https://github.com/elastic/kibana/tree/main + github.com/project-slug: elastic/kibana + github.com/team-slug: elastic/kibana-tech-leads + buildkite.com/project-slug: elastic/kibana + tags: + - typescript + - javascript + - dashboards + - metrics + - visualizations + - observability + links: + - title: Documentation + url: https://www.elastic.co/guide/en/kibana/current/index.html +spec: + type: service + owner: group:kibana-tech-leads + lifecycle: production + system: control-plane + +--- +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: Kibana-Background-Tasks-Service + description: Kibana Background Tasks Service provides additional task processing parallelism for an instance of the Kibana UI Service. It is comprised of the same codebase as Kibana UI Service but is launched with an alternative configuration. + annotations: + backstage.io/source-location: url:https://github.com/elastic/kibana/tree/main + github.com/project-slug: elastic/kibana + github.com/team-slug: elastic/kibana-tech-leads + buildkite.com/project-slug: elastic/kibana + tags: + - typescript + - javascript + - dashboards + - metrics + - visualizations + - observability + links: + - title: Documentation + url: https://www.elastic.co/guide/en/kibana/current/index.html +spec: + type: service + owner: group:kibana-tech-leads + lifecycle: production + system: control-plane + + diff --git a/config/serverless.es.yml b/config/serverless.es.yml index bb16628f3f5eb..8ee07c718cce0 100644 --- a/config/serverless.es.yml +++ b/config/serverless.es.yml @@ -9,7 +9,12 @@ xpack.observability.enabled: false xpack.securitySolution.enabled: false xpack.serverless.observability.enabled: false xpack.uptime.enabled: false -enterpriseSearch.enabled: false +enterpriseSearch.enabled: true +enterpriseSearch.canDeployEntSearch: false +enterpriseSearch.hasConnectors: true +enterpriseSearch.hasNativeConnectors: false +enterpriseSearch.hasWebCrawler: false +enterpriseSearch.ui.enabled: false monitoring.ui.enabled: false xpack.fleet.enabled: false diff --git a/config/serverless.yml b/config/serverless.yml index e548146f39de5..e18049e8517c6 100644 --- a/config/serverless.yml +++ b/config/serverless.yml @@ -37,6 +37,8 @@ xpack.license_management.enabled: false xpack.index_management.enableIndexActions: false # Disable legacy index templates from Index Management UI xpack.index_management.enableLegacyTemplates: false +# Disable index stats information from Index Management UI +xpack.index_management.enableIndexStats: false # Keep deeplinks visible so that they are shown in the sidenav dev_tools.deeplinks.navLinkStatus: visible @@ -48,6 +50,9 @@ xpack.cloud_integrations.data_migration.enabled: false data.search.sessions.enabled: false advanced_settings.enabled: false +# Disable the browser-side functionality that depends on SecurityCheckupGetStateRoutes +xpack.security.showInsecureClusterWarning: false + # Disable UI of security management plugins xpack.security.ui.userManagementEnabled: false xpack.security.ui.roleManagementEnabled: false diff --git a/docs/api-generated/connectors/connector-apis-passthru.asciidoc b/docs/api-generated/connectors/connector-apis-passthru.asciidoc index 64bf78a2b66ed..f5128f88f1b1e 100644 --- a/docs/api-generated/connectors/connector-apis-passthru.asciidoc +++ b/docs/api-generated/connectors/connector-apis-passthru.asciidoc @@ -1010,6 +1010,7 @@ Any modifications made to this file will be overwritten.
  • config_properties_servicenow - Connector request properties for a ServiceNow ITSM connector
  • config_properties_servicenow_itom - Connector request properties for a ServiceNow ITSM connector
  • config_properties_swimlane - Connector request properties for a Swimlane connector
  • +
  • config_properties_webhook - Connector request properties for a Webhook connector
  • connector_response_properties - Connector response properties
  • connector_response_properties_cases_webhook - Connector request properties for a Webhook - Case Management connector
  • connector_response_properties_email - Connector response properties for an email connector
  • @@ -1093,6 +1094,7 @@ Any modifications made to this file will be overwritten.
  • secrets_properties_slack_api - Connector secrets properties for a Web API Slack connector
  • secrets_properties_slack_webhook - Connector secrets properties for a Webhook Slack connector
  • secrets_properties_swimlane - Connector secrets properties for a Swimlane connector
  • +
  • secrets_properties_webhook - Connector secrets properties for a Webhook connector
  • updateConnector_400_response -
  • update_connector_request_cases_webhook - Update Webhook - Case Managment connector request
  • update_connector_request_index - Update index connector request
  • @@ -1450,6 +1452,28 @@ Any modifications made to this file will be overwritten.
    mappings (optional)
    +
    +

    config_properties_webhook - Connector request properties for a Webhook connector Up

    +
    Defines properties for connectors when type is .webhook.
    +
    +
    authType (optional)
    String The type of authentication to use: basic, SSL, or none.
    +
    Enum:
    +
    webhook-authentication-basic
    webhook-authentication-ssl
    null
    +
    ca (optional)
    String A base64 encoded version of the certificate authority file that the connector can trust to sign and validate certificates. This option is available for all authentication types.
    +
    certType (optional)
    String If the authType is webhook-authentication-ssl, specifies whether the certificate authentication data is in a CRT and key file format or a PFX file format.
    +
    Enum:
    +
    ssl-crt-key
    ssl-pfx
    +
    hasAuth (optional)
    Boolean If true, a user name and password must be provided for login type authentication.
    +
    headers (optional)
    Object A set of key-value pairs sent as headers with the request.
    +
    method (optional)
    String The HTTP request method, either post or put.
    +
    Enum:
    +
    post
    put
    +
    url (optional)
    String The request URL. If you are using the xpack.actions.allowedHosts setting, add the hostname to the allowed hosts.
    +
    verificationMode (optional)
    String Controls the verification of certificates. Use full to validate that the certificate has an issue date within the not_before and not_after dates, chains to a trusted certificate authority (CA), and has a hostname or IP address that matches the names within the certificate. Use certificate to validate the certificate and verify that it is signed by a trusted authority; this option does not check the certificate hostname. Use none to skip certificate validation.
    +
    Enum:
    +
    certificate
    full
    none
    +
    +

    connector_response_properties - Connector response properties Up

    The properties vary depending on the connector type.
    @@ -1723,7 +1747,7 @@ Any modifications made to this file will be overwritten.

    connector_response_properties_webhook - Connector response properties for a Webhook connector Up

    -
    config
    map[String, oas_any_type_not_mapped] Defines properties for connectors when type is .webhook.
    +
    config
    connector_type_id
    String The type of connector.
    Enum:
    .webhook
    @@ -1959,12 +1983,12 @@ Any modifications made to this file will be overwritten.

    create_connector_request_webhook - Create Webhook connector request Up

    The Webhook connector uses axios to send a POST or PUT request to a web service.
    -
    config
    map[String, oas_any_type_not_mapped] Defines properties for connectors when type is .webhook.
    +
    config
    connector_type_id
    String The type of connector.
    Enum:
    .webhook
    name
    String The display name for the connector.
    -
    secrets
    map[String, oas_any_type_not_mapped] Defines secrets for connectors when type is .webhook.
    +
    secrets
    @@ -2392,6 +2416,17 @@ Any modifications made to this file will be overwritten.
    apiToken (optional)
    String Swimlane API authentication token.
    +
    +

    secrets_properties_webhook - Connector secrets properties for a Webhook connector Up

    +
    Defines secrets for connectors when type is .webhook.
    +
    +
    crt (optional)
    String If authType is webhook-authentication-ssl and certType is ssl-crt-key, it is a base64 encoded version of the CRT or CERT file.
    +
    key (optional)
    String If authType is webhook-authentication-ssl and certType is ssl-crt-key, it is a base64 encoded version of the KEY file.
    +
    pfx (optional)
    String If authType is webhook-authentication-ssl and certType is ssl-pfx, it is a base64 encoded version of the PFX or P12 file.
    +
    password (optional)
    String The password for HTTP basic authentication or the passphrase for the SSL certificate files. If hasAuth is set to true and authType is webhook-authentication-basic, this property is required.
    +
    user (optional)
    String The username for HTTP basic authentication. If hasAuth is set to true and authType is webhook-authentication-basic, this property is required.
    +
    +

    updateConnector_400_response - Up

    diff --git a/docs/api/saved-objects/bulk_create.asciidoc b/docs/api/saved-objects/bulk_create.asciidoc index 9639a70d4387b..bde9b7861183f 100644 --- a/docs/api/saved-objects/bulk_create.asciidoc +++ b/docs/api/saved-objects/bulk_create.asciidoc @@ -8,6 +8,12 @@ deprecated::[8.7.0, To be removed in an upcoming version] Create multiple {kib} saved objects. +[NOTE] +==== +For the most up-to-date API details, refer to the +{kib-repo}/tree/{branch}/packages/core/saved-objects/docs/openapi[open API specification]. +==== + [[saved-objects-api-bulk-create-request]] ==== Request diff --git a/docs/api/saved-objects/bulk_delete.asciidoc b/docs/api/saved-objects/bulk_delete.asciidoc index 9a06cb7ea9f9d..dc1c218467a65 100644 --- a/docs/api/saved-objects/bulk_delete.asciidoc +++ b/docs/api/saved-objects/bulk_delete.asciidoc @@ -10,6 +10,12 @@ Remove multiple {kib} saved objects. WARNING: Once you delete a saved object, _it cannot be recovered_. +[NOTE] +==== +For the most up-to-date API details, refer to the +{kib-repo}/tree/{branch}/packages/core/saved-objects/docs/openapi[open API specification]. +==== + ==== Request `POST :/api/saved_objects/_bulk_delete` diff --git a/docs/api/saved-objects/bulk_get.asciidoc b/docs/api/saved-objects/bulk_get.asciidoc index 78e1a1e60ca25..9807d7b499400 100644 --- a/docs/api/saved-objects/bulk_get.asciidoc +++ b/docs/api/saved-objects/bulk_get.asciidoc @@ -8,6 +8,12 @@ deprecated::[8.7.0, To be removed in an upcoming version] Retrieve multiple {kib} saved objects by ID. +[NOTE] +==== +For the most up-to-date API details, refer to the +{kib-repo}/tree/{branch}/packages/core/saved-objects/docs/openapi[open API specification]. +==== + [[saved-objects-api-bulk-get-request]] ==== Request diff --git a/docs/api/saved-objects/bulk_resolve.asciidoc b/docs/api/saved-objects/bulk_resolve.asciidoc index 637e268f49cbf..6908b0f7b7dd0 100644 --- a/docs/api/saved-objects/bulk_resolve.asciidoc +++ b/docs/api/saved-objects/bulk_resolve.asciidoc @@ -12,6 +12,12 @@ Under certain circumstances, when Kibana is upgraded, saved object migrations ma features. When an object's ID is regenerated, a legacy URL alias is created for that object, preserving its old ID. In such a scenario, that object can be retrieved via the Bulk Resolve API using either its new ID or its old ID. +[NOTE] +==== +For the most up-to-date API details, refer to the +{kib-repo}/tree/{branch}/packages/core/saved-objects/docs/openapi[open API specification]. +==== + [[saved-objects-api-bulk-resolve-request]] ==== Request diff --git a/docs/api/saved-objects/bulk_update.asciidoc b/docs/api/saved-objects/bulk_update.asciidoc index 529f9bbb406aa..dfc16f87c9d4c 100644 --- a/docs/api/saved-objects/bulk_update.asciidoc +++ b/docs/api/saved-objects/bulk_update.asciidoc @@ -8,6 +8,12 @@ deprecated::[8.7.0, To be removed in an upcoming version] Update the attributes for multiple existing {kib} saved objects. +[NOTE] +==== +For the most up-to-date API details, refer to the +{kib-repo}/tree/{branch}/packages/core/saved-objects/docs/openapi[open API specification]. +==== + [[saved-objects-api-bulk-update-request]] ==== Request diff --git a/docs/api/saved-objects/create.asciidoc b/docs/api/saved-objects/create.asciidoc index e955cbf61693c..7e26a329fb54d 100644 --- a/docs/api/saved-objects/create.asciidoc +++ b/docs/api/saved-objects/create.asciidoc @@ -8,6 +8,12 @@ deprecated::[8.7.0, To be removed in an upcoming version] Create {kib} saved objects. +[NOTE] +==== +For the most up-to-date API details, refer to the +{kib-repo}/tree/{branch}/packages/core/saved-objects/docs/openapi[open API specification]. +==== + [[saved-objects-api-create-request]] ==== Request diff --git a/docs/api/saved-objects/delete.asciidoc b/docs/api/saved-objects/delete.asciidoc index d0830a8002eb6..565d684757495 100644 --- a/docs/api/saved-objects/delete.asciidoc +++ b/docs/api/saved-objects/delete.asciidoc @@ -10,6 +10,12 @@ Remove {kib} saved objects. WARNING: Once you delete a saved object, _it cannot be recovered_. +[NOTE] +==== +For the most up-to-date API details, refer to the +{kib-repo}/tree/{branch}/packages/core/saved-objects/docs/openapi[open API specification]. +==== + [[saved-objects-api-delete-request]] ==== Request diff --git a/docs/api/saved-objects/find.asciidoc b/docs/api/saved-objects/find.asciidoc index 12955c807c299..8efc20cb11a90 100644 --- a/docs/api/saved-objects/find.asciidoc +++ b/docs/api/saved-objects/find.asciidoc @@ -8,6 +8,12 @@ deprecated::[8.7.0, To be removed in an upcoming version] Retrieve a paginated set of {kib} saved objects by various conditions. +[NOTE] +==== +For the most up-to-date API details, refer to the +{kib-repo}/tree/{branch}/packages/core/saved-objects/docs/openapi[open API specification]. +==== + [[saved-objects-api-find-request]] ==== Request diff --git a/docs/api/saved-objects/get.asciidoc b/docs/api/saved-objects/get.asciidoc index 7f375994d98de..2e7a5f949832b 100644 --- a/docs/api/saved-objects/get.asciidoc +++ b/docs/api/saved-objects/get.asciidoc @@ -8,6 +8,12 @@ deprecated::[8.7.0, To be removed in an upcoming version] Retrieve a single {kib} saved object by ID. +[NOTE] +==== +For the most up-to-date API details, refer to the +{kib-repo}/tree/{branch}/packages/core/saved-objects/docs/openapi[open API specification]. +==== + [[saved-objects-api-get-request]] ==== Request diff --git a/docs/api/saved-objects/resolve.asciidoc b/docs/api/saved-objects/resolve.asciidoc index 9fec2b1724f77..7d9176145fbcc 100644 --- a/docs/api/saved-objects/resolve.asciidoc +++ b/docs/api/saved-objects/resolve.asciidoc @@ -12,6 +12,12 @@ Under certain circumstances, when Kibana is upgraded, saved object migrations ma features. When an object's ID is regenerated, a legacy URL alias is created for that object, preserving its old ID. In such a scenario, that object can be retrieved via the Resolve API using either its new ID or its old ID. +[NOTE] +==== +For the most up-to-date API details, refer to the +{kib-repo}/tree/{branch}/packages/core/saved-objects/docs/openapi[open API specification]. +==== + [[saved-objects-api-resolve-request]] ==== Request diff --git a/docs/api/saved-objects/resolve_import_errors.asciidoc b/docs/api/saved-objects/resolve_import_errors.asciidoc index ca156900390dc..7092ce20e01d3 100644 --- a/docs/api/saved-objects/resolve_import_errors.asciidoc +++ b/docs/api/saved-objects/resolve_import_errors.asciidoc @@ -14,6 +14,12 @@ To resolve errors, you can: * Change references to different saved objects +[NOTE] +==== +For the most up-to-date API details, refer to the +{kib-repo}/tree/{branch}/packages/core/saved-objects/docs/openapi[open API specification]. +==== + [[saved-objects-api-resolve-import-errors-request]] ==== Request diff --git a/docs/api/saved-objects/rotate_encryption_key.asciidoc b/docs/api/saved-objects/rotate_encryption_key.asciidoc index efc57ddb4308d..8b45ee7175599 100644 --- a/docs/api/saved-objects/rotate_encryption_key.asciidoc +++ b/docs/api/saved-objects/rotate_encryption_key.asciidoc @@ -7,6 +7,12 @@ experimental[] Rotate the encryption key for encrypted saved objects. +[NOTE] +==== +For the most up-to-date API details, refer to the +{kib-repo}/tree/{branch}/packages/core/saved-objects/docs/openapi[open API specification]. +==== + If a saved object cannot be decrypted using the primary encryption key, then {kib} will attempt to decrypt it using the specified <>. In most of the cases this overhead is negligible, but if you're dealing with a large number of saved objects and experiencing performance issues, you may want to rotate the encryption key. [IMPORTANT] diff --git a/docs/api/saved-objects/update.asciidoc b/docs/api/saved-objects/update.asciidoc index bc99e264db122..28e8956edb528 100644 --- a/docs/api/saved-objects/update.asciidoc +++ b/docs/api/saved-objects/update.asciidoc @@ -8,6 +8,12 @@ deprecated::[8.7.0, To be removed in an upcoming version] Update the attributes for existing {kib} saved objects. +[NOTE] +==== +For the most up-to-date API details, refer to the +{kib-repo}/tree/{branch}/packages/core/saved-objects/docs/openapi[open API specification]. +==== + [[saved-objects-api-update-request]] ==== Request diff --git a/docs/management/connectors/action-types/webhook.asciidoc b/docs/management/connectors/action-types/webhook.asciidoc index 5424eb87c3ae4..1868f96d14c1d 100644 --- a/docs/management/connectors/action-types/webhook.asciidoc +++ b/docs/management/connectors/action-types/webhook.asciidoc @@ -3,6 +3,10 @@ ++++ Webhook ++++ +:frontmatter-description: Add a connector that can send requests to a web service. +:frontmatter-tags-products: [alerting] +:frontmatter-tags-content-type: [how-to] +:frontmatter-tags-user-goals: [configure] The Webhook connector uses https://github.com/axios/axios[axios] to send a POST or PUT request to a web service. @@ -15,6 +19,7 @@ or as needed when you're creating a rule. For example: [role="screenshot"] image::management/connectors/images/webhook-connector.png[Webhook connector] +// NOTE: This is an autogenerated screenshot. Do not edit it directly. [float] [[webhook-connector-configuration]] @@ -23,49 +28,27 @@ image::management/connectors/images/webhook-connector.png[Webhook connector] Webhook connectors have the following configuration properties: Name:: The name of the connector. -URL:: The request URL. If you are using the <> setting, make sure the hostname is added to the allowed hosts. -Method:: HTTP request method, either `post`(default) or `put`. -Headers:: A set of key-value pairs sent as headers with the request -Require authentication:: If true, a username and password for login type authentication must be provided. -Username:: Username for HTTP basic authentication. -Password:: Password for HTTP basic authentication. - -[float] -[[preconfigured-webhook-configuration]] -=== Create preconfigured connectors - -If you are running {kib} on-prem, you can define connectors by -adding `xpack.actions.preconfigured` settings to your `kibana.yml` file. -For example: - -[source,text] +Method:: The HTTP request method, either `post`(default) or `put`. +URL:: The request URL. If you are using the <> setting, make sure the hostname is added to the allowed hosts. +Authentication:: +The authentication type: none, basic, or SSL. +If you choose basic authentication, you must provide a user name and password. +If you choose SSL authentication, you must provide SSL server certificate authentication data in a CRT and key file format or a PFX file format. You can also optionally provide a passphrase if the files are password-protected. +HTTP headers:: A set of key-value pairs sent as headers with the request. +Certificate authority:: +A certificate authority (CA) that the connector can trust, for example to sign and validate server certificates. +This option is available for all authentication types. +CA file::: +The certificate authority file. +Verification mode::: +Controls the certificate verification. ++ -- -xpack.actions.preconfigured: - my-webhook: - name: preconfigured-webhook-connector-type - actionTypeId: .webhook - config: - url: https://test.host - method: post - headers: - testheader: testvalue - secrets: - user: testuser - password: passwordkeystorevalue +* Use `full` to validate that the certificate has an issue date within the `not_before` and `not_after` dates, chains to a trusted certificate authority, and has a hostname or IP address that matches the names within the certificate. +* Use `certificate` to validate the certificate and verifies that it is signed by a trusted authority; this option does not check the certificate hostname. +* Use `none` to skip certificate validation. -- -Config defines information for the connector type. - -`url`:: A URL string that corresponds to *URL*. -`method`:: A string that corresponds to *Method*. -`headers`:: A record that corresponds to *Headers*. -`hasAuth`:: A boolean that corresponds to *Requires authentication*. If `true`, this connector will require values for `user` and `password` inside the secrets configuration. Defaults to `true`. - -Secrets defines sensitive information for the connector type. - -`user`:: A string that corresponds to *User*. Required if `hasAuth` is set to `true`. -`password`:: A string that corresponds to *Password*. Should be stored in the <>. Required if `hasAuth` is set to `true`. - [float] [[webhook-action-configuration]] === Test connectors @@ -75,6 +58,7 @@ as you're creating or editing the connector in {kib}. For example: [role="screenshot"] image::management/connectors/images/webhook-params-test.png[Webhook params test] +// NOTE: This is an autogenerated screenshot. Do not edit it directly. Webhook actions have the following properties. diff --git a/docs/management/connectors/images/webhook-connector.png b/docs/management/connectors/images/webhook-connector.png index 6046572734afd..276fca05cee57 100644 Binary files a/docs/management/connectors/images/webhook-connector.png and b/docs/management/connectors/images/webhook-connector.png differ diff --git a/docs/management/connectors/images/webhook-params-test.png b/docs/management/connectors/images/webhook-params-test.png index 7b7007a72a0b6..4ae6660b85e26 100644 Binary files a/docs/management/connectors/images/webhook-params-test.png and b/docs/management/connectors/images/webhook-params-test.png differ diff --git a/docs/management/connectors/pre-configured-connectors.asciidoc b/docs/management/connectors/pre-configured-connectors.asciidoc index 43643f0f611ba..9284a66ea9480 100644 --- a/docs/management/connectors/pre-configured-connectors.asciidoc +++ b/docs/management/connectors/pre-configured-connectors.asciidoc @@ -80,3 +80,34 @@ image::images/preconfigured-connectors-managing.png[Connectors managing tab with Clicking a preconfigured connector shows the description, but not the configuration. +[float] +[[preconfigured-webhook-configuration]] +=== Webhook preconfigured connector example + +The following example creates a <> with basic authentication: + +[source,text] +-- +xpack.actions.preconfigured: + my-webhook: + name: preconfigured-webhook-connector-type + actionTypeId: .webhook + config: + url: https://test.host <1> + method: post <2> + headers: <3> + testheader: testvalue + hasAuth: true <4> + secrets: + user: testuser <5> + password: passwordkeystorevalue <6> +-- + +<1> The web service request URL. If you are using the <> setting, make sure the hostname is added to the allowed hosts. +<2> The HTTP request method, either `post`(default) or `put`. +<3> A set of key-value pairs sent as headers with the request. +<4> If `true`, this connector will require values for `user` and `password` inside the secrets configuration. Defaults to `true`. +<5> A valid user name. Required if `hasAuth` is set to `true`. +<6> A valid password. Required if `hasAuth` is set to `true`. NOTE: This value should be stored in the <>. + +NOTE: SSL authentication is not supported in preconfigured webhook connectors. \ No newline at end of file diff --git a/docs/user/alerting/images/rule-types-es-query-conditions.png b/docs/user/alerting/images/rule-types-es-query-conditions.png index 1237c996f8822..cbe18e7bf0bdb 100644 Binary files a/docs/user/alerting/images/rule-types-es-query-conditions.png and b/docs/user/alerting/images/rule-types-es-query-conditions.png differ diff --git a/docs/user/alerting/images/rule-types-es-query-invalid.png b/docs/user/alerting/images/rule-types-es-query-invalid.png index ce8b8e92181a9..0d36e33741484 100644 Binary files a/docs/user/alerting/images/rule-types-es-query-invalid.png and b/docs/user/alerting/images/rule-types-es-query-invalid.png differ diff --git a/docs/user/alerting/images/rule-types-es-query-valid.png b/docs/user/alerting/images/rule-types-es-query-valid.png index 1894ad2b445f8..938662f49a063 100644 Binary files a/docs/user/alerting/images/rule-types-es-query-valid.png and b/docs/user/alerting/images/rule-types-es-query-valid.png differ diff --git a/docs/user/alerting/rule-types/es-query.asciidoc b/docs/user/alerting/rule-types/es-query.asciidoc index abe81f3e953ae..f8310eefa790f 100644 --- a/docs/user/alerting/rule-types/es-query.asciidoc +++ b/docs/user/alerting/rule-types/es-query.asciidoc @@ -23,7 +23,8 @@ Fill in the name and optional tags, then select Define properties to detect the condition. [role="screenshot"] -image::user/alerting/images/rule-types-es-query-conditions.png[Eight clauses define the condition to detect] +image::user/alerting/images/rule-types-es-query-conditions.png[Define the condition to detect] +// NOTE: This is an autogenerated screenshot. Do not edit it directly. Define your query:: If you chose the query DSL option, you must specify indices to query and a time field that is used for the time window. You must then define a query in {es} query DSL. Only the `query`, `fields`, `_source` and `runtime_mappings` fields are used, other DSL fields are not considered. @@ -122,11 +123,13 @@ Use the *Test query* feature to verify that your query DSL is valid. + [role="screenshot"] image::user/alerting/images/rule-types-es-query-valid.png[Test {es} query returns number of matches when valid] +// NOTE: This is an autogenerated screenshot. Do not edit it directly. * An error message is shown if the query is invalid. + [role="screenshot"] image::user/alerting/images/rule-types-es-query-invalid.png[Test {es} query shows error when invalid] +// NOTE: This is an autogenerated screenshot. Do not edit it directly. [float] === Handling multiple matches of the same document diff --git a/docs/user/alerting/rule-types/geo-rule-types.asciidoc b/docs/user/alerting/rule-types/geo-rule-types.asciidoc index 837d7761a2e06..cfed5152e7657 100644 --- a/docs/user/alerting/rule-types/geo-rule-types.asciidoc +++ b/docs/user/alerting/rule-types/geo-rule-types.asciidoc @@ -10,7 +10,7 @@ In the event that an entity is contained within a boundary, an alert may be gene === Requirements To create a tracking containment rule, the following requirements must be present: -- *Tracks index or data view*: An index containing a `geo_point` field, `date` field, +- *Tracks index or data view*: An index containing a `geo_point` or `geo_shape` field, `date` field, and some form of entity identifier. An entity identifier is a `keyword` or `number` field that consistently identifies the entity to be tracked. The data in this index should be dynamically updating so that there are entity movements to alert upon. @@ -36,12 +36,7 @@ as well as two Kuery bars used to provide additional filtering context for each image::user/alerting/images/alert-types-tracking-containment-conditions.png[Define the condition to detect,width=75%] // NOTE: This is an autogenerated screenshot. Do not edit it directly. -Index (entity):: This clause requires an *index or data view*, a *time field* that will be used for the *time window*, and a *`geo_point` field* for tracking. -When entity:: This clause specifies which crossing option to track. The values -*Entered*, *Exited*, and *Crossed* can be selected to indicate which crossing conditions -should trigger a rule. *Entered* alerts on entry into a boundary, *Exited* alerts on exit -from a boundary, and *Crossed* alerts on all boundary crossings whether they be entrances -or exits. +Index (entity):: This clause requires an *index or data view*, a *time field* that will be used for the *time window*, and a *`geo_point` or `geo_shape` field* for tracking. Index (Boundary):: This clause requires an *index or data view*, a *`geo_shape` field* identifying boundaries, and an optional *Human-readable boundary name* for better alerting messages. diff --git a/docs/user/ml/images/ml-data-comparison.png b/docs/user/ml/images/ml-data-comparison.png new file mode 100644 index 0000000000000..428d625538603 Binary files /dev/null and b/docs/user/ml/images/ml-data-comparison.png differ diff --git a/docs/user/ml/index.asciidoc b/docs/user/ml/index.asciidoc index 59f7345923870..1d3bf33479d1b 100644 --- a/docs/user/ml/index.asciidoc +++ b/docs/user/ml/index.asciidoc @@ -31,6 +31,34 @@ privileges to use {ml-features}. Refer to NOTE: There are limitations in {ml-features} that affect {kib}. For more information, refer to {ml-docs}/ml-limitations.html[{ml-cap}]. +[discrete] +[[data-comparison-view]] +== Data comparison + +preview::[] + +You can find the data comparison view in **{ml-app}** > *{data-viz}* in {kib}. +The data comparison view shows you the differences in each field for two +different time ranges in a given {data-source}. The view helps you to visualize +the changes in your data over time and enables you to understand its behavior +better. + +[role="screenshot"] +image::user/ml/images/ml-data-comparison.png[Data comparison view for {kib} Sample Data Flights ] + +Select a {data-source} that you want to analyze, then select a time range for +the reference and the comparison data in the appearing histogram chart. You can +adjust the time range for both the reference and the comparison data by moving +the respective brushes. When you finished setting the time ranges, click +*Run analysis*. + +You can decide whether you want to see all the fields in the {data-source} or +only the ones that contains drifted data. The analysis results table displays +the fields, their types, if drift is detected, the p-value that indicates how +significant the detected change is, the reference and comparison distribution, +and the comparison chart. You can expand the results for a particular field by +clicking the arrow icon at the beginning of the field's row. + -- [[xpack-ml-anomalies]] @@ -123,11 +151,11 @@ advanced statistical methods to help you interpret your data and its behavior. preview::[] Log rate analysis is a feature that uses advanced statistical methods to -identify reasons for increases or decreases in log rates. It makes it easy to find and -investigate causes of unusual spikes or drops by using the analysis workflow view. -Examine the histogram chart of the log rates for a given {data-source}, and find -the reason behind a particular change possibly in millions of log events across -multiple fields and values. +identify reasons for increases or decreases in log rates. It makes it easy to +find and investigate causes of unusual spikes or drops by using the analysis +workflow view. Examine the histogram chart of the log rates for a given +{data-source}, and find the reason behind a particular change possibly in +millions of log events across multiple fields and values. You can find log rate analysis under **{ml-app}** > **AIOps Labs** where you can select the {data-source} or saved search that you want to analyze. diff --git a/examples/embeddable_examples/public/migrations/migration.7.3.0.ts b/examples/embeddable_examples/public/migrations/migration_definitions.ts similarity index 75% rename from examples/embeddable_examples/public/migrations/migration.7.3.0.ts rename to examples/embeddable_examples/public/migrations/migration_definitions.ts index 79b61848a0166..56e03bed313eb 100644 --- a/examples/embeddable_examples/public/migrations/migration.7.3.0.ts +++ b/examples/embeddable_examples/public/migrations/migration_definitions.ts @@ -11,20 +11,16 @@ import { EmbeddableInput } from '@kbn/embeddable-plugin/common'; import { SimpleEmbeddableInput } from './migrations_embeddable_factory'; // before 7.3.0 this embeddable received a very simple input with a variable named `number` -// eslint-disable-next-line @typescript-eslint/naming-convention -type SimpleEmbeddableInput_pre7_3_0 = EmbeddableInput & { +type SimpleEmbeddableInputV1 = EmbeddableInput & { number: number; }; -type SimpleEmbeddable730MigrateFn = MigrateFunction< - SimpleEmbeddableInput_pre7_3_0, - SimpleEmbeddableInput ->; +type SimpleEmbeddable730MigrateFn = MigrateFunction; // when migrating old state we'll need to set a default title, or we should make title optional in the new state const defaultTitle = 'no title'; -export const migration730: SimpleEmbeddable730MigrateFn = (state) => { +export const migrateToVersion2: SimpleEmbeddable730MigrateFn = (state) => { const newState: SimpleEmbeddableInput = { ...state, title: defaultTitle, value: state.number }; return newState; }; diff --git a/examples/embeddable_examples/public/migrations/migrations_embeddable_factory.ts b/examples/embeddable_examples/public/migrations/migrations_embeddable_factory.ts index 19efd95a12dde..fb96fbff77b35 100644 --- a/examples/embeddable_examples/public/migrations/migrations_embeddable_factory.ts +++ b/examples/embeddable_examples/public/migrations/migrations_embeddable_factory.ts @@ -15,7 +15,7 @@ import { EmbeddableFactory, } from '@kbn/embeddable-plugin/public'; import { SimpleEmbeddable } from './migrations_embeddable'; -import { migration730 } from './migration.7.3.0'; +import { migrateToVersion2 } from './migration_definitions'; export const SIMPLE_EMBEDDABLE = 'SIMPLE_EMBEDDABLE'; @@ -30,10 +30,11 @@ export class SimpleEmbeddableFactoryDefinition implements EmbeddableFactoryDefinition { public readonly type = SIMPLE_EMBEDDABLE; + public latestVersion = '2'; // we need to provide migration function every time we change the interface of our state public readonly migrations = { - '7.3.0': migration730, + '2': migrateToVersion2, }; public extract(state: EmbeddableStateWithType) { diff --git a/package.json b/package.json index 19247a3a1a2fc..a1c0e7d000ed9 100644 --- a/package.json +++ b/package.json @@ -84,7 +84,7 @@ "**/hoist-non-react-statics": "^3.3.2", "**/isomorphic-fetch/node-fetch": "^2.6.7", "**/remark-parse/trim": "1.0.1", - "**/typescript": "4.6.3", + "**/typescript": "4.7.4", "globby/fast-glob": "^3.2.11" }, "dependencies": { @@ -99,7 +99,7 @@ "@elastic/datemath": "5.0.3", "@elastic/elasticsearch": "npm:@elastic/elasticsearch-canary@8.9.1-canary.1", "@elastic/ems-client": "8.4.0", - "@elastic/eui": "87.1.0", + "@elastic/eui": "87.2.0", "@elastic/filesaver": "1.1.2", "@elastic/node-crypto": "1.2.1", "@elastic/numeral": "^2.5.1", @@ -608,6 +608,7 @@ "@kbn/security-solution-serverless": "link:x-pack/plugins/security_solution_serverless", "@kbn/security-solution-side-nav": "link:x-pack/packages/security-solution/side_nav", "@kbn/security-solution-storybook-config": "link:x-pack/packages/security-solution/storybook/config", + "@kbn/security-solution-upselling": "link:x-pack/packages/security-solution/upselling", "@kbn/security-test-endpoints-plugin": "link:x-pack/test/security_functional/plugins/test_endpoints", "@kbn/securitysolution-autocomplete": "link:packages/kbn-securitysolution-autocomplete", "@kbn/securitysolution-data-table": "link:x-pack/packages/security-solution/data_table", @@ -805,6 +806,7 @@ "JSONStream": "1.3.5", "adm-zip": "^0.5.9", "ajv": "^8.12.0", + "ansi-regex": "^5.0.1", "antlr4ts": "^0.5.0-alpha.3", "archiver": "^5.3.1", "async": "^3.2.3", @@ -1551,7 +1553,7 @@ "tree-kill": "^1.2.2", "ts-morph": "^13.0.2", "tsd": "^0.20.0", - "typescript": "4.6.3", + "typescript": "4.7.4", "url-loader": "^2.2.0", "val-loader": "^1.1.1", "vinyl-fs": "^4.0.0", diff --git a/packages/core/environment/core-environment-server-internal/src/resolve_uuid.test.ts b/packages/core/environment/core-environment-server-internal/src/resolve_uuid.test.ts index 353afe32921ce..32f149525463f 100644 --- a/packages/core/environment/core-environment-server-internal/src/resolve_uuid.test.ts +++ b/packages/core/environment/core-environment-server-internal/src/resolve_uuid.test.ts @@ -158,6 +158,15 @@ describe('resolveInstanceUuid', () => { }); }); + describe('when file exists but is empty', () => { + it('throws an explicit error for uuid formatting', async () => { + mockReadFile({ uuid: '' }); + await expect( + resolveInstanceUuid({ pathConfig, serverConfig, logger }) + ).rejects.toThrowErrorMatchingInlineSnapshot(`"data-folder/uuid contains an invalid UUID"`); + }); + }); + describe('when file contains a trailing new line', () => { it('returns the trimmed file uuid', async () => { mockReadFile({ uuid: DEFAULT_FILE_UUID + '\n' }); diff --git a/packages/core/environment/core-environment-server-internal/src/resolve_uuid.ts b/packages/core/environment/core-environment-server-internal/src/resolve_uuid.ts index 3ba6285fe6836..adac8547251a3 100644 --- a/packages/core/environment/core-environment-server-internal/src/resolve_uuid.ts +++ b/packages/core/environment/core-environment-server-internal/src/resolve_uuid.ts @@ -65,13 +65,16 @@ export async function resolveInstanceUuid({ async function readUuidFromFile(filepath: string, logger: Logger): Promise { const content = await readFileContent(filepath); + if (content === undefined) { + return undefined; + } if (content === UUID_7_6_0_BUG) { logger.debug(`UUID from 7.6.0 bug detected, ignoring file UUID`); return undefined; } - if (content && !content.match(uuidRegexp)) { + if (!content.match(uuidRegexp)) { throw new Error(`${filepath} contains an invalid UUID`); } diff --git a/packages/core/fatal-errors/core-fatal-errors-browser-internal/src/__snapshots__/fatal_errors_screen.test.tsx.snap b/packages/core/fatal-errors/core-fatal-errors-browser-internal/src/__snapshots__/fatal_errors_screen.test.tsx.snap index 48caf45f0b0f1..962ba0ba9ba5b 100644 --- a/packages/core/fatal-errors/core-fatal-errors-browser-internal/src/__snapshots__/fatal_errors_screen.test.tsx.snap +++ b/packages/core/fatal-errors/core-fatal-errors-browser-internal/src/__snapshots__/fatal_errors_screen.test.tsx.snap @@ -2,6 +2,7 @@ exports[`FatalErrorsScreen rendering render matches snapshot 1`] = ` { public render() { return ( - + { - console.log(`Detected an unhandled Promise rejection.\n${e.reason}`); // eslint-disable-line no-console + const { message, stack } = getErrorInfo(e.reason); + // eslint-disable-next-line no-console + console.log(`Detected an unhandled Promise rejection.\n + Message: ${message}\n + Stack: ${stack}`); }); } } diff --git a/packages/core/http/core-http-router-server-internal/src/request.ts b/packages/core/http/core-http-router-server-internal/src/request.ts index 03348e1e9f577..05c35f4004efa 100644 --- a/packages/core/http/core-http-router-server-internal/src/request.ts +++ b/packages/core/http/core-http-router-server-internal/src/request.ts @@ -141,7 +141,7 @@ export class CoreKibanaRequest< public readonly rewrittenUrl?: URL; /** @internal */ - protected readonly [requestSymbol]: Request; + protected readonly [requestSymbol]!: Request; constructor( request: RawRequest, diff --git a/packages/core/http/core-http-router-server-internal/src/versioned_router/route_version_utils.ts b/packages/core/http/core-http-router-server-internal/src/versioned_router/route_version_utils.ts index c5e6ff5967deb..6d22046ed81e1 100644 --- a/packages/core/http/core-http-router-server-internal/src/versioned_router/route_version_utils.ts +++ b/packages/core/http/core-http-router-server-internal/src/versioned_router/route_version_utils.ts @@ -52,7 +52,9 @@ type KibanaRequestWithQueryVersion = KibanaRequest< { [ELASTIC_HTTP_VERSION_QUERY_PARAM]: unknown } >; -export function hasQueryVersion(request: KibanaRequest): request is KibanaRequestWithQueryVersion { +export function hasQueryVersion( + request: Mutable +): request is Mutable { return isObject(request.query) && ELASTIC_HTTP_VERSION_QUERY_PARAM in request.query; } export function removeQueryVersion(request: Mutable): void { diff --git a/packages/core/i18n/core-i18n-browser-internal/src/__snapshots__/i18n_service.test.tsx.snap b/packages/core/i18n/core-i18n-browser-internal/src/__snapshots__/i18n_service.test.tsx.snap index cff710351cd74..2789cde01744d 100644 --- a/packages/core/i18n/core-i18n-browser-internal/src/__snapshots__/i18n_service.test.tsx.snap +++ b/packages/core/i18n/core-i18n-browser-internal/src/__snapshots__/i18n_service.test.tsx.snap @@ -291,8 +291,8 @@ exports[`#start() returns \`Context\` component 1`] = ` "euiRelativeTab.numberInputError": "Must be >= 0", "euiRelativeTab.numberInputLabel": "Time span amount", "euiRelativeTab.unitInputLabel": "Relative time span", - "euiResizableButton.horizontalResizerAriaLabel": "Press left or right to adjust panels size", - "euiResizableButton.verticalResizerAriaLabel": "Press up or down to adjust panels size", + "euiResizableButton.horizontalResizerAriaLabel": "Press the left or right arrow keys to adjust panels size", + "euiResizableButton.verticalResizerAriaLabel": "Press the up or down arrow keys to adjust panels size", "euiResizablePanel.toggleButtonAriaLabel": "Press to toggle this panel", "euiSaturation.ariaLabel": "HSV color mode saturation and value 2-axis slider", "euiSaturation.screenReaderInstructions": "Arrow keys to navigate the square color gradient. Coordinates will be used to calculate HSV color mode \\"saturation\\" and \\"value\\" numbers, in the range of 0 to 1. Left and right to change the saturation. Up and down change the value.", diff --git a/packages/core/i18n/core-i18n-browser-internal/src/i18n_eui_mapping.tsx b/packages/core/i18n/core-i18n-browser-internal/src/i18n_eui_mapping.tsx index c08df1f5a2bd8..bae77a2ac75de 100644 --- a/packages/core/i18n/core-i18n-browser-internal/src/i18n_eui_mapping.tsx +++ b/packages/core/i18n/core-i18n-browser-internal/src/i18n_eui_mapping.tsx @@ -1469,13 +1469,13 @@ export const getEuiContextMapping = (): EuiTokensObject => { 'euiResizableButton.horizontalResizerAriaLabel': i18n.translate( 'core.euiResizableButton.horizontalResizerAriaLabel', { - defaultMessage: 'Press left or right to adjust panels size', + defaultMessage: 'Press the left or right arrow keys to adjust panels size', } ), 'euiResizableButton.verticalResizerAriaLabel': i18n.translate( 'core.euiResizableButton.verticalResizerAriaLabel', { - defaultMessage: 'Press up or down to adjust panels size', + defaultMessage: 'Press the up or down arrow keys to adjust panels size', } ), 'euiResizablePanel.toggleButtonAriaLabel': i18n.translate( diff --git a/packages/core/logging/core-logging-common-internal/src/layouts/conversions/message.test.ts b/packages/core/logging/core-logging-common-internal/src/layouts/conversions/message.test.ts new file mode 100644 index 0000000000000..a08f4742bb978 --- /dev/null +++ b/packages/core/logging/core-logging-common-internal/src/layouts/conversions/message.test.ts @@ -0,0 +1,48 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { LogLevel, LogRecord } from '@kbn/logging'; +import { MessageConversion } from './message'; + +const baseRecord: LogRecord = { + pid: 1, + timestamp: new Date(), + level: LogLevel.Info, + context: '', + message: '', +}; + +describe('MessageConversion', () => { + test('it should keep break lines', () => { + expect( + MessageConversion.convert({ ...baseRecord, message: 'Hi!\nHow are you?' }, false) + ).toEqual('Hi!\nHow are you?'); + }); + + test('it should remove ANSI chars lines from the message', () => { + expect( + MessageConversion.convert( + { ...baseRecord, message: 'Blinking...\u001b[5;7;6mThis is Fine\u001b[27m' }, + false + ) + ).toEqual('Blinking...This is Fine'); + }); + + test('it should remove any unicode injection from the message', () => { + expect( + MessageConversion.convert( + { + ...baseRecord, + message: + '\u001b[31mESC-INJECTION-LFUNICODE:\u001b[32mSUCCESSFUL\u001b[0m\u0007\n\nInjecting 10.000 lols 😂\u001b[10000;b\u0007', + }, + false + ) + ).toEqual('ESC-INJECTION-LFUNICODE:SUCCESSFUL\n\nInjecting 10.000 lols 😂'); + }); +}); diff --git a/packages/core/logging/core-logging-common-internal/src/layouts/conversions/message.ts b/packages/core/logging/core-logging-common-internal/src/layouts/conversions/message.ts index 97fc4c60101ce..8bc9cd6c4115a 100644 --- a/packages/core/logging/core-logging-common-internal/src/layouts/conversions/message.ts +++ b/packages/core/logging/core-logging-common-internal/src/layouts/conversions/message.ts @@ -6,13 +6,20 @@ * Side Public License, v 1. */ +import ansiRegex from 'ansi-regex'; import { LogRecord } from '@kbn/logging'; import { Conversion } from './types'; +// Defining it globally because it's more performant than creating for each log entry +// We can reuse the same global RegExp here because `.replace()` automatically resets the `.lastIndex` of the RegExp. +const ANSI_ESCAPE_CODES_REGEXP = ansiRegex(); + export const MessageConversion: Conversion = { pattern: /%message/g, convert(record: LogRecord) { // Error stack is much more useful than just the message. - return (record.error && record.error.stack) || record.message; + const str = record.error?.stack || record.message; + // We need to validate it's a string because, despite types, there are use case where it's not a string :/ + return typeof str === 'string' ? str.replace(ANSI_ESCAPE_CODES_REGEXP, '') : str; }, }; diff --git a/packages/core/logging/core-logging-server-internal/src/appenders/rolling_file/strategies/numeric/rolling_tasks.ts b/packages/core/logging/core-logging-server-internal/src/appenders/rolling_file/strategies/numeric/rolling_tasks.ts index ef28ede1aeb29..15bae8901ddcb 100644 --- a/packages/core/logging/core-logging-server-internal/src/appenders/rolling_file/strategies/numeric/rolling_tasks.ts +++ b/packages/core/logging/core-logging-server-internal/src/appenders/rolling_file/strategies/numeric/rolling_tasks.ts @@ -7,8 +7,9 @@ */ import { join } from 'path'; -import { readdir, rename, unlink, access } from 'fs/promises'; +import { readdir, unlink, access } from 'fs/promises'; import { getFileNameMatcher, getRollingFileName } from './pattern_matcher'; +import { moveFile } from './utils'; export const shouldSkipRollout = async ({ logFilePath }: { logFilePath: string }) => { // in case of time-interval triggering policy, we can have an entire @@ -70,7 +71,7 @@ export const rollPreviousFilesInOrder = async ({ for (let i = filesToRoll.length - 1; i >= 0; i--) { const oldFileName = filesToRoll[i]; const newFileName = getRollingFileName(logFileBaseName, pattern, i + 2); - await rename(join(logFileFolder, oldFileName), join(logFileFolder, newFileName)); + await moveFile(join(logFileFolder, oldFileName), join(logFileFolder, newFileName)); } }; @@ -84,5 +85,5 @@ export const rollCurrentFile = async ({ pattern: string; }) => { const rolledBaseName = getRollingFileName(logFileBaseName, pattern, 1); - await rename(join(logFileFolder, logFileBaseName), join(logFileFolder, rolledBaseName)); + await moveFile(join(logFileFolder, logFileBaseName), join(logFileFolder, rolledBaseName)); }; diff --git a/packages/core/logging/core-logging-server-internal/src/appenders/rolling_file/strategies/numeric/utils.test.mocks.ts b/packages/core/logging/core-logging-server-internal/src/appenders/rolling_file/strategies/numeric/utils.test.mocks.ts new file mode 100644 index 0000000000000..d0bd7e91743e2 --- /dev/null +++ b/packages/core/logging/core-logging-server-internal/src/appenders/rolling_file/strategies/numeric/utils.test.mocks.ts @@ -0,0 +1,21 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +export const copyFileMock = jest.fn(); +export const renameMock = jest.fn(); +export const unlinkMock = jest.fn(); + +jest.doMock('fs/promises', () => { + const actual = jest.requireActual('fs/promises'); + return { + ...actual, + copyFile: copyFileMock, + rename: renameMock, + unlink: unlinkMock, + }; +}); diff --git a/packages/core/logging/core-logging-server-internal/src/appenders/rolling_file/strategies/numeric/utils.test.ts b/packages/core/logging/core-logging-server-internal/src/appenders/rolling_file/strategies/numeric/utils.test.ts new file mode 100644 index 0000000000000..17ed06763370a --- /dev/null +++ b/packages/core/logging/core-logging-server-internal/src/appenders/rolling_file/strategies/numeric/utils.test.ts @@ -0,0 +1,85 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { unlinkMock, renameMock, copyFileMock } from './utils.test.mocks'; +import { moveFile } from './utils'; + +describe('moveFile', () => { + beforeEach(() => { + unlinkMock.mockReset(); + renameMock.mockReset(); + copyFileMock.mockReset(); + }); + + it('only calls `rename` when call succeeds', async () => { + await moveFile('from', 'to'); + + expect(renameMock).toHaveBeenCalledTimes(1); + expect(renameMock).toHaveBeenCalledWith('from', 'to'); + + expect(copyFileMock).not.toHaveBeenCalled(); + expect(unlinkMock).not.toHaveBeenCalled(); + }); + + const createError = (code: string) => { + const err = new Error(code); + (err as any).code = code; + return err; + }; + + it('throws error if `rename` throws a non-EXDEV error', async () => { + renameMock.mockRejectedValue(createError('something')); + + await expect(moveFile('from', 'to')).rejects.toThrowError('something'); + + expect(renameMock).toHaveBeenCalledTimes(1); + expect(copyFileMock).not.toHaveBeenCalled(); + expect(unlinkMock).not.toHaveBeenCalled(); + }); + + it('fallback to copy+unlink when `rename` throws a EXDEV error', async () => { + renameMock.mockRejectedValue(createError('EXDEV')); + + await moveFile('from', 'to'); + + expect(renameMock).toHaveBeenCalledTimes(1); + expect(renameMock).toHaveBeenCalledWith('from', 'to'); + + expect(copyFileMock).toHaveBeenCalledTimes(1); + expect(copyFileMock).toHaveBeenCalledWith('from', 'to'); + + expect(unlinkMock).toHaveBeenCalledTimes(1); + expect(unlinkMock).toHaveBeenCalledWith('from'); + }); + + it('throws if copyFile call throws', async () => { + renameMock.mockRejectedValue(createError('EXDEV')); + copyFileMock.mockRejectedValue(createError('anything')); + + await expect(moveFile('from', 'to')).rejects.toThrowError('anything'); + + expect(renameMock).toHaveBeenCalledTimes(1); + + expect(copyFileMock).toHaveBeenCalledTimes(1); + + expect(unlinkMock).not.toHaveBeenCalled(); + }); + + it('throws if unlink call throws', async () => { + renameMock.mockRejectedValue(createError('EXDEV')); + unlinkMock.mockRejectedValue(createError('something-else')); + + await expect(moveFile('from', 'to')).rejects.toThrowError('something-else'); + + expect(renameMock).toHaveBeenCalledTimes(1); + + expect(copyFileMock).toHaveBeenCalledTimes(1); + + expect(unlinkMock).toHaveBeenCalledTimes(1); + }); +}); diff --git a/packages/core/logging/core-logging-server-internal/src/appenders/rolling_file/strategies/numeric/utils.ts b/packages/core/logging/core-logging-server-internal/src/appenders/rolling_file/strategies/numeric/utils.ts new file mode 100644 index 0000000000000..3cbe013a49282 --- /dev/null +++ b/packages/core/logging/core-logging-server-internal/src/appenders/rolling_file/strategies/numeric/utils.ts @@ -0,0 +1,24 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { copyFile, rename, unlink } from 'fs/promises'; + +export const moveFile = async (oldPath: string, newPath: string): Promise => { + try { + await rename(oldPath, newPath); + } catch (err) { + // rename isn't supported on some file systems / volumes + // so we fallback to copy+delete + if (err.code === 'EXDEV') { + await copyFile(oldPath, newPath); + await unlink(oldPath); + } else { + throw err; + } + } +}; diff --git a/packages/core/plugins/core-plugins-server-internal/src/plugins_system.test.ts b/packages/core/plugins/core-plugins-server-internal/src/plugins_system.test.ts index f949d039eb0ce..701792f24bc35 100644 --- a/packages/core/plugins/core-plugins-server-internal/src/plugins_system.test.ts +++ b/packages/core/plugins/core-plugins-server-internal/src/plugins_system.test.ts @@ -202,6 +202,7 @@ test('correctly orders plugins and returns exposed values for "setup" and "start setup: Record; start: Record; } + const plugins = new Map([ [ createPlugin('order-4', { required: ['order-2'] }), @@ -754,6 +755,70 @@ describe('stop', () => { jest.useRealTimers(); }); + const nextTick = () => new Promise((resolve) => setImmediate(resolve)); + + it('stops all plugins', async () => { + const [plugin1, plugin2, plugin3] = [ + createPlugin('plugin-1'), + createPlugin('plugin-2'), + createPlugin('plugin-3'), + ].map((plugin, index) => { + jest.spyOn(plugin, 'setup').mockResolvedValue(`setup-as-${index}`); + jest.spyOn(plugin, 'start').mockResolvedValue(`started-as-${index}`); + pluginsSystem.addPlugin(plugin); + return plugin; + }); + + const stopSpy1 = jest.spyOn(plugin1, 'stop').mockImplementationOnce(() => Promise.resolve()); + const stopSpy2 = jest.spyOn(plugin2, 'stop').mockImplementationOnce(() => Promise.resolve()); + const stopSpy3 = jest.spyOn(plugin3, 'stop').mockImplementationOnce(() => Promise.resolve()); + + mockCreatePluginSetupContext.mockImplementation(() => ({})); + + await pluginsSystem.setupPlugins(setupDeps); + const stopPromise = pluginsSystem.stopPlugins(); + + await nextTick(); + jest.runAllTimers(); + + await stopPromise; + + expect(stopSpy1).toHaveBeenCalledTimes(1); + expect(stopSpy2).toHaveBeenCalledTimes(1); + expect(stopSpy3).toHaveBeenCalledTimes(1); + }); + + it('stops plugins in the correct order', async () => { + // stop order: 3 => 1 => 2 + const [plugin1, plugin2, plugin3] = [ + createPlugin('plugin-1', { required: ['plugin-2'] }), + createPlugin('plugin-2'), + createPlugin('plugin-3', { required: ['plugin-1', 'plugin-2'] }), + ].map((plugin, index) => { + jest.spyOn(plugin, 'setup').mockResolvedValue(`setup-as-${index}`); + jest.spyOn(plugin, 'start').mockResolvedValue(`started-as-${index}`); + pluginsSystem.addPlugin(plugin); + return plugin; + }); + + const stopSpy1 = jest.spyOn(plugin1, 'stop').mockImplementationOnce(() => Promise.resolve()); + const stopSpy2 = jest.spyOn(plugin2, 'stop').mockImplementationOnce(() => Promise.resolve()); + const stopSpy3 = jest.spyOn(plugin3, 'stop').mockImplementationOnce(() => Promise.resolve()); + + mockCreatePluginSetupContext.mockImplementation(() => ({})); + + await pluginsSystem.setupPlugins(setupDeps); + const stopPromise = pluginsSystem.stopPlugins(); + + await nextTick(); + jest.runAllTimers(); + + await stopPromise; + + expect(stopSpy3.mock.invocationCallOrder[0]).toBeLessThan(stopSpy1.mock.invocationCallOrder[0]); + expect(stopSpy1.mock.invocationCallOrder[0]).toBeLessThan(stopSpy2.mock.invocationCallOrder[0]); + }); + it('waits for 30 sec to finish "stop" and move on to the next plugin.', async () => { const [plugin1, plugin2] = [createPlugin('timeout-stop-1'), createPlugin('timeout-stop-2')].map( (plugin, index) => { @@ -774,8 +839,11 @@ describe('stop', () => { await pluginsSystem.setupPlugins(setupDeps); const stopPromise = pluginsSystem.stopPlugins(); + await nextTick(); jest.runAllTimers(); + await stopPromise; + expect(stopSpy1).toHaveBeenCalledTimes(1); expect(stopSpy2).toHaveBeenCalledTimes(1); @@ -785,4 +853,42 @@ describe('stop', () => { ]) ); }); + + it('logs a message if a plugin fails top stop', async () => { + // stop order: 3 => 1 => 2 + const [plugin1, plugin2, plugin3] = [ + createPlugin('plugin-1', { required: ['plugin-2'] }), + createPlugin('plugin-2'), + createPlugin('plugin-3', { required: ['plugin-1', 'plugin-2'] }), + ].map((plugin, index) => { + jest.spyOn(plugin, 'setup').mockResolvedValue(`setup-as-${index}`); + jest.spyOn(plugin, 'start').mockResolvedValue(`started-as-${index}`); + pluginsSystem.addPlugin(plugin); + return plugin; + }); + + const stopSpy1 = jest + .spyOn(plugin1, 'stop') + .mockImplementationOnce(() => Promise.reject('woups')); + const stopSpy2 = jest.spyOn(plugin2, 'stop').mockImplementationOnce(() => Promise.resolve()); + const stopSpy3 = jest.spyOn(plugin3, 'stop').mockImplementationOnce(() => Promise.resolve()); + + mockCreatePluginSetupContext.mockImplementation(() => ({})); + + await pluginsSystem.setupPlugins(setupDeps); + const stopPromise = pluginsSystem.stopPlugins(); + + await nextTick(); + jest.runAllTimers(); + + await stopPromise; + + expect(stopSpy1).toHaveBeenCalledTimes(1); + expect(stopSpy2).toHaveBeenCalledTimes(1); + expect(stopSpy3).toHaveBeenCalledTimes(1); + + expect(loggingSystemMock.collect(logger).warn.flat()).toEqual( + expect.arrayContaining([`"plugin-1" thrown during stop: woups`]) + ); + }); }); diff --git a/packages/core/plugins/core-plugins-server-internal/src/plugins_system.ts b/packages/core/plugins/core-plugins-server-internal/src/plugins_system.ts index d7c4df71dd4fc..35e77e84381fd 100644 --- a/packages/core/plugins/core-plugins-server-internal/src/plugins_system.ts +++ b/packages/core/plugins/core-plugins-server-internal/src/plugins_system.ts @@ -224,21 +224,38 @@ export class PluginsSystem { this.log.info(`Stopping all plugins.`); - // Stop plugins in the reverse order of when they were set up. - while (this.satupPlugins.length > 0) { - const pluginName = this.satupPlugins.pop()!; - - this.log.debug(`Stopping plugin "${pluginName}"...`); + const reverseDependencyMap = buildReverseDependencyMap(this.plugins); + const pluginStopPromiseMap = new Map>(); + for (let i = this.satupPlugins.length - 1; i > -1; i--) { + const pluginName = this.satupPlugins[i]; + const plugin = this.plugins.get(pluginName)!; + const pluginDependant = reverseDependencyMap.get(pluginName)!; + const dependantPromises = pluginDependant.map( + (dependantName) => pluginStopPromiseMap.get(dependantName)! + ); - const resultMaybe = await withTimeout({ - promise: this.plugins.get(pluginName)!.stop(), - timeoutMs: 30 * Sec, + // Stop plugin as soon as all the dependant plugins are stopped. + const pluginStopPromise = Promise.all(dependantPromises).then(async () => { + this.log.debug(`Stopping plugin "${pluginName}"...`); + + try { + const resultMaybe = await withTimeout({ + promise: plugin.stop(), + timeoutMs: 30 * Sec, + }); + if (resultMaybe?.timedout) { + this.log.warn(`"${pluginName}" plugin didn't stop in 30sec., move on to the next.`); + } + } catch (e) { + this.log.warn(`"${pluginName}" thrown during stop: ${e}`); + } }); - - if (resultMaybe?.timedout) { - this.log.warn(`"${pluginName}" plugin didn't stop in 30sec., move on to the next.`); - } + pluginStopPromiseMap.set(pluginName, pluginStopPromise); } + + await Promise.allSettled(pluginStopPromiseMap.values()); + + this.log.info(`All plugins stopped.`); } /** @@ -334,3 +351,23 @@ export class PluginsSystem { return sortedPluginNames; } } + +const buildReverseDependencyMap = ( + pluginMap: Map +): Map => { + const reverseMap = new Map(); + for (const pluginName of pluginMap.keys()) { + reverseMap.set(pluginName, []); + } + for (const [pluginName, pluginWrapper] of pluginMap.entries()) { + const allDependencies = [...pluginWrapper.requiredPlugins, ...pluginWrapper.optionalPlugins]; + for (const dependency of allDependencies) { + // necessary to evict non-present optional dependency + if (pluginMap.has(dependency)) { + reverseMap.get(dependency)!.push(pluginName); + } + } + reverseMap.set(pluginName, []); + } + return reverseMap; +}; diff --git a/packages/core/saved-objects/core-saved-objects-api-browser/src/apis/find.ts b/packages/core/saved-objects/core-saved-objects-api-browser/src/apis/find.ts index 8b2b154cb0a71..7dc54a9f6404b 100644 --- a/packages/core/saved-objects/core-saved-objects-api-browser/src/apis/find.ts +++ b/packages/core/saved-objects/core-saved-objects-api-browser/src/apis/find.ts @@ -25,6 +25,7 @@ export type SavedObjectsFindOptions = Omit< | 'sortOrder' | 'typeToNamespacesMap' | 'migrationVersionCompatibility' + | 'downwardConversion' >; /** diff --git a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/bulk_get.ts b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/bulk_get.ts index 3a135d4b73ce8..f45946add7132 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/bulk_get.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/bulk_get.ts @@ -65,7 +65,7 @@ export const performBulkGet = async ( const { securityExtension, spacesExtension } = extensions; const namespace = commonHelper.getCurrentNamespace(options.namespace); - const { migrationVersionCompatibility } = options; + const { migrationVersionCompatibility, downwardConversion } = options; if (objects.length === 0) { return { saved_objects: [] }; @@ -204,7 +204,7 @@ export const performBulkGet = async ( const document = getSavedObjectFromSource(registry, type, id, doc, { migrationVersionCompatibility, }); - const migrated = migrationHelper.migrateStorageDocument(document); + const migrated = migrationHelper.migrateStorageDocument(document, { downwardConversion }); return migrated; }), diff --git a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/bulk_resolve.ts b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/bulk_resolve.ts index a18b69ec29bf6..f937f3646ec26 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/bulk_resolve.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/bulk_resolve.ts @@ -10,7 +10,7 @@ import { type SavedObject, BulkResolveError } from '@kbn/core-saved-objects-serv import { SavedObjectsBulkResolveObject, SavedObjectsBulkResolveResponse, - SavedObjectsResolveOptions, + SavedObjectsGetOptions, SavedObjectsResolveResponse, } from '@kbn/core-saved-objects-api-server'; import { errorContent } from './utils'; @@ -20,7 +20,7 @@ import { incrementCounterInternal } from './internals/increment_counter_internal export interface PerformCreateParams { objects: SavedObjectsBulkResolveObject[]; - options: SavedObjectsResolveOptions; + options: SavedObjectsGetOptions; } export const performBulkResolve = async ( @@ -52,7 +52,7 @@ export const performBulkResolve = async ( encryptionExtension, securityExtension, objects, - options: { ...options, namespace }, + options: { ...options, namespace }, // note: Includes downwardConversion?: 'forbid' }); const resolvedObjects = bulkResults.map>((result) => { // extract payloads from saved object errors diff --git a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/find.ts b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/find.ts index 3346e6552646a..c46f4c3eda8ea 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/find.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/find.ts @@ -92,6 +92,7 @@ export const performFind = async ( preference, aggs, migrationVersionCompatibility, + downwardConversion, } = options; if (!type) { @@ -244,7 +245,9 @@ export const performFind = async ( }); // can't migrate a document with partial attributes if (!fields) { - savedObject = migrationHelper.migrateStorageDocument(savedObject) as SavedObject; + savedObject = migrationHelper.migrateStorageDocument(savedObject, { + downwardConversion, + }) as SavedObject; } return { ...savedObject, diff --git a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/get.ts b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/get.ts index 215036f29583c..edc9fdcb8106e 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/get.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/get.ts @@ -42,7 +42,7 @@ export const performGet = async ( const { securityExtension } = extensions; const namespace = commonHelper.getCurrentNamespace(options.namespace); - const { migrationVersionCompatibility } = options; + const { migrationVersionCompatibility, downwardConversion } = options; if (!allowedTypes.includes(type)) { throw SavedObjectsErrorHelpers.createGenericNotFoundError(type, id); @@ -86,7 +86,9 @@ export const performGet = async ( let migrated: SavedObject; try { - migrated = migrationHelper.migrateStorageDocument(document) as SavedObject; + migrated = migrationHelper.migrateStorageDocument(document, { + downwardConversion, + }) as SavedObject; } catch (error) { throw SavedObjectsErrorHelpers.decorateGeneralError( error, diff --git a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/helpers/migration.ts b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/helpers/migration.ts index c7ae86b101984..42af825280f4f 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/helpers/migration.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/helpers/migration.ts @@ -35,8 +35,17 @@ export class MigrationHelper { * Migrate the given SO document, accepting downgrades. * This function is meant to be used by read APIs (get, find) for documents fetched from the index. * It will therefore accept downgrading the document before returning it from the API. + * + * Note: to opt out of downgrades, use the downwardConversion: 'forbid' API option in READ API operations: + * get, resolve, find, bulk_get, bulk_resolve */ - migrateStorageDocument(document: SavedObjectUnsanitizedDoc): SavedObjectUnsanitizedDoc { - return this.migrator.migrateDocument(document, { allowDowngrade: true }); + migrateStorageDocument( + document: SavedObjectUnsanitizedDoc, + options: { downwardConversion?: 'allow' | 'forbid' } + ): SavedObjectUnsanitizedDoc { + return this.migrator.migrateDocument(document, { + allowDowngrade: + options?.downwardConversion && options.downwardConversion === 'forbid' ? false : true, + }); // allowDowngrade conditional on downwardConversion } } diff --git a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/internals/internal_bulk_resolve.ts b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/internals/internal_bulk_resolve.ts index 53cb04453555c..57748b95ef0d5 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/internals/internal_bulk_resolve.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/internals/internal_bulk_resolve.ts @@ -11,7 +11,7 @@ import type { MgetResponseItem } from '@elastic/elasticsearch/lib/api/typesWithB import { isNotFoundFromUnsupportedServer } from '@kbn/core-elasticsearch-server-internal'; import type { SavedObjectsBulkResolveObject, - SavedObjectsResolveOptions, + SavedObjectsGetOptions, SavedObjectsResolveResponse, SavedObjectsIncrementCounterField, SavedObjectsIncrementCounterOptions, @@ -74,7 +74,7 @@ export interface InternalBulkResolveParams { encryptionExtension: ISavedObjectsEncryptionExtension | undefined; securityExtension: ISavedObjectsSecurityExtension | undefined; objects: SavedObjectsBulkResolveObject[]; - options?: SavedObjectsResolveOptions; + options?: SavedObjectsGetOptions; } /** @@ -120,7 +120,7 @@ export async function internalBulkResolve( const validObjects = allObjects.filter(isRight); const namespace = normalizeNamespace(options.namespace); - const { migrationVersionCompatibility } = options; + const { migrationVersionCompatibility, downwardConversion } = options; const aliasDocs = await fetchAndUpdateAliases( validObjects, @@ -186,8 +186,11 @@ export async function internalBulkResolve( // @ts-expect-error MultiGetHit._source is optional const object = getSavedObjectFromSource(registry, objectType, objectId, doc, { migrationVersionCompatibility, + downwardConversion, }); - const migrated = migrator.migrateDocument(object, { allowDowngrade: true }) as SavedObject; + const migrated = migrator.migrateDocument(object, { + allowDowngrade: downwardConversion && downwardConversion === 'forbid' ? false : true, // 'forbid' => docMigrator throws on when documents have higher model versions than current. + }) as SavedObject; if (!encryptionExtension?.isEncryptableType(migrated.type)) { return migrated; diff --git a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/resolve.ts b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/resolve.ts index 50de472546344..48d78181ba571 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/resolve.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/apis/resolve.ts @@ -7,7 +7,7 @@ */ import { - SavedObjectsResolveOptions, + SavedObjectsGetOptions, SavedObjectsResolveResponse, } from '@kbn/core-saved-objects-api-server'; import { ApiExecutionContext } from './types'; @@ -17,7 +17,7 @@ import { incrementCounterInternal } from './internals/increment_counter_internal export interface PerformCreateParams { type: string; id: string; - options: SavedObjectsResolveOptions; + options: SavedObjectsGetOptions; } export const performResolve = async ( @@ -51,7 +51,7 @@ export const performResolve = async ( encryptionExtension, securityExtension, objects: [{ type, id }], - options: { ...options, namespace }, + options: { ...options, namespace }, // note: Includes downwardConversion?: 'forbid' }); const [result] = bulkResults; if (isBulkResolveError(result)) { diff --git a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts index 321c5811ea6d8..beb47219985f4 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts @@ -35,7 +35,6 @@ import type { SavedObjectsClosePointInTimeResponse, ISavedObjectsPointInTimeFinder, SavedObjectsCreatePointInTimeFinderDependencies, - SavedObjectsResolveOptions, SavedObjectsResolveResponse, SavedObjectsCollectMultiNamespaceReferencesObject, SavedObjectsUpdateObjectsSpacesObject, @@ -348,7 +347,7 @@ export class SavedObjectsRepository implements ISavedObjectsRepository { */ async bulkResolve( objects: SavedObjectsBulkResolveObject[], - options: SavedObjectsResolveOptions = {} + options: SavedObjectsGetOptions = {} ): Promise> { return await performBulkResolve( { @@ -383,7 +382,7 @@ export class SavedObjectsRepository implements ISavedObjectsRepository { async resolve( type: string, id: string, - options: SavedObjectsResolveOptions = {} + options: SavedObjectsGetOptions = {} ): Promise> { return await performResolve( { diff --git a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/saved_objects_client.ts b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/saved_objects_client.ts index 925caae1061b7..23f014d393ce0 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/saved_objects_client.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/saved_objects_client.ts @@ -31,7 +31,6 @@ import type { SavedObjectsBulkUpdateObject, ISavedObjectsPointInTimeFinder, SavedObjectsCreatePointInTimeFinderDependencies, - SavedObjectsResolveOptions, SavedObjectsResolveResponse, SavedObjectsCollectMultiNamespaceReferencesObject, SavedObjectsUpdateObjectsSpacesObject, @@ -122,7 +121,7 @@ export class SavedObjectsClient implements SavedObjectsClientContract { /** {@inheritDoc SavedObjectsClientContract.bulkResolve} */ async bulkResolve( objects: SavedObjectsBulkResolveObject[], - options?: SavedObjectsResolveOptions + options?: SavedObjectsGetOptions ): Promise> { return await this._repository.bulkResolve(objects, options); } @@ -131,7 +130,7 @@ export class SavedObjectsClient implements SavedObjectsClientContract { async resolve( type: string, id: string, - options: SavedObjectsResolveOptions = {} + options: SavedObjectsGetOptions = {} ): Promise> { return await this._repository.resolve(type, id, options); } diff --git a/packages/core/saved-objects/core-saved-objects-api-server/index.ts b/packages/core/saved-objects/core-saved-objects-api-server/index.ts index a3cb5fa4045a4..809a8e4f98945 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server/index.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server/index.ts @@ -44,7 +44,6 @@ export type { ISavedObjectsPointInTimeFinder, SavedObjectsCreatePointInTimeFinderDependencies, SavedObjectsPitParams, - SavedObjectsResolveOptions, SavedObjectsResolveResponse, SavedObjectsCollectMultiNamespaceReferencesObject, SavedObjectsUpdateObjectsSpacesResponseObject, diff --git a/packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts b/packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts index e0e035abea34b..a6b3c085dcb6c 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts @@ -11,7 +11,7 @@ import type { AggregationsAggregationContainer, SortResults, } from '@elastic/elasticsearch/lib/api/typesWithBodyKey'; -import type { SavedObject } from '../..'; +import type { SavedObject, SavedObjectsGetOptions } from '../..'; type KueryNode = any; @@ -153,7 +153,8 @@ export interface SavedObjectsFindOptions { */ pit?: SavedObjectsPitParams; /** {@link SavedObjectsRawDocParseOptions.migrationVersionCompatibility} */ - migrationVersionCompatibility?: 'compatible' | 'raw'; + migrationVersionCompatibility?: SavedObjectsGetOptions['migrationVersionCompatibility']; + downwardConversion?: SavedObjectsGetOptions['downwardConversion']; } /** diff --git a/packages/core/saved-objects/core-saved-objects-api-server/src/apis/get.ts b/packages/core/saved-objects/core-saved-objects-api-server/src/apis/get.ts index 884e7cba4f570..48a6ecb9b9dd4 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server/src/apis/get.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server/src/apis/get.ts @@ -16,4 +16,5 @@ import { SavedObjectsBaseOptions } from './base'; export interface SavedObjectsGetOptions extends SavedObjectsBaseOptions { /** {@link SavedObjectsRawDocParseOptions.migrationVersionCompatibility} */ migrationVersionCompatibility?: 'compatible' | 'raw'; + downwardConversion?: 'allow' | 'forbid'; } diff --git a/packages/core/saved-objects/core-saved-objects-api-server/src/apis/index.ts b/packages/core/saved-objects/core-saved-objects-api-server/src/apis/index.ts index ab3c3ca12f572..b01010c100a77 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server/src/apis/index.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server/src/apis/index.ts @@ -65,7 +65,7 @@ export type { SavedObjectsRemoveReferencesToOptions, SavedObjectsRemoveReferencesToResponse, } from './remove_references_to'; -export type { SavedObjectsResolveOptions, SavedObjectsResolveResponse } from './resolve'; +export type { SavedObjectsResolveResponse } from './resolve'; export type { SavedObjectsUpdateResponse, SavedObjectsUpdateOptions } from './update'; export type { SavedObjectsUpdateObjectsSpacesObject, diff --git a/packages/core/saved-objects/core-saved-objects-api-server/src/apis/resolve.ts b/packages/core/saved-objects/core-saved-objects-api-server/src/apis/resolve.ts index d32f36bdcce4f..b15075a67aa0c 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server/src/apis/resolve.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server/src/apis/resolve.ts @@ -6,19 +6,8 @@ * Side Public License, v 1. */ -import { SavedObjectsBaseOptions } from './base'; import type { SavedObject } from '../..'; -/** - * Options for the saved objects get operation - * - * @public - */ -export interface SavedObjectsResolveOptions extends SavedObjectsBaseOptions { - /** {@link SavedObjectsRawDocParseOptions.migrationVersionCompatibility} */ - migrationVersionCompatibility?: 'compatible' | 'raw'; -} - /** * * @public diff --git a/packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts b/packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts index 532c2dc58d992..b81f5c3b6349f 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts @@ -20,7 +20,6 @@ import type { SavedObjectsUpdateObjectsSpacesOptions, SavedObjectsCollectMultiNamespaceReferencesObject, SavedObjectsUpdateObjectsSpacesResponse, - SavedObjectsResolveOptions, SavedObjectsResolveResponse, ISavedObjectsPointInTimeFinder, SavedObjectsRemoveReferencesToOptions, @@ -217,7 +216,7 @@ export interface SavedObjectsClientContract { * See documentation for `.resolve`. * * @param objects - an array of objects to resolve (contains id and type) - * @param options {@link SavedObjectsResolveOptions} - options for the bulk resolve operation + * @param options {@link SavedObjectsGetOptions} - options for the bulk resolve operation * @returns the {@link SavedObjectsBulkResolveResponse} * @example * @@ -232,7 +231,7 @@ export interface SavedObjectsClientContract { */ bulkResolve( objects: SavedObjectsBulkResolveObject[], - options?: SavedObjectsResolveOptions + options?: SavedObjectsGetOptions ): Promise>; /** @@ -248,13 +247,13 @@ export interface SavedObjectsClientContract { * * @param type - The type of SavedObject to retrieve * @param id - The ID of the SavedObject to retrieve - * @param options {@link SavedObjectsResolveOptions} - options for the resolve operation + * @param options {@link SavedObjectsGetOptions} - options for the resolve operation * @returns the {@link SavedObjectsResolveResponse} */ resolve( type: string, id: string, - options?: SavedObjectsResolveOptions + options?: SavedObjectsGetOptions ): Promise>; /** diff --git a/packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts b/packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts index dc748e48123ad..85dff61775391 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts @@ -20,7 +20,6 @@ import type { SavedObjectsUpdateObjectsSpacesOptions, SavedObjectsCollectMultiNamespaceReferencesObject, SavedObjectsUpdateObjectsSpacesResponse, - SavedObjectsResolveOptions, SavedObjectsResolveResponse, ISavedObjectsPointInTimeFinder, SavedObjectsRemoveReferencesToOptions, @@ -201,7 +200,7 @@ export interface ISavedObjectsRepository { * Resolves an array of objects by id, using any legacy URL aliases if they exist * * @param {array} objects - an array of objects containing id, type - * @param {object} [options={}] {@link SavedObjectsResolveOptions} - options for the bulk resolve operation + * @param {object} [options={}] {@link SavedObjectsGetOptions} - options for the bulk resolve operation * @property {string} [options.migrationVersionCompatibility] * @property {string} [options.namespace] * @returns {promise} - { resolved_objects: [{ saved_object, outcome }] } @@ -214,7 +213,7 @@ export interface ISavedObjectsRepository { */ bulkResolve( objects: SavedObjectsBulkResolveObject[], - options?: SavedObjectsResolveOptions + options?: SavedObjectsGetOptions ): Promise>; /** @@ -238,7 +237,7 @@ export interface ISavedObjectsRepository { * * @param {string} type - the type of the object to resolve * @param {string} id - the id of the object to resolve - * @param {object} [options={}] {@link SavedObjectsResolveOptions} - options for the resolve operation + * @param {object} [options={}] {@link SavedObjectsGetOptions} - options for the resolve operation * @property {string} [options.migrationVersionCompatibility] * @property {string} [options.namespace] * @returns {promise} - { saved_object, outcome } @@ -246,7 +245,7 @@ export interface ISavedObjectsRepository { resolve( type: string, id: string, - options?: SavedObjectsResolveOptions + options?: SavedObjectsGetOptions ): Promise>; /** diff --git a/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.test.ts b/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.test.ts index 2e3a99b4b463e..5e132143d5c6b 100644 --- a/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.test.ts +++ b/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.test.ts @@ -1462,7 +1462,7 @@ describe('DocumentMigrator', () => { expect(() => migrator.migrate(document, { allowDowngrade: false }) ).toThrowErrorMatchingInlineSnapshot( - `"Document \\"smelly\\" belongs to a more recent version of Kibana [10.2.0] when the last known version is [10.1.0]."` + `"[NewerModelVersionError]: Document \\"smelly\\" belongs to a more recent version of Kibana [10.2.0] when the last known version is [10.1.0]."` ); }); }); diff --git a/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.ts b/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.ts index 8ca15093d5827..387e037e7a0bf 100644 --- a/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.ts +++ b/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.ts @@ -81,6 +81,9 @@ export interface VersionedTransformer { migrateAndConvert(doc: SavedObjectUnsanitizedDoc): SavedObjectUnsanitizedDoc[]; } +export function createNewerModelVersionError(message: string) { + return Boom.boomify(Boom.badData(message), { message: '[NewerModelVersionError]' }); +} /** * A concrete implementation of the {@link VersionedTransformer} interface. */ @@ -181,9 +184,11 @@ export class DocumentMigrator implements VersionedTransformer { const currentVersion = doc.typeMigrationVersion ?? doc.migrationVersion?.[doc.type]; const latestVersion = this.migrations[doc.type].latestVersion[TransformType.Migrate]; if (!allowDowngrade) { - throw Boom.badData( - `Document "${doc.id}" belongs to a more recent version of Kibana [${currentVersion}] when the last known version is [${latestVersion}].` - ); + if (!allowDowngrade) { + throw createNewerModelVersionError( + `Document "${doc.id}" belongs to a more recent version of Kibana [${currentVersion}] when the last known version is [${latestVersion}].` + ); + } } return this.transformDown(doc, { targetTypeVersion: latestVersion! }); } else { diff --git a/packages/core/saved-objects/docs/openapi/bundled.json b/packages/core/saved-objects/docs/openapi/bundled.json index 21c305d6f4216..d31407a937948 100644 --- a/packages/core/saved-objects/docs/openapi/bundled.json +++ b/packages/core/saved-objects/docs/openapi/bundled.json @@ -33,17 +33,1132 @@ } ], "paths": { + "/api/encrypted_saved_objects/_rotate_key": { + "post": { + "summary": "Rotate the encryption key for encrypted saved objects.", + "operationId": "rotateEncryptionKey", + "description": "Superuser role required.\n\nIf a saved object cannot be decrypted using the primary encryption key, then Kibana will attempt to decrypt it using the specified decryption-only keys. In most of the cases this overhead is negligible, but if you're dealing with a large number of saved objects and experiencing performance issues, you may want to rotate the encryption key.\n\nThis functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.\n", + "tags": [ + "saved objects" + ], + "parameters": [ + { + "in": "query", + "name": "batch_size", + "schema": { + "type": "number", + "default": 10000 + }, + "required": false, + "description": "Specifies a maximum number of saved objects that Kibana can process in a single batch. Bulk key rotation is an iterative process since Kibana may not be able to fetch and process all required saved objects in one go and splits processing into consequent batches. By default, the batch size is 10000, which is also a maximum allowed value.\n" + }, + { + "in": "query", + "name": "type", + "schema": { + "type": "string" + }, + "required": false, + "description": "Limits encryption key rotation only to the saved objects with the specified type. By default, Kibana tries to rotate the encryption key for all saved object types that may contain encrypted attributes.\n" + } + ], + "responses": { + "200": { + "description": "Indicates a successful call.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total": { + "type": "number", + "description": "Indicates the total number of all encrypted saved objects (optionally filtered by the requested `type`), regardless of the key Kibana used for encryption.\n" + }, + "successful": { + "type": "number", + "description": "Indicates the total number of all encrypted saved objects (optionally filtered by the requested `type`), regardless of the key Kibana used for encryption.\n\nNOTE: In most cases, `total` will be greater than `successful` even if `failed` is zero. The reason is that Kibana may not need or may not be able to rotate encryption keys for all encrypted saved objects.\n" + }, + "failed": { + "type": "number", + "description": "Indicates the number of the saved objects that were still encrypted with one of the old encryption keys that Kibana failed to re-encrypt with the primary key.\n" + } + } + }, + "examples": { + "rotateEncryptionKeyResponse": { + "$ref": "#/components/examples/key_rotation_response" + } + } + } + } + }, + "400": { + "description": "Bad request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/400_response" + } + } + } + }, + "429": { + "description": "Already in progress.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + } + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "/api/saved_objects/_bulk_create": { + "post": { + "summary": "Create multiple Kibana saved objects.", + "operationId": "bulkCreateSavedObjects", + "deprecated": true, + "tags": [ + "saved objects" + ], + "parameters": [ + { + "$ref": "#/components/parameters/kbn_xsrf" + }, + { + "in": "query", + "name": "overwrite", + "description": "When true, overwrites the document with the same identifier.", + "schema": { + "type": "boolean" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + "responses": { + "200": { + "description": "Indicates a successful call.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "400": { + "description": "Bad request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/400_response" + } + } + } + } + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "/api/saved_objects/_bulk_delete": { + "post": { + "summary": "Remove multiple Kibana saved objects.", + "operationId": "bulkDeleteSavedObjects", + "description": "WARNING: When you delete a saved object, it cannot be recovered.\n", + "deprecated": true, + "tags": [ + "saved objects" + ], + "parameters": [ + { + "$ref": "#/components/parameters/kbn_xsrf" + }, + { + "in": "query", + "name": "force", + "description": "When true, force delete objects that exist in multiple namespaces. Note that the option applies to the whole request. Use the delete object API to specify per-object deletion behavior. TIP: Use this if you attempted to delete objects and received an HTTP 400 error with the following message: \"Unable to delete saved object that exists in multiple namespaces, use the force option to delete it anyway\". WARNING: When you bulk delete objects that exist in multiple namespaces, the API also deletes legacy url aliases that reference the object. These requests are batched to minimise the impact but they can place a heavy load on Kibana. Make sure you limit the number of objects that exist in multiple namespaces in a single bulk delete operation.\n", + "schema": { + "type": "boolean" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + "responses": { + "200": { + "description": "Indicates a successful call. NOTE: This HTTP response code indicates that the bulk operation succeeded. Errors pertaining to individual objects will be returned in the response body.\n", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "400": { + "description": "Bad request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/400_response" + } + } + } + } + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "/api/saved_objects/_bulk_get": { + "post": { + "summary": "Retrieve multiple Kibana saved objects by identifier.", + "operationId": "bulkGetSavedObjects", + "deprecated": true, + "tags": [ + "saved objects" + ], + "parameters": [ + { + "$ref": "#/components/parameters/kbn_xsrf" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + "responses": { + "200": { + "description": "Indicates a successful call.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "400": { + "description": "Bad request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/400_response" + } + } + } + } + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "/api/saved_objects/_bulk_resolve": { + "post": { + "summary": "Retrieve multiple Kibana saved objects by identifier using any legacy URL aliases if they exist.", + "operationId": "bulkResolveSavedObjects", + "deprecated": true, + "description": "Under certain circumstances when Kibana is upgraded, saved object migrations may necessitate regenerating some object IDs to enable new features. When an object's ID is regenerated, a legacy URL alias is created for that object, preserving its old ID. In such a scenario, that object can be retrieved by the bulk resolve API using either its new ID or its old ID.\n", + "tags": [ + "saved objects" + ], + "parameters": [ + { + "$ref": "#/components/parameters/kbn_xsrf" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + "responses": { + "200": { + "description": "Indicates a successful call. NOTE: This HTTP response code indicates that the bulk operation succeeded. Errors pertaining to individual objects will be returned in the response body. \n", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "400": { + "description": "Bad request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/400_response" + } + } + } + } + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "/api/saved_objects/_bulk_update": { + "post": { + "summary": "Update the attributes for multiple Kibana saved objects.", + "operationId": "bulkUpdateSavedObjects", + "deprecated": true, + "tags": [ + "saved objects" + ], + "parameters": [ + { + "$ref": "#/components/parameters/kbn_xsrf" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "type": "object" + } + } + } + } + }, + "responses": { + "200": { + "description": "Indicates a successful call. NOTE: This HTTP response code indicates that the bulk operation succeeded. Errors pertaining to individual objects will be returned in the response body. \n", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "400": { + "description": "Bad request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/400_response" + } + } + } + } + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, "/api/saved_objects/_export": { "post": { - "summary": "Retrieve sets of saved objects that you want to import into Kibana.", - "operationId": "exportSavedObjects", - "description": "This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features. NOTE: The `savedObjects.maxImportExportSize` configuration setting limits the number of saved objects which may be exported.\n", + "summary": "Retrieve sets of saved objects that you want to import into Kibana.", + "operationId": "exportSavedObjects", + "description": "\nYou must include `type` or `objects` in the request body.\n\nNOTE: The `savedObjects.maxImportExportSize` configuration setting limits the number of saved objects which may be exported.\n\nThis functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.\n", + "tags": [ + "saved objects" + ], + "parameters": [ + { + "$ref": "#/components/parameters/kbn_xsrf" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "excludeExportDetails": { + "description": "Do not add export details entry at the end of the stream.", + "type": "boolean", + "default": false + }, + "includeReferencesDeep": { + "description": "Includes all of the referenced objects in the exported objects.", + "type": "boolean" + }, + "objects": { + "description": "A list of objects to export.", + "type": "array", + "items": { + "type": "object" + } + }, + "type": { + "description": "The saved object types to include in the export. Use `*` to export all the types.", + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string" + } + } + ] + } + } + }, + "examples": { + "exportSavedObjectsRequest": { + "$ref": "#/components/examples/export_objects_request" + } + } + } + } + }, + "responses": { + "200": { + "description": "Indicates a successful call.", + "content": { + "application/x-ndjson": { + "schema": { + "type": "object", + "additionalProperties": true + }, + "examples": { + "exportSavedObjectsResponse": { + "$ref": "#/components/examples/export_objects_response" + } + } + } + } + }, + "400": { + "description": "Bad request.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/400_response" + } + } + } + } + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "/api/saved_objects/_find": { + "get": { + "summary": "Retrieve a paginated set of Kibana saved objects.", + "operationId": "findSavedObjects", + "deprecated": true, + "tags": [ + "saved objects" + ], + "parameters": [ + { + "in": "query", + "name": "aggs", + "description": "An aggregation structure, serialized as a string. The field format is similar to filter, meaning that to use a saved object type attribute in the aggregation, the `savedObjectType.attributes.title: \"myTitle\"` format must be used. For root fields, the syntax is `savedObjectType.rootField`. NOTE: As objects change in Kibana, the results on each page of the response also change. Use the find API for traditional paginated results, but avoid using it to export large amounts of data.\n", + "schema": { + "type": "string" + } + }, + { + "in": "query", + "name": "default_search_operator", + "description": "The default operator to use for the `simple_query_string`.", + "schema": { + "type": "string" + } + }, + { + "in": "query", + "name": "fields", + "description": "The fields to return in the attributes key of the response.", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array" + } + ] + } + }, + { + "in": "query", + "name": "filter", + "description": "The filter is a KQL string with the caveat that if you filter with an attribute from your saved object type, it should look like that: `savedObjectType.attributes.title: \"myTitle\"`. However, if you use a root attribute of a saved object such as `updated_at`, you will have to define your filter like that: `savedObjectType.updated_at > 2018-12-22`.\n", + "schema": { + "type": "string" + } + }, + { + "in": "query", + "name": "has_no_reference", + "description": "Filters to objects that do not have a relationship with the type and identifier combination.", + "schema": { + "type": "object" + } + }, + { + "in": "query", + "name": "has_no_reference_operator", + "description": "The operator to use for the `has_no_reference` parameter. Either `OR` or `AND`. Defaults to `OR`.", + "schema": { + "type": "string" + } + }, + { + "in": "query", + "name": "has_reference", + "description": "Filters to objects that have a relationship with the type and ID combination.", + "schema": { + "type": "object" + } + }, + { + "in": "query", + "name": "has_reference_operator", + "description": "The operator to use for the `has_reference` parameter. Either `OR` or `AND`. Defaults to `OR`.", + "schema": { + "type": "string" + } + }, + { + "in": "query", + "name": "page", + "description": "The page of objects to return.", + "schema": { + "type": "integer" + } + }, + { + "in": "query", + "name": "per_page", + "description": "The number of objects to return per page.", + "schema": { + "type": "integer" + } + }, + { + "in": "query", + "name": "search", + "description": "An Elasticsearch `simple_query_string` query that filters the objects in the response.", + "schema": { + "type": "string" + } + }, + { + "in": "query", + "name": "search_fields", + "description": "The fields to perform the `simple_query_string` parsed query against.", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array" + } + ] + } + }, + { + "in": "query", + "name": "sort_field", + "description": "Sorts the response. Includes \"root\" and \"type\" fields. \"root\" fields exist for all saved objects, such as \"updated_at\". \"type\" fields are specific to an object type, such as fields returned in the attributes key of the response. When a single type is defined in the type parameter, the \"root\" and \"type\" fields are allowed, and validity checks are made in that order. When multiple types are defined in the type parameter, only \"root\" fields are allowed.\n", + "schema": { + "type": "string" + } + }, + { + "in": "query", + "name": "type", + "description": "The saved object types to include.", + "required": true, + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array" + } + ] + } + } + ], + "responses": { + "200": { + "description": "Indicates a successful call.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "400": { + "description": "Bad request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/400_response" + } + } + } + } + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "/api/saved_objects/_import": { + "post": { + "summary": "Create sets of Kibana saved objects from a file created by the export API.", + "operationId": "importSavedObjects", + "description": "Saved objects can be imported only into the same version, a newer minor on the same major, or the next major. Exported saved objects are not backwards compatible and cannot be imported into an older version of Kibana.\n\nThis functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.\n", + "tags": [ + "saved objects" + ], + "parameters": [ + { + "$ref": "#/components/parameters/kbn_xsrf" + }, + { + "in": "query", + "name": "createNewCopies", + "schema": { + "type": "boolean" + }, + "required": false, + "description": "Creates copies of saved objects, regenerates each object ID, and resets the origin. When used, potential conflict errors are avoided. NOTE: This option cannot be used with the `overwrite` and `compatibilityMode` options.\n" + }, + { + "in": "query", + "name": "overwrite", + "schema": { + "type": "boolean" + }, + "required": false, + "description": "Overwrites saved objects when they already exist. When used, potential conflict errors are automatically resolved by overwriting the destination object. NOTE: This option cannot be used with the `createNewCopies` option.\n" + }, + { + "in": "query", + "name": "compatibilityMode", + "schema": { + "type": "boolean" + }, + "required": false, + "description": "Applies various adjustments to the saved objects that are being imported to maintain compatibility between different Kibana versions. Use this option only if you encounter issues with imported saved objects. NOTE: This option cannot be used with the `createNewCopies` option.\n" + } + ], + "requestBody": { + "required": true, + "content": { + "multipart/form-data": { + "schema": { + "type": "object", + "properties": { + "file": { + "description": "A file exported using the export API. NOTE: The `savedObjects.maxImportExportSize` configuration setting limits the number of saved objects which may be included in this file. Similarly, the `savedObjects.maxImportPayloadBytes` setting limits the overall size of the file that can be imported.\n" + } + } + }, + "examples": { + "importObjectsRequest": { + "$ref": "#/components/examples/import_objects_request" + } + } + } + } + }, + "responses": { + "200": { + "description": "Indicates a successful call.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "success": { + "type": "boolean", + "description": "Indicates when the import was successfully completed. When set to false, some objects may not have been created. For additional information, refer to the `errors` and `successResults` properties.\n" + }, + "successCount": { + "type": "integer", + "description": "Indicates the number of successfully imported records." + }, + "errors": { + "type": "array", + "items": { + "type": "object" + }, + "description": "Indicates the import was unsuccessful and specifies the objects that failed to import.\n\nNOTE: One object may result in multiple errors, which requires separate steps to resolve. For instance, a `missing_references` error and conflict error.\n" + }, + "successResults": { + "type": "array", + "items": { + "type": "object" + }, + "description": "Indicates the objects that are successfully imported, with any metadata if applicable.\n\nNOTE: Objects are created only when all resolvable errors are addressed, including conflicts and missing references. If objects are created as new copies, each entry in the `successResults` array includes a `destinationId` attribute.\n" + } + } + }, + "examples": { + "importObjectsResponse": { + "$ref": "#/components/examples/import_objects_response" + } + } + } + } + }, + "400": { + "description": "Bad request.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/400_response" + } + } + } + } + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "/api/saved_objects/_resolve_import_errors": { + "post": { + "summary": "Resolve errors from the Import objects API.", + "operationId": "resolveImportErrors", + "description": "To resolve errors, you can: \n\n* Retry certain saved objects\n* Overwrite specific saved objects\n* Change references to different saved objects\n\nThis functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.\n", + "tags": [ + "saved objects" + ], + "parameters": [ + { + "$ref": "#/components/parameters/kbn_xsrf" + }, + { + "in": "query", + "name": "compatibilityMode", + "schema": { + "type": "boolean" + }, + "required": false, + "description": "Applies various adjustments to the saved objects that are being imported to maintain compatibility between different Kibana versions. When enabled during the initial import, also enable when resolving import errors. This option cannot be used with the `createNewCopies` option.\n" + }, + { + "in": "query", + "name": "createNewCopies", + "schema": { + "type": "boolean" + }, + "required": false, + "description": "Creates copies of the saved objects, regenerates each object ID, and resets the origin. When enabled during the initial import, also enable when resolving import errors.\n" + } + ], + "requestBody": { + "required": true, + "content": { + "multipart/form-data": { + "schema": { + "type": "object", + "required": [ + "retries" + ], + "properties": { + "file": { + "description": "The same file given to the import API.", + "type": "string", + "format": "binary" + }, + "retries": { + "description": "The retry operations, which can specify how to resolve different types of errors.", + "type": "array", + "items": { + "type": "object", + "required": [ + "type", + "id" + ], + "properties": { + "type": { + "description": "The saved object type.", + "type": "string" + }, + "id": { + "description": "The saved object ID.", + "type": "string" + }, + "overwrite": { + "description": "When set to `true`, the source object overwrites the conflicting destination object. When set to `false`, does nothing.", + "type": "boolean" + }, + "destinationId": { + "description": "Specifies the destination ID that the imported object should have, if different from the current ID.", + "type": "string" + }, + "replaceReferences": { + "description": "A list of `type`, `from`, and `to` used to change the object references.", + "type": "array", + "items": { + "type": "object", + "properties": { + "type": { + "type": "string" + }, + "from": { + "type": "string" + }, + "to": { + "type": "string" + } + } + } + }, + "ignoreMissingReferences": { + "description": "When set to `true`, ignores missing reference errors. When set to `false`, does nothing.", + "type": "boolean" + } + } + } + } + } + }, + "examples": { + "resolveImportErrorsRequest": { + "$ref": "#/components/examples/resolve_missing_reference_request" + } + } + } + } + }, + "responses": { + "200": { + "description": "Indicates a successful call.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "success": { + "type": "boolean", + "description": "Indicates a successful import. When set to `false`, some objects may not have been created. For additional information, refer to the `errors` and `successResults` properties.\n" + }, + "successCount": { + "type": "number", + "description": "Indicates the number of successfully resolved records.\n" + }, + "errors": { + "type": "array", + "description": "Specifies the objects that failed to resolve.\n\nNOTE: One object can result in multiple errors, which requires separate steps to resolve. For instance, a `missing_references` error and a `conflict` error.\n", + "items": { + "type": "object" + } + }, + "successResults": { + "type": "array", + "description": "Indicates the objects that are successfully imported, with any metadata if applicable.\n\nNOTE: Objects are only created when all resolvable errors are addressed, including conflict and missing references.\n", + "items": { + "type": "object" + } + } + } + }, + "examples": { + "resolveImportErrorsResponse": { + "$ref": "#/components/examples/resolve_missing_reference_response" + } + } + } + } + }, + "400": { + "description": "Bad request.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/400_response" + } + } + } + } + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "/api/saved_objects/{type}": { + "post": { + "summary": "Create Kibana saved objects with randomly generated identifiers.", + "operationId": "createSavedObject", + "deprecated": true, + "tags": [ + "saved objects" + ], + "parameters": [ + { + "$ref": "#/components/parameters/kbn_xsrf" + }, + { + "$ref": "#/components/parameters/saved_object_type" + }, + { + "in": "query", + "name": "overwrite", + "description": "If true, overwrites the document with the same identifier.", + "schema": { + "type": "boolean" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "attributes" + ], + "properties": { + "attributes": { + "$ref": "#/components/schemas/attributes" + }, + "initialNamespaces": { + "$ref": "#/components/schemas/initial_namespaces" + }, + "references": { + "$ref": "#/components/schemas/references" + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Indicates a successful call.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "409": { + "description": "Indicates a conflict error.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + } + } + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "/api/saved_objects/{type}/{id}": { + "get": { + "summary": "Retrieve a single Kibana saved object by identifier.", + "operationId": "getSavedObject", + "deprecated": true, + "tags": [ + "saved objects" + ], + "parameters": [ + { + "$ref": "#/components/parameters/saved_object_id" + }, + { + "$ref": "#/components/parameters/saved_object_type" + } + ], + "responses": { + "200": { + "description": "Indicates a successful call.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "400": { + "description": "Bad request.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/400_response" + } + } + } + } + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "post": { + "summary": "Create Kibana saved objects.", + "operationId": "createSavedObjectId", + "deprecated": true, "tags": [ "saved objects" ], "parameters": [ { - "$ref": "#/components/parameters/kbn_xsrf" + "$ref": "#/components/parameters/kbn_xsrf" + }, + { + "$ref": "#/components/parameters/saved_object_id" + }, + { + "$ref": "#/components/parameters/saved_object_type" + }, + { + "in": "query", + "name": "overwrite", + "description": "If true, overwrites the document with the same identifier.", + "schema": { + "type": "boolean" + } } ], "requestBody": { @@ -52,55 +1167,20 @@ "application/json": { "schema": { "type": "object", - "anyOf": [ - { - "required": [ - "type" - ] - }, - { - "required": [ - "objects" - ] - } + "required": [ + "attributes" ], "properties": { - "excludeExportDetails": { - "description": "Do not add export details entry at the end of the stream.", - "type": "boolean", - "default": false - }, - "includeReferencesDeep": { - "description": "Includes all of the referenced objects in the exported objects.", - "type": "boolean" + "attributes": { + "$ref": "#/components/schemas/attributes" }, - "objects": { - "description": "A list of objects to export.", - "type": "array", - "items": { - "type": "object" - } + "initialNamespaces": { + "$ref": "#/components/schemas/initial_namespaces" }, - "type": { - "description": "The saved object types to include in the export.", - "oneOf": [ - { - "type": "string" - }, - { - "type": "array", - "items": { - "type": "string" - } - } - ] + "references": { + "$ref": "#/components/schemas/initial_namespaces" } } - }, - "examples": { - "exportSavedObjectsRequest": { - "$ref": "#/components/examples/export_objects_request" - } } } } @@ -109,47 +1189,29 @@ "200": { "description": "Indicates a successful call.", "content": { - "multipart/form-data": { + "application/json": { "schema": { - "type": "string" - }, - "examples": { - "exportSavedObjectsResponse": { - "$ref": "#/components/examples/export_objects_response" - } + "type": "object" } } } }, - "400": { - "description": "Bad request.", + "409": { + "description": "Indicates a conflict error.", "content": { "application/json": { "schema": { - "type": "object", - "additionalProperties": true + "type": "object" } } } } - }, - "servers": [ - { - "url": "https://localhost:5601" - } - ] - }, - "servers": [ - { - "url": "https://localhost:5601" } - ] - }, - "/api/saved_objects/_import": { - "post": { - "summary": "Create sets of Kibana saved objects from a file created by the export API.", - "operationId": "importSavedObjects", - "description": "This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features. Saved objects can be imported only into the same version, a newer minor on the same major, or the next major. Exported saved objects are not backwards compatible and cannot be imported into an older version of Kibana.\n", + }, + "put": { + "summary": "Update the attributes for Kibana saved objects.", + "operationId": "updateSavedObject", + "deprecated": true, "tags": [ "saved objects" ], @@ -158,40 +1220,18 @@ "$ref": "#/components/parameters/kbn_xsrf" }, { - "in": "query", - "name": "compatibilityMode", - "schema": { - "type": "boolean" - }, - "required": false, - "description": "Applies various adjustments to the saved objects that are being imported to maintain compatibility between different Kibana versions. Use this option only if you encounter issues with imported saved objects. NOTE: This option cannot be used with the `createNewCopies` option.\n" - }, - { - "in": "query", - "name": "createNewCopies", - "schema": { - "type": "boolean" - }, - "required": false, - "description": "Creates copies of saved objects, regenerates each object ID, and resets the origin. When used, potential conflict errors are avoided. NOTE: This option cannot be used with the `overwrite` and `compatibilityMode` options.\n" + "$ref": "#/components/parameters/saved_object_id" }, { - "in": "query", - "name": "overwrite", - "schema": { - "type": "boolean" - }, - "required": false, - "description": "Overwrites saved objects when they already exist. When used, potential conflict errors are automatically resolved by overwriting the destination object. NOTE: This option cannot be used with the `createNewCopies` option.\n" + "$ref": "#/components/parameters/saved_object_type" } ], "requestBody": { "required": true, "content": { - "multipart/form-data": { + "application/json": { "schema": { - "type": "object", - "description": "A file exported using the export API. NOTE: The `savedObjects.maxImportExportSize` configuration setting limits the number of saved objects which may be included in this file. Similarly, the `savedObjects.maxImportPayloadBytes` setting limits the overall size of the file that can be imported.\n" + "type": "object" } } } @@ -202,36 +1242,63 @@ "content": { "application/json": { "schema": { - "type": "object", - "properties": { - "errors": { - "type": "array", - "description": "Indicates the import was unsuccessful and specifies the objects that failed to import. One object may result in multiple errors, which requires separate steps to resolve. For instance, a `missing_references` error and conflict error.\n" - }, - "success": { - "type": "boolean", - "description": "Indicates when the import was successfully completed. When set to false, some objects may not have been created. For additional information, refer to the `errors` and `successResults` properties.\n" - }, - "successCount": { - "type": "integer", - "description": "Indicates the number of successfully imported records." - }, - "successResults": { - "type": "array", - "items": { - "type": "object" - }, - "description": "Indicates the objects that are successfully imported, with any metadata if applicable. Objects are created only when all resolvable errors are addressed, including conflicts and missing references. If objects are created as new copies, each entry in the `successResults` array includes a `destinationId` attribute.\n" - }, - "warnings": { - "type": "array" - } - } - }, - "examples": { - "importObjectsResponse": { - "$ref": "#/components/examples/import_objects_response" - } + "type": "object" + } + } + } + }, + "404": { + "description": "Indicates the object was not found.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + }, + "409": { + "description": "Indicates a conflict error.", + "content": { + "application/json": { + "schema": { + "type": "object" + } + } + } + } + } + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "/api/saved_objects/resolve/{type}/{id}": { + "get": { + "summary": "Retrieve a single Kibana saved object by identifier using any legacy URL alias if it exists.", + "operationId": "resolveSavedObject", + "description": "Under certain circumstances, when Kibana is upgraded, saved object migrations may necessitate regenerating some object IDs to enable new features. When an object's ID is regenerated, a legacy URL alias is created for that object, preserving its old ID. In such a scenario, that object can be retrieved using either its new ID or its old ID.\n", + "deprecated": true, + "tags": [ + "saved objects" + ], + "parameters": [ + { + "$ref": "#/components/parameters/saved_object_id" + }, + { + "$ref": "#/components/parameters/saved_object_type" + } + ], + "responses": { + "200": { + "description": "Indicates a successful call.", + "content": { + "application/json": { + "schema": { + "type": "object" } } } @@ -241,8 +1308,7 @@ "content": { "application/json": { "schema": { - "type": "object", - "additionalProperties": true + "$ref": "#/components/schemas/400_response" } } } @@ -273,40 +1339,75 @@ "name": "ApiKey" } }, - "parameters": { - "kbn_xsrf": { - "schema": { - "type": "string" - }, - "in": "header", - "name": "kbn-xsrf", - "description": "Cross-site request forgery protection", - "required": true - } - }, "examples": { + "key_rotation_response": { + "summary": "Encryption key rotation using default parameters.", + "value": { + "total": 1000, + "successful": 300, + "failed": 0 + } + }, "export_objects_request": { "summary": "Export a specific saved object.", "value": { "objects": [ { - "type": "index-pattern", - "id": "90943e30-9a47-11e8-b64d-95841ca0b247" + "type": "map", + "id": "de71f4f0-1902-11e9-919b-ffe5949a18d2" } ], - "includeReferencesDeep": false + "includeReferencesDeep": false, + "excludeExportDetails": true } }, "export_objects_response": { - "summary": "The export objects API response contains a JSON record for each exported object and an export result details record.", - "value": "{\"attributes\":{\"fieldFormatMap\":\"{\\\"hour_of_day\\\":{}}\",\"name\":\"Kibana Sample Data Logs\",\"runtimeFieldMap\":\"{\\\"hour_of_day\\\":{\\\"type\\\":\\\"long\\\",\\\"script\\\":{\\\"source\\\":\\\"emit(doc['timestamp'].value.getHour());\\\"}}}\",\"timeFieldName\":\"timestamp\",\"title\":\"kibana_sample_data_logs\"},\"coreMigrationVersion\":\"8.8.0\",\"created_at\":\"2023-07-25T19:36:36.695Z\",\"id\":\"90943e30-9a47-11e8-b64d-95841ca0b247\",\"managed\":false,\"references\":[],\"type\":\"index-pattern\",\"typeMigrationVersion\":\"8.0.0\",\"updated_at\":\"2023-07-25T19:36:36.695Z\",\"version\":\"WzM5LDJd\"}\n{\"excludedObjects\":[],\"excludedObjectsCount\":0,\"exportedCount\":1,\"missingRefCount\":0,\"missingReferences\":[]}\n" + "summary": "The export objects API response contains a JSON record for each exported object.", + "value": { + "attributes": { + "description": "", + "layerListJSON": "[{\"id\":\"0hmz5\",\"alpha\":1,\"sourceDescriptor\":{\"type\":\"EMS_TMS\",\"isAutoSelect\":true,\"lightModeDefault\":\"road_map_desaturated\"},\"visible\":true,\"style\":{},\"type\":\"EMS_VECTOR_TILE\",\"minZoom\":0,\"maxZoom\":24},{\"id\":\"edh66\",\"label\":\"Total Requests by Destination\",\"minZoom\":0,\"maxZoom\":24,\"alpha\":0.5,\"sourceDescriptor\":{\"type\":\"EMS_FILE\",\"id\":\"world_countries\",\"tooltipProperties\":[\"name\",\"iso2\"]},\"visible\":true,\"style\":{\"type\":\"VECTOR\",\"properties\":{\"fillColor\":{\"type\":\"DYNAMIC\",\"options\":{\"field\":{\"name\":\"__kbnjoin__count__673ff994-fc75-4c67-909b-69fcb0e1060e\",\"origin\":\"join\"},\"color\":\"Greys\",\"fieldMetaOptions\":{\"isEnabled\":false,\"sigma\":3}}},\"lineColor\":{\"type\":\"STATIC\",\"options\":{\"color\":\"#FFFFFF\"}},\"lineWidth\":{\"type\":\"STATIC\",\"options\":{\"size\":1}},\"iconSize\":{\"type\":\"STATIC\",\"options\":{\"size\":10}},\"symbolizeAs\":{\"options\":{\"value\":\"circle\"}},\"icon\":{\"type\":\"STATIC\",\"options\":{\"value\":\"marker\"}}}},\"type\":\"GEOJSON_VECTOR\",\"joins\":[{\"leftField\":\"iso2\",\"right\":{\"type\":\"ES_TERM_SOURCE\",\"id\":\"673ff994-fc75-4c67-909b-69fcb0e1060e\",\"indexPatternTitle\":\"kibana_sample_data_logs\",\"term\":\"geo.dest\",\"indexPatternRefName\":\"layer_1_join_0_index_pattern\",\"metrics\":[{\"type\":\"count\",\"label\":\"web logs count\"}],\"applyGlobalQuery\":true}}]},{\"id\":\"gaxya\",\"label\":\"Actual Requests\",\"minZoom\":9,\"maxZoom\":24,\"alpha\":1,\"sourceDescriptor\":{\"id\":\"b7486535-171b-4d3b-bb2e-33c1a0a2854c\",\"type\":\"ES_SEARCH\",\"geoField\":\"geo.coordinates\",\"limit\":2048,\"filterByMapBounds\":true,\"tooltipProperties\":[\"clientip\",\"timestamp\",\"host\",\"request\",\"response\",\"machine.os\",\"agent\",\"bytes\"],\"indexPatternRefName\":\"layer_2_source_index_pattern\",\"applyGlobalQuery\":true,\"scalingType\":\"LIMIT\"},\"visible\":true,\"style\":{\"type\":\"VECTOR\",\"properties\":{\"fillColor\":{\"type\":\"STATIC\",\"options\":{\"color\":\"#2200ff\"}},\"lineColor\":{\"type\":\"STATIC\",\"options\":{\"color\":\"#FFFFFF\"}},\"lineWidth\":{\"type\":\"STATIC\",\"options\":{\"size\":2}},\"iconSize\":{\"type\":\"DYNAMIC\",\"options\":{\"field\":{\"name\":\"bytes\",\"origin\":\"source\"},\"minSize\":1,\"maxSize\":23,\"fieldMetaOptions\":{\"isEnabled\":false,\"sigma\":3}}},\"symbolizeAs\":{\"options\":{\"value\":\"circle\"}},\"icon\":{\"type\":\"STATIC\",\"options\":{\"value\":\"marker\"}}}},\"type\":\"GEOJSON_VECTOR\"},{\"id\":\"tfi3f\",\"label\":\"Total Requests and Bytes\",\"minZoom\":0,\"maxZoom\":9,\"alpha\":1,\"sourceDescriptor\":{\"type\":\"ES_GEO_GRID\",\"resolution\":\"COARSE\",\"id\":\"8aaa65b5-a4e9-448b-9560-c98cb1c5ac5b\",\"geoField\":\"geo.coordinates\",\"requestType\":\"point\",\"metrics\":[{\"type\":\"count\",\"label\":\"web logs count\"},{\"type\":\"sum\",\"field\":\"bytes\"}],\"indexPatternRefName\":\"layer_3_source_index_pattern\",\"applyGlobalQuery\":true},\"visible\":true,\"style\":{\"type\":\"VECTOR\",\"properties\":{\"fillColor\":{\"type\":\"DYNAMIC\",\"options\":{\"field\":{\"name\":\"doc_count\",\"origin\":\"source\"},\"color\":\"Blues\",\"fieldMetaOptions\":{\"isEnabled\":false,\"sigma\":3}}},\"lineColor\":{\"type\":\"STATIC\",\"options\":{\"color\":\"#cccccc\"}},\"lineWidth\":{\"type\":\"STATIC\",\"options\":{\"size\":1}},\"iconSize\":{\"type\":\"DYNAMIC\",\"options\":{\"field\":{\"name\":\"sum_of_bytes\",\"origin\":\"source\"},\"minSize\":7,\"maxSize\":25,\"fieldMetaOptions\":{\"isEnabled\":false,\"sigma\":3}}},\"labelText\":{\"type\":\"DYNAMIC\",\"options\":{\"field\":{\"name\":\"doc_count\",\"origin\":\"source\"},\"fieldMetaOptions\":{\"isEnabled\":false,\"sigma\":3}}},\"labelSize\":{\"type\":\"DYNAMIC\",\"options\":{\"field\":{\"name\":\"doc_count\",\"origin\":\"source\"},\"minSize\":12,\"maxSize\":24,\"fieldMetaOptions\":{\"isEnabled\":false,\"sigma\":3}}},\"symbolizeAs\":{\"options\":{\"value\":\"circle\"}},\"icon\":{\"type\":\"STATIC\",\"options\":{\"value\":\"marker\"}}}},\"type\":\"GEOJSON_VECTOR\"}]", + "mapStateJSON": "{\"zoom\":3.64,\"center\":{\"lon\":-88.92107,\"lat\":42.16337},\"timeFilters\":{\"from\":\"now-7d\",\"to\":\"now\"},\"refreshConfig\":{\"isPaused\":true,\"interval\":0},\"query\":{\"language\":\"kuery\",\"query\":\"\"},\"settings\":{\"autoFitToDataBounds\":false}}", + "title": "[Logs] Total Requests and Bytes", + "uiStateJSON": "{\"isDarkMode\":false}" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-23T20:03:32.204Z", + "id": "de71f4f0-1902-11e9-919b-ffe5949a18d2", + "managed": false, + "references": [ + { + "id": "90943e30-9a47-11e8-b64d-95841ca0b247", + "name": "layer_1_join_0_index_pattern", + "type": "index-pattern" + }, + { + "id": "90943e30-9a47-11e8-b64d-95841ca0b247", + "name": "layer_2_source_index_pattern", + "type": "index-pattern" + }, + { + "id": "90943e30-9a47-11e8-b64d-95841ca0b247", + "name": "layer_3_source_index_pattern", + "type": "index-pattern" + } + ], + "type": "map", + "typeMigrationVersion": "8.4.0", + "updated_at": "2023-08-23T20:03:32.204Z", + "version": "WzEzLDFd" + } + }, + "import_objects_request": { + "value": { + "file": "file.ndjson" + } }, "import_objects_response": { "summary": "The import objects API response indicates a successful import and the objects are created. Since these objects are created as new copies, each entry in the successResults array includes a destinationId attribute.", "value": { "successCount": 1, "success": true, - "warnings": [], "successResults": [ { "type": "index-pattern", @@ -320,6 +1421,136 @@ } ] } + }, + "resolve_missing_reference_request": { + "value": { + "file": "file.ndjson", + "retries": [ + { + "type": "index-pattern", + "id": "my-pattern", + "overwrite": true + }, + { + "type": "visualization", + "id": "my-vis", + "overwrite": true, + "destinationId": "another-vis" + }, + { + "type": "canvas", + "id": "my-canvas", + "overwrite": true, + "destinationId": "yet-another-canvas" + }, + { + "type": "dashboard", + "id": "my-dashboard" + } + ] + } + }, + "resolve_missing_reference_response": { + "summary": "Resolve missing reference errors.", + "value": { + "success": true, + "successCount": 3, + "successResults": [ + { + "id": "my-vis", + "type": "visualization", + "meta": { + "icon": "visualizeApp", + "title": "Look at my visualization" + } + }, + { + "id": "my-search", + "type": "search", + "meta": { + "icon": "searchApp", + "title": "Look at my search" + } + }, + { + "id": "my-dashboard", + "type": "dashboard", + "meta": { + "icon": "dashboardApp", + "title": "Look at my dashboard" + } + } + ] + } + } + }, + "schemas": { + "400_response": { + "title": "Bad request", + "type": "object", + "required": [ + "error", + "message", + "statusCode" + ], + "properties": { + "error": { + "type": "string", + "enum": [ + "Bad Request" + ] + }, + "message": { + "type": "string" + }, + "statusCode": { + "type": "integer", + "enum": [ + 400 + ] + } + } + }, + "attributes": { + "type": "object", + "description": "The data that you want to create. WARNING: When you create saved objects, attributes are not validated, which allows you to pass arbitrary and ill-formed data into the API that can break Kibana. Make sure any data that you send to the API is properly formed.\n" + }, + "initial_namespaces": { + "type": "array", + "description": "Identifiers for the spaces in which this object is created. If this is provided, the object is created only in the explicitly defined spaces. If this is not provided, the object is created in the current space (default behavior). For shareable object types (registered with `namespaceType: 'multiple'`), this option can be used to specify one or more spaces, including the \"All spaces\" identifier ('*'). For isolated object types (registered with `namespaceType: 'single'` or `namespaceType: 'multiple-isolated'`), this option can only be used to specify a single space, and the \"All spaces\" identifier ('*') is not allowed. For global object types (`registered with `namespaceType: agnostic`), this option cannot be used.\n" + }, + "references": { + "type": "array", + "description": "Objects with `name`, `id`, and `type` properties that describe the other saved objects that this object references. Use `name` in attributes to refer to the other saved object, but never the `id`, which can update automatically during migrations or import and export.\n" + } + }, + "parameters": { + "kbn_xsrf": { + "schema": { + "type": "string" + }, + "in": "header", + "name": "kbn-xsrf", + "description": "Cross-site request forgery protection", + "required": true + }, + "saved_object_type": { + "in": "path", + "name": "type", + "description": "Valid options include `visualization`, `dashboard`, `search`, `index-pattern`, `config`.", + "required": true, + "schema": { + "type": "string" + } + }, + "saved_object_id": { + "in": "path", + "name": "id", + "description": "An identifier for the saved object.", + "required": true, + "schema": { + "type": "string" + } } } } diff --git a/packages/core/saved-objects/docs/openapi/bundled.yaml b/packages/core/saved-objects/docs/openapi/bundled.yaml index 0facbd5446640..554895051768e 100644 --- a/packages/core/saved-objects/docs/openapi/bundled.yaml +++ b/packages/core/saved-objects/docs/openapi/bundled.yaml @@ -18,12 +18,274 @@ tags: - name: saved objects description: Manage Kibana saved objects, including dashboards, visualizations, and more. paths: + /api/encrypted_saved_objects/_rotate_key: + post: + summary: Rotate the encryption key for encrypted saved objects. + operationId: rotateEncryptionKey + description: | + Superuser role required. + + If a saved object cannot be decrypted using the primary encryption key, then Kibana will attempt to decrypt it using the specified decryption-only keys. In most of the cases this overhead is negligible, but if you're dealing with a large number of saved objects and experiencing performance issues, you may want to rotate the encryption key. + + This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features. + tags: + - saved objects + parameters: + - in: query + name: batch_size + schema: + type: number + default: 10000 + required: false + description: | + Specifies a maximum number of saved objects that Kibana can process in a single batch. Bulk key rotation is an iterative process since Kibana may not be able to fetch and process all required saved objects in one go and splits processing into consequent batches. By default, the batch size is 10000, which is also a maximum allowed value. + - in: query + name: type + schema: + type: string + required: false + description: | + Limits encryption key rotation only to the saved objects with the specified type. By default, Kibana tries to rotate the encryption key for all saved object types that may contain encrypted attributes. + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + properties: + total: + type: number + description: | + Indicates the total number of all encrypted saved objects (optionally filtered by the requested `type`), regardless of the key Kibana used for encryption. + successful: + type: number + description: | + Indicates the total number of all encrypted saved objects (optionally filtered by the requested `type`), regardless of the key Kibana used for encryption. + + NOTE: In most cases, `total` will be greater than `successful` even if `failed` is zero. The reason is that Kibana may not need or may not be able to rotate encryption keys for all encrypted saved objects. + failed: + type: number + description: | + Indicates the number of the saved objects that were still encrypted with one of the old encryption keys that Kibana failed to re-encrypt with the primary key. + examples: + rotateEncryptionKeyResponse: + $ref: '#/components/examples/key_rotation_response' + '400': + description: Bad request + content: + application/json: + schema: + $ref: '#/components/schemas/400_response' + '429': + description: Already in progress. + content: + application/json: + schema: + type: object + servers: + - url: https://localhost:5601 + servers: + - url: https://localhost:5601 + /api/saved_objects/_bulk_create: + post: + summary: Create multiple Kibana saved objects. + operationId: bulkCreateSavedObjects + deprecated: true + tags: + - saved objects + parameters: + - $ref: '#/components/parameters/kbn_xsrf' + - in: query + name: overwrite + description: When true, overwrites the document with the same identifier. + schema: + type: boolean + requestBody: + required: true + content: + application/json: + schema: + type: array + items: + type: object + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + '400': + description: Bad request + content: + application/json: + schema: + $ref: '#/components/schemas/400_response' + servers: + - url: https://localhost:5601 + servers: + - url: https://localhost:5601 + /api/saved_objects/_bulk_delete: + post: + summary: Remove multiple Kibana saved objects. + operationId: bulkDeleteSavedObjects + description: | + WARNING: When you delete a saved object, it cannot be recovered. + deprecated: true + tags: + - saved objects + parameters: + - $ref: '#/components/parameters/kbn_xsrf' + - in: query + name: force + description: | + When true, force delete objects that exist in multiple namespaces. Note that the option applies to the whole request. Use the delete object API to specify per-object deletion behavior. TIP: Use this if you attempted to delete objects and received an HTTP 400 error with the following message: "Unable to delete saved object that exists in multiple namespaces, use the force option to delete it anyway". WARNING: When you bulk delete objects that exist in multiple namespaces, the API also deletes legacy url aliases that reference the object. These requests are batched to minimise the impact but they can place a heavy load on Kibana. Make sure you limit the number of objects that exist in multiple namespaces in a single bulk delete operation. + schema: + type: boolean + requestBody: + required: true + content: + application/json: + schema: + type: array + items: + type: object + responses: + '200': + description: | + Indicates a successful call. NOTE: This HTTP response code indicates that the bulk operation succeeded. Errors pertaining to individual objects will be returned in the response body. + content: + application/json: + schema: + type: object + '400': + description: Bad request + content: + application/json: + schema: + $ref: '#/components/schemas/400_response' + servers: + - url: https://localhost:5601 + servers: + - url: https://localhost:5601 + /api/saved_objects/_bulk_get: + post: + summary: Retrieve multiple Kibana saved objects by identifier. + operationId: bulkGetSavedObjects + deprecated: true + tags: + - saved objects + parameters: + - $ref: '#/components/parameters/kbn_xsrf' + requestBody: + required: true + content: + application/json: + schema: + type: array + items: + type: object + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + '400': + description: Bad request + content: + application/json: + schema: + $ref: '#/components/schemas/400_response' + servers: + - url: https://localhost:5601 + servers: + - url: https://localhost:5601 + /api/saved_objects/_bulk_resolve: + post: + summary: Retrieve multiple Kibana saved objects by identifier using any legacy URL aliases if they exist. + operationId: bulkResolveSavedObjects + deprecated: true + description: | + Under certain circumstances when Kibana is upgraded, saved object migrations may necessitate regenerating some object IDs to enable new features. When an object's ID is regenerated, a legacy URL alias is created for that object, preserving its old ID. In such a scenario, that object can be retrieved by the bulk resolve API using either its new ID or its old ID. + tags: + - saved objects + parameters: + - $ref: '#/components/parameters/kbn_xsrf' + requestBody: + required: true + content: + application/json: + schema: + type: array + items: + type: object + responses: + '200': + description: | + Indicates a successful call. NOTE: This HTTP response code indicates that the bulk operation succeeded. Errors pertaining to individual objects will be returned in the response body. + content: + application/json: + schema: + type: object + '400': + description: Bad request + content: + application/json: + schema: + $ref: '#/components/schemas/400_response' + servers: + - url: https://localhost:5601 + servers: + - url: https://localhost:5601 + /api/saved_objects/_bulk_update: + post: + summary: Update the attributes for multiple Kibana saved objects. + operationId: bulkUpdateSavedObjects + deprecated: true + tags: + - saved objects + parameters: + - $ref: '#/components/parameters/kbn_xsrf' + requestBody: + required: true + content: + application/json: + schema: + type: array + items: + type: object + responses: + '200': + description: | + Indicates a successful call. NOTE: This HTTP response code indicates that the bulk operation succeeded. Errors pertaining to individual objects will be returned in the response body. + content: + application/json: + schema: + type: object + '400': + description: Bad request + content: + application/json: + schema: + $ref: '#/components/schemas/400_response' + servers: + - url: https://localhost:5601 + servers: + - url: https://localhost:5601 /api/saved_objects/_export: post: summary: Retrieve sets of saved objects that you want to import into Kibana. operationId: exportSavedObjects description: | - This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features. NOTE: The `savedObjects.maxImportExportSize` configuration setting limits the number of saved objects which may be exported. + + You must include `type` or `objects` in the request body. + + NOTE: The `savedObjects.maxImportExportSize` configuration setting limits the number of saved objects which may be exported. + + This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features. tags: - saved objects parameters: @@ -34,11 +296,6 @@ paths: application/json: schema: type: object - anyOf: - - required: - - type - - required: - - objects properties: excludeExportDetails: description: Do not add export details entry at the end of the stream. @@ -53,7 +310,7 @@ paths: items: type: object type: - description: The saved object types to include in the export. + description: The saved object types to include in the export. Use `*` to export all the types. oneOf: - type: string - type: array @@ -66,19 +323,124 @@ paths: '200': description: Indicates a successful call. content: - multipart/form-data: + application/x-ndjson: schema: - type: string + type: object + additionalProperties: true examples: exportSavedObjectsResponse: $ref: '#/components/examples/export_objects_response' '400': description: Bad request. + content: + application/json: + schema: + $ref: '#/components/schemas/400_response' + servers: + - url: https://localhost:5601 + servers: + - url: https://localhost:5601 + /api/saved_objects/_find: + get: + summary: Retrieve a paginated set of Kibana saved objects. + operationId: findSavedObjects + deprecated: true + tags: + - saved objects + parameters: + - in: query + name: aggs + description: | + An aggregation structure, serialized as a string. The field format is similar to filter, meaning that to use a saved object type attribute in the aggregation, the `savedObjectType.attributes.title: "myTitle"` format must be used. For root fields, the syntax is `savedObjectType.rootField`. NOTE: As objects change in Kibana, the results on each page of the response also change. Use the find API for traditional paginated results, but avoid using it to export large amounts of data. + schema: + type: string + - in: query + name: default_search_operator + description: The default operator to use for the `simple_query_string`. + schema: + type: string + - in: query + name: fields + description: The fields to return in the attributes key of the response. + schema: + oneOf: + - type: string + - type: array + - in: query + name: filter + description: | + The filter is a KQL string with the caveat that if you filter with an attribute from your saved object type, it should look like that: `savedObjectType.attributes.title: "myTitle"`. However, if you use a root attribute of a saved object such as `updated_at`, you will have to define your filter like that: `savedObjectType.updated_at > 2018-12-22`. + schema: + type: string + - in: query + name: has_no_reference + description: Filters to objects that do not have a relationship with the type and identifier combination. + schema: + type: object + - in: query + name: has_no_reference_operator + description: The operator to use for the `has_no_reference` parameter. Either `OR` or `AND`. Defaults to `OR`. + schema: + type: string + - in: query + name: has_reference + description: Filters to objects that have a relationship with the type and ID combination. + schema: + type: object + - in: query + name: has_reference_operator + description: The operator to use for the `has_reference` parameter. Either `OR` or `AND`. Defaults to `OR`. + schema: + type: string + - in: query + name: page + description: The page of objects to return. + schema: + type: integer + - in: query + name: per_page + description: The number of objects to return per page. + schema: + type: integer + - in: query + name: search + description: An Elasticsearch `simple_query_string` query that filters the objects in the response. + schema: + type: string + - in: query + name: search_fields + description: The fields to perform the `simple_query_string` parsed query against. + schema: + oneOf: + - type: string + - type: array + - in: query + name: sort_field + description: | + Sorts the response. Includes "root" and "type" fields. "root" fields exist for all saved objects, such as "updated_at". "type" fields are specific to an object type, such as fields returned in the attributes key of the response. When a single type is defined in the type parameter, the "root" and "type" fields are allowed, and validity checks are made in that order. When multiple types are defined in the type parameter, only "root" fields are allowed. + schema: + type: string + - in: query + name: type + description: The saved object types to include. + required: true + schema: + oneOf: + - type: string + - type: array + responses: + '200': + description: Indicates a successful call. content: application/json: schema: type: object - additionalProperties: true + '400': + description: Bad request + content: + application/json: + schema: + $ref: '#/components/schemas/400_response' servers: - url: https://localhost:5601 servers: @@ -88,40 +450,47 @@ paths: summary: Create sets of Kibana saved objects from a file created by the export API. operationId: importSavedObjects description: | - This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features. Saved objects can be imported only into the same version, a newer minor on the same major, or the next major. Exported saved objects are not backwards compatible and cannot be imported into an older version of Kibana. + Saved objects can be imported only into the same version, a newer minor on the same major, or the next major. Exported saved objects are not backwards compatible and cannot be imported into an older version of Kibana. + + This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features. tags: - saved objects parameters: - $ref: '#/components/parameters/kbn_xsrf' - in: query - name: compatibilityMode + name: createNewCopies schema: type: boolean required: false description: | - Applies various adjustments to the saved objects that are being imported to maintain compatibility between different Kibana versions. Use this option only if you encounter issues with imported saved objects. NOTE: This option cannot be used with the `createNewCopies` option. + Creates copies of saved objects, regenerates each object ID, and resets the origin. When used, potential conflict errors are avoided. NOTE: This option cannot be used with the `overwrite` and `compatibilityMode` options. - in: query - name: createNewCopies + name: overwrite schema: type: boolean required: false description: | - Creates copies of saved objects, regenerates each object ID, and resets the origin. When used, potential conflict errors are avoided. NOTE: This option cannot be used with the `overwrite` and `compatibilityMode` options. + Overwrites saved objects when they already exist. When used, potential conflict errors are automatically resolved by overwriting the destination object. NOTE: This option cannot be used with the `createNewCopies` option. - in: query - name: overwrite + name: compatibilityMode schema: type: boolean required: false description: | - Overwrites saved objects when they already exist. When used, potential conflict errors are automatically resolved by overwriting the destination object. NOTE: This option cannot be used with the `createNewCopies` option. + Applies various adjustments to the saved objects that are being imported to maintain compatibility between different Kibana versions. Use this option only if you encounter issues with imported saved objects. NOTE: This option cannot be used with the `createNewCopies` option. requestBody: required: true content: multipart/form-data: schema: type: object - description: | - A file exported using the export API. NOTE: The `savedObjects.maxImportExportSize` configuration setting limits the number of saved objects which may be included in this file. Similarly, the `savedObjects.maxImportPayloadBytes` setting limits the overall size of the file that can be imported. + properties: + file: + description: | + A file exported using the export API. NOTE: The `savedObjects.maxImportExportSize` configuration setting limits the number of saved objects which may be included in this file. Similarly, the `savedObjects.maxImportPayloadBytes` setting limits the overall size of the file that can be imported. + examples: + importObjectsRequest: + $ref: '#/components/examples/import_objects_request' responses: '200': description: Indicates a successful call. @@ -130,10 +499,6 @@ paths: schema: type: object properties: - errors: - type: array - description: | - Indicates the import was unsuccessful and specifies the objects that failed to import. One object may result in multiple errors, which requires separate steps to resolve. For instance, a `missing_references` error and conflict error. success: type: boolean description: | @@ -141,24 +506,337 @@ paths: successCount: type: integer description: Indicates the number of successfully imported records. - successResults: + errors: type: array items: type: object description: | - Indicates the objects that are successfully imported, with any metadata if applicable. Objects are created only when all resolvable errors are addressed, including conflicts and missing references. If objects are created as new copies, each entry in the `successResults` array includes a `destinationId` attribute. - warnings: + Indicates the import was unsuccessful and specifies the objects that failed to import. + + NOTE: One object may result in multiple errors, which requires separate steps to resolve. For instance, a `missing_references` error and conflict error. + successResults: type: array + items: + type: object + description: | + Indicates the objects that are successfully imported, with any metadata if applicable. + + NOTE: Objects are created only when all resolvable errors are addressed, including conflicts and missing references. If objects are created as new copies, each entry in the `successResults` array includes a `destinationId` attribute. examples: importObjectsResponse: $ref: '#/components/examples/import_objects_response' '400': description: Bad request. + content: + application/json: + schema: + $ref: '#/components/schemas/400_response' + servers: + - url: https://localhost:5601 + servers: + - url: https://localhost:5601 + /api/saved_objects/_resolve_import_errors: + post: + summary: Resolve errors from the Import objects API. + operationId: resolveImportErrors + description: | + To resolve errors, you can: + + * Retry certain saved objects + * Overwrite specific saved objects + * Change references to different saved objects + + This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features. + tags: + - saved objects + parameters: + - $ref: '#/components/parameters/kbn_xsrf' + - in: query + name: compatibilityMode + schema: + type: boolean + required: false + description: | + Applies various adjustments to the saved objects that are being imported to maintain compatibility between different Kibana versions. When enabled during the initial import, also enable when resolving import errors. This option cannot be used with the `createNewCopies` option. + - in: query + name: createNewCopies + schema: + type: boolean + required: false + description: | + Creates copies of the saved objects, regenerates each object ID, and resets the origin. When enabled during the initial import, also enable when resolving import errors. + requestBody: + required: true + content: + multipart/form-data: + schema: + type: object + required: + - retries + properties: + file: + description: The same file given to the import API. + type: string + format: binary + retries: + description: The retry operations, which can specify how to resolve different types of errors. + type: array + items: + type: object + required: + - type + - id + properties: + type: + description: The saved object type. + type: string + id: + description: The saved object ID. + type: string + overwrite: + description: When set to `true`, the source object overwrites the conflicting destination object. When set to `false`, does nothing. + type: boolean + destinationId: + description: Specifies the destination ID that the imported object should have, if different from the current ID. + type: string + replaceReferences: + description: A list of `type`, `from`, and `to` used to change the object references. + type: array + items: + type: object + properties: + type: + type: string + from: + type: string + to: + type: string + ignoreMissingReferences: + description: When set to `true`, ignores missing reference errors. When set to `false`, does nothing. + type: boolean + examples: + resolveImportErrorsRequest: + $ref: '#/components/examples/resolve_missing_reference_request' + responses: + '200': + description: Indicates a successful call. content: application/json: schema: type: object - additionalProperties: true + properties: + success: + type: boolean + description: | + Indicates a successful import. When set to `false`, some objects may not have been created. For additional information, refer to the `errors` and `successResults` properties. + successCount: + type: number + description: | + Indicates the number of successfully resolved records. + errors: + type: array + description: | + Specifies the objects that failed to resolve. + + NOTE: One object can result in multiple errors, which requires separate steps to resolve. For instance, a `missing_references` error and a `conflict` error. + items: + type: object + successResults: + type: array + description: | + Indicates the objects that are successfully imported, with any metadata if applicable. + + NOTE: Objects are only created when all resolvable errors are addressed, including conflict and missing references. + items: + type: object + examples: + resolveImportErrorsResponse: + $ref: '#/components/examples/resolve_missing_reference_response' + '400': + description: Bad request. + content: + application/json: + schema: + $ref: '#/components/schemas/400_response' + servers: + - url: https://localhost:5601 + servers: + - url: https://localhost:5601 + /api/saved_objects/{type}: + post: + summary: Create Kibana saved objects with randomly generated identifiers. + operationId: createSavedObject + deprecated: true + tags: + - saved objects + parameters: + - $ref: '#/components/parameters/kbn_xsrf' + - $ref: '#/components/parameters/saved_object_type' + - in: query + name: overwrite + description: If true, overwrites the document with the same identifier. + schema: + type: boolean + requestBody: + required: true + content: + application/json: + schema: + type: object + required: + - attributes + properties: + attributes: + $ref: '#/components/schemas/attributes' + initialNamespaces: + $ref: '#/components/schemas/initial_namespaces' + references: + $ref: '#/components/schemas/references' + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + '409': + description: Indicates a conflict error. + content: + application/json: + schema: + type: object + servers: + - url: https://localhost:5601 + /api/saved_objects/{type}/{id}: + get: + summary: Retrieve a single Kibana saved object by identifier. + operationId: getSavedObject + deprecated: true + tags: + - saved objects + parameters: + - $ref: '#/components/parameters/saved_object_id' + - $ref: '#/components/parameters/saved_object_type' + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + '400': + description: Bad request. + content: + application/json: + schema: + $ref: '#/components/schemas/400_response' + servers: + - url: https://localhost:5601 + post: + summary: Create Kibana saved objects. + operationId: createSavedObjectId + deprecated: true + tags: + - saved objects + parameters: + - $ref: '#/components/parameters/kbn_xsrf' + - $ref: '#/components/parameters/saved_object_id' + - $ref: '#/components/parameters/saved_object_type' + - in: query + name: overwrite + description: If true, overwrites the document with the same identifier. + schema: + type: boolean + requestBody: + required: true + content: + application/json: + schema: + type: object + required: + - attributes + properties: + attributes: + $ref: '#/components/schemas/attributes' + initialNamespaces: + $ref: '#/components/schemas/initial_namespaces' + references: + $ref: '#/components/schemas/initial_namespaces' + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + '409': + description: Indicates a conflict error. + content: + application/json: + schema: + type: object + put: + summary: Update the attributes for Kibana saved objects. + operationId: updateSavedObject + deprecated: true + tags: + - saved objects + parameters: + - $ref: '#/components/parameters/kbn_xsrf' + - $ref: '#/components/parameters/saved_object_id' + - $ref: '#/components/parameters/saved_object_type' + requestBody: + required: true + content: + application/json: + schema: + type: object + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + '404': + description: Indicates the object was not found. + content: + application/json: + schema: + type: object + '409': + description: Indicates a conflict error. + content: + application/json: + schema: + type: object + servers: + - url: https://localhost:5601 + /api/saved_objects/resolve/{type}/{id}: + get: + summary: Retrieve a single Kibana saved object by identifier using any legacy URL alias if it exists. + operationId: resolveSavedObject + description: | + Under certain circumstances, when Kibana is upgraded, saved object migrations may necessitate regenerating some object IDs to enable new features. When an object's ID is regenerated, a legacy URL alias is created for that object, preserving its old ID. In such a scenario, that object can be retrieved using either its new ID or its old ID. + deprecated: true + tags: + - saved objects + parameters: + - $ref: '#/components/parameters/saved_object_id' + - $ref: '#/components/parameters/saved_object_type' + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + '400': + description: Bad request. + content: + application/json: + schema: + $ref: '#/components/schemas/400_response' servers: - url: https://localhost:5601 servers: @@ -172,33 +850,56 @@ components: type: apiKey in: header name: ApiKey - parameters: - kbn_xsrf: - schema: - type: string - in: header - name: kbn-xsrf - description: Cross-site request forgery protection - required: true examples: + key_rotation_response: + summary: Encryption key rotation using default parameters. + value: + total: 1000 + successful: 300 + failed: 0 export_objects_request: summary: Export a specific saved object. value: objects: - - type: index-pattern - id: 90943e30-9a47-11e8-b64d-95841ca0b247 + - type: map + id: de71f4f0-1902-11e9-919b-ffe5949a18d2 includeReferencesDeep: false + excludeExportDetails: true export_objects_response: - summary: The export objects API response contains a JSON record for each exported object and an export result details record. - value: | - {"attributes":{"fieldFormatMap":"{\"hour_of_day\":{}}","name":"Kibana Sample Data Logs","runtimeFieldMap":"{\"hour_of_day\":{\"type\":\"long\",\"script\":{\"source\":\"emit(doc['timestamp'].value.getHour());\"}}}","timeFieldName":"timestamp","title":"kibana_sample_data_logs"},"coreMigrationVersion":"8.8.0","created_at":"2023-07-25T19:36:36.695Z","id":"90943e30-9a47-11e8-b64d-95841ca0b247","managed":false,"references":[],"type":"index-pattern","typeMigrationVersion":"8.0.0","updated_at":"2023-07-25T19:36:36.695Z","version":"WzM5LDJd"} - {"excludedObjects":[],"excludedObjectsCount":0,"exportedCount":1,"missingRefCount":0,"missingReferences":[]} + summary: The export objects API response contains a JSON record for each exported object. + value: + attributes: + description: '' + layerListJSON: '[{"id":"0hmz5","alpha":1,"sourceDescriptor":{"type":"EMS_TMS","isAutoSelect":true,"lightModeDefault":"road_map_desaturated"},"visible":true,"style":{},"type":"EMS_VECTOR_TILE","minZoom":0,"maxZoom":24},{"id":"edh66","label":"Total Requests by Destination","minZoom":0,"maxZoom":24,"alpha":0.5,"sourceDescriptor":{"type":"EMS_FILE","id":"world_countries","tooltipProperties":["name","iso2"]},"visible":true,"style":{"type":"VECTOR","properties":{"fillColor":{"type":"DYNAMIC","options":{"field":{"name":"__kbnjoin__count__673ff994-fc75-4c67-909b-69fcb0e1060e","origin":"join"},"color":"Greys","fieldMetaOptions":{"isEnabled":false,"sigma":3}}},"lineColor":{"type":"STATIC","options":{"color":"#FFFFFF"}},"lineWidth":{"type":"STATIC","options":{"size":1}},"iconSize":{"type":"STATIC","options":{"size":10}},"symbolizeAs":{"options":{"value":"circle"}},"icon":{"type":"STATIC","options":{"value":"marker"}}}},"type":"GEOJSON_VECTOR","joins":[{"leftField":"iso2","right":{"type":"ES_TERM_SOURCE","id":"673ff994-fc75-4c67-909b-69fcb0e1060e","indexPatternTitle":"kibana_sample_data_logs","term":"geo.dest","indexPatternRefName":"layer_1_join_0_index_pattern","metrics":[{"type":"count","label":"web logs count"}],"applyGlobalQuery":true}}]},{"id":"gaxya","label":"Actual Requests","minZoom":9,"maxZoom":24,"alpha":1,"sourceDescriptor":{"id":"b7486535-171b-4d3b-bb2e-33c1a0a2854c","type":"ES_SEARCH","geoField":"geo.coordinates","limit":2048,"filterByMapBounds":true,"tooltipProperties":["clientip","timestamp","host","request","response","machine.os","agent","bytes"],"indexPatternRefName":"layer_2_source_index_pattern","applyGlobalQuery":true,"scalingType":"LIMIT"},"visible":true,"style":{"type":"VECTOR","properties":{"fillColor":{"type":"STATIC","options":{"color":"#2200ff"}},"lineColor":{"type":"STATIC","options":{"color":"#FFFFFF"}},"lineWidth":{"type":"STATIC","options":{"size":2}},"iconSize":{"type":"DYNAMIC","options":{"field":{"name":"bytes","origin":"source"},"minSize":1,"maxSize":23,"fieldMetaOptions":{"isEnabled":false,"sigma":3}}},"symbolizeAs":{"options":{"value":"circle"}},"icon":{"type":"STATIC","options":{"value":"marker"}}}},"type":"GEOJSON_VECTOR"},{"id":"tfi3f","label":"Total Requests and Bytes","minZoom":0,"maxZoom":9,"alpha":1,"sourceDescriptor":{"type":"ES_GEO_GRID","resolution":"COARSE","id":"8aaa65b5-a4e9-448b-9560-c98cb1c5ac5b","geoField":"geo.coordinates","requestType":"point","metrics":[{"type":"count","label":"web logs count"},{"type":"sum","field":"bytes"}],"indexPatternRefName":"layer_3_source_index_pattern","applyGlobalQuery":true},"visible":true,"style":{"type":"VECTOR","properties":{"fillColor":{"type":"DYNAMIC","options":{"field":{"name":"doc_count","origin":"source"},"color":"Blues","fieldMetaOptions":{"isEnabled":false,"sigma":3}}},"lineColor":{"type":"STATIC","options":{"color":"#cccccc"}},"lineWidth":{"type":"STATIC","options":{"size":1}},"iconSize":{"type":"DYNAMIC","options":{"field":{"name":"sum_of_bytes","origin":"source"},"minSize":7,"maxSize":25,"fieldMetaOptions":{"isEnabled":false,"sigma":3}}},"labelText":{"type":"DYNAMIC","options":{"field":{"name":"doc_count","origin":"source"},"fieldMetaOptions":{"isEnabled":false,"sigma":3}}},"labelSize":{"type":"DYNAMIC","options":{"field":{"name":"doc_count","origin":"source"},"minSize":12,"maxSize":24,"fieldMetaOptions":{"isEnabled":false,"sigma":3}}},"symbolizeAs":{"options":{"value":"circle"}},"icon":{"type":"STATIC","options":{"value":"marker"}}}},"type":"GEOJSON_VECTOR"}]' + mapStateJSON: '{"zoom":3.64,"center":{"lon":-88.92107,"lat":42.16337},"timeFilters":{"from":"now-7d","to":"now"},"refreshConfig":{"isPaused":true,"interval":0},"query":{"language":"kuery","query":""},"settings":{"autoFitToDataBounds":false}}' + title: '[Logs] Total Requests and Bytes' + uiStateJSON: '{"isDarkMode":false}' + coreMigrationVersion: 8.8.0 + created_at: '2023-08-23T20:03:32.204Z' + id: de71f4f0-1902-11e9-919b-ffe5949a18d2 + managed: false + references: + - id: 90943e30-9a47-11e8-b64d-95841ca0b247 + name: layer_1_join_0_index_pattern + type: index-pattern + - id: 90943e30-9a47-11e8-b64d-95841ca0b247 + name: layer_2_source_index_pattern + type: index-pattern + - id: 90943e30-9a47-11e8-b64d-95841ca0b247 + name: layer_3_source_index_pattern + type: index-pattern + type: map + typeMigrationVersion: 8.4.0 + updated_at: '2023-08-23T20:03:32.204Z' + version: WzEzLDFd + import_objects_request: + value: + file: file.ndjson import_objects_response: summary: The import objects API response indicates a successful import and the objects are created. Since these objects are created as new copies, each entry in the successResults array includes a destinationId attribute. value: successCount: 1 success: true - warnings: [] successResults: - type: index-pattern id: 90943e30-9a47-11e8-b64d-95841ca0b247 @@ -207,3 +908,94 @@ components: icon: indexPatternApp managed: false destinationId: 82d2760c-468f-49cf-83aa-b9a35b6a8943 + resolve_missing_reference_request: + value: + file: file.ndjson + retries: + - type: index-pattern + id: my-pattern + overwrite: true + - type: visualization + id: my-vis + overwrite: true + destinationId: another-vis + - type: canvas + id: my-canvas + overwrite: true + destinationId: yet-another-canvas + - type: dashboard + id: my-dashboard + resolve_missing_reference_response: + summary: Resolve missing reference errors. + value: + success: true + successCount: 3 + successResults: + - id: my-vis + type: visualization + meta: + icon: visualizeApp + title: Look at my visualization + - id: my-search + type: search + meta: + icon: searchApp + title: Look at my search + - id: my-dashboard + type: dashboard + meta: + icon: dashboardApp + title: Look at my dashboard + schemas: + 400_response: + title: Bad request + type: object + required: + - error + - message + - statusCode + properties: + error: + type: string + enum: + - Bad Request + message: + type: string + statusCode: + type: integer + enum: + - 400 + attributes: + type: object + description: | + The data that you want to create. WARNING: When you create saved objects, attributes are not validated, which allows you to pass arbitrary and ill-formed data into the API that can break Kibana. Make sure any data that you send to the API is properly formed. + initial_namespaces: + type: array + description: | + Identifiers for the spaces in which this object is created. If this is provided, the object is created only in the explicitly defined spaces. If this is not provided, the object is created in the current space (default behavior). For shareable object types (registered with `namespaceType: 'multiple'`), this option can be used to specify one or more spaces, including the "All spaces" identifier ('*'). For isolated object types (registered with `namespaceType: 'single'` or `namespaceType: 'multiple-isolated'`), this option can only be used to specify a single space, and the "All spaces" identifier ('*') is not allowed. For global object types (`registered with `namespaceType: agnostic`), this option cannot be used. + references: + type: array + description: | + Objects with `name`, `id`, and `type` properties that describe the other saved objects that this object references. Use `name` in attributes to refer to the other saved object, but never the `id`, which can update automatically during migrations or import and export. + parameters: + kbn_xsrf: + schema: + type: string + in: header + name: kbn-xsrf + description: Cross-site request forgery protection + required: true + saved_object_type: + in: path + name: type + description: Valid options include `visualization`, `dashboard`, `search`, `index-pattern`, `config`. + required: true + schema: + type: string + saved_object_id: + in: path + name: id + description: An identifier for the saved object. + required: true + schema: + type: string diff --git a/packages/core/saved-objects/docs/openapi/components/examples/export_objects_request.yaml b/packages/core/saved-objects/docs/openapi/components/examples/export_objects_request.yaml index 065e956d0f6ab..d841423a82a30 100644 --- a/packages/core/saved-objects/docs/openapi/components/examples/export_objects_request.yaml +++ b/packages/core/saved-objects/docs/openapi/components/examples/export_objects_request.yaml @@ -3,9 +3,10 @@ value: { "objects": [ { - "type": "index-pattern", - "id": "90943e30-9a47-11e8-b64d-95841ca0b247" + "type": "map", + "id": "de71f4f0-1902-11e9-919b-ffe5949a18d2" } ], - "includeReferencesDeep": false + "includeReferencesDeep": false, + "excludeExportDetails": true } \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/components/examples/export_objects_response.yaml b/packages/core/saved-objects/docs/openapi/components/examples/export_objects_response.yaml index f6eb12f671b20..001c7e192324f 100644 --- a/packages/core/saved-objects/docs/openapi/components/examples/export_objects_response.yaml +++ b/packages/core/saved-objects/docs/openapi/components/examples/export_objects_response.yaml @@ -1,4 +1,3 @@ -summary: The export objects API response contains a JSON record for each exported object and an export result details record. -value: | - {"attributes":{"fieldFormatMap":"{\"hour_of_day\":{}}","name":"Kibana Sample Data Logs","runtimeFieldMap":"{\"hour_of_day\":{\"type\":\"long\",\"script\":{\"source\":\"emit(doc['timestamp'].value.getHour());\"}}}","timeFieldName":"timestamp","title":"kibana_sample_data_logs"},"coreMigrationVersion":"8.8.0","created_at":"2023-07-25T19:36:36.695Z","id":"90943e30-9a47-11e8-b64d-95841ca0b247","managed":false,"references":[],"type":"index-pattern","typeMigrationVersion":"8.0.0","updated_at":"2023-07-25T19:36:36.695Z","version":"WzM5LDJd"} - {"excludedObjects":[],"excludedObjectsCount":0,"exportedCount":1,"missingRefCount":0,"missingReferences":[]} \ No newline at end of file +summary: The export objects API response contains a JSON record for each exported object. +value: + {"attributes":{"description":"","layerListJSON":"[{\"id\":\"0hmz5\",\"alpha\":1,\"sourceDescriptor\":{\"type\":\"EMS_TMS\",\"isAutoSelect\":true,\"lightModeDefault\":\"road_map_desaturated\"},\"visible\":true,\"style\":{},\"type\":\"EMS_VECTOR_TILE\",\"minZoom\":0,\"maxZoom\":24},{\"id\":\"edh66\",\"label\":\"Total Requests by Destination\",\"minZoom\":0,\"maxZoom\":24,\"alpha\":0.5,\"sourceDescriptor\":{\"type\":\"EMS_FILE\",\"id\":\"world_countries\",\"tooltipProperties\":[\"name\",\"iso2\"]},\"visible\":true,\"style\":{\"type\":\"VECTOR\",\"properties\":{\"fillColor\":{\"type\":\"DYNAMIC\",\"options\":{\"field\":{\"name\":\"__kbnjoin__count__673ff994-fc75-4c67-909b-69fcb0e1060e\",\"origin\":\"join\"},\"color\":\"Greys\",\"fieldMetaOptions\":{\"isEnabled\":false,\"sigma\":3}}},\"lineColor\":{\"type\":\"STATIC\",\"options\":{\"color\":\"#FFFFFF\"}},\"lineWidth\":{\"type\":\"STATIC\",\"options\":{\"size\":1}},\"iconSize\":{\"type\":\"STATIC\",\"options\":{\"size\":10}},\"symbolizeAs\":{\"options\":{\"value\":\"circle\"}},\"icon\":{\"type\":\"STATIC\",\"options\":{\"value\":\"marker\"}}}},\"type\":\"GEOJSON_VECTOR\",\"joins\":[{\"leftField\":\"iso2\",\"right\":{\"type\":\"ES_TERM_SOURCE\",\"id\":\"673ff994-fc75-4c67-909b-69fcb0e1060e\",\"indexPatternTitle\":\"kibana_sample_data_logs\",\"term\":\"geo.dest\",\"indexPatternRefName\":\"layer_1_join_0_index_pattern\",\"metrics\":[{\"type\":\"count\",\"label\":\"web logs count\"}],\"applyGlobalQuery\":true}}]},{\"id\":\"gaxya\",\"label\":\"Actual Requests\",\"minZoom\":9,\"maxZoom\":24,\"alpha\":1,\"sourceDescriptor\":{\"id\":\"b7486535-171b-4d3b-bb2e-33c1a0a2854c\",\"type\":\"ES_SEARCH\",\"geoField\":\"geo.coordinates\",\"limit\":2048,\"filterByMapBounds\":true,\"tooltipProperties\":[\"clientip\",\"timestamp\",\"host\",\"request\",\"response\",\"machine.os\",\"agent\",\"bytes\"],\"indexPatternRefName\":\"layer_2_source_index_pattern\",\"applyGlobalQuery\":true,\"scalingType\":\"LIMIT\"},\"visible\":true,\"style\":{\"type\":\"VECTOR\",\"properties\":{\"fillColor\":{\"type\":\"STATIC\",\"options\":{\"color\":\"#2200ff\"}},\"lineColor\":{\"type\":\"STATIC\",\"options\":{\"color\":\"#FFFFFF\"}},\"lineWidth\":{\"type\":\"STATIC\",\"options\":{\"size\":2}},\"iconSize\":{\"type\":\"DYNAMIC\",\"options\":{\"field\":{\"name\":\"bytes\",\"origin\":\"source\"},\"minSize\":1,\"maxSize\":23,\"fieldMetaOptions\":{\"isEnabled\":false,\"sigma\":3}}},\"symbolizeAs\":{\"options\":{\"value\":\"circle\"}},\"icon\":{\"type\":\"STATIC\",\"options\":{\"value\":\"marker\"}}}},\"type\":\"GEOJSON_VECTOR\"},{\"id\":\"tfi3f\",\"label\":\"Total Requests and Bytes\",\"minZoom\":0,\"maxZoom\":9,\"alpha\":1,\"sourceDescriptor\":{\"type\":\"ES_GEO_GRID\",\"resolution\":\"COARSE\",\"id\":\"8aaa65b5-a4e9-448b-9560-c98cb1c5ac5b\",\"geoField\":\"geo.coordinates\",\"requestType\":\"point\",\"metrics\":[{\"type\":\"count\",\"label\":\"web logs count\"},{\"type\":\"sum\",\"field\":\"bytes\"}],\"indexPatternRefName\":\"layer_3_source_index_pattern\",\"applyGlobalQuery\":true},\"visible\":true,\"style\":{\"type\":\"VECTOR\",\"properties\":{\"fillColor\":{\"type\":\"DYNAMIC\",\"options\":{\"field\":{\"name\":\"doc_count\",\"origin\":\"source\"},\"color\":\"Blues\",\"fieldMetaOptions\":{\"isEnabled\":false,\"sigma\":3}}},\"lineColor\":{\"type\":\"STATIC\",\"options\":{\"color\":\"#cccccc\"}},\"lineWidth\":{\"type\":\"STATIC\",\"options\":{\"size\":1}},\"iconSize\":{\"type\":\"DYNAMIC\",\"options\":{\"field\":{\"name\":\"sum_of_bytes\",\"origin\":\"source\"},\"minSize\":7,\"maxSize\":25,\"fieldMetaOptions\":{\"isEnabled\":false,\"sigma\":3}}},\"labelText\":{\"type\":\"DYNAMIC\",\"options\":{\"field\":{\"name\":\"doc_count\",\"origin\":\"source\"},\"fieldMetaOptions\":{\"isEnabled\":false,\"sigma\":3}}},\"labelSize\":{\"type\":\"DYNAMIC\",\"options\":{\"field\":{\"name\":\"doc_count\",\"origin\":\"source\"},\"minSize\":12,\"maxSize\":24,\"fieldMetaOptions\":{\"isEnabled\":false,\"sigma\":3}}},\"symbolizeAs\":{\"options\":{\"value\":\"circle\"}},\"icon\":{\"type\":\"STATIC\",\"options\":{\"value\":\"marker\"}}}},\"type\":\"GEOJSON_VECTOR\"}]","mapStateJSON":"{\"zoom\":3.64,\"center\":{\"lon\":-88.92107,\"lat\":42.16337},\"timeFilters\":{\"from\":\"now-7d\",\"to\":\"now\"},\"refreshConfig\":{\"isPaused\":true,\"interval\":0},\"query\":{\"language\":\"kuery\",\"query\":\"\"},\"settings\":{\"autoFitToDataBounds\":false}}","title":"[Logs] Total Requests and Bytes","uiStateJSON":"{\"isDarkMode\":false}"},"coreMigrationVersion":"8.8.0","created_at":"2023-08-23T20:03:32.204Z","id":"de71f4f0-1902-11e9-919b-ffe5949a18d2","managed":false,"references":[{"id":"90943e30-9a47-11e8-b64d-95841ca0b247","name":"layer_1_join_0_index_pattern","type":"index-pattern"},{"id":"90943e30-9a47-11e8-b64d-95841ca0b247","name":"layer_2_source_index_pattern","type":"index-pattern"},{"id":"90943e30-9a47-11e8-b64d-95841ca0b247","name":"layer_3_source_index_pattern","type":"index-pattern"}],"type":"map","typeMigrationVersion":"8.4.0","updated_at":"2023-08-23T20:03:32.204Z","version":"WzEzLDFd"} \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/components/examples/import_objects_request.yaml b/packages/core/saved-objects/docs/openapi/components/examples/import_objects_request.yaml new file mode 100644 index 0000000000000..9378436aafbc5 --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/components/examples/import_objects_request.yaml @@ -0,0 +1,2 @@ +value: + file: file.ndjson \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/components/examples/import_objects_response.yaml b/packages/core/saved-objects/docs/openapi/components/examples/import_objects_response.yaml index a19cf00a9bb97..a12799dd6b17a 100644 --- a/packages/core/saved-objects/docs/openapi/components/examples/import_objects_response.yaml +++ b/packages/core/saved-objects/docs/openapi/components/examples/import_objects_response.yaml @@ -3,7 +3,6 @@ value: { "successCount":1, "success":true, - "warnings":[], "successResults":[ { "type":"index-pattern", diff --git a/packages/core/saved-objects/docs/openapi/components/examples/key_rotation_response.yaml b/packages/core/saved-objects/docs/openapi/components/examples/key_rotation_response.yaml new file mode 100644 index 0000000000000..11527996dfd44 --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/components/examples/key_rotation_response.yaml @@ -0,0 +1,7 @@ +summary: Encryption key rotation using default parameters. +value: + { + "total": 1000, + "successful": 300, + "failed": 0 + } \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/components/examples/resolve_missing_reference_request.yaml b/packages/core/saved-objects/docs/openapi/components/examples/resolve_missing_reference_request.yaml new file mode 100644 index 0000000000000..26897d5fc027e --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/components/examples/resolve_missing_reference_request.yaml @@ -0,0 +1,16 @@ +value: + file: file.ndjson + retries: + - type: index-pattern + id: my-pattern + overwrite: true + - type: visualization + id: my-vis + overwrite: true + destinationId: another-vis + - type: canvas + id: my-canvas + overwrite: true + destinationId: yet-another-canvas + - type: dashboard + id: my-dashboard \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/components/examples/resolve_missing_reference_response.yaml b/packages/core/saved-objects/docs/openapi/components/examples/resolve_missing_reference_response.yaml new file mode 100644 index 0000000000000..065b820ce3ab2 --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/components/examples/resolve_missing_reference_response.yaml @@ -0,0 +1,20 @@ +summary: Resolve missing reference errors. +value: + success: true + successCount: 3 + successResults: + - id: my-vis + type: visualization + meta: + icon: visualizeApp + title: Look at my visualization + - id: my-search + type: search + meta: + icon: searchApp + title: Look at my search + - id: my-dashboard + type: dashboard + meta: + icon: dashboardApp + title: Look at my dashboard \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/components/parameters/saved_object_id.yaml b/packages/core/saved-objects/docs/openapi/components/parameters/saved_object_id.yaml new file mode 100644 index 0000000000000..5cf3a824cc05e --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/components/parameters/saved_object_id.yaml @@ -0,0 +1,6 @@ +in: path +name: id +description: An identifier for the saved object. +required: true +schema: + type: string \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/components/parameters/saved_object_type.yaml b/packages/core/saved-objects/docs/openapi/components/parameters/saved_object_type.yaml new file mode 100644 index 0000000000000..9662a966f9d5f --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/components/parameters/saved_object_type.yaml @@ -0,0 +1,6 @@ +in: path +name: type +description: Valid options include `visualization`, `dashboard`, `search`, `index-pattern`, `config`. +required: true +schema: + type: string diff --git a/packages/core/saved-objects/docs/openapi/components/schemas/400_response.yaml b/packages/core/saved-objects/docs/openapi/components/schemas/400_response.yaml new file mode 100644 index 0000000000000..ab0887586c0eb --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/components/schemas/400_response.yaml @@ -0,0 +1,17 @@ +title: Bad request +type: object +required: + - error + - message + - statusCode +properties: + error: + type: string + enum: + - Bad Request + message: + type: string + statusCode: + type: integer + enum: + - 400 \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/components/schemas/attributes.yaml b/packages/core/saved-objects/docs/openapi/components/schemas/attributes.yaml new file mode 100644 index 0000000000000..61a107dcb21ad --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/components/schemas/attributes.yaml @@ -0,0 +1,4 @@ +type: object +description: > + The data that you want to create. + WARNING: When you create saved objects, attributes are not validated, which allows you to pass arbitrary and ill-formed data into the API that can break Kibana. Make sure any data that you send to the API is properly formed. \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/components/schemas/initial_namespaces.yaml b/packages/core/saved-objects/docs/openapi/components/schemas/initial_namespaces.yaml new file mode 100644 index 0000000000000..b7c2e94c97f33 --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/components/schemas/initial_namespaces.yaml @@ -0,0 +1,8 @@ +type: array +description: > + Identifiers for the spaces in which this object is created. + If this is provided, the object is created only in the explicitly defined spaces. + If this is not provided, the object is created in the current space (default behavior). + For shareable object types (registered with `namespaceType: 'multiple'`), this option can be used to specify one or more spaces, including the "All spaces" identifier ('*'). + For isolated object types (registered with `namespaceType: 'single'` or `namespaceType: 'multiple-isolated'`), this option can only be used to specify a single space, and the "All spaces" identifier ('*') is not allowed. + For global object types (`registered with `namespaceType: agnostic`), this option cannot be used. \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/components/schemas/references.yaml b/packages/core/saved-objects/docs/openapi/components/schemas/references.yaml new file mode 100644 index 0000000000000..d734d081695da --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/components/schemas/references.yaml @@ -0,0 +1,4 @@ +type: array +description: > + Objects with `name`, `id`, and `type` properties that describe the other saved objects that this object references. + Use `name` in attributes to refer to the other saved object, but never the `id`, which can update automatically during migrations or import and export. \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/entrypoint.yaml b/packages/core/saved-objects/docs/openapi/entrypoint.yaml index a76f7880822fe..f20b8204b4bd4 100644 --- a/packages/core/saved-objects/docs/openapi/entrypoint.yaml +++ b/packages/core/saved-objects/docs/openapi/entrypoint.yaml @@ -16,32 +16,32 @@ servers: description: local paths: # Paths in the default space -# '/api/encrypted_saved_objects/_rotate_key': -# $ref: 'paths/api@encrypted_saved_objects@_rotate_key.yaml' -# '/api/saved_objects/_bulk_create': -# $ref: 'paths/api@saved_objects@_bulk_create.yaml' -# '/api/saved_objects/_bulk_delete': -# $ref: 'paths/api@saved_objects@_bulk_delete.yaml' -# '/api/saved_objects/_bulk_get': -# $ref: 'paths/api@saved_objects@_bulk_get.yaml' -# '/api/saved_objects/_bulk_resolve': -# $ref: 'paths/api@saved_objects@_bulk_resolve.yaml' -# '/api/saved_objects/_bulk_update': -# $ref: 'paths/api@saved_objects@_bulk_update.yaml' + '/api/encrypted_saved_objects/_rotate_key': + $ref: 'paths/api@encrypted_saved_objects@_rotate_key.yaml' + '/api/saved_objects/_bulk_create': + $ref: 'paths/api@saved_objects@_bulk_create.yaml' + '/api/saved_objects/_bulk_delete': + $ref: 'paths/api@saved_objects@_bulk_delete.yaml' + '/api/saved_objects/_bulk_get': + $ref: 'paths/api@saved_objects@_bulk_get.yaml' + '/api/saved_objects/_bulk_resolve': + $ref: 'paths/api@saved_objects@_bulk_resolve.yaml' + '/api/saved_objects/_bulk_update': + $ref: 'paths/api@saved_objects@_bulk_update.yaml' '/api/saved_objects/_export': $ref: 'paths/api@saved_objects@_export.yaml' -# '/api/saved_objects/_find': -# $ref: 'paths/api@saved_objects@_find.yaml' + '/api/saved_objects/_find': + $ref: 'paths/api@saved_objects@_find.yaml' '/api/saved_objects/_import': $ref: 'paths/api@saved_objects@_import.yaml' -# '/api/saved_objects/_resolve_import_errors': -# $ref: 'paths/api@saved_objects@_resolve_import_errors.yaml' -# '/api/saved_objects/{type}': -# $ref: 'paths/api@saved_objects@{type}.yaml' -# '/api/saved_objects/{type}/{id}': -# $ref: 'paths/api@saved_objects@{type}@{id}.yaml -# 'api/saved_objects/resolve/{type}/{id}': -# $ref: 'paths/api@saved_objects@resolve@{type}@{id}.yaml' + '/api/saved_objects/_resolve_import_errors': + $ref: 'paths/api@saved_objects@_resolve_import_errors.yaml' + '/api/saved_objects/{type}': + $ref: 'paths/api@saved_objects@{type}.yaml' + '/api/saved_objects/{type}/{id}': + $ref: 'paths/api@saved_objects@{type}@{id}.yaml' + '/api/saved_objects/resolve/{type}/{id}': + $ref: 'paths/api@saved_objects@resolve@{type}@{id}.yaml' components: securitySchemes: basicAuth: @@ -53,4 +53,4 @@ components: name: ApiKey security: - basicAuth: [] - - apiKeyAuth: [] + - apiKeyAuth: [] \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/paths/README.md b/packages/core/saved-objects/docs/openapi/paths/README.md index b7818c8474fc8..8b2289c89cbe6 100644 --- a/packages/core/saved-objects/docs/openapi/paths/README.md +++ b/packages/core/saved-objects/docs/openapi/paths/README.md @@ -7,4 +7,4 @@ These files currently use the following conventions: * path separator token (e.g. `@`) is included in the file name * path parameter (e.g. `{example}`) is included in the file name -* there is one file per path; each file can contain multiple operations +* there is one file per path; each file can contain multiple operations \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/paths/api@encrypted_saved_objects@_rotate_key.yaml b/packages/core/saved-objects/docs/openapi/paths/api@encrypted_saved_objects@_rotate_key.yaml new file mode 100644 index 0000000000000..94ab9cb3f6286 --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/paths/api@encrypted_saved_objects@_rotate_key.yaml @@ -0,0 +1,68 @@ +post: + summary: Rotate the encryption key for encrypted saved objects. + operationId: rotateEncryptionKey + description: | + Superuser role required. + + If a saved object cannot be decrypted using the primary encryption key, then Kibana will attempt to decrypt it using the specified decryption-only keys. In most of the cases this overhead is negligible, but if you're dealing with a large number of saved objects and experiencing performance issues, you may want to rotate the encryption key. + + This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features. + tags: + - saved objects + parameters: + - in: query + name: batch_size + schema: + type: number + default: 10000 + required: false + description: | + Specifies a maximum number of saved objects that Kibana can process in a single batch. Bulk key rotation is an iterative process since Kibana may not be able to fetch and process all required saved objects in one go and splits processing into consequent batches. By default, the batch size is 10000, which is also a maximum allowed value. + - in: query + name: type + schema: + type: string + required: false + description: | + Limits encryption key rotation only to the saved objects with the specified type. By default, Kibana tries to rotate the encryption key for all saved object types that may contain encrypted attributes. + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + properties: + total: + type: number + description: | + Indicates the total number of all encrypted saved objects (optionally filtered by the requested `type`), regardless of the key Kibana used for encryption. + successful: + type: number + description: | + Indicates the total number of all encrypted saved objects (optionally filtered by the requested `type`), regardless of the key Kibana used for encryption. + + NOTE: In most cases, `total` will be greater than `successful` even if `failed` is zero. The reason is that Kibana may not need or may not be able to rotate encryption keys for all encrypted saved objects. + failed: + type: number + description: | + Indicates the number of the saved objects that were still encrypted with one of the old encryption keys that Kibana failed to re-encrypt with the primary key. + examples: + rotateEncryptionKeyResponse: + $ref: '../components/examples/key_rotation_response.yaml' + '400': + description: Bad request + content: + application/json: + schema: + $ref: '../components/schemas/400_response.yaml' + '429': + description: Already in progress. + content: + application/json: + schema: + type: object + servers: + - url: https://localhost:5601 +servers: + - url: https://localhost:5601 \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_bulk_create.yaml b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_bulk_create.yaml new file mode 100644 index 0000000000000..0461a1a618a75 --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_bulk_create.yaml @@ -0,0 +1,39 @@ +post: + summary: Create multiple Kibana saved objects. + operationId: bulkCreateSavedObjects + deprecated: true + tags: + - saved objects + parameters: + - $ref: ../components/headers/kbn_xsrf.yaml + - in: query + name: overwrite + description: When true, overwrites the document with the same identifier. + schema: + type: boolean + requestBody: + required: true + content: + application/json: + schema: + type: array + items: + type: object + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + '400': + description: Bad request + content: + application/json: + schema: + $ref: '../components/schemas/400_response.yaml' + + servers: + - url: https://localhost:5601 +servers: + - url: https://localhost:5601 \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_bulk_delete.yaml b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_bulk_delete.yaml new file mode 100644 index 0000000000000..c15fdde82b2a4 --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_bulk_delete.yaml @@ -0,0 +1,48 @@ +post: + summary: Remove multiple Kibana saved objects. + operationId: bulkDeleteSavedObjects + description: > + WARNING: When you delete a saved object, it cannot be recovered. + deprecated: true + tags: + - saved objects + parameters: + - $ref: ../components/headers/kbn_xsrf.yaml + - in: query + name: force + description: > + When true, force delete objects that exist in multiple namespaces. + Note that the option applies to the whole request. + Use the delete object API to specify per-object deletion behavior. + TIP: Use this if you attempted to delete objects and received an HTTP 400 error with the following message: "Unable to delete saved object that exists in multiple namespaces, use the force option to delete it anyway". + WARNING: When you bulk delete objects that exist in multiple namespaces, the API also deletes legacy url aliases that reference the object. These requests are batched to minimise the impact but they can place a heavy load on Kibana. Make sure you limit the number of objects that exist in multiple namespaces in a single bulk delete operation. + schema: + type: boolean + requestBody: + required: true + content: + application/json: + schema: + type: array + items: + type: object + responses: + '200': + description: > + Indicates a successful call. + NOTE: This HTTP response code indicates that the bulk operation succeeded. + Errors pertaining to individual objects will be returned in the response body. + content: + application/json: + schema: + type: object + '400': + description: Bad request + content: + application/json: + schema: + $ref: '../components/schemas/400_response.yaml' + servers: + - url: https://localhost:5601 +servers: + - url: https://localhost:5601 \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_bulk_get.yaml b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_bulk_get.yaml new file mode 100644 index 0000000000000..8512f5a04ef7f --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_bulk_get.yaml @@ -0,0 +1,33 @@ +post: + summary: Retrieve multiple Kibana saved objects by identifier. + operationId: bulkGetSavedObjects + deprecated: true + tags: + - saved objects + parameters: + - $ref: ../components/headers/kbn_xsrf.yaml + requestBody: + required: true + content: + application/json: + schema: + type: array + items: + type: object + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + '400': + description: Bad request + content: + application/json: + schema: + $ref: '../components/schemas/400_response.yaml' + servers: + - url: https://localhost:5601 +servers: + - url: https://localhost:5601 \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_bulk_resolve.yaml b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_bulk_resolve.yaml new file mode 100644 index 0000000000000..9227bb782bfac --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_bulk_resolve.yaml @@ -0,0 +1,40 @@ +post: + summary: Retrieve multiple Kibana saved objects by identifier using any legacy URL aliases if they exist. + operationId: bulkResolveSavedObjects + deprecated: true + description: > + Under certain circumstances when Kibana is upgraded, saved object migrations may necessitate regenerating some object IDs to enable new features. + When an object's ID is regenerated, a legacy URL alias is created for that object, preserving its old ID. + In such a scenario, that object can be retrieved by the bulk resolve API using either its new ID or its old ID. + tags: + - saved objects + parameters: + - $ref: ../components/headers/kbn_xsrf.yaml + requestBody: + required: true + content: + application/json: + schema: + type: array + items: + type: object + responses: + '200': + description: > + Indicates a successful call. + NOTE: This HTTP response code indicates that the bulk operation succeeded. + Errors pertaining to individual objects will be returned in the response body. + content: + application/json: + schema: + type: object + '400': + description: Bad request + content: + application/json: + schema: + $ref: '../components/schemas/400_response.yaml' + servers: + - url: https://localhost:5601 +servers: + - url: https://localhost:5601 \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_bulk_update.yaml b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_bulk_update.yaml new file mode 100644 index 0000000000000..aa5e9e1f33c35 --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_bulk_update.yaml @@ -0,0 +1,36 @@ +post: + summary: Update the attributes for multiple Kibana saved objects. + operationId: bulkUpdateSavedObjects + deprecated: true + tags: + - saved objects + parameters: + - $ref: ../components/headers/kbn_xsrf.yaml + requestBody: + required: true + content: + application/json: + schema: + type: array + items: + type: object + responses: + '200': + description: > + Indicates a successful call. + NOTE: This HTTP response code indicates that the bulk operation succeeded. + Errors pertaining to individual objects will be returned in the response body. + content: + application/json: + schema: + type: object + '400': + description: Bad request + content: + application/json: + schema: + $ref: '../components/schemas/400_response.yaml' + servers: + - url: https://localhost:5601 +servers: + - url: https://localhost:5601 \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_export.yaml b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_export.yaml index 2c3cb60aff742..931746d21ddc1 100644 --- a/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_export.yaml +++ b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_export.yaml @@ -1,9 +1,13 @@ post: summary: Retrieve sets of saved objects that you want to import into Kibana. operationId: exportSavedObjects - description: > - This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features. + description: | + + You must include `type` or `objects` in the request body. + NOTE: The `savedObjects.maxImportExportSize` configuration setting limits the number of saved objects which may be exported. + + This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features. tags: - saved objects parameters: @@ -14,9 +18,6 @@ post: application/json: schema: type: object - anyOf: - - required: [type] - - required: [objects] properties: excludeExportDetails: description: Do not add export details entry at the end of the stream. @@ -31,7 +32,7 @@ post: items: type: object type: - description: The saved object types to include in the export. + description: The saved object types to include in the export. Use `*` to export all the types. oneOf: - type: string - type: array @@ -44,9 +45,10 @@ post: '200': description: Indicates a successful call. content: - multipart/form-data: + application/x-ndjson: schema: - type: string + type: object + additionalProperties: true examples: exportSavedObjectsResponse: $ref: '../components/examples/export_objects_response.yaml' @@ -55,9 +57,8 @@ post: content: application/json: schema: - type: object - additionalProperties: true + $ref: '../components/schemas/400_response.yaml' servers: - - url: https://localhost:5601 + - url: https://localhost:5601 servers: - - url: https://localhost:5601 \ No newline at end of file + - url: https://localhost:5601 \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_find.yaml b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_find.yaml new file mode 100644 index 0000000000000..180a16534f8a0 --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_find.yaml @@ -0,0 +1,111 @@ +get: + summary: Retrieve a paginated set of Kibana saved objects. + operationId: findSavedObjects + deprecated: true + tags: + - saved objects + parameters: + - in: query + name: aggs + description: > + An aggregation structure, serialized as a string. The field format is similar to filter, meaning that to use a saved object type attribute in the aggregation, the `savedObjectType.attributes.title: "myTitle"` format must be used. For root fields, the syntax is `savedObjectType.rootField`. + NOTE: As objects change in Kibana, the results on each page of the response also change. Use the find API for traditional paginated results, but avoid using it to export large amounts of data. + schema: + type: string + - in: query + name: default_search_operator + description: The default operator to use for the `simple_query_string`. + schema: + type: string + - in: query + name: fields + description: The fields to return in the attributes key of the response. + schema: + oneOf: + - type: string + - type: array + - in: query + name: filter + description: > + The filter is a KQL string with the caveat that if you filter with an attribute from your saved object type, it should look like that: `savedObjectType.attributes.title: "myTitle"`. + However, if you use a root attribute of a saved object such as `updated_at`, you will have to define your filter like that: `savedObjectType.updated_at > 2018-12-22`. + schema: + type: string + - in: query + name: has_no_reference + description: Filters to objects that do not have a relationship with the type and identifier combination. + schema: + type: object + - in: query + name: has_no_reference_operator + description: The operator to use for the `has_no_reference` parameter. Either `OR` or `AND`. Defaults to `OR`. + schema: + type: string + - in: query + name: has_reference + description: Filters to objects that have a relationship with the type and ID combination. + schema: + type: object + - in: query + name: has_reference_operator + description: The operator to use for the `has_reference` parameter. Either `OR` or `AND`. Defaults to `OR`. + schema: + type: string + - in: query + name: page + description: The page of objects to return. + schema: + type: integer + - in: query + name: per_page + description: The number of objects to return per page. + schema: + type: integer + - in: query + name: search + description: An Elasticsearch `simple_query_string` query that filters the objects in the response. + schema: + type: string + - in: query + name: search_fields + description: The fields to perform the `simple_query_string` parsed query against. + schema: + oneOf: + - type: string + - type: array + - in: query + name: sort_field + description: > + Sorts the response. + Includes "root" and "type" fields. + "root" fields exist for all saved objects, such as "updated_at". + "type" fields are specific to an object type, such as fields returned in the attributes key of the response. + When a single type is defined in the type parameter, the "root" and "type" fields are allowed, and validity checks are made in that order. + When multiple types are defined in the type parameter, only "root" fields are allowed. + schema: + type: string + - in: query + name: type + description: The saved object types to include. + required: true + schema: + oneOf: + - type: string + - type: array + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + '400': + description: Bad request + content: + application/json: + schema: + $ref: '../components/schemas/400_response.yaml' + servers: + - url: https://localhost:5601 +servers: + - url: https://localhost:5601 \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_import.yaml b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_import.yaml index a6c21a5d9551b..5c538a2d1442f 100644 --- a/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_import.yaml +++ b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_import.yaml @@ -1,84 +1,79 @@ post: summary: Create sets of Kibana saved objects from a file created by the export API. operationId: importSavedObjects - description: > + description: | + Saved objects can be imported only into the same version, a newer minor on the same major, or the next major. Exported saved objects are not backwards compatible and cannot be imported into an older version of Kibana. + This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features. - Saved objects can be imported only into the same version, a newer minor on the same major, or the next major. - Exported saved objects are not backwards compatible and cannot be imported into an older version of Kibana. tags: - saved objects parameters: - $ref: '../components/headers/kbn_xsrf.yaml' - in: query - name: compatibilityMode + name: createNewCopies schema: type: boolean required: false - description: > - Applies various adjustments to the saved objects that are being imported to maintain compatibility between different Kibana versions. - Use this option only if you encounter issues with imported saved objects. - NOTE: This option cannot be used with the `createNewCopies` option. + description: | + Creates copies of saved objects, regenerates each object ID, and resets the origin. When used, potential conflict errors are avoided. NOTE: This option cannot be used with the `overwrite` and `compatibilityMode` options. - in: query - name: createNewCopies + name: overwrite schema: type: boolean required: false - description: > - Creates copies of saved objects, regenerates each object ID, and resets the origin. - When used, potential conflict errors are avoided. - NOTE: This option cannot be used with the `overwrite` and `compatibilityMode` options. + description: | + Overwrites saved objects when they already exist. When used, potential conflict errors are automatically resolved by overwriting the destination object. NOTE: This option cannot be used with the `createNewCopies` option. - in: query - name: overwrite + name: compatibilityMode schema: type: boolean required: false - description: > - Overwrites saved objects when they already exist. - When used, potential conflict errors are automatically resolved by overwriting the destination object. - NOTE: This option cannot be used with the `createNewCopies` option. + description: | + Applies various adjustments to the saved objects that are being imported to maintain compatibility between different Kibana versions. Use this option only if you encounter issues with imported saved objects. NOTE: This option cannot be used with the `createNewCopies` option. requestBody: required: true content: multipart/form-data: schema: type: object - description: > - A file exported using the export API. - NOTE: The `savedObjects.maxImportExportSize` configuration setting limits the number of saved objects which may be included in this file. - Similarly, the `savedObjects.maxImportPayloadBytes` setting limits the overall size of the file that can be imported. + properties: + file: + description: | + A file exported using the export API. NOTE: The `savedObjects.maxImportExportSize` configuration setting limits the number of saved objects which may be included in this file. Similarly, the `savedObjects.maxImportPayloadBytes` setting limits the overall size of the file that can be imported. + examples: + importObjectsRequest: + $ref: '../components/examples/import_objects_request.yaml' responses: '200': description: Indicates a successful call. content: - application/json: + application/json: schema: type: object properties: - errors: - type: array - description: > - Indicates the import was unsuccessful and specifies the objects that failed to import. - One object may result in multiple errors, which requires separate steps to resolve. - For instance, a `missing_references` error and conflict error. success: type: boolean - description: > - Indicates when the import was successfully completed. - When set to false, some objects may not have been created. - For additional information, refer to the `errors` and `successResults` properties. + description: | + Indicates when the import was successfully completed. When set to false, some objects may not have been created. For additional information, refer to the `errors` and `successResults` properties. successCount: type: integer description: Indicates the number of successfully imported records. + errors: + type: array + items: + type: object + description: | + Indicates the import was unsuccessful and specifies the objects that failed to import. + + NOTE: One object may result in multiple errors, which requires separate steps to resolve. For instance, a `missing_references` error and conflict error. successResults: type: array items: type: object - description: > + description: | Indicates the objects that are successfully imported, with any metadata if applicable. - Objects are created only when all resolvable errors are addressed, including conflicts and missing references. - If objects are created as new copies, each entry in the `successResults` array includes a `destinationId` attribute. - warnings: - type: array + + NOTE: Objects are created only when all resolvable errors are addressed, including conflicts and missing references. If objects are created as new copies, each entry in the `successResults` array includes a `destinationId` attribute. examples: importObjectsResponse: $ref: '../components/examples/import_objects_response.yaml' @@ -87,9 +82,8 @@ post: content: application/json: schema: - type: object - additionalProperties: true + $ref: '../components/schemas/400_response.yaml' servers: - - url: https://localhost:5601 + - url: https://localhost:5601 servers: - - url: https://localhost:5601 \ No newline at end of file +- url: https://localhost:5601 \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_resolve_import_errors.yaml b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_resolve_import_errors.yaml new file mode 100644 index 0000000000000..6c49f1925e3e5 --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@_resolve_import_errors.yaml @@ -0,0 +1,126 @@ +post: + summary: Resolve errors from the Import objects API. + operationId: resolveImportErrors + description: | + To resolve errors, you can: + + * Retry certain saved objects + * Overwrite specific saved objects + * Change references to different saved objects + + This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features. + tags: + - saved objects + parameters: + - $ref: '../components/headers/kbn_xsrf.yaml' + - in: query + name: compatibilityMode + schema: + type: boolean + required: false + description: | + Applies various adjustments to the saved objects that are being imported to maintain compatibility between different Kibana versions. When enabled during the initial import, also enable when resolving import errors. This option cannot be used with the `createNewCopies` option. + - in: query + name: createNewCopies + schema: + type: boolean + required: false + description: | + Creates copies of the saved objects, regenerates each object ID, and resets the origin. When enabled during the initial import, also enable when resolving import errors. + requestBody: + required: true + content: + multipart/form-data: + schema: + type: object + required: + - retries + properties: + file: + description: The same file given to the import API. + type: string + format: binary + retries: + description: The retry operations, which can specify how to resolve different types of errors. + type: array + items: + type: object + required: + - type + - id + properties: + type: + description: The saved object type. + type: string + id: + description: The saved object ID. + type: string + overwrite: + description: When set to `true`, the source object overwrites the conflicting destination object. When set to `false`, does nothing. + type: boolean + destinationId: + description: Specifies the destination ID that the imported object should have, if different from the current ID. + type: string + replaceReferences: + description: A list of `type`, `from`, and `to` used to change the object references. + type: array + items: + type: object + properties: + type: + type: string + from: + type: string + to: + type: string + ignoreMissingReferences: + description: When set to `true`, ignores missing reference errors. When set to `false`, does nothing. + type: boolean + examples: + resolveImportErrorsRequest: + $ref: '../components/examples/resolve_missing_reference_request.yaml' + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + properties: + success: + type: boolean + description: | + Indicates a successful import. When set to `false`, some objects may not have been created. For additional information, refer to the `errors` and `successResults` properties. + successCount: + type: number + description: | + Indicates the number of successfully resolved records. + errors: + type: array + description: | + Specifies the objects that failed to resolve. + + NOTE: One object can result in multiple errors, which requires separate steps to resolve. For instance, a `missing_references` error and a `conflict` error. + items: + type: object + successResults: + type: array + description: | + Indicates the objects that are successfully imported, with any metadata if applicable. + + NOTE: Objects are only created when all resolvable errors are addressed, including conflict and missing references. + items: + type: object + examples: + resolveImportErrorsResponse: + $ref: '../components/examples/resolve_missing_reference_response.yaml' + '400': + description: Bad request. + content: + application/json: + schema: + $ref: '../components/schemas/400_response.yaml' + servers: + - url: https://localhost:5601 +servers: + - url: https://localhost:5601 \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@resolve@{type}@{id}.yaml b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@resolve@{type}@{id}.yaml new file mode 100644 index 0000000000000..bb1bd0d68bcef --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@resolve@{type}@{id}.yaml @@ -0,0 +1,31 @@ +get: + summary: Retrieve a single Kibana saved object by identifier using any legacy URL alias if it exists. + operationId: resolveSavedObject + description: > + Under certain circumstances, when Kibana is upgraded, saved object migrations may necessitate regenerating some object IDs to enable new features. + When an object's ID is regenerated, a legacy URL alias is created for that object, preserving its old ID. + In such a scenario, that object can be retrieved using either its new ID or its old ID. + deprecated: true + tags: + - saved objects + parameters: + - $ref: '../components/parameters/saved_object_id.yaml' + - $ref: '../components/parameters/saved_object_type.yaml' + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + '400': + description: Bad request. + content: + application/json: + schema: + $ref: '../components/schemas/400_response.yaml' + servers: + - url: https://localhost:5601 + +servers: + - url: https://localhost:5601 \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@{type}.yaml b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@{type}.yaml new file mode 100644 index 0000000000000..2005e4241b41f --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@{type}.yaml @@ -0,0 +1,44 @@ +post: + summary: Create Kibana saved objects with randomly generated identifiers. + operationId: createSavedObject + deprecated: true + tags: + - saved objects + parameters: + - $ref: '../components/headers/kbn_xsrf.yaml' + - $ref: '../components/parameters/saved_object_type.yaml' + - in: query + name: overwrite + description: If true, overwrites the document with the same identifier. + schema: + type: boolean + requestBody: + required: true + content: + application/json: + schema: + type: object + required: + - attributes + properties: + attributes: + $ref: '../components/schemas/attributes.yaml' + initialNamespaces: + $ref: '../components/schemas/initial_namespaces.yaml' + references: + $ref: '../components/schemas/references.yaml' + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + '409': + description: Indicates a conflict error. + content: + application/json: + schema: + type: object +servers: + - url: https://localhost:5601 \ No newline at end of file diff --git a/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@{type}@{id}.yaml b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@{type}@{id}.yaml new file mode 100644 index 0000000000000..b92631817eba4 --- /dev/null +++ b/packages/core/saved-objects/docs/openapi/paths/api@saved_objects@{type}@{id}.yaml @@ -0,0 +1,106 @@ +get: + summary: Retrieve a single Kibana saved object by identifier. + operationId: getSavedObject + deprecated: true + tags: + - saved objects + parameters: + - $ref: '../components/parameters/saved_object_id.yaml' + - $ref: '../components/parameters/saved_object_type.yaml' + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + '400': + description: Bad request. + content: + application/json: + schema: + $ref: '../components/schemas/400_response.yaml' + servers: + - url: https://localhost:5601 + +post: + summary: Create Kibana saved objects. + operationId: createSavedObjectId + deprecated: true + tags: + - saved objects + parameters: + - $ref: '../components/headers/kbn_xsrf.yaml' + - $ref: '../components/parameters/saved_object_id.yaml' + - $ref: '../components/parameters/saved_object_type.yaml' + - in: query + name: overwrite + description: If true, overwrites the document with the same identifier. + schema: + type: boolean + requestBody: + required: true + content: + application/json: + schema: + type: object + required: + - attributes + properties: + attributes: + $ref: '../components/schemas/attributes.yaml' + initialNamespaces: + $ref: '../components/schemas/initial_namespaces.yaml' + references: + $ref: '../components/schemas/initial_namespaces.yaml' + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + '409': + description: Indicates a conflict error. + content: + application/json: + schema: + type: object + +put: + summary: Update the attributes for Kibana saved objects. + operationId: updateSavedObject + deprecated: true + tags: + - saved objects + parameters: + - $ref: '../components/headers/kbn_xsrf.yaml' + - $ref: '../components/parameters/saved_object_id.yaml' + - $ref: '../components/parameters/saved_object_type.yaml' + requestBody: + required: true + content: + application/json: + schema: + type: object + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + '404': + description: Indicates the object was not found. + content: + application/json: + schema: + type: object + '409': + description: Indicates a conflict error. + content: + application/json: + schema: + type: object +servers: + - url: https://localhost:5601 \ No newline at end of file diff --git a/packages/core/status/core-status-server-internal/src/routes/status.ts b/packages/core/status/core-status-server-internal/src/routes/status.ts index 403686bdf2688..e06d667b4c78b 100644 --- a/packages/core/status/core-status-server-internal/src/routes/status.ts +++ b/packages/core/status/core-status-server-internal/src/routes/status.ts @@ -82,7 +82,10 @@ export const registerStatusRoute = ({ path: '/api/status', options: { authRequired: 'optional', - tags: ['api'], // ensures that unauthenticated calls receive a 401 rather than a 302 redirect to login page + // The `api` tag ensures that unauthenticated calls receive a 401 rather than a 302 redirect to login page. + // The `security:acceptJWT` tag allows route to be accessed with JWT credentials. It points to + // ROUTE_TAG_ACCEPT_JWT from '@kbn/security-plugin/server' that cannot be imported here directly. + tags: ['api', 'security:acceptJWT'], access: 'public', // needs to be public to allow access from "system" users like k8s readiness probes. }, validate: { diff --git a/packages/core/test-helpers/core-test-helpers-kbn-server/index.ts b/packages/core/test-helpers/core-test-helpers-kbn-server/index.ts index a9a992daae212..eac1a3472ebb4 100644 --- a/packages/core/test-helpers/core-test-helpers-kbn-server/index.ts +++ b/packages/core/test-helpers/core-test-helpers-kbn-server/index.ts @@ -12,7 +12,15 @@ export { createRoot, createRootWithCorePlugins, createTestServers, + createTestServerlessInstances, request, } from './src'; -export type { HttpMethod, TestElasticsearchUtils, TestKibanaUtils, TestUtils } from './src'; +export type { + HttpMethod, + TestElasticsearchUtils, + TestKibanaUtils, + TestUtils, + TestServerlessESUtils, + TestServerlessKibanaUtils, +} from './src'; diff --git a/packages/core/test-helpers/core-test-helpers-kbn-server/src/create_serverless_root.ts b/packages/core/test-helpers/core-test-helpers-kbn-server/src/create_serverless_root.ts new file mode 100644 index 0000000000000..0ff24ed58af09 --- /dev/null +++ b/packages/core/test-helpers/core-test-helpers-kbn-server/src/create_serverless_root.ts @@ -0,0 +1,100 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ +import { defaultsDeep } from 'lodash'; +import { Cluster } from '@kbn/es'; +import Path from 'path'; +import { REPO_ROOT } from '@kbn/repo-info'; +import { ToolingLog } from '@kbn/tooling-log'; +import execa from 'execa'; +import { CliArgs } from '@kbn/config'; +import { createRoot, type TestElasticsearchUtils, type TestKibanaUtils } from './create_root'; + +export type TestServerlessESUtils = Pick; +export type TestServerlessKibanaUtils = TestKibanaUtils; +export interface TestServerlessUtils { + startES: () => Promise; + startKibana: (abortSignal?: AbortSignal) => Promise; +} + +/** + * See docs in {@link TestUtils}. This function provides the same utilities but + * configured for serverless. + * + * @note requires a Docker installation to be running + */ +export function createTestServerlessInstances({ + adjustTimeout, +}: { + adjustTimeout: (timeout: number) => void; +}): TestServerlessUtils { + const esUtils = createServerlessES(); + const kbUtils = createServerlessKibana(); + adjustTimeout?.(120_000); + return { + startES: async () => { + const { stop } = await esUtils.start(); + return { + es: esUtils.es, + stop, + }; + }, + startKibana: async (abortSignal) => { + abortSignal?.addEventListener('abort', async () => await kbUtils.shutdown()); + await kbUtils.preboot(); + const coreSetup = await kbUtils.setup(); + const coreStart = await kbUtils.start(); + return { + root: kbUtils, + coreSetup, + coreStart, + stop: kbUtils.shutdown.bind(kbUtils), + }; + }, + }; +} + +function createServerlessES() { + const log = new ToolingLog({ + level: 'info', + writeTo: process.stdout, + }); + const es = new Cluster({ log }); + return { + es, + start: async () => { + await es.runServerless({ + basePath: Path.join(REPO_ROOT, '.es/es_test_serverless'), + }); + return { + stop: async () => { + // hack to stop the ES cluster + await execa('docker', ['container', 'stop', 'es01', 'es02', 'es03']); + }, + }; + }, + }; +} + +const defaults = { + server: { + restrictInternalApis: true, + versioned: { + versionResolution: 'newest', + strictClientVersionCheck: false, + }, + }, + migrations: { + algorithm: 'zdt', + }, + elasticsearch: { + serviceAccountToken: 'BEEF', + }, +}; +function createServerlessKibana(settings = {}, cliArgs: Partial = {}) { + return createRoot(defaultsDeep(settings, defaults), { ...cliArgs, serverless: true }); +} diff --git a/packages/core/test-helpers/core-test-helpers-kbn-server/src/index.ts b/packages/core/test-helpers/core-test-helpers-kbn-server/src/index.ts index 7a8e231066f8b..6fb64a34a0035 100644 --- a/packages/core/test-helpers/core-test-helpers-kbn-server/src/index.ts +++ b/packages/core/test-helpers/core-test-helpers-kbn-server/src/index.ts @@ -15,4 +15,12 @@ export { request, } from './create_root'; +export { createTestServerlessInstances } from './create_serverless_root'; + +export type { + TestServerlessUtils, + TestServerlessESUtils, + TestServerlessKibanaUtils, +} from './create_serverless_root'; + export type { HttpMethod, TestElasticsearchUtils, TestKibanaUtils, TestUtils } from './create_root'; diff --git a/packages/core/test-helpers/core-test-helpers-kbn-server/tsconfig.json b/packages/core/test-helpers/core-test-helpers-kbn-server/tsconfig.json index b5342c23fba2b..8afae2b7d74c3 100644 --- a/packages/core/test-helpers/core-test-helpers-kbn-server/tsconfig.json +++ b/packages/core/test-helpers/core-test-helpers-kbn-server/tsconfig.json @@ -18,6 +18,7 @@ "@kbn/core-root-server-internal", "@kbn/repo-info", "@kbn/repo-packages", + "@kbn/es", ], "exclude": [ "target/**/*", diff --git a/packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts b/packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts index 279d5c68cd733..8e77ec7a0800c 100644 --- a/packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts +++ b/packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts @@ -101,6 +101,8 @@ export interface CoreUsageStats { 'apiCalls.savedObjectsImport.namespace.custom.kibanaRequest.no'?: number; 'apiCalls.savedObjectsImport.createNewCopiesEnabled.yes'?: number; 'apiCalls.savedObjectsImport.createNewCopiesEnabled.no'?: number; + 'apiCalls.savedObjectsImport.compatibilityModeEnabled.yes'?: number; + 'apiCalls.savedObjectsImport.compatibilityModeEnabled.no'?: number; 'apiCalls.savedObjectsImport.overwriteEnabled.yes'?: number; 'apiCalls.savedObjectsImport.overwriteEnabled.no'?: number; 'apiCalls.savedObjectsResolveImportErrors.total'?: number; diff --git a/packages/deeplinks/search/constants.ts b/packages/deeplinks/search/constants.ts index 7bdbdfd9e8ed7..75e23971bcbc7 100644 --- a/packages/deeplinks/search/constants.ts +++ b/packages/deeplinks/search/constants.ts @@ -7,4 +7,4 @@ */ export const SERVERLESS_ES_APP_ID = 'serverlessElasticsearch'; -export const SERVERLESS_ES_INDEXING_API_ID = 'serverlessIndexingApi'; +export const SERVERLESS_ES_CONNECTORS_ID = 'serverlessConnectors'; diff --git a/packages/deeplinks/search/deep_links.ts b/packages/deeplinks/search/deep_links.ts index aa647955a5c17..420f308945ca3 100644 --- a/packages/deeplinks/search/deep_links.ts +++ b/packages/deeplinks/search/deep_links.ts @@ -6,9 +6,9 @@ * Side Public License, v 1. */ -import { SERVERLESS_ES_APP_ID, SERVERLESS_ES_INDEXING_API_ID } from './constants'; +import { SERVERLESS_ES_APP_ID, SERVERLESS_ES_CONNECTORS_ID } from './constants'; export type AppId = typeof SERVERLESS_ES_APP_ID; -export type IndexingApiId = typeof SERVERLESS_ES_INDEXING_API_ID; +export type ConnectorsId = typeof SERVERLESS_ES_CONNECTORS_ID; -export type DeepLinkId = AppId | IndexingApiId; +export type DeepLinkId = AppId | ConnectorsId; diff --git a/packages/deeplinks/search/index.ts b/packages/deeplinks/search/index.ts index a21db35a8627b..33c795a34382f 100644 --- a/packages/deeplinks/search/index.ts +++ b/packages/deeplinks/search/index.ts @@ -6,6 +6,6 @@ * Side Public License, v 1. */ -export { SERVERLESS_ES_APP_ID, SERVERLESS_ES_INDEXING_API_ID } from './constants'; +export { SERVERLESS_ES_APP_ID, SERVERLESS_ES_CONNECTORS_ID } from './constants'; export type { AppId, DeepLinkId } from './deep_links'; diff --git a/packages/kbn-check-mappings-update-cli/current_mappings.json b/packages/kbn-check-mappings-update-cli/current_mappings.json index 3f70ed15952fb..c2e1b05850689 100644 --- a/packages/kbn-check-mappings-update-cli/current_mappings.json +++ b/packages/kbn-check-mappings-update-cli/current_mappings.json @@ -2956,8 +2956,34 @@ "risk-engine-configuration": { "dynamic": false, "properties": { + "dataViewId": { + "type": "keyword" + }, "enabled": { "type": "boolean" + }, + "filter": { + "dynamic": false, + "properties": {} + }, + "identifierType": { + "type": "keyword" + }, + "interval": { + "type": "keyword" + }, + "pageSize": { + "type": "integer" + }, + "range": { + "properties": { + "start": { + "type": "keyword" + }, + "end": { + "type": "keyword" + } + } } } }, diff --git a/packages/kbn-doc-links/src/get_doc_links.ts b/packages/kbn-doc-links/src/get_doc_links.ts index a3aebffc12b55..1b1973e35ec52 100644 --- a/packages/kbn-doc-links/src/get_doc_links.ts +++ b/packages/kbn-doc-links/src/get_doc_links.ts @@ -34,6 +34,8 @@ export const getDocLinks = ({ kibanaBranch }: GetDocLinkOptions): DocLinks => { const WORKPLACE_SEARCH_DOCS = `${ELASTIC_WEBSITE_URL}guide/en/workplace-search/${DOC_LINK_VERSION}/`; const SEARCH_UI_DOCS = `${DOCS_WEBSITE_URL}search-ui/`; const MACHINE_LEARNING_DOCS = `${ELASTIC_WEBSITE_URL}guide/en/machine-learning/${DOC_LINK_VERSION}/`; + const SERVERLESS_DOCS = `${DOCS_WEBSITE_URL}serverless/`; + const SERVERLESS_ELASTICSEARCH_DOCS = `${SERVERLESS_DOCS}elasticsearch/`; return deepFreeze({ settings: `${ELASTIC_WEBSITE_URL}guide/en/kibana/${DOC_LINK_VERSION}/settings.html`, @@ -65,6 +67,7 @@ export const getDocLinks = ({ kibanaBranch }: GetDocLinkOptions): DocLinks => { }, console: { guide: `${KIBANA_DOCS}console-kibana.html`, + serverlessGuide: `${SERVERLESS_ELASTICSEARCH_DOCS}dev-tools-console`, }, dashboard: { guide: `${KIBANA_DOCS}dashboard.html`, @@ -805,8 +808,29 @@ export const getDocLinks = ({ kibanaBranch }: GetDocLinkOptions): DocLinks => { appSearch: `${SEARCH_UI_DOCS}tutorials/app-search`, elasticsearch: `${SEARCH_UI_DOCS}tutorials/elasticsearch`, }, + serverlessClients: { + goApiReference: `${SERVERLESS_ELASTICSEARCH_DOCS}go-apis-references`, + goGettingStarted: `${SERVERLESS_ELASTICSEARCH_DOCS}go-apis`, + httpApis: `${SERVERLESS_ELASTICSEARCH_DOCS}http-apis`, + httpApiReferences: `${SERVERLESS_ELASTICSEARCH_DOCS}http-apis-references`, + jsApiReference: `${SERVERLESS_ELASTICSEARCH_DOCS}nodejs-apis-references`, + jsGettingStarted: `${SERVERLESS_ELASTICSEARCH_DOCS}nodejs-apis-getting-started`, + phpApiReference: `${SERVERLESS_ELASTICSEARCH_DOCS}php-apis-references`, + phpGettingStarted: `${SERVERLESS_ELASTICSEARCH_DOCS}php-apis-getting-started`, + pythonApiReference: `${SERVERLESS_ELASTICSEARCH_DOCS}python-apis-references`, + pythonGettingStarted: `${SERVERLESS_ELASTICSEARCH_DOCS}python-apis-getting-started`, + pythonReferences: `${SERVERLESS_ELASTICSEARCH_DOCS}python-apis-references`, + rubyApiReference: `${SERVERLESS_ELASTICSEARCH_DOCS}ruby-apis-references`, + rubyGettingStarted: `${SERVERLESS_ELASTICSEARCH_DOCS}ruby-apis-getting-started`, + }, serverlessSearch: { - integrations: `${ELASTIC_WEBSITE_URL}/integrations`, + integrations: `${SERVERLESS_ELASTICSEARCH_DOCS}ingest-data-through-integrations`, + integrationsLogstash: `${SERVERLESS_ELASTICSEARCH_DOCS}ingest-data-through-integrations-logstash`, + integrationsBeats: `${SERVERLESS_ELASTICSEARCH_DOCS}ingest-data-through-integrations-beats`, + integrationsConnectorClient: `${SERVERLESS_ELASTICSEARCH_DOCS}ingest-data-through-integrations-connector-client`, + gettingStartedExplore: `${SERVERLESS_ELASTICSEARCH_DOCS}get-started-explore`, + gettingStartedIngest: `${SERVERLESS_ELASTICSEARCH_DOCS}get-started-ingest`, + gettingStartedSearch: `${SERVERLESS_ELASTICSEARCH_DOCS}get-started-search`, }, synthetics: { featureRoles: `${ELASTIC_WEBSITE_URL}guide/en/observability/${DOC_LINK_VERSION}/synthetics-feature-roles.html`, diff --git a/packages/kbn-doc-links/src/types.ts b/packages/kbn-doc-links/src/types.ts index 1a6726b743949..b29017f71d739 100644 --- a/packages/kbn-doc-links/src/types.ts +++ b/packages/kbn-doc-links/src/types.ts @@ -49,6 +49,7 @@ export interface DocLinks { }; readonly console: { readonly guide: string; + readonly serverlessGuide: string; }; readonly dashboard: { readonly guide: string; @@ -569,8 +570,29 @@ export interface DocLinks { readonly appSearch: string; readonly elasticsearch: string; }; + readonly serverlessClients: { + readonly goApiReference: string; + readonly goGettingStarted: string; + readonly httpApis: string; + readonly httpApiReferences: string; + readonly jsApiReference: string; + readonly jsGettingStarted: string; + readonly phpApiReference: string; + readonly phpGettingStarted: string; + readonly pythonApiReference: string; + readonly pythonGettingStarted: string; + readonly pythonReferences: string; + readonly rubyApiReference: string; + readonly rubyGettingStarted: string; + }; readonly serverlessSearch: { + readonly gettingStartedExplore: string; + readonly gettingStartedIngest: string; + readonly gettingStartedSearch: string; readonly integrations: string; + readonly integrationsBeats: string; + readonly integrationsConnectorClient: string; + readonly integrationsLogstash: string; }; readonly synthetics: { readonly featureRoles: string; diff --git a/packages/kbn-eslint-plugin-imports/src/rules/no_unused_imports.ts b/packages/kbn-eslint-plugin-imports/src/rules/no_unused_imports.ts index f12e149af9f66..5818bef672faf 100644 --- a/packages/kbn-eslint-plugin-imports/src/rules/no_unused_imports.ts +++ b/packages/kbn-eslint-plugin-imports/src/rules/no_unused_imports.ts @@ -78,6 +78,7 @@ function isTsOrEslintIgnore(comment: Comment) { export const NoUnusedImportsRule: Rule.RuleModule = { meta: { + hasSuggestions: true, fixable: 'code', docs: { url: 'https://github.com/elastic/kibana/blob/main/packages/kbn-eslint-plugin-imports/README.mdx#kbnimportsno_unused_imports', diff --git a/packages/kbn-expandable-flyout/src/components/left_section.tsx b/packages/kbn-expandable-flyout/src/components/left_section.tsx index 88326acb6476e..25958fbb332b7 100644 --- a/packages/kbn-expandable-flyout/src/components/left_section.tsx +++ b/packages/kbn-expandable-flyout/src/components/left_section.tsx @@ -7,7 +7,7 @@ */ import { EuiFlexGroup, EuiFlexItem } from '@elastic/eui'; -import React from 'react'; +import React, { useMemo } from 'react'; import { LEFT_SECTION } from './test_ids'; interface LeftSectionProps { @@ -25,8 +25,12 @@ interface LeftSectionProps { * Left section of the expanded flyout rendering a panel */ export const LeftSection: React.FC = ({ component, width }: LeftSectionProps) => { + const style = useMemo( + () => ({ height: '100%', width: `${width * 100}%`, overflowY: 'scroll' }), + [width] + ); return ( - + {component} ); diff --git a/packages/kbn-expandable-flyout/src/components/right_section.tsx b/packages/kbn-expandable-flyout/src/components/right_section.tsx index 027f523a93050..b6020a54bc39f 100644 --- a/packages/kbn-expandable-flyout/src/components/right_section.tsx +++ b/packages/kbn-expandable-flyout/src/components/right_section.tsx @@ -7,7 +7,7 @@ */ import { EuiFlexGroup, EuiFlexItem } from '@elastic/eui'; -import React from 'react'; +import React, { useMemo } from 'react'; import { RIGHT_SECTION } from './test_ids'; interface RightSectionProps { @@ -28,12 +28,13 @@ export const RightSection: React.FC = ({ component, width, }: RightSectionProps) => { + const style = useMemo( + () => ({ height: '100%', width: `${width * 100}%`, overflowY: 'scroll' }), + [width] + ); + return ( - + {component} ); diff --git a/packages/kbn-expandable-flyout/src/index.tsx b/packages/kbn-expandable-flyout/src/index.tsx index e6e5af85ac0a3..d5a1bff46439b 100644 --- a/packages/kbn-expandable-flyout/src/index.tsx +++ b/packages/kbn-expandable-flyout/src/index.tsx @@ -7,7 +7,6 @@ */ import React, { useCallback, useMemo } from 'react'; -import { css } from '@emotion/react'; import type { EuiFlyoutProps } from '@elastic/eui'; import { EuiFlexGroup, EuiFlyout } from '@elastic/eui'; import { useExpandableFlyoutContext } from './context'; @@ -28,10 +27,6 @@ export interface ExpandableFlyoutProps extends Omit { handleOnFlyoutClosed?: () => void; } -const flyoutStyles = css` - overflow-y: scroll; -`; - const flyoutInnerStyles = { height: '100%' }; /** @@ -88,13 +83,7 @@ export const ExpandableFlyout: React.FC = ({ const previewSectionWidth: number = leftSection ? 0.4 : 1; return ( - + { - if ( - pkg.isDevOnly || - pkg.manifest.type === 'functional-tests' || - pkg.manifest.type === 'test-helper' - ) { + if (pkg.isDevOnly()) { return false; } diff --git a/packages/kbn-search-api-panels/components/code_box.tsx b/packages/kbn-search-api-panels/components/code_box.tsx index 55b8915328285..9a00bdd86e4e3 100644 --- a/packages/kbn-search-api-panels/components/code_box.tsx +++ b/packages/kbn-search-api-panels/components/code_box.tsx @@ -22,7 +22,6 @@ import { EuiThemeProvider, } from '@elastic/eui'; import { i18n } from '@kbn/i18n'; -import type { HttpStart } from '@kbn/core-http-browser'; import type { ApplicationStart } from '@kbn/core-application-browser'; import type { SharePluginStart } from '@kbn/share-plugin/public'; @@ -37,31 +36,29 @@ interface CodeBoxProps { languageType?: string; selectedLanguage: LanguageDefinition; setSelectedLanguage: (language: LanguageDefinition) => void; - http: HttpStart; - pluginId: string; + assetBasePath: string; application?: ApplicationStart; sharePlugin: SharePluginStart; - showTryInConsole: boolean; + consoleRequest?: string; } export const CodeBox: React.FC = ({ application, codeSnippet, - http, languageType, languages, - pluginId, + assetBasePath, selectedLanguage, setSelectedLanguage, sharePlugin, - showTryInConsole, + consoleRequest, }) => { const [isPopoverOpen, setIsPopoverOpen] = useState(false); const items = languages.map((language) => ( { setSelectedLanguage(language); setIsPopoverOpen(false); @@ -115,10 +112,10 @@ export const CodeBox: React.FC = ({ )} - {showTryInConsole && ( + {consoleRequest !== undefined && ( diff --git a/packages/kbn-search-api-panels/components/github_link.tsx b/packages/kbn-search-api-panels/components/github_link.tsx index 19c7a83ed2de3..d0b41e21daeaf 100644 --- a/packages/kbn-search-api-panels/components/github_link.tsx +++ b/packages/kbn-search-api-panels/components/github_link.tsx @@ -9,18 +9,16 @@ import React from 'react'; import { EuiFlexGroup, EuiFlexItem, EuiIcon, EuiText, EuiLink } from '@elastic/eui'; -import { HttpStart } from '@kbn/core-http-browser'; export const GithubLink: React.FC<{ + assetBasePath: string; label: string; href: string; - http: HttpStart; - pluginId: string; -}> = ({ label, href, http, pluginId }) => { +}> = ({ assetBasePath, label, href }) => { return ( - + diff --git a/packages/kbn-search-api-panels/components/ingest_data.tsx b/packages/kbn-search-api-panels/components/ingest_data.tsx index 9f82b91e76159..5e1c8e7bc01dd 100644 --- a/packages/kbn-search-api-panels/components/ingest_data.tsx +++ b/packages/kbn-search-api-panels/components/ingest_data.tsx @@ -10,7 +10,6 @@ import React, { useState } from 'react'; import { EuiCheckableCard, EuiFormFieldset, EuiSpacer, EuiText, EuiTitle } from '@elastic/eui'; import { i18n } from '@kbn/i18n'; -import type { HttpStart } from '@kbn/core-http-browser'; import type { ApplicationStart } from '@kbn/core-application-browser'; import type { SharePluginStart } from '@kbn/share-plugin/public'; import { CodeBox } from './code_box'; @@ -23,12 +22,11 @@ interface IngestDataProps { selectedLanguage: LanguageDefinition; setSelectedLanguage: (language: LanguageDefinition) => void; docLinks: any; - http: HttpStart; - pluginId: string; + assetBasePath: string; application?: ApplicationStart; sharePlugin: SharePluginStart; languages: LanguageDefinition[]; - showTryInConsole: boolean; + consoleRequest?: string; } export const IngestData: React.FC = ({ @@ -36,12 +34,11 @@ export const IngestData: React.FC = ({ selectedLanguage, setSelectedLanguage, docLinks, - http, - pluginId, + assetBasePath, application, sharePlugin, languages, - showTryInConsole, + consoleRequest, }) => { const [selectedIngestMethod, setSelectedIngestMethod] = useState< 'ingestViaApi' | 'ingestViaIntegration' @@ -55,18 +52,17 @@ export const IngestData: React.FC = ({ leftPanelContent={ selectedIngestMethod === 'ingestViaApi' ? ( ) : ( - + ) } links={[ diff --git a/packages/kbn-search-api-panels/components/install_client.tsx b/packages/kbn-search-api-panels/components/install_client.tsx index 9083cf902f885..6d56f69e09530 100644 --- a/packages/kbn-search-api-panels/components/install_client.tsx +++ b/packages/kbn-search-api-panels/components/install_client.tsx @@ -10,21 +10,19 @@ import React from 'react'; import { EuiSpacer, EuiCallOut, EuiText, EuiPanelProps } from '@elastic/eui'; import { i18n } from '@kbn/i18n'; -import type { HttpStart } from '@kbn/core-http-browser'; import type { ApplicationStart } from '@kbn/core-application-browser'; import type { SharePluginStart } from '@kbn/share-plugin/public'; import { CodeBox } from './code_box'; import { OverviewPanel } from './overview_panel'; -import { LanguageDefinition, Languages } from '../types'; +import { LanguageDefinition } from '../types'; import { GithubLink } from './github_link'; interface InstallClientProps { codeSnippet: string; - showTryInConsole: boolean; + consoleRequest?: string; language: LanguageDefinition; setSelectedLanguage: (language: LanguageDefinition) => void; - http: HttpStart; - pluginId: string; + assetBasePath: string; application?: ApplicationStart; sharePlugin: SharePluginStart; isPanelLeft?: boolean; @@ -32,57 +30,29 @@ interface InstallClientProps { overviewPanelProps?: Partial; } -const Link: React.FC<{ language: Languages; http: HttpStart; pluginId: string }> = ({ +const Link: React.FC<{ language: LanguageDefinition; assetBasePath: string }> = ({ language, - http, - pluginId, + assetBasePath, }) => { - switch (language) { - case Languages.CURL: - return ( - - ); - case Languages.JAVASCRIPT: - return ( - - ); - case Languages.RUBY: - return ( - - ); + if (language.github) { + return ( + + ); } return null; }; export const InstallClientPanel: React.FC = ({ codeSnippet, - showTryInConsole, + consoleRequest, language, languages, setSelectedLanguage, - http, - pluginId, + assetBasePath, application, sharePlugin, isPanelLeft = true, @@ -91,19 +61,18 @@ export const InstallClientPanel: React.FC = ({ const panelContent = ( <> - + = ({ docLinks, - http, - pluginId, + assetBasePath, }) => { return ( @@ -75,8 +72,7 @@ export const IntegrationsPanel: React.FC = ({ label={i18n.translate('searchApiPanels.welcomeBanner.ingestData.logstashLink', { defaultMessage: 'Logstash', })} - http={http} - pluginId={pluginId} + assetBasePath={assetBasePath} /> @@ -117,8 +113,7 @@ export const IntegrationsPanel: React.FC = ({ label={i18n.translate('searchApiPanels.welcomeBanner.ingestData.beatsLink', { defaultMessage: 'beats', })} - http={http} - pluginId={pluginId} + assetBasePath={assetBasePath} /> @@ -162,8 +157,7 @@ export const IntegrationsPanel: React.FC = ({ defaultMessage: 'connectors-python', } )} - http={http} - pluginId={pluginId} + assetBasePath={assetBasePath} /> diff --git a/packages/kbn-search-api-panels/components/language_client_panel.tsx b/packages/kbn-search-api-panels/components/language_client_panel.tsx index 1a2cdab27a35c..9940e7a6fed10 100644 --- a/packages/kbn-search-api-panels/components/language_client_panel.tsx +++ b/packages/kbn-search-api-panels/components/language_client_panel.tsx @@ -18,8 +18,6 @@ import { useEuiTheme, } from '@elastic/eui'; -import type { HttpStart } from '@kbn/core-http-browser'; - import { LanguageDefinition } from '../types'; import './select_client.scss'; @@ -27,8 +25,7 @@ interface SelectClientProps { language: LanguageDefinition; setSelectedLanguage: (language: LanguageDefinition) => void; isSelectedLanguage: boolean; - http: HttpStart; - pluginId?: string; + assetBasePath?: string; src?: string; } @@ -36,8 +33,7 @@ export const LanguageClientPanel: React.FC = ({ language, setSelectedLanguage, isSelectedLanguage, - http, - pluginId, + assetBasePath, src, }) => { const { euiTheme } = useEuiTheme(); @@ -60,9 +56,7 @@ export const LanguageClientPanel: React.FC = ({ diff --git a/packages/kbn-search-api-panels/index.tsx b/packages/kbn-search-api-panels/index.tsx index d3781084eacae..feb26ae501de7 100644 --- a/packages/kbn-search-api-panels/index.tsx +++ b/packages/kbn-search-api-panels/index.tsx @@ -21,6 +21,7 @@ export * from './components/try_in_console_button'; export * from './components/install_client'; export * from './types'; +export * from './utils'; export interface WelcomeBannerProps { userProfile: { diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/console.ts b/packages/kbn-search-api-panels/languages/console.ts similarity index 83% rename from x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/console.ts rename to packages/kbn-search-api-panels/languages/console.ts index afb685441e89f..be924d5fa3cbf 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/console.ts +++ b/packages/kbn-search-api-panels/languages/console.ts @@ -1,11 +1,12 @@ /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. */ -import { LanguageDefinition } from '@kbn/search-api-panels'; +import { LanguageDefinition } from '../types'; export const consoleDefinition: Partial = { buildSearchQuery: `POST /books/_search?pretty diff --git a/packages/kbn-search-api-panels/types.ts b/packages/kbn-search-api-panels/types.ts index 1d35f440673de..a02afebef5c87 100644 --- a/packages/kbn-search-api-panels/types.ts +++ b/packages/kbn-search-api-panels/types.ts @@ -32,6 +32,10 @@ export interface LanguageDefinition { basicConfig?: string; configureClient: CodeSnippet; docLink: string; + github?: { + link: string; + label: string; + }; iconType: string; id: Languages; ingestData: CodeSnippet; diff --git a/packages/kbn-search-api-panels/utils.ts b/packages/kbn-search-api-panels/utils.ts new file mode 100644 index 0000000000000..ffd81257c5a30 --- /dev/null +++ b/packages/kbn-search-api-panels/utils.ts @@ -0,0 +1,32 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { LanguageDefinition, LanguageDefinitionSnippetArguments } from './types'; +import { consoleDefinition } from './languages/console'; + +export const getLanguageDefinitionCodeSnippet = ( + language: Partial, + key: keyof LanguageDefinition, + args: LanguageDefinitionSnippetArguments +): string => { + const snippetVal = language[key]; + if (snippetVal === undefined) return ''; + switch (typeof snippetVal) { + case 'string': + return snippetVal; + case 'function': + return snippetVal(args); + default: + return ''; + } +}; + +export const getConsoleRequest = (code: keyof LanguageDefinition): string | undefined => + code in consoleDefinition && typeof consoleDefinition[code] === 'string' + ? (consoleDefinition[code] as string) + : undefined; diff --git a/packages/kbn-securitysolution-autocomplete/src/field_value_lists/index.test.tsx b/packages/kbn-securitysolution-autocomplete/src/field_value_lists/index.test.tsx index 6cd92fe1a1b35..acd1a315d2c48 100644 --- a/packages/kbn-securitysolution-autocomplete/src/field_value_lists/index.test.tsx +++ b/packages/kbn-securitysolution-autocomplete/src/field_value_lists/index.test.tsx @@ -211,6 +211,7 @@ describe('AutocompleteFieldListsComponent', () => { await waitFor(() => { expect(mockOnChange).toHaveBeenCalledWith({ + '@timestamp': DATE_NOW, _version: undefined, created_at: DATE_NOW, created_by: 'some user', diff --git a/packages/kbn-securitysolution-autocomplete/src/list_schema/index.mock.ts b/packages/kbn-securitysolution-autocomplete/src/list_schema/index.mock.ts index 9dca48e2d8b38..9875db2fab1f1 100644 --- a/packages/kbn-securitysolution-autocomplete/src/list_schema/index.mock.ts +++ b/packages/kbn-securitysolution-autocomplete/src/list_schema/index.mock.ts @@ -42,6 +42,7 @@ export const NAME = 'some name'; // TODO: Once this mock is available within packages, use it instead, https://github.com/elastic/kibana/issues/100715 // import { getListResponseMock } from '../../../../../lists/common/schemas/response/list_schema.mock'; export const getListResponseMock = (): ListSchema => ({ + '@timestamp': DATE_NOW, _version: undefined, created_at: DATE_NOW, created_by: USER, diff --git a/packages/kbn-securitysolution-es-utils/index.ts b/packages/kbn-securitysolution-es-utils/index.ts index 94aed92969627..049d5a7de492c 100644 --- a/packages/kbn-securitysolution-es-utils/index.ts +++ b/packages/kbn-securitysolution-es-utils/index.ts @@ -8,8 +8,10 @@ export * from './src/bad_request_error'; export * from './src/create_boostrap_index'; +export * from './src/create_data_stream'; export * from './src/decode_version'; export * from './src/delete_all_index'; +export * from './src/delete_data_stream'; export * from './src/delete_index_template'; export * from './src/delete_policy'; export * from './src/delete_template'; @@ -18,11 +20,15 @@ export * from './src/get_bootstrap_index_exists'; export * from './src/get_index_aliases'; export * from './src/get_index_count'; export * from './src/get_index_exists'; +export * from './src/get_data_stream_exists'; export * from './src/get_index_template_exists'; export * from './src/get_policy_exists'; export * from './src/get_template_exists'; +export * from './src/migrate_to_data_stream'; export * from './src/read_index'; export * from './src/read_privileges'; +export * from './src/put_mappings'; +export * from './src/remove_policy_from_index'; export * from './src/set_index_template'; export * from './src/set_policy'; export * from './src/set_template'; diff --git a/packages/kbn-securitysolution-es-utils/src/create_data_stream/index.ts b/packages/kbn-securitysolution-es-utils/src/create_data_stream/index.ts new file mode 100644 index 0000000000000..95427cc7aec56 --- /dev/null +++ b/packages/kbn-securitysolution-es-utils/src/create_data_stream/index.ts @@ -0,0 +1,23 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import type { ElasticsearchClient } from '../elasticsearch_client'; + +/** + * creates data stream + * @param esClient + * @param name + */ +export const createDataStream = async ( + esClient: ElasticsearchClient, + name: string +): Promise => { + return esClient.indices.createDataStream({ + name, + }); +}; diff --git a/packages/kbn-securitysolution-es-utils/src/delete_data_stream/index.ts b/packages/kbn-securitysolution-es-utils/src/delete_data_stream/index.ts new file mode 100644 index 0000000000000..23009be11165e --- /dev/null +++ b/packages/kbn-securitysolution-es-utils/src/delete_data_stream/index.ts @@ -0,0 +1,28 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import type { ElasticsearchClient } from '../elasticsearch_client'; + +/** + * deletes data stream + * @param esClient + * @param name + */ +export const deleteDataStream = async ( + esClient: ElasticsearchClient, + name: string +): Promise => { + return ( + await esClient.indices.deleteDataStream( + { + name, + }, + { meta: true } + ) + ).body.acknowledged; +}; diff --git a/packages/kbn-securitysolution-es-utils/src/get_data_stream_exists/index.ts b/packages/kbn-securitysolution-es-utils/src/get_data_stream_exists/index.ts new file mode 100644 index 0000000000000..8d5419405147a --- /dev/null +++ b/packages/kbn-securitysolution-es-utils/src/get_data_stream_exists/index.ts @@ -0,0 +1,38 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import type { ElasticsearchClient } from '../elasticsearch_client'; + +/** + * checks if data stream exists + * @param esClient + * @param name + */ +export const getDataStreamExists = async ( + esClient: ElasticsearchClient, + name: string +): Promise => { + try { + const body = await esClient.indices.getDataStream({ name, expand_wildcards: 'all' }); + return body.data_streams.length > 0; + } catch (err) { + if (err.body != null && err.body.status === 404) { + return false; + } else if ( + // if index already created, _data_stream/${name} request will produce the following error + // data stream does not exist at this point, so we can return false + err?.body?.error?.reason?.includes( + `The provided expression [${name}] matches an alias, specify the corresponding concrete indices instead.` + ) + ) { + return false; + } else { + throw err.body ? err.body : err; + } + } +}; diff --git a/packages/kbn-securitysolution-es-utils/src/migrate_to_data_stream/index.ts b/packages/kbn-securitysolution-es-utils/src/migrate_to_data_stream/index.ts new file mode 100644 index 0000000000000..1ec831846e38f --- /dev/null +++ b/packages/kbn-securitysolution-es-utils/src/migrate_to_data_stream/index.ts @@ -0,0 +1,23 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import type { ElasticsearchClient } from '../elasticsearch_client'; + +/** + * migrate to data stream + * @param esClient + * @param name + */ +export const migrateToDataStream = async ( + esClient: ElasticsearchClient, + name: string +): Promise => { + return esClient.indices.migrateToDataStream({ + name, + }); +}; diff --git a/packages/kbn-securitysolution-es-utils/src/put_mappings/index.ts b/packages/kbn-securitysolution-es-utils/src/put_mappings/index.ts new file mode 100644 index 0000000000000..8a7c6c2b51a90 --- /dev/null +++ b/packages/kbn-securitysolution-es-utils/src/put_mappings/index.ts @@ -0,0 +1,26 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ +import { MappingProperty } from '@elastic/elasticsearch/lib/api/types'; +import type { ElasticsearchClient } from '../elasticsearch_client'; + +/** + * update mappings of index + * @param esClient + * @param index + * @param mappings + */ +export const putMappings = async ( + esClient: ElasticsearchClient, + index: string, + mappings: Record +): Promise => { + return await esClient.indices.putMapping({ + index, + properties: mappings, + }); +}; diff --git a/packages/kbn-securitysolution-es-utils/src/remove_policy_from_index/index.ts b/packages/kbn-securitysolution-es-utils/src/remove_policy_from_index/index.ts new file mode 100644 index 0000000000000..0b77c112a833f --- /dev/null +++ b/packages/kbn-securitysolution-es-utils/src/remove_policy_from_index/index.ts @@ -0,0 +1,16 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import type { ElasticsearchClient } from '../elasticsearch_client'; + +export const removePolicyFromIndex = async ( + esClient: ElasticsearchClient, + index: string +): Promise => { + return (await esClient.ilm.removePolicy({ index }, { meta: true })).body; +}; diff --git a/packages/kbn-securitysolution-es-utils/src/transform_error/index.ts b/packages/kbn-securitysolution-es-utils/src/transform_error/index.ts index b532dc5d1b6d0..3a4386547e1c0 100644 --- a/packages/kbn-securitysolution-es-utils/src/transform_error/index.ts +++ b/packages/kbn-securitysolution-es-utils/src/transform_error/index.ts @@ -8,6 +8,7 @@ import Boom from '@hapi/boom'; import { errors } from '@elastic/elasticsearch'; +import { ZodError } from 'zod'; import { BadRequestError } from '../bad_request_error'; export interface OutputError { @@ -21,6 +22,15 @@ export const transformError = (err: Error & Partial): Outp message: err.output.payload.message, statusCode: err.output.statusCode, }; + } else if (err instanceof ZodError) { + const message = stringifyZodError(err); + + return { + message, + // These errors can occur when handling requests after validation and can + // indicate of issues in business logic, so they are 500s instead of 400s + statusCode: 500, + }; } else { if (err.statusCode != null) { if (err.body != null && err.body.error != null) { @@ -50,3 +60,15 @@ export const transformError = (err: Error & Partial): Outp } } }; + +export function stringifyZodError(err: ZodError) { + return err.issues + .map((issue) => { + // If the path is empty, the error is for the root object + if (issue.path.length === 0) { + return issue.message; + } + return `${issue.path.join('.')}: ${issue.message}`; + }) + .join(', '); +} diff --git a/packages/kbn-securitysolution-io-ts-list-types/src/common/index.ts b/packages/kbn-securitysolution-io-ts-list-types/src/common/index.ts index e50500f87f61a..9c7e1a4ad31b5 100644 --- a/packages/kbn-securitysolution-io-ts-list-types/src/common/index.ts +++ b/packages/kbn-securitysolution-io-ts-list-types/src/common/index.ts @@ -56,6 +56,7 @@ export * from './sort_field'; export * from './sort_order'; export * from './tags'; export * from './tie_breaker_id'; +export * from './timestamp'; export * from './total'; export * from './type'; export * from './underscore_version'; diff --git a/packages/kbn-securitysolution-io-ts-list-types/src/common/meta/index.ts b/packages/kbn-securitysolution-io-ts-list-types/src/common/meta/index.ts index 93c38facd8f4e..93376f3112530 100644 --- a/packages/kbn-securitysolution-io-ts-list-types/src/common/meta/index.ts +++ b/packages/kbn-securitysolution-io-ts-list-types/src/common/meta/index.ts @@ -12,3 +12,6 @@ export const meta = t.object; export type Meta = t.TypeOf; export const metaOrUndefined = t.union([meta, t.undefined]); export type MetaOrUndefined = t.TypeOf; + +export const nullableMetaOrUndefined = t.union([metaOrUndefined, t.null]); +export type NullableMetaOrUndefined = t.TypeOf; diff --git a/packages/kbn-securitysolution-io-ts-list-types/src/common/timestamp/index.ts b/packages/kbn-securitysolution-io-ts-list-types/src/common/timestamp/index.ts new file mode 100644 index 0000000000000..e4b89c7590530 --- /dev/null +++ b/packages/kbn-securitysolution-io-ts-list-types/src/common/timestamp/index.ts @@ -0,0 +1,13 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import * as t from 'io-ts'; +import { IsoDateString } from '@kbn/securitysolution-io-ts-types'; + +export const timestamp = IsoDateString; +export const timestampOrUndefined = t.union([IsoDateString, t.undefined]); diff --git a/packages/kbn-securitysolution-io-ts-list-types/src/response/list_item_schema/index.mock.ts b/packages/kbn-securitysolution-io-ts-list-types/src/response/list_item_schema/index.mock.ts index 33d3b49cf5492..3b85f03e2facb 100644 --- a/packages/kbn-securitysolution-io-ts-list-types/src/response/list_item_schema/index.mock.ts +++ b/packages/kbn-securitysolution-io-ts-list-types/src/response/list_item_schema/index.mock.ts @@ -21,6 +21,7 @@ import { export const getListItemResponseMock = (): ListItemSchema => ({ _version: undefined, + '@timestamp': DATE_NOW, created_at: DATE_NOW, created_by: USER, deserializer: undefined, diff --git a/packages/kbn-securitysolution-io-ts-list-types/src/response/list_item_schema/index.ts b/packages/kbn-securitysolution-io-ts-list-types/src/response/list_item_schema/index.ts index ae75f3a7741bc..4a45903c82d98 100644 --- a/packages/kbn-securitysolution-io-ts-list-types/src/response/list_item_schema/index.ts +++ b/packages/kbn-securitysolution-io-ts-list-types/src/response/list_item_schema/index.ts @@ -11,6 +11,7 @@ import * as t from 'io-ts'; import { _versionOrUndefined } from '../../common/underscore_version'; import { deserializerOrUndefined } from '../../common/deserializer'; import { metaOrUndefined } from '../../common/meta'; +import { timestampOrUndefined } from '../../common/timestamp'; import { serializerOrUndefined } from '../../common/serializer'; import { created_at } from '../../common/created_at'; import { created_by } from '../../common/created_by'; @@ -25,6 +26,7 @@ import { value } from '../../common/value'; export const listItemSchema = t.exact( t.type({ _version: _versionOrUndefined, + '@timestamp': timestampOrUndefined, created_at, created_by, deserializer: deserializerOrUndefined, diff --git a/packages/kbn-securitysolution-io-ts-list-types/src/response/list_schema/index.mock.ts b/packages/kbn-securitysolution-io-ts-list-types/src/response/list_schema/index.mock.ts index 3c78c0cdbc976..6ca277659c078 100644 --- a/packages/kbn-securitysolution-io-ts-list-types/src/response/list_schema/index.mock.ts +++ b/packages/kbn-securitysolution-io-ts-list-types/src/response/list_schema/index.mock.ts @@ -23,6 +23,7 @@ import { export const getListResponseMock = (): ListSchema => ({ _version: undefined, + '@timestamp': DATE_NOW, created_at: DATE_NOW, created_by: USER, description: DESCRIPTION, diff --git a/packages/kbn-securitysolution-io-ts-list-types/src/response/list_schema/index.ts b/packages/kbn-securitysolution-io-ts-list-types/src/response/list_schema/index.ts index 9db686e6de255..a9f076384fdf8 100644 --- a/packages/kbn-securitysolution-io-ts-list-types/src/response/list_schema/index.ts +++ b/packages/kbn-securitysolution-io-ts-list-types/src/response/list_schema/index.ts @@ -13,6 +13,7 @@ import { deserializerOrUndefined } from '../../common/deserializer'; import { metaOrUndefined } from '../../common/meta'; import { serializerOrUndefined } from '../../common/serializer'; import { created_at } from '../../common/created_at'; +import { timestampOrUndefined } from '../../common/timestamp'; import { created_by } from '../../common/created_by'; import { description } from '../../common/description'; import { id } from '../../common/id'; @@ -26,6 +27,7 @@ import { updated_by } from '../../common/updated_by'; export const listSchema = t.exact( t.type({ _version: _versionOrUndefined, + '@timestamp': timestampOrUndefined, created_at, created_by, description, diff --git a/packages/kbn-securitysolution-list-api/src/api/index.ts b/packages/kbn-securitysolution-list-api/src/api/index.ts index 07d1b677a76bf..01a74756ce9be 100644 --- a/packages/kbn-securitysolution-list-api/src/api/index.ts +++ b/packages/kbn-securitysolution-list-api/src/api/index.ts @@ -37,7 +37,7 @@ import { import { ENDPOINT_LIST_URL, - EXCEPTION_FILTER, + INTERNAL_EXCEPTION_FILTER, EXCEPTION_LIST_ITEM_URL, EXCEPTION_LIST_URL, } from '@kbn/securitysolution-list-constants'; @@ -579,7 +579,7 @@ export const getExceptionFilterFromExceptionListIds = async ({ http, signal, }: GetExceptionFilterFromExceptionListIdsProps): Promise => - http.fetch(EXCEPTION_FILTER, { + http.fetch(INTERNAL_EXCEPTION_FILTER, { method: 'POST', body: JSON.stringify({ exception_list_ids: exceptionListIds, @@ -607,7 +607,7 @@ export const getExceptionFilterFromExceptions = async ({ chunkSize, signal, }: GetExceptionFilterFromExceptionsProps): Promise => - http.fetch(EXCEPTION_FILTER, { + http.fetch(INTERNAL_EXCEPTION_FILTER, { method: 'POST', body: JSON.stringify({ exceptions, diff --git a/packages/kbn-securitysolution-list-api/src/list_api/index.ts b/packages/kbn-securitysolution-list-api/src/list_api/index.ts index a7ca546ea2eef..81f4e9c94b3f0 100644 --- a/packages/kbn-securitysolution-list-api/src/list_api/index.ts +++ b/packages/kbn-securitysolution-list-api/src/list_api/index.ts @@ -37,7 +37,7 @@ import { LIST_ITEM_URL, LIST_PRIVILEGES_URL, LIST_URL, - FIND_LISTS_BY_SIZE, + INTERNAL_FIND_LISTS_BY_SIZE, } from '@kbn/securitysolution-list-constants'; import { toError, toPromise } from '../fp_utils'; @@ -115,7 +115,7 @@ const findListsBySize = async ({ per_page, signal, }: ApiParams & FindListSchemaEncoded): Promise => { - return http.fetch(`${FIND_LISTS_BY_SIZE}`, { + return http.fetch(`${INTERNAL_FIND_LISTS_BY_SIZE}`, { method: 'GET', query: { cursor, diff --git a/packages/kbn-securitysolution-list-api/src/list_api/mocks/response/list_schema.mock.ts b/packages/kbn-securitysolution-list-api/src/list_api/mocks/response/list_schema.mock.ts index 5421b4557c617..348c0506c9b26 100644 --- a/packages/kbn-securitysolution-list-api/src/list_api/mocks/response/list_schema.mock.ts +++ b/packages/kbn-securitysolution-list-api/src/list_api/mocks/response/list_schema.mock.ts @@ -23,6 +23,7 @@ import { } from '../constants.mock'; export const getListResponseMock = (): ListSchema => ({ + '@timestamp': DATE_NOW, _version: undefined, created_at: DATE_NOW, created_by: USER, diff --git a/packages/kbn-securitysolution-list-constants/index.ts b/packages/kbn-securitysolution-list-constants/index.ts index 7bc44b534caf2..42249d5f305e9 100644 --- a/packages/kbn-securitysolution-list-constants/index.ts +++ b/packages/kbn-securitysolution-list-constants/index.ts @@ -20,8 +20,8 @@ export const LIST_PRIVILEGES_URL = `${LIST_URL}/privileges`; * Internal value list routes */ export const INTERNAL_LIST_URL = '/internal/lists'; -export const FIND_LISTS_BY_SIZE = `${INTERNAL_LIST_URL}/_find_lists_by_size` as const; -export const EXCEPTION_FILTER = `${INTERNAL_LIST_URL}/_create_filter` as const; +export const INTERNAL_FIND_LISTS_BY_SIZE = `${INTERNAL_LIST_URL}/_find_lists_by_size` as const; +export const INTERNAL_EXCEPTION_FILTER = `${INTERNAL_LIST_URL}/_create_filter` as const; /** * Exception list routes diff --git a/packages/kbn-securitysolution-list-hooks/src/mocks/response/list_schema.mock.ts b/packages/kbn-securitysolution-list-hooks/src/mocks/response/list_schema.mock.ts index 5421b4557c617..348c0506c9b26 100644 --- a/packages/kbn-securitysolution-list-hooks/src/mocks/response/list_schema.mock.ts +++ b/packages/kbn-securitysolution-list-hooks/src/mocks/response/list_schema.mock.ts @@ -23,6 +23,7 @@ import { } from '../constants.mock'; export const getListResponseMock = (): ListSchema => ({ + '@timestamp': DATE_NOW, _version: undefined, created_at: DATE_NOW, created_by: USER, diff --git a/packages/kbn-telemetry-tools/src/tools/ts_program/ts_program.test.ts b/packages/kbn-telemetry-tools/src/tools/ts_program/ts_program.test.ts index 8ae36ea7330cc..7e15de907e31a 100644 --- a/packages/kbn-telemetry-tools/src/tools/ts_program/ts_program.test.ts +++ b/packages/kbn-telemetry-tools/src/tools/ts_program/ts_program.test.ts @@ -21,7 +21,7 @@ describe('createKibanaProgram', () => { "fetch": Object { "typeDescriptor": Object { "locale": Object { - "kind": 149, + "kind": 150, "type": "StringKeyword", }, }, diff --git a/renovate.json b/renovate.json index a7a16d4fe0307..cab03197e4c42 100644 --- a/renovate.json +++ b/renovate.json @@ -139,6 +139,24 @@ "enabled": true, "prCreation": "immediate" }, + { + "groupName": "ansi-regex", + "matchPackageNames": [ + "ansi-regex" + ], + "reviewers": [ + "team:kibana-core" + ], + "matchBaseBranches": [ + "main" + ], + "labels": [ + "release_note:skip", + "Team:Core", + "backport:skip" + ], + "enabled": true + }, { "groupName": "babel", "matchPackageNames": [ @@ -592,4 +610,4 @@ "enabled": true } ] -} \ No newline at end of file +} diff --git a/src/core/server/integration_tests/saved_objects/migrations/group2/check_registered_types.test.ts b/src/core/server/integration_tests/saved_objects/migrations/group2/check_registered_types.test.ts index 221002a3c33bc..f55c023f6eb74 100644 --- a/src/core/server/integration_tests/saved_objects/migrations/group2/check_registered_types.test.ts +++ b/src/core/server/integration_tests/saved_objects/migrations/group2/check_registered_types.test.ts @@ -125,8 +125,8 @@ describe('checking migration metadata changes on all registered SO types', () => "osquery-pack": "6ab4358ca4304a12dcfc1777c8135b75cffb4397", "osquery-pack-asset": "b14101d3172c4b60eb5404696881ce5275c84152", "osquery-saved-query": "44f1161e165defe3f9b6ad643c68c542a765fcdb", - "query": "8db5d48c62d75681d80d82a42b5642f60d068202", - "risk-engine-configuration": "1b8b175e29ea5311408125c92c6247f502b2d79d", + "query": "21cbbaa09abb679078145ce90087b1e88b7eae95", + "risk-engine-configuration": "b105d4a3c6adce40708d729d12e5ef3c8fbd9508", "rules-settings": "892a2918ebaeba809a612b8d97cec0b07c800b5f", "sample-data-telemetry": "37441b12f5b0159c2d6d5138a494c9f440e950b5", "search": "8d5184dd5b986d57250b6ffd9ae48a1925e4c7a3", diff --git a/src/core/server/integration_tests/saved_objects/migrations/zdt_2/sor_higher_version_docs.test.ts b/src/core/server/integration_tests/saved_objects/migrations/zdt_2/sor_higher_version_docs.test.ts index e431c3607d983..960752c63d369 100644 --- a/src/core/server/integration_tests/saved_objects/migrations/zdt_2/sor_higher_version_docs.test.ts +++ b/src/core/server/integration_tests/saved_objects/migrations/zdt_2/sor_higher_version_docs.test.ts @@ -138,6 +138,26 @@ describe('Higher version doc conversion', () => { newField: 'someValue', }); }); + it('throws error for documents using higher version model than current', async () => { + try { + await repositoryV1.get('test-type', 'doc-1', { + downwardConversion: 'forbid', + }); + } catch (err) { + expect(err.message).toBe( + '[NewerModelVersionError]: Document "doc-1" belongs to a more recent version of Kibana [10.2.0] when the last known version is [10.1.0].' + ); + } + }); + it("doesn't throw error for documents using current version model when 'downwardConversion' is 'forbid'", async () => { + try { + await repositoryV2.get('test-type', 'doc-1', { + downwardConversion: 'forbid', + }); + } catch (err) { + expect(err).toBeUndefined(); + } + }); }); describe('#bulkGet', () => { @@ -155,6 +175,26 @@ describe('Higher version doc conversion', () => { newField: 'someValue', }); }); + it('throws error for documents using higher version model than current', async () => { + try { + await repositoryV2.bulkGet([{ type: 'test-type', id: 'doc-1' }], { + downwardConversion: 'forbid', + }); + } catch (err) { + expect(err.message).toBe( + '[NewerModelVersionError]: Document "doc-1" belongs to a more recent version of Kibana [10.2.0] when the last known version is [10.1.0].' + ); + } + }); + it("doesn't throw error for documents using current version model when 'downwardConversion' is 'forbid'", async () => { + try { + await repositoryV2.get('test-type', 'doc-1', { + downwardConversion: 'forbid', + }); + } catch (err) { + expect(err).toBeUndefined(); + } + }); }); describe('#resolve', () => { @@ -172,6 +212,26 @@ describe('Higher version doc conversion', () => { newField: 'someValue', }); }); + it('throws error for documents using higher version model than current', async () => { + try { + await repositoryV2.resolve('test-type', 'doc-1', { + downwardConversion: 'forbid', + }); + } catch (err) { + expect(err.message).toBe( + '[NewerModelVersionError]: Document "doc-1" belongs to a more recent version of Kibana [10.2.0] when the last known version is [10.1.0].' + ); + } + }); + it("doesn't throw error for documents using current version model when 'downwardConversion' is 'forbid'", async () => { + try { + await repositoryV2.get('test-type', 'doc-1', { + downwardConversion: 'forbid', + }); + } catch (err) { + expect(err).toBeUndefined(); + } + }); }); describe('#bulkResolve', () => { @@ -189,5 +249,25 @@ describe('Higher version doc conversion', () => { newField: 'someValue', }); }); + it('throws error for documents using higher version model than current', async () => { + try { + await repositoryV2.bulkResolve([{ type: 'test-type', id: 'doc-1' }], { + downwardConversion: 'forbid', + }); + } catch (err) { + expect(err.message).toBe( + '[NewerModelVersionError]: Document "doc-1" belongs to a more recent version of Kibana [10.2.0] when the last known version is [10.1.0].' + ); + } + }); + it("doesn't throw error for documents using current version model when 'downwardConversion' is 'forbid'", async () => { + try { + await repositoryV2.get('test-type', 'doc-1', { + downwardConversion: 'forbid', + }); + } catch (err) { + expect(err).toBeUndefined(); + } + }); }); }); diff --git a/src/core/server/integration_tests/saved_objects/serverless/migrations/jest.integration.config.js b/src/core/server/integration_tests/saved_objects/serverless/migrations/jest.integration.config.js new file mode 100644 index 0000000000000..7341478b60a69 --- /dev/null +++ b/src/core/server/integration_tests/saved_objects/serverless/migrations/jest.integration.config.js @@ -0,0 +1,19 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +module.exports = { + // TODO replace the line below with + // preset: '@kbn/test/jest_integration_node + // to do so, we must fix all integration tests first + // see https://github.com/elastic/kibana/pull/130255/ + preset: '@kbn/test/jest_integration', + rootDir: '../../../../../../..', + roots: ['/src/core/server/integration_tests/saved_objects/serverless/migrations'], + // must override to match all test given there is no `integration_tests` subfolder + testMatch: ['**/*.test.{js,mjs,ts,tsx}'], +}; diff --git a/src/core/server/integration_tests/saved_objects/serverless/migrations/smoke.test.ts b/src/core/server/integration_tests/saved_objects/serverless/migrations/smoke.test.ts new file mode 100644 index 0000000000000..940ea4a160cb6 --- /dev/null +++ b/src/core/server/integration_tests/saved_objects/serverless/migrations/smoke.test.ts @@ -0,0 +1,39 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { + request, + TestServerlessESUtils, + TestServerlessKibanaUtils, + createTestServerlessInstances, +} from '@kbn/core-test-helpers-kbn-server'; + +/** + * Until we merge https://github.com/elastic/kibana/pull/162673 this test should remain skipped. + */ +describe.skip('smoke', () => { + let serverlessES: TestServerlessESUtils; + let serverlessKibana: TestServerlessKibanaUtils; + let root: TestServerlessKibanaUtils['root']; + beforeEach(async () => { + const { startES, startKibana } = createTestServerlessInstances({ + adjustTimeout: jest.setTimeout, + }); + serverlessES = await startES(); + serverlessKibana = await startKibana(); + root = serverlessKibana.root; + }); + afterEach(async () => { + await serverlessES?.stop(); + await serverlessKibana?.stop(); + }); + test('it can start Kibana and ES serverless', async () => { + const { body } = await request.get(root, '/api/status').expect(200); + expect(body).toMatchObject({ status: { overall: { level: 'available' } } }); + }); +}); diff --git a/src/dev/license_checker/config.ts b/src/dev/license_checker/config.ts index f9b3a6d02e9eb..c239333d00590 100644 --- a/src/dev/license_checker/config.ts +++ b/src/dev/license_checker/config.ts @@ -85,7 +85,7 @@ export const LICENSE_OVERRIDES = { 'jsts@1.6.2': ['Eclipse Distribution License - v 1.0'], // cf. https://github.com/bjornharrtell/jsts '@mapbox/jsonlint-lines-primitives@2.0.2': ['MIT'], // license in readme https://github.com/tmcw/jsonlint '@elastic/ems-client@8.4.0': ['Elastic License 2.0'], - '@elastic/eui@87.1.0': ['SSPL-1.0 OR Elastic License 2.0'], + '@elastic/eui@87.2.0': ['SSPL-1.0 OR Elastic License 2.0'], 'language-subtag-registry@0.3.21': ['CC-BY-4.0'], // retired ODC‑By license https://github.com/mattcg/language-subtag-registry 'buffers@0.1.1': ['MIT'], // license in importing module https://www.npmjs.com/package/binary }; diff --git a/src/plugins/charts/common/static/components/collections.ts b/src/plugins/charts/common/static/components/collections.ts index 1f138ab9f7b0e..acb11c647fead 100644 --- a/src/plugins/charts/common/static/components/collections.ts +++ b/src/plugins/charts/common/static/components/collections.ts @@ -20,6 +20,7 @@ export const LabelRotation = Object.freeze({ Horizontal: 0, Vertical: 90, Angled: 75, + VerticalRotation: 270, }); export type LabelRotation = $Values; diff --git a/src/plugins/console/public/lib/autocomplete/autocomplete.ts b/src/plugins/console/public/lib/autocomplete/autocomplete.ts index 71cca78926459..970847ac6bedc 100644 --- a/src/plugins/console/public/lib/autocomplete/autocomplete.ts +++ b/src/plugins/console/public/lib/autocomplete/autocomplete.ts @@ -42,6 +42,19 @@ function isUrlParamsToken(token: { type: string } | null) { } } +const tracer = (...args: any[]) => { + // @ts-expect-error ts upgrade v4.7.4 + if (window.autocomplete_trace) { + // eslint-disable-next-line no-console + console.log.call( + console, + ..._.map(args, (arg) => { + return typeof arg === 'object' ? JSON.stringify(arg) : arg; + }) + ); + } +}; + /** * Get the method and token paths for a specific position in the current editor buffer. * @@ -131,7 +144,7 @@ export function getCurrentMethodAndTokenPaths( } } if (!t) { - // oops we run out.. we don't know what's up return null; + tracer(`paren.rparen: oops we run out.. we don't know what's up return null`); return {}; } continue; @@ -145,7 +158,7 @@ export function getCurrentMethodAndTokenPaths( } } if (!t) { - // oops we run out.. we don't know what's up return null; + tracer(`paren.rparen: oops we run out.. we don't know what's up return null`); return {}; } continue; @@ -183,7 +196,11 @@ export function getCurrentMethodAndTokenPaths( } if (walkedSomeBody && (!bodyTokenPath || bodyTokenPath.length === 0) && !forceEndOfUrl) { - // we had some content and still no path -> the cursor is position after a closed body -> no auto complete + tracer( + 'we had some content and still no path', + '-> the cursor is position after a closed body', + '-> no auto complete' + ); return {}; } @@ -594,7 +611,8 @@ export default function ({ context.autoCompleteType === 'body' && !!context.asyncResultsState?.isLoading; if (!context.autoCompleteSet && !isMappingsFetchingInProgress) { - return null; // nothing to do.. + tracer('nothing to do..', context); + return null; } addReplacementInfoToContext(context, pos); @@ -1056,10 +1074,12 @@ export default function ({ pos: Position ) { let currentToken = editor.getTokenAt(pos)!; + tracer('has started evaluating current token', currentToken); if (!currentToken) { if (pos.lineNumber === 1) { lastEvaluatedToken = null; + tracer('not starting autocomplete due to invalid current token at line 1'); return; } currentToken = { position: { column: 0, lineNumber: 0 }, value: '', type: '' }; // empty row @@ -1077,22 +1097,54 @@ export default function ({ nextToken.position.lineNumber = pos.lineNumber; lastEvaluatedToken = nextToken; } + tracer('not starting autocomplete due to empty current token'); return; } if (!lastEvaluatedToken) { lastEvaluatedToken = currentToken; + tracer('not starting autocomplete due to invalid last evaluated token'); return; // wait for the next typing. } - // if the column or the line number have not changed for the last token and - // user did not provided a new value, then we should not show autocomplete - // this guards against triggering autocomplete when clicking around the editor if ( - (lastEvaluatedToken.position.column !== currentToken.position.column || - lastEvaluatedToken.position.lineNumber !== currentToken.position.lineNumber) && + lastEvaluatedToken.position.column + 1 === currentToken.position.column && + lastEvaluatedToken.position.lineNumber === currentToken.position.lineNumber && + lastEvaluatedToken.type === 'url.slash' && + currentToken.type === 'url.part' && + currentToken.value.length === 1 + ) { + // do not suppress autocomplete for a single character immediately following a slash in URL + } else if ( + lastEvaluatedToken.position.column < currentToken.position.column && + lastEvaluatedToken.position.lineNumber === currentToken.position.lineNumber && + lastEvaluatedToken.type === 'method' && + currentToken.type === 'url.part' && + currentToken.value.length === 1 + ) { + // do not suppress autocomplete for a single character following method in URL + } else if ( + lastEvaluatedToken.position.column < currentToken.position.column && + lastEvaluatedToken.position.lineNumber === currentToken.position.lineNumber && + !lastEvaluatedToken.type && + currentToken.type === 'method' && + currentToken.value.length === 1 + ) { + // do not suppress autocompletion for the first character of method + } else if ( + // if the column or the line number have changed for the last token or + // user did not provided a new value, then we should not show autocomplete + // this guards against triggering autocomplete when clicking around the editor + lastEvaluatedToken.position.column !== currentToken.position.column || + lastEvaluatedToken.position.lineNumber !== currentToken.position.lineNumber || lastEvaluatedToken.value === currentToken.value ) { + tracer( + 'not starting autocomplete since the change looks like a click', + lastEvaluatedToken, + '->', + currentToken + ); // not on the same place or nothing changed, cache and wait for the next time lastEvaluatedToken = currentToken; return; @@ -1108,9 +1160,11 @@ export default function ({ case 'comment.punctuation': case 'comment.block': case 'UNKNOWN': + tracer('not starting autocomplete for current token type', currentToken.type); return; } + tracer('starting autocomplete', lastEvaluatedToken, '->', currentToken); lastEvaluatedToken = currentToken; editor.execCommand('startAutocomplete'); }, @@ -1118,7 +1172,9 @@ export default function ({ function editorChangeListener() { const position = editor.getCurrentPosition(); + tracer('editor changed', position); if (position && !editor.isCompleterActive()) { + tracer('will start evaluating current token'); evaluateCurrentTokenAfterAChange(position); } } @@ -1208,11 +1264,13 @@ export default function ({ const context = getAutoCompleteContext(editor, position); if (!context) { + tracer('zero suggestions due to invalid autocomplete context'); callback(null, []); } else { if (!context.asyncResultsState?.isLoading) { const terms = getTerms(context, context.autoCompleteSet!); const suggestions = getSuggestions(terms); + tracer(suggestions?.length ?? 0, 'suggestions'); callback(null, suggestions); } @@ -1225,6 +1283,7 @@ export default function ({ context.asyncResultsState.results.then((r) => { const asyncSuggestions = getSuggestions(getTerms(context, r)); + tracer(asyncSuggestions?.length ?? 0, 'async suggestions'); callback(null, asyncSuggestions); annotationControls.removeAnnotation(); }); diff --git a/src/plugins/dashboard/common/content_management/v1/types.ts b/src/plugins/dashboard/common/content_management/v1/types.ts index 9d89d724ed00f..05d216e8a785e 100644 --- a/src/plugins/dashboard/common/content_management/v1/types.ts +++ b/src/plugins/dashboard/common/content_management/v1/types.ts @@ -49,8 +49,14 @@ export interface SavedDashboardPanel { panelRefName?: string; gridData: GridData; panelIndex: string; - version: string; title?: string; + + /** + * This version key was used to store Kibana version information from versions 7.3.0 -> 8.11.0. + * As of version 8.11.0, the versioning information is now per-embeddable-type and is stored on the + * embeddable's input. (embeddableConfig in this type). + */ + version?: string; } /* eslint-disable-next-line @typescript-eslint/consistent-type-definitions */ diff --git a/src/plugins/dashboard/common/dashboard_container/types.ts b/src/plugins/dashboard/common/dashboard_container/types.ts index 139277be9315f..b4c6a874f0651 100644 --- a/src/plugins/dashboard/common/dashboard_container/types.ts +++ b/src/plugins/dashboard/common/dashboard_container/types.ts @@ -29,6 +29,13 @@ export interface DashboardPanelState< > extends PanelState { readonly gridData: GridData; panelRefName?: string; + + /** + * This version key was used to store Kibana version information from versions 7.3.0 -> 8.11.0. + * As of version 8.11.0, the versioning information is now per-embeddable-type and is stored on the + * embeddable's input. This key is needed for BWC, but its value will be removed on Dashboard save. + */ + version?: string; } export type DashboardContainerByReferenceInput = SavedObjectEmbeddableInput; diff --git a/src/plugins/dashboard/common/dashboard_saved_object/persistable_state/dashboard_saved_object_references.test.ts b/src/plugins/dashboard/common/dashboard_saved_object/persistable_state/dashboard_saved_object_references.test.ts index c43654187634d..e93def3fa47a7 100644 --- a/src/plugins/dashboard/common/dashboard_saved_object/persistable_state/dashboard_saved_object_references.test.ts +++ b/src/plugins/dashboard/common/dashboard_saved_object/persistable_state/dashboard_saved_object_references.test.ts @@ -51,190 +51,6 @@ const commonAttributes: DashboardAttributes = { title: '', }; -describe('legacy extract references', () => { - test('extracts references from panelsJSON', () => { - const doc = { - id: '1', - attributes: { - ...commonAttributes, - foo: true, - panelsJSON: JSON.stringify([ - { - type: 'visualization', - id: '1', - title: 'Title 1', - version: '7.0.0', - }, - { - type: 'visualization', - id: '2', - title: 'Title 2', - version: '7.0.0', - }, - ]), - }, - references: [], - }; - const updatedDoc = extractReferences(doc, deps); - - expect(updatedDoc).toMatchInlineSnapshot(` - Object { - "attributes": Object { - "description": "", - "foo": true, - "kibanaSavedObjectMeta": Object { - "searchSourceJSON": "", - }, - "panelsJSON": "[{\\"title\\":\\"Title 1\\",\\"version\\":\\"7.0.0\\",\\"panelRefName\\":\\"panel_0\\"},{\\"title\\":\\"Title 2\\",\\"version\\":\\"7.0.0\\",\\"panelRefName\\":\\"panel_1\\"}]", - "timeRestore": false, - "title": "", - "version": 1, - }, - "references": Array [ - Object { - "id": "1", - "name": "panel_0", - "type": "visualization", - }, - Object { - "id": "2", - "name": "panel_1", - "type": "visualization", - }, - ], - } - `); - }); - - test('fails when "type" attribute is missing from a panel', () => { - const doc = { - id: '1', - attributes: { - ...commonAttributes, - foo: true, - panelsJSON: JSON.stringify([ - { - id: '1', - title: 'Title 1', - version: '7.0.0', - }, - ]), - }, - references: [], - }; - expect(() => extractReferences(doc, deps)).toThrowErrorMatchingInlineSnapshot( - `"\\"type\\" attribute is missing from panel \\"0\\""` - ); - }); - - test('passes when "id" attribute is missing from a panel', () => { - const doc = { - id: '1', - attributes: { - ...commonAttributes, - foo: true, - panelsJSON: JSON.stringify([ - { - type: 'visualization', - title: 'Title 1', - version: '7.9.1', - }, - ]), - }, - references: [], - }; - expect(extractReferences(doc, deps)).toMatchInlineSnapshot(` - Object { - "attributes": Object { - "description": "", - "foo": true, - "kibanaSavedObjectMeta": Object { - "searchSourceJSON": "", - }, - "panelsJSON": "[{\\"version\\":\\"7.9.1\\",\\"type\\":\\"visualization\\",\\"embeddableConfig\\":{},\\"title\\":\\"Title 1\\"}]", - "timeRestore": false, - "title": "", - "version": 1, - }, - "references": Array [], - } - `); - }); - - // https://github.com/elastic/kibana/issues/93772 - test('passes when received older RAW SO with older panels', () => { - const doc = { - id: '1', - attributes: { - hits: 0, - timeFrom: 'now-16h/h', - timeTo: 'now', - refreshInterval: { - display: '1 minute', - section: 2, - value: 60000, - pause: false, - }, - description: '', - uiStateJSON: '{"P-1":{"vis":{"legendOpen":false}}}', - title: 'Errors/Fatals/Warnings dashboard', - timeRestore: true, - version: 1, - panelsJSON: - '[{"col":1,"id":"544891f0-2cf2-11e8-9735-93e95b055f48","panelIndex":1,"row":1,"size_x":12,"size_y":8,"type":"visualization"}]', - optionsJSON: '{"darkTheme":true}', - kibanaSavedObjectMeta: { - searchSourceJSON: - '{"highlightAll":true,"filter":[{"query":{"query_string":{"analyze_wildcard":true,"query":"*"}}}]}', - }, - }, - references: [], - }; - const updatedDoc = extractReferences(doc, deps); - - expect(updatedDoc).toMatchInlineSnapshot(` - Object { - "attributes": Object { - "description": "", - "hits": 0, - "kibanaSavedObjectMeta": Object { - "searchSourceJSON": "{\\"highlightAll\\":true,\\"filter\\":[{\\"query\\":{\\"query_string\\":{\\"analyze_wildcard\\":true,\\"query\\":\\"*\\"}}}]}", - }, - "optionsJSON": "{\\"darkTheme\\":true}", - "panelsJSON": "[{\\"col\\":1,\\"panelIndex\\":1,\\"row\\":1,\\"size_x\\":12,\\"size_y\\":8,\\"panelRefName\\":\\"panel_0\\"}]", - "refreshInterval": Object { - "display": "1 minute", - "pause": false, - "section": 2, - "value": 60000, - }, - "timeFrom": "now-16h/h", - "timeRestore": true, - "timeTo": "now", - "title": "Errors/Fatals/Warnings dashboard", - "uiStateJSON": "{\\"P-1\\":{\\"vis\\":{\\"legendOpen\\":false}}}", - "version": 1, - }, - "references": Array [ - Object { - "id": "544891f0-2cf2-11e8-9735-93e95b055f48", - "name": "panel_0", - "type": "visualization", - }, - ], - } - `); - - const panel = JSON.parse(updatedDoc.attributes.panelsJSON as string)[0]; - - // unknown older panel keys are left untouched - expect(panel).toHaveProperty('col'); - expect(panel).toHaveProperty('row'); - expect(panel).toHaveProperty('size_x'); - expect(panel).toHaveProperty('size_y'); - }); -}); - describe('extractReferences', () => { test('extracts references from panelsJSON', () => { const doc = { diff --git a/src/plugins/dashboard/common/dashboard_saved_object/persistable_state/dashboard_saved_object_references.ts b/src/plugins/dashboard/common/dashboard_saved_object/persistable_state/dashboard_saved_object_references.ts index f8a1c089d2fc3..b25c07a4342c9 100644 --- a/src/plugins/dashboard/common/dashboard_saved_object/persistable_state/dashboard_saved_object_references.ts +++ b/src/plugins/dashboard/common/dashboard_saved_object/persistable_state/dashboard_saved_object_references.ts @@ -5,7 +5,6 @@ * in compliance with, at your election, the Elastic License 2.0 or the Server * Side Public License, v 1. */ -import semverGt from 'semver/functions/gt'; import { Reference } from '@kbn/content-management-utils'; import { EmbeddablePersistableStateService } from '@kbn/embeddable-plugin/common/types'; @@ -22,10 +21,6 @@ export interface InjectExtractDeps { embeddablePersistableStateService: EmbeddablePersistableStateService; } -const isPre730Panel = (panel: Record): boolean => { - return 'version' in panel && panel.version ? semverGt('7.3.0', panel.version) : true; -}; - function parseDashboardAttributesWithType( attributes: DashboardAttributes ): ParsedDashboardAttributesWithType { @@ -82,10 +77,6 @@ export function extractReferences( const panels = parsedAttributes.panels; - if ((Object.values(panels) as unknown as Array>).some(isPre730Panel)) { - return pre730ExtractReferences({ attributes, references }); - } - const panelMissingType = Object.values(panels).find((panel) => panel.type === undefined); if (panelMissingType) { throw new Error( @@ -117,41 +108,3 @@ export function extractReferences( attributes: newAttributes, }; } - -function pre730ExtractReferences({ - attributes, - references = [], -}: DashboardAttributesAndReferences): DashboardAttributesAndReferences { - if (typeof attributes.panelsJSON !== 'string') { - return { attributes, references }; - } - const panelReferences: Reference[] = []; - const panels: Array> = JSON.parse(String(attributes.panelsJSON)); - - panels.forEach((panel, i) => { - if (!panel.type) { - throw new Error(`"type" attribute is missing from panel "${i}"`); - } - if (!panel.id) { - // Embeddables are not required to be backed off a saved object. - return; - } - - panel.panelRefName = `panel_${i}`; - panelReferences.push({ - name: `panel_${i}`, - type: panel.type, - id: panel.id, - }); - delete panel.type; - delete panel.id; - }); - - return { - references: [...references, ...panelReferences], - attributes: { - ...attributes, - panelsJSON: JSON.stringify(panels), - }, - }; -} diff --git a/src/plugins/dashboard/common/lib/dashboard_panel_converters.test.ts b/src/plugins/dashboard/common/lib/dashboard_panel_converters.test.ts index f9da81d5d998b..b1865571e42b9 100644 --- a/src/plugins/dashboard/common/lib/dashboard_panel_converters.test.ts +++ b/src/plugins/dashboard/common/lib/dashboard_panel_converters.test.ts @@ -89,7 +89,7 @@ test('convertPanelStateToSavedDashboardPanel', () => { type: 'search', }; - expect(convertPanelStateToSavedDashboardPanel(dashboardPanel, '6.3.0')).toEqual({ + expect(convertPanelStateToSavedDashboardPanel(dashboardPanel)).toEqual({ type: 'search', embeddableConfig: { something: 'hi!', @@ -103,7 +103,6 @@ test('convertPanelStateToSavedDashboardPanel', () => { w: 15, i: '123', }, - version: '6.3.0', }); }); @@ -123,7 +122,7 @@ test('convertPanelStateToSavedDashboardPanel will not add an undefined id when n type: 'search', }; - const converted = convertPanelStateToSavedDashboardPanel(dashboardPanel, '8.0.0'); + const converted = convertPanelStateToSavedDashboardPanel(dashboardPanel); expect(converted.hasOwnProperty('id')).toBe(false); }); @@ -143,7 +142,49 @@ test('convertPanelStateToSavedDashboardPanel will not leave title as part of emb type: 'search', }; - const converted = convertPanelStateToSavedDashboardPanel(dashboardPanel, '8.0.0'); + const converted = convertPanelStateToSavedDashboardPanel(dashboardPanel); expect(converted.embeddableConfig.hasOwnProperty('title')).toBe(false); expect(converted.title).toBe('title'); }); + +test('convertPanelStateToSavedDashboardPanel retains legacy version info when not passed removeLegacyVersion', () => { + const dashboardPanel: DashboardPanelState = { + gridData: { + x: 0, + y: 0, + h: 15, + w: 15, + i: '123', + }, + explicitInput: { + id: '123', + title: 'title', + } as EmbeddableInput, + type: 'search', + version: '8.10.0', + }; + + const converted = convertPanelStateToSavedDashboardPanel(dashboardPanel); + expect(converted.version).toBe('8.10.0'); +}); + +test('convertPanelStateToSavedDashboardPanel removes legacy version info when passed removeLegacyVersion', () => { + const dashboardPanel: DashboardPanelState = { + gridData: { + x: 0, + y: 0, + h: 15, + w: 15, + i: '123', + }, + explicitInput: { + id: '123', + title: 'title', + } as EmbeddableInput, + type: 'search', + version: '8.10.0', + }; + + const converted = convertPanelStateToSavedDashboardPanel(dashboardPanel, true); + expect(converted.version).not.toBeDefined(); +}); diff --git a/src/plugins/dashboard/common/lib/dashboard_panel_converters.ts b/src/plugins/dashboard/common/lib/dashboard_panel_converters.ts index 117d949c6c097..052dd6532fc44 100644 --- a/src/plugins/dashboard/common/lib/dashboard_panel_converters.ts +++ b/src/plugins/dashboard/common/lib/dashboard_panel_converters.ts @@ -17,7 +17,6 @@ export function convertSavedDashboardPanelToPanelState< >(savedDashboardPanel: SavedDashboardPanel): DashboardPanelState { return { type: savedDashboardPanel.type, - version: savedDashboardPanel.version, gridData: savedDashboardPanel.gridData, panelRefName: savedDashboardPanel.panelRefName, explicitInput: { @@ -26,16 +25,29 @@ export function convertSavedDashboardPanelToPanelState< ...(savedDashboardPanel.title !== undefined && { title: savedDashboardPanel.title }), ...savedDashboardPanel.embeddableConfig, } as TEmbeddableInput, + + /** + * Version information used to be stored in the panel until 8.11 when it was moved + * to live inside the explicit Embeddable Input. If version information is given here, we'd like to keep it. + * It will be removed on Dashboard save + */ + version: savedDashboardPanel.version, }; } export function convertPanelStateToSavedDashboardPanel( panelState: DashboardPanelState, - version?: string + removeLegacyVersion?: boolean ): SavedDashboardPanel { const savedObjectId = (panelState.explicitInput as SavedObjectEmbeddableInput).savedObjectId; return { - version: version ?? (panelState.version as string), // temporary cast. Version will be mandatory at a later date. + /** + * Version information used to be stored in the panel until 8.11 when it was moved to live inside the + * explicit Embeddable Input. If removeLegacyVersion is not passed, we'd like to keep this information for + * the time being. + */ + ...(!removeLegacyVersion ? { version: panelState.version } : {}), + type: panelState.type, gridData: panelState.gridData, panelIndex: panelState.explicitInput.id, @@ -56,9 +68,9 @@ export const convertSavedPanelsToPanelMap = (panels?: SavedDashboardPanel[]): Da export const convertPanelMapToSavedPanels = ( panels: DashboardPanelMap, - versionOverride?: string + removeLegacyVersion?: boolean ) => { return Object.values(panels).map((panel) => - convertPanelStateToSavedDashboardPanel(panel, versionOverride) + convertPanelStateToSavedDashboardPanel(panel, removeLegacyVersion) ); }; diff --git a/src/plugins/dashboard/public/dashboard_app/_dashboard_app_strings.ts b/src/plugins/dashboard/public/dashboard_app/_dashboard_app_strings.ts index ec2bb389755a7..aa25647610e2b 100644 --- a/src/plugins/dashboard/public/dashboard_app/_dashboard_app_strings.ts +++ b/src/plugins/dashboard/public/dashboard_app/_dashboard_app_strings.ts @@ -51,6 +51,15 @@ export const unsavedChangesBadgeStrings = { defaultMessage: ' You have unsaved changes in this dashboard. To remove this label, save the dashboard.', }), + getHasRunMigrationsText: () => + i18n.translate('dashboard.hasRunMigrationsBadge', { + defaultMessage: 'Save recommended', + }), + getHasRunMigrationsToolTipContent: () => + i18n.translate('dashboard.hasRunMigrationsBadgeToolTipContent', { + defaultMessage: + 'One or more panels on this dashboard have been updated to a new version. Save the dashboard so it loads faster next time.', + }), }; export const leaveConfirmStrings = { diff --git a/src/plugins/dashboard/public/dashboard_app/top_nav/dashboard_top_nav.tsx b/src/plugins/dashboard/public/dashboard_app/top_nav/dashboard_top_nav.tsx index d6e61f9e1c88b..8fbd259be6eec 100644 --- a/src/plugins/dashboard/public/dashboard_app/top_nav/dashboard_top_nav.tsx +++ b/src/plugins/dashboard/public/dashboard_app/top_nav/dashboard_top_nav.tsx @@ -16,8 +16,9 @@ import { } from '@kbn/presentation-util-plugin/public'; import { ViewMode } from '@kbn/embeddable-plugin/public'; import type { DataView } from '@kbn/data-views-plugin/public'; - +import { TopNavMenuProps } from '@kbn/navigation-plugin/public'; import { EuiHorizontalRule, EuiIcon, EuiToolTipProps } from '@elastic/eui'; + import { getDashboardTitle, leaveConfirmStrings, @@ -74,6 +75,9 @@ export function DashboardTopNav({ embedSettings, redirectTo }: DashboardTopNavPr const dashboard = useDashboardAPI(); const PresentationUtilContextProvider = getPresentationUtilContextProvider(); + const hasRunMigrations = dashboard.select( + (state) => state.componentState.hasRunClientsideMigrations + ); const hasUnsavedChanges = dashboard.select((state) => state.componentState.hasUnsavedChanges); const fullScreenMode = dashboard.select((state) => state.componentState.fullScreenMode); const savedQueryId = dashboard.select((state) => state.componentState.savedQueryId); @@ -232,6 +236,37 @@ export function DashboardTopNav({ embedSettings, redirectTo }: DashboardTopNavPr dashboard.clearOverlays(); }); + const badges = useMemo(() => { + if (viewMode !== ViewMode.EDIT) return; + const allBadges: TopNavMenuProps['badges'] = []; + if (hasUnsavedChanges) { + allBadges.push({ + 'data-test-subj': 'dashboardUnsavedChangesBadge', + badgeText: unsavedChangesBadgeStrings.getUnsavedChangedBadgeText(), + title: '', + color: 'warning', + toolTipProps: { + content: unsavedChangesBadgeStrings.getUnsavedChangedBadgeToolTipContent(), + position: 'bottom', + } as EuiToolTipProps, + }); + } + if (hasRunMigrations) { + allBadges.push({ + 'data-test-subj': 'dashboardSaveRecommendedBadge', + badgeText: unsavedChangesBadgeStrings.getHasRunMigrationsText(), + title: '', + color: 'success', + iconType: 'save', + toolTipProps: { + content: unsavedChangesBadgeStrings.getHasRunMigrationsToolTipContent(), + position: 'bottom', + } as EuiToolTipProps, + }); + } + return allBadges; + }, [hasRunMigrations, hasUnsavedChanges, viewMode]); + return (

    { if (isUpdate === false) { dashboard.forceRefresh(); diff --git a/src/plugins/dashboard/public/dashboard_app/top_nav/share/show_share_modal.test.tsx b/src/plugins/dashboard/public/dashboard_app/top_nav/share/show_share_modal.test.tsx index 8beba68e51da2..17ea8618ef57c 100644 --- a/src/plugins/dashboard/public/dashboard_app/top_nav/share/show_share_modal.test.tsx +++ b/src/plugins/dashboard/public/dashboard_app/top_nav/share/show_share_modal.test.tsx @@ -130,12 +130,9 @@ describe('ShowShareModal', () => { locatorParams: { params: DashboardAppLocatorParams }; } ).locatorParams.params; - const { - initializerContext: { kibanaVersion }, - } = pluginServices.getServices(); const rawDashboardState = { ...unsavedDashboardState, - panels: convertPanelMapToSavedPanels(unsavedDashboardState.panels, kibanaVersion), + panels: convertPanelMapToSavedPanels(unsavedDashboardState.panels), }; unsavedStateKeys.forEach((key) => { expect(shareLocatorParams[key]).toStrictEqual( diff --git a/src/plugins/dashboard/public/dashboard_app/top_nav/share/show_share_modal.tsx b/src/plugins/dashboard/public/dashboard_app/top_nav/share/show_share_modal.tsx index eee127d51fdd7..98a899d6cac7f 100644 --- a/src/plugins/dashboard/public/dashboard_app/top_nav/share/show_share_modal.tsx +++ b/src/plugins/dashboard/public/dashboard_app/top_nav/share/show_share_modal.tsx @@ -58,7 +58,6 @@ export function ShowShareModal({ }, }, }, - initializerContext: { kibanaVersion }, share: { toggleShareContextMenu }, } = pluginServices.getServices(); @@ -131,8 +130,7 @@ export function ShowShareModal({ controlGroupInput: unsavedDashboardState.controlGroupInput as SerializableControlGroupInput, panels: unsavedDashboardState.panels ? (convertPanelMapToSavedPanels( - unsavedDashboardState.panels, - kibanaVersion + unsavedDashboardState.panels ) as DashboardAppLocatorParams['panels']) : undefined, diff --git a/src/plugins/dashboard/public/dashboard_app/top_nav/use_dashboard_menu_items.tsx b/src/plugins/dashboard/public/dashboard_app/top_nav/use_dashboard_menu_items.tsx index 51fad4a852ef9..ed28b2727ca88 100644 --- a/src/plugins/dashboard/public/dashboard_app/top_nav/use_dashboard_menu_items.tsx +++ b/src/plugins/dashboard/public/dashboard_app/top_nav/use_dashboard_menu_items.tsx @@ -48,6 +48,9 @@ export const useDashboardMenuItems = ({ */ const dashboard = useDashboardAPI(); + const hasRunMigrations = dashboard.select( + (state) => state.componentState.hasRunClientsideMigrations + ); const hasUnsavedChanges = dashboard.select((state) => state.componentState.hasUnsavedChanges); const hasOverlays = dashboard.select((state) => state.componentState.hasOverlays); const lastSavedId = dashboard.select((state) => state.componentState.lastSavedId); @@ -179,7 +182,7 @@ export const useDashboardMenuItems = ({ emphasize: true, isLoading: isSaveInProgress, testId: 'dashboardQuickSaveMenuItem', - disableButton: disableTopNav || !hasUnsavedChanges, + disableButton: disableTopNav || !(hasRunMigrations || hasUnsavedChanges), run: () => quickSaveDashboard(), } as TopNavMenuData, @@ -229,6 +232,7 @@ export const useDashboardMenuItems = ({ }, [ disableTopNav, isSaveInProgress, + hasRunMigrations, hasUnsavedChanges, lastSavedId, showShare, diff --git a/src/plugins/dashboard/public/dashboard_app/url/search_sessions_integration.ts b/src/plugins/dashboard/public/dashboard_app/url/search_sessions_integration.ts index 2cf31c0ec0e03..c66042030bc1c 100644 --- a/src/plugins/dashboard/public/dashboard_app/url/search_sessions_integration.ts +++ b/src/plugins/dashboard/public/dashboard_app/url/search_sessions_integration.ts @@ -77,7 +77,6 @@ function getLocatorParams({ }, search: { session }, }, - initializerContext: { kibanaVersion }, } = pluginServices.getServices(); const { @@ -102,9 +101,6 @@ function getLocatorParams({ : undefined, panels: lastSavedId ? undefined - : (convertPanelMapToSavedPanels( - panels, - kibanaVersion - ) as DashboardAppLocatorParams['panels']), + : (convertPanelMapToSavedPanels(panels) as DashboardAppLocatorParams['panels']), }; } diff --git a/src/plugins/dashboard/public/dashboard_app/url/sync_dashboard_url_state.ts b/src/plugins/dashboard/public/dashboard_app/url/sync_dashboard_url_state.ts index 6d6872ae73b0f..45574312ec8e0 100644 --- a/src/plugins/dashboard/public/dashboard_app/url/sync_dashboard_url_state.ts +++ b/src/plugins/dashboard/public/dashboard_app/url/sync_dashboard_url_state.ts @@ -32,7 +32,12 @@ import { migrateLegacyQuery } from '../../services/dashboard_content_management/ */ export const isPanelVersionTooOld = (panels: SavedDashboardPanel[]) => { for (const panel of panels) { - if (!panel.version || semverSatisfies(panel.version, '<7.3')) return true; + if ( + !panel.gridData || + !panel.embeddableConfig || + (panel.version && semverSatisfies(panel.version, '<7.3')) + ) + return true; } return false; }; diff --git a/src/plugins/dashboard/public/dashboard_container/embeddable/create/create_dashboard.ts b/src/plugins/dashboard/public/dashboard_container/embeddable/create/create_dashboard.ts index 753b881e5a94e..fad615e481ef9 100644 --- a/src/plugins/dashboard/public/dashboard_container/embeddable/create/create_dashboard.ts +++ b/src/plugins/dashboard/public/dashboard_container/embeddable/create/create_dashboard.ts @@ -91,6 +91,7 @@ export const createDashboard = async ( reduxEmbeddablePackage, searchSessionId, savedObjectResult?.dashboardInput, + savedObjectResult.anyMigrationRun, dashboardCreationStartTime, undefined, creationOptions, diff --git a/src/plugins/dashboard/public/dashboard_container/embeddable/dashboard_container.tsx b/src/plugins/dashboard/public/dashboard_container/embeddable/dashboard_container.tsx index df0e728a16d1b..3027cddd167dd 100644 --- a/src/plugins/dashboard/public/dashboard_container/embeddable/dashboard_container.tsx +++ b/src/plugins/dashboard/public/dashboard_container/embeddable/dashboard_container.tsx @@ -127,6 +127,7 @@ export class DashboardContainer extends Container ) => { state.componentState.lastSavedInput = action.payload; + + // if we set the last saved input, it means we have saved this Dashboard - therefore clientside migrations have + // been serialized into the SO. + state.componentState.hasRunClientsideMigrations = false; }, /** diff --git a/src/plugins/dashboard/public/dashboard_container/types.ts b/src/plugins/dashboard/public/dashboard_container/types.ts index 8ec0082d4109d..8bcc62a04995a 100644 --- a/src/plugins/dashboard/public/dashboard_container/types.ts +++ b/src/plugins/dashboard/public/dashboard_container/types.ts @@ -31,6 +31,7 @@ export type DashboardStateFromSettingsFlyout = DashboardStateFromSaveModal & Das export interface DashboardPublicState { lastSavedInput: DashboardContainerInput; + hasRunClientsideMigrations?: boolean; animatePanelTransforms?: boolean; isEmbeddedExternally?: boolean; hasUnsavedChanges?: boolean; diff --git a/src/plugins/dashboard/public/services/dashboard_content_management/lib/dashboard_versioning.ts b/src/plugins/dashboard/public/services/dashboard_content_management/lib/dashboard_versioning.ts new file mode 100644 index 0000000000000..a1d5fa45e1c43 --- /dev/null +++ b/src/plugins/dashboard/public/services/dashboard_content_management/lib/dashboard_versioning.ts @@ -0,0 +1,21 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +/** + * since version is saved as a number for BWC reasons, we need to convert the semver version to a number before + * saving it. For the time being we can just remove the minor and patch version info. + */ +export const convertDashboardVersionToNumber = (dashboardSemver: string) => { + return +dashboardSemver.split('.')[0]; +}; + +/** + * since version is saved as a number for BWC reasons, we need to convert the numeric version to a semver version. For the + * time being we can just convert the numeric version into the MAJOR version of a semver string. + */ +export const convertNumberToDashboardVersion = (numericVersion: number) => `${numericVersion}.0.0`; diff --git a/src/plugins/dashboard/public/services/dashboard_content_management/lib/load_dashboard_state.ts b/src/plugins/dashboard/public/services/dashboard_content_management/lib/load_dashboard_state.ts index 538162a8eacbc..bb4a2a9a83345 100644 --- a/src/plugins/dashboard/public/services/dashboard_content_management/lib/load_dashboard_state.ts +++ b/src/plugins/dashboard/public/services/dashboard_content_management/lib/load_dashboard_state.ts @@ -20,9 +20,11 @@ import { type DashboardOptions, convertSavedPanelsToPanelMap, } from '../../../../common'; +import { migrateDashboardInput } from './migrate_dashboard_input'; import { DashboardCrudTypes } from '../../../../common/content_management'; import type { LoadDashboardFromSavedObjectProps, LoadDashboardReturn } from '../types'; import { DASHBOARD_CONTENT_ID, DEFAULT_DASHBOARD_INPUT } from '../../../dashboard_constants'; +import { convertNumberToDashboardVersion } from './dashboard_versioning'; export function migrateLegacyQuery(query: Query | { [key: string]: any } | string): Query { // Lucene was the only option before, so language-less queries are all lucene @@ -66,6 +68,7 @@ export const loadDashboardState = async ({ .catch((e) => { throw new SavedObjectNotFound(DASHBOARD_CONTENT_ID, id); }); + if (!rawDashboardContent || !rawDashboardContent.version) { return { dashboardInput: newDashboardState, @@ -118,6 +121,7 @@ export const loadDashboardState = async ({ optionsJSON, panelsJSON, timeFrom, + version, timeTo, title, } = attributes; @@ -136,11 +140,8 @@ export const loadDashboardState = async ({ const options: DashboardOptions = optionsJSON ? JSON.parse(optionsJSON) : undefined; const panels = convertSavedPanelsToPanelMap(panelsJSON ? JSON.parse(panelsJSON) : []); - return { - resolveMeta, - dashboardFound: true, - dashboardId: savedObjectId, - dashboardInput: { + const { dashboardInput, anyMigrationRun } = migrateDashboardInput( + { ...DEFAULT_DASHBOARD_INPUT, ...options, @@ -160,6 +161,17 @@ export const loadDashboardState = async ({ controlGroupInput: attributes.controlGroupInput && rawControlGroupAttributesToControlGroupInput(attributes.controlGroupInput), + + version: convertNumberToDashboardVersion(version), }, + embeddable + ); + + return { + resolveMeta, + dashboardInput, + anyMigrationRun, + dashboardFound: true, + dashboardId: savedObjectId, }; }; diff --git a/src/plugins/dashboard/public/services/dashboard_content_management/lib/migrate_dashboard_input.test.ts b/src/plugins/dashboard/public/services/dashboard_content_management/lib/migrate_dashboard_input.test.ts new file mode 100644 index 0000000000000..10c7c5c40b587 --- /dev/null +++ b/src/plugins/dashboard/public/services/dashboard_content_management/lib/migrate_dashboard_input.test.ts @@ -0,0 +1,72 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { ControlGroupInput } from '@kbn/controls-plugin/common'; +import { controlGroupInputBuilder } from '@kbn/controls-plugin/public'; + +import { DashboardContainerInput } from '../../../../common'; +import { migrateDashboardInput } from './migrate_dashboard_input'; +import { DashboardEmbeddableService } from '../../embeddable/types'; +import { getSampleDashboardInput, getSampleDashboardPanel } from '../../../mocks'; + +jest.mock('@kbn/embeddable-plugin/public', () => { + return { + ...jest.requireActual('@kbn/embeddable-plugin/public'), + runEmbeddableFactoryMigrations: jest + .fn() + .mockImplementation((input) => ({ input, migrationRun: true })), + }; +}); + +describe('Migrate dashboard input', () => { + it('should run factory migrations on all Dashboard content', () => { + const dashboardInput: DashboardContainerInput = getSampleDashboardInput(); + dashboardInput.panels = { + panel1: getSampleDashboardPanel({ type: 'superLens', explicitInput: { id: 'panel1' } }), + panel2: getSampleDashboardPanel({ type: 'superLens', explicitInput: { id: 'panel2' } }), + panel3: getSampleDashboardPanel({ type: 'ultraDiscover', explicitInput: { id: 'panel3' } }), + panel4: getSampleDashboardPanel({ type: 'ultraDiscover', explicitInput: { id: 'panel4' } }), + }; + const controlGroupInput = { chainingSystem: 'NONE', panels: {} } as ControlGroupInput; + controlGroupInputBuilder.addOptionsListControl(controlGroupInput, { + dataViewId: 'positions-remain-fixed', + title: 'Results can be mixed', + fieldName: 'theres-a-stasis', + width: 'medium', + grow: false, + }); + controlGroupInputBuilder.addRangeSliderControl(controlGroupInput, { + dataViewId: 'an-object-set-in-motion', + title: 'The arbiter of time', + fieldName: 'unexpressed-emotion', + width: 'medium', + grow: false, + }); + controlGroupInputBuilder.addTimeSliderControl(controlGroupInput); + dashboardInput.controlGroupInput = controlGroupInput; + + const embeddableService: DashboardEmbeddableService = { + getEmbeddableFactory: jest.fn(() => ({ + latestVersion: '1.0.0', + migrations: {}, + })), + } as unknown as DashboardEmbeddableService; + + const result = migrateDashboardInput(dashboardInput, embeddableService); + + // migration run should be true because the runEmbeddableFactoryMigrations mock above returns true. + expect(result.anyMigrationRun).toBe(true); + + expect(embeddableService.getEmbeddableFactory).toHaveBeenCalledTimes(7); // should be called 4 times for the panels, and 3 times for the controls + expect(embeddableService.getEmbeddableFactory).toHaveBeenCalledWith('superLens'); + expect(embeddableService.getEmbeddableFactory).toHaveBeenCalledWith('ultraDiscover'); + expect(embeddableService.getEmbeddableFactory).toHaveBeenCalledWith('optionsListControl'); + expect(embeddableService.getEmbeddableFactory).toHaveBeenCalledWith('rangeSliderControl'); + expect(embeddableService.getEmbeddableFactory).toHaveBeenCalledWith('timeSlider'); + }); +}); diff --git a/src/plugins/dashboard/public/services/dashboard_content_management/lib/migrate_dashboard_input.ts b/src/plugins/dashboard/public/services/dashboard_content_management/lib/migrate_dashboard_input.ts new file mode 100644 index 0000000000000..57da6e85618fd --- /dev/null +++ b/src/plugins/dashboard/public/services/dashboard_content_management/lib/migrate_dashboard_input.ts @@ -0,0 +1,72 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { + runEmbeddableFactoryMigrations, + EmbeddableFactoryNotFoundError, +} from '@kbn/embeddable-plugin/public'; +import { ControlGroupInput } from '@kbn/controls-plugin/common'; + +import { type DashboardEmbeddableService } from '../../embeddable/types'; +import { DashboardContainerInput, DashboardPanelState } from '../../../../common'; + +/** + * Run Dashboard migrations clientside. We pre-emptively run all migrations for all content on this Dashboard so that + * we can ensure the `last saved state` which eventually resides in the Dashboard public state is fully migrated. + * This prevents the reset button from un-migrating the panels on the Dashboard. This also means that the migrations may + * get skipped at Embeddable create time - unless states with older versions are saved in the URL or session storage. + */ +export const migrateDashboardInput = ( + dashboardInput: DashboardContainerInput, + embeddable: DashboardEmbeddableService +) => { + let anyMigrationRun = false; + if (!dashboardInput) return dashboardInput; + if (dashboardInput.controlGroupInput) { + /** + * If any Control Group migrations are required, we will need to start storing a Control Group Input version + * string in Dashboard Saved Objects and then running the whole Control Group input through the embeddable + * factory migrations here. + */ + + // Migrate all of the Control children as well. + const migratedControls: ControlGroupInput['panels'] = {}; + + Object.entries(dashboardInput.controlGroupInput.panels).forEach(([id, panel]) => { + const factory = embeddable.getEmbeddableFactory(panel.type); + if (!factory) throw new EmbeddableFactoryNotFoundError(panel.type); + const { input: newInput, migrationRun: controlMigrationRun } = runEmbeddableFactoryMigrations( + panel.explicitInput, + factory + ); + if (controlMigrationRun) anyMigrationRun = true; + panel.explicitInput = newInput as DashboardPanelState['explicitInput']; + migratedControls[id] = panel; + }); + } + const migratedPanels: DashboardContainerInput['panels'] = {}; + Object.entries(dashboardInput.panels).forEach(([id, panel]) => { + const factory = embeddable.getEmbeddableFactory(panel.type); + if (!factory) throw new EmbeddableFactoryNotFoundError(panel.type); + // run last saved migrations for by value panels only. + if (!panel.explicitInput.savedObjectId) { + const { input: newInput, migrationRun: panelMigrationRun } = runEmbeddableFactoryMigrations( + panel.explicitInput, + factory + ); + if (panelMigrationRun) anyMigrationRun = true; + panel.explicitInput = newInput as DashboardPanelState['explicitInput']; + } else if (factory.latestVersion) { + // by reference panels are always considered to be of the latest version + panel.explicitInput.version = factory.latestVersion; + } + migratedPanels[id] = panel; + }); + dashboardInput.panels = migratedPanels; + return { dashboardInput, anyMigrationRun }; +}; diff --git a/src/plugins/dashboard/public/services/dashboard_content_management/lib/save_dashboard_state.ts b/src/plugins/dashboard/public/services/dashboard_content_management/lib/save_dashboard_state.ts index 60d1a0f8972e0..7f0ed1e8305cd 100644 --- a/src/plugins/dashboard/public/services/dashboard_content_management/lib/save_dashboard_state.ts +++ b/src/plugins/dashboard/public/services/dashboard_content_management/lib/save_dashboard_state.ts @@ -29,8 +29,10 @@ import { } from '../types'; import { DashboardStartDependencies } from '../../../plugin'; import { DASHBOARD_CONTENT_ID } from '../../../dashboard_constants'; +import { LATEST_DASHBOARD_CONTAINER_VERSION } from '../../../dashboard_container'; import { DashboardCrudTypes, DashboardAttributes } from '../../../../common/content_management'; import { dashboardSaveToastStrings } from '../../../dashboard_container/_dashboard_container_strings'; +import { convertDashboardVersionToNumber } from './dashboard_versioning'; export const serializeControlGroupInput = ( controlGroupInput: DashboardContainerInput['controlGroupInput'] @@ -75,7 +77,6 @@ export const saveDashboardState = async ({ savedObjectsTagging, dashboardSessionStorage, notifications: { toasts }, - initializerContext: { kibanaVersion }, }: SaveDashboardStateProps): Promise => { const { search: dataSearchService, @@ -90,6 +91,7 @@ export const saveDashboardState = async ({ title, panels, filters, + version, timeRestore, description, controlGroupInput, @@ -128,7 +130,7 @@ export const saveDashboardState = async ({ syncTooltips, hidePanelTitles, }); - const panelsJSON = JSON.stringify(convertPanelMapToSavedPanels(panels, kibanaVersion)); + const panelsJSON = JSON.stringify(convertPanelMapToSavedPanels(panels, true)); /** * Parse global time filter settings @@ -146,6 +148,7 @@ export const saveDashboardState = async ({ : undefined; const rawDashboardAttributes: DashboardAttributes = { + version: convertDashboardVersionToNumber(version ?? LATEST_DASHBOARD_CONTAINER_VERSION), controlGroupInput: serializeControlGroupInput(controlGroupInput), kibanaSavedObjectMeta: { searchSourceJSON }, description: description ?? '', @@ -156,7 +159,6 @@ export const saveDashboardState = async ({ timeFrom, title, timeTo, - version: 1, // todo - where does version come from? Why is it needed? }; /** @@ -169,6 +171,7 @@ export const saveDashboardState = async ({ }, { embeddablePersistableStateService: embeddable } ); + const references = savedObjectsTagging.updateTagsReferences ? savedObjectsTagging.updateTagsReferences(dashboardReferences, tags) : dashboardReferences; diff --git a/src/plugins/dashboard/public/services/dashboard_content_management/types.ts b/src/plugins/dashboard/public/services/dashboard_content_management/types.ts index 41e1ce55f979f..288f8d4143f76 100644 --- a/src/plugins/dashboard/public/services/dashboard_content_management/types.ts +++ b/src/plugins/dashboard/public/services/dashboard_content_management/types.ts @@ -66,6 +66,7 @@ export interface LoadDashboardReturn { dashboardId?: string; resolveMeta?: DashboardResolveMeta; dashboardInput: DashboardContainerInput; + anyMigrationRun?: boolean; } /** diff --git a/src/plugins/dashboard/server/content_management/dashboard_storage.ts b/src/plugins/dashboard/server/content_management/dashboard_storage.ts index 80e2e134dd018..fbbfa0ef26a47 100644 --- a/src/plugins/dashboard/server/content_management/dashboard_storage.ts +++ b/src/plugins/dashboard/server/content_management/dashboard_storage.ts @@ -46,6 +46,7 @@ export class DashboardStorage extends SOContentStorage { 'optionsJSON', 'panelsJSON', 'timeFrom', + 'version', 'timeTo', 'title', ], diff --git a/src/plugins/dashboard/server/dashboard_saved_object/migrations/migrate_by_value_dashboard_panels.ts b/src/plugins/dashboard/server/dashboard_saved_object/migrations/migrate_by_value_dashboard_panels.ts index 1b671112e1b1e..9f768f8d51910 100644 --- a/src/plugins/dashboard/server/dashboard_saved_object/migrations/migrate_by_value_dashboard_panels.ts +++ b/src/plugins/dashboard/server/dashboard_saved_object/migrations/migrate_by_value_dashboard_panels.ts @@ -74,15 +74,13 @@ export const migrateByValueDashboardPanels = type: originalPanelState.type, }); // Convert the embeddable state back into the panel shape - newPanels.push( - convertPanelStateToSavedDashboardPanel( - { - ...originalPanelState, - explicitInput: { ...migratedInput, id: migratedInput.id as string }, - }, - version - ) - ); + newPanels.push({ + ...convertPanelStateToSavedDashboardPanel({ + ...originalPanelState, + explicitInput: { ...migratedInput, id: migratedInput.id as string }, + }), + version, + }); } else { newPanels.push(panel); } diff --git a/src/plugins/dashboard/server/dashboard_saved_object/migrations/migrate_hidden_titles.ts b/src/plugins/dashboard/server/dashboard_saved_object/migrations/migrate_hidden_titles.ts index d071a094ac19c..61ad21904802f 100644 --- a/src/plugins/dashboard/server/dashboard_saved_object/migrations/migrate_hidden_titles.ts +++ b/src/plugins/dashboard/server/dashboard_saved_object/migrations/migrate_hidden_titles.ts @@ -37,19 +37,16 @@ export const migrateExplicitlyHiddenTitles: SavedObjectMigrationFn = ( // Convert each panel into the dashboard panel state const originalPanelState = convertSavedDashboardPanelToPanelState(panel); newPanels.push( - convertPanelStateToSavedDashboardPanel( - { - ...originalPanelState, - explicitInput: { - ...originalPanelState.explicitInput, - ...(originalPanelState.explicitInput.title === '' && - !originalPanelState.explicitInput.hidePanelTitles - ? { hidePanelTitles: true } - : {}), - }, + convertPanelStateToSavedDashboardPanel({ + ...originalPanelState, + explicitInput: { + ...originalPanelState.explicitInput, + ...(originalPanelState.explicitInput.title === '' && + !originalPanelState.explicitInput.hidePanelTitles + ? { hidePanelTitles: true } + : {}), }, - panel.version - ) + }) ); }); return { diff --git a/src/plugins/data/common/index.ts b/src/plugins/data/common/index.ts index 0d2fce23109f0..a7a5263229ddc 100644 --- a/src/plugins/data/common/index.ts +++ b/src/plugins/data/common/index.ts @@ -13,6 +13,7 @@ export { DEFAULT_QUERY_LANGUAGE, KIBANA_USER_QUERY_LANGUAGE_KEY, KQL_TELEMETRY_ROUTE_LATEST_VERSION, + SAVED_QUERY_BASE_URL, SCRIPT_LANGUAGES_ROUTE_LATEST_VERSION, UI_SETTINGS, } from './constants'; diff --git a/src/plugins/data/common/query/types.ts b/src/plugins/data/common/query/types.ts index e10afaf746455..e6270e3c81ca3 100644 --- a/src/plugins/data/common/query/types.ts +++ b/src/plugins/data/common/query/types.ts @@ -19,6 +19,7 @@ export type SavedQueryTimeFilter = TimeRange & { export interface SavedQuery { id: string; attributes: SavedQueryAttributes; + namespaces: string[]; } export interface SavedQueryAttributes { diff --git a/src/plugins/data/common/search/search_source/create_search_source.test.ts b/src/plugins/data/common/search/search_source/create_search_source.test.ts index 491673dc8ebca..709b065c1ec41 100644 --- a/src/plugins/data/common/search/search_source/create_search_source.test.ts +++ b/src/plugins/data/common/search/search_source/create_search_source.test.ts @@ -23,6 +23,7 @@ describe('createSearchSource', () => { getConfig: jest.fn(), search: jest.fn(), onResponse: (req, res) => res, + scriptedFieldsEnabled: true, }; indexPatternContractMock = { diff --git a/src/plugins/data/common/search/search_source/mocks.ts b/src/plugins/data/common/search/search_source/mocks.ts index a980004bd1ceb..6bcd2a76d9aca 100644 --- a/src/plugins/data/common/search/search_source/mocks.ts +++ b/src/plugins/data/common/search/search_source/mocks.ts @@ -71,4 +71,5 @@ export const createSearchSourceMock = ( ) ), onResponse: jest.fn().mockImplementation((req, res) => res), + scriptedFieldsEnabled: true, }); diff --git a/src/plugins/data/common/search/search_source/search_source.test.ts b/src/plugins/data/common/search/search_source/search_source.test.ts index f4146cc5634de..eeb4c5a972e3a 100644 --- a/src/plugins/data/common/search/search_source/search_source.test.ts +++ b/src/plugins/data/common/search/search_source/search_source.test.ts @@ -94,6 +94,7 @@ describe('SearchSource', () => { getConfig: getConfigMock, search: mockSearchMethod, onResponse: jest.fn().mockImplementation((_, res) => res), + scriptedFieldsEnabled: true, }; searchSource = new SearchSource({}, searchSourceDependencies); @@ -651,6 +652,22 @@ describe('SearchSource', () => { const request = searchSource.getSearchRequestBody(); expect(request.script_fields).toEqual({ hello: {}, world: {} }); }); + + test('ignores scripted fields when scripted fields are disabled', async () => { + searchSource.setField('index', { + ...indexPattern, + getComputedFields: () => ({ + storedFields: [], + scriptFields: { hello: {}, world: {} }, + docvalueFields: [], + }), + } as unknown as DataView); + searchSourceDependencies.scriptedFieldsEnabled = false; + searchSource.setField('fields', ['timestamp', '*']); + + const request = searchSource.getSearchRequestBody(); + expect(request.script_fields).toEqual({}); + }); }); describe('handling for when specific fields are provided', () => { diff --git a/src/plugins/data/common/search/search_source/search_source.ts b/src/plugins/data/common/search/search_source/search_source.ts index a9d48108d296d..c11289439885b 100644 --- a/src/plugins/data/common/search/search_source/search_source.ts +++ b/src/plugins/data/common/search/search_source/search_source.ts @@ -138,6 +138,7 @@ export const searchSourceRequiredUiSettings = [ export interface SearchSourceDependencies extends FetchHandlers { aggs: AggsStart; search: ISearchGeneric; + scriptedFieldsEnabled: boolean; } interface ExpressionAstOptions { @@ -798,10 +799,12 @@ export class SearchSource { // set defaults let fieldsFromSource = searchRequest.fieldsFromSource || []; body.fields = body.fields || []; - body.script_fields = { - ...body.script_fields, - ...scriptFields, - }; + body.script_fields = this.dependencies.scriptedFieldsEnabled + ? { + ...body.script_fields, + ...scriptFields, + } + : {}; body.stored_fields = storedFields; body.runtime_mappings = runtimeFields || {}; diff --git a/src/plugins/data/common/search/search_source/search_source_service.test.ts b/src/plugins/data/common/search/search_source/search_source_service.test.ts index 70448db335a07..8e03f56fe0421 100644 --- a/src/plugins/data/common/search/search_source/search_source_service.test.ts +++ b/src/plugins/data/common/search/search_source/search_source_service.test.ts @@ -19,6 +19,7 @@ describe('SearchSource service', () => { getConfig: jest.fn(), search: jest.fn(), onResponse: jest.fn(), + scriptedFieldsEnabled: true, }; }); diff --git a/src/plugins/data/public/plugin.ts b/src/plugins/data/public/plugin.ts index 8f4e37afb29b2..a2ed53fde7704 100644 --- a/src/plugins/data/public/plugin.ts +++ b/src/plugins/data/public/plugin.ts @@ -138,6 +138,7 @@ export class DataPublicPlugin fieldFormats, indexPatterns: dataViews, screenshotMode, + scriptedFieldsEnabled: dataViews.scriptedFieldsEnabled, }); setSearchService(search); diff --git a/src/plugins/data/public/query/saved_query/types.ts b/src/plugins/data/public/query/saved_query/types.ts index eac7bd3aa30b1..7b6b7408b4369 100644 --- a/src/plugins/data/public/query/saved_query/types.ts +++ b/src/plugins/data/public/query/saved_query/types.ts @@ -6,25 +6,15 @@ * Side Public License, v 1. */ -import type { TimeRange, Query, Filter } from '@kbn/es-query'; +import type { TimeRange } from '@kbn/es-query'; import { RefreshInterval } from '../..'; +import { SavedQuery, SavedQueryAttributes } from '../../../common/types'; export type SavedQueryTimeFilter = TimeRange & { refreshInterval: RefreshInterval; }; -export interface SavedQuery { - id: string; - attributes: SavedQueryAttributes; -} - -export interface SavedQueryAttributes { - title: string; - description: string; - query: Query; - filters?: Filter[]; - timefilter?: SavedQueryTimeFilter; -} +export type { SavedQuery, SavedQueryAttributes }; export interface SavedQueryService { createQuery: (attributes: SavedQueryAttributes) => Promise; diff --git a/src/plugins/data/public/search/search_service.test.ts b/src/plugins/data/public/search/search_service.test.ts index a64b90772900a..c94cde6b8f747 100644 --- a/src/plugins/data/public/search/search_service.test.ts +++ b/src/plugins/data/public/search/search_service.test.ts @@ -69,6 +69,7 @@ describe('Search service', () => { fieldFormats: {} as FieldFormatsStart, indexPatterns: {} as DataViewsContract, screenshotMode: screenshotModePluginMock.createStartContract(), + scriptedFieldsEnabled: true, }); }); diff --git a/src/plugins/data/public/search/search_service.ts b/src/plugins/data/public/search/search_service.ts index d9033e0eed5f1..4a16d9487d2ea 100644 --- a/src/plugins/data/public/search/search_service.ts +++ b/src/plugins/data/public/search/search_service.ts @@ -86,6 +86,7 @@ export interface SearchServiceStartDependencies { fieldFormats: FieldFormatsStart; indexPatterns: DataViewsContract; screenshotMode: ScreenshotModePluginStart; + scriptedFieldsEnabled: boolean; } export class SearchService implements Plugin { @@ -216,7 +217,12 @@ export class SearchService implements Plugin { public start( { http, theme, uiSettings, chrome, application }: CoreStart, - { fieldFormats, indexPatterns, screenshotMode }: SearchServiceStartDependencies + { + fieldFormats, + indexPatterns, + screenshotMode, + scriptedFieldsEnabled, + }: SearchServiceStartDependencies ): ISearchStart { const search = ((request, options = {}) => { return this.searchInterceptor.search(request, options); @@ -245,6 +251,7 @@ export class SearchService implements Plugin { } return response; }, + scriptedFieldsEnabled, }; const config = this.initializerContext.config.get(); diff --git a/src/plugins/data/server/query/route_handler_context.test.ts b/src/plugins/data/server/query/route_handler_context.test.ts index 1c274fcfc3953..08052944cb283 100644 --- a/src/plugins/data/server/query/route_handler_context.test.ts +++ b/src/plugins/data/server/query/route_handler_context.test.ts @@ -553,7 +553,7 @@ describe('saved query route handler context', () => { describe('delete', function () { it('should delete the saved query for the given ID', async () => { await context.delete('foo'); - expect(mockSavedObjectsClient.delete).toHaveBeenCalledWith('query', 'foo'); + expect(mockSavedObjectsClient.delete).toHaveBeenCalledWith('query', 'foo', { force: true }); }); }); diff --git a/src/plugins/data/server/query/route_handler_context.ts b/src/plugins/data/server/query/route_handler_context.ts index 6179a909eee57..fcca59ece59fd 100644 --- a/src/plugins/data/server/query/route_handler_context.ts +++ b/src/plugins/data/server/query/route_handler_context.ts @@ -14,8 +14,9 @@ import { extract, inject } from '../../common/query/filters/persistable_state'; function injectReferences({ id, attributes, + namespaces, references, -}: Pick, 'id' | 'attributes' | 'references'>) { +}: Pick, 'id' | 'attributes' | 'namespaces' | 'references'>) { const { query } = attributes; if (isOfQueryType(query) && typeof query.query === 'string') { try { @@ -26,7 +27,7 @@ function injectReferences({ } } const filters = inject(attributes.filters ?? [], references); - return { id, attributes: { ...attributes, filters } }; + return { id, attributes: { ...attributes, filters }, namespaces }; } function extractReferences({ @@ -156,7 +157,7 @@ export async function registerSavedQueryRouteHandlerContext(context: RequestHand }; const deleteSavedQuery = async (id: string) => { - return await soClient.delete('query', id); + return await soClient.delete('query', id, { force: true }); }; return { diff --git a/src/plugins/data/server/query/routes.ts b/src/plugins/data/server/query/routes.ts index a092a32d321a5..7446e3ad83a12 100644 --- a/src/plugins/data/server/query/routes.ts +++ b/src/plugins/data/server/query/routes.ts @@ -8,6 +8,7 @@ import { schema } from '@kbn/config-schema'; import { CoreSetup } from '@kbn/core/server'; +import { reportServerError } from '@kbn/kibana-utils-plugin/server'; import { SavedQueryRouteHandlerContext } from './route_handler_context'; import { SavedQueryRestResponse } from './route_types'; import { SAVED_QUERY_BASE_URL } from '../../common/constants'; @@ -29,6 +30,7 @@ const SAVED_QUERY_ATTRS_CONFIG = schema.object({ const savedQueryResponseSchema = schema.object({ id: schema.string(), attributes: SAVED_QUERY_ATTRS_CONFIG, + namespaces: schema.arrayOf(schema.string()), }); const access = 'internal'; @@ -57,8 +59,8 @@ export function registerSavedQueryRoutes({ http }: CoreSetup): void { const body: SavedQueryRestResponse = await savedQuery.create(request.body); return response.ok({ body }); } catch (e) { - // TODO: Handle properly - return response.customError(e); + const err = e.output?.payload ?? e; + return reportServerError(response, err); } } ); @@ -85,8 +87,8 @@ export function registerSavedQueryRoutes({ http }: CoreSetup): void { const body: SavedQueryRestResponse = await savedQuery.update(id, request.body); return response.ok({ body }); } catch (e) { - // TODO: Handle properly - return response.customError(e); + const err = e.output?.payload ?? e; + return reportServerError(response, err); } } ); @@ -112,8 +114,8 @@ export function registerSavedQueryRoutes({ http }: CoreSetup): void { const body: SavedQueryRestResponse = await savedQuery.get(id); return response.ok({ body }); } catch (e) { - // TODO: Handle properly - return response.customError(e); + const err = e.output?.payload ?? e; + return reportServerError(response, err); } } ); @@ -136,8 +138,8 @@ export function registerSavedQueryRoutes({ http }: CoreSetup): void { const count: number = await savedQuery.count(); return response.ok({ body: `${count}` }); } catch (e) { - // TODO: Handle properly - return response.customError(e); + const err = e.output?.payload ?? e; + return reportServerError(response, err); } } ); @@ -170,8 +172,8 @@ export function registerSavedQueryRoutes({ http }: CoreSetup): void { await savedQuery.find(request.body); return response.ok({ body }); } catch (e) { - // TODO: Handle properly - return response.customError(e); + const err = e.output?.payload ?? e; + return reportServerError(response, err); } } ); @@ -198,8 +200,8 @@ export function registerSavedQueryRoutes({ http }: CoreSetup): void { await savedQuery.getAll(); return response.ok({ body }); } catch (e) { - // TODO: Handle properly - return response.customError(e); + const err = e.output?.payload ?? e; + return reportServerError(response, err); } } ); @@ -225,8 +227,8 @@ export function registerSavedQueryRoutes({ http }: CoreSetup): void { await savedQuery.delete(id); return response.ok(); } catch (e) { - // TODO: Handle properly - return response.customError(e); + const err = e.output?.payload ?? e; + return reportServerError(response, err); } } ); diff --git a/src/plugins/data/server/saved_objects/query.ts b/src/plugins/data/server/saved_objects/query.ts index f59adbbef8750..59ff2483fbefb 100644 --- a/src/plugins/data/server/saved_objects/query.ts +++ b/src/plugins/data/server/saved_objects/query.ts @@ -15,7 +15,7 @@ export const querySavedObjectType: SavedObjectsType = { name: 'query', indexPattern: ANALYTICS_SAVED_OBJECT_INDEX, hidden: false, - namespaceType: 'multiple-isolated', + namespaceType: 'multiple', convertToMultiNamespaceTypeVersion: '8.0.0', management: { icon: 'search', diff --git a/src/plugins/data/server/search/search_service.ts b/src/plugins/data/server/search/search_service.ts index 0387cb820f165..dd199403c53af 100644 --- a/src/plugins/data/server/search/search_service.ts +++ b/src/plugins/data/server/search/search_service.ts @@ -302,6 +302,7 @@ export class SearchService implements Plugin { getConfig: (key: string): T => uiSettingsCache[key], search: this.asScoped(request).search, onResponse: (req, res) => res, + scriptedFieldsEnabled: true, }; return this.searchSourceService.start(scopedIndexPatterns, searchSourceDependencies); diff --git a/src/plugins/data_view_management/public/components/edit_index_pattern/tabs/tabs.tsx b/src/plugins/data_view_management/public/components/edit_index_pattern/tabs/tabs.tsx index 075869ab6fdc2..4d18244d6476c 100644 --- a/src/plugins/data_view_management/public/components/edit_index_pattern/tabs/tabs.tsx +++ b/src/plugins/data_view_management/public/components/edit_index_pattern/tabs/tabs.tsx @@ -569,7 +569,7 @@ export function Tabs({ const euiTabs: EuiTabbedContentTab[] = useMemo( () => - getTabs(indexPattern, fieldFilter, relationships.length).map( + getTabs(indexPattern, fieldFilter, relationships.length, dataViews.scriptedFieldsEnabled).map( (tab: Pick) => { return { ...tab, @@ -577,7 +577,7 @@ export function Tabs({ }; } ), - [fieldFilter, getContent, indexPattern, relationships] + [fieldFilter, getContent, indexPattern, relationships, dataViews.scriptedFieldsEnabled] ); const [selectedTabId, setSelectedTabId] = useState(euiTabs[0].id); diff --git a/src/plugins/data_view_management/public/components/edit_index_pattern/tabs/utils.ts b/src/plugins/data_view_management/public/components/edit_index_pattern/tabs/utils.ts index 00b08037e52fe..1c372e13dbe4b 100644 --- a/src/plugins/data_view_management/public/components/edit_index_pattern/tabs/utils.ts +++ b/src/plugins/data_view_management/public/components/edit_index_pattern/tabs/utils.ts @@ -15,7 +15,7 @@ import { TAB_SOURCE_FILTERS, TAB_RELATIONSHIPS, } from '../constants'; -import { areScriptedFieldsEnabled } from '../../utils'; +import { isRollup } from '../../utils'; function filterByName(items: DataViewField[], filter: string) { const lowercaseFilter = (filter || '').toLowerCase(); @@ -73,7 +73,12 @@ function getTitle(type: string, filteredCount: Dictionary, totalCount: D return title + count; } -export function getTabs(indexPattern: DataView, fieldFilter: string, relationshipCount = 0) { +export function getTabs( + indexPattern: DataView, + fieldFilter: string, + relationshipCount = 0, + scriptedFieldsEnabled: boolean +) { const totalCount = getCounts(indexPattern.fields.getAll(), indexPattern.getSourceFiltering()); const filteredCount = getCounts( indexPattern.fields.getAll(), @@ -89,7 +94,7 @@ export function getTabs(indexPattern: DataView, fieldFilter: string, relationshi 'data-test-subj': 'tab-indexedFields', }); - if (areScriptedFieldsEnabled(indexPattern)) { + if (!isRollup(indexPattern.type) && scriptedFieldsEnabled) { tabs.push({ name: getTitle('scripted', filteredCount, totalCount), id: TAB_SCRIPTED_FIELDS, diff --git a/src/plugins/data_view_management/public/components/index_pattern_table/index_pattern_table.tsx b/src/plugins/data_view_management/public/components/index_pattern_table/index_pattern_table.tsx index f2ab10098e4d6..0d0215e6342d7 100644 --- a/src/plugins/data_view_management/public/components/index_pattern_table/index_pattern_table.tsx +++ b/src/plugins/data_view_management/public/components/index_pattern_table/index_pattern_table.tsx @@ -213,7 +213,10 @@ export const IndexPatternTable = ({ width: '70%', render: (name: string, dataView: IndexPatternTableItem) => (
    - + {dataView.getName()} {dataView.name ? ( <> diff --git a/src/plugins/data_view_management/public/components/utils.ts b/src/plugins/data_view_management/public/components/utils.ts index 5ba434048dc4d..722ad5059a598 100644 --- a/src/plugins/data_view_management/public/components/utils.ts +++ b/src/plugins/data_view_management/public/components/utils.ts @@ -28,7 +28,7 @@ const rollupIndexPatternListName = i18n.translate( } ); -const isRollup = (indexPatternType: string = '') => { +export const isRollup = (indexPatternType: string = '') => { return indexPatternType === 'rollup'; }; @@ -85,10 +85,6 @@ export const getTags = (indexPattern: DataViewListItem | DataView, isDefault: bo return tags; }; -export const areScriptedFieldsEnabled = (indexPattern: DataViewListItem | DataView) => { - return !isRollup(indexPattern.type); -}; - export const getFieldInfo = (indexPattern: DataViewListItem | DataView, field: DataViewField) => { if (!isRollup(indexPattern.type)) { return []; diff --git a/src/plugins/data_view_management/public/management_app/mount_management_section.tsx b/src/plugins/data_view_management/public/management_app/mount_management_section.tsx index d7b21b395fdde..0e3c1758d2992 100644 --- a/src/plugins/data_view_management/public/management_app/mount_management_section.tsx +++ b/src/plugins/data_view_management/public/management_app/mount_management_section.tsx @@ -92,6 +92,10 @@ export async function mountManagementSection( savedObjectsManagement, }; + const editPath = '/dataView/:id/field/:fieldName'; + const createPath = '/dataView/:id/create-field/'; + const createEditPath = dataViews.scriptedFieldsEnabled ? [editPath, createPath] : [editPath]; + ReactDOM.render( @@ -100,7 +104,7 @@ export async function mountManagementSection( - + diff --git a/src/plugins/data_view_management/server/routes/resolve_index.ts b/src/plugins/data_view_management/server/routes/resolve_index.ts index 820e6de1c9d7d..c9207d020a355 100644 --- a/src/plugins/data_view_management/server/routes/resolve_index.ts +++ b/src/plugins/data_view_management/server/routes/resolve_index.ts @@ -8,6 +8,7 @@ import { schema } from '@kbn/config-schema'; import { IRouter } from '@kbn/core/server'; +import { getKbnServerError } from '@kbn/kibana-utils-plugin/server'; export function registerResolveIndexRoute(router: IRouter): void { router.get( @@ -32,11 +33,19 @@ export function registerResolveIndexRoute(router: IRouter): void { }, async (context, req, res) => { const esClient = (await context.core).elasticsearch.client; - const body = await esClient.asCurrentUser.indices.resolveIndex({ - name: req.params.query, - expand_wildcards: req.query.expand_wildcards || 'open', - }); - return res.ok({ body }); + try { + const body = await esClient.asCurrentUser.indices.resolveIndex({ + name: req.params.query, + expand_wildcards: req.query.expand_wildcards || 'open', + }); + return res.ok({ body }); + } catch (e) { + if (e?.meta.statusCode === 404) { + return res.notFound({ body: { message: e.meta?.body?.error?.reason } }); + } else { + throw getKbnServerError(e); + } + } } ); } diff --git a/src/plugins/data_views/common/data_views/data_views.test.ts b/src/plugins/data_views/common/data_views/data_views.test.ts index 2ea7726cc2bb9..5c05832e7b0c4 100644 --- a/src/plugins/data_views/common/data_views/data_views.test.ts +++ b/src/plugins/data_views/common/data_views/data_views.test.ts @@ -115,6 +115,7 @@ describe('IndexPatterns', () => { onRedirectNoIndexPattern: () => {}, getCanSave: () => Promise.resolve(true), getCanSaveAdvancedSettings: () => Promise.resolve(true), + scriptedFieldsEnabled: true, }); indexPatternsNoAccess = new DataViewsService({ @@ -127,6 +128,7 @@ describe('IndexPatterns', () => { onRedirectNoIndexPattern: () => {}, getCanSave: () => Promise.resolve(false), getCanSaveAdvancedSettings: () => Promise.resolve(false), + scriptedFieldsEnabled: true, }); }); diff --git a/src/plugins/data_views/common/data_views/data_views.ts b/src/plugins/data_views/common/data_views/data_views.ts index 9537526046266..7e74a468d3ce8 100644 --- a/src/plugins/data_views/common/data_views/data_views.ts +++ b/src/plugins/data_views/common/data_views/data_views.ts @@ -120,6 +120,8 @@ export interface DataViewsServiceDeps { * Determines whether the user can save advancedSettings (used for defaultIndex) */ getCanSaveAdvancedSettings: () => Promise; + + scriptedFieldsEnabled: boolean; } /** @@ -325,6 +327,8 @@ export class DataViewsService { * Can the user save data views? */ public getCanSave: () => Promise; + + public readonly scriptedFieldsEnabled: boolean; /** * DataViewsService constructor * @param deps Service dependencies @@ -339,6 +343,7 @@ export class DataViewsService { onError, getCanSave = () => Promise.resolve(false), getCanSaveAdvancedSettings, + scriptedFieldsEnabled, } = deps; this.apiClient = apiClient; this.config = uiSettings; @@ -350,6 +355,7 @@ export class DataViewsService { this.getCanSaveAdvancedSettings = getCanSaveAdvancedSettings; this.dataViewCache = createDataViewCache(); + this.scriptedFieldsEnabled = scriptedFieldsEnabled; } /** @@ -591,7 +597,9 @@ export class DataViewsService { private refreshFieldsFn = async (indexPattern: DataView) => { const { fields, indices } = await this.getFieldsAndIndicesForDataView(indexPattern); fields.forEach((field) => (field.isMapped = true)); - const scripted = indexPattern.getScriptedFields().map((field) => field.spec); + const scripted = this.scriptedFieldsEnabled + ? indexPattern.getScriptedFields().map((field) => field.spec) + : []; const fieldAttrs = indexPattern.getFieldAttrs(); const fieldsWithSavedAttrs = Object.values( this.fieldArrayToMap([...fields, ...scripted], fieldAttrs) @@ -655,7 +663,9 @@ export class DataViewsService { displayErrors: boolean = true ) => { const fieldsAsArr = Object.values(fields); - const scriptedFields = fieldsAsArr.filter((field) => field.scripted); + const scriptedFields = this.scriptedFieldsEnabled + ? fieldsAsArr.filter((field) => field.scripted) + : []; try { let updatedFieldList: FieldSpec[]; const { fields: newFields, indices } = await this.getFieldsAndIndicesForWildcard(options); diff --git a/src/plugins/data_views/common/types.ts b/src/plugins/data_views/common/types.ts index 97d76941ea40c..9061c4643dce9 100644 --- a/src/plugins/data_views/common/types.ts +++ b/src/plugins/data_views/common/types.ts @@ -525,3 +525,7 @@ export interface HasDataService { hasUserDataView: () => Promise; hasDataView: () => Promise; } + +export interface ClientConfigType { + scriptedFieldsEnabled?: boolean; +} diff --git a/src/plugins/data_views/docs/openapi/bundled.json b/src/plugins/data_views/docs/openapi/bundled.json index 894e5e02f4564..98ca8cd92daf3 100644 --- a/src/plugins/data_views/docs/openapi/bundled.json +++ b/src/plugins/data_views/docs/openapi/bundled.json @@ -84,6 +84,16 @@ } } } + }, + "400": { + "description": "Bad request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/400_response" + } + } + } } } }, @@ -293,6 +303,85 @@ } ] }, + "/api/data_views/data_view/{viewId}/fields": { + "post": { + "summary": "Update fields presentation metadata such as count, customLabel and format.", + "operationId": "updateFieldsMetadata", + "description": "This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features. You can update multiple fields in one request. Updates are merged with persisted metadata. To remove existing metadata, specify null as the value.\n", + "tags": [ + "data views" + ], + "parameters": [ + { + "$ref": "#/components/parameters/kbn_xsrf" + }, + { + "$ref": "#/components/parameters/view_id" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "fields" + ], + "properties": { + "fields": { + "description": "The field object.", + "type": "object" + } + } + }, + "examples": { + "updateFieldsMetadataRequest": { + "$ref": "#/components/examples/update_field_metadata_request" + } + } + } + } + }, + "responses": { + "200": { + "description": "Indicates a successful call.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "acknowledged": { + "type": "boolean" + } + } + } + } + } + }, + "400": { + "description": "Bad request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/400_response" + } + } + } + } + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, + "servers": [ + { + "url": "https://localhost:5601" + } + ] + }, "/api/data_views/data_view/{viewId}/runtime_field": { "post": { "summary": "Creates a runtime field.", @@ -304,6 +393,9 @@ "parameters": [ { "$ref": "#/components/parameters/kbn_xsrf" + }, + { + "$ref": "#/components/parameters/view_id" } ], "requestBody": { @@ -312,16 +404,18 @@ "application/json": { "schema": { "type": "object", + "required": [ + "name", + "runtimeField" + ], "properties": { - "data_view_id": { - "description": "The ID of the data view.", + "name": { "type": "string", - "required": true + "description": "The name for a runtime field.\n" }, - "space_id": { - "description": "An identifier for the space. If space_id is not provided in the URL, the default space is used.", - "type": "string", - "required": false + "runtimeField": { + "type": "object", + "description": "The runtime field definition object.\n" } } }, @@ -336,7 +430,7 @@ }, "put": { "summary": "Create or update an existing runtime field.", - "operationId": "updateRuntimeField", + "operationId": "createUpdateRuntimeField", "description": "This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.\n", "tags": [ "data views" @@ -344,6 +438,15 @@ "parameters": [ { "$ref": "#/components/parameters/kbn_xsrf" + }, + { + "name": "viewId", + "in": "path", + "description": "The ID of the data view fields you want to update.\n", + "required": true, + "schema": { + "type": "string" + } } ], "requestBody": { @@ -352,16 +455,18 @@ "application/json": { "schema": { "type": "object", + "required": [ + "name", + "runtimeField" + ], "properties": { - "data_view_id": { - "description": "The ID of the data view.", + "name": { "type": "string", - "required": true + "description": "The name for a runtime field.\n" }, - "space_id": { - "description": "An identifier for the space. If space_id is not provided in the URL, the default space is used.", - "type": "string", - "required": false + "runtimeField": { + "type": "object", + "description": "The runtime field definition object.\n" } } }, @@ -379,7 +484,20 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/create_runtime_field_response" + "type": "object", + "properties": { + "data_view": { + "type": "object" + }, + "fields": { + "type": "array" + } + } + }, + "examples": { + "createRuntimeFieldResponse": { + "$ref": "#/components/examples/create_runtime_field_response" + } } } } @@ -514,15 +632,13 @@ "application/json": { "schema": { "type": "object", + "required": [ + "runtimeField" + ], "properties": { - "data_view": { - "type": "object" - }, - "fields": { - "type": "array", - "items": { - "type": "object" - } + "runtimeField": { + "type": "object", + "description": "The runtime field definition object.\n\nYou can update following fields:\n\n- `type`\n- `script`\n" } } }, @@ -589,6 +705,16 @@ } } } + }, + "400": { + "description": "Bad request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/400_response" + } + } + } } } }, @@ -651,6 +777,16 @@ } } } + }, + "400": { + "description": "Bad request", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/400_response" + } + } + } } }, "servers": [ @@ -1897,6 +2033,16 @@ "refresh_fields": true } }, + "update_field_metadata_request": { + "summary": "Set popularity count for field foo.", + "value": { + "fields": { + "foo": { + "count": 123 + } + } + } + }, "create_runtime_field_request": { "summary": "Create a runtime field.", "value": { @@ -1909,6 +2055,17 @@ } } }, + "create_runtime_field_response": { + "summary": "The API returns created runtime field object array and updated data view object.", + "value": { + "data_view": { + "...": null + }, + "fields": [ + "..." + ] + } + }, "get_runtime_field_response": { "summary": "The get runtime field API returns a JSON object that contains information about the runtime field (`hour_of_day`) and the data view (`d3d7af60-4c81-11e8-b3d7-01146121b73d`).", "value": { @@ -2551,38 +2708,29 @@ } } }, - "parameters": { - "kbn_xsrf": { - "schema": { - "type": "string" - }, - "in": "header", - "name": "kbn-xsrf", - "description": "Cross-site request forgery protection", - "required": true - }, - "view_id": { - "in": "path", - "name": "viewId", - "description": "An identifier for the data view.", - "required": true, - "schema": { - "type": "string", - "example": "ff959d40-b880-11e8-a6d9-e546fe2bba5f" + "schemas": { + "400_response": { + "title": "Bad request", + "type": "object", + "required": [ + "statusCode", + "error", + "message" + ], + "properties": { + "statusCode": { + "type": "number", + "example": 400 + }, + "error": { + "type": "string", + "example": "Bad Request" + }, + "message": { + "type": "string" + } } }, - "field_name": { - "in": "path", - "name": "fieldName", - "description": "The name of the runtime field.", - "required": true, - "schema": { - "type": "string", - "example": "hour_of_day" - } - } - }, - "schemas": { "allownoindex": { "type": "boolean", "description": "Allows the data view saved object to exist before the data is available." @@ -2746,28 +2894,6 @@ } } }, - "400_response": { - "title": "Bad request", - "type": "object", - "required": [ - "statusCode", - "error", - "message" - ], - "properties": { - "statusCode": { - "type": "number", - "example": 400 - }, - "error": { - "type": "string", - "example": "Bad Request" - }, - "message": { - "type": "string" - } - } - }, "404_response": { "type": "object", "properties": { @@ -2840,16 +2966,36 @@ "default": false } } + } + }, + "parameters": { + "kbn_xsrf": { + "schema": { + "type": "string" + }, + "in": "header", + "name": "kbn-xsrf", + "description": "Cross-site request forgery protection", + "required": true }, - "create_runtime_field_response": { - "summary": "The API returns created runtime field object array and updated data view object.", - "value": { - "data_view": { - "...": null - }, - "fields": [ - "..." - ] + "view_id": { + "in": "path", + "name": "viewId", + "description": "An identifier for the data view.", + "required": true, + "schema": { + "type": "string", + "example": "ff959d40-b880-11e8-a6d9-e546fe2bba5f" + } + }, + "field_name": { + "in": "path", + "name": "fieldName", + "description": "The name of the runtime field.", + "required": true, + "schema": { + "type": "string", + "example": "hour_of_day" } } } diff --git a/src/plugins/data_views/docs/openapi/bundled.yaml b/src/plugins/data_views/docs/openapi/bundled.yaml index 7fa381a6a3d02..2fa7eb1cd1550 100644 --- a/src/plugins/data_views/docs/openapi/bundled.yaml +++ b/src/plugins/data_views/docs/openapi/bundled.yaml @@ -54,6 +54,12 @@ paths: examples: getAllDataViewsResponse: $ref: '#/components/examples/get_data_views_response' + '400': + description: Bad request + content: + application/json: + schema: + $ref: '#/components/schemas/400_response' servers: - url: https://localhost:5601 /api/data_views/data_view: @@ -174,6 +180,52 @@ paths: - url: https://localhost:5601 servers: - url: https://localhost:5601 + /api/data_views/data_view/{viewId}/fields: + post: + summary: Update fields presentation metadata such as count, customLabel and format. + operationId: updateFieldsMetadata + description: | + This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features. You can update multiple fields in one request. Updates are merged with persisted metadata. To remove existing metadata, specify null as the value. + tags: + - data views + parameters: + - $ref: '#/components/parameters/kbn_xsrf' + - $ref: '#/components/parameters/view_id' + requestBody: + required: true + content: + application/json: + schema: + type: object + required: + - fields + properties: + fields: + description: The field object. + type: object + examples: + updateFieldsMetadataRequest: + $ref: '#/components/examples/update_field_metadata_request' + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + properties: + acknowledged: + type: boolean + '400': + description: Bad request + content: + application/json: + schema: + $ref: '#/components/schemas/400_response' + servers: + - url: https://localhost:5601 + servers: + - url: https://localhost:5601 /api/data_views/data_view/{viewId}/runtime_field: post: summary: Creates a runtime field. @@ -184,48 +236,62 @@ paths: - data views parameters: - $ref: '#/components/parameters/kbn_xsrf' + - $ref: '#/components/parameters/view_id' requestBody: required: true content: application/json: schema: type: object + required: + - name + - runtimeField properties: - data_view_id: - description: The ID of the data view. - type: string - required: true - space_id: - description: An identifier for the space. If space_id is not provided in the URL, the default space is used. + name: type: string - required: false + description: | + The name for a runtime field. + runtimeField: + type: object + description: | + The runtime field definition object. examples: createRuntimeFieldRequest: $ref: '#/components/examples/create_runtime_field_request' put: summary: Create or update an existing runtime field. - operationId: updateRuntimeField + operationId: createUpdateRuntimeField description: | This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features. tags: - data views parameters: - $ref: '#/components/parameters/kbn_xsrf' + - name: viewId + in: path + description: | + The ID of the data view fields you want to update. + required: true + schema: + type: string requestBody: required: true content: application/json: schema: type: object + required: + - name + - runtimeField properties: - data_view_id: - description: The ID of the data view. - type: string - required: true - space_id: - description: An identifier for the space. If space_id is not provided in the URL, the default space is used. + name: type: string - required: false + description: | + The name for a runtime field. + runtimeField: + type: object + description: | + The runtime field definition object. examples: updateRuntimeFieldRequest: $ref: '#/components/examples/create_runtime_field_request' @@ -235,7 +301,15 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/create_runtime_field_response' + type: object + properties: + data_view: + type: object + fields: + type: array + examples: + createRuntimeFieldResponse: + $ref: '#/components/examples/create_runtime_field_response' '400': description: Bad request content: @@ -315,13 +389,18 @@ paths: application/json: schema: type: object + required: + - runtimeField properties: - data_view: + runtimeField: type: object - fields: - type: array - items: - type: object + description: | + The runtime field definition object. + + You can update following fields: + + - `type` + - `script` examples: updateRuntimeFieldRequest: $ref: '#/components/examples/update_runtime_field_request' @@ -359,6 +438,12 @@ paths: examples: getDefaultDataViewResponse: $ref: '#/components/examples/get_default_data_view_response' + '400': + description: Bad request + content: + application/json: + schema: + $ref: '#/components/schemas/400_response' post: summary: Sets the default data view identifier. operationId: setDefaultDatailView @@ -400,6 +485,12 @@ paths: properties: acknowledged: type: boolean + '400': + description: Bad request + content: + application/json: + schema: + $ref: '#/components/schemas/400_response' servers: - url: https://localhost:5601 servers: @@ -1381,6 +1472,12 @@ components: allowNoIndex: false name: Kibana Sample Data eCommerce refresh_fields: true + update_field_metadata_request: + summary: Set popularity count for field foo. + value: + fields: + foo: + count: 123 create_runtime_field_request: summary: Create a runtime field. value: @@ -1389,6 +1486,13 @@ components: type: long script: source: emit(doc["foo"].value) + create_runtime_field_response: + summary: The API returns created runtime field object array and updated data view object. + value: + data_view: + ...: null + fields: + - ... get_runtime_field_response: summary: The get runtime field API returns a JSON object that contains information about the runtime field (`hour_of_day`) and the data view (`d3d7af60-4c81-11e8-b3d7-01146121b73d`). value: @@ -1903,31 +2007,23 @@ components: value: data_view_id: ff959d40-b880-11e8-a6d9-e546fe2bba5f force: true - parameters: - kbn_xsrf: - schema: - type: string - in: header - name: kbn-xsrf - description: Cross-site request forgery protection - required: true - view_id: - in: path - name: viewId - description: An identifier for the data view. - required: true - schema: - type: string - example: ff959d40-b880-11e8-a6d9-e546fe2bba5f - field_name: - in: path - name: fieldName - description: The name of the runtime field. - required: true - schema: - type: string - example: hour_of_day schemas: + 400_response: + title: Bad request + type: object + required: + - statusCode + - error + - message + properties: + statusCode: + type: number + example: 400 + error: + type: string + example: Bad Request + message: + type: string allownoindex: type: boolean description: Allows the data view saved object to exist before the data is available. @@ -2042,22 +2138,6 @@ components: version: type: string example: WzQ2LDJd - 400_response: - title: Bad request - type: object - required: - - statusCode - - error - - message - properties: - statusCode: - type: number - example: 400 - error: - type: string - example: Bad Request - message: - type: string 404_response: type: object properties: @@ -2109,10 +2189,27 @@ components: type: boolean description: Reloads the data view fields after the data view is updated. default: false - create_runtime_field_response: - summary: The API returns created runtime field object array and updated data view object. - value: - data_view: - ...: null - fields: - - ... + parameters: + kbn_xsrf: + schema: + type: string + in: header + name: kbn-xsrf + description: Cross-site request forgery protection + required: true + view_id: + in: path + name: viewId + description: An identifier for the data view. + required: true + schema: + type: string + example: ff959d40-b880-11e8-a6d9-e546fe2bba5f + field_name: + in: path + name: fieldName + description: The name of the runtime field. + required: true + schema: + type: string + example: hour_of_day diff --git a/src/plugins/data_views/docs/openapi/components/examples/create_runtime_field_response.yaml b/src/plugins/data_views/docs/openapi/components/examples/create_runtime_field_response.yaml index ef23d12a835dd..281aeef90aa54 100644 --- a/src/plugins/data_views/docs/openapi/components/examples/create_runtime_field_response.yaml +++ b/src/plugins/data_views/docs/openapi/components/examples/create_runtime_field_response.yaml @@ -1,6 +1,6 @@ summary: The API returns created runtime field object array and updated data view object. value: - { + { "data_view": {...}, "fields": [...] - } \ No newline at end of file + } \ No newline at end of file diff --git a/src/plugins/data_views/docs/openapi/components/examples/update_field_metadata_request.yaml b/src/plugins/data_views/docs/openapi/components/examples/update_field_metadata_request.yaml new file mode 100644 index 0000000000000..ffa1eba13150f --- /dev/null +++ b/src/plugins/data_views/docs/openapi/components/examples/update_field_metadata_request.yaml @@ -0,0 +1,9 @@ +summary: Set popularity count for field foo. +value: + { + "fields": { + "foo": { + "count": 123 + } + } +} \ No newline at end of file diff --git a/src/plugins/data_views/docs/openapi/entrypoint.yaml b/src/plugins/data_views/docs/openapi/entrypoint.yaml index 3a45da60e6f92..15a9a0f20dd3f 100644 --- a/src/plugins/data_views/docs/openapi/entrypoint.yaml +++ b/src/plugins/data_views/docs/openapi/entrypoint.yaml @@ -22,8 +22,8 @@ paths: $ref: 'paths/api@data_views@data_view.yaml' '/api/data_views/data_view/{viewId}': $ref: 'paths/api@data_views@data_view@{viewid}.yaml' -# '/api/data_views/data_view/{viewId}/fields': -# $ref: 'paths/api@data_views@data_view@{viewid}@fields.yaml' + '/api/data_views/data_view/{viewId}/fields': + $ref: 'paths/api@data_views@data_view@{viewid}@fields.yaml' '/api/data_views/data_view/{viewId}/runtime_field': $ref: 'paths/api@data_views@data_view@{viewid}@runtime_field.yaml' '/api/data_views/data_view/{viewId}/runtime_field/{fieldName}': diff --git a/src/plugins/data_views/docs/openapi/paths/api@data_views.yaml b/src/plugins/data_views/docs/openapi/paths/api@data_views.yaml index 9a3278f5ecbac..9ff2b230726aa 100644 --- a/src/plugins/data_views/docs/openapi/paths/api@data_views.yaml +++ b/src/plugins/data_views/docs/openapi/paths/api@data_views.yaml @@ -33,5 +33,11 @@ get: examples: getAllDataViewsResponse: $ref: '../components/examples/get_data_views_response.yaml' + '400': + description: Bad request + content: + application/json: + schema: + $ref: '../components/schemas/400_response.yaml' servers: - url: https://localhost:5601 diff --git a/src/plugins/data_views/docs/openapi/paths/api@data_views@data_view@{viewid}@fields.yaml b/src/plugins/data_views/docs/openapi/paths/api@data_views@data_view@{viewid}@fields.yaml new file mode 100644 index 0000000000000..daca62afaac3a --- /dev/null +++ b/src/plugins/data_views/docs/openapi/paths/api@data_views@data_view@{viewid}@fields.yaml @@ -0,0 +1,46 @@ +post: + summary: Update fields presentation metadata such as count, customLabel and format. + operationId: updateFieldsMetadata + description: > + This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features. You can update multiple fields in one request. Updates are merged with persisted metadata. To remove existing metadata, specify null as the value. + tags: + - data views + parameters: + - $ref: '../components/headers/kbn_xsrf.yaml' + - $ref: '../components/parameters/view_id.yaml' + requestBody: + required: true + content: + application/json: + schema: + type: object + required: + - fields + properties: + fields: + description: The field object. + type: object + examples: + updateFieldsMetadataRequest: + $ref: '../components/examples/update_field_metadata_request.yaml' + responses: + '200': + description: Indicates a successful call. + content: + application/json: + schema: + type: object + properties: + acknowledged: + type: boolean + '400': + description: Bad request + content: + application/json: + schema: + $ref: '../components/schemas/400_response.yaml' + servers: + - url: https://localhost:5601 + +servers: + - url: https://localhost:5601 \ No newline at end of file diff --git a/src/plugins/data_views/docs/openapi/paths/api@data_views@data_view@{viewid}@runtime_field.yaml b/src/plugins/data_views/docs/openapi/paths/api@data_views@data_view@{viewid}@runtime_field.yaml index 058c9aad774be..5b4c97e331208 100644 --- a/src/plugins/data_views/docs/openapi/paths/api@data_views@data_view@{viewid}@runtime_field.yaml +++ b/src/plugins/data_views/docs/openapi/paths/api@data_views@data_view@{viewid}@runtime_field.yaml @@ -7,49 +7,63 @@ post: - data views parameters: - $ref: '../components/headers/kbn_xsrf.yaml' + - $ref: '../components/parameters/view_id.yaml' requestBody: required: true content: application/json: schema: type: object + required: + - name + - runtimeField properties: - data_view_id: - description: The ID of the data view. + name: type: string - required: true - space_id: - description: An identifier for the space. If space_id is not provided in the URL, the default space is used. - type: string - required: false + description: | + The name for a runtime field. + runtimeField: + type: object + description: | + The runtime field definition object. examples: createRuntimeFieldRequest: $ref: '../components/examples/create_runtime_field_request.yaml' put: summary: Create or update an existing runtime field. - operationId: updateRuntimeField + operationId: createUpdateRuntimeField description: > This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features. tags: - data views parameters: - $ref: '../components/headers/kbn_xsrf.yaml' + - name: viewId + in: path + description: | + The ID of the data view fields you want to update. + required: true + schema: + type: string requestBody: required: true content: application/json: schema: type: object + required: + - name + - runtimeField properties: - data_view_id: - description: The ID of the data view. - type: string - required: true - space_id: - description: An identifier for the space. If space_id is not provided in the URL, the default space is used. + name: type: string - required: false + description: | + The name for a runtime field. + runtimeField: + type: object + description: | + The runtime field definition object. examples: updateRuntimeFieldRequest: $ref: '../components/examples/create_runtime_field_request.yaml' @@ -59,7 +73,15 @@ put: content: application/json: schema: - $ref: '../components/examples/create_runtime_field_response.yaml' + type: object + properties: + data_view: + type: object + fields: + type: array + examples: + createRuntimeFieldResponse: + $ref: '../components/examples/create_runtime_field_response.yaml' '400': description: Bad request content: diff --git a/src/plugins/data_views/docs/openapi/paths/api@data_views@data_view@{viewid}@runtime_field@{fieldname}.yaml b/src/plugins/data_views/docs/openapi/paths/api@data_views@data_view@{viewid}@runtime_field@{fieldname}.yaml index 55f1e14dafb8a..f2da3921891d4 100644 --- a/src/plugins/data_views/docs/openapi/paths/api@data_views@data_view@{viewid}@runtime_field@{fieldname}.yaml +++ b/src/plugins/data_views/docs/openapi/paths/api@data_views@data_view@{viewid}@runtime_field@{fieldname}.yaml @@ -68,13 +68,18 @@ post: application/json: schema: type: object + required: + - runtimeField properties: - data_view: + runtimeField: type: object - fields: - type: array - items: - type: object + description: | + The runtime field definition object. + + You can update following fields: + + - `type` + - `script` examples: updateRuntimeFieldRequest: $ref: '../components/examples/update_runtime_field_request.yaml' diff --git a/src/plugins/data_views/docs/openapi/paths/api@data_views@default.yaml b/src/plugins/data_views/docs/openapi/paths/api@data_views@default.yaml index cf1b3151380a9..8d7c92e164162 100644 --- a/src/plugins/data_views/docs/openapi/paths/api@data_views@default.yaml +++ b/src/plugins/data_views/docs/openapi/paths/api@data_views@default.yaml @@ -18,7 +18,12 @@ get: examples: getDefaultDataViewResponse: $ref: '../components/examples/get_default_data_view_response.yaml' - + '400': + description: Bad request + content: + application/json: + schema: + $ref: '../components/schemas/400_response.yaml' post: summary: Sets the default data view identifier. operationId: setDefaultDatailView @@ -60,6 +65,12 @@ post: properties: acknowledged: type: boolean + '400': + description: Bad request + content: + application/json: + schema: + $ref: '../components/schemas/400_response.yaml' servers: - url: https://localhost:5601 diff --git a/src/plugins/data_views/public/data_views_service_public.ts b/src/plugins/data_views/public/data_views_service_public.ts index 30625b1b59da5..73f4fb6987fa0 100644 --- a/src/plugins/data_views/public/data_views_service_public.ts +++ b/src/plugins/data_views/public/data_views_service_public.ts @@ -29,6 +29,7 @@ export interface DataViewsServicePublicDeps extends DataViewsServiceDeps { showAllIndices?: boolean; isRollupIndex: (indexName: string) => boolean; }) => Promise; + scriptedFieldsEnabled: boolean; } /** @@ -44,6 +45,7 @@ export class DataViewsServicePublic extends DataViewsService { isRollupIndex: (indexName: string) => boolean; }) => Promise; public hasData: HasDataService; + public readonly scriptedFieldsEnabled: boolean; /** * Constructor @@ -55,5 +57,6 @@ export class DataViewsServicePublic extends DataViewsService { this.getCanSaveSync = deps.getCanSaveSync; this.hasData = deps.hasData; this.getIndices = deps.getIndices; + this.scriptedFieldsEnabled = deps.scriptedFieldsEnabled; } } diff --git a/src/plugins/data_views/public/index.ts b/src/plugins/data_views/public/index.ts index 777e386189d62..f690552b5a147 100644 --- a/src/plugins/data_views/public/index.ts +++ b/src/plugins/data_views/public/index.ts @@ -6,6 +6,8 @@ * Side Public License, v 1. */ +import { PluginInitializerContext } from '@kbn/core/public'; + export { ILLEGAL_CHARACTERS_KEY, CONTAINS_SPACES_KEY, @@ -55,8 +57,8 @@ export { UiSettingsPublicToCommon } from './ui_settings_wrapper'; import { DataViewsPublicPlugin } from './plugin'; -export function plugin() { - return new DataViewsPublicPlugin(); +export function plugin(initializerContext: PluginInitializerContext) { + return new DataViewsPublicPlugin(initializerContext); } export type { diff --git a/src/plugins/data_views/public/plugin.ts b/src/plugins/data_views/public/plugin.ts index 119d785139c90..98558c803da10 100644 --- a/src/plugins/data_views/public/plugin.ts +++ b/src/plugins/data_views/public/plugin.ts @@ -6,9 +6,10 @@ * Side Public License, v 1. */ -import { CoreSetup, CoreStart, Plugin } from '@kbn/core/public'; +import { CoreSetup, CoreStart, Plugin, PluginInitializerContext } from '@kbn/core/public'; import { i18n } from '@kbn/i18n'; import { getIndexPatternLoad } from './expressions'; +import type { ClientConfigType } from '../common/types'; import { DataViewsPublicPluginSetup, DataViewsPublicPluginStart, @@ -40,6 +41,8 @@ export class DataViewsPublicPlugin { private readonly hasData = new HasData(); + constructor(private readonly initializerContext: PluginInitializerContext) {} + public setup( core: CoreSetup, { expressions, contentManagement }: DataViewsPublicSetupDependencies @@ -74,6 +77,8 @@ export class DataViewsPublicPlugin 10000 ); + const config = this.initializerContext.config.get(); + return new DataViewsServicePublic({ hasData: this.hasData.start(core), uiSettings: new UiSettingsPublicToCommon(uiSettings), @@ -91,6 +96,7 @@ export class DataViewsPublicPlugin getCanSaveAdvancedSettings: () => Promise.resolve(application.capabilities.advancedSettings.save === true), getIndices: (props) => getIndices({ ...props, http: core.http }), + scriptedFieldsEnabled: config.scriptedFieldsEnabled === false ? false : true, // accounting for null value }); } diff --git a/src/plugins/data_views/public/types.ts b/src/plugins/data_views/public/types.ts index c30aebe9243e0..fde0828748f93 100644 --- a/src/plugins/data_views/public/types.ts +++ b/src/plugins/data_views/public/types.ts @@ -120,6 +120,7 @@ export interface DataViewsServicePublic extends DataViewsServicePublicMethods { showAllIndices?: boolean; isRollupIndex: (indexName: string) => boolean; }) => Promise; + scriptedFieldsEnabled: boolean; } export type DataViewsContract = DataViewsServicePublic; diff --git a/src/plugins/data_views/server/data_views_service_factory.ts b/src/plugins/data_views/server/data_views_service_factory.ts index ac27ad0bc8093..e5324b2eb02d2 100644 --- a/src/plugins/data_views/server/data_views_service_factory.ts +++ b/src/plugins/data_views/server/data_views_service_factory.ts @@ -25,6 +25,7 @@ interface DataViewsServiceFactoryDeps { uiSettings: UiSettingsServiceStart; fieldFormats: FieldFormatsStart; capabilities: CoreStart['capabilities']; + scriptedFieldsEnabled: boolean; rollupsEnabled: boolean; } @@ -70,5 +71,6 @@ export const dataViewsServiceFactory = (deps: DataViewsServiceFactoryDeps) => : request ? (await capabilities.resolveCapabilities(request)).advancedSettings.save === true : false, + scriptedFieldsEnabled: deps.scriptedFieldsEnabled, }); }; diff --git a/src/plugins/data_views/server/index.ts b/src/plugins/data_views/server/index.ts index 33e93df3be894..a489feabbf935 100644 --- a/src/plugins/data_views/server/index.ts +++ b/src/plugins/data_views/server/index.ts @@ -6,6 +6,8 @@ * Side Public License, v 1. */ +import { schema, TypeOf } from '@kbn/config-schema'; +import type { PluginConfigDescriptor } from '@kbn/core/server'; export { getFieldByName, findIndexPatternById } from './utils'; export type { FieldDescriptor, RollupIndexCapability } from './fetcher'; export { IndexPatternsFetcher, getCapabilitiesForRollupIndices } from './fetcher'; @@ -36,6 +38,24 @@ export type { }; export { DataViewsServerPlugin as Plugin }; +const configSchema = schema.object({ + scriptedFieldsEnabled: schema.conditional( + schema.contextRef('serverless'), + true, + schema.boolean({ defaultValue: false }), + schema.never() + ), +}); + +type ConfigType = TypeOf; + +export const config: PluginConfigDescriptor = { + schema: configSchema, + exposeToBrowser: { + scriptedFieldsEnabled: true, + }, +}; + export { SERVICE_PATH, SERVICE_PATH_LEGACY, diff --git a/src/plugins/data_views/server/mocks.ts b/src/plugins/data_views/server/mocks.ts index 82595f7dc51a1..1e142d2e1650b 100644 --- a/src/plugins/data_views/server/mocks.ts +++ b/src/plugins/data_views/server/mocks.ts @@ -12,6 +12,7 @@ export function createIndexPatternsStartMock() { const dataViewsServiceFactory = jest.fn().mockResolvedValue({ get: jest.fn() }); return { dataViewsServiceFactory, + getScriptedFieldsEnabled: jest.fn().mockReturnValue(true), }; } diff --git a/src/plugins/data_views/server/plugin.ts b/src/plugins/data_views/server/plugin.ts index c96de2e4294f0..2be269b1a7636 100644 --- a/src/plugins/data_views/server/plugin.ts +++ b/src/plugins/data_views/server/plugin.ts @@ -15,6 +15,7 @@ import { getIndexPatternLoad } from './expressions'; import { registerIndexPatternsUsageCollector } from './register_index_pattern_usage_collection'; import { createScriptedFieldsDeprecationsConfig } from './deprecations'; import { DATA_VIEW_SAVED_OBJECT_TYPE, LATEST_VERSION } from '../common'; +import type { ClientConfigType } from '../common/types'; import { DataViewsServerPluginSetup, DataViewsServerPluginStart, @@ -35,7 +36,7 @@ export class DataViewsServerPlugin private readonly logger: Logger; private rollupsEnabled: boolean = false; - constructor(initializerContext: PluginInitializerContext) { + constructor(private readonly initializerContext: PluginInitializerContext) { this.logger = initializerContext.logger.get('dataView'); } @@ -75,16 +76,21 @@ export class DataViewsServerPlugin { uiSettings, capabilities }: CoreStart, { fieldFormats }: DataViewsServerPluginStartDependencies ) { + const config = this.initializerContext.config.get(); + const scriptedFieldsEnabled = config.scriptedFieldsEnabled === false ? false : true; // accounting for null value + const serviceFactory = dataViewsServiceFactory({ logger: this.logger.get('indexPatterns'), uiSettings, fieldFormats, capabilities, + scriptedFieldsEnabled, rollupsEnabled: this.rollupsEnabled, }); return { dataViewsServiceFactory: serviceFactory, + getScriptedFieldsEnabled: () => scriptedFieldsEnabled, }; } diff --git a/src/plugins/data_views/server/types.ts b/src/plugins/data_views/server/types.ts index d595f6e04b275..6bf438dc634bd 100644 --- a/src/plugins/data_views/server/types.ts +++ b/src/plugins/data_views/server/types.ts @@ -48,6 +48,10 @@ export interface DataViewsServerPluginStart { * Returns a DataViews service instance */ dataViewsServiceFactory: ServiceFactory; + /** + * + */ + getScriptedFieldsEnabled: () => boolean; } /** diff --git a/src/plugins/discover/public/components/doc_table/components/table_row.tsx b/src/plugins/discover/public/components/doc_table/components/table_row.tsx index a38e082778a68..e1c00ec3397c0 100644 --- a/src/plugins/discover/public/components/doc_table/components/table_row.tsx +++ b/src/plugins/discover/public/components/doc_table/components/table_row.tsx @@ -186,7 +186,9 @@ export const TableRow = ({ // We should improve this and show a helpful tooltip why the filter buttons are not // there/disabled when there are ignored values. const isFilterable = Boolean( - mapping(column)?.filterable && filter && !row.raw._ignored?.includes(column) + mapping(column)?.filterable && + typeof filter === 'function' && + !row.raw._ignored?.includes(column) ); rowCells.push( { { _property: '_index', addInclusiveFilterButton: true, - collapseBtn: false, noMappingWarning: false, toggleColumnButton: true, underscoreWarning: false, @@ -135,7 +134,6 @@ describe('DocViewTable at Discover', () => { { _property: 'message', addInclusiveFilterButton: false, - collapseBtn: true, noMappingWarning: false, toggleColumnButton: true, underscoreWarning: false, @@ -143,7 +141,6 @@ describe('DocViewTable at Discover', () => { { _property: '_underscore', addInclusiveFilterButton: false, - collapseBtn: false, noMappingWarning: false, toggleColumnButton: true, underScoreWarning: true, @@ -151,7 +148,6 @@ describe('DocViewTable at Discover', () => { { _property: 'scripted', addInclusiveFilterButton: false, - collapseBtn: false, noMappingWarning: false, toggleColumnButton: true, underScoreWarning: false, @@ -159,7 +155,6 @@ describe('DocViewTable at Discover', () => { { _property: 'not_mapped', addInclusiveFilterButton: false, - collapseBtn: false, noMappingWarning: true, toggleColumnButton: true, underScoreWarning: false, @@ -171,26 +166,21 @@ describe('DocViewTable at Discover', () => { expect(rowComponent.length).toBe(1); }); - ( - [ - 'addInclusiveFilterButton', - 'collapseBtn', - 'toggleColumnButton', - 'underscoreWarning', - ] as const - ).forEach((element) => { - const elementExist = check[element]; - - if (typeof elementExist === 'boolean') { - const btn = findTestSubject(rowComponent, element, '^='); - - it(`renders ${element} for '${check._property}' correctly`, () => { - const disabled = btn.length ? btn.props().disabled : true; - const clickAble = btn.length && !disabled ? true : false; - expect(clickAble).toBe(elementExist); - }); + (['addInclusiveFilterButton', 'toggleColumnButton', 'underscoreWarning'] as const).forEach( + (element) => { + const elementExist = check[element]; + + if (typeof elementExist === 'boolean') { + const btn = findTestSubject(rowComponent, element, '^='); + + it(`renders ${element} for '${check._property}' correctly`, () => { + const disabled = btn.length ? btn.props().disabled : true; + const clickAble = btn.length && !disabled ? true : false; + expect(clickAble).toBe(elementExist); + }); + } } - }); + ); }); }); @@ -236,17 +226,6 @@ describe('DocViewTable at Discover Context', () => { btn.simulate('click'); expect(props.filter).toBeCalled(); }); - - it(`renders functional collapse button`, () => { - const btn = findTestSubject(component, `collapseBtn`); - const html = component.html(); - - expect(component.html()).toContain('dscTruncateByHeight'); - - expect(btn.length).toBe(1); - btn.simulate('click'); - expect(component.html() !== html).toBeTruthy(); - }); }); describe('DocViewTable at Discover Doc', () => { diff --git a/src/plugins/discover/public/services/doc_views/components/doc_viewer_table/legacy/table_row_btn_collapse.tsx b/src/plugins/discover/public/services/doc_views/components/doc_viewer_table/legacy/table_row_btn_collapse.tsx deleted file mode 100644 index 3322d17059136..0000000000000 --- a/src/plugins/discover/public/services/doc_views/components/doc_viewer_table/legacy/table_row_btn_collapse.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0 and the Server Side Public License, v 1; you may not use this file except - * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. - */ - -import React from 'react'; -import { i18n } from '@kbn/i18n'; -import { EuiToolTip, EuiButtonIcon } from '@elastic/eui'; - -export interface Props { - onClick: () => void; - isCollapsed: boolean; -} - -export function DocViewTableRowBtnCollapse({ onClick, isCollapsed }: Props) { - const label = i18n.translate('discover.docViews.table.toggleFieldDetails', { - defaultMessage: 'Toggle field details', - }); - return ( - - onClick()} - iconType={isCollapsed ? 'arrowRight' : 'arrowDown'} - iconSize={'s'} - /> - - ); -} diff --git a/src/plugins/discover/public/services/doc_views/components/doc_viewer_table/table_cell_value.tsx b/src/plugins/discover/public/services/doc_views/components/doc_viewer_table/table_cell_value.tsx index 85ce340bf568b..d1ec9d369439f 100644 --- a/src/plugins/discover/public/services/doc_views/components/doc_viewer_table/table_cell_value.tsx +++ b/src/plugins/discover/public/services/doc_views/components/doc_viewer_table/table_cell_value.tsx @@ -9,13 +9,10 @@ import { css } from '@emotion/react'; import { EuiFlexGroup, EuiFlexItem, EuiIcon, EuiTextColor, EuiToolTip } from '@elastic/eui'; import classNames from 'classnames'; -import React, { Fragment, useState } from 'react'; +import React, { Fragment } from 'react'; import { i18n } from '@kbn/i18n'; import { IgnoredReason } from '@kbn/discover-utils'; import { FieldRecord } from './table'; -import { DocViewTableRowBtnCollapse } from './legacy/table_row_btn_collapse'; - -const COLLAPSE_LINE_LENGTH = 350; interface IgnoreWarningProps { reason: IgnoredReason; @@ -95,29 +92,14 @@ export const TableFieldValue = ({ rawValue, ignoreReason, }: TableFieldValueProps) => { - const [fieldOpen, setFieldOpen] = useState(false); - - const value = String(rawValue); - const isCollapsible = value.length > COLLAPSE_LINE_LENGTH; - const isCollapsed = isCollapsible && !fieldOpen; - const valueClassName = classNames({ // eslint-disable-next-line @typescript-eslint/naming-convention kbnDocViewer__value: true, - dscTruncateByHeight: isCollapsible && isCollapsed, }); - - const onToggleCollapse = () => setFieldOpen((fieldOpenPrev) => !fieldOpenPrev); - return ( - {(isCollapsible || ignoreReason) && ( + {ignoreReason && ( - {isCollapsible && ( - - - - )} {ignoreReason && ( diff --git a/src/plugins/embeddable/common/types.ts b/src/plugins/embeddable/common/types.ts index bbf57603d0c9b..85cfc42301f6a 100644 --- a/src/plugins/embeddable/common/types.ts +++ b/src/plugins/embeddable/common/types.ts @@ -22,6 +22,7 @@ export enum ViewMode { } export type EmbeddableInput = { + version?: string; viewMode?: ViewMode; title?: string; description?: string; @@ -72,7 +73,9 @@ export type EmbeddableInput = { executionContext?: KibanaExecutionContext; }; -export interface PanelState { +export interface PanelState< + E extends EmbeddableInput & { id: string } = { id: string; version?: string } +> { // The type of embeddable in this panel. Will be used to find the factory in which to // load the embeddable. type: string; @@ -80,9 +83,6 @@ export interface PanelState & { id: string }; - - // allows individual embeddable panels to maintain versioning information separate from the main Kibana version - version?: string; } export type EmbeddableStateWithType = EmbeddableInput & { type: string }; diff --git a/src/plugins/embeddable/public/index.ts b/src/plugins/embeddable/public/index.ts index 42244c70ed9c6..91e6efcdc41c8 100644 --- a/src/plugins/embeddable/public/index.ts +++ b/src/plugins/embeddable/public/index.ts @@ -80,6 +80,7 @@ export { shouldRefreshFilterCompareOptions, PANEL_HOVER_TRIGGER, panelHoverTrigger, + runEmbeddableFactoryMigrations, } from './lib'; export { EmbeddablePanel } from './embeddable_panel'; diff --git a/src/plugins/embeddable/public/lib/containers/container.ts b/src/plugins/embeddable/public/lib/containers/container.ts index a53cfb8725fac..fceae56cf4b96 100644 --- a/src/plugins/embeddable/public/lib/containers/container.ts +++ b/src/plugins/embeddable/public/lib/containers/container.ts @@ -37,8 +37,8 @@ import { PanelState, EmbeddableContainerSettings, } from './i_container'; -import { PanelNotFoundError, EmbeddableFactoryNotFoundError } from '../errors'; import { EmbeddableStart } from '../../plugin'; +import { PanelNotFoundError, EmbeddableFactoryNotFoundError } from '../errors'; import { isSavedObjectEmbeddableInput } from '../../../common/lib/saved_object_embeddable'; const getKeys = (o: T): Array => Object.keys(o) as Array; @@ -345,6 +345,7 @@ export abstract class Container< explicitInput: { ...explicitInput, id: embeddableId, + version: factory.latestVersion, } as TEmbeddableInput, }; } @@ -491,6 +492,7 @@ export abstract class Container< } else if (embeddable === undefined) { this.removeEmbeddable(panel.explicitInput.id); } + return embeddable; } diff --git a/src/plugins/embeddable/public/lib/embeddables/default_embeddable_factory_provider.ts b/src/plugins/embeddable/public/lib/embeddables/default_embeddable_factory_provider.ts index e7b8893848c93..472840208e139 100644 --- a/src/plugins/embeddable/public/lib/embeddables/default_embeddable_factory_provider.ts +++ b/src/plugins/embeddable/public/lib/embeddables/default_embeddable_factory_provider.ts @@ -7,11 +7,13 @@ */ import { SavedObjectAttributes } from '@kbn/core/public'; -import { EmbeddableFactoryDefinition } from './embeddable_factory_definition'; -import { EmbeddableInput, EmbeddableOutput, IEmbeddable } from './i_embeddable'; + +import { IContainer } from '..'; import { EmbeddableFactory } from './embeddable_factory'; import { EmbeddableStateWithType } from '../../../common/types'; -import { IContainer } from '..'; +import { EmbeddableFactoryDefinition } from './embeddable_factory_definition'; +import { EmbeddableInput, EmbeddableOutput, IEmbeddable } from './i_embeddable'; +import { runEmbeddableFactoryMigrations } from '../factory_migrations/run_factory_migrations'; export const defaultEmbeddableFactoryProvider = < I extends EmbeddableInput = EmbeddableInput, @@ -21,7 +23,14 @@ export const defaultEmbeddableFactoryProvider = < >( def: EmbeddableFactoryDefinition ): EmbeddableFactory => { + if (def.migrations && !def.latestVersion) { + throw new Error( + 'To run clientside Embeddable migrations a latest version key is required on the factory' + ); + } + const factory: EmbeddableFactory = { + latestVersion: def.latestVersion, isContainerType: def.isContainerType ?? false, canCreateNew: def.canCreateNew ? def.canCreateNew.bind(def) : () => true, getDefaultInput: def.getDefaultInput ? def.getDefaultInput.bind(def) : () => ({}), @@ -33,7 +42,12 @@ export const defaultEmbeddableFactoryProvider = < : (savedObjectId: string, input: Partial, parent?: IContainer) => { throw new Error(`Creation from saved object not supported by type ${def.type}`); }, - create: def.create.bind(def), + create: (...args) => { + const [initialInput, ...otherArgs] = args; + const { input } = runEmbeddableFactoryMigrations(initialInput, def); + const createdEmbeddable = def.create.bind(def)(input as I, ...otherArgs); + return createdEmbeddable; + }, type: def.type, isEditable: def.isEditable.bind(def), getDisplayName: def.getDisplayName.bind(def), diff --git a/src/plugins/embeddable/public/lib/embeddables/embeddable.tsx b/src/plugins/embeddable/public/lib/embeddables/embeddable.tsx index 695c23fa0a2e2..d145bfb3c1ae0 100644 --- a/src/plugins/embeddable/public/lib/embeddables/embeddable.tsx +++ b/src/plugins/embeddable/public/lib/embeddables/embeddable.tsx @@ -94,7 +94,6 @@ export abstract class Embeddable< this.onResetInput(newInput); }); } - this.getOutput$() .pipe( map(({ title }) => title || ''), diff --git a/src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts b/src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts index 0d4aa5f150abc..8f6b51ec41b23 100644 --- a/src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts +++ b/src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts @@ -36,6 +36,14 @@ export interface EmbeddableFactory< >, TSavedObjectAttributes = unknown > extends PersistableState { + /** + * The version of this Embeddable factory. This will be used in the client side migration system + * to ensure that input from any source is compatible with the latest version of this embeddable. + * If the latest version is not defined, all clientside migrations will be skipped. If migrations + * are added to this factory but a latestVersion is not set, an error will be thrown on server start + */ + readonly latestVersion?: string; + // A unique identified for this factory, which will be used to map an embeddable spec to // a factory that can generate an instance of it. readonly type: string; @@ -115,10 +123,8 @@ export interface EmbeddableFactory< ): Promise; /** - * Resolves to undefined if a new Embeddable cannot be directly created and the user will instead be redirected - * elsewhere. - * - * This will likely change in future iterations when we improve in place editing capabilities. + * Creates an Embeddable instance, running the inital input through all registered migrations. Resolves to undefined if a new Embeddable + * cannot be directly created and the user will instead be redirected elsewhere. */ create( initialInput: TEmbeddableInput, diff --git a/src/plugins/embeddable/public/lib/embeddables/embeddable_factory_definition.ts b/src/plugins/embeddable/public/lib/embeddables/embeddable_factory_definition.ts index 06f3a268c9ae5..4c360ffd40eb5 100644 --- a/src/plugins/embeddable/public/lib/embeddables/embeddable_factory_definition.ts +++ b/src/plugins/embeddable/public/lib/embeddables/embeddable_factory_definition.ts @@ -17,7 +17,10 @@ export type EmbeddableFactoryDefinition< T = unknown > = // Required parameters - Pick, 'create' | 'type' | 'isEditable' | 'getDisplayName'> & + Pick< + EmbeddableFactory, + 'create' | 'type' | 'latestVersion' | 'isEditable' | 'getDisplayName' + > & // Optional parameters Partial< Pick< diff --git a/src/plugins/embeddable/public/lib/factory_migrations/run_factory_migrations.test.ts b/src/plugins/embeddable/public/lib/factory_migrations/run_factory_migrations.test.ts new file mode 100644 index 0000000000000..291950d1fa988 --- /dev/null +++ b/src/plugins/embeddable/public/lib/factory_migrations/run_factory_migrations.test.ts @@ -0,0 +1,76 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { EmbeddableInput } from '../embeddables'; +import { runEmbeddableFactoryMigrations } from './run_factory_migrations'; + +describe('Run embeddable factory migrations', () => { + interface TestInputTypeVersion009 extends EmbeddableInput { + version: '0.0.9'; + keyThatAlwaysExists: string; + keyThatGetsRemoved: string; + } + interface TestInputTypeVersion100 extends EmbeddableInput { + version: '1.0.0'; + id: string; + keyThatAlwaysExists: string; + keyThatGetsAdded: string; + } + + const migrations = { + '1.0.0': (input: TestInputTypeVersion009): TestInputTypeVersion100 => { + const newInput: TestInputTypeVersion100 = { + id: input.id, + version: '1.0.0', + keyThatAlwaysExists: input.keyThatAlwaysExists, + keyThatGetsAdded: 'I just got born', + }; + return newInput; + }, + }; + + it('should return the initial input and migrationRun=false if the current version is the latest', () => { + const initialInput: TestInputTypeVersion100 = { + id: 'superId', + version: '1.0.0', + keyThatAlwaysExists: 'Inside Problems', + keyThatGetsAdded: 'Oh my - I just got born', + }; + + const factory = { + latestVersion: '1.0.0', + migrations, + }; + + const result = runEmbeddableFactoryMigrations(initialInput, factory); + + expect(result.input).toBe(initialInput); + expect(result.migrationRun).toBe(false); + }); + + it('should return migrated input and migrationRun=true if version does not match latestVersion', () => { + const initialInput: TestInputTypeVersion009 = { + id: 'superId', + version: '0.0.9', + keyThatAlwaysExists: 'Inside Problems', + keyThatGetsRemoved: 'juvenile plumage', + }; + + const factory = { + latestVersion: '1.0.0', + migrations, + }; + + const result = runEmbeddableFactoryMigrations(initialInput, factory); + + expect(result.migrationRun).toBe(true); + expect(result.input.version).toBe('1.0.0'); + expect((result.input as unknown as TestInputTypeVersion009).keyThatGetsRemoved).toBeUndefined(); + expect(result.input.keyThatGetsAdded).toEqual('I just got born'); + }); +}); diff --git a/src/plugins/embeddable/public/lib/factory_migrations/run_factory_migrations.ts b/src/plugins/embeddable/public/lib/factory_migrations/run_factory_migrations.ts new file mode 100644 index 0000000000000..9bd49eec331e7 --- /dev/null +++ b/src/plugins/embeddable/public/lib/factory_migrations/run_factory_migrations.ts @@ -0,0 +1,46 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { cloneDeep } from 'lodash'; +import compare from 'semver/functions/compare'; + +import { migrateToLatest } from '@kbn/kibana-utils-plugin/common'; +import { EmbeddableFactory, EmbeddableInput } from '../embeddables'; + +/** + * A helper function that migrates an Embeddable Input to its latest version. Note that this function + * only runs the embeddable factory's migrations. + */ +export const runEmbeddableFactoryMigrations = ( + initialInput: { version?: string }, + factory: { migrations?: EmbeddableFactory['migrations']; latestVersion?: string } +): { input: ToType; migrationRun: boolean } => { + if (!factory.latestVersion) { + return { input: initialInput as unknown as ToType, migrationRun: false }; + } + + // any embeddable with no version set is considered to require all clientside migrations so we default to 0.0.0 + const inputVersion = initialInput.version ?? '0.0.0'; + const migrationRun = compare(inputVersion, factory.latestVersion, true) !== 0; + + // return early to avoid extra operations when there are no migrations to run. + if (!migrationRun) return { input: initialInput as unknown as ToType, migrationRun }; + + const factoryMigrations = + typeof factory?.migrations === 'function' ? factory?.migrations() : factory?.migrations || {}; + const migratedInput = migrateToLatest( + factoryMigrations ?? {}, + { + state: cloneDeep(initialInput), + version: inputVersion, + }, + true + ); + migratedInput.version = factory.latestVersion; + return { input: migratedInput as ToType, migrationRun }; +}; diff --git a/src/plugins/embeddable/public/lib/index.ts b/src/plugins/embeddable/public/lib/index.ts index ad25c74ca3ba9..ecf37a506befc 100644 --- a/src/plugins/embeddable/public/lib/index.ts +++ b/src/plugins/embeddable/public/lib/index.ts @@ -15,3 +15,4 @@ export * from './state_transfer'; export * from './reference_or_value_embeddable'; export * from './self_styled_embeddable'; export * from './filterable_embeddable'; +export * from './factory_migrations/run_factory_migrations'; diff --git a/src/plugins/embeddable/public/plugin.test.ts b/src/plugins/embeddable/public/plugin.test.ts index 82d9801503536..743b672bbf588 100644 --- a/src/plugins/embeddable/public/plugin.test.ts +++ b/src/plugins/embeddable/public/plugin.test.ts @@ -25,6 +25,7 @@ test('can set custom embeddable factory provider', async () => { setup.setCustomEmbeddableFactoryProvider(customProvider); setup.registerEmbeddableFactory('test', { type: 'test', + latestVersion: '1.0.0', create: () => Promise.resolve(undefined), getDisplayName: () => 'Test', isEditable: () => Promise.resolve(true), @@ -66,6 +67,7 @@ test('custom embeddable factory provider test for intercepting embeddable creati setup.setCustomEmbeddableFactoryProvider(customProvider); setup.registerEmbeddableFactory('test', { type: 'test', + latestVersion: '1.0.0', create: (input, parent) => Promise.resolve(new HelloWorldEmbeddable(input, parent)), getDisplayName: () => 'Test', isEditable: () => Promise.resolve(true), @@ -98,6 +100,7 @@ describe('embeddable factory', () => { extract: jest.fn().mockImplementation((state) => ({ state, references: [] })), inject: jest.fn().mockImplementation((state) => state), telemetry: jest.fn().mockResolvedValue({}), + latestVersion: '7.11.0', migrations: { '7.11.0': jest.fn().mockImplementation((state) => state) }, } as any; const embeddableState = { @@ -109,6 +112,7 @@ describe('embeddable factory', () => { const containerEmbeddableFactoryId = 'CONTAINER'; const containerEmbeddableFactory = { type: containerEmbeddableFactoryId, + latestVersion: '1.0.0', create: jest.fn(), getDisplayName: () => 'Container', isContainer: true, diff --git a/src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/not_authorized_section.tsx b/src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/not_authorized_section.tsx index f896826eca6d5..0a81102d6a515 100644 --- a/src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/not_authorized_section.tsx +++ b/src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/not_authorized_section.tsx @@ -7,7 +7,7 @@ */ import React from 'react'; -import { EuiEmptyPrompt } from '@elastic/eui'; +import { EuiPageTemplate } from '@elastic/eui'; interface Props { title: React.ReactNode; @@ -16,7 +16,7 @@ interface Props { } export const NotAuthorizedSection = ({ title, message, dataTestSubj }: Props) => ( - {title}

    } diff --git a/src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/page_error.tsx b/src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/page_error.tsx index 0d2e5a7f8f635..274e98525145f 100644 --- a/src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/page_error.tsx +++ b/src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/page_error.tsx @@ -6,11 +6,7 @@ * Side Public License, v 1. */ -import { - EuiSpacer, - EuiEmptyPrompt, - EuiPageContent_Deprecated as EuiPageContent, -} from '@elastic/eui'; +import { EuiSpacer, EuiPageTemplate } from '@elastic/eui'; import React from 'react'; import { APP_WRAPPER_CLASS } from '@kbn/core/public'; import { Error } from '../types'; @@ -41,35 +37,34 @@ export const PageError: React.FunctionComponent = ({ const message = error?.message; const errorContent = ( - - {title}} - body={ - error && ( - <> - {cause ? ( - message || errorString - ) : ( -

    {message || errorString}

    - )} - {cause && ( - <> - -
      - {cause.map((causeMsg, i) => ( -
    • {causeMsg}
    • - ))} -
    - - )} - - ) - } - iconType="warning" - actions={actions} - {...rest} - /> -
    + {title}} + body={ + error && ( + <> + {cause ? ( + message || errorString + ) : ( +

    {message || errorString}

    + )} + {cause && ( + <> + +
      + {cause.map((causeMsg, i) => ( +
    • {causeMsg}
    • + ))} +
    + + )} + + ) + } + iconType="warning" + color="danger" + actions={actions} + {...rest} + /> ); if (isCentered) { diff --git a/src/plugins/es_ui_shared/public/components/page_loading/page_loading.tsx b/src/plugins/es_ui_shared/public/components/page_loading/page_loading.tsx index 38caa1d817720..bac5d85842900 100644 --- a/src/plugins/es_ui_shared/public/components/page_loading/page_loading.tsx +++ b/src/plugins/es_ui_shared/public/components/page_loading/page_loading.tsx @@ -7,21 +7,14 @@ */ import React from 'react'; -import { - EuiEmptyPrompt, - EuiLoadingSpinner, - EuiText, - EuiPageContent_Deprecated as EuiPageContent, -} from '@elastic/eui'; +import { EuiLoadingSpinner, EuiText, EuiPageTemplate } from '@elastic/eui'; export const PageLoading: React.FunctionComponent = ({ children }) => { return ( - - } - body={{children}} - data-test-subj="sectionLoading" - /> - + } + body={{children}} + data-test-subj="sectionLoading" + /> ); }; diff --git a/src/plugins/expressions/common/execution/execution.ts b/src/plugins/expressions/common/execution/execution.ts index d8932f234e39a..593e437fd9dc7 100644 --- a/src/plugins/expressions/common/execution/execution.ts +++ b/src/plugins/expressions/common/execution/execution.ts @@ -420,18 +420,20 @@ export class Execution< : of(resolvedArgs); return args$.pipe( - tap((args) => this.execution.params.debug && Object.assign(head.debug, { args })), + tap((args) => this.execution.params.debug && Object.assign(head.debug ?? {}, { args })), switchMap((args) => this.invokeFunction(fn, input, args)), this.execution.params.partial ? identity : last(), switchMap((output) => (getType(output) === 'error' ? throwError(output) : of(output))), - tap((output) => this.execution.params.debug && Object.assign(head.debug, { output })), + tap( + (output) => this.execution.params.debug && Object.assign(head.debug ?? {}, { output }) + ), switchMap((output) => this.invokeChain(tail, output)), catchError((rawError) => { const error = createError(rawError); error.error.message = `[${fnName}] > ${error.error.message}`; if (this.execution.params.debug) { - Object.assign(head.debug, { error, rawError, success: false }); + Object.assign(head.debug ?? {}, { error, rawError, success: false }); } return of(error); @@ -440,7 +442,7 @@ export class Execution< }), finalize(() => { if (this.execution.params.debug) { - Object.assign(head.debug, { duration: now() - timeStart }); + Object.assign(head.debug ?? {}, { duration: now() - timeStart }); } }) ); diff --git a/src/plugins/expressions/common/expression_functions/expression_function_parameter.ts b/src/plugins/expressions/common/expression_functions/expression_function_parameter.ts index 530d0bc5a9c5c..644eb4bb8005e 100644 --- a/src/plugins/expressions/common/expression_functions/expression_function_parameter.ts +++ b/src/plugins/expressions/common/expression_functions/expression_function_parameter.ts @@ -6,7 +6,7 @@ * Side Public License, v 1. */ -import { KnownTypeToString } from '../types'; +import { TypeString } from '../types'; import { ArgumentType } from './arguments'; export class ExpressionFunctionParameter { @@ -46,6 +46,6 @@ export class ExpressionFunctionParameter { } accepts(type: string) { - return !this.types?.length || this.types.includes(type as KnownTypeToString); + return !this.types?.length || this.types.includes(type as TypeString); } } diff --git a/src/plugins/field_formats/common/converters/duration.test.ts b/src/plugins/field_formats/common/converters/duration.test.ts index 58e3fb4f3a967..52fb64888f5ac 100644 --- a/src/plugins/field_formats/common/converters/duration.test.ts +++ b/src/plugins/field_formats/common/converters/duration.test.ts @@ -15,6 +15,10 @@ describe('Duration Format', () => { outputPrecision: undefined, showSuffix: undefined, fixtures: [ + { + input: 0, + output: '0 seconds', + }, { input: -60, output: 'minus a minute', diff --git a/src/plugins/field_formats/common/converters/duration.ts b/src/plugins/field_formats/common/converters/duration.ts index 1579d6058e98c..1ed6ec014ed47 100644 --- a/src/plugins/field_formats/common/converters/duration.ts +++ b/src/plugins/field_formats/common/converters/duration.ts @@ -99,6 +99,12 @@ export class DurationFormat extends FieldFormat { const human = this.isHuman(); const humanPrecise = this.isHumanPrecise(); + if (human && val === 0) { + return i18n.translate('fieldFormats.duration.zeroSecondsLabel', { + defaultMessage: '0 seconds', + }); // Handle the case of 0 value for "Human Friendly" + } + const prefix = val < 0 && human ? i18n.translate('fieldFormats.duration.negativeLabel', { diff --git a/src/plugins/home/public/application/application.tsx b/src/plugins/home/public/application/application.tsx index f3a7146343d91..1c28ff0b8fcee 100644 --- a/src/plugins/home/public/application/application.tsx +++ b/src/plugins/home/public/application/application.tsx @@ -32,7 +32,7 @@ export const renderApp = async ( ) => { const { featureCatalogue, chrome, dataViewsService: dataViews, trackUiMetric } = getServices(); - // all the directories could be get in "start" phase of plugin after all of the legacy plugins will be moved to a NP + // FIXME: use featureCatalogue.getFeatures$() const directories = featureCatalogue.get(); // Filters solutions by available nav links diff --git a/src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.mock.ts b/src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.mock.ts index a728d6721faee..49d6b42dd7dea 100644 --- a/src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.mock.ts +++ b/src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.mock.ts @@ -7,6 +7,7 @@ */ import type { PublicMethodsOf } from '@kbn/utility-types'; +import * as Rx from 'rxjs'; import { FeatureCatalogueRegistrySetup, FeatureCatalogueRegistry, @@ -25,6 +26,7 @@ const createMock = (): jest.Mocked> => setup: jest.fn(), start: jest.fn(), get: jest.fn(() => []), + getFeatures$: jest.fn(() => Rx.of([])), getSolutions: jest.fn(() => []), removeFeature: jest.fn(), }; diff --git a/src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.test.ts b/src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.test.ts index 759ff5e3d0d23..81b7297f3b62f 100644 --- a/src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.test.ts +++ b/src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.test.ts @@ -6,9 +6,10 @@ * Side Public License, v 1. */ +import { firstValueFrom } from 'rxjs'; import { - FeatureCatalogueRegistry, FeatureCatalogueEntry, + FeatureCatalogueRegistry, FeatureCatalogueSolution, } from './feature_catalogue_registry'; @@ -49,45 +50,57 @@ describe('FeatureCatalogueRegistry', () => { `"Solution with id [kibana] has already been registered. Use a unique id."` ); }); + + test('throws when getting features before start()', async () => { + const getFeaturesBeforeStart = async () => { + const service = new FeatureCatalogueRegistry(); + const catalogue = service.setup(); + catalogue.register(DASHBOARD_FEATURE); + await firstValueFrom(service.getFeatures$()); + }; + expect(getFeaturesBeforeStart).rejects.toEqual( + new Error(`Catalogue entries are only available after start phase`) + ); + }); }); describe('start', () => { describe('capabilities filtering', () => { - test('retains items with no entry in capabilities', () => { + test('retains items with no entry in capabilities', async () => { const service = new FeatureCatalogueRegistry(); service.setup().register(DASHBOARD_FEATURE); const capabilities = { catalogue: {} } as any; service.start({ capabilities }); - expect(service.get()).toEqual([DASHBOARD_FEATURE]); + expect(await firstValueFrom(service.getFeatures$())).toEqual([DASHBOARD_FEATURE]); }); - test('retains items with true in capabilities', () => { + test('retains items with true in capabilities', async () => { const service = new FeatureCatalogueRegistry(); service.setup().register(DASHBOARD_FEATURE); const capabilities = { catalogue: { dashboard: true } } as any; service.start({ capabilities }); - expect(service.get()).toEqual([DASHBOARD_FEATURE]); + expect(await firstValueFrom(service.getFeatures$())).toEqual([DASHBOARD_FEATURE]); }); - test('removes items with false in capabilities', () => { + test('removes items with false in capabilities', async () => { const service = new FeatureCatalogueRegistry(); service.setup().register(DASHBOARD_FEATURE); const capabilities = { catalogue: { dashboard: false } } as any; service.start({ capabilities }); - expect(service.get()).toEqual([]); + expect(await firstValueFrom(service.getFeatures$())).toEqual([]); }); }); describe('visibility filtering', () => { - test('retains items with no "visible" callback', () => { + test('retains items with no "visible" callback', async () => { const service = new FeatureCatalogueRegistry(); service.setup().register(DASHBOARD_FEATURE); const capabilities = { catalogue: {} } as any; service.start({ capabilities }); - expect(service.get()).toEqual([DASHBOARD_FEATURE]); + expect(await firstValueFrom(service.getFeatures$())).toEqual([DASHBOARD_FEATURE]); }); - test('retains items with a "visible" callback which returns "true"', () => { + test('retains items with a "visible" callback which returns "true"', async () => { const service = new FeatureCatalogueRegistry(); const feature = { ...DASHBOARD_FEATURE, @@ -96,10 +109,10 @@ describe('FeatureCatalogueRegistry', () => { service.setup().register(feature); const capabilities = { catalogue: {} } as any; service.start({ capabilities }); - expect(service.get()).toEqual([feature]); + expect(await firstValueFrom(service.getFeatures$())).toEqual([feature]); }); - test('removes items with a "visible" callback which returns "false"', () => { + test('removes items with a "visible" callback which returns "false"', async () => { const service = new FeatureCatalogueRegistry(); const feature = { ...DASHBOARD_FEATURE, @@ -108,13 +121,44 @@ describe('FeatureCatalogueRegistry', () => { service.setup().register(feature); const capabilities = { catalogue: {} } as any; service.start({ capabilities }); - expect(service.get()).toEqual([]); + expect(await firstValueFrom(service.getFeatures$())).toEqual([]); }); }); }); + describe('reactivity', () => { + const DASHBOARD_FEATURE_2: FeatureCatalogueEntry = { + ...DASHBOARD_FEATURE, + id: 'dashboard_2', + }; + + test('addition of catalogue entry after start()', async () => { + const service = new FeatureCatalogueRegistry(); + const catalogue = service.setup(); + const capabilities = { catalogue: { dashboard: true } } as any; + service.start({ capabilities }); + catalogue.register(DASHBOARD_FEATURE); + catalogue.register(DASHBOARD_FEATURE_2); + expect(await firstValueFrom(service.getFeatures$())).toEqual([ + DASHBOARD_FEATURE, + DASHBOARD_FEATURE_2, + ]); + }); + + test('removal of catalogue entry after start()', async () => { + const service = new FeatureCatalogueRegistry(); + const catalogue = service.setup(); + catalogue.register(DASHBOARD_FEATURE); + catalogue.register(DASHBOARD_FEATURE_2); + const capabilities = { catalogue: { dashboard: true } } as any; + service.start({ capabilities }); + service.removeFeature('dashboard'); + expect(await firstValueFrom(service.getFeatures$())).toEqual([DASHBOARD_FEATURE_2]); + }); + }); + describe('title sorting', () => { - test('sorts by title ascending', () => { + test('sorts by title ascending', async () => { const service = new FeatureCatalogueRegistry(); const setup = service.setup(); setup.register({ id: '1', title: 'Orange' } as any); @@ -122,7 +166,7 @@ describe('FeatureCatalogueRegistry', () => { setup.register({ id: '3', title: 'Banana' } as any); const capabilities = { catalogue: {} } as any; service.start({ capabilities }); - expect(service.get()).toEqual([ + expect(await firstValueFrom(service.getFeatures$())).toEqual([ { id: '2', title: 'Apple' }, { id: '3', title: 'Banana' }, { id: '1', title: 'Orange' }, diff --git a/src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts b/src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts index 2bc84b44f5540..3d22f6156a966 100644 --- a/src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts +++ b/src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts @@ -8,6 +8,7 @@ import { Capabilities } from '@kbn/core/public'; import { IconType } from '@elastic/eui'; +import { BehaviorSubject, map, Observable } from 'rxjs'; /** @public */ export type FeatureCatalogueCategory = 'admin' | 'data' | 'other'; @@ -56,19 +57,21 @@ export interface FeatureCatalogueSolution { export class FeatureCatalogueRegistry { private capabilities: Capabilities | null = null; - private readonly features = new Map(); - private readonly solutions = new Map(); + private solutions = new Map(); + private featuresSubject = new BehaviorSubject>(new Map()); public setup() { return { register: (feature: FeatureCatalogueEntry) => { - if (this.features.has(feature.id)) { + const { value: features } = this.featuresSubject; + if (features.has(feature.id)) { throw new Error( `Feature with id [${feature.id}] has already been registered. Use a unique id.` ); } - this.features.set(feature.id, feature); + features.set(feature.id, feature); + this.featuresSubject.next(new Map(features)); }, registerSolution: (solution: FeatureCatalogueSolution) => { if (this.solutions.has(solution.id)) { @@ -86,12 +89,16 @@ export class FeatureCatalogueRegistry { this.capabilities = capabilities; } - public get(): FeatureCatalogueEntry[] { + /** + * @deprecated + * Use getFeatures$() instead + */ + public get(features = this.featuresSubject.value): FeatureCatalogueEntry[] { if (this.capabilities === null) { throw new Error('Catalogue entries are only available after start phase'); } const capabilities = this.capabilities; - return [...this.features.values()] + return [...features.values()] .filter( (entry) => capabilities.catalogue[entry.id] !== false && (entry.visible ? entry.visible() : true) @@ -99,6 +106,10 @@ export class FeatureCatalogueRegistry { .sort(compareByKey('title')); } + public getFeatures$(): Observable { + return this.featuresSubject.pipe(map((feats) => this.get(feats))); + } + public getSolutions(): FeatureCatalogueSolution[] { if (this.capabilities === null) { throw new Error('Catalogue entries are only available after start phase'); @@ -110,7 +121,9 @@ export class FeatureCatalogueRegistry { } public removeFeature(appId: string) { - this.features.delete(appId); + const { value: features } = this.featuresSubject; + features.delete(appId); + this.featuresSubject.next(new Map(features)); } } diff --git a/src/plugins/kibana_overview/public/application.tsx b/src/plugins/kibana_overview/public/application.tsx index 03ad03876a132..d0a0be8ab653e 100644 --- a/src/plugins/kibana_overview/public/application.tsx +++ b/src/plugins/kibana_overview/public/application.tsx @@ -24,7 +24,7 @@ export const renderApp = ( const { notifications, http } = core; const { newsfeed, home, navigation } = deps; const newsfeed$ = newsfeed?.createNewsFeed$(NewsfeedApiEndpoint.KIBANA_ANALYTICS); - const features = home.featureCatalogue.get(); + const features$ = home.featureCatalogue.getFeatures$(); core.chrome.setBreadcrumbs([ { text: i18n.translate('kibanaOverview.breadcrumbs.title', { defaultMessage: 'Analytics' }) }, @@ -42,7 +42,7 @@ export const renderApp = ( diff --git a/src/plugins/kibana_overview/public/components/app.tsx b/src/plugins/kibana_overview/public/components/app.tsx index c8c9834f8b562..7d79cc5cb7bc6 100644 --- a/src/plugins/kibana_overview/public/components/app.tsx +++ b/src/plugins/kibana_overview/public/components/app.tsx @@ -6,15 +6,16 @@ * Side Public License, v 1. */ -import React, { useEffect, useState } from 'react'; -import { Observable } from 'rxjs'; +import type { CoreStart } from '@kbn/core/public'; +import type { FeatureCatalogueEntry, FeatureCatalogueSolution } from '@kbn/home-plugin/public'; import { I18nProvider } from '@kbn/i18n-react'; -import { HashRouter as Router } from 'react-router-dom'; +import type { NavigationPublicPluginStart } from '@kbn/navigation-plugin/public'; +import type { FetchResult } from '@kbn/newsfeed-plugin/public'; import { Route, Routes } from '@kbn/shared-ux-router'; -import { CoreStart } from '@kbn/core/public'; -import { NavigationPublicPluginStart } from '@kbn/navigation-plugin/public'; -import { FetchResult } from '@kbn/newsfeed-plugin/public'; -import { FeatureCatalogueEntry, FeatureCatalogueSolution } from '@kbn/home-plugin/public'; +import React, { useEffect, useState } from 'react'; +import { HashRouter as Router } from 'react-router-dom'; +import useObservable from 'react-use/lib/useObservable'; +import type { Observable } from 'rxjs'; import { Overview } from './overview'; interface KibanaOverviewAppDeps { @@ -23,16 +24,17 @@ interface KibanaOverviewAppDeps { http: CoreStart['http']; navigation: NavigationPublicPluginStart; newsfeed$?: Observable; + features$: Observable; solutions: FeatureCatalogueSolution[]; - features: FeatureCatalogueEntry[]; } export const KibanaOverviewApp = ({ basename, newsfeed$, + features$, solutions, - features, }: KibanaOverviewAppDeps) => { + const features = useObservable(features$, []); const [newsFetchResult, setNewsFetchResult] = useState(null); useEffect(() => { diff --git a/src/plugins/kibana_usage_collection/server/collectors/core/core_usage_collector.ts b/src/plugins/kibana_usage_collection/server/collectors/core/core_usage_collector.ts index 8a960fa05ebf6..8d5f0db7a669d 100644 --- a/src/plugins/kibana_usage_collection/server/collectors/core/core_usage_collector.ts +++ b/src/plugins/kibana_usage_collection/server/collectors/core/core_usage_collector.ts @@ -923,6 +923,20 @@ export function getCoreUsageCollector( 'How many times this API has been called without the `createNewCopiesEnabled` option.', }, }, + 'apiCalls.savedObjectsImport.compatibilityModeEnabled.yes': { + type: 'long', + _meta: { + description: + 'How many times this API has been called with the `compatibilityMode` option.', + }, + }, + 'apiCalls.savedObjectsImport.compatibilityModeEnabled.no': { + type: 'long', + _meta: { + description: + 'How many times this API has been called without the `compatibilityMode` option.', + }, + }, 'apiCalls.savedObjectsImport.overwriteEnabled.yes': { type: 'long', _meta: { diff --git a/src/plugins/kibana_utils/common/persistable_state/migrate_to_latest.ts b/src/plugins/kibana_utils/common/persistable_state/migrate_to_latest.ts index 98d1f6da2918f..75b8b25bf3f79 100644 --- a/src/plugins/kibana_utils/common/persistable_state/migrate_to_latest.ts +++ b/src/plugins/kibana_utils/common/persistable_state/migrate_to_latest.ts @@ -12,10 +12,11 @@ import { VersionedState, MigrateFunctionsObject } from './types'; export function migrateToLatest( migrations: MigrateFunctionsObject, - { state, version: oldVersion }: VersionedState + { state, version: oldVersion }: VersionedState, + loose?: boolean ): S { const versions = Object.keys(migrations || {}) - .filter((v) => compare(v, oldVersion) > 0) + .filter((v) => compare(v, oldVersion, loose) > 0) .sort(compare); if (!versions.length) return state as S; diff --git a/src/plugins/kibana_utils/common/persistable_state/types.ts b/src/plugins/kibana_utils/common/persistable_state/types.ts index 31234ca5c18da..c8c0a3a344732 100644 --- a/src/plugins/kibana_utils/common/persistable_state/types.ts +++ b/src/plugins/kibana_utils/common/persistable_state/types.ts @@ -78,9 +78,9 @@ export interface PersistableState

    { }, "getConfig": [MockFunction], "onResponse": [MockFunction], + "scriptedFieldsEnabled": true, "search": [MockFunction], }, "fields": Object {}, diff --git a/src/plugins/telemetry/schema/oss_plugins.json b/src/plugins/telemetry/schema/oss_plugins.json index de4f1fae8f675..ef25a78b1c0b4 100644 --- a/src/plugins/telemetry/schema/oss_plugins.json +++ b/src/plugins/telemetry/schema/oss_plugins.json @@ -8241,6 +8241,18 @@ "description": "How many times this API has been called without the `createNewCopiesEnabled` option." } }, + "apiCalls.savedObjectsImport.compatibilityModeEnabled.yes": { + "type": "long", + "_meta": { + "description": "How many times this API has been called with the `compatibilityMode` option." + } + }, + "apiCalls.savedObjectsImport.compatibilityModeEnabled.no": { + "type": "long", + "_meta": { + "description": "How many times this API has been called without the `compatibilityMode` option." + } + }, "apiCalls.savedObjectsImport.overwriteEnabled.yes": { "type": "long", "_meta": { diff --git a/src/plugins/telemetry/server/routes/telemetry_usage_stats.ts b/src/plugins/telemetry/server/routes/telemetry_usage_stats.ts index a828de911c29a..a2cee086ee563 100644 --- a/src/plugins/telemetry/server/routes/telemetry_usage_stats.ts +++ b/src/plugins/telemetry/server/routes/telemetry_usage_stats.ts @@ -92,6 +92,7 @@ export function registerTelemetryUsageStatsRoutes( .post({ access: 'internal', path: FetchSnapshotTelemetry, + enableQueryVersion: true, // Allow specifying the version through querystring so that we can use it in Dev Console }) // Just because it used to be /v2/, we are creating identical v1 and v2. .addVersion({ version: '1', validate: v2Validations }, v2Handler) diff --git a/src/plugins/unified_histogram/public/panels/panels_resizable.tsx b/src/plugins/unified_histogram/public/panels/panels_resizable.tsx index 36af60f317247..773ebe172b25e 100644 --- a/src/plugins/unified_histogram/public/panels/panels_resizable.tsx +++ b/src/plugins/unified_histogram/public/panels/panels_resizable.tsx @@ -61,7 +61,7 @@ export const PanelsResizable = ({ [] ); const resizeWithPortalsHackButtonCss = css` - z-index: 3 !important; // !important can be removed once EuiResizableButton is converted to Emotion + z-index: 3; `; const resizeWithPortalsHackOverlayCss = css` position: absolute; @@ -164,12 +164,8 @@ export const PanelsResizable = ({ const { euiTheme } = useEuiTheme(); const buttonCss = css` - // The selectors here are intended to override EuiResizableButtons's Sass styles - // it can be removed once EuiResizableButton has been converted to Emotion - &.euiResizableButton.euiResizableButton--vertical { - margin-top: -${euiTheme.size.base}; - margin-bottom: 0; - } + margin-top: -${euiTheme.size.base}; + margin-bottom: 0; `; return ( diff --git a/src/plugins/unified_search/public/query_string_input/query_bar_menu.test.tsx b/src/plugins/unified_search/public/query_string_input/query_bar_menu.test.tsx index d5c6377d20942..bdab607b2030c 100644 --- a/src/plugins/unified_search/public/query_string_input/query_bar_menu.test.tsx +++ b/src/plugins/unified_search/public/query_string_input/query_bar_menu.test.tsx @@ -247,6 +247,7 @@ describe('Querybar Menu component', () => { }, filters: [], }, + namespaces: ['default'], }, }; const component = mount(wrapQueryBarMenuComponentInContext(newProps, 'kuery')); diff --git a/src/plugins/unified_search/public/saved_query_management/saved_query_management_list.test.tsx b/src/plugins/unified_search/public/saved_query_management/saved_query_management_list.test.tsx index c891174986510..3dbdfaf7588fc 100644 --- a/src/plugins/unified_search/public/saved_query_management/saved_query_management_list.test.tsx +++ b/src/plugins/unified_search/public/saved_query_management/saved_query_management_list.test.tsx @@ -77,6 +77,7 @@ describe('Saved query management list component', () => { }, filters: [], }, + namespaces: ['default'], }, ]), deleteSavedQuery: jest.fn(), @@ -157,6 +158,38 @@ describe('Saved query management list component', () => { await flushEffect(component); findTestSubject(component, 'delete-saved-query-Test-button').simulate('click'); expect(component.find('[data-test-subj="confirmModalConfirmButton"]').length).toBeTruthy(); + expect(component.text()).not.toContain('you remove it from every space'); + }); + + it('should render the modal with warning for multiple namespaces on delete', async () => { + const newProps = { + ...props, + savedQueryService: { + ...props.savedQueryService, + getAllSavedQueries: jest.fn().mockResolvedValue([ + { + id: '8a0b7cd0-b0c4-11ec-92b2-73d62e0d28a9', + attributes: { + title: 'Test', + description: '', + query: { + query: 'category.keyword : "Men\'s Shoes" ', + language: 'kuery', + }, + filters: [], + }, + namespaces: ['one', 'two'], + }, + ]), + deleteSavedQuery: jest.fn(), + }, + }; + const component = mount(wrapSavedQueriesListComponentInContext(newProps)); + await flushEffect(component); + findTestSubject(component, 'delete-saved-query-Test-button').simulate('click'); + + expect(component.find('[data-test-subj="confirmModalConfirmButton"]').length).toBeTruthy(); + expect(component.text()).toContain('you remove it from every space'); }); it('should render the onClearSavedQuery on delete of the current selected query', async () => { @@ -174,6 +207,7 @@ describe('Saved query management list component', () => { }, filters: [], }, + namespaces: ['default'], }, onClearSavedQuery: onClearSavedQuerySpy, }; diff --git a/src/plugins/unified_search/public/saved_query_management/saved_query_management_list.tsx b/src/plugins/unified_search/public/saved_query_management/saved_query_management_list.tsx index 5ebb89bd88afc..0cff3baa90883 100644 --- a/src/plugins/unified_search/public/saved_query_management/saved_query_management_list.tsx +++ b/src/plugins/unified_search/public/saved_query_management/saved_query_management_list.tsx @@ -199,6 +199,13 @@ export function SavedQueryManagementList({ ' ' + savedQueryDescriptionText; + const savedQueryMultipleNamespacesDeleteWarning = i18n.translate( + 'unifiedSearch.search.searchBar.savedQueryMultipleNamespacesDeleteWarning', + { + defaultMessage: `This saved query is shared in multiple spaces. When you delete it, you remove it from every space it is shared in. You can't undo this action.`, + } + ); + const savedQueriesOptions = () => { const savedQueriesWithoutCurrent = savedQueries.filter((savedQuery) => { if (!loadedSavedQuery) return true; @@ -379,7 +386,12 @@ export function SavedQueryManagementList({ onCancel={() => { setShowDeletionConfirmationModal(false); }} - /> + > + {toBeDeletedSavedQuery.namespaces.length > 1 || + toBeDeletedSavedQuery.namespaces.includes('*') + ? savedQueryMultipleNamespacesDeleteWarning + : null} + )} ); diff --git a/src/plugins/unified_search/public/search_bar/lib/populate_state_from_saved_query.test.ts b/src/plugins/unified_search/public/search_bar/lib/populate_state_from_saved_query.test.ts index e401d98a1f7ab..11c879ee33ecb 100644 --- a/src/plugins/unified_search/public/search_bar/lib/populate_state_from_saved_query.test.ts +++ b/src/plugins/unified_search/public/search_bar/lib/populate_state_from_saved_query.test.ts @@ -25,6 +25,7 @@ describe('populateStateFromSavedQuery', () => { language: 'kuery', }, }, + namespaces: ['default'], }; beforeEach(() => { diff --git a/src/plugins/usage_collection/server/routes/stats/stats.ts b/src/plugins/usage_collection/server/routes/stats/stats.ts index 8c32003f38098..6e4a606216035 100644 --- a/src/plugins/usage_collection/server/routes/stats/stats.ts +++ b/src/plugins/usage_collection/server/routes/stats/stats.ts @@ -55,7 +55,10 @@ export function registerStatsRoute({ path: '/api/stats', options: { authRequired: !config.allowAnonymous, - tags: ['api'], // ensures that unauthenticated calls receive a 401 rather than a 302 redirect to login page + // The `api` tag ensures that unauthenticated calls receive a 401 rather than a 302 redirect to login page. + // The `security:acceptJWT` tag allows route to be accessed with JWT credentials. It points to + // ROUTE_TAG_ACCEPT_JWT from '@kbn/security-plugin/server' that cannot be imported here directly. + tags: ['api', 'security:acceptJWT'], access: 'public', // needs to be public to allow access from "system" users like metricbeat. }, validate: { diff --git a/src/plugins/vis_types/xy/public/editor/components/options/metrics_axes/label_options.tsx b/src/plugins/vis_types/xy/public/editor/components/options/metrics_axes/label_options.tsx index 2c7f394f6a0aa..3310df7259df6 100644 --- a/src/plugins/vis_types/xy/public/editor/components/options/metrics_axes/label_options.tsx +++ b/src/plugins/vis_types/xy/public/editor/components/options/metrics_axes/label_options.tsx @@ -13,7 +13,7 @@ import { i18n } from '@kbn/i18n'; import { FormattedMessage } from '@kbn/i18n-react'; import { SelectOption, SwitchOption } from '@kbn/vis-default-editor-plugin/public'; -import { Labels } from '@kbn/charts-plugin/public'; +import type { LabelRotation, Labels } from '@kbn/charts-plugin/public'; import { TruncateLabelsOption } from '../../common'; import { getRotateOptions } from '../../../collections'; @@ -34,7 +34,8 @@ function LabelOptions({ }: LabelOptionsProps) { const setAxisLabelRotate = useCallback( (paramName: 'rotate', value: Labels['rotate']) => { - setAxisLabel(paramName, Number(value)); + const rotation = Number(value) as LabelRotation; + setAxisLabel(paramName, rotation); }, [setAxisLabel] ); @@ -96,6 +97,7 @@ function LabelOptions({ options={rotateOptions} paramName="rotate" value={axisLabels.rotate} + // @ts-ignore ts upgrade v4.7.4 setValue={setAxisLabelRotate} /> diff --git a/test/api_integration/apis/data_views/fields_for_wildcard_route/conflicts.ts b/test/api_integration/apis/data_views/fields_for_wildcard_route/conflicts.ts index d21b03ef8a7cc..2c1347d97496b 100644 --- a/test/api_integration/apis/data_views/fields_for_wildcard_route/conflicts.ts +++ b/test/api_integration/apis/data_views/fields_for_wildcard_route/conflicts.ts @@ -45,7 +45,7 @@ export default function ({ getService }: FtrProviderContext) { { name: 'number_conflict', type: 'number', - esTypes: ['integer', 'float'], + esTypes: ['float', 'integer'], aggregatable: true, searchable: true, readFromDocValues: true, @@ -54,16 +54,16 @@ export default function ({ getService }: FtrProviderContext) { { name: 'string_conflict', type: 'string', - esTypes: ['text', 'keyword'], + esTypes: ['keyword', 'text'], aggregatable: true, searchable: true, - readFromDocValues: false, + readFromDocValues: true, metadata_field: false, }, { name: 'success', type: 'conflict', - esTypes: ['boolean', 'keyword'], + esTypes: ['keyword', 'boolean'], aggregatable: true, searchable: true, readFromDocValues: false, diff --git a/test/api_integration/apis/data_views/index.ts b/test/api_integration/apis/data_views/index.ts index 328c7c1162d1b..72fb1f780311b 100644 --- a/test/api_integration/apis/data_views/index.ts +++ b/test/api_integration/apis/data_views/index.ts @@ -21,5 +21,6 @@ export default function ({ loadTestFile }: FtrProviderContext) { loadTestFile(require.resolve('./deprecations')); loadTestFile(require.resolve('./has_user_index_pattern')); loadTestFile(require.resolve('./swap_references')); + loadTestFile(require.resolve('./resolve_index')); }); } diff --git a/test/api_integration/apis/data_views/resolve_index/index.ts b/test/api_integration/apis/data_views/resolve_index/index.ts new file mode 100644 index 0000000000000..846c6a485070f --- /dev/null +++ b/test/api_integration/apis/data_views/resolve_index/index.ts @@ -0,0 +1,15 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { FtrProviderContext } from '../../../ftr_provider_context'; + +export default function ({ loadTestFile }: FtrProviderContext) { + describe('/internal/index-pattern-management/resolve_index', () => { + loadTestFile(require.resolve('./resolve_index')); + }); +} diff --git a/test/api_integration/apis/data_views/resolve_index/resolve_index.ts b/test/api_integration/apis/data_views/resolve_index/resolve_index.ts new file mode 100644 index 0000000000000..31039ed320111 --- /dev/null +++ b/test/api_integration/apis/data_views/resolve_index/resolve_index.ts @@ -0,0 +1,23 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { FtrProviderContext } from '../../../ftr_provider_context'; + +// node scripts/functional_tests --config test/api_integration/config.js --grep="Resolve index API" + +export default function ({ getService }: FtrProviderContext) { + const supertest = getService('supertest'); + + describe('Resolve index API', function () { + it('should return 200 for a search for indices with wildcard', () => + supertest.get(`/internal/index-pattern-management/resolve_index/test*`).expect(200)); + + it('should return 404 for an exact match index', () => + supertest.get(`/internal/index-pattern-management/resolve_index/test`).expect(404)); + }); +} diff --git a/test/api_integration/apis/home/sample_data.ts b/test/api_integration/apis/home/sample_data.ts index 32f20ad6d10e2..b26fe638e1224 100644 --- a/test/api_integration/apis/home/sample_data.ts +++ b/test/api_integration/apis/home/sample_data.ts @@ -25,7 +25,8 @@ export default function ({ getService }: FtrProviderContext) { return appLinks.some((item) => item.path === path); }; - describe('sample data apis', () => { + // Failing: See https://github.com/elastic/kibana/issues/164568 + describe.skip('sample data apis', () => { before(async () => { await esArchiver.emptyKibanaIndex(); }); diff --git a/test/api_integration/apis/index.ts b/test/api_integration/apis/index.ts index 89d97bba330ae..c132970084df1 100644 --- a/test/api_integration/apis/index.ts +++ b/test/api_integration/apis/index.ts @@ -21,6 +21,7 @@ export default function ({ loadTestFile }: FtrProviderContext) { loadTestFile(require.resolve('./kql_telemetry')); loadTestFile(require.resolve('./saved_objects_management')); loadTestFile(require.resolve('./saved_objects')); + loadTestFile(require.resolve('./saved_queries')); loadTestFile(require.resolve('./scripts')); loadTestFile(require.resolve('./search')); loadTestFile(require.resolve('./short_url')); diff --git a/test/api_integration/apis/saved_objects/delete_unknown_types.ts b/test/api_integration/apis/saved_objects/delete_unknown_types.ts index 225d45fb11b7f..f361199a8fdfa 100644 --- a/test/api_integration/apis/saved_objects/delete_unknown_types.ts +++ b/test/api_integration/apis/saved_objects/delete_unknown_types.ts @@ -54,40 +54,23 @@ export default function ({ getService }: FtrProviderContext) { it('should return 200 with individual responses', async () => { const beforeDelete = await fetchIndexContent(); - expect(beforeDelete).to.eql([ - { - id: 'dashboard:b70c7ae0-3224-11e8-a572-ffca06da1357', - type: 'dashboard', - }, - { - id: 'index-pattern:8963ca30-3224-11e8-a572-ffca06da1357', - type: 'index-pattern', - }, - { - id: 'search:960372e0-3224-11e8-a572-ffca06da1357', - type: 'search', - }, - { - id: 'space:default', - type: 'space', - }, - { - id: 'unknown-shareable-doc', - type: 'unknown-shareable-type', - }, - { - id: 'unknown-type:unknown-doc', - type: 'unknown-type', - }, - { - id: 'visualization:a42c0580-3224-11e8-a572-ffca06da1357', - type: 'visualization', - }, - ]); + const beforeDeleteIds = beforeDelete.map((obj) => obj.id); + [ + 'dashboard:b70c7ae0-3224-11e8-a572-ffca06da1357', + 'index-pattern:8963ca30-3224-11e8-a572-ffca06da1357', + 'search:960372e0-3224-11e8-a572-ffca06da1357', + 'space:default', + 'unknown-shareable-doc', + 'unknown-type:unknown-doc', + 'visualization:a42c0580-3224-11e8-a572-ffca06da1357', + ].forEach((id) => { + expect(beforeDeleteIds).to.contain(id); + }); await supertest .post(`/internal/saved_objects/deprecations/_delete_unknown_types`) .send({}) + .set('kbn-xsrf', 'true') .expect(200) .then((resp) => { expect(resp.body).to.eql({ success: true }); @@ -101,28 +84,15 @@ export default function ({ getService }: FtrProviderContext) { await delay(1000); continue; } - expect(afterDelete).to.eql([ - { - id: 'dashboard:b70c7ae0-3224-11e8-a572-ffca06da1357', - type: 'dashboard', - }, - { - id: 'index-pattern:8963ca30-3224-11e8-a572-ffca06da1357', - type: 'index-pattern', - }, - { - id: 'search:960372e0-3224-11e8-a572-ffca06da1357', - type: 'search', - }, - { - id: 'space:default', - type: 'space', - }, - { - id: 'visualization:a42c0580-3224-11e8-a572-ffca06da1357', - type: 'visualization', - }, - ]); + const afterDeleteIds = afterDelete.map((obj) => obj.id); + [ + 'dashboard:b70c7ae0-3224-11e8-a572-ffca06da1357', + 'index-pattern:8963ca30-3224-11e8-a572-ffca06da1357', + 'search:960372e0-3224-11e8-a572-ffca06da1357', + 'space:default', + 'visualization:a42c0580-3224-11e8-a572-ffca06da1357', + ].forEach((id) => expect(afterDeleteIds).to.contain(id)); + break; } }); diff --git a/test/api_integration/apis/saved_queries/index.js b/test/api_integration/apis/saved_queries/index.js new file mode 100644 index 0000000000000..6f531e8026940 --- /dev/null +++ b/test/api_integration/apis/saved_queries/index.js @@ -0,0 +1,13 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +export default function ({ loadTestFile }) { + describe('Saved queries', () => { + loadTestFile(require.resolve('./saved_queries')); + }); +} diff --git a/test/api_integration/apis/saved_queries/saved_queries.js b/test/api_integration/apis/saved_queries/saved_queries.js new file mode 100644 index 0000000000000..eb3c1465e24de --- /dev/null +++ b/test/api_integration/apis/saved_queries/saved_queries.js @@ -0,0 +1,154 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ +import expect from '@kbn/expect'; +import { ELASTIC_HTTP_VERSION_HEADER } from '@kbn/core-http-common'; +import { SAVED_QUERY_BASE_URL } from '@kbn/data-plugin/common'; + +// node scripts/functional_tests --config test/api_integration/config.js --grep="search session" + +const mockSavedQuery = { + title: 'my title', + description: 'my description', + query: { + query: 'foo: bar', + language: 'kql', + }, + filters: [], +}; + +export default function ({ getService }) { + const esArchiver = getService('esArchiver'); + const supertest = getService('supertest'); + void SAVED_QUERY_BASE_URL; + + describe('Saved queries API', function () { + before(async () => { + await esArchiver.emptyKibanaIndex(); + await esArchiver.loadIfNeeded('test/functional/fixtures/es_archiver/logstash_functional'); + }); + + after(async () => { + await esArchiver.unload('test/functional/fixtures/es_archiver/logstash_functional'); + }); + + it('should return 200 for create saved query', () => + supertest + .post(`${SAVED_QUERY_BASE_URL}/_create`) + .set(ELASTIC_HTTP_VERSION_HEADER, '1') + .send(mockSavedQuery) + .expect(200) + .then(({ body }) => { + expect(body.id).to.have.length(36); + expect(body.attributes.title).to.be('my title'); + expect(body.attributes.description).to.be('my description'); + })); + + it('should return 400 for create invalid saved query', () => + supertest + .post(`${SAVED_QUERY_BASE_URL}/_create`) + .set(ELASTIC_HTTP_VERSION_HEADER, '1') + .send({ description: 'my description' }) + .expect(400)); + + it('should return 200 for update saved query', () => + supertest + .post(`${SAVED_QUERY_BASE_URL}/_create`) + .set(ELASTIC_HTTP_VERSION_HEADER, '1') + .send(mockSavedQuery) + .expect(200) + .then(({ body }) => + supertest + .put(`${SAVED_QUERY_BASE_URL}/${body.id}`) + .set(ELASTIC_HTTP_VERSION_HEADER, '1') + .send({ + ...mockSavedQuery, + title: 'my new title', + }) + .expect(200) + .then((res) => { + expect(res.body.id).to.be(body.id); + expect(res.body.attributes.title).to.be('my new title'); + }) + )); + + it('should return 404 for update non-existent saved query', () => + supertest + .put(`${SAVED_QUERY_BASE_URL}/invalid_id`) + .set(ELASTIC_HTTP_VERSION_HEADER, '1') + .send(mockSavedQuery) + .expect(404)); + + it('should return 200 for get saved query', () => + supertest + .post(`${SAVED_QUERY_BASE_URL}/_create`) + .set(ELASTIC_HTTP_VERSION_HEADER, '1') + .send(mockSavedQuery) + .expect(200) + .then(({ body }) => + supertest + .get(`${SAVED_QUERY_BASE_URL}/${body.id}`) + .set(ELASTIC_HTTP_VERSION_HEADER, '1') + .expect(200) + .then((res) => { + expect(res.body.id).to.be(body.id); + expect(res.body.attributes.title).to.be(body.attributes.title); + }) + )); + + it('should return 404 for get non-existent saved query', () => + supertest + .get(`${SAVED_QUERY_BASE_URL}/invalid_id`) + .set(ELASTIC_HTTP_VERSION_HEADER, '1') + .expect(404)); + + it('should return 200 for saved query count', () => + supertest + .get(`${SAVED_QUERY_BASE_URL}/_count`) + .set(ELASTIC_HTTP_VERSION_HEADER, '1') + .expect(200)); + + it('should return 200 for find saved queries', () => + supertest + .post(`${SAVED_QUERY_BASE_URL}/_find`) + .set(ELASTIC_HTTP_VERSION_HEADER, '1') + .send({}) + .expect(200)); + + it('should return 400 for bad find saved queries request', () => + supertest + .post(`${SAVED_QUERY_BASE_URL}/_find`) + .set(ELASTIC_HTTP_VERSION_HEADER, '1') + .send({ foo: 'bar' }) + .expect(400)); + + it('should return 200 for find all saved queries', () => + supertest + .post(`${SAVED_QUERY_BASE_URL}/_all`) + .set(ELASTIC_HTTP_VERSION_HEADER, '1') + .expect(200)); + + it('should return 200 for delete saved query', () => + supertest + .post(`${SAVED_QUERY_BASE_URL}/_create`) + .set(ELASTIC_HTTP_VERSION_HEADER, '1') + .send(mockSavedQuery) + .expect(200) + .then(({ body }) => + supertest + .delete(`${SAVED_QUERY_BASE_URL}/${body.id}`) + .set(ELASTIC_HTTP_VERSION_HEADER, '1') + .expect(200) + )); + + it('should return 404 for get non-existent saved query', () => + supertest + .delete(`${SAVED_QUERY_BASE_URL}/invalid_id`) + .set(ELASTIC_HTTP_VERSION_HEADER, '1') + .expect(404)); + }); +} diff --git a/test/functional/apps/console/_autocomplete.ts b/test/functional/apps/console/_autocomplete.ts index 4145501babb58..af5e9e6741197 100644 --- a/test/functional/apps/console/_autocomplete.ts +++ b/test/functional/apps/console/_autocomplete.ts @@ -6,6 +6,7 @@ * Side Public License, v 1. */ +import _ from 'lodash'; import expect from '@kbn/expect'; import { asyncForEach } from '@kbn/std'; import { FtrProviderContext } from '../../ftr_provider_context'; @@ -24,6 +25,13 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { // Ensure that the text area can be interacted with await PageObjects.console.closeHelpIfExists(); await PageObjects.console.clearTextArea(); + log.debug('setAutocompleteTrace true'); + await PageObjects.console.setAutocompleteTrace(true); + }); + + after(async () => { + log.debug('setAutocompleteTrace false'); + await PageObjects.console.setAutocompleteTrace(false); }); it('should provide basic auto-complete functionality', async () => { @@ -31,10 +39,100 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await PageObjects.console.pressEnter(); await PageObjects.console.enterText(`{\n\t"query": {`); await PageObjects.console.pressEnter(); + await PageObjects.console.sleepForDebouncePeriod(); await PageObjects.console.promptAutocomplete(); expect(PageObjects.console.isAutocompleteVisible()).to.be.eql(true); }); + // FLAKY: https://github.com/elastic/kibana/issues/164584 + describe.skip('anti-regression watchdogs', () => { + beforeEach(async () => { + await PageObjects.console.clearTextArea(); + await PageObjects.console.pressEnter(); + }); + + it('should suppress auto-complete on arrow keys', async () => { + await PageObjects.console.enterRequest(); + await PageObjects.console.enterRequest(); + await PageObjects.console.pressEnter(); + const keyPresses = [ + 'pressUp', + 'pressUp', + 'pressDown', + 'pressDown', + 'pressRight', + 'pressRight', + 'pressLeft', + 'pressLeft', + ]; + for (const keyPress of keyPresses) { + await PageObjects.console.sleepForDebouncePeriod(); + log.debug('Key', keyPress); + await PageObjects.console[keyPress](); + expect(await PageObjects.console.isAutocompleteVisible()).to.be.eql(false); + } + }); + + it('should activate auto-complete for methods case-insensitively', async () => { + const methods = _.sampleSize( + _.compact( + ` + GET GEt GeT Get gET gEt geT get + PUT PUt PuT Put pUT pUt puT put + POST POSt POsT POst PoST PoSt PosT Post pOST pOSt pOsT pOst poST poSt posT post + DELETE DELETe DELEtE DELEte DELeTE DELeTe DELetE DELete DElETE DElETe DElEtE DElEte DEleTE DEleTe DEletE DElete + DeLETE DeLETe DeLEtE DeLEte DeLeTE DeLeTe DeLetE DeLete DelETE DelETe DelEtE DelEte DeleTE DeleTe DeletE Delete + dELETE dELETe dELEtE dELEte dELeTE dELeTe dELetE dELete dElETE dElETe dElEtE dElEte dEleTE dEleTe dEletE dElete + deLETE deLETe deLEtE deLEte deLeTE deLeTe deLetE deLete delETE delETe delEtE delEte deleTE deleTe deletE delete + HEAD HEAd HEaD HEad HeAD HeAd HeaD Head hEAD hEAd hEaD hEad heAD heAd heaD head + `.split(/\s+/m) + ), + 20 // 20 of 112 (approx. one-fifth) should be enough for testing + ); + + for (const method of methods) { + await PageObjects.console.clearTextArea(); + await PageObjects.console.pressEnter(); + + for (const char of method.slice(0, -1)) { + await PageObjects.console.sleepForDebouncePeriod(); + log.debug('Key type "%s"', char); + await PageObjects.console.enterText(char); // e.g. 'P' -> 'Po' -> 'Pos' + await retry.waitFor('autocomplete to be visible', () => + PageObjects.console.isAutocompleteVisible() + ); + expect(await PageObjects.console.isAutocompleteVisible()).to.be.eql(true); + } + + for (const char of [method.at(-1), ' ', '_']) { + await PageObjects.console.sleepForDebouncePeriod(); + log.debug('Key type "%s"', char); + await PageObjects.console.enterText(char); // e.g. 'Post ' -> 'Post _' + } + + await retry.waitFor('autocomplete to be visible', () => + PageObjects.console.isAutocompleteVisible() + ); + expect(await PageObjects.console.isAutocompleteVisible()).to.be.eql(true); + } + }); + + it('should activate auto-complete for a single character immediately following a slash in URL', async () => { + await PageObjects.console.enterText('GET .kibana'); + + for (const char of ['/', '_']) { + await PageObjects.console.sleepForDebouncePeriod(); + log.debug('Key type "%s"', char); + await PageObjects.console.enterText(char); // e.g. 'GET .kibana/' -> 'GET .kibana/_' + } + + await retry.waitFor('autocomplete to be visible', () => + PageObjects.console.isAutocompleteVisible() + ); + expect(await PageObjects.console.isAutocompleteVisible()).to.be.eql(true); + }); + }); + describe('with a missing comma in query', () => { const LINE_NUMBER = 4; beforeEach(async () => { @@ -48,6 +146,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await PageObjects.console.pressEnter(); await PageObjects.console.pressEnter(); await PageObjects.console.pressEnter(); + await PageObjects.console.sleepForDebouncePeriod(); await PageObjects.console.promptAutocomplete(); await PageObjects.console.pressEnter(); await retry.try(async () => { @@ -70,6 +169,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { it('should add a comma after the triple quoted strings', async () => { await PageObjects.console.enterText(`{\n\t"query": {\n\t\t"term": """some data"""`); await PageObjects.console.pressEnter(); + await PageObjects.console.sleepForDebouncePeriod(); await PageObjects.console.promptAutocomplete(); await PageObjects.console.pressEnter(); @@ -111,6 +211,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { it('should insert different templates depending on the value of type', async () => { await PageObjects.console.enterText(`{\n\t"type": "${type}"`); await PageObjects.console.pressEnter(); + await PageObjects.console.sleepForDebouncePeriod(); // Prompt autocomplete for 'settings' await PageObjects.console.promptAutocomplete('s'); diff --git a/test/functional/apps/console/_context_menu.ts b/test/functional/apps/console/_context_menu.ts index 1d7d4a07e3d4d..0d89a762ad910 100644 --- a/test/functional/apps/console/_context_menu.ts +++ b/test/functional/apps/console/_context_menu.ts @@ -16,18 +16,17 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { const browser = getService('browser'); const toasts = getService('toasts'); - // FLAKY: https://github.com/elastic/kibana/issues/155029 - describe.skip('console context menu', function testContextMenu() { + describe('console context menu', function testContextMenu() { before(async () => { await PageObjects.common.navigateToApp('console'); // Ensure that the text area can be interacted with await PageObjects.console.closeHelpIfExists(); await PageObjects.console.clearTextArea(); + await PageObjects.console.enterRequest(); }); it('should open context menu', async () => { expect(await PageObjects.console.isContextMenuOpen()).to.be(false); - await PageObjects.console.enterRequest(); await PageObjects.console.clickContextMenu(); expect(PageObjects.console.isContextMenuOpen()).to.be.eql(true); }); @@ -80,7 +79,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await browser.switchTab(0); }); - it('should auto indent when auto indent button is clicked', async () => { + it('should toggle auto indent when auto indent button is clicked', async () => { await PageObjects.console.clearTextArea(); await PageObjects.console.enterRequest('GET _search\n{"query": {"match_all": {}}}'); await PageObjects.console.clickContextMenu(); @@ -90,10 +89,9 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { const request = await PageObjects.console.getRequest(); expect(request).to.be.eql('GET _search\n{\n "query": {\n "match_all": {}\n }\n}'); }); - }); - it('should condense when auto indent button is clicked again', async () => { await PageObjects.console.clickContextMenu(); + // Click the auto-indent button again to condense request await PageObjects.console.clickAutoIndentButton(); // Retry until the request is condensed await retry.try(async () => { diff --git a/test/functional/apps/discover/group2/_sql_view.ts b/test/functional/apps/discover/group2/_sql_view.ts index e25d8a1fce36c..95ce1516728d2 100644 --- a/test/functional/apps/discover/group2/_sql_view.ts +++ b/test/functional/apps/discover/group2/_sql_view.ts @@ -31,8 +31,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { 'discover:enableSql': true, }; - // Failing: See https://github.com/elastic/kibana/issues/159194 - describe.skip('discover sql view', async function () { + describe('discover sql view', async function () { before(async () => { await security.testUser.setRoles(['kibana_admin', 'test_logstash_reader']); log.debug('load kibana index with default index pattern'); diff --git a/test/functional/apps/kibana_overview/_analytics.ts b/test/functional/apps/kibana_overview/_analytics.ts index fe43514c7e394..7b9d352e60e31 100644 --- a/test/functional/apps/kibana_overview/_analytics.ts +++ b/test/functional/apps/kibana_overview/_analytics.ts @@ -16,8 +16,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { const kibanaServer = getService('kibanaServer'); const PageObjects = getPageObjects(['common', 'header']); - // FLAKY https://github.com/elastic/kibana/issues/135089 - describe.skip('overview page - Analytics apps', function describeIndexTests() { + describe('overview page - Analytics apps', function describeIndexTests() { before(async () => { await esArchiver.load('test/functional/fixtures/es_archiver/logstash_functional'); await kibanaServer.importExport.load( @@ -47,7 +46,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { }; for (let i = 0; i < apps.length; i++) { - verifyImageUrl(kbnOverviewAppsCards[i], `kibana_${apps[i]}_light.svg`); + await verifyImageUrl(kbnOverviewAppsCards[i], `kibana_${apps[i]}_light.svg`); } }); diff --git a/test/functional/page_objects/common_page.ts b/test/functional/page_objects/common_page.ts index 60b5b05904ac0..11153db065a82 100644 --- a/test/functional/page_objects/common_page.ts +++ b/test/functional/page_objects/common_page.ts @@ -227,6 +227,7 @@ export class CommonPageObject extends FtrService { search = '', disableWelcomePrompt = true, insertTimestamp = true, + retryOnFatalError = true, } = {} ) { let appUrl: string; @@ -293,6 +294,13 @@ export class CommonPageObject extends FtrService { this.log.debug(msg); throw new Error(msg); } + + if (retryOnFatalError && (await this.isFatalErrorScreen())) { + const msg = `Fatal error screen shown. Let's try refreshing the page once more.`; + this.log.debug(msg); + throw new Error(msg); + } + if (appName === 'discover') { await this.browser.setLocalStorageItem('data.autocompleteFtuePopover', 'true'); } @@ -402,6 +410,10 @@ export class CommonPageObject extends FtrService { return await this.testSubjects.exists('kbnAppWrapper hiddenChrome'); } + async isFatalErrorScreen() { + return await this.testSubjects.exists('fatalErrorScreen'); + } + async waitForTopNavToBeVisible() { await this.retry.try(async () => { const isNavVisible = await this.testSubjects.exists('top-nav'); diff --git a/test/functional/page_objects/console_page.ts b/test/functional/page_objects/console_page.ts index 4b5ab3c2c23e1..9efe80741621e 100644 --- a/test/functional/page_objects/console_page.ts +++ b/test/functional/page_objects/console_page.ts @@ -16,6 +16,7 @@ export class ConsolePageObject extends FtrService { private readonly retry = this.ctx.getService('retry'); private readonly find = this.ctx.getService('find'); private readonly common = this.ctx.getPageObject('common'); + private readonly browser = this.ctx.getService('browser'); public async getVisibleTextFromAceEditor(editor: WebElementWrapper) { const lines = await editor.findAllByClassName('ace_line_group'); @@ -137,13 +138,12 @@ export class ConsolePageObject extends FtrService { // Prompt autocomplete window and provide a initial letter of properties to narrow down the results. E.g. 'b' = 'bool' public async promptAutocomplete(letter = 'b') { const textArea = await this.testSubjects.find('console-textarea'); - await textArea.clickMouseButton(); await textArea.type(letter); await this.retry.waitFor('autocomplete to be visible', () => this.isAutocompleteVisible()); } public async isAutocompleteVisible() { - const element = await this.find.byCssSelector('.ace_autocomplete'); + const element = await this.find.byCssSelector('.ace_autocomplete').catch(() => null); if (!element) return false; const attribute = await element.getAttribute('style'); @@ -206,6 +206,26 @@ export class ConsolePageObject extends FtrService { await textArea.pressKeys(Key.ESCAPE); } + public async pressDown() { + const textArea = await this.testSubjects.find('console-textarea'); + await textArea.pressKeys(Key.DOWN); + } + + public async pressLeft() { + const textArea = await this.testSubjects.find('console-textarea'); + await textArea.pressKeys(Key.LEFT); + } + + public async pressRight() { + const textArea = await this.testSubjects.find('console-textarea'); + await textArea.pressKeys(Key.RIGHT); + } + + public async pressUp() { + const textArea = await this.testSubjects.find('console-textarea'); + await textArea.pressKeys(Key.UP); + } + public async clearTextArea() { await this.retry.waitForWithTimeout('text area is cleared', 20000, async () => { const textArea = await this.testSubjects.find('console-textarea'); @@ -566,4 +586,16 @@ export class ConsolePageObject extends FtrService { const closeButton = await this.testSubjects.find('consoleHistoryCloseButton'); await closeButton.click(); } + + public async sleepForDebouncePeriod(milliseconds: number = 100) { + // start to sleep after confirming JS engine responds + await this.retry.waitFor('pinging JS engine', () => this.browser.execute('return true;')); + await this.common.sleep(milliseconds); + } + + async setAutocompleteTrace(flag: boolean) { + await this.browser.execute((f: boolean) => { + (window as any).autocomplete_trace = f; + }, flag); + } } diff --git a/test/functional/page_objects/management/saved_objects_page.ts b/test/functional/page_objects/management/saved_objects_page.ts index 0ce5396f1472a..b58907d13eabc 100644 --- a/test/functional/page_objects/management/saved_objects_page.ts +++ b/test/functional/page_objects/management/saved_objects_page.ts @@ -190,6 +190,26 @@ export class SavedObjectsPageObject extends FtrService { await option.click(); } + async clickShareToSpaceByTitle(title: string) { + const table = keyBy(await this.getElementsInTable(), 'title'); + // should we check if table size > 0 and log error if not? + if (table[title].menuElement) { + this.log.debug(`we found a context menu element for (${title}) so click it`); + await table[title].menuElement?.click(); + // Wait for context menu to render + const menuPanel = await this.find.byCssSelector('.euiContextMenuPanel'); + await ( + await menuPanel.findByTestSubject('savedObjectsTableAction-share_saved_objects_to_space') + ).click(); + } else { + this.log.debug( + `we didn't find a menu element so should be a "share to space" element for (${title}) to click` + ); + // or the action elements are on the row without the menu + await table[title].copySaveObjectsElement?.click(); + } + } + async clickCopyToSpaceByTitle(title: string) { const table = keyBy(await this.getElementsInTable(), 'title'); // should we check if table size > 0 and log error if not? diff --git a/test/plugin_functional/test_suites/core_plugins/rendering.ts b/test/plugin_functional/test_suites/core_plugins/rendering.ts index f19cf47d37bf8..6e0c4be2faaec 100644 --- a/test/plugin_functional/test_suites/core_plugins/rendering.ts +++ b/test/plugin_functional/test_suites/core_plugins/rendering.ts @@ -23,7 +23,7 @@ declare global { } const EXPOSED_CONFIG_SETTINGS_ERROR = - 'Actual config settings exposed to the browser do not match what is expected; this assertion fails if extra settings are present and/or expected settings are missing'; + 'Actual config settings exposed to the browser do not match list defined in test; this assertion fails if extra settings are present and/or expected settings are missing'; export default function ({ getService }: PluginFunctionalProviderContext) { const appsMenu = getService('appsMenu'); @@ -104,9 +104,11 @@ export default function ({ getService }: PluginFunctionalProviderContext) { 'data.search.sessions.management.refreshTimeout (duration)', 'data.search.sessions.maxUpdateRetries (number)', 'data.search.sessions.notTouchedTimeout (duration)', + 'data_views.scriptedFieldsEnabled (any)', // It's a boolean (any because schema.conditional) 'dev_tools.deeplinks.navLinkStatus (string)', 'enterpriseSearch.canDeployEntSearch (boolean)', 'enterpriseSearch.host (string)', + 'enterpriseSearch.ui.enabled (boolean)', 'home.disableWelcomeScreen (boolean)', 'management.deeplinks.navLinkStatus (string)', 'map.emsFileApiUrl (string)', @@ -242,6 +244,7 @@ export default function ({ getService }: PluginFunctionalProviderContext) { 'xpack.index_management.enableIndexActions (any)', 'xpack.index_management.enableLegacyTemplates (any)', 'xpack.index_management.dev.enableIndexDetailsPage (boolean)', + 'xpack.index_management.enableIndexStats (any)', 'xpack.infra.sources.default.fields.message (array)', /** * xpack.infra.logs is conditional and will resolve to an object of properties diff --git a/tsconfig.base.json b/tsconfig.base.json index d13cc53e6f546..cf7d73b7a5a9c 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -1202,6 +1202,8 @@ "@kbn/security-solution-side-nav/*": ["x-pack/packages/security-solution/side_nav/*"], "@kbn/security-solution-storybook-config": ["x-pack/packages/security-solution/storybook/config"], "@kbn/security-solution-storybook-config/*": ["x-pack/packages/security-solution/storybook/config/*"], + "@kbn/security-solution-upselling": ["x-pack/packages/security-solution/upselling"], + "@kbn/security-solution-upselling/*": ["x-pack/packages/security-solution/upselling/*"], "@kbn/security-test-endpoints-plugin": ["x-pack/test/security_functional/plugins/test_endpoints"], "@kbn/security-test-endpoints-plugin/*": ["x-pack/test/security_functional/plugins/test_endpoints/*"], "@kbn/securitysolution-autocomplete": ["packages/kbn-securitysolution-autocomplete"], diff --git a/typings/index.d.ts b/typings/index.d.ts index 0134f5be84018..c7266d8fcccd7 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -22,3 +22,4 @@ declare module 'monaco-editor/esm/vs/basic-languages/css/css'; declare module 'monaco-editor/esm/vs/basic-languages/yaml/yaml'; declare module 'find-cypress-specs'; +declare module '@cypress/grep/src/plugin'; diff --git a/x-pack/.i18nrc.json b/x-pack/.i18nrc.json index 3fa5a2da7c0ff..17fd0b07ec44e 100644 --- a/x-pack/.i18nrc.json +++ b/x-pack/.i18nrc.json @@ -24,6 +24,7 @@ "xpack.discoverLogExplorer": "plugins/discover_log_explorer", "xpack.crossClusterReplication": "plugins/cross_cluster_replication", "xpack.elasticAssistant": "packages/kbn-elastic-assistant", + "xpack.ecsDataQualityDashboard": "plugins/ecs_data_quality_dashboard", "xpack.embeddableEnhanced": "plugins/embeddable_enhanced", "xpack.endpoint": "plugins/endpoint", "xpack.enterpriseSearch": "plugins/enterprise_search", diff --git a/x-pack/examples/triggers_actions_ui_example/kibana.jsonc b/x-pack/examples/triggers_actions_ui_example/kibana.jsonc index 7b8c1309983a1..9de248572a5bb 100644 --- a/x-pack/examples/triggers_actions_ui_example/kibana.jsonc +++ b/x-pack/examples/triggers_actions_ui_example/kibana.jsonc @@ -13,6 +13,9 @@ "developerExamples", "kibanaReact", "cases" - ] + ], + "optionalPlugins": [ + "spaces" + ], } } diff --git a/x-pack/examples/triggers_actions_ui_example/public/application.tsx b/x-pack/examples/triggers_actions_ui_example/public/application.tsx index c3c2a49ad26da..2da1524f73c37 100644 --- a/x-pack/examples/triggers_actions_ui_example/public/application.tsx +++ b/x-pack/examples/triggers_actions_ui_example/public/application.tsx @@ -25,6 +25,7 @@ import { RulesListNotifyBadgeSandbox } from './components/rules_list_notify_badg import { RuleTagBadgeSandbox } from './components/rule_tag_badge_sandbox'; import { RuleTagFilterSandbox } from './components/rule_tag_filter_sandbox'; import { RuleEventLogListSandbox } from './components/rule_event_log_list_sandbox'; +import { GlobalRuleEventLogListSandbox } from './components/global_rule_event_log_list_sandbox'; import { RuleStatusDropdownSandbox } from './components/rule_status_dropdown_sandbox'; import { RuleStatusFilterSandbox } from './components/rule_status_filter_sandbox'; import { AlertsTableSandbox } from './components/alerts_table_sandbox'; @@ -102,6 +103,14 @@ const TriggersActionsUiExampleApp = ({ )} /> + ( + + + + )} + /> ( diff --git a/x-pack/examples/triggers_actions_ui_example/public/components/global_rule_event_log_list_sandbox.tsx b/x-pack/examples/triggers_actions_ui_example/public/components/global_rule_event_log_list_sandbox.tsx new file mode 100644 index 0000000000000..ec9035536ce99 --- /dev/null +++ b/x-pack/examples/triggers_actions_ui_example/public/components/global_rule_event_log_list_sandbox.tsx @@ -0,0 +1,24 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { TriggersAndActionsUIPublicPluginStart } from '@kbn/triggers-actions-ui-plugin/public'; + +interface SandboxProps { + triggersActionsUi: TriggersAndActionsUIPublicPluginStart; +} + +export const GlobalRuleEventLogListSandbox = ({ triggersActionsUi }: SandboxProps) => { + return ( +

    + {triggersActionsUi.getGlobalRuleEventLogList({ + localStorageKey: 'test-local-storage-key', + filteredRuleTypes: ['apm.error_rate', 'apm.transaction_error_rate'], + })} +
    + ); +}; diff --git a/x-pack/examples/triggers_actions_ui_example/public/components/sidebar.tsx b/x-pack/examples/triggers_actions_ui_example/public/components/sidebar.tsx index 286c61a4607fe..90a44353c646e 100644 --- a/x-pack/examples/triggers_actions_ui_example/public/components/sidebar.tsx +++ b/x-pack/examples/triggers_actions_ui_example/public/components/sidebar.tsx @@ -49,6 +49,11 @@ export const Sidebar = () => { name: 'Run History List', onClick: () => history.push(`/rule_event_log_list`), }, + { + id: 'global_rule_event_log_list', + name: 'Global Run History List', + onClick: () => history.push(`/global_rule_event_log_list`), + }, { id: 'rule_status_dropdown', name: 'Rule Status Dropdown', diff --git a/x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_avatar/assistant_avatar.tsx b/x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_avatar/assistant_avatar.tsx new file mode 100644 index 0000000000000..20b378447b7b8 --- /dev/null +++ b/x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_avatar/assistant_avatar.tsx @@ -0,0 +1,46 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React, { ReactNode } from 'react'; + +export interface AssistantAvatarProps { + size?: keyof typeof sizeMap; + // Required for EuiAvatar `iconType` prop + // eslint-disable-next-line react/no-unused-prop-types + children?: ReactNode; +} + +export const sizeMap = { + xl: 64, + l: 48, + m: 32, + s: 24, + xs: 16, +}; + +/** + * Default Elastic AI Assistant logo + * + * TODO: Can be removed once added to EUI + */ +export const AssistantAvatar = ({ size = 's' }: AssistantAvatarProps) => ( + + + + + + +); diff --git a/x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_header/index.test.tsx b/x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_header/index.test.tsx index 59dbbd9105487..a4c0e2fe20719 100644 --- a/x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_header/index.test.tsx +++ b/x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_header/index.test.tsx @@ -13,10 +13,7 @@ import { alertConvo, emptyWelcomeConvo } from '../../mock/conversation'; const testProps = { currentConversation: emptyWelcomeConvo, - currentTitle: { - title: 'Test Title', - titleIcon: 'logoSecurity', - }, + title: 'Test Title', docLinks: { ELASTIC_WEBSITE_URL: 'https://www.elastic.co/', DOC_LINK_VERSION: 'master', diff --git a/x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_header/index.tsx b/x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_header/index.tsx index 773b46bdb2ab2..65c3c267e9a8e 100644 --- a/x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_header/index.tsx +++ b/x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_header/index.tsx @@ -26,7 +26,6 @@ import * as i18n from '../translations'; interface OwnProps { currentConversation: Conversation; - currentTitle: { title: string | JSX.Element; titleIcon: string }; defaultConnectorId?: string; defaultProvider?: OpenAiProviderType; docLinks: Omit; @@ -39,6 +38,7 @@ interface OwnProps { setSelectedConversationId: React.Dispatch>; shouldDisableKeyboardShortcut?: () => boolean; showAnonymizedValues: boolean; + title: string | JSX.Element; } type Props = OwnProps; @@ -49,7 +49,6 @@ type Props = OwnProps; */ export const AssistantHeader: React.FC = ({ currentConversation, - currentTitle, defaultConnectorId, defaultProvider, docLinks, @@ -62,6 +61,7 @@ export const AssistantHeader: React.FC = ({ setSelectedConversationId, shouldDisableKeyboardShortcut, showAnonymizedValues, + title, }) => { const showAnonymizedValuesChecked = useMemo( () => @@ -81,9 +81,10 @@ export const AssistantHeader: React.FC = ({ > diff --git a/x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_title/index.test.tsx b/x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_title/index.test.tsx index e24d8fe48291b..bdc9f71e42fc5 100644 --- a/x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_title/index.test.tsx +++ b/x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_title/index.test.tsx @@ -12,20 +12,18 @@ import { TestProviders } from '../../mock/test_providers/test_providers'; const testProps = { title: 'Test Title', - titleIcon: 'globe', docLinks: { ELASTIC_WEBSITE_URL: 'https://www.elastic.co/', DOC_LINK_VERSION: '7.15' }, selectedConversation: undefined, }; describe('AssistantTitle', () => { it('the component renders correctly with valid props', () => { - const { getByText, container } = render( + const { getByText } = render( ); expect(getByText('Test Title')).toBeInTheDocument(); - expect(container.querySelector('[data-euiicon-type="globe"]')).not.toBeNull(); }); it('clicking on the popover button opens the popover with the correct link', () => { diff --git a/x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_title/index.tsx b/x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_title/index.tsx index f2d77c9fb6716..766811d70ebe6 100644 --- a/x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_title/index.tsx +++ b/x-pack/packages/kbn-elastic-assistant/impl/assistant/assistant_title/index.tsx @@ -10,7 +10,6 @@ import { EuiButtonIcon, EuiFlexGroup, EuiFlexItem, - EuiIcon, EuiLink, EuiModalHeaderTitle, EuiPopover, @@ -19,21 +18,21 @@ import { } from '@elastic/eui'; import type { DocLinksStart } from '@kbn/core-doc-links-browser'; import { FormattedMessage } from '@kbn/i18n-react'; -import { css } from '@emotion/react'; import * as i18n from '../translations'; import type { Conversation } from '../../..'; import { ConnectorSelectorInline } from '../../connectorland/connector_selector_inline/connector_selector_inline'; +import { AssistantAvatar } from '../assistant_avatar/assistant_avatar'; /** - * Renders a header title with an icon, a tooltip button, and a popover with + * Renders a header title, a tooltip button, and a popover with * information about the assistant feature and access to documentation. */ export const AssistantTitle: React.FC<{ + isDisabled?: boolean; title: string | JSX.Element; - titleIcon: string; docLinks: Omit; selectedConversation: Conversation | undefined; -}> = ({ title, titleIcon, docLinks, selectedConversation }) => { +}> = ({ isDisabled = false, title, docLinks, selectedConversation }) => { const selectedConnectorId = selectedConversation?.apiConfig?.connectorId; const { ELASTIC_WEBSITE_URL, DOC_LINK_VERSION } = docLinks; @@ -74,13 +73,8 @@ export const AssistantTitle: React.FC<{ return ( - - + + @@ -116,7 +110,7 @@ export const AssistantTitle: React.FC<{ {}} onConnectorSelectionChange={() => {}} selectedConnectorId={selectedConnectorId} diff --git a/x-pack/packages/kbn-elastic-assistant/impl/assistant/index.tsx b/x-pack/packages/kbn-elastic-assistant/impl/assistant/index.tsx index fd8e6d3b2a18f..4ea1ed240870d 100644 --- a/x-pack/packages/kbn-elastic-assistant/impl/assistant/index.tsx +++ b/x-pack/packages/kbn-elastic-assistant/impl/assistant/index.tsx @@ -71,7 +71,6 @@ const AssistantComponent: React.FC = ({ setConversationId, }) => { const { - actionTypeRegistry, assistantTelemetry, augmentMessageCodeBlocks, conversations, @@ -98,11 +97,7 @@ const AssistantComponent: React.FC = ({ const { createConversation } = useConversation(); // Connector details - const { - data: connectors, - isSuccess: areConnectorsFetched, - refetch: refetchConnectors, - } = useLoadConnectors({ http }); + const { data: connectors, isSuccess: areConnectorsFetched } = useLoadConnectors({ http }); const defaultConnectorId = useMemo(() => getDefaultConnector(connectors)?.id, [connectors]); const defaultProvider = useMemo( () => @@ -171,23 +166,14 @@ const AssistantComponent: React.FC = ({ }, [areConnectorsFetched, connectors?.length, currentConversation, setLastConversationId]); const { comments: connectorComments, prompt: connectorPrompt } = useConnectorSetup({ - actionTypeRegistry, - http, - refetchConnectors, + conversation: blockBotConversation, onSetupComplete: () => { bottomRef.current?.scrollIntoView({ behavior: 'auto' }); }, - conversation: blockBotConversation, - isConnectorConfigured: !!connectors?.length, }); - const currentTitle: { title: string | JSX.Element; titleIcon: string } = - isWelcomeSetup && blockBotConversation.theme?.title && blockBotConversation.theme?.titleIcon - ? { - title: blockBotConversation.theme?.title, - titleIcon: blockBotConversation.theme?.titleIcon, - } - : { title, titleIcon: 'logoSecurity' }; + const currentTitle: string | JSX.Element = + isWelcomeSetup && blockBotConversation.theme?.title ? blockBotConversation.theme?.title : title; const bottomRef = useRef(null); const lastCommentRef = useRef(null); @@ -435,7 +421,6 @@ const AssistantComponent: React.FC = ({ {showTitle && ( = ({ setIsSettingsModalVisible={setIsSettingsModalVisible} setSelectedConversationId={setSelectedConversationId} showAnonymizedValues={showAnonymizedValues} + title={currentTitle} /> )} @@ -475,6 +461,7 @@ const AssistantComponent: React.FC = ({ 0} isSettingsModalVisible={isSettingsModalVisible} setIsSettingsModalVisible={setIsSettingsModalVisible} /> diff --git a/x-pack/packages/kbn-elastic-assistant/impl/assistant_context/index.test.tsx b/x-pack/packages/kbn-elastic-assistant/impl/assistant_context/index.test.tsx index 93a52fa81a4a2..466ccbb83cb0f 100644 --- a/x-pack/packages/kbn-elastic-assistant/impl/assistant_context/index.test.tsx +++ b/x-pack/packages/kbn-elastic-assistant/impl/assistant_context/index.test.tsx @@ -11,15 +11,23 @@ import React from 'react'; import { AssistantProvider, useAssistantContext } from '.'; import { httpServiceMock } from '@kbn/core-http-browser-mocks'; import { actionTypeRegistryMock } from '@kbn/triggers-actions-ui-plugin/public/application/action_type_registry.mock'; +import { AssistantAvailability } from '../..'; const actionTypeRegistry = actionTypeRegistryMock.create(); const mockGetInitialConversations = jest.fn(() => ({})); const mockGetComments = jest.fn(() => []); const mockHttp = httpServiceMock.createStartContract({ basePath: '/test' }); +const mockAssistantAvailability: AssistantAvailability = { + hasAssistantPrivilege: false, + hasConnectorsAllPrivilege: true, + hasConnectorsReadPrivilege: true, + isAssistantEnabled: true, +}; const ContextWrapper: React.FC = ({ children }) => ( void; export interface AssistantProviderProps { actionTypeRegistry: ActionTypeRegistryContract; + assistantAvailability: AssistantAvailability; assistantTelemetry?: AssistantTelemetry; augmentMessageCodeBlocks: (currentConversation: Conversation) => CodeBlockDetails[][]; baseAllow: string[]; @@ -79,6 +80,7 @@ export interface AssistantProviderProps { export interface UseAssistantContext { actionTypeRegistry: ActionTypeRegistryContract; + assistantAvailability: AssistantAvailability; assistantTelemetry?: AssistantTelemetry; augmentMessageCodeBlocks: (currentConversation: Conversation) => CodeBlockDetails[][]; allQuickPrompts: QuickPrompt[]; @@ -126,6 +128,7 @@ const AssistantContext = React.createContext(un export const AssistantProvider: React.FC = ({ actionTypeRegistry, + assistantAvailability, assistantTelemetry, augmentMessageCodeBlocks, baseAllow, @@ -244,6 +247,7 @@ export const AssistantProvider: React.FC = ({ const value = useMemo( () => ({ actionTypeRegistry, + assistantAvailability, assistantTelemetry, augmentMessageCodeBlocks, allQuickPrompts: localStorageQuickPrompts ?? [], @@ -279,6 +283,7 @@ export const AssistantProvider: React.FC = ({ }), [ actionTypeRegistry, + assistantAvailability, assistantTelemetry, augmentMessageCodeBlocks, baseAllow, diff --git a/x-pack/packages/kbn-elastic-assistant/impl/assistant_context/types.tsx b/x-pack/packages/kbn-elastic-assistant/impl/assistant_context/types.tsx index 022d131d69fe8..94b78b459c934 100644 --- a/x-pack/packages/kbn-elastic-assistant/impl/assistant_context/types.tsx +++ b/x-pack/packages/kbn-elastic-assistant/impl/assistant_context/types.tsx @@ -62,3 +62,14 @@ export interface AssistantTelemetry { reportAssistantMessageSent: (params: { conversationId: string; role: string }) => void; reportAssistantQuickPrompt: (params: { conversationId: string; promptTitle: string }) => void; } + +export interface AssistantAvailability { + // True when user is Enterprise, or Security Complete PLI for serverless. When false, the Assistant is disabled and unavailable + isAssistantEnabled: boolean; + // When true, the Assistant is hidden and unavailable + hasAssistantPrivilege: boolean; + // When true, user has `All` privilege for `Connectors and Actions` (show/execute/delete/save ui capabilities) + hasConnectorsAllPrivilege: boolean; + // When true, user has `Read` privilege for `Connectors and Actions` (show/execute ui capabilities) + hasConnectorsReadPrivilege: boolean; +} diff --git a/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_button/index.tsx b/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_button/index.tsx index a70ab2a16e5cb..8db849f64fdf6 100644 --- a/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_button/index.tsx +++ b/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_button/index.tsx @@ -5,32 +5,46 @@ * 2.0. */ -import React from 'react'; +import React, { useCallback } from 'react'; import { EuiCard, EuiFlexGroup, EuiFlexItem, EuiIcon } from '@elastic/eui'; import { GenAiLogo } from '@kbn/stack-connectors-plugin/public/common'; import * as i18n from '../translations'; +import { useAssistantContext } from '../../assistant_context'; export interface ConnectorButtonProps { - setIsConnectorModalVisible: React.Dispatch>; + setIsConnectorModalVisible?: React.Dispatch>; } /** * Simple button component for adding a connector. Note: component is basic and does not handle connector - * add logic. Must pass in `setIsConnectorModalVisible`, see ConnectorSetup component if wanting to manage - * connector add logic. + * add logic. See ConnectorSetup component if wanting to manage connector add logic. */ export const ConnectorButton: React.FC = React.memo( ({ setIsConnectorModalVisible }) => { + const { assistantAvailability } = useAssistantContext(); + + const title = assistantAvailability.hasConnectorsAllPrivilege + ? i18n.ADD_CONNECTOR_TITLE + : i18n.ADD_CONNECTOR_MISSING_PRIVILEGES_TITLE; + const description = assistantAvailability.hasConnectorsAllPrivilege + ? i18n.ADD_CONNECTOR_DESCRIPTION + : i18n.ADD_CONNECTOR_MISSING_PRIVILEGES_DESCRIPTION; + + const onClick = useCallback(() => { + setIsConnectorModalVisible?.(true); + }, [setIsConnectorModalVisible]); + return ( } - title={i18n.ADD_CONNECTOR_TITLE} - description={i18n.ADD_CONNECTOR_DESCRIPTION} - onClick={() => setIsConnectorModalVisible(true)} + title={title} + description={description} + onClick={assistantAvailability.hasConnectorsAllPrivilege ? onClick : undefined} /> diff --git a/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_missing_callout/index.test.tsx b/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_missing_callout/index.test.tsx new file mode 100644 index 0000000000000..8c2ef67b891a9 --- /dev/null +++ b/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_missing_callout/index.test.tsx @@ -0,0 +1,77 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; + +import { render } from '@testing-library/react'; +import { ConnectorMissingCallout } from '.'; +import { AssistantAvailability } from '../../..'; +import { TestProviders } from '../../mock/test_providers/test_providers'; + +describe('connectorMissingCallout', () => { + describe('when connectors and actions privileges', () => { + describe('are `READ`', () => { + const assistantAvailability: AssistantAvailability = { + hasAssistantPrivilege: true, + hasConnectorsAllPrivilege: false, + hasConnectorsReadPrivilege: true, + isAssistantEnabled: true, + }; + + it('should show connector privileges required button if no connectors exist', async () => { + const { queryByTestId } = render( + + + + ); + + expect(queryByTestId('connectorButton')).toBeInTheDocument(); + }); + + it('should NOT show connector privileges required button if at least one connector exists', async () => { + const { queryByTestId } = render( + + + + ); + + expect(queryByTestId('connectorButton')).not.toBeInTheDocument(); + }); + }); + + describe('are `NONE`', () => { + const assistantAvailability: AssistantAvailability = { + hasAssistantPrivilege: true, + hasConnectorsAllPrivilege: false, + hasConnectorsReadPrivilege: false, + isAssistantEnabled: true, + }; + + it('should show connector privileges required button', async () => { + const { queryByTestId } = render( + + + + ); + + expect(queryByTestId('connectorButton')).toBeInTheDocument(); + }); + }); + }); +}); diff --git a/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_missing_callout/index.tsx b/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_missing_callout/index.tsx index 1c56e005892c5..90118b6a5a276 100644 --- a/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_missing_callout/index.tsx +++ b/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_missing_callout/index.tsx @@ -12,22 +12,24 @@ import { FormattedMessage } from '@kbn/i18n-react'; import * as i18n from '../translations'; import { useAssistantContext } from '../../assistant_context'; import { CONVERSATIONS_TAB } from '../../assistant/settings/assistant_settings'; +import { ConnectorButton } from '../connector_button'; interface Props { + isConnectorConfigured: boolean; isSettingsModalVisible: boolean; setIsSettingsModalVisible: React.Dispatch>; } /** * Error callout to be displayed when there is no connector configured for a conversation. Includes deep-link - * to conversation settings to quickly resolve. + * to conversation settings to quickly resolve. Falls back to connector if privileges aren't met. * * TODO: Add 'quick fix' button to just pick a connector * TODO: Add setting for 'default connector' so we can auto-resolve and not even show this */ export const ConnectorMissingCallout: React.FC = React.memo( - ({ isSettingsModalVisible, setIsSettingsModalVisible }) => { - const { setSelectedSettingsTab } = useAssistantContext(); + ({ isConnectorConfigured, isSettingsModalVisible, setIsSettingsModalVisible }) => { + const { assistantAvailability, setSelectedSettingsTab } = useAssistantContext(); const onConversationSettingsClicked = useCallback(() => { if (!isSettingsModalVisible) { @@ -36,28 +38,40 @@ export const ConnectorMissingCallout: React.FC = React.memo( } }, [isSettingsModalVisible, setIsSettingsModalVisible, setSelectedSettingsTab]); + // Show missing callout if user has all privileges or read privileges and at least 1 connector configured + const showMissingCallout = + assistantAvailability.hasConnectorsAllPrivilege || + (assistantAvailability.hasConnectorsReadPrivilege && isConnectorConfigured); + return ( - -

    - {' '} - - {i18n.MISSING_CONNECTOR_CONVERSATION_SETTINGS_LINK} - - ), - }} - /> -

    -
    + <> + {showMissingCallout ? ( + +

    + {' '} + + {i18n.MISSING_CONNECTOR_CONVERSATION_SETTINGS_LINK} + + ), + }} + /> +

    +
    + ) : ( + + )} + ); } ); diff --git a/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_selector/index.tsx b/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_selector/index.tsx index f0b47f31e9c27..f1a03329657b6 100644 --- a/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_selector/index.tsx +++ b/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_selector/index.tsx @@ -23,6 +23,7 @@ import { import { useLoadConnectors } from '../use_load_connectors'; import * as i18n from '../translations'; import { useLoadActionTypes } from '../use_load_action_types'; +import { useAssistantContext } from '../../assistant_context'; export const ADD_NEW_CONNECTOR = 'ADD_NEW_CONNECTOR'; interface Props { @@ -47,6 +48,7 @@ export const ConnectorSelector: React.FC = React.memo( selectedConnectorId, onConnectorSelectionChange, }) => { + const { assistantAvailability } = useAssistantContext(); // Connector Modal State const [isConnectorModalVisible, setIsConnectorModalVisible] = useState(false); const { data: actionTypes } = useLoadActionTypes({ http }); @@ -68,6 +70,7 @@ export const ConnectorSelector: React.FC = React.memo( refetch: refetchConnectors, } = useLoadConnectors({ http }); const isLoading = isLoadingActionTypes || isFetchingActionTypes; + const localIsDisabled = isDisabled || !assistantAvailability.hasConnectorsReadPrivilege; const addNewConnectorOption = useMemo(() => { return { @@ -113,6 +116,15 @@ export const ConnectorSelector: React.FC = React.memo( ); }, [connectors]); + // Only include add new connector option if user has privilege + const allConnectorOptions = useMemo( + () => + assistantAvailability.hasConnectorsAllPrivilege + ? [...connectorOptions, addNewConnectorOption] + : [...connectorOptions], + [addNewConnectorOption, assistantAvailability.hasConnectorsAllPrivilege, connectorOptions] + ); + const cleanupAndCloseModal = useCallback(() => { onConnectorModalVisibilityChange?.(false); setIsConnectorModalVisible(false); @@ -139,11 +151,11 @@ export const ConnectorSelector: React.FC = React.memo( {isConnectorModalVisible && ( diff --git a/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_selector_inline/connector_selector_inline.tsx b/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_selector_inline/connector_selector_inline.tsx index 09b77c642ffcf..66d7971731deb 100644 --- a/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_selector_inline/connector_selector_inline.tsx +++ b/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_selector_inline/connector_selector_inline.tsx @@ -85,7 +85,7 @@ export const ConnectorSelectorInline: React.FC = React.memo( onConnectorSelectionChange, }) => { const [isOpen, setIsOpen] = useState(false); - const { actionTypeRegistry, http } = useAssistantContext(); + const { actionTypeRegistry, assistantAvailability, http } = useAssistantContext(); const { setApiConfig } = useConversation(); // Connector Modal State const [isConnectorModalVisible, setIsConnectorModalVisible] = useState(false); @@ -111,6 +111,7 @@ export const ConnectorSelectorInline: React.FC = React.memo( const selectedConnectorName = connectors?.find((c) => c.id === selectedConnectorId)?.name ?? i18n.INLINE_CONNECTOR_PLACEHOLDER; + const localIsDisabled = isDisabled || !assistantAvailability.hasConnectorsReadPrivilege; const addNewConnectorOption = useMemo(() => { return { @@ -160,6 +161,15 @@ export const ConnectorSelectorInline: React.FC = React.memo( ); }, [connectors]); + // Only include add new connector option if user has privilege + const allConnectorOptions = useMemo( + () => + assistantAvailability.hasConnectorsAllPrivilege + ? [...connectorOptions, addNewConnectorOption] + : [...connectorOptions], + [addNewConnectorOption, assistantAvailability.hasConnectorsAllPrivilege, connectorOptions] + ); + const cleanupAndCloseModal = useCallback(() => { onConnectorModalVisibilityChange?.(false); setIsConnectorModalVisible(false); @@ -236,13 +246,13 @@ export const ConnectorSelectorInline: React.FC = React.memo( @@ -254,7 +264,7 @@ export const ConnectorSelectorInline: React.FC = React.memo( data-test-subj="connectorSelectorPlaceholderButton" iconSide={'right'} iconType="arrowDown" - isDisabled={isDisabled} + isDisabled={localIsDisabled} onClick={onConnectorClick} size="xs" > diff --git a/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_setup/index.tsx b/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_setup/index.tsx index 9dac51c5a834c..23ccc51943655 100644 --- a/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_setup/index.tsx +++ b/x-pack/packages/kbn-elastic-assistant/impl/connectorland/connector_setup/index.tsx @@ -13,8 +13,7 @@ import styled from 'styled-components'; import { ConnectorAddModal } from '@kbn/triggers-actions-ui-plugin/public/common/constants'; import type { ActionConnector } from '@kbn/triggers-actions-ui-plugin/public'; -import { HttpSetup } from '@kbn/core-http-browser'; -import { ActionType, ActionTypeRegistryContract } from '@kbn/triggers-actions-ui-plugin/public'; +import { ActionType } from '@kbn/triggers-actions-ui-plugin/public'; import { GEN_AI_CONNECTOR_ID, OpenAiProviderType, @@ -29,6 +28,8 @@ import { useConversation } from '../../assistant/use_conversation'; import { clearPresentationData, conversationHasNoPresentationData } from './helpers'; import * as i18n from '../translations'; import { useAssistantContext } from '../../assistant_context'; +import { useLoadConnectors } from '../use_load_connectors'; +import { AssistantAvatar } from '../../assistant/assistant_avatar/assistant_avatar'; const ConnectorButtonWrapper = styled.div` margin-bottom: 10px; @@ -43,21 +44,13 @@ interface Config { } export interface ConnectorSetupProps { - isConnectorConfigured: boolean; - actionTypeRegistry: ActionTypeRegistryContract; conversation?: Conversation; - http: HttpSetup; onSetupComplete?: () => void; - refetchConnectors?: () => void; } export const useConnectorSetup = ({ - actionTypeRegistry, conversation = WELCOME_CONVERSATION, - http, - isConnectorConfigured = false, onSetupComplete, - refetchConnectors, }: ConnectorSetupProps): { comments: EuiCommentProps[]; prompt: React.ReactElement; @@ -65,7 +58,13 @@ export const useConnectorSetup = ({ const { appendMessage, setApiConfig, setConversation } = useConversation(); const bottomRef = useRef(null); // Access all conversations so we can add connector to all on initial setup - const { conversations } = useAssistantContext(); + const { actionTypeRegistry, conversations, http } = useAssistantContext(); + const { + data: connectors, + isSuccess: areConnectorsFetched, + refetch: refetchConnectors, + } = useLoadConnectors({ http }); + const isConnectorConfigured = areConnectorsFetched && !!connectors?.length; const [isConnectorModalVisible, setIsConnectorModalVisible] = useState(false); const [showAddConnectorButton, setShowAddConnectorButton] = useState(() => { @@ -188,21 +187,14 @@ export const useConnectorSetup = ({ name={i18n.CONNECTOR_SETUP_USER_ASSISTANT} size="l" color="subdued" - iconType={conversation?.theme?.assistant?.icon ?? 'logoElastic'} + iconType={AssistantAvatar} /> ), timestamp: `${i18n.CONNECTOR_SETUP_TIMESTAMP_AT}: ${message.timestamp}`, }; return commentProps; }), - [ - assistantName, - commentBody, - conversation.messages, - conversation?.theme?.assistant?.icon, - currentMessageIndex, - userName, - ] + [assistantName, commentBody, conversation.messages, currentMessageIndex, userName] ); return { diff --git a/x-pack/packages/kbn-elastic-assistant/impl/connectorland/translations.ts b/x-pack/packages/kbn-elastic-assistant/impl/connectorland/translations.ts index 2c8523f2966b9..dbc692d6b5493 100644 --- a/x-pack/packages/kbn-elastic-assistant/impl/connectorland/translations.ts +++ b/x-pack/packages/kbn-elastic-assistant/impl/connectorland/translations.ts @@ -73,17 +73,17 @@ export const ADD_CONNECTOR_DESCRIPTION = i18n.translate( } ); -export const CONNECTOR_ADDED_TITLE = i18n.translate( - 'xpack.elasticAssistant.assistant.connectors.addConnectorButton.connectorAddedTitle', +export const ADD_CONNECTOR_MISSING_PRIVILEGES_TITLE = i18n.translate( + 'xpack.elasticAssistant.assistant.connectors.addConnectorButton.missingPrivilegesTitle', { - defaultMessage: 'Generative AI Connector added!', + defaultMessage: 'Generative AI Connector Required', } ); -export const CONNECTOR_ADDED_DESCRIPTION = i18n.translate( - 'xpack.elasticAssistant.assistant.connectors.addConnectorButton.connectorAddedDescription', +export const ADD_CONNECTOR_MISSING_PRIVILEGES_DESCRIPTION = i18n.translate( + 'xpack.elasticAssistant.assistant.connectors.addConnectorButton.missingPrivilegesDescription', { - defaultMessage: 'Ready to continue the conversation...', + defaultMessage: 'Please contact your administrator to enable a Generative AI Connector.', } ); diff --git a/x-pack/packages/kbn-elastic-assistant/impl/mock/test_providers/test_providers.tsx b/x-pack/packages/kbn-elastic-assistant/impl/mock/test_providers/test_providers.tsx index ab625a7b5662a..aec3a6262ba4c 100644 --- a/x-pack/packages/kbn-elastic-assistant/impl/mock/test_providers/test_providers.tsx +++ b/x-pack/packages/kbn-elastic-assistant/impl/mock/test_providers/test_providers.tsx @@ -15,9 +15,10 @@ import { ThemeProvider } from 'styled-components'; import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; import { AssistantProvider, AssistantProviderProps } from '../../assistant_context'; -import { Conversation } from '../../assistant_context/types'; +import { AssistantAvailability, Conversation } from '../../assistant_context/types'; interface Props { + assistantAvailability?: AssistantAvailability; children: React.ReactNode; getInitialConversations?: () => Record; providerContext?: Partial; @@ -28,8 +29,16 @@ window.HTMLElement.prototype.scrollIntoView = jest.fn(); const mockGetInitialConversations = () => ({}); +const mockAssistantAvailability: AssistantAvailability = { + hasAssistantPrivilege: false, + hasConnectorsAllPrivilege: true, + hasConnectorsReadPrivilege: true, + isAssistantEnabled: true, +}; + /** A utility for wrapping children in the providers required to run tests */ export const TestProvidersComponent: React.FC = ({ + assistantAvailability = mockAssistantAvailability, children, getInitialConversations = mockGetInitialConversations, providerContext, @@ -56,6 +65,7 @@ export const TestProvidersComponent: React.FC = ({ ; type HistoricalSummaryResponse = t.OutputOf; +/** + * The response type for /internal/observability/slo/_definitions + * + * @private + */ +type FindSloDefinitionsResponse = t.OutputOf; + type GetPreviewDataParams = t.TypeOf; type GetPreviewDataResponse = t.OutputOf; @@ -257,6 +282,8 @@ export { getSLOResponseSchema, fetchHistoricalSummaryParamsSchema, fetchHistoricalSummaryResponseSchema, + findSloDefinitionsParamsSchema, + findSloDefinitionsResponseSchema, manageSLOParamsSchema, sloResponseSchema, sloWithSummaryResponseSchema, @@ -281,6 +308,7 @@ export type { FetchHistoricalSummaryParams, FetchHistoricalSummaryResponse, HistoricalSummaryResponse, + FindSloDefinitionsResponse, ManageSLOParams, SLOResponse, SLOWithSummaryResponse, diff --git a/x-pack/packages/kbn-slo-schema/src/schema/indicators.ts b/x-pack/packages/kbn-slo-schema/src/schema/indicators.ts index d24d26fbe51dc..07b9c69f4fb97 100644 --- a/x-pack/packages/kbn-slo-schema/src/schema/indicators.ts +++ b/x-pack/packages/kbn-slo-schema/src/schema/indicators.ts @@ -46,13 +46,17 @@ const apmTransactionErrorRateIndicatorSchema = t.type({ const kqlCustomIndicatorTypeSchema = t.literal('sli.kql.custom'); const kqlCustomIndicatorSchema = t.type({ type: kqlCustomIndicatorTypeSchema, - params: t.type({ - index: t.string, - filter: t.string, - good: t.string, - total: t.string, - timestampField: t.string, - }), + params: t.intersection([ + t.type({ + index: t.string, + good: t.string, + total: t.string, + timestampField: t.string, + }), + t.partial({ + filter: t.string, + }), + ]), }); const metricCustomValidAggregations = t.keyof({ @@ -76,13 +80,17 @@ const metricCustomMetricDef = t.type({ const metricCustomIndicatorTypeSchema = t.literal('sli.metric.custom'); const metricCustomIndicatorSchema = t.type({ type: metricCustomIndicatorTypeSchema, - params: t.type({ - index: t.string, - filter: t.string, - good: metricCustomMetricDef, - total: metricCustomMetricDef, - timestampField: t.string, - }), + params: t.intersection([ + t.type({ + index: t.string, + good: metricCustomMetricDef, + total: metricCustomMetricDef, + timestampField: t.string, + }), + t.partial({ + filter: t.string, + }), + ]), }); const rangeHistogramMetricType = t.literal('range'); @@ -117,13 +125,17 @@ const histogramMetricDef = t.union([ const histogramIndicatorTypeSchema = t.literal('sli.histogram.custom'); const histogramIndicatorSchema = t.type({ type: histogramIndicatorTypeSchema, - params: t.type({ - index: t.string, - timestampField: t.string, - filter: t.string, - good: histogramMetricDef, - total: histogramMetricDef, - }), + params: t.intersection([ + t.type({ + index: t.string, + timestampField: t.string, + good: histogramMetricDef, + total: histogramMetricDef, + }), + t.partial({ + filter: t.string, + }), + ]), }); const indicatorDataSchema = t.type({ diff --git a/x-pack/packages/ml/date_picker/src/components/date_picker_wrapper.test.tsx b/x-pack/packages/ml/date_picker/src/components/date_picker_wrapper.test.tsx index 7383cfc78ba7c..f9d189167df9b 100644 --- a/x-pack/packages/ml/date_picker/src/components/date_picker_wrapper.test.tsx +++ b/x-pack/packages/ml/date_picker/src/components/date_picker_wrapper.test.tsx @@ -77,8 +77,7 @@ const mockContextFactory = (addWarning: jest.Mock) => { // eslint-disable-next-line @typescript-eslint/no-var-requires const { of } = require('rxjs'); const mockedUiSettingsKeys = {} as typeof UI_SETTINGS; - const mockedToMountPoint = jest.fn(); - const mockedWrapWithTheme = jest.fn(); + const mockedI18n = jest.fn(); return () => ({ notifications: { @@ -121,8 +120,7 @@ const mockContextFactory = (addWarning: jest.Mock) => { theme$: of(), }, uiSettingsKeys: mockedUiSettingsKeys, - toMountPoint: mockedToMountPoint, - wrapWithTheme: mockedWrapWithTheme, + i18n: mockedI18n, }); }; diff --git a/x-pack/packages/ml/date_picker/src/components/date_picker_wrapper.tsx b/x-pack/packages/ml/date_picker/src/components/date_picker_wrapper.tsx index 562b49f42991e..8d500f7d1a815 100644 --- a/x-pack/packages/ml/date_picker/src/components/date_picker_wrapper.tsx +++ b/x-pack/packages/ml/date_picker/src/components/date_picker_wrapper.tsx @@ -25,6 +25,7 @@ import { i18n } from '@kbn/i18n'; import { FormattedMessage } from '@kbn/i18n-react'; import type { TimeHistoryContract } from '@kbn/data-plugin/public'; import { useUrlState } from '@kbn/ml-url-state'; +import { toMountPoint } from '@kbn/react-kibana-mount'; import { useRefreshIntervalUpdates, useTimeRangeUpdates } from '../hooks/use_timefilter'; import { useDatePickerContext } from '../hooks/use_date_picker_context'; @@ -103,11 +104,10 @@ export const DatePickerWrapper: FC = (props) => { const { data, notifications: { toasts }, - theme: { theme$ }, uiSettings: config, uiSettingsKeys, - wrapWithTheme, - toMountPoint, + theme, + i18n: i18nStart, } = useDatePickerContext(); const isWithinLBreakpoint = useIsWithinMaxBreakpoint('l'); @@ -184,23 +184,21 @@ export const DatePickerWrapper: FC = (props) => { 'The refresh interval in Advanced Settings is shorter than the minimum supported interval.', }), text: toMountPoint( - wrapWithTheme( - - - , - theme$ - ) + + + , + { theme, i18n: i18nStart } ), }, { toastLifeTimeMs: 30000 } diff --git a/x-pack/packages/ml/date_picker/src/hooks/use_date_picker_context.tsx b/x-pack/packages/ml/date_picker/src/hooks/use_date_picker_context.tsx index 19e59b58d392d..28ad6a12de745 100644 --- a/x-pack/packages/ml/date_picker/src/hooks/use_date_picker_context.tsx +++ b/x-pack/packages/ml/date_picker/src/hooks/use_date_picker_context.tsx @@ -9,9 +9,8 @@ import React, { createContext, useContext, type FC } from 'react'; import type { UI_SETTINGS } from '@kbn/data-plugin/common'; import type { DataPublicPluginStart } from '@kbn/data-plugin/public'; -import type { CoreSetup, IUiSettingsClient, ThemeServiceStart } from '@kbn/core/public'; +import type { CoreSetup, I18nStart, IUiSettingsClient, ThemeServiceStart } from '@kbn/core/public'; import type { HttpStart } from '@kbn/core/public'; -import type { toMountPoint, wrapWithTheme } from '@kbn/kibana-react-plugin/public'; /** * Date Picker Dependencies to be passed on via `DatePickerContextProvider`. @@ -42,13 +41,9 @@ export interface DatePickerDependencies { */ uiSettingsKeys: typeof UI_SETTINGS; /** - * helper to be used with notifications. + * Internationalisation service */ - wrapWithTheme: typeof wrapWithTheme; - /** - * helper to be used with notifications. - */ - toMountPoint: typeof toMountPoint; + i18n: I18nStart; } /** diff --git a/x-pack/packages/ml/date_picker/tsconfig.json b/x-pack/packages/ml/date_picker/tsconfig.json index ca83d94a598c1..d85c1a4cf4613 100644 --- a/x-pack/packages/ml/date_picker/tsconfig.json +++ b/x-pack/packages/ml/date_picker/tsconfig.json @@ -25,7 +25,7 @@ "@kbn/core", "@kbn/data-views-plugin", "@kbn/ml-is-populated-object", - "@kbn/kibana-react-plugin", "@kbn/ml-query-utils", + "@kbn/react-kibana-mount", ] } diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/index.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/index.tsx index 9522f895d90dc..4ce7801dbe8f0 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/index.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/index.tsx @@ -22,10 +22,13 @@ import { IlmPhasesEmptyPrompt } from '../../../ilm_phases_empty_prompt'; import { IndicesDetails } from './indices_details'; import { StorageDetails } from './storage_details'; import { PatternRollup, SelectedIndex } from '../../../types'; +import { useDataQualityContext } from '../../data_quality_context'; export interface Props { addSuccessToast: (toast: { title: string }) => void; + baseTheme: Theme; canUserCreateAndReadCases: () => boolean; + endDate?: string | null; formatBytes: (value: number | undefined) => string; formatNumber: (value: number | undefined) => string; getGroupByFieldsOnClick: ( @@ -53,8 +56,8 @@ export interface Props { patternIndexNames: Record; patternRollups: Record; patterns: string[]; + startDate?: string | null; theme?: PartialTheme; - baseTheme: Theme; updatePatternIndexNames: ({ indexNames, pattern, @@ -68,6 +71,7 @@ export interface Props { const DataQualityDetailsComponent: React.FC = ({ addSuccessToast, canUserCreateAndReadCases, + endDate, formatBytes, formatNumber, getGroupByFieldsOnClick, @@ -77,18 +81,20 @@ const DataQualityDetailsComponent: React.FC = ({ patternIndexNames, patternRollups, patterns, + startDate, theme, baseTheme, updatePatternIndexNames, updatePatternRollup, }) => { + const { isILMAvailable } = useDataQualityContext(); const [selectedIndex, setSelectedIndex] = useState(null); const onIndexSelected = useCallback(async ({ indexName, pattern }: SelectedIndex) => { setSelectedIndex({ indexName, pattern }); }, []); - if (ilmPhases.length === 0) { + if (isILMAvailable && ilmPhases.length === 0) { return ; } @@ -107,6 +113,7 @@ const DataQualityDetailsComponent: React.FC = ({ = ({ patternRollups={patternRollups} selectedIndex={selectedIndex} setSelectedIndex={setSelectedIndex} + startDate={startDate} updatePatternIndexNames={updatePatternIndexNames} updatePatternRollup={updatePatternRollup} /> diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/indices_details/index.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/indices_details/index.tsx index bc481503cd2bf..3bfbe9065ebea 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/indices_details/index.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/indices_details/index.tsx @@ -24,6 +24,7 @@ import { PatternRollup, SelectedIndex } from '../../../../types'; export interface Props { addSuccessToast: (toast: { title: string }) => void; canUserCreateAndReadCases: () => boolean; + endDate?: string | null; formatBytes: (value: number | undefined) => string; formatNumber: (value: number | undefined) => string; getGroupByFieldsOnClick: ( @@ -53,6 +54,7 @@ export interface Props { patterns: string[]; selectedIndex: SelectedIndex | null; setSelectedIndex: (selectedIndex: SelectedIndex | null) => void; + startDate?: string | null; theme?: PartialTheme; baseTheme: Theme; updatePatternIndexNames: ({ @@ -68,6 +70,7 @@ export interface Props { const IndicesDetailsComponent: React.FC = ({ addSuccessToast, canUserCreateAndReadCases, + endDate, formatBytes, formatNumber, getGroupByFieldsOnClick, @@ -79,6 +82,7 @@ const IndicesDetailsComponent: React.FC = ({ patterns, selectedIndex, setSelectedIndex, + startDate, theme, baseTheme, updatePatternIndexNames, @@ -90,6 +94,7 @@ const IndicesDetailsComponent: React.FC = ({ = ({ patternRollup={patternRollups[pattern]} selectedIndex={selectedIndex} setSelectedIndex={setSelectedIndex} + startDate={startDate} theme={theme} baseTheme={baseTheme} updatePatternIndexNames={updatePatternIndexNames} diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/storage_details/helpers.test.ts b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/storage_details/helpers.test.ts index 45e8f1ba1b4ad..ce085a53e8557 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/storage_details/helpers.test.ts +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/storage_details/helpers.test.ts @@ -102,6 +102,7 @@ describe('helpers', () => { const pattern = 'auditbeat-*'; const flattenedBuckets = getFlattenedBuckets({ ilmPhases, + isILMAvailable: true, patternRollups, }); @@ -129,12 +130,45 @@ describe('helpers', () => { }, ]); }); + + test('it returns the expected legend items when isILMAvailable is false', () => { + const pattern = 'auditbeat-*'; + const flattenedBuckets = getFlattenedBuckets({ + ilmPhases, + isILMAvailable: false, + patternRollups, + }); + expect(getLegendItemsForPattern({ pattern, flattenedBuckets })).toEqual([ + { + color: euiThemeVars.euiColorSuccess, + ilmPhase: null, + index: '.ds-auditbeat-8.6.1-2023.02.07-000001', + pattern: 'auditbeat-*', + sizeInBytes: 18791790, + }, + { + color: euiThemeVars.euiColorDanger, + ilmPhase: null, + index: 'auditbeat-custom-index-1', + pattern: 'auditbeat-*', + sizeInBytes: 28409, + }, + { + color: euiThemeVars.euiColorDanger, + ilmPhase: null, + index: 'auditbeat-custom-empty-index-1', + pattern: 'auditbeat-*', + sizeInBytes: 247, + }, + ]); + }); }); describe('getLegendItems', () => { test('it returns the expected legend items', () => { const flattenedBuckets = getFlattenedBuckets({ ilmPhases, + isILMAvailable: true, patternRollups, }); @@ -205,6 +239,7 @@ describe('helpers', () => { expect( getFlattenedBuckets({ ilmPhases, + isILMAvailable: true, patternRollups, }) ).toEqual([ @@ -250,6 +285,57 @@ describe('helpers', () => { }, ]); }); + + test('it returns the expected flattened buckets when isILMAvailable is false', () => { + expect( + getFlattenedBuckets({ + ilmPhases, + isILMAvailable: false, + patternRollups, + }) + ).toEqual([ + { + ilmPhase: undefined, + incompatible: 0, + indexName: '.internal.alerts-security.alerts-default-000001', + pattern: '.alerts-security.alerts-default', + sizeInBytes: 0, + }, + { + ilmPhase: undefined, + incompatible: 0, + indexName: '.ds-auditbeat-8.6.1-2023.02.07-000001', + pattern: 'auditbeat-*', + sizeInBytes: 18791790, + }, + { + ilmPhase: undefined, + incompatible: 1, + indexName: 'auditbeat-custom-empty-index-1', + pattern: 'auditbeat-*', + sizeInBytes: 247, + }, + { + ilmPhase: undefined, + incompatible: 3, + indexName: 'auditbeat-custom-index-1', + pattern: 'auditbeat-*', + sizeInBytes: 28409, + }, + { + ilmPhase: undefined, + indexName: '.ds-packetbeat-8.6.1-2023.02.04-000001', + pattern: 'packetbeat-*', + sizeInBytes: 512194751, + }, + { + ilmPhase: undefined, + indexName: '.ds-packetbeat-8.5.3-2023.02.04-000001', + pattern: 'packetbeat-*', + sizeInBytes: 584326147, + }, + ]); + }); }); describe('getFillColor', () => { @@ -276,6 +362,7 @@ describe('helpers', () => { test('it returns the expected map', () => { const flattenedBuckets = getFlattenedBuckets({ ilmPhases, + isILMAvailable: true, patternRollups, }); @@ -363,6 +450,7 @@ describe('helpers', () => { const layer0FillColor = 'transparent'; const flattenedBuckets = getFlattenedBuckets({ ilmPhases, + isILMAvailable: true, patternRollups, }); const pathToFlattenedBucketMap = getPathToFlattenedBucketMap(flattenedBuckets); diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/storage_details/helpers.ts b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/storage_details/helpers.ts index 09ed53402a89f..326488e707aa9 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/storage_details/helpers.ts +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/storage_details/helpers.ts @@ -98,9 +98,11 @@ export const getLegendItems = ({ export const getFlattenedBuckets = ({ ilmPhases, + isILMAvailable, patternRollups, }: { ilmPhases: string[]; + isILMAvailable: boolean; patternRollups: Record; }): FlattenedBucket[] => Object.values(patternRollups).reduce((acc, patternRollup) => { @@ -111,13 +113,15 @@ export const getFlattenedBuckets = ({ ); const { ilmExplain, pattern, results, stats } = patternRollup; - if (ilmExplain != null && stats != null) { + if (((isILMAvailable && ilmExplain != null) || !isILMAvailable) && stats != null) { return [ ...acc, ...Object.entries(stats).reduce( (validStats, [indexName, indexStats]) => { - const ilmPhase = getIlmPhase(ilmExplain[indexName]); - const isSelectedPhase = ilmPhase != null && ilmPhasesMap[ilmPhase] != null; + const ilmPhase = getIlmPhase(ilmExplain?.[indexName], isILMAvailable); + const isSelectedPhase = + (isILMAvailable && ilmPhase != null && ilmPhasesMap[ilmPhase] != null) || + !isILMAvailable; if (isSelectedPhase) { const incompatible = diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/storage_details/index.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/storage_details/index.tsx index 2fe51e7d9acd4..571bc6329920e 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/storage_details/index.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/data_quality_details/storage_details/index.tsx @@ -12,6 +12,7 @@ import { getFlattenedBuckets } from './helpers'; import { StorageTreemap } from '../../../storage_treemap'; import { DEFAULT_MAX_CHART_HEIGHT, StorageTreemapContainer } from '../../../tabs/styles'; import { PatternRollup, SelectedIndex } from '../../../../types'; +import { useDataQualityContext } from '../../../data_quality_context'; export interface Props { formatBytes: (value: number | undefined) => string; @@ -32,13 +33,16 @@ const StorageDetailsComponent: React.FC = ({ theme, baseTheme, }) => { + const { isILMAvailable } = useDataQualityContext(); + const flattenedBuckets = useMemo( () => getFlattenedBuckets({ ilmPhases, + isILMAvailable, patternRollups, }), - [ilmPhases, patternRollups] + [ilmPhases, isILMAvailable, patternRollups] ); return ( diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/index.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/index.tsx index e21bfd19b66ce..c36e34fc803e2 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/index.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/body/index.tsx @@ -24,7 +24,9 @@ import { useResultsRollup } from '../../use_results_rollup'; interface Props { addSuccessToast: (toast: { title: string }) => void; + baseTheme: Theme; canUserCreateAndReadCases: () => boolean; + endDate?: string | null; formatBytes: (value: number | undefined) => string; formatNumber: (value: number | undefined) => string; getGroupByFieldsOnClick: ( @@ -52,13 +54,14 @@ interface Props { }) => void; patterns: string[]; setLastChecked: (lastChecked: string) => void; + startDate?: string | null; theme?: PartialTheme; - baseTheme: Theme; } const BodyComponent: React.FC = ({ addSuccessToast, canUserCreateAndReadCases, + endDate, formatBytes, formatNumber, getGroupByFieldsOnClick, @@ -68,6 +71,7 @@ const BodyComponent: React.FC = ({ openCreateCaseFlyout, patterns, setLastChecked, + startDate, theme, baseTheme, }) => { @@ -115,7 +119,9 @@ const BodyComponent: React.FC = ({ = ({ patterns={patterns} patternIndexNames={patternIndexNames} patternRollups={patternRollups} + startDate={startDate} theme={theme} - baseTheme={baseTheme} updatePatternIndexNames={updatePatternIndexNames} updatePatternRollup={updatePatternRollup} /> diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/data_quality_context/index.test.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/data_quality_context/index.test.tsx index 1628705efb78a..26843c67ff64e 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/data_quality_context/index.test.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/data_quality_context/index.test.tsx @@ -18,7 +18,11 @@ const mockTelemetryEvents = { reportDataQualityCheckAllCompleted: mockReportDataQualityCheckAllClicked, }; const ContextWrapper: React.FC = ({ children }) => ( - + {children} ); @@ -52,4 +56,11 @@ describe('DataQualityContext', () => { expect(telemetryEvents).toEqual(mockTelemetryEvents); }); + + test('it should return the isILMAvailable param', async () => { + const { result } = renderHook(useDataQualityContext, { wrapper: ContextWrapper }); + const isILMAvailable = await result.current.isILMAvailable; + + expect(isILMAvailable).toEqual(true); + }); }); diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/data_quality_context/index.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/data_quality_context/index.tsx index 8456c89068829..4f5c883ddd696 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/data_quality_context/index.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/data_quality_context/index.tsx @@ -11,6 +11,7 @@ import { TelemetryEvents } from '../../types'; interface DataQualityProviderProps { httpFetch: HttpHandler; + isILMAvailable: boolean; telemetryEvents: TelemetryEvents; } @@ -19,14 +20,16 @@ const DataQualityContext = React.createContext = ({ children, httpFetch, + isILMAvailable, telemetryEvents, }) => { const value = useMemo( () => ({ httpFetch, + isILMAvailable, telemetryEvents, }), - [httpFetch, telemetryEvents] + [httpFetch, isILMAvailable, telemetryEvents] ); return {children}; diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/data_quality_summary/summary_actions/check_all/index.test.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/data_quality_summary/summary_actions/check_all/index.test.tsx index 236e7dc3eb9bd..fbf0be3354a53 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/data_quality_summary/summary_actions/check_all/index.test.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/data_quality_summary/summary_actions/check_all/index.test.tsx @@ -139,6 +139,48 @@ describe('CheckAll', () => { expect(screen.getByTestId('checkAll')).toHaveTextContent(CHECK_ALL); }); + test('it renders a disabled button when ILM available and ilmPhases is an empty array', () => { + render( + + + + ); + + expect(screen.getByTestId('checkAll').hasAttribute('disabled')).toBeTruthy(); + }); + + test('it renders the expected button when ILM is NOT available', () => { + render( + + + + ); + + expect(screen.getByTestId('checkAll').hasAttribute('disabled')).toBeFalsy(); + }); + test('it renders the expected button text when a check is running', () => { render( diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/data_quality_summary/summary_actions/check_all/index.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/data_quality_summary/summary_actions/check_all/index.tsx index 9f43af65bb0dd..3801fabcb374a 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/data_quality_summary/summary_actions/check_all/index.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/data_quality_summary/summary_actions/check_all/index.tsx @@ -60,7 +60,7 @@ const CheckAllComponent: React.FC = ({ setCheckAllTotalIndiciesToCheck, setIndexToCheck, }) => { - const { httpFetch } = useDataQualityContext(); + const { httpFetch, isILMAvailable } = useDataQualityContext(); const abortController = useRef(new AbortController()); const [isRunning, setIsRunning] = useState(false); @@ -157,7 +157,7 @@ const CheckAllComponent: React.FC = ({ }; }, [abortController]); - const disabled = ilmPhases.length === 0; + const disabled = isILMAvailable && ilmPhases.length === 0; return ( theme.eui.euiSizeS}; @@ -45,11 +46,13 @@ export const getResultsSortedByDocsCount = ( export const getAllMarkdownCommentsFromResults = ({ formatBytes, formatNumber, + isILMAvailable, patternIndexNames, patternRollup, }: { formatBytes: (value: number | undefined) => string; formatNumber: (value: number | undefined) => string; + isILMAvailable: boolean; patternIndexNames: Record; patternRollup: PatternRollup; }): string[] => { @@ -59,6 +62,7 @@ export const getAllMarkdownCommentsFromResults = ({ const summaryTableItems = getSummaryTableItems({ ilmExplain: patternRollup.ilmExplain, indexNames: patternIndexNames[patternRollup.pattern] ?? [], + isILMAvailable, pattern: patternRollup.pattern, patternDocsCount: patternRollup.docsCount ?? 0, results: patternRollup.results, @@ -78,6 +82,7 @@ export const getAllMarkdownCommentsFromResults = ({ ilmPhase: item.ilmPhase, indexName: item.indexName, incompatible: result?.incompatible, + isILMAvailable, patternDocsCount: patternRollup.docsCount ?? 0, sizeInBytes: getSizeInBytes({ indexName: item.indexName, stats: patternRollup.stats }), }).trim(); @@ -85,7 +90,7 @@ export const getAllMarkdownCommentsFromResults = ({ const initialComments: string[] = summaryTableMarkdownRows.length > 0 - ? [getSummaryTableMarkdownHeader(), ...summaryTableMarkdownRows] + ? [getSummaryTableMarkdownHeader(isILMAvailable), ...summaryTableMarkdownRows] : []; return sortedResults.reduce( @@ -97,11 +102,13 @@ export const getAllMarkdownCommentsFromResults = ({ export const getAllMarkdownComments = ({ formatBytes, formatNumber, + isILMAvailable, patternIndexNames, patternRollups, }: { formatBytes: (value: number | undefined) => string; formatNumber: (value: number | undefined) => string; + isILMAvailable: boolean; patternIndexNames: Record; patternRollups: Record; }): string[] => { @@ -123,6 +130,7 @@ export const getAllMarkdownComments = ({ ...getAllMarkdownCommentsFromResults({ formatBytes, formatNumber, + isILMAvailable, patternRollup: patternRollups[pattern], patternIndexNames, }), @@ -178,6 +186,7 @@ const SummaryActionsComponent: React.FC = ({ totalIndicesChecked, sizeInBytes, }) => { + const { isILMAvailable } = useDataQualityContext(); const [indexToCheck, setIndexToCheck] = useState(null); const [checkAllIndiciesChecked, setCheckAllIndiciesChecked] = useState(0); const [checkAllTotalIndiciesToCheck, setCheckAllTotalIndiciesToCheck] = useState(0); @@ -199,6 +208,7 @@ const SummaryActionsComponent: React.FC = ({ ...getAllMarkdownComments({ formatBytes, formatNumber, + isILMAvailable, patternIndexNames, patternRollups, }), @@ -213,6 +223,7 @@ const SummaryActionsComponent: React.FC = ({ errorSummary, formatBytes, formatNumber, + isILMAvailable, patternIndexNames, patternRollups, sizeInBytes, diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/index_properties/index.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/index_properties/index.tsx index 1fc0789af6e53..9d1ef9b67e4e8 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/index_properties/index.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/index_properties/index.tsx @@ -103,7 +103,7 @@ const IndexPropertiesComponent: React.FC = ({ updatePatternRollup, }) => { const { error: mappingsError, indexes, loading: loadingMappings } = useMappings(indexName); - const { telemetryEvents } = useDataQualityContext(); + const { telemetryEvents, isILMAvailable } = useDataQualityContext(); const requestItems = useMemo( () => @@ -236,6 +236,7 @@ const IndexPropertiesComponent: React.FC = ({ formatNumber, ilmPhase, indexName, + isILMAvailable, partitionedFieldMetadata, patternDocsCount: patternRollup.docsCount ?? 0, sizeInBytes: patternRollup.sizeInBytes, @@ -290,6 +291,7 @@ const IndexPropertiesComponent: React.FC = ({ ilmPhase, indexId, indexName, + isILMAvailable, loadingMappings, loadingUnallowedValues, mappingsError, diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/index_properties/markdown/helpers.test.ts b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/index_properties/markdown/helpers.test.ts index b51a49ecc89df..05523a1c43d03 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/index_properties/markdown/helpers.test.ts +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/index_properties/markdown/helpers.test.ts @@ -423,10 +423,18 @@ describe('helpers', () => { describe('getSummaryTableMarkdownHeader', () => { test('it returns the expected header', () => { - expect(getSummaryTableMarkdownHeader()).toEqual( + const isILMAvailable = true; + expect(getSummaryTableMarkdownHeader(isILMAvailable)).toEqual( '| Result | Index | Docs | Incompatible fields | ILM Phase | Size |\n|--------|-------|------|---------------------|-----------|------|' ); }); + + test('it returns the expected header when isILMAvailable is false', () => { + const isILMAvailable = false; + expect(getSummaryTableMarkdownHeader(isILMAvailable)).toEqual( + '| Result | Index | Docs | Incompatible fields | Size |\n|--------|-------|------|---------------------|------|' + ); + }); }); describe('getSummaryTableMarkdownRow', () => { @@ -438,6 +446,7 @@ describe('helpers', () => { formatNumber, incompatible: 3, ilmPhase: 'unmanaged', + isILMAvailable: true, indexName: 'auditbeat-custom-index-1', patternDocsCount: 57410, sizeInBytes: 28413, @@ -454,11 +463,28 @@ describe('helpers', () => { incompatible: undefined, // <-- ilmPhase: undefined, // <-- indexName: 'auditbeat-custom-index-1', + isILMAvailable: true, patternDocsCount: 57410, sizeInBytes: 28413, }) ).toEqual('| -- | auditbeat-custom-index-1 | 4 (0.0%) | -- | -- | 27.7KB |\n'); }); + + test('it returns the expected row when isILMAvailable is false', () => { + expect( + getSummaryTableMarkdownRow({ + docsCount: 4, + formatBytes, + formatNumber, + incompatible: undefined, // <-- + ilmPhase: undefined, // <-- + indexName: 'auditbeat-custom-index-1', + isILMAvailable: false, + patternDocsCount: 57410, + sizeInBytes: 28413, + }) + ).toEqual('| -- | auditbeat-custom-index-1 | 4 (0.0%) | -- | 27.7KB |\n'); + }); }); describe('getSummaryTableMarkdownComment', () => { @@ -470,6 +496,7 @@ describe('helpers', () => { formatNumber, ilmPhase: 'unmanaged', indexName: 'auditbeat-custom-index-1', + isILMAvailable: true, partitionedFieldMetadata: mockPartitionedFieldMetadata, patternDocsCount: 57410, sizeInBytes: 28413, @@ -478,6 +505,24 @@ describe('helpers', () => { '| Result | Index | Docs | Incompatible fields | ILM Phase | Size |\n|--------|-------|------|---------------------|-----------|------|\n| ❌ | auditbeat-custom-index-1 | 4 (0.0%) | 3 | `unmanaged` | 27.7KB |\n\n' ); }); + + test('it returns the expected comment when isILMAvailable is false', () => { + expect( + getSummaryTableMarkdownComment({ + docsCount: 4, + formatBytes, + formatNumber, + ilmPhase: 'unmanaged', + indexName: 'auditbeat-custom-index-1', + isILMAvailable: false, + partitionedFieldMetadata: mockPartitionedFieldMetadata, + patternDocsCount: 57410, + sizeInBytes: 28413, + }) + ).toEqual( + '| Result | Index | Docs | Incompatible fields | Size |\n|--------|-------|------|---------------------|------|\n| ❌ | auditbeat-custom-index-1 | 4 (0.0%) | 3 | 27.7KB |\n\n' + ); + }); }); describe('getStatsRollupMarkdownComment', () => { diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/index_properties/markdown/helpers.ts b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/index_properties/markdown/helpers.ts index 32424dff66883..6f92374e2555d 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/index_properties/markdown/helpers.ts +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/index_properties/markdown/helpers.ts @@ -216,13 +216,18 @@ export const getResultEmoji = (incompatible: number | undefined): string => { } }; -export const getSummaryTableMarkdownHeader = (): string => - `| ${RESULT} | ${INDEX} | ${DOCS} | ${INCOMPATIBLE_FIELDS} | ${ILM_PHASE} | ${SIZE} | +export const getSummaryTableMarkdownHeader = (isILMAvailable: boolean): string => + isILMAvailable + ? `| ${RESULT} | ${INDEX} | ${DOCS} | ${INCOMPATIBLE_FIELDS} | ${ILM_PHASE} | ${SIZE} | |${getHeaderSeparator(RESULT)}|${getHeaderSeparator(INDEX)}|${getHeaderSeparator( - DOCS - )}|${getHeaderSeparator(INCOMPATIBLE_FIELDS)}|${getHeaderSeparator( - ILM_PHASE - )}|${getHeaderSeparator(SIZE)}|`; + DOCS + )}|${getHeaderSeparator(INCOMPATIBLE_FIELDS)}|${getHeaderSeparator( + ILM_PHASE + )}|${getHeaderSeparator(SIZE)}|` + : `| ${RESULT} | ${INDEX} | ${DOCS} | ${INCOMPATIBLE_FIELDS} | ${SIZE} | +|${getHeaderSeparator(RESULT)}|${getHeaderSeparator(INDEX)}|${getHeaderSeparator( + DOCS + )}|${getHeaderSeparator(INCOMPATIBLE_FIELDS)}|${getHeaderSeparator(SIZE)}|`; export const getSummaryTableMarkdownRow = ({ docsCount, @@ -231,6 +236,7 @@ export const getSummaryTableMarkdownRow = ({ ilmPhase, incompatible, indexName, + isILMAvailable, patternDocsCount, sizeInBytes, }: { @@ -240,17 +246,26 @@ export const getSummaryTableMarkdownRow = ({ ilmPhase: IlmPhase | undefined; incompatible: number | undefined; indexName: string; + isILMAvailable: boolean; patternDocsCount: number; sizeInBytes: number | undefined; }): string => - `| ${getResultEmoji(incompatible)} | ${escape(indexName)} | ${formatNumber( - docsCount - )} (${getDocsCountPercent({ - docsCount, - patternDocsCount, - })}) | ${incompatible ?? EMPTY_PLACEHOLDER} | ${ - ilmPhase != null ? getCodeFormattedValue(ilmPhase) : EMPTY_PLACEHOLDER - } | ${formatBytes(sizeInBytes)} | + isILMAvailable + ? `| ${getResultEmoji(incompatible)} | ${escape(indexName)} | ${formatNumber( + docsCount + )} (${getDocsCountPercent({ + docsCount, + patternDocsCount, + })}) | ${incompatible ?? EMPTY_PLACEHOLDER} | ${ + ilmPhase != null ? getCodeFormattedValue(ilmPhase) : EMPTY_PLACEHOLDER + } | ${formatBytes(sizeInBytes)} | +` + : `| ${getResultEmoji(incompatible)} | ${escape(indexName)} | ${formatNumber( + docsCount + )} (${getDocsCountPercent({ + docsCount, + patternDocsCount, + })}) | ${incompatible ?? EMPTY_PLACEHOLDER} | ${formatBytes(sizeInBytes)} | `; export const getSummaryTableMarkdownComment = ({ @@ -259,6 +274,7 @@ export const getSummaryTableMarkdownComment = ({ formatNumber, ilmPhase, indexName, + isILMAvailable, partitionedFieldMetadata, patternDocsCount, sizeInBytes, @@ -268,17 +284,19 @@ export const getSummaryTableMarkdownComment = ({ formatNumber: (value: number | undefined) => string; ilmPhase: IlmPhase | undefined; indexName: string; + isILMAvailable: boolean; partitionedFieldMetadata: PartitionedFieldMetadata; patternDocsCount: number; sizeInBytes: number | undefined; }): string => - `${getSummaryTableMarkdownHeader()} + `${getSummaryTableMarkdownHeader(isILMAvailable)} ${getSummaryTableMarkdownRow({ docsCount, formatBytes, formatNumber, ilmPhase, indexName, + isILMAvailable, incompatible: partitionedFieldMetadata.incompatible.length, patternDocsCount, sizeInBytes, diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/helpers.test.ts b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/helpers.test.ts index c40f6a73ffa03..e01a63d59c36f 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/helpers.test.ts +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/helpers.test.ts @@ -30,6 +30,7 @@ import { auditbeatWithAllResults } from '../../mock/pattern_rollup/mock_auditbea import { mockStats } from '../../mock/stats/mock_stats'; import { IndexSummaryTableItem } from '../summary_table/helpers'; import { DataQualityCheckResult } from '../../types'; +import { getIndexNames, getTotalDocsCount } from '../../helpers'; const hot: IlmExplainLifecycleLifecycleExplainManaged = { index: '.ds-packetbeat-8.6.1-2023.02.04-000001', @@ -169,25 +170,26 @@ describe('helpers', () => { }); describe('getIlmPhase', () => { + const isILMAvailable = true; test('it returns undefined when the `ilmExplainRecord` is undefined', () => { - expect(getIlmPhase(undefined)).toBeUndefined(); + expect(getIlmPhase(undefined, isILMAvailable)).toBeUndefined(); }); describe('when the `ilmExplainRecord` is a `IlmExplainLifecycleLifecycleExplainManaged` record', () => { Object.keys(managed).forEach((phase) => test(`it returns the expected phase when 'phase' is '${phase}'`, () => { - expect(getIlmPhase(managed[phase])).toEqual(phase); + expect(getIlmPhase(managed[phase], isILMAvailable)).toEqual(phase); }) ); test(`it returns undefined when the 'phase' is unknown`, () => { - expect(getIlmPhase(other)).toBeUndefined(); + expect(getIlmPhase(other, isILMAvailable)).toBeUndefined(); }); }); describe('when the `ilmExplainRecord` is a `IlmExplainLifecycleLifecycleExplainUnmanaged` record', () => { test('it returns `unmanaged`', () => { - expect(getIlmPhase(unmanaged)).toEqual('unmanaged'); + expect(getIlmPhase(unmanaged, isILMAvailable)).toEqual('unmanaged'); }); }); }); @@ -273,12 +275,14 @@ describe('helpers', () => { pattern: 'auditbeat-*', }, }; + const isILMAvailable = true; test('it returns the expected summary table items', () => { expect( getSummaryTableItems({ ilmExplain: mockIlmExplain, indexNames, + isILMAvailable, pattern, patternDocsCount, results, @@ -317,11 +321,56 @@ describe('helpers', () => { ]); }); + test('it returns the expected summary table items when isILMAvailable is false', () => { + expect( + getSummaryTableItems({ + ilmExplain: mockIlmExplain, + indexNames, + isILMAvailable: false, + pattern, + patternDocsCount, + results, + sortByColumn: defaultSort.sort.field, + sortByDirection: defaultSort.sort.direction, + stats: mockStats, + }) + ).toEqual([ + { + docsCount: 1630289, + ilmPhase: undefined, + incompatible: undefined, + indexName: '.ds-packetbeat-8.5.3-2023.02.04-000001', + pattern: 'auditbeat-*', + patternDocsCount: 4, + sizeInBytes: 733175040, + }, + { + docsCount: 1628343, + ilmPhase: undefined, + incompatible: undefined, + indexName: '.ds-packetbeat-8.6.1-2023.02.04-000001', + pattern: 'auditbeat-*', + patternDocsCount: 4, + sizeInBytes: 731583142, + }, + { + docsCount: 4, + ilmPhase: undefined, + incompatible: 3, + indexName: 'auditbeat-custom-index-1', + pattern: 'auditbeat-*', + patternDocsCount: 4, + sizeInBytes: 28413, + }, + ]); + }); + test('it returns the expected summary table items when `sortByDirection` is ascending', () => { expect( getSummaryTableItems({ ilmExplain: mockIlmExplain, indexNames, + isILMAvailable, pattern, patternDocsCount, results, @@ -365,6 +414,7 @@ describe('helpers', () => { getSummaryTableItems({ ilmExplain: null, // <-- no data indexNames, + isILMAvailable, pattern, patternDocsCount, results: undefined, // <-- no data @@ -410,12 +460,27 @@ describe('helpers', () => { '.ds-packetbeat-8.5.3-2023.02.04-000001', 'auditbeat-custom-index-1', ]; + const isILMAvailable = true; test('returns true when `indexNames` does NOT exist, and the required `stats` and `ilmExplain` are available', () => { expect( shouldCreateIndexNames({ ilmExplain: mockIlmExplain, indexNames: undefined, + isILMAvailable, + newIndexNames: [], + stats: mockStats, + }) + ).toBe(true); + }); + + test('returns true when `isILMAvailable` is false, and the required `stats` is available, and `ilmExplain` is not available', () => { + expect( + shouldCreateIndexNames({ + ilmExplain: null, + indexNames: undefined, + isILMAvailable: false, + newIndexNames: [], stats: mockStats, }) ).toBe(true); @@ -426,6 +491,8 @@ describe('helpers', () => { shouldCreateIndexNames({ ilmExplain: mockIlmExplain, indexNames, + isILMAvailable, + newIndexNames: indexNames, stats: mockStats, }) ).toBe(false); @@ -436,6 +503,8 @@ describe('helpers', () => { shouldCreateIndexNames({ ilmExplain: mockIlmExplain, indexNames: undefined, + isILMAvailable, + newIndexNames: [], stats: null, }) ).toBe(false); @@ -446,6 +515,8 @@ describe('helpers', () => { shouldCreateIndexNames({ ilmExplain: null, indexNames: undefined, + isILMAvailable, + newIndexNames: [], stats: mockStats, }) ).toBe(false); @@ -456,6 +527,8 @@ describe('helpers', () => { shouldCreateIndexNames({ ilmExplain: null, indexNames: undefined, + isILMAvailable, + newIndexNames: [], stats: null, }) ).toBe(false); @@ -466,6 +539,8 @@ describe('helpers', () => { shouldCreateIndexNames({ ilmExplain: null, indexNames, + isILMAvailable, + newIndexNames: [], stats: null, }) ).toBe(false); @@ -473,22 +548,47 @@ describe('helpers', () => { }); describe('shouldCreatePatternRollup', () => { - test('it returns false when the `patternRollup` already exists', () => { + const isILMAvailable = true; + const newIndexNames = getIndexNames({ + stats: mockStats, + ilmExplain: mockIlmExplain, + ilmPhases: ['hot', 'unmanaged'], + isILMAvailable, + }); + const newDocsCount = getTotalDocsCount({ indexNames: newIndexNames, stats: mockStats }); + test('it returns false when the `patternRollup.docsCount` equals newDocsCount', () => { expect( shouldCreatePatternRollup({ error: null, ilmExplain: mockIlmExplain, + isILMAvailable, + newDocsCount: auditbeatWithAllResults.docsCount as number, patternRollup: auditbeatWithAllResults, stats: mockStats, }) ).toBe(false); }); - test('it returns true when all data was loaded', () => { + test('it returns true when all data and ILMExplain were loaded', () => { expect( shouldCreatePatternRollup({ error: null, ilmExplain: mockIlmExplain, + isILMAvailable, + newDocsCount, + patternRollup: undefined, + stats: mockStats, + }) + ).toBe(true); + }); + + test('it returns true when all data was loaded and ILM is not available', () => { + expect( + shouldCreatePatternRollup({ + error: null, + ilmExplain: null, + isILMAvailable: false, + newDocsCount, patternRollup: undefined, stats: mockStats, }) @@ -500,6 +600,8 @@ describe('helpers', () => { shouldCreatePatternRollup({ error: null, ilmExplain: null, + isILMAvailable, + newDocsCount, patternRollup: undefined, stats: mockStats, }) @@ -511,6 +613,8 @@ describe('helpers', () => { shouldCreatePatternRollup({ error: null, ilmExplain: mockIlmExplain, + isILMAvailable, + newDocsCount, patternRollup: undefined, stats: null, }) @@ -522,6 +626,8 @@ describe('helpers', () => { shouldCreatePatternRollup({ error: 'whoops', ilmExplain: null, + isILMAvailable, + newDocsCount, patternRollup: undefined, stats: null, }) @@ -533,6 +639,8 @@ describe('helpers', () => { shouldCreatePatternRollup({ error: 'something went', ilmExplain: null, + isILMAvailable, + newDocsCount, patternRollup: undefined, stats: mockStats, }) @@ -544,6 +652,8 @@ describe('helpers', () => { shouldCreatePatternRollup({ error: 'horribly wrong', ilmExplain: mockIlmExplain, + isILMAvailable, + newDocsCount, patternRollup: undefined, stats: null, }) @@ -555,6 +665,8 @@ describe('helpers', () => { shouldCreatePatternRollup({ error: 'over here', ilmExplain: mockIlmExplain, + isILMAvailable, + newDocsCount, patternRollup: undefined, stats: mockStats, }) diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/helpers.ts b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/helpers.ts index 40d0bbfb26293..82fd312a947e5 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/helpers.ts +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/helpers.ts @@ -9,7 +9,7 @@ import type { IlmExplainLifecycleLifecycleExplain, IndicesStatsIndicesStats, } from '@elastic/elasticsearch/lib/api/types'; -import { orderBy } from 'lodash/fp'; +import { isEqual, orderBy } from 'lodash/fp'; import type { IndexSummaryTableItem } from '../summary_table/helpers'; import type { @@ -46,9 +46,10 @@ export const getPhaseCount = ({ }; export const getIlmPhase = ( - ilmExplainRecord: IlmExplainLifecycleLifecycleExplain | undefined + ilmExplainRecord: IlmExplainLifecycleLifecycleExplain | undefined, + isILMAvailable: boolean ): IlmPhase | undefined => { - if (ilmExplainRecord == null) { + if (ilmExplainRecord == null || !isILMAvailable) { return undefined; } @@ -142,6 +143,7 @@ export const getIndexIncompatible = ({ export const getSummaryTableItems = ({ ilmExplain, indexNames, + isILMAvailable, pattern, patternDocsCount, results, @@ -151,6 +153,7 @@ export const getSummaryTableItems = ({ }: { ilmExplain: Record | null; indexNames: string[]; + isILMAvailable: boolean; pattern: string; patternDocsCount: number; results: Record | undefined; @@ -162,7 +165,10 @@ export const getSummaryTableItems = ({ docsCount: getDocsCount({ stats, indexName }), incompatible: getIndexIncompatible({ indexName, results }), indexName, - ilmPhase: ilmExplain != null ? getIlmPhase(ilmExplain[indexName]) : undefined, + ilmPhase: + isILMAvailable && ilmExplain != null + ? getIlmPhase(ilmExplain[indexName], isILMAvailable) + : undefined, pattern, patternDocsCount, sizeInBytes: getSizeInBytes({ stats, indexName }), @@ -174,29 +180,44 @@ export const getSummaryTableItems = ({ export const shouldCreateIndexNames = ({ ilmExplain, indexNames, + isILMAvailable, + newIndexNames, stats, }: { ilmExplain: Record | null; indexNames: string[] | undefined; + isILMAvailable: boolean; + newIndexNames: string[]; stats: Record | null; -}): boolean => indexNames == null && stats != null && ilmExplain != null; +}): boolean => { + return ( + !isEqual(newIndexNames, indexNames) && + stats != null && + ((isILMAvailable && ilmExplain != null) || !isILMAvailable) + ); +}; export const shouldCreatePatternRollup = ({ error, ilmExplain, + isILMAvailable, + newDocsCount, patternRollup, stats, }: { error: string | null; ilmExplain: Record | null; + isILMAvailable: boolean; + newDocsCount: number; patternRollup: PatternRollup | undefined; stats: Record | null; }): boolean => { - if (patternRollup != null) { - return false; // the rollup already exists + if (patternRollup?.docsCount === newDocsCount) { + return false; } - const allDataLoaded: boolean = stats != null && ilmExplain != null; + const allDataLoaded: boolean = + stats != null && ((isILMAvailable && ilmExplain != null) || !isILMAvailable); const errorOccurred: boolean = error != null; return allDataLoaded || errorOccurred; diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/index.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/index.tsx index b37cea23010fd..93e481fe309ef 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/index.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/index.tsx @@ -50,6 +50,7 @@ import * as i18n from './translations'; import type { PatternRollup, SelectedIndex, SortConfig } from '../../types'; import { useIlmExplain } from '../../use_ilm_explain'; import { useStats } from '../../use_stats'; +import { useDataQualityContext } from '../data_quality_context'; const IndexPropertiesContainer = styled.div` margin-bottom: ${euiThemeVars.euiSizeS}; @@ -60,7 +61,9 @@ const EMPTY_INDEX_NAMES: string[] = []; interface Props { addSuccessToast: (toast: { title: string }) => void; + baseTheme: Theme; canUserCreateAndReadCases: () => boolean; + endDate?: string | null; formatBytes: (value: number | undefined) => string; formatNumber: (value: number | undefined) => string; getGroupByFieldsOnClick: ( @@ -90,8 +93,8 @@ interface Props { patternRollup: PatternRollup | undefined; selectedIndex: SelectedIndex | null; setSelectedIndex: (selectedIndex: SelectedIndex | null) => void; + startDate?: string | null; theme?: PartialTheme; - baseTheme: Theme; updatePatternIndexNames: ({ indexNames, pattern, @@ -105,6 +108,7 @@ interface Props { const PatternComponent: React.FC = ({ addSuccessToast, canUserCreateAndReadCases, + endDate, formatBytes, formatNumber, getGroupByFieldsOnClick, @@ -116,17 +120,23 @@ const PatternComponent: React.FC = ({ patternRollup, selectedIndex, setSelectedIndex, + startDate, theme, baseTheme, updatePatternIndexNames, updatePatternRollup, }) => { const containerRef = useRef(null); + const { isILMAvailable } = useDataQualityContext(); const [sorting, setSorting] = useState(defaultSort); const [pageIndex, setPageIndex] = useState(0); const [pageSize, setPageSize] = useState(MIN_PAGE_SIZE); - const { error: statsError, loading: loadingStats, stats } = useStats(pattern); + const { + error: statsError, + loading: loadingStats, + stats, + } = useStats({ pattern, startDate, endDate }); const { error: ilmExplainError, loading: loadingIlmExplain, ilmExplain } = useIlmExplain(pattern); const loading = useMemo( @@ -154,7 +164,11 @@ const PatternComponent: React.FC = ({ formatNumber={formatNumber} docsCount={getDocsCount({ stats, indexName })} getGroupByFieldsOnClick={getGroupByFieldsOnClick} - ilmPhase={ilmExplain != null ? getIlmPhase(ilmExplain[indexName]) : undefined} + ilmPhase={ + isILMAvailable && ilmExplain != null + ? getIlmPhase(ilmExplain?.[indexName], isILMAvailable) + : undefined + } indexId={getIndexId({ stats, indexName })} indexName={indexName} isAssistantEnabled={isAssistantEnabled} @@ -179,6 +193,7 @@ const PatternComponent: React.FC = ({ stats, getGroupByFieldsOnClick, ilmExplain, + isILMAvailable, isAssistantEnabled, openCreateCaseFlyout, pattern, @@ -189,13 +204,17 @@ const PatternComponent: React.FC = ({ ] ); - const ilmExplainPhaseCounts = useMemo(() => getIlmExplainPhaseCounts(ilmExplain), [ilmExplain]); + const ilmExplainPhaseCounts = useMemo( + () => (isILMAvailable ? getIlmExplainPhaseCounts(ilmExplain) : undefined), + [ilmExplain, isILMAvailable] + ); const items = useMemo( () => getSummaryTableItems({ ilmExplain, indexNames: indexNames ?? EMPTY_INDEX_NAMES, + isILMAvailable, pattern, patternDocsCount: patternRollup?.docsCount ?? 0, results: patternRollup?.results, @@ -206,6 +225,7 @@ const PatternComponent: React.FC = ({ [ ilmExplain, indexNames, + isILMAvailable, pattern, patternRollup?.docsCount, patternRollup?.results, @@ -216,27 +236,44 @@ const PatternComponent: React.FC = ({ ); useEffect(() => { - if (shouldCreateIndexNames({ indexNames, stats, ilmExplain })) { + const newIndexNames = getIndexNames({ stats, ilmExplain, ilmPhases, isILMAvailable }); + const newDocsCount = getTotalDocsCount({ indexNames: newIndexNames, stats }); + + if ( + shouldCreateIndexNames({ + indexNames, + ilmExplain, + isILMAvailable, + newIndexNames, + stats, + }) + ) { updatePatternIndexNames({ - indexNames: getIndexNames({ stats, ilmExplain, ilmPhases }), + indexNames: newIndexNames, pattern, }); } - if (shouldCreatePatternRollup({ error, patternRollup, stats, ilmExplain })) { + if ( + shouldCreatePatternRollup({ + error, + ilmExplain, + isILMAvailable, + newDocsCount, + patternRollup, + stats, + }) + ) { updatePatternRollup({ - docsCount: getTotalDocsCount({ - indexNames: getIndexNames({ stats, ilmExplain, ilmPhases }), - stats, - }), + docsCount: newDocsCount, error, ilmExplain, ilmExplainPhaseCounts, - indices: getIndexNames({ stats, ilmExplain, ilmPhases }).length, + indices: getIndexNames({ stats, ilmExplain, ilmPhases, isILMAvailable }).length, pattern, results: undefined, sizeInBytes: getTotalSizeInBytes({ - indexNames: getIndexNames({ stats, ilmExplain, ilmPhases }), + indexNames: getIndexNames({ stats, ilmExplain, ilmPhases, isILMAvailable }), stats, }), stats, @@ -248,6 +285,7 @@ const PatternComponent: React.FC = ({ ilmExplainPhaseCounts, ilmPhases, indexNames, + isILMAvailable, pattern, patternRollup, stats, diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/pattern_summary/index.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/pattern_summary/index.tsx index 233de9fc93a1f..1ef9443d7c9c5 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/pattern_summary/index.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/pattern_summary/index.tsx @@ -15,7 +15,7 @@ import { StatsRollup } from './stats_rollup'; interface Props { formatBytes: (value: number | undefined) => string; formatNumber: (value: number | undefined) => string; - ilmExplainPhaseCounts: IlmExplainPhaseCounts; + ilmExplainPhaseCounts: IlmExplainPhaseCounts | undefined; incompatible: number | undefined; indices: number | undefined; indicesChecked: number | undefined; diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/pattern_summary/pattern_label/index.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/pattern_summary/pattern_label/index.tsx index f421da8d2bf35..34d6f56a8594a 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/pattern_summary/pattern_label/index.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/pattern/pattern_summary/pattern_label/index.tsx @@ -23,7 +23,7 @@ interface Props { incompatible: number | undefined; indices: number | undefined; indicesChecked: number | undefined; - ilmExplainPhaseCounts: IlmExplainPhaseCounts; + ilmExplainPhaseCounts: IlmExplainPhaseCounts | undefined; pattern: string; } @@ -63,7 +63,9 @@ const PatternLabelComponent: React.FC = ({
    - + {ilmExplainPhaseCounts && ( + + )} ); diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/storage_treemap/index.test.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/storage_treemap/index.test.tsx index 6485f3c1e4717..f1ae399c4da23 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/storage_treemap/index.test.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/storage_treemap/index.test.tsx @@ -42,6 +42,7 @@ const patternRollups: Record = { const flattenedBuckets = getFlattenedBuckets({ ilmPhases, + isILMAvailable: true, patternRollups, }); diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/summary_table/helpers.test.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/summary_table/helpers.test.tsx index e913d38dbb07c..6ab874eeac5b6 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/summary_table/helpers.test.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/summary_table/helpers.test.tsx @@ -21,6 +21,7 @@ import { getResultToolTip, getShowPagination, getSummaryTableColumns, + getSummaryTableILMPhaseColumn, getToggleButtonId, IndexSummaryTableItem, } from './helpers'; @@ -132,6 +133,7 @@ describe('helpers', () => { describe('getSummaryTableColumns', () => { const indexName = '.ds-auditbeat-8.6.1-2023.02.07-000001'; + const isILMAvailable = true; const indexSummaryTableItem: IndexSummaryTableItem = { indexName, @@ -153,6 +155,7 @@ describe('helpers', () => { formatBytes, formatNumber, itemIdToExpandedRowMap: {}, + isILMAvailable, pattern: 'auditbeat-*', toggleExpanded: jest.fn(), }).map((x) => omit('render', x)); @@ -194,6 +197,7 @@ describe('helpers', () => { formatBytes, formatNumber, itemIdToExpandedRowMap: {}, + isILMAvailable, pattern: 'auditbeat-*', toggleExpanded: jest.fn(), }); @@ -219,6 +223,7 @@ describe('helpers', () => { formatBytes, formatNumber, itemIdToExpandedRowMap, + isILMAvailable, pattern: 'auditbeat-*', toggleExpanded: jest.fn(), }); @@ -242,6 +247,7 @@ describe('helpers', () => { formatBytes, formatNumber, itemIdToExpandedRowMap: {}, + isILMAvailable, pattern: 'auditbeat-*', toggleExpanded, }); @@ -273,6 +279,7 @@ describe('helpers', () => { formatBytes, formatNumber, itemIdToExpandedRowMap: {}, + isILMAvailable, pattern: 'auditbeat-*', toggleExpanded: jest.fn(), }); @@ -295,6 +302,7 @@ describe('helpers', () => { formatBytes, formatNumber, itemIdToExpandedRowMap: {}, + isILMAvailable, pattern: 'auditbeat-*', toggleExpanded: jest.fn(), }); @@ -321,6 +329,7 @@ describe('helpers', () => { formatBytes, formatNumber, itemIdToExpandedRowMap: {}, + isILMAvailable, pattern: 'auditbeat-*', toggleExpanded: jest.fn(), }); @@ -344,6 +353,7 @@ describe('helpers', () => { formatBytes, formatNumber, itemIdToExpandedRowMap: {}, + isILMAvailable, pattern: 'auditbeat-*', toggleExpanded: jest.fn(), }); @@ -367,6 +377,7 @@ describe('helpers', () => { formatBytes, formatNumber, itemIdToExpandedRowMap: {}, + isILMAvailable, pattern: 'auditbeat-*', toggleExpanded: jest.fn(), }); @@ -401,6 +412,7 @@ describe('helpers', () => { formatBytes, formatNumber, itemIdToExpandedRowMap: {}, + isILMAvailable, pattern: 'auditbeat-*', toggleExpanded: jest.fn(), }); @@ -422,6 +434,7 @@ describe('helpers', () => { formatBytes, formatNumber, itemIdToExpandedRowMap: {}, + isILMAvailable, pattern: 'auditbeat-*', toggleExpanded: jest.fn(), }); @@ -440,12 +453,26 @@ describe('helpers', () => { }); }); + describe('getSummaryTableILMPhaseColumn', () => { + test('it returns the expected column configuration when `isILMAvailable` is true', () => { + const column = getSummaryTableILMPhaseColumn(isILMAvailable); + expect(column.length).toEqual(1); + expect(column[0].name).toEqual('ILM Phase'); + }); + + test('it returns an emptry array when `isILMAvailable` is false', () => { + const column = getSummaryTableILMPhaseColumn(false); + expect(column.length).toEqual(0); + }); + }); + describe('ilmPhase column render()', () => { test('it renders the expected ilmPhase badge content', () => { const columns = getSummaryTableColumns({ formatBytes, formatNumber, itemIdToExpandedRowMap: {}, + isILMAvailable, pattern: 'auditbeat-*', toggleExpanded: jest.fn(), }); @@ -471,6 +498,32 @@ describe('helpers', () => { formatBytes, formatNumber, itemIdToExpandedRowMap: {}, + isILMAvailable, + pattern: 'auditbeat-*', + toggleExpanded: jest.fn(), + }); + const ilmPhaseRender = (columns[5] as EuiTableFieldDataColumnType) + .render; + + render( + + {ilmPhaseRender != null && ilmPhaseRender(ilmPhaseIsUndefined, ilmPhaseIsUndefined)} + + ); + + expect(screen.queryByTestId('ilmPhase')).not.toBeInTheDocument(); + }); + + test('it does NOT render the ilmPhase badge when `isILMAvailable` is false', () => { + const ilmPhaseIsUndefined: IndexSummaryTableItem = { + ...indexSummaryTableItem, + }; + + const columns = getSummaryTableColumns({ + formatBytes, + formatNumber, + itemIdToExpandedRowMap: {}, + isILMAvailable: false, pattern: 'auditbeat-*', toggleExpanded: jest.fn(), }); @@ -493,6 +546,7 @@ describe('helpers', () => { formatBytes, formatNumber, itemIdToExpandedRowMap: {}, + isILMAvailable, pattern: 'auditbeat-*', toggleExpanded: jest.fn(), }); diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/summary_table/helpers.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/summary_table/helpers.tsx index 89e0d78fddb6b..f80678fff8cb2 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/summary_table/helpers.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/summary_table/helpers.tsx @@ -95,16 +95,40 @@ export const getToggleButtonId = ({ pattern: string; }): string => (isExpanded ? `collapse${indexName}${pattern}` : `expand${indexName}${pattern}`); +export const getSummaryTableILMPhaseColumn = ( + isILMAvailable: boolean +): Array> => + isILMAvailable + ? [ + { + field: 'ilmPhase', + name: i18n.ILM_PHASE, + render: (_, { ilmPhase }) => + ilmPhase != null ? ( + + + {ilmPhase} + + + ) : null, + sortable: true, + truncateText: false, + }, + ] + : []; + export const getSummaryTableColumns = ({ formatBytes, formatNumber, itemIdToExpandedRowMap, + isILMAvailable, pattern, toggleExpanded, }: { formatBytes: (value: number | undefined) => string; formatNumber: (value: number | undefined) => string; itemIdToExpandedRowMap: Record; + isILMAvailable: boolean; pattern: string; toggleExpanded: (indexName: string) => void; }): Array> => [ @@ -201,20 +225,7 @@ export const getSummaryTableColumns = ({ sortable: true, truncateText: false, }, - { - field: 'ilmPhase', - name: i18n.ILM_PHASE, - render: (_, { ilmPhase }) => - ilmPhase != null ? ( - - - {ilmPhase} - - - ) : null, - sortable: true, - truncateText: false, - }, + ...getSummaryTableILMPhaseColumn(isILMAvailable), { field: 'sizeInBytes', name: i18n.SIZE, diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/summary_table/index.test.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/summary_table/index.test.tsx index 235ec61a204af..720943b0d2bb8 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/summary_table/index.test.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/summary_table/index.test.tsx @@ -48,6 +48,7 @@ const pattern = 'auditbeat-*'; const items = getSummaryTableItems({ ilmExplain: mockIlmExplain, indexNames: indexNames ?? [], + isILMAvailable: true, pattern, patternDocsCount: auditbeatWithAllResults?.docsCount ?? 0, results: auditbeatWithAllResults?.results, diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/summary_table/index.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/summary_table/index.tsx index 2dd2c4e214dc0..a230510029222 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/summary_table/index.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/summary_table/index.tsx @@ -13,6 +13,7 @@ import type { IndexSummaryTableItem } from './helpers'; import { getShowPagination } from './helpers'; import { defaultSort, MIN_PAGE_SIZE } from '../pattern/helpers'; import { SortConfig } from '../../types'; +import { useDataQualityContext } from '../data_quality_context'; export interface Props { formatBytes: (value: number | undefined) => string; @@ -21,12 +22,14 @@ export interface Props { formatBytes, formatNumber, itemIdToExpandedRowMap, + isILMAvailable, pattern, toggleExpanded, }: { formatBytes: (value: number | undefined) => string; formatNumber: (value: number | undefined) => string; itemIdToExpandedRowMap: Record; + isILMAvailable: boolean; pattern: string; toggleExpanded: (indexName: string) => void; }) => Array>; @@ -57,16 +60,26 @@ const SummaryTableComponent: React.FC = ({ sorting, toggleExpanded, }) => { + const { isILMAvailable } = useDataQualityContext(); const columns = useMemo( () => getTableColumns({ formatBytes, formatNumber, itemIdToExpandedRowMap, + isILMAvailable, pattern, toggleExpanded, }), - [formatBytes, formatNumber, getTableColumns, itemIdToExpandedRowMap, pattern, toggleExpanded] + [ + formatBytes, + formatNumber, + getTableColumns, + isILMAvailable, + itemIdToExpandedRowMap, + pattern, + toggleExpanded, + ] ); const getItemId = useCallback((item: IndexSummaryTableItem) => item.indexName, []); diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/custom_tab/helpers.test.ts b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/custom_tab/helpers.test.ts index ab23e2265399b..ffa3e0bde633d 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/custom_tab/helpers.test.ts +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/custom_tab/helpers.test.ts @@ -79,6 +79,7 @@ ${ECS_IS_A_PERMISSIVE_SCHEMA} formatNumber, ilmPhase: 'unmanaged', indexName: 'auditbeat-custom-index-1', + isILMAvailable: true, partitionedFieldMetadata: mockPartitionedFieldMetadata, patternDocsCount: 57410, sizeInBytes: 28413, @@ -91,5 +92,27 @@ ${ECS_IS_A_PERMISSIVE_SCHEMA} '#### Custom fields - auditbeat-custom-index-1\n\n\n| Field | Index mapping type | \n|-------|--------------------|\n| host.name.keyword | `keyword` | `--` |\n| some.field | `text` | `--` |\n| some.field.keyword | `keyword` | `--` |\n| source.ip.keyword | `keyword` | `--` |\n', ]); }); + + test('it returns the expected comment without ILM Phase when isILMAvailable is false', () => { + expect( + getAllCustomMarkdownComments({ + docsCount: 4, + formatBytes, + formatNumber, + ilmPhase: 'unmanaged', + indexName: 'auditbeat-custom-index-1', + isILMAvailable: false, + partitionedFieldMetadata: mockPartitionedFieldMetadata, + patternDocsCount: 57410, + sizeInBytes: 28413, + }) + ).toEqual([ + '### auditbeat-custom-index-1\n', + '| Result | Index | Docs | Incompatible fields | Size |\n|--------|-------|------|---------------------|------|\n| ❌ | auditbeat-custom-index-1 | 4 (0.0%) | 3 | 27.7KB |\n\n', + '### **Incompatible fields** `3` **Custom fields** `4` **ECS compliant fields** `2` **All fields** `9`\n', + `#### 4 Custom field mappings\n\nThese fields are not defined by the Elastic Common Schema (ECS), version ${EcsVersion}.\n\nECS is a permissive schema. If your events have additional data that cannot be mapped to ECS, you can simply add them to your events, using custom field names.\n`, + '#### Custom fields - auditbeat-custom-index-1\n\n\n| Field | Index mapping type | \n|-------|--------------------|\n| host.name.keyword | `keyword` | `--` |\n| some.field | `text` | `--` |\n| some.field.keyword | `keyword` | `--` |\n| source.ip.keyword | `keyword` | `--` |\n', + ]); + }); }); }); diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/custom_tab/helpers.ts b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/custom_tab/helpers.ts index 7701db46d6c98..9d1f6362aa91d 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/custom_tab/helpers.ts +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/custom_tab/helpers.ts @@ -51,6 +51,7 @@ export const getAllCustomMarkdownComments = ({ formatNumber, ilmPhase, indexName, + isILMAvailable, partitionedFieldMetadata, patternDocsCount, sizeInBytes, @@ -59,6 +60,7 @@ export const getAllCustomMarkdownComments = ({ formatBytes: (value: number | undefined) => string; formatNumber: (value: number | undefined) => string; ilmPhase: IlmPhase | undefined; + isILMAvailable: boolean; indexName: string; partitionedFieldMetadata: PartitionedFieldMetadata; patternDocsCount: number; @@ -71,6 +73,7 @@ export const getAllCustomMarkdownComments = ({ formatNumber, ilmPhase, indexName, + isILMAvailable, partitionedFieldMetadata, patternDocsCount, sizeInBytes, diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/custom_tab/index.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/custom_tab/index.tsx index 09f7136d7108a..019e65e891474 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/custom_tab/index.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/custom_tab/index.tsx @@ -24,6 +24,7 @@ import { getAllCustomMarkdownComments, showCustomCallout } from './helpers'; import * as i18n from '../../index_properties/translations'; import { COPIED_RESULTS_TOAST_TITLE } from '../../../translations'; import type { IlmPhase, PartitionedFieldMetadata } from '../../../types'; +import { useDataQualityContext } from '../../data_quality_context'; interface Props { addSuccessToast: (toast: { title: string }) => void; @@ -48,6 +49,7 @@ const CustomTabComponent: React.FC = ({ patternDocsCount, sizeInBytes, }) => { + const { isILMAvailable } = useDataQualityContext(); const markdownComments: string[] = useMemo( () => getAllCustomMarkdownComments({ @@ -56,6 +58,7 @@ const CustomTabComponent: React.FC = ({ formatNumber, ilmPhase, indexName, + isILMAvailable, partitionedFieldMetadata, patternDocsCount, sizeInBytes, @@ -66,6 +69,7 @@ const CustomTabComponent: React.FC = ({ formatNumber, ilmPhase, indexName, + isILMAvailable, partitionedFieldMetadata, patternDocsCount, sizeInBytes, diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/incompatible_tab/helpers.test.ts b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/incompatible_tab/helpers.test.ts index 7c690ef143f6b..a33c65c9fd315 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/incompatible_tab/helpers.test.ts +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/incompatible_tab/helpers.test.ts @@ -349,6 +349,7 @@ ${MAPPINGS_THAT_CONFLICT_WITH_ECS} formatBytes, formatNumber, ilmPhase: 'unmanaged', + isILMAvailable: true, indexName: 'auditbeat-custom-index-1', partitionedFieldMetadata: mockPartitionedFieldMetadata, patternDocsCount: 57410, @@ -376,6 +377,7 @@ ${MAPPINGS_THAT_CONFLICT_WITH_ECS} formatNumber, ilmPhase: 'unmanaged', indexName: 'auditbeat-custom-index-1', + isILMAvailable: true, partitionedFieldMetadata: emptyIncompatible, patternDocsCount: 57410, sizeInBytes: 28413, @@ -387,5 +389,31 @@ ${MAPPINGS_THAT_CONFLICT_WITH_ECS} '\n\n\n', ]); }); + + test('it returns the expected comment when `isILMAvailable` is false', () => { + const emptyIncompatible: PartitionedFieldMetadata = { + ...mockPartitionedFieldMetadata, + incompatible: [], // <-- empty + }; + + expect( + getAllIncompatibleMarkdownComments({ + docsCount: 4, + formatBytes, + formatNumber, + ilmPhase: 'unmanaged', + indexName: 'auditbeat-custom-index-1', + isILMAvailable: false, + partitionedFieldMetadata: emptyIncompatible, + patternDocsCount: 57410, + sizeInBytes: 28413, + }) + ).toEqual([ + '### auditbeat-custom-index-1\n', + '| Result | Index | Docs | Incompatible fields | Size |\n|--------|-------|------|---------------------|------|\n| ✅ | auditbeat-custom-index-1 | 4 (0.0%) | 0 | 27.7KB |\n\n', + '### **Incompatible fields** `0` **Custom fields** `4` **ECS compliant fields** `2` **All fields** `9`\n', + '\n\n\n', + ]); + }); }); }); diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/incompatible_tab/helpers.ts b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/incompatible_tab/helpers.ts index c354b4ef1e8db..bbda7ca0026ad 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/incompatible_tab/helpers.ts +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/incompatible_tab/helpers.ts @@ -134,6 +134,7 @@ export const getAllIncompatibleMarkdownComments = ({ formatNumber, ilmPhase, indexName, + isILMAvailable, partitionedFieldMetadata, patternDocsCount, sizeInBytes, @@ -143,6 +144,7 @@ export const getAllIncompatibleMarkdownComments = ({ formatNumber: (value: number | undefined) => string; ilmPhase: IlmPhase | undefined; indexName: string; + isILMAvailable: boolean; partitionedFieldMetadata: PartitionedFieldMetadata; patternDocsCount: number; sizeInBytes: number | undefined; @@ -169,6 +171,7 @@ export const getAllIncompatibleMarkdownComments = ({ formatNumber, ilmPhase, indexName, + isILMAvailable, partitionedFieldMetadata, patternDocsCount, sizeInBytes, diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/incompatible_tab/index.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/incompatible_tab/index.tsx index e0e26f3928bde..e1b1bdfc9a403 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/incompatible_tab/index.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/incompatible_tab/index.tsx @@ -42,6 +42,7 @@ import { } from '../../../translations'; import type { IlmPhase, PartitionedFieldMetadata } from '../../../types'; import { DATA_QUALITY_DASHBOARD_CONVERSATION_ID } from '../summary_tab/callout_summary/translations'; +import { useDataQualityContext } from '../../data_quality_context'; interface Props { addSuccessToast: (toast: { title: string }) => void; @@ -72,6 +73,7 @@ const IncompatibleTabComponent: React.FC = ({ patternDocsCount, sizeInBytes, }) => { + const { isILMAvailable } = useDataQualityContext(); const body = useMemo(() => , []); const title = useMemo(() => , []); const incompatibleMappings = useMemo( @@ -90,6 +92,7 @@ const IncompatibleTabComponent: React.FC = ({ formatNumber, ilmPhase, indexName, + isILMAvailable, partitionedFieldMetadata, patternDocsCount, sizeInBytes, @@ -100,6 +103,7 @@ const IncompatibleTabComponent: React.FC = ({ formatNumber, ilmPhase, indexName, + isILMAvailable, partitionedFieldMetadata, patternDocsCount, sizeInBytes, diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/summary_tab/callout_summary/index.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/summary_tab/callout_summary/index.tsx index ba3aebc501010..d9403b7159e9f 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/summary_tab/callout_summary/index.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/summary_tab/callout_summary/index.tsx @@ -24,6 +24,7 @@ import { } from '../../../../translations'; import type { IlmPhase, PartitionedFieldMetadata } from '../../../../types'; import { DATA_QUALITY_DASHBOARD_CONVERSATION_ID } from './translations'; +import { useDataQualityContext } from '../../../data_quality_context'; interface Props { addSuccessToast: (toast: { title: string }) => void; @@ -56,6 +57,7 @@ const CalloutSummaryComponent: React.FC = ({ patternDocsCount, sizeInBytes, }) => { + const { isILMAvailable } = useDataQualityContext(); const markdownComments: string[] = useMemo( () => getMarkdownComments({ @@ -64,6 +66,7 @@ const CalloutSummaryComponent: React.FC = ({ formatNumber, ilmPhase, indexName, + isILMAvailable, partitionedFieldMetadata, pattern, patternDocsCount, @@ -75,6 +78,7 @@ const CalloutSummaryComponent: React.FC = ({ formatNumber, ilmPhase, indexName, + isILMAvailable, partitionedFieldMetadata, pattern, patternDocsCount, diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/summary_tab/helpers.test.ts b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/summary_tab/helpers.test.ts index 64e78a4a88cfb..40934fcd9a1bb 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/summary_tab/helpers.test.ts +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/summary_tab/helpers.test.ts @@ -146,6 +146,7 @@ describe('helpers', () => { const defaultNumberFormat = '0,0.[000]'; const formatNumber = (value: number | undefined) => value != null ? numeral(value).format(defaultNumberFormat) : EMPTY_STAT; + const isILMAvailable = true; test('it returns the expected comment when the index has incompatible fields ', () => { expect( @@ -155,6 +156,7 @@ describe('helpers', () => { formatNumber, ilmPhase: 'unmanaged', indexName: 'auditbeat-custom-index-1', + isILMAvailable, partitionedFieldMetadata: mockPartitionedFieldMetadata, pattern: 'auditbeat-*', patternDocsCount: 57410, @@ -182,6 +184,7 @@ describe('helpers', () => { formatNumber, ilmPhase: 'unmanaged', indexName: 'auditbeat-custom-index-1', + isILMAvailable, partitionedFieldMetadata: noIncompatible, pattern: 'auditbeat-*', patternDocsCount: 57410, @@ -217,6 +220,7 @@ describe('helpers', () => { formatNumber, ilmPhase: 'unmanaged', indexName: 'auditbeat-custom-empty-index-1', + isILMAvailable, partitionedFieldMetadata: emptyIndex, pattern: 'auditbeat-*', patternDocsCount: 57410, diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/summary_tab/helpers.ts b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/summary_tab/helpers.ts index 1f728e3b60c86..c720eba85f4ca 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/summary_tab/helpers.ts +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/data_quality_panel/tabs/summary_tab/helpers.ts @@ -83,6 +83,7 @@ export const getMarkdownComments = ({ formatNumber, ilmPhase, indexName, + isILMAvailable, partitionedFieldMetadata, patternDocsCount, sizeInBytes, @@ -92,6 +93,7 @@ export const getMarkdownComments = ({ formatNumber: (value: number | undefined) => string; ilmPhase: IlmPhase | undefined; indexName: string; + isILMAvailable: boolean; partitionedFieldMetadata: PartitionedFieldMetadata; pattern: string; patternDocsCount: number; @@ -104,6 +106,7 @@ export const getMarkdownComments = ({ formatNumber, ilmPhase, indexName, + isILMAvailable, partitionedFieldMetadata, patternDocsCount, sizeInBytes, diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/helpers.test.ts b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/helpers.test.ts index 81e968bfe73a4..12d3d26f64ae3 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/helpers.test.ts +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/helpers.test.ts @@ -79,6 +79,7 @@ const ecsMetadata: Record = EcsFlat as unknown as Record { describe('getIndexNames', () => { + const isILMAvailable = true; const ilmPhases = ['hot', 'warm', 'unmanaged']; test('returns the expected index names when they have an ILM phase included in the ilmPhases list', () => { @@ -86,6 +87,7 @@ describe('helpers', () => { getIndexNames({ ilmExplain: mockIlmExplain, // <-- the mock indexes have 'hot' ILM phases ilmPhases, + isILMAvailable, stats: mockStats, }) ).toEqual([ @@ -100,6 +102,7 @@ describe('helpers', () => { getIndexNames({ ilmExplain: mockIlmExplain, // <-- the mock indexes have 'hot' and 'unmanaged' ILM phases... ilmPhases: ['warm', 'unmanaged'], // <-- ...but we don't ask for 'hot' + isILMAvailable, stats: mockStats, }) ).toEqual(['auditbeat-custom-index-1']); // <-- the 'unmanaged' index @@ -116,6 +119,7 @@ describe('helpers', () => { getIndexNames({ ilmExplain: ilmExplainWithMissingIndex, // <-- the mock indexes have 'hot' ILM phases... ilmPhases: ['hot', 'warm', 'unmanaged'], + isILMAvailable, stats: mockStats, }) ).toEqual(['.ds-packetbeat-8.5.3-2023.02.04-000001', 'auditbeat-custom-index-1']); // <-- only includes two of the three indices, because the other one is missing an ILM explain record @@ -126,6 +130,7 @@ describe('helpers', () => { getIndexNames({ ilmExplain: mockIlmExplain, ilmPhases: [], + isILMAvailable, stats: mockStats, }) ).toEqual([]); @@ -136,6 +141,7 @@ describe('helpers', () => { getIndexNames({ ilmExplain: null, ilmPhases, + isILMAvailable, stats: mockStats, }) ).toEqual([]); @@ -146,6 +152,7 @@ describe('helpers', () => { getIndexNames({ ilmExplain: mockIlmExplain, ilmPhases, + isILMAvailable, stats: null, }) ).toEqual([]); @@ -156,6 +163,7 @@ describe('helpers', () => { getIndexNames({ ilmExplain: null, ilmPhases, + isILMAvailable, stats: null, }) ).toEqual([]); diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/helpers.ts b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/helpers.ts index 6b0d75e1308c9..87ac9df08ad6c 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/helpers.ts +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/helpers.ts @@ -31,17 +31,21 @@ const EMPTY_INDEX_NAMES: string[] = []; export const getIndexNames = ({ ilmExplain, ilmPhases, + isILMAvailable, stats, }: { ilmExplain: Record | null; ilmPhases: string[]; + isILMAvailable: boolean; stats: Record | null; }): string[] => { - if (ilmExplain != null && stats != null) { + if (((isILMAvailable && ilmExplain != null) || !isILMAvailable) && stats != null) { const allIndexNames = Object.keys(stats); - const filteredByIlmPhase = allIndexNames.filter((indexName) => - ilmPhases.includes(getIlmPhase(ilmExplain[indexName]) ?? '') - ); + const filteredByIlmPhase = isILMAvailable + ? allIndexNames.filter((indexName) => + ilmPhases.includes(getIlmPhase(ilmExplain?.[indexName], isILMAvailable) ?? '') + ) + : allIndexNames; return filteredByIlmPhase; } else { diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/index.test.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/index.test.tsx index d9cccb4259caf..e7e72221d18f5 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/index.test.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/index.test.tsx @@ -28,6 +28,7 @@ describe('DataQualityPanel', () => { httpFetch={jest.fn()} ilmPhases={ilmPhases} isAssistantEnabled={true} + isILMAvailable={true} lastChecked={''} openCreateCaseFlyout={jest.fn()} patterns={[]} @@ -63,6 +64,7 @@ describe('DataQualityPanel', () => { httpFetch={jest.fn()} ilmPhases={ilmPhases} isAssistantEnabled={true} + isILMAvailable={true} lastChecked={''} openCreateCaseFlyout={jest.fn()} patterns={[]} diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/index.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/index.tsx index 0a6e0d6a0ccd1..8d95e71464728 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/index.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/index.tsx @@ -26,9 +26,11 @@ import { ReportDataQualityCheckAllCompleted, ReportDataQualityIndexChecked } fro interface Props { addSuccessToast: (toast: { title: string }) => void; + baseTheme: Theme; canUserCreateAndReadCases: () => boolean; defaultNumberFormat: string; defaultBytesFormat: string; + endDate?: string | null; getGroupByFieldsOnClick: ( elements: Array< | FlameElementEvent @@ -45,6 +47,7 @@ interface Props { httpFetch: HttpHandler; ilmPhases: string[]; isAssistantEnabled: boolean; + isILMAvailable: boolean; lastChecked: string; openCreateCaseFlyout: ({ comments, @@ -57,8 +60,8 @@ interface Props { reportDataQualityIndexChecked?: ReportDataQualityIndexChecked; reportDataQualityCheckAllCompleted?: ReportDataQualityCheckAllCompleted; setLastChecked: (lastChecked: string) => void; + startDate?: string | null; theme?: PartialTheme; - baseTheme: Theme; } /** Renders the `Data Quality` dashboard content */ @@ -68,16 +71,19 @@ const DataQualityPanelComponent: React.FC = ({ canUserCreateAndReadCases, defaultBytesFormat, defaultNumberFormat, + endDate, getGroupByFieldsOnClick, httpFetch, ilmPhases, isAssistantEnabled, + isILMAvailable, lastChecked, openCreateCaseFlyout, patterns, reportDataQualityIndexChecked, reportDataQualityCheckAllCompleted, setLastChecked, + startDate, theme, }) => { const formatBytes = useCallback( @@ -98,10 +104,15 @@ const DataQualityPanelComponent: React.FC = ({ ); return ( - + = ({ openCreateCaseFlyout={openCreateCaseFlyout} patterns={patterns} setLastChecked={setLastChecked} + startDate={startDate} theme={theme} baseTheme={baseTheme} /> diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/mock/test_providers/test_providers.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/mock/test_providers/test_providers.tsx index 6926c642b825d..26eb55d49abfb 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/mock/test_providers/test_providers.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/mock/test_providers/test_providers.tsx @@ -7,7 +7,7 @@ import { actionTypeRegistryMock } from '@kbn/triggers-actions-ui-plugin/public/application/action_type_registry.mock'; import { httpServiceMock } from '@kbn/core-http-browser-mocks'; -import { AssistantProvider } from '@kbn/elastic-assistant'; +import { AssistantAvailability, AssistantProvider } from '@kbn/elastic-assistant'; import { I18nProvider } from '@kbn/i18n-react'; import { euiDarkVars } from '@kbn/ui-theme'; import React from 'react'; @@ -17,12 +17,13 @@ import { DataQualityProvider } from '../../data_quality_panel/data_quality_conte interface Props { children: React.ReactNode; + isILMAvailable?: boolean; } window.scrollTo = jest.fn(); /** A utility for wrapping children in the providers required to run tests */ -export const TestProvidersComponent: React.FC = ({ children }) => { +export const TestProvidersComponent: React.FC = ({ children, isILMAvailable = true }) => { const http = httpServiceMock.createSetupContract({ basePath: '/test' }); const actionTypeRegistry = actionTypeRegistryMock.create(); const mockGetInitialConversations = jest.fn(() => ({})); @@ -32,11 +33,19 @@ export const TestProvidersComponent: React.FC = ({ children }) => { reportDataQualityIndexChecked: jest.fn(), reportDataQualityCheckAllCompleted: jest.fn(), }; + const mockAssistantAvailability: AssistantAvailability = { + hasAssistantPrivilege: false, + hasConnectorsAllPrivilege: true, + hasConnectorsReadPrivilege: true, + isAssistantEnabled: true, + }; + return ( ({ eui: euiDarkVars, darkMode: true })}> = ({ children }) => { setDefaultAllowReplacement={jest.fn()} http={mockHttp} > - + {children} diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_ilm_explain/index.test.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_ilm_explain/index.test.tsx index cff820a4c532c..90cd0906c137a 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_ilm_explain/index.test.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_ilm_explain/index.test.tsx @@ -20,8 +20,15 @@ const mockTelemetryEvents = { reportDataQualityIndexChecked: mockReportDataQualityIndexChecked, reportDataQualityCheckAllCompleted: mockReportDataQualityCheckAllClicked, }; -const ContextWrapper: React.FC = ({ children }) => ( - +const ContextWrapper: React.FC<{ children: React.ReactNode; isILMAvailable: boolean }> = ({ + children, + isILMAvailable = true, +}) => ( + {children} ); @@ -59,6 +66,34 @@ describe('useIlmExplain', () => { }); }); + describe('skip ilm api when isILMAvailable is false', () => { + let ilmExplainResult: UseIlmExplain | undefined; + + beforeEach(async () => { + const { result, waitForNextUpdate } = renderHook(() => useIlmExplain(pattern), { + wrapper: ({ children }) => ( + + {children} + + ), + }); + await waitForNextUpdate(); + ilmExplainResult = await result.current; + }); + + test('it returns the expected ilmExplain map', async () => { + expect(ilmExplainResult?.ilmExplain).toEqual(null); + }); + + test('it returns loading: false, because the request is aborted', async () => { + expect(ilmExplainResult?.loading).toBe(false); + }); + }); + describe('fetch rejects with an error', () => { let ilmExplainResult: UseIlmExplain | undefined; const errorMessage = 'simulated error'; diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_ilm_explain/index.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_ilm_explain/index.tsx index 64b2765a39df3..ae643745bd805 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_ilm_explain/index.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_ilm_explain/index.tsx @@ -20,7 +20,7 @@ export interface UseIlmExplain { } export const useIlmExplain = (pattern: string): UseIlmExplain => { - const { httpFetch } = useDataQualityContext(); + const { httpFetch, isILMAvailable } = useDataQualityContext(); const [ilmExplain, setIlmExplain] = useState { async function fetchData() { try { const encodedIndexName = encodeURIComponent(`${pattern}`); + if (!isILMAvailable) { + abortController.abort(); + } const response = await httpFetch>( `${ILM_EXPLAIN_ENDPOINT}/${encodedIndexName}`, @@ -51,9 +54,7 @@ export const useIlmExplain = (pattern: string): UseIlmExplain => { setError(i18n.ERROR_LOADING_ILM_EXPLAIN(e.message)); } } finally { - if (!abortController.signal.aborted) { - setLoading(false); - } + setLoading(false); } } @@ -62,7 +63,7 @@ export const useIlmExplain = (pattern: string): UseIlmExplain => { return () => { abortController.abort(); }; - }, [httpFetch, pattern, setError]); + }, [httpFetch, isILMAvailable, pattern, setError]); return { ilmExplain, error, loading }; }; diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_mappings/index.test.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_mappings/index.test.tsx index cb0165c68d942..06006d3c5a3cf 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_mappings/index.test.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_mappings/index.test.tsx @@ -22,7 +22,11 @@ const mockTelemetryEvents = { }; const ContextWrapper: React.FC = ({ children }) => ( - + {children} ); diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_results_rollup/helpers.test.ts b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_results_rollup/helpers.test.ts index f25903adff823..2b53b44a64027 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_results_rollup/helpers.test.ts +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_results_rollup/helpers.test.ts @@ -158,6 +158,7 @@ describe('helpers', () => { formatBytes, formatNumber, indexName: '.ds-packetbeat-8.6.1-2023.02.04-000001', + isILMAvailable: true, partitionedFieldMetadata: mockPartitionedFieldMetadata, pattern: 'packetbeat-*', patternRollups: { @@ -257,6 +258,7 @@ describe('helpers', () => { formatBytes, formatNumber, indexName: '.ds-packetbeat-8.6.1-2023.02.04-000001', + isILMAvailable: true, partitionedFieldMetadata: mockPartitionedFieldMetadata, pattern: 'packetbeat-*', patternRollups: { @@ -351,6 +353,7 @@ describe('helpers', () => { formatBytes, formatNumber, indexName: '.ds-packetbeat-8.6.1-2023.02.04-000001', + isILMAvailable: true, partitionedFieldMetadata: null, // <-- pattern: 'packetbeat-*', patternRollups: { @@ -444,6 +447,7 @@ describe('helpers', () => { formatBytes, formatNumber, indexName: '.ds-packetbeat-8.6.1-2023.02.04-000001', + isILMAvailable: true, partitionedFieldMetadata: mockPartitionedFieldMetadata, pattern: 'packetbeat-*', patternRollups: { @@ -501,6 +505,7 @@ describe('helpers', () => { formatBytes, formatNumber, indexName: '.ds-packetbeat-8.6.1-2023.02.04-000001', + isILMAvailable: true, partitionedFieldMetadata: mockPartitionedFieldMetadata, pattern: 'this-pattern-is-not-in-pattern-rollups', // <-- patternRollups: shouldNotBeModified, diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_results_rollup/helpers.ts b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_results_rollup/helpers.ts index dbad0364904f5..ecd00ce71a8f6 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_results_rollup/helpers.ts +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_results_rollup/helpers.ts @@ -90,6 +90,7 @@ export const updateResultOnCheckCompleted = ({ formatBytes, formatNumber, indexName, + isILMAvailable, partitionedFieldMetadata, pattern, patternRollups, @@ -98,6 +99,7 @@ export const updateResultOnCheckCompleted = ({ formatBytes: (value: number | undefined) => string; formatNumber: (value: number | undefined) => string; indexName: string; + isILMAvailable: boolean; partitionedFieldMetadata: PartitionedFieldMetadata | null; pattern: string; patternRollups: Record; @@ -108,7 +110,7 @@ export const updateResultOnCheckCompleted = ({ const ilmExplain = patternRollup.ilmExplain; const ilmPhase: IlmPhase | undefined = - ilmExplain != null ? getIlmPhase(ilmExplain[indexName]) : undefined; + ilmExplain != null ? getIlmPhase(ilmExplain[indexName], isILMAvailable) : undefined; const docsCount = getIndexDocsCountFromRollup({ indexName, @@ -127,6 +129,7 @@ export const updateResultOnCheckCompleted = ({ formatNumber, ilmPhase, indexName, + isILMAvailable, partitionedFieldMetadata, patternDocsCount, sizeInBytes, diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_results_rollup/index.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_results_rollup/index.tsx index 652c07ce29275..60c2ac8899908 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_results_rollup/index.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_results_rollup/index.tsx @@ -53,7 +53,7 @@ interface UseResultsRollup { export const useResultsRollup = ({ ilmPhases, patterns }: Props): UseResultsRollup => { const [patternIndexNames, setPatternIndexNames] = useState>({}); const [patternRollups, setPatternRollups] = useState>({}); - const { telemetryEvents } = useDataQualityContext(); + const { telemetryEvents, isILMAvailable } = useDataQualityContext(); const updatePatternRollup = useCallback((patternRollup: PatternRollup) => { setPatternRollups((current) => onPatternRollupUpdated({ patternRollup, patternRollups: current }) @@ -101,6 +101,7 @@ export const useResultsRollup = ({ ilmPhases, patterns }: Props): UseResultsRoll formatBytes, formatNumber, indexName, + isILMAvailable, partitionedFieldMetadata, pattern, patternRollups: current, @@ -119,7 +120,7 @@ export const useResultsRollup = ({ ilmPhases, patterns }: Props): UseResultsRoll batchId, ecsVersion: EcsVersion, errorCount: error ? 1 : 0, - ilmPhase: getIlmPhase(ilmExplain[indexName]), + ilmPhase: getIlmPhase(ilmExplain[indexName], isILMAvailable), indexId, indexName, isCheckAll: true, @@ -157,7 +158,7 @@ export const useResultsRollup = ({ ilmPhases, patterns }: Props): UseResultsRoll return updated; }); }, - [patternRollups, telemetryEvents] + [isILMAvailable, patternRollups, telemetryEvents] ); useEffect(() => { diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_stats/index.test.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_stats/index.test.tsx index 30960a7daa874..de63f40e361c4 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_stats/index.test.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_stats/index.test.tsx @@ -22,25 +22,64 @@ const mockTelemetryEvents = { }; const ContextWrapper: React.FC = ({ children }) => ( - + + {children} + +); + +const ContextWrapperILMNotAvailable: React.FC = ({ children }) => ( + {children} ); const pattern = 'auditbeat-*'; +const startDate = `now-7d`; +const endDate = `now`; +const params = { + pattern, +}; describe('useStats', () => { beforeEach(() => { jest.clearAllMocks(); }); + describe('query with date range when ILM is not available', () => { + const queryParams = { + isILMAvailable: false, + startDate, + endDate, + }; + + beforeEach(async () => { + mockHttpFetch.mockResolvedValue(mockStatsGreenIndex); + + const { waitForNextUpdate } = renderHook(() => useStats({ pattern, startDate, endDate }), { + wrapper: ContextWrapperILMNotAvailable, + }); + await waitForNextUpdate(); + }); + test(`it calls the stats api with the expected params`, async () => { + expect(mockHttpFetch.mock.calls[0][1].query).toEqual(queryParams); + }); + }); + describe('successful response from the stats api', () => { let statsResult: UseStats | undefined; beforeEach(async () => { mockHttpFetch.mockResolvedValue(mockStatsGreenIndex); - const { result, waitForNextUpdate } = renderHook(() => useStats(pattern), { + const { result, waitForNextUpdate } = renderHook(() => useStats(params), { wrapper: ContextWrapper, }); await waitForNextUpdate(); @@ -58,6 +97,10 @@ describe('useStats', () => { test('it returns a null error, because no errors occurred', async () => { expect(statsResult?.error).toBeNull(); }); + + test(`it calls the stats api with the expected params`, async () => { + expect(mockHttpFetch.mock.calls[0][1].query).toEqual({ isILMAvailable: true }); + }); }); describe('fetch rejects with an error', () => { @@ -67,7 +110,7 @@ describe('useStats', () => { beforeEach(async () => { mockHttpFetch.mockRejectedValue(new Error(errorMessage)); - const { result, waitForNextUpdate } = renderHook(() => useStats(pattern), { + const { result, waitForNextUpdate } = renderHook(() => useStats(params), { wrapper: ContextWrapper, }); await waitForNextUpdate(); diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_stats/index.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_stats/index.tsx index d929bb3368345..6875dad3d4dfc 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_stats/index.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_stats/index.tsx @@ -7,6 +7,7 @@ import type { IndicesStatsIndicesStats } from '@elastic/elasticsearch/lib/api/types'; import { useEffect, useState } from 'react'; +import { HttpFetchQuery } from '@kbn/core/public'; import { useDataQualityContext } from '../data_quality_panel/data_quality_context'; import * as i18n from '../translations'; @@ -19,8 +20,16 @@ export interface UseStats { loading: boolean; } -export const useStats = (pattern: string): UseStats => { - const { httpFetch } = useDataQualityContext(); +export const useStats = ({ + endDate, + pattern, + startDate, +}: { + endDate?: string | null; + pattern: string; + startDate?: string | null; +}): UseStats => { + const { httpFetch, isILMAvailable } = useDataQualityContext(); const [stats, setStats] = useState | null>(null); const [error, setError] = useState(null); const [loading, setLoading] = useState(true); @@ -31,12 +40,22 @@ export const useStats = (pattern: string): UseStats => { async function fetchData() { try { const encodedIndexName = encodeURIComponent(`${pattern}`); + const query: HttpFetchQuery = { isILMAvailable }; + if (!isILMAvailable) { + if (startDate) { + query.startDate = startDate; + } + if (endDate) { + query.endDate = endDate; + } + } const response = await httpFetch>( `${STATS_ENDPOINT}/${encodedIndexName}`, { method: 'GET', signal: abortController.signal, + query, } ); @@ -59,7 +78,7 @@ export const useStats = (pattern: string): UseStats => { return () => { abortController.abort(); }; - }, [httpFetch, pattern, setError]); + }, [endDate, httpFetch, isILMAvailable, pattern, setError, startDate]); return { stats, error, loading }; }; diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_unallowed_values/index.test.tsx b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_unallowed_values/index.test.tsx index b0d55edaf9129..b69de24cb6d9a 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_unallowed_values/index.test.tsx +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/impl/data_quality/use_unallowed_values/index.test.tsx @@ -25,7 +25,11 @@ const mockTelemetryEvents = { }; const ContextWrapper: React.FC = ({ children }) => ( - + {children} ); diff --git a/x-pack/packages/security-solution/ecs_data_quality_dashboard/tsconfig.json b/x-pack/packages/security-solution/ecs_data_quality_dashboard/tsconfig.json index b033af7aa5a0c..4581552f2c591 100644 --- a/x-pack/packages/security-solution/ecs_data_quality_dashboard/tsconfig.json +++ b/x-pack/packages/security-solution/ecs_data_quality_dashboard/tsconfig.json @@ -24,5 +24,6 @@ "@kbn/core-http-browser-mocks", "@kbn/elastic-assistant", "@kbn/triggers-actions-ui-plugin", + "@kbn/core", ] } diff --git a/x-pack/packages/security-solution/upselling/README.mdx b/x-pack/packages/security-solution/upselling/README.mdx new file mode 100644 index 0000000000000..62dd77f659062 --- /dev/null +++ b/x-pack/packages/security-solution/upselling/README.mdx @@ -0,0 +1,3 @@ +## Security Solution Upselling + +This package contains the upselling service that registers pages/component/messages and shared upselling components for ESS and Serverless plugins. diff --git a/x-pack/plugins/security_solution_ess/public/common/images/entity_paywall.png b/x-pack/packages/security-solution/upselling/images/entity_paywall.png similarity index 100% rename from x-pack/plugins/security_solution_ess/public/common/images/entity_paywall.png rename to x-pack/packages/security-solution/upselling/images/entity_paywall.png diff --git a/x-pack/packages/security-solution/upselling/jest.config.js b/x-pack/packages/security-solution/upselling/jest.config.js new file mode 100644 index 0000000000000..014db69e5a69d --- /dev/null +++ b/x-pack/packages/security-solution/upselling/jest.config.js @@ -0,0 +1,12 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +module.exports = { + preset: '@kbn/test', + rootDir: '../../../..', + roots: ['/x-pack/packages/security-solution/upselling'], +}; diff --git a/x-pack/packages/security-solution/upselling/kibana.jsonc b/x-pack/packages/security-solution/upselling/kibana.jsonc new file mode 100644 index 0000000000000..0a47f6429d8aa --- /dev/null +++ b/x-pack/packages/security-solution/upselling/kibana.jsonc @@ -0,0 +1,5 @@ +{ + "type": "shared-common", + "id": "@kbn/security-solution-upselling", + "owner": "@elastic/security-threat-hunting-explore" +} \ No newline at end of file diff --git a/x-pack/plugins/security_solution_ess/public/upselling/messages/investigation_guide_upselling.tsx b/x-pack/packages/security-solution/upselling/messages/index.tsx similarity index 87% rename from x-pack/plugins/security_solution_ess/public/upselling/messages/investigation_guide_upselling.tsx rename to x-pack/packages/security-solution/upselling/messages/index.tsx index 8dd16883f5088..633f44d21b770 100644 --- a/x-pack/plugins/security_solution_ess/public/upselling/messages/investigation_guide_upselling.tsx +++ b/x-pack/packages/security-solution/upselling/messages/index.tsx @@ -8,7 +8,7 @@ import { i18n } from '@kbn/i18n'; export const UPGRADE_INVESTIGATION_GUIDE = (requiredLicense: string) => - i18n.translate('xpack.securitySolutionEss.markdown.insight.upsell', { + i18n.translate('securitySolutionPackages.markdown.insight.upsell', { defaultMessage: 'Upgrade to {requiredLicense} to make use of insights in investigation guides', values: { requiredLicense, diff --git a/x-pack/packages/security-solution/upselling/package.json b/x-pack/packages/security-solution/upselling/package.json new file mode 100644 index 0000000000000..92bd9e35078fa --- /dev/null +++ b/x-pack/packages/security-solution/upselling/package.json @@ -0,0 +1,6 @@ +{ + "name": "@kbn/security-solution-upselling", + "private": true, + "version": "1.0.0", + "license": "Elastic License 2.0" +} \ No newline at end of file diff --git a/x-pack/packages/security-solution/upselling/pages/entity_analytics.test.tsx b/x-pack/packages/security-solution/upselling/pages/entity_analytics.test.tsx new file mode 100644 index 0000000000000..244441d69eed8 --- /dev/null +++ b/x-pack/packages/security-solution/upselling/pages/entity_analytics.test.tsx @@ -0,0 +1,74 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +import React from 'react'; +import { render } from '@testing-library/react'; +import EntityAnalyticsUpsellingComponent from './entity_analytics'; + +jest.mock('@kbn/security-solution-navigation', () => { + const original = jest.requireActual('@kbn/security-solution-navigation'); + return { + ...original, + useNavigation: () => ({ + navigateTo: jest.fn(), + }), + }; +}); + +describe('EntityAnalyticsUpselling', () => { + it('should render', () => { + const { getByTestId } = render( + + ); + expect(getByTestId('paywallCardDescription')).toBeInTheDocument(); + }); + + it('should throw exception when requiredLicense and requiredProduct are not provided', () => { + expect(() => render()).toThrow(); + }); + + it('should show product message when requiredProduct is provided', () => { + const { getByTestId } = render( + + ); + + expect(getByTestId('paywallCardDescription')).toHaveTextContent( + 'Entity risk scoring capability is available in our TEST PRODUCT license tier' + ); + }); + + it('should show product badge when requiredProduct is provided', () => { + const { getByText } = render( + + ); + + expect(getByText('TEST PRODUCT')).toBeInTheDocument(); + }); + + it('should show license message when requiredLicense is provided', () => { + const { getByTestId } = render( + + ); + + expect(getByTestId('paywallCardDescription')).toHaveTextContent( + 'This feature is available with TEST LICENSE or higher subscription' + ); + }); + + it('should show license badge when requiredLicense is provided', () => { + const { getByText } = render( + + ); + + expect(getByText('TEST LICENSE')).toBeInTheDocument(); + }); +}); diff --git a/x-pack/plugins/security_solution_ess/public/upselling/pages/entity_analytics_upselling.tsx b/x-pack/packages/security-solution/upselling/pages/entity_analytics.tsx similarity index 63% rename from x-pack/plugins/security_solution_ess/public/upselling/pages/entity_analytics_upselling.tsx rename to x-pack/packages/security-solution/upselling/pages/entity_analytics.tsx index c7c4cd915fc03..56507dd0f2b46 100644 --- a/x-pack/plugins/security_solution_ess/public/upselling/pages/entity_analytics_upselling.tsx +++ b/x-pack/packages/security-solution/upselling/pages/entity_analytics.tsx @@ -23,7 +23,7 @@ import styled from '@emotion/styled'; import { useNavigation } from '@kbn/security-solution-navigation'; import { KibanaPageTemplate } from '@kbn/shared-ux-page-kibana-template'; import * as i18n from './translations'; -import paywallPng from '../../common/images/entity_paywall.png'; +import paywallPng from '../images/entity_paywall.png'; const PaywallDiv = styled.div` max-width: 75%; @@ -33,7 +33,7 @@ const PaywallDiv = styled.div` width: auto; } } - .platinumCardDescription { + .paywallCardDescription { padding: 0 15%; } `; @@ -45,15 +45,31 @@ const StyledEuiCard = styled(EuiCard)` } `; -const EntityAnalyticsUpsellingComponent = () => { - const { getAppUrl, navigateTo } = useNavigation(); - const subscriptionUrl = getAppUrl({ - appId: 'management', - path: 'stack/license_management', - }); +const EntityAnalyticsUpsellingComponent = ({ + requiredLicense, + requiredProduct, + subscriptionUrl, +}: { + requiredLicense?: string; + requiredProduct?: string; + subscriptionUrl?: string; +}) => { + const { navigateTo } = useNavigation(); + const goToSubscription = useCallback(() => { navigateTo({ url: subscriptionUrl }); }, [navigateTo, subscriptionUrl]); + + if (!requiredProduct && !requiredLicense) { + throw new Error('requiredProduct or requiredLicense must be defined'); + } + + const upgradeMessage = requiredProduct + ? i18n.UPGRADE_PRODUCT_MESSAGE(requiredProduct) + : i18n.UPGRADE_LICENSE_MESSAGE(requiredLicense ?? ''); + + const requiredProductOrLicense = requiredProduct ?? requiredLicense ?? ''; + return ( @@ -61,8 +77,7 @@ const EntityAnalyticsUpsellingComponent = () => { } display="subdued" title={ @@ -73,26 +88,33 @@ const EntityAnalyticsUpsellingComponent = () => { description={false} paddingSize="xl" > - +

    - {i18n.UPGRADE_MESSAGE} + {upgradeMessage}

    -
    - - {i18n.UPGRADE_BUTTON} - -
    + {subscriptionUrl && ( +
    + + {i18n.UPGRADE_BUTTON(requiredProductOrLicense)} + +
    + )}
    - +
    diff --git a/x-pack/packages/security-solution/upselling/pages/translations.ts b/x-pack/packages/security-solution/upselling/pages/translations.ts new file mode 100644 index 0000000000000..f4dd5b5c081c8 --- /dev/null +++ b/x-pack/packages/security-solution/upselling/pages/translations.ts @@ -0,0 +1,47 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { i18n } from '@kbn/i18n'; + +export const UPGRADE_LICENSE_MESSAGE = (requiredLicense: string) => + i18n.translate('securitySolutionPackages.entityAnalytics.paywall.upgradeLicenseMessage', { + defaultMessage: 'This feature is available with {requiredLicense} or higher subscription', + values: { + requiredLicense, + }, + }); + +export const UPGRADE_PRODUCT_MESSAGE = (requiredProduct: string) => + i18n.translate('securitySolutionPackages.entityAnalytics.paywall.upgradeProductMessage', { + defaultMessage: + 'Entity risk scoring capability is available in our {requiredProduct} license tier', + values: { + requiredProduct, + }, + }); + +export const UPGRADE_BUTTON = (requiredLicenseOrProduct: string) => + i18n.translate('securitySolutionPackages.entityAnalytics.paywall.upgradeButton', { + defaultMessage: 'Upgrade to {requiredLicenseOrProduct}', + values: { + requiredLicenseOrProduct, + }, + }); + +export const ENTITY_ANALYTICS_LICENSE_DESC = i18n.translate( + 'securitySolutionPackages.entityAnalytics.pageDesc', + { + defaultMessage: 'Detect threats from users and hosts within your network with Entity Analytics', + } +); + +export const ENTITY_ANALYTICS_TITLE = i18n.translate( + 'securitySolutionPackages.entityAnalytics.navigation', + { + defaultMessage: 'Entity Analytics', + } +); diff --git a/x-pack/plugins/security_solution/public/common/lib/upsellings/index.ts b/x-pack/packages/security-solution/upselling/service/index.ts similarity index 72% rename from x-pack/plugins/security_solution/public/common/lib/upsellings/index.ts rename to x-pack/packages/security-solution/upselling/service/index.ts index cd77e31c143fe..6a71fd9dde2ca 100644 --- a/x-pack/plugins/security_solution/public/common/lib/upsellings/index.ts +++ b/x-pack/packages/security-solution/upselling/service/index.ts @@ -5,4 +5,9 @@ * 2.0. */ export { UpsellingService } from './upselling_service'; -export type { PageUpsellings, SectionUpsellings, UpsellingSectionId } from './types'; +export type { + PageUpsellings, + SectionUpsellings, + UpsellingSectionId, + UpsellingMessageId, +} from './types'; diff --git a/x-pack/plugins/security_solution/public/common/lib/upsellings/types.ts b/x-pack/packages/security-solution/upselling/service/types.ts similarity index 90% rename from x-pack/plugins/security_solution/public/common/lib/upsellings/types.ts rename to x-pack/packages/security-solution/upselling/service/types.ts index 53c371a6f2153..2f5a06c391471 100644 --- a/x-pack/plugins/security_solution/public/common/lib/upsellings/types.ts +++ b/x-pack/packages/security-solution/upselling/service/types.ts @@ -5,7 +5,7 @@ * 2.0. */ -import type { SecurityPageName } from '../../../../common'; +import type { SecurityPageName } from '@kbn/security-solution-navigation'; export type PageUpsellings = Partial>; export type MessageUpsellings = Partial>; diff --git a/x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.test.tsx b/x-pack/packages/security-solution/upselling/service/upselling_service.test.tsx similarity index 97% rename from x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.test.tsx rename to x-pack/packages/security-solution/upselling/service/upselling_service.test.tsx index 2083e6c21f5c2..a584fcc70f887 100644 --- a/x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.test.tsx +++ b/x-pack/packages/security-solution/upselling/service/upselling_service.test.tsx @@ -6,7 +6,7 @@ */ import React from 'react'; import { firstValueFrom } from 'rxjs'; -import { SecurityPageName } from '../../../../common'; +import { SecurityPageName } from '@kbn/security-solution-navigation'; import { UpsellingService } from './upselling_service'; const TestComponent = () =>
    {'TEST component'}
    ; diff --git a/x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts b/x-pack/packages/security-solution/upselling/service/upselling_service.ts similarity index 97% rename from x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts rename to x-pack/packages/security-solution/upselling/service/upselling_service.ts index 27d15c1d12768..c362c8be6b9e1 100644 --- a/x-pack/plugins/security_solution/public/common/lib/upsellings/upselling_service.ts +++ b/x-pack/packages/security-solution/upselling/service/upselling_service.ts @@ -7,7 +7,7 @@ import type { Observable } from 'rxjs'; import { BehaviorSubject } from 'rxjs'; -import type { SecurityPageName } from '../../../../common'; +import type { SecurityPageName } from '@kbn/security-solution-navigation'; import type { SectionUpsellings, PageUpsellings, diff --git a/x-pack/packages/security-solution/upselling/tsconfig.json b/x-pack/packages/security-solution/upselling/tsconfig.json new file mode 100644 index 0000000000000..70b145ed91b7d --- /dev/null +++ b/x-pack/packages/security-solution/upselling/tsconfig.json @@ -0,0 +1,27 @@ +{ + "extends": "../../../../tsconfig.base.json", + "compilerOptions": { + "outDir": "target/types", + "types": [ + "jest", + "node", + "react", + "@emotion/react/types/css-prop", + "@testing-library/jest-dom", + "@testing-library/react", + "@kbn/ambient-ui-types" + ] + }, + "include": [ + "**/*.ts", + "**/*.tsx" + ], + "kbn_references": [ + "@kbn/i18n", + "@kbn/security-solution-navigation", + "@kbn/shared-ux-page-kibana-template", + ], + "exclude": [ + "target/**/*" + ] +} diff --git a/x-pack/performance/journeys/tags_listing_page.ts b/x-pack/performance/journeys/tags_listing_page.ts new file mode 100644 index 0000000000000..c102c2a68b9fd --- /dev/null +++ b/x-pack/performance/journeys/tags_listing_page.ts @@ -0,0 +1,64 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { Journey } from '@kbn/journeys'; +import { subj } from '@kbn/test-subj-selector'; + +const TAG_NAME = 'testing'; +const TAG_DESCRIPTION = 'test description'; + +export const journey = new Journey({ + esArchives: ['x-pack/performance/es_archives/sample_data_flights'], + kbnArchives: ['x-pack/performance/kbn_archives/many_tags_and_visualizations'], +}) + .step('Go to Tags Page', async ({ page, kbnUrl }) => { + await page.goto(kbnUrl.get(`/app/management/kibana/tags`)); + await page.waitForSelector(subj('tagsManagementTable table-is-ready')); + }) + .step('Delete the first 20 tags', async ({ page }) => { + await page.click(subj('checkboxSelectAll')); + await page.click(subj('actionBar-contextMenuButton')); + await page.click(subj('actionBar-button-delete')); + await page.click(subj('confirmModalConfirmButton')); + await page.waitForSelector(subj('tagsManagementTable table-is-ready')); + }) + .step(`Search for 'stream' tag`, async ({ page, inputDelays }) => { + await page.type(subj('tagsManagementSearchBar'), 'stream', { + delay: inputDelays.TYPING, + }); + await page.waitForSelector(subj('tagsManagementTable table-is-ready')); + }) + .step('Create a new tag', async ({ page, inputDelays, kibanaPage }) => { + await kibanaPage.clearInput(subj('tagsManagementSearchBar')); + await page.waitForSelector(subj('tagsManagementTable table-is-ready')); + await page.click(subj('createTagButton')); + await page.type(subj('createModalField-name'), TAG_NAME, { delay: inputDelays.TYPING }); + await kibanaPage.clickAndWaitFor(subj('createModalConfirmButton'), 'detached'); + await page.waitForSelector(subj('tagsManagementTable table-is-ready')); + // search for newly created tag + await page.type(subj('tagsManagementSearchBar'), TAG_NAME, { + delay: inputDelays.TYPING, + }); + await page.waitForSelector(subj('tagsManagementTable table-is-ready')); + await page.waitForSelector(subj('tagsTableRowName'), { state: 'visible' }); + }) + .step('Update tag', async ({ page, inputDelays, kibanaPage }) => { + await page.click(subj('tagsTableAction-edit')); + await page.type(subj('createModalField-description'), TAG_DESCRIPTION, { + delay: inputDelays.TYPING, + }); + await kibanaPage.clickAndWaitFor(subj('createModalConfirmButton'), 'detached'); + await page.waitForSelector(subj('tagsManagementTable table-is-ready')); + }) + .step('Delete tag', async ({ page }) => { + const tagRow = page.locator(subj('tagsTableRowName')); + await page.click(subj('euiCollapsedItemActionsButton')); + await page.click(subj('tagsTableAction-delete')); + await page.click(subj('confirmModalConfirmButton')); + await page.waitForSelector(subj('tagsManagementTable table-is-ready')); + await tagRow.waitFor({ state: 'detached' }); + }); diff --git a/x-pack/performance/kbn_archives/many_tags_and_visualizations.json b/x-pack/performance/kbn_archives/many_tags_and_visualizations.json new file mode 100644 index 0000000000000..b2b53b6662b5a --- /dev/null +++ b/x-pack/performance/kbn_archives/many_tags_and_visualizations.json @@ -0,0 +1,5848 @@ +{ + "attributes": { + "color": "#c4ed81", + "description": "", + "name": "pipelines" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:45:24.903Z", + "id": "01a24370-3c22-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182724903, + 61 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:45:24.903Z", + "version": "WzEyNSwxXQ==" +} + +{ + "attributes": { + "color": "#08f5ad", + "description": "", + "name": "tsvb" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:47:09.060Z", + "id": "03402c40-3c33-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692190029060, + 229 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T12:47:09.060Z", + "version": "Wzg3NSwxXQ==" +} + +{ + "attributes": { + "color": "#39c978", + "description": "", + "name": "delay" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:55:10.362Z", + "id": "5e9837a0-3c23-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692183310362, + 79 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:55:10.362Z", + "version": "WzE1MiwxXQ==" +} + +{ + "attributes": { + "color": "#bb6c5e", + "description": "", + "name": "flights" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:30:28.413Z", + "id": "eb48bed0-3c1f-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692181828413, + 17 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:30:28.413Z", + "version": "WzUwLDFd" +} + +{ + "attributes": { + "color": "#33570e", + "description": "", + "name": "destination" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:40:50.428Z", + "id": "219183c0-3c32-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692189650428, + 188 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T12:40:50.428Z", + "version": "WzczNiwxXQ==" +} + +{ + "attributes": { + "fieldFormatMap": "{\"hour_of_day\":{\"id\":\"number\",\"params\":{\"pattern\":\"00\"}},\"AvgTicketPrice\":{\"id\":\"number\",\"params\":{\"pattern\":\"$0,0.[00]\"}}}", + "name": "Kibana Sample Data Flights", + "runtimeFieldMap": "{\"hour_of_day\":{\"type\":\"long\",\"script\":{\"source\":\"emit(doc['timestamp'].value.getHour());\"}}}", + "timeFieldName": "timestamp", + "title": "kibana_sample_data_flights" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:26:07.159Z", + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "managed": false, + "references": [], + "sort": [ + 1692188767159, + 4294967296 + ], + "type": "index-pattern", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T12:26:07.159Z", + "version": "Wzc2LDFd" +} + +{ + "attributes": { + "description": "", + "kibanaSavedObjectMeta": { + "searchSourceJSON": "{\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filter\":[]}" + }, + "title": "[Flights] Delays & Cancellations #2", + "uiStateJSON": "{}", + "version": 1, + "visState": "{\"aggs\":[],\"params\":{\"annotations\":[{\"color\":\"rgba(0,98,177,1)\",\"fields\":\"FlightDelay,Cancelled,Carrier\",\"icon\":\"fa-exclamation-triangle\",\"id\":\"53b7dff0-4c89-11e8-a66a-6989ad5a0a39\",\"ignore_global_filters\":1,\"ignore_panel_filters\":1,\"query_string\":{\"language\":\"lucene\",\"query\":\"FlightDelay:true AND Cancelled:true\"},\"template\":\"{{Carrier}}: Flight Delayed and Cancelled!\",\"time_field\":\"timestamp\",\"index_pattern_ref_name\":\"metrics_1_index_pattern\"}],\"axis_formatter\":\"number\",\"axis_max\":\"1\",\"axis_position\":\"left\",\"axis_scale\":\"normal\",\"drop_last_bucket\":0,\"id\":\"61ca57f0-469d-11e7-af02-69e470af7417\",\"interval\":\">=1h\",\"isModelInvalid\":false,\"legend_position\":\"bottom\",\"max_lines_legend\":1,\"series\":[{\"axis_position\":\"right\",\"chart_type\":\"line\",\"color\":\"rgba(0,156,224,1)\",\"fill\":0.5,\"formatter\":\"percent\",\"id\":\"61ca57f1-469d-11e7-af02-69e470af7417\",\"label\":\"Percent Delays\",\"line_width\":\"2\",\"metrics\":[{\"id\":\"61ca57f2-469d-11e7-af02-69e470af7417\",\"numerator\":{\"language\":\"lucene\",\"query\":\"FlightDelay:true\"},\"type\":\"filter_ratio\"}],\"point_size\":\"0\",\"separate_axis\":0,\"split_color_mode\":\"gradient\",\"split_mode\":\"everything\",\"stacked\":\"none\",\"time_range_mode\":\"entire_time_range\"},{\"axis_position\":\"right\",\"chart_type\":\"line\",\"color\":\"#68BC00\",\"fill\":0.5,\"formatter\":\"default\",\"id\":\"e30a52c0-3c32-11ee-8296-3fee16600ac1\",\"label\":\"\",\"line_width\":1,\"metrics\":[{\"field\":\"FlightDelayMin\",\"id\":\"e30a52c1-3c32-11ee-8296-3fee16600ac1\",\"type\":\"cardinality\"}],\"override_index_pattern\":0,\"palette\":{\"name\":\"default\",\"type\":\"palette\"},\"point_size\":1,\"separate_axis\":0,\"series_drop_last_bucket\":0,\"split_mode\":\"terms\",\"stacked\":\"none\",\"terms_field\":\"AvgTicketPrice\"}],\"show_grid\":1,\"show_legend\":0,\"time_field\":\"timestamp\",\"time_range_mode\":\"entire_time_range\",\"tooltip_mode\":\"show_all\",\"truncate_legend\":1,\"type\":\"timeseries\",\"use_kibana_indexes\":true,\"index_pattern_ref_name\":\"metrics_0_index_pattern\"},\"title\":\"[Flights] Delays & Cancellations #2\",\"type\":\"metrics\"}" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:47:19.838Z", + "id": "09acc3e0-3c33-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [ + { + "id": "5e9837a0-3c23-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-5e9837a0-3c23-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "eb48bed0-3c1f-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-eb48bed0-3c1f-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "03402c40-3c33-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-03402c40-3c33-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "219183c0-3c32-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-219183c0-3c32-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "metrics_0_index_pattern", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "metrics_1_index_pattern", + "type": "index-pattern" + } + ], + "sort": [ + 1692190039838, + 4294967421 + ], + "type": "visualization", + "typeMigrationVersion": "8.5.0", + "updated_at": "2023-08-16T12:47:19.838Z", + "version": "WzEzOCwxXQ==" +} + +{ + "attributes": { + "color": "#16f16c", + "description": "", + "name": "rules" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:45:38.997Z", + "id": "0a08d650-3c22-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182738997, + 64 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:45:38.997Z", + "version": "WzEyNiwxXQ==" +} + +{ + "attributes": { + "color": "#33c6b7", + "description": "", + "name": "cases" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:45:44.391Z", + "id": "0d3fe570-3c22-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182744391, + 65 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:45:44.391Z", + "version": "WzEyNywxXQ==" +} + +{ + "attributes": { + "description": "", + "state": { + "adHocDataViews": {}, + "datasourceStates": { + "formBased": { + "layers": { + "e52bf9e1-21bf-478e-ad85-2d43a775ba53": { + "columnOrder": [ + "188582f5-ab1c-437b-adaf-f9505f2c1b8a", + "9c9d8820-36b4-45d4-b0b0-ee548816ab03" + ], + "columns": { + "188582f5-ab1c-437b-adaf-f9505f2c1b8a": { + "dataType": "string", + "isBucketed": true, + "label": "Top 10 values of DestCountry", + "operationType": "terms", + "params": { + "accuracyMode": true, + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "9c9d8820-36b4-45d4-b0b0-ee548816ab03", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": true, + "parentFormat": { + "id": "terms" + }, + "size": 10 + }, + "scale": "ordinal", + "sourceField": "DestCountry" + }, + "9c9d8820-36b4-45d4-b0b0-ee548816ab03": { + "dataType": "number", + "isBucketed": false, + "label": "Sum of DistanceMiles", + "operationType": "sum", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "DistanceMiles" + } + }, + "incompleteColumns": {}, + "sampling": 1 + } + } + }, + "indexpattern": { + "layers": {} + }, + "textBased": { + "layers": {} + } + }, + "filters": [], + "internalReferences": [], + "query": { + "language": "kuery", + "query": "" + }, + "visualization": { + "emsField": "iso2", + "emsLayerId": "world_countries", + "layerId": "e52bf9e1-21bf-478e-ad85-2d43a775ba53", + "regionAccessor": "188582f5-ab1c-437b-adaf-f9505f2c1b8a", + "valueAccessor": "9c9d8820-36b4-45d4-b0b0-ee548816ab03" + } + }, + "title": "Top Destanations - Region map", + "visualizationType": "lnsChoropleth" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:27:55.279Z", + "id": "126a2620-3c2f-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "indexpattern-datasource-layer-e52bf9e1-21bf-478e-ad85-2d43a775ba53", + "type": "index-pattern" + } + ], + "sort": [ + 1692188875279, + 4294967355 + ], + "type": "lens", + "typeMigrationVersion": "8.9.0", + "updated_at": "2023-08-16T12:27:55.279Z", + "version": "Wzg2LDFd" +} + +{ + "attributes": { + "color": "#6eea70", + "description": "", + "name": "connector" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:45:53.696Z", + "id": "12cbba00-3c22-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182753696, + 62 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:45:53.696Z", + "version": "WzEzMCwxXQ==" +} + +{ + "attributes": { + "color": "#1bfb93", + "description": "", + "name": "connection" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:31:38.083Z", + "id": "14cf8b30-3c20-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692181898083, + 19 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:31:38.083Z", + "version": "WzU5LDFd" +} + +{ + "attributes": { + "color": "#fc3275", + "description": "", + "name": "weather" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:40:33.099Z", + "id": "173d51b0-3c32-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692189633099, + 186 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T12:40:33.099Z", + "version": "WzcyOCwxXQ==" +} + +{ + "attributes": { + "color": "#3f2c24", + "description": "", + "name": "work" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:31:46.002Z", + "id": "1987e320-3c20-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692181906002, + 24 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:31:46.002Z", + "version": "WzYwLDFd" +} + +{ + "attributes": { + "color": "#00cf01", + "description": "", + "name": "origin" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:40:42.577Z", + "id": "1ce38c10-3c32-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692189642577, + 187 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T12:40:42.577Z", + "version": "WzcyOSwxXQ==" +} + +{ + "attributes": { + "color": "#d2cf78", + "description": "", + "name": "vacation" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:31:54.453Z", + "id": "1e916850-3c20-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692181914453, + 20 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:31:54.453Z", + "version": "WzYxLDFd" +} + +{ + "attributes": { + "color": "#95253f", + "description": "", + "name": "space" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:53:23.951Z", + "id": "1f2b2ff0-3c23-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692183203951, + 66 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:53:23.951Z", + "version": "WzEzNiwxXQ==" +} + +{ + "attributes": { + "color": "#339662", + "description": "", + "name": "spaces" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:53:28.504Z", + "id": "21e1eb80-3c23-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692183208504, + 67 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:53:28.504Z", + "version": "WzEzOCwxXQ==" +} + +{ + "attributes": { + "color": "#901fd9", + "description": "", + "name": "security" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:32:04.179Z", + "id": "245d7a30-3c20-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692181924179, + 21 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:32:04.179Z", + "version": "WzY0LDFd" +} + +{ + "attributes": { + "color": "#19391d", + "description": "", + "name": "saved objects" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:53:37.463Z", + "id": "2738f470-3c23-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692183217463, + 68 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:53:37.463Z", + "version": "WzEzOSwxXQ==" +} + +{ + "attributes": { + "description": "", + "kibanaSavedObjectMeta": { + "searchSourceJSON": "{\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filter\":[],\"indexRefName\":\"kibanaSavedObjectMeta.searchSourceJSON.index\"}" + }, + "title": "[Flights] Destination Weather", + "uiStateJSON": "{}", + "version": 1, + "visState": "{\"title\":\"[Flights] Destination Weather\",\"type\":\"tagcloud\",\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"params\":{},\"schema\":\"metric\"},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"params\":{\"field\":\"DestWeather\",\"orderBy\":\"1\",\"order\":\"desc\",\"size\":10,\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\"},\"schema\":\"segment\"}],\"params\":{\"scale\":\"linear\",\"orientation\":\"single\",\"minFontSize\":12,\"maxFontSize\":46,\"showLabel\":false,\"palette\":{\"type\":\"palette\",\"name\":\"temperature\"}}}" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:26:07.159Z", + "id": "293b5a30-4c8f-11e8-b3d7-01146121b73d", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "kibanaSavedObjectMeta.searchSourceJSON.index", + "type": "index-pattern" + } + ], + "sort": [ + 1692188767159, + 4294967306 + ], + "type": "visualization", + "typeMigrationVersion": "8.5.0", + "updated_at": "2023-08-16T12:26:07.159Z", + "version": "WzgwLDFd" +} + +{ + "attributes": { + "color": "#dd1f3c", + "description": "", + "name": "search" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:32:13.777Z", + "id": "2a160410-3c20-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692181933777, + 23 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:32:13.777Z", + "version": "WzY1LDFd" +} + +{ + "attributes": { + "color": "#ec03a6", + "description": "", + "name": "airport" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T11:09:33.411Z", + "id": "61030b30-3c25-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692184173411, + 88 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T11:09:33.411Z", + "version": "WzE2NiwxXQ==" +} + +{ + "attributes": { + "color": "#1b3568", + "description": "", + "name": "watcher" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:44:15.500Z", + "id": "d84434c0-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182655500, + 52 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:44:15.500Z", + "version": "WzExMiwxXQ==" +} + +{ + "attributes": { + "color": "#342118", + "description": "", + "name": "report" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:40:06.236Z", + "id": "43b189c0-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182406236, + 28 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:40:06.236Z", + "version": "Wzg0LDFd" +} + +{ + "attributes": { + "color": "#fc3655", + "description": "", + "name": "monitoring" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:35:35.475Z", + "id": "a24eb030-3c20-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182135475, + 26 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:35:35.475Z", + "version": "WzczLDFd" +} + +{ + "attributes": { + "description": "", + "state": { + "adHocDataViews": {}, + "datasourceStates": { + "formBased": { + "layers": { + "93d4f467-cd2a-438d-bf82-0d89d3594375": { + "columnOrder": [ + "db222e35-2792-4c1f-b8de-a4d8a2c022ee", + "720787a2-a250-4c41-a014-3bb8d3736454", + "db262b33-970d-40b5-9f59-d51d182d8849" + ], + "columns": { + "720787a2-a250-4c41-a014-3bb8d3736454": { + "customLabel": true, + "dataType": "string", + "isBucketed": true, + "label": "DestWeather", + "operationType": "terms", + "params": { + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "db262b33-970d-40b5-9f59-d51d182d8849", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": false, + "parentFormat": { + "id": "terms" + }, + "size": 3 + }, + "scale": "ordinal", + "sourceField": "DestWeather" + }, + "db222e35-2792-4c1f-b8de-a4d8a2c022ee": { + "customLabel": true, + "dataType": "string", + "isBucketed": true, + "label": "OriginWeather", + "operationType": "terms", + "params": { + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "db262b33-970d-40b5-9f59-d51d182d8849", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": false, + "parentFormat": { + "id": "terms" + }, + "size": 5 + }, + "scale": "ordinal", + "sourceField": "OriginWeather" + }, + "db262b33-970d-40b5-9f59-d51d182d8849": { + "dataType": "number", + "isBucketed": false, + "label": "Median of dayOfWeek", + "operationType": "median", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "dayOfWeek" + } + }, + "incompleteColumns": {}, + "sampling": 1 + } + } + }, + "indexpattern": { + "layers": {} + }, + "textBased": { + "layers": {} + } + }, + "filters": [], + "internalReferences": [], + "query": { + "language": "kuery", + "query": "" + }, + "visualization": { + "gridConfig": { + "isCellLabelVisible": false, + "isXAxisLabelVisible": true, + "isXAxisTitleVisible": false, + "isYAxisLabelVisible": true, + "isYAxisTitleVisible": false, + "type": "heatmap_grid" + }, + "layerId": "93d4f467-cd2a-438d-bf82-0d89d3594375", + "layerType": "data", + "legend": { + "isVisible": true, + "position": "right", + "type": "heatmap_legend" + }, + "shape": "heatmap", + "valueAccessor": "db262b33-970d-40b5-9f59-d51d182d8849", + "xAccessor": "db222e35-2792-4c1f-b8de-a4d8a2c022ee", + "yAccessor": "720787a2-a250-4c41-a014-3bb8d3736454" + } + }, + "title": "Weather #2", + "visualizationType": "lnsHeatmap" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:41:50.178Z", + "id": "2c27c7e0-3c32-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "indexpattern-datasource-layer-93d4f467-cd2a-438d-bf82-0d89d3594375", + "type": "index-pattern" + }, + { + "id": "61030b30-3c25-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-61030b30-3c25-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "d84434c0-3c21-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-d84434c0-3c21-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "43b189c0-3c21-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-43b189c0-3c21-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "219183c0-3c32-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-219183c0-3c32-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "a24eb030-3c20-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-a24eb030-3c20-11ee-8bc8-574823b6bb7b", + "type": "tag" + } + ], + "sort": [ + 1692189710178, + 4294967385 + ], + "type": "lens", + "typeMigrationVersion": "8.9.0", + "updated_at": "2023-08-16T12:41:50.178Z", + "version": "WzExNiwxXQ==" +} + +{ + "attributes": { + "color": "#f0cfaa", + "description": "", + "name": "api keys" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:53:47.967Z", + "id": "2d7bbcf0-3c23-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692183227967, + 71 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:53:47.967Z", + "version": "WzE0MCwxXQ==" +} + +{ + "attributes": { + "color": "#c103d0", + "description": "", + "name": "searching" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T11:08:07.795Z", + "id": "2dfb1430-3c25-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692184087795, + 78 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T11:08:07.795Z", + "version": "WzE1OCwxXQ==" +} + +{ + "attributes": { + "color": "#b3cc0b", + "description": "", + "name": "cloud" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T11:08:47.919Z", + "id": "45e583f0-3c25-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692184127919, + 86 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T11:08:47.919Z", + "version": "WzE2MiwxXQ==" +} + +{ + "attributes": { + "color": "#0c9297", + "description": "", + "name": "stream" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:54:19.383Z", + "id": "40357070-3c23-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692183259383, + 72 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:54:19.383Z", + "version": "WzE0NCwxXQ==" +} + +{ + "attributes": { + "color": "#ce9bae", + "description": "", + "name": "demo" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:54:09.499Z", + "id": "3a5142b0-3c23-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692183249499, + 75 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:54:09.499Z", + "version": "WzE0MiwxXQ==" +} + +{ + "attributes": { + "description": "", + "state": { + "adHocDataViews": {}, + "datasourceStates": { + "formBased": { + "layers": { + "3be92f0c-b6e0-4bb1-b68f-51b8a9924b2a": { + "columnOrder": [ + "4d394c6e-f469-4e14-8913-311ba8ed72e4", + "a77fab82-4ef6-42c1-8959-29f35b1ee7bd", + "bb8f978d-d70b-4d70-8d9e-f2cd49ac286f" + ], + "columns": { + "4d394c6e-f469-4e14-8913-311ba8ed72e4": { + "dataType": "string", + "isBucketed": true, + "label": "Top 10 values of FlightNum", + "operationType": "terms", + "params": { + "accuracyMode": true, + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "bb8f978d-d70b-4d70-8d9e-f2cd49ac286f", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": true, + "parentFormat": { + "id": "terms" + }, + "size": 10 + }, + "scale": "ordinal", + "sourceField": "FlightNum" + }, + "a77fab82-4ef6-42c1-8959-29f35b1ee7bd": { + "dataType": "string", + "isBucketed": true, + "label": "Top 3 values of Origin", + "operationType": "terms", + "params": { + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "bb8f978d-d70b-4d70-8d9e-f2cd49ac286f", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": true, + "parentFormat": { + "id": "terms" + }, + "size": 3 + }, + "scale": "ordinal", + "sourceField": "Origin" + }, + "bb8f978d-d70b-4d70-8d9e-f2cd49ac286f": { + "dataType": "number", + "isBucketed": false, + "label": "Unique count of FlightDelayType", + "operationType": "unique_count", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "FlightDelayType" + } + }, + "ignoreGlobalFilters": false, + "incompleteColumns": {}, + "sampling": 1 + } + } + }, + "indexpattern": { + "layers": {} + }, + "textBased": { + "layers": {} + } + }, + "filters": [], + "internalReferences": [], + "query": { + "language": "kuery", + "query": "" + }, + "visualization": { + "layers": [ + { + "categoryDisplay": "default", + "layerId": "3be92f0c-b6e0-4bb1-b68f-51b8a9924b2a", + "layerType": "data", + "legendDisplay": "default", + "metrics": [ + "bb8f978d-d70b-4d70-8d9e-f2cd49ac286f" + ], + "nestedLegend": false, + "numberDisplay": "percent", + "primaryGroups": [ + "4d394c6e-f469-4e14-8913-311ba8ed72e4", + "a77fab82-4ef6-42c1-8959-29f35b1ee7bd" + ] + } + ], + "shape": "treemap" + } + }, + "title": "Delays", + "visualizationType": "lnsPie" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:34:05.598Z", + "id": "30455be0-3c31-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "indexpattern-datasource-layer-3be92f0c-b6e0-4bb1-b68f-51b8a9924b2a", + "type": "index-pattern" + }, + { + "id": "61030b30-3c25-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-61030b30-3c25-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "45e583f0-3c25-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-45e583f0-3c25-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "5e9837a0-3c23-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-5e9837a0-3c23-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "40357070-3c23-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-40357070-3c23-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "3a5142b0-3c23-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-3a5142b0-3c23-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "2738f470-3c23-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-2738f470-3c23-11ee-8bc8-574823b6bb7b", + "type": "tag" + } + ], + "sort": [ + 1692189245598, + 4294967363 + ], + "type": "lens", + "typeMigrationVersion": "8.9.0", + "updated_at": "2023-08-16T12:34:05.598Z", + "version": "WzEwMSwxXQ==" +} + +{ + "attributes": { + "color": "#0e61de", + "description": "", + "name": "research" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T11:08:21.115Z", + "id": "35eb8cb0-3c25-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692184101115, + 84 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T11:08:21.115Z", + "version": "WzE1OSwxXQ==" +} + +{ + "attributes": { + "color": "#8380f5", + "description": "", + "name": "settings" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:54:06.326Z", + "id": "386d1960-3c23-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692183246326, + 70 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:54:06.326Z", + "version": "WzE0MSwxXQ==" +} + +{ + "attributes": { + "color": "#c714e7", + "description": "", + "name": "live" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:54:14.725Z", + "id": "3d6eaf50-3c23-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692183254725, + 76 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:54:14.725Z", + "version": "WzE0MywxXQ==" +} + +{ + "attributes": { + "color": "#005dd3", + "description": "", + "name": "files" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:54:23.706Z", + "id": "42c913a0-3c23-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692183263706, + 73 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:54:23.706Z", + "version": "WzE0NSwxXQ==" +} + +{ + "attributes": { + "description": "", + "state": { + "adHocDataViews": {}, + "datasourceStates": { + "formBased": { + "layers": { + "e52bf9e1-21bf-478e-ad85-2d43a775ba53": { + "columnOrder": [ + "188582f5-ab1c-437b-adaf-f9505f2c1b8a", + "9c9d8820-36b4-45d4-b0b0-ee548816ab03" + ], + "columns": { + "188582f5-ab1c-437b-adaf-f9505f2c1b8a": { + "dataType": "string", + "isBucketed": true, + "label": "Top 10 values of DestCountry", + "operationType": "terms", + "params": { + "accuracyMode": true, + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "9c9d8820-36b4-45d4-b0b0-ee548816ab03", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": true, + "parentFormat": { + "id": "terms" + }, + "size": 10 + }, + "scale": "ordinal", + "sourceField": "DestCountry" + }, + "9c9d8820-36b4-45d4-b0b0-ee548816ab03": { + "dataType": "number", + "isBucketed": false, + "label": "Sum of DistanceMiles", + "operationType": "sum", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "DistanceMiles" + } + }, + "incompleteColumns": {}, + "sampling": 1 + } + } + }, + "indexpattern": { + "layers": {} + }, + "textBased": { + "layers": {} + } + }, + "filters": [], + "internalReferences": [], + "query": { + "language": "kuery", + "query": "" + }, + "visualization": { + "layers": [ + { + "categoryDisplay": "default", + "layerId": "e52bf9e1-21bf-478e-ad85-2d43a775ba53", + "layerType": "data", + "legendDisplay": "default", + "metrics": [ + "9c9d8820-36b4-45d4-b0b0-ee548816ab03" + ], + "nestedLegend": false, + "numberDisplay": "percent", + "primaryGroups": [ + "188582f5-ab1c-437b-adaf-f9505f2c1b8a" + ] + } + ], + "shape": "donut" + } + }, + "title": "Top Destinations - Donut", + "visualizationType": "lnsPie" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:45:40.633Z", + "id": "46d44fc0-3c30-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "indexpattern-datasource-layer-e52bf9e1-21bf-478e-ad85-2d43a775ba53", + "type": "index-pattern" + } + ], + "sort": [ + 1692189940633, + 4294967414 + ], + "type": "lens", + "typeMigrationVersion": "8.9.0", + "updated_at": "2023-08-16T12:45:40.633Z", + "version": "WzEyOSwxXQ==" +} + +{ + "attributes": { + "color": "#065d60", + "description": "", + "name": "create" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:40:13.861Z", + "id": "483cde40-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182413861, + 33 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:40:13.861Z", + "version": "Wzg1LDFd" +} + +{ + "attributes": { + "color": "#170cac", + "description": "", + "name": "delete" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:40:18.282Z", + "id": "4adf9ca0-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182418282, + 34 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:40:18.282Z", + "version": "Wzg2LDFd" +} + +{ + "attributes": { + "color": "#4fb458", + "description": "", + "name": "management" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:54:37.437Z", + "id": "4af842d0-3c23-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692183277437, + 69 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:54:37.437Z", + "version": "WzE0NiwxXQ==" +} + +{ + "attributes": { + "color": "#f21529", + "description": "", + "name": "data views" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T11:08:57.834Z", + "id": "4bce6ca0-3c25-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692184137834, + 85 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T11:08:57.834Z", + "version": "WzE2MywxXQ==" +} + +{ + "attributes": { + "color": "#516319", + "description": "", + "name": "session" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:40:23.258Z", + "id": "4dd6e3a0-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182423258, + 35 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:40:23.258Z", + "version": "Wzg3LDFd" +} + +{ + "attributes": { + "color": "#1d6a82", + "description": "", + "name": "cancelled" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:49:14.229Z", + "id": "4ddb7250-3c33-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692190154229, + 231 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T12:49:14.229Z", + "version": "Wzg5OCwxXQ==" +} + +{ + "attributes": { + "color": "#656216", + "description": "", + "name": "data" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:29:01.427Z", + "id": "b76fbc30-3c1f-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692181741427, + 12 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:29:01.427Z", + "version": "WzM2LDFd" +} + +{ + "attributes": { + "color": "#710c28", + "description": "", + "name": "logs" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:28:56.459Z", + "id": "b479adb0-3c1f-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692181736459, + 14 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:28:56.459Z", + "version": "WzI4LDFd" +} + +{ + "attributes": { + "description": "", + "state": { + "adHocDataViews": {}, + "datasourceStates": { + "formBased": { + "layers": { + "3be92f0c-b6e0-4bb1-b68f-51b8a9924b2a": { + "columnOrder": [ + "4d394c6e-f469-4e14-8913-311ba8ed72e4", + "a77fab82-4ef6-42c1-8959-29f35b1ee7bd", + "bb8f978d-d70b-4d70-8d9e-f2cd49ac286f" + ], + "columns": { + "4d394c6e-f469-4e14-8913-311ba8ed72e4": { + "dataType": "string", + "isBucketed": true, + "label": "Top 10 values of FlightNum", + "operationType": "terms", + "params": { + "accuracyMode": true, + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "bb8f978d-d70b-4d70-8d9e-f2cd49ac286f", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": true, + "parentFormat": { + "id": "terms" + }, + "size": 10 + }, + "scale": "ordinal", + "sourceField": "FlightNum" + }, + "a77fab82-4ef6-42c1-8959-29f35b1ee7bd": { + "dataType": "string", + "isBucketed": true, + "label": "Top 3 values of Origin", + "operationType": "terms", + "params": { + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "bb8f978d-d70b-4d70-8d9e-f2cd49ac286f", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": true, + "parentFormat": { + "id": "terms" + }, + "size": 3 + }, + "scale": "ordinal", + "sourceField": "Origin" + }, + "bb8f978d-d70b-4d70-8d9e-f2cd49ac286f": { + "dataType": "number", + "isBucketed": false, + "label": "Unique count of FlightDelayType", + "operationType": "unique_count", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "FlightDelayType" + } + }, + "ignoreGlobalFilters": false, + "incompleteColumns": {}, + "sampling": 1 + } + } + }, + "indexpattern": { + "layers": {} + }, + "textBased": { + "layers": {} + } + }, + "filters": [], + "internalReferences": [], + "query": { + "language": "kuery", + "query": "" + }, + "visualization": { + "layers": [ + { + "categoryDisplay": "default", + "layerId": "3be92f0c-b6e0-4bb1-b68f-51b8a9924b2a", + "layerType": "data", + "legendDisplay": "default", + "metrics": [ + "bb8f978d-d70b-4d70-8d9e-f2cd49ac286f" + ], + "nestedLegend": false, + "numberDisplay": "percent", + "primaryGroups": [ + "4d394c6e-f469-4e14-8913-311ba8ed72e4", + "a77fab82-4ef6-42c1-8959-29f35b1ee7bd" + ] + } + ], + "shape": "pie" + } + }, + "title": "Delays #2", + "visualizationType": "lnsPie" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:34:55.754Z", + "id": "4e2a8ea0-3c31-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "indexpattern-datasource-layer-3be92f0c-b6e0-4bb1-b68f-51b8a9924b2a", + "type": "index-pattern" + }, + { + "id": "61030b30-3c25-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-61030b30-3c25-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "45e583f0-3c25-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-45e583f0-3c25-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "5e9837a0-3c23-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-5e9837a0-3c23-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "b76fbc30-3c1f-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-b76fbc30-3c1f-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "b479adb0-3c1f-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-b479adb0-3c1f-11ee-8bc8-574823b6bb7b", + "type": "tag" + } + ], + "sort": [ + 1692189295754, + 4294967370 + ], + "type": "lens", + "typeMigrationVersion": "8.9.0", + "updated_at": "2023-08-16T12:34:55.754Z", + "version": "WzEwMywxXQ==" +} + +{ + "attributes": { + "description": "", + "kibanaSavedObjectMeta": { + "searchSourceJSON": "{\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filter\":[]}" + }, + "title": "[Flights] Delays & Cancellations #3", + "uiStateJSON": "{}", + "version": 1, + "visState": "{\"title\":\"[Flights] Delays & Cancellations #3\",\"type\":\"metrics\",\"aggs\":[],\"params\":{\"annotations\":[{\"color\":\"rgba(0,98,177,1)\",\"fields\":\"FlightDelay,Cancelled,Carrier\",\"icon\":\"fa-exclamation-triangle\",\"id\":\"53b7dff0-4c89-11e8-a66a-6989ad5a0a39\",\"ignore_global_filters\":1,\"ignore_panel_filters\":1,\"query_string\":{\"language\":\"lucene\",\"query\":\"FlightDelay:true AND Cancelled:true\"},\"template\":\"{{Carrier}}: Flight Delayed and Cancelled!\",\"time_field\":\"timestamp\",\"index_pattern_ref_name\":\"metrics_1_index_pattern\"}],\"axis_formatter\":\"number\",\"axis_max\":\"1\",\"axis_position\":\"left\",\"axis_scale\":\"normal\",\"drop_last_bucket\":0,\"id\":\"61ca57f0-469d-11e7-af02-69e470af7417\",\"interval\":\">=1h\",\"isModelInvalid\":false,\"legend_position\":\"bottom\",\"max_lines_legend\":1,\"series\":[{\"axis_position\":\"right\",\"chart_type\":\"line\",\"color\":\"rgba(0,156,224,1)\",\"fill\":0.5,\"formatter\":\"percent\",\"id\":\"61ca57f1-469d-11e7-af02-69e470af7417\",\"label\":\"Percent Delays\",\"line_width\":\"2\",\"metrics\":[{\"id\":\"61ca57f2-469d-11e7-af02-69e470af7417\",\"numerator\":{\"language\":\"lucene\",\"query\":\"FlightDelay:true\"},\"type\":\"filter_ratio\",\"metric_agg\":\"min\",\"field\":\"FlightDelayMin\"}],\"point_size\":\"0\",\"separate_axis\":0,\"split_color_mode\":\"gradient\",\"split_mode\":\"everything\",\"stacked\":\"none\",\"time_range_mode\":\"entire_time_range\"}],\"show_grid\":1,\"show_legend\":0,\"time_field\":\"timestamp\",\"time_range_mode\":\"entire_time_range\",\"tooltip_mode\":\"show_all\",\"truncate_legend\":1,\"type\":\"timeseries\",\"use_kibana_indexes\":true,\"index_pattern_ref_name\":\"metrics_0_index_pattern\"}}" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:49:17.491Z", + "id": "4fcd3030-3c33-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [ + { + "id": "5e9837a0-3c23-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-5e9837a0-3c23-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "03402c40-3c33-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-03402c40-3c33-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "4ddb7250-3c33-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-4ddb7250-3c33-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "metrics_0_index_pattern", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "metrics_1_index_pattern", + "type": "index-pattern" + } + ], + "sort": [ + 1692190157491, + 4294967434 + ], + "type": "visualization", + "typeMigrationVersion": "8.5.0", + "updated_at": "2023-08-16T12:49:17.491Z", + "version": "WzE1MCwxXQ==" +} + +{ + "attributes": { + "color": "#346d93", + "description": "", + "name": "find" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:40:27.763Z", + "id": "50864c30-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182427763, + 39 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:40:27.763Z", + "version": "Wzg4LDFd" +} + +{ + "attributes": { + "color": "#0e03aa", + "description": "", + "name": "stack" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:54:49.182Z", + "id": "51f867e0-3c23-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692183289182, + 74 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:54:49.182Z", + "version": "WzE0NywxXQ==" +} + +{ + "attributes": { + "color": "#c93492", + "description": "", + "name": "store" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:40:31.656Z", + "id": "52d85280-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182431656, + 36 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:40:31.656Z", + "version": "Wzg5LDFd" +} + +{ + "attributes": { + "color": "#c9e3c5", + "description": "", + "name": "fog" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:42:17.587Z", + "id": "5584ec30-3c32-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692189737587, + 189 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T12:42:17.587Z", + "version": "Wzc0OSwxXQ==" +} + +{ + "attributes": { + "color": "#33894d", + "description": "", + "name": "update" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:40:36.547Z", + "id": "55c2a130-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182436547, + 37 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:40:36.547Z", + "version": "WzkwLDFd" +} + +{ + "attributes": { + "columns": [ + "Carrier", + "OriginCityName", + "OriginCountry", + "DestCityName", + "DestCountry", + "FlightTimeMin", + "AvgTicketPrice", + "Cancelled", + "FlightDelayType" + ], + "description": "", + "hits": 0, + "kibanaSavedObjectMeta": { + "searchSourceJSON": "{\"highlightAll\":true,\"version\":true,\"query\":{\"language\":\"kuery\",\"query\":\"\"},\"filter\":[],\"indexRefName\":\"kibanaSavedObjectMeta.searchSourceJSON.index\"}" + }, + "sort": [ + [ + "timestamp", + "desc" + ] + ], + "title": "[Flights] Flight Log", + "version": 1 + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:26:07.159Z", + "id": "571aaf70-4c88-11e8-b3d7-01146121b73d", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "kibanaSavedObjectMeta.searchSourceJSON.index", + "type": "index-pattern" + } + ], + "sort": [ + 1692188767159, + 4294967298 + ], + "type": "search", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T12:26:07.159Z", + "version": "Wzc3LDFd" +} + +{ + "attributes": { + "color": "#26794a", + "description": "", + "name": "tags" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:54:58.547Z", + "id": "578d6430-3c23-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692183298547, + 82 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:54:58.547Z", + "version": "WzE1MCwxXQ==" +} + +{ + "attributes": { + "color": "#9b6ba9", + "description": "", + "name": "migration" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T11:09:19.179Z", + "id": "588769b0-3c25-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692184159179, + 83 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T11:09:19.179Z", + "version": "WzE2NCwxXQ==" +} + +{ + "attributes": { + "color": "#ad4dd6", + "description": "", + "name": "snow" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:42:22.768Z", + "id": "589b7b00-3c32-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692189742768, + 190 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T12:42:22.768Z", + "version": "Wzc2NCwxXQ==" +} + +{ + "attributes": { + "color": "#fb27df", + "description": "", + "name": "sample data" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:40:45.165Z", + "id": "5ae5a1d0-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182445165, + 32 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:40:45.165Z", + "version": "WzkxLDFd" +} + +{ + "attributes": { + "color": "#cfbc31", + "description": "", + "name": "role mappings" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:55:05.626Z", + "id": "5bc58fa0-3c23-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692183305626, + 77 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:55:05.626Z", + "version": "WzE1MSwxXQ==" +} + +{ + "attributes": { + "color": "#c711ef", + "description": "", + "name": "rain" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:42:28.431Z", + "id": "5bfb95f0-3c32-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692189748431, + 191 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T12:42:28.431Z", + "version": "Wzc2NSwxXQ==" +} + +{ + "attributes": { + "description": "", + "state": { + "adHocDataViews": {}, + "datasourceStates": { + "formBased": { + "layers": { + "93d4f467-cd2a-438d-bf82-0d89d3594375": { + "columnOrder": [ + "db222e35-2792-4c1f-b8de-a4d8a2c022ee", + "720787a2-a250-4c41-a014-3bb8d3736454", + "db262b33-970d-40b5-9f59-d51d182d8849" + ], + "columns": { + "720787a2-a250-4c41-a014-3bb8d3736454": { + "customLabel": true, + "dataType": "string", + "isBucketed": true, + "label": "DestWeather", + "operationType": "terms", + "params": { + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "db262b33-970d-40b5-9f59-d51d182d8849", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": false, + "parentFormat": { + "id": "terms" + }, + "size": 3 + }, + "scale": "ordinal", + "sourceField": "DestWeather" + }, + "db222e35-2792-4c1f-b8de-a4d8a2c022ee": { + "customLabel": true, + "dataType": "string", + "isBucketed": true, + "label": "OriginWeather", + "operationType": "terms", + "params": { + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "db262b33-970d-40b5-9f59-d51d182d8849", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": false, + "parentFormat": { + "id": "terms" + }, + "size": 5 + }, + "scale": "ordinal", + "sourceField": "OriginWeather" + }, + "db262b33-970d-40b5-9f59-d51d182d8849": { + "dataType": "number", + "isBucketed": false, + "label": "Median of dayOfWeek", + "operationType": "median", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "dayOfWeek" + } + }, + "incompleteColumns": {}, + "sampling": 1 + } + } + }, + "indexpattern": { + "layers": {} + }, + "textBased": { + "layers": {} + } + }, + "filters": [], + "internalReferences": [], + "query": { + "language": "kuery", + "query": "" + }, + "visualization": { + "layers": [ + { + "categoryDisplay": "default", + "layerId": "93d4f467-cd2a-438d-bf82-0d89d3594375", + "layerType": "data", + "legendDisplay": "default", + "metrics": [ + "db262b33-970d-40b5-9f59-d51d182d8849" + ], + "nestedLegend": false, + "numberDisplay": "percent", + "primaryGroups": [ + "db222e35-2792-4c1f-b8de-a4d8a2c022ee", + "720787a2-a250-4c41-a014-3bb8d3736454" + ] + } + ], + "shape": "donut" + } + }, + "title": "Weather", + "visualizationType": "lnsPie" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:42:31.117Z", + "id": "5d956fd0-3c32-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "indexpattern-datasource-layer-93d4f467-cd2a-438d-bf82-0d89d3594375", + "type": "index-pattern" + }, + { + "id": "61030b30-3c25-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-61030b30-3c25-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "173d51b0-3c32-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-173d51b0-3c32-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "5584ec30-3c32-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-5584ec30-3c32-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "589b7b00-3c32-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-589b7b00-3c32-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "5bfb95f0-3c32-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-5bfb95f0-3c32-11ee-8bc8-574823b6bb7b", + "type": "tag" + } + ], + "sort": [ + 1692189751117, + 4294967392 + ], + "type": "lens", + "typeMigrationVersion": "8.9.0", + "updated_at": "2023-08-16T12:42:31.117Z", + "version": "WzExNywxXQ==" +} + +{ + "attributes": { + "color": "#67ae9f", + "description": "", + "name": "actions" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T11:09:29.150Z", + "id": "5e78dde0-3c25-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692184169150, + 87 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T11:09:29.150Z", + "version": "WzE2NSwxXQ==" +} + +{ + "attributes": { + "description": "", + "state": { + "adHocDataViews": {}, + "datasourceStates": { + "formBased": { + "layers": { + "5861e7b7-9a07-4e4a-bb6e-6d8ac5fd8906": { + "columnOrder": [ + "248fe449-ee57-4e77-8fa3-7a4840ce73d2", + "c0b3784b-1a0e-478f-8d84-aeb65def20e8", + "ed8ddd99-72ba-434e-9542-922fe98df7e6" + ], + "columns": { + "248fe449-ee57-4e77-8fa3-7a4840ce73d2": { + "dataType": "string", + "isBucketed": true, + "label": "Top 4 values of Carrier", + "operationType": "terms", + "params": { + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "ed8ddd99-72ba-434e-9542-922fe98df7e6", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": true, + "parentFormat": { + "id": "terms" + }, + "size": 4 + }, + "scale": "ordinal", + "sourceField": "Carrier" + }, + "c0b3784b-1a0e-478f-8d84-aeb65def20e8": { + "dataType": "date", + "isBucketed": true, + "label": "timestamp", + "operationType": "date_histogram", + "params": { + "dropPartials": false, + "includeEmptyRows": true, + "interval": "auto" + }, + "scale": "interval", + "sourceField": "timestamp" + }, + "ed8ddd99-72ba-434e-9542-922fe98df7e6": { + "customLabel": true, + "dataType": "number", + "isBucketed": false, + "label": "FlightNum", + "operationType": "unique_count", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "FlightNum" + } + }, + "incompleteColumns": {}, + "sampling": 1 + } + } + }, + "indexpattern": { + "layers": {} + }, + "textBased": { + "layers": {} + } + }, + "filters": [], + "internalReferences": [], + "query": { + "language": "kuery", + "query": "" + }, + "visualization": { + "axisTitlesVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "fittingFunction": "None", + "gridlinesVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "labelsOrientation": { + "x": 0, + "yLeft": 0, + "yRight": 0 + }, + "layers": [ + { + "accessors": [ + "ed8ddd99-72ba-434e-9542-922fe98df7e6" + ], + "layerId": "5861e7b7-9a07-4e4a-bb6e-6d8ac5fd8906", + "layerType": "data", + "position": "top", + "seriesType": "line", + "showGridlines": false, + "splitAccessor": "248fe449-ee57-4e77-8fa3-7a4840ce73d2", + "xAccessor": "c0b3784b-1a0e-478f-8d84-aeb65def20e8" + } + ], + "legend": { + "isVisible": true, + "position": "right" + }, + "preferredSeriesType": "line", + "tickLabelsVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "valueLabels": "hide" + } + }, + "title": "Flights by carrier #3", + "visualizationType": "lnsXY" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:28:17.782Z", + "id": "60f4d960-3c30-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "indexpattern-datasource-layer-5861e7b7-9a07-4e4a-bb6e-6d8ac5fd8906", + "type": "index-pattern" + } + ], + "sort": [ + 1692188897782, + 4294967353 + ], + "type": "lens", + "typeMigrationVersion": "8.9.0", + "updated_at": "2023-08-16T12:28:17.782Z", + "version": "Wzg4LDFd" +} + +{ + "attributes": { + "color": "#c90e88", + "description": "", + "name": "watch" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:55:18.494Z", + "id": "63710fe0-3c23-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692183318494, + 80 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:55:18.494Z", + "version": "WzE1MywxXQ==" +} + +{ + "attributes": { + "color": "#c3da8f", + "description": "", + "name": "bars" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:35:35.265Z", + "id": "65b77510-3c31-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692189335265, + 183 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T12:35:35.265Z", + "version": "WzY4NywxXQ==" +} + +{ + "attributes": { + "color": "#67d1cd", + "description": "", + "name": "upgrade" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:55:31.042Z", + "id": "6aebbc20-3c23-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692183331042, + 81 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:55:31.042Z", + "version": "WzE1NCwxXQ==" +} + +{ + "attributes": { + "color": "#2d236b", + "description": "", + "name": "buckets" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:42:55.436Z", + "id": "6c1438c0-3c32-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692189775436, + 194 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T12:42:55.436Z", + "version": "Wzc3MCwxXQ==" +} + +{ + "attributes": { + "color": "#a86609", + "description": "", + "name": "profile" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T11:10:01.320Z", + "id": "71a59e80-3c25-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692184201320, + 89 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T11:10:01.320Z", + "version": "WzE2OCwxXQ==" +} + +{ + "attributes": { + "color": "#d41137", + "description": "", + "name": "canvas" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:41:27.075Z", + "id": "73e07020-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182487075, + 38 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:41:27.075Z", + "version": "Wzk0LDFd" +} + +{ + "attributes": { + "color": "#f75098", + "description": "", + "name": "reporting" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:44:09.125Z", + "id": "d4777550-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182649125, + 48 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:44:09.125Z", + "version": "WzExMSwxXQ==" +} + +{ + "attributes": { + "color": "#a20855", + "description": "", + "name": "preview" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:43:12.851Z", + "id": "b2ecba30-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182592851, + 49 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:43:12.851Z", + "version": "WzEwNywxXQ==" +} + +{ + "attributes": { + "description": "", + "state": { + "adHocDataViews": {}, + "datasourceStates": { + "formBased": { + "layers": { + "e52bf9e1-21bf-478e-ad85-2d43a775ba53": { + "columnOrder": [ + "188582f5-ab1c-437b-adaf-f9505f2c1b8a", + "9c9d8820-36b4-45d4-b0b0-ee548816ab03" + ], + "columns": { + "188582f5-ab1c-437b-adaf-f9505f2c1b8a": { + "dataType": "string", + "isBucketed": true, + "label": "Top 10 values of DestCountry", + "operationType": "terms", + "params": { + "accuracyMode": true, + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "9c9d8820-36b4-45d4-b0b0-ee548816ab03", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": true, + "parentFormat": { + "id": "terms" + }, + "size": 10 + }, + "scale": "ordinal", + "sourceField": "DestCountry" + }, + "9c9d8820-36b4-45d4-b0b0-ee548816ab03": { + "dataType": "number", + "isBucketed": false, + "label": "Sum of DistanceMiles", + "operationType": "sum", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "DistanceMiles" + } + }, + "incompleteColumns": {}, + "sampling": 1 + } + } + }, + "indexpattern": { + "layers": {} + }, + "textBased": { + "layers": {} + } + }, + "filters": [], + "internalReferences": [], + "query": { + "language": "kuery", + "query": "" + }, + "visualization": { + "axisTitlesVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "fittingFunction": "None", + "gridlinesVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "labelsOrientation": { + "x": 0, + "yLeft": 0, + "yRight": 0 + }, + "layers": [ + { + "accessors": [ + "9c9d8820-36b4-45d4-b0b0-ee548816ab03" + ], + "layerId": "e52bf9e1-21bf-478e-ad85-2d43a775ba53", + "layerType": "data", + "seriesType": "bar_stacked", + "xAccessor": "188582f5-ab1c-437b-adaf-f9505f2c1b8a" + } + ], + "legend": { + "isVisible": true, + "position": "right" + }, + "preferredSeriesType": "bar_stacked", + "tickLabelsVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "valueLabels": "hide" + } + }, + "title": "Top Destanations - Bars", + "visualizationType": "lnsXY" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:36:00.202Z", + "id": "74948aa0-3c31-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "indexpattern-datasource-layer-e52bf9e1-21bf-478e-ad85-2d43a775ba53", + "type": "index-pattern" + }, + { + "id": "61030b30-3c25-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-61030b30-3c25-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "2dfb1430-3c25-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-2dfb1430-3c25-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "5e9837a0-3c23-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-5e9837a0-3c23-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "d4777550-3c21-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-d4777550-3c21-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "65b77510-3c31-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-65b77510-3c31-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "b2ecba30-3c21-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-b2ecba30-3c21-11ee-8bc8-574823b6bb7b", + "type": "tag" + } + ], + "sort": [ + 1692189360202, + 4294967378 + ], + "type": "lens", + "typeMigrationVersion": "8.9.0", + "updated_at": "2023-08-16T12:36:00.202Z", + "version": "WzEwNSwxXQ==" +} + +{ + "attributes": { + "color": "#a51dc6", + "description": "", + "name": "maps" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:41:31.245Z", + "id": "765ce1d0-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182491245, + 45 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:41:31.245Z", + "version": "Wzk1LDFd" +} + +{ + "attributes": { + "color": "#797447", + "description": "", + "name": "development" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T11:10:09.586Z", + "id": "7692e920-3c25-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692184209586, + 90 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T11:10:09.586Z", + "version": "WzE3MCwxXQ==" +} + +{ + "attributes": { + "description": "", + "kibanaSavedObjectMeta": { + "searchSourceJSON": "{}" + }, + "title": "[Flights] Delays & Cancellations", + "uiStateJSON": "{}", + "version": 1, + "visState": "{\"title\":\"[Flights] Delays & Cancellations\",\"type\":\"metrics\",\"aggs\":[],\"params\":{\"time_range_mode\":\"entire_time_range\",\"id\":\"61ca57f0-469d-11e7-af02-69e470af7417\",\"type\":\"timeseries\",\"series\":[{\"id\":\"61ca57f1-469d-11e7-af02-69e470af7417\",\"color\":\"rgba(0,156,224,1)\",\"split_mode\":\"everything\",\"metrics\":[{\"id\":\"61ca57f2-469d-11e7-af02-69e470af7417\",\"type\":\"filter_ratio\",\"numerator\":{\"query\":\"FlightDelay:true\",\"language\":\"lucene\"}}],\"separate_axis\":0,\"axis_position\":\"right\",\"formatter\":\"percent\",\"chart_type\":\"line\",\"line_width\":\"2\",\"point_size\":\"0\",\"fill\":0.5,\"stacked\":\"none\",\"label\":\"Percent Delays\",\"split_color_mode\":\"gradient\"}],\"time_field\":\"timestamp\",\"interval\":\">=1h\",\"axis_position\":\"left\",\"axis_formatter\":\"number\",\"show_legend\":0,\"show_grid\":1,\"annotations\":[{\"fields\":\"FlightDelay,Cancelled,Carrier\",\"template\":\"{{Carrier}}: Flight Delayed and Cancelled!\",\"query_string\":{\"query\":\"FlightDelay:true AND Cancelled:true\",\"language\":\"lucene\"},\"id\":\"53b7dff0-4c89-11e8-a66a-6989ad5a0a39\",\"color\":\"rgba(0,98,177,1)\",\"time_field\":\"timestamp\",\"icon\":\"fa-exclamation-triangle\",\"ignore_global_filters\":1,\"ignore_panel_filters\":1,\"index_pattern_ref_name\":\"metrics_1_index_pattern\"}],\"legend_position\":\"bottom\",\"use_kibana_indexes\":true,\"axis_scale\":\"normal\",\"tooltip_mode\":\"show_all\",\"drop_last_bucket\":0,\"isModelInvalid\":false,\"axis_max\":\"1\",\"index_pattern_ref_name\":\"metrics_0_index_pattern\"}}" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:26:07.159Z", + "id": "bcb63b50-4c89-11e8-b3d7-01146121b73d", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "metrics_0_index_pattern", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "metrics_1_index_pattern", + "type": "index-pattern" + } + ], + "sort": [ + 1692188767159, + 4294967301 + ], + "type": "visualization", + "typeMigrationVersion": "8.5.0", + "updated_at": "2023-08-16T12:26:07.159Z", + "version": "Wzc4LDFd" +} + +{ + "attributes": { + "description": "", + "kibanaSavedObjectMeta": { + "searchSourceJSON": "{\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":null,\"disabled\":false,\"key\":\"FlightDelayMin\",\"negate\":true,\"params\":{\"query\":0},\"type\":\"phrase\",\"indexRefName\":\"kibanaSavedObjectMeta.searchSourceJSON.filter[0].meta.index\"},\"query\":{\"match_phrase\":{\"FlightDelayMin\":{\"query\":0}}}}],\"indexRefName\":\"kibanaSavedObjectMeta.searchSourceJSON.index\"}" + }, + "title": "[Flights] Delay Buckets", + "uiStateJSON": "{\"vis\":{\"legendOpen\":false}}", + "version": 1, + "visState": "{\"title\":\"[Flights] Delay Buckets\",\"type\":\"histogram\",\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"params\":{\"emptyAsNull\":false},\"schema\":\"metric\"},{\"id\":\"2\",\"enabled\":true,\"type\":\"histogram\",\"params\":{\"field\":\"FlightDelayMin\",\"autoExtendBounds\":false,\"interval\":30,\"used_interval\":30,\"min_doc_count\":false,\"has_extended_bounds\":false,\"extended_bounds\":{},\"customLabel\":\"Flight Delay Minutes\"},\"schema\":\"segment\"}],\"params\":{\"type\":\"histogram\",\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"type\":\"category\",\"position\":\"bottom\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\"},\"labels\":{\"show\":true,\"truncate\":100,\"filter\":true,\"rotate\":0},\"title\":{}}],\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"name\":\"LeftAxis-1\",\"type\":\"value\",\"position\":\"left\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\",\"mode\":\"normal\"},\"labels\":{\"show\":true,\"rotate\":0,\"filter\":false,\"truncate\":100},\"title\":{\"text\":\"Count\"}}],\"seriesParams\":[{\"show\":\"true\",\"type\":\"histogram\",\"mode\":\"stacked\",\"data\":{\"label\":\"Count\",\"id\":\"1\"},\"valueAxis\":\"ValueAxis-1\",\"drawLinesBetweenPoints\":true,\"showCircles\":true}],\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"times\":[],\"addTimeMarker\":false,\"detailedTooltip\":true,\"palette\":{\"type\":\"palette\",\"name\":\"default\"},\"isVislibVis\":true,\"radiusRatio\":0,\"labels\":{\"show\":false},\"thresholdLine\":{\"show\":false,\"value\":10,\"width\":1,\"style\":\"full\",\"color\":\"#E7664C\"},\"legendSize\":\"auto\",\"truncateLegend\":true,\"maxLegendLines\":1}}" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:26:07.159Z", + "id": "9886b410-4c8b-11e8-b3d7-01146121b73d", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "kibanaSavedObjectMeta.searchSourceJSON.index", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "kibanaSavedObjectMeta.searchSourceJSON.filter[0].meta.index", + "type": "index-pattern" + }, + { + "id": "6c1438c0-3c32-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-6c1438c0-3c32-11ee-8bc8-574823b6bb7b", + "type": "tag" + } + ], + "sort": [ + 1692189777008, + 4294967400 + ], + "type": "visualization", + "typeMigrationVersion": "8.5.0", + "updated_at": "2023-08-16T12:42:57.008Z", + "version": "WzEyMCwxXQ==" +} + +{ + "attributes": { + "controlGroupInput": { + "chainingSystem": "HIERARCHICAL", + "controlStyle": "oneLine", + "ignoreParentSettingsJSON": "{\"ignoreFilters\":false,\"ignoreQuery\":false,\"ignoreTimerange\":false,\"ignoreValidations\":false}", + "panelsJSON": "{\"85b632c8-3b7b-408d-8223-b0caccf75bd3\":{\"order\":0,\"width\":\"small\",\"grow\":true,\"type\":\"optionsListControl\",\"explicitInput\":{\"title\":\"Origin City\",\"fieldName\":\"OriginCityName\",\"id\":\"85b632c8-3b7b-408d-8223-b0caccf75bd3\",\"selectedOptions\":[],\"enhancements\":{}}},\"d4dc9d2b-5850-402a-921d-8a2cd0107156\":{\"order\":1,\"width\":\"small\",\"grow\":true,\"type\":\"optionsListControl\",\"explicitInput\":{\"title\":\"Destination City\",\"fieldName\":\"DestCityName\",\"id\":\"d4dc9d2b-5850-402a-921d-8a2cd0107156\",\"enhancements\":{}}},\"bee4a16a-f5c1-40b2-887e-db1b9ad9e15f\":{\"order\":2,\"width\":\"small\",\"grow\":true,\"type\":\"rangeSliderControl\",\"explicitInput\":{\"title\":\"Average Ticket Price\",\"fieldName\":\"AvgTicketPrice\",\"id\":\"bee4a16a-f5c1-40b2-887e-db1b9ad9e15f\",\"enhancements\":{}}}}" + }, + "description": "Analyze mock flight data for ES-Air, Logstash Airways, Kibana Airlines and JetBeats", + "kibanaSavedObjectMeta": { + "searchSourceJSON": "{\"query\":{\"language\":\"kuery\",\"query\":\"\"},\"filter\":[]}" + }, + "optionsJSON": "{\"hidePanelTitles\":false,\"useMargins\":true}", + "panelsJSON": "[{\"version\":\"8.6.0\",\"type\":\"search\",\"gridData\":{\"x\":0,\"y\":47,\"w\":48,\"h\":15,\"i\":\"4\"},\"panelIndex\":\"4\",\"embeddableConfig\":{\"enhancements\":{}},\"panelRefName\":\"panel_4\"},{\"version\":\"8.6.0\",\"type\":\"visualization\",\"gridData\":{\"x\":0,\"y\":16,\"w\":24,\"h\":9,\"i\":\"7\"},\"panelIndex\":\"7\",\"embeddableConfig\":{\"enhancements\":{}},\"panelRefName\":\"panel_7\"},{\"version\":\"8.6.0\",\"type\":\"visualization\",\"gridData\":{\"x\":0,\"y\":36,\"w\":24,\"h\":11,\"i\":\"10\"},\"panelIndex\":\"10\",\"embeddableConfig\":{\"vis\":{\"colors\":{\"Count\":\"#1F78C1\"},\"legendOpen\":false},\"enhancements\":{}},\"panelRefName\":\"panel_10\"},{\"version\":\"8.6.0\",\"type\":\"visualization\",\"gridData\":{\"x\":36,\"y\":36,\"w\":12,\"h\":11,\"i\":\"21\"},\"panelIndex\":\"21\",\"embeddableConfig\":{\"enhancements\":{}},\"panelRefName\":\"panel_21\"},{\"version\":\"8.9.0\",\"type\":\"visualization\",\"gridData\":{\"x\":0,\"y\":0,\"w\":24,\"h\":8,\"i\":\"6afc61f7-e2d5-45a3-9e7a-281160ad3eb9\"},\"panelIndex\":\"6afc61f7-e2d5-45a3-9e7a-281160ad3eb9\",\"embeddableConfig\":{\"savedVis\":{\"title\":\"[Flights] Markdown Instructions\",\"description\":\"\",\"type\":\"markdown\",\"params\":{\"fontSize\":10,\"openLinksInNewTab\":true,\"markdown\":\"## Sample Flight data\\nThis dashboard contains sample data for you to play with. You can view it, search it, and interact with the visualizations. For more information about Kibana, check our [docs](https://www.elastic.co/guide/en/kibana/current/index.html).\"},\"uiState\":{},\"data\":{\"aggs\":[],\"searchSource\":{}}},\"hidePanelTitles\":true,\"enhancements\":{},\"type\":\"visualization\"}},{\"version\":\"8.9.0\",\"type\":\"lens\",\"gridData\":{\"x\":24,\"y\":0,\"w\":8,\"h\":8,\"i\":\"392b4936-f753-47bc-a98d-a4e41a0a4cd4\"},\"panelIndex\":\"392b4936-f753-47bc-a98d-a4e41a0a4cd4\",\"embeddableConfig\":{\"enhancements\":{},\"attributes\":{\"title\":\"[Flights] Total Flights\",\"description\":\"\",\"visualizationType\":\"lnsLegacyMetric\",\"state\":{\"datasourceStates\":{\"formBased\":{\"layers\":{\"8fa993db-c147-4954-adf7-4ff264d42576\":{\"columns\":{\"81124c45-6ab6-42f4-8859-495d55eb8065\":{\"label\":\"Total flights\",\"dataType\":\"number\",\"operationType\":\"count\",\"isBucketed\":false,\"scale\":\"ratio\",\"sourceField\":\"___records___\",\"customLabel\":true}},\"columnOrder\":[\"81124c45-6ab6-42f4-8859-495d55eb8065\"],\"incompleteColumns\":{}}}}},\"visualization\":{\"layerId\":\"8fa993db-c147-4954-adf7-4ff264d42576\",\"accessor\":\"81124c45-6ab6-42f4-8859-495d55eb8065\",\"layerType\":\"data\",\"textAlign\":\"center\",\"titlePosition\":\"bottom\",\"size\":\"xl\"},\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filters\":[]},\"references\":[{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"indexpattern-datasource-current-indexpattern\",\"type\":\"index-pattern\"},{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"indexpattern-datasource-layer-8fa993db-c147-4954-adf7-4ff264d42576\",\"type\":\"index-pattern\"}]},\"hidePanelTitles\":true,\"type\":\"lens\"}},{\"version\":\"8.9.0\",\"type\":\"lens\",\"gridData\":{\"x\":32,\"y\":0,\"w\":8,\"h\":4,\"i\":\"9271deff-5a61-4665-83fc-f9fdc6bf0c0b\"},\"panelIndex\":\"9271deff-5a61-4665-83fc-f9fdc6bf0c0b\",\"embeddableConfig\":{\"attributes\":{\"title\":\"\",\"type\":\"lens\",\"visualizationType\":\"lnsLegacyMetric\",\"state\":{\"datasourceStates\":{\"formBased\":{\"layers\":{\"b4712d43-1e84-4f5b-878d-8e38ba748317\":{\"columns\":{\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX0\":{\"label\":\"Part of count(kql='FlightDelay : true') / count()\",\"dataType\":\"number\",\"operationType\":\"count\",\"isBucketed\":false,\"scale\":\"ratio\",\"sourceField\":\"___records___\",\"filter\":{\"query\":\"FlightDelay : true\",\"language\":\"kuery\"},\"customLabel\":true},\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX1\":{\"label\":\"Part of count(kql='FlightDelay : true') / count()\",\"dataType\":\"number\",\"operationType\":\"count\",\"isBucketed\":false,\"scale\":\"ratio\",\"sourceField\":\"___records___\",\"customLabel\":true},\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX2\":{\"label\":\"Part of count(kql='FlightDelay : true') / count()\",\"dataType\":\"number\",\"operationType\":\"math\",\"isBucketed\":false,\"scale\":\"ratio\",\"params\":{\"tinymathAst\":{\"type\":\"function\",\"name\":\"divide\",\"args\":[\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX0\",\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX1\"],\"location\":{\"min\":0,\"max\":41},\"text\":\"count(kql='FlightDelay : true') / count()\"}},\"references\":[\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX0\",\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX1\"],\"customLabel\":true},\"7e8fe9b1-f45c-4f3d-9561-30febcd357ec\":{\"label\":\"Delayed\",\"dataType\":\"number\",\"operationType\":\"formula\",\"isBucketed\":false,\"scale\":\"ratio\",\"params\":{\"formula\":\"count(kql='FlightDelay : true') / count()\",\"isFormulaBroken\":false,\"format\":{\"id\":\"percent\",\"params\":{\"decimals\":1}}},\"references\":[\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX2\"],\"customLabel\":true}},\"columnOrder\":[\"7e8fe9b1-f45c-4f3d-9561-30febcd357ec\",\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX0\",\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX1\",\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX2\"],\"incompleteColumns\":{}}}}},\"visualization\":{\"layerId\":\"b4712d43-1e84-4f5b-878d-8e38ba748317\",\"accessor\":\"7e8fe9b1-f45c-4f3d-9561-30febcd357ec\",\"layerType\":\"data\",\"textAlign\":\"center\",\"titlePosition\":\"bottom\",\"size\":\"xl\"},\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filters\":[]},\"references\":[{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"indexpattern-datasource-current-indexpattern\",\"type\":\"index-pattern\"},{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"indexpattern-datasource-layer-b4712d43-1e84-4f5b-878d-8e38ba748317\",\"type\":\"index-pattern\"}]},\"enhancements\":{},\"type\":\"lens\"}},{\"version\":\"8.9.0\",\"type\":\"lens\",\"gridData\":{\"x\":40,\"y\":0,\"w\":8,\"h\":4,\"i\":\"aa591c29-1a31-4ee1-a71d-b829c06fd162\"},\"panelIndex\":\"aa591c29-1a31-4ee1-a71d-b829c06fd162\",\"embeddableConfig\":{\"attributes\":{\"title\":\"\",\"type\":\"lens\",\"visualizationType\":\"lnsLegacyMetric\",\"state\":{\"datasourceStates\":{\"formBased\":{\"layers\":{\"b4712d43-1e84-4f5b-878d-8e38ba748317\":{\"columns\":{\"c7851241-5526-499a-960b-357af8c2ce5bX0\":{\"label\":\"Part of Delayed\",\"dataType\":\"number\",\"operationType\":\"count\",\"isBucketed\":false,\"scale\":\"ratio\",\"sourceField\":\"___records___\",\"customLabel\":true},\"c7851241-5526-499a-960b-357af8c2ce5bX1\":{\"label\":\"Part of Delayed\",\"dataType\":\"number\",\"operationType\":\"count\",\"isBucketed\":false,\"scale\":\"ratio\",\"sourceField\":\"___records___\",\"timeShift\":\"1w\",\"customLabel\":true},\"c7851241-5526-499a-960b-357af8c2ce5bX2\":{\"label\":\"Part of Delayed\",\"dataType\":\"number\",\"operationType\":\"math\",\"isBucketed\":false,\"scale\":\"ratio\",\"params\":{\"tinymathAst\":{\"type\":\"function\",\"name\":\"subtract\",\"args\":[{\"type\":\"function\",\"name\":\"divide\",\"args\":[\"c7851241-5526-499a-960b-357af8c2ce5bX0\",\"c7851241-5526-499a-960b-357af8c2ce5bX1\"],\"location\":{\"min\":0,\"max\":28},\"text\":\"count() / count(shift='1w') \"},1],\"location\":{\"min\":0,\"max\":31},\"text\":\"count() / count(shift='1w') - 1\"}},\"references\":[\"c7851241-5526-499a-960b-357af8c2ce5bX0\",\"c7851241-5526-499a-960b-357af8c2ce5bX1\"],\"customLabel\":true},\"c7851241-5526-499a-960b-357af8c2ce5b\":{\"label\":\"Delayed vs 1 week earlier\",\"dataType\":\"number\",\"operationType\":\"formula\",\"isBucketed\":false,\"scale\":\"ratio\",\"params\":{\"formula\":\"count() / count(shift='1w') - 1\",\"isFormulaBroken\":false,\"format\":{\"id\":\"percent\",\"params\":{\"decimals\":1}}},\"references\":[\"c7851241-5526-499a-960b-357af8c2ce5bX2\"],\"customLabel\":true}},\"columnOrder\":[\"c7851241-5526-499a-960b-357af8c2ce5b\",\"c7851241-5526-499a-960b-357af8c2ce5bX2\",\"c7851241-5526-499a-960b-357af8c2ce5bX0\",\"c7851241-5526-499a-960b-357af8c2ce5bX1\"],\"incompleteColumns\":{}}}}},\"visualization\":{\"layerId\":\"b4712d43-1e84-4f5b-878d-8e38ba748317\",\"accessor\":\"c7851241-5526-499a-960b-357af8c2ce5b\",\"layerType\":\"data\",\"textAlign\":\"center\",\"titlePosition\":\"bottom\",\"size\":\"xl\"},\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filters\":[{\"meta\":{\"alias\":null,\"negate\":false,\"disabled\":false,\"type\":\"phrase\",\"key\":\"FlightDelay\",\"params\":{\"query\":true},\"index\":\"filter-index-pattern-0\"},\"query\":{\"match_phrase\":{\"FlightDelay\":true}},\"$state\":{\"store\":\"appState\"}}]},\"references\":[{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"indexpattern-datasource-current-indexpattern\",\"type\":\"index-pattern\"},{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"indexpattern-datasource-layer-b4712d43-1e84-4f5b-878d-8e38ba748317\",\"type\":\"index-pattern\"},{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"filter-index-pattern-0\",\"type\":\"index-pattern\"}]},\"enhancements\":{},\"type\":\"lens\"}},{\"version\":\"8.9.0\",\"type\":\"lens\",\"gridData\":{\"x\":32,\"y\":4,\"w\":8,\"h\":4,\"i\":\"b766e3b8-4544-46ed-99e6-9ecc4847e2a2\"},\"panelIndex\":\"b766e3b8-4544-46ed-99e6-9ecc4847e2a2\",\"embeddableConfig\":{\"attributes\":{\"title\":\"\",\"type\":\"lens\",\"visualizationType\":\"lnsLegacyMetric\",\"state\":{\"datasourceStates\":{\"formBased\":{\"layers\":{\"b4712d43-1e84-4f5b-878d-8e38ba748317\":{\"columns\":{\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX0\":{\"label\":\"Part of Cancelled\",\"dataType\":\"number\",\"operationType\":\"count\",\"isBucketed\":false,\"scale\":\"ratio\",\"sourceField\":\"___records___\",\"filter\":{\"query\":\"Cancelled : true\",\"language\":\"kuery\"},\"customLabel\":true},\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX1\":{\"label\":\"Part of Cancelled\",\"dataType\":\"number\",\"operationType\":\"count\",\"isBucketed\":false,\"scale\":\"ratio\",\"sourceField\":\"___records___\",\"customLabel\":true},\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX2\":{\"label\":\"Part of Cancelled\",\"dataType\":\"number\",\"operationType\":\"math\",\"isBucketed\":false,\"scale\":\"ratio\",\"params\":{\"tinymathAst\":{\"type\":\"function\",\"name\":\"divide\",\"args\":[\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX0\",\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX1\"],\"location\":{\"min\":0,\"max\":39},\"text\":\"count(kql='Cancelled : true') / count()\"}},\"references\":[\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX0\",\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX1\"],\"customLabel\":true},\"7e8fe9b1-f45c-4f3d-9561-30febcd357ec\":{\"label\":\"Cancelled\",\"dataType\":\"number\",\"operationType\":\"formula\",\"isBucketed\":false,\"scale\":\"ratio\",\"params\":{\"formula\":\"count(kql='Cancelled : true') / count()\",\"isFormulaBroken\":false,\"format\":{\"id\":\"percent\",\"params\":{\"decimals\":1}}},\"references\":[\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX2\"],\"customLabel\":true}},\"columnOrder\":[\"7e8fe9b1-f45c-4f3d-9561-30febcd357ec\",\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX0\",\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX1\",\"7e8fe9b1-f45c-4f3d-9561-30febcd357ecX2\"],\"incompleteColumns\":{}}}}},\"visualization\":{\"layerId\":\"b4712d43-1e84-4f5b-878d-8e38ba748317\",\"accessor\":\"7e8fe9b1-f45c-4f3d-9561-30febcd357ec\",\"layerType\":\"data\",\"textAlign\":\"center\",\"titlePosition\":\"bottom\",\"size\":\"xl\"},\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filters\":[]},\"references\":[{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"indexpattern-datasource-current-indexpattern\",\"type\":\"index-pattern\"},{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"indexpattern-datasource-layer-b4712d43-1e84-4f5b-878d-8e38ba748317\",\"type\":\"index-pattern\"}]},\"enhancements\":{},\"type\":\"lens\"}},{\"version\":\"8.9.0\",\"type\":\"lens\",\"gridData\":{\"x\":40,\"y\":4,\"w\":8,\"h\":4,\"i\":\"2e33ade5-96e5-40b4-b460-493e5d4fa834\"},\"panelIndex\":\"2e33ade5-96e5-40b4-b460-493e5d4fa834\",\"embeddableConfig\":{\"attributes\":{\"title\":\"\",\"type\":\"lens\",\"visualizationType\":\"lnsLegacyMetric\",\"state\":{\"datasourceStates\":{\"formBased\":{\"layers\":{\"b4712d43-1e84-4f5b-878d-8e38ba748317\":{\"columns\":{\"c7851241-5526-499a-960b-357af8c2ce5bX0\":{\"label\":\"Part of Delayed vs 1 week earlier\",\"dataType\":\"number\",\"operationType\":\"count\",\"isBucketed\":false,\"scale\":\"ratio\",\"sourceField\":\"___records___\",\"customLabel\":true},\"c7851241-5526-499a-960b-357af8c2ce5bX1\":{\"label\":\"Part of Delayed vs 1 week earlier\",\"dataType\":\"number\",\"operationType\":\"count\",\"isBucketed\":false,\"scale\":\"ratio\",\"sourceField\":\"___records___\",\"timeShift\":\"1w\",\"customLabel\":true},\"c7851241-5526-499a-960b-357af8c2ce5bX2\":{\"label\":\"Part of Delayed vs 1 week earlier\",\"dataType\":\"number\",\"operationType\":\"math\",\"isBucketed\":false,\"scale\":\"ratio\",\"params\":{\"tinymathAst\":{\"type\":\"function\",\"name\":\"subtract\",\"args\":[{\"type\":\"function\",\"name\":\"divide\",\"args\":[\"c7851241-5526-499a-960b-357af8c2ce5bX0\",\"c7851241-5526-499a-960b-357af8c2ce5bX1\"],\"location\":{\"min\":0,\"max\":28},\"text\":\"count() / count(shift='1w') \"},1],\"location\":{\"min\":0,\"max\":31},\"text\":\"count() / count(shift='1w') - 1\"}},\"references\":[\"c7851241-5526-499a-960b-357af8c2ce5bX0\",\"c7851241-5526-499a-960b-357af8c2ce5bX1\"],\"customLabel\":true},\"c7851241-5526-499a-960b-357af8c2ce5b\":{\"label\":\"Cancelled vs 1 week earlier\",\"dataType\":\"number\",\"operationType\":\"formula\",\"isBucketed\":false,\"scale\":\"ratio\",\"params\":{\"formula\":\"count() / count(shift='1w') - 1\",\"isFormulaBroken\":false,\"format\":{\"id\":\"percent\",\"params\":{\"decimals\":1}}},\"references\":[\"c7851241-5526-499a-960b-357af8c2ce5bX2\"],\"customLabel\":true}},\"columnOrder\":[\"c7851241-5526-499a-960b-357af8c2ce5b\",\"c7851241-5526-499a-960b-357af8c2ce5bX2\",\"c7851241-5526-499a-960b-357af8c2ce5bX0\",\"c7851241-5526-499a-960b-357af8c2ce5bX1\"],\"incompleteColumns\":{}}}}},\"visualization\":{\"layerId\":\"b4712d43-1e84-4f5b-878d-8e38ba748317\",\"accessor\":\"c7851241-5526-499a-960b-357af8c2ce5b\",\"layerType\":\"data\",\"textAlign\":\"center\",\"titlePosition\":\"bottom\",\"size\":\"xl\"},\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filters\":[{\"meta\":{\"alias\":null,\"negate\":false,\"disabled\":false,\"type\":\"phrase\",\"key\":\"Cancelled\",\"params\":{\"query\":true},\"index\":\"filter-index-pattern-0\"},\"query\":{\"match_phrase\":{\"Cancelled\":true}},\"$state\":{\"store\":\"appState\"}}]},\"references\":[{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"indexpattern-datasource-current-indexpattern\",\"type\":\"index-pattern\"},{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"indexpattern-datasource-layer-b4712d43-1e84-4f5b-878d-8e38ba748317\",\"type\":\"index-pattern\"},{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"filter-index-pattern-0\",\"type\":\"index-pattern\"}]},\"enhancements\":{},\"type\":\"lens\"}},{\"version\":\"8.9.0\",\"type\":\"lens\",\"gridData\":{\"x\":0,\"y\":8,\"w\":24,\"h\":8,\"i\":\"086ac2e9-dd16-4b45-92b8-1e43ff7e3f65\"},\"panelIndex\":\"086ac2e9-dd16-4b45-92b8-1e43ff7e3f65\",\"embeddableConfig\":{\"attributes\":{\"title\":\"\",\"type\":\"lens\",\"visualizationType\":\"lnsXY\",\"state\":{\"datasourceStates\":{\"formBased\":{\"layers\":{\"03c34665-471c-49c7-acf1-5a11f517421c\":{\"columns\":{\"a5b94e30-4e77-4b0a-9187-1d8b13de1456\":{\"label\":\"timestamp\",\"dataType\":\"date\",\"operationType\":\"date_histogram\",\"sourceField\":\"timestamp\",\"isBucketed\":true,\"scale\":\"interval\",\"params\":{\"interval\":\"auto\",\"includeEmptyRows\":true}},\"3e267327-7317-4310-aee3-320e0f7c1e70\":{\"label\":\"Count of records\",\"dataType\":\"number\",\"operationType\":\"count\",\"isBucketed\":false,\"scale\":\"ratio\",\"sourceField\":\"___records___\"}},\"columnOrder\":[\"a5b94e30-4e77-4b0a-9187-1d8b13de1456\",\"3e267327-7317-4310-aee3-320e0f7c1e70\"],\"incompleteColumns\":{}}}}},\"visualization\":{\"legend\":{\"isVisible\":true,\"position\":\"right\",\"legendSize\":\"auto\"},\"valueLabels\":\"hide\",\"fittingFunction\":\"None\",\"yLeftExtent\":{\"mode\":\"full\"},\"yRightExtent\":{\"mode\":\"custom\",\"lowerBound\":0,\"upperBound\":1},\"axisTitlesVisibilitySettings\":{\"x\":false,\"yLeft\":false,\"yRight\":true},\"tickLabelsVisibilitySettings\":{\"x\":true,\"yLeft\":true,\"yRight\":true},\"gridlinesVisibilitySettings\":{\"x\":true,\"yLeft\":true,\"yRight\":true},\"preferredSeriesType\":\"bar_stacked\",\"layers\":[{\"layerId\":\"03c34665-471c-49c7-acf1-5a11f517421c\",\"accessors\":[\"3e267327-7317-4310-aee3-320e0f7c1e70\"],\"position\":\"top\",\"seriesType\":\"bar_stacked\",\"showGridlines\":false,\"xAccessor\":\"a5b94e30-4e77-4b0a-9187-1d8b13de1456\",\"layerType\":\"data\"}]},\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filters\":[]},\"references\":[{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"indexpattern-datasource-current-indexpattern\",\"type\":\"index-pattern\"},{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"indexpattern-datasource-layer-03c34665-471c-49c7-acf1-5a11f517421c\",\"type\":\"index-pattern\"}]},\"hidePanelTitles\":false,\"enhancements\":{},\"type\":\"lens\"},\"title\":\"[Flights] Flight count\"},{\"version\":\"8.9.0\",\"type\":\"lens\",\"gridData\":{\"x\":24,\"y\":8,\"w\":24,\"h\":28,\"i\":\"fb86b32f-fb7a-45cf-9511-f366fef51bbd\"},\"panelIndex\":\"fb86b32f-fb7a-45cf-9511-f366fef51bbd\",\"embeddableConfig\":{\"attributes\":{\"title\":\"Cities by delay, cancellation\",\"type\":\"lens\",\"visualizationType\":\"lnsDatatable\",\"state\":{\"datasourceStates\":{\"formBased\":{\"layers\":{\"f26e8f7a-4118-4227-bea0-5c02d8b270f7\":{\"columns\":{\"3dd24cb4-45ef-4dd8-b22a-d7b802cb6da0\":{\"label\":\"Top values of OriginCityName\",\"dataType\":\"string\",\"operationType\":\"terms\",\"scale\":\"ordinal\",\"sourceField\":\"OriginCityName\",\"isBucketed\":true,\"params\":{\"size\":1000,\"orderBy\":{\"type\":\"alphabetical\",\"fallback\":true},\"orderDirection\":\"asc\",\"otherBucket\":true,\"missingBucket\":false}},\"52f6f2e9-6242-4c44-be63-b799150e7e60X0\":{\"label\":\"Part of Delay %\",\"dataType\":\"number\",\"operationType\":\"count\",\"isBucketed\":false,\"scale\":\"ratio\",\"sourceField\":\"___records___\",\"filter\":{\"query\":\"FlightDelay : true \",\"language\":\"kuery\"},\"customLabel\":true},\"52f6f2e9-6242-4c44-be63-b799150e7e60X1\":{\"label\":\"Part of Delay %\",\"dataType\":\"number\",\"operationType\":\"count\",\"isBucketed\":false,\"scale\":\"ratio\",\"sourceField\":\"___records___\",\"customLabel\":true},\"52f6f2e9-6242-4c44-be63-b799150e7e60X2\":{\"label\":\"Part of Delay %\",\"dataType\":\"number\",\"operationType\":\"math\",\"isBucketed\":false,\"scale\":\"ratio\",\"params\":{\"tinymathAst\":{\"type\":\"function\",\"name\":\"divide\",\"args\":[\"52f6f2e9-6242-4c44-be63-b799150e7e60X0\",\"52f6f2e9-6242-4c44-be63-b799150e7e60X1\"],\"location\":{\"min\":0,\"max\":42},\"text\":\"count(kql='FlightDelay : true ') / count()\"}},\"references\":[\"52f6f2e9-6242-4c44-be63-b799150e7e60X0\",\"52f6f2e9-6242-4c44-be63-b799150e7e60X1\"],\"customLabel\":true},\"52f6f2e9-6242-4c44-be63-b799150e7e60\":{\"label\":\"Delay %\",\"dataType\":\"number\",\"operationType\":\"formula\",\"isBucketed\":false,\"scale\":\"ratio\",\"params\":{\"formula\":\"count(kql='FlightDelay : true ') / count()\",\"isFormulaBroken\":false,\"format\":{\"id\":\"percent\",\"params\":{\"decimals\":0}}},\"references\":[\"52f6f2e9-6242-4c44-be63-b799150e7e60X2\"],\"customLabel\":true},\"7b9f3ece-9da3-4c27-b582-d3f8e8cc31d6X0\":{\"label\":\"Part of Cancel %\",\"dataType\":\"number\",\"operationType\":\"count\",\"isBucketed\":false,\"scale\":\"ratio\",\"sourceField\":\"___records___\",\"filter\":{\"query\":\"Cancelled: true\",\"language\":\"kuery\"},\"customLabel\":true},\"7b9f3ece-9da3-4c27-b582-d3f8e8cc31d6X1\":{\"label\":\"Part of Cancel %\",\"dataType\":\"number\",\"operationType\":\"count\",\"isBucketed\":false,\"scale\":\"ratio\",\"sourceField\":\"___records___\",\"customLabel\":true},\"7b9f3ece-9da3-4c27-b582-d3f8e8cc31d6X2\":{\"label\":\"Part of Cancel %\",\"dataType\":\"number\",\"operationType\":\"math\",\"isBucketed\":false,\"scale\":\"ratio\",\"params\":{\"tinymathAst\":{\"type\":\"function\",\"name\":\"divide\",\"args\":[\"7b9f3ece-9da3-4c27-b582-d3f8e8cc31d6X0\",\"7b9f3ece-9da3-4c27-b582-d3f8e8cc31d6X1\"],\"location\":{\"min\":0,\"max\":38},\"text\":\"count(kql='Cancelled: true') / count()\"}},\"references\":[\"7b9f3ece-9da3-4c27-b582-d3f8e8cc31d6X0\",\"7b9f3ece-9da3-4c27-b582-d3f8e8cc31d6X1\"],\"customLabel\":true},\"7b9f3ece-9da3-4c27-b582-d3f8e8cc31d6\":{\"label\":\"Cancel %\",\"dataType\":\"number\",\"operationType\":\"formula\",\"isBucketed\":false,\"scale\":\"ratio\",\"params\":{\"formula\":\"count(kql='Cancelled: true') / count()\",\"isFormulaBroken\":false,\"format\":{\"id\":\"percent\",\"params\":{\"decimals\":0}}},\"references\":[\"7b9f3ece-9da3-4c27-b582-d3f8e8cc31d6X2\"],\"customLabel\":true}},\"columnOrder\":[\"3dd24cb4-45ef-4dd8-b22a-d7b802cb6da0\",\"52f6f2e9-6242-4c44-be63-b799150e7e60\",\"52f6f2e9-6242-4c44-be63-b799150e7e60X0\",\"52f6f2e9-6242-4c44-be63-b799150e7e60X1\",\"52f6f2e9-6242-4c44-be63-b799150e7e60X2\",\"7b9f3ece-9da3-4c27-b582-d3f8e8cc31d6X0\",\"7b9f3ece-9da3-4c27-b582-d3f8e8cc31d6X1\",\"7b9f3ece-9da3-4c27-b582-d3f8e8cc31d6X2\",\"7b9f3ece-9da3-4c27-b582-d3f8e8cc31d6\"],\"incompleteColumns\":{}}}}},\"visualization\":{\"columns\":[{\"isTransposed\":false,\"columnId\":\"3dd24cb4-45ef-4dd8-b22a-d7b802cb6da0\",\"width\":262.75},{\"columnId\":\"52f6f2e9-6242-4c44-be63-b799150e7e60\",\"isTransposed\":false,\"width\":302.5,\"colorMode\":\"cell\",\"palette\":{\"name\":\"custom\",\"type\":\"palette\",\"params\":{\"steps\":5,\"stops\":[{\"color\":\"#f7e0b8\",\"stop\":0.6},{\"color\":\"#e7664c\",\"stop\":1}],\"name\":\"custom\",\"colorStops\":[{\"color\":\"#f7e0b8\",\"stop\":0.2},{\"color\":\"#e7664c\",\"stop\":0.6}],\"rangeType\":\"number\",\"rangeMin\":0.2,\"rangeMax\":0.6}},\"alignment\":\"center\"},{\"columnId\":\"7b9f3ece-9da3-4c27-b582-d3f8e8cc31d6\",\"isTransposed\":false,\"alignment\":\"center\",\"colorMode\":\"cell\",\"palette\":{\"name\":\"custom\",\"type\":\"palette\",\"params\":{\"steps\":5,\"stops\":[{\"color\":\"#f7e0b8\",\"stop\":0.6},{\"color\":\"#e7664c\",\"stop\":0.6666666666666666}],\"rangeType\":\"number\",\"name\":\"custom\",\"colorStops\":[{\"color\":\"#f7e0b8\",\"stop\":0.2},{\"color\":\"#e7664c\",\"stop\":0.6}],\"rangeMin\":0.2,\"rangeMax\":0.6}}}],\"layerId\":\"f26e8f7a-4118-4227-bea0-5c02d8b270f7\",\"sorting\":{\"columnId\":\"52f6f2e9-6242-4c44-be63-b799150e7e60\",\"direction\":\"desc\"},\"layerType\":\"data\",\"rowHeight\":\"single\",\"rowHeightLines\":1},\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filters\":[]},\"references\":[{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"indexpattern-datasource-current-indexpattern\",\"type\":\"index-pattern\"},{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"indexpattern-datasource-layer-f26e8f7a-4118-4227-bea0-5c02d8b270f7\",\"type\":\"index-pattern\"}]},\"enhancements\":{},\"hidePanelTitles\":false,\"type\":\"lens\"},\"title\":\"[Flights] Most delayed cities\"},{\"version\":\"8.9.0\",\"type\":\"lens\",\"gridData\":{\"x\":0,\"y\":25,\"w\":24,\"h\":11,\"i\":\"0cc42484-16f7-42ec-b38c-9bf8be69cde7\"},\"panelIndex\":\"0cc42484-16f7-42ec-b38c-9bf8be69cde7\",\"embeddableConfig\":{\"attributes\":{\"title\":\"\",\"type\":\"lens\",\"visualizationType\":\"lnsXY\",\"state\":{\"datasourceStates\":{\"formBased\":{\"layers\":{\"e80cc05e-c52a-4e5f-ac71-4b37274867f5\":{\"columns\":{\"caf7421e-93a3-439e-ab0a-fbdead93c21c\":{\"label\":\"Top values of FlightDelayType\",\"dataType\":\"string\",\"operationType\":\"terms\",\"scale\":\"ordinal\",\"sourceField\":\"FlightDelayType\",\"isBucketed\":true,\"params\":{\"size\":10,\"orderBy\":{\"type\":\"column\",\"columnId\":\"0233d302-ec81-4fbe-96cb-7fac84cf035c\"},\"orderDirection\":\"desc\",\"otherBucket\":true,\"missingBucket\":false}},\"13ec79e3-9d73-4536-9056-3d92802bb30a\":{\"label\":\"timestamp\",\"dataType\":\"date\",\"operationType\":\"date_histogram\",\"sourceField\":\"timestamp\",\"isBucketed\":true,\"scale\":\"interval\",\"params\":{\"interval\":\"auto\",\"includeEmptyRows\":true}},\"0233d302-ec81-4fbe-96cb-7fac84cf035c\":{\"label\":\"Count of records\",\"dataType\":\"number\",\"operationType\":\"count\",\"isBucketed\":false,\"scale\":\"ratio\",\"sourceField\":\"___records___\"}},\"columnOrder\":[\"caf7421e-93a3-439e-ab0a-fbdead93c21c\",\"13ec79e3-9d73-4536-9056-3d92802bb30a\",\"0233d302-ec81-4fbe-96cb-7fac84cf035c\"],\"incompleteColumns\":{}}}}},\"visualization\":{\"legend\":{\"isVisible\":true,\"position\":\"bottom\",\"legendSize\":\"auto\"},\"valueLabels\":\"hide\",\"fittingFunction\":\"None\",\"yLeftExtent\":{\"mode\":\"full\"},\"yRightExtent\":{\"mode\":\"full\"},\"axisTitlesVisibilitySettings\":{\"x\":true,\"yLeft\":false,\"yRight\":true},\"tickLabelsVisibilitySettings\":{\"x\":true,\"yLeft\":true,\"yRight\":true},\"gridlinesVisibilitySettings\":{\"x\":true,\"yLeft\":true,\"yRight\":true},\"preferredSeriesType\":\"bar_percentage_stacked\",\"layers\":[{\"layerId\":\"e80cc05e-c52a-4e5f-ac71-4b37274867f5\",\"accessors\":[\"0233d302-ec81-4fbe-96cb-7fac84cf035c\"],\"position\":\"top\",\"seriesType\":\"bar_percentage_stacked\",\"showGridlines\":false,\"palette\":{\"type\":\"palette\",\"name\":\"cool\"},\"xAccessor\":\"13ec79e3-9d73-4536-9056-3d92802bb30a\",\"splitAccessor\":\"caf7421e-93a3-439e-ab0a-fbdead93c21c\",\"layerType\":\"data\"}]},\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filters\":[]},\"references\":[{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"indexpattern-datasource-current-indexpattern\",\"type\":\"index-pattern\"},{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"indexpattern-datasource-layer-e80cc05e-c52a-4e5f-ac71-4b37274867f5\",\"type\":\"index-pattern\"}]},\"hidePanelTitles\":false,\"enhancements\":{},\"type\":\"lens\"},\"title\":\"[Flights] Delay Type\"},{\"version\":\"8.9.0\",\"type\":\"lens\",\"gridData\":{\"x\":24,\"y\":36,\"w\":12,\"h\":11,\"i\":\"5d53db36-2d5a-4adc-af7b-cec4c1a294e0\"},\"panelIndex\":\"5d53db36-2d5a-4adc-af7b-cec4c1a294e0\",\"embeddableConfig\":{\"attributes\":{\"title\":\"\",\"type\":\"lens\",\"visualizationType\":\"lnsPie\",\"state\":{\"datasourceStates\":{\"formBased\":{\"layers\":{\"0c8e136b-a822-4fb3-836d-e06cbea4eea4\":{\"columns\":{\"d1cee8bf-34cf-4141-99d7-ff043ee77b56\":{\"label\":\"Top values of FlightDelayType\",\"dataType\":\"string\",\"operationType\":\"terms\",\"scale\":\"ordinal\",\"sourceField\":\"FlightDelayType\",\"isBucketed\":true,\"params\":{\"size\":10,\"orderBy\":{\"type\":\"column\",\"columnId\":\"aa152ace-ee2d-447b-b86d-459bef4d7880\"},\"orderDirection\":\"desc\",\"otherBucket\":true,\"missingBucket\":false}},\"aa152ace-ee2d-447b-b86d-459bef4d7880\":{\"label\":\"Count of records\",\"dataType\":\"number\",\"operationType\":\"count\",\"isBucketed\":false,\"scale\":\"ratio\",\"sourceField\":\"___records___\"}},\"columnOrder\":[\"d1cee8bf-34cf-4141-99d7-ff043ee77b56\",\"aa152ace-ee2d-447b-b86d-459bef4d7880\"],\"incompleteColumns\":{}}}}},\"visualization\":{\"shape\":\"pie\",\"palette\":{\"type\":\"palette\",\"name\":\"cool\"},\"layers\":[{\"layerId\":\"0c8e136b-a822-4fb3-836d-e06cbea4eea4\",\"metrics\":[\"aa152ace-ee2d-447b-b86d-459bef4d7880\"],\"numberDisplay\":\"percent\",\"categoryDisplay\":\"default\",\"legendDisplay\":\"default\",\"nestedLegend\":false,\"layerType\":\"data\",\"legendSize\":\"auto\",\"primaryGroups\":[\"d1cee8bf-34cf-4141-99d7-ff043ee77b56\"]}]},\"query\":{\"query\":\"\",\"language\":\"kuery\"},\"filters\":[{\"meta\":{\"type\":\"phrase\",\"key\":\"FlightDelayType\",\"params\":{\"query\":\"No Delay\"},\"disabled\":false,\"negate\":true,\"alias\":null,\"index\":\"filter-index-pattern-0\"},\"query\":{\"match_phrase\":{\"FlightDelayType\":\"No Delay\"}},\"$state\":{\"store\":\"appState\"}}]},\"references\":[{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"indexpattern-datasource-current-indexpattern\",\"type\":\"index-pattern\"},{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"indexpattern-datasource-layer-0c8e136b-a822-4fb3-836d-e06cbea4eea4\",\"type\":\"index-pattern\"},{\"id\":\"d3d7af60-4c81-11e8-b3d7-01146121b73d\",\"name\":\"filter-index-pattern-0\",\"type\":\"index-pattern\"}]},\"enhancements\":{},\"hidePanelTitles\":false,\"type\":\"lens\"},\"title\":\"[Flights] Delay Type\"}]", + "refreshInterval": { + "pause": true, + "value": 0 + }, + "timeFrom": "2022-10-19T09:00:00.000Z", + "timeRestore": true, + "timeTo": "2022-10-26T09:00:00.000Z", + "title": "[Flights] Global Flight Dashboard", + "version": 1 + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:26:07.159Z", + "id": "7adfa750-4c81-11e8-b3d7-01146121b73d", + "managed": false, + "references": [ + { + "id": "571aaf70-4c88-11e8-b3d7-01146121b73d", + "name": "4:panel_4", + "type": "search" + }, + { + "id": "bcb63b50-4c89-11e8-b3d7-01146121b73d", + "name": "7:panel_7", + "type": "visualization" + }, + { + "id": "9886b410-4c8b-11e8-b3d7-01146121b73d", + "name": "10:panel_10", + "type": "visualization" + }, + { + "id": "293b5a30-4c8f-11e8-b3d7-01146121b73d", + "name": "21:panel_21", + "type": "visualization" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "392b4936-f753-47bc-a98d-a4e41a0a4cd4:indexpattern-datasource-current-indexpattern", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "392b4936-f753-47bc-a98d-a4e41a0a4cd4:indexpattern-datasource-layer-8fa993db-c147-4954-adf7-4ff264d42576", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "9271deff-5a61-4665-83fc-f9fdc6bf0c0b:indexpattern-datasource-current-indexpattern", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "9271deff-5a61-4665-83fc-f9fdc6bf0c0b:indexpattern-datasource-layer-b4712d43-1e84-4f5b-878d-8e38ba748317", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "aa591c29-1a31-4ee1-a71d-b829c06fd162:indexpattern-datasource-current-indexpattern", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "aa591c29-1a31-4ee1-a71d-b829c06fd162:indexpattern-datasource-layer-b4712d43-1e84-4f5b-878d-8e38ba748317", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "aa591c29-1a31-4ee1-a71d-b829c06fd162:filter-index-pattern-0", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "b766e3b8-4544-46ed-99e6-9ecc4847e2a2:indexpattern-datasource-current-indexpattern", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "b766e3b8-4544-46ed-99e6-9ecc4847e2a2:indexpattern-datasource-layer-b4712d43-1e84-4f5b-878d-8e38ba748317", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "2e33ade5-96e5-40b4-b460-493e5d4fa834:indexpattern-datasource-current-indexpattern", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "2e33ade5-96e5-40b4-b460-493e5d4fa834:indexpattern-datasource-layer-b4712d43-1e84-4f5b-878d-8e38ba748317", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "2e33ade5-96e5-40b4-b460-493e5d4fa834:filter-index-pattern-0", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "086ac2e9-dd16-4b45-92b8-1e43ff7e3f65:indexpattern-datasource-current-indexpattern", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "086ac2e9-dd16-4b45-92b8-1e43ff7e3f65:indexpattern-datasource-layer-03c34665-471c-49c7-acf1-5a11f517421c", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "fb86b32f-fb7a-45cf-9511-f366fef51bbd:indexpattern-datasource-current-indexpattern", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "fb86b32f-fb7a-45cf-9511-f366fef51bbd:indexpattern-datasource-layer-f26e8f7a-4118-4227-bea0-5c02d8b270f7", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "0cc42484-16f7-42ec-b38c-9bf8be69cde7:indexpattern-datasource-current-indexpattern", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "0cc42484-16f7-42ec-b38c-9bf8be69cde7:indexpattern-datasource-layer-e80cc05e-c52a-4e5f-ac71-4b37274867f5", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "5d53db36-2d5a-4adc-af7b-cec4c1a294e0:indexpattern-datasource-current-indexpattern", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "5d53db36-2d5a-4adc-af7b-cec4c1a294e0:indexpattern-datasource-layer-0c8e136b-a822-4fb3-836d-e06cbea4eea4", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "5d53db36-2d5a-4adc-af7b-cec4c1a294e0:filter-index-pattern-0", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "controlGroup_85b632c8-3b7b-408d-8223-b0caccf75bd3:optionsListDataView", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "controlGroup_d4dc9d2b-5850-402a-921d-8a2cd0107156:optionsListDataView", + "type": "index-pattern" + }, + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "controlGroup_bee4a16a-f5c1-40b2-887e-db1b9ad9e15f:rangeSliderDataView", + "type": "index-pattern" + } + ], + "sort": [ + 1692188767159, + 4294967335 + ], + "type": "dashboard", + "typeMigrationVersion": "8.9.0", + "updated_at": "2023-08-16T12:26:07.159Z", + "version": "WzgxLDFd" +} + +{ + "attributes": { + "color": "#f762d0", + "description": "", + "name": "stack management" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:41:39.039Z", + "id": "7b0226f0-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182499039, + 40 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:41:39.039Z", + "version": "Wzk2LDFd" +} + +{ + "attributes": { + "description": "", + "state": { + "adHocDataViews": {}, + "datasourceStates": { + "formBased": { + "layers": { + "cb26e91d-0305-436c-96db-b5910b808f6e": { + "columnOrder": [ + "3c4357a4-b3b2-43f2-8bf3-ec96d16f77fe", + "721050d3-0af2-4333-8866-2f33d6680cfa", + "7ef5d4a6-c5aa-426d-b46d-722a33f1da52", + "580e2cb4-4f4c-4a43-894e-303c1473e650" + ], + "columns": { + "3c4357a4-b3b2-43f2-8bf3-ec96d16f77fe": { + "dataType": "string", + "isBucketed": true, + "label": "Top 3 values of DestCityName", + "operationType": "terms", + "params": { + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "7ef5d4a6-c5aa-426d-b46d-722a33f1da52", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": true, + "parentFormat": { + "id": "terms" + }, + "size": 3 + }, + "scale": "ordinal", + "sourceField": "DestCityName" + }, + "580e2cb4-4f4c-4a43-894e-303c1473e650": { + "customLabel": true, + "dataType": "number", + "isBucketed": false, + "label": "DistanceKilometers", + "operationType": "median", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "DistanceKilometers" + }, + "721050d3-0af2-4333-8866-2f33d6680cfa": { + "dataType": "string", + "isBucketed": true, + "label": "Top 10 values of DestAirportID", + "operationType": "terms", + "params": { + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "7ef5d4a6-c5aa-426d-b46d-722a33f1da52", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": true, + "parentFormat": { + "id": "terms" + }, + "size": 10 + }, + "scale": "ordinal", + "sourceField": "DestAirportID" + }, + "7ef5d4a6-c5aa-426d-b46d-722a33f1da52": { + "customLabel": true, + "dataType": "number", + "isBucketed": false, + "label": "Count", + "operationType": "count", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "___records___" + } + }, + "incompleteColumns": {}, + "sampling": 1 + } + } + }, + "indexpattern": { + "layers": {} + }, + "textBased": { + "layers": {} + } + }, + "filters": [], + "internalReferences": [], + "query": { + "language": "kuery", + "query": "" + }, + "visualization": { + "axisTitlesVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "fittingFunction": "None", + "gridlinesVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "labelsOrientation": { + "x": 0, + "yLeft": 0, + "yRight": 0 + }, + "layers": [ + { + "accessors": [ + "7ef5d4a6-c5aa-426d-b46d-722a33f1da52", + "580e2cb4-4f4c-4a43-894e-303c1473e650" + ], + "layerId": "cb26e91d-0305-436c-96db-b5910b808f6e", + "layerType": "data", + "position": "top", + "seriesType": "bar_stacked", + "showGridlines": false, + "splitAccessor": "721050d3-0af2-4333-8866-2f33d6680cfa", + "xAccessor": "3c4357a4-b3b2-43f2-8bf3-ec96d16f77fe" + } + ], + "legend": { + "isVisible": true, + "position": "right" + }, + "preferredSeriesType": "bar_stacked", + "tickLabelsVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "valueLabels": "hide" + } + }, + "title": "Destination & Distance #2", + "visualizationType": "lnsXY" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:43:29.920Z", + "id": "80a21000-3c32-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "indexpattern-datasource-layer-cb26e91d-0305-436c-96db-b5910b808f6e", + "type": "index-pattern" + }, + { + "id": "2d7bbcf0-3c23-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-2d7bbcf0-3c23-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "65b77510-3c31-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-65b77510-3c31-11ee-8bc8-574823b6bb7b", + "type": "tag" + } + ], + "sort": [ + 1692189809920, + 4294967396 + ], + "type": "lens", + "typeMigrationVersion": "8.9.0", + "updated_at": "2023-08-16T12:43:29.920Z", + "version": "WzEyMiwxXQ==" +} + +{ + "attributes": { + "color": "#aa4016", + "description": "", + "name": "policy" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:41:54.835Z", + "id": "846c6e30-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182514835, + 42 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:41:54.835Z", + "version": "Wzk3LDFd" +} + +{ + "attributes": { + "color": "#aa830b", + "description": "", + "name": "connection" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:42:01.843Z", + "id": "8899c430-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182521843, + 41 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:42:01.843Z", + "version": "Wzk4LDFd" +} + +{ + "attributes": { + "color": "#dd104d", + "description": "", + "name": "users" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:44:20.909Z", + "id": "db7d8dd0-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182660909, + 57 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:44:20.909Z", + "version": "WzExNSwxXQ==" +} + +{ + "attributes": { + "color": "#7aeaaa", + "description": "", + "name": "flights" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:28:21.512Z", + "id": "9fa53080-3c1f-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692181701512, + 10 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:28:21.512Z", + "version": "WzI1LDFd" +} + +{ + "attributes": { + "description": "", + "state": { + "adHocDataViews": {}, + "datasourceStates": { + "formBased": { + "layers": { + "d6d1708e-505b-47b4-b23e-cd883a872588": { + "columnOrder": [ + "da5e742a-a097-487c-b27b-e12aa926a113", + "781363fb-a33e-47db-be26-d20d24cc7635", + "c3db66cd-10a4-4956-8add-abb0c520105c" + ], + "columns": { + "781363fb-a33e-47db-be26-d20d24cc7635": { + "dataType": "number", + "isBucketed": false, + "label": "Median of FlightTimeMin", + "operationType": "median", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "FlightTimeMin" + }, + "c3db66cd-10a4-4956-8add-abb0c520105c": { + "dataType": "number", + "isBucketed": false, + "label": "Median of DistanceMiles", + "operationType": "median", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "DistanceMiles" + }, + "da5e742a-a097-487c-b27b-e12aa926a113": { + "dataType": "date", + "isBucketed": true, + "label": "timestamp", + "operationType": "date_histogram", + "params": { + "dropPartials": false, + "includeEmptyRows": true, + "interval": "auto" + }, + "scale": "interval", + "sourceField": "timestamp" + } + }, + "incompleteColumns": {} + } + } + }, + "indexpattern": { + "layers": {} + }, + "textBased": { + "layers": {} + } + }, + "filters": [], + "internalReferences": [], + "query": { + "language": "kuery", + "query": "" + }, + "visualization": { + "axisTitlesVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "fittingFunction": "None", + "gridlinesVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "labelsOrientation": { + "x": 0, + "yLeft": 0, + "yRight": 0 + }, + "layers": [ + { + "accessors": [ + "781363fb-a33e-47db-be26-d20d24cc7635", + "c3db66cd-10a4-4956-8add-abb0c520105c" + ], + "layerId": "d6d1708e-505b-47b4-b23e-cd883a872588", + "layerType": "data", + "seriesType": "bar_horizontal", + "xAccessor": "da5e742a-a097-487c-b27b-e12aa926a113" + } + ], + "legend": { + "isVisible": true, + "position": "right" + }, + "preferredSeriesType": "bar_horizontal", + "tickLabelsVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "valueLabels": "hide" + } + }, + "title": "Flights Time and Miles", + "visualizationType": "lnsXY" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:51:26.949Z", + "id": "9cf6e950-3c33-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "indexpattern-datasource-layer-d6d1708e-505b-47b4-b23e-cd883a872588", + "type": "index-pattern" + }, + { + "id": "db7d8dd0-3c21-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-db7d8dd0-3c21-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "9fa53080-3c1f-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-9fa53080-3c1f-11ee-8bc8-574823b6bb7b", + "type": "tag" + } + ], + "sort": [ + 1692190286949, + 4294967438 + ], + "type": "lens", + "typeMigrationVersion": "8.9.0", + "updated_at": "2023-08-16T12:51:26.949Z", + "version": "WzE1NiwxXQ==" +} + +{ + "attributes": { + "color": "#6cf890", + "description": "", + "name": "observability" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:35:28.427Z", + "id": "9e1b3fb0-3c20-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182128427, + 25 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:35:28.427Z", + "version": "WzcyLDFd" +} + +{ + "attributes": { + "description": "", + "state": { + "adHocDataViews": {}, + "datasourceStates": { + "formBased": { + "layers": { + "3be92f0c-b6e0-4bb1-b68f-51b8a9924b2a": { + "columnOrder": [ + "4d394c6e-f469-4e14-8913-311ba8ed72e4", + "a77fab82-4ef6-42c1-8959-29f35b1ee7bd", + "bb8f978d-d70b-4d70-8d9e-f2cd49ac286f" + ], + "columns": { + "4d394c6e-f469-4e14-8913-311ba8ed72e4": { + "dataType": "string", + "isBucketed": true, + "label": "Top 10 values of FlightNum", + "operationType": "terms", + "params": { + "accuracyMode": true, + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "bb8f978d-d70b-4d70-8d9e-f2cd49ac286f", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": true, + "parentFormat": { + "id": "terms" + }, + "size": 10 + }, + "scale": "ordinal", + "sourceField": "FlightNum" + }, + "a77fab82-4ef6-42c1-8959-29f35b1ee7bd": { + "dataType": "string", + "isBucketed": true, + "label": "Top 3 values of Origin", + "operationType": "terms", + "params": { + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "bb8f978d-d70b-4d70-8d9e-f2cd49ac286f", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": true, + "parentFormat": { + "id": "terms" + }, + "size": 3 + }, + "scale": "ordinal", + "sourceField": "Origin" + }, + "bb8f978d-d70b-4d70-8d9e-f2cd49ac286f": { + "dataType": "number", + "isBucketed": false, + "label": "Unique count of FlightDelayType", + "operationType": "unique_count", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "FlightDelayType" + } + }, + "ignoreGlobalFilters": false, + "incompleteColumns": {}, + "sampling": 1 + } + } + }, + "indexpattern": { + "layers": {} + }, + "textBased": { + "layers": {} + } + }, + "filters": [], + "internalReferences": [], + "query": { + "language": "kuery", + "query": "" + }, + "visualization": { + "gridConfig": { + "isCellLabelVisible": false, + "isXAxisLabelVisible": true, + "isXAxisTitleVisible": false, + "isYAxisLabelVisible": true, + "isYAxisTitleVisible": false, + "type": "heatmap_grid" + }, + "layerId": "3be92f0c-b6e0-4bb1-b68f-51b8a9924b2a", + "layerType": "data", + "legend": { + "isVisible": true, + "position": "right", + "type": "heatmap_legend" + }, + "shape": "heatmap", + "valueAccessor": "bb8f978d-d70b-4d70-8d9e-f2cd49ac286f", + "xAccessor": "4d394c6e-f469-4e14-8913-311ba8ed72e4", + "yAccessor": "a77fab82-4ef6-42c1-8959-29f35b1ee7bd" + } + }, + "title": "Delays #3", + "visualizationType": "lnsHeatmap" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:44:27.586Z", + "id": "a3013220-3c32-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "indexpattern-datasource-layer-3be92f0c-b6e0-4bb1-b68f-51b8a9924b2a", + "type": "index-pattern" + }, + { + "id": "61030b30-3c25-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-61030b30-3c25-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "b76fbc30-3c1f-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-b76fbc30-3c1f-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "5e9837a0-3c23-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-5e9837a0-3c23-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "b479adb0-3c1f-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-b479adb0-3c1f-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "73e07020-3c21-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-73e07020-3c21-11ee-8bc8-574823b6bb7b", + "type": "tag" + } + ], + "sort": [ + 1692189867586, + 4294967407 + ], + "type": "lens", + "typeMigrationVersion": "8.9.0", + "updated_at": "2023-08-16T12:44:27.586Z", + "version": "WzEyNCwxXQ==" +} + +{ + "attributes": { + "color": "#c51883", + "description": "", + "name": "events" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:35:44.641Z", + "id": "a7c54f10-3c20-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182144641, + 27 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:35:44.641Z", + "version": "Wzc0LDFd" +} + +{ + "attributes": { + "color": "#e5f434", + "description": "", + "name": "image" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:42:54.315Z", + "id": "a7e05bb0-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182574315, + 43 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:42:54.315Z", + "version": "WzEwMiwxXQ==" +} + +{ + "attributes": { + "color": "#87029b", + "description": "", + "name": "traffic" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:28:37.836Z", + "id": "a96008c0-3c1f-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692181717836, + 11 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:28:37.836Z", + "version": "WzI2LDFd" +} + +{ + "attributes": { + "color": "#f042b0", + "description": "", + "name": "media" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:42:57.877Z", + "id": "a9ffe050-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182577877, + 44 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:42:57.877Z", + "version": "WzEwMywxXQ==" +} + +{ + "attributes": { + "color": "#68332b", + "description": "", + "name": "web" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:28:43.530Z", + "id": "acc4dea0-3c1f-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692181723530, + 13 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:28:43.530Z", + "version": "WzI3LDFd" +} + +{ + "attributes": { + "color": "#20ccba", + "description": "", + "name": "doc" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:43:02.766Z", + "id": "ace9e0e0-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182582766, + 46 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:43:02.766Z", + "version": "WzEwNCwxXQ==" +} + +{ + "attributes": { + "color": "#483808", + "description": "", + "name": "docs" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:43:06.537Z", + "id": "af294990-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182586537, + 53 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:43:06.537Z", + "version": "WzEwNSwxXQ==" +} + +{ + "attributes": { + "description": "", + "state": { + "adHocDataViews": {}, + "datasourceStates": { + "formBased": { + "layers": { + "5861e7b7-9a07-4e4a-bb6e-6d8ac5fd8906": { + "columnOrder": [ + "248fe449-ee57-4e77-8fa3-7a4840ce73d2", + "c0b3784b-1a0e-478f-8d84-aeb65def20e8", + "ed8ddd99-72ba-434e-9542-922fe98df7e6" + ], + "columns": { + "248fe449-ee57-4e77-8fa3-7a4840ce73d2": { + "dataType": "string", + "isBucketed": true, + "label": "Top 4 values of Carrier", + "operationType": "terms", + "params": { + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "ed8ddd99-72ba-434e-9542-922fe98df7e6", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": true, + "parentFormat": { + "id": "terms" + }, + "size": 4 + }, + "scale": "ordinal", + "sourceField": "Carrier" + }, + "c0b3784b-1a0e-478f-8d84-aeb65def20e8": { + "dataType": "date", + "isBucketed": true, + "label": "timestamp", + "operationType": "date_histogram", + "params": { + "dropPartials": false, + "includeEmptyRows": true, + "interval": "auto" + }, + "scale": "interval", + "sourceField": "timestamp" + }, + "ed8ddd99-72ba-434e-9542-922fe98df7e6": { + "customLabel": true, + "dataType": "number", + "isBucketed": false, + "label": "FlightNum", + "operationType": "unique_count", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "FlightNum" + } + }, + "incompleteColumns": {}, + "sampling": 1 + } + } + }, + "indexpattern": { + "layers": {} + }, + "textBased": { + "layers": {} + } + }, + "filters": [], + "internalReferences": [], + "query": { + "language": "kuery", + "query": "" + }, + "visualization": { + "axisTitlesVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "fittingFunction": "None", + "gridlinesVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "labelsOrientation": { + "x": 0, + "yLeft": 0, + "yRight": 0 + }, + "layers": [ + { + "accessors": [ + "ed8ddd99-72ba-434e-9542-922fe98df7e6" + ], + "layerId": "5861e7b7-9a07-4e4a-bb6e-6d8ac5fd8906", + "layerType": "data", + "position": "top", + "seriesType": "bar_stacked", + "showGridlines": false, + "splitAccessor": "248fe449-ee57-4e77-8fa3-7a4840ce73d2", + "xAccessor": "c0b3784b-1a0e-478f-8d84-aeb65def20e8" + } + ], + "legend": { + "isVisible": true, + "position": "right" + }, + "preferredSeriesType": "bar_stacked", + "tickLabelsVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "valueLabels": "hide" + } + }, + "title": "Flights by carrier", + "visualizationType": "lnsXY" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:23:24.890Z", + "id": "b26113a0-3c2f-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "indexpattern-datasource-layer-5861e7b7-9a07-4e4a-bb6e-6d8ac5fd8906", + "type": "index-pattern" + } + ], + "sort": [ + 1692188604890, + 4294967342 + ], + "type": "lens", + "typeMigrationVersion": "8.9.0", + "updated_at": "2023-08-16T12:23:24.890Z", + "version": "WzcwLDFd" +} + +{ + "attributes": { + "description": "", + "state": { + "adHocDataViews": {}, + "datasourceStates": { + "formBased": { + "layers": { + "d6d1708e-505b-47b4-b23e-cd883a872588": { + "columnOrder": [ + "da5e742a-a097-487c-b27b-e12aa926a113", + "781363fb-a33e-47db-be26-d20d24cc7635", + "c3db66cd-10a4-4956-8add-abb0c520105c" + ], + "columns": { + "781363fb-a33e-47db-be26-d20d24cc7635": { + "dataType": "number", + "isBucketed": false, + "label": "Median of FlightTimeMin", + "operationType": "median", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "FlightTimeMin" + }, + "c3db66cd-10a4-4956-8add-abb0c520105c": { + "dataType": "number", + "isBucketed": false, + "label": "Median of DistanceMiles", + "operationType": "median", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "DistanceMiles" + }, + "da5e742a-a097-487c-b27b-e12aa926a113": { + "dataType": "date", + "isBucketed": true, + "label": "timestamp", + "operationType": "date_histogram", + "params": { + "dropPartials": false, + "includeEmptyRows": true, + "interval": "auto" + }, + "scale": "interval", + "sourceField": "timestamp" + } + }, + "incompleteColumns": {} + } + } + }, + "indexpattern": { + "layers": {} + }, + "textBased": { + "layers": {} + } + }, + "filters": [], + "internalReferences": [], + "query": { + "language": "kuery", + "query": "" + }, + "visualization": { + "axisTitlesVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "fittingFunction": "None", + "gridlinesVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "labelsOrientation": { + "x": 0, + "yLeft": 0, + "yRight": 0 + }, + "layers": [ + { + "accessors": [ + "781363fb-a33e-47db-be26-d20d24cc7635", + "c3db66cd-10a4-4956-8add-abb0c520105c" + ], + "layerId": "d6d1708e-505b-47b4-b23e-cd883a872588", + "layerType": "data", + "seriesType": "bar_stacked", + "xAccessor": "da5e742a-a097-487c-b27b-e12aa926a113" + } + ], + "legend": { + "isVisible": true, + "position": "right" + }, + "preferredSeriesType": "bar_stacked", + "tickLabelsVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "valueLabels": "hide" + } + }, + "title": "Flights Time and Miles #2", + "visualizationType": "lnsXY" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:52:03.695Z", + "id": "b2dde7f0-3c33-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "indexpattern-datasource-layer-d6d1708e-505b-47b4-b23e-cd883a872588", + "type": "index-pattern" + }, + { + "id": "1ce38c10-3c32-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-1ce38c10-3c32-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "9fa53080-3c1f-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-9fa53080-3c1f-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "40357070-3c23-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-40357070-3c23-11ee-8bc8-574823b6bb7b", + "type": "tag" + } + ], + "sort": [ + 1692190323695, + 4294967443 + ], + "type": "lens", + "typeMigrationVersion": "8.9.0", + "updated_at": "2023-08-16T12:52:03.695Z", + "version": "WzE1OSwxXQ==" +} + +{ + "attributes": { + "color": "#80b199", + "description": "", + "name": "payload" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:43:17.604Z", + "id": "b5c1fa40-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182597604, + 50 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:43:17.604Z", + "version": "WzEwOCwxXQ==" +} + +{ + "attributes": { + "color": "#a523ef", + "description": "", + "name": "content" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:43:33.073Z", + "id": "befa5c10-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182613073, + 51 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:43:33.073Z", + "version": "WzEwOSwxXQ==" +} + +{ + "attributes": { + "description": "", + "state": { + "adHocDataViews": {}, + "datasourceStates": { + "formBased": { + "layers": { + "5861e7b7-9a07-4e4a-bb6e-6d8ac5fd8906": { + "columnOrder": [ + "248fe449-ee57-4e77-8fa3-7a4840ce73d2", + "c0b3784b-1a0e-478f-8d84-aeb65def20e8", + "ed8ddd99-72ba-434e-9542-922fe98df7e6" + ], + "columns": { + "248fe449-ee57-4e77-8fa3-7a4840ce73d2": { + "dataType": "string", + "isBucketed": true, + "label": "Top 4 values of Carrier", + "operationType": "terms", + "params": { + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "ed8ddd99-72ba-434e-9542-922fe98df7e6", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": true, + "parentFormat": { + "id": "terms" + }, + "size": 4 + }, + "scale": "ordinal", + "sourceField": "Carrier" + }, + "c0b3784b-1a0e-478f-8d84-aeb65def20e8": { + "dataType": "date", + "isBucketed": true, + "label": "timestamp", + "operationType": "date_histogram", + "params": { + "dropPartials": false, + "includeEmptyRows": true, + "interval": "auto" + }, + "scale": "interval", + "sourceField": "timestamp" + }, + "ed8ddd99-72ba-434e-9542-922fe98df7e6": { + "customLabel": true, + "dataType": "number", + "isBucketed": false, + "label": "FlightNum", + "operationType": "unique_count", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "FlightNum" + } + }, + "incompleteColumns": {}, + "sampling": 1 + } + } + }, + "indexpattern": { + "layers": {} + }, + "textBased": { + "layers": {} + } + }, + "filters": [], + "internalReferences": [], + "query": { + "language": "kuery", + "query": "" + }, + "visualization": { + "axisTitlesVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "fittingFunction": "None", + "gridlinesVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "labelsOrientation": { + "x": 0, + "yLeft": 0, + "yRight": 0 + }, + "layers": [ + { + "accessors": [ + "ed8ddd99-72ba-434e-9542-922fe98df7e6" + ], + "layerId": "5861e7b7-9a07-4e4a-bb6e-6d8ac5fd8906", + "layerType": "data", + "position": "top", + "seriesType": "bar_percentage_stacked", + "showGridlines": false, + "splitAccessor": "248fe449-ee57-4e77-8fa3-7a4840ce73d2", + "xAccessor": "c0b3784b-1a0e-478f-8d84-aeb65def20e8" + } + ], + "legend": { + "isVisible": true, + "position": "right" + }, + "preferredSeriesType": "bar_percentage_stacked", + "tickLabelsVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "valueLabels": "hide" + } + }, + "title": "Flights by carrier #2", + "visualizationType": "lnsXY" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:23:46.362Z", + "id": "bf2d71a0-3c2f-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "indexpattern-datasource-layer-5861e7b7-9a07-4e4a-bb6e-6d8ac5fd8906", + "type": "index-pattern" + } + ], + "sort": [ + 1692188626362, + 4294967340 + ], + "type": "lens", + "typeMigrationVersion": "8.9.0", + "updated_at": "2023-08-16T12:23:46.362Z", + "version": "WzcyLDFd" +} + +{ + "attributes": { + "description": "", + "state": { + "adHocDataViews": {}, + "datasourceStates": { + "formBased": { + "layers": { + "e52bf9e1-21bf-478e-ad85-2d43a775ba53": { + "columnOrder": [ + "188582f5-ab1c-437b-adaf-f9505f2c1b8a", + "9c9d8820-36b4-45d4-b0b0-ee548816ab03" + ], + "columns": { + "188582f5-ab1c-437b-adaf-f9505f2c1b8a": { + "dataType": "string", + "isBucketed": true, + "label": "Top 10 values of DestCountry", + "operationType": "terms", + "params": { + "accuracyMode": true, + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "9c9d8820-36b4-45d4-b0b0-ee548816ab03", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": true, + "parentFormat": { + "id": "terms" + }, + "size": 10 + }, + "scale": "ordinal", + "sourceField": "DestCountry" + }, + "9c9d8820-36b4-45d4-b0b0-ee548816ab03": { + "dataType": "number", + "isBucketed": false, + "label": "Sum of DistanceMiles", + "operationType": "sum", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "DistanceMiles" + } + }, + "incompleteColumns": {}, + "sampling": 1 + } + } + }, + "indexpattern": { + "layers": {} + }, + "textBased": { + "layers": {} + } + }, + "filters": [], + "internalReferences": [], + "query": { + "language": "kuery", + "query": "" + }, + "visualization": { + "layers": [ + { + "categoryDisplay": "default", + "layerId": "e52bf9e1-21bf-478e-ad85-2d43a775ba53", + "layerType": "data", + "legendDisplay": "default", + "metrics": [ + "9c9d8820-36b4-45d4-b0b0-ee548816ab03" + ], + "nestedLegend": false, + "numberDisplay": "percent", + "primaryGroups": [ + "188582f5-ab1c-437b-adaf-f9505f2c1b8a" + ] + } + ], + "shape": "donut" + } + }, + "title": "Top Destinations -Donut", + "visualizationType": "lnsPie" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:45:21.908Z", + "id": "c3621340-3c32-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "indexpattern-datasource-layer-e52bf9e1-21bf-478e-ad85-2d43a775ba53", + "type": "index-pattern" + }, + { + "id": "51f867e0-3c23-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-51f867e0-3c23-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "40357070-3c23-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-40357070-3c23-11ee-8bc8-574823b6bb7b", + "type": "tag" + }, + { + "id": "21e1eb80-3c23-11ee-8bc8-574823b6bb7b", + "name": "tag-ref-21e1eb80-3c23-11ee-8bc8-574823b6bb7b", + "type": "tag" + } + ], + "sort": [ + 1692189921908, + 4294967412 + ], + "type": "lens", + "typeMigrationVersion": "8.9.0", + "updated_at": "2023-08-16T12:45:21.908Z", + "version": "WzEyNywxXQ==" +} + +{ + "attributes": { + "description": "", + "state": { + "adHocDataViews": {}, + "datasourceStates": { + "formBased": { + "layers": { + "cb26e91d-0305-436c-96db-b5910b808f6e": { + "columnOrder": [ + "721050d3-0af2-4333-8866-2f33d6680cfa", + "3c4357a4-b3b2-43f2-8bf3-ec96d16f77fe", + "7ef5d4a6-c5aa-426d-b46d-722a33f1da52", + "580e2cb4-4f4c-4a43-894e-303c1473e650" + ], + "columns": { + "3c4357a4-b3b2-43f2-8bf3-ec96d16f77fe": { + "dataType": "string", + "isBucketed": true, + "label": "Top 3 values of DestCityName", + "operationType": "terms", + "params": { + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "7ef5d4a6-c5aa-426d-b46d-722a33f1da52", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": true, + "parentFormat": { + "id": "terms" + }, + "size": 3 + }, + "scale": "ordinal", + "sourceField": "DestCityName" + }, + "580e2cb4-4f4c-4a43-894e-303c1473e650": { + "customLabel": true, + "dataType": "number", + "isBucketed": false, + "label": "DistanceKilometers", + "operationType": "median", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "DistanceKilometers" + }, + "721050d3-0af2-4333-8866-2f33d6680cfa": { + "dataType": "string", + "isBucketed": true, + "label": "Top 10 values of DestAirportID", + "operationType": "terms", + "params": { + "exclude":[], + "excludeIsRegex": false, + "include":[], + "includeIsRegex": false, + "missingBucket": false, + "orderBy": { + "columnId": "7ef5d4a6-c5aa-426d-b46d-722a33f1da52", + "type": "column" + }, + "orderDirection": "desc", + "otherBucket": true, + "parentFormat": { + "id": "terms" + }, + "size": 10 + }, + "scale": "ordinal", + "sourceField": "DestAirportID" + }, + "7ef5d4a6-c5aa-426d-b46d-722a33f1da52": { + "customLabel": true, + "dataType": "number", + "isBucketed": false, + "label": "Count", + "operationType": "count", + "params": { + "emptyAsNull": true + }, + "scale": "ratio", + "sourceField": "___records___" + } + }, + "incompleteColumns": {}, + "sampling": 1 + } + } + }, + "indexpattern": { + "layers": {} + }, + "textBased": { + "layers": {} + } + }, + "filters": [], + "internalReferences": [], + "query": { + "language": "kuery", + "query": "" + }, + "visualization": { + "axisTitlesVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "fittingFunction": "None", + "gridlinesVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "labelsOrientation": { + "x": 0, + "yLeft": 0, + "yRight": 0 + }, + "layers": [ + { + "accessors": [ + "7ef5d4a6-c5aa-426d-b46d-722a33f1da52", + "580e2cb4-4f4c-4a43-894e-303c1473e650" + ], + "layerId": "cb26e91d-0305-436c-96db-b5910b808f6e", + "layerType": "data", + "position": "top", + "seriesType": "bar_stacked", + "showGridlines": false, + "splitAccessor": "3c4357a4-b3b2-43f2-8bf3-ec96d16f77fe", + "xAccessor": "721050d3-0af2-4333-8866-2f33d6680cfa" + } + ], + "legend": { + "isVisible": true, + "position": "right" + }, + "preferredSeriesType": "bar_stacked", + "tickLabelsVisibilitySettings": { + "x": true, + "yLeft": true, + "yRight": true + }, + "valueLabels": "hide" + } + }, + "title": "Destination & Distance", + "visualizationType": "lnsXY" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T12:31:13.732Z", + "id": "c9d4b040-3c30-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [ + { + "id": "d3d7af60-4c81-11e8-b3d7-01146121b73d", + "name": "indexpattern-datasource-layer-cb26e91d-0305-436c-96db-b5910b808f6e", + "type": "index-pattern" + } + ], + "sort": [ + 1692189073732, + 4294967351 + ], + "type": "lens", + "typeMigrationVersion": "8.9.0", + "updated_at": "2023-08-16T12:31:13.732Z", + "version": "WzkzLDFd" +} + +{ + "attributes": { + "color": "#5e7c98", + "description": "", + "name": "machine learning" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:44:02.199Z", + "id": "d056a270-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182642199, + 47 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:44:02.199Z", + "version": "WzExMCwxXQ==" +} + +{ + "attributes": { + "color": "#3ce2ee", + "description": "", + "name": "elastic" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:29:44.128Z", + "id": "d0e36400-3c1f-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692181784128, + 16 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:29:44.128Z", + "version": "WzQ0LDFd" +} + +{ + "attributes": { + "color": "#80b563", + "description": "", + "name": "kbn" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:37:03.700Z", + "id": "d6e49a30-3c20-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182223700, + 29 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:37:03.700Z", + "version": "Wzc3LDFd" +} + +{ + "attributes": { + "color": "#6f0dc1", + "description": "", + "name": "mock" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:29:59.255Z", + "id": "d9e79670-3c1f-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692181799255, + 18 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:29:59.255Z", + "version": "WzQ4LDFd" +} + +{ + "attributes": { + "color": "#f26e00", + "description": "", + "name": "test" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:37:08.995Z", + "id": "da0cb530-3c20-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182228995, + 30 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:37:08.995Z", + "version": "Wzc4LDFd" +} + +{ + "attributes": { + "color": "#bd0dbd", + "description": "", + "name": "prod" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:37:13.464Z", + "id": "dcb69f80-3c20-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182233464, + 31 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:37:13.464Z", + "version": "Wzc5LDFd" +} + +{ + "attributes": { + "color": "#b90b18", + "description": "", + "name": "roles" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:44:24.532Z", + "id": "dda66140-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182664532, + 58 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:44:24.532Z", + "version": "WzExOCwxXQ==" +} + +{ + "attributes": { + "color": "#72c184", + "description": "", + "name": "ci" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:44:29.509Z", + "id": "e09dcf50-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182669509, + 60 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:44:29.509Z", + "version": "WzExOSwxXQ==" +} + +{ + "attributes": { + "color": "#d6e046", + "description": "", + "name": "transforms" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:44:36.205Z", + "id": "e49b89d0-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182676205, + 54 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:44:36.205Z", + "version": "WzEyMCwxXQ==" +} + +{ + "attributes": { + "color": "#583df4", + "description": "", + "name": "migration" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:44:58.128Z", + "id": "f1acb900-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182698128, + 55 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:44:58.128Z", + "version": "WzEyMSwxXQ==" +} + +{ + "attributes": { + "color": "#108c83", + "description": "", + "name": "cluster" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:45:04.002Z", + "id": "f52d0620-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182704002, + 59 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:45:04.002Z", + "version": "WzEyMiwxXQ==" +} + +{ + "attributes": { + "color": "#96c4c2", + "description": "", + "name": "logstash" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:45:14.430Z", + "id": "fb6435e0-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182714430, + 56 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:45:14.430Z", + "version": "WzEyMywxXQ==" +} + +{ + "attributes": { + "color": "#54bd93", + "description": "", + "name": "trips" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:30:56.133Z", + "id": "fbce7b50-3c1f-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692181856133, + 22 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:30:56.133Z", + "version": "WzU4LDFd" +} + +{ + "attributes": { + "color": "#043eea", + "description": "", + "name": "ingest" + }, + "coreMigrationVersion": "8.8.0", + "created_at": "2023-08-16T10:45:19.900Z", + "id": "fea6ddc0-3c21-11ee-8bc8-574823b6bb7b", + "managed": false, + "references": [], + "sort": [ + 1692182719900, + 63 + ], + "type": "tag", + "typeMigrationVersion": "8.0.0", + "updated_at": "2023-08-16T10:45:19.900Z", + "version": "WzEyNCwxXQ==" +} + +{ + "attributes":{ + "color":"#a13120", + "description":"", + "name":"carrier" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:48:50.899Z", + "id":"14045230-4021-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:48:50.899Z", + "version":"WzEyMzUsMV0=" +} + +{ + "attributes":{ + "color":"#881325", + "description":"visualizations", + "name":"viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:46:30.299Z", + "id":"c0364fa0-4020-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:46:30.299Z", + "version":"WzEyMDQsMV0=" +} + +{ + "attributes":{ + "color":"#d5732c", + "description":"viz", + "name":"viz data" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:46:16.518Z", + "id":"b7ffa660-4020-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:46:16.518Z", + "version":"WzEyMDMsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"pie", + "name":"pie viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:45:43.551Z", + "id":"a45948f0-4020-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:45:43.551Z", + "version":"WzEyMDIsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"pie", + "name":"pie viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:45:41.565Z", + "id":"a32a3ed0-4020-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:45:41.565Z", + "version":"WzEyMDEsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"pie", + "name":"pie viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:45:39.597Z", + "id":"a1fdf3d0-4020-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:45:39.597Z", + "version":"WzEyMDAsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"pie", + "name":"pie viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:45:37.420Z", + "id":"a0b1c4c0-4020-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:45:37.420Z", + "version":"WzExOTksMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"pie", + "name":"pie viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:45:35.496Z", + "id":"9f8c3080-4020-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:45:35.496Z", + "version":"WzExOTgsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"pie", + "name":"pie viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:45:32.861Z", + "id":"9dfa1ed0-4020-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:45:32.861Z", + "version":"WzExOTcsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"donut", + "name":"donut viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:45:07.352Z", + "id":"8ec5c180-4020-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:45:07.352Z", + "version":"WzExOTYsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"donut", + "name":"donut viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:45:05.396Z", + "id":"8d9b4b40-4020-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:45:05.396Z", + "version":"WzExOTUsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"donut", + "name":"donut viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:45:03.256Z", + "id":"8c54c180-4020-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:45:03.256Z", + "version":"WzExOTQsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"donut", + "name":"donut viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:45:00.628Z", + "id":"8ac3c140-4020-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:45:00.628Z", + "version":"WzExOTMsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"donut", + "name":"donut viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:44:58.184Z", + "id":"894ed480-4020-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:44:58.184Z", + "version":"WzExOTIsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"donut", + "name":"donut viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:44:56.044Z", + "id":"88084ac0-4020-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:44:56.044Z", + "version":"WzExOTEsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"donut", + "name":"donut viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:44:54.109Z", + "id":"86e108d0-4020-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:44:54.109Z", + "version":"WzExOTAsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"donut", + "name":"donut viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:44:52.448Z", + "id":"85e39600-4020-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:44:52.448Z", + "version":"WzExODksMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"donut", + "name":"donut viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:44:49.629Z", + "id":"843570d0-4020-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:44:49.629Z", + "version":"WzExODgsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"xy", + "name":"xy viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:23:34.535Z", + "id":"8c318970-401d-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:23:34.535Z", + "version":"WzExNzksMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"xy", + "name":"xy viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:23:32.348Z", + "id":"8ae3d3c0-401d-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:23:32.348Z", + "version":"WzExNzgsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"xy", + "name":"xy viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:23:30.318Z", + "id":"89ae12e0-401d-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:23:30.318Z", + "version":"WzExNzcsMV0=" +} + +{ + "attributes":{ + "color":"#64be14", + "description":"OMDswjeovAMPQDwm9406ljODd6ljhvrm4YwUnjdyHrT8XPls7qGseQEVnbbRDTqxc1tJpnRbNZzLXImPEuJuc43qCNaj2tTz3ryf", + "name":"long string" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:23:03.635Z", + "id":"79c69230-401d-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:23:03.635Z", + "version":"WzExNzYsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"bar", + "name":"bar viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:21:53.111Z", + "id":"4fbd7670-401d-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:21:53.111Z", + "version":"WzExNjYsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"bar", + "name":"bar viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:21:50.890Z", + "id":"4e6a90a0-401d-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:21:50.890Z", + "version":"WzExNjUsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"tsvb", + "name":"tsvb viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:21:32.694Z", + "id":"43921360-401d-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:21:32.694Z", + "version":"WzExNjQsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"tsvb", + "name":"tsvb viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:21:25.541Z", + "id":"3f4e9d50-401d-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:21:25.541Z", + "version":"WzExNjMsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"tsvb", + "name":"tsvb viz" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:21:16.768Z", + "id":"3a13f600-401d-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:21:16.768Z", + "version":"WzExNjIsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test ABC", + "name":"test B" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:20:05.809Z", + "id":"0fc87a10-401d-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:20:05.809Z", + "version":"WzExNTMsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test ABC", + "name":"test B" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:20:01.643Z", + "id":"0d4ccbb0-401d-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:20:01.643Z", + "version":"WzExNTIsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test ABC", + "name":"test B" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:19:59.115Z", + "id":"0bcb0db0-401d-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:19:59.115Z", + "version":"WzExNTEsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test ABC", + "name":"test B" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:19:57.114Z", + "id":"0a99b9a0-401d-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:19:57.114Z", + "version":"WzExNTAsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test ABC", + "name":"test B" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:19:54.914Z", + "id":"094a0820-401d-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:19:54.914Z", + "version":"WzExNDksMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test ABC", + "name":"test B" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:19:52.848Z", + "id":"080ec900-401d-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:19:52.848Z", + "version":"WzExNDgsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test ABC", + "name":"test B" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:19:50.793Z", + "id":"06d53790-401d-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:19:50.793Z", + "version":"WzExNDcsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test ABC", + "name":"test A" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:19:41.573Z", + "id":"01565b50-401d-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:19:41.573Z", + "version":"WzExNDYsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test ABC", + "name":"test A" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:19:37.791Z", + "id":"ff1544f0-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:19:37.791Z", + "version":"WzExNDUsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test ABC", + "name":"test A" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:19:35.809Z", + "id":"fde6d710-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:19:35.809Z", + "version":"WzExNDQsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test ABC", + "name":"test A" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:19:33.864Z", + "id":"fcbe0e80-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:19:33.864Z", + "version":"WzExNDMsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test cases", + "name":"test cases" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:18:08.259Z", + "id":"c9b7c530-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:18:08.259Z", + "version":"WzExNDIsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test cases", + "name":"test cases" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:18:05.901Z", + "id":"c84ff7d0-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:18:05.901Z", + "version":"WzExNDEsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test cases", + "name":"test cases" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:18:03.289Z", + "id":"c6c16890-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:18:03.289Z", + "version":"WzExNDAsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test cases", + "name":"test cases" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:18:01.153Z", + "id":"c57b7b10-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:18:01.153Z", + "version":"WzExMzksMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test cases", + "name":"test cases" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:17:59.441Z", + "id":"c4764010-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:17:59.441Z", + "version":"WzExMzgsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test cases", + "name":"test cases" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:17:57.633Z", + "id":"c3625f10-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:17:57.633Z", + "version":"WzExMzcsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test cases", + "name":"test cases" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:17:53.465Z", + "id":"c0e66290-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:17:53.465Z", + "version":"WzExMzYsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test cases", + "name":"test cases" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:17:51.117Z", + "id":"bf801bd0-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:17:51.117Z", + "version":"WzExMzUsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test cases", + "name":"test cases" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:17:49.071Z", + "id":"be47e9f0-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:17:49.071Z", + "version":"WzExMzQsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test cases", + "name":"test cases" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:17:46.863Z", + "id":"bcf6fff0-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:17:46.863Z", + "version":"WzExMzMsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test cases", + "name":"test cases" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:17:44.730Z", + "id":"bbb187a0-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:17:44.730Z", + "version":"WzExMzIsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test cases", + "name":"test cases" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:17:42.821Z", + "id":"ba8e3d50-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:17:42.821Z", + "version":"WzExMzEsMV0=" +} + + +{ + "attributes":{ + "color":"#e0469e", + "description":"test cases", + "name":"test cases" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:17:40.949Z", + "id":"b9709850-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:17:40.949Z", + "version":"WzExMzAsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test cases", + "name":"test cases" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:17:38.768Z", + "id":"b823cd00-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:17:38.768Z", + "version":"WzExMjksMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test news", + "name":"news" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:17:20.934Z", + "id":"ad828c60-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:17:20.934Z", + "version":"WzExMjgsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test news", + "name":"news" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:17:18.720Z", + "id":"ac30b800-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:17:18.720Z", + "version":"WzExMjcsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test news", + "name":"news" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:17:16.559Z", + "id":"aae6f9f0-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:17:16.559Z", + "version":"WzExMjYsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test news", + "name":"news" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:17:14.212Z", + "id":"a980da40-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:17:14.212Z", + "version":"WzExMjUsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test news", + "name":"news" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:17:11.174Z", + "id":"a7b14a60-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:17:11.174Z", + "version":"WzExMjQsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test news", + "name":"news_2" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:16:55.184Z", + "id":"9e296900-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:16:55.184Z", + "version":"WzExMjMsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test news", + "name":"news_1" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:16:44.460Z", + "id":"97c50ec0-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:16:44.460Z", + "version":"WzExMjIsMV0=" +} + +{ + "attributes":{ + "color":"#e0469e", + "description":"test news", + "name":"news" + }, + "coreMigrationVersion":"8.8.0", + "created_at":"2023-08-21T12:15:58.025Z", + "id":"7c17a390-401c-11ee-b3b5-c370b5546d0e", + "managed":false, + "references":[], + "type":"tag", + "typeMigrationVersion":"8.0.0", + "updated_at":"2023-08-21T12:15:58.025Z", + "version":"WzExMTMsMV0=" +} diff --git a/x-pack/plugins/actions/common/routes/connector/response/index.ts b/x-pack/plugins/actions/common/routes/connector/response/index.ts new file mode 100644 index 0000000000000..cfc4d4a4a0098 --- /dev/null +++ b/x-pack/plugins/actions/common/routes/connector/response/index.ts @@ -0,0 +1,17 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +// Latest +export type { ConnectorResponse, ActionTypeConfig } from './types/latest'; +export { connectorResponseSchema } from './schemas/latest'; + +// v1 +export type { + ConnectorResponse as ConnectorResponseV1, + ActionTypeConfig as ActionTypeConfigV1, +} from './types/v1'; +export { connectorResponseSchema as connectorResponseSchemaV1 } from './schemas/v1'; diff --git a/x-pack/test/security_solution_cypress/cypress/tags.ts b/x-pack/plugins/actions/common/routes/connector/response/schemas/latest.ts similarity index 68% rename from x-pack/test/security_solution_cypress/cypress/tags.ts rename to x-pack/plugins/actions/common/routes/connector/response/schemas/latest.ts index a0698a4c40951..96d490935d339 100644 --- a/x-pack/test/security_solution_cypress/cypress/tags.ts +++ b/x-pack/plugins/actions/common/routes/connector/response/schemas/latest.ts @@ -5,8 +5,4 @@ * 2.0. */ -export const tag = { - SERVERLESS: '@serverless', - ESS: '@ess', - BROKEN_IN_SERVERLESS: '@brokenInServerless', -}; +export { connectorResponseSchema } from './v1'; diff --git a/x-pack/plugins/actions/common/routes/connector/response/schemas/v1.ts b/x-pack/plugins/actions/common/routes/connector/response/schemas/v1.ts new file mode 100644 index 0000000000000..6726aa740cf87 --- /dev/null +++ b/x-pack/plugins/actions/common/routes/connector/response/schemas/v1.ts @@ -0,0 +1,20 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { schema } from '@kbn/config-schema'; + +export const connectorResponseSchema = schema.object({ + id: schema.string(), + name: schema.string(), + config: schema.maybe(schema.recordOf(schema.string(), schema.any())), + connector_type_id: schema.string(), + is_missing_secrets: schema.maybe(schema.boolean()), + is_preconfigured: schema.boolean(), + is_deprecated: schema.boolean(), + is_system_action: schema.boolean(), + referenced_by_count: schema.number(), +}); diff --git a/x-pack/plugins/actions/common/routes/connector/response/types/latest.ts b/x-pack/plugins/actions/common/routes/connector/response/types/latest.ts new file mode 100644 index 0000000000000..dce95e7328199 --- /dev/null +++ b/x-pack/plugins/actions/common/routes/connector/response/types/latest.ts @@ -0,0 +1,7 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +export * from './v1'; diff --git a/x-pack/plugins/actions/common/routes/connector/response/types/v1.ts b/x-pack/plugins/actions/common/routes/connector/response/types/v1.ts new file mode 100644 index 0000000000000..9f49c048f92bf --- /dev/null +++ b/x-pack/plugins/actions/common/routes/connector/response/types/v1.ts @@ -0,0 +1,24 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { TypeOf } from '@kbn/config-schema'; +import { connectorResponseSchemaV1 } from '..'; + +export type ActionTypeConfig = Record; +type ConnectorResponseSchemaType = TypeOf; + +export interface ConnectorResponse { + id: ConnectorResponseSchemaType['id']; + name: ConnectorResponseSchemaType['name']; + config?: Config; + connector_type_id: ConnectorResponseSchemaType['connector_type_id']; + is_missing_secrets?: ConnectorResponseSchemaType['is_missing_secrets']; + is_preconfigured: ConnectorResponseSchemaType['is_preconfigured']; + is_deprecated: ConnectorResponseSchemaType['is_deprecated']; + is_system_action: ConnectorResponseSchemaType['is_system_action']; + referenced_by_count: ConnectorResponseSchemaType['referenced_by_count']; +} diff --git a/x-pack/plugins/actions/docs/openapi/bundled.json b/x-pack/plugins/actions/docs/openapi/bundled.json index 59ca423963caf..67191da3842d6 100644 --- a/x-pack/plugins/actions/docs/openapi/bundled.json +++ b/x-pack/plugins/actions/docs/openapi/bundled.json @@ -122,6 +122,9 @@ "examples": { "createIndexConnectorRequest": { "$ref": "#/components/examples/create_index_connector_request" + }, + "createWebhookConnectorRequest": { + "$ref": "#/components/examples/create_webhook_connector_request" } } } @@ -138,6 +141,9 @@ "examples": { "createIndexConnectorResponse": { "$ref": "#/components/examples/create_index_connector_response" + }, + "createWebhookConnectorResponse": { + "$ref": "#/components/examples/create_webhook_connector_response" } } } @@ -2603,13 +2609,88 @@ "title": "Connector request properties for a Webhook connector", "description": "Defines properties for connectors when type is `.webhook`.", "type": "object", - "additionalProperties": true + "properties": { + "authType": { + "type": "string", + "enum": [ + "webhook-authentication-basic", + "webhook-authentication-ssl", + "null" + ], + "description": "The type of authentication to use: basic, SSL, or none.\n" + }, + "ca": { + "type": "string", + "description": "A base64 encoded version of the certificate authority file that the connector can trust to sign and validate certificates. This option is available for all authentication types.\n" + }, + "certType": { + "type": "string", + "description": "If the `authType` is `webhook-authentication-ssl`, specifies whether the certificate authentication data is in a CRT and key file format or a PFX file format.\n", + "enum": [ + "ssl-crt-key", + "ssl-pfx" + ] + }, + "hasAuth": { + "type": "boolean", + "description": "If `true`, a user name and password must be provided for login type authentication.\n" + }, + "headers": { + "type": "object", + "nullable": true, + "description": "A set of key-value pairs sent as headers with the request." + }, + "method": { + "type": "string", + "default": "post", + "enum": [ + "post", + "put" + ], + "description": "The HTTP request method, either `post` or `put`.\n" + }, + "url": { + "type": "string", + "description": "The request URL. If you are using the `xpack.actions.allowedHosts` setting, add the hostname to the allowed hosts.\n" + }, + "verificationMode": { + "type": "string", + "enum": [ + "certificate", + "full", + "none" + ], + "default": "full", + "description": "Controls the verification of certificates. Use `full` to validate that the certificate has an issue date within the `not_before` and `not_after` dates, chains to a trusted certificate authority (CA), and has a hostname or IP address that matches the names within the certificate. Use `certificate` to validate the certificate and verify that it is signed by a trusted authority; this option does not check the certificate hostname. Use `none` to skip certificate validation.\n" + } + } }, "secrets_properties_webhook": { "title": "Connector secrets properties for a Webhook connector", "description": "Defines secrets for connectors when type is `.webhook`.", "type": "object", - "additionalProperties": true + "properties": { + "crt": { + "type": "string", + "description": "If `authType` is `webhook-authentication-ssl` and `certType` is `ssl-crt-key`, it is a base64 encoded version of the CRT or CERT file." + }, + "key": { + "type": "string", + "description": "If `authType` is `webhook-authentication-ssl` and `certType` is `ssl-crt-key`, it is a base64 encoded version of the KEY file." + }, + "pfx": { + "type": "string", + "description": "If `authType` is `webhook-authentication-ssl` and `certType` is `ssl-pfx`, it is a base64 encoded version of the PFX or P12 file." + }, + "password": { + "type": "string", + "description": "The password for HTTP basic authentication or the passphrase for the SSL certificate files. If `hasAuth` is set to `true` and `authType` is `webhook-authentication-basic`, this property is required.\n" + }, + "user": { + "type": "string", + "description": "The username for HTTP basic authentication. If `hasAuth` is set to `true` and `authType` is `webhook-authentication-basic`, this property is required.\n" + } + } }, "create_connector_request_webhook": { "title": "Create Webhook connector request", @@ -4524,6 +4605,24 @@ } } }, + "create_webhook_connector_request": { + "summary": "Create a webhook connector with SSL authentication.", + "value": { + "name": "my-webhook-connector", + "connector_type_id": ".webhook", + "config": { + "method": "post", + "url": "https://example.com", + "authType": "webhook-authentication-ssl", + "certType": "ssl-crt-key" + }, + "secrets": { + "crt": "QmFnIEF0dH...", + "key": "LS0tLS1CRUdJ...", + "password": "my-passphrase" + } + } + }, "create_index_connector_response": { "summary": "A new index connector.", "value": { @@ -4541,6 +4640,27 @@ "is_system_action": false } }, + "create_webhook_connector_response": { + "summary": "A new webhook connector.", + "value": { + "id": "900eb010-3b9d-11ee-a642-8ffbb94e38bd", + "name": "my-webhook-connector", + "config": { + "method": "post", + "url": "https://example.com", + "authType": "webhook-authentication-ssl", + "certType": "ssl-crt-key", + "verificationMode": "full", + "headers": null, + "hasAuth": true + }, + "connector_type_id": ".webhook", + "is_preconfigured": false, + "is_deprecated": false, + "is_missing_secrets": false, + "is_system_action": false + } + }, "get_connector_response": { "summary": "A list of connector types", "value": { diff --git a/x-pack/plugins/actions/docs/openapi/bundled.yaml b/x-pack/plugins/actions/docs/openapi/bundled.yaml index b090dba90a87a..5da86f4563a6c 100644 --- a/x-pack/plugins/actions/docs/openapi/bundled.yaml +++ b/x-pack/plugins/actions/docs/openapi/bundled.yaml @@ -61,6 +61,8 @@ paths: examples: createIndexConnectorRequest: $ref: '#/components/examples/create_index_connector_request' + createWebhookConnectorRequest: + $ref: '#/components/examples/create_webhook_connector_request' responses: '200': description: Indicates a successful call. @@ -71,6 +73,8 @@ paths: examples: createIndexConnectorResponse: $ref: '#/components/examples/create_index_connector_response' + createWebhookConnectorResponse: + $ref: '#/components/examples/create_webhook_connector_response' '401': $ref: '#/components/responses/401' servers: @@ -1753,12 +1757,77 @@ components: title: Connector request properties for a Webhook connector description: Defines properties for connectors when type is `.webhook`. type: object - additionalProperties: true + properties: + authType: + type: string + enum: + - webhook-authentication-basic + - webhook-authentication-ssl + - 'null' + description: | + The type of authentication to use: basic, SSL, or none. + ca: + type: string + description: | + A base64 encoded version of the certificate authority file that the connector can trust to sign and validate certificates. This option is available for all authentication types. + certType: + type: string + description: | + If the `authType` is `webhook-authentication-ssl`, specifies whether the certificate authentication data is in a CRT and key file format or a PFX file format. + enum: + - ssl-crt-key + - ssl-pfx + hasAuth: + type: boolean + description: | + If `true`, a user name and password must be provided for login type authentication. + headers: + type: object + nullable: true + description: A set of key-value pairs sent as headers with the request. + method: + type: string + default: post + enum: + - post + - put + description: | + The HTTP request method, either `post` or `put`. + url: + type: string + description: | + The request URL. If you are using the `xpack.actions.allowedHosts` setting, add the hostname to the allowed hosts. + verificationMode: + type: string + enum: + - certificate + - full + - none + default: full + description: | + Controls the verification of certificates. Use `full` to validate that the certificate has an issue date within the `not_before` and `not_after` dates, chains to a trusted certificate authority (CA), and has a hostname or IP address that matches the names within the certificate. Use `certificate` to validate the certificate and verify that it is signed by a trusted authority; this option does not check the certificate hostname. Use `none` to skip certificate validation. secrets_properties_webhook: title: Connector secrets properties for a Webhook connector description: Defines secrets for connectors when type is `.webhook`. type: object - additionalProperties: true + properties: + crt: + type: string + description: If `authType` is `webhook-authentication-ssl` and `certType` is `ssl-crt-key`, it is a base64 encoded version of the CRT or CERT file. + key: + type: string + description: If `authType` is `webhook-authentication-ssl` and `certType` is `ssl-crt-key`, it is a base64 encoded version of the KEY file. + pfx: + type: string + description: If `authType` is `webhook-authentication-ssl` and `certType` is `ssl-pfx`, it is a base64 encoded version of the PFX or P12 file. + password: + type: string + description: | + The password for HTTP basic authentication or the passphrase for the SSL certificate files. If `hasAuth` is set to `true` and `authType` is `webhook-authentication-basic`, this property is required. + user: + type: string + description: | + The username for HTTP basic authentication. If `hasAuth` is set to `true` and `authType` is `webhook-authentication-basic`, this property is required. create_connector_request_webhook: title: Create Webhook connector request description: | @@ -3130,6 +3199,20 @@ components: connector_type_id: .index config: index: test-index + create_webhook_connector_request: + summary: Create a webhook connector with SSL authentication. + value: + name: my-webhook-connector + connector_type_id: .webhook + config: + method: post + url: https://example.com + authType: webhook-authentication-ssl + certType: ssl-crt-key + secrets: + crt: QmFnIEF0dH... + key: LS0tLS1CRUdJ... + password: my-passphrase create_index_connector_response: summary: A new index connector. value: @@ -3144,6 +3227,24 @@ components: is_deprecated: false is_missing_secrets: false is_system_action: false + create_webhook_connector_response: + summary: A new webhook connector. + value: + id: 900eb010-3b9d-11ee-a642-8ffbb94e38bd + name: my-webhook-connector + config: + method: post + url: https://example.com + authType: webhook-authentication-ssl + certType: ssl-crt-key + verificationMode: full + headers: null + hasAuth: true + connector_type_id: .webhook + is_preconfigured: false + is_deprecated: false + is_missing_secrets: false + is_system_action: false get_connector_response: summary: A list of connector types value: diff --git a/x-pack/plugins/actions/docs/openapi/components/examples/create_webhook_connector_request.yaml b/x-pack/plugins/actions/docs/openapi/components/examples/create_webhook_connector_request.yaml new file mode 100644 index 0000000000000..e01baea299a80 --- /dev/null +++ b/x-pack/plugins/actions/docs/openapi/components/examples/create_webhook_connector_request.yaml @@ -0,0 +1,13 @@ +summary: Create a webhook connector with SSL authentication. +value: + name: my-webhook-connector + connector_type_id: .webhook + config: + method: post + url: https://example.com + authType: webhook-authentication-ssl + certType: ssl-crt-key + secrets: + crt: QmFnIEF0dH... + key: LS0tLS1CRUdJ... + password: my-passphrase \ No newline at end of file diff --git a/x-pack/plugins/actions/docs/openapi/components/examples/create_webhook_connector_response.yaml b/x-pack/plugins/actions/docs/openapi/components/examples/create_webhook_connector_response.yaml new file mode 100644 index 0000000000000..613895b01dac6 --- /dev/null +++ b/x-pack/plugins/actions/docs/openapi/components/examples/create_webhook_connector_response.yaml @@ -0,0 +1,17 @@ +summary: A new webhook connector. +value: + id: 900eb010-3b9d-11ee-a642-8ffbb94e38bd + name: my-webhook-connector + config: + method: post + url: https://example.com + authType: webhook-authentication-ssl + certType: ssl-crt-key + verificationMode: full + headers: null + hasAuth: true + connector_type_id: .webhook + is_preconfigured: false + is_deprecated: false + is_missing_secrets: false + is_system_action: false \ No newline at end of file diff --git a/x-pack/plugins/actions/docs/openapi/components/schemas/config_properties_webhook.yaml b/x-pack/plugins/actions/docs/openapi/components/schemas/config_properties_webhook.yaml index 6fffd356527af..fe45366eca264 100644 --- a/x-pack/plugins/actions/docs/openapi/components/schemas/config_properties_webhook.yaml +++ b/x-pack/plugins/actions/docs/openapi/components/schemas/config_properties_webhook.yaml @@ -1,5 +1,57 @@ title: Connector request properties for a Webhook connector description: Defines properties for connectors when type is `.webhook`. type: object -additionalProperties: true -# TO-DO: Add the properties for this connector. \ No newline at end of file +properties: + authType: + type: string + enum: + - webhook-authentication-basic + - webhook-authentication-ssl + - "null" + description: > + The type of authentication to use: basic, SSL, or none. + ca: + type: string + description: > + A base64 encoded version of the certificate authority file that the connector can trust to sign and validate certificates. + This option is available for all authentication types. + certType: + type: string + description: > + If the `authType` is `webhook-authentication-ssl`, specifies whether the certificate authentication data is in a CRT and key file format or a PFX file format. + enum: + - ssl-crt-key + - ssl-pfx + hasAuth: + type: boolean + description: > + If `true`, a user name and password must be provided for login type authentication. + headers: + type: object + nullable: true + description: A set of key-value pairs sent as headers with the request. + method: + type: string + default: post + enum: + - post + - put + description: > + The HTTP request method, either `post` or `put`. + url: + type: string + description: > + The request URL. + If you are using the `xpack.actions.allowedHosts` setting, add the hostname to the allowed hosts. + verificationMode: + type: string + enum: + - certificate + - full + - none + default: full + description: > + Controls the verification of certificates. + Use `full` to validate that the certificate has an issue date within the `not_before` and `not_after` dates, chains to a trusted certificate authority (CA), and has a hostname or IP address that matches the names within the certificate. + Use `certificate` to validate the certificate and verify that it is signed by a trusted authority; this option does not check the certificate hostname. + Use `none` to skip certificate validation. diff --git a/x-pack/plugins/actions/docs/openapi/components/schemas/secrets_properties_webhook.yaml b/x-pack/plugins/actions/docs/openapi/components/schemas/secrets_properties_webhook.yaml index 5a465932fb898..199e53971f56c 100644 --- a/x-pack/plugins/actions/docs/openapi/components/schemas/secrets_properties_webhook.yaml +++ b/x-pack/plugins/actions/docs/openapi/components/schemas/secrets_properties_webhook.yaml @@ -1,5 +1,23 @@ title: Connector secrets properties for a Webhook connector description: Defines secrets for connectors when type is `.webhook`. type: object -additionalProperties: true -# TO-DO: Add the properties for this connector. \ No newline at end of file +properties: + crt: + type: string + description: If `authType` is `webhook-authentication-ssl` and `certType` is `ssl-crt-key`, it is a base64 encoded version of the CRT or CERT file. + key: + type: string + description: If `authType` is `webhook-authentication-ssl` and `certType` is `ssl-crt-key`, it is a base64 encoded version of the KEY file. + pfx: + type: string + description: If `authType` is `webhook-authentication-ssl` and `certType` is `ssl-pfx`, it is a base64 encoded version of the PFX or P12 file. + password: + type: string + description: > + The password for HTTP basic authentication or the passphrase for the SSL certificate files. + If `hasAuth` is set to `true` and `authType` is `webhook-authentication-basic`, this property is required. + user: + type: string + description: > + The username for HTTP basic authentication. + If `hasAuth` is set to `true` and `authType` is `webhook-authentication-basic`, this property is required. \ No newline at end of file diff --git a/x-pack/plugins/actions/docs/openapi/paths/s@{spaceid}@api@actions@connector.yaml b/x-pack/plugins/actions/docs/openapi/paths/s@{spaceid}@api@actions@connector.yaml index 31336f3487d53..d8d8735db82d8 100644 --- a/x-pack/plugins/actions/docs/openapi/paths/s@{spaceid}@api@actions@connector.yaml +++ b/x-pack/plugins/actions/docs/openapi/paths/s@{spaceid}@api@actions@connector.yaml @@ -40,6 +40,8 @@ post: examples: createIndexConnectorRequest: $ref: '../components/examples/create_index_connector_request.yaml' + createWebhookConnectorRequest: + $ref: '../components/examples/create_webhook_connector_request.yaml' responses: '200': description: Indicates a successful call. @@ -50,6 +52,8 @@ post: examples: createIndexConnectorResponse: $ref: '../components/examples/create_index_connector_response.yaml' + createWebhookConnectorResponse: + $ref: '../components/examples/create_webhook_connector_response.yaml' '401': $ref: '../components/responses/401.yaml' servers: diff --git a/x-pack/plugins/actions/server/actions_client.test.ts b/x-pack/plugins/actions/server/actions_client/actions_client.test.ts similarity index 90% rename from x-pack/plugins/actions/server/actions_client.test.ts rename to x-pack/plugins/actions/server/actions_client/actions_client.test.ts index d74a861441c0f..94adb4a6205c2 100644 --- a/x-pack/plugins/actions/server/actions_client.test.ts +++ b/x-pack/plugins/actions/server/actions_client/actions_client.test.ts @@ -9,19 +9,19 @@ import { schema } from '@kbn/config-schema'; import moment from 'moment'; import { ByteSizeValue } from '@kbn/config-schema'; -import { ActionTypeRegistry, ActionTypeRegistryOpts } from './action_type_registry'; +import { ActionTypeRegistry, ActionTypeRegistryOpts } from '../action_type_registry'; import { ActionsClient } from './actions_client'; -import { ExecutorType, ActionType } from './types'; +import { ExecutorType, ActionType } from '../types'; import { ActionExecutor, TaskRunnerFactory, ILicenseState, asHttpRequestExecutionSource, -} from './lib'; +} from '../lib'; import { taskManagerMock } from '@kbn/task-manager-plugin/server/mocks'; -import { actionsConfigMock } from './actions_config.mock'; -import { getActionsConfigurationUtilities } from './actions_config'; -import { licenseStateMock } from './lib/license_state.mock'; +import { actionsConfigMock } from '../actions_config.mock'; +import { getActionsConfigurationUtilities } from '../actions_config'; +import { licenseStateMock } from '../lib/license_state.mock'; import { licensingMock } from '@kbn/licensing-plugin/server/mocks'; import { httpServerMock, @@ -31,26 +31,26 @@ import { } from '@kbn/core/server/mocks'; import { auditLoggerMock } from '@kbn/security-plugin/server/audit/mocks'; import { usageCountersServiceMock } from '@kbn/usage-collection-plugin/server/usage_counters/usage_counters_service.mock'; -import { actionExecutorMock } from './lib/action_executor.mock'; +import { actionExecutorMock } from '../lib/action_executor.mock'; import { v4 as uuidv4 } from 'uuid'; -import { ActionsAuthorization } from './authorization/actions_authorization'; +import { ActionsAuthorization } from '../authorization/actions_authorization'; import { getAuthorizationModeBySource, AuthorizationMode, getBulkAuthorizationModeBySource, -} from './authorization/get_authorization_mode_by_source'; -import { actionsAuthorizationMock } from './authorization/actions_authorization.mock'; -import { trackLegacyRBACExemption } from './lib/track_legacy_rbac_exemption'; -import { ConnectorTokenClient } from './lib/connector_token_client'; +} from '../authorization/get_authorization_mode_by_source'; +import { actionsAuthorizationMock } from '../authorization/actions_authorization.mock'; +import { trackLegacyRBACExemption } from '../lib/track_legacy_rbac_exemption'; +import { ConnectorTokenClient } from '../lib/connector_token_client'; import { encryptedSavedObjectsMock } from '@kbn/encrypted-saved-objects-plugin/server/mocks'; import { Logger } from '@kbn/core/server'; -import { connectorTokenClientMock } from './lib/connector_token_client.mock'; -import { inMemoryMetricsMock } from './monitoring/in_memory_metrics.mock'; -import { getOAuthJwtAccessToken } from './lib/get_oauth_jwt_access_token'; -import { getOAuthClientCredentialsAccessToken } from './lib/get_oauth_client_credentials_access_token'; -import { OAuthParams } from './routes/get_oauth_access_token'; +import { connectorTokenClientMock } from '../lib/connector_token_client.mock'; +import { inMemoryMetricsMock } from '../monitoring/in_memory_metrics.mock'; +import { getOAuthJwtAccessToken } from '../lib/get_oauth_jwt_access_token'; +import { getOAuthClientCredentialsAccessToken } from '../lib/get_oauth_client_credentials_access_token'; +import { OAuthParams } from '../routes/get_oauth_access_token'; import { eventLogClientMock } from '@kbn/event-log-plugin/server/event_log_client.mock'; -import { GetGlobalExecutionKPIParams, GetGlobalExecutionLogParams } from '../common'; +import { GetGlobalExecutionKPIParams, GetGlobalExecutionLogParams } from '../../common'; jest.mock('@kbn/core-saved-objects-utils-server', () => { const actual = jest.requireActual('@kbn/core-saved-objects-utils-server'); @@ -62,11 +62,11 @@ jest.mock('@kbn/core-saved-objects-utils-server', () => { }; }); -jest.mock('./lib/track_legacy_rbac_exemption', () => ({ +jest.mock('../lib/track_legacy_rbac_exemption', () => ({ trackLegacyRBACExemption: jest.fn(), })); -jest.mock('./authorization/get_authorization_mode_by_source', () => { +jest.mock('../authorization/get_authorization_mode_by_source', () => { return { getAuthorizationModeBySource: jest.fn(() => { return 1; @@ -81,10 +81,10 @@ jest.mock('./authorization/get_authorization_mode_by_source', () => { }; }); -jest.mock('./lib/get_oauth_jwt_access_token', () => ({ +jest.mock('../lib/get_oauth_jwt_access_token', () => ({ getOAuthJwtAccessToken: jest.fn(), })); -jest.mock('./lib/get_oauth_client_credentials_access_token', () => ({ +jest.mock('../lib/get_oauth_client_credentials_access_token', () => ({ getOAuthClientCredentialsAccessToken: jest.fn(), })); @@ -1242,364 +1242,6 @@ describe('get()', () => { }); }); -describe('getAll()', () => { - describe('authorization', () => { - function getAllOperation(): ReturnType { - const expectedResult = { - total: 1, - per_page: 10, - page: 1, - saved_objects: [ - { - id: '1', - type: 'type', - attributes: { - name: 'test', - config: { - foo: 'bar', - }, - }, - score: 1, - references: [], - }, - ], - }; - unsecuredSavedObjectsClient.find.mockResolvedValueOnce(expectedResult); - scopedClusterClient.asInternalUser.search.mockResponse( - // @ts-expect-error not full search response - { - aggregations: { - '1': { doc_count: 6 }, - testPreconfigured: { doc_count: 2 }, - }, - } - ); - - actionsClient = new ActionsClient({ - logger, - actionTypeRegistry, - unsecuredSavedObjectsClient, - scopedClusterClient, - kibanaIndices, - actionExecutor, - executionEnqueuer, - ephemeralExecutionEnqueuer, - bulkExecutionEnqueuer, - request, - authorization: authorization as unknown as ActionsAuthorization, - inMemoryConnectors: [ - { - id: 'testPreconfigured', - actionTypeId: '.slack', - secrets: {}, - isPreconfigured: true, - isDeprecated: false, - isSystemAction: false, - name: 'test', - config: { - foo: 'bar', - }, - }, - ], - connectorTokenClient: connectorTokenClientMock.create(), - getEventLogClient, - }); - return actionsClient.getAll(); - } - - test('ensures user is authorised to get the type of action', async () => { - await getAllOperation(); - expect(authorization.ensureAuthorized).toHaveBeenCalledWith({ operation: 'get' }); - }); - - test('throws when user is not authorised to create the type of action', async () => { - authorization.ensureAuthorized.mockRejectedValue( - new Error(`Unauthorized to get all actions`) - ); - - await expect(getAllOperation()).rejects.toMatchInlineSnapshot( - `[Error: Unauthorized to get all actions]` - ); - - expect(authorization.ensureAuthorized).toHaveBeenCalledWith({ operation: 'get' }); - }); - }); - - describe('auditLogger', () => { - test('logs audit event when searching connectors', async () => { - unsecuredSavedObjectsClient.find.mockResolvedValueOnce({ - total: 1, - per_page: 10, - page: 1, - saved_objects: [ - { - id: '1', - type: 'type', - attributes: { - name: 'test', - isMissingSecrets: false, - config: { - foo: 'bar', - }, - }, - score: 1, - references: [], - }, - ], - }); - scopedClusterClient.asInternalUser.search.mockResponse( - // @ts-expect-error not full search response - { - aggregations: { - '1': { doc_count: 6 }, - testPreconfigured: { doc_count: 2 }, - }, - } - ); - - await actionsClient.getAll(); - - expect(auditLogger.log).toHaveBeenCalledWith( - expect.objectContaining({ - event: expect.objectContaining({ - action: 'connector_find', - outcome: 'success', - }), - kibana: { saved_object: { id: '1', type: 'action' } }, - }) - ); - }); - - test('logs audit event when not authorised to search connectors', async () => { - authorization.ensureAuthorized.mockRejectedValue(new Error('Unauthorized')); - - await expect(actionsClient.getAll()).rejects.toThrow(); - - expect(auditLogger.log).toHaveBeenCalledWith( - expect.objectContaining({ - event: expect.objectContaining({ - action: 'connector_find', - outcome: 'failure', - }), - error: { code: 'Error', message: 'Unauthorized' }, - }) - ); - }); - }); - - test('calls unsecuredSavedObjectsClient with parameters and returns inMemoryConnectors correctly', async () => { - const expectedResult = { - total: 1, - per_page: 10, - page: 1, - saved_objects: [ - { - id: '1', - type: 'type', - attributes: { - name: 'test', - isMissingSecrets: false, - config: { - foo: 'bar', - }, - }, - score: 1, - references: [], - }, - ], - }; - unsecuredSavedObjectsClient.find.mockResolvedValueOnce(expectedResult); - scopedClusterClient.asInternalUser.search.mockResponse( - // @ts-expect-error not full search response - { - aggregations: { - '1': { doc_count: 6 }, - testPreconfigured: { doc_count: 2 }, - 'system-connector-.cases': { doc_count: 2 }, - }, - } - ); - - actionsClient = new ActionsClient({ - logger, - actionTypeRegistry, - unsecuredSavedObjectsClient, - scopedClusterClient, - kibanaIndices, - actionExecutor, - executionEnqueuer, - ephemeralExecutionEnqueuer, - bulkExecutionEnqueuer, - request, - authorization: authorization as unknown as ActionsAuthorization, - inMemoryConnectors: [ - { - id: 'testPreconfigured', - actionTypeId: '.slack', - secrets: {}, - isPreconfigured: true, - isDeprecated: false, - isSystemAction: false, - name: 'test', - config: { - foo: 'bar', - }, - }, - /** - * System actions will not - * be returned from getAll - * if no options are provided - */ - { - id: 'system-connector-.cases', - actionTypeId: '.cases', - name: 'System action: .cases', - config: {}, - secrets: {}, - isDeprecated: false, - isMissingSecrets: false, - isPreconfigured: false, - isSystemAction: true, - }, - ], - connectorTokenClient: connectorTokenClientMock.create(), - getEventLogClient, - }); - - const result = await actionsClient.getAll(); - - expect(result).toEqual([ - { - id: '1', - name: 'test', - isMissingSecrets: false, - config: { foo: 'bar' }, - isPreconfigured: false, - isDeprecated: false, - isSystemAction: false, - referencedByCount: 6, - }, - { - id: 'testPreconfigured', - actionTypeId: '.slack', - name: 'test', - isPreconfigured: true, - isSystemAction: false, - isDeprecated: false, - referencedByCount: 2, - }, - ]); - }); - - test('get system actions correctly', async () => { - const expectedResult = { - total: 1, - per_page: 10, - page: 1, - saved_objects: [ - { - id: '1', - type: 'type', - attributes: { - name: 'test', - isMissingSecrets: false, - config: { - foo: 'bar', - }, - }, - score: 1, - references: [], - }, - ], - }; - unsecuredSavedObjectsClient.find.mockResolvedValueOnce(expectedResult); - scopedClusterClient.asInternalUser.search.mockResponse( - // @ts-expect-error not full search response - { - aggregations: { - '1': { doc_count: 6 }, - testPreconfigured: { doc_count: 2 }, - 'system-connector-.cases': { doc_count: 2 }, - }, - } - ); - - actionsClient = new ActionsClient({ - logger, - actionTypeRegistry, - unsecuredSavedObjectsClient, - scopedClusterClient, - kibanaIndices, - actionExecutor, - executionEnqueuer, - ephemeralExecutionEnqueuer, - bulkExecutionEnqueuer, - request, - authorization: authorization as unknown as ActionsAuthorization, - inMemoryConnectors: [ - { - id: 'testPreconfigured', - actionTypeId: '.slack', - secrets: {}, - isPreconfigured: true, - isDeprecated: false, - isSystemAction: false, - name: 'test', - config: { - foo: 'bar', - }, - }, - { - id: 'system-connector-.cases', - actionTypeId: '.cases', - name: 'System action: .cases', - config: {}, - secrets: {}, - isDeprecated: false, - isMissingSecrets: false, - isPreconfigured: false, - isSystemAction: true, - }, - ], - connectorTokenClient: connectorTokenClientMock.create(), - getEventLogClient, - }); - - const result = await actionsClient.getAll({ includeSystemActions: true }); - - expect(result).toEqual([ - { - actionTypeId: '.cases', - id: 'system-connector-.cases', - isDeprecated: false, - isPreconfigured: false, - isSystemAction: true, - name: 'System action: .cases', - referencedByCount: 2, - }, - { - id: '1', - name: 'test', - isMissingSecrets: false, - config: { foo: 'bar' }, - isPreconfigured: false, - isDeprecated: false, - isSystemAction: false, - referencedByCount: 6, - }, - { - id: 'testPreconfigured', - actionTypeId: '.slack', - name: 'test', - isPreconfigured: true, - isSystemAction: false, - isDeprecated: false, - referencedByCount: 2, - }, - ]); - }); -}); - describe('getBulk()', () => { describe('authorization', () => { function getBulkOperation(): ReturnType { diff --git a/x-pack/plugins/actions/server/actions_client.ts b/x-pack/plugins/actions/server/actions_client/actions_client.ts similarity index 66% rename from x-pack/plugins/actions/server/actions_client.ts rename to x-pack/plugins/actions/server/actions_client/actions_client.ts index 9b47bd38af3c9..9fbf7c988c8f0 100644 --- a/x-pack/plugins/actions/server/actions_client.ts +++ b/x-pack/plugins/actions/server/actions_client/actions_client.ts @@ -8,7 +8,6 @@ import { v4 as uuidv4 } from 'uuid'; import Boom from '@hapi/boom'; import url from 'url'; -import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey'; import { UsageCounter } from '@kbn/usage-collection-plugin/server'; import { i18n } from '@kbn/i18n'; @@ -17,7 +16,6 @@ import { IScopedClusterClient, SavedObjectsClientContract, SavedObjectAttributes, - SavedObject, KibanaRequest, SavedObjectsUtils, Logger, @@ -26,13 +24,15 @@ import { AuditLogger } from '@kbn/security-plugin/server'; import { RunNowResult } from '@kbn/task-manager-plugin/server'; import { IEventLogClient } from '@kbn/event-log-plugin/server'; import { KueryNode } from '@kbn/es-query'; +import { FindConnectorResult } from '../application/connector/types'; +import { getAll } from '../application/connector/methods/get_all'; import { ActionType, GetGlobalExecutionKPIParams, GetGlobalExecutionLogParams, IExecutionLogResult, -} from '../common'; -import { ActionTypeRegistry } from './action_type_registry'; +} from '../../common'; +import { ActionTypeRegistry } from '../action_type_registry'; import { validateConfig, validateSecrets, @@ -40,59 +40,54 @@ import { validateConnector, ActionExecutionSource, parseDate, -} from './lib'; +} from '../lib'; import { ActionResult, - FindActionResult, RawAction, InMemoryConnector, ActionTypeExecutorResult, ConnectorTokenClientContract, -} from './types'; -import { PreconfiguredActionDisabledModificationError } from './lib/errors/preconfigured_action_disabled_modification'; -import { ExecuteOptions } from './lib/action_executor'; +} from '../types'; + +import { PreconfiguredActionDisabledModificationError } from '../lib/errors/preconfigured_action_disabled_modification'; +import { ExecuteOptions } from '../lib/action_executor'; import { ExecutionEnqueuer, ExecuteOptions as EnqueueExecutionOptions, BulkExecutionEnqueuer, -} from './create_execute_function'; -import { ActionsAuthorization } from './authorization/actions_authorization'; +} from '../create_execute_function'; +import { ActionsAuthorization } from '../authorization/actions_authorization'; import { getAuthorizationModeBySource, getBulkAuthorizationModeBySource, AuthorizationMode, -} from './authorization/get_authorization_mode_by_source'; -import { connectorAuditEvent, ConnectorAuditAction } from './lib/audit_events'; -import { trackLegacyRBACExemption } from './lib/track_legacy_rbac_exemption'; -import { isConnectorDeprecated } from './lib/is_connector_deprecated'; -import { ActionsConfigurationUtilities } from './actions_config'; +} from '../authorization/get_authorization_mode_by_source'; +import { connectorAuditEvent, ConnectorAuditAction } from '../lib/audit_events'; +import { trackLegacyRBACExemption } from '../lib/track_legacy_rbac_exemption'; +import { ActionsConfigurationUtilities } from '../actions_config'; import { OAuthClientCredentialsParams, OAuthJwtParams, OAuthParams, -} from './routes/get_oauth_access_token'; +} from '../routes/get_oauth_access_token'; import { getOAuthJwtAccessToken, GetOAuthJwtConfig, GetOAuthJwtSecrets, -} from './lib/get_oauth_jwt_access_token'; +} from '../lib/get_oauth_jwt_access_token'; import { getOAuthClientCredentialsAccessToken, GetOAuthClientCredentialsConfig, GetOAuthClientCredentialsSecrets, -} from './lib/get_oauth_client_credentials_access_token'; +} from '../lib/get_oauth_client_credentials_access_token'; import { ACTION_FILTER, formatExecutionKPIResult, formatExecutionLogResult, getExecutionKPIAggregation, getExecutionLogAggregation, -} from './lib/get_execution_log_aggregation'; - -// We are assuming there won't be many actions. This is why we will load -// all the actions in advance and assume the total count to not go over 10000. -// We'll set this max setting assuming it's never reached. -export const MAX_ACTIONS_RETURNED = 10000; +} from '../lib/get_execution_log_aggregation'; +import { connectorFromSavedObject, isConnectorDeprecated } from '../application/connector/lib'; interface ActionUpdate { name: string; @@ -133,32 +128,32 @@ export interface UpdateOptions { action: ActionUpdate; } -interface GetAllOptions { - includeSystemActions?: boolean; -} - interface ListTypesOptions { featureId?: string; includeSystemActionTypes?: boolean; } +export interface ActionsClientContext { + logger: Logger; + kibanaIndices: string[]; + scopedClusterClient: IScopedClusterClient; + unsecuredSavedObjectsClient: SavedObjectsClientContract; + actionTypeRegistry: ActionTypeRegistry; + inMemoryConnectors: InMemoryConnector[]; + actionExecutor: ActionExecutorContract; + request: KibanaRequest; + authorization: ActionsAuthorization; + executionEnqueuer: ExecutionEnqueuer; + ephemeralExecutionEnqueuer: ExecutionEnqueuer; + bulkExecutionEnqueuer: BulkExecutionEnqueuer; + auditLogger?: AuditLogger; + usageCounter?: UsageCounter; + connectorTokenClient: ConnectorTokenClientContract; + getEventLogClient: () => Promise; +} + export class ActionsClient { - private readonly logger: Logger; - private readonly kibanaIndices: string[]; - private readonly scopedClusterClient: IScopedClusterClient; - private readonly unsecuredSavedObjectsClient: SavedObjectsClientContract; - private readonly actionTypeRegistry: ActionTypeRegistry; - private readonly inMemoryConnectors: InMemoryConnector[]; - private readonly actionExecutor: ActionExecutorContract; - private readonly request: KibanaRequest; - private readonly authorization: ActionsAuthorization; - private readonly executionEnqueuer: ExecutionEnqueuer; - private readonly ephemeralExecutionEnqueuer: ExecutionEnqueuer; - private readonly bulkExecutionEnqueuer: BulkExecutionEnqueuer; - private readonly auditLogger?: AuditLogger; - private readonly usageCounter?: UsageCounter; - private readonly connectorTokenClient: ConnectorTokenClientContract; - private readonly getEventLogClient: () => Promise; + private readonly context: ActionsClientContext; constructor({ logger, @@ -178,22 +173,24 @@ export class ActionsClient { connectorTokenClient, getEventLogClient, }: ConstructorOptions) { - this.logger = logger; - this.actionTypeRegistry = actionTypeRegistry; - this.unsecuredSavedObjectsClient = unsecuredSavedObjectsClient; - this.scopedClusterClient = scopedClusterClient; - this.kibanaIndices = kibanaIndices; - this.inMemoryConnectors = inMemoryConnectors; - this.actionExecutor = actionExecutor; - this.executionEnqueuer = executionEnqueuer; - this.ephemeralExecutionEnqueuer = ephemeralExecutionEnqueuer; - this.bulkExecutionEnqueuer = bulkExecutionEnqueuer; - this.request = request; - this.authorization = authorization; - this.auditLogger = auditLogger; - this.usageCounter = usageCounter; - this.connectorTokenClient = connectorTokenClient; - this.getEventLogClient = getEventLogClient; + this.context = { + logger, + actionTypeRegistry, + unsecuredSavedObjectsClient, + scopedClusterClient, + kibanaIndices, + inMemoryConnectors, + actionExecutor, + executionEnqueuer, + ephemeralExecutionEnqueuer, + bulkExecutionEnqueuer, + request, + authorization, + auditLogger, + usageCounter, + connectorTokenClient, + getEventLogClient, + }; } /** @@ -206,9 +203,12 @@ export class ActionsClient { const id = options?.id || SavedObjectsUtils.generateId(); try { - await this.authorization.ensureAuthorized({ operation: 'create', actionTypeId }); + await this.context.authorization.ensureAuthorized({ + operation: 'create', + actionTypeId, + }); } catch (error) { - this.auditLogger?.log( + this.context.auditLogger?.log( connectorAuditEvent({ action: ConnectorAuditAction.CREATE, savedObject: { type: 'action', id }, @@ -218,10 +218,12 @@ export class ActionsClient { throw error; } - const foundInMemoryConnector = this.inMemoryConnectors.find((connector) => connector.id === id); + const foundInMemoryConnector = this.context.inMemoryConnectors.find( + (connector) => connector.id === id + ); if ( - this.actionTypeRegistry.isSystemActionType(actionTypeId) || + this.context.actionTypeRegistry.isSystemActionType(actionTypeId) || foundInMemoryConnector?.isSystemAction ) { throw Boom.badRequest( @@ -245,9 +247,8 @@ export class ActionsClient { ); } - const actionType = this.actionTypeRegistry.get(actionTypeId); - const configurationUtilities = this.actionTypeRegistry.getUtils(); - + const actionType = this.context.actionTypeRegistry.get(actionTypeId); + const configurationUtilities = this.context.actionTypeRegistry.getUtils(); const validatedActionTypeConfig = validateConfig(actionType, config, { configurationUtilities, }); @@ -257,9 +258,9 @@ export class ActionsClient { if (actionType.validate?.connector) { validateConnector(actionType, { config, secrets }); } - this.actionTypeRegistry.ensureActionTypeEnabled(actionTypeId); + this.context.actionTypeRegistry.ensureActionTypeEnabled(actionTypeId); - this.auditLogger?.log( + this.context.auditLogger?.log( connectorAuditEvent({ action: ConnectorAuditAction.CREATE, savedObject: { type: 'action', id }, @@ -267,7 +268,7 @@ export class ActionsClient { }) ); - const result = await this.unsecuredSavedObjectsClient.create( + const result = await this.context.unsecuredSavedObjectsClient.create( 'action', { actionTypeId, @@ -296,9 +297,9 @@ export class ActionsClient { */ public async update({ id, action }: UpdateOptions): Promise { try { - await this.authorization.ensureAuthorized({ operation: 'update' }); + await this.context.authorization.ensureAuthorized({ operation: 'update' }); - const foundInMemoryConnector = this.inMemoryConnectors.find( + const foundInMemoryConnector = this.context.inMemoryConnectors.find( (connector) => connector.id === id ); @@ -325,7 +326,7 @@ export class ActionsClient { ); } } catch (error) { - this.auditLogger?.log( + this.context.auditLogger?.log( connectorAuditEvent({ action: ConnectorAuditAction.UPDATE, savedObject: { type: 'action', id }, @@ -335,11 +336,11 @@ export class ActionsClient { throw error; } const { attributes, references, version } = - await this.unsecuredSavedObjectsClient.get('action', id); + await this.context.unsecuredSavedObjectsClient.get('action', id); const { actionTypeId } = attributes; const { name, config, secrets } = action; - const actionType = this.actionTypeRegistry.get(actionTypeId); - const configurationUtilities = this.actionTypeRegistry.getUtils(); + const actionType = this.context.actionTypeRegistry.get(actionTypeId); + const configurationUtilities = this.context.actionTypeRegistry.getUtils(); const validatedActionTypeConfig = validateConfig(actionType, config, { configurationUtilities, }); @@ -350,9 +351,9 @@ export class ActionsClient { validateConnector(actionType, { config, secrets }); } - this.actionTypeRegistry.ensureActionTypeEnabled(actionTypeId); + this.context.actionTypeRegistry.ensureActionTypeEnabled(actionTypeId); - this.auditLogger?.log( + this.context.auditLogger?.log( connectorAuditEvent({ action: ConnectorAuditAction.UPDATE, savedObject: { type: 'action', id }, @@ -360,7 +361,7 @@ export class ActionsClient { }) ); - const result = await this.unsecuredSavedObjectsClient.create( + const result = await this.context.unsecuredSavedObjectsClient.create( 'action', { ...attributes, @@ -382,9 +383,9 @@ export class ActionsClient { ); try { - await this.connectorTokenClient.deleteConnectorTokens({ connectorId: id }); + await this.context.connectorTokenClient.deleteConnectorTokens({ connectorId: id }); } catch (e) { - this.logger.error( + this.context.logger.error( `Failed to delete auth tokens for connector "${id}" after update: ${e.message}` ); } @@ -412,9 +413,9 @@ export class ActionsClient { throwIfSystemAction?: boolean; }): Promise { try { - await this.authorization.ensureAuthorized({ operation: 'get' }); + await this.context.authorization.ensureAuthorized({ operation: 'get' }); } catch (error) { - this.auditLogger?.log( + this.context.auditLogger?.log( connectorAuditEvent({ action: ConnectorAuditAction.GET, savedObject: { type: 'action', id }, @@ -424,7 +425,9 @@ export class ActionsClient { throw error; } - const foundInMemoryConnector = this.inMemoryConnectors.find((connector) => connector.id === id); + const foundInMemoryConnector = this.context.inMemoryConnectors.find( + (connector) => connector.id === id + ); /** * Getting system connector is not allowed @@ -440,7 +443,7 @@ export class ActionsClient { } if (foundInMemoryConnector !== undefined) { - this.auditLogger?.log( + this.context.auditLogger?.log( connectorAuditEvent({ action: ConnectorAuditAction.GET, savedObject: { type: 'action', id }, @@ -457,9 +460,9 @@ export class ActionsClient { }; } - const result = await this.unsecuredSavedObjectsClient.get('action', id); + const result = await this.context.unsecuredSavedObjectsClient.get('action', id); - this.auditLogger?.log( + this.context.auditLogger?.log( connectorAuditEvent({ action: ConnectorAuditAction.GET, savedObject: { type: 'action', id }, @@ -479,57 +482,10 @@ export class ActionsClient { } /** - * Get all actions with in-memory connectors + * Get all connectors with in-memory connectors */ - public async getAll({ includeSystemActions = false }: GetAllOptions = {}): Promise< - FindActionResult[] - > { - try { - await this.authorization.ensureAuthorized({ operation: 'get' }); - } catch (error) { - this.auditLogger?.log( - connectorAuditEvent({ - action: ConnectorAuditAction.FIND, - error, - }) - ); - throw error; - } - - const savedObjectsActions = ( - await this.unsecuredSavedObjectsClient.find({ - perPage: MAX_ACTIONS_RETURNED, - type: 'action', - }) - ).saved_objects.map((rawAction) => - actionFromSavedObject(rawAction, isConnectorDeprecated(rawAction.attributes)) - ); - - savedObjectsActions.forEach(({ id }) => - this.auditLogger?.log( - connectorAuditEvent({ - action: ConnectorAuditAction.FIND, - savedObject: { type: 'action', id }, - }) - ) - ); - - const inMemoryConnectorsFiltered = includeSystemActions - ? this.inMemoryConnectors - : this.inMemoryConnectors.filter((connector) => !connector.isSystemAction); - - const mergedResult = [ - ...savedObjectsActions, - ...inMemoryConnectorsFiltered.map((inMemoryConnector) => ({ - id: inMemoryConnector.id, - actionTypeId: inMemoryConnector.actionTypeId, - name: inMemoryConnector.name, - isPreconfigured: inMemoryConnector.isPreconfigured, - isDeprecated: isConnectorDeprecated(inMemoryConnector), - isSystemAction: inMemoryConnector.isSystemAction, - })), - ].sort((a, b) => a.name.localeCompare(b.name)); - return await injectExtraFindData(this.kibanaIndices, this.scopedClusterClient, mergedResult); + public async getAll({ includeSystemActions = false } = {}): Promise { + return getAll({ context: this.context, includeSystemActions }); } /** @@ -543,10 +499,10 @@ export class ActionsClient { throwIfSystemAction?: boolean; }): Promise { try { - await this.authorization.ensureAuthorized({ operation: 'get' }); + await this.context.authorization.ensureAuthorized({ operation: 'get' }); } catch (error) { ids.forEach((id) => - this.auditLogger?.log( + this.context.auditLogger?.log( connectorAuditEvent({ action: ConnectorAuditAction.GET, savedObject: { type: 'action', id }, @@ -560,7 +516,7 @@ export class ActionsClient { const actionResults = new Array(); for (const actionId of ids) { - const action = this.inMemoryConnectors.find( + const action = this.context.inMemoryConnectors.find( (inMemoryConnector) => inMemoryConnector.id === actionId ); @@ -589,11 +545,13 @@ export class ActionsClient { ]; const bulkGetOpts = actionSavedObjectsIds.map((id) => ({ id, type: 'action' })); - const bulkGetResult = await this.unsecuredSavedObjectsClient.bulkGet(bulkGetOpts); + const bulkGetResult = await this.context.unsecuredSavedObjectsClient.bulkGet( + bulkGetOpts + ); bulkGetResult.saved_objects.forEach(({ id, error }) => { - if (!error && this.auditLogger) { - this.auditLogger.log( + if (!error && this.context.auditLogger) { + this.context.auditLogger.log( connectorAuditEvent({ action: ConnectorAuditAction.GET, savedObject: { type: 'action', id }, @@ -608,7 +566,9 @@ export class ActionsClient { `Failed to load action ${action.id} (${action.error.statusCode}): ${action.error.message}` ); } - actionResults.push(actionFromSavedObject(action, isConnectorDeprecated(action.attributes))); + actionResults.push( + connectorFromSavedObject(action, isConnectorDeprecated(action.attributes)) + ); } return actionResults; @@ -619,7 +579,7 @@ export class ActionsClient { configurationUtilities: ActionsConfigurationUtilities ) { // Verify that user has edit access - await this.authorization.ensureAuthorized({ operation: 'update' }); + await this.context.authorization.ensureAuthorized({ operation: 'update' }); // Verify that token url is allowed by allowed hosts config try { @@ -649,7 +609,7 @@ export class ActionsClient { try { accessToken = await getOAuthJwtAccessToken({ - logger: this.logger, + logger: this.context.logger, configurationUtilities, credentials: { config: tokenOpts.config as GetOAuthJwtConfig, @@ -658,13 +618,13 @@ export class ActionsClient { tokenUrl: tokenOpts.tokenUrl, }); - this.logger.debug( + this.context.logger.debug( `Successfully retrieved access token using JWT OAuth with tokenUrl ${ tokenOpts.tokenUrl } and config ${JSON.stringify(tokenOpts.config)}` ); } catch (err) { - this.logger.debug( + this.context.logger.debug( `Failed to retrieve access token using JWT OAuth with tokenUrl ${ tokenOpts.tokenUrl } and config ${JSON.stringify(tokenOpts.config)} - ${err.message}` @@ -675,7 +635,7 @@ export class ActionsClient { const tokenOpts = options as OAuthClientCredentialsParams; try { accessToken = await getOAuthClientCredentialsAccessToken({ - logger: this.logger, + logger: this.context.logger, configurationUtilities, credentials: { config: tokenOpts.config as GetOAuthClientCredentialsConfig, @@ -685,13 +645,13 @@ export class ActionsClient { oAuthScope: tokenOpts.scope, }); - this.logger.debug( + this.context.logger.debug( `Successfully retrieved access token using Client Credentials OAuth with tokenUrl ${ tokenOpts.tokenUrl }, scope ${tokenOpts.scope} and config ${JSON.stringify(tokenOpts.config)}` ); } catch (err) { - this.logger.debug( + this.context.logger.debug( `Failed to retrieved access token using Client Credentials OAuth with tokenUrl ${ tokenOpts.tokenUrl }, scope ${tokenOpts.scope} and config ${JSON.stringify(tokenOpts.config)} - ${ @@ -710,9 +670,9 @@ export class ActionsClient { */ public async delete({ id }: { id: string }) { try { - await this.authorization.ensureAuthorized({ operation: 'delete' }); + await this.context.authorization.ensureAuthorized({ operation: 'delete' }); - const foundInMemoryConnector = this.inMemoryConnectors.find( + const foundInMemoryConnector = this.context.inMemoryConnectors.find( (connector) => connector.id === id ); @@ -739,7 +699,7 @@ export class ActionsClient { ); } } catch (error) { - this.auditLogger?.log( + this.context.auditLogger?.log( connectorAuditEvent({ action: ConnectorAuditAction.DELETE, savedObject: { type: 'action', id }, @@ -749,7 +709,7 @@ export class ActionsClient { throw error; } - this.auditLogger?.log( + this.context.auditLogger?.log( connectorAuditEvent({ action: ConnectorAuditAction.DELETE, outcome: 'unknown', @@ -758,23 +718,23 @@ export class ActionsClient { ); try { - await this.connectorTokenClient.deleteConnectorTokens({ connectorId: id }); + await this.context.connectorTokenClient.deleteConnectorTokens({ connectorId: id }); } catch (e) { - this.logger.error( + this.context.logger.error( `Failed to delete auth tokens for connector "${id}" after delete: ${e.message}` ); } - return await this.unsecuredSavedObjectsClient.delete('action', id); + return await this.context.unsecuredSavedObjectsClient.delete('action', id); } private getSystemActionKibanaPrivileges(connectorId: string, params?: ExecuteOptions['params']) { - const inMemoryConnector = this.inMemoryConnectors.find( + const inMemoryConnector = this.context.inMemoryConnectors.find( (connector) => connector.id === connectorId ); const additionalPrivileges = inMemoryConnector?.isSystemAction - ? this.actionTypeRegistry.getSystemActionKibanaPrivileges( + ? this.context.actionTypeRegistry.getSystemActionKibanaPrivileges( inMemoryConnector.actionTypeId, params ) @@ -792,20 +752,23 @@ export class ActionsClient { ActionTypeExecutorResult > { if ( - (await getAuthorizationModeBySource(this.unsecuredSavedObjectsClient, source)) === + (await getAuthorizationModeBySource(this.context.unsecuredSavedObjectsClient, source)) === AuthorizationMode.RBAC ) { const additionalPrivileges = this.getSystemActionKibanaPrivileges(actionId, params); - await this.authorization.ensureAuthorized({ operation: 'execute', additionalPrivileges }); + await this.context.authorization.ensureAuthorized({ + operation: 'execute', + additionalPrivileges, + }); } else { - trackLegacyRBACExemption('execute', this.usageCounter); + trackLegacyRBACExemption('execute', this.context.usageCounter); } - return this.actionExecutor.execute({ + return this.context.actionExecutor.execute({ actionId, params, source, - request: this.request, + request: this.context.request, relatedSavedObjects, actionExecutionId: uuidv4(), }); @@ -814,7 +777,7 @@ export class ActionsClient { public async enqueueExecution(options: EnqueueExecutionOptions): Promise { const { source } = options; if ( - (await getAuthorizationModeBySource(this.unsecuredSavedObjectsClient, source)) === + (await getAuthorizationModeBySource(this.context.unsecuredSavedObjectsClient, source)) === AuthorizationMode.RBAC ) { /** @@ -823,11 +786,11 @@ export class ActionsClient { * inside the ActionExecutor at execution time */ - await this.authorization.ensureAuthorized({ operation: 'execute' }); + await this.context.authorization.ensureAuthorized({ operation: 'execute' }); } else { - trackLegacyRBACExemption('enqueueExecution', this.usageCounter); + trackLegacyRBACExemption('enqueueExecution', this.context.usageCounter); } - return this.executionEnqueuer(this.unsecuredSavedObjectsClient, options); + return this.context.executionEnqueuer(this.context.unsecuredSavedObjectsClient, options); } public async bulkEnqueueExecution(options: EnqueueExecutionOptions[]): Promise { @@ -839,7 +802,7 @@ export class ActionsClient { }); const authCounts = await getBulkAuthorizationModeBySource( - this.unsecuredSavedObjectsClient, + this.context.unsecuredSavedObjectsClient, sources ); if (authCounts[AuthorizationMode.RBAC] > 0) { @@ -848,29 +811,32 @@ export class ActionsClient { * for system actions (kibana privileges) will be performed * inside the ActionExecutor at execution time */ - await this.authorization.ensureAuthorized({ operation: 'execute' }); + await this.context.authorization.ensureAuthorized({ operation: 'execute' }); } if (authCounts[AuthorizationMode.Legacy] > 0) { trackLegacyRBACExemption( 'bulkEnqueueExecution', - this.usageCounter, + this.context.usageCounter, authCounts[AuthorizationMode.Legacy] ); } - return this.bulkExecutionEnqueuer(this.unsecuredSavedObjectsClient, options); + return this.context.bulkExecutionEnqueuer(this.context.unsecuredSavedObjectsClient, options); } public async ephemeralEnqueuedExecution(options: EnqueueExecutionOptions): Promise { const { source } = options; if ( - (await getAuthorizationModeBySource(this.unsecuredSavedObjectsClient, source)) === + (await getAuthorizationModeBySource(this.context.unsecuredSavedObjectsClient, source)) === AuthorizationMode.RBAC ) { - await this.authorization.ensureAuthorized({ operation: 'execute' }); + await this.context.authorization.ensureAuthorized({ operation: 'execute' }); } else { - trackLegacyRBACExemption('ephemeralEnqueuedExecution', this.usageCounter); + trackLegacyRBACExemption('ephemeralEnqueuedExecution', this.context.usageCounter); } - return this.ephemeralExecutionEnqueuer(this.unsecuredSavedObjectsClient, options); + return this.context.ephemeralExecutionEnqueuer( + this.context.unsecuredSavedObjectsClient, + options + ); } /** @@ -881,7 +847,7 @@ export class ActionsClient { featureId, includeSystemActionTypes = false, }: ListTypesOptions = {}): Promise { - const actionTypes = this.actionTypeRegistry.list(featureId); + const actionTypes = this.context.actionTypeRegistry.list(featureId); const filteredActionTypes = includeSystemActionTypes ? actionTypes @@ -894,17 +860,17 @@ export class ActionsClient { actionTypeId: string, options: { notifyUsage: boolean } = { notifyUsage: false } ) { - return this.actionTypeRegistry.isActionTypeEnabled(actionTypeId, options); + return this.context.actionTypeRegistry.isActionTypeEnabled(actionTypeId, options); } public isPreconfigured(connectorId: string): boolean { - return !!this.inMemoryConnectors.find( + return !!this.context.inMemoryConnectors.find( (connector) => connector.isPreconfigured && connector.id === connectorId ); } public isSystemAction(connectorId: string): boolean { - return !!this.inMemoryConnectors.find( + return !!this.context.inMemoryConnectors.find( (connector) => connector.isSystemAction && connector.id === connectorId ); } @@ -918,13 +884,13 @@ export class ActionsClient { sort, namespaces, }: GetGlobalExecutionLogParams): Promise { - this.logger.debug(`getGlobalExecutionLogWithAuth(): getting global execution log`); + this.context.logger.debug(`getGlobalExecutionLogWithAuth(): getting global execution log`); const authorizationTuple = {} as KueryNode; try { - await this.authorization.ensureAuthorized({ operation: 'get' }); + await this.context.authorization.ensureAuthorized({ operation: 'get' }); } catch (error) { - this.auditLogger?.log( + this.context.auditLogger?.log( connectorAuditEvent({ action: ConnectorAuditAction.GET_GLOBAL_EXECUTION_LOG, error, @@ -933,7 +899,7 @@ export class ActionsClient { throw error; } - this.auditLogger?.log( + this.context.auditLogger?.log( connectorAuditEvent({ action: ConnectorAuditAction.GET_GLOBAL_EXECUTION_LOG, }) @@ -943,7 +909,7 @@ export class ActionsClient { const parsedDateStart = parseDate(dateStart, 'dateStart', dateNow); const parsedDateEnd = parseDate(dateEnd, 'dateEnd', dateNow); - const eventLogClient = await this.getEventLogClient(); + const eventLogClient = await this.context.getEventLogClient(); try { const aggResult = await eventLogClient.aggregateEventsWithAuthFilter( @@ -965,7 +931,7 @@ export class ActionsClient { return formatExecutionLogResult(aggResult); } catch (err) { - this.logger.debug( + this.context.logger.debug( `actionsClient.getGlobalExecutionLogWithAuth(): error searching global event log: ${err.message}` ); throw err; @@ -978,13 +944,13 @@ export class ActionsClient { filter, namespaces, }: GetGlobalExecutionKPIParams) { - this.logger.debug(`getGlobalExecutionKpiWithAuth(): getting global execution KPI`); + this.context.logger.debug(`getGlobalExecutionKpiWithAuth(): getting global execution KPI`); const authorizationTuple = {} as KueryNode; try { - await this.authorization.ensureAuthorized({ operation: 'get' }); + await this.context.authorization.ensureAuthorized({ operation: 'get' }); } catch (error) { - this.auditLogger?.log( + this.context.auditLogger?.log( connectorAuditEvent({ action: ConnectorAuditAction.GET_GLOBAL_EXECUTION_KPI, error, @@ -993,7 +959,7 @@ export class ActionsClient { throw error; } - this.auditLogger?.log( + this.context.auditLogger?.log( connectorAuditEvent({ action: ConnectorAuditAction.GET_GLOBAL_EXECUTION_KPI, }) @@ -1003,7 +969,7 @@ export class ActionsClient { const parsedDateStart = parseDate(dateStart, 'dateStart', dateNow); const parsedDateEnd = parseDate(dateEnd, 'dateEnd', dateNow); - const eventLogClient = await this.getEventLogClient(); + const eventLogClient = await this.context.getEventLogClient(); try { const aggResult = await eventLogClient.aggregateEventsWithAuthFilter( @@ -1022,79 +988,10 @@ export class ActionsClient { return formatExecutionKPIResult(aggResult); } catch (err) { - this.logger.debug( + this.context.logger.debug( `actionsClient.getGlobalExecutionKpiWithAuth(): error searching global execution KPI: ${err.message}` ); throw err; } } } - -function actionFromSavedObject( - savedObject: SavedObject, - isDeprecated: boolean -): ActionResult { - return { - id: savedObject.id, - ...savedObject.attributes, - isPreconfigured: false, - isDeprecated, - isSystemAction: false, - }; -} - -async function injectExtraFindData( - kibanaIndices: string[], - scopedClusterClient: IScopedClusterClient, - actionResults: ActionResult[] -): Promise { - const aggs: Record = {}; - for (const actionResult of actionResults) { - aggs[actionResult.id] = { - filter: { - bool: { - must: { - nested: { - path: 'references', - query: { - bool: { - filter: { - bool: { - must: [ - { - term: { - 'references.id': actionResult.id, - }, - }, - { - term: { - 'references.type': 'action', - }, - }, - ], - }, - }, - }, - }, - }, - }, - }, - }, - }; - } - const aggregationResult = await scopedClusterClient.asInternalUser.search({ - index: kibanaIndices, - body: { - aggs, - size: 0, - query: { - match_all: {}, - }, - }, - }); - return actionResults.map((actionResult) => ({ - ...actionResult, - // @ts-expect-error aggegation type is not specified - referencedByCount: aggregationResult.aggregations[actionResult.id].doc_count, - })); -} diff --git a/x-pack/plugins/osquery/public/common/index.ts b/x-pack/plugins/actions/server/actions_client/index.ts similarity index 85% rename from x-pack/plugins/osquery/public/common/index.ts rename to x-pack/plugins/actions/server/actions_client/index.ts index 377d7af6d8164..b96ca83b402cc 100644 --- a/x-pack/plugins/osquery/public/common/index.ts +++ b/x-pack/plugins/actions/server/actions_client/index.ts @@ -5,4 +5,4 @@ * 2.0. */ -export { createFilter } from './helpers'; +export * from './actions_client'; diff --git a/x-pack/plugins/actions/server/application/connector/lib/connector_from_save_object.ts b/x-pack/plugins/actions/server/application/connector/lib/connector_from_save_object.ts new file mode 100644 index 0000000000000..95c158bff491b --- /dev/null +++ b/x-pack/plugins/actions/server/application/connector/lib/connector_from_save_object.ts @@ -0,0 +1,23 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { SavedObject } from '@kbn/core-saved-objects-common/src/server_types'; +import { RawAction } from '../../../types'; +import { Connector } from '../types'; + +export function connectorFromSavedObject( + savedObject: SavedObject, + isDeprecated: boolean +): Connector { + return { + id: savedObject.id, + ...savedObject.attributes, + isPreconfigured: false, + isDeprecated, + isSystemAction: false, + }; +} diff --git a/x-pack/plugins/actions/server/application/connector/lib/index.ts b/x-pack/plugins/actions/server/application/connector/lib/index.ts new file mode 100644 index 0000000000000..5cc0cb4a3dfda --- /dev/null +++ b/x-pack/plugins/actions/server/application/connector/lib/index.ts @@ -0,0 +1,10 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export type { ConnectorWithOptionalDeprecation } from './is_connector_deprecated'; +export { isConnectorDeprecated } from './is_connector_deprecated'; +export { connectorFromSavedObject } from './connector_from_save_object'; diff --git a/x-pack/plugins/actions/server/lib/is_connector_deprecated.test.ts b/x-pack/plugins/actions/server/application/connector/lib/is_connector_deprecated.test.ts similarity index 100% rename from x-pack/plugins/actions/server/lib/is_connector_deprecated.test.ts rename to x-pack/plugins/actions/server/application/connector/lib/is_connector_deprecated.test.ts diff --git a/x-pack/plugins/actions/server/lib/is_connector_deprecated.ts b/x-pack/plugins/actions/server/application/connector/lib/is_connector_deprecated.ts similarity index 97% rename from x-pack/plugins/actions/server/lib/is_connector_deprecated.ts rename to x-pack/plugins/actions/server/application/connector/lib/is_connector_deprecated.ts index 4ebdeec7728eb..5946ed07bab74 100644 --- a/x-pack/plugins/actions/server/lib/is_connector_deprecated.ts +++ b/x-pack/plugins/actions/server/application/connector/lib/is_connector_deprecated.ts @@ -6,7 +6,7 @@ */ import { isPlainObject } from 'lodash'; -import { InMemoryConnector, RawAction } from '../types'; +import { RawAction, InMemoryConnector } from '../../../types'; export type ConnectorWithOptionalDeprecation = Omit & Pick, 'isDeprecated'>; diff --git a/x-pack/plugins/actions/server/application/connector/methods/get_all/get_all.test.ts b/x-pack/plugins/actions/server/application/connector/methods/get_all/get_all.test.ts new file mode 100644 index 0000000000000..938961f5f38f5 --- /dev/null +++ b/x-pack/plugins/actions/server/application/connector/methods/get_all/get_all.test.ts @@ -0,0 +1,559 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { ActionsClient } from '../../../../actions_client'; +import { ActionsAuthorization } from '../../../../authorization/actions_authorization'; +import { connectorTokenClientMock } from '../../../../lib/connector_token_client.mock'; +import { getOAuthJwtAccessToken } from '../../../../lib/get_oauth_jwt_access_token'; +import { getOAuthClientCredentialsAccessToken } from '../../../../lib/get_oauth_client_credentials_access_token'; +import { savedObjectsClientMock } from '@kbn/core-saved-objects-api-server-mocks'; +import { actionsAuthorizationMock } from '../../../../authorization/actions_authorization.mock'; +import { elasticsearchServiceMock } from '@kbn/core-elasticsearch-server-mocks'; +import { actionExecutorMock } from '../../../../lib/action_executor.mock'; +import { httpServerMock } from '@kbn/core-http-server-mocks'; +import { auditLoggerMock } from '@kbn/security-plugin/server/audit/mocks'; +import { usageCountersServiceMock } from '@kbn/usage-collection-plugin/server/usage_counters/usage_counters_service.mock'; +import { loggingSystemMock } from '@kbn/core-logging-server-mocks'; +import { Logger } from '@kbn/logging'; +import { eventLogClientMock } from '@kbn/event-log-plugin/server/event_log_client.mock'; +import { ActionTypeRegistry } from '../../../../action_type_registry'; + +jest.mock('@kbn/core-saved-objects-utils-server', () => { + const actual = jest.requireActual('@kbn/core-saved-objects-utils-server'); + return { + ...actual, + SavedObjectsUtils: { + generateId: () => 'mock-saved-object-id', + }, + }; +}); + +jest.mock('../../../../lib/track_legacy_rbac_exemption', () => ({ + trackLegacyRBACExemption: jest.fn(), +})); + +jest.mock('../../../../authorization/get_authorization_mode_by_source', () => { + return { + getAuthorizationModeBySource: jest.fn(() => { + return 1; + }), + getBulkAuthorizationModeBySource: jest.fn(() => { + return 1; + }), + AuthorizationMode: { + Legacy: 0, + RBAC: 1, + }, + }; +}); + +jest.mock('../../../../lib/get_oauth_jwt_access_token', () => ({ + getOAuthJwtAccessToken: jest.fn(), +})); +jest.mock('../../../../lib/get_oauth_client_credentials_access_token', () => ({ + getOAuthClientCredentialsAccessToken: jest.fn(), +})); + +jest.mock('uuid', () => ({ + v4: () => 'uuidv4', +})); + +const kibanaIndices = ['.kibana']; +const unsecuredSavedObjectsClient = savedObjectsClientMock.create(); +const scopedClusterClient = elasticsearchServiceMock.createScopedClusterClient(); +const actionExecutor = actionExecutorMock.create(); +const authorization = actionsAuthorizationMock.create(); +const executionEnqueuer = jest.fn(); +const ephemeralExecutionEnqueuer = jest.fn(); +const bulkExecutionEnqueuer = jest.fn(); +const request = httpServerMock.createKibanaRequest(); +const auditLogger = auditLoggerMock.create(); +const mockUsageCountersSetup = usageCountersServiceMock.createSetupContract(); +const mockUsageCounter = mockUsageCountersSetup.createUsageCounter('test'); +const logger = loggingSystemMock.create().get() as jest.Mocked; +const eventLogClient = eventLogClientMock.create(); +const getEventLogClient = jest.fn(); +const connectorTokenClient = connectorTokenClientMock.create(); + +let actionsClient: ActionsClient; +let actionTypeRegistry: ActionTypeRegistry; + +describe('getAll()', () => { + beforeEach(() => { + jest.resetAllMocks(); + actionsClient = new ActionsClient({ + logger, + actionTypeRegistry, + unsecuredSavedObjectsClient, + scopedClusterClient, + kibanaIndices, + inMemoryConnectors: [], + actionExecutor, + executionEnqueuer, + ephemeralExecutionEnqueuer, + bulkExecutionEnqueuer, + request, + authorization: authorization as unknown as ActionsAuthorization, + auditLogger, + usageCounter: mockUsageCounter, + connectorTokenClient, + getEventLogClient, + }); + (getOAuthJwtAccessToken as jest.Mock).mockResolvedValue(`Bearer jwttokentokentoken`); + (getOAuthClientCredentialsAccessToken as jest.Mock).mockResolvedValue( + `Bearer clienttokentokentoken` + ); + getEventLogClient.mockResolvedValue(eventLogClient); + }); + + describe('authorization', () => { + function getAllOperation(): ReturnType { + const expectedResult = { + total: 1, + per_page: 10, + page: 1, + saved_objects: [ + { + id: '1', + type: 'type', + attributes: { + name: 'test', + config: { + foo: 'bar', + }, + }, + score: 1, + references: [], + }, + ], + }; + unsecuredSavedObjectsClient.find.mockResolvedValueOnce(expectedResult); + scopedClusterClient.asInternalUser.search.mockResponse( + // @ts-expect-error not full search response + { + aggregations: { + '1': { doc_count: 6 }, + testPreconfigured: { doc_count: 2 }, + }, + } + ); + + actionsClient = new ActionsClient({ + logger, + actionTypeRegistry, + unsecuredSavedObjectsClient, + scopedClusterClient, + kibanaIndices, + actionExecutor, + executionEnqueuer, + ephemeralExecutionEnqueuer, + bulkExecutionEnqueuer, + request, + authorization: authorization as unknown as ActionsAuthorization, + inMemoryConnectors: [ + { + id: 'testPreconfigured', + actionTypeId: '.slack', + secrets: {}, + isPreconfigured: true, + isDeprecated: false, + isSystemAction: false, + name: 'test', + config: { + foo: 'bar', + }, + }, + ], + connectorTokenClient: connectorTokenClientMock.create(), + getEventLogClient, + }); + return actionsClient.getAll(); + } + + test('ensures user is authorised to get the type of action', async () => { + await getAllOperation(); + expect(authorization.ensureAuthorized).toHaveBeenCalledWith({ operation: 'get' }); + }); + + test('throws when user is not authorised to create the type of action', async () => { + authorization.ensureAuthorized.mockRejectedValue( + new Error(`Unauthorized to get all actions`) + ); + + await expect(getAllOperation()).rejects.toMatchInlineSnapshot( + `[Error: Unauthorized to get all actions]` + ); + + expect(authorization.ensureAuthorized).toHaveBeenCalledWith({ operation: 'get' }); + }); + }); + + describe('auditLogger', () => { + test('logs audit event when searching connectors', async () => { + unsecuredSavedObjectsClient.find.mockResolvedValueOnce({ + total: 1, + per_page: 10, + page: 1, + saved_objects: [ + { + id: '1', + type: 'type', + attributes: { + name: 'test', + isMissingSecrets: false, + config: { + foo: 'bar', + }, + }, + score: 1, + references: [], + }, + ], + }); + scopedClusterClient.asInternalUser.search.mockResponse( + // @ts-expect-error not full search response + { + aggregations: { + '1': { doc_count: 6 }, + testPreconfigured: { doc_count: 2 }, + }, + } + ); + + await actionsClient.getAll(); + + expect(auditLogger.log).toHaveBeenCalledWith( + expect.objectContaining({ + event: expect.objectContaining({ + action: 'connector_find', + outcome: 'success', + }), + kibana: { saved_object: { id: '1', type: 'action' } }, + }) + ); + }); + + test('logs audit event when not authorised to search connectors', async () => { + authorization.ensureAuthorized.mockRejectedValue(new Error('Unauthorized')); + + await expect(actionsClient.getAll()).rejects.toThrow(); + + expect(auditLogger.log).toHaveBeenCalledWith( + expect.objectContaining({ + event: expect.objectContaining({ + action: 'connector_find', + outcome: 'failure', + }), + error: { code: 'Error', message: 'Unauthorized' }, + }) + ); + }); + }); + + test('calls unsecuredSavedObjectsClient with parameters and returns inMemoryConnectors correctly', async () => { + const expectedResult = { + total: 1, + per_page: 10, + page: 1, + saved_objects: [ + { + id: '1', + type: 'type', + attributes: { + name: 'test', + isMissingSecrets: false, + config: { + foo: 'bar', + }, + }, + score: 1, + references: [], + }, + ], + }; + unsecuredSavedObjectsClient.find.mockResolvedValueOnce(expectedResult); + scopedClusterClient.asInternalUser.search.mockResponse( + // @ts-expect-error not full search response + { + aggregations: { + '1': { doc_count: 6 }, + testPreconfigured: { doc_count: 2 }, + 'system-connector-.cases': { doc_count: 2 }, + }, + } + ); + + actionsClient = new ActionsClient({ + logger, + actionTypeRegistry, + unsecuredSavedObjectsClient, + scopedClusterClient, + kibanaIndices, + actionExecutor, + executionEnqueuer, + ephemeralExecutionEnqueuer, + bulkExecutionEnqueuer, + request, + authorization: authorization as unknown as ActionsAuthorization, + inMemoryConnectors: [ + { + id: 'testPreconfigured', + actionTypeId: '.slack', + secrets: {}, + isPreconfigured: true, + isDeprecated: false, + isSystemAction: false, + name: 'test', + config: { + foo: 'bar', + }, + }, + /** + * System actions will not + * be returned from getAll + * if no options are provided + */ + { + id: 'system-connector-.cases', + actionTypeId: '.cases', + name: 'System action: .cases', + config: {}, + secrets: {}, + isDeprecated: false, + isMissingSecrets: false, + isPreconfigured: false, + isSystemAction: true, + }, + ], + connectorTokenClient: connectorTokenClientMock.create(), + getEventLogClient, + }); + + const result = await actionsClient.getAll(); + + expect(result).toEqual([ + { + id: '1', + name: 'test', + isMissingSecrets: false, + config: { foo: 'bar' }, + isPreconfigured: false, + isDeprecated: false, + isSystemAction: false, + referencedByCount: 6, + }, + { + id: 'testPreconfigured', + actionTypeId: '.slack', + name: 'test', + isPreconfigured: true, + isSystemAction: false, + isDeprecated: false, + referencedByCount: 2, + }, + ]); + }); + + test('get system actions correctly', async () => { + const expectedResult = { + total: 1, + per_page: 10, + page: 1, + saved_objects: [ + { + id: '1', + type: 'type', + attributes: { + name: 'test', + isMissingSecrets: false, + config: { + foo: 'bar', + }, + }, + score: 1, + references: [], + }, + ], + }; + unsecuredSavedObjectsClient.find.mockResolvedValueOnce(expectedResult); + scopedClusterClient.asInternalUser.search.mockResponse( + // @ts-expect-error not full search response + { + aggregations: { + '1': { doc_count: 6 }, + testPreconfigured: { doc_count: 2 }, + 'system-connector-.cases': { doc_count: 2 }, + }, + } + ); + + actionsClient = new ActionsClient({ + logger, + actionTypeRegistry, + unsecuredSavedObjectsClient, + scopedClusterClient, + kibanaIndices, + actionExecutor, + executionEnqueuer, + ephemeralExecutionEnqueuer, + bulkExecutionEnqueuer, + request, + authorization: authorization as unknown as ActionsAuthorization, + inMemoryConnectors: [ + { + id: 'testPreconfigured', + actionTypeId: '.slack', + secrets: {}, + isPreconfigured: true, + isDeprecated: false, + isSystemAction: false, + name: 'test', + config: { + foo: 'bar', + }, + }, + { + id: 'system-connector-.cases', + actionTypeId: '.cases', + name: 'System action: .cases', + config: {}, + secrets: {}, + isDeprecated: false, + isMissingSecrets: false, + isPreconfigured: false, + isSystemAction: true, + }, + ], + connectorTokenClient: connectorTokenClientMock.create(), + getEventLogClient, + }); + + const result = await actionsClient.getAll({ includeSystemActions: true }); + + expect(result).toEqual([ + { + actionTypeId: '.cases', + id: 'system-connector-.cases', + isDeprecated: false, + isPreconfigured: false, + isSystemAction: true, + name: 'System action: .cases', + referencedByCount: 2, + }, + { + id: '1', + name: 'test', + isMissingSecrets: false, + config: { foo: 'bar' }, + isPreconfigured: false, + isDeprecated: false, + isSystemAction: false, + referencedByCount: 6, + }, + { + id: 'testPreconfigured', + actionTypeId: '.slack', + name: 'test', + isPreconfigured: true, + isSystemAction: false, + isDeprecated: false, + referencedByCount: 2, + }, + ]); + }); + + test('validates connectors before return', async () => { + unsecuredSavedObjectsClient.find.mockResolvedValueOnce({ + total: 1, + per_page: 10, + page: 1, + saved_objects: [ + { + id: '1', + type: 'type', + attributes: { + name: 'test', + isMissingSecrets: false, + config: { + foo: 'bar', + }, + }, + score: 1, + references: [], + }, + ], + }); + scopedClusterClient.asInternalUser.search.mockResponse( + // @ts-expect-error not full search response + { + aggregations: { + '1': { doc_count: 6 }, + testPreconfigured: { doc_count: 2 }, + }, + } + ); + + actionsClient = new ActionsClient({ + logger, + actionTypeRegistry, + unsecuredSavedObjectsClient, + scopedClusterClient, + kibanaIndices, + actionExecutor, + executionEnqueuer, + ephemeralExecutionEnqueuer, + bulkExecutionEnqueuer, + request, + authorization: authorization as unknown as ActionsAuthorization, + inMemoryConnectors: [ + { + id: 'testPreconfigured', + actionTypeId: '.slack', + secrets: {}, + isPreconfigured: true, + isDeprecated: false, + isSystemAction: false, + name: 'test', + config: { + foo: 'bar', + }, + }, + ], + connectorTokenClient: connectorTokenClientMock.create(), + getEventLogClient, + }); + + const result = await actionsClient.getAll({ includeSystemActions: true }); + expect(result).toEqual([ + { + config: { + foo: 'bar', + }, + id: '1', + isDeprecated: false, + isMissingSecrets: false, + isPreconfigured: false, + isSystemAction: false, + name: 'test', + referencedByCount: 6, + }, + { + actionTypeId: '.slack', + id: 'testPreconfigured', + isDeprecated: false, + isPreconfigured: true, + isSystemAction: false, + name: 'test', + referencedByCount: 2, + }, + ]); + + expect(logger.warn).toHaveBeenCalledWith( + 'Error validating connector: 1, Error: [actionTypeId]: expected value of type [string] but got [undefined]' + ); + }); +}); diff --git a/x-pack/plugins/actions/server/application/connector/methods/get_all/get_all.ts b/x-pack/plugins/actions/server/application/connector/methods/get_all/get_all.ts new file mode 100644 index 0000000000000..f0945c27265c7 --- /dev/null +++ b/x-pack/plugins/actions/server/application/connector/methods/get_all/get_all.ts @@ -0,0 +1,129 @@ +/* + * Copyright 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. + */ + +/** + * Get all actions with in-memory connectors + */ +import * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey'; +import { connectorSchema } from '../../schemas'; +import { findConnectorsSo, searchConnectorsSo } from '../../../../data/connector'; +import { GetAllParams, InjectExtraFindDataParams } from './types'; +import { ConnectorAuditAction, connectorAuditEvent } from '../../../../lib/audit_events'; +import { connectorFromSavedObject, isConnectorDeprecated } from '../../lib'; +import { FindConnectorResult } from '../../types'; + +export async function getAll({ + context, + includeSystemActions = false, +}: GetAllParams): Promise { + try { + await context.authorization.ensureAuthorized({ operation: 'get' }); + } catch (error) { + context.auditLogger?.log( + connectorAuditEvent({ + action: ConnectorAuditAction.FIND, + error, + }) + ); + throw error; + } + + const savedObjectsActions = ( + await findConnectorsSo({ unsecuredSavedObjectsClient: context.unsecuredSavedObjectsClient }) + ).saved_objects.map((rawAction) => + connectorFromSavedObject(rawAction, isConnectorDeprecated(rawAction.attributes)) + ); + + savedObjectsActions.forEach(({ id }) => + context.auditLogger?.log( + connectorAuditEvent({ + action: ConnectorAuditAction.FIND, + savedObject: { type: 'action', id }, + }) + ) + ); + + const inMemoryConnectorsFiltered = includeSystemActions + ? context.inMemoryConnectors + : context.inMemoryConnectors.filter((connector) => !connector.isSystemAction); + + const mergedResult = [ + ...savedObjectsActions, + ...inMemoryConnectorsFiltered.map((inMemoryConnector) => ({ + id: inMemoryConnector.id, + actionTypeId: inMemoryConnector.actionTypeId, + name: inMemoryConnector.name, + isPreconfigured: inMemoryConnector.isPreconfigured, + isDeprecated: isConnectorDeprecated(inMemoryConnector), + isSystemAction: inMemoryConnector.isSystemAction, + })), + ].sort((a, b) => a.name.localeCompare(b.name)); + + mergedResult.forEach((connector) => { + // Try to validate the connectors, but don't throw. + try { + connectorSchema.validate(connector); + } catch (e) { + context.logger.warn(`Error validating connector: ${connector.id}, ${e}`); + } + }); + + return await injectExtraFindData({ + kibanaIndices: context.kibanaIndices, + scopedClusterClient: context.scopedClusterClient, + connectors: mergedResult, + }); +} + +async function injectExtraFindData({ + kibanaIndices, + scopedClusterClient, + connectors, +}: InjectExtraFindDataParams): Promise { + const aggs: Record = {}; + for (const connector of connectors) { + aggs[connector.id] = { + filter: { + bool: { + must: { + nested: { + path: 'references', + query: { + bool: { + filter: { + bool: { + must: [ + { + term: { + 'references.id': connector.id, + }, + }, + { + term: { + 'references.type': 'action', + }, + }, + ], + }, + }, + }, + }, + }, + }, + }, + }, + }; + } + + const aggregationResult = await searchConnectorsSo({ scopedClusterClient, kibanaIndices, aggs }); + + return connectors.map((connector) => ({ + ...connector, + // @ts-expect-error aggegation type is not specified + referencedByCount: aggregationResult.aggregations[connector.id].doc_count, + })); +} diff --git a/x-pack/plugins/actions/server/application/connector/methods/get_all/index.ts b/x-pack/plugins/actions/server/application/connector/methods/get_all/index.ts new file mode 100644 index 0000000000000..dcbc4c6fbc957 --- /dev/null +++ b/x-pack/plugins/actions/server/application/connector/methods/get_all/index.ts @@ -0,0 +1,8 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export { getAll } from './get_all'; diff --git a/x-pack/plugins/actions/server/application/connector/methods/get_all/types/index.ts b/x-pack/plugins/actions/server/application/connector/methods/get_all/types/index.ts new file mode 100644 index 0000000000000..00354ca60714d --- /dev/null +++ b/x-pack/plugins/actions/server/application/connector/methods/get_all/types/index.ts @@ -0,0 +1,8 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export type { GetAllParams, InjectExtraFindDataParams } from './params'; diff --git a/x-pack/plugins/actions/server/application/connector/methods/get_all/types/params.ts b/x-pack/plugins/actions/server/application/connector/methods/get_all/types/params.ts new file mode 100644 index 0000000000000..4e5157a1fdce0 --- /dev/null +++ b/x-pack/plugins/actions/server/application/connector/methods/get_all/types/params.ts @@ -0,0 +1,21 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { IScopedClusterClient } from '@kbn/core-elasticsearch-server'; +import { ActionsClientContext } from '../../../../../actions_client'; +import { Connector } from '../../../types'; + +export interface GetAllParams { + includeSystemActions?: boolean; + context: ActionsClientContext; +} + +export interface InjectExtraFindDataParams { + kibanaIndices: string[]; + scopedClusterClient: IScopedClusterClient; + connectors: Connector[]; +} diff --git a/x-pack/plugins/actions/server/application/connector/schemas/connector_schema.ts b/x-pack/plugins/actions/server/application/connector/schemas/connector_schema.ts new file mode 100644 index 0000000000000..0c2ac00c88d1e --- /dev/null +++ b/x-pack/plugins/actions/server/application/connector/schemas/connector_schema.ts @@ -0,0 +1,19 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { schema } from '@kbn/config-schema'; + +export const connectorSchema = schema.object({ + id: schema.string(), + name: schema.string(), + actionTypeId: schema.string(), + config: schema.maybe(schema.recordOf(schema.string(), schema.any())), + isMissingSecrets: schema.maybe(schema.boolean()), + isPreconfigured: schema.boolean(), + isDeprecated: schema.boolean(), + isSystemAction: schema.boolean(), +}); diff --git a/x-pack/plugins/actions/server/application/connector/schemas/index.ts b/x-pack/plugins/actions/server/application/connector/schemas/index.ts new file mode 100644 index 0000000000000..f2a1bc4c6096a --- /dev/null +++ b/x-pack/plugins/actions/server/application/connector/schemas/index.ts @@ -0,0 +1,8 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export * from './connector_schema'; diff --git a/x-pack/plugins/actions/server/application/connector/types/connector.ts b/x-pack/plugins/actions/server/application/connector/types/connector.ts new file mode 100644 index 0000000000000..ef7b26ee9db29 --- /dev/null +++ b/x-pack/plugins/actions/server/application/connector/types/connector.ts @@ -0,0 +1,27 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { TypeOf } from '@kbn/config-schema'; +import { connectorSchema } from '../schemas'; +import { ActionTypeConfig } from '../../../types'; + +type ConnectorSchemaType = TypeOf; + +export interface Connector { + id: ConnectorSchemaType['id']; + actionTypeId: ConnectorSchemaType['actionTypeId']; + name: ConnectorSchemaType['name']; + isMissingSecrets?: ConnectorSchemaType['isMissingSecrets']; + config?: Config; + isPreconfigured: ConnectorSchemaType['isPreconfigured']; + isDeprecated: ConnectorSchemaType['isDeprecated']; + isSystemAction: ConnectorSchemaType['isSystemAction']; +} + +export interface FindConnectorResult extends Connector { + referencedByCount: number; +} diff --git a/x-pack/plugins/actions/server/application/connector/types/index.ts b/x-pack/plugins/actions/server/application/connector/types/index.ts new file mode 100644 index 0000000000000..ab87e9a5baaad --- /dev/null +++ b/x-pack/plugins/actions/server/application/connector/types/index.ts @@ -0,0 +1,8 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export type { Connector, FindConnectorResult } from './connector'; diff --git a/x-pack/plugins/actions/server/data/connector/constants.ts b/x-pack/plugins/actions/server/data/connector/constants.ts new file mode 100644 index 0000000000000..6df87594b3568 --- /dev/null +++ b/x-pack/plugins/actions/server/data/connector/constants.ts @@ -0,0 +1,11 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +// We are assuming there won't be many actions. This is why we will load +// all the actions in advance and assume the total count to not go over 10000. +// We'll set this max setting assuming it's never reached. +export const MAX_ACTIONS_RETURNED = 10000; diff --git a/x-pack/plugins/actions/server/data/connector/find_connectors_so.ts b/x-pack/plugins/actions/server/data/connector/find_connectors_so.ts new file mode 100644 index 0000000000000..da232f5b2aa83 --- /dev/null +++ b/x-pack/plugins/actions/server/data/connector/find_connectors_so.ts @@ -0,0 +1,18 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { FindConnectorsSoResult, FindConnectorsSoParams } from './types'; +import { MAX_ACTIONS_RETURNED } from './constants'; + +export const findConnectorsSo = async ({ + unsecuredSavedObjectsClient, +}: FindConnectorsSoParams): Promise => { + return unsecuredSavedObjectsClient.find({ + perPage: MAX_ACTIONS_RETURNED, + type: 'action', + }); +}; diff --git a/x-pack/plugins/actions/server/data/connector/index.ts b/x-pack/plugins/actions/server/data/connector/index.ts new file mode 100644 index 0000000000000..c317e3c6227cd --- /dev/null +++ b/x-pack/plugins/actions/server/data/connector/index.ts @@ -0,0 +1,9 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export { findConnectorsSo } from './find_connectors_so'; +export { searchConnectorsSo } from './search_connectors_so'; diff --git a/x-pack/plugins/actions/server/data/connector/search_connectors_so.ts b/x-pack/plugins/actions/server/data/connector/search_connectors_so.ts new file mode 100644 index 0000000000000..b44b109e9265f --- /dev/null +++ b/x-pack/plugins/actions/server/data/connector/search_connectors_so.ts @@ -0,0 +1,25 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { SearchConnectorsSoParams } from './types'; + +export const searchConnectorsSo = async ({ + scopedClusterClient, + kibanaIndices, + aggs, +}: SearchConnectorsSoParams) => { + return scopedClusterClient.asInternalUser.search({ + index: kibanaIndices, + body: { + aggs, + size: 0, + query: { + match_all: {}, + }, + }, + }); +}; diff --git a/x-pack/plugins/actions/server/data/connector/types/find_connectors_so_result.ts b/x-pack/plugins/actions/server/data/connector/types/find_connectors_so_result.ts new file mode 100644 index 0000000000000..ff1f3b0f89c9c --- /dev/null +++ b/x-pack/plugins/actions/server/data/connector/types/find_connectors_so_result.ts @@ -0,0 +1,11 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { SavedObjectsFindResponse } from '@kbn/core-saved-objects-api-server'; +import { RawAction } from '../../../types'; + +export type FindConnectorsSoResult = SavedObjectsFindResponse; diff --git a/x-pack/plugins/actions/server/data/connector/types/index.ts b/x-pack/plugins/actions/server/data/connector/types/index.ts new file mode 100644 index 0000000000000..070f10e48cf15 --- /dev/null +++ b/x-pack/plugins/actions/server/data/connector/types/index.ts @@ -0,0 +1,9 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export type { SearchConnectorsSoParams, FindConnectorsSoParams } from './params'; +export type { FindConnectorsSoResult } from './find_connectors_so_result'; diff --git a/x-pack/plugins/actions/server/data/connector/types/params.ts b/x-pack/plugins/actions/server/data/connector/types/params.ts new file mode 100644 index 0000000000000..c92aaf2f87fd0 --- /dev/null +++ b/x-pack/plugins/actions/server/data/connector/types/params.ts @@ -0,0 +1,20 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { IScopedClusterClient } from '@kbn/core-elasticsearch-server'; +import * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey'; +import { SavedObjectsClientContract } from '@kbn/core-saved-objects-api-server'; + +export interface SearchConnectorsSoParams { + kibanaIndices: string[]; + scopedClusterClient: IScopedClusterClient; + aggs: Record; +} + +export interface FindConnectorsSoParams { + unsecuredSavedObjectsClient: SavedObjectsClientContract; +} diff --git a/x-pack/plugins/actions/server/index.ts b/x-pack/plugins/actions/server/index.ts index 3deddfc9c16c6..082c266fa00e3 100644 --- a/x-pack/plugins/actions/server/index.ts +++ b/x-pack/plugins/actions/server/index.ts @@ -24,9 +24,10 @@ export type { ActionType, InMemoryConnector, ActionsApiRequestHandlerContext, - FindActionResult, } from './types'; +export type { FindConnectorResult as FindActionResult } from './application/connector/types'; + export type { PluginSetupContract, PluginStartContract } from './plugin'; export { diff --git a/x-pack/plugins/actions/server/plugin.test.ts b/x-pack/plugins/actions/server/plugin.test.ts index 6752f85e9a464..66d75da5fd7cf 100644 --- a/x-pack/plugins/actions/server/plugin.test.ts +++ b/x-pack/plugins/actions/server/plugin.test.ts @@ -237,7 +237,7 @@ describe('Actions Plugin', () => { * that got set up on start (step 3). */ // @ts-expect-error: inMemoryConnectors can be accessed - expect(actionsContextHandler.getActionsClient().inMemoryConnectors).toEqual([ + expect(actionsContextHandler.getActionsClient().context.inMemoryConnectors).toEqual([ { id: 'preconfiguredServerLog', actionTypeId: '.server-log', diff --git a/x-pack/plugins/actions/server/plugin.ts b/x-pack/plugins/actions/server/plugin.ts index a9c70ec192f57..122e3075ac0ac 100644 --- a/x-pack/plugins/actions/server/plugin.ts +++ b/x-pack/plugins/actions/server/plugin.ts @@ -96,7 +96,7 @@ import { InMemoryMetrics, registerClusterCollector, registerNodeCollector } from import { isConnectorDeprecated, ConnectorWithOptionalDeprecation, -} from './lib/is_connector_deprecated'; +} from './application/connector/lib'; import { createSubActionConnectorFramework } from './sub_action_framework'; import { IServiceAbstract, SubActionConnectorType } from './sub_action_framework/types'; import { SubActionConnector } from './sub_action_framework/sub_action_connector'; diff --git a/x-pack/plugins/actions/server/routes/get_all.test.ts b/x-pack/plugins/actions/server/routes/connector/get_all/get_all.test.ts similarity index 75% rename from x-pack/plugins/actions/server/routes/get_all.test.ts rename to x-pack/plugins/actions/server/routes/connector/get_all/get_all.test.ts index ea65a3bdf4dd1..06491cfeb8ef2 100644 --- a/x-pack/plugins/actions/server/routes/get_all.test.ts +++ b/x-pack/plugins/actions/server/routes/connector/get_all/get_all.test.ts @@ -5,14 +5,14 @@ * 2.0. */ -import { getAllActionRoute } from './get_all'; +import { getAllConnectorsRoute } from './get_all'; import { httpServiceMock } from '@kbn/core/server/mocks'; -import { licenseStateMock } from '../lib/license_state.mock'; -import { mockHandlerArguments } from './legacy/_mock_handler_arguments'; -import { actionsClientMock } from '../actions_client.mock'; -import { verifyAccessAndContext } from './verify_access_and_context'; +import { licenseStateMock } from '../../../lib/license_state.mock'; +import { mockHandlerArguments } from '../../legacy/_mock_handler_arguments'; +import { verifyAccessAndContext } from '../../verify_access_and_context'; +import { actionsClientMock } from '../../../actions_client.mock'; -jest.mock('./verify_access_and_context', () => ({ +jest.mock('../../verify_access_and_context', () => ({ verifyAccessAndContext: jest.fn(), })); @@ -21,12 +21,12 @@ beforeEach(() => { (verifyAccessAndContext as jest.Mock).mockImplementation((license, handler) => handler); }); -describe('getAllActionRoute', () => { - it('get all actions with proper parameters', async () => { +describe('getAllConnectorsRoute', () => { + it('get all connectors with proper parameters', async () => { const licenseState = licenseStateMock.create(); const router = httpServiceMock.createRouter(); - getAllActionRoute(router, licenseState); + getAllConnectorsRoute(router, licenseState); const [config, handler] = router.get.mock.calls[0]; @@ -50,11 +50,11 @@ describe('getAllActionRoute', () => { }); }); - it('ensures the license allows getting all actions', async () => { + it('ensures the license allows getting all connectors', async () => { const licenseState = licenseStateMock.create(); const router = httpServiceMock.createRouter(); - getAllActionRoute(router, licenseState); + getAllConnectorsRoute(router, licenseState); const [config, handler] = router.get.mock.calls[0]; @@ -70,7 +70,7 @@ describe('getAllActionRoute', () => { expect(verifyAccessAndContext).toHaveBeenCalledWith(licenseState, expect.any(Function)); }); - it('ensures the license check prevents getting all actions', async () => { + it('ensures the license check prevents getting all connectors', async () => { const licenseState = licenseStateMock.create(); const router = httpServiceMock.createRouter(); @@ -78,7 +78,7 @@ describe('getAllActionRoute', () => { throw new Error('OMG'); }); - getAllActionRoute(router, licenseState); + getAllConnectorsRoute(router, licenseState); const [config, handler] = router.get.mock.calls[0]; diff --git a/x-pack/plugins/actions/server/routes/connector/get_all/get_all.ts b/x-pack/plugins/actions/server/routes/connector/get_all/get_all.ts new file mode 100644 index 0000000000000..068ce777647b4 --- /dev/null +++ b/x-pack/plugins/actions/server/routes/connector/get_all/get_all.ts @@ -0,0 +1,35 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { IRouter } from '@kbn/core/server'; +import { ConnectorResponseV1 } from '../../../../common/routes/connector/response'; +import { transformGetAllConnectorsResponseV1 } from './transforms'; +import { ActionsRequestHandlerContext } from '../../../types'; +import { BASE_ACTION_API_PATH } from '../../../../common'; +import { ILicenseState } from '../../../lib'; +import { verifyAccessAndContext } from '../../verify_access_and_context'; + +export const getAllConnectorsRoute = ( + router: IRouter, + licenseState: ILicenseState +) => { + router.get( + { + path: `${BASE_ACTION_API_PATH}/connectors`, + validate: {}, + }, + router.handleLegacyErrors( + verifyAccessAndContext(licenseState, async function (context, req, res) { + const actionsClient = (await context.actions).getActionsClient(); + const result = await actionsClient.getAll(); + + const responseBody: ConnectorResponseV1[] = transformGetAllConnectorsResponseV1(result); + return res.ok({ body: responseBody }); + }) + ) + ); +}; diff --git a/x-pack/plugins/actions/server/routes/connector/get_all/index.ts b/x-pack/plugins/actions/server/routes/connector/get_all/index.ts new file mode 100644 index 0000000000000..58680a84850b2 --- /dev/null +++ b/x-pack/plugins/actions/server/routes/connector/get_all/index.ts @@ -0,0 +1,8 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export { getAllConnectorsRoute } from './get_all'; diff --git a/x-pack/plugins/actions/server/routes/connector/get_all/transforms/index.ts b/x-pack/plugins/actions/server/routes/connector/get_all/transforms/index.ts new file mode 100644 index 0000000000000..e989acda56cce --- /dev/null +++ b/x-pack/plugins/actions/server/routes/connector/get_all/transforms/index.ts @@ -0,0 +1,10 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export { transformGetAllConnectorsResponse } from './transform_connectors_response/latest'; + +export { transformGetAllConnectorsResponse as transformGetAllConnectorsResponseV1 } from './transform_connectors_response/v1'; diff --git a/x-pack/plugins/actions/server/routes/connector/get_all/transforms/transform_connectors_response/latest.ts b/x-pack/plugins/actions/server/routes/connector/get_all/transforms/transform_connectors_response/latest.ts new file mode 100644 index 0000000000000..500cc1435aadb --- /dev/null +++ b/x-pack/plugins/actions/server/routes/connector/get_all/transforms/transform_connectors_response/latest.ts @@ -0,0 +1,8 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export { transformGetAllConnectorsResponse } from './v1'; diff --git a/x-pack/plugins/actions/server/routes/connector/get_all/transforms/transform_connectors_response/v1.ts b/x-pack/plugins/actions/server/routes/connector/get_all/transforms/transform_connectors_response/v1.ts new file mode 100644 index 0000000000000..731726560eb0c --- /dev/null +++ b/x-pack/plugins/actions/server/routes/connector/get_all/transforms/transform_connectors_response/v1.ts @@ -0,0 +1,37 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { FindConnectorResult } from '../../../../../application/connector/types'; +import { ConnectorResponseV1 } from '../../../../../../common/routes/connector/response'; + +export const transformGetAllConnectorsResponse = ( + results: FindConnectorResult[] +): ConnectorResponseV1[] => { + return results.map( + ({ + id, + name, + config, + actionTypeId, + isPreconfigured, + isDeprecated, + referencedByCount, + isMissingSecrets, + isSystemAction, + }) => ({ + id, + name, + config, + connector_type_id: actionTypeId, + is_preconfigured: isPreconfigured, + is_deprecated: isDeprecated, + referenced_by_count: referencedByCount, + is_missing_secrets: isMissingSecrets, + is_system_action: isSystemAction, + }) + ); +}; diff --git a/x-pack/plugins/actions/server/routes/get_all.ts b/x-pack/plugins/actions/server/routes/get_all.ts deleted file mode 100644 index dec70257313e1..0000000000000 --- a/x-pack/plugins/actions/server/routes/get_all.ts +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { IRouter } from '@kbn/core/server'; -import { ILicenseState } from '../lib'; -import { BASE_ACTION_API_PATH, RewriteResponseCase } from '../../common'; -import { ActionsRequestHandlerContext, FindActionResult } from '../types'; -import { verifyAccessAndContext } from './verify_access_and_context'; - -const rewriteBodyRes: RewriteResponseCase = (results) => { - return results.map( - ({ - actionTypeId, - isPreconfigured, - isDeprecated, - referencedByCount, - isMissingSecrets, - isSystemAction, - ...res - }) => ({ - ...res, - connector_type_id: actionTypeId, - is_preconfigured: isPreconfigured, - is_deprecated: isDeprecated, - referenced_by_count: referencedByCount, - is_missing_secrets: isMissingSecrets, - is_system_action: isSystemAction, - }) - ); -}; - -export const getAllActionRoute = ( - router: IRouter, - licenseState: ILicenseState -) => { - router.get( - { - path: `${BASE_ACTION_API_PATH}/connectors`, - validate: {}, - }, - router.handleLegacyErrors( - verifyAccessAndContext(licenseState, async function (context, req, res) { - const actionsClient = (await context.actions).getActionsClient(); - const result = await actionsClient.getAll(); - return res.ok({ - body: rewriteBodyRes(result), - }); - }) - ) - ); -}; diff --git a/x-pack/plugins/actions/server/routes/index.ts b/x-pack/plugins/actions/server/routes/index.ts index 90704190adb9c..d46ce9dd5cc51 100644 --- a/x-pack/plugins/actions/server/routes/index.ts +++ b/x-pack/plugins/actions/server/routes/index.ts @@ -7,13 +7,13 @@ import { IRouter } from '@kbn/core/server'; import { UsageCounter } from '@kbn/usage-collection-plugin/server'; +import { getAllConnectorsRoute } from './connector/get_all'; import { ILicenseState } from '../lib'; import { ActionsRequestHandlerContext } from '../types'; import { createActionRoute } from './create'; import { deleteActionRoute } from './delete'; import { executeActionRoute } from './execute'; import { getActionRoute } from './get'; -import { getAllActionRoute } from './get_all'; import { connectorTypesRoute } from './connector_types'; import { updateActionRoute } from './update'; import { getOAuthAccessToken } from './get_oauth_access_token'; @@ -37,7 +37,7 @@ export function defineRoutes(opts: RouteOptions) { createActionRoute(router, licenseState); deleteActionRoute(router, licenseState); getActionRoute(router, licenseState); - getAllActionRoute(router, licenseState); + getAllConnectorsRoute(router, licenseState); updateActionRoute(router, licenseState); connectorTypesRoute(router, licenseState); executeActionRoute(router, licenseState); diff --git a/x-pack/plugins/actions/server/types.ts b/x-pack/plugins/actions/server/types.ts index a20ea31eeea54..91c6e0060cb67 100644 --- a/x-pack/plugins/actions/server/types.ts +++ b/x-pack/plugins/actions/server/types.ts @@ -35,6 +35,7 @@ export type ActionTypeParams = Record; export type ConnectorTokenClientContract = PublicMethodsOf; import type { ActionExecutionSource } from './lib'; +import { Connector, FindConnectorResult } from './application/connector/types'; export type { ActionExecutionSource } from './lib'; export { ActionExecutionSourceType } from './lib'; @@ -77,16 +78,7 @@ export interface ActionTypeExecutorOptions< source?: ActionExecutionSource; } -export interface ActionResult { - id: string; - actionTypeId: string; - name: string; - isMissingSecrets?: boolean; - config?: Config; - isPreconfigured: boolean; - isDeprecated: boolean; - isSystemAction: boolean; -} +export type ActionResult = Connector; export interface InMemoryConnector< Config extends ActionTypeConfig = ActionTypeConfig, @@ -96,9 +88,7 @@ export interface InMemoryConnector< config: Config; } -export interface FindActionResult extends ActionResult { - referencedByCount: number; -} +export type FindActionResult = FindConnectorResult; // signature of the action type executor function export type ExecutorType< diff --git a/x-pack/plugins/actions/tsconfig.json b/x-pack/plugins/actions/tsconfig.json index ac252d3362d21..0f4d2faf03e1a 100644 --- a/x-pack/plugins/actions/tsconfig.json +++ b/x-pack/plugins/actions/tsconfig.json @@ -39,6 +39,10 @@ "@kbn/core-saved-objects-api-server", "@kbn/core-elasticsearch-server", "@kbn/core-http-router-server-internal", + "@kbn/core-saved-objects-common", + "@kbn/core-saved-objects-api-server-mocks", + "@kbn/core-elasticsearch-server-mocks", + "@kbn/core-logging-server-mocks", ], "exclude": [ "target/**/*", diff --git a/x-pack/plugins/aiops/public/components/change_point_detection/change_point_detection_root.tsx b/x-pack/plugins/aiops/public/components/change_point_detection/change_point_detection_root.tsx index 0e5c23ac21010..dd2380fedfa32 100644 --- a/x-pack/plugins/aiops/public/components/change_point_detection/change_point_detection_root.tsx +++ b/x-pack/plugins/aiops/public/components/change_point_detection/change_point_detection_root.tsx @@ -18,7 +18,6 @@ import { UrlStateProvider } from '@kbn/ml-url-state'; import { Storage } from '@kbn/kibana-utils-plugin/public'; import { DatePickerContextProvider, mlTimefilterRefresh$ } from '@kbn/ml-date-picker'; import { UI_SETTINGS } from '@kbn/data-plugin/common'; -import { toMountPoint, wrapWithTheme } from '@kbn/kibana-react-plugin/public'; import { type Observable } from 'rxjs'; import { DataSourceContext } from '../../hooks/use_data_source'; @@ -55,9 +54,7 @@ export const ChangePointDetectionAppState: FC appDependencies, }) => { const datePickerDeps = { - ...pick(appDependencies, ['data', 'http', 'notifications', 'theme', 'uiSettings']), - toMountPoint, - wrapWithTheme, + ...pick(appDependencies, ['data', 'http', 'notifications', 'theme', 'uiSettings', 'i18n']), uiSettingsKeys: UI_SETTINGS, }; diff --git a/x-pack/plugins/aiops/public/components/log_categorization/log_categorization_app_state.tsx b/x-pack/plugins/aiops/public/components/log_categorization/log_categorization_app_state.tsx index ab52ab99266f3..a7c9bc17b6fe9 100644 --- a/x-pack/plugins/aiops/public/components/log_categorization/log_categorization_app_state.tsx +++ b/x-pack/plugins/aiops/public/components/log_categorization/log_categorization_app_state.tsx @@ -14,7 +14,6 @@ import { UrlStateProvider } from '@kbn/ml-url-state'; import { Storage } from '@kbn/kibana-utils-plugin/public'; import { DatePickerContextProvider } from '@kbn/ml-date-picker'; import { UI_SETTINGS } from '@kbn/data-plugin/common'; -import { toMountPoint, wrapWithTheme } from '@kbn/kibana-react-plugin/public'; import { DataSourceContext } from '../../hooks/use_data_source'; import type { AiopsAppDependencies } from '../../hooks/use_aiops_app_context'; @@ -52,9 +51,7 @@ export const LogCategorizationAppState: FC = ({ } const datePickerDeps = { - ...pick(appDependencies, ['data', 'http', 'notifications', 'theme', 'uiSettings']), - toMountPoint, - wrapWithTheme, + ...pick(appDependencies, ['data', 'http', 'notifications', 'theme', 'uiSettings', 'i18n']), uiSettingsKeys: UI_SETTINGS, }; diff --git a/x-pack/plugins/aiops/public/components/log_categorization/show_flyout.tsx b/x-pack/plugins/aiops/public/components/log_categorization/show_flyout.tsx index 16ef28ef75fc0..5890bd8a2f74d 100644 --- a/x-pack/plugins/aiops/public/components/log_categorization/show_flyout.tsx +++ b/x-pack/plugins/aiops/public/components/log_categorization/show_flyout.tsx @@ -12,14 +12,11 @@ import { pick } from 'lodash'; import type { CoreStart } from '@kbn/core/public'; import { Storage } from '@kbn/kibana-utils-plugin/public'; -import { - toMountPoint, - wrapWithTheme, - KibanaContextProvider, -} from '@kbn/kibana-react-plugin/public'; +import { KibanaContextProvider } from '@kbn/kibana-react-plugin/public'; +import { toMountPoint } from '@kbn/react-kibana-mount'; import type { DataViewField, DataView } from '@kbn/data-views-plugin/common'; import { UI_SETTINGS } from '@kbn/data-plugin/public'; -import { DatePickerContextProvider } from '@kbn/ml-date-picker'; +import { DatePickerContextProvider, type DatePickerDependencies } from '@kbn/ml-date-picker'; import { StorageContextProvider } from '@kbn/ml-local-storage'; import type { AiopsPluginStartDeps } from '../../types'; import { AiopsAppContext } from '../../hooks/use_aiops_app_context'; @@ -34,7 +31,7 @@ export async function showCategorizeFlyout( coreStart: CoreStart, plugins: AiopsPluginStartDeps ): Promise { - const { http, theme, overlays, application, notifications, uiSettings } = coreStart; + const { http, theme, overlays, application, notifications, uiSettings, i18n } = coreStart; return new Promise(async (resolve, reject) => { try { @@ -49,38 +46,36 @@ export async function showCategorizeFlyout( http, theme, application, + i18n, ...plugins, }; - const datePickerDeps = { + const datePickerDeps: DatePickerDependencies = { ...pick(appDependencies, ['data', 'http', 'notifications', 'theme', 'uiSettings']), - toMountPoint, - wrapWithTheme, + i18n, uiSettingsKeys: UI_SETTINGS, }; const flyoutSession = overlays.openFlyout( toMountPoint( - wrapWithTheme( - - - - - - - - - , - theme.theme$ - ) + + + + + + + + + , + { theme, i18n } ), { 'data-test-subj': 'aiopsCategorizeFlyout', diff --git a/x-pack/plugins/aiops/public/components/log_rate_analysis/log_rate_analysis_app_state.tsx b/x-pack/plugins/aiops/public/components/log_rate_analysis/log_rate_analysis_app_state.tsx index 1bbca85e83e09..212d0465b9cc0 100644 --- a/x-pack/plugins/aiops/public/components/log_rate_analysis/log_rate_analysis_app_state.tsx +++ b/x-pack/plugins/aiops/public/components/log_rate_analysis/log_rate_analysis_app_state.tsx @@ -15,7 +15,6 @@ import { UrlStateProvider } from '@kbn/ml-url-state'; import { Storage } from '@kbn/kibana-utils-plugin/public'; import { DatePickerContextProvider } from '@kbn/ml-date-picker'; import { UI_SETTINGS } from '@kbn/data-plugin/common'; -import { toMountPoint, wrapWithTheme } from '@kbn/kibana-react-plugin/public'; import type { AiopsAppDependencies } from '../../hooks/use_aiops_app_context'; import { AiopsAppContext } from '../../hooks/use_aiops_app_context'; @@ -58,9 +57,7 @@ export const LogRateAnalysisAppState: FC = ({ } const datePickerDeps = { - ...pick(appDependencies, ['data', 'http', 'notifications', 'theme', 'uiSettings']), - toMountPoint, - wrapWithTheme, + ...pick(appDependencies, ['data', 'http', 'notifications', 'theme', 'uiSettings', 'i18n']), uiSettingsKeys: UI_SETTINGS, }; diff --git a/x-pack/plugins/aiops/public/components/log_rate_analysis/log_rate_analysis_content/log_rate_analysis_content_wrapper.tsx b/x-pack/plugins/aiops/public/components/log_rate_analysis/log_rate_analysis_content/log_rate_analysis_content_wrapper.tsx index 80babf7530d02..ec258081d840d 100644 --- a/x-pack/plugins/aiops/public/components/log_rate_analysis/log_rate_analysis_content/log_rate_analysis_content_wrapper.tsx +++ b/x-pack/plugins/aiops/public/components/log_rate_analysis/log_rate_analysis_content/log_rate_analysis_content_wrapper.tsx @@ -18,7 +18,6 @@ import { UrlStateProvider } from '@kbn/ml-url-state'; import { Storage } from '@kbn/kibana-utils-plugin/public'; import { DatePickerContextProvider } from '@kbn/ml-date-picker'; import { UI_SETTINGS } from '@kbn/data-plugin/common'; -import { toMountPoint, wrapWithTheme } from '@kbn/kibana-react-plugin/public'; import { timeSeriesDataViewWarning } from '../../../application/utils/time_series_dataview_check'; import { AiopsAppContext, type AiopsAppDependencies } from '../../../hooks/use_aiops_app_context'; @@ -81,9 +80,7 @@ export const LogRateAnalysisContentWrapper: FC this.setInitializationFinished()); + } + + private async initOutput() { + const { + data: { dataViews: dataViewsService }, + } = this.deps; + + const { dataViewId } = this.getInput(); + + const dataView = await dataViewsService.get(dataViewId); + + this.updateOutput({ + indexPatterns: [dataView], + }); } public reportsEmbeddableLoad() { @@ -95,9 +114,7 @@ export class EmbeddableChangePointChart extends AbstractEmbeddable< const I18nContext = this.deps.i18n.Context; const datePickerDeps = { - ...pick(this.deps, ['data', 'http', 'notifications', 'theme', 'uiSettings']), - toMountPoint, - wrapWithTheme, + ...pick(this.deps, ['data', 'http', 'notifications', 'theme', 'uiSettings', 'i18n']), uiSettingsKeys: UI_SETTINGS, }; diff --git a/x-pack/plugins/aiops/public/embeddable/embeddable_chart_component_wrapper.tsx b/x-pack/plugins/aiops/public/embeddable/embeddable_chart_component_wrapper.tsx index 3cc8a6d6e47a0..54ed702eadf63 100644 --- a/x-pack/plugins/aiops/public/embeddable/embeddable_chart_component_wrapper.tsx +++ b/x-pack/plugins/aiops/public/embeddable/embeddable_chart_component_wrapper.tsx @@ -6,7 +6,7 @@ */ import { type Observable } from 'rxjs'; -import React, { FC, useCallback, useEffect, useMemo } from 'react'; +import React, { FC, useEffect, useMemo } from 'react'; import { useTimefilter } from '@kbn/ml-date-picker'; import { css } from '@emotion/react'; import useObservable from 'react-use/lib/useObservable'; @@ -21,11 +21,7 @@ import type { } from './embeddable_change_point_chart'; import { EmbeddableChangePointChartProps } from './embeddable_change_point_chart_component'; import { FilterQueryContextProvider, useFilerQueryUpdates } from '../hooks/use_filters_query'; -import { - DataSourceContextProvider, - type DataSourceContextProviderProps, - useDataSource, -} from '../hooks/use_data_source'; +import { DataSourceContextProvider, useDataSource } from '../hooks/use_data_source'; import { useAiopsAppContext } from '../hooks/use_aiops_app_context'; import { useTimeBuckets } from '../hooks/use_time_buckets'; import { createMergedEsQuery } from '../application/utils/search_utils'; @@ -59,16 +55,9 @@ export const EmbeddableInputTracker: FC = ({ }) => { const input = useObservable(input$, initialInput); - const onChange = useCallback>( - ({ dataViews }) => { - onOutputChange({ indexPatterns: dataViews }); - }, - [onOutputChange] - ); - return ( - + { }); }); - describe('getSummarizedAlerts', () => { + // FLAKY: https://github.com/elastic/kibana/issues/163192 + // FLAKY: https://github.com/elastic/kibana/issues/163193 + // FLAKY: https://github.com/elastic/kibana/issues/163194 + // FLAKY: https://github.com/elastic/kibana/issues/163195 + describe.skip('getSummarizedAlerts', () => { beforeEach(() => { clusterClient.search.mockReturnValue({ // @ts-ignore diff --git a/x-pack/plugins/alerting/server/authorization/alerting_authorization.test.ts b/x-pack/plugins/alerting/server/authorization/alerting_authorization.test.ts index 83f90b68a99b1..d6fb8d415e57f 100644 --- a/x-pack/plugins/alerting/server/authorization/alerting_authorization.test.ts +++ b/x-pack/plugins/alerting/server/authorization/alerting_authorization.test.ts @@ -750,6 +750,8 @@ describe('AlertingAuthorization', () => { name: 'myOtherAppAlertType', producer: 'alerts', enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }; const myAppAlertType: RegistryRuleType = { actionGroups: [], @@ -762,6 +764,8 @@ describe('AlertingAuthorization', () => { name: 'myAppAlertType', producer: 'myApp', enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }; const mySecondAppAlertType: RegistryRuleType = { actionGroups: [], @@ -774,6 +778,8 @@ describe('AlertingAuthorization', () => { name: 'mySecondAppAlertType', producer: 'myApp', enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }; const setOfAlertTypes = new Set([myAppAlertType, myOtherAppAlertType, mySecondAppAlertType]); test('omits filter when there is no authorization api', async () => { @@ -1145,6 +1151,8 @@ describe('AlertingAuthorization', () => { name: 'myOtherAppAlertType', producer: 'myOtherApp', enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }; const myAppAlertType: RegistryRuleType = { actionGroups: [], @@ -1157,6 +1165,8 @@ describe('AlertingAuthorization', () => { name: 'myAppAlertType', producer: 'myApp', enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }; const setOfAlertTypes = new Set([myAppAlertType, myOtherAppAlertType]); beforeEach(() => { @@ -1188,75 +1198,79 @@ describe('AlertingAuthorization', () => { AlertingAuthorizationEntity.Rule ) ).resolves.toMatchInlineSnapshot(` - Set { - Object { - "actionGroups": Array [], - "actionVariables": undefined, - "authorizedConsumers": Object { - "alerts": Object { - "all": true, - "read": true, - }, - "myApp": Object { - "all": true, - "read": true, - }, - "myAppWithSubFeature": Object { - "all": true, - "read": true, - }, - "myOtherApp": Object { - "all": true, - "read": true, - }, - }, - "defaultActionGroupId": "default", - "enabledInLicense": true, - "id": "myAppAlertType", - "isExportable": true, - "minimumLicenseRequired": "basic", - "name": "myAppAlertType", - "producer": "myApp", - "recoveryActionGroup": Object { - "id": "recovered", - "name": "Recovered", - }, - }, - Object { - "actionGroups": Array [], - "actionVariables": undefined, - "authorizedConsumers": Object { - "alerts": Object { - "all": true, - "read": true, - }, - "myApp": Object { - "all": true, - "read": true, - }, - "myAppWithSubFeature": Object { - "all": true, - "read": true, - }, - "myOtherApp": Object { - "all": true, - "read": true, - }, - }, - "defaultActionGroupId": "default", - "enabledInLicense": true, - "id": "myOtherAppAlertType", - "isExportable": true, - "minimumLicenseRequired": "basic", - "name": "myOtherAppAlertType", - "producer": "myOtherApp", - "recoveryActionGroup": Object { - "id": "recovered", - "name": "Recovered", - }, - }, - } - `); + Set { + Object { + "actionGroups": Array [], + "actionVariables": undefined, + "authorizedConsumers": Object { + "alerts": Object { + "all": true, + "read": true, + }, + "myApp": Object { + "all": true, + "read": true, + }, + "myAppWithSubFeature": Object { + "all": true, + "read": true, + }, + "myOtherApp": Object { + "all": true, + "read": true, + }, + }, + "defaultActionGroupId": "default", + "enabledInLicense": true, + "hasAlertsMappings": false, + "hasFieldsForAAD": false, + "id": "myAppAlertType", + "isExportable": true, + "minimumLicenseRequired": "basic", + "name": "myAppAlertType", + "producer": "myApp", + "recoveryActionGroup": Object { + "id": "recovered", + "name": "Recovered", + }, + }, + Object { + "actionGroups": Array [], + "actionVariables": undefined, + "authorizedConsumers": Object { + "alerts": Object { + "all": true, + "read": true, + }, + "myApp": Object { + "all": true, + "read": true, + }, + "myAppWithSubFeature": Object { + "all": true, + "read": true, + }, + "myOtherApp": Object { + "all": true, + "read": true, + }, + }, + "defaultActionGroupId": "default", + "enabledInLicense": true, + "hasAlertsMappings": false, + "hasFieldsForAAD": false, + "id": "myOtherAppAlertType", + "isExportable": true, + "minimumLicenseRequired": "basic", + "name": "myOtherAppAlertType", + "producer": "myOtherApp", + "recoveryActionGroup": Object { + "id": "recovered", + "name": "Recovered", + }, + }, + } + `); }); test('augments a list of types with consumers under which the operation is authorized', async () => { @@ -1312,59 +1326,63 @@ describe('AlertingAuthorization', () => { AlertingAuthorizationEntity.Rule ) ).resolves.toMatchInlineSnapshot(` - Set { - Object { - "actionGroups": Array [], - "actionVariables": undefined, - "authorizedConsumers": Object { - "myApp": Object { - "all": true, - "read": true, - }, - }, - "defaultActionGroupId": "default", - "enabledInLicense": true, - "id": "myOtherAppAlertType", - "isExportable": true, - "minimumLicenseRequired": "basic", - "name": "myOtherAppAlertType", - "producer": "myOtherApp", - "recoveryActionGroup": Object { - "id": "recovered", - "name": "Recovered", - }, - }, - Object { - "actionGroups": Array [], - "actionVariables": undefined, - "authorizedConsumers": Object { - "alerts": Object { - "all": true, - "read": true, - }, - "myApp": Object { - "all": true, - "read": true, - }, - "myOtherApp": Object { - "all": true, - "read": true, - }, - }, - "defaultActionGroupId": "default", - "enabledInLicense": true, - "id": "myAppAlertType", - "isExportable": true, - "minimumLicenseRequired": "basic", - "name": "myAppAlertType", - "producer": "myApp", - "recoveryActionGroup": Object { - "id": "recovered", - "name": "Recovered", - }, - }, - } - `); + Set { + Object { + "actionGroups": Array [], + "actionVariables": undefined, + "authorizedConsumers": Object { + "myApp": Object { + "all": true, + "read": true, + }, + }, + "defaultActionGroupId": "default", + "enabledInLicense": true, + "hasAlertsMappings": false, + "hasFieldsForAAD": false, + "id": "myOtherAppAlertType", + "isExportable": true, + "minimumLicenseRequired": "basic", + "name": "myOtherAppAlertType", + "producer": "myOtherApp", + "recoveryActionGroup": Object { + "id": "recovered", + "name": "Recovered", + }, + }, + Object { + "actionGroups": Array [], + "actionVariables": undefined, + "authorizedConsumers": Object { + "alerts": Object { + "all": true, + "read": true, + }, + "myApp": Object { + "all": true, + "read": true, + }, + "myOtherApp": Object { + "all": true, + "read": true, + }, + }, + "defaultActionGroupId": "default", + "enabledInLicense": true, + "hasAlertsMappings": false, + "hasFieldsForAAD": false, + "id": "myAppAlertType", + "isExportable": true, + "minimumLicenseRequired": "basic", + "name": "myAppAlertType", + "producer": "myApp", + "recoveryActionGroup": Object { + "id": "recovered", + "name": "Recovered", + }, + }, + } + `); }); test('authorizes user under the `alerts` consumer when they are authorized by the producer', async () => { @@ -1407,34 +1425,36 @@ describe('AlertingAuthorization', () => { AlertingAuthorizationEntity.Alert ) ).resolves.toMatchInlineSnapshot(` - Set { - Object { - "actionGroups": Array [], - "actionVariables": undefined, - "authorizedConsumers": Object { - "alerts": Object { - "all": true, - "read": true, - }, - "myApp": Object { - "all": true, - "read": true, - }, - }, - "defaultActionGroupId": "default", - "enabledInLicense": true, - "id": "myAppAlertType", - "isExportable": true, - "minimumLicenseRequired": "basic", - "name": "myAppAlertType", - "producer": "myApp", - "recoveryActionGroup": Object { - "id": "recovered", - "name": "Recovered", - }, - }, - } - `); + Set { + Object { + "actionGroups": Array [], + "actionVariables": undefined, + "authorizedConsumers": Object { + "alerts": Object { + "all": true, + "read": true, + }, + "myApp": Object { + "all": true, + "read": true, + }, + }, + "defaultActionGroupId": "default", + "enabledInLicense": true, + "hasAlertsMappings": false, + "hasFieldsForAAD": false, + "id": "myAppAlertType", + "isExportable": true, + "minimumLicenseRequired": "basic", + "name": "myAppAlertType", + "producer": "myApp", + "recoveryActionGroup": Object { + "id": "recovered", + "name": "Recovered", + }, + }, + } + `); }); test('augments a list of types with consumers under which multiple operations are authorized', async () => { @@ -1511,67 +1531,71 @@ describe('AlertingAuthorization', () => { AlertingAuthorizationEntity.Alert ) ).resolves.toMatchInlineSnapshot(` - Set { - Object { - "actionGroups": Array [], - "actionVariables": undefined, - "authorizedConsumers": Object { - "alerts": Object { - "all": false, - "read": true, - }, - "myApp": Object { - "all": true, - "read": true, - }, - "myOtherApp": Object { - "all": false, - "read": true, - }, - }, - "defaultActionGroupId": "default", - "enabledInLicense": true, - "id": "myOtherAppAlertType", - "isExportable": true, - "minimumLicenseRequired": "basic", - "name": "myOtherAppAlertType", - "producer": "myOtherApp", - "recoveryActionGroup": Object { - "id": "recovered", - "name": "Recovered", - }, - }, - Object { - "actionGroups": Array [], - "actionVariables": undefined, - "authorizedConsumers": Object { - "alerts": Object { - "all": false, - "read": true, - }, - "myApp": Object { - "all": false, - "read": true, - }, - "myOtherApp": Object { - "all": false, - "read": true, - }, - }, - "defaultActionGroupId": "default", - "enabledInLicense": true, - "id": "myAppAlertType", - "isExportable": true, - "minimumLicenseRequired": "basic", - "name": "myAppAlertType", - "producer": "myApp", - "recoveryActionGroup": Object { - "id": "recovered", - "name": "Recovered", - }, - }, - } - `); + Set { + Object { + "actionGroups": Array [], + "actionVariables": undefined, + "authorizedConsumers": Object { + "alerts": Object { + "all": false, + "read": true, + }, + "myApp": Object { + "all": true, + "read": true, + }, + "myOtherApp": Object { + "all": false, + "read": true, + }, + }, + "defaultActionGroupId": "default", + "enabledInLicense": true, + "hasAlertsMappings": false, + "hasFieldsForAAD": false, + "id": "myOtherAppAlertType", + "isExportable": true, + "minimumLicenseRequired": "basic", + "name": "myOtherAppAlertType", + "producer": "myOtherApp", + "recoveryActionGroup": Object { + "id": "recovered", + "name": "Recovered", + }, + }, + Object { + "actionGroups": Array [], + "actionVariables": undefined, + "authorizedConsumers": Object { + "alerts": Object { + "all": false, + "read": true, + }, + "myApp": Object { + "all": false, + "read": true, + }, + "myOtherApp": Object { + "all": false, + "read": true, + }, + }, + "defaultActionGroupId": "default", + "enabledInLicense": true, + "hasAlertsMappings": false, + "hasFieldsForAAD": false, + "id": "myAppAlertType", + "isExportable": true, + "minimumLicenseRequired": "basic", + "name": "myAppAlertType", + "producer": "myApp", + "recoveryActionGroup": Object { + "id": "recovered", + "name": "Recovered", + }, + }, + } + `); }); test('omits types which have no consumers under which the operation is authorized', async () => { @@ -1627,38 +1651,40 @@ describe('AlertingAuthorization', () => { AlertingAuthorizationEntity.Alert ) ).resolves.toMatchInlineSnapshot(` - Set { - Object { - "actionGroups": Array [], - "actionVariables": undefined, - "authorizedConsumers": Object { - "alerts": Object { - "all": true, - "read": true, - }, - "myApp": Object { - "all": true, - "read": true, - }, - "myOtherApp": Object { - "all": true, - "read": true, - }, - }, - "defaultActionGroupId": "default", - "enabledInLicense": true, - "id": "myOtherAppAlertType", - "isExportable": true, - "minimumLicenseRequired": "basic", - "name": "myOtherAppAlertType", - "producer": "myOtherApp", - "recoveryActionGroup": Object { - "id": "recovered", - "name": "Recovered", - }, - }, - } - `); + Set { + Object { + "actionGroups": Array [], + "actionVariables": undefined, + "authorizedConsumers": Object { + "alerts": Object { + "all": true, + "read": true, + }, + "myApp": Object { + "all": true, + "read": true, + }, + "myOtherApp": Object { + "all": true, + "read": true, + }, + }, + "defaultActionGroupId": "default", + "enabledInLicense": true, + "hasAlertsMappings": false, + "hasFieldsForAAD": false, + "id": "myOtherAppAlertType", + "isExportable": true, + "minimumLicenseRequired": "basic", + "name": "myOtherAppAlertType", + "producer": "myOtherApp", + "recoveryActionGroup": Object { + "id": "recovered", + "name": "Recovered", + }, + }, + } + `); }); }); @@ -1674,6 +1700,8 @@ describe('AlertingAuthorization', () => { producer: 'alerts', enabledInLicense: true, isExportable: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }; const myAppAlertType: RegistryRuleType = { actionGroups: [], @@ -1686,6 +1714,8 @@ describe('AlertingAuthorization', () => { producer: 'myApp', enabledInLicense: true, isExportable: true, + hasAlertsMappings: true, + hasFieldsForAAD: true, }; const mySecondAppAlertType: RegistryRuleType = { actionGroups: [], @@ -1698,6 +1728,8 @@ describe('AlertingAuthorization', () => { producer: 'myApp', enabledInLicense: true, isExportable: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }; const setOfAlertTypes = new Set([myAppAlertType, myOtherAppAlertType, mySecondAppAlertType]); beforeEach(() => { @@ -1738,34 +1770,36 @@ describe('AlertingAuthorization', () => { AlertingAuthorizationEntity.Alert ) ).resolves.toMatchInlineSnapshot(` - Object { - "authorizedRuleTypes": Set { - Object { - "actionGroups": Array [], - "actionVariables": undefined, - "authorizedConsumers": Object { - "myApp": Object { - "all": false, - "read": true, - }, - }, - "defaultActionGroupId": "default", - "enabledInLicense": true, - "id": "myOtherAppAlertType", - "isExportable": true, - "minimumLicenseRequired": "basic", - "name": "myOtherAppAlertType", - "producer": "alerts", - "recoveryActionGroup": Object { - "id": "recovered", - "name": "Recovered", - }, - }, + Object { + "authorizedRuleTypes": Set { + Object { + "actionGroups": Array [], + "actionVariables": undefined, + "authorizedConsumers": Object { + "myApp": Object { + "all": false, + "read": true, }, - "hasAllRequested": false, - "username": "some-user", - } - `); + }, + "defaultActionGroupId": "default", + "enabledInLicense": true, + "hasAlertsMappings": false, + "hasFieldsForAAD": false, + "id": "myOtherAppAlertType", + "isExportable": true, + "minimumLicenseRequired": "basic", + "name": "myOtherAppAlertType", + "producer": "alerts", + "recoveryActionGroup": Object { + "id": "recovered", + "name": "Recovered", + }, + }, + }, + "hasAllRequested": false, + "username": "some-user", + } + `); }); test('it returns all authorized if user has read, get and update alert privileges', async () => { @@ -1811,34 +1845,36 @@ describe('AlertingAuthorization', () => { AlertingAuthorizationEntity.Alert ) ).resolves.toMatchInlineSnapshot(` - Object { - "authorizedRuleTypes": Set { - Object { - "actionGroups": Array [], - "actionVariables": undefined, - "authorizedConsumers": Object { - "myApp": Object { - "all": true, - "read": true, - }, - }, - "defaultActionGroupId": "default", - "enabledInLicense": true, - "id": "myOtherAppAlertType", - "isExportable": true, - "minimumLicenseRequired": "basic", - "name": "myOtherAppAlertType", - "producer": "alerts", - "recoveryActionGroup": Object { - "id": "recovered", - "name": "Recovered", - }, - }, + Object { + "authorizedRuleTypes": Set { + Object { + "actionGroups": Array [], + "actionVariables": undefined, + "authorizedConsumers": Object { + "myApp": Object { + "all": true, + "read": true, }, - "hasAllRequested": false, - "username": "some-user", - } - `); + }, + "defaultActionGroupId": "default", + "enabledInLicense": true, + "hasAlertsMappings": false, + "hasFieldsForAAD": false, + "id": "myOtherAppAlertType", + "isExportable": true, + "minimumLicenseRequired": "basic", + "name": "myOtherAppAlertType", + "producer": "alerts", + "recoveryActionGroup": Object { + "id": "recovered", + "name": "Recovered", + }, + }, + }, + "hasAllRequested": false, + "username": "some-user", + } + `); }); }); }); diff --git a/x-pack/plugins/alerting/server/authorization/alerting_authorization.ts b/x-pack/plugins/alerting/server/authorization/alerting_authorization.ts index 4eb901173bc89..051972b944261 100644 --- a/x-pack/plugins/alerting/server/authorization/alerting_authorization.ts +++ b/x-pack/plugins/alerting/server/authorization/alerting_authorization.ts @@ -71,8 +71,6 @@ interface HasPrivileges { type AuthorizedConsumers = Record; export interface RegistryAlertTypeWithAuth extends RegistryRuleType { authorizedConsumers: AuthorizedConsumers; - hasAlertsMappings?: boolean; - hasFieldsForAAD?: boolean; } type IsAuthorizedAtProducerLevel = boolean; @@ -371,7 +369,7 @@ export class AlertingAuthorization { const ruleTypesWithAuthorization = Array.from( this.augmentWithAuthorizedConsumers(ruleTypes, {}) ); - const ruleTypesAuthorized: Map = new Map(); + const ruleTypesAuthorized: Map = new Map(); // map from privilege to ruleType which we can refer back to when analyzing the result // of checkPrivileges const privilegeToRuleType = new Map< @@ -386,9 +384,7 @@ export class AlertingAuthorization { const ruleTypeAuth = ruleTypesWithAuthorization.find((rtwa) => rtwa.id === ruleTypeId); if (ruleTypeAuth) { if (!ruleTypesAuthorized.has(ruleTypeId)) { - const { authorizedConsumers, hasAlertsMappings, hasFieldsForAAD, ...ruleType } = - ruleTypeAuth; - ruleTypesAuthorized.set(ruleTypeId, ruleType); + ruleTypesAuthorized.set(ruleTypeId, ruleTypeAuth); } for (const operation of operations) { privilegeToRuleType.set( diff --git a/x-pack/plugins/alerting/server/authorization/alerting_authorization_kuery.test.ts b/x-pack/plugins/alerting/server/authorization/alerting_authorization_kuery.test.ts index 5013f2fbe1552..c9e129085c3c0 100644 --- a/x-pack/plugins/alerting/server/authorization/alerting_authorization_kuery.test.ts +++ b/x-pack/plugins/alerting/server/authorization/alerting_authorization_kuery.test.ts @@ -32,6 +32,8 @@ describe('asKqlFiltersByRuleTypeAndConsumer', () => { myApp: { read: true, all: true }, }, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]), { @@ -67,6 +69,8 @@ describe('asKqlFiltersByRuleTypeAndConsumer', () => { myOtherApp: { read: true, all: true }, }, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]), { @@ -105,6 +109,8 @@ describe('asKqlFiltersByRuleTypeAndConsumer', () => { myAppWithSubFeature: { read: true, all: true }, }, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, { actionGroups: [], @@ -122,6 +128,8 @@ describe('asKqlFiltersByRuleTypeAndConsumer', () => { myAppWithSubFeature: { read: true, all: true }, }, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, { actionGroups: [], @@ -139,6 +147,8 @@ describe('asKqlFiltersByRuleTypeAndConsumer', () => { myAppWithSubFeature: { read: true, all: true }, }, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]), { @@ -177,6 +187,8 @@ describe('asKqlFiltersByRuleTypeAndConsumer', () => { myAppWithSubFeature: { read: true, all: true }, }, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, { actionGroups: [], @@ -194,6 +206,8 @@ describe('asKqlFiltersByRuleTypeAndConsumer', () => { myAppWithSubFeature: { read: true, all: true }, }, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]), { @@ -233,6 +247,8 @@ describe('asKqlFiltersByRuleTypeAndConsumer', () => { myAppWithSubFeature: { read: true, all: true }, }, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, { actionGroups: [], @@ -250,6 +266,8 @@ describe('asKqlFiltersByRuleTypeAndConsumer', () => { myAppWithSubFeature: { read: true, all: true }, }, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]), { @@ -283,6 +301,8 @@ describe('asKqlFiltersByRuleTypeAndConsumer', () => { isExportable: true, authorizedConsumers: {}, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]), { @@ -317,6 +337,8 @@ describe('asEsDslFiltersByRuleTypeAndConsumer', () => { myApp: { read: true, all: true }, }, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]), { @@ -379,6 +401,8 @@ describe('asEsDslFiltersByRuleTypeAndConsumer', () => { myOtherApp: { read: true, all: true }, }, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]), { @@ -449,6 +473,8 @@ describe('asEsDslFiltersByRuleTypeAndConsumer', () => { myAppWithSubFeature: { read: true, all: true }, }, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, { actionGroups: [], @@ -466,6 +492,8 @@ describe('asEsDslFiltersByRuleTypeAndConsumer', () => { myAppWithSubFeature: { read: true, all: true }, }, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, { actionGroups: [], @@ -483,6 +511,8 @@ describe('asEsDslFiltersByRuleTypeAndConsumer', () => { myAppWithSubFeature: { read: true, all: true }, }, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]), { @@ -646,6 +676,8 @@ describe('asEsDslFiltersByRuleTypeAndConsumer', () => { isExportable: true, authorizedConsumers: {}, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]), { diff --git a/x-pack/plugins/alerting/server/plugin.test.ts b/x-pack/plugins/alerting/server/plugin.test.ts index e14ba71c6c1bf..859e69b6da131 100644 --- a/x-pack/plugins/alerting/server/plugin.test.ts +++ b/x-pack/plugins/alerting/server/plugin.test.ts @@ -270,6 +270,7 @@ describe('Alerting Plugin', () => { dataViewsServiceFactory: jest .fn() .mockResolvedValue(dataViewPluginMocks.createStartContract()), + getScriptedFieldsEnabled: jest.fn().mockReturnValue(true), } as DataViewsServerPluginStart, }); @@ -318,6 +319,7 @@ describe('Alerting Plugin', () => { dataViewsServiceFactory: jest .fn() .mockResolvedValue(dataViewPluginMocks.createStartContract()), + getScriptedFieldsEnabled: jest.fn().mockReturnValue(true), } as DataViewsServerPluginStart, }); @@ -377,6 +379,7 @@ describe('Alerting Plugin', () => { dataViewsServiceFactory: jest .fn() .mockResolvedValue(dataViewPluginMocks.createStartContract()), + getScriptedFieldsEnabled: jest.fn().mockReturnValue(true), } as DataViewsServerPluginStart, }); diff --git a/x-pack/plugins/alerting/server/routes/health.test.ts b/x-pack/plugins/alerting/server/routes/health.test.ts index 236d38d836bc1..b1c562ada8717 100644 --- a/x-pack/plugins/alerting/server/routes/health.test.ts +++ b/x-pack/plugins/alerting/server/routes/health.test.ts @@ -49,6 +49,8 @@ const ruleTypes = [ enabledInLicense: true, minimumScheduleInterval: '1m', defaultScheduleInterval: '10m', + hasAlertsMappings: false, + hasFieldsForAAD: false, } as RegistryAlertTypeWithAuth, ]; diff --git a/x-pack/plugins/alerting/server/routes/legacy/health.test.ts b/x-pack/plugins/alerting/server/routes/legacy/health.test.ts index 19279e7dfb77a..9946f659a0744 100644 --- a/x-pack/plugins/alerting/server/routes/legacy/health.test.ts +++ b/x-pack/plugins/alerting/server/routes/legacy/health.test.ts @@ -53,6 +53,8 @@ const ruleTypes = [ producer: 'test', enabledInLicense: true, defaultScheduleInterval: '10m', + hasAlertsMappings: false, + hasFieldsForAAD: false, } as RegistryAlertTypeWithAuth, ]; diff --git a/x-pack/plugins/alerting/server/routes/legacy/list_alert_types.test.ts b/x-pack/plugins/alerting/server/routes/legacy/list_alert_types.test.ts index e2c6a66cf0ab1..7262f42319c1f 100644 --- a/x-pack/plugins/alerting/server/routes/legacy/list_alert_types.test.ts +++ b/x-pack/plugins/alerting/server/routes/legacy/list_alert_types.test.ts @@ -62,6 +62,8 @@ describe('listAlertTypesRoute', () => { }, producer: 'test', enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, } as RegistryAlertTypeWithAuth, ]; rulesClient.listRuleTypes.mockResolvedValueOnce(new Set(listTypes)); @@ -85,6 +87,8 @@ describe('listAlertTypesRoute', () => { "authorizedConsumers": Object {}, "defaultActionGroupId": "default", "enabledInLicense": true, + "hasAlertsMappings": false, + "hasFieldsForAAD": false, "id": "1", "isExportable": true, "minimumLicenseRequired": "basic", @@ -137,6 +141,8 @@ describe('listAlertTypesRoute', () => { }, producer: 'alerts', enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, } as RegistryAlertTypeWithAuth, ]; @@ -190,6 +196,8 @@ describe('listAlertTypesRoute', () => { }, producer: 'alerts', enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, } as RegistryAlertTypeWithAuth, ]; diff --git a/x-pack/plugins/alerting/server/routes/rule_types.test.ts b/x-pack/plugins/alerting/server/routes/rule_types.test.ts index 4629293b36e10..2dab9284bb5ac 100644 --- a/x-pack/plugins/alerting/server/routes/rule_types.test.ts +++ b/x-pack/plugins/alerting/server/routes/rule_types.test.ts @@ -61,6 +61,7 @@ describe('ruleTypesRoute', () => { defaultScheduleInterval: '10m', doesSetRecoveryContext: false, hasAlertsMappings: true, + hasFieldsForAAD: false, } as RegistryAlertTypeWithAuth, ]; const expectedResult: Array> = [ @@ -169,6 +170,8 @@ describe('ruleTypesRoute', () => { }, producer: 'alerts', enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, } as RegistryAlertTypeWithAuth, ]; @@ -222,6 +225,8 @@ describe('ruleTypesRoute', () => { }, producer: 'alerts', enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, } as RegistryAlertTypeWithAuth, ]; diff --git a/x-pack/plugins/alerting/server/rule_type_registry.ts b/x-pack/plugins/alerting/server/rule_type_registry.ts index 57bf39ff50496..61600bf2b0955 100644 --- a/x-pack/plugins/alerting/server/rule_type_registry.ts +++ b/x-pack/plugins/alerting/server/rule_type_registry.ts @@ -67,6 +67,8 @@ export interface RegistryRuleType > { id: string; enabledInLicense: boolean; + hasFieldsForAAD: boolean; + hasAlertsMappings: boolean; } /** @@ -362,26 +364,28 @@ export class RuleTypeRegistry { } public list(): Set { - return new Set( - Array.from(this.ruleTypes).map( - ([ - id, - { - name, - actionGroups, - recoveryActionGroup, - defaultActionGroupId, - actionVariables, - producer, - minimumLicenseRequired, - isExportable, - ruleTaskTimeout, - defaultScheduleInterval, - doesSetRecoveryContext, - alerts, - fieldsForAAD, - }, - ]: [string, UntypedNormalizedRuleType]) => ({ + const mapRuleTypes: Array<[string, UntypedNormalizedRuleType]> = Array.from(this.ruleTypes); + const tempRegistryRuleType = mapRuleTypes.map( + ([ + id, + { + name, + actionGroups, + recoveryActionGroup, + defaultActionGroupId, + actionVariables, + producer, + minimumLicenseRequired, + isExportable, + ruleTaskTimeout, + defaultScheduleInterval, + doesSetRecoveryContext, + alerts, + fieldsForAAD, + }, + ]) => { + // KEEP the type here to be safe if not the map is ignoring it for some reason + const ruleType: RegistryRuleType = { id, name, actionGroups, @@ -402,9 +406,11 @@ export class RuleTypeRegistry { hasFieldsForAAD: Boolean(fieldsForAAD), hasAlertsMappings: !!alerts, ...(alerts ? { alerts } : {}), - }) - ) + }; + return ruleType; + } ); + return new Set(tempRegistryRuleType); } public getAllTypes(): string[] { diff --git a/x-pack/plugins/alerting/server/rules_client/tests/aggregate.test.ts b/x-pack/plugins/alerting/server/rules_client/tests/aggregate.test.ts index 1ae5dc7832bec..c45e74da45999 100644 --- a/x-pack/plugins/alerting/server/rules_client/tests/aggregate.test.ts +++ b/x-pack/plugins/alerting/server/rules_client/tests/aggregate.test.ts @@ -74,6 +74,8 @@ describe('aggregate()', () => { name: 'myType', producer: 'myApp', enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]); beforeEach(() => { @@ -156,6 +158,8 @@ describe('aggregate()', () => { myApp: { read: true, all: true }, }, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]) ); diff --git a/x-pack/plugins/alerting/server/rules_client/tests/find.test.ts b/x-pack/plugins/alerting/server/rules_client/tests/find.test.ts index 8475b7317af76..4b1a6fc2eba8c 100644 --- a/x-pack/plugins/alerting/server/rules_client/tests/find.test.ts +++ b/x-pack/plugins/alerting/server/rules_client/tests/find.test.ts @@ -82,6 +82,8 @@ describe('find()', () => { name: 'myType', producer: 'myApp', enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]); beforeEach(() => { @@ -142,6 +144,8 @@ describe('find()', () => { myApp: { read: true, all: true }, }, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]) ); @@ -453,6 +457,8 @@ describe('find()', () => { name: 'myType', producer: 'myApp', enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]) ); @@ -659,6 +665,8 @@ describe('find()', () => { name: 'myType', producer: 'myApp', enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]) ); diff --git a/x-pack/plugins/alerting/server/rules_client/tests/get_tags.test.ts b/x-pack/plugins/alerting/server/rules_client/tests/get_tags.test.ts index bf50cc5550955..1f0c4f405f2c2 100644 --- a/x-pack/plugins/alerting/server/rules_client/tests/get_tags.test.ts +++ b/x-pack/plugins/alerting/server/rules_client/tests/get_tags.test.ts @@ -61,6 +61,8 @@ const listedTypes = new Set([ name: 'myType', producer: 'myApp', enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]); @@ -112,6 +114,8 @@ describe('getTags()', () => { myApp: { read: true, all: true }, }, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]) ); diff --git a/x-pack/plugins/alerting/server/rules_client/tests/list_rule_types.test.ts b/x-pack/plugins/alerting/server/rules_client/tests/list_rule_types.test.ts index 4e41d6d4d4066..9c8c78f2753f4 100644 --- a/x-pack/plugins/alerting/server/rules_client/tests/list_rule_types.test.ts +++ b/x-pack/plugins/alerting/server/rules_client/tests/list_rule_types.test.ts @@ -67,6 +67,8 @@ describe('listRuleTypes', () => { name: 'alertingAlertType', producer: 'alerts', enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }; const myAppAlertType: RegistryRuleType = { actionGroups: [], @@ -79,6 +81,8 @@ describe('listRuleTypes', () => { name: 'myAppAlertType', producer: 'myApp', enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }; const setOfAlertTypes = new Set([myAppAlertType, alertingAlertType]); @@ -121,6 +125,8 @@ describe('listRuleTypes', () => { name: 'myType', producer: 'myApp', enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, { id: 'myOtherType', @@ -132,6 +138,8 @@ describe('listRuleTypes', () => { recoveryActionGroup: RecoveredActionGroup, producer: 'alerts', enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]); beforeEach(() => { @@ -153,6 +161,8 @@ describe('listRuleTypes', () => { myApp: { read: true, all: true }, }, enabledInLicense: true, + hasAlertsMappings: false, + hasFieldsForAAD: false, }, ]); authorization.filterByRuleTypeAuthorization.mockResolvedValue(authorizedTypes); diff --git a/x-pack/plugins/alerting/server/task_runner/task_runner.test.ts b/x-pack/plugins/alerting/server/task_runner/task_runner.test.ts index ceb0c80270881..4e40531a49f2b 100644 --- a/x-pack/plugins/alerting/server/task_runner/task_runner.test.ts +++ b/x-pack/plugins/alerting/server/task_runner/task_runner.test.ts @@ -133,6 +133,7 @@ describe('Task Runner', () => { const inMemoryMetrics = inMemoryMetricsMock.create(); const dataViewsMock = { dataViewsServiceFactory: jest.fn().mockResolvedValue(dataViewPluginMocks.createStartContract()), + getScriptedFieldsEnabled: jest.fn().mockReturnValue(true), } as DataViewsServerPluginStart; const alertsService = alertsServiceMock.create(); const maintenanceWindowClient = maintenanceWindowClientMock.create(); diff --git a/x-pack/plugins/alerting/server/task_runner/task_runner_alerts_client.test.ts b/x-pack/plugins/alerting/server/task_runner/task_runner_alerts_client.test.ts index 73d60259b8610..58f2520ce1f4a 100644 --- a/x-pack/plugins/alerting/server/task_runner/task_runner_alerts_client.test.ts +++ b/x-pack/plugins/alerting/server/task_runner/task_runner_alerts_client.test.ts @@ -129,6 +129,7 @@ describe('Task Runner', () => { const inMemoryMetrics = inMemoryMetricsMock.create(); const dataViewsMock = { dataViewsServiceFactory: jest.fn().mockResolvedValue(dataViewPluginMocks.createStartContract()), + getScriptedFieldsEnabled: jest.fn().mockReturnValue(true), } as DataViewsServerPluginStart; const mockAlertsService = alertsServiceMock.create(); const mockAlertsClient = alertsClientMock.create(); diff --git a/x-pack/plugins/alerting/server/task_runner/task_runner_cancel.test.ts b/x-pack/plugins/alerting/server/task_runner/task_runner_cancel.test.ts index 527a5d58d34d9..870cad51ed4b7 100644 --- a/x-pack/plugins/alerting/server/task_runner/task_runner_cancel.test.ts +++ b/x-pack/plugins/alerting/server/task_runner/task_runner_cancel.test.ts @@ -76,6 +76,7 @@ const alertingEventLogger = alertingEventLoggerMock.create(); const logger: ReturnType = loggingSystemMock.createLogger(); const dataViewsMock = { dataViewsServiceFactory: jest.fn().mockResolvedValue(dataViewPluginMocks.createStartContract()), + getScriptedFieldsEnabled: jest.fn().mockReturnValue(true), } as DataViewsServerPluginStart; const alertsService = alertsServiceMock.create(); diff --git a/x-pack/plugins/alerting/server/task_runner/task_runner_factory.test.ts b/x-pack/plugins/alerting/server/task_runner/task_runner_factory.test.ts index 69480563c355e..3cfa7dde78341 100644 --- a/x-pack/plugins/alerting/server/task_runner/task_runner_factory.test.ts +++ b/x-pack/plugins/alerting/server/task_runner/task_runner_factory.test.ts @@ -45,6 +45,7 @@ const elasticsearchService = elasticsearchServiceMock.createInternalStart(); const dataPlugin = dataPluginMock.createStartContract(); const dataViewsMock = { dataViewsServiceFactory: jest.fn().mockResolvedValue(dataViewPluginMocks.createStartContract()), + getScriptedFieldsEnabled: jest.fn().mockReturnValue(true), } as DataViewsServerPluginStart; const ruleType: UntypedNormalizedRuleType = { id: 'test', diff --git a/x-pack/plugins/apm/common/rules/schema.ts b/x-pack/plugins/apm/common/rules/schema.ts index 02fb3a458015a..9041e4c0c8e5a 100644 --- a/x-pack/plugins/apm/common/rules/schema.ts +++ b/x-pack/plugins/apm/common/rules/schema.ts @@ -9,6 +9,16 @@ import { schema, TypeOf } from '@kbn/config-schema'; import { ML_ANOMALY_SEVERITY } from '@kbn/ml-anomaly-utils/anomaly_severity'; import { AggregationType, ApmRuleType } from './apm_rule_types'; +export const searchConfigurationSchema = schema.object({ + query: schema.object({ + query: schema.oneOf([ + schema.string(), + schema.recordOf(schema.string(), schema.any()), + ]), + language: schema.string(), + }), +}); + export const errorCountParamsSchema = schema.object({ windowSize: schema.number(), windowUnit: schema.string(), @@ -18,7 +28,7 @@ export const errorCountParamsSchema = schema.object({ groupBy: schema.maybe(schema.arrayOf(schema.string())), errorGroupingKey: schema.maybe(schema.string()), useKqlFilter: schema.maybe(schema.boolean()), - kqlFilter: schema.maybe(schema.string()), + searchConfiguration: schema.maybe(searchConfigurationSchema), }); export const transactionDurationParamsSchema = schema.object({ @@ -36,7 +46,7 @@ export const transactionDurationParamsSchema = schema.object({ environment: schema.string(), groupBy: schema.maybe(schema.arrayOf(schema.string())), useKqlFilter: schema.maybe(schema.boolean()), - kqlFilter: schema.maybe(schema.string()), + searchConfiguration: schema.maybe(searchConfigurationSchema), }); export const anomalyParamsSchema = schema.object({ @@ -63,7 +73,7 @@ export const transactionErrorRateParamsSchema = schema.object({ environment: schema.string(), groupBy: schema.maybe(schema.arrayOf(schema.string())), useKqlFilter: schema.maybe(schema.boolean()), - kqlFilter: schema.maybe(schema.string()), + searchConfiguration: schema.maybe(searchConfigurationSchema), }); type ErrorCountParamsType = TypeOf; @@ -75,6 +85,8 @@ type TransactionErrorRateParamsType = TypeOf< typeof transactionErrorRateParamsSchema >; +export type SearchConfigurationType = TypeOf; + export interface ApmRuleParamsType { [ApmRuleType.TransactionDuration]: TransactionDurationParamsType; [ApmRuleType.ErrorCount]: ErrorCountParamsType; diff --git a/x-pack/plugins/apm/ftr_e2e/cypress/e2e/service_overview/instances_table.cy.ts b/x-pack/plugins/apm/ftr_e2e/cypress/e2e/service_overview/instances_table.cy.ts index 8e1dda2b69e5f..c734188b5495d 100644 --- a/x-pack/plugins/apm/ftr_e2e/cypress/e2e/service_overview/instances_table.cy.ts +++ b/x-pack/plugins/apm/ftr_e2e/cypress/e2e/service_overview/instances_table.cy.ts @@ -108,7 +108,6 @@ describe('Instances table', () => { cy.wait('@instancesDetailsRequest'); cy.getByTestSubj(`instanceDetailsButton_${serviceNodeName}`).realClick(); - cy.getByTestSubj('loadingSpinner').should('be.visible'); cy.wait('@instanceDetailsRequest').then(() => { cy.contains('Service'); }); diff --git a/x-pack/plugins/apm/ftr_e2e/cypress/e2e/service_overview/time_comparison.cy.ts b/x-pack/plugins/apm/ftr_e2e/cypress/e2e/service_overview/time_comparison.cy.ts index c3824036283cf..be31d27e46736 100644 --- a/x-pack/plugins/apm/ftr_e2e/cypress/e2e/service_overview/time_comparison.cy.ts +++ b/x-pack/plugins/apm/ftr_e2e/cypress/e2e/service_overview/time_comparison.cy.ts @@ -50,7 +50,7 @@ const apisToIntercept = [ }, ]; -describe.skip('Service overview: Time Comparison', () => { +describe('Service overview: Time Comparison', () => { before(() => { synthtrace.index( opbeans({ @@ -108,48 +108,53 @@ describe.skip('Service overview: Time Comparison', () => { cy.getByTestSubj('comparisonSelect').should('have.value', '1w'); }); - it('changes comparison type when a new time range is selected', () => { - cy.visitKibana(serviceOverviewHref); - cy.contains('opbeans-java'); - // Time comparison default value - cy.getByTestSubj('comparisonSelect').should('have.value', '1d'); - cy.contains('Day before'); - cy.contains('Week before'); - - cy.selectAbsoluteTimeRange( - '2021-10-10T00:00:00.000Z', - '2021-10-20T00:00:00.000Z' - ); - - cy.getByTestSubj('querySubmitButton').click(); - - cy.getByTestSubj('comparisonSelect').should('have.value', '864000000ms'); - cy.getByTestSubj('comparisonSelect').should( - 'not.contain.text', - 'Day before' - ); - cy.getByTestSubj('comparisonSelect').should( - 'not.contain.text', - 'Week before' - ); - - cy.changeTimeRange('Today'); - cy.contains('Day before'); - cy.contains('Week before'); + describe('changes comparison type when a new time range is selected', () => { + it('when selecting a manual time range, comparison should display the custom time range', () => { + cy.visitKibana(serviceOverviewHref); + cy.contains('opbeans-java'); + // Time comparison default value + cy.getByTestSubj('comparisonSelect').should('have.value', '1d'); + cy.contains('Day before'); + cy.contains('Week before'); + + cy.selectAbsoluteTimeRange( + '2021-10-10T00:00:00.000Z', + '2021-10-20T00:00:00.000Z' + ); - cy.changeTimeRange('Last 24 hours'); - cy.getByTestSubj('comparisonSelect').should('have.value', '1d'); - cy.contains('Day before'); - cy.contains('Week before'); + cy.getByTestSubj('querySubmitButton').click(); - cy.changeTimeRange('Last 7 days'); - cy.getByTestSubj('comparisonSelect').should('have.value', '1w'); - cy.getByTestSubj('comparisonSelect').should('contain.text', 'Week before'); - cy.getByTestSubj('comparisonSelect').should( - 'not.contain.text', - 'Day before' - ); - cy.contains('Week before'); + cy.getByTestSubj('comparisonSelect').should('have.value', '864000000ms'); + cy.getByTestSubj('comparisonSelect').should( + 'not.contain.text', + 'Day before' + ); + cy.getByTestSubj('comparisonSelect').should( + 'not.contain.text', + 'Week before' + ); + }); + it('when selecting Today from time range, comparison should display both day and week options', () => { + cy.visitKibana(serviceOverviewHref); + cy.changeTimeRange('Today'); + cy.getByTestSubj('comparisonSelect').should('have.value', '1d'); + cy.contains('Day before'); + cy.contains('Week before'); + }); + // Skipped as the test is Flaky + xit('when selecting Last Week from time range, comparison should only display week options', () => { + cy.visitKibana(serviceOverviewHref); + cy.changeTimeRange('Last 7 days'); + cy.getByTestSubj('comparisonSelect').should('have.value', '1w'); + cy.getByTestSubj('comparisonSelect').should( + 'contain.text', + 'Week before' + ); + cy.getByTestSubj('comparisonSelect').should( + 'not.contain.text', + 'Day before' + ); + }); }); it('hovers over throughput chart shows previous and current period', () => { diff --git a/x-pack/plugins/apm/ftr_e2e/cypress/e2e/storage_explorer/storage_explorer.cy.ts b/x-pack/plugins/apm/ftr_e2e/cypress/e2e/storage_explorer/storage_explorer.cy.ts index 5abd41ba5fe0c..bfa0aaa79d987 100644 --- a/x-pack/plugins/apm/ftr_e2e/cypress/e2e/storage_explorer/storage_explorer.cy.ts +++ b/x-pack/plugins/apm/ftr_e2e/cypress/e2e/storage_explorer/storage_explorer.cy.ts @@ -187,7 +187,6 @@ describe('Storage Explorer', () => { cy.contains('opbeans-node'); cy.getByTestSubj('storageDetailsButton_opbeans-node').click(); - cy.getByTestSubj('loadingSpinner').should('be.visible'); cy.wait('@storageDetailsRequest'); cy.contains('Service storage details'); diff --git a/x-pack/plugins/apm/ftr_e2e/cypress/support/commands.ts b/x-pack/plugins/apm/ftr_e2e/cypress/support/commands.ts index e520dc5f92579..c191a9add4e96 100644 --- a/x-pack/plugins/apm/ftr_e2e/cypress/support/commands.ts +++ b/x-pack/plugins/apm/ftr_e2e/cypress/support/commands.ts @@ -80,19 +80,25 @@ Cypress.Commands.add('visitKibana', (url: string) => { }); }); +// This command expects from and to both values to be present on the URL where +// this command is being executed. If from and to values are not present, +// the date picker renders singleValueInput where this command won't work. Cypress.Commands.add( 'selectAbsoluteTimeRange', (start: string, end: string) => { const format = 'MMM D, YYYY @ HH:mm:ss.SSS'; cy.getByTestSubj('superDatePickerstartDatePopoverButton').click(); - cy.getByTestSubj('superDatePickerAbsoluteDateInput') - .eq(0) + cy.contains('Start date') + .nextAll() + .find('[data-test-subj="superDatePickerAbsoluteDateInput"]') .clear({ force: true }) .type(moment(start).format(format), { force: true }); + cy.getByTestSubj('superDatePickerendDatePopoverButton').click(); - cy.getByTestSubj('superDatePickerAbsoluteDateInput') - .eq(1) + cy.contains('End date') + .nextAll() + .find('[data-test-subj="superDatePickerAbsoluteDateInput"]') .clear({ force: true }) .type(moment(end).format(format), { force: true }); } diff --git a/x-pack/plugins/apm/public/components/alerting/rule_types/error_count_rule_type/index.tsx b/x-pack/plugins/apm/public/components/alerting/rule_types/error_count_rule_type/index.tsx index e302a51f2a5db..b42a3eb3b528f 100644 --- a/x-pack/plugins/apm/public/components/alerting/rule_types/error_count_rule_type/index.tsx +++ b/x-pack/plugins/apm/public/components/alerting/rule_types/error_count_rule_type/index.tsx @@ -17,6 +17,7 @@ import { import { EuiFormRow } from '@elastic/eui'; import { EuiSpacer } from '@elastic/eui'; import { EuiSwitchEvent } from '@elastic/eui'; +import { SearchConfigurationType } from '../../../../../common/rules/schema'; import { ENVIRONMENT_ALL } from '../../../../../common/environment_filter_values'; import { asInteger } from '../../../../../common/utils/formatters'; import { @@ -58,7 +59,7 @@ export interface ErrorCountRuleParams { groupBy?: string[] | undefined; errorGroupingKey?: string; useKqlFilter?: boolean; - kqlFilter?: string; + searchConfiguration?: SearchConfigurationType; } interface Props { @@ -105,7 +106,7 @@ export function ErrorCountRuleType(props: Props) { start, end, groupBy: params.groupBy, - kqlFilter: params.kqlFilter, + searchConfiguration: JSON.stringify(params.searchConfiguration), }, }, } @@ -119,7 +120,7 @@ export function ErrorCountRuleType(props: Props) { params.serviceName, params.errorGroupingKey, params.groupBy, - params.kqlFilter, + params.searchConfiguration, ] ); @@ -244,7 +245,9 @@ export function ErrorCountRuleType(props: Props) { setRuleParams('serviceName', undefined); setRuleParams('errorGroupingKey', undefined); setRuleParams('environment', ENVIRONMENT_ALL.value); - setRuleParams('kqlFilter', undefined); + setRuleParams('searchConfiguration', { + query: { query: '', language: 'kuery' }, + }); setRuleParams('useKqlFilter', e.target.checked); }; diff --git a/x-pack/plugins/apm/public/components/alerting/rule_types/transaction_duration_rule_type/index.tsx b/x-pack/plugins/apm/public/components/alerting/rule_types/transaction_duration_rule_type/index.tsx index 92c1aa301f516..900f90253a6e1 100644 --- a/x-pack/plugins/apm/public/components/alerting/rule_types/transaction_duration_rule_type/index.tsx +++ b/x-pack/plugins/apm/public/components/alerting/rule_types/transaction_duration_rule_type/index.tsx @@ -18,6 +18,7 @@ import { import { EuiFormRow } from '@elastic/eui'; import { EuiSpacer } from '@elastic/eui'; import { EuiSwitchEvent } from '@elastic/eui'; +import { SearchConfigurationType } from '../../../../../common/rules/schema'; import { AggregationType } from '../../../../../common/rules/apm_rule_types'; import { ENVIRONMENT_ALL } from '../../../../../common/environment_filter_values'; import { getDurationFormatter } from '../../../../../common/utils/formatters'; @@ -67,7 +68,7 @@ export interface TransactionDurationRuleParams { windowUnit: string; groupBy?: string[] | undefined; useKqlFilter?: boolean; - kqlFilter?: string; + searchConfiguration?: SearchConfigurationType; } const TRANSACTION_ALERT_AGGREGATION_TYPES: Record = { @@ -135,7 +136,7 @@ export function TransactionDurationRuleType(props: Props) { start, end, groupBy: params.groupBy, - kqlFilter: params.kqlFilter, + searchConfiguration: JSON.stringify(params.searchConfiguration), }, }, } @@ -151,7 +152,7 @@ export function TransactionDurationRuleType(props: Props) { params.windowSize, params.windowUnit, params.groupBy, - params.kqlFilter, + params.searchConfiguration, ] ); @@ -314,7 +315,9 @@ export function TransactionDurationRuleType(props: Props) { setRuleParams('transactionType', undefined); setRuleParams('transactionName', undefined); setRuleParams('environment', ENVIRONMENT_ALL.value); - setRuleParams('kqlFilter', undefined); + setRuleParams('searchConfiguration', { + query: { query: '', language: 'kuery' }, + }); setRuleParams('useKqlFilter', e.target.checked); }; diff --git a/x-pack/plugins/apm/public/components/alerting/rule_types/transaction_error_rate_rule_type/index.tsx b/x-pack/plugins/apm/public/components/alerting/rule_types/transaction_error_rate_rule_type/index.tsx index a3032c32521e2..cf1132e58b9e0 100644 --- a/x-pack/plugins/apm/public/components/alerting/rule_types/transaction_error_rate_rule_type/index.tsx +++ b/x-pack/plugins/apm/public/components/alerting/rule_types/transaction_error_rate_rule_type/index.tsx @@ -17,6 +17,7 @@ import { import { EuiFormRow } from '@elastic/eui'; import { EuiSpacer } from '@elastic/eui'; import { EuiSwitchEvent } from '@elastic/eui'; +import { SearchConfigurationType } from '../../../../../common/rules/schema'; import { ENVIRONMENT_ALL } from '../../../../../common/environment_filter_values'; import { asPercent } from '../../../../../common/utils/formatters'; import { @@ -59,7 +60,7 @@ export interface ErrorRateRuleParams { environment?: string; groupBy?: string[] | undefined; useKqlFilter?: boolean; - kqlFilter?: string; + searchConfiguration?: SearchConfigurationType; } export interface Props { @@ -107,7 +108,7 @@ export function TransactionErrorRateRuleType(props: Props) { start, end, groupBy: params.groupBy, - kqlFilter: params.kqlFilter, + searchConfiguration: JSON.stringify(params.searchConfiguration), }, }, } @@ -122,7 +123,7 @@ export function TransactionErrorRateRuleType(props: Props) { params.windowSize, params.windowUnit, params.groupBy, - params.kqlFilter, + params.searchConfiguration, ] ); @@ -256,7 +257,9 @@ export function TransactionErrorRateRuleType(props: Props) { setRuleParams('transactionType', undefined); setRuleParams('transactionName', undefined); setRuleParams('environment', ENVIRONMENT_ALL.value); - setRuleParams('kqlFilter', undefined); + setRuleParams('searchConfiguration', { + query: { query: '', language: 'kuery' }, + }); setRuleParams('useKqlFilter', e.target.checked); }; diff --git a/x-pack/plugins/apm/public/components/alerting/ui_components/apm_rule_kql_filter.tsx b/x-pack/plugins/apm/public/components/alerting/ui_components/apm_rule_kql_filter.tsx index d87e1e3cd995d..9b8e01b2595f4 100644 --- a/x-pack/plugins/apm/public/components/alerting/ui_components/apm_rule_kql_filter.tsx +++ b/x-pack/plugins/apm/public/components/alerting/ui_components/apm_rule_kql_filter.tsx @@ -6,16 +6,15 @@ */ import { i18n } from '@kbn/i18n'; -import React, { useCallback } from 'react'; -import { debounce } from 'lodash'; +import React from 'react'; import { EuiSwitch } from '@elastic/eui'; import { EuiFormRow } from '@elastic/eui'; import { EuiSpacer } from '@elastic/eui'; -import { RuleFlyoutKueryBar } from '@kbn/observability-plugin/public'; -import { useApmDataView } from '../../../hooks/use_apm_data_view'; +import { EuiSwitchEvent } from '@elastic/eui'; import { TransactionDurationRuleParams } from '../rule_types/transaction_duration_rule_type'; import { ErrorRateRuleParams } from '../rule_types/transaction_error_rate_rule_type'; import { ErrorCountRuleParams } from '../rule_types/error_count_rule_type'; +import { ApmRuleUnifiedSearchBar } from './apm_rule_unified_search_bar'; interface Props { ruleParams: @@ -23,7 +22,7 @@ interface Props { | ErrorRateRuleParams | ErrorCountRuleParams; setRuleParams: (key: string, value: any) => void; - onToggleKqlFilter: any; + onToggleKqlFilter: (e: EuiSwitchEvent) => void; } export function ApmRuleKqlFilter({ @@ -31,30 +30,6 @@ export function ApmRuleKqlFilter({ setRuleParams, onToggleKqlFilter, }: Props) { - const FILTER_TYPING_DEBOUNCE_MS = 500; - - const { dataView: derivedIndexPattern } = useApmDataView(); - - const onFilterChange = useCallback( - (filter: string) => { - setRuleParams('kqlFilter', filter); - }, - [setRuleParams] - ); - - /* eslint-disable-next-line react-hooks/exhaustive-deps */ - const debouncedOnFilterChange = useCallback( - debounce(onFilterChange, FILTER_TYPING_DEBOUNCE_MS), - [onFilterChange] - ); - - const placeHolder = i18n.translate( - 'xpack.apm.rule.kqlSearchFieldPlaceholder', - { - defaultMessage: 'Search for APM data… (e.g. service.name: service-1)', - } - ); - const kqlFilterToggle = ( <> ); - const kqlFilter = - ruleParams.useKqlFilter && derivedIndexPattern ? ( - <> - - - - - - ) : null; + const kqlFilter = ruleParams.useKqlFilter ? ( + <> + + + + + + ) : null; return ( <> diff --git a/x-pack/plugins/apm/public/components/alerting/ui_components/apm_rule_unified_search_bar.tsx b/x-pack/plugins/apm/public/components/alerting/ui_components/apm_rule_unified_search_bar.tsx new file mode 100644 index 0000000000000..549f394070ce5 --- /dev/null +++ b/x-pack/plugins/apm/public/components/alerting/ui_components/apm_rule_unified_search_bar.tsx @@ -0,0 +1,68 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +import React from 'react'; +import { i18n } from '@kbn/i18n'; +import { Query } from '@kbn/es-query'; +import { useKibana } from '@kbn/kibana-react-plugin/public'; +import { ApmPluginStartDeps } from '../../../plugin'; +import { useApmDataView } from '../../../hooks/use_apm_data_view'; +import { TransactionDurationRuleParams } from '../rule_types/transaction_duration_rule_type'; +import { ErrorRateRuleParams } from '../rule_types/transaction_error_rate_rule_type'; +import { ErrorCountRuleParams } from '../rule_types/error_count_rule_type'; + +export function ApmRuleUnifiedSearchBar({ + placeholder, + ruleParams, + setRuleParams, +}: { + placeholder?: string; + value?: string; + isClearable?: boolean; + ruleParams: + | TransactionDurationRuleParams + | ErrorRateRuleParams + | ErrorCountRuleParams; + setRuleParams: (key: string, value: any) => void; +}) { + const { services } = useKibana(); + + const { + unifiedSearch: { + ui: { SearchBar }, + }, + } = services; + + const { dataView } = useApmDataView(); + const searchbarPlaceholder = + 'Search for APM data… (e.g. service.name: service-1)'; + + const handleSubmit = (payload: { query?: Query }) => { + const { query } = payload; + setRuleParams('searchConfiguration', { query }); + }; + + return ( + + ); +} diff --git a/x-pack/plugins/apm/server/routes/alerts/route.ts b/x-pack/plugins/apm/server/routes/alerts/route.ts index 67470d19180ce..3343b7f78f0af 100644 --- a/x-pack/plugins/apm/server/routes/alerts/route.ts +++ b/x-pack/plugins/apm/server/routes/alerts/route.ts @@ -6,6 +6,7 @@ */ import * as t from 'io-ts'; +import { jsonRt } from '@kbn/io-ts-utils'; import { Coordinate } from '../../../typings/timeseries'; import { getTransactionDurationChartPreview } from './rule_types/transaction_duration/get_transaction_duration_chart_preview'; import { getTransactionErrorCountChartPreview } from './rule_types/error_count/get_error_count_chart_preview'; @@ -15,6 +16,13 @@ import { environmentRt, rangeRt } from '../default_api_types'; import { AggregationType } from '../../../common/rules/apm_rule_types'; import { getApmEventClient } from '../../lib/helpers/get_apm_event_client'; +const searchConfigurationRt = t.type({ + query: t.type({ + query: t.union([t.string, t.record(t.string, t.any)]), + language: t.string, + }), +}); + const alertParamsRt = t.intersection([ t.partial({ aggregationType: t.union([ @@ -34,7 +42,7 @@ const alertParamsRt = t.intersection([ }), t.partial({ groupBy: t.array(t.string), - kqlFilter: t.string, + searchConfiguration: jsonRt.pipe(searchConfigurationRt), }), ]); diff --git a/x-pack/plugins/apm/server/routes/alerts/rule_types/error_count/get_error_count_chart_preview.ts b/x-pack/plugins/apm/server/routes/alerts/rule_types/error_count/get_error_count_chart_preview.ts index e1bf2ba2b7a43..a1fcb98d7a323 100644 --- a/x-pack/plugins/apm/server/routes/alerts/rule_types/error_count/get_error_count_chart_preview.ts +++ b/x-pack/plugins/apm/server/routes/alerts/rule_types/error_count/get_error_count_chart_preview.ts @@ -42,7 +42,7 @@ export async function getTransactionErrorCountChartPreview({ start, end, groupBy: groupByFields, - kqlFilter, + searchConfiguration, } = alertParams; const allGroupByFields = getAllGroupByFields( @@ -50,7 +50,7 @@ export async function getTransactionErrorCountChartPreview({ groupByFields ); - const termFilterQuery = !kqlFilter + const termFilterQuery = !searchConfiguration ? [ ...termQuery(SERVICE_NAME, serviceName, { queryEmptyString: false, @@ -66,7 +66,7 @@ export async function getTransactionErrorCountChartPreview({ bool: { filter: [ ...termFilterQuery, - ...getParsedFilterQuery(kqlFilter), + ...getParsedFilterQuery(searchConfiguration?.query?.query as string), ...rangeQuery(start, end), { term: { [PROCESSOR_EVENT]: ProcessorEvent.error } }, ], diff --git a/x-pack/plugins/apm/server/routes/alerts/rule_types/error_count/register_error_count_rule_type.test.ts b/x-pack/plugins/apm/server/routes/alerts/rule_types/error_count/register_error_count_rule_type.test.ts index cc509c41fb8b2..1b56d89d91d3a 100644 --- a/x-pack/plugins/apm/server/routes/alerts/rule_types/error_count/register_error_count_rule_type.test.ts +++ b/x-pack/plugins/apm/server/routes/alerts/rule_types/error_count/register_error_count_rule_type.test.ts @@ -709,7 +709,12 @@ describe('Error count alert', () => { windowSize: 5, windowUnit: 'm', serviceName: undefined, - kqlFilter: 'service.name: foo and service.environment: env-foo', + searchConfiguration: { + query: { + query: 'service.name: foo and service.environment: env-foo', + language: 'kuery', + }, + }, groupBy: ['service.name', 'service.environment'], }; diff --git a/x-pack/plugins/apm/server/routes/alerts/rule_types/error_count/register_error_count_rule_type.ts b/x-pack/plugins/apm/server/routes/alerts/rule_types/error_count/register_error_count_rule_type.ts index dde54fa604fc7..f0843516e4c9a 100644 --- a/x-pack/plugins/apm/server/routes/alerts/rule_types/error_count/register_error_count_rule_type.ts +++ b/x-pack/plugins/apm/server/routes/alerts/rule_types/error_count/register_error_count_rule_type.ts @@ -57,6 +57,20 @@ import { getAllGroupByFields } from '../../../../../common/rules/get_all_groupby const ruleTypeConfig = RULE_TYPES_CONFIG[ApmRuleType.ErrorCount]; +export const errorCountActionVariables = [ + apmActionVariables.alertDetailsUrl, + apmActionVariables.environment, + apmActionVariables.errorGroupingKey, + apmActionVariables.errorGroupingName, + apmActionVariables.interval, + apmActionVariables.reason, + apmActionVariables.serviceName, + apmActionVariables.threshold, + apmActionVariables.transactionName, + apmActionVariables.triggerValue, + apmActionVariables.viewInAppUrl, +]; + export function registerErrorCountRuleType({ alerting, alertsLocator, @@ -78,19 +92,7 @@ export function registerErrorCountRuleType({ defaultActionGroupId: ruleTypeConfig.defaultActionGroupId, validate: { params: errorCountParamsSchema }, actionVariables: { - context: [ - apmActionVariables.alertDetailsUrl, - apmActionVariables.environment, - apmActionVariables.interval, - apmActionVariables.reason, - apmActionVariables.serviceName, - apmActionVariables.transactionName, - apmActionVariables.errorGroupingKey, - apmActionVariables.errorGroupingName, - apmActionVariables.threshold, - apmActionVariables.triggerValue, - apmActionVariables.viewInAppUrl, - ], + context: errorCountActionVariables, }, producer: APM_SERVER_FEATURE_ID, minimumLicenseRequired: 'basic', @@ -115,7 +117,7 @@ export function registerErrorCountRuleType({ const indices = await getApmIndices(savedObjectsClient); - const termFilterQuery = !ruleParams.kqlFilter + const termFilterQuery = !ruleParams.searchConfiguration ? [ ...termQuery(SERVICE_NAME, ruleParams.serviceName, { queryEmptyString: false, @@ -144,7 +146,9 @@ export function registerErrorCountRuleType({ }, { term: { [PROCESSOR_EVENT]: ProcessorEvent.error } }, ...termFilterQuery, - ...getParsedFilterQuery(ruleParams.kqlFilter), + ...getParsedFilterQuery( + ruleParams.searchConfiguration?.query?.query as string + ), ], }, }, diff --git a/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_duration/get_transaction_duration_chart_preview.ts b/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_duration/get_transaction_duration_chart_preview.ts index 12df75f19334b..bf191c5213cf0 100644 --- a/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_duration/get_transaction_duration_chart_preview.ts +++ b/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_duration/get_transaction_duration_chart_preview.ts @@ -60,7 +60,7 @@ export async function getTransactionDurationChartPreview({ start, end, groupBy: groupByFields, - kqlFilter, + searchConfiguration, } = alertParams; const searchAggregatedTransactions = await getSearchTransactionsEvents({ config, @@ -68,7 +68,7 @@ export async function getTransactionDurationChartPreview({ kuery: '', }); - const termFilterQuery = !kqlFilter + const termFilterQuery = !searchConfiguration ? [ ...termQuery(SERVICE_NAME, serviceName, { queryEmptyString: false, @@ -87,7 +87,7 @@ export async function getTransactionDurationChartPreview({ bool: { filter: [ ...termFilterQuery, - ...getParsedFilterQuery(kqlFilter), + ...getParsedFilterQuery(searchConfiguration?.query?.query as string), ...rangeQuery(start, end), ...getDocumentTypeFilterForTransactions(searchAggregatedTransactions), ] as QueryDslQueryContainer[], diff --git a/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_duration/register_transaction_duration_rule_type.test.ts b/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_duration/register_transaction_duration_rule_type.test.ts index 1e62211e3f19a..33aba72eb96be 100644 --- a/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_duration/register_transaction_duration_rule_type.test.ts +++ b/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_duration/register_transaction_duration_rule_type.test.ts @@ -327,7 +327,12 @@ describe('registerTransactionDurationRuleType', () => { transactionType: undefined, serviceName: undefined, aggregationType: 'avg', - kqlFilter: 'service.name: opbeans-java and transaction.type: request', + searchConfiguration: { + query: { + query: 'service.name: opbeans-java and transaction.type: request', + language: 'kuery', + }, + }, groupBy: ['service.name', 'service.environment', 'transaction.type'], }; diff --git a/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_duration/register_transaction_duration_rule_type.ts b/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_duration/register_transaction_duration_rule_type.ts index 05f1d6adf6e5b..7a1beb3ba9f9e 100644 --- a/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_duration/register_transaction_duration_rule_type.ts +++ b/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_duration/register_transaction_duration_rule_type.ts @@ -71,6 +71,19 @@ import { getAllGroupByFields } from '../../../../../common/rules/get_all_groupby const ruleTypeConfig = RULE_TYPES_CONFIG[ApmRuleType.TransactionDuration]; +export const transactionDurationActionVariables = [ + apmActionVariables.alertDetailsUrl, + apmActionVariables.environment, + apmActionVariables.interval, + apmActionVariables.reason, + apmActionVariables.serviceName, + apmActionVariables.threshold, + apmActionVariables.transactionName, + apmActionVariables.transactionType, + apmActionVariables.triggerValue, + apmActionVariables.viewInAppUrl, +]; + export function registerTransactionDurationRuleType({ alerting, ruleDataClient, @@ -91,18 +104,7 @@ export function registerTransactionDurationRuleType({ defaultActionGroupId: ruleTypeConfig.defaultActionGroupId, validate: { params: transactionDurationParamsSchema }, actionVariables: { - context: [ - apmActionVariables.alertDetailsUrl, - apmActionVariables.environment, - apmActionVariables.interval, - apmActionVariables.reason, - apmActionVariables.serviceName, - apmActionVariables.transactionType, - apmActionVariables.transactionName, - apmActionVariables.threshold, - apmActionVariables.triggerValue, - apmActionVariables.viewInAppUrl, - ], + context: transactionDurationActionVariables, }, producer: APM_SERVER_FEATURE_ID, minimumLicenseRequired: 'basic', @@ -133,7 +135,7 @@ export function registerTransactionDurationRuleType({ searchAggregatedTransactions ); - const termFilterQuery = !ruleParams.kqlFilter + const termFilterQuery = !ruleParams.searchConfiguration ? [ ...termQuery(SERVICE_NAME, ruleParams.serviceName, { queryEmptyString: false, @@ -167,7 +169,9 @@ export function registerTransactionDurationRuleType({ searchAggregatedTransactions ), ...termFilterQuery, - ...getParsedFilterQuery(ruleParams.kqlFilter), + ...getParsedFilterQuery( + ruleParams.searchConfiguration?.query?.query as string + ), ] as QueryDslQueryContainer[], }, }, diff --git a/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_error_rate/get_transaction_error_rate_chart_preview.ts b/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_error_rate/get_transaction_error_rate_chart_preview.ts index e2f3888455f96..3ffa001fccc9d 100644 --- a/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_error_rate/get_transaction_error_rate_chart_preview.ts +++ b/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_error_rate/get_transaction_error_rate_chart_preview.ts @@ -52,7 +52,7 @@ export async function getTransactionErrorRateChartPreview({ end, transactionName, groupBy: groupByFields, - kqlFilter, + searchConfiguration, } = alertParams; const searchAggregatedTransactions = await getSearchTransactionsEvents({ @@ -66,7 +66,7 @@ export async function getTransactionErrorRateChartPreview({ groupByFields ); - const termFilterQuery = !kqlFilter + const termFilterQuery = !searchConfiguration ? [ ...termQuery(SERVICE_NAME, serviceName, { queryEmptyString: false, @@ -92,7 +92,9 @@ export async function getTransactionErrorRateChartPreview({ bool: { filter: [ ...termFilterQuery, - ...getParsedFilterQuery(kqlFilter), + ...getParsedFilterQuery( + searchConfiguration?.query?.query as string + ), ...rangeQuery(start, end), ...getDocumentTypeFilterForTransactions( searchAggregatedTransactions diff --git a/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_error_rate/register_transaction_error_rate_rule_type.test.ts b/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_error_rate/register_transaction_error_rate_rule_type.test.ts index 4f779ca4d7412..e565ce69a538e 100644 --- a/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_error_rate/register_transaction_error_rate_rule_type.test.ts +++ b/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_error_rate/register_transaction_error_rate_rule_type.test.ts @@ -481,8 +481,13 @@ describe('Transaction error rate alert', () => { threshold: 10, windowSize: 5, windowUnit: 'm', - kqlFilter: - 'service.name: bar and service.environment: env-bar and transaction.type: type-bar', + searchConfiguration: { + query: { + query: + 'service.name: bar and service.environment: env-bar and transaction.type: type-bar', + language: 'kuery', + }, + }, groupBy: ['service.name', 'service.environment', 'transaction.type'], }; diff --git a/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_error_rate/register_transaction_error_rate_rule_type.ts b/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_error_rate/register_transaction_error_rate_rule_type.ts index 6761ca14abf86..7015862db8d9e 100644 --- a/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_error_rate/register_transaction_error_rate_rule_type.ts +++ b/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_error_rate/register_transaction_error_rate_rule_type.ts @@ -66,6 +66,19 @@ import { getAllGroupByFields } from '../../../../../common/rules/get_all_groupby const ruleTypeConfig = RULE_TYPES_CONFIG[ApmRuleType.TransactionErrorRate]; +export const transactionErrorRateActionVariables = [ + apmActionVariables.alertDetailsUrl, + apmActionVariables.environment, + apmActionVariables.interval, + apmActionVariables.reason, + apmActionVariables.serviceName, + apmActionVariables.threshold, + apmActionVariables.transactionName, + apmActionVariables.transactionType, + apmActionVariables.triggerValue, + apmActionVariables.viewInAppUrl, +]; + export function registerTransactionErrorRateRuleType({ alerting, alertsLocator, @@ -88,19 +101,7 @@ export function registerTransactionErrorRateRuleType({ defaultActionGroupId: ruleTypeConfig.defaultActionGroupId, validate: { params: transactionErrorRateParamsSchema }, actionVariables: { - context: [ - apmActionVariables.alertDetailsUrl, - apmActionVariables.environment, - apmActionVariables.interval, - apmActionVariables.reason, - apmActionVariables.serviceName, - apmActionVariables.transactionName, - apmActionVariables.threshold, - apmActionVariables.transactionType, - apmActionVariables.transactionName, - apmActionVariables.triggerValue, - apmActionVariables.viewInAppUrl, - ], + context: transactionErrorRateActionVariables, }, producer: APM_SERVER_FEATURE_ID, minimumLicenseRequired: 'basic', @@ -136,7 +137,7 @@ export function registerTransactionErrorRateRuleType({ ? indices.metric : indices.transaction; - const termFilterQuery = !ruleParams.kqlFilter + const termFilterQuery = !ruleParams.searchConfiguration ? [ ...termQuery(SERVICE_NAME, ruleParams.serviceName, { queryEmptyString: false, @@ -178,7 +179,9 @@ export function registerTransactionErrorRateRuleType({ }, }, ...termFilterQuery, - ...getParsedFilterQuery(ruleParams.kqlFilter), + ...getParsedFilterQuery( + ruleParams.searchConfiguration?.query?.query as string + ), ], }, }, diff --git a/x-pack/plugins/canvas/public/components/workpad_header/editor_menu/__stories__/editor_menu.stories.tsx b/x-pack/plugins/canvas/public/components/workpad_header/editor_menu/__stories__/editor_menu.stories.tsx index a6d2b7b42d38b..915676b8f6b5c 100644 --- a/x-pack/plugins/canvas/public/components/workpad_header/editor_menu/__stories__/editor_menu.stories.tsx +++ b/x-pack/plugins/canvas/public/components/workpad_header/editor_menu/__stories__/editor_menu.stories.tsx @@ -19,6 +19,7 @@ const testFactories: EmbeddableFactoryDefinition[] = [ getIconType: () => '', getDescription: () => 'Description for anomaly swimlane', isEditable: () => Promise.resolve(true), + latestVersion: '1.0.0', create: () => Promise.resolve({ id: 'swimlane_embeddable' } as IEmbeddable), grouping: [ { @@ -35,6 +36,7 @@ const testFactories: EmbeddableFactoryDefinition[] = [ getDescription: () => 'Description for anomaly chart', isEditable: () => Promise.resolve(true), create: () => Promise.resolve({ id: 'anomaly_chart_embeddable' } as IEmbeddable), + latestVersion: '1.0.0', grouping: [ { id: 'ml', @@ -48,6 +50,7 @@ const testFactories: EmbeddableFactoryDefinition[] = [ getDisplayName: () => 'Log stream', getIconType: () => '', getDescription: () => 'Description for log stream', + latestVersion: '1.0.0', isEditable: () => Promise.resolve(true), create: () => Promise.resolve({ id: 'anomaly_chart_embeddable' } as IEmbeddable), }, diff --git a/x-pack/plugins/canvas/public/components/workpad_page/workpad_interactive_page/event_handlers.ts b/x-pack/plugins/canvas/public/components/workpad_page/workpad_interactive_page/event_handlers.ts index bb06444c0c8f6..ca187a8381d29 100644 --- a/x-pack/plugins/canvas/public/components/workpad_page/workpad_interactive_page/event_handlers.ts +++ b/x-pack/plugins/canvas/public/components/workpad_page/workpad_interactive_page/event_handlers.ts @@ -61,7 +61,8 @@ const setupHandler = (commit: CommitFn, canvasOrigin: CanvasOriginFn, zoomScale? // only commits the cursor position if there's a way to latch onto x/y calculation (canvasOrigin is knowable) // or if left button is being held down (i.e. an element is being dragged) - if (buttons === 1 || canvasOrigin) { + // + if (buttons === 1 || canvasOrigin !== undefined) { commit('cursorPosition', { x, y, altKey, metaKey, shiftKey, ctrlKey }); } else { // clears cursorPosition diff --git a/x-pack/plugins/cases/public/components/all_cases/all_cases_list.test.tsx b/x-pack/plugins/cases/public/components/all_cases/all_cases_list.test.tsx index 180a8828c88b1..10b55c0e979b3 100644 --- a/x-pack/plugins/cases/public/components/all_cases/all_cases_list.test.tsx +++ b/x-pack/plugins/cases/public/components/all_cases/all_cases_list.test.tsx @@ -191,7 +191,10 @@ describe('AllCasesListGeneric', () => { expect( screen.getAllByTestId('case-table-column-createdAt')[0].querySelector('.euiToolTipAnchor') ).toHaveTextContent(removeMsFromDate(useGetCasesMockState.data.cases[0].createdAt)); - expect(screen.getByTestId('case-table-case-count')).toHaveTextContent('Showing 10 cases'); + expect(screen.getByTestId('case-table-case-count')).toHaveTextContent( + `Showing 10 of ${useGetCasesMockState.data.total} cases` + ); + expect(screen.queryByTestId('all-cases-maximum-limit-warning')).not.toBeInTheDocument(); }); }); diff --git a/x-pack/plugins/cases/public/components/all_cases/table.tsx b/x-pack/plugins/cases/public/components/all_cases/table.tsx index dc5e7042ec9f7..ae60e942dc75a 100644 --- a/x-pack/plugins/cases/public/components/all_cases/table.tsx +++ b/x-pack/plugins/cases/public/components/all_cases/table.tsx @@ -79,6 +79,7 @@ export const CasesTable: FunctionComponent = ({ ) : ( <> defaultMessage: 'Selected {totalRules} {totalRules, plural, =1 {case} other {cases}}', }); -export const SHOWING_CASES = (totalRules: number) => +export const SHOWING_CASES = (totalRules: number, pageSize: number) => i18n.translate('xpack.cases.caseTable.showingCasesTitle', { - values: { totalRules }, - defaultMessage: 'Showing {totalRules} {totalRules, plural, =1 {case} other {cases}}', + values: { totalRules, pageSize }, + defaultMessage: + 'Showing {pageSize} of {totalRules} {totalRules, plural, =1 {case} other {cases}}', + }); + +export const MAX_CASES = (maxCases: number) => + i18n.translate('xpack.cases.caseTable.maxCases', { + values: { maxCases }, + defaultMessage: + 'The results were capped at {maxCases} to maintain performance. Try limiting your search to reduce the results.', }); +export const DISMISS = i18n.translate('xpack.cases.caseTable.dismiss', { + defaultMessage: 'Dismiss', +}); + +export const NOT_SHOW_AGAIN = i18n.translate('xpack.cases.caseTable.notShowAgain', { + defaultMessage: 'Do not show again', +}); + export const UNIT = (totalCount: number) => i18n.translate('xpack.cases.caseTable.unit', { values: { totalCount }, diff --git a/x-pack/plugins/cases/public/components/all_cases/utility_bar.test.tsx b/x-pack/plugins/cases/public/components/all_cases/utility_bar.test.tsx index 2fddd22a9083c..4d740c2fb9552 100644 --- a/x-pack/plugins/cases/public/components/all_cases/utility_bar.test.tsx +++ b/x-pack/plugins/cases/public/components/all_cases/utility_bar.test.tsx @@ -5,10 +5,11 @@ * 2.0. */ -import { act, waitFor } from '@testing-library/react'; +import { act, waitFor, screen } from '@testing-library/react'; import userEvent from '@testing-library/user-event'; import React from 'react'; import type { AppMockRenderer } from '../../common/mock'; +import { MAX_DOCS_PER_PAGE } from '../../../common/constants'; import { noCasesPermissions, onlyDeleteCasesPermission, @@ -22,11 +23,17 @@ import { CasesTableUtilityBar } from './utility_bar'; describe('Severity form field', () => { let appMockRender: AppMockRenderer; const deselectCases = jest.fn(); + const localStorageKey = 'cases.testAppId.utilityBar.hideMaxLimitWarning'; const props = { totalCases: 5, selectedCases: [basicCase], deselectCases, + pagination: { + pageIndex: 1, + pageSize: 10, + totalItemCount: 5, + }, }; beforeEach(() => { @@ -34,52 +41,89 @@ describe('Severity form field', () => { }); it('renders', async () => { - const result = appMockRender.render(); - expect(result.getByText('Showing 5 cases')).toBeInTheDocument(); - expect(result.getByText('Selected 1 case')).toBeInTheDocument(); - expect(result.getByTestId('case-table-bulk-actions-link-icon')).toBeInTheDocument(); - expect(result.getByTestId('all-cases-refresh-link-icon')).toBeInTheDocument(); + appMockRender.render(); + expect(screen.getByText('Showing 5 of 5 cases')).toBeInTheDocument(); + expect(screen.getByText('Selected 1 case')).toBeInTheDocument(); + expect(screen.getByTestId('case-table-bulk-actions-link-icon')).toBeInTheDocument(); + expect(screen.getByTestId('all-cases-refresh-link-icon')).toBeInTheDocument(); + expect(screen.queryByTestId('all-cases-maximum-limit-warning')).not.toBeInTheDocument(); + }); + + it('renders showing cases correctly', async () => { + const updatedProps = { + ...props, + totalCases: 20, + pagination: { + ...props.pagination, + totalItemCount: 20, + }, + }; + appMockRender.render(); + expect(screen.getByText('Showing 10 of 20 cases')).toBeInTheDocument(); + expect(screen.getByText('Selected 1 case')).toBeInTheDocument(); + }); + + it('renders showing cases correctly for second page', async () => { + const updatedProps = { + ...props, + totalCases: 20, + pagination: { + ...props.pagination, + pageIndex: 2, + totalItemCount: 20, + }, + }; + appMockRender.render(); + expect(screen.getByText('Showing 10 of 20 cases')).toBeInTheDocument(); + expect(screen.getByText('Selected 1 case')).toBeInTheDocument(); + }); + + it('renders showing cases correctly when no cases available', async () => { + const updatedProps = { + totalCases: 0, + selectedCases: [], + deselectCases, + pagination: { + pageSize: 10, + pageIndex: 1, + totalItemCount: 0, + }, + }; + appMockRender.render(); + expect(screen.getByText('Showing 0 of 0 cases')).toBeInTheDocument(); }); it('opens the bulk actions correctly', async () => { - const result = appMockRender.render(); + appMockRender.render(); - act(() => { - userEvent.click(result.getByTestId('case-table-bulk-actions-link-icon')); - }); + userEvent.click(screen.getByTestId('case-table-bulk-actions-link-icon')); await waitFor(() => { - expect(result.getByTestId('case-table-bulk-actions-context-menu')); + expect(screen.getByTestId('case-table-bulk-actions-context-menu')); }); }); it('closes the bulk actions correctly', async () => { - const result = appMockRender.render(); + appMockRender.render(); - act(() => { - userEvent.click(result.getByTestId('case-table-bulk-actions-link-icon')); - }); + userEvent.click(screen.getByTestId('case-table-bulk-actions-link-icon')); await waitFor(() => { - expect(result.getByTestId('case-table-bulk-actions-context-menu')); + expect(screen.getByTestId('case-table-bulk-actions-context-menu')); }); - act(() => { - userEvent.click(result.getByTestId('case-table-bulk-actions-link-icon')); - }); + userEvent.click(screen.getByTestId('case-table-bulk-actions-link-icon')); await waitFor(() => { - expect(result.queryByTestId('case-table-bulk-actions-context-menu')).toBeFalsy(); + expect(screen.queryByTestId('case-table-bulk-actions-context-menu')).toBeFalsy(); }); }); it('refresh correctly', async () => { - const result = appMockRender.render(); + appMockRender.render(); const queryClientSpy = jest.spyOn(appMockRender.queryClient, 'invalidateQueries'); - act(() => { - userEvent.click(result.getByTestId('all-cases-refresh-link-icon')); - }); + userEvent.click(screen.getByTestId('all-cases-refresh-link-icon')); await waitFor(() => { expect(deselectCases).toHaveBeenCalled(); @@ -91,29 +135,198 @@ describe('Severity form field', () => { it('does not show the bulk actions without update & delete permissions', async () => { appMockRender = createAppMockRenderer({ permissions: noCasesPermissions() }); - const result = appMockRender.render(); + appMockRender.render(); - expect(result.queryByTestId('case-table-bulk-actions-link-icon')).toBeFalsy(); + expect(screen.queryByTestId('case-table-bulk-actions-link-icon')).toBeFalsy(); }); it('does show the bulk actions with only delete permissions', async () => { appMockRender = createAppMockRenderer({ permissions: onlyDeleteCasesPermission() }); - const result = appMockRender.render(); + appMockRender.render(); - expect(result.getByTestId('case-table-bulk-actions-link-icon')).toBeInTheDocument(); + expect(screen.getByTestId('case-table-bulk-actions-link-icon')).toBeInTheDocument(); }); it('does show the bulk actions with update permissions', async () => { appMockRender = createAppMockRenderer({ permissions: writeCasesPermissions() }); - const result = appMockRender.render(); + appMockRender.render(); - expect(result.getByTestId('case-table-bulk-actions-link-icon')).toBeInTheDocument(); + expect(screen.getByTestId('case-table-bulk-actions-link-icon')).toBeInTheDocument(); }); it('does not show the bulk actions if there are not selected cases', async () => { - const result = appMockRender.render(); + appMockRender.render(); + + expect(screen.queryByTestId('case-table-bulk-actions-link-icon')).toBeFalsy(); + expect(screen.queryByText('Showing 0 cases')).toBeFalsy(); + }); + + describe('Maximum number of cases', () => { + const newProps = { + ...props, + selectedCaseS: [], + totalCases: MAX_DOCS_PER_PAGE, + pagination: { + ...props.pagination, + totalItemCount: MAX_DOCS_PER_PAGE, + }, + }; + + const allCasesPageSize = [10, 25, 50, 100]; + + it.each(allCasesPageSize)( + `does not show warning when totalCases = ${MAX_DOCS_PER_PAGE} but pageSize(%s) * pageIndex + 1 < ${MAX_DOCS_PER_PAGE}`, + (size) => { + const newPageIndex = MAX_DOCS_PER_PAGE / size - 2; + + appMockRender.render( + + ); + + expect( + screen.getByText(`Showing ${size} of ${MAX_DOCS_PER_PAGE} cases`) + ).toBeInTheDocument(); + expect(screen.queryByTestId('all-cases-maximum-limit-warning')).not.toBeInTheDocument(); + } + ); + + it.each(allCasesPageSize)( + `shows warning when totalCases = ${MAX_DOCS_PER_PAGE} but pageSize(%s) * pageIndex + 1 = ${MAX_DOCS_PER_PAGE}`, + (size) => { + const newPageIndex = MAX_DOCS_PER_PAGE / size - 1; + + appMockRender.render( + + ); + + expect( + screen.getByText(`Showing ${size} of ${MAX_DOCS_PER_PAGE} cases`) + ).toBeInTheDocument(); + expect(screen.getByTestId('all-cases-maximum-limit-warning')).toBeInTheDocument(); + } + ); + + it.each(allCasesPageSize)( + `shows warning when totalCases = ${MAX_DOCS_PER_PAGE} but pageSize(%s) * pageIndex + 1 > ${MAX_DOCS_PER_PAGE}`, + (size) => { + const newPageIndex = MAX_DOCS_PER_PAGE / size; + + appMockRender.render( + + ); - expect(result.queryByTestId('case-table-bulk-actions-link-icon')).toBeFalsy(); - expect(result.queryByText('Showing 0 cases')).toBeFalsy(); + expect( + screen.getByText(`Showing ${size} of ${MAX_DOCS_PER_PAGE} cases`) + ).toBeInTheDocument(); + expect(screen.getByTestId('all-cases-maximum-limit-warning')).toBeInTheDocument(); + } + ); + + it('should show dismiss and do not show again buttons correctly', () => { + appMockRender.render( + + ); + + expect(screen.getByTestId('all-cases-maximum-limit-warning')).toBeInTheDocument(); + expect(screen.getByTestId('dismiss-warning')).toBeInTheDocument(); + + expect(screen.getByTestId('do-not-show-warning')).toBeInTheDocument(); + }); + + it('should dismiss warning correctly', () => { + appMockRender.render( + + ); + + expect(screen.getByTestId('all-cases-maximum-limit-warning')).toBeInTheDocument(); + expect(screen.getByTestId('dismiss-warning')).toBeInTheDocument(); + + userEvent.click(screen.getByTestId('dismiss-warning')); + + expect(screen.queryByTestId('all-cases-maximum-limit-warning')).not.toBeInTheDocument(); + }); + + describe('do not show button', () => { + beforeAll(() => { + jest.useFakeTimers(); + }); + + afterEach(() => { + jest.clearAllTimers(); + }); + + afterAll(() => { + jest.useRealTimers(); + sessionStorage.removeItem(localStorageKey); + }); + + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('should set storage key correctly', () => { + appMockRender.render( + + ); + + expect(screen.getByTestId('all-cases-maximum-limit-warning')).toBeInTheDocument(); + expect(screen.getByTestId('do-not-show-warning')).toBeInTheDocument(); + + expect(localStorage.getItem(localStorageKey)).toBe(null); + }); + + it('should hide warning correctly when do not show button clicked', () => { + appMockRender.render( + + ); + + expect(screen.getByTestId('all-cases-maximum-limit-warning')).toBeInTheDocument(); + expect(screen.getByTestId('do-not-show-warning')).toBeInTheDocument(); + + userEvent.click(screen.getByTestId('do-not-show-warning')); + + act(() => { + jest.advanceTimersByTime(1000); + }); + + expect(screen.queryByTestId('all-cases-maximum-limit-warning')).not.toBeInTheDocument(); + expect(localStorage.getItem(localStorageKey)).toBe('true'); + }); + }); }); }); diff --git a/x-pack/plugins/cases/public/components/all_cases/utility_bar.tsx b/x-pack/plugins/cases/public/components/all_cases/utility_bar.tsx index 4afc8e7e681a0..2c2aebdb30bb2 100644 --- a/x-pack/plugins/cases/public/components/all_cases/utility_bar.tsx +++ b/x-pack/plugins/cases/public/components/all_cases/utility_bar.tsx @@ -6,7 +6,10 @@ */ import type { FunctionComponent } from 'react'; +import { css } from '@emotion/react'; +import useLocalStorage from 'react-use/lib/useLocalStorage'; import React, { useCallback, useState } from 'react'; +import type { Pagination } from '@elastic/eui'; import { EuiButtonEmpty, EuiContextMenu, @@ -15,9 +18,12 @@ import { EuiPopover, EuiText, useEuiTheme, + EuiCallOut, + EuiSpacer, } from '@elastic/eui'; import * as i18n from './translations'; import type { CasesUI } from '../../../common/ui/types'; +import { MAX_DOCS_PER_PAGE } from '../../../common/constants'; import { useRefreshCases } from './use_on_refresh_cases'; import { useBulkActions } from './use_bulk_actions'; import { useCasesContext } from '../cases_context/use_cases_context'; @@ -27,16 +33,27 @@ interface Props { totalCases: number; selectedCases: CasesUI; deselectCases: () => void; + pagination: Pagination; } export const CasesTableUtilityBar: FunctionComponent = React.memo( - ({ isSelectorView, totalCases, selectedCases, deselectCases }) => { + ({ isSelectorView, totalCases, selectedCases, deselectCases, pagination }) => { const { euiTheme } = useEuiTheme(); + const refreshCases = useRefreshCases(); + const { permissions, appId } = useCasesContext(); + const [isPopoverOpen, setIsPopoverOpen] = useState(false); + const [isMessageDismissed, setIsMessageDismissed] = useState(false); + const localStorageKey = `cases.${appId}.utilityBar.hideMaxLimitWarning`; + const [localStorageWarning, setLocalStorageWarning] = useLocalStorage(localStorageKey); + const togglePopover = useCallback(() => setIsPopoverOpen(!isPopoverOpen), [isPopoverOpen]); const closePopover = useCallback(() => setIsPopoverOpen(false), []); - const refreshCases = useRefreshCases(); - const { permissions } = useCasesContext(); + + const toggleWarning = useCallback( + () => setIsMessageDismissed(!isMessageDismissed), + [isMessageDismissed] + ); const onRefresh = useCallback(() => { deselectCases(); @@ -49,6 +66,10 @@ export const CasesTableUtilityBar: FunctionComponent = React.memo( onActionSuccess: onRefresh, }); + const handleNotShowAgain = () => { + setLocalStorageWarning(true); + }; + /** * At least update or delete permissions needed to show bulk actions. * Granular permission check for each action is performed @@ -56,6 +77,52 @@ export const CasesTableUtilityBar: FunctionComponent = React.memo( */ const showBulkActions = (permissions.update || permissions.delete) && selectedCases.length > 0; + const visibleCases = + pagination?.pageSize && totalCases > pagination.pageSize ? pagination.pageSize : totalCases; + + const hasReachedMaxCases = + pagination.pageSize && + totalCases >= MAX_DOCS_PER_PAGE && + pagination.pageSize * (pagination.pageIndex + 1) >= MAX_DOCS_PER_PAGE; + + const isDoNotShowAgainSelected = localStorageWarning && localStorageWarning === true; + + const renderMaxLimitWarning = (): React.ReactNode => ( + + + + {i18n.MAX_CASES(MAX_DOCS_PER_PAGE)} + + + + + {i18n.DISMISS} + + + + + {i18n.NOT_SHOW_AGAIN} + + + + ); + return ( <> = React.memo( }} > - {i18n.SHOWING_CASES(totalCases)} + {i18n.SHOWING_CASES(totalCases, visibleCases)}
    @@ -136,6 +203,22 @@ export const CasesTableUtilityBar: FunctionComponent = React.memo(
    {modals} {flyouts} + {hasReachedMaxCases && !isMessageDismissed && !isDoNotShowAgainSelected && ( + <> + + + + + + + + + )} ); } diff --git a/x-pack/plugins/cases/public/components/create/form.test.tsx b/x-pack/plugins/cases/public/components/create/form.test.tsx index 50ea8e402ce83..20502756db502 100644 --- a/x-pack/plugins/cases/public/components/create/form.test.tsx +++ b/x-pack/plugins/cases/public/components/create/form.test.tsx @@ -69,6 +69,7 @@ describe('CreateCaseForm', () => { globalForm = form; return ( + // @ts-expect-error ts upgrade v4.7.4
    {children}
    diff --git a/x-pack/plugins/cases/public/components/markdown_editor/editable_markdown_renderer.test.tsx b/x-pack/plugins/cases/public/components/markdown_editor/editable_markdown_renderer.test.tsx index af114e8ec473e..636fa61b8d6f0 100644 --- a/x-pack/plugins/cases/public/components/markdown_editor/editable_markdown_renderer.test.tsx +++ b/x-pack/plugins/cases/public/components/markdown_editor/editable_markdown_renderer.test.tsx @@ -72,6 +72,7 @@ describe('EditableMarkdown', () => { }); return ( + // @ts-expect-error ts upgrade v4.7.4
    {children}
    diff --git a/x-pack/plugins/cloud_defend/kibana.jsonc b/x-pack/plugins/cloud_defend/kibana.jsonc index fc9cf6eb924cd..d7854913945ff 100644 --- a/x-pack/plugins/cloud_defend/kibana.jsonc +++ b/x-pack/plugins/cloud_defend/kibana.jsonc @@ -1,7 +1,7 @@ { "type": "plugin", "id": "@kbn/cloud-defend-plugin", - "owner": "@elastic/sec-cloudnative-integrations", + "owner": "@elastic/kibana-cloud-security-posture", "description": "Defend for containers (D4C)", "plugin": { "id": "cloudDefend", diff --git a/x-pack/plugins/cloud_defend/server/routes/status/status.test.ts b/x-pack/plugins/cloud_defend/server/routes/status/status.test.ts index 4c03d28baff09..57de16e86f7cf 100644 --- a/x-pack/plugins/cloud_defend/server/routes/status/status.test.ts +++ b/x-pack/plugins/cloud_defend/server/routes/status/status.test.ts @@ -53,7 +53,7 @@ const mockLatestCloudDefendPackageInfo: RegistryPackage = { download: '/epr/cloud_defend/cloud_defend-1.0.0.zip', path: '/package/cloud_defend/1.0.0', policy_templates: [], - owner: { github: 'elastic/sec-cloudnative-integrations' }, + owner: { github: 'elastic/kibana-cloud-security-posture' }, categories: ['containers', 'kubernetes'], }; diff --git a/x-pack/plugins/cloud_security_posture/common/schemas/csp_vulnerability_finding.ts b/x-pack/plugins/cloud_security_posture/common/schemas/csp_vulnerability_finding.ts index 122e95f3b7c33..f650b115316df 100644 --- a/x-pack/plugins/cloud_security_posture/common/schemas/csp_vulnerability_finding.ts +++ b/x-pack/plugins/cloud_security_posture/common/schemas/csp_vulnerability_finding.ts @@ -70,13 +70,18 @@ export interface CspVulnerabilityFinding { commit_sha: string; commit_time: string; }; + package: { + version: string; + name: string; + fixed_version?: string; + }; } export interface Vulnerability { published_date: string; - score: { - version: string; - base: number; + score?: { + version?: string; + base?: number; }; cwe: string[]; id: string; @@ -99,11 +104,6 @@ export interface Vulnerability { scanner: { vendor: string; }; - package: { - version: string; - name: string; - fixed_version?: string; - }; } export interface VectorScoreBase { diff --git a/x-pack/plugins/cloud_security_posture/common/utils/get_safe_vulnerabilities_query_filter.ts b/x-pack/plugins/cloud_security_posture/common/utils/get_safe_vulnerabilities_query_filter.ts index bcbe41cdc96bc..899bc5177458e 100644 --- a/x-pack/plugins/cloud_security_posture/common/utils/get_safe_vulnerabilities_query_filter.ts +++ b/x-pack/plugins/cloud_security_posture/common/utils/get_safe_vulnerabilities_query_filter.ts @@ -10,11 +10,6 @@ export const getSafeVulnerabilitiesQueryFilter = (query?: QueryDslQueryContainer ...query, bool: { ...query?.bool, - filter: [ - ...((query?.bool?.filter as []) || []), - { exists: { field: 'vulnerability.score.base' } }, - { exists: { field: 'vulnerability.score.version' } }, - { exists: { field: 'resource.id' } }, - ], + filter: [...((query?.bool?.filter as []) || []), { exists: { field: 'resource.id' } }], }, }); diff --git a/x-pack/plugins/cloud_security_posture/public/pages/configurations/findings_flyout/findings_detection_rule_counter.tsx b/x-pack/plugins/cloud_security_posture/public/pages/configurations/findings_flyout/findings_detection_rule_counter.tsx index 5586f2a20126c..f39379f8c4ddd 100644 --- a/x-pack/plugins/cloud_security_posture/public/pages/configurations/findings_flyout/findings_detection_rule_counter.tsx +++ b/x-pack/plugins/cloud_security_posture/public/pages/configurations/findings_flyout/findings_detection_rule_counter.tsx @@ -9,13 +9,19 @@ import type { HttpSetup } from '@kbn/core/public'; import React from 'react'; import { CspFinding } from '../../../../common/schemas/csp_finding'; import { DetectionRuleCounter } from '../../../components/detection_rule_counter'; -import { createDetectionRuleFromFinding } from '../utils/create_detection_rule_from_finding'; +import { + createDetectionRuleFromFinding, + getFindingsDetectionRuleSearchTags, +} from '../utils/create_detection_rule_from_finding'; export const FindingsDetectionRuleCounter = ({ finding }: { finding: CspFinding }) => { const createMisconfigurationRuleFn = async (http: HttpSetup) => await createDetectionRuleFromFinding(http, finding); return ( - + ); }; diff --git a/x-pack/plugins/cloud_security_posture/public/pages/configurations/utils/create_detection_rule_from_finding.ts b/x-pack/plugins/cloud_security_posture/public/pages/configurations/utils/create_detection_rule_from_finding.ts index 778c222d2f5e1..a1f8ac3fa5fcc 100644 --- a/x-pack/plugins/cloud_security_posture/public/pages/configurations/utils/create_detection_rule_from_finding.ts +++ b/x-pack/plugins/cloud_security_posture/public/pages/configurations/utils/create_detection_rule_from_finding.ts @@ -50,9 +50,23 @@ const CSP_RULE_TAG_DATA_SOURCE_PREFIX = 'Data Source: '; const STATIC_RULE_TAGS = [CSP_RULE_TAG, CSP_RULE_TAG_USE_CASE]; +/* + * Returns an array of CspFinding tags that can be used to search and filter a detection rule + */ +export const getFindingsDetectionRuleSearchTags = ({ rule }: CspFinding) => { + // ex: cis_gcp to ['CIS', 'GCP'] + const benchmarkIdTags = rule.benchmark.id.split('_').map((tag) => tag.toUpperCase()); + // ex: 'CIS GCP 1.1' + const benchmarkRuleNumberTag = `${rule.benchmark.id.replace('_', ' ').toUpperCase()} ${ + rule.benchmark.rule_number + }`; + + return benchmarkIdTags.concat([benchmarkRuleNumberTag]); +}; + const generateFindingsTags = (finding: CspFinding) => { return [STATIC_RULE_TAGS] - .concat(finding.rule.tags) + .concat(getFindingsDetectionRuleSearchTags(finding)) .concat( finding.rule.benchmark.posture_type ? [ diff --git a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/_mocks_/vulnerability.mock.ts b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/_mocks_/vulnerability.mock.ts index 7f8e22eafb1b6..20c7e4ebc48b9 100644 --- a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/_mocks_/vulnerability.mock.ts +++ b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/_mocks_/vulnerability.mock.ts @@ -27,6 +27,7 @@ export const mockVulnerabilityHit: CspVulnerabilityFinding = { machine: { type: 'c6g.medium' }, region: 'eu-west-1', }, + package: { fixed_version: '0.4.0', version: 'v0.2.0', name: 'golang.org/x/net' }, vulnerability: { published_date: '2022-08-10T00:00:00.000Z', data_source: { @@ -34,7 +35,6 @@ export const mockVulnerabilityHit: CspVulnerabilityFinding = { Name: 'The Go Vulnerability Database', URL: 'https://github.com/golang/vulndb', }, - package: { fixed_version: '0.4.0', version: 'v0.2.0', name: 'golang.org/x/net' }, enumeration: 'CVE', description: 'An attacker can cause excessive memory growth in a Go server accepting HTTP/2 requests. HTTP/2 server connections contain a cache of HTTP header keys sent by the client. While the total number of entries in this cache is capped, an attacker sending very large keys can cause the server to allocate approximately 64 MiB per open connection.', diff --git a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/utils/get_vulnerabilities_grid_cell_actions.test.tsx b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/utils/get_vulnerabilities_grid_cell_actions.test.tsx new file mode 100644 index 0000000000000..1f84f294d8be1 --- /dev/null +++ b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/utils/get_vulnerabilities_grid_cell_actions.test.tsx @@ -0,0 +1,189 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { getRowValueByColumnId } from './get_vulnerabilities_grid_cell_actions'; +import { vulnerabilitiesColumns } from '../vulnerabilities_table_columns'; +import { vulnerabilitiesByResourceColumns } from '../vulnerabilities_by_resource/vulnerabilities_by_resource_table_columns'; +import { CspVulnerabilityFinding } from '../../../../common/schemas'; + +describe('getRowValueByColumnId', () => { + it('should return vulnerability id', () => { + const vulnerabilityRow = { + vulnerability: { + id: 'CVE-2017-1000117', + }, + }; + const columns = vulnerabilitiesColumns; + const columnId = columns.vulnerability; + + expect( + getRowValueByColumnId(vulnerabilityRow as Partial, columns, columnId) + ).toEqual('CVE-2017-1000117'); + }); + + it('should return base as a vulnerability score', () => { + const vulnerabilityRow = { + vulnerability: { + score: { + base: 5, + version: 'v1', + }, + }, + }; + const columns = vulnerabilitiesColumns; + const columnId = columns.cvss; + + expect( + getRowValueByColumnId(vulnerabilityRow as Partial, columns, columnId) + ).toEqual(5); + }); + + it('should return undefined when no base score is available', () => { + const vulnerabilityRow = { + vulnerability: {}, + }; + const columns = vulnerabilitiesColumns; + const columnId = columns.cvss; + + expect( + getRowValueByColumnId(vulnerabilityRow as Partial, columns, columnId) + ).toEqual(undefined); + + const vulnerabilityRow2 = { + vulnerability: { + score: { + version: 'v1', + }, + }, + }; + + expect( + getRowValueByColumnId( + vulnerabilityRow2 as Partial, + columns, + columnId + ) + ).toEqual(undefined); + }); + + it('should return resource id', () => { + const vulnerabilityRow = { + resource: { + id: 'i-1234567890abcdef0', + }, + }; + const columns = vulnerabilitiesByResourceColumns; + const columnId = columns.resourceId; + + expect( + getRowValueByColumnId(vulnerabilityRow as Partial, columns, columnId) + ).toEqual('i-1234567890abcdef0'); + }); + + it('should return resource name', () => { + const vulnerabilityRow = { + resource: { + name: 'test', + }, + }; + const columns1 = vulnerabilitiesByResourceColumns; + const columns2 = vulnerabilitiesColumns; + const columnId1 = columns1.resourceName; + const columnId2 = columns2.resourceName; + + expect( + getRowValueByColumnId( + vulnerabilityRow as Partial, + columns1, + columnId1 + ) + ).toEqual('test'); + expect( + getRowValueByColumnId( + vulnerabilityRow as Partial, + columns2, + columnId2 + ) + ).toEqual('test'); + }); + + it('should return vulnerability severity', () => { + const vulnerabilityRow = { + vulnerability: { + severity: 'high', + }, + }; + const columns = vulnerabilitiesColumns; + const columnId = columns.severity; + + expect( + getRowValueByColumnId(vulnerabilityRow as Partial, columns, columnId) + ).toEqual('high'); + }); + + it('should return package fields', () => { + const vulnerabilityRow = { + package: { + name: 'test', + version: '1.0.0', + fixed_version: '1.0.1', + }, + }; + const columns1 = vulnerabilitiesColumns; + const columnId1 = columns1.package; + const columnId2 = columns1.version; + const columnId3 = columns1.fixedVersion; + + expect( + getRowValueByColumnId( + vulnerabilityRow as Partial, + columns1, + columnId1 + ) + ).toEqual('test'); + expect( + getRowValueByColumnId( + vulnerabilityRow as Partial, + columns1, + columnId2 + ) + ).toEqual('1.0.0'); + expect( + getRowValueByColumnId( + vulnerabilityRow as Partial, + columns1, + columnId3 + ) + ).toEqual('1.0.1'); + }); + + it('should return undefined is package is missing', () => { + const vulnerabilityRow = { + vulnerability: {}, + }; + const columns = vulnerabilitiesColumns; + const columnId = columns.package; + + expect( + getRowValueByColumnId(vulnerabilityRow as Partial, columns, columnId) + ).toEqual(undefined); + }); + + it('should return cloud region', () => { + const vulnerabilityRow = { + cloud: { + region: 'us-east-1', + }, + }; + const columns = vulnerabilitiesByResourceColumns; + const columnId = columns.region; + + expect( + getRowValueByColumnId(vulnerabilityRow as Partial, columns, columnId) + ).toEqual('us-east-1'); + }); +}); diff --git a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/utils/get_vulnerabilities_grid_cell_actions.tsx b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/utils/get_vulnerabilities_grid_cell_actions.tsx index b92adf84d70ab..dbde094d6f43b 100644 --- a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/utils/get_vulnerabilities_grid_cell_actions.tsx +++ b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/utils/get_vulnerabilities_grid_cell_actions.tsx @@ -11,6 +11,40 @@ import { CspVulnerabilityFinding } from '../../../../common/schemas'; import { getFilters } from './get_filters'; import { FILTER_IN, FILTER_OUT } from '../translations'; +export const getRowValueByColumnId = ( + vulnerabilityRow: Partial, + columns: Record, + columnId: string +) => { + if (columnId === columns.vulnerability) { + return vulnerabilityRow.vulnerability?.id; + } + if (columnId === columns.cvss) { + return vulnerabilityRow.vulnerability?.score?.base; + } + if (columnId === columns.resourceId) { + return vulnerabilityRow.resource?.id; + } + if (columnId === columns.resourceName) { + return vulnerabilityRow.resource?.name; + } + if (columnId === columns.severity) { + return vulnerabilityRow.vulnerability?.severity; + } + if (columnId === columns.package) { + return vulnerabilityRow.package?.name; + } + if (columnId === columns.version) { + return vulnerabilityRow.package?.version; + } + if (columnId === columns.fixedVersion) { + return vulnerabilityRow.package?.fixed_version; + } + if (columnId === columns.region) { + return vulnerabilityRow.cloud?.region; + } +}; + export const getVulnerabilitiesGridCellActions = < T extends Array> >({ @@ -34,33 +68,7 @@ export const getVulnerabilitiesGridCellActions = < const vulnerabilityRow = data[rowIndex]; if (!vulnerabilityRow) return null; - if (columnId === columns.vulnerability) { - return vulnerabilityRow.vulnerability?.id; - } - if (columnId === columns.cvss) { - return vulnerabilityRow.vulnerability?.score.base; - } - if (columnId === columns.resourceId) { - return vulnerabilityRow.resource?.id; - } - if (columnId === columns.resourceName) { - return vulnerabilityRow.resource?.name; - } - if (columnId === columns.severity) { - return vulnerabilityRow.vulnerability?.severity; - } - if (columnId === columns.package) { - return vulnerabilityRow.vulnerability?.package?.name; - } - if (columnId === columns.version) { - return vulnerabilityRow.vulnerability?.package?.version; - } - if (columnId === columns.fixedVersion) { - return vulnerabilityRow.vulnerability?.package?.fixed_version; - } - if (columnId === columns.region) { - return vulnerabilityRow.cloud?.region; - } + return getRowValueByColumnId(vulnerabilityRow, columns, columnId); }; const cellActions: EuiDataGridColumnCellAction[] = [ diff --git a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities.tsx b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities.tsx index efb2b97cc6891..9e241364f6c01 100644 --- a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities.tsx +++ b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities.tsx @@ -165,10 +165,8 @@ const VulnerabilitiesDataGrid = ({ (vulnerabilityRecord: VulnerabilitiesQueryData['page'][number]) => vulnerabilityRecord.vulnerability?.id === vulnerabilityRow.vulnerability?.id && vulnerabilityRecord.resource?.id === vulnerabilityRow.resource?.id && - vulnerabilityRecord.vulnerability.package.name === - vulnerabilityRow.vulnerability.package.name && - vulnerabilityRecord.vulnerability.package.version === - vulnerabilityRow.vulnerability.package.version + vulnerabilityRecord.package.name === vulnerabilityRow.package.name && + vulnerabilityRecord.package.version === vulnerabilityRow.package.version ); setUrlQuery({ vulnerabilityIndex, @@ -268,13 +266,13 @@ const VulnerabilitiesDataGrid = ({ } if (columnId === vulnerabilitiesColumns.package) { - return <>{vulnerabilityRow.vulnerability?.package?.name}; + return <>{vulnerabilityRow?.package?.name}; } if (columnId === vulnerabilitiesColumns.version) { - return <>{vulnerabilityRow.vulnerability?.package?.version}; + return <>{vulnerabilityRow?.package?.version}; } if (columnId === vulnerabilitiesColumns.fixedVersion) { - return <>{vulnerabilityRow.vulnerability?.package?.fixed_version}; + return <>{vulnerabilityRow?.package?.fixed_version}; } return null; diff --git a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_by_resource/resource_vulnerabilities/resource_vulnerabilities.tsx b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_by_resource/resource_vulnerabilities/resource_vulnerabilities.tsx index ee67c8e073b3e..2f1389015e907 100644 --- a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_by_resource/resource_vulnerabilities/resource_vulnerabilities.tsx +++ b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_by_resource/resource_vulnerabilities/resource_vulnerabilities.tsx @@ -124,10 +124,8 @@ const ResourceVulnerabilitiesDataGrid = ({ (vulnerabilityRecord: VulnerabilitiesQueryData['page'][number]) => vulnerabilityRecord.vulnerability?.id === vulnerabilityRow.vulnerability?.id && vulnerabilityRecord.resource?.id === vulnerabilityRow.resource?.id && - vulnerabilityRecord.vulnerability.package.name === - vulnerabilityRow.vulnerability.package.name && - vulnerabilityRecord.vulnerability.package.version === - vulnerabilityRow.vulnerability.package.version + vulnerabilityRecord.package.name === vulnerabilityRow.package.name && + vulnerabilityRecord.package.version === vulnerabilityRow.package.version ); setUrlQuery({ vulnerabilityIndex, @@ -232,13 +230,13 @@ const ResourceVulnerabilitiesDataGrid = ({ } if (columnId === vulnerabilitiesColumns.package) { - return <>{vulnerabilityRow.vulnerability?.package?.name}; + return <>{vulnerabilityRow?.package?.name}; } if (columnId === vulnerabilitiesColumns.version) { - return <>{vulnerabilityRow.vulnerability?.package?.version}; + return <>{vulnerabilityRow?.package?.version}; } if (columnId === vulnerabilitiesColumns.fixedVersion) { - return <>{vulnerabilityRow.vulnerability?.package?.fixed_version}; + return <>{vulnerabilityRow?.package?.fixed_version}; } return null; diff --git a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_finding_flyout/vulnerability_finding_flyout.test.tsx b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_finding_flyout/vulnerability_finding_flyout.test.tsx index 516a25586b0ac..47acba70f97fa 100644 --- a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_finding_flyout/vulnerability_finding_flyout.test.tsx +++ b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_finding_flyout/vulnerability_finding_flyout.test.tsx @@ -39,7 +39,7 @@ describe('', () => { getByText(mockVulnerabilityHit.vulnerability.description); const descriptionList = getByTestId(FINDINGS_VULNERABILITY_FLYOUT_DESCRIPTION_LIST); expect(descriptionList.textContent).toEqual( - `Resource ID:${mockVulnerabilityHit.resource?.id}Resource Name:${mockVulnerabilityHit.resource?.name}Package:${mockVulnerabilityHit.vulnerability.package.name}Version:${mockVulnerabilityHit.vulnerability.package.version}` + `Resource ID:${mockVulnerabilityHit.resource?.id}Resource Name:${mockVulnerabilityHit.resource?.name}Package:${mockVulnerabilityHit.package.name}Version:${mockVulnerabilityHit.package.version}` ); getByText(mockVulnerabilityHit.vulnerability.severity); }); @@ -59,7 +59,7 @@ describe('', () => { it('show display Vulnerability details in a Overview Tab', () => { const { getByText, getAllByText } = render( - + ); getByText(mockVulnerabilityHit.vulnerability.data_source.ID); @@ -72,7 +72,7 @@ describe('', () => { getAllByText(mockVulnerabilityHit.vulnerability?.cvss?.ghsa?.V3Vector?.toString() as string); getAllByText(mockVulnerabilityHit.vulnerability?.cvss?.ghsa?.V3Score?.toString() as string); getByText( - `${mockVulnerabilityHit.vulnerability.package.name} ${mockVulnerabilityHit.vulnerability.package.fixed_version}` + `${mockVulnerabilityHit.package.name} ${mockVulnerabilityHit.package.fixed_version}` ); }); @@ -80,9 +80,9 @@ describe('', () => { const { getByText } = render( diff --git a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_finding_flyout/vulnerability_finding_flyout.tsx b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_finding_flyout/vulnerability_finding_flyout.tsx index ac2212c208dad..5b26029968e5a 100644 --- a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_finding_flyout/vulnerability_finding_flyout.tsx +++ b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_finding_flyout/vulnerability_finding_flyout.tsx @@ -69,14 +69,14 @@ const getFlyoutDescriptionList = ( 'xpack.csp.vulnerabilities.vulnerabilitiesFindingFlyout.flyoutDescriptionList.packageTitle', { defaultMessage: 'Package' } ), - description: vulnerabilityRecord.vulnerability.package.name, + description: vulnerabilityRecord.package.name, }, { title: i18n.translate( 'xpack.csp.vulnerabilities.vulnerabilitiesFindingFlyout.flyoutDescriptionList.versionTitle', { defaultMessage: 'Version' } ), - description: vulnerabilityRecord.vulnerability.package.version, + description: vulnerabilityRecord.package.version, }, ].filter(truthy); @@ -108,7 +108,7 @@ export const VulnerabilityFindingFlyout = ({ defaultMessage="Overview" /> ), - content: , + content: , }, { id: tableTabId, @@ -131,7 +131,7 @@ export const VulnerabilityFindingFlyout = ({ content: , }, ], - [vulnerability, vulnerabilityRecord] + [vulnerabilityRecord] ); const onSelectedTabChanged = (id: string) => setSelectedTabId(id); diff --git a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_finding_flyout/vulnerability_overview_tab.tsx b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_finding_flyout/vulnerability_overview_tab.tsx index b25b2ae982d0a..7cf91848649b0 100644 --- a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_finding_flyout/vulnerability_overview_tab.tsx +++ b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_finding_flyout/vulnerability_overview_tab.tsx @@ -19,7 +19,7 @@ import moment from 'moment'; import React from 'react'; import { euiThemeVars } from '@kbn/ui-theme'; import { i18n } from '@kbn/i18n'; -import { VectorScoreBase, Vulnerability } from '../../../../common/schemas'; +import { VectorScoreBase, CspVulnerabilityFinding } from '../../../../common/schemas'; import { CspFlyoutMarkdown } from '../../configurations/findings_flyout/findings_flyout'; import { NvdLogo } from '../../../assets/icons/nvd_logo_svg'; import { CVSScoreBadge } from '../../../components/vulnerability_badges'; @@ -41,7 +41,7 @@ const vendorIcons: Record = { }; interface VulnerabilityTabProps { - vulnerability: Vulnerability; + vulnerabilityRecord: CspVulnerabilityFinding; } const CVSScore = ({ vectorBaseScore, vendor }: CVSScoreProps) => { @@ -135,7 +135,8 @@ const VectorScore = ({ ); }; -const VulnerabilityOverviewTiles = ({ vulnerability }: VulnerabilityTabProps) => { +const VulnerabilityOverviewTiles = ({ vulnerabilityRecord }: VulnerabilityTabProps) => { + const { vulnerability } = vulnerabilityRecord; const tileStyle = css` padding: ${euiThemeVars.euiFontSizeM}; background: ${euiThemeVars.euiColorLightestShade}; @@ -198,7 +199,8 @@ const VulnerabilityOverviewTiles = ({ vulnerability }: VulnerabilityTabProps) => ); }; -export const VulnerabilityOverviewTab = ({ vulnerability }: VulnerabilityTabProps) => { +export const VulnerabilityOverviewTab = ({ vulnerabilityRecord }: VulnerabilityTabProps) => { + const { vulnerability } = vulnerabilityRecord; const emptyFixesMessageState = i18n.translate( 'xpack.csp.vulnerabilities.vulnerabilityOverviewTab.emptyFixesMessage', { @@ -206,8 +208,8 @@ export const VulnerabilityOverviewTab = ({ vulnerability }: VulnerabilityTabProp } ); - const fixesDisplayText = vulnerability?.package?.fixed_version - ? `${vulnerability?.package?.name} ${vulnerability?.package?.fixed_version}` + const fixesDisplayText = vulnerabilityRecord?.package?.fixed_version + ? `${vulnerabilityRecord?.package?.name} ${vulnerabilityRecord?.package?.fixed_version}` : emptyFixesMessageState; const cvssScores: JSX.Element[] = vulnerability?.cvss @@ -236,7 +238,7 @@ export const VulnerabilityOverviewTab = ({ vulnerability }: VulnerabilityTabProp return ( - + diff --git a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_table_columns.ts b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_table_columns.ts index d95fca6f51849..a3d7e2a89db15 100644 --- a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_table_columns.ts +++ b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_table_columns.ts @@ -16,9 +16,9 @@ export const vulnerabilitiesColumns = { resourceName: 'resource.name', resourceId: 'resource.id', severity: 'vulnerability.severity', - package: 'vulnerability.package.name', - version: 'vulnerability.package.version', - fixedVersion: 'vulnerability.package.fixed_version', + package: 'package.name', + version: 'package.version', + fixedVersion: 'package.fixed_version', }; const defaultColumnProps = () => ({ diff --git a/x-pack/plugins/cloud_security_posture/public/pages/vulnerability_dashboard/vulnerability_table_panel_section.tsx b/x-pack/plugins/cloud_security_posture/public/pages/vulnerability_dashboard/vulnerability_table_panel_section.tsx index 4a8c3670d4483..14c3451fd2731 100644 --- a/x-pack/plugins/cloud_security_posture/public/pages/vulnerability_dashboard/vulnerability_table_panel_section.tsx +++ b/x-pack/plugins/cloud_security_posture/public/pages/vulnerability_dashboard/vulnerability_table_panel_section.tsx @@ -159,11 +159,19 @@ export const VulnerabilityTablePanelSection = () => { defaultMessage: 'CVSS', } ), - render: (cvss: { score: number; version: string }) => ( - onCellClick({ 'vulnerability.score.base': cvss.score })}> - - - ), + render: (cvss: PatchableVulnerabilityStat['cvss']) => { + if (!cvss.score || !cvss.version) { + return null; + } + + const esQuery = { 'vulnerability.score.base': cvss.score }; + + return ( + onCellClick(esQuery)}> + + + ); + }, }, { field: 'packageFixVersion', @@ -176,9 +184,7 @@ export const VulnerabilityTablePanelSection = () => { ), render: (packageFixVersion: string) => ( - onCellClick({ 'vulnerability.package.fixed_version': packageFixVersion }) - } + onClick={() => onCellClick({ 'package.fixed_version': packageFixVersion })} className="eui-textTruncate" color="text" > @@ -229,11 +235,19 @@ export const VulnerabilityTablePanelSection = () => { defaultMessage: 'CVSS', } ), - render: (cvss: { score: number; version: string }) => ( - onCellClick({ 'vulnerability.score.base': cvss.score })}> - - - ), + render: (cvss: VulnerabilityStat['cvss']) => { + if (!cvss.score || !cvss.version) { + return null; + } + + const esQuery = { 'vulnerability.score.base': cvss.score }; + + return ( + onCellClick(esQuery)}> + + + ); + }, }, { field: 'severity', @@ -260,7 +274,7 @@ export const VulnerabilityTablePanelSection = () => { ), render: (packageName: string) => ( onCellClick({ 'vulnerability.package.name': packageName })} + onClick={() => onCellClick({ 'package.name': packageName })} className="eui-textTruncate" color="text" > @@ -279,7 +293,7 @@ export const VulnerabilityTablePanelSection = () => { ), render: (packageVersion: string) => ( onCellClick({ 'vulnerability.package.version': packageVersion })} + onClick={() => onCellClick({ 'package.version': packageVersion })} className="eui-textTruncate" color="text" > @@ -298,9 +312,7 @@ export const VulnerabilityTablePanelSection = () => { ), render: (packageFixVersion: string) => ( - onCellClick({ 'vulnerability.package.fixed_version': packageFixVersion }) - } + onClick={() => onCellClick({ 'package.fixed_version': packageFixVersion })} className="eui-textTruncate" color="text" > diff --git a/x-pack/plugins/cloud_security_posture/server/create_transforms/latest_vulnerabilities_transforms.ts b/x-pack/plugins/cloud_security_posture/server/create_transforms/latest_vulnerabilities_transforms.ts index 4d6515e4fb8fc..fcd3faee437a2 100644 --- a/x-pack/plugins/cloud_security_posture/server/create_transforms/latest_vulnerabilities_transforms.ts +++ b/x-pack/plugins/cloud_security_posture/server/create_transforms/latest_vulnerabilities_transforms.ts @@ -38,12 +38,7 @@ export const latestVulnerabilitiesTransform: TransformPutTransformRequest = { }, latest: { sort: '@timestamp', - unique_key: [ - 'vulnerability.id', - 'resource.id', - 'vulnerability.package.name', - 'vulnerability.package.version', - ], + unique_key: ['vulnerability.id', 'resource.id', 'package.name', 'package.version'], }, _meta: { package: { diff --git a/x-pack/plugins/cloud_security_posture/server/lib/telemetry/collectors/alert_stats_collector.ts b/x-pack/plugins/cloud_security_posture/server/lib/telemetry/collectors/alert_stats_collector.ts index 7e63af4fb1320..1edd6ca731c3e 100644 --- a/x-pack/plugins/cloud_security_posture/server/lib/telemetry/collectors/alert_stats_collector.ts +++ b/x-pack/plugins/cloud_security_posture/server/lib/telemetry/collectors/alert_stats_collector.ts @@ -9,53 +9,28 @@ import type { ElasticsearchClient } from '@kbn/core-elasticsearch-server'; import type { CloudSecurityAlertsStats } from './types'; import { DETECTION_ENGINE_ALERTS_INDEX_DEFAULT } from '../../../../common/constants'; -interface AlertsStats { - aggregations: { - cspm: { - rules_count: { - value: number; - }; - alerts_open: { - doc_count: number; - }; - alerts_acknowledged: { - doc_count: number; - }; - alerts_closed: { - doc_count: number; - }; - }; - kspm: { - rules_count: { - value: number; - }; - alerts_open: { - doc_count: number; - }; - alerts_acknowledged: { - doc_count: number; - }; - alerts_closed: { - doc_count: number; - }; - }; - vuln_mgmt: { - rules_count: { - value: number; - }; - alerts_open: { - doc_count: number; - }; - alerts_acknowledged: { - doc_count: number; - }; - alerts_closed: { - doc_count: number; - }; - }; +interface AlertStat { + doc_count: number; + rules_count: { + value: number; + }; + alerts_open: { + doc_count: number; + }; + alerts_acknowledged: { + doc_count: number; + }; + alerts_closed: { + doc_count: number; }; } +interface AlertsStats { + cspm: AlertStat; + kspm: AlertStat; + vuln_mgmt: AlertStat; +} + const getAlertsStatsQuery = (index: string) => ({ size: 0, query: { @@ -187,20 +162,25 @@ export const getAlertsStats = async ( if (isIndexExists) { const alertsStats = await esClient.search(getAlertsStatsQuery(index)); - const postureTypes = ['cspm', 'kspm', 'vuln_mgmt'] as const; - return postureTypes.map((postureType) => ({ - posture_type: postureType, - rules_count: alertsStats.aggregations?.aggregations[postureType].rules_count.value, - alerts_count: alertsStats.aggregations?.aggregations[postureType].alerts_open.doc_count, - alerts_open_count: - alertsStats.aggregations?.aggregations[postureType].alerts_open.doc_count, - alerts_acknowledged_count: - alertsStats.aggregations?.aggregations[postureType].alerts_acknowledged.doc_count, - alerts_closed_count: - alertsStats.aggregations?.aggregations[postureType].alerts_closed.doc_count, - })) as CloudSecurityAlertsStats[]; + return postureTypes + .filter( + (postureType) => + alertsStats?.aggregations?.[postureType]?.doc_count && + alertsStats.aggregations[postureType].doc_count > 0 + ) + .map((postureType): CloudSecurityAlertsStats => { + const postureTypeData = alertsStats!.aggregations![postureType]; + return { + posture_type: postureType, + rules_count: postureTypeData.rules_count?.value, + alerts_count: postureTypeData.doc_count, + alerts_open_count: postureTypeData.alerts_open?.doc_count, + alerts_acknowledged_count: postureTypeData.alerts_acknowledged?.doc_count, + alerts_closed_count: postureTypeData.alerts_closed?.doc_count, + }; + }); } return []; } catch (e) { diff --git a/x-pack/plugins/cloud_security_posture/server/routes/vulnerabilities_dashboard/get_top_vulnerabilities.ts b/x-pack/plugins/cloud_security_posture/server/routes/vulnerabilities_dashboard/get_top_vulnerabilities.ts index 9c0e515ffeb0e..962b4135ad96f 100644 --- a/x-pack/plugins/cloud_security_posture/server/routes/vulnerabilities_dashboard/get_top_vulnerabilities.ts +++ b/x-pack/plugins/cloud_security_posture/server/routes/vulnerabilities_dashboard/get_top_vulnerabilities.ts @@ -104,19 +104,19 @@ const getVulnerabilitiesQuery = (query: QueryDslQueryContainer): SearchRequest = }, packageFixVersion: { terms: { - field: 'vulnerability.package.fixed_version', + field: 'package.fixed_version', size: 1, }, }, packageName: { terms: { - field: 'vulnerability.package.name', + field: 'package.name', size: 1, }, }, packageVersion: { terms: { - field: 'vulnerability.package.version', + field: 'package.version', size: 1, }, }, diff --git a/x-pack/plugins/data_visualizer/public/application/data_comparison/data_comparison_app_state.tsx b/x-pack/plugins/data_visualizer/public/application/data_comparison/data_comparison_app_state.tsx index faf36e18725cd..8844a2b9a20a9 100644 --- a/x-pack/plugins/data_visualizer/public/application/data_comparison/data_comparison_app_state.tsx +++ b/x-pack/plugins/data_visualizer/public/application/data_comparison/data_comparison_app_state.tsx @@ -15,12 +15,7 @@ import { UrlStateProvider } from '@kbn/ml-url-state'; import { Storage } from '@kbn/kibana-utils-plugin/public'; import { DatePickerContextProvider } from '@kbn/ml-date-picker'; import { UI_SETTINGS } from '@kbn/data-plugin/common'; -import { - KibanaContextProvider, - KibanaThemeProvider, - toMountPoint, - wrapWithTheme, -} from '@kbn/kibana-react-plugin/public'; +import { KibanaContextProvider, KibanaThemeProvider } from '@kbn/kibana-react-plugin/public'; import { DV_STORAGE_KEYS } from '../index_data_visualizer/types/storage'; import { getCoreStart, getPluginsStart } from '../../kibana_services'; @@ -77,9 +72,7 @@ export const DataComparisonDetectionAppState: FC ({ + index: indexPattern, + aggs: { + index: { + terms: { + field: '_index', + }, + }, + }, + size: 0, + query: { + bool: { + must: [], + filter: [ + { + range: { + '@timestamp': { + format: 'strict_date_optional_time', + gte: startDate, + lte: endDate, + }, + }, + }, + ], + should: [], + must_not: [], + }, + }, +}); diff --git a/x-pack/plugins/ecs_data_quality_dashboard/server/lib/fetch_available_indices.ts b/x-pack/plugins/ecs_data_quality_dashboard/server/lib/fetch_available_indices.ts new file mode 100644 index 0000000000000..584a261689113 --- /dev/null +++ b/x-pack/plugins/ecs_data_quality_dashboard/server/lib/fetch_available_indices.ts @@ -0,0 +1,21 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +import type { ElasticsearchClient } from '@kbn/core/server'; +import { getRequestBody } from '../helpers/get_available_indices'; + +type AggregateName = 'index'; +interface Result { + index: { + buckets: Array<{ key: string }>; + doc_count: number; + }; +} + +export const fetchAvailableIndices = ( + esClient: ElasticsearchClient, + params: { indexPattern: string; startDate: string; endDate: string } +) => esClient.search(getRequestBody(params)); diff --git a/x-pack/plugins/ecs_data_quality_dashboard/server/lib/fetch_ilm_explain.ts b/x-pack/plugins/ecs_data_quality_dashboard/server/lib/fetch_ilm_explain.ts index cb7d5535e217d..6ee120aa04ae3 100644 --- a/x-pack/plugins/ecs_data_quality_dashboard/server/lib/fetch_ilm_explain.ts +++ b/x-pack/plugins/ecs_data_quality_dashboard/server/lib/fetch_ilm_explain.ts @@ -8,7 +8,7 @@ import { IlmExplainLifecycleResponse } from '@elastic/elasticsearch/lib/api/types'; import type { IScopedClusterClient } from '@kbn/core/server'; -export const fetchILMExplain = async ( +export const fetchILMExplain = ( client: IScopedClusterClient, indexPattern: string ): Promise => diff --git a/x-pack/plugins/ecs_data_quality_dashboard/server/lib/fetch_mappings.ts b/x-pack/plugins/ecs_data_quality_dashboard/server/lib/fetch_mappings.ts index aa5ca64dd565e..e0364acbb559e 100644 --- a/x-pack/plugins/ecs_data_quality_dashboard/server/lib/fetch_mappings.ts +++ b/x-pack/plugins/ecs_data_quality_dashboard/server/lib/fetch_mappings.ts @@ -8,7 +8,7 @@ import { IndicesGetMappingIndexMappingRecord } from '@elastic/elasticsearch/lib/api/types'; import type { IScopedClusterClient } from '@kbn/core/server'; -export const fetchMappings = async ( +export const fetchMappings = ( client: IScopedClusterClient, indexPattern: string ): Promise> => diff --git a/x-pack/plugins/ecs_data_quality_dashboard/server/lib/fetch_stats.ts b/x-pack/plugins/ecs_data_quality_dashboard/server/lib/fetch_stats.ts index 2fe27f77b6154..b9a6abd7e54db 100644 --- a/x-pack/plugins/ecs_data_quality_dashboard/server/lib/fetch_stats.ts +++ b/x-pack/plugins/ecs_data_quality_dashboard/server/lib/fetch_stats.ts @@ -8,7 +8,7 @@ import { IndicesStatsResponse } from '@elastic/elasticsearch/lib/api/types'; import type { IScopedClusterClient } from '@kbn/core/server'; -export const fetchStats = async ( +export const fetchStats = ( client: IScopedClusterClient, indexPattern: string ): Promise => diff --git a/x-pack/plugins/ecs_data_quality_dashboard/server/lib/index.ts b/x-pack/plugins/ecs_data_quality_dashboard/server/lib/index.ts index 79b8d9b4f13c2..65700075ce926 100644 --- a/x-pack/plugins/ecs_data_quality_dashboard/server/lib/index.ts +++ b/x-pack/plugins/ecs_data_quality_dashboard/server/lib/index.ts @@ -9,3 +9,4 @@ export * from './fetch_mappings'; export * from './fetch_stats'; export * from './get_unallowed_field_values'; export * from './fetch_ilm_explain'; +export * from './fetch_available_indices'; diff --git a/x-pack/plugins/ecs_data_quality_dashboard/server/routes/get_index_stats.test.ts b/x-pack/plugins/ecs_data_quality_dashboard/server/routes/get_index_stats.test.ts index 8a988ef636e80..aa7fc306b47e8 100644 --- a/x-pack/plugins/ecs_data_quality_dashboard/server/routes/get_index_stats.test.ts +++ b/x-pack/plugins/ecs_data_quality_dashboard/server/routes/get_index_stats.test.ts @@ -6,7 +6,7 @@ */ import { GET_INDEX_STATS } from '../../common/constants'; -import { fetchStats } from '../lib'; +import { fetchAvailableIndices, fetchStats } from '../lib'; import { serverMock } from '../__mocks__/server'; import { requestMock } from '../__mocks__/request'; @@ -15,6 +15,7 @@ import { getIndexStatsRoute } from './get_index_stats'; jest.mock('../lib', () => ({ fetchStats: jest.fn(), + fetchAvailableIndices: jest.fn(), })); describe('getIndexStatsRoute route', () => { @@ -26,6 +27,11 @@ describe('getIndexStatsRoute route', () => { params: { pattern: 'auditbeat-*', }, + query: { + isILMAvailable: true, + startDate: `now-7d`, + endDate: `now`, + }, }); beforeEach(() => { @@ -56,6 +62,67 @@ describe('getIndexStatsRoute route', () => { expect(response.status).toEqual(500); expect(response.body).toEqual({ message: errorMessage, status_code: 500 }); }); + + test('requires date range when isILMAvailable is false', async () => { + const request = requestMock.create({ + method: 'get', + path: GET_INDEX_STATS, + params: { + pattern: `auditbeat-*`, + }, + query: { + isILMAvailable: false, + }, + }); + + const mockIndices = { 'auditbeat-7.15.1-2022.12.06-000001': {} }; + (fetchStats as jest.Mock).mockResolvedValue({ + indices: mockIndices, + }); + + const response = await server.inject(request, requestContextMock.convertContext(context)); + expect(response.status).toEqual(400); + expect(response.body.status_code).toEqual(400); + expect(response.body.message).toEqual(`startDate and endDate are required`); + }); + + test('returns available indices within the given date range when isILMAvailable is false', async () => { + const request = requestMock.create({ + method: 'get', + path: GET_INDEX_STATS, + params: { + pattern: `auditbeat-*`, + }, + query: { + isILMAvailable: false, + startDate: `now-7d`, + endDate: `now`, + }, + }); + + const mockIndices = { + 'auditbeat-7.15.1-2022.12.06-000001': {}, + 'auditbeat-7.15.1-2022.11.06-000001': {}, + }; + (fetchStats as jest.Mock).mockResolvedValue({ + indices: mockIndices, + }); + (fetchAvailableIndices as jest.Mock).mockResolvedValue({ + aggregations: { + index: { + buckets: [ + { + key: 'auditbeat-7.15.1-2022.12.06-000001', + }, + ], + }, + }, + }); + + const response = await server.inject(request, requestContextMock.convertContext(context)); + expect(response.status).toEqual(200); + expect(response.body).toEqual({ 'auditbeat-7.15.1-2022.12.06-000001': {} }); + }); }); describe('request validation', () => { diff --git a/x-pack/plugins/ecs_data_quality_dashboard/server/routes/get_index_stats.ts b/x-pack/plugins/ecs_data_quality_dashboard/server/routes/get_index_stats.ts index 221a07699f69c..839d21931a064 100644 --- a/x-pack/plugins/ecs_data_quality_dashboard/server/routes/get_index_stats.ts +++ b/x-pack/plugins/ecs_data_quality_dashboard/server/routes/get_index_stats.ts @@ -4,37 +4,83 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ - +import { i18n } from '@kbn/i18n'; import { IRouter } from '@kbn/core/server'; import { transformError } from '@kbn/securitysolution-es-utils'; -import { fetchStats } from '../lib'; +import { IndicesStatsIndicesStats } from '@elastic/elasticsearch/lib/api/types'; +import { fetchStats, fetchAvailableIndices } from '../lib'; import { buildResponse } from '../lib/build_response'; import { GET_INDEX_STATS } from '../../common/constants'; import { buildRouteValidation } from '../schemas/common'; -import { GetIndexStatsParams } from '../schemas/get_index_stats'; +import { GetIndexStatsParams, GetIndexStatsQuery } from '../schemas/get_index_stats'; export const getIndexStatsRoute = (router: IRouter) => { router.get( { path: GET_INDEX_STATS, - validate: { params: buildRouteValidation(GetIndexStatsParams) }, + validate: { + params: buildRouteValidation(GetIndexStatsParams), + query: buildRouteValidation(GetIndexStatsQuery), + }, }, async (context, request, response) => { const resp = buildResponse(response); try { const { client } = (await context.core).elasticsearch; + const esClient = client.asCurrentUser; + const decodedIndexName = decodeURIComponent(request.params.pattern); const stats = await fetchStats(client, decodedIndexName); + const { isILMAvailable, startDate, endDate } = request.query; - return response.ok({ - body: stats.indices, - }); + if (isILMAvailable === true) { + return response.ok({ + body: stats.indices, + }); + } + + /** + * If ILM is not available, we need to fetch the available indices with the given date range. + * `fetchAvailableIndices` returns indices that have data in the given date range. + */ + if (startDate && endDate) { + const decodedStartDate = decodeURIComponent(startDate); + const decodedEndDate = decodeURIComponent(endDate); + + const indices = await fetchAvailableIndices(esClient, { + indexPattern: decodedIndexName, + startDate: decodedStartDate, + endDate: decodedEndDate, + }); + const availableIndices = indices?.aggregations?.index?.buckets?.reduce( + (acc: Record, { key }: { key: string }) => { + if (stats.indices?.[key]) { + acc[key] = stats.indices?.[key]; + } + return acc; + }, + {} + ); + + return response.ok({ + body: availableIndices, + }); + } else { + return resp.error({ + body: i18n.translate( + 'xpack.ecsDataQualityDashboard.getIndexStats.dateRangeRequiredErrorMessage', + { + defaultMessage: 'startDate and endDate are required', + } + ), + statusCode: 400, + }); + } } catch (err) { const error = transformError(err); - return resp.error({ body: error.message, statusCode: error.statusCode, diff --git a/x-pack/plugins/ecs_data_quality_dashboard/server/schemas/get_index_stats.ts b/x-pack/plugins/ecs_data_quality_dashboard/server/schemas/get_index_stats.ts index ee4a2694ec500..432f863fe9dfc 100644 --- a/x-pack/plugins/ecs_data_quality_dashboard/server/schemas/get_index_stats.ts +++ b/x-pack/plugins/ecs_data_quality_dashboard/server/schemas/get_index_stats.ts @@ -6,7 +6,14 @@ */ import * as t from 'io-ts'; +import { DefaultStringBooleanFalse } from '@kbn/securitysolution-io-ts-types'; export const GetIndexStatsParams = t.type({ pattern: t.string, }); + +export const GetIndexStatsQuery = t.type({ + isILMAvailable: DefaultStringBooleanFalse, + startDate: t.union([t.string, t.null, t.undefined]), + endDate: t.union([t.string, t.null, t.undefined]), +}); diff --git a/x-pack/plugins/ecs_data_quality_dashboard/tsconfig.json b/x-pack/plugins/ecs_data_quality_dashboard/tsconfig.json index 98177ac09c384..b5c1ad152b232 100644 --- a/x-pack/plugins/ecs_data_quality_dashboard/tsconfig.json +++ b/x-pack/plugins/ecs_data_quality_dashboard/tsconfig.json @@ -18,6 +18,8 @@ "@kbn/core-http-request-handler-context-server", "@kbn/securitysolution-es-utils", "@kbn/securitysolution-io-ts-utils", + "@kbn/securitysolution-io-ts-types", + "@kbn/i18n", ], "exclude": [ "target/**/*", diff --git a/x-pack/plugins/encrypted_saved_objects/server/plugin.ts b/x-pack/plugins/encrypted_saved_objects/server/plugin.ts index 92a663fab64d4..7b7fed43f5181 100644 --- a/x-pack/plugins/encrypted_saved_objects/server/plugin.ts +++ b/x-pack/plugins/encrypted_saved_objects/server/plugin.ts @@ -95,19 +95,23 @@ export class EncryptedSavedObjectsPlugin getStartServices: core.getStartServices, }); - defineRoutes({ - router: core.http.createRouter(), - logger: this.initializerContext.logger.get('routes'), - encryptionKeyRotationService: Object.freeze( - new EncryptionKeyRotationService({ - logger: this.logger.get('key-rotation-service'), - service, - getStartServices: core.getStartServices, - security: deps.security, - }) - ), - config, - }); + // In the serverless environment, the encryption keys for saved objects is managed internally and never + // exposed to users and administrators, eliminating the need for any public Encrypted Saved Objects HTTP APIs + if (this.initializerContext.env.packageInfo.buildFlavor !== 'serverless') { + defineRoutes({ + router: core.http.createRouter(), + logger: this.initializerContext.logger.get('routes'), + encryptionKeyRotationService: Object.freeze( + new EncryptionKeyRotationService({ + logger: this.logger.get('key-rotation-service'), + service, + getStartServices: core.getStartServices, + security: deps.security, + }) + ), + config, + }); + } return { canEncrypt, diff --git a/x-pack/plugins/enterprise_search/common/connectors/connectors.ts b/x-pack/plugins/enterprise_search/common/connectors/connectors.ts index 3595ca7644770..1fc6c6e7f5c77 100644 --- a/x-pack/plugins/enterprise_search/common/connectors/connectors.ts +++ b/x-pack/plugins/enterprise_search/common/connectors/connectors.ts @@ -30,7 +30,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [ }, { iconPath: 'confluence_cloud.svg', - isBeta: true, + isBeta: false, isNative: true, keywords: ['confluence', 'cloud', 'connector'], name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.confluence.name', { @@ -51,7 +51,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [ }, { iconPath: 'jira_cloud.svg', - isBeta: true, + isBeta: false, isNative: true, keywords: ['jira', 'cloud', 'connector'], name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.jira.name', { @@ -121,7 +121,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [ }, { iconPath: 'network_drive.svg', - isBeta: true, + isBeta: false, isNative: true, keywords: ['network', 'drive', 'file', 'directory', 'connector'], name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.networkDrive.name', { @@ -139,6 +139,17 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [ }), serviceType: 'postgresql', }, + { + iconPath: 'salesforce.svg', + isBeta: true, + isNative: false, + isTechPreview: false, + keywords: ['salesforce', 'cloud', 'connector'], + name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.salesforce.name', { + defaultMessage: 'Salesforce', + }), + serviceType: 'salesforce', + }, { iconPath: 'servicenow.svg', isBeta: true, diff --git a/x-pack/plugins/enterprise_search/common/constants.ts b/x-pack/plugins/enterprise_search/common/constants.ts index 14da6aeca4919..9a23e9794eb85 100644 --- a/x-pack/plugins/enterprise_search/common/constants.ts +++ b/x-pack/plugins/enterprise_search/common/constants.ts @@ -229,3 +229,4 @@ export const DEFAULT_PRODUCT_FEATURES: ProductFeatures = { }; export const CONNECTORS_ACCESS_CONTROL_INDEX_PREFIX = '.search-acl-filter-'; +export const PLUGIN_ID = 'enterpriseSearch'; diff --git a/x-pack/plugins/enterprise_search/common/types/connectors.ts b/x-pack/plugins/enterprise_search/common/types/connectors.ts index 1ea3096f1b2e7..6354c058b222f 100644 --- a/x-pack/plugins/enterprise_search/common/types/connectors.ts +++ b/x-pack/plugins/enterprise_search/common/types/connectors.ts @@ -215,7 +215,7 @@ export interface Connector { features: ConnectorFeatures; filtering: FilteringConfig[]; id: string; - index_name: string; + index_name: string | null; is_native: boolean; language: string | null; last_access_control_sync_error: string | null; diff --git a/x-pack/plugins/enterprise_search/common/types/index.ts b/x-pack/plugins/enterprise_search/common/types/index.ts index 8519db9a3ca5b..38ac392884648 100644 --- a/x-pack/plugins/enterprise_search/common/types/index.ts +++ b/x-pack/plugins/enterprise_search/common/types/index.ts @@ -64,6 +64,9 @@ export interface Meta { export interface ClientConfigType { canDeployEntSearch: boolean; host?: string; + ui: { + enabled: boolean; + }; } export type { ElasticsearchIndexWithPrivileges } from './indices'; diff --git a/x-pack/plugins/enterprise_search/common/utils/strip_search_prefix.ts b/x-pack/plugins/enterprise_search/common/utils/strip_search_prefix.ts new file mode 100644 index 0000000000000..424ec1012d5b5 --- /dev/null +++ b/x-pack/plugins/enterprise_search/common/utils/strip_search_prefix.ts @@ -0,0 +1,10 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export function stripSearchPrefix(input: string, replacement?: string): string { + return input?.startsWith('search-') ? `${replacement || ''}${input.substring(7)}` : input || ''; +} diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/connector/generate_connector_api_key_api_logic.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/connector/generate_connector_api_key_api_logic.ts index 59145a7721f1a..ace963d9208be 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/connector/generate_connector_api_key_api_logic.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/connector/generate_connector_api_key_api_logic.ts @@ -8,7 +8,7 @@ import { createApiLogic } from '../../../shared/api_logic/create_api_logic'; import { HttpLogic } from '../../../shared/http'; -interface ApiKey { +export interface ApiKey { api_key: string; encoded: string; id: string; diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/crawler/types.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/crawler/types.ts index 7c9b7cfdf0541..35a5ebb232056 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/crawler/types.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/crawler/types.ts @@ -173,6 +173,7 @@ export interface CrawlScheduleFromServer { // Client export interface CrawlerCustomSchedule { + scheduleKey: string; name: string; customEntryPointUrls: string[]; customSitemapUrls: string[]; @@ -183,6 +184,8 @@ export interface CrawlerCustomSchedule { selectedSitemapUrls: string[]; interval: string; // interval has crontab syntax enabled: boolean; + entryPointUrls: string[]; + sitemapUrls: string[]; } export enum CustomCrawlType { diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/crawler/utils.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/crawler/utils.ts index 4337301416191..7b3db24f29a87 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/crawler/utils.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/crawler/utils.ts @@ -248,34 +248,39 @@ export const domainConfigServerToClient = ( export const crawlerCustomSchedulingServerToClient = ( customSchedulingFromServer: CrawlerCustomSchedulesServer ): CrawlerCustomSchedule[] => - Object.entries(customSchedulingFromServer.custom_scheduling).map((scheduleMapping) => { - const { - name, - interval, - configuration_overrides: configurationOverrides, - enabled, - } = scheduleMapping[1]; - const { - max_crawl_depth: maxCrawlDepth = 2, - sitemap_discovery_disabled: notIncludeSitemapsInRobotsTxt = false, - domain_allowlist: selectedDomainUrls = [], - sitemap_urls: customSitemapUrls = [], - seed_urls: customEntryPointUrls = [], - } = configurationOverrides; - - return { - name, - interval, - enabled, - maxCrawlDepth, - includeSitemapsInRobotsTxt: !notIncludeSitemapsInRobotsTxt, - selectedDomainUrls, - selectedEntryPointUrls: [], - selectedSitemapUrls: [], - customEntryPointUrls, - customSitemapUrls, - }; - }); + Object.entries(customSchedulingFromServer.custom_scheduling).map( + ([scheduleKey, scheduleMapping]) => { + const { + name, + interval, + configuration_overrides: configurationOverrides, + enabled, + } = scheduleMapping; + const { + max_crawl_depth: maxCrawlDepth = 2, + sitemap_discovery_disabled: notIncludeSitemapsInRobotsTxt = false, + domain_allowlist: selectedDomainUrls = [], + sitemap_urls: customSitemapUrls = [], + seed_urls: customEntryPointUrls = [], + } = configurationOverrides; + + return { + scheduleKey, + name, + interval, + enabled, + maxCrawlDepth, + includeSitemapsInRobotsTxt: !notIncludeSitemapsInRobotsTxt, + selectedDomainUrls, + selectedEntryPointUrls: [], + selectedSitemapUrls: [], + customEntryPointUrls, + customSitemapUrls, + entryPointUrls: [], + sitemapUrls: [], + }; + } + ); export const crawlerCustomSchedulingClientToServer = ( crawlerCustomSchedules: CrawlerCustomSchedule[] @@ -304,8 +309,7 @@ export const crawlerCustomSchedulingClientToServer = ( const customSchedules: CrawlerCustomScheduleMappingClient = crawlerCustomSchedules.reduce( (map, schedule) => { - const scheduleNameFormatted = schedule.name.replace(/\s+/g, '_').toLowerCase(); - map.set(scheduleNameFormatted, mapToServerFormat(schedule)); + map.set(schedule.scheduleKey, mapToServerFormat(schedule)); return map; }, new Map() diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/getting_started.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/getting_started.tsx index 15d6108de4cd8..a5488a6bf176b 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/getting_started.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/getting_started.tsx @@ -31,10 +31,13 @@ import { InstallClientPanel, OverviewPanel, CodeBox, + getLanguageDefinitionCodeSnippet, + getConsoleRequest, } from '@kbn/search-api-panels'; import { LanguageDefinition } from '@kbn/search-api-panels'; +import { PLUGIN_ID } from '../../../../../../../common/constants'; import { KibanaDeps } from '../../../../../../../common/types'; import { icons } from '../../../../../../assets/client_libraries'; @@ -49,7 +52,6 @@ import { GenerateApiKeyModal } from '../generate_api_key_modal/modal'; import { javascriptDefinition } from './languages/javascript'; import { languageDefinitions } from './languages/languages'; -import { getCodeSnippet, showTryInConsole } from './languages/utils'; const DEFAULT_URL = 'https://localhost:9200'; @@ -67,6 +69,7 @@ export const APIGettingStarted = () => { apiKey, url: cloudContext.elasticsearchUrl || DEFAULT_URL, }; + const assetBasePath = http.basePath.prepend(`/plugins/${PLUGIN_ID}/assets/client_libraries/`); const [selectedLanguage, setSelectedLanguage] = useState(javascriptDefinition); @@ -97,20 +100,18 @@ export const APIGettingStarted = () => { language={language} setSelectedLanguage={setSelectedLanguage} isSelectedLanguage={selectedLanguage === language} - http={http} src={icons[language.id]} />
    ))} { rightPanelContent={ @@ -326,12 +330,15 @@ export const APIGettingStarted = () => { rightPanelContent={ @@ -355,12 +362,11 @@ export const APIGettingStarted = () => { rightPanelContent={ @@ -383,12 +389,15 @@ export const APIGettingStarted = () => { rightPanelContent={ diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/curl.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/curl.ts index 607b85c7c6e7c..4131c42b95fd9 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/curl.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/curl.ts @@ -25,6 +25,12 @@ export const curlDefinition: LanguageDefinition = { configureClient: ({ apiKey, url }) => `export ES_URL="${url}" export API_KEY="${apiKey}"`, docLink: docLinks.restApis, + github: { + label: i18n.translate('xpack.enterpriseSearch.languages.cURL.githubLink', { + defaultMessage: 'curl', + }), + link: 'https://github.com/curl/curl', + }, iconType: 'curl.svg', id: Languages.CURL, ingestData: `curl -X POST "\$\{ES_URL\}/_bulk?pretty" \\ diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/go.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/go.ts index d75841a9ba1db..0bb2b99a0682f 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/go.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/go.ts @@ -23,7 +23,7 @@ fmt.Println(searchResp, err)`, "log" "strings" ​ - "github.com/elastic/elasticsearch-serverless-go" + elasticsearch "github.com/elastic/go-elasticsearch/v8" ) func main() { @@ -37,6 +37,12 @@ func main() { } }`, docLink: docLinks.clientsGoIndex, + github: { + label: i18n.translate('xpack.enterpriseSearch.languages.go.githubLink', { + defaultMessage: 'go-elasticsearch', + }), + link: 'https://github.com/elastic/go-elasticsearch', + }, iconType: 'go.svg', id: Languages.GO, ingestData: `ingestResult, err := es.Bulk(). diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/javascript.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/javascript.ts index 033dc9b3169df..3b636490a495e 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/javascript.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/javascript.ts @@ -27,6 +27,12 @@ const client = new Client({ } });`, docLink: docLinks.clientsJsIntro, + github: { + label: i18n.translate('xpack.enterpriseSearch.languages.javascript.githubLink', { + defaultMessage: 'elasticsearch', + }), + link: 'https://github.com/elastic/elasticsearch-js', + }, iconType: 'javascript.svg', id: Languages.JAVASCRIPT, ingestData: `// Sample flight data diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/php.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/php.ts index 6b1abcae27954..eec2e50e275dd 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/php.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/php.ts @@ -25,6 +25,12 @@ print_r($response->asArray());`, ->setApiKey('${apiKey}') ->build();`, docLink: docLinks.clientsPhpOverview, + github: { + label: i18n.translate('xpack.enterpriseSearch.languages.php.githubLink', { + defaultMessage: 'elasticsearch-php', + }), + link: 'https://github.com/elastic/elasticsearch-php', + }, iconType: 'php.svg', id: Languages.PHP, ingestData: `$params = [ diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/python.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/python.ts index c9d5ba67b26e4..f3fd81b2c1152 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/python.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/python.ts @@ -19,6 +19,12 @@ client = Elasticsearch( api_key="${apiKey}" )`, docLink: docLinks.clientsPythonOverview, + github: { + label: i18n.translate('xpack.enterpriseSearch.languages.python.githubLink', { + defaultMessage: 'elasticsearch-py', + }), + link: 'https://github.com/elastic/elasticsearch-py', + }, iconType: 'python.svg', id: Languages.PYTHON, ingestData: `documents = [ diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/ruby.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/ruby.ts index 6706323c96772..5f67424900d6b 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/ruby.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/ruby.ts @@ -18,6 +18,12 @@ export const rubyDefinition: LanguageDefinition = { ) `, docLink: docLinks.clientsRubyOverview, + github: { + label: i18n.translate('xpack.enterpriseSearch.languages.ruby.githubLink', { + defaultMessage: 'elasticsearch-ruby', + }), + link: 'https://github.com/elastic/elasticsearch-ruby', + }, iconType: 'ruby.svg', id: Languages.RUBY, ingestData: `documents = [ diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/utils.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/utils.ts deleted file mode 100644 index f973099a0947e..0000000000000 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/components/getting_started/languages/utils.ts +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { LanguageDefinition, LanguageDefinitionSnippetArguments } from '@kbn/search-api-panels'; - -import { consoleDefinition } from './console'; - -export const showTryInConsole = (code: keyof LanguageDefinition) => code in consoleDefinition; - -export const getCodeSnippet = ( - language: Partial, - key: keyof LanguageDefinition, - args: LanguageDefinitionSnippetArguments -): string => { - const snippetVal = language[key]; - if (snippetVal === undefined) return ''; - if (typeof snippetVal === 'string') return snippetVal; - return snippetVal(args); -}; diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/connector_configuration.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/connector_configuration.tsx index 6989f0571efd6..0667451d8e761 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/connector_configuration.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/connector_configuration.tsx @@ -28,6 +28,7 @@ import { FormattedMessage } from '@kbn/i18n-react'; import { ConnectorStatus } from '../../../../../../common/types/connectors'; import { BetaConnectorCallout } from '../../../../shared/beta/beta_connector_callout'; +import { useCloudDetails } from '../../../../shared/cloud_details/cloud_details'; import { docLinks } from '../../../../shared/doc_links'; import { generateEncodedPath } from '../../../../shared/encode_path_params'; import { EuiButtonTo, EuiLinkTo } from '../../../../shared/react_router_helpers'; @@ -45,7 +46,7 @@ import { SearchIndexTabId } from '../search_index'; import { ApiKeyConfig } from './api_key_configuration'; import { ConnectorConfigurationConfig } from './connector_configuration_config'; import { ConnectorNameAndDescription } from './connector_name_and_description/connector_name_and_description'; -import { BETA_CONNECTORS, CONNECTORS } from './constants'; +import { BETA_CONNECTORS, CONNECTORS, getConnectorTemplate } from './constants'; import { NativeConnectorConfiguration } from './native_connector_configuration/native_connector_configuration'; export const ConnectorConfiguration: React.FC = () => { @@ -53,6 +54,8 @@ export const ConnectorConfiguration: React.FC = () => { const { index, recheckIndexLoading } = useValues(IndexViewLogic); const { indexName } = useValues(IndexNameLogic); const { recheckIndex } = useActions(IndexViewLogic); + const cloudContext = useCloudDetails(); + if (!isConnectorIndex(index)) { return <>; } @@ -151,15 +154,14 @@ export const ConnectorConfiguration: React.FC = () => { - {`connectors: - - - connector_id: "${index.connector.id}" - service_type: "${index.connector.service_type || 'changeme'}"${ - apiKeyData?.encoded - ? ` - api_key: "${apiKeyData?.encoded}"` - : '' - }`} + {getConnectorTemplate({ + apiKeyData, + connectorData: { + id: index.connector.id, + service_type: index.connector.service_type, + }, + host: cloudContext.elasticsearchUrl, + })} diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/connector_configuration_logic.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/connector_configuration_logic.ts index 5fca8d70abdc5..fd13c0d55236c 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/connector_configuration_logic.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/connector_configuration_logic.ts @@ -317,7 +317,7 @@ export const ConnectorConfigurationLogic = kea< return prev; }, {}), connectorId: values.index.connector.id, - indexName: values.index.connector.index_name, + indexName: values.index.connector.index_name ?? '', }); } }, diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/connector_name_and_description/connector_name_and_description_logic.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/connector_name_and_description/connector_name_and_description_logic.ts index 563951fddf3eb..a2869f5a90963 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/connector_name_and_description/connector_name_and_description_logic.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/connector_name_and_description/connector_name_and_description_logic.ts @@ -79,7 +79,7 @@ export const ConnectorNameAndDescriptionLogic = kea< if (isConnectorIndex(values.index) || isCrawlerIndex(values.index)) { actions.makeRequest({ connectorId: values.index.connector.id, - indexName: values.index.connector.index_name, + indexName: values.index.connector.index_name ?? '', ...values.localNameAndDescription, }); } diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/constants.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/constants.ts index b10069f12c3fe..950e47882af0a 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/constants.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/constants.ts @@ -5,10 +5,13 @@ * 2.0. */ +import dedent from 'dedent'; + import { CONNECTOR_DEFINITIONS } from '../../../../../../common/connectors/connectors'; import { docLinks } from '../../../../shared/doc_links'; import { CONNECTOR_ICONS } from '../../../../shared/icons/connector_icons'; +import { ApiKey } from '../../../api/connector/generate_connector_api_key_api_logic'; import { ConnectorClientSideDefinition } from './types'; @@ -24,6 +27,7 @@ export const CONNECTORS_DICT: Record = { externalAuthDocsUrl: '', externalDocsUrl: '', icon: CONNECTOR_ICONS.confluence_cloud, + platinumOnly: true, }, custom: { docsUrl: docLinks.connectors, @@ -42,12 +46,14 @@ export const CONNECTORS_DICT: Record = { externalAuthDocsUrl: '', externalDocsUrl: '', icon: CONNECTOR_ICONS.github, + platinumOnly: true, }, gmail: { docsUrl: docLinks.connectorsGmail, externalAuthDocsUrl: '', externalDocsUrl: '', icon: CONNECTOR_ICONS.gmail, + platinumOnly: true, }, google_cloud_storage: { docsUrl: docLinks.connectorsGoogleCloudStorage, @@ -60,12 +66,14 @@ export const CONNECTORS_DICT: Record = { externalAuthDocsUrl: 'https://cloud.google.com/iam/docs/service-account-overview', externalDocsUrl: 'https://developers.google.com/drive', icon: CONNECTOR_ICONS.google_drive, + platinumOnly: true, }, jira: { docsUrl: docLinks.connectorsJira, externalAuthDocsUrl: '', externalDocsUrl: '', icon: CONNECTOR_ICONS.jira_cloud, + platinumOnly: true, }, mongodb: { docsUrl: docLinks.connectorsMongoDB, @@ -96,6 +104,7 @@ export const CONNECTORS_DICT: Record = { externalAuthDocsUrl: '', externalDocsUrl: '', icon: CONNECTOR_ICONS.onedrive, + platinumOnly: true, }, oracle: { docsUrl: docLinks.connectorsOracle, @@ -121,6 +130,7 @@ export const CONNECTORS_DICT: Record = { externalAuthDocsUrl: '', externalDocsUrl: '', icon: CONNECTOR_ICONS.salesforce, + platinumOnly: true, }, servicenow: { docsUrl: docLinks.connectorsServiceNow, @@ -147,7 +157,7 @@ export const CONNECTORS_DICT: Record = { externalAuthDocsUrl: '', externalDocsUrl: '', icon: CONNECTOR_ICONS.slack, - platinumOnly: false, + platinumOnly: true, }, }; @@ -163,3 +173,29 @@ export const CUSTOM_CONNECTORS = CONNECTORS.filter(({ isNative }) => !isNative); export const NATIVE_CONNECTORS = CONNECTORS.filter(({ isNative }) => isNative); export const BETA_CONNECTORS = CONNECTORS.filter(({ isBeta }) => isBeta); + +export const getConnectorTemplate = ({ + apiKeyData, + connectorData, + host, +}: { + apiKeyData: ApiKey | undefined; + connectorData: { + id: string; + service_type: string | null; + }; + host?: string; +}) => dedent`connectors: + - + connector_id: "${connectorData.id}" + service_type: "${connectorData.service_type || 'changeme'}"${ + apiKeyData?.encoded + ? ` + api_key: "${apiKeyData?.encoded}"` + : '' +} + + elasticsearch: + host: "${host || 'https://locahost:9200'}" + api_key: "${apiKeyData?.encoded || ''}" +`; diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout.tsx index 8d97fb8e1863f..bf82d40d7585b 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout.tsx @@ -33,6 +33,7 @@ import { CrawlCustomSettingsFlyoutCrawlTypeSelection } from './crawl_custom_sett import { CrawlCustomSettingsFlyoutDomainsPanelWithLogicProps } from './crawl_custom_settings_flyout_domains_panel'; import { CrawlCustomSettingsFlyoutLogic } from './crawl_custom_settings_flyout_logic'; import { CrawlCustomSettingsFlyoutMultipleCrawlDelete } from './crawl_custom_settings_flyout_multi_crawl_delete'; +import { CrawlCustomSettingsFlyoutMultiCrawlLogic } from './crawl_custom_settings_flyout_multi_crawl_logic'; import { CrawlCustomSettingsFlyoutMultipleCrawlTabs } from './crawl_custom_settings_flyout_multi_crawl_tabs'; import { CrawlCustomSettingsFlyoutMultiCrawlScheduling } from './crawl_custom_settings_flyout_mutli_crawl'; import { CrawlCustomSettingsFlyoutSeedUrlsPanelWithLogicProps } from './crawl_custom_settings_flyout_seed_urls_panel'; @@ -45,6 +46,7 @@ export const CrawlCustomSettingsFlyout: React.FC = () => { isSingleCrawlType, selectedDomainUrls, } = useValues(CrawlCustomSettingsFlyoutLogic); + const { crawlerCustomSchedulingIsValid } = useValues(CrawlCustomSettingsFlyoutMultiCrawlLogic); const { hideFlyout, startCustomCrawl, saveCustomSchedulingConfiguration } = useActions( CrawlCustomSettingsFlyoutLogic ); @@ -125,7 +127,11 @@ export const CrawlCustomSettingsFlyout: React.FC = () => { data-telemetry-id="entSearchContent-crawler-customCrawlSettings-startCrawl" fill onClick={submitFunctionLogic} - disabled={isDataLoading || selectedDomainUrls.length === 0} + disabled={ + isSingleCrawlType + ? isDataLoading || selectedDomainUrls.length === 0 + : !crawlerCustomSchedulingIsValid + } isLoading={isFormSubmitting} > {isSingleCrawlType diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_domain_logic.test.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_domain_logic.test.ts new file mode 100644 index 0000000000000..5d350c34cbc91 --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_domain_logic.test.ts @@ -0,0 +1,197 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +import { LogicMounter, mockHttpValues } from '../../../../../__mocks__/kea_logic'; +import '../../_mocks_/index_name_logic.mock'; + +import { nextTick } from '@kbn/test-jest-helpers'; + +import { itShowsServerErrorAsFlashMessage } from '../../../../../test_helpers'; +import { DomainConfig } from '../../../../api/crawler/types'; + +import { CrawlCustomSettingsFlyoutDomainConfigLogic } from './crawl_custom_settings_flyout_domain_logic'; + +describe('CrawlCustomSettingsFlyoutDomainConfigLogic', () => { + const { mount } = new LogicMounter(CrawlCustomSettingsFlyoutDomainConfigLogic); + + const { http } = mockHttpValues; + + beforeEach(() => { + jest.clearAllMocks(); + mount(); + }); + + it('has expected default values', () => { + expect(CrawlCustomSettingsFlyoutDomainConfigLogic.values).toEqual({ + domainConfigMap: {}, + domainConfigs: [], + domainUrls: [], + }); + }); + + describe('actions', () => { + describe('fetchDomainConfigData', () => { + it('updates logic with data that has been converted from server to client', async () => { + jest.spyOn(CrawlCustomSettingsFlyoutDomainConfigLogic.actions, 'onRecieveDomainConfigData'); + + http.get.mockReturnValueOnce( + Promise.resolve({ + meta: { + page: { + current: 1, + size: 1, + total_pages: 2, + }, + }, + results: [ + { + id: '1234', + name: 'https://www.elastic.co', + seed_urls: [], + sitemap_urls: [], + }, + ], + }) + ); + + http.get.mockReturnValueOnce( + Promise.resolve({ + meta: { + page: { + current: 2, + size: 1, + total_pages: 2, + }, + }, + results: [ + { + id: '5678', + name: 'https://www.swiftype.com', + seed_urls: [], + sitemap_urls: [], + }, + ], + }) + ); + + CrawlCustomSettingsFlyoutDomainConfigLogic.actions.fetchDomainConfigData(); + await nextTick(); + + expect(http.get).toHaveBeenNthCalledWith( + 1, + '/internal/enterprise_search/indices/index-name/crawler/domain_configs', + { + query: { + 'page[current]': 1, + 'page[size]': 100, + }, + } + ); + expect(http.get).toHaveBeenNthCalledWith( + 2, + '/internal/enterprise_search/indices/index-name/crawler/domain_configs', + { + query: { + 'page[current]': 2, + 'page[size]': 1, + }, + } + ); + expect( + CrawlCustomSettingsFlyoutDomainConfigLogic.actions.onRecieveDomainConfigData + ).toHaveBeenCalledWith([ + { + id: '1234', + name: 'https://www.elastic.co', + seedUrls: [], + sitemapUrls: [], + }, + { + id: '5678', + name: 'https://www.swiftype.com', + seedUrls: [], + sitemapUrls: [], + }, + ]); + }); + + itShowsServerErrorAsFlashMessage(http.get, () => { + CrawlCustomSettingsFlyoutDomainConfigLogic.actions.fetchDomainConfigData(); + }); + }); + + describe('onRecieveDomainConfigData', () => { + it('saves the data', () => { + mount({ + domainConfigs: [], + }); + + CrawlCustomSettingsFlyoutDomainConfigLogic.actions.onRecieveDomainConfigData([ + { + name: 'https://www.elastic.co', + }, + ] as DomainConfig[]); + + expect(CrawlCustomSettingsFlyoutDomainConfigLogic.values.domainConfigs).toEqual([ + { + name: 'https://www.elastic.co', + }, + ]); + }); + }); + }); + + describe('selectors', () => { + beforeEach(() => { + mount({ + domainConfigs: [ + { + name: 'https://www.elastic.co', + sitemapUrls: [ + 'https://www.elastic.co/sitemap1.xml', + 'https://www.elastic.co/sitemap2.xml', + ], + seedUrls: ['https://www.elastic.co/', 'https://www.elastic.co/guide'], + }, + { + name: 'https://swiftype.com', + sitemapUrls: ['https://swiftype.com/sitemap1.xml', 'https://swiftype.com/sitemap2.xml'], + seedUrls: ['https://swiftype.com/', 'https://swiftype.com/documentation'], + }, + ], + }); + }); + + describe('domainUrls', () => { + it('contains all the domain urls from the domain config', () => { + expect(CrawlCustomSettingsFlyoutDomainConfigLogic.values.domainUrls).toEqual([ + 'https://www.elastic.co', + 'https://swiftype.com', + ]); + }); + }); + + describe('domainConfigMap', () => { + it('contains all the domain urls from the domain config', () => { + expect(CrawlCustomSettingsFlyoutDomainConfigLogic.values.domainConfigMap).toEqual({ + 'https://www.elastic.co': { + name: 'https://www.elastic.co', + sitemapUrls: [ + 'https://www.elastic.co/sitemap1.xml', + 'https://www.elastic.co/sitemap2.xml', + ], + seedUrls: ['https://www.elastic.co/', 'https://www.elastic.co/guide'], + }, + 'https://swiftype.com': { + name: 'https://swiftype.com', + sitemapUrls: ['https://swiftype.com/sitemap1.xml', 'https://swiftype.com/sitemap2.xml'], + seedUrls: ['https://swiftype.com/', 'https://swiftype.com/documentation'], + }, + }); + }); + }); + }); +}); diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_domain_logic.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_domain_logic.ts new file mode 100644 index 0000000000000..eaa72ddc831bb --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_domain_logic.ts @@ -0,0 +1,103 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { kea, MakeLogicType } from 'kea'; + +import { Meta } from '../../../../../../../common/types'; +import { flashAPIErrors } from '../../../../../shared/flash_messages'; +import { HttpLogic } from '../../../../../shared/http'; +import { DomainConfig, DomainConfigFromServer } from '../../../../api/crawler/types'; +import { domainConfigServerToClient } from '../../../../api/crawler/utils'; +import { IndexNameLogic } from '../../index_name_logic'; + +export interface CrawlCustomSettingsFlyoutDomainConfigLogicValues { + domainUrls: string[]; + domainConfigs: DomainConfig[]; + domainConfigMap: { + [key: string]: DomainConfig; + }; +} + +export const domainConfigsToDomainUrls = (domainConfigs: DomainConfig[]) => + domainConfigs.map((domainConfig) => domainConfig.name); + +export const domainConfigsToDomainConfigMap = (domainConfigs: DomainConfig[]) => + domainConfigs.reduce( + (acc, domainConfig) => ({ ...acc, [domainConfig.name]: domainConfig }), + {} as { [key: string]: DomainConfig } + ); + +export interface CrawlCustomSettingsFlyoutDomainConfigLogicActions { + fetchDomainConfigData(): void; + onRecieveDomainConfigData(domainConfigs: DomainConfig[]): { domainConfigs: DomainConfig[] }; +} + +export const CrawlCustomSettingsFlyoutDomainConfigLogic = kea< + MakeLogicType< + CrawlCustomSettingsFlyoutDomainConfigLogicValues, + CrawlCustomSettingsFlyoutDomainConfigLogicActions + > +>({ + path: ['enterprise_search', 'crawler', 'crawl_custom_settings_flyout_domain_logic'], + actions: () => ({ + fetchDomainConfigData: true, + onRecieveDomainConfigData: (domainConfigs) => ({ domainConfigs }), + }), + reducers: () => ({ + domainConfigs: [ + [], + { + onRecieveDomainConfigData: (_, { domainConfigs }) => domainConfigs, + }, + ], + }), + selectors: () => ({ + domainUrls: [ + (selectors) => [selectors.domainConfigs], + (domainConfigs: DomainConfig[]) => domainConfigsToDomainUrls(domainConfigs), + ], + domainConfigMap: [ + (selectors) => [selectors.domainConfigs], + (domainConfigs: DomainConfig[]) => domainConfigsToDomainConfigMap(domainConfigs), + ], + }), + listeners: ({ actions }) => ({ + fetchDomainConfigData: async () => { + const { http } = HttpLogic.values; + const { indexName } = IndexNameLogic.values; + + let domainConfigs: DomainConfig[] = []; + let totalPages: number = 1; + let nextPage: number = 1; + let pageSize: number = 100; + + try { + while (nextPage <= totalPages) { + const { + results, + meta: { page }, + } = await http.get<{ + meta: Meta; + results: DomainConfigFromServer[]; + }>(`/internal/enterprise_search/indices/${indexName}/crawler/domain_configs`, { + query: { 'page[current]': nextPage, 'page[size]': pageSize }, + }); + + domainConfigs = [...domainConfigs, ...results.map(domainConfigServerToClient)]; + + nextPage = page.current + 1; + totalPages = page.total_pages; + pageSize = page.size; + } + + actions.onRecieveDomainConfigData(domainConfigs); + } catch (e) { + flashAPIErrors(e); + } + }, + }), +}); diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_domains_panel.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_domains_panel.tsx index ea9f07252128e..a4faa76b8a6c4 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_domains_panel.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_domains_panel.tsx @@ -24,6 +24,7 @@ import { i18n } from '@kbn/i18n'; import { SimplifiedSelectable } from '../../../../../shared/simplified_selectable/simplified_selectable'; +import { CrawlCustomSettingsFlyoutDomainConfigLogic } from './crawl_custom_settings_flyout_domain_logic'; import { CrawlCustomSettingsFlyoutLogic } from './crawl_custom_settings_flyout_logic'; interface CrawlCustomSettingsFlyoutDomainsPanelProps { @@ -33,7 +34,8 @@ interface CrawlCustomSettingsFlyoutDomainsPanelProps { } export const CrawlCustomSettingsFlyoutDomainsPanelWithLogicProps: React.FC = () => { - const { domainUrls, selectedDomainUrls } = useValues(CrawlCustomSettingsFlyoutLogic); + const { selectedDomainUrls } = useValues(CrawlCustomSettingsFlyoutLogic); + const { domainUrls } = useValues(CrawlCustomSettingsFlyoutDomainConfigLogic); const { onSelectDomainUrls } = useActions(CrawlCustomSettingsFlyoutLogic); return ( diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_logic.test.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_logic.test.ts index 64f4081479d83..a0f090cf6dfcc 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_logic.test.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_logic.test.ts @@ -4,58 +4,43 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { LogicMounter, mockHttpValues } from '../../../../../__mocks__/kea_logic'; -import '../../_mocks_/index_name_logic.mock'; +import { LogicMounter } from '../../../../../__mocks__/kea_logic'; import { nextTick } from '@kbn/test-jest-helpers'; -import { itShowsServerErrorAsFlashMessage } from '../../../../../test_helpers'; -import { StartSyncApiLogic } from '../../../../api/connector/start_sync_api_logic'; -import { DomainConfig } from '../../../../api/crawler/types'; -import { CachedFetchIndexApiLogic } from '../../../../api/index/cached_fetch_index_api_logic'; +import { DomainConfig, CustomCrawlType } from '../../../../api/crawler/types'; import { IndexNameLogic } from '../../index_name_logic'; import { IndexViewLogic } from '../../index_view_logic'; import { CrawlerLogic } from '../crawler_logic'; +import { CrawlCustomSettingsFlyoutDomainConfigLogic } from './crawl_custom_settings_flyout_domain_logic'; import { CrawlCustomSettingsFlyoutLogic } from './crawl_custom_settings_flyout_logic'; -import { CrawlCustomSettingsFlyoutMultiCrawlLogic } from './crawl_custom_settings_flyout_multi_crawl_logic'; -// Temporarily skipping the tests before FF, the error results from connected kea logic. -// They will be fixed as a separate ticket. -describe.skip('CrawlCustomSettingsFlyoutLogic', () => { +describe('CrawlCustomSettingsFlyoutLogic', () => { const { mount } = new LogicMounter(CrawlCustomSettingsFlyoutLogic); - const { mount: multiCrawlLogicMount } = new LogicMounter( - CrawlCustomSettingsFlyoutMultiCrawlLogic - ); const { mount: indexViewLogicMount } = new LogicMounter(IndexViewLogic); - const { mount: apiLogicMount } = new LogicMounter(StartSyncApiLogic); - const { mount: fetchIndexMount } = new LogicMounter(CachedFetchIndexApiLogic); const { mount: indexNameMount } = new LogicMounter(IndexNameLogic); - const { http } = mockHttpValues; - beforeEach(() => { jest.clearAllMocks(); - indexNameMount(); - apiLogicMount(); - fetchIndexMount(); indexViewLogicMount(); - multiCrawlLogicMount(); + indexNameMount(); mount(); }); it('has expected default values', () => { expect(CrawlCustomSettingsFlyoutLogic.values).toEqual({ + crawlType: CustomCrawlType.ONE_TIME, customEntryPointUrls: [], customSitemapUrls: [], domainConfigMap: {}, domainConfigs: [], - domainUrls: [], entryPointUrls: [], includeSitemapsInRobotsTxt: true, isDataLoading: true, isFlyoutVisible: false, isFormSubmitting: false, + isSingleCrawlType: true, maxCrawlDepth: 2, selectedDomainUrls: [], selectedEntryPointUrls: [], @@ -65,96 +50,6 @@ describe.skip('CrawlCustomSettingsFlyoutLogic', () => { }); describe('actions', () => { - describe('fetchDomainConfigData', () => { - it('updates logic with data that has been converted from server to client', async () => { - jest.spyOn(CrawlCustomSettingsFlyoutLogic.actions, 'onRecieveDomainConfigData'); - - http.get.mockReturnValueOnce( - Promise.resolve({ - meta: { - page: { - current: 1, - size: 1, - total_pages: 2, - }, - }, - results: [ - { - id: '1234', - name: 'https://www.elastic.co', - seed_urls: [], - sitemap_urls: [], - }, - ], - }) - ); - - http.get.mockReturnValueOnce( - Promise.resolve({ - meta: { - page: { - current: 2, - size: 1, - total_pages: 2, - }, - }, - results: [ - { - id: '5678', - name: 'https://www.swiftype.com', - seed_urls: [], - sitemap_urls: [], - }, - ], - }) - ); - - CrawlCustomSettingsFlyoutLogic.actions.fetchDomainConfigData(); - await nextTick(); - - expect(http.get).toHaveBeenNthCalledWith( - 1, - '/internal/enterprise_search/indices/index-name/crawler/domain_configs', - { - query: { - 'page[current]': 1, - 'page[size]': 100, - }, - } - ); - expect(http.get).toHaveBeenNthCalledWith( - 2, - '/internal/enterprise_search/indices/index-name/crawler/domain_configs', - { - query: { - 'page[current]': 2, - 'page[size]': 1, - }, - } - ); - expect( - CrawlCustomSettingsFlyoutLogic.actions.onRecieveDomainConfigData - ).toHaveBeenCalledWith([ - { - id: '1234', - name: 'https://www.elastic.co', - seedUrls: [], - sitemapUrls: [], - }, - { - id: '5678', - name: 'https://www.swiftype.com', - seedUrls: [], - sitemapUrls: [], - }, - ]); - }); - - itShowsServerErrorAsFlashMessage(http.get, () => { - CrawlCustomSettingsFlyoutLogic.actions.fetchDomainConfigData(); - }); - }); - describe('hideFlyout', () => { it('hides the modal', () => { CrawlCustomSettingsFlyoutLogic.actions.hideFlyout(); @@ -443,53 +338,27 @@ describe.skip('CrawlCustomSettingsFlyoutLogic', () => { describe('selectors', () => { beforeEach(() => { + jest.clearAllMocks(); mount({ - domainConfigs: [ - { - name: 'https://www.elastic.co', - sitemapUrls: [ - 'https://www.elastic.co/sitemap1.xml', - 'https://www.elastic.co/sitemap2.xml', - ], - seedUrls: ['https://www.elastic.co/', 'https://www.elastic.co/guide'], - }, - { - name: 'https://swiftype.com', - sitemapUrls: ['https://swiftype.com/sitemap1.xml', 'https://swiftype.com/sitemap2.xml'], - seedUrls: ['https://swiftype.com/', 'https://swiftype.com/documentation'], - }, - ], selectedDomainUrls: ['https://swiftype.com'], }); - }); - - describe('domainUrls', () => { - it('contains all the domain urls from the domain config', () => { - expect(CrawlCustomSettingsFlyoutLogic.values.domainUrls).toEqual([ - 'https://www.elastic.co', - 'https://swiftype.com', - ]); - }); - }); - - describe('domainConfigMap', () => { - it('contains all the domain urls from the domain config', () => { - expect(CrawlCustomSettingsFlyoutLogic.values.domainConfigMap).toEqual({ - 'https://www.elastic.co': { - name: 'https://www.elastic.co', - sitemapUrls: [ - 'https://www.elastic.co/sitemap1.xml', - 'https://www.elastic.co/sitemap2.xml', - ], - seedUrls: ['https://www.elastic.co/', 'https://www.elastic.co/guide'], - }, - 'https://swiftype.com': { - name: 'https://swiftype.com', - sitemapUrls: ['https://swiftype.com/sitemap1.xml', 'https://swiftype.com/sitemap2.xml'], - seedUrls: ['https://swiftype.com/', 'https://swiftype.com/documentation'], - }, - }); - }); + CrawlCustomSettingsFlyoutDomainConfigLogic.actions.onRecieveDomainConfigData([ + { + id: '1', + name: 'https://www.elastic.co', + sitemapUrls: [ + 'https://www.elastic.co/sitemap1.xml', + 'https://www.elastic.co/sitemap2.xml', + ], + seedUrls: ['https://www.elastic.co/', 'https://www.elastic.co/guide'], + }, + { + id: '2', + name: 'https://swiftype.com', + sitemapUrls: ['https://swiftype.com/sitemap1.xml', 'https://swiftype.com/sitemap2.xml'], + seedUrls: ['https://swiftype.com/', 'https://swiftype.com/documentation'], + }, + ]); }); describe('entryPointUrls', () => { diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_logic.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_logic.ts index cae406b4c5b68..6a01e5b792f5f 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_logic.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_logic.ts @@ -7,21 +7,13 @@ import { kea, MakeLogicType } from 'kea'; -import { Meta } from '../../../../../../../common/types'; -import { flashAPIErrors } from '../../../../../shared/flash_messages'; -import { HttpLogic } from '../../../../../shared/http'; -import { - CustomCrawlType, - DomainConfig, - DomainConfigFromServer, - CrawlerCustomSchedule, -} from '../../../../api/crawler/types'; -import { domainConfigServerToClient } from '../../../../api/crawler/utils'; -import { IndexNameLogic } from '../../index_name_logic'; +import { CustomCrawlType, DomainConfig } from '../../../../api/crawler/types'; import { CrawlerActions, CrawlerLogic, CrawlRequestOverrides } from '../crawler_logic'; import { extractDomainAndEntryPointFromUrl } from '../domain_management/add_domain/utils'; +import { CrawlCustomSettingsFlyoutDomainConfigLogic } from './crawl_custom_settings_flyout_domain_logic'; + import { CrawlCustomSettingsFlyoutMultiCrawlLogic } from './crawl_custom_settings_flyout_multi_crawl_logic'; export interface CrawlCustomSettingsFlyoutLogicValues { @@ -44,9 +36,6 @@ export interface CrawlCustomSettingsFlyoutLogicValues { selectedEntryPointUrls: string[]; selectedSitemapUrls: string[]; sitemapUrls: string[]; - crawlerConfigurations: CrawlerCustomSchedule[]; - multiCrawlerSitemapUrls: string[][]; - multiCrawlerEntryPointUrls: string[][]; } export interface CrawlCustomSettingsFlyoutLogicActions { @@ -89,16 +78,16 @@ export const CrawlCustomSettingsFlyoutLogic = kea< actions: [ CrawlerLogic, ['startCrawl'], + CrawlCustomSettingsFlyoutDomainConfigLogic, + ['fetchDomainConfigData', 'onRecieveDomainConfigData'], CrawlCustomSettingsFlyoutMultiCrawlLogic, ['fetchCustomScheduling', 'postCustomScheduling'], ], - values: [CrawlCustomSettingsFlyoutMultiCrawlLogic, ['crawlerConfigurations']], + values: [CrawlCustomSettingsFlyoutDomainConfigLogic, ['domainConfigs', 'domainConfigMap']], }, actions: () => ({ - fetchDomainConfigData: true, saveCustomSchedulingConfiguration: true, hideFlyout: true, - onRecieveDomainConfigData: (domainConfigs) => ({ domainConfigs }), onSelectCrawlType: (crawlType) => ({ crawlType }), onSelectCustomEntryPointUrls: (entryPointUrls) => ({ entryPointUrls }), onSelectCustomSitemapUrls: (sitemapUrls) => ({ sitemapUrls }), @@ -131,12 +120,6 @@ export const CrawlCustomSettingsFlyoutLogic = kea< onSelectCustomSitemapUrls: (_, { sitemapUrls }) => sitemapUrls, }, ], - domainConfigs: [ - [], - { - onRecieveDomainConfigData: (_, { domainConfigs }) => domainConfigs, - }, - ], includeSitemapsInRobotsTxt: [ true, { @@ -202,20 +185,11 @@ export const CrawlCustomSettingsFlyoutLogic = kea< ], }), selectors: () => ({ - domainUrls: [ - (selectors) => [selectors.domainConfigs], - (domainConfigs: DomainConfig[]) => domainConfigs.map((domainConfig) => domainConfig.name), - ], - domainConfigMap: [ - (selectors) => [selectors.domainConfigs], - (domainConfigs: DomainConfig[]) => - domainConfigs.reduce( - (acc, domainConfig) => ({ ...acc, [domainConfig.name]: domainConfig }), - {} as { [key: string]: DomainConfig } - ), - ], entryPointUrls: [ - (selectors) => [selectors.domainConfigMap, selectors.selectedDomainUrls], + (selectors) => [ + CrawlCustomSettingsFlyoutDomainConfigLogic.selectors.domainConfigMap, + selectors.selectedDomainUrls, + ], (domainConfigMap: { [key: string]: DomainConfig }, selectedDomainUrls: string[]): string[] => selectedDomainUrls.flatMap( (selectedDomainUrl) => domainConfigMap[selectedDomainUrl].seedUrls @@ -226,72 +200,18 @@ export const CrawlCustomSettingsFlyoutLogic = kea< (crawlType: string): boolean => crawlType === CustomCrawlType.ONE_TIME, ], sitemapUrls: [ - (selectors) => [selectors.domainConfigMap, selectors.selectedDomainUrls], + (selectors) => [ + CrawlCustomSettingsFlyoutDomainConfigLogic.selectors.domainConfigMap, + selectors.selectedDomainUrls, + ], (domainConfigMap: { [key: string]: DomainConfig }, selectedDomainUrls: string[]): string[] => selectedDomainUrls.flatMap( (selectedDomainUrl) => domainConfigMap[selectedDomainUrl].sitemapUrls ), ], - multiCrawlerEntryPointUrls: [ - (selectors) => [selectors.domainConfigMap, selectors.crawlerConfigurations], - ( - domainConfigMap: { [key: string]: DomainConfig }, - crawlerConfigs: CrawlerCustomSchedule[] - ): string[][] => - crawlerConfigs.map((c) => - c.selectedDomainUrls.flatMap( - (selectedDomainUrl) => domainConfigMap[selectedDomainUrl].seedUrls - ) - ), - ], - multiCrawlerSitemapUrls: [ - (selectors) => [selectors.domainConfigMap, selectors.crawlerConfigurations], - ( - domainConfigMap: { [key: string]: DomainConfig }, - crawlerConfigs: CrawlerCustomSchedule[] - ): string[][] => - crawlerConfigs.map((c) => - c.selectedDomainUrls.flatMap( - (selectedDomainUrl) => domainConfigMap[selectedDomainUrl].sitemapUrls - ) - ), - ], }), listeners: ({ actions, values }) => ({ - fetchDomainConfigData: async () => { - const { http } = HttpLogic.values; - const { indexName } = IndexNameLogic.values; - - let domainConfigs: DomainConfig[] = []; - let totalPages: number = 1; - let nextPage: number = 1; - let pageSize: number = 100; - - try { - while (nextPage <= totalPages) { - const { - results, - meta: { page }, - } = await http.get<{ - meta: Meta; - results: DomainConfigFromServer[]; - }>(`/internal/enterprise_search/indices/${indexName}/crawler/domain_configs`, { - query: { 'page[current]': nextPage, 'page[size]': pageSize }, - }); - - domainConfigs = [...domainConfigs, ...results.map(domainConfigServerToClient)]; - - nextPage = page.current + 1; - totalPages = page.total_pages; - pageSize = page.size; - } - - actions.onRecieveDomainConfigData(domainConfigs); - } catch (e) { - flashAPIErrors(e); - } - }, - showFlyout: () => { + showFlyout: async () => { actions.fetchDomainConfigData(); actions.fetchCustomScheduling(); }, diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_multi_crawl_logic.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_multi_crawl_logic.ts index 0b03ea6791fb8..aa98f838a8e18 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_multi_crawl_logic.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_multi_crawl_logic.ts @@ -8,14 +8,13 @@ import { kea, MakeLogicType } from 'kea'; import { ConnectorScheduling } from '../../../../../../../common/types/connectors'; -import { - CrawlerCustomSchedulesServer, - CrawlerCustomScheduleClient, -} from '../../../../../../../common/types/crawler'; +import { CrawlerCustomSchedulesServer } from '../../../../../../../common/types/crawler'; + import { CrawlerIndex } from '../../../../../../../common/types/indices'; +import { Actions } from '../../../../../shared/api_logic/create_api_logic'; import { flashAPIErrors } from '../../../../../shared/flash_messages'; import { HttpLogic } from '../../../../../shared/http'; -import { CrawlerCustomSchedule } from '../../../../api/crawler/types'; +import { DomainConfig, CrawlerCustomSchedule } from '../../../../api/crawler/types'; import { crawlerCustomSchedulingServerToClient, crawlerCustomSchedulingClientToServer, @@ -24,15 +23,33 @@ import { IndexNameLogic } from '../../index_name_logic'; import { IndexViewLogic } from '../../index_view_logic'; +import { + CrawlCustomSettingsFlyoutDomainConfigLogic, + domainConfigsToDomainConfigMap, +} from './crawl_custom_settings_flyout_domain_logic'; + import { filterSeedUrlsByDomainUrls } from './crawl_custom_settings_flyout_logic'; +import { + PostCustomSchedulingApiLogic, + PostCustomSchedulingArgs, +} from './crawl_custom_settings_flyout_schedule_api_logic'; -export interface CrawlCustomSettingsFlyoutLogicValues { +export interface CrawlCustomSettingsFlyoutMultiCrawlLogicValues { crawlerConfigActiveTab: number; crawlerConfigurations: CrawlerCustomSchedule[]; + crawlerConfigurationsWithDomainData: CrawlerCustomSchedule[]; index: CrawlerIndex; + domainUrls: string[]; + domainConfigs: DomainConfig[]; + domainConfigMap: { + [key: string]: DomainConfig; + }; + crawlerCustomSchedulingIsValid: boolean; } -export interface CrawlCustomSettingsFlyoutLogicActions { +type PostCustomSchedulingApiValues = Actions; + +export interface CrawlCustomSettingsFlyoutMultiCrawlLogicActions { fetchCustomScheduling(): void; postCustomScheduling(): void; onReceiveCrawlerCustomScheduling(crawlerConfigurations: CrawlerCustomSchedule[]): { @@ -79,9 +96,11 @@ export interface CrawlCustomSettingsFlyoutLogicActions { enabled: boolean; }; toggleIncludeSitemapsInRobotsTxt(index: number): { index: number }; + makePostCustomSchedulingRequest: PostCustomSchedulingApiValues['makeRequest']; } const defaulCrawlerConfiguration: CrawlerCustomSchedule = { + scheduleKey: 'crawler_0', name: 'Crawler 0', maxCrawlDepth: 2, customEntryPointUrls: [], @@ -90,16 +109,32 @@ const defaulCrawlerConfiguration: CrawlerCustomSchedule = { selectedDomainUrls: [], selectedEntryPointUrls: [], selectedSitemapUrls: [], - interval: '* * * * *', + interval: '0 0 0 * * ?', enabled: false, + sitemapUrls: [], + entryPointUrls: [], }; export const CrawlCustomSettingsFlyoutMultiCrawlLogic = kea< - MakeLogicType + MakeLogicType< + CrawlCustomSettingsFlyoutMultiCrawlLogicValues, + CrawlCustomSettingsFlyoutMultiCrawlLogicActions + > >({ path: ['enterprise_search', 'crawler', 'crawl_custom_settings_flyout_multi_crawl_logic'], connect: { - values: [IndexViewLogic, ['index']], + actions: [ + PostCustomSchedulingApiLogic, + ['makeRequest as makePostCustomSchedulingRequest'], + CrawlCustomSettingsFlyoutDomainConfigLogic, + ['onRecieveDomainConfigData'], + ], + values: [ + IndexViewLogic, + ['index'], + CrawlCustomSettingsFlyoutDomainConfigLogic, + ['domainConfigs', 'domainConfigMap'], + ], }, actions: () => ({ fetchCustomScheduling: true, @@ -130,15 +165,36 @@ export const CrawlCustomSettingsFlyoutMultiCrawlLogic = kea< [defaulCrawlerConfiguration], { onReceiveCrawlerCustomScheduling: (_, { crawlerConfigurations }) => { - return crawlerConfigurations.map((configuration) => ({ - ...defaulCrawlerConfiguration, - ...configuration, - })); + // Handle case with no custom scheduling returned from server + return crawlerConfigurations.length > 0 + ? crawlerConfigurations.map((configuration) => ({ + ...defaulCrawlerConfiguration, + ...configuration, + })) + : [defaulCrawlerConfiguration]; + }, + onAddCustomCrawler: (state, { index }) => { + let newScheduleKey = `crawler_${index}`; + let suffix = index; + + // Check if the newScheduleKey already exists in the array + const existingKeys = state.map((crawler) => crawler.scheduleKey); + if (existingKeys.includes(newScheduleKey)) { + // Handle the case where a duplicate scheduleKey is found + while (existingKeys.includes(`${newScheduleKey}_${suffix}`)) { + suffix++; + } + newScheduleKey = `${newScheduleKey}_${suffix}`; + } + return [ + ...state, + { + ...defaulCrawlerConfiguration, + name: `Crawler ${suffix}`, + scheduleKey: newScheduleKey, + }, + ]; }, - onAddCustomCrawler: (state, { index }) => [ - ...state, - { ...defaulCrawlerConfiguration, name: `Crawler ${index}` }, - ], onDeleteCustomCrawler: (state, { index }) => { return state.filter((_, i) => i !== index); }, @@ -197,9 +253,70 @@ export const CrawlCustomSettingsFlyoutMultiCrawlLogic = kea< const { interval } = newSchedule; return state.map((crawler, i) => (i === index ? { ...crawler, interval } : crawler)); }, + onRecieveDomainConfigData: (state, { domainConfigs }) => { + const domainConfigsMap = domainConfigsToDomainConfigMap(domainConfigs); + return state.map((crawler) => { + const entryPointUrls = crawler.selectedDomainUrls.flatMap( + (selectedDomainUrl) => domainConfigsMap[selectedDomainUrl].seedUrls + ); + const selectedEntryPointUrls = crawler.customEntryPointUrls.filter((entryPointUrl) => + entryPointUrls.includes(entryPointUrl) + ); + const customEntryPointUrls = crawler.customEntryPointUrls.filter( + (entryPointUrl) => !entryPointUrls.includes(entryPointUrl) + ); + const sitemapUrls = crawler.selectedDomainUrls.flatMap( + (selectedDomainUrl) => domainConfigsMap[selectedDomainUrl].sitemapUrls + ); + const selectedSitemapUrls = crawler.customSitemapUrls.filter((sitemapUrl) => + sitemapUrls.includes(sitemapUrl) + ); + const customSitemapUrls = crawler.customSitemapUrls.filter( + (sitemapUrl) => !sitemapUrls.includes(sitemapUrl) + ); + + return { + ...crawler, + entryPointUrls, + selectedEntryPointUrls, + customEntryPointUrls, + sitemapUrls, + selectedSitemapUrls, + customSitemapUrls, + }; + }); + }, }, ], }), + selectors: () => ({ + crawlerConfigurationsWithDomainData: [ + (selectors) => [selectors.domainConfigMap, selectors.crawlerConfigurations], + ( + domainConfigMap: { [key: string]: DomainConfig }, + crawlerConfigs: CrawlerCustomSchedule[] + ): CrawlerCustomSchedule[] => + crawlerConfigs.map((crawlerConfig) => { + const entryPointUrls = crawlerConfig.selectedDomainUrls.flatMap( + (selectedDomainUrl) => domainConfigMap[selectedDomainUrl].seedUrls + ); + const sitemapUrls = crawlerConfig.selectedDomainUrls.flatMap( + (selectedDomainUrl) => domainConfigMap[selectedDomainUrl].sitemapUrls + ); + + return { + ...crawlerConfig, + entryPointUrls, + sitemapUrls, + }; + }), + ], + crawlerCustomSchedulingIsValid: [ + (selectors) => [selectors.crawlerConfigurations], + (crawlerConfigs: CrawlerCustomSchedule[]): boolean => + crawlerConfigs.every((config) => config.selectedDomainUrls.length > 0), + ], + }), listeners: ({ actions, values }) => ({ fetchCustomScheduling: async () => { const { http } = HttpLogic.values; @@ -216,15 +333,11 @@ export const CrawlCustomSettingsFlyoutMultiCrawlLogic = kea< } }, postCustomScheduling: async () => { - const { http } = HttpLogic.values; const { indexName } = IndexNameLogic.values; const { crawlerConfigurations } = values; const customScheduling = crawlerCustomSchedulingClientToServer(crawlerConfigurations); try { - await http.post( - `/internal/enterprise_search/indices/${indexName}/crawler/custom_scheduling`, - { body: JSON.stringify(Object.fromEntries(customScheduling)) } - ); + actions.makePostCustomSchedulingRequest({ indexName, customScheduling }); } catch (e) { flashAPIErrors(e); } diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_multi_crawl_tabs.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_multi_crawl_tabs.tsx index 90871ff20b954..638364a83e480 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_multi_crawl_tabs.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_multi_crawl_tabs.tsx @@ -31,7 +31,7 @@ export const CrawlCustomSettingsFlyoutMultipleCrawlTabs: React.FC = () => { ); const crawlerTabData = crawlerConfigurations.map((_, index) => ({ - key: `crawl_${index}`, + key: `crawler_${index}`, index, label: `${CRAWLER_TAB_PREFIX} ${index + 1}`, })); diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_mutli_crawl.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_mutli_crawl.tsx index 2548223181ad8..5b37a26ed1f8f 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_mutli_crawl.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_mutli_crawl.tsx @@ -13,18 +13,16 @@ import { EuiSpacer } from '@elastic/eui'; import { CrawlCustomSettingsFlyoutCrawlDepthPanel } from './crawl_custom_settings_flyout_crawl_depth_panel'; import { MultiCrawlScheduler } from './crawl_custom_settings_flyout_crawl_scheduler'; +import { CrawlCustomSettingsFlyoutDomainConfigLogic } from './crawl_custom_settings_flyout_domain_logic'; import { CrawlCustomSettingsFlyoutDomainsPanel } from './crawl_custom_settings_flyout_domains_panel'; -import { CrawlCustomSettingsFlyoutLogic } from './crawl_custom_settings_flyout_logic'; import { CrawlCustomSettingsFlyoutMultiCrawlLogic } from './crawl_custom_settings_flyout_multi_crawl_logic'; import { CrawlCustomSettingsFlyoutSeedUrlsPanel } from './crawl_custom_settings_flyout_seed_urls_panel'; export const CrawlCustomSettingsFlyoutMultiCrawlScheduling: React.FC = () => { - const { domainUrls, multiCrawlerEntryPointUrls, multiCrawlerSitemapUrls } = useValues( - CrawlCustomSettingsFlyoutLogic - ); + const { domainUrls } = useValues(CrawlCustomSettingsFlyoutDomainConfigLogic); const { - crawlerConfigurations, + crawlerConfigurationsWithDomainData, crawlerConfigActiveTab, index: crawlerIndex, } = useValues(CrawlCustomSettingsFlyoutMultiCrawlLogic); @@ -43,7 +41,7 @@ export const CrawlCustomSettingsFlyoutMultiCrawlScheduling: React.FC = () => { return ( <> - {crawlerConfigurations.map((config, index) => { + {crawlerConfigurationsWithDomainData.map((config, index) => { if (index === crawlerConfigActiveTab) { return ( @@ -65,8 +63,6 @@ export const CrawlCustomSettingsFlyoutMultiCrawlScheduling: React.FC = () => { onSelectEntryPointUrls={(e) => onSelectEntryPointUrls(index, e)} onSelectSitemapUrls={(e) => onSelectSitemapUrls(index, e)} toggleIncludeSitemapsInRobotsTxt={() => toggleIncludeSitemapsInRobotsTxt(index)} - entryPointUrls={multiCrawlerEntryPointUrls[index]} - sitemapUrls={multiCrawlerSitemapUrls[index]} /> { + const route = `/internal/enterprise_search/indices/${indexName}/crawler/custom_scheduling`; + await HttpLogic.values.http.post(route, { + body: JSON.stringify(Object.fromEntries(customScheduling)), + }); +}; + +export const PostCustomSchedulingApiLogic = createApiLogic( + ['post_crawler_custom_scheduling_api_logic'], + postCrawlerCustomScheduling, + { + showSuccessFlashFn: () => + i18n.translate( + 'xpack.enterpriseSearch.crawler.crawlCustomSettingsFlyout.postCrawlerCustomSchedulingSuccess.message', + { + defaultMessage: 'Successfully saved crawler custom scheduling.', + } + ), + } +); diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_seed_urls_panel.test.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_seed_urls_panel.test.tsx index 0d7fe0eb5c049..d60df4c0cdb75 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_seed_urls_panel.test.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_seed_urls_panel.test.tsx @@ -71,14 +71,14 @@ describe('CrawlCustomSettingsFlyoutSeedUrlsPanel', () => { selectedDomainUrls: MOCK_VALUES.selectedDomainUrls, selectedEntryPointUrls: MOCK_VALUES.selectedEntryPointUrls, selectedSitemapUrls: MOCK_VALUES.selectedSitemapUrls, + entryPointUrls: MOCK_VALUES.entryPointUrls, + sitemapUrls: MOCK_VALUES.sitemapUrls, }} onSelectCustomEntryPointUrls={MOCK_ACTIONS.onSelectCustomEntryPointUrls} onSelectCustomSitemapUrls={MOCK_ACTIONS.onSelectCustomSitemapUrls} onSelectEntryPointUrls={MOCK_ACTIONS.onSelectEntryPointUrls} onSelectSitemapUrls={MOCK_ACTIONS.onSelectSitemapUrls} toggleIncludeSitemapsInRobotsTxt={MOCK_ACTIONS.toggleIncludeSitemapsInRobotsTxt} - entryPointUrls={MOCK_VALUES.entryPointUrls} - sitemapUrls={MOCK_VALUES.sitemapUrls} /> ); }); diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_seed_urls_panel.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_seed_urls_panel.tsx index ce299b9e0ca11..215e004b94818 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_seed_urls_panel.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/crawler/crawl_custom_settings_flyout/crawl_custom_settings_flyout_seed_urls_panel.tsx @@ -41,6 +41,8 @@ type CrawlerCustomScheduleConfig = Pick< | 'selectedDomainUrls' | 'selectedEntryPointUrls' | 'selectedSitemapUrls' + | 'entryPointUrls' + | 'sitemapUrls' >; interface CrawlCustomSettingsFlyoutSeedUrlsPanelProps { @@ -50,8 +52,6 @@ interface CrawlCustomSettingsFlyoutSeedUrlsPanelProps { onSelectEntryPointUrls: (urls: string[]) => void; onSelectSitemapUrls: (urls: string[]) => void; toggleIncludeSitemapsInRobotsTxt: () => void; - entryPointUrls: string[]; - sitemapUrls: string[]; } export const CrawlCustomSettingsFlyoutSeedUrlsPanelWithLogicProps: React.FC = () => { @@ -80,6 +80,8 @@ export const CrawlCustomSettingsFlyoutSeedUrlsPanelWithLogicProps: React.FC = () selectedDomainUrls, selectedEntryPointUrls, selectedSitemapUrls, + entryPointUrls, + sitemapUrls, }; return ( @@ -90,8 +92,6 @@ export const CrawlCustomSettingsFlyoutSeedUrlsPanelWithLogicProps: React.FC = () onSelectEntryPointUrls={onSelectEntryPointUrls} onSelectSitemapUrls={onSelectSitemapUrls} toggleIncludeSitemapsInRobotsTxt={toggleIncludeSitemapsInRobotsTxt} - entryPointUrls={entryPointUrls} - sitemapUrls={sitemapUrls} /> ); }; @@ -105,8 +105,6 @@ export const CrawlCustomSettingsFlyoutSeedUrlsPanel: React.FC< onSelectEntryPointUrls, onSelectSitemapUrls, toggleIncludeSitemapsInRobotsTxt, - entryPointUrls, - sitemapUrls, }) => { const totalSeedUrls = scheduleConfig.customEntryPointUrls.length + @@ -187,7 +185,7 @@ export const CrawlCustomSettingsFlyoutSeedUrlsPanel: React.FC< { const indexToShow = selectedIndexType === 'content-index' ? indexName - : indexName.replace('search-', CONNECTORS_ACCESS_CONTROL_INDEX_PREFIX); + : stripSearchPrefix(indexName, CONNECTORS_ACCESS_CONTROL_INDEX_PREFIX); const mappingLogic = mappingsWithPropsApiLogic(indexToShow); const documentLogic = searchDocumentsApiLogic(indexToShow); diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/index_mappings.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/index_mappings.tsx index 24f126efebbad..df040a56cfda5 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/index_mappings.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/index_mappings.tsx @@ -26,6 +26,7 @@ import { i18n } from '@kbn/i18n'; import { FormattedMessage } from '@kbn/i18n-react'; import { CONNECTORS_ACCESS_CONTROL_INDEX_PREFIX } from '../../../../../common/constants'; +import { stripSearchPrefix } from '../../../../../common/utils/strip_search_prefix'; import { docLinks } from '../../../shared/doc_links'; @@ -52,7 +53,7 @@ export const SearchIndexIndexMappings: React.FC = () => { const indexToShow = selectedIndexType === 'content-index' ? indexName - : indexName.replace('search-', CONNECTORS_ACCESS_CONTROL_INDEX_PREFIX); + : stripSearchPrefix(indexName, CONNECTORS_ACCESS_CONTROL_INDEX_PREFIX); const { makeRequest: makeMappingRequest } = useActions(mappingsWithPropsApiLogic(indexToShow)); const { data: mappingData } = useValues(mappingsWithPropsApiLogic(indexToShow)); const shouldShowAccessControlSwitch = diff --git a/x-pack/plugins/enterprise_search/public/applications/shared/doc_links/doc_links.ts b/x-pack/plugins/enterprise_search/public/applications/shared/doc_links/doc_links.ts index 377d2f9ccd71d..12150de94bde3 100644 --- a/x-pack/plugins/enterprise_search/public/applications/shared/doc_links/doc_links.ts +++ b/x-pack/plugins/enterprise_search/public/applications/shared/doc_links/doc_links.ts @@ -410,6 +410,7 @@ class DocLinks { this.connectorsOracle = docLinks.links.enterpriseSearch.connectorsOracle; this.connectorsPostgreSQL = docLinks.links.enterpriseSearch.connectorsPostgreSQL; this.connectorsS3 = docLinks.links.enterpriseSearch.connectorsS3; + this.connectorsSalesforce = docLinks.links.enterpriseSearch.connectorsSalesforce; this.connectorsServiceNow = docLinks.links.enterpriseSearch.connectorsServiceNow; this.connectorsSharepoint = docLinks.links.enterpriseSearch.connectorsSharepoint; this.connectorsSharepointOnline = docLinks.links.enterpriseSearch.connectorsSharepointOnline; diff --git a/x-pack/plugins/enterprise_search/public/plugin.ts b/x-pack/plugins/enterprise_search/public/plugin.ts index e0b86110125fb..ecdf553b8eabe 100644 --- a/x-pack/plugins/enterprise_search/public/plugin.ts +++ b/x-pack/plugins/enterprise_search/public/plugin.ts @@ -121,8 +121,11 @@ export class EnterpriseSearchPlugin implements Plugin { private isSidebarEnabled = true; public setup(core: CoreSetup, plugins: PluginsSetup) { - const { cloud } = plugins; const { config } = this; + if (!config.ui?.enabled) { + return; + } + const { cloud } = plugins; core.application.register({ appRoute: ENTERPRISE_SEARCH_OVERVIEW_PLUGIN.URL, @@ -416,6 +419,9 @@ export class EnterpriseSearchPlugin implements Plugin { } public start(core: CoreStart) { + if (!this.config.ui?.enabled) { + return; + } // This must be called here in start() and not in `applications/index.tsx` to prevent loading // race conditions with our apps' `routes.ts` being initialized before `renderApp()` docLinks.setDocLinks(core.docLinks); diff --git a/x-pack/plugins/enterprise_search/server/api/connectors_service.ts b/x-pack/plugins/enterprise_search/server/api/connectors_service.ts new file mode 100644 index 0000000000000..f13f02cb50796 --- /dev/null +++ b/x-pack/plugins/enterprise_search/server/api/connectors_service.ts @@ -0,0 +1,54 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { IClusterClient } from '@kbn/core-elasticsearch-server'; +import { HttpServiceStart, KibanaRequest } from '@kbn/core-http-server'; + +import { CONNECTOR_DEFINITIONS } from '../../common/connectors/connectors'; + +import { Connector, IngestPipelineParams } from '../../common/types/connectors'; + +import { addConnector } from '../lib/connectors/add_connector'; +import { fetchConnectors } from '../lib/connectors/fetch_connectors'; + +export class ConnectorsService { + private readonly clusterClient: IClusterClient; + private readonly http: HttpServiceStart; + + constructor({ clusterClient, http }: { clusterClient: IClusterClient; http: HttpServiceStart }) { + this.clusterClient = clusterClient; + this.http = http; + } + + async createConnector( + request: KibanaRequest, + input: { + indexName: string | null; + isNative: boolean; + language: string | null; + pipeline?: IngestPipelineParams | null; + serviceType: string | null; + } + ): Promise { + return await addConnector(this.clusterClient.asScoped(request), input); + } + + getConnectorTypes() { + return CONNECTOR_DEFINITIONS.map((connector) => ({ + ...connector, + iconPath: connector.iconPath + ? this.http.basePath.prepend( + `/plugins/enterpriseSearch/assets/source_icons/${connector.iconPath}` + ) + : 'logoEnterpriseSearch', + })); + } + + async getConnectors(request: KibanaRequest): Promise { + return await fetchConnectors(this.clusterClient.asScoped(request)); + } +} diff --git a/x-pack/plugins/enterprise_search/server/index.ts b/x-pack/plugins/enterprise_search/server/index.ts index 120a8a231d6e8..e7df036ada1a4 100644 --- a/x-pack/plugins/enterprise_search/server/index.ts +++ b/x-pack/plugins/enterprise_search/server/index.ts @@ -8,7 +8,7 @@ import { schema, TypeOf } from '@kbn/config-schema'; import { PluginInitializerContext, PluginConfigDescriptor } from '@kbn/core/server'; -import { EnterpriseSearchPlugin } from './plugin'; +import { EnterpriseSearchPlugin, EnterpriseSearchPluginStart as PluginStart } from './plugin'; export const plugin = (initializerContext: PluginInitializerContext) => { return new EnterpriseSearchPlugin(initializerContext); @@ -37,6 +37,9 @@ export const configSchema = schema.object({ { defaultValue: 'full' } ), }), + ui: schema.object({ + enabled: schema.boolean({ defaultValue: true }), + }), }); export type ConfigType = TypeOf; @@ -45,6 +48,7 @@ export const config: PluginConfigDescriptor = { exposeToBrowser: { canDeployEntSearch: true, host: true, + ui: true, }, schema: configSchema, }; @@ -54,3 +58,5 @@ export const CONNECTORS_JOBS_INDEX = '.elastic-connectors-sync-jobs'; export const CURRENT_CONNECTORS_JOB_INDEX = '.elastic-connectors-sync-jobs-v1'; export const CONNECTORS_VERSION = 1; export const CRAWLERS_INDEX = '.ent-search-actastic-crawler2_configurations_v2'; + +export type EnterpriseSearchPluginStart = PluginStart; diff --git a/x-pack/plugins/enterprise_search/server/lib/connectors/add_connector.test.ts b/x-pack/plugins/enterprise_search/server/lib/connectors/add_connector.test.ts index 5f9168bffe5e7..fe18dbccda2d8 100644 --- a/x-pack/plugins/enterprise_search/server/lib/connectors/add_connector.test.ts +++ b/x-pack/plugins/enterprise_search/server/lib/connectors/add_connector.test.ts @@ -64,11 +64,11 @@ describe('addConnector lib function', () => { await expect( addConnector(mockClient as unknown as IScopedClusterClient, { - index_name: 'index_name', - is_native: false, + indexName: 'index_name', + isNative: false, language: 'fr', }) - ).resolves.toEqual({ id: 'fakeId', index_name: 'index_name' }); + ).resolves.toEqual(expect.objectContaining({ id: 'fakeId', index_name: 'index_name' })); expect(mockClient.asCurrentUser.index).toHaveBeenCalledWith({ document: { api_key_id: null, @@ -175,8 +175,8 @@ describe('addConnector lib function', () => { await expect( addConnector(mockClient as unknown as IScopedClusterClient, { - index_name: 'index_name', - is_native: true, + indexName: 'index_name', + isNative: true, language: 'en', }) ).rejects.toEqual(new Error(ErrorCode.INDEX_ALREADY_EXISTS)); @@ -192,8 +192,8 @@ describe('addConnector lib function', () => { await expect( addConnector(mockClient as unknown as IScopedClusterClient, { - index_name: 'index_name', - is_native: false, + indexName: 'index_name', + isNative: false, language: 'en', }) ).rejects.toEqual(new Error(ErrorCode.CONNECTOR_DOCUMENT_ALREADY_EXISTS)); @@ -209,8 +209,8 @@ describe('addConnector lib function', () => { await expect( addConnector(mockClient as unknown as IScopedClusterClient, { - index_name: 'index_name', - is_native: false, + indexName: 'index_name', + isNative: false, language: 'en', }) ).rejects.toEqual(new Error(ErrorCode.CRAWLER_ALREADY_EXISTS)); @@ -226,8 +226,8 @@ describe('addConnector lib function', () => { await expect( addConnector(mockClient as unknown as IScopedClusterClient, { - index_name: 'index_name', - is_native: true, + indexName: 'index_name', + isNative: true, language: 'en', }) ).rejects.toEqual(new Error(ErrorCode.INDEX_ALREADY_EXISTS)); @@ -243,12 +243,12 @@ describe('addConnector lib function', () => { await expect( addConnector(mockClient as unknown as IScopedClusterClient, { - delete_existing_connector: true, - index_name: 'index_name', - is_native: true, + deleteExistingConnector: true, + indexName: 'index_name', + isNative: true, language: null, }) - ).resolves.toEqual({ id: 'fakeId', index_name: 'index_name' }); + ).resolves.toEqual(expect.objectContaining({ id: 'fakeId', index_name: 'index_name' })); expect(deleteConnectorById).toHaveBeenCalledWith(mockClient, 'connectorId'); expect(mockClient.asCurrentUser.index).toHaveBeenCalledWith({ document: { diff --git a/x-pack/plugins/enterprise_search/server/lib/connectors/add_connector.ts b/x-pack/plugins/enterprise_search/server/lib/connectors/add_connector.ts index c3a7ebe26dc3f..891a3e14a2a62 100644 --- a/x-pack/plugins/enterprise_search/server/lib/connectors/add_connector.ts +++ b/x-pack/plugins/enterprise_search/server/lib/connectors/add_connector.ts @@ -8,7 +8,11 @@ import { IScopedClusterClient } from '@kbn/core/server'; import { CURRENT_CONNECTORS_INDEX } from '../..'; -import { ConnectorDocument } from '../../../common/types/connectors'; +import { + Connector, + ConnectorDocument, + IngestPipelineParams, +} from '../../../common/types/connectors'; import { ErrorCode } from '../../../common/types/error_codes'; import { createConnectorDocument } from '../../utils/create_connector_document'; @@ -25,58 +29,58 @@ const createConnector = async ( client: IScopedClusterClient, language: string | null, deleteExisting: boolean -): Promise<{ id: string; index_name: string }> => { +): Promise => { const index = document.index_name; - const indexExists = await client.asCurrentUser.indices.exists({ index }); - if (indexExists) { - { - throw new Error(ErrorCode.INDEX_ALREADY_EXISTS); + if (index) { + const indexExists = await client.asCurrentUser.indices.exists({ index }); + if (indexExists) { + { + throw new Error(ErrorCode.INDEX_ALREADY_EXISTS); + } } - } - const connector = await fetchConnectorByIndexName(client, index); - if (connector) { - if (deleteExisting) { - await deleteConnectorById(client, connector.id); - } else { - throw new Error(ErrorCode.CONNECTOR_DOCUMENT_ALREADY_EXISTS); + const connector = await fetchConnectorByIndexName(client, index); + if (connector) { + if (deleteExisting) { + await deleteConnectorById(client, connector.id); + } else { + throw new Error(ErrorCode.CONNECTOR_DOCUMENT_ALREADY_EXISTS); + } } - } - const crawler = await fetchCrawlerByIndexName(client, index); + const crawler = await fetchCrawlerByIndexName(client, index); - if (crawler) { - throw new Error(ErrorCode.CRAWLER_ALREADY_EXISTS); + if (crawler) { + throw new Error(ErrorCode.CRAWLER_ALREADY_EXISTS); + } + await createIndex(client, index, language, false); } - const result = await client.asCurrentUser.index({ document, index: CURRENT_CONNECTORS_INDEX, refresh: 'wait_for', }); - await createIndex(client, document.index_name, language, false); - return { id: result._id, index_name: document.index_name }; + return { ...document, id: result._id }; }; export const addConnector = async ( client: IScopedClusterClient, input: { - delete_existing_connector?: boolean; - index_name: string; - is_native: boolean; + deleteExistingConnector?: boolean; + indexName: string | null; + isNative: boolean; language: string | null; - service_type?: string; + pipeline?: IngestPipelineParams | null; + serviceType?: string | null; } -): Promise<{ id: string; index_name: string }> => { - const pipeline = await getDefaultPipeline(client); +): Promise => { + const pipeline = input.pipeline || (await getDefaultPipeline(client)); const document = createConnectorDocument({ - indexName: input.index_name, - isNative: input.is_native, - language: input.language, + ...input, pipeline, - serviceType: input.service_type ?? null, + serviceType: input.serviceType || null, }); - return await createConnector(document, client, input.language, !!input.delete_existing_connector); + return await createConnector(document, client, input.language, !!input.deleteExistingConnector); }; diff --git a/x-pack/plugins/enterprise_search/server/lib/connectors/start_sync.ts b/x-pack/plugins/enterprise_search/server/lib/connectors/start_sync.ts index 4c9ce9ffc162f..faac79a29c0a7 100644 --- a/x-pack/plugins/enterprise_search/server/lib/connectors/start_sync.ts +++ b/x-pack/plugins/enterprise_search/server/lib/connectors/start_sync.ts @@ -23,6 +23,7 @@ import { TriggerMethod, } from '../../../common/types/connectors'; import { ErrorCode } from '../../../common/types/error_codes'; +import { stripSearchPrefix } from '../../../common/utils/strip_search_prefix'; export const startConnectorSync = async ( client: IScopedClusterClient, @@ -65,7 +66,7 @@ export const startConnectorSync = async ( }); } - const indexNameWithoutSearchPrefix = index_name.replace('search-', ''); + const indexNameWithoutSearchPrefix = index_name ? stripSearchPrefix(index_name) : ''; const targetIndexName = jobType === SyncJobType.ACCESS_CONTROL ? `${CONNECTORS_ACCESS_CONTROL_INDEX_PREFIX}${indexNameWithoutSearchPrefix}` diff --git a/x-pack/plugins/enterprise_search/server/lib/crawler/fetch_crawler_multiple_schedules.ts b/x-pack/plugins/enterprise_search/server/lib/crawler/fetch_crawler_multiple_schedules.ts index efc17ea6915d8..666921a950a8c 100644 --- a/x-pack/plugins/enterprise_search/server/lib/crawler/fetch_crawler_multiple_schedules.ts +++ b/x-pack/plugins/enterprise_search/server/lib/crawler/fetch_crawler_multiple_schedules.ts @@ -24,3 +24,14 @@ export const fetchCrawlerCustomSchedulingByIndexName = async ( const result = crawlerResult.hits.hits[0]?._source; return result; }; + +export const fetchCrawlerCustomSchedulingKeysByIndexName = async ( + client: IScopedClusterClient, + indexName: string +): Promise => { + const crawlerCustomSchedules = await fetchCrawlerCustomSchedulingByIndexName(client, indexName); + + return crawlerCustomSchedules?.custom_scheduling + ? Object.keys(crawlerCustomSchedules.custom_scheduling) + : []; +}; diff --git a/x-pack/plugins/enterprise_search/server/lib/crawler/post_crawler_multiple_schedules.ts b/x-pack/plugins/enterprise_search/server/lib/crawler/post_crawler_multiple_schedules.ts index b05077e26821b..21d9f8b558800 100644 --- a/x-pack/plugins/enterprise_search/server/lib/crawler/post_crawler_multiple_schedules.ts +++ b/x-pack/plugins/enterprise_search/server/lib/crawler/post_crawler_multiple_schedules.ts @@ -15,6 +15,7 @@ import { CrawlerCustomScheduleServer, } from '../../../common/types/crawler'; +import { fetchCrawlerCustomSchedulingKeysByIndexName } from './fetch_crawler_multiple_schedules'; import { fetchCrawlerDocumentIdByIndexName } from './fetch_crawlers'; const convertCustomScheduleMappingClientToServer = ( @@ -64,12 +65,37 @@ export const postCrawlerCustomScheduling = async ( customSchedules: CrawlerCustomScheduleMappingClient ) => { const connectorId = await fetchCrawlerDocumentIdByIndexName(client, indexName); - const convertCustomSchedulesServer = convertCustomScheduleMappingClientToServer(customSchedules); + const customSchedulingPayload = convertCustomScheduleMappingClientToServer(customSchedules); + + const existingCustomScheduleKeys = await fetchCrawlerCustomSchedulingKeysByIndexName( + client, + indexName + ); + const newCustomScheduleKeys = Array.from(customSchedulingPayload.keys()); + const scheduleKeysToDelete = existingCustomScheduleKeys.filter( + (key) => !newCustomScheduleKeys.includes(key) + ); + + // Handle deleted schedules + if (scheduleKeysToDelete.length > 0) { + const scriptSource = scheduleKeysToDelete + .map((scheduleKey) => `ctx._source['custom_scheduling'].remove('${scheduleKey}');`) + .join(' '); + + await client.asCurrentUser.update({ + index: CONNECTORS_INDEX, + id: connectorId, + script: { + source: scriptSource, + }, + }); + } + return await client.asCurrentUser.update({ index: CONNECTORS_INDEX, id: connectorId, doc: { - custom_scheduling: Object.fromEntries(convertCustomSchedulesServer), + custom_scheduling: Object.fromEntries(customSchedulingPayload), }, }); }; diff --git a/x-pack/plugins/enterprise_search/server/lib/indices/delete_access_control_index.ts b/x-pack/plugins/enterprise_search/server/lib/indices/delete_access_control_index.ts index 8e4cba7351f69..1937df11b912c 100644 --- a/x-pack/plugins/enterprise_search/server/lib/indices/delete_access_control_index.ts +++ b/x-pack/plugins/enterprise_search/server/lib/indices/delete_access_control_index.ts @@ -8,12 +8,14 @@ import { IScopedClusterClient } from '@kbn/core/server'; import { CONNECTORS_ACCESS_CONTROL_INDEX_PREFIX } from '../../../common/constants'; +import { stripSearchPrefix } from '../../../common/utils/strip_search_prefix'; + import { isIndexNotFoundException } from '../../utils/identify_exceptions'; export const deleteAccessControlIndex = async (client: IScopedClusterClient, index: string) => { try { return await client.asCurrentUser.indices.delete({ - index: index.replace('search-', CONNECTORS_ACCESS_CONTROL_INDEX_PREFIX), + index: stripSearchPrefix(index, CONNECTORS_ACCESS_CONTROL_INDEX_PREFIX), }); } catch (e) { // Gracefully exit if index not found. This is a valid case. diff --git a/x-pack/plugins/enterprise_search/server/plugin.ts b/x-pack/plugins/enterprise_search/server/plugin.ts index 041a295ff4831..779c46907338f 100644 --- a/x-pack/plugins/enterprise_search/server/plugin.ts +++ b/x-pack/plugins/enterprise_search/server/plugin.ts @@ -15,6 +15,8 @@ import { IRouter, KibanaRequest, DEFAULT_APP_CATEGORIES, + IClusterClient, + CoreStart, } from '@kbn/core/server'; import { CustomIntegrationsPluginSetup } from '@kbn/custom-integrations-plugin/server'; import { DataPluginStart } from '@kbn/data-plugin/server/plugin'; @@ -49,6 +51,7 @@ import { databaseSearchGuideConfig, } from '../common/guided_onboarding/search_guide_config'; +import { ConnectorsService } from './api/connectors_service'; import { registerTelemetryUsageCollector as registerASTelemetryUsageCollector } from './collectors/app_search/telemetry'; import { registerTelemetryUsageCollector as registerESTelemetryUsageCollector } from './collectors/enterprise_search/telemetry'; import { registerTelemetryUsageCollector as registerWSTelemetryUsageCollector } from './collectors/workplace_search/telemetry'; @@ -100,6 +103,10 @@ interface PluginsStart { spaces?: SpacesPluginStart; } +export interface EnterpriseSearchPluginStart { + connectorsService: ConnectorsService; +} + export interface RouteDependencies { config: ConfigType; enterpriseSearchRequestHandler: IEnterpriseSearchRequestHandler; @@ -109,9 +116,14 @@ export interface RouteDependencies { router: IRouter; } -export class EnterpriseSearchPlugin implements Plugin { +export class EnterpriseSearchPlugin implements Plugin { private readonly config: ConfigType; private readonly logger: Logger; + private clusterClient?: IClusterClient; + /** + * Exposed services + */ + private connectorsService?: ConnectorsService; constructor(initializerContext: PluginInitializerContext) { this.config = initializerContext.config.get(); @@ -247,6 +259,7 @@ export class EnterpriseSearchPlugin implements Plugin { let savedObjectsStarted: SavedObjectsServiceStart; getStartServices().then(([coreStart]) => { + this.clusterClient = coreStart.elasticsearch.client; savedObjectsStarted = coreStart.savedObjects; if (usageCollection) { @@ -309,7 +322,26 @@ export class EnterpriseSearchPlugin implements Plugin { } } - public start() {} + public start(core: CoreStart) { + /** + * Create exposed plugin services + */ + if (!this.clusterClient) { + this.clusterClient = core.elasticsearch.client; + } + if (!this.connectorsService) { + this.connectorsService = new ConnectorsService({ + clusterClient: this.clusterClient, + http: core.http, + }); + } + if (!this.connectorsService) { + this.logger.warn('Enterprise Search connectors service has not been initialized'); + } + return Object.freeze({ + connectorsService: this.connectorsService, + }); + } public stop() {} } diff --git a/x-pack/plugins/enterprise_search/server/routes/enterprise_search/connectors.ts b/x-pack/plugins/enterprise_search/server/routes/enterprise_search/connectors.ts index 1cac51b7456cd..923009c05d098 100644 --- a/x-pack/plugins/enterprise_search/server/routes/enterprise_search/connectors.ts +++ b/x-pack/plugins/enterprise_search/server/routes/enterprise_search/connectors.ts @@ -56,7 +56,13 @@ export function registerConnectorRoutes({ router, log }: RouteDependencies) { elasticsearchErrorHandler(log, async (context, request, response) => { const { client } = (await context.core).elasticsearch; try { - const body = await addConnector(client, request.body); + const body = await addConnector(client, { + deleteExistingConnector: request.body.delete_existing_connector, + indexName: request.body.index_name, + isNative: request.body.is_native, + language: request.body.language, + serviceType: request.body.service_type, + }); return response.ok({ body }); } catch (error) { if ( diff --git a/x-pack/plugins/enterprise_search/server/routes/enterprise_search/crawler/crawler.ts b/x-pack/plugins/enterprise_search/server/routes/enterprise_search/crawler/crawler.ts index 9e4ff21888e5e..c5c45806e560f 100644 --- a/x-pack/plugins/enterprise_search/server/routes/enterprise_search/crawler/crawler.ts +++ b/x-pack/plugins/enterprise_search/server/routes/enterprise_search/crawler/crawler.ts @@ -43,11 +43,11 @@ export function registerCrawlerRoutes(routeDependencies: RouteDependencies) { }, elasticsearchErrorHandler(log, async (context, request, response) => { const connParams = { - delete_existing_connector: true, - index_name: request.body.index_name, - is_native: true, + deleteExistingConnector: true, + indexName: request.body.index_name, + isNative: true, language: request.body.language, - service_type: ENTERPRISE_SEARCH_CONNECTOR_CRAWLER_SERVICE_TYPE, + serviceType: ENTERPRISE_SEARCH_CONNECTOR_CRAWLER_SERVICE_TYPE, }; const { client } = (await context.core).elasticsearch; @@ -113,7 +113,9 @@ export function registerCrawlerRoutes(routeDependencies: RouteDependencies) { const createdConnector = await fetchConnectorByIndexName(client, request.body.index_name); if (createdConnector) { await deleteConnectorById(client, createdConnector.id); - await deleteIndex(client, createdConnector.index_name); + if (createdConnector.index_name) { + await deleteIndex(client, createdConnector.index_name); + } } throw error; diff --git a/x-pack/plugins/enterprise_search/server/utils/create_connector_document.ts b/x-pack/plugins/enterprise_search/server/utils/create_connector_document.ts index 27a7ad5d9340c..8b3883eac5be9 100644 --- a/x-pack/plugins/enterprise_search/server/utils/create_connector_document.ts +++ b/x-pack/plugins/enterprise_search/server/utils/create_connector_document.ts @@ -16,17 +16,20 @@ import { FilteringValidationState, IngestPipelineParams, } from '../../common/types/connectors'; +import { stripSearchPrefix } from '../../common/utils/strip_search_prefix'; export function createConnectorDocument({ indexName, isNative, + name, pipeline, serviceType, language, }: { - indexName: string; + indexName: string | null; isNative: boolean; language: string | null; + name?: string; pipeline?: IngestPipelineParams | null; serviceType: string | null; }): ConnectorDocument { @@ -123,7 +126,7 @@ export function createConnectorDocument({ last_sync_scheduled_at: null, last_sync_status: null, last_synced: null, - name: indexName.startsWith('search-') ? indexName.substring(7) : indexName, + name: name || stripSearchPrefix(indexName ?? ''), pipeline, scheduling: { access_control: { enabled: false, interval: '0 0 0 * * ?' }, diff --git a/x-pack/plugins/event_log/server/es/cluster_client_adapter.test.ts b/x-pack/plugins/event_log/server/es/cluster_client_adapter.test.ts index 6f36af2be1f78..e51108c6e701d 100644 --- a/x-pack/plugins/event_log/server/es/cluster_client_adapter.test.ts +++ b/x-pack/plugins/event_log/server/es/cluster_client_adapter.test.ts @@ -168,38 +168,17 @@ describe('buffering documents', () => { describe('doesIndexTemplateExist', () => { test('should call cluster with proper arguments', async () => { await clusterClientAdapter.doesIndexTemplateExist('foo'); - expect(clusterClient.indices.existsTemplate).toHaveBeenCalledWith({ + expect(clusterClient.indices.existsIndexTemplate).toHaveBeenCalledWith({ name: 'foo', }); }); - test('should return true when call cluster to legacy template API returns true', async () => { - clusterClient.indices.existsTemplate.mockResponse(true); - clusterClient.indices.existsIndexTemplate.mockResponse(false); - await expect(clusterClientAdapter.doesIndexTemplateExist('foo')).resolves.toEqual(true); - }); - test('should return true when call cluster to index template API returns true', async () => { clusterClient.indices.existsTemplate.mockResponse(false); clusterClient.indices.existsIndexTemplate.mockResponse(true); await expect(clusterClientAdapter.doesIndexTemplateExist('foo')).resolves.toEqual(true); }); - test('should return false when both call cluster calls returns false', async () => { - clusterClient.indices.existsTemplate.mockResponse(false); - clusterClient.indices.existsIndexTemplate.mockResponse(false); - await expect(clusterClientAdapter.doesIndexTemplateExist('foo')).resolves.toEqual(false); - }); - - test('should throw error when call cluster to legacy template API throws an error', async () => { - clusterClient.indices.existsTemplate.mockRejectedValue(new Error('Fail')); - await expect( - clusterClientAdapter.doesIndexTemplateExist('foo') - ).rejects.toThrowErrorMatchingInlineSnapshot( - `"error checking existence of index template: Fail"` - ); - }); - test('should throw error when call cluster to index template API throws an error', async () => { clusterClient.indices.existsIndexTemplate.mockRejectedValue(new Error('Fail')); await expect( diff --git a/x-pack/plugins/event_log/server/es/cluster_client_adapter.ts b/x-pack/plugins/event_log/server/es/cluster_client_adapter.ts index 27a86b839d6c9..1eb1219621c37 100644 --- a/x-pack/plugins/event_log/server/es/cluster_client_adapter.ts +++ b/x-pack/plugins/event_log/server/es/cluster_client_adapter.ts @@ -181,9 +181,8 @@ export class ClusterClientAdapter { try { const esClient = await this.elasticsearchClientPromise; - const legacyResult = await esClient.indices.existsTemplate({ name }); const indexTemplateResult = await esClient.indices.existsIndexTemplate({ name }); - return (legacyResult as boolean) || (indexTemplateResult as boolean); + return indexTemplateResult as boolean; } catch (err) { throw new Error(`error checking existence of index template: ${err.message}`); } diff --git a/x-pack/plugins/fleet/.storybook/context/index.tsx b/x-pack/plugins/fleet/.storybook/context/index.tsx index cd89848008f98..43d3eea74df33 100644 --- a/x-pack/plugins/fleet/.storybook/context/index.tsx +++ b/x-pack/plugins/fleet/.storybook/context/index.tsx @@ -16,6 +16,8 @@ import { I18nProvider } from '@kbn/i18n-react'; import { CoreScopedHistory } from '@kbn/core/public'; import { getStorybookContextProvider } from '@kbn/custom-integrations-plugin/storybook'; +import type { DashboardStart } from '@kbn/dashboard-plugin/public'; + import { IntegrationsAppContext } from '../../public/applications/integrations/app'; import type { FleetConfigType, FleetStartServices } from '../../public/plugin'; import { ExperimentalFeaturesService } from '../../public/services'; @@ -76,6 +78,7 @@ export const StorybookContext: React.FC<{ storyContext?: Parameters languageClientsUiComponents: {}, }, customBranding: getCustomBranding(), + dashboard: {} as unknown as DashboardStart, docLinks: getDocLinks(), http: getHttp(), i18n: { diff --git a/x-pack/plugins/fleet/common/experimental_features.ts b/x-pack/plugins/fleet/common/experimental_features.ts index cfdb8cf5fd26b..39d7b998953fb 100644 --- a/x-pack/plugins/fleet/common/experimental_features.ts +++ b/x-pack/plugins/fleet/common/experimental_features.ts @@ -46,6 +46,7 @@ export const parseExperimentalConfigValue = (configValue: string[]): Experimenta throw new FleetInvalidExperimentalValue(`[${value}] is not a supported experimental feature`); } + // @ts-expect-error ts upgrade v4.7.4 enabledFeatures[value as keyof ExperimentalFeatures] = true; } diff --git a/x-pack/plugins/fleet/common/types/models/agent_policy.ts b/x-pack/plugins/fleet/common/types/models/agent_policy.ts index 4268bcca3b042..919d67392770d 100644 --- a/x-pack/plugins/fleet/common/types/models/agent_policy.ts +++ b/x-pack/plugins/fleet/common/types/models/agent_policy.ts @@ -13,6 +13,8 @@ import type { Output } from './output'; export type AgentPolicyStatus = typeof agentPolicyStatuses; +// adding a property here? If it should be cloned when duplicating a policy, add it to `agentPolicyService.copy` +// x-pack/plugins/fleet/server/services/agent_policy.ts#L571 export interface NewAgentPolicy { id?: string; name: string; diff --git a/x-pack/plugins/fleet/kibana.jsonc b/x-pack/plugins/fleet/kibana.jsonc index f0b01080db22d..b9f892ba4809d 100644 --- a/x-pack/plugins/fleet/kibana.jsonc +++ b/x-pack/plugins/fleet/kibana.jsonc @@ -23,7 +23,8 @@ "taskManager", "guidedOnboarding", "files", - "uiActions" + "uiActions", + "dashboard" ], "optionalPlugins": [ "features", diff --git a/x-pack/plugins/fleet/public/applications/fleet/components/fleet_server_instructions/utils/install_command_utils.ts b/x-pack/plugins/fleet/public/applications/fleet/components/fleet_server_instructions/utils/install_command_utils.ts index b528c5092ea14..ff69a3b4f5edd 100644 --- a/x-pack/plugins/fleet/public/applications/fleet/components/fleet_server_instructions/utils/install_command_utils.ts +++ b/x-pack/plugins/fleet/public/applications/fleet/components/fleet_server_instructions/utils/install_command_utils.ts @@ -52,9 +52,6 @@ function getArtifact(platform: PLATFORM_TYPE, kibanaVersion: string) { kubernetes: { downloadCommand: '', }, - googleCloudShell: { - downloadCommand: '', - }, }; return artifactMap[platform]; diff --git a/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/components/agent_policy_advanced_fields/index.test.tsx b/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/components/agent_policy_advanced_fields/index.test.tsx index fe21159ab347b..ceea82434e1e1 100644 --- a/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/components/agent_policy_advanced_fields/index.test.tsx +++ b/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/components/agent_policy_advanced_fields/index.test.tsx @@ -54,6 +54,7 @@ describe('Agent policy advanced options content', () => { // remove when feature flag is removed ExperimentalFeaturesService.init({ ...allowedExperimentalValues, + // @ts-expect-error ts upgrade v4.7.4 agentTamperProtectionEnabled: true, }); diff --git a/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/list_page/index.test.tsx b/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/list_page/index.test.tsx index 1958db916a402..97ec62dce1d87 100644 --- a/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/list_page/index.test.tsx +++ b/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/list_page/index.test.tsx @@ -40,6 +40,7 @@ describe('AgentPolicyListPage', () => { // todo: this can be removed when agentTamperProtectionEnabled feature flag is enabled/deleted ExperimentalFeaturesService.init({ ...allowedExperimentalValues, + // @ts-expect-error ts upgrade v4.7.4 agentTamperProtectionEnabled: true, }); diff --git a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/agent_list_table.tsx b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/agent_list_table.tsx index 294b3a69644c4..8709d0fc9adcf 100644 --- a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/agent_list_table.tsx +++ b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/agent_list_table.tsx @@ -180,9 +180,11 @@ export const AgentListTable: React.FC = (props: Props) => { const showWarning = agent.policy_revision && agentPolicy?.revision > agent.policy_revision; return ( - + {agentPolicy && ( - + + + )} {showWarning && ( @@ -191,7 +193,7 @@ export const AgentListTable: React.FC = (props: Props) => {   diff --git a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/dashboards_buttons.tsx b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/dashboards_buttons.tsx index e42dfd997d241..25c394e2606b0 100644 --- a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/dashboards_buttons.tsx +++ b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/dashboards_buttons.tsx @@ -5,13 +5,37 @@ * 2.0. */ -import React from 'react'; +import React, { useEffect } from 'react'; import { EuiFlexGroup, EuiFlexItem, EuiButtonEmpty } from '@elastic/eui'; import { FormattedMessage } from '@kbn/i18n-react'; import { DASHBOARD_LOCATORS_IDS } from '../../../../../../../common/constants'; -import { useDashboardLocator } from '../../../../hooks'; +import { useDashboardLocator, useStartServices } from '../../../../hooks'; + +const useDashboardExists = (dashboardId: string) => { + const [dashboardExists, setDashboardExists] = React.useState(false); + const [loading, setLoading] = React.useState(true); + const { dashboard: dashboardPlugin } = useStartServices(); + + useEffect(() => { + const fetchDashboard = async () => { + try { + const findDashboardsService = await dashboardPlugin.findDashboardsService(); + const [dashboard] = await findDashboardsService.findByIds([dashboardId]); + setLoading(false); + setDashboardExists(dashboard?.status === 'success'); + } catch (e) { + setLoading(false); + setDashboardExists(false); + } + }; + + fetchDashboard(); + }, [dashboardId, dashboardPlugin]); + + return { dashboardExists, loading }; +}; export const DashboardsButtons: React.FunctionComponent = () => { const dashboardLocator = useDashboardLocator(); @@ -20,6 +44,14 @@ export const DashboardsButtons: React.FunctionComponent = () => { return dashboardLocator?.getRedirectUrl({ dashboardId }) || ''; }; + const { dashboardExists, loading: dashboardLoading } = useDashboardExists( + DASHBOARD_LOCATORS_IDS.ELASTIC_AGENT_OVERVIEW + ); + + if (dashboardLoading || !dashboardExists) { + return null; + } + return ( <> diff --git a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/search_and_filter_bar.tsx b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/search_and_filter_bar.tsx index 437f982bed706..27b62d54bd789 100644 --- a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/search_and_filter_bar.tsx +++ b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/search_and_filter_bar.tsx @@ -22,6 +22,8 @@ import { import { FormattedMessage } from '@kbn/i18n-react'; import styled from 'styled-components'; +import { useIsFirstTimeAgentUserQuery } from '../../../../../integrations/sections/epm/screens/detail/hooks'; + import type { Agent, AgentPolicy } from '../../../../types'; import { SearchBar } from '../../../../components'; import { AGENTS_INDEX, AGENTS_PREFIX } from '../../../../constants'; @@ -94,6 +96,8 @@ export const SearchAndFilterBar: React.FunctionComponent { const { euiTheme } = useEuiTheme(); const { isFleetServerStandalone } = useFleetServerStandalone(); + const { isFirstTimeAgentUser, isLoading: isFirstTimeAgentUserLoading } = + useIsFirstTimeAgentUserQuery(); const showAddFleetServerBtn = !isFleetServerStandalone; // Policies state for filtering @@ -126,7 +130,9 @@ export const SearchAndFilterBar: React.FunctionComponent {/* Top Buttons and Links */} - {totalAgents > 0 && } + + {!isFirstTimeAgentUserLoading && !isFirstTimeAgentUser && } + { // todo: this can be removed when agentTamperProtectionEnabled feature flag is enabled/deleted ExperimentalFeaturesService.init({ ...allowedExperimentalValues, + // @ts-expect-error ts upgrade v4.7.4 agentTamperProtectionEnabled: true, }); diff --git a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/index.test.tsx b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/index.test.tsx index 93a33672333e6..f6c850b759d56 100644 --- a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/index.test.tsx +++ b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/index.test.tsx @@ -67,15 +67,20 @@ describe('when on integration detail', () => { }); describe('and the package is installed', () => { - beforeEach(async () => await render()); + beforeEach(async () => { + await render(); + await act(() => mockedApi.waitForApi()); + // All those waitForApi call are needed to avoid flakyness because details conditionnaly refetch multiple time + await act(() => mockedApi.waitForApi()); + await act(() => mockedApi.waitForApi()); + await act(() => mockedApi.waitForApi()); + }); it('should display agent policy usage count', async () => { - await act(() => mockedApi.waitForApi()); expect(renderResult.queryByTestId('agentPolicyCount')).not.toBeNull(); }); it('should show the Policies tab', async () => { - await act(() => mockedApi.waitForApi()); expect(renderResult.queryByTestId('tab-policies')).not.toBeNull(); }); }); @@ -95,32 +100,32 @@ describe('when on integration detail', () => { }); } - // FLAKY: https://github.com/elastic/kibana/issues/150607 - describe.skip('and the package is not installed and prerelease enabled', () => { + describe('and the package is not installed and prerelease enabled', () => { beforeEach(async () => { mockGAAndPrereleaseVersions('1.0.0-beta'); await render(); + await act(() => mockedApi.waitForApi()); + // All those waitForApi call are needed to avoid flakyness because details conditionnaly refetch multiple time + await act(() => mockedApi.waitForApi()); + await act(() => mockedApi.waitForApi()); + await act(() => mockedApi.waitForApi()); }); it('should NOT display agent policy usage count', async () => { - await mockedApi.waitForApi(); expect(renderResult.queryByTestId('agentPolicyCount')).toBeNull(); }); it('should NOT display the Policies tab', async () => { - await mockedApi.waitForApi(); expect(renderResult.queryByTestId('tab-policies')).toBeNull(); }); it('should display version select if prerelease setting enabled and prererelase version available', async () => { - await mockedApi.waitForApi(); const versionSelect = renderResult.queryByTestId('versionSelect'); expect(versionSelect?.textContent).toEqual('1.0.0-beta1.0.0'); expect((versionSelect as any)?.value).toEqual('1.0.0-beta'); }); it('should display prerelease callout if prerelease setting enabled and prerelease version available', async () => { - await mockedApi.waitForApi(); const calloutTitle = renderResult.getByTestId('prereleaseCallout'); expect(calloutTitle).toBeInTheDocument(); const calloutGABtn = renderResult.getByTestId('switchToGABtn'); @@ -137,20 +142,22 @@ describe('when on integration detail', () => { item: { prerelease_integrations_enabled: false, id: '', fleet_server_hosts: [] }, }); await render(); + await act(() => mockedApi.waitForApi()); + // All those waitForApi call are needed to avoid flakyness because details conditionnaly refetch multiple time + await act(() => mockedApi.waitForApi()); + await act(() => mockedApi.waitForApi()); + await act(() => mockedApi.waitForApi()); }); it('should NOT display agent policy usage count', async () => { - await mockedApi.waitForApi(); expect(renderResult.queryByTestId('agentPolicyCount')).toBeNull(); }); it('should NOT display the Policies tab', async () => { - await mockedApi.waitForApi(); expect(renderResult.queryByTestId('tab-policies')).toBeNull(); }); it('should display version text and no callout if prerelease setting disabled', async () => { - await mockedApi.waitForApi(); expect((renderResult.queryByTestId('versionText') as any)?.textContent).toEqual('1.0.0'); expect(renderResult.queryByTestId('prereleaseCallout')).toBeNull(); }); @@ -159,6 +166,11 @@ describe('when on integration detail', () => { describe('and a custom UI extension is NOT registered', () => { beforeEach(async () => { await render(); + await act(() => mockedApi.waitForApi()); + // All those waitForApi call are needed to avoid flakyness because details conditionnaly refetch multiple time + await act(() => mockedApi.waitForApi()); + await act(() => mockedApi.waitForApi()); + await act(() => mockedApi.waitForApi()); }); it('should show overview and settings tabs', () => { diff --git a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/overview/readme.tsx b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/overview/readme.tsx index 52b4f8fbe4fdc..674d59661e347 100644 --- a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/overview/readme.tsx +++ b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/overview/readme.tsx @@ -5,7 +5,7 @@ * 2.0. */ -import { EuiText, EuiSkeletonText } from '@elastic/eui'; +import { EuiText, EuiSkeletonText, EuiSpacer } from '@elastic/eui'; import React, { Fragment, useEffect, useState } from 'react'; import ReactMarkdown from 'react-markdown'; import remarkGfm from 'remark-gfm'; @@ -56,15 +56,11 @@ export function Readme({ ) : ( {/* simulates a long page of text loading */} -

    - -

    -

    - -

    -

    - -

    + + + + +
    )} diff --git a/x-pack/plugins/fleet/public/components/agent_enrollment_flyout/steps/compute_steps.tsx b/x-pack/plugins/fleet/public/components/agent_enrollment_flyout/steps/compute_steps.tsx index a750fa48aae7f..08c967e98e04f 100644 --- a/x-pack/plugins/fleet/public/components/agent_enrollment_flyout/steps/compute_steps.tsx +++ b/x-pack/plugins/fleet/public/components/agent_enrollment_flyout/steps/compute_steps.tsx @@ -37,6 +37,7 @@ import { AgentEnrollmentConfirmationStep, InstallManagedAgentStep, InstallCloudFormationManagedAgentStep, + InstallGoogleCloudShellManagedAgentStep, IncomingDataConfirmationStep, } from '.'; @@ -255,6 +256,15 @@ export const ManagedSteps: React.FunctionComponent = ({ cloudSecurityIntegration, }) ); + } else if (cloudSecurityIntegration?.cloudShellUrl) { + steps.push( + InstallGoogleCloudShellManagedAgentStep({ + apiKeyData, + selectedApiKeyId, + cloudShellUrl: cloudSecurityIntegration.cloudShellUrl, + cloudShellCommand: installManagedCommands.googleCloudShell, + }) + ); } else { steps.push( InstallManagedAgentStep({ diff --git a/x-pack/plugins/fleet/public/components/agent_enrollment_flyout/steps/index.tsx b/x-pack/plugins/fleet/public/components/agent_enrollment_flyout/steps/index.tsx index 1793a1b602e7e..8c9adb376f423 100644 --- a/x-pack/plugins/fleet/public/components/agent_enrollment_flyout/steps/index.tsx +++ b/x-pack/plugins/fleet/public/components/agent_enrollment_flyout/steps/index.tsx @@ -11,6 +11,7 @@ export * from './agent_policy_selection_step'; export * from './configure_standalone_agent_step'; export * from './incoming_data_confirmation_step'; export * from './install_cloud_formation_managed_agent_step'; +export * from './install_google_cloud_shell_managed_agent_step'; export * from './install_managed_agent_step'; export * from './install_standalone_agent_step'; export * from './installation_mode_selection_step'; diff --git a/x-pack/plugins/fleet/public/components/agent_enrollment_flyout/steps/install_google_cloud_shell_managed_agent_step.tsx b/x-pack/plugins/fleet/public/components/agent_enrollment_flyout/steps/install_google_cloud_shell_managed_agent_step.tsx new file mode 100644 index 0000000000000..ff367be9125fd --- /dev/null +++ b/x-pack/plugins/fleet/public/components/agent_enrollment_flyout/steps/install_google_cloud_shell_managed_agent_step.tsx @@ -0,0 +1,49 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; + +import { i18n } from '@kbn/i18n'; + +import type { EuiContainedStepProps } from '@elastic/eui/src/components/steps/steps'; + +import type { GetOneEnrollmentAPIKeyResponse } from '../../../../common/types/rest_spec/enrollment_api_key'; + +import { GoogleCloudShellInstructions } from '../google_cloud_shell_instructions'; + +export const InstallGoogleCloudShellManagedAgentStep = ({ + selectedApiKeyId, + apiKeyData, + isComplete, + cloudShellUrl, + cloudShellCommand, +}: { + selectedApiKeyId?: string; + apiKeyData?: GetOneEnrollmentAPIKeyResponse | null; + isComplete?: boolean; + cloudShellUrl?: string | undefined; + cloudShellCommand?: string; +}): EuiContainedStepProps => { + const nonCompleteStatus = selectedApiKeyId ? undefined : 'disabled'; + const status = isComplete ? 'complete' : nonCompleteStatus; + + return { + status, + title: i18n.translate('xpack.fleet.agentEnrollment.cloudShell.stepEnrollAndRunAgentTitle', { + defaultMessage: 'Install Elastic Agent on your cloud', + }), + children: + selectedApiKeyId && apiKeyData && cloudShellUrl ? ( + + ) : ( + + ), + }; +}; diff --git a/x-pack/plugins/fleet/public/components/enrollment_instructions/install_section.tsx b/x-pack/plugins/fleet/public/components/enrollment_instructions/install_section.tsx index 5c236e4aa7c09..b4f90212d8625 100644 --- a/x-pack/plugins/fleet/public/components/enrollment_instructions/install_section.tsx +++ b/x-pack/plugins/fleet/public/components/enrollment_instructions/install_section.tsx @@ -44,7 +44,6 @@ export const InstallSection: React.FunctionComponent = ({ windowsCommand={installCommand.windows} linuxDebCommand={installCommand.deb} linuxRpmCommand={installCommand.rpm} - googleCloudShellCommand={installCommand.googleCloudShell} k8sCommand={installCommand.kubernetes} hasK8sIntegration={isK8s === 'IS_KUBERNETES' || isK8s === 'IS_KUBERNETES_MULTIPAGE'} cloudSecurityIntegration={cloudSecurityIntegration} diff --git a/x-pack/plugins/fleet/public/components/enrollment_instructions/manual/index.tsx b/x-pack/plugins/fleet/public/components/enrollment_instructions/manual/index.tsx index ce3015dd2ccbd..ceda8b4c68905 100644 --- a/x-pack/plugins/fleet/public/components/enrollment_instructions/manual/index.tsx +++ b/x-pack/plugins/fleet/public/components/enrollment_instructions/manual/index.tsx @@ -64,7 +64,7 @@ sudo elastic-agent enroll ${enrollArgs} \nsudo systemctl enable elastic-agent \n sudo rpm -vi elastic-agent-${kibanaVersion}-x86_64.rpm sudo elastic-agent enroll ${enrollArgs} \nsudo systemctl enable elastic-agent \nsudo systemctl start elastic-agent`; - const googleCloudShellCommand = `FLEET_URL=${fleetServerUrl} ENROLLMENT_TOKEN=${enrollmentToken} STACK_VERSION=${kibanaVersion} ./deploy.sh`; + const googleCloudShellCommand = `gcloud config set project && \nFLEET_URL=${fleetServerUrl} ENROLLMENT_TOKEN=${enrollmentToken} STACK_VERSION=${kibanaVersion} ./deploy.sh`; return { linux: linuxCommand, diff --git a/x-pack/plugins/fleet/public/components/enrollment_instructions/standalone/index.tsx b/x-pack/plugins/fleet/public/components/enrollment_instructions/standalone/index.tsx index ca2754daf1b71..6994cf2a7ebc2 100644 --- a/x-pack/plugins/fleet/public/components/enrollment_instructions/standalone/index.tsx +++ b/x-pack/plugins/fleet/public/components/enrollment_instructions/standalone/index.tsx @@ -38,6 +38,5 @@ cd elastic-agent-${kibanaVersion}-windows-x86_64 deb: linuxDebCommand, rpm: linuxRpmCommand, kubernetes: k8sCommand, - googleCloudShell: '', }; }; diff --git a/x-pack/plugins/fleet/public/components/google_cloud_shell_guide.tsx b/x-pack/plugins/fleet/public/components/google_cloud_shell_guide.tsx index 0efe5719e3166..89b490f2d0967 100644 --- a/x-pack/plugins/fleet/public/components/google_cloud_shell_guide.tsx +++ b/x-pack/plugins/fleet/public/components/google_cloud_shell_guide.tsx @@ -26,7 +26,7 @@ const Link = ({ children, url }: { children: React.ReactNode; url: string }) => export const GoogleCloudShellGuide = (props: { commandText: string }) => { return ( <> - +

    {

      -
    1. - -
    2. <> @@ -67,7 +61,7 @@ export const GoogleCloudShellGuide = (props: { commandText: string }) => {
    diff --git a/x-pack/plugins/fleet/public/components/platform_selector.tsx b/x-pack/plugins/fleet/public/components/platform_selector.tsx index a4f08c265a565..a41194b472cbd 100644 --- a/x-pack/plugins/fleet/public/components/platform_selector.tsx +++ b/x-pack/plugins/fleet/public/components/platform_selector.tsx @@ -24,15 +24,9 @@ import { FLEET_CLOUD_SECURITY_POSTURE_CSPM_POLICY_TEMPLATE, } from '../../common/constants/epm'; import { type PLATFORM_TYPE } from '../hooks'; -import { - REDUCED_PLATFORM_OPTIONS, - PLATFORM_OPTIONS, - PLATFORM_OPTIONS_CLOUD_SHELL, - usePlatform, -} from '../hooks'; +import { REDUCED_PLATFORM_OPTIONS, PLATFORM_OPTIONS, usePlatform } from '../hooks'; import { KubernetesInstructions } from './agent_enrollment_flyout/kubernetes_instructions'; -import { GoogleCloudShellInstructions } from './agent_enrollment_flyout/google_cloud_shell_instructions'; import type { CloudSecurityIntegration } from './agent_enrollment_flyout/types'; interface Props { @@ -42,7 +36,6 @@ interface Props { linuxDebCommand: string; linuxRpmCommand: string; k8sCommand: string; - googleCloudShellCommand?: string | undefined; hasK8sIntegration: boolean; cloudSecurityIntegration?: CloudSecurityIntegration | undefined; hasK8sIntegrationMultiPage: boolean; @@ -65,7 +58,6 @@ export const PlatformSelector: React.FunctionComponent = ({ linuxDebCommand, linuxRpmCommand, k8sCommand, - googleCloudShellCommand, hasK8sIntegration, cloudSecurityIntegration, hasK8sIntegrationMultiPage, @@ -76,9 +68,6 @@ export const PlatformSelector: React.FunctionComponent = ({ onCopy, }) => { const getInitialPlatform = useCallback(() => { - if (cloudSecurityIntegration?.cloudShellUrl) { - return 'googleCloudShell'; - } if ( hasK8sIntegration || (cloudSecurityIntegration?.integrationType === @@ -88,12 +77,7 @@ export const PlatformSelector: React.FunctionComponent = ({ return 'kubernetes'; return 'linux'; - }, [ - hasK8sIntegration, - cloudSecurityIntegration?.integrationType, - isManaged, - cloudSecurityIntegration?.cloudShellUrl, - ]); + }, [hasK8sIntegration, cloudSecurityIntegration?.integrationType, isManaged]); const { platform, setPlatform } = usePlatform(getInitialPlatform()); @@ -104,12 +88,9 @@ export const PlatformSelector: React.FunctionComponent = ({ const getPlatformOptions = useCallback(() => { const platformOptions = isReduced ? REDUCED_PLATFORM_OPTIONS : PLATFORM_OPTIONS; - const platformOptionsWithCloudShell = cloudSecurityIntegration?.cloudShellUrl - ? PLATFORM_OPTIONS_CLOUD_SHELL - : platformOptions; - return platformOptionsWithCloudShell; - }, [isReduced, cloudSecurityIntegration?.cloudShellUrl]); + return platformOptions; + }, [isReduced]); const [copyButtonClicked, setCopyButtonClicked] = useState(false); @@ -164,7 +145,6 @@ export const PlatformSelector: React.FunctionComponent = ({ deb: linuxDebCommand, rpm: linuxRpmCommand, kubernetes: k8sCommand, - googleCloudShell: k8sCommand, }; const onTextAreaClick = () => { if (onCopy) onCopy(); @@ -229,15 +209,6 @@ export const PlatformSelector: React.FunctionComponent = ({ )} - {platform === 'googleCloudShell' && isManaged && ( - <> - - - - )} {!hasK8sIntegrationMultiPage && ( <> {platform === 'kubernetes' && ( @@ -250,19 +221,18 @@ export const PlatformSelector: React.FunctionComponent = ({
    )} - {platform !== 'googleCloudShell' && ( - - {commandsByPlatform[platform]} - - )} + + + {commandsByPlatform[platform]} + {fullCopyButton && ( diff --git a/x-pack/plugins/fleet/public/hooks/use_platform.tsx b/x-pack/plugins/fleet/public/hooks/use_platform.tsx index 7a5a4aae323b3..94362a5c5ed7d 100644 --- a/x-pack/plugins/fleet/public/hooks/use_platform.tsx +++ b/x-pack/plugins/fleet/public/hooks/use_platform.tsx @@ -8,14 +8,7 @@ import { useState } from 'react'; import { i18n } from '@kbn/i18n'; -export type PLATFORM_TYPE = - | 'linux' - | 'mac' - | 'windows' - | 'rpm' - | 'deb' - | 'kubernetes' - | 'googleCloudShell'; +export type PLATFORM_TYPE = 'linux' | 'mac' | 'windows' | 'rpm' | 'deb' | 'kubernetes'; export const REDUCED_PLATFORM_OPTIONS: Array<{ label: string; diff --git a/x-pack/plugins/fleet/public/mock/fleet_start_services.tsx b/x-pack/plugins/fleet/public/mock/fleet_start_services.tsx index 86816e296dde3..aea31e42d517a 100644 --- a/x-pack/plugins/fleet/public/mock/fleet_start_services.tsx +++ b/x-pack/plugins/fleet/public/mock/fleet_start_services.tsx @@ -90,6 +90,7 @@ export const createStartServices = (basePath: string = '/mock'): MockedFleetStar ...cloudStart, ...cloudSetup, }, + dashboard: {} as unknown as MockedFleetStartServices['dashboard'], storage: new Storage(createMockStore()) as jest.Mocked, authz: fleetAuthzMock, guidedOnboarding: guidedOnboardingMock.createStart(), diff --git a/x-pack/plugins/fleet/public/plugin.ts b/x-pack/plugins/fleet/public/plugin.ts index bc35914238b58..ecef1c469e954 100644 --- a/x-pack/plugins/fleet/public/plugin.ts +++ b/x-pack/plugins/fleet/public/plugin.ts @@ -49,6 +49,8 @@ import type { SendRequestResponse } from '@kbn/es-ui-shared-plugin/public'; import type { UnifiedSearchPublicPluginStart } from '@kbn/unified-search-plugin/public'; import type { GuidedOnboardingPluginStart } from '@kbn/guided-onboarding-plugin/public'; +import type { DashboardStart } from '@kbn/dashboard-plugin/public'; + import { PLUGIN_ID, INTEGRATIONS_PLUGIN_ID, setupRouteService, appRoutesService } from '../common'; import { calculateAuthz, calculatePackagePrivilegesFromCapabilities } from '../common/authz'; import { parseExperimentalConfigValue } from '../common/experimental_features'; @@ -115,6 +117,7 @@ export interface FleetSetupDeps { export interface FleetStartDeps { licensing: LicensingPluginStart; data: DataPublicPluginStart; + dashboard: DashboardStart; dataViews: DataViewsPublicPluginStart; unifiedSearch: UnifiedSearchPublicPluginStart; navigation: NavigationPublicPluginStart; @@ -128,6 +131,7 @@ export interface FleetStartDeps { export interface FleetStartServices extends CoreStart, Exclude { storage: Storage; share: SharePluginStart; + dashboard: DashboardStart; cloud?: CloudSetup & CloudStart; discover?: DiscoverStart; spaces?: SpacesPluginStart; diff --git a/x-pack/plugins/fleet/scripts/create_agents/create_agents.ts b/x-pack/plugins/fleet/scripts/create_agents/create_agents.ts index 4436c07cc07b9..d8dc5bc4ba13e 100644 --- a/x-pack/plugins/fleet/scripts/create_agents/create_agents.ts +++ b/x-pack/plugins/fleet/scripts/create_agents/create_agents.ts @@ -8,6 +8,7 @@ import fetch from 'node-fetch'; import { ToolingLog } from '@kbn/tooling-log'; import { v4 as uuidv4 } from 'uuid'; import yargs from 'yargs'; +import { omit } from 'lodash'; import type { AgentStatus } from '../../common'; import type { Agent } from '../../common'; @@ -27,6 +28,7 @@ const printUsage = () => [--password]: password for kibana, defaults to changeme [--batches]: run the script in batches, defaults to 1 e.g if count is 50 and batches is 10, 500 agents will be created and 10 agent policies [--concurrentBatches]: how many batches to run concurrently, defaults to 10 + [--outdated]: agents will show as outdated (their revision is below the policies), defaults to false `); const DEFAULT_KIBANA_URL = 'http://localhost:5601'; @@ -51,7 +53,8 @@ const { agentVersion: agentVersionArg, username: kbnUsername = DEFAULT_KIBANA_USERNAME, password: kbnPassword = DEFAULT_KIBANA_PASSWORD, - batches: batchesArg, + batches: batchesArg = 1, + outdated: outdatedArg = false, concurrentBatches: concurrentBatchesArg = 10, // ignore yargs positional args, we only care about named args _, @@ -133,10 +136,12 @@ function createAgentWithStatus({ policyId, status, version, + hostname, }: { policyId: string; status: AgentStatus; version: string; + hostname: string; }) { const baseAgent = { access_api_key_id: 'api-key-1', @@ -153,7 +158,7 @@ function createAgentWithStatus({ version, }, }, - host: { hostname: uuidv4() }, + host: { hostname }, }, user_provided_metadata: {}, enrolled_at: new Date().toISOString(), @@ -167,7 +172,8 @@ function createAgentWithStatus({ function createAgentsWithStatuses( statusMap: Partial<{ [status in AgentStatus]: number }>, policyId: string, - version: string + version: string, + namePrefix?: string ) { // loop over statuses and create agents with that status const agents = []; @@ -176,13 +182,35 @@ function createAgentsWithStatuses( const currentAgentStatus = currentStatus as AgentStatus; const statusCount = statusMap[currentAgentStatus] || 0; for (let i = 0; i < statusCount; i++) { - agents.push(createAgentWithStatus({ policyId, status: currentAgentStatus, version })); + const hostname = `${namePrefix ? namePrefix + '-' : ''}${currentAgentStatus}-${i}`; + agents.push( + createAgentWithStatus({ policyId, status: currentAgentStatus, version, hostname }) + ); } } return agents; } +async function getAgentPolicy(id: string) { + const res = await fetch(`${kibanaUrl}/api/fleet/agent_policies/${id}`, { + method: 'get', + headers: { + Authorization: kbnAuth, + 'Content-Type': 'application/json', + 'kbn-xsrf': 'kibana', + 'x-elastic-product-origin': 'fleet', + }, + }); + const data = await res.json(); + + if (!data.item) { + logger.error('Agent policy not found, API response: ' + JSON.stringify(data)); + process.exit(1); + } + return data; +} + async function deleteAgents() { const auth = 'Basic ' + Buffer.from(ES_SUPERUSER + ':' + ES_PASSWORD).toString('base64'); const res = await fetch(`${ES_URL}/.fleet-agents/_delete_by_query`, { @@ -256,12 +284,12 @@ async function createSuperUser() { return { role, user }; } -async function createAgentPolicy(id: string) { +async function createAgentPolicy(id: string, name: string) { const res = await fetch(`${kibanaUrl}/api/fleet/agent_policies`, { method: 'post', body: JSON.stringify({ id, - name: id, + name, namespace: 'default', description: '', monitoring_enabled: ['logs', 'metrics'], @@ -277,12 +305,56 @@ async function createAgentPolicy(id: string) { const data = await res.json(); if (!data.item) { + if (data.message.includes('already exists')) { + // use regex to get the id from the error message, id is the first string in single quotes + const idRegex = /'([^']+)'/; + const idMatch = data.message.match(idRegex); + if (!idMatch || !idMatch[1]) { + logger.error('Cannot extract id from error message, API response: ' + JSON.stringify(data)); + process.exit(1); + } + logger.info(`Agent policy ${idMatch[1]} already exists, using existing policy`); + return getAgentPolicy(idMatch![1]); + } logger.error('Agent policy not created, API response: ' + JSON.stringify(data)); process.exit(1); } return data; } +async function bumpAgentPolicyRevision(id: string, policy: any) { + const res = await fetch(`${kibanaUrl}/api/fleet/agent_policies/${id}`, { + method: 'put', + body: JSON.stringify({ + ...omit(policy, [ + 'id', + 'updated_at', + 'updated_by', + 'revision', + 'status', + 'schema_version', + 'package_policies', + 'agents', + ]), + monitoring_enabled: ['logs'], // change monitoring to add a revision + }), + headers: { + Authorization: kbnAuth, + 'Content-Type': 'application/json', + 'kbn-xsrf': 'kibana', + 'x-elastic-product-origin': 'fleet', + }, + }); + + const data = await res.json(); + + if (!data.item) { + logger.error('Agent policy not updated, API response: ' + JSON.stringify(data)); + process.exit(1); + } + return data; +} + function logStatusMap(statusMap: Partial<{ [status in AgentStatus]: number }>) { const statuses = Object.keys(statusMap); logger.info( @@ -337,14 +409,24 @@ export async function run() { Array(currentBatchSize) .fill(0) .map(async (__, i) => { - const agentPolicyId = uuidv4(); - const agentPolicy = await createAgentPolicy(agentPolicyId); + let agentPolicyId = uuidv4(); + const agentPolicy = await createAgentPolicy(agentPolicyId, `Policy ${i}`); + agentPolicyId = agentPolicy.item.id; logger.info(`Created agent policy ${agentPolicy.item.id}`); const statusMap = statusesArg.reduce((acc, status) => ({ ...acc, [status]: count }), {}); logStatusMap(statusMap); - const agents = createAgentsWithStatuses(statusMap, agentPolicyId, agentVersion); + const agents = createAgentsWithStatuses( + statusMap, + agentPolicyId, + agentVersion, + i > 0 ? `batch-${i}` : undefined + ); const createRes = await createAgentDocsBulk(agents); + if (outdatedArg) { + logger.info(`Bumping agent policy revision so that agents will have outdated policies`); + bumpAgentPolicyRevision(agentPolicyId, agentPolicy.item); + } logger.info( `Batch complete, created ${createRes.items.length} agent docs, took ${createRes.took}, errors: ${createRes.errors}` ); diff --git a/x-pack/plugins/fleet/server/mocks/index.ts b/x-pack/plugins/fleet/server/mocks/index.ts index adc0ecb1931b4..1e3d0e5c52b0a 100644 --- a/x-pack/plugins/fleet/server/mocks/index.ts +++ b/x-pack/plugins/fleet/server/mocks/index.ts @@ -71,6 +71,7 @@ export const createAppContextStartContractMock = ( securitySetup: securityMock.createSetup(), securityStart: securityMock.createStart(), logger: loggingSystemMock.create().get(), + // @ts-expect-error ts upgrade v4.7.4 experimentalFeatures: { agentTamperProtectionEnabled: true, diagnosticFileUploadEnabled: true, diff --git a/x-pack/plugins/fleet/server/services/agent_policy.ts b/x-pack/plugins/fleet/server/services/agent_policy.ts index 44635eee45200..e76a8c12a94dc 100644 --- a/x-pack/plugins/fleet/server/services/agent_policy.ts +++ b/x-pack/plugins/fleet/server/services/agent_policy.ts @@ -5,7 +5,7 @@ * 2.0. */ -import { omit, isEqual, keyBy, groupBy } from 'lodash'; +import { omit, isEqual, keyBy, groupBy, pick } from 'lodash'; import { v5 as uuidv5 } from 'uuid'; import { safeDump } from 'js-yaml'; import pMap from 'p-map'; @@ -562,14 +562,22 @@ class AgentPolicyService { if (!baseAgentPolicy) { throw new Error('Agent policy not found'); } - // eslint-disable-next-line @typescript-eslint/naming-convention - const { namespace, monitoring_enabled } = baseAgentPolicy; const newAgentPolicy = await this.create( soClient, esClient, { - namespace, - monitoring_enabled, + ...pick(baseAgentPolicy, [ + 'namespace', + 'monitoring_enabled', + 'inactivity_timeout', + 'unenroll_timeout', + 'agent_features', + 'overrides', + 'data_output_id', + 'monitoring_output_id', + 'download_source_id', + 'fleet_server_host_id', + ]), ...newAgentPolicyProps, }, options diff --git a/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.test.ts b/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.test.ts index 0d12a501f86b1..06b09e15951c4 100644 --- a/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.test.ts +++ b/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.test.ts @@ -19,7 +19,7 @@ jest.mock('timers/promises', () => ({ async setTimeout() {}, })); -import { installKibanaSavedObjects } from './install'; +import { createSavedObjectKibanaAsset, installKibanaSavedObjects } from './install'; const mockLogger = loggingSystemMock.createLogger(); @@ -122,3 +122,27 @@ describe('installKibanaSavedObjects', () => { expect(mockImporter.resolveImportErrors).toHaveBeenCalledTimes(1); }); }); + +describe('createSavedObjectKibanaAsset', () => { + it('should set migrationVersion as typeMigrationVersion in so', () => { + const asset = createAsset({ + attributes: { hello: 'world' }, + migrationVersion: { dashboard: '8.6.0' }, + }); + const result = createSavedObjectKibanaAsset(asset); + + expect(result.typeMigrationVersion).toEqual('8.6.0'); + }); + + it('should set coreMigrationVersion and typeMigrationVersion in so', () => { + const asset = createAsset({ + attributes: { hello: 'world' }, + typeMigrationVersion: '8.6.0', + coreMigrationVersion: '8.7.0', + }); + const result = createSavedObjectKibanaAsset(asset); + + expect(result.typeMigrationVersion).toEqual('8.6.0'); + expect(result.coreMigrationVersion).toEqual('8.7.0'); + }); +}); diff --git a/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts b/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts index ec0cbab539bcd..1c804991cbeaf 100644 --- a/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts +++ b/x-pack/plugins/fleet/server/services/epm/kibana/assets/install.ts @@ -53,7 +53,7 @@ export type ArchiveAsset = Pick< SavedObject, | 'id' | 'attributes' - | 'migrationVersion' + | 'migrationVersion' // deprecated | 'references' | 'coreMigrationVersion' | 'typeMigrationVersion' @@ -99,15 +99,15 @@ export function createSavedObjectKibanaAsset(asset: ArchiveAsset): SavedObjectTo references: asset.references || [], }; - if (asset.migrationVersion) { - so.migrationVersion = asset.migrationVersion; - } else { - if (asset.coreMigrationVersion) { - so.coreMigrationVersion = asset.coreMigrationVersion; - } - if (asset.typeMigrationVersion) { - so.typeMigrationVersion = asset.typeMigrationVersion; - } + // migrating deprecated migrationVersion to typeMigrationVersion + if (asset.migrationVersion && asset.migrationVersion[asset.type]) { + so.typeMigrationVersion = asset.migrationVersion[asset.type]; + } + if (asset.coreMigrationVersion) { + so.coreMigrationVersion = asset.coreMigrationVersion; + } + if (asset.typeMigrationVersion) { + so.typeMigrationVersion = asset.typeMigrationVersion; } return so as SavedObjectToBe; } diff --git a/x-pack/plugins/fleet/server/services/epm/kibana/assets/tag_assets.test.ts b/x-pack/plugins/fleet/server/services/epm/kibana/assets/tag_assets.test.ts index 52102f80a7c22..113866017f24b 100644 --- a/x-pack/plugins/fleet/server/services/epm/kibana/assets/tag_assets.test.ts +++ b/x-pack/plugins/fleet/server/services/epm/kibana/assets/tag_assets.test.ts @@ -703,7 +703,7 @@ describe('tagKibanaAssets', () => { } as any; const assetTags = [ { - text: 'SecuritySolution', + text: 'Security Solution', asset_types: ['dashboard'], }, ]; @@ -733,9 +733,9 @@ describe('tagKibanaAssets', () => { { color: expect.any(String), description: 'Tag defined in package-spec', - name: 'SecuritySolution', + name: 'Security Solution', }, - { id: 'SecuritySolution', overwrite: true, refresh: false } + { id: 'security-solution-default', overwrite: true, refresh: false } ); }); diff --git a/x-pack/plugins/fleet/server/services/epm/kibana/assets/tag_assets.ts b/x-pack/plugins/fleet/server/services/epm/kibana/assets/tag_assets.ts index 0386b8c20701f..86d39a5582607 100644 --- a/x-pack/plugins/fleet/server/services/epm/kibana/assets/tag_assets.ts +++ b/x-pack/plugins/fleet/server/services/epm/kibana/assets/tag_assets.ts @@ -36,7 +36,8 @@ const MANAGED_TAG_COLOR = '#0077CC'; const PACKAGE_TAG_COLOR = '#4DD2CA'; const MANAGED_TAG_NAME = 'Managed'; const LEGACY_MANAGED_TAG_ID = 'managed'; -const SECURITY_SOLUTION_TAG_ID = 'SecuritySolution'; +const SECURITY_SOLUTION_TAG_NAME = 'Security Solution'; +const SECURITY_SOLUTION_TAG_ID = 'security-solution-default'; // the tag service only accepts 6-digits hex colors const TAG_COLORS = [ @@ -61,10 +62,10 @@ const getLegacyPackageTagId = (pkgName: string) => pkgName; /* This function is exported via fleet/plugin.ts to make it available to other plugins The `SecuritySolution` tag is a special case that needs to be handled separately - In that case simply return `SecuritySolution` + In that case return id `security-solution-default` */ export const getPackageSpecTagId = (spaceId: string, pkgName: string, tagName: string) => { - if (tagName.toLowerCase() === SECURITY_SOLUTION_TAG_ID.toLowerCase()) + if (tagName.toLowerCase() === SECURITY_SOLUTION_TAG_NAME.toLowerCase()) return SECURITY_SOLUTION_TAG_ID; // UUID v5 needs a namespace (uuid.DNS) to generate a predictable uuid const uniqueId = uuidv5(`${tagName.toLowerCase()}`, uuidv5.DNS); diff --git a/x-pack/plugins/fleet/server/services/epm/kibana/index_pattern/install.ts b/x-pack/plugins/fleet/server/services/epm/kibana/index_pattern/install.ts index 1637bf19d8df4..91e603e80aee2 100644 --- a/x-pack/plugins/fleet/server/services/epm/kibana/index_pattern/install.ts +++ b/x-pack/plugins/fleet/server/services/epm/kibana/index_pattern/install.ts @@ -18,6 +18,8 @@ export function getIndexPatternSavedObjects() { return indexPatternTypes.map((indexPatternType) => ({ id: `${indexPatternType}-*`, type: INDEX_PATTERN_SAVED_OBJECT_TYPE, + // workaround until https://github.com/elastic/kibana/issues/164454 is fixed + typeMigrationVersion: '8.0.0', attributes: { title: `${indexPatternType}-*`, timeFieldName: '@timestamp', diff --git a/x-pack/plugins/fleet/tsconfig.json b/x-pack/plugins/fleet/tsconfig.json index 82b22c90779b7..e0d261d7b7e72 100644 --- a/x-pack/plugins/fleet/tsconfig.json +++ b/x-pack/plugins/fleet/tsconfig.json @@ -100,5 +100,6 @@ "@kbn/core-http-router-server-mocks", "@kbn/core-application-browser", "@kbn/core-saved-objects-base-server-internal", + "@kbn/dashboard-plugin", ] } diff --git a/x-pack/plugins/index_lifecycle_management/__jest__/extend_index_management.test.tsx b/x-pack/plugins/index_lifecycle_management/__jest__/extend_index_management.test.tsx index 246de6e8ed25b..565a994e4e186 100644 --- a/x-pack/plugins/index_lifecycle_management/__jest__/extend_index_management.test.tsx +++ b/x-pack/plugins/index_lifecycle_management/__jest__/extend_index_management.test.tsx @@ -80,7 +80,7 @@ const indexWithLifecyclePolicy: Index = { }, }; -const indexWithLifecycleError = { +const indexWithLifecycleError: Index = { health: 'yellow', status: 'open', name: 'testy3', diff --git a/x-pack/plugins/index_management/__jest__/client_integration/helpers/http_requests.ts b/x-pack/plugins/index_management/__jest__/client_integration/helpers/http_requests.ts index c49d3ccaba890..0a054fccdfcc1 100644 --- a/x-pack/plugins/index_management/__jest__/client_integration/helpers/http_requests.ts +++ b/x-pack/plugins/index_management/__jest__/client_integration/helpers/http_requests.ts @@ -6,7 +6,7 @@ */ import { httpServiceMock } from '@kbn/core/public/mocks'; -import { API_BASE_PATH } from '../../../common/constants'; +import { API_BASE_PATH, INTERNAL_API_BASE_PATH } from '../../../common/constants'; type HttpResponse = Record | any[]; type HttpMethod = 'GET' | 'PUT' | 'DELETE' | 'POST'; @@ -121,6 +121,12 @@ const registerHttpRequestMockHelpers = ( const setLoadTelemetryResponse = (response?: HttpResponse, error?: ResponseError) => mockResponse('GET', '/api/ui_counters/_report', response, error); + const setLoadIndexDetailsResponse = ( + indexName: string, + response?: HttpResponse, + error?: ResponseError + ) => mockResponse('GET', `${INTERNAL_API_BASE_PATH}/indices/${indexName}`, response, error); + return { setLoadTemplatesResponse, setLoadIndicesResponse, @@ -139,6 +145,7 @@ const registerHttpRequestMockHelpers = ( setLoadComponentTemplatesResponse, setLoadNodesPluginsResponse, setLoadTelemetryResponse, + setLoadIndexDetailsResponse, }; }; diff --git a/x-pack/plugins/index_management/__jest__/client_integration/helpers/setup_environment.tsx b/x-pack/plugins/index_management/__jest__/client_integration/helpers/setup_environment.tsx index b1dd1d748f309..0e485de1e7775 100644 --- a/x-pack/plugins/index_management/__jest__/client_integration/helpers/setup_environment.tsx +++ b/x-pack/plugins/index_management/__jest__/client_integration/helpers/setup_environment.tsx @@ -60,6 +60,7 @@ const appDependencies = { config: { enableLegacyTemplates: true, enableIndexActions: true, + enableIndexStats: true, }, } as any; diff --git a/x-pack/plugins/index_management/__jest__/client_integration/helpers/test_subjects.ts b/x-pack/plugins/index_management/__jest__/client_integration/helpers/test_subjects.ts index 2574594c7fcf8..7591ca90f1596 100644 --- a/x-pack/plugins/index_management/__jest__/client_integration/helpers/test_subjects.ts +++ b/x-pack/plugins/index_management/__jest__/client_integration/helpers/test_subjects.ts @@ -19,6 +19,7 @@ export type TestSubjects = | 'deleteSystemTemplateCallOut' | 'deleteTemplateButton' | 'deleteTemplatesConfirmation' + | 'descriptionTitle' | 'documentationLink' | 'emptyPrompt' | 'forcemergeIndexMenuButton' diff --git a/x-pack/plugins/index_management/__jest__/client_integration/home/indices_tab.test.ts b/x-pack/plugins/index_management/__jest__/client_integration/home/indices_tab.test.ts index 16a3e1fd09bbd..80c03726c3d40 100644 --- a/x-pack/plugins/index_management/__jest__/client_integration/home/indices_tab.test.ts +++ b/x-pack/plugins/index_management/__jest__/client_integration/home/indices_tab.test.ts @@ -62,14 +62,13 @@ describe('', () => { beforeEach(async () => { httpRequestsMockHelpers.setLoadIndicesResponse([]); - testBed = await setup(httpSetup); - await act(async () => { - const { component } = testBed; - - await nextTick(); - component.update(); + testBed = await setup(httpSetup); }); + + const { component } = testBed; + + component.update(); }); test('toggles the include hidden button through URL hash correctly', () => { @@ -423,4 +422,103 @@ describe('', () => { expect(exists('updateIndexSettingsErrorCallout')).toBe(true); }); }); + + describe('Index stats', () => { + const indexName = 'test'; + + beforeEach(async () => { + httpRequestsMockHelpers.setLoadIndicesResponse([createNonDataStreamIndex(indexName)]); + + await act(async () => { + testBed = await setup(httpSetup); + }); + + const { component } = testBed; + + component.update(); + }); + + test('renders the table column with index stats by default', () => { + const { table } = testBed; + const { tableCellsValues } = table.getMetaData('indexTable'); + + expect(tableCellsValues).toEqual([ + ['', 'test', 'green', 'open', '1', '1', '10000', '156kb', ''], + ]); + }); + + test('renders index stats in details flyout by default', async () => { + const { component, find } = testBed; + + await act(async () => { + find('indexTableIndexNameLink').at(0).simulate('click'); + }); + + component.update(); + + const descriptions = find('descriptionTitle'); + + const descriptionText = descriptions + .map((description) => { + return description.text(); + }) + .sort(); + + expect(descriptionText).toEqual([ + 'Aliases', + 'Docs count', + 'Docs deleted', + 'Health', + 'Primaries', + 'Primary storage size', + 'Replicas', + 'Status', + 'Storage size', + ]); + }); + + describe('Disabled', () => { + beforeEach(async () => { + await act(async () => { + testBed = await setup(httpSetup, { + config: { + enableLegacyTemplates: true, + enableIndexActions: true, + enableIndexStats: false, + }, + }); + }); + + const { component } = testBed; + + component.update(); + }); + + test('hides index stats information from table', async () => { + const { table } = testBed; + const { tableCellsValues } = table.getMetaData('indexTable'); + + expect(tableCellsValues).toEqual([['', 'test', '1', '1', '']]); + }); + + test('hides index stats information from details panel', async () => { + const { component, find } = testBed; + await act(async () => { + find('indexTableIndexNameLink').at(0).simulate('click'); + }); + + component.update(); + + const descriptions = find('descriptionTitle'); + + const descriptionText = descriptions + .map((description) => { + return description.text(); + }) + .sort(); + + expect(descriptionText).toEqual(['Aliases', 'Primaries', 'Replicas']); + }); + }); + }); }); diff --git a/x-pack/plugins/index_management/__jest__/client_integration/index_details_page/index_details_page.helpers.ts b/x-pack/plugins/index_management/__jest__/client_integration/index_details_page/index_details_page.helpers.ts index d6edefb6d724c..4caf94db5de79 100644 --- a/x-pack/plugins/index_management/__jest__/client_integration/index_details_page/index_details_page.helpers.ts +++ b/x-pack/plugins/index_management/__jest__/client_integration/index_details_page/index_details_page.helpers.ts @@ -5,7 +5,12 @@ * 2.0. */ -import { AsyncTestBedConfig, registerTestBed, TestBed } from '@kbn/test-jest-helpers'; +import { + AsyncTestBedConfig, + reactRouterMock, + registerTestBed, + TestBed, +} from '@kbn/test-jest-helpers'; import { HttpSetup } from '@kbn/core/public'; import { act } from 'react-dom/test-utils'; import { @@ -14,19 +19,34 @@ import { } from '../../../public/application/sections/home/index_list/details_page'; import { WithAppDependencies } from '../helpers'; +let routerMock: typeof reactRouterMock; const testBedConfig: AsyncTestBedConfig = { memoryRouter: { initialEntries: [`/indices/test_index`], componentRoutePath: `/indices/:indexName/:indexDetailsSection?`, + onRouter: (router) => { + routerMock = router; + }, }, doMountAsync: true, }; export interface IndexDetailsPageTestBed extends TestBed { + routerMock: typeof reactRouterMock; actions: { getHeader: () => string; clickIndexDetailsTab: (tab: IndexDetailsSection) => Promise; getActiveTabContent: () => string; + clickBackToIndicesButton: () => Promise; + discoverLinkExists: () => boolean; + contextMenu: { + clickManageIndexButton: () => Promise; + isOpened: () => boolean; + }; + errorSection: { + isDisplayed: () => boolean; + clickReloadButton: () => Promise; + }; }; } @@ -39,14 +59,24 @@ export const setup = async ( testBedConfig ); const testBed = await initTestBed(); + const { find, component, exists } = testBed; + const errorSection = { + isDisplayed: () => { + return exists('indexDetailsErrorLoadingDetails'); + }, + clickReloadButton: async () => { + await act(async () => { + find('indexDetailsReloadDetailsButton').simulate('click'); + }); + component.update(); + }, + }; const getHeader = () => { - return testBed.component.find('[data-test-subj="indexDetailsHeader"] h1').text(); + return component.find('[data-test-subj="indexDetailsHeader"] h1').text(); }; const clickIndexDetailsTab = async (tab: IndexDetailsSection) => { - const { find, component } = testBed; - await act(async () => { find(`indexDetailsTab-${tab}`).simulate('click'); }); @@ -54,15 +84,42 @@ export const setup = async ( }; const getActiveTabContent = () => { - return testBed.find('indexDetailsContent').text(); + return find('indexDetailsContent').text(); + }; + + const clickBackToIndicesButton = async () => { + await act(async () => { + find('indexDetailsBackToIndicesButton').simulate('click'); + }); + component.update(); + }; + + const discoverLinkExists = () => { + return exists('discoverButtonLink'); }; + const contextMenu = { + clickManageIndexButton: async () => { + await act(async () => { + find('indexActionsContextMenuButton').simulate('click'); + }); + component.update(); + }, + isOpened: () => { + return exists('indexContextMenu'); + }, + }; return { ...testBed, + routerMock, actions: { getHeader, clickIndexDetailsTab, getActiveTabContent, + clickBackToIndicesButton, + discoverLinkExists, + contextMenu, + errorSection, }, }; }; diff --git a/x-pack/plugins/index_management/__jest__/client_integration/index_details_page/index_details_page.test.ts b/x-pack/plugins/index_management/__jest__/client_integration/index_details_page/index_details_page.test.ts index 2863560469287..a880933ec9fdc 100644 --- a/x-pack/plugins/index_management/__jest__/client_integration/index_details_page/index_details_page.test.ts +++ b/x-pack/plugins/index_management/__jest__/client_integration/index_details_page/index_details_page.test.ts @@ -8,22 +8,57 @@ import { setupEnvironment } from '../helpers'; import { IndexDetailsPageTestBed, setup } from './index_details_page.helpers'; import { act } from 'react-dom/test-utils'; -import { httpServiceMock } from '@kbn/core/public/mocks'; import { IndexDetailsSection } from '../../../public/application/sections/home/index_list/details_page'; +import { testIndexMock } from './mocks'; describe('', () => { let testBed: IndexDetailsPageTestBed; let httpSetup: ReturnType['httpSetup']; + let httpRequestsMockHelpers: ReturnType['httpRequestsMockHelpers']; beforeEach(async () => { - httpSetup = httpServiceMock.createSetupContract(); + const mockEnvironment = setupEnvironment(); + ({ httpSetup, httpRequestsMockHelpers } = mockEnvironment); + // test_index is configured in initialEntries of the memory router + httpRequestsMockHelpers.setLoadIndexDetailsResponse('test_index', testIndexMock); await act(async () => { - testBed = await setup(httpSetup); + testBed = await setup(httpSetup, { + url: { + locators: { + get: () => ({ navigate: jest.fn() }), + }, + }, + }); }); testBed.component.update(); }); + describe('error section', () => { + beforeEach(async () => { + httpRequestsMockHelpers.setLoadIndexDetailsResponse('test_index', undefined, { + statusCode: 400, + message: 'Data for index .apm-agent-configuration was not found', + }); + await act(async () => { + testBed = await setup(httpSetup); + }); + + testBed.component.update(); + }); + it('displays an error callout when failed to load index details', async () => { + expect(testBed.actions.errorSection.isDisplayed()).toBe(true); + }); + + it('resends a request when reload button is clicked', async () => { + // already sent 2 requests while setting up the component + const numberOfRequests = 2; + expect(httpSetup.get).toHaveBeenCalledTimes(numberOfRequests); + await testBed.actions.errorSection.clickReloadButton(); + expect(httpSetup.get).toHaveBeenCalledTimes(numberOfRequests + 1); + }); + }); + it('displays index name in the header', () => { const header = testBed.actions.getHeader(); // test_index is configured in initialEntries of the memory router @@ -58,4 +93,25 @@ describe('', () => { const tabContent = testBed.actions.getActiveTabContent(); expect(tabContent).toEqual('Pipelines'); }); + + it('navigates back to indices', async () => { + jest.spyOn(testBed.routerMock.history, 'push'); + await testBed.actions.clickBackToIndicesButton(); + expect(testBed.routerMock.history.push).toHaveBeenCalledTimes(1); + expect(testBed.routerMock.history.push).toHaveBeenCalledWith('/indices'); + }); + + it('renders a link to discover', () => { + // we only need to test that the link is rendered since the link component has its own tests for navigation + expect(testBed.actions.discoverLinkExists()).toBe(true); + }); + + it('opens an index context menu when "manage index" button is clicked', async () => { + const { + actions: { contextMenu }, + } = testBed; + expect(contextMenu.isOpened()).toBe(false); + await testBed.actions.contextMenu.clickManageIndexButton(); + expect(contextMenu.isOpened()).toBe(true); + }); }); diff --git a/x-pack/plugins/index_management/__jest__/client_integration/index_details_page/mocks.ts b/x-pack/plugins/index_management/__jest__/client_integration/index_details_page/mocks.ts new file mode 100644 index 0000000000000..d96f1d0fac0dc --- /dev/null +++ b/x-pack/plugins/index_management/__jest__/client_integration/index_details_page/mocks.ts @@ -0,0 +1,31 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { Index } from '../../../public'; + +export const testIndexMock: Index = { + health: 'green', + status: 'open', + name: 'test_index', + uuid: 'test1234', + primary: '1', + replica: '1', + documents: 1, + documents_deleted: 0, + size: '10kb', + primary_size: '10kb', + isFrozen: false, + aliases: 'none', + hidden: false, + // @ts-expect-error ts upgrade v4.7.4 + isRollupIndex: false, + ilm: { + index: 'test_index', + managed: false, + }, + isFollowerIndex: false, +}; diff --git a/x-pack/plugins/index_management/__jest__/components/index_table.test.js b/x-pack/plugins/index_management/__jest__/components/index_table.test.js index 5d8371010b3fe..d7380ef95c938 100644 --- a/x-pack/plugins/index_management/__jest__/components/index_table.test.js +++ b/x-pack/plugins/index_management/__jest__/components/index_table.test.js @@ -172,6 +172,7 @@ describe('index table', () => { config: { enableLegacyTemplates: true, enableIndexActions: true, + enableIndexStats: true, }, }; @@ -336,7 +337,7 @@ describe('index table', () => { indexNameLink.simulate('click'); rendered.update(); expect(findTestSubject(rendered, 'indexDetailFlyout').length).toBe(1); - expect(findTestSubject(rendered, 'indexDetailFlyoutDiscover').length).toBe(1); + expect(findTestSubject(rendered, 'discoverIconLink').length).toBe(1); }); test('should show the right context menu options when one index is selected and open', async () => { diff --git a/x-pack/plugins/index_management/common/types/indices.ts b/x-pack/plugins/index_management/common/types/indices.ts index ba7b58453c36b..ab54812f2f0e3 100644 --- a/x-pack/plugins/index_management/common/types/indices.ts +++ b/x-pack/plugins/index_management/common/types/indices.ts @@ -5,6 +5,12 @@ * 2.0. */ +import { + HealthStatus, + IndicesStatsIndexMetadataState, + Uuid, +} from '@elastic/elasticsearch/lib/api/types'; + interface IndexModule { number_of_shards: number | string; codec: string; @@ -50,21 +56,21 @@ export interface IndexSettings { analysis?: AnalysisModule; [key: string]: any; } - export interface Index { - health?: string; - status?: string; name: string; - uuid?: string; primary?: number | string; replica?: number | string; - documents: number; - documents_deleted: number; - size: string; - primary_size: string; isFrozen: boolean; hidden: boolean; aliases: string | string[]; data_stream?: string; - [key: string]: any; + // The types from here below represent information returned from the index stats API; + // treated optional as the stats API is not available on serverless + health?: HealthStatus; + status?: IndicesStatsIndexMetadataState; + uuid?: Uuid; + documents?: number; + size?: string; + primary_size?: string; + documents_deleted?: number; } diff --git a/x-pack/plugins/index_management/public/application/app_context.tsx b/x-pack/plugins/index_management/public/application/app_context.tsx index f0b8598cfd04f..fcedba9a1b941 100644 --- a/x-pack/plugins/index_management/public/application/app_context.tsx +++ b/x-pack/plugins/index_management/public/application/app_context.tsx @@ -48,6 +48,7 @@ export interface AppDependencies { enableIndexActions: boolean; enableLegacyTemplates: boolean; enableIndexDetailsPage: boolean; + enableIndexStats: boolean; }; history: ScopedHistory; setBreadcrumbs: ManagementAppMountParams['setBreadcrumbs']; diff --git a/x-pack/plugins/index_management/public/application/components/component_templates/component_template_list/component_template_list.tsx b/x-pack/plugins/index_management/public/application/components/component_templates/component_template_list/component_template_list.tsx index 7c9fd03cd9535..bced972e1bf9c 100644 --- a/x-pack/plugins/index_management/public/application/components/component_templates/component_template_list/component_template_list.tsx +++ b/x-pack/plugins/index_management/public/application/components/component_templates/component_template_list/component_template_list.tsx @@ -144,7 +144,7 @@ export const ComponentTemplateList: React.FunctionComponent = ({ if (isLoading) { return ( - + { +describe('Mappings editor: scaled float datatype', () => { /** * Variable to store the mappings data forwarded to the consumer component */ @@ -32,7 +31,7 @@ describe.skip('Mappings editor: scaled float datatype', () => { let testBed: MappingsEditorTestBed; beforeAll(() => { - jest.useFakeTimers({ legacyFakeTimers: true }); + jest.useFakeTimers(); }); afterAll(() => { @@ -90,15 +89,12 @@ describe.skip('Mappings editor: scaled float datatype', () => { await act(async () => { form.setInputValue('scalingFactor.input', '123'); }); + + component.update(); + await updateFieldAndCloseFlyout(); - expect(exists('mappingsEditorFieldEdit')).toBe(false); - if (kibanaVersion.major < 7) { - expect(exists('boostParameterToggle')).toBe(true); - } else { - // Since 8.x the boost parameter is deprecated - expect(exists('boostParameterToggle')).toBe(false); - } + expect(exists('mappingsEditorFieldEdit')).toBe(false); // It should have the default parameters values added, plus the scaling factor updatedMappings.properties.myField = { diff --git a/x-pack/plugins/index_management/public/application/components/mappings_editor/components/document_fields/fields/field_types/numeric_type.tsx b/x-pack/plugins/index_management/public/application/components/mappings_editor/components/document_fields/fields/field_types/numeric_type.tsx index 764db2744f43f..7013a5df70800 100644 --- a/x-pack/plugins/index_management/public/application/components/mappings_editor/components/document_fields/fields/field_types/numeric_type.tsx +++ b/x-pack/plugins/index_management/public/application/components/mappings_editor/components/document_fields/fields/field_types/numeric_type.tsx @@ -9,9 +9,9 @@ import React from 'react'; import { i18n } from '@kbn/i18n'; import SemVer from 'semver/classes/semver'; -import { NormalizedField, Field as FieldType, ComboBoxOption } from '../../../../types'; +import { NormalizedField, Field as FieldType } from '../../../../types'; import { getFieldConfig } from '../../../../lib'; -import { UseField, FormDataProvider, NumericField, Field } from '../../../../shared_imports'; +import { UseField, useFormData, NumericField, Field } from '../../../../shared_imports'; import { StoreParameter, IndexParameter, @@ -48,28 +48,26 @@ interface Props { } export const NumericType = ({ field, kibanaVersion }: Props) => { + const [formData] = useFormData({ watch: 'subType' }); + return ( <> {/* scaling_factor */} - pathsToWatch="subType"> - {(formData) => { - return formData.subType?.[0]?.value === 'scaled_float' ? ( - - - - ) : null; - }} - + {formData.subType?.[0]?.value === 'scaled_float' ? ( + + + + ) : null} diff --git a/x-pack/plugins/index_management/public/application/components/mappings_editor/shared_imports.ts b/x-pack/plugins/index_management/public/application/components/mappings_editor/shared_imports.ts index fb152a41db568..629cfdc413c10 100644 --- a/x-pack/plugins/index_management/public/application/components/mappings_editor/shared_imports.ts +++ b/x-pack/plugins/index_management/public/application/components/mappings_editor/shared_imports.ts @@ -26,6 +26,7 @@ export { useForm, useFormContext, UseMultiFields, + useFormData, VALIDATION_TYPES, } from '@kbn/es-ui-shared-plugin/static/forms/hook_form_lib'; diff --git a/x-pack/plugins/index_management/public/application/lib/discover_link.test.tsx b/x-pack/plugins/index_management/public/application/lib/discover_link.test.tsx new file mode 100644 index 0000000000000..0127f914715c3 --- /dev/null +++ b/x-pack/plugins/index_management/public/application/lib/discover_link.test.tsx @@ -0,0 +1,89 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +import React from 'react'; +import { mountWithIntl } from '@kbn/test-jest-helpers'; +import { EuiButtonIcon } from '@elastic/eui'; +import { DiscoverLink } from './discover_link'; +import { AppContextProvider, AppDependencies } from '../app_context'; + +describe('DiscoverLink', () => { + const indexName = 'my-fancy-index'; + + it('renders the link as an icon by default', async () => { + const navigateMock = jest.fn(); + const ctx = { + url: { + locators: { + get: () => ({ navigate: navigateMock }), + }, + }, + } as unknown as AppDependencies; + + const component = mountWithIntl( + + + + ); + + expect(component.exists('[data-test-subj="discoverIconLink"]')).toBe(true); + expect(component.exists('[data-test-subj="discoverButtonLink"]')).toBe(false); + }); + + it('renders the link as a button if the prop is set', async () => { + const navigateMock = jest.fn(); + const ctx = { + url: { + locators: { + get: () => ({ navigate: navigateMock }), + }, + }, + } as unknown as AppDependencies; + + const component = mountWithIntl( + + + + ); + + expect(component.exists('[data-test-subj="discoverIconLink"]')).toBe(false); + expect(component.exists('[data-test-subj="discoverButtonLink"]')).toBe(true); + }); + + it('calls navigate method when button is clicked', async () => { + const navigateMock = jest.fn(); + const ctx = { + url: { + locators: { + get: () => ({ navigate: navigateMock }), + }, + }, + } as unknown as AppDependencies; + + const component = mountWithIntl( + + + + ); + const button = component.find(EuiButtonIcon); + + await button.simulate('click'); + expect(navigateMock).toHaveBeenCalledWith({ dataViewSpec: { title: indexName } }); + }); + + it('does not render a button if locators is not defined', () => { + const ctx = {} as unknown as AppDependencies; + + const component = mountWithIntl( + + + + ); + const button = component.find(EuiButtonIcon); + + expect(button).toHaveLength(0); + }); +}); diff --git a/x-pack/plugins/index_management/public/application/lib/discover_link.tsx b/x-pack/plugins/index_management/public/application/lib/discover_link.tsx new file mode 100644 index 0000000000000..aaec455c90932 --- /dev/null +++ b/x-pack/plugins/index_management/public/application/lib/discover_link.tsx @@ -0,0 +1,62 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { EuiButton, EuiButtonIcon, EuiToolTip } from '@elastic/eui'; +import { i18n } from '@kbn/i18n'; +import { FormattedMessage } from '@kbn/i18n-react'; +import { useAppContext } from '../app_context'; + +export const DiscoverLink = ({ + indexName, + asButton = false, +}: { + indexName: string; + asButton?: boolean; +}) => { + const { url } = useAppContext(); + const discoverLocator = url?.locators.get('DISCOVER_APP_LOCATOR'); + if (!discoverLocator) { + return null; + } + const onClick = async () => { + await discoverLocator.navigate({ dataViewSpec: { title: indexName } }); + }; + + let link = ( + + ); + if (asButton) { + link = ( + + + + ); + } + + return ( + + {link} + + ); +}; diff --git a/x-pack/plugins/index_management/public/application/lib/indices.ts b/x-pack/plugins/index_management/public/application/lib/indices.ts index 6d4bbc992a21c..61b2c7c2fbb49 100644 --- a/x-pack/plugins/index_management/public/application/lib/indices.ts +++ b/x-pack/plugins/index_management/public/application/lib/indices.ts @@ -4,25 +4,9 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import SemVer from 'semver/classes/semver'; -import { MAJOR_VERSION } from '../../../common'; import { Index } from '../../../common'; -const kibanaVersion = new SemVer(MAJOR_VERSION); - export const isHiddenIndex = (index: Index): boolean => { - if (kibanaVersion.major < 8) { - // In 7.x we consider hidden index all indices whose name start with a dot - return (index.name ?? '').startsWith('.') || index.hidden === true; - } return index.hidden === true; }; - -export const isSystemIndex = (index: Index): boolean => { - if (kibanaVersion.major < 8) { - return (index.name ?? '').startsWith('.'); - } - // From 8.0 we won't surface system indices in Index management - return false; -}; diff --git a/x-pack/plugins/index_management/public/application/lib/manage_angular_lifecycle.ts b/x-pack/plugins/index_management/public/application/lib/manage_angular_lifecycle.ts deleted file mode 100644 index 3002b041ac3ee..0000000000000 --- a/x-pack/plugins/index_management/public/application/lib/manage_angular_lifecycle.ts +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { unmountComponentAtNode } from 'react-dom'; - -export const manageAngularLifecycle = ($scope: any, $route: any, elem: HTMLElement | null) => { - const lastRoute = $route.current; - - const deregister = $scope.$on('$locationChangeSuccess', () => { - const currentRoute = $route.current; - if (lastRoute.$$route.template === currentRoute.$$route.template) { - $route.current = lastRoute; - } - }); - - $scope.$on('$destroy', () => { - if (deregister) { - deregister(); - } - - if (elem) { - unmountComponentAtNode(elem); - } - }); -}; diff --git a/x-pack/plugins/index_management/public/application/lib/render_discover_link.test.tsx b/x-pack/plugins/index_management/public/application/lib/render_discover_link.test.tsx deleted file mode 100644 index e768aae88581c..0000000000000 --- a/x-pack/plugins/index_management/public/application/lib/render_discover_link.test.tsx +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ -import React from 'react'; -import { mountWithIntl } from '@kbn/test-jest-helpers'; -import { EuiButtonIcon } from '@elastic/eui'; -import { renderDiscoverLink } from './render_discover_link'; -import { AppContextProvider, AppDependencies } from '../app_context'; - -describe('renderDiscoverLink', () => { - const indexName = 'my-fancy-index'; - - it('calls navigate method when button is clicked', async () => { - const navigateMock = jest.fn(); - const ctx = { - url: { - locators: { - get: () => ({ navigate: navigateMock }), - }, - }, - } as unknown as AppDependencies; - - const component = mountWithIntl( - {renderDiscoverLink(indexName)} - ); - const button = component.find(EuiButtonIcon); - - await button.simulate('click'); - expect(navigateMock).toHaveBeenCalledWith({ dataViewSpec: { title: indexName } }); - }); - - it('does not render a button if locators is not defined', () => { - const ctx = {} as unknown as AppDependencies; - - const component = mountWithIntl( - {renderDiscoverLink(indexName)} - ); - const button = component.find(EuiButtonIcon); - - expect(button).toHaveLength(0); - }); -}); diff --git a/x-pack/plugins/index_management/public/application/lib/render_discover_link.tsx b/x-pack/plugins/index_management/public/application/lib/render_discover_link.tsx deleted file mode 100644 index d831f532c9b50..0000000000000 --- a/x-pack/plugins/index_management/public/application/lib/render_discover_link.tsx +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import React from 'react'; -import { EuiButtonIcon, EuiToolTip } from '@elastic/eui'; -import { i18n } from '@kbn/i18n'; -import { AppContextConsumer } from '../app_context'; - -export const renderDiscoverLink = (indexName: string) => { - return ( - - {(ctx) => { - const locators = ctx?.url?.locators.get('DISCOVER_APP_LOCATOR'); - - if (!locators) { - return null; - } - const onClick = async () => { - await locators.navigate({ dataViewSpec: { title: indexName } }); - }; - return ( - - - - ); - }} - - ); -}; diff --git a/x-pack/plugins/index_management/public/application/mount_management_section.ts b/x-pack/plugins/index_management/public/application/mount_management_section.ts index 9215b077c0bc3..df723e21ae287 100644 --- a/x-pack/plugins/index_management/public/application/mount_management_section.ts +++ b/x-pack/plugins/index_management/public/application/mount_management_section.ts @@ -56,6 +56,7 @@ export async function mountManagementSection({ enableIndexActions = true, enableLegacyTemplates = true, enableIndexDetailsPage = false, + enableIndexStats = true, }: { coreSetup: CoreSetup; usageCollection: UsageCollectionSetup; @@ -66,6 +67,7 @@ export async function mountManagementSection({ enableIndexActions?: boolean; enableLegacyTemplates?: boolean; enableIndexDetailsPage?: boolean; + enableIndexStats?: boolean; }) { const { element, setBreadcrumbs, history, theme$ } = params; const [core, startDependencies] = await coreSetup.getStartServices(); @@ -111,6 +113,7 @@ export async function mountManagementSection({ enableIndexActions, enableLegacyTemplates, enableIndexDetailsPage, + enableIndexStats, }, history, setBreadcrumbs, diff --git a/x-pack/plugins/index_management/public/application/sections/home/data_stream_list/data_stream_detail_panel/data_stream_detail_panel.tsx b/x-pack/plugins/index_management/public/application/sections/home/data_stream_list/data_stream_detail_panel/data_stream_detail_panel.tsx index 5e42cecf2034f..d3d8b0bc64baf 100644 --- a/x-pack/plugins/index_management/public/application/sections/home/data_stream_list/data_stream_detail_panel/data_stream_detail_panel.tsx +++ b/x-pack/plugins/index_management/public/application/sections/home/data_stream_list/data_stream_detail_panel/data_stream_detail_panel.tsx @@ -24,7 +24,7 @@ import { EuiTitle, } from '@elastic/eui'; -import { renderDiscoverLink } from '../../../../lib/render_discover_link'; +import { DiscoverLink } from '../../../../lib/discover_link'; import { SectionLoading, reactRouterNavigate } from '../../../../../shared_imports'; import { SectionError, Error, DataHealth } from '../../../../components'; import { useLoadDataStream } from '../../../../services/api'; @@ -266,7 +266,7 @@ export const DataStreamDetailPanel: React.FunctionComponent = ({

    {dataStreamName} - {renderDiscoverLink(dataStreamName)} + {dataStream && }

    diff --git a/x-pack/plugins/index_management/public/application/sections/home/index_list/detail_panel/detail_panel.js b/x-pack/plugins/index_management/public/application/sections/home/index_list/detail_panel/detail_panel.js index bac3e93978287..bddd3665f0b7c 100644 --- a/x-pack/plugins/index_management/public/application/sections/home/index_list/detail_panel/detail_panel.js +++ b/x-pack/plugins/index_management/public/application/sections/home/index_list/detail_panel/detail_panel.js @@ -34,8 +34,8 @@ import { IndexActionsContextMenu } from '../index_actions_context_menu'; import { ShowJson } from './show_json'; import { Summary } from './summary'; import { EditSettingsJson } from './edit_settings_json'; -import { useServices } from '../../../../app_context'; -import { renderDiscoverLink } from '../../../../lib/render_discover_link'; +import { useServices, useAppContext } from '../../../../app_context'; +import { DiscoverLink } from '../../../../lib/discover_link'; const tabToHumanizedMap = { [TAB_SUMMARY]: ( @@ -58,12 +58,19 @@ const tabToHumanizedMap = { ), }; -const tabs = [TAB_SUMMARY, TAB_SETTINGS, TAB_MAPPING, TAB_STATS, TAB_EDIT_SETTINGS]; +const getTabs = (showStats) => { + if (showStats) { + return [TAB_SUMMARY, TAB_SETTINGS, TAB_MAPPING, TAB_STATS, TAB_EDIT_SETTINGS]; + } + return [TAB_SUMMARY, TAB_SETTINGS, TAB_MAPPING, TAB_EDIT_SETTINGS]; +}; export const DetailPanel = ({ panelType, indexName, index, openDetailPanel, closeDetailPanel }) => { const { extensionsService } = useServices(); + const { config } = useAppContext(); const renderTabs = () => { + const tabs = getTabs(config.enableIndexStats); return tabs.map((tab, i) => { const isSelected = tab === panelType; return ( @@ -108,10 +115,9 @@ export const DetailPanel = ({ panelType, indexName, index, openDetailPanel, clos key="menu" render={() => (

    {indexName} - {renderDiscoverLink(indexName)} + {renderBadges(index, undefined, extensionsService)}

    diff --git a/x-pack/plugins/index_management/public/application/sections/home/index_list/detail_panel/summary/summary.js b/x-pack/plugins/index_management/public/application/sections/home/index_list/detail_panel/summary/summary.js index d01ee49320070..e41769daacbd5 100644 --- a/x-pack/plugins/index_management/public/application/sections/home/index_list/detail_panel/summary/summary.js +++ b/x-pack/plugins/index_management/public/application/sections/home/index_list/detail_panel/summary/summary.js @@ -21,36 +21,43 @@ import { import { DataHealth } from '../../../../../components'; import { AppContextConsumer } from '../../../../../app_context'; -const getHeaders = () => { - return { - health: i18n.translate('xpack.idxMgmt.summary.headers.healthHeader', { - defaultMessage: 'Health', - }), - status: i18n.translate('xpack.idxMgmt.summary.headers.statusHeader', { - defaultMessage: 'Status', - }), +const getHeaders = (showStats) => { + const baseHeaders = { primary: i18n.translate('xpack.idxMgmt.summary.headers.primaryHeader', { defaultMessage: 'Primaries', }), replica: i18n.translate('xpack.idxMgmt.summary.headers.replicaHeader', { defaultMessage: 'Replicas', }), - documents: i18n.translate('xpack.idxMgmt.summary.headers.documentsHeader', { - defaultMessage: 'Docs count', - }), - documents_deleted: i18n.translate('xpack.idxMgmt.summary.headers.deletedDocumentsHeader', { - defaultMessage: 'Docs deleted', - }), - size: i18n.translate('xpack.idxMgmt.summary.headers.storageSizeHeader', { - defaultMessage: 'Storage size', - }), - primary_size: i18n.translate('xpack.idxMgmt.summary.headers.primaryStorageSizeHeader', { - defaultMessage: 'Primary storage size', - }), aliases: i18n.translate('xpack.idxMgmt.summary.headers.aliases', { defaultMessage: 'Aliases', }), }; + + if (showStats) { + return { + ...baseHeaders, + health: i18n.translate('xpack.idxMgmt.summary.headers.healthHeader', { + defaultMessage: 'Health', + }), + status: i18n.translate('xpack.idxMgmt.summary.headers.statusHeader', { + defaultMessage: 'Status', + }), + documents: i18n.translate('xpack.idxMgmt.summary.headers.documentsHeader', { + defaultMessage: 'Docs count', + }), + documents_deleted: i18n.translate('xpack.idxMgmt.summary.headers.deletedDocumentsHeader', { + defaultMessage: 'Docs deleted', + }), + size: i18n.translate('xpack.idxMgmt.summary.headers.storageSizeHeader', { + defaultMessage: 'Storage size', + }), + primary_size: i18n.translate('xpack.idxMgmt.summary.headers.primaryStorageSizeHeader', { + defaultMessage: 'Primary storage size', + }), + }; + } + return baseHeaders; }; export class Summary extends React.PureComponent { @@ -67,9 +74,9 @@ export class Summary extends React.PureComponent { }); } - buildRows() { + buildRows(config) { const { index } = this.props; - const headers = getHeaders(); + const headers = getHeaders(config.enableIndexStats); const rows = { left: [], right: [], @@ -84,7 +91,7 @@ export class Summary extends React.PureComponent { content = content.join(', '); } const cell = [ - + {headers[fieldName]} , @@ -103,8 +110,8 @@ export class Summary extends React.PureComponent { render() { return ( - {({ services, core }) => { - const { left, right } = this.buildRows(); + {({ services, core, config }) => { + const { left, right } = this.buildRows(config); const additionalContent = this.getAdditionalContent( services.extensionsService, core.getUrlForApp diff --git a/x-pack/plugins/index_management/public/application/sections/home/index_list/details_page/details_page.tsx b/x-pack/plugins/index_management/public/application/sections/home/index_list/details_page/details_page.tsx index 80ba8cd4281d9..573bd1d7ee353 100644 --- a/x-pack/plugins/index_management/public/application/sections/home/index_list/details_page/details_page.tsx +++ b/x-pack/plugins/index_management/public/application/sections/home/index_list/details_page/details_page.tsx @@ -9,9 +9,19 @@ import React, { useCallback, useMemo } from 'react'; import { Redirect, RouteComponentProps } from 'react-router-dom'; import { Route, Routes } from '@kbn/shared-ux-router'; import { FormattedMessage } from '@kbn/i18n-react'; -import { EuiPageHeader, EuiSpacer, EuiPageHeaderProps } from '@elastic/eui'; +import { + EuiPageHeader, + EuiSpacer, + EuiPageHeaderProps, + EuiPageSection, + EuiButton, +} from '@elastic/eui'; +import { SectionLoading } from '@kbn/es-ui-shared-plugin/public'; +import { DiscoverLink } from '../../../../lib/discover_link'; +import { useLoadIndex } from '../../../../services'; import { Section } from '../../home'; - +import { DetailsPageError } from './details_page_error'; +import { IndexActionsContextMenuWithoutRedux } from '../index_actions_context_menu/index_actions_context_menu.without_redux'; export enum IndexDetailsSection { Overview = 'overview', Documents = 'documents', @@ -76,13 +86,53 @@ export const DetailsPage: React.FunctionComponent< })); }, [indexDetailsSection, onSectionChange]); + const { isLoading, error, resendRequest, data } = useLoadIndex(indexName); + if (isLoading) { + return ( + + + + ); + } + if (error || !data) { + return ; + } + return ( <> + + { + return history.push(`/${Section.Indices}`); + }} + > + + + + + + , + , + ]} tabs={headerTabs} /> diff --git a/x-pack/plugins/index_management/public/application/sections/home/index_list/details_page/details_page_error.tsx b/x-pack/plugins/index_management/public/application/sections/home/index_list/details_page/details_page_error.tsx new file mode 100644 index 0000000000000..6defc3d3db034 --- /dev/null +++ b/x-pack/plugins/index_management/public/application/sections/home/index_list/details_page/details_page_error.tsx @@ -0,0 +1,61 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { FormattedMessage } from '@kbn/i18n-react'; +import { EuiButton, EuiPageTemplate, EuiSpacer, EuiText } from '@elastic/eui'; +import { useLoadIndex } from '../../../../services'; + +export const DetailsPageError = ({ + indexName, + resendRequest, +}: { + indexName: string; + resendRequest: ReturnType['resendRequest']; +}) => { + return ( + + + + } + body={ + <> + + + + + + + + + } + /> + ); +}; diff --git a/x-pack/plugins/index_management/public/application/sections/home/index_list/index_actions_context_menu/index_actions_context_menu.container.js b/x-pack/plugins/index_management/public/application/sections/home/index_list/index_actions_context_menu/index_actions_context_menu.container.js index 9e650f7fe2da5..4d6398aea61a2 100644 --- a/x-pack/plugins/index_management/public/application/sections/home/index_list/index_actions_context_menu/index_actions_context_menu.container.js +++ b/x-pack/plugins/index_management/public/application/sections/home/index_list/index_actions_context_menu/index_actions_context_menu.container.js @@ -23,17 +23,11 @@ import { unfreezeIndices, } from '../../../../store/actions'; -import { - getIndexStatusByIndexName, - getIndicesByName, - getIsSystemIndexByName, - hasSystemIndex, -} from '../../../../store/selectors'; +import { getIndexStatusByIndexName, getIndicesByName } from '../../../../store/selectors'; const mapStateToProps = (state, ownProps) => { const indexStatusByName = {}; const { indexNames } = ownProps; - const allIndices = state.indices.byId; indexNames.forEach((indexName) => { indexStatusByName[indexName] = getIndexStatusByIndexName(state, indexName); @@ -42,8 +36,6 @@ const mapStateToProps = (state, ownProps) => { return { indexStatusByName, indices: getIndicesByName(state, indexNames), - isSystemIndexByName: getIsSystemIndexByName(indexNames, allIndices), - hasSystemIndex: hasSystemIndex(indexNames, allIndices), }; }; diff --git a/x-pack/plugins/index_management/public/application/sections/home/index_list/index_actions_context_menu/index_actions_context_menu.js b/x-pack/plugins/index_management/public/application/sections/home/index_list/index_actions_context_menu/index_actions_context_menu.js index 4dd22c0a73e13..8fb7fa5410f72 100644 --- a/x-pack/plugins/index_management/public/application/sections/home/index_list/index_actions_context_menu/index_actions_context_menu.js +++ b/x-pack/plugins/index_management/public/application/sections/home/index_list/index_actions_context_menu/index_actions_context_menu.js @@ -10,7 +10,6 @@ import { FormattedMessage } from '@kbn/i18n-react'; import { i18n } from '@kbn/i18n'; import { every } from 'lodash'; import { - EuiBadge, EuiButton, EuiCallOut, EuiContextMenu, @@ -20,7 +19,6 @@ import { EuiPopover, EuiSpacer, EuiConfirmModal, - EuiCheckbox, } from '@elastic/eui'; import { flattenPanelTree } from '../../../../lib/flatten_panel_tree'; @@ -63,14 +61,13 @@ export class IndexActionsContextMenu extends Component { showMapping, showStats, showSettings, - detailPanel, + isOnListView, indexNames, indexStatusByName, performExtensionAction, indices, reloadIndices, unfreezeIndices, - hasSystemIndex, } = this.props; const allOpen = every(indexNames, (indexName) => { return indexStatusByName[indexName] === INDEX_OPEN; @@ -78,7 +75,7 @@ export class IndexActionsContextMenu extends Component { const allFrozen = every(indices, (index) => index.isFrozen); const selectedIndexCount = indexNames.length; const items = []; - if (!detailPanel && selectedIndexCount === 1) { + if (isOnListView && selectedIndexCount === 1) { items.push({ 'data-test-subj': 'showSettingsIndexMenuButton', name: i18n.translate('xpack.idxMgmt.indexActionsMenu.showIndexSettingsLabel', { @@ -132,11 +129,6 @@ export class IndexActionsContextMenu extends Component { values: { selectedIndexCount }, }), onClick: () => { - if (hasSystemIndex) { - this.closePopover(); - this.setState({ renderConfirmModal: this.renderConfirmCloseModal }); - return; - } this.closePopoverAndExecute(closeIndices); }, }); @@ -393,8 +385,7 @@ export class IndexActionsContextMenu extends Component { }; renderConfirmDeleteModal = () => { - const { deleteIndices, indexNames, hasSystemIndex, isSystemIndexByName } = this.props; - const { isActionConfirmed } = this.state; + const { deleteIndices, indexNames } = this.props; const selectedIndexCount = indexNames.length; const standardIndexModalBody = ( @@ -422,69 +413,6 @@ export class IndexActionsContextMenu extends Component { ); - const systemIndexModalBody = ( - -

    - -

    - -
      - {indexNames.map((indexName) => ( -
    • - {indexName} - {isSystemIndexByName[indexName] ? ( - - {' '} - - - - - ) : ( - '' - )} -
    • - ))} -
    - - -

    - -

    - - } - checked={isActionConfirmed} - onChange={(e) => this.confirmAction(e.target.checked)} - /> -
    -
    - ); - return ( this.closePopoverAndExecute(deleteIndices)} buttonColor="danger" - confirmButtonDisabled={hasSystemIndex ? !isActionConfirmed : false} + confirmButtonDisabled={false} cancelButtonText={i18n.translate( 'xpack.idxMgmt.indexActionsMenu.deleteIndex.confirmModal.cancelButtonText', { @@ -515,101 +443,7 @@ export class IndexActionsContextMenu extends Component { } )} > - {hasSystemIndex ? systemIndexModalBody : standardIndexModalBody} - - ); - }; - - renderConfirmCloseModal = () => { - const { closeIndices, indexNames, isSystemIndexByName } = this.props; - const { isActionConfirmed } = this.state; - const selectedIndexCount = indexNames.length; - - return ( - { - this.confirmAction(false); - this.closeConfirmModal(); - }} - onConfirm={() => this.closePopoverAndExecute(closeIndices)} - buttonColor="danger" - confirmButtonDisabled={!isActionConfirmed} - cancelButtonText={i18n.translate( - 'xpack.idxMgmt.indexActionsMenu.deleteIndex.confirmModal.cancelButtonText', - { - defaultMessage: 'Cancel', - } - )} - confirmButtonText={i18n.translate( - 'xpack.idxMgmt.indexActionsMenu.closeIndex.confirmModal.confirmButtonText', - { - defaultMessage: 'Close {selectedIndexCount, plural, one {index} other {indices} }', - values: { selectedIndexCount }, - } - )} - > -

    - -

    - -
      - {indexNames.map((indexName) => ( -
    • - {indexName} - {isSystemIndexByName[indexName] ? ( - - {' '} - - - - - ) : ( - '' - )} -
    • - ))} -
    - - -

    - -

    - - } - checked={isActionConfirmed} - onChange={(e) => this.confirmAction(e.target.checked)} - /> -
    + {standardIndexModalBody}
    ); }; @@ -629,6 +463,7 @@ export class IndexActionsContextMenu extends Component { values: { selectedIndexCount }, }), iconType = 'arrowDown', + fill = true, } = this.props; const panels = this.panels(appDependencies); @@ -644,7 +479,7 @@ export class IndexActionsContextMenu extends Component { })} onClick={this.onButtonClick} iconType={iconType} - fill + fill={fill} > {label} diff --git a/x-pack/plugins/index_management/public/application/sections/home/index_list/index_actions_context_menu/index_actions_context_menu.without_redux.tsx b/x-pack/plugins/index_management/public/application/sections/home/index_list/index_actions_context_menu/index_actions_context_menu.without_redux.tsx new file mode 100644 index 0000000000000..177bfc7350af0 --- /dev/null +++ b/x-pack/plugins/index_management/public/application/sections/home/index_list/index_actions_context_menu/index_actions_context_menu.without_redux.tsx @@ -0,0 +1,107 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React, { FunctionComponent } from 'react'; +import { HttpSetup } from '@kbn/core-http-browser'; +import { EuiButtonProps } from '@elastic/eui/src/components/button/button'; +import { EuiPopoverProps } from '@elastic/eui/src/components/popover/popover'; +import { Index } from '../../../../../../common'; +import { reloadIndices } from '../../../../services'; +// @ts-ignore this component needs to be refactored into TS +import { IndexActionsContextMenu } from './index_actions_context_menu'; + +export interface ReduxProps { + closeIndices: ({}: { indexNames: string[] }) => Promise; + openIndices: ({}: { indexNames: string[] }) => Promise; + flushIndices: ({}: { indexNames: string[] }) => Promise; + refreshIndices: ({}: { indexNames: string[] }) => Promise; + clearCacheIndices: ({}: { indexNames: string[] }) => Promise; + unfreezeIndices: ({}: { indexNames: string[] }) => Promise; + forcemergeIndices: ({}: { indexNames: string[]; maxNumSegments: number }) => Promise; + deleteIndices: ({}: { indexNames: string[] }) => Promise; + + // following 4 actions are only added when on the list view and only 1 index is selected + showSettings: ({}: { indexNames: string[] }) => void; // opens the settings tab for the 1st index + showMapping: ({}: { indexNames: string[] }) => void; // opens the mapping tab for the 1st index + showStats: ({}: { indexNames: string[] }) => void; // opens the stats tab for the 1st index + editIndex: ({}: { indexNames: string[] }) => void; // opens the edit settings tab for the 1st index + + indexStatusByName: { + [indexName: string]: Index['status'] | undefined; + }; + reloadIndices: typeof reloadIndices; + + // this comes from the extension service + performExtensionAction: ({}: { + requestMethod: (indexNames: string[], httpClient: HttpSetup) => Promise; + indexNames: string[]; + successMessage: string; + }) => Promise; +} + +interface Props { + // either an array of indices selected in the list view or an array of 1 index name on details panel/page + indexNames: string[]; + + // indicates if the context menu is on the list view (to show additional actions) + isOnListView?: boolean; + // a callback used to reset selected indices on the list view + resetSelection?: () => void; + + // these props are only set on the details panel to change style + anchorPosition?: EuiPopoverProps['anchorPosition']; + iconSide?: EuiButtonProps['iconSide']; + iconType?: EuiButtonProps['iconType']; + label?: React.Component; + + // a new prop to make the button secondary + fill?: boolean; + + // instead of getting indices data from the redux store, pass it as a prop + indices: Index[]; +} + +const getIndexStatusByName = ( + indexNames: string[], + indices: Index[] +): ReduxProps['indexStatusByName'] => { + const indexStatusByName: ReduxProps['indexStatusByName'] = {}; + indexNames.forEach((indexName) => { + const { status } = indices.find((index) => index.name === indexName) ?? {}; + indexStatusByName[indexName] = status; + }); + return indexStatusByName; +}; + +export const IndexActionsContextMenuWithoutRedux: FunctionComponent = ({ + indexNames, + indices, + ...rest +}) => { + const props: ReduxProps = { + closeIndices: async () => {}, + openIndices: async () => {}, + flushIndices: async () => {}, + refreshIndices: async () => {}, + clearCacheIndices: async () => {}, + unfreezeIndices: async () => {}, + forcemergeIndices: async () => {}, + deleteIndices: async () => {}, + + // there actions are not displayed on the index details page + showSettings: () => {}, + showMapping: () => {}, + showStats: () => {}, + editIndex: () => {}, + + indexStatusByName: getIndexStatusByName(indexNames, indices), + reloadIndices: async () => {}, + + performExtensionAction: async () => {}, + }; + return ; +}; diff --git a/x-pack/plugins/index_management/public/application/sections/home/index_list/index_table/index_table.js b/x-pack/plugins/index_management/public/application/sections/home/index_list/index_table/index_table.js index 5f2bfb3de011b..5284de7c537cb 100644 --- a/x-pack/plugins/index_management/public/application/sections/home/index_list/index_table/index_table.js +++ b/x-pack/plugins/index_management/public/application/sections/home/index_list/index_table/index_table.js @@ -51,31 +51,46 @@ import { renderBadges } from '../../../../lib/render_badges'; import { NoMatch, DataHealth } from '../../../../components'; import { IndexActionsContextMenu } from '../index_actions_context_menu'; -const HEADERS = { - name: i18n.translate('xpack.idxMgmt.indexTable.headers.nameHeader', { +const getHeaders = ({ showIndexStats }) => { + const headers = {}; + + headers.name = i18n.translate('xpack.idxMgmt.indexTable.headers.nameHeader', { defaultMessage: 'Name', - }), - health: i18n.translate('xpack.idxMgmt.indexTable.headers.healthHeader', { - defaultMessage: 'Health', - }), - status: i18n.translate('xpack.idxMgmt.indexTable.headers.statusHeader', { - defaultMessage: 'Status', - }), - primary: i18n.translate('xpack.idxMgmt.indexTable.headers.primaryHeader', { + }); + + if (showIndexStats) { + headers.health = i18n.translate('xpack.idxMgmt.indexTable.headers.healthHeader', { + defaultMessage: 'Health', + }); + + headers.status = i18n.translate('xpack.idxMgmt.indexTable.headers.statusHeader', { + defaultMessage: 'Status', + }); + } + + headers.primary = i18n.translate('xpack.idxMgmt.indexTable.headers.primaryHeader', { defaultMessage: 'Primaries', - }), - replica: i18n.translate('xpack.idxMgmt.indexTable.headers.replicaHeader', { + }); + + headers.replica = i18n.translate('xpack.idxMgmt.indexTable.headers.replicaHeader', { defaultMessage: 'Replicas', - }), - documents: i18n.translate('xpack.idxMgmt.indexTable.headers.documentsHeader', { - defaultMessage: 'Docs count', - }), - size: i18n.translate('xpack.idxMgmt.indexTable.headers.storageSizeHeader', { - defaultMessage: 'Storage size', - }), - data_stream: i18n.translate('xpack.idxMgmt.indexTable.headers.dataStreamHeader', { + }); + + if (showIndexStats) { + headers.documents = i18n.translate('xpack.idxMgmt.indexTable.headers.documentsHeader', { + defaultMessage: 'Docs count', + }); + + headers.size = i18n.translate('xpack.idxMgmt.indexTable.headers.storageSizeHeader', { + defaultMessage: 'Storage size', + }); + } + + headers.data_stream = i18n.translate('xpack.idxMgmt.indexTable.headers.dataStreamHeader', { defaultMessage: 'Data stream', - }), + }); + + return headers; }; export class IndexTable extends Component { @@ -246,9 +261,10 @@ export class IndexTable extends Component { return indexOfUnselectedItem === -1; }; - buildHeader() { + buildHeader(config) { const { sortField, isSortAscending } = this.props; - return Object.entries(HEADERS).map(([fieldName, label]) => { + const headers = getHeaders({ showIndexStats: config.enableIndexStats }); + return Object.entries(headers).map(([fieldName, label]) => { const isSorted = sortField === fieldName; return ( { + buildRowCells(index, appServices, config) { + const headers = getHeaders({ showIndexStats: config.enableIndexStats }); + return Object.keys(headers).map((fieldName) => { const { name } = index; const value = index[fieldName]; @@ -363,7 +380,7 @@ export class IndexTable extends Component { }); } - buildRows(appServices) { + buildRows(appServices, config) { const { indices = [], detailPanelIndexName } = this.props; return indices.map((index) => { const { name } = index; @@ -388,7 +405,7 @@ export class IndexTable extends Component { })} /> - {this.buildRowCells(index, appServices)} + {this.buildRowCells(index, appServices, config)} ); }); @@ -479,7 +496,7 @@ export class IndexTable extends Component { return ( - {({ services }) => { + {({ services, config }) => { const { extensionsService } = services; return ( @@ -548,6 +565,7 @@ export class IndexTable extends Component { render={() => ( { this.setState({ selectedIndicesMap: {} }); }} @@ -639,10 +657,10 @@ export class IndexTable extends Component { )} /> - {this.buildHeader()} + {this.buildHeader(config)} - {this.buildRows(services)} + {this.buildRows(services, config)}
    ) : ( diff --git a/x-pack/plugins/index_management/public/application/services/index.ts b/x-pack/plugins/index_management/public/application/services/index.ts index 861a0d78147ea..96e961b718bd9 100644 --- a/x-pack/plugins/index_management/public/application/services/index.ts +++ b/x-pack/plugins/index_management/public/application/services/index.ts @@ -25,6 +25,9 @@ export { simulateIndexTemplate, useLoadNodesPlugins, } from './api'; + +export { useLoadIndex } from './indices_api'; + export { sortTable } from './sort_table'; export { UiMetricService } from './ui_metric'; diff --git a/x-pack/plugins/index_management/public/application/services/indices_api.ts b/x-pack/plugins/index_management/public/application/services/indices_api.ts new file mode 100644 index 0000000000000..c7e4cc5775ce5 --- /dev/null +++ b/x-pack/plugins/index_management/public/application/services/indices_api.ts @@ -0,0 +1,16 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { useRequest } from './use_request'; +import { Index, INTERNAL_API_BASE_PATH } from '../../../common'; + +export const useLoadIndex = (indexName: string) => { + return useRequest({ + path: `${INTERNAL_API_BASE_PATH}/indices/${indexName}`, + method: 'get', + }); +}; diff --git a/x-pack/plugins/index_management/public/application/store/selectors/index.js b/x-pack/plugins/index_management/public/application/store/selectors/index.js index b19e9b973cd79..754a88ed4065e 100644 --- a/x-pack/plugins/index_management/public/application/store/selectors/index.js +++ b/x-pack/plugins/index_management/public/application/store/selectors/index.js @@ -10,7 +10,7 @@ import { Pager, EuiSearchBar } from '@elastic/eui'; import { createSelector } from 'reselect'; import * as qs from 'query-string'; import { indexStatusLabels } from '../../lib/index_status_labels'; -import { isHiddenIndex, isSystemIndex } from '../../lib/indices'; +import { isHiddenIndex } from '../../lib/indices'; import { sortTable } from '../../services'; import { extensionsService } from './extension_service'; @@ -40,16 +40,6 @@ export const getIndexStatusByIndexName = (state, indexName) => { const { status } = indices[indexName] || {}; return status; }; -export const getIsSystemIndexByName = (indexNames, allIndices) => { - return indexNames.reduce((obj, indexName) => { - obj[indexName] = isSystemIndex(allIndices[indexName]); - return obj; - }, {}); -}; -export const hasSystemIndex = (indexNames, allIndices) => { - return indexNames.some((indexName) => isSystemIndex(allIndices[indexName])); -}; - const defaultFilterFields = ['name']; const filterByToggles = (indices, toggleNameToVisibleMap) => { @@ -123,15 +113,19 @@ export const getPageOfIndices = createSelector( const { firstItemIndex, lastItemIndex } = pager; const pagedIndexes = sortedIndexes.slice(firstItemIndex, lastItemIndex + 1); return pagedIndexes.map((index) => { - const status = - indexStatusLabels[rowStatuses[index.name]] || // user friendly version of row status - rowStatuses[index.name] || // row status - indexStatusLabels[index.status] || // user friendly version of index status - index.status; // index status - return { - ...index, - status, - }; + if (index.status) { + const status = + indexStatusLabels[rowStatuses[index.name]] || // user friendly version of row status + rowStatuses[index.name] || // row status + indexStatusLabels[index.status] || // user friendly version of index status + index.status; // index status + return { + ...index, + status, + }; + } + + return index; }); } ); diff --git a/x-pack/plugins/index_management/public/plugin.ts b/x-pack/plugins/index_management/public/plugin.ts index 67d39fafd8757..401c37770fd79 100644 --- a/x-pack/plugins/index_management/public/plugin.ts +++ b/x-pack/plugins/index_management/public/plugin.ts @@ -40,6 +40,7 @@ export class IndexMgmtUIPlugin { ui: { enabled: isIndexManagementUiEnabled }, enableIndexActions, enableLegacyTemplates, + enableIndexStats, dev: { enableIndexDetailsPage }, } = this.ctx.config.get(); @@ -62,6 +63,7 @@ export class IndexMgmtUIPlugin { enableIndexActions, enableLegacyTemplates, enableIndexDetailsPage, + enableIndexStats, }); }, }); diff --git a/x-pack/plugins/index_management/public/services/public_api_service.ts b/x-pack/plugins/index_management/public/services/public_api_service.ts index 33d43b9304fdb..75a3081c0fda5 100644 --- a/x-pack/plugins/index_management/public/services/public_api_service.ts +++ b/x-pack/plugins/index_management/public/services/public_api_service.ts @@ -7,7 +7,7 @@ import { HttpSetup } from '@kbn/core/public'; import { sendRequest, SendRequestResponse } from '../shared_imports'; -import { API_BASE_PATH } from '../../common/constants'; +import { INTERNAL_API_BASE_PATH } from '../../common/constants'; import { SerializedEnrichPolicy } from '../../common/types'; export interface PublicApiServiceSetup { @@ -33,7 +33,7 @@ export class PublicApiService { */ getAllEnrichPolicies() { return sendRequest(this.http, { - path: `${API_BASE_PATH}/enrich_policies`, + path: `${INTERNAL_API_BASE_PATH}/enrich_policies`, method: 'get', }); } diff --git a/x-pack/plugins/index_management/public/types.ts b/x-pack/plugins/index_management/public/types.ts index 00b954148573a..7ca83e70b5e0f 100644 --- a/x-pack/plugins/index_management/public/types.ts +++ b/x-pack/plugins/index_management/public/types.ts @@ -31,6 +31,7 @@ export interface ClientConfigType { }; enableIndexActions?: boolean; enableLegacyTemplates?: boolean; + enableIndexStats?: boolean; dev: { enableIndexDetailsPage?: boolean; }; diff --git a/x-pack/plugins/index_management/server/config.ts b/x-pack/plugins/index_management/server/config.ts index f21952899d6e3..0d322830fb0d2 100644 --- a/x-pack/plugins/index_management/server/config.ts +++ b/x-pack/plugins/index_management/server/config.ts @@ -33,6 +33,11 @@ const schemaLatest = schema.object( serverless: schema.boolean({ defaultValue: true }), }), dev: schema.object({ enableIndexDetailsPage: schema.boolean({ defaultValue: false }) }), + enableIndexStats: offeringBasedSchema({ + // Index stats information is disabled in serverless; refer to the serverless.yml file as the source of truth + // We take this approach in order to have a central place (serverless.yml) for serverless config across Kibana + serverless: schema.boolean({ defaultValue: true }), + }), }, { defaultValue: undefined } ); @@ -45,6 +50,7 @@ const configLatest: PluginConfigDescriptor = { dev: { enableIndexDetailsPage: true, }, + enableIndexStats: true, }, schema: schemaLatest, deprecations: () => [], diff --git a/x-pack/plugins/index_management/server/lib/fetch_indices.ts b/x-pack/plugins/index_management/server/lib/fetch_indices.ts index 3525d21d711b1..b58578c8c1621 100644 --- a/x-pack/plugins/index_management/server/lib/fetch_indices.ts +++ b/x-pack/plugins/index_management/server/lib/fetch_indices.ts @@ -9,9 +9,11 @@ import { ByteSizeValue } from '@kbn/config-schema'; import { IScopedClusterClient } from '@kbn/core/server'; import { IndexDataEnricher } from '../services'; import { Index } from '..'; +import { RouteDependencies } from '../types'; async function fetchIndicesCall( client: IScopedClusterClient, + config: RouteDependencies['config'], indexNames?: string[] ): Promise { const indexNamesString = indexNames && indexNames.length ? indexNames.join(',') : '*'; @@ -38,41 +40,77 @@ async function fetchIndicesCall( return []; } - const { indices: indicesStats = {} } = await client.asCurrentUser.indices.stats({ + const indicesNames = Object.keys(indices); + + // Return response without index stats, if isIndexStatsEnabled === false + if (config.isIndexStatsEnabled === false) { + return indicesNames.map((indexName: string) => { + const indexData = indices[indexName]; + const aliases = Object.keys(indexData.aliases!); + return { + name: indexName, + primary: indexData.settings?.index?.number_of_shards, + replica: indexData.settings?.index?.number_of_replicas, + isFrozen: indexData.settings?.index?.frozen === 'true', + aliases: aliases.length ? aliases : 'none', + hidden: indexData.settings?.index?.hidden === 'true', + data_stream: indexData.data_stream, + }; + }); + } + + const { indices: indicesStats } = await client.asCurrentUser.indices.stats({ index: indexNamesString, expand_wildcards: ['hidden', 'all'], forbid_closed_indices: false, metric: ['docs', 'store'], }); - const indicesNames = Object.keys(indices); + return indicesNames.map((indexName: string) => { const indexData = indices[indexName]; - const indexStats = indicesStats[indexName]; const aliases = Object.keys(indexData.aliases!); - return { - health: indexStats?.health, - status: indexStats?.status, + const baseResponse = { name: indexName, - uuid: indexStats?.uuid, primary: indexData.settings?.index?.number_of_shards, replica: indexData.settings?.index?.number_of_replicas, - documents: indexStats?.primaries?.docs?.count ?? 0, - documents_deleted: indexStats?.primaries?.docs?.deleted ?? 0, - size: new ByteSizeValue(indexStats?.total?.store?.size_in_bytes ?? 0).toString(), - primary_size: new ByteSizeValue(indexStats?.primaries?.store?.size_in_bytes ?? 0).toString(), isFrozen: indexData.settings?.index?.frozen === 'true', aliases: aliases.length ? aliases : 'none', hidden: indexData.settings?.index?.hidden === 'true', data_stream: indexData.data_stream, }; + + if (indicesStats) { + const indexStats = indicesStats[indexName]; + + return { + ...baseResponse, + health: indexStats?.health, + status: indexStats?.status, + uuid: indexStats?.uuid, + documents: indexStats?.primaries?.docs?.count ?? 0, + documents_deleted: indexStats?.primaries?.docs?.deleted ?? 0, + size: new ByteSizeValue(indexStats?.total?.store?.size_in_bytes ?? 0).toString(), + primary_size: new ByteSizeValue( + indexStats?.primaries?.store?.size_in_bytes ?? 0 + ).toString(), + }; + } + + return baseResponse; }); } -export const fetchIndices = async ( - client: IScopedClusterClient, - indexDataEnricher: IndexDataEnricher, - indexNames?: string[] -) => { - const indices = await fetchIndicesCall(client, indexNames); +export const fetchIndices = async ({ + client, + indexDataEnricher, + config, + indexNames, +}: { + client: IScopedClusterClient; + indexDataEnricher: IndexDataEnricher; + config: RouteDependencies['config']; + indexNames?: string[]; +}) => { + const indices = await fetchIndicesCall(client, config, indexNames); return await indexDataEnricher.enrichIndices(indices, client); }; diff --git a/x-pack/plugins/index_management/server/plugin.ts b/x-pack/plugins/index_management/server/plugin.ts index a42216d9f1bb7..645a1341b8015 100644 --- a/x-pack/plugins/index_management/server/plugin.ts +++ b/x-pack/plugins/index_management/server/plugin.ts @@ -55,6 +55,7 @@ export class IndexMgmtServerPlugin implements Plugin security !== undefined && security.license.isEnabled(), isLegacyTemplatesEnabled: this.config.enableLegacyTemplates, + isIndexStatsEnabled: this.config.enableIndexStats, }, indexDataEnricher: this.indexDataEnricher, lib: { diff --git a/x-pack/plugins/index_management/server/routes/api/component_templates/register_privileges_route.test.ts b/x-pack/plugins/index_management/server/routes/api/component_templates/register_privileges_route.test.ts index 601695c64e054..5582ee014b2c4 100644 --- a/x-pack/plugins/index_management/server/routes/api/component_templates/register_privileges_route.test.ts +++ b/x-pack/plugins/index_management/server/routes/api/component_templates/register_privileges_route.test.ts @@ -47,6 +47,7 @@ describe('GET privileges', () => { config: { isSecurityEnabled: () => true, isLegacyTemplatesEnabled: true, + isIndexStatsEnabled: true, }, indexDataEnricher: mockedIndexDataEnricher, lib: { @@ -114,6 +115,7 @@ describe('GET privileges', () => { config: { isSecurityEnabled: () => false, isLegacyTemplatesEnabled: true, + isIndexStatsEnabled: true, }, indexDataEnricher: mockedIndexDataEnricher, lib: { diff --git a/x-pack/plugins/index_management/server/routes/api/indices/register_get_route.ts b/x-pack/plugins/index_management/server/routes/api/indices/register_get_route.ts new file mode 100644 index 0000000000000..ae93bd3241180 --- /dev/null +++ b/x-pack/plugins/index_management/server/routes/api/indices/register_get_route.ts @@ -0,0 +1,52 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { IScopedClusterClient } from '@kbn/core/server'; +import { schema } from '@kbn/config-schema'; +import { KbnServerError, reportServerError } from '@kbn/kibana-utils-plugin/server'; +import { fetchIndices } from '../../../lib/fetch_indices'; +import { RouteDependencies } from '../../../types'; +import { addInternalBasePath } from '..'; + +export function registerGetRoute({ + router, + indexDataEnricher, + lib: { handleEsError }, + config, +}: RouteDependencies) { + router.get( + { + path: addInternalBasePath('/indices/{indexName}'), + validate: { + params: schema.object({ + indexName: schema.string(), + }), + }, + }, + async (context, request, response) => { + const client = (await context.core).elasticsearch.client as IScopedClusterClient; + const { indexName } = request.params; + try { + const indices = await fetchIndices({ + client, + indexDataEnricher, + indexNames: [indexName], + config, + }); + if (indices.length !== 1) { + return reportServerError( + response, + new KbnServerError(`Data for index ${indexName} was not found`, 400) + ); + } + return response.ok({ body: indices[0] }); + } catch (error) { + return handleEsError({ error, response }); + } + } + ); +} diff --git a/x-pack/plugins/index_management/server/routes/api/indices/register_indices_routes.ts b/x-pack/plugins/index_management/server/routes/api/indices/register_indices_routes.ts index c3e3eeb35118c..d73c9d375aade 100644 --- a/x-pack/plugins/index_management/server/routes/api/indices/register_indices_routes.ts +++ b/x-pack/plugins/index_management/server/routes/api/indices/register_indices_routes.ts @@ -17,6 +17,7 @@ import { registerRefreshRoute } from './register_refresh_route'; import { registerReloadRoute } from './register_reload_route'; import { registerDeleteRoute } from './register_delete_route'; import { registerUnfreezeRoute } from './register_unfreeze_route'; +import { registerGetRoute } from './register_get_route'; export function registerIndicesRoutes(dependencies: RouteDependencies) { registerClearCacheRoute(dependencies); @@ -29,4 +30,5 @@ export function registerIndicesRoutes(dependencies: RouteDependencies) { registerReloadRoute(dependencies); registerDeleteRoute(dependencies); registerUnfreezeRoute(dependencies); + registerGetRoute(dependencies); } diff --git a/x-pack/plugins/index_management/server/routes/api/indices/register_list_route.ts b/x-pack/plugins/index_management/server/routes/api/indices/register_list_route.ts index 48c1800aba95e..e42ebbf4a1e76 100644 --- a/x-pack/plugins/index_management/server/routes/api/indices/register_list_route.ts +++ b/x-pack/plugins/index_management/server/routes/api/indices/register_list_route.ts @@ -13,13 +13,14 @@ export function registerListRoute({ router, indexDataEnricher, lib: { handleEsError }, + config, }: RouteDependencies) { router.get( { path: addBasePath('/indices'), validate: false }, async (context, request, response) => { const { client } = (await context.core).elasticsearch; try { - const indices = await fetchIndices(client, indexDataEnricher); + const indices = await fetchIndices({ client, indexDataEnricher, config }); return response.ok({ body: indices }); } catch (error) { return handleEsError({ error, response }); diff --git a/x-pack/plugins/index_management/server/routes/api/indices/register_reload_route.ts b/x-pack/plugins/index_management/server/routes/api/indices/register_reload_route.ts index 42b78fe246ba8..91a04187fc238 100644 --- a/x-pack/plugins/index_management/server/routes/api/indices/register_reload_route.ts +++ b/x-pack/plugins/index_management/server/routes/api/indices/register_reload_route.ts @@ -21,6 +21,7 @@ export function registerReloadRoute({ router, indexDataEnricher, lib: { handleEsError }, + config, }: RouteDependencies) { router.post( { path: addBasePath('/indices/reload'), validate: { body: bodySchema } }, @@ -29,7 +30,7 @@ export function registerReloadRoute({ const { indexNames = [] } = (request.body as typeof bodySchema.type) ?? {}; try { - const indices = await fetchIndices(client, indexDataEnricher, indexNames); + const indices = await fetchIndices({ client, indexDataEnricher, config, indexNames }); return response.ok({ body: indices }); } catch (error) { return handleEsError({ error, response }); diff --git a/x-pack/plugins/index_management/server/routes/index.ts b/x-pack/plugins/index_management/server/routes/index.ts index 79d90762920bf..9bcd2c0373e3f 100644 --- a/x-pack/plugins/index_management/server/routes/index.ts +++ b/x-pack/plugins/index_management/server/routes/index.ts @@ -23,11 +23,14 @@ export class ApiRoutes { registerIndicesRoutes(dependencies); registerTemplateRoutes(dependencies); registerSettingsRoutes(dependencies); - registerStatsRoute(dependencies); registerMappingRoute(dependencies); registerComponentTemplateRoutes(dependencies); registerNodesRoute(dependencies); registerEnrichPoliciesRoute(dependencies); + + if (dependencies.config.isIndexStatsEnabled !== false) { + registerStatsRoute(dependencies); + } } start() {} diff --git a/x-pack/plugins/index_management/server/test/helpers/route_dependencies.ts b/x-pack/plugins/index_management/server/test/helpers/route_dependencies.ts index bfcf2a18a7736..241b127162042 100644 --- a/x-pack/plugins/index_management/server/test/helpers/route_dependencies.ts +++ b/x-pack/plugins/index_management/server/test/helpers/route_dependencies.ts @@ -13,6 +13,7 @@ export const routeDependencies: Omit = { config: { isSecurityEnabled: jest.fn().mockReturnValue(true), isLegacyTemplatesEnabled: true, + isIndexStatsEnabled: true, }, indexDataEnricher: new IndexDataEnricher(), lib: { diff --git a/x-pack/plugins/index_management/server/types.ts b/x-pack/plugins/index_management/server/types.ts index bd3d889f2bce9..25a946ee5ffcc 100644 --- a/x-pack/plugins/index_management/server/types.ts +++ b/x-pack/plugins/index_management/server/types.ts @@ -24,6 +24,7 @@ export interface RouteDependencies { config: { isSecurityEnabled: () => boolean; isLegacyTemplatesEnabled: boolean; + isIndexStatsEnabled: boolean; }; indexDataEnricher: IndexDataEnricher; lib: { diff --git a/x-pack/plugins/index_management/tsconfig.json b/x-pack/plugins/index_management/tsconfig.json index 8f32a32c78bb8..2df96ae23c47a 100644 --- a/x-pack/plugins/index_management/tsconfig.json +++ b/x-pack/plugins/index_management/tsconfig.json @@ -34,6 +34,8 @@ "@kbn/core-http-router-server-mocks", "@kbn/core-ui-settings-browser-mocks", "@kbn/core-ui-settings-browser", + "@kbn/kibana-utils-plugin", + "@kbn/core-http-browser", ], "exclude": [ "target/**/*", diff --git a/x-pack/plugins/infra/public/alerting/log_threshold/components/alert_details_app_section/components/log_rate_analysis.tsx b/x-pack/plugins/infra/public/alerting/log_threshold/components/alert_details_app_section/components/log_rate_analysis.tsx index be1a753edb5fa..170cd511f463e 100644 --- a/x-pack/plugins/infra/public/alerting/log_threshold/components/alert_details_app_section/components/log_rate_analysis.tsx +++ b/x-pack/plugins/infra/public/alerting/log_threshold/components/alert_details_app_section/components/log_rate_analysis.tsx @@ -6,7 +6,6 @@ */ import React, { FC, useEffect, useMemo, useState } from 'react'; -import { pick, orderBy } from 'lodash'; import moment from 'moment'; import { EuiFlexGroup, EuiFlexItem, EuiPanel, EuiTitle } from '@elastic/eui'; @@ -29,6 +28,7 @@ import { import { QueryDslQueryContainer } from '@elastic/elasticsearch/lib/api/types'; import { i18n } from '@kbn/i18n'; import { ALERT_END } from '@kbn/rule-data-utils'; +import { pick, orderBy } from 'lodash'; import { Color, colorTransformer } from '../../../../../../common/color_palette'; import { useKibanaContextForPlugin } from '../../../../../hooks/use_kibana'; import { @@ -289,6 +289,7 @@ export const LogRateAnalysis: FC = ({ r 'unifiedSearch', 'theme', 'lens', + 'i18n', ])} />
    diff --git a/x-pack/plugins/infra/public/components/asset_details/__stories__/decorator.tsx b/x-pack/plugins/infra/public/components/asset_details/__stories__/decorator.tsx index 340d314be6ce4..e553c405bc86f 100644 --- a/x-pack/plugins/infra/public/components/asset_details/__stories__/decorator.tsx +++ b/x-pack/plugins/infra/public/components/asset_details/__stories__/decorator.tsx @@ -164,6 +164,7 @@ export const DecorateWithAssetDetailsStateContext: DecoratorFn = (story) => { dateRange: { from: '2023-04-09T11:07:49Z', to: '2023-04-09T11:23:49Z', + mode: 'absolute', }, }} > diff --git a/x-pack/plugins/infra/public/components/asset_details/content/content.tsx b/x-pack/plugins/infra/public/components/asset_details/content/content.tsx index c67733f512b43..c9d622cf01493 100644 --- a/x-pack/plugins/infra/public/components/asset_details/content/content.tsx +++ b/x-pack/plugins/infra/public/components/asset_details/content/content.tsx @@ -5,33 +5,58 @@ * 2.0. */ +import { EuiFlexGroup, EuiFlexItem } from '@elastic/eui'; import React from 'react'; +import { DatePicker } from '../date_picker/date_picker'; import { useTabSwitcherContext } from '../hooks/use_tab_switcher'; import { Anomalies, Metadata, Processes, Osquery, Logs, Overview } from '../tabs'; import { FlyoutTabIds } from '../types'; export const Content = () => { return ( - <> - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + ); +}; + +const DatePickerWrapper = ({ visibleFor }: { visibleFor: FlyoutTabIds[] }) => { + const { activeTabId } = useTabSwitcherContext(); + + return ( + ); }; diff --git a/x-pack/plugins/infra/public/components/asset_details/context_providers.tsx b/x-pack/plugins/infra/public/components/asset_details/context_providers.tsx index 179a1bfaf80b3..6af455dff2b02 100644 --- a/x-pack/plugins/infra/public/components/asset_details/context_providers.tsx +++ b/x-pack/plugins/infra/public/components/asset_details/context_providers.tsx @@ -19,7 +19,7 @@ export const ContextProviders = ({ }) => { const { asset, dateRange, overrides, onTabsStateChange, assetType = 'host', renderMode } = props; return ( - + { + const { onTabsStateChange } = useAssetDetailsStateContext(); + const { dateRange, setDateRange } = useDateRangeProviderContext(); + const onTimeChange = useCallback( + ({ start, end, isInvalid }: OnTimeChangeProps) => { + if (!isInvalid) { + setDateRange({ from: start, to: end }); + if (onTabsStateChange) { + onTabsStateChange({ dateRange: { from: start, to: end } }); + } + } + }, + [onTabsStateChange, setDateRange] + ); + + return ( + + ); +}; diff --git a/x-pack/plugins/infra/public/components/asset_details/hooks/use_asset_details_state.ts b/x-pack/plugins/infra/public/components/asset_details/hooks/use_asset_details_state.ts index c8bd88f126859..53bb74beef943 100644 --- a/x-pack/plugins/infra/public/components/asset_details/hooks/use_asset_details_state.ts +++ b/x-pack/plugins/infra/public/components/asset_details/hooks/use_asset_details_state.ts @@ -7,7 +7,6 @@ import createContainer from 'constate'; import type { AssetDetailsProps } from '../types'; -import { useDateRangeProviderContext } from './use_date_range'; import { useMetadataStateProviderContext } from './use_metadata_state'; export interface UseAssetDetailsStateProps { @@ -19,7 +18,6 @@ export interface UseAssetDetailsStateProps { export function useAssetDetailsState({ state }: UseAssetDetailsStateProps) { const { metadata } = useMetadataStateProviderContext(); - const { dateRange, dateRangeTs } = useDateRangeProviderContext(); const { asset, assetType, onTabsStateChange, overrides, renderMode } = state; // When the asset asset.name is known we can load the page faster @@ -32,8 +30,6 @@ export function useAssetDetailsState({ state }: UseAssetDetailsStateProps) { name: asset.name || metadata?.name || 'asset-name', }, assetType, - dateRange, - dateRangeTs, onTabsStateChange, overrides, renderMode, diff --git a/x-pack/plugins/infra/public/components/asset_details/hooks/use_date_range.ts b/x-pack/plugins/infra/public/components/asset_details/hooks/use_date_range.ts index bb20ddab56957..8253b7e8b5685 100644 --- a/x-pack/plugins/infra/public/components/asset_details/hooks/use_date_range.ts +++ b/x-pack/plugins/infra/public/components/asset_details/hooks/use_date_range.ts @@ -5,33 +5,38 @@ * 2.0. */ +import type { TimeRange } from '@kbn/es-query'; import createContainer from 'constate'; -import { useMemo } from 'react'; +import { useCallback, useMemo, useState } from 'react'; import { parseDateRange } from '../../../utils/datemath'; -import type { AssetDetailsProps } from '../types'; + import { toTimestampRange } from '../utils'; -const DEFAULT_DATE_RANGE = { +const DEFAULT_DATE_RANGE: TimeRange = { from: 'now-15m', to: 'now', }; -export type UseAssetDetailsStateProps = Pick; +export interface UseAssetDetailsStateProps { + initialDateRange: TimeRange; +} + +export function useDateRangeProvider({ initialDateRange }: UseAssetDetailsStateProps) { + const [dateRange, setDateRange] = useState(initialDateRange); -export function useDateRangeProvider({ dateRange: rawDateRange }: UseAssetDetailsStateProps) { - const dateRange = useMemo(() => { + const parsedDateRange = useMemo(() => { const { from = DEFAULT_DATE_RANGE.from, to = DEFAULT_DATE_RANGE.to } = - parseDateRange(rawDateRange); + parseDateRange(dateRange); return { from, to }; - }, [rawDateRange]); + }, [dateRange]); - const dateRangeTs = toTimestampRange(dateRange); + const getDateRangeInTimestamp = useCallback( + () => toTimestampRange(parsedDateRange), + [parsedDateRange] + ); - return { - dateRange, - dateRangeTs, - }; + return { dateRange, setDateRange, getDateRangeInTimestamp }; } export const [DateRangeProvider, useDateRangeProviderContext] = diff --git a/x-pack/plugins/infra/public/components/asset_details/hooks/use_metadata_state.ts b/x-pack/plugins/infra/public/components/asset_details/hooks/use_metadata_state.ts index e9a162b2a4c7e..6fc1991fcb1dc 100644 --- a/x-pack/plugins/infra/public/components/asset_details/hooks/use_metadata_state.ts +++ b/x-pack/plugins/infra/public/components/asset_details/hooks/use_metadata_state.ts @@ -15,7 +15,7 @@ import { useDateRangeProviderContext } from './use_date_range'; export type UseMetadataProviderProps = Pick; export function useMetadataProvider({ asset, assetType }: UseMetadataProviderProps) { - const { dateRangeTs } = useDateRangeProviderContext(); + const { getDateRangeInTimestamp } = useDateRangeProviderContext(); const inventoryModel = findInventoryModel(assetType); const { sourceId } = useSourceContext(); @@ -24,7 +24,7 @@ export function useMetadataProvider({ asset, assetType }: UseMetadataProviderPro assetType, inventoryModel.requiredMetrics, sourceId, - dateRangeTs + getDateRangeInTimestamp() ); return { diff --git a/x-pack/plugins/infra/public/components/asset_details/hooks/use_page_header.tsx b/x-pack/plugins/infra/public/components/asset_details/hooks/use_page_header.tsx index c7db9b6c4893c..da8d99b433821 100644 --- a/x-pack/plugins/infra/public/components/asset_details/hooks/use_page_header.tsx +++ b/x-pack/plugins/infra/public/components/asset_details/hooks/use_page_header.tsx @@ -9,17 +9,13 @@ import { useEuiTheme, EuiIcon, type EuiPageHeaderProps } from '@elastic/eui'; import { css } from '@emotion/react'; import { useLinkProps } from '@kbn/observability-shared-plugin/public'; import React, { useCallback, useMemo } from 'react'; -import { uptimeOverviewLocatorID } from '@kbn/observability-plugin/public'; import { capitalize } from 'lodash'; -import { useKibanaContextForPlugin } from '../../../hooks/use_kibana'; import { APM_HOST_FILTER_FIELD } from '../constants'; -import { LinkToAlertsRule, LinkToApmServices, LinkToNodeDetails, LinkToUptime } from '../links'; +import { LinkToAlertsRule, LinkToApmServices, LinkToNodeDetails } from '../links'; import { FlyoutTabIds, type LinkOptions, type Tab, type TabIds } from '../types'; -import { toTimestampRange } from '../utils'; import { useAssetDetailsStateContext } from './use_asset_details_state'; import { useDateRangeProviderContext } from './use_date_range'; import { useTabSwitcherContext } from './use_tab_switcher'; -import { useMetadataStateProviderContext } from './use_metadata_state'; type TabItem = NonNullable['tabs']>[number]; @@ -31,9 +27,8 @@ export const usePageHeader = (tabs: Tab[], links?: LinkOptions[]) => { }; const useRightSideItems = (links?: LinkOptions[]) => { - const { dateRange } = useDateRangeProviderContext(); + const { getDateRangeInTimestamp } = useDateRangeProviderContext(); const { asset, assetType, overrides } = useAssetDetailsStateContext(); - const { metadata } = useMetadataStateProviderContext(); const topCornerLinkComponents: Record = useMemo( () => ({ @@ -41,24 +36,13 @@ const useRightSideItems = (links?: LinkOptions[]) => { ), alertRule: , apmServices: , - uptime: ( - - ), }), - [asset, assetType, dateRange, metadata?.info?.host?.ip, overrides?.alertRule?.onCreateRuleClick] + [asset, assetType, getDateRangeInTimestamp, overrides?.alertRule?.onCreateRuleClick] ); const rightSideItems = useMemo( @@ -71,9 +55,7 @@ const useRightSideItems = (links?: LinkOptions[]) => { const useTabs = (tabs: Tab[]) => { const { showTab, activeTabId } = useTabSwitcherContext(); - const { asset, assetType } = useAssetDetailsStateContext(); - const { metadata } = useMetadataStateProviderContext(); - const { share } = useKibanaContextForPlugin().services; + const { asset } = useAssetDetailsStateContext(); const { euiTheme } = useEuiTheme(); const onTabClick = useCallback( @@ -110,48 +92,11 @@ const useTabs = (tabs: Tab[]) => { [apmTracesMenuItemLinkProps, euiTheme.size.xs] ); - const getTabToUptime = useCallback( - (name: string) => ({ - 'data-test-subj': 'infraAssetDetailsUptimeLinkTab', - onClick: () => - share.url.locators.get(uptimeOverviewLocatorID)!.navigate({ - [assetType]: asset.id, - ip: (Array.isArray(metadata?.info?.host?.ip) - ? metadata?.info?.host?.ip ?? [] - : [metadata?.info?.host?.ip])[0], - }), - label: ( - <> - - {name} - - ), - }), - [asset.id, assetType, euiTheme.size.xs, metadata?.info?.host?.ip, share.url.locators] - ); - - const tabbedLinks = useMemo( - () => ({ - [FlyoutTabIds.LINK_TO_APM]: getTabToApmTraces, - [FlyoutTabIds.LINK_TO_UPTIME]: getTabToUptime, - }), - [getTabToApmTraces, getTabToUptime] - ); - const tabEntries: TabItem[] = useMemo( () => tabs.map(({ name, ...tab }) => { - if (Object.keys(tabbedLinks).includes(tab.id)) { - return tabbedLinks[tab.id as keyof typeof tabbedLinks](name); - } - if (tab.id === FlyoutTabIds.LINK_TO_APM) { - return getTabToUptime(name); + return getTabToApmTraces(name); } return { @@ -162,7 +107,7 @@ const useTabs = (tabs: Tab[]) => { label: name, }; }), - [activeTabId, getTabToUptime, onTabClick, tabbedLinks, tabs] + [activeTabId, getTabToApmTraces, onTabClick, tabs] ); return { tabEntries }; diff --git a/x-pack/plugins/infra/public/components/asset_details/links/index.ts b/x-pack/plugins/infra/public/components/asset_details/links/index.ts index fa46176e44e50..6dd74f7b5178a 100644 --- a/x-pack/plugins/infra/public/components/asset_details/links/index.ts +++ b/x-pack/plugins/infra/public/components/asset_details/links/index.ts @@ -6,6 +6,5 @@ */ export { LinkToApmServices } from './link_to_apm_services'; -export { LinkToUptime } from './link_to_uptime'; export { LinkToAlertsRule } from './link_to_alerts'; export { LinkToNodeDetails } from './link_to_node_details'; diff --git a/x-pack/plugins/infra/public/components/asset_details/links/link_to_node_details.tsx b/x-pack/plugins/infra/public/components/asset_details/links/link_to_node_details.tsx index f53ece1159e45..d834a6ca9e0d7 100644 --- a/x-pack/plugins/infra/public/components/asset_details/links/link_to_node_details.tsx +++ b/x-pack/plugins/infra/public/components/asset_details/links/link_to_node_details.tsx @@ -9,12 +9,11 @@ import { FormattedMessage } from '@kbn/i18n-react'; import { EuiButtonEmpty } from '@elastic/eui'; import { useLinkProps } from '@kbn/observability-shared-plugin/public'; import { getNodeDetailUrl } from '../../../pages/link_to'; -import { findInventoryModel } from '../../../../common/inventory_models'; import type { InventoryItemType } from '../../../../common/inventory_models/types'; import type { Asset } from '../types'; export interface LinkToNodeDetailsProps { - currentTimestamp: number; + dateRangeTimestamp: { from: number; to: number }; asset: Asset; assetType: InventoryItemType; } @@ -22,17 +21,14 @@ export interface LinkToNodeDetailsProps { export const LinkToNodeDetails = ({ asset, assetType, - currentTimestamp, + dateRangeTimestamp, }: LinkToNodeDetailsProps) => { - const inventoryModel = findInventoryModel(assetType); - const nodeDetailFrom = currentTimestamp - inventoryModel.metrics.defaultTimeRangeInSeconds * 1000; - const nodeDetailMenuItemLinkProps = useLinkProps({ ...getNodeDetailUrl({ nodeType: assetType, nodeId: asset.id, - from: nodeDetailFrom, - to: currentTimestamp, + from: dateRangeTimestamp.from, + to: dateRangeTimestamp.to, assetName: asset.name, }), }); diff --git a/x-pack/plugins/infra/public/components/asset_details/links/link_to_uptime.tsx b/x-pack/plugins/infra/public/components/asset_details/links/link_to_uptime.tsx deleted file mode 100644 index 1800741aaf810..0000000000000 --- a/x-pack/plugins/infra/public/components/asset_details/links/link_to_uptime.tsx +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import React from 'react'; -import { EuiButtonEmpty } from '@elastic/eui'; -import { FormattedMessage } from '@kbn/i18n-react'; -import { uptimeOverviewLocatorID } from '@kbn/observability-plugin/public'; -import { useKibanaContextForPlugin } from '../../../hooks/use_kibana'; -import type { InventoryItemType } from '../../../../common/inventory_models/types'; - -export interface LinkToUptimeProps { - assetType: InventoryItemType; - assetName: string; - ip?: string | null; -} - -export const LinkToUptime = ({ assetType, assetName, ip }: LinkToUptimeProps) => { - const { share } = useKibanaContextForPlugin().services; - - return ( - - share.url.locators.get(uptimeOverviewLocatorID)!.navigate({ [assetType]: assetName, ip }) - } - > - - - ); -}; diff --git a/x-pack/plugins/infra/public/components/asset_details/tabs/anomalies/anomalies.tsx b/x-pack/plugins/infra/public/components/asset_details/tabs/anomalies/anomalies.tsx index 6ccf95e240f62..001678d6e6c01 100644 --- a/x-pack/plugins/infra/public/components/asset_details/tabs/anomalies/anomalies.tsx +++ b/x-pack/plugins/infra/public/components/asset_details/tabs/anomalies/anomalies.tsx @@ -8,10 +8,19 @@ import React from 'react'; import { AnomaliesTable } from '../../../../pages/metrics/inventory_view/components/ml/anomaly_detection/anomalies_table/anomalies_table'; import { useAssetDetailsStateContext } from '../../hooks/use_asset_details_state'; +import { useDateRangeProviderContext } from '../../hooks/use_date_range'; export const Anomalies = () => { + const { dateRange } = useDateRangeProviderContext(); const { asset, overrides } = useAssetDetailsStateContext(); const { onClose = () => {} } = overrides?.anomalies ?? {}; - return ; + return ( + + ); }; diff --git a/x-pack/plugins/infra/public/components/asset_details/tabs/logs/logs.tsx b/x-pack/plugins/infra/public/components/asset_details/tabs/logs/logs.tsx index 10478af29d86e..68f0ea074f292 100644 --- a/x-pack/plugins/infra/public/components/asset_details/tabs/logs/logs.tsx +++ b/x-pack/plugins/infra/public/components/asset_details/tabs/logs/logs.tsx @@ -13,18 +13,18 @@ import { EuiFieldSearch, EuiFlexGroup, EuiFlexItem, EuiButtonEmpty } from '@elas import { RedirectAppLinks } from '@kbn/shared-ux-link-redirect-app'; import { LogStream } from '@kbn/logs-shared-plugin/public'; import { DEFAULT_LOG_VIEW, LogViewReference } from '@kbn/logs-shared-plugin/common'; - import { useKibanaContextForPlugin } from '../../../../hooks/use_kibana'; import { findInventoryFields } from '../../../../../common/inventory_models'; import { InfraLoadingPanel } from '../../../loading'; import { useAssetDetailsStateContext } from '../../hooks/use_asset_details_state'; import { useDataViewsProviderContext } from '../../hooks/use_data_views'; +import { useDateRangeProviderContext } from '../../hooks/use_date_range'; const TEXT_QUERY_THROTTLE_INTERVAL_MS = 500; export const Logs = () => { - const { asset, assetType, overrides, onTabsStateChange, dateRangeTs } = - useAssetDetailsStateContext(); + const { getDateRangeInTimestamp } = useDateRangeProviderContext(); + const { asset, assetType, overrides, onTabsStateChange } = useAssetDetailsStateContext(); const { logs } = useDataViewsProviderContext(); const { query: overrideQuery } = overrides?.logs ?? {}; @@ -35,7 +35,7 @@ export const Logs = () => { const [textQuery, setTextQuery] = useState(overrideQuery ?? ''); const [textQueryDebounced, setTextQueryDebounced] = useState(overrideQuery ?? ''); - const currentTimestamp = dateRangeTs.to; + const currentTimestamp = getDateRangeInTimestamp().to; const startTimestamp = currentTimestamp - 60 * 60 * 1000; // 60 minutes useDebounce( diff --git a/x-pack/plugins/infra/public/components/asset_details/tabs/overview/metrics/metrics_grid.tsx b/x-pack/plugins/infra/public/components/asset_details/tabs/overview/metrics/metrics_grid.tsx index 609feca5222e2..aa07a10686e6a 100644 --- a/x-pack/plugins/infra/public/components/asset_details/tabs/overview/metrics/metrics_grid.tsx +++ b/x-pack/plugins/infra/public/components/asset_details/tabs/overview/metrics/metrics_grid.tsx @@ -10,6 +10,7 @@ import { EuiFlexGrid, EuiFlexItem, EuiTitle, EuiSpacer, EuiFlexGroup } from '@el import type { DataView } from '@kbn/data-views-plugin/public'; import type { TimeRange } from '@kbn/es-query'; import { FormattedMessage } from '@kbn/i18n-react'; +import { LensEmbeddableInput } from '@kbn/lens-plugin/public'; import { assetDetailsDashboards, XY_MISSING_VALUE_DOTTED_LINE_CONFIG, @@ -18,8 +19,10 @@ import { buildCombinedHostsFilter } from '../../../../../utils/filters/build'; import { LensChart, HostMetricsExplanationContent } from '../../../../lens'; import { METRIC_CHART_HEIGHT } from '../../../constants'; import { Popover } from '../../common/popover'; +import { useDateRangeProviderContext } from '../../../hooks/use_date_range'; type DataViewOrigin = 'logs' | 'metrics'; +type BrushEndArgs = Parameters>[0]; interface Props { nodeName: string; @@ -30,6 +33,7 @@ interface Props { export const MetricsGrid = React.memo( ({ nodeName, metricsDataView, logsDataView, timeRange }: Props) => { + const { setDateRange } = useDateRangeProviderContext(); const getDataView = useCallback( (dataViewOrigin: DataViewOrigin) => { return dataViewOrigin === 'metrics' ? metricsDataView : logsDataView; @@ -50,6 +54,18 @@ export const MetricsGrid = React.memo( [getDataView, nodeName] ); + const handleBrushEnd = useCallback( + ({ range, preventDefault }: BrushEndArgs) => { + setDateRange({ + from: new Date(range[0]).toISOString(), + to: new Date(range[1]).toISOString(), + }); + + preventDefault(); + }, + [setDateRange] + ); + return ( @@ -77,7 +93,7 @@ export const MetricsGrid = React.memo( title={title} overrides={overrides} visualizationType="lnsXY" - disableTriggers + onBrushEnd={handleBrushEnd} /> ) diff --git a/x-pack/plugins/infra/public/components/asset_details/tabs/overview/overview.tsx b/x-pack/plugins/infra/public/components/asset_details/tabs/overview/overview.tsx index c8e0e08bba85f..3104fdf6b5f85 100644 --- a/x-pack/plugins/infra/public/components/asset_details/tabs/overview/overview.tsx +++ b/x-pack/plugins/infra/public/components/asset_details/tabs/overview/overview.tsx @@ -17,9 +17,11 @@ import { MetricsGrid } from './metrics/metrics_grid'; import { useAssetDetailsStateContext } from '../../hooks/use_asset_details_state'; import { useMetadataStateProviderContext } from '../../hooks/use_metadata_state'; import { useDataViewsProviderContext } from '../../hooks/use_data_views'; +import { useDateRangeProviderContext } from '../../hooks/use_date_range'; export const Overview = () => { - const { asset, assetType, dateRange, renderMode } = useAssetDetailsStateContext(); + const { dateRange } = useDateRangeProviderContext(); + const { asset, assetType, renderMode } = useAssetDetailsStateContext(); const { metadata, loading: metadataLoading, diff --git a/x-pack/plugins/infra/public/components/asset_details/tabs/processes/processes.tsx b/x-pack/plugins/infra/public/components/asset_details/tabs/processes/processes.tsx index 7bb8e96276fd8..0d96ff1d2264e 100644 --- a/x-pack/plugins/infra/public/components/asset_details/tabs/processes/processes.tsx +++ b/x-pack/plugins/infra/public/components/asset_details/tabs/processes/processes.tsx @@ -10,13 +10,15 @@ import { debounce } from 'lodash'; import { i18n } from '@kbn/i18n'; import { EuiSearchBar, - EuiSpacer, EuiEmptyPrompt, EuiButton, - EuiText, EuiIconTip, + EuiTitle, Query, + EuiFlexGroup, + EuiFlexItem, } from '@elastic/eui'; +import { FormattedMessage } from '@kbn/i18n-react'; import { parseSearchString } from './parse_search_string'; import { ProcessesTable } from './processes_table'; import { STATE_NAMES } from './states'; @@ -28,6 +30,7 @@ import { } from '../../../../pages/metrics/inventory_view/hooks/use_process_list'; import { getFieldByType } from '../../../../../common/inventory_models'; import { useAssetDetailsStateContext } from '../../hooks/use_asset_details_state'; +import { useDateRangeProviderContext } from '../../hooks/use_date_range'; const options = Object.entries(STATE_NAMES).map(([value, view]: [string, string]) => ({ value, @@ -35,8 +38,8 @@ const options = Object.entries(STATE_NAMES).map(([value, view]: [string, string] })); export const Processes = () => { - const { asset, assetType, overrides, dateRangeTs, onTabsStateChange } = - useAssetDetailsStateContext(); + const { getDateRangeInTimestamp } = useDateRangeProviderContext(); + const { asset, assetType, overrides, onTabsStateChange } = useAssetDetailsStateContext(); const { query: overrideQuery } = overrides?.processes ?? {}; @@ -44,7 +47,8 @@ export const Processes = () => { const [searchBarState, setSearchBarState] = useState(() => searchText ? Query.parse(searchText) : Query.MATCH_ALL ); - const currentTimestamp = dateRangeTs.to; + + const currentTimestamp = getDateRangeInTimestamp().to; const [sortBy, setSortBy] = useState({ name: 'cpu', @@ -90,87 +94,106 @@ export const Processes = () => { return ( - - - -

    - {i18n.translate('xpack.infra.metrics.nodeDetails.processesHeader', { - defaultMessage: 'Top processes', - })}{' '} - + + + + + + + + + + + + + + + + + + + -

    -
    - - - - {!error ? ( - - ) : ( - - {i18n.translate('xpack.infra.metrics.nodeDetails.processListError', { - defaultMessage: 'Unable to load process data', - })} - - } - actions={ - - {i18n.translate('xpack.infra.metrics.nodeDetails.processListRetry', { - defaultMessage: 'Try again', - })} - - } - /> - )} + + + {!error ? ( + + ) : ( + + + + } + actions={ + + + + } + /> + )} + +
    ); }; diff --git a/x-pack/plugins/infra/public/components/asset_details/tabs/processes/processes_table.tsx b/x-pack/plugins/infra/public/components/asset_details/tabs/processes/processes_table.tsx index 2a199549943f4..f5505da3a634b 100644 --- a/x-pack/plugins/infra/public/components/asset_details/tabs/processes/processes_table.tsx +++ b/x-pack/plugins/infra/public/components/asset_details/tabs/processes/processes_table.tsx @@ -17,14 +17,16 @@ import { EuiTableRowCell, EuiLoadingChart, EuiEmptyPrompt, + useEuiTheme, EuiText, EuiLink, EuiButton, SortableProperties, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, + EuiCode, } from '@elastic/eui'; -import { euiStyled } from '@kbn/kibana-react-plugin/common'; +import { css } from '@emotion/react'; import { FORMATTERS } from '../../../../../common/formatters'; import type { SortBy } from '../../../../pages/metrics/inventory_view/hooks/use_process_list'; import type { Process } from './types'; @@ -113,9 +115,10 @@ export const ProcessesTable = ({ titleSize="s" title={ - {i18n.translate('xpack.infra.metrics.nodeDetails.noProcesses', { - defaultMessage: 'No processes found', - })} + } body={ @@ -145,37 +148,43 @@ export const ProcessesTable = ({ data-test-subj="infraProcessesTableClearFiltersButton" onClick={clearSearchBar} > - {i18n.translate('xpack.infra.metrics.nodeDetails.noProcessesClearFilters', { - defaultMessage: 'Clear filters', - })} + } /> ); return ( - <> - - - - {columns.map((column) => ( - updateSortableProperties(column.field) : undefined} - isSorted={sortBy.name === column.field} - isSortAscending={sortBy.name === column.field && sortBy.isAscending} - > - {column.name} - - ))} - - - - - - + + + + {columns.map((column) => ( + updateSortableProperties(column.field) : undefined} + isSorted={sortBy.name === column.field} + isSortAscending={sortBy.name === column.field && sortBy.isAscending} + > + {column.name} + + ))} + + + + + ); }; @@ -200,6 +209,7 @@ interface TableBodyProps { items: Process[]; currentTime: number; } + const ProcessesTableBody = ({ items, currentTime }: TableBodyProps) => ( <> {items.map((item, i) => { @@ -218,14 +228,6 @@ const ProcessesTableBody = ({ items, currentTime }: TableBodyProps) => ( ); -const StyledTableBody = euiStyled(EuiTableBody)` - & .euiTableCellContent { - padding-top: 0; - padding-bottom: 0; - - } -`; - const ONE_MINUTE = 60 * 1000; const ONE_HOUR = ONE_MINUTE * 60; const RuntimeCell = ({ startTime, currentTime }: { startTime: number; currentTime: number }) => { @@ -271,7 +273,7 @@ const columns: Array<{ }), sortable: false, width: '40%', - render: (command: string) => {command}, + render: (command: string) => , }, { field: 'startTime', @@ -302,10 +304,25 @@ const columns: Array<{ }, ]; -const CodeLine = euiStyled.div` - font-family: ${(props) => props.theme.eui.euiCodeFontFamily}; - font-size: ${(props) => props.theme.eui.euiFontSizeS}; - white-space: pre; - overflow: hidden; - text-overflow: ellipsis; -`; +const CodeLine = ({ command }: { command: string }) => { + const euiTheme = useEuiTheme(); + return ( +
    + + {command} + +
    + ); +}; diff --git a/x-pack/plugins/infra/public/components/asset_details/tabs/processes/summary_table.tsx b/x-pack/plugins/infra/public/components/asset_details/tabs/processes/summary_table.tsx index 928f48307eee7..6b097275d9f62 100644 --- a/x-pack/plugins/infra/public/components/asset_details/tabs/processes/summary_table.tsx +++ b/x-pack/plugins/infra/public/components/asset_details/tabs/processes/summary_table.tsx @@ -17,7 +17,7 @@ import { EuiDescriptionListDescription, EuiHorizontalRule, } from '@elastic/eui'; -import { euiStyled } from '@kbn/kibana-react-plugin/common'; +import { css } from '@emotion/react'; import type { ProcessListAPIResponse } from '../../../../../common/http_api'; import { STATE_NAMES } from './states'; import { NOT_AVAILABLE_LABEL } from '../../translations'; @@ -63,9 +63,25 @@ export const SummaryTable = ({ processSummary, isLoading }: Props) => { data-test-subj="infraAssetDetailsProcessesSummaryTableItem" compressed > - {columnTitles[field as keyof SummaryRecord]} + + {columnTitles[field as keyof SummaryRecord]} + - {value === -1 ? : value} + {value === -1 ? ( + + ) : ( + value + )} @@ -82,12 +98,3 @@ const columnTitles = { }), ...STATE_NAMES, }; - -const LoadingSpinner = euiStyled(EuiLoadingSpinner).attrs({ size: 'm' })` - margin-top: 2px; - margin-bottom: 3px; -`; - -const ColumnTitle = euiStyled(EuiDescriptionListTitle)` - white-space: nowrap; -`; diff --git a/x-pack/plugins/infra/public/components/asset_details/types.ts b/x-pack/plugins/infra/public/components/asset_details/types.ts index 44cc7fbb4faf9..839154a4b9d33 100644 --- a/x-pack/plugins/infra/public/components/asset_details/types.ts +++ b/x-pack/plugins/infra/public/components/asset_details/types.ts @@ -26,7 +26,7 @@ export enum FlyoutTabIds { export type TabIds = `${FlyoutTabIds}`; -export interface TabState { +export interface OverridableTabState { metadata?: { query?: string; showActionsColumn?: boolean; @@ -45,6 +45,10 @@ export interface TabState { }; } +export interface TabState extends OverridableTabState { + activeTabId?: TabIds; + dateRange?: TimeRange; +} export interface FlyoutProps { closeFlyout: () => void; mode: 'flyout'; @@ -61,7 +65,7 @@ export interface Tab { name: string; } -export type LinkOptions = 'alertRule' | 'nodeDetails' | 'apmServices' | 'uptime'; +export type LinkOptions = 'alertRule' | 'nodeDetails' | 'apmServices'; export interface AssetDetailsProps { asset: Asset; @@ -69,7 +73,7 @@ export interface AssetDetailsProps { dateRange: TimeRange; tabs: Tab[]; activeTabId?: TabIds; - overrides?: TabState; + overrides?: OverridableTabState; renderMode: RenderMode; onTabsStateChange?: TabsStateChangeFn; links?: LinkOptions[]; @@ -78,7 +82,7 @@ export interface AssetDetailsProps { metricAlias: string; } -export type TabsStateChangeFn = (state: TabState & { activeTabId?: TabIds }) => void; +export type TabsStateChangeFn = (state: TabState) => void; export interface ContentTemplateProps { header: Pick; diff --git a/x-pack/plugins/infra/public/pages/metrics/hosts/components/host_details_flyout/flyout_wrapper.tsx b/x-pack/plugins/infra/public/pages/metrics/hosts/components/host_details_flyout/flyout_wrapper.tsx index 6daf6b36e5609..ee4115a2ed981 100644 --- a/x-pack/plugins/infra/public/pages/metrics/hosts/components/host_details_flyout/flyout_wrapper.tsx +++ b/x-pack/plugins/infra/public/pages/metrics/hosts/components/host_details_flyout/flyout_wrapper.tsx @@ -21,14 +21,14 @@ export interface Props { export const FlyoutWrapper = ({ node: { name }, closeFlyout }: Props) => { const { source } = useSourceContext(); - const { searchCriteria } = useUnifiedSearchContext(); + const { parsedDateRange } = useUnifiedSearchContext(); const [hostFlyoutState, setHostFlyoutState] = useHostFlyoutUrlState(); return source ? ( { }} onTabsStateChange={(state) => setHostFlyoutState({ + dateRange: state.dateRange, metadataSearch: state.metadata?.query, processSearch: state.processes?.query, logsSearch: state.logs?.query, diff --git a/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_host_count.ts b/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_host_count.ts index c5e1f7df63453..06ecb1a87e393 100644 --- a/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_host_count.ts +++ b/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_host_count.ts @@ -22,12 +22,12 @@ export const useHostCount = () => { const { services: { telemetry }, } = useKibanaContextForPlugin(); - const { buildQuery, getParsedDateRange } = useUnifiedSearchContext(); + const { buildQuery, parsedDateRange } = useUnifiedSearchContext(); const { search: fetchHostCount, requests$ } = useDataSearch({ getRequest: useCallback(() => { const query = buildQuery(); - const dateRange = getParsedDateRange(); + const dateRange = parsedDateRange; const filters: QueryDslQueryContainer = { bool: { @@ -74,7 +74,7 @@ export const useHostCount = () => { }, options: { strategy: ES_SEARCH_STRATEGY }, }; - }, [buildQuery, dataView, getParsedDateRange, metricAlias]), + }, [buildQuery, dataView, parsedDateRange, metricAlias]), parseResponses: normalizeDataSearchResponse, }); diff --git a/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_host_flyout_url_state.ts b/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_host_flyout_url_state.ts index 8e733366f3725..62d8fdb302d3e 100644 --- a/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_host_flyout_url_state.ts +++ b/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_host_flyout_url_state.ts @@ -59,6 +59,10 @@ const HostFlyoutStateRT = rt.intersection([ tabId: FlyoutTabIdRT, }), rt.partial({ + dateRange: rt.type({ + from: rt.string, + to: rt.string, + }), processSearch: rt.string, metadataSearch: rt.string, logsSearch: rt.string, diff --git a/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_hosts_table.tsx b/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_hosts_table.tsx index f33d4383a43ac..22677d692fdb9 100644 --- a/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_hosts_table.tsx +++ b/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_hosts_table.tsx @@ -128,7 +128,7 @@ const sortTableData = export const useHostsTable = () => { const [selectedItems, setSelectedItems] = useState([]); const { hostNodes } = useHostsViewContext(); - const { searchCriteria } = useUnifiedSearchContext(); + const { parsedDateRange } = useUnifiedSearchContext(); const [{ pagination, sorting }, setProperties] = useHostsTableUrlState(); const { services: { @@ -244,7 +244,7 @@ export const useHostsTable = () => { render: (title: HostNodeRow['title']) => ( reportHostEntryClick(title)} /> ), @@ -351,7 +351,7 @@ export const useHostsTable = () => { width: '120px', }, ], - [hostFlyoutState?.itemId, reportHostEntryClick, searchCriteria.dateRange, setHostFlyoutState] + [hostFlyoutState?.itemId, parsedDateRange, reportHostEntryClick, setHostFlyoutState] ); const selection: EuiTableSelectionType = { diff --git a/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_hosts_view.ts b/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_hosts_view.ts index fdf57978ccd02..6cf0a0f09de54 100644 --- a/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_hosts_view.ts +++ b/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_hosts_view.ts @@ -43,18 +43,18 @@ export const useHostsView = () => { const { services: { http }, } = useKibanaContextForPlugin(); - const { buildQuery, getParsedDateRange, searchCriteria } = useUnifiedSearchContext(); + const { buildQuery, parsedDateRange, searchCriteria } = useUnifiedSearchContext(); const abortCtrlRef = useRef(new AbortController()); const baseRequest = useMemo( () => createInfraMetricsRequest({ - dateRange: getParsedDateRange(), + dateRange: parsedDateRange, esQuery: buildQuery(), sourceId, limit: searchCriteria.limit, }), - [buildQuery, getParsedDateRange, sourceId, searchCriteria.limit] + [buildQuery, parsedDateRange, sourceId, searchCriteria.limit] ); const [state, refetch] = useAsyncFn( diff --git a/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_unified_search.ts b/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_unified_search.ts index db0b01a70f3ee..3f6741b33f65c 100644 --- a/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_unified_search.ts +++ b/x-pack/plugins/infra/public/pages/metrics/hosts/hooks/use_unified_search.ts @@ -5,7 +5,7 @@ * 2.0. */ import createContainer from 'constate'; -import { useCallback, useEffect, useState } from 'react'; +import { useCallback, useEffect, useMemo, useState } from 'react'; import { buildEsQuery, fromKueryExpression, type Query } from '@kbn/es-query'; import { map, skip, startWith } from 'rxjs/operators'; import { combineLatest } from 'rxjs'; @@ -99,7 +99,7 @@ export const useUnifiedSearch = () => { [queryStringService, setSearch, validateQuery] ); - const getParsedDateRange = useCallback(() => { + const parsedDateRange = useMemo(() => { const defaults = getDefaultTimestamps(); const { from = defaults.from, to = defaults.to } = parseDateRange(searchCriteria.dateRange); @@ -108,13 +108,11 @@ export const useUnifiedSearch = () => { }, [searchCriteria.dateRange]); const getDateRangeAsTimestamp = useCallback(() => { - const parsedDate = getParsedDateRange(); - - const from = new Date(parsedDate.from).getTime(); - const to = new Date(parsedDate.to).getTime(); + const from = new Date(parsedDateRange.from).getTime(); + const to = new Date(parsedDateRange.to).getTime(); return { from, to }; - }, [getParsedDateRange]); + }, [parsedDateRange]); const buildQuery = useCallback(() => { return buildEsQuery( @@ -176,9 +174,9 @@ export const useUnifiedSearch = () => { // Track telemetry event on query/filter/date changes useEffect(() => { - const parsedDateRange = getDateRangeAsTimestamp(); + const dateRangeInTimestamp = getDateRangeAsTimestamp(); telemetry.reportHostsViewQuerySubmitted( - buildQuerySubmittedPayload({ ...searchCriteria, parsedDateRange }) + buildQuerySubmittedPayload({ ...searchCriteria, parsedDateRange: dateRangeInTimestamp }) ); }, [getDateRangeAsTimestamp, searchCriteria, telemetry]); @@ -186,7 +184,7 @@ export const useUnifiedSearch = () => { error, buildQuery, onSubmit, - getParsedDateRange, + parsedDateRange, getDateRangeAsTimestamp, searchCriteria, }; diff --git a/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/ml/anomaly_detection/anomalies_table/anomalies_table.tsx b/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/ml/anomaly_detection/anomalies_table/anomalies_table.tsx index 4cb2920f8dcc8..3f1f5e016c5b5 100644 --- a/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/ml/anomaly_detection/anomalies_table/anomalies_table.tsx +++ b/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/ml/anomaly_detection/anomalies_table/anomalies_table.tsx @@ -7,10 +7,10 @@ import { i18n } from '@kbn/i18n'; import React, { ChangeEvent, useCallback, useEffect, useMemo, useState } from 'react'; -import { EuiSuperDatePicker } from '@elastic/eui'; import { + EuiSuperDatePicker, + useEuiTheme, EuiFlexItem, - EuiSpacer, EuiFieldSearch, EuiBasicTable, EuiFlexGroup, @@ -22,19 +22,19 @@ import { EuiButtonIcon, EuiPopover, EuiContextMenuPanel, - EuiIcon, - EuiText, - OnTimeChangeProps, + type OnTimeChangeProps, + EuiEmptyPrompt, } from '@elastic/eui'; import { FormattedMessage, FormattedDate } from '@kbn/i18n-react'; -import { withTheme } from '@kbn/kibana-react-plugin/common'; import { useLinkProps, useUiTracker } from '@kbn/observability-shared-plugin/public'; +import type { TimeRange } from '@kbn/es-query'; +import { css } from '@emotion/react'; import { datemathToEpochMillis } from '../../../../../../../utils/datemath'; -import { SnapshotMetricType } from '../../../../../../../../common/inventory_models/types'; +import type { SnapshotMetricType } from '../../../../../../../../common/inventory_models/types'; import { useSorting } from '../../../../../../../hooks/use_sorting'; import { useMetricsK8sAnomaliesResults } from '../../../../hooks/use_metrics_k8s_anomalies'; import { useMetricsHostsAnomaliesResults } from '../../../../hooks/use_metrics_hosts_anomalies'; -import { +import type { Metric, MetricsHostsAnomaly, Sort, @@ -45,8 +45,10 @@ import { AnomalySeverityIndicator } from '../../../../../../../components/loggin import { useSourceContext } from '../../../../../../../containers/metrics_source'; import { createResultsUrl } from '../flyout_home'; import { useWaffleViewState, WaffleViewState } from '../../../../hooks/use_waffle_view_state'; + type JobType = 'k8s' | 'hosts'; type SortField = 'anomalyScore' | 'startTime'; + interface JobOption { id: JobType; label: string; @@ -159,40 +161,59 @@ const AnomalyActionMenu = ({ ); }; -export const NoAnomaliesFound = withTheme(({ theme }) => ( - - -

    - -

    -

    - -

    - - - { + const euiTheme = useEuiTheme(); + return ( +
    + + + + } + body={ + + } /> - - -)); +
    + ); +}; interface Props { closeFlyout(): void; hostName?: string; + dateRange?: TimeRange; + // In case the date picker is managed outside this component + hideDatePicker?: boolean; } -export const AnomaliesTable = (props: Props) => { - const { closeFlyout, hostName } = props; + +const DEFAULT_DATE_RANGE: TimeRange = { + from: 'now-30d', + to: 'now', +}; + +export const AnomaliesTable = ({ + closeFlyout, + hostName, + dateRange = DEFAULT_DATE_RANGE, + hideDatePicker = false, +}: Props) => { const [search, setSearch] = useState(''); - const [start, setStart] = useState('now-30d'); - const [end, setEnd] = useState('now'); const trackMetric = useUiTracker({ app: 'infra_metrics' }); const [timeRange, setTimeRange] = useState<{ start: number; end: number }>({ - start: datemathToEpochMillis(start) || 0, - end: datemathToEpochMillis(end, 'up') || 0, + start: datemathToEpochMillis(dateRange.from) || 0, + end: datemathToEpochMillis(dateRange.to, 'up') || 0, }); const { sorting, setSorting } = useSorting({ field: 'startTime', @@ -224,8 +245,6 @@ export const AnomaliesTable = (props: Props) => { const onTimeChange = useCallback( ({ isInvalid, start: startChange, end: endChange }: OnTimeChangeProps) => { if (!isInvalid) { - setStart(startChange); - setEnd(endChange); setTimeRange({ start: datemathToEpochMillis(startChange)!, end: datemathToEpochMillis(endChange, 'up')!, @@ -436,73 +455,77 @@ export const AnomaliesTable = (props: Props) => { return ( - - + + + )} + + {!hostName && ( + + + + + + + + + )} + + + + columns={columns} + items={results} + sorting={{ sort: sorting }} + onChange={onTableChange} + hasActions={true} + loading={isLoading} + noItemsMessage={ + isLoading ? ( + + ) : ( + + ) + } + /> + + + - - {!hostName && ( - - - - - - - - - )} - - - - - columns={columns} - items={results} - sorting={{ sort: sorting }} - onChange={onTableChange} - hasActions={true} - loading={isLoading} - noItemsMessage={ - isLoading ? ( - - ) : ( - - ) - } - /> - - ); }; diff --git a/x-pack/plugins/infra/public/pages/metrics/metric_detail/asset_detail_page.tsx b/x-pack/plugins/infra/public/pages/metrics/metric_detail/asset_detail_page.tsx index e28650aaf5cde..31559352a67de 100644 --- a/x-pack/plugins/infra/public/pages/metrics/metric_detail/asset_detail_page.tsx +++ b/x-pack/plugins/infra/public/pages/metrics/metric_detail/asset_detail_page.tsx @@ -6,14 +6,14 @@ */ import type { TimeRange } from '@kbn/es-query'; -import React, { useMemo } from 'react'; +import React, { useCallback, useMemo } from 'react'; import { useLocation, useRouteMatch } from 'react-router-dom'; import { i18n } from '@kbn/i18n'; import { NoRemoteCluster } from '../../../components/empty_states'; import { SourceErrorPage } from '../../../components/source_error_page'; import { SourceLoadingPage } from '../../../components/source_loading_page'; import { useSourceContext } from '../../../containers/metrics_source'; -import { FlyoutTabIds, type Tab } from '../../../components/asset_details/types'; +import { FlyoutTabIds, type Tab, type TabState } from '../../../components/asset_details/types'; import type { InventoryItemType } from '../../../../common/inventory_models/types'; import { AssetDetails } from '../../../components/asset_details/asset_details'; import { useMetricsTimeContext } from './hooks/use_metrics_time'; @@ -70,14 +70,34 @@ export const AssetDetailPage = () => { return queryParams.get('assetName') ?? undefined; }, [search]); - const { parsedTimeRange } = useMetricsTimeContext(); + const { timeRange, setTimeRange } = useMetricsTimeContext(); const dateRange: TimeRange = useMemo( () => ({ - from: new Date(parsedTimeRange.from).toISOString(), - to: new Date(parsedTimeRange.to).toISOString(), + from: + typeof timeRange.from === 'number' + ? new Date(timeRange.from).toISOString() + : timeRange.from, + to: typeof timeRange.to === 'number' ? new Date(timeRange.to).toISOString() : timeRange.to, }), - [parsedTimeRange.from, parsedTimeRange.to] + [timeRange.from, timeRange.to] + ); + + // Retrocompatibility + const handleTabStateChange = useCallback( + ({ dateRange: newDateRange }: TabState) => { + if (newDateRange) { + setTimeRange( + { + from: newDateRange.from, + to: newDateRange.to, + interval: timeRange.interval, + }, + false + ); + } + }, + [setTimeRange, timeRange.interval] ); const { metricIndicesExist, remoteClustersExist } = source?.status ?? {}; @@ -111,9 +131,10 @@ export const AssetDetailPage = () => { }} assetType={nodeType} dateRange={dateRange} + onTabsStateChange={handleTabStateChange} activeTabId={FlyoutTabIds.OVERVIEW} tabs={orderedFlyoutTabs} - links={['uptime', 'apmServices']} + links={['apmServices']} renderMode={{ mode: 'page', }} diff --git a/x-pack/plugins/infra/public/pages/metrics/metric_detail/hooks/use_metrics_time.ts b/x-pack/plugins/infra/public/pages/metrics/metric_detail/hooks/use_metrics_time.ts index 9b48b9391f9bd..f5cb6a13f6b10 100644 --- a/x-pack/plugins/infra/public/pages/metrics/metric_detail/hooks/use_metrics_time.ts +++ b/x-pack/plugins/infra/public/pages/metrics/metric_detail/hooks/use_metrics_time.ts @@ -64,9 +64,11 @@ export const useMetricsTime = () => { parseRange(urlState.time || DEFAULT_TIMERANGE) ); - const updateTimeRange = useCallback((range: MetricsTimeInput) => { + const updateTimeRange = useCallback((range: MetricsTimeInput, parseDate = true) => { setTimeRange(range); - setParsedTimeRange(parseRange(range)); + if (parseDate) { + setParsedTimeRange(parseRange(range)); + } }, []); return { diff --git a/x-pack/plugins/kubernetes_security/kibana.jsonc b/x-pack/plugins/kubernetes_security/kibana.jsonc index 627ce99955b4c..838204a7bdbe5 100644 --- a/x-pack/plugins/kubernetes_security/kibana.jsonc +++ b/x-pack/plugins/kubernetes_security/kibana.jsonc @@ -1,7 +1,7 @@ { "type": "plugin", "id": "@kbn/kubernetes-security-plugin", - "owner": "@elastic/sec-cloudnative-integrations", + "owner": "@elastic/kibana-cloud-security-posture", "plugin": { "id": "kubernetesSecurity", "server": true, diff --git a/x-pack/plugins/lens/public/app_plugin/app.test.tsx b/x-pack/plugins/lens/public/app_plugin/app.test.tsx index 2cd90ad5b99b1..30311af0ba431 100644 --- a/x-pack/plugins/lens/public/app_plugin/app.test.tsx +++ b/x-pack/plugins/lens/public/app_plugin/app.test.tsx @@ -1212,6 +1212,7 @@ describe('Lens App', () => { description: '', query: { query: '', language: 'lucene' }, }, + namespaces: ['default'], }); }); expect(services.navigation.ui.AggregateQueryTopNavMenu).toHaveBeenCalledWith( @@ -1223,6 +1224,7 @@ describe('Lens App', () => { description: '', query: { query: '', language: 'lucene' }, }, + namespaces: ['default'], }, }), {} @@ -1239,6 +1241,7 @@ describe('Lens App', () => { description: '', query: { query: '', language: 'lucene' }, }, + namespaces: ['default'], }); }); act(() => { @@ -1250,6 +1253,7 @@ describe('Lens App', () => { description: '', query: { query: '', language: 'lucene' }, }, + namespaces: ['default'], } ); }); @@ -1262,6 +1266,7 @@ describe('Lens App', () => { description: '', query: { query: '', language: 'lucene' }, }, + namespaces: ['default'], }, }), {} @@ -1279,6 +1284,7 @@ describe('Lens App', () => { description: '', query: { query: 'abc:def', language: 'lucene' }, }, + namespaces: ['default'], } ); }); @@ -1329,6 +1335,7 @@ describe('Lens App', () => { description: '', query: { query: '', language: 'lucene' }, }, + namespaces: ['default'], }); }); act(() => { @@ -1340,6 +1347,7 @@ describe('Lens App', () => { description: '', query: { query: '', language: 'lucene' }, }, + namespaces: ['default'], } ); }); diff --git a/x-pack/plugins/lists/common/schemas/response/list_item_schema.mock.ts b/x-pack/plugins/lists/common/schemas/response/list_item_schema.mock.ts index 38bb32169beb5..cce497f87335c 100644 --- a/x-pack/plugins/lists/common/schemas/response/list_item_schema.mock.ts +++ b/x-pack/plugins/lists/common/schemas/response/list_item_schema.mock.ts @@ -20,6 +20,7 @@ import { } from '../../constants.mock'; export const getListItemResponseMock = (): ListItemSchema => ({ + '@timestamp': DATE_NOW, _version: undefined, created_at: DATE_NOW, created_by: USER, diff --git a/x-pack/plugins/lists/common/schemas/response/list_schema.mock.ts b/x-pack/plugins/lists/common/schemas/response/list_schema.mock.ts index adfe72d5e9125..abc52634e0232 100644 --- a/x-pack/plugins/lists/common/schemas/response/list_schema.mock.ts +++ b/x-pack/plugins/lists/common/schemas/response/list_schema.mock.ts @@ -22,6 +22,7 @@ import { } from '../../constants.mock'; export const getListResponseMock = (): ListSchema => ({ + '@timestamp': DATE_NOW, _version: undefined, created_at: DATE_NOW, created_by: USER, diff --git a/x-pack/plugins/lists/server/routes/create_list_index_route.ts b/x-pack/plugins/lists/server/routes/create_list_index_route.ts deleted file mode 100644 index cdfd3b7646aae..0000000000000 --- a/x-pack/plugins/lists/server/routes/create_list_index_route.ts +++ /dev/null @@ -1,102 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { validate } from '@kbn/securitysolution-io-ts-utils'; -import { transformError } from '@kbn/securitysolution-es-utils'; -import { LIST_INDEX } from '@kbn/securitysolution-list-constants'; - -import { createListIndexResponse } from '../../common/api'; -import type { ListsPluginRouter } from '../types'; - -import { buildSiemResponse } from './utils'; - -import { getListClient } from '.'; - -export const createListIndexRoute = (router: ListsPluginRouter): void => { - router.post( - { - options: { - tags: ['access:lists-all'], - }, - path: LIST_INDEX, - validate: false, - }, - async (context, _, response) => { - const siemResponse = buildSiemResponse(response); - - try { - const lists = await getListClient(context); - const listIndexExists = await lists.getListIndexExists(); - const listItemIndexExists = await lists.getListItemIndexExists(); - - const policyExists = await lists.getListPolicyExists(); - const policyListItemExists = await lists.getListItemPolicyExists(); - - if (!policyExists) { - await lists.setListPolicy(); - } - if (!policyListItemExists) { - await lists.setListItemPolicy(); - } - - const templateExists = await lists.getListTemplateExists(); - const templateListItemsExists = await lists.getListItemTemplateExists(); - const legacyTemplateExists = await lists.getLegacyListTemplateExists(); - const legacyTemplateListItemsExists = await lists.getLegacyListItemTemplateExists(); - - if (!templateExists) { - await lists.setListTemplate(); - } - - if (!templateListItemsExists) { - await lists.setListItemTemplate(); - } - - try { - // Check if the old legacy lists and items template exists and remove it - if (legacyTemplateExists) { - await lists.deleteLegacyListTemplate(); - } - if (legacyTemplateListItemsExists) { - await lists.deleteLegacyListItemTemplate(); - } - } catch (err) { - if (err.statusCode !== 404) { - throw err; - } - } - - if (listIndexExists && listItemIndexExists) { - return siemResponse.error({ - body: `index: "${lists.getListIndex()}" and "${lists.getListItemIndex()}" already exists`, - statusCode: 409, - }); - } else { - if (!listIndexExists) { - await lists.createListBootStrapIndex(); - } - if (!listItemIndexExists) { - await lists.createListItemBootStrapIndex(); - } - - const [validated, errors] = validate({ acknowledged: true }, createListIndexResponse); - if (errors != null) { - return siemResponse.error({ body: errors, statusCode: 500 }); - } else { - return response.ok({ body: validated ?? {} }); - } - } - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); - } - } - ); -}; diff --git a/x-pack/plugins/lists/server/routes/delete_list_index_route.ts b/x-pack/plugins/lists/server/routes/delete_list_index_route.ts deleted file mode 100644 index 64607308adda4..0000000000000 --- a/x-pack/plugins/lists/server/routes/delete_list_index_route.ts +++ /dev/null @@ -1,112 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { validate } from '@kbn/securitysolution-io-ts-utils'; -import { transformError } from '@kbn/securitysolution-es-utils'; -import { LIST_INDEX } from '@kbn/securitysolution-list-constants'; - -import type { ListsPluginRouter } from '../types'; -import { deleteListIndexResponse } from '../../common/api'; - -import { buildSiemResponse } from './utils'; - -import { getListClient } from '.'; - -/** - * Deletes all of the indexes, template, ilm policies, and aliases. You can check - * this by looking at each of these settings from ES after a deletion: - * - * GET /_template/.lists-default - * GET /.lists-default-000001/ - * GET /_ilm/policy/.lists-default - * GET /_alias/.lists-default - * - * GET /_template/.items-default - * GET /.items-default-000001/ - * GET /_ilm/policy/.items-default - * GET /_alias/.items-default - * - * And ensuring they're all gone - */ -export const deleteListIndexRoute = (router: ListsPluginRouter): void => { - router.delete( - { - options: { - tags: ['access:lists-all'], - }, - path: LIST_INDEX, - validate: false, - }, - async (context, _, response) => { - const siemResponse = buildSiemResponse(response); - - try { - const lists = await getListClient(context); - const listIndexExists = await lists.getListIndexExists(); - const listItemIndexExists = await lists.getListItemIndexExists(); - - if (!listIndexExists && !listItemIndexExists) { - return siemResponse.error({ - body: `index: "${lists.getListIndex()}" and "${lists.getListItemIndex()}" does not exist`, - statusCode: 404, - }); - } else { - if (listIndexExists) { - await lists.deleteListIndex(); - } - if (listItemIndexExists) { - await lists.deleteListItemIndex(); - } - - const listsPolicyExists = await lists.getListPolicyExists(); - const listItemPolicyExists = await lists.getListItemPolicyExists(); - - if (listsPolicyExists) { - await lists.deleteListPolicy(); - } - if (listItemPolicyExists) { - await lists.deleteListItemPolicy(); - } - - const listsTemplateExists = await lists.getListTemplateExists(); - const listItemTemplateExists = await lists.getListItemTemplateExists(); - - if (listsTemplateExists) { - await lists.deleteListTemplate(); - } - if (listItemTemplateExists) { - await lists.deleteListItemTemplate(); - } - - // check if legacy template exists - const legacyTemplateExists = await lists.getLegacyListTemplateExists(); - const legacyItemTemplateExists = await lists.getLegacyListItemTemplateExists(); - if (legacyTemplateExists) { - await lists.deleteLegacyListTemplate(); - } - - if (legacyItemTemplateExists) { - await lists.deleteLegacyListItemTemplate(); - } - - const [validated, errors] = validate({ acknowledged: true }, deleteListIndexResponse); - if (errors != null) { - return siemResponse.error({ body: errors, statusCode: 500 }); - } else { - return response.ok({ body: validated ?? {} }); - } - } - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); - } - } - ); -}; diff --git a/x-pack/plugins/lists/server/routes/index.ts b/x-pack/plugins/lists/server/routes/index.ts index 6347d564981bf..b344977699d58 100644 --- a/x-pack/plugins/lists/server/routes/index.ts +++ b/x-pack/plugins/lists/server/routes/index.ts @@ -9,43 +9,43 @@ export * from './create_endpoint_list_item_route'; export * from './create_endpoint_list_route'; export * from './create_exception_list_item_route'; export * from './create_exception_list_route'; -export * from './create_list_index_route'; -export * from './create_list_item_route'; -export * from './create_list_route'; +export * from './list_index/create_list_index_route'; +export * from './list_item/create_list_item_route'; +export * from './list/create_list_route'; export * from './delete_endpoint_list_item_route'; export * from './delete_exception_list_route'; export * from './delete_exception_list_item_route'; -export * from './delete_list_index_route'; -export * from './delete_list_item_route'; -export * from './delete_list_route'; +export * from './list_index/delete_list_index_route'; +export * from './list_item/delete_list_item_route'; +export * from './list/delete_list_route'; export * from './duplicate_exception_list_route'; export * from './export_exception_list_route'; -export * from './export_list_item_route'; +export * from './list_index/export_list_item_route'; export * from './find_endpoint_list_item_route'; export * from './find_exception_list_item_route'; export * from './find_exception_list_route'; -export * from './find_list_item_route'; -export * from './find_list_route'; -export * from './find_lists_by_size_route'; -export * from './get_exception_filter_route'; +export * from './list_item/find_list_item_route'; +export * from './list_index/find_list_route'; +export * from './internal/find_lists_by_size_route'; +export * from './internal/create_exception_filter_route'; export * from './import_exceptions_route'; -export * from './import_list_item_route'; +export * from './list/import_list_item_route'; export * from './init_routes'; -export * from './patch_list_item_route'; -export * from './patch_list_route'; +export * from './list_item/patch_list_item_route'; +export * from './list/patch_list_route'; export * from './read_endpoint_list_item_route'; export * from './read_exception_list_item_route'; export * from './read_exception_list_route'; -export * from './read_list_index_route'; -export * from './read_list_item_route'; -export * from './read_list_route'; -export * from './read_privileges_route'; +export * from './list_index/read_list_index_route'; +export * from './list_item/read_list_item_route'; +export * from './list/read_list_route'; +export * from './list_privileges/read_list_privileges_route'; export * from './summary_exception_list_route'; export * from './update_endpoint_list_item_route'; export * from './update_exception_list_item_route'; export * from './update_exception_list_route'; -export * from './update_list_item_route'; -export * from './update_list_route'; +export * from './list_item/update_list_item_route'; +export * from './list/update_list_route'; export * from './utils'; // internal diff --git a/x-pack/plugins/lists/server/routes/get_exception_filter_route.ts b/x-pack/plugins/lists/server/routes/internal/create_exception_filter_route.ts similarity index 88% rename from x-pack/plugins/lists/server/routes/get_exception_filter_route.ts rename to x-pack/plugins/lists/server/routes/internal/create_exception_filter_route.ts index 1577040c9beb6..4fc6d2dfd402e 100644 --- a/x-pack/plugins/lists/server/routes/get_exception_filter_route.ts +++ b/x-pack/plugins/lists/server/routes/internal/create_exception_filter_route.ts @@ -11,13 +11,12 @@ import { ExceptionListItemSchema, FoundExceptionListItemSchema, } from '@kbn/securitysolution-io-ts-list-types'; -import { EXCEPTION_FILTER } from '@kbn/securitysolution-list-constants'; +import { INTERNAL_EXCEPTION_FILTER } from '@kbn/securitysolution-list-constants'; -import { buildExceptionFilter } from '../services/exception_lists/build_exception_filter'; -import { ListsPluginRouter } from '../types'; -import { getExceptionFilterRequest } from '../../common/api'; - -import { buildRouteValidation, buildSiemResponse } from './utils'; +import { buildExceptionFilter } from '../../services/exception_lists/build_exception_filter'; +import { ListsPluginRouter } from '../../types'; +import { getExceptionFilterRequest } from '../../../common/api'; +import { buildRouteValidation, buildSiemResponse } from '../utils'; export const getExceptionFilterRoute = (router: ListsPluginRouter): void => { router.post( @@ -25,7 +24,7 @@ export const getExceptionFilterRoute = (router: ListsPluginRouter): void => { options: { tags: ['access:securitySolution'], }, - path: `${EXCEPTION_FILTER}`, + path: INTERNAL_EXCEPTION_FILTER, validate: { body: buildRouteValidation(getExceptionFilterRequest), }, diff --git a/x-pack/plugins/lists/server/routes/find_lists_by_size_route.ts b/x-pack/plugins/lists/server/routes/internal/find_lists_by_size_route.ts similarity index 95% rename from x-pack/plugins/lists/server/routes/find_lists_by_size_route.ts rename to x-pack/plugins/lists/server/routes/internal/find_lists_by_size_route.ts index 1a6af1710ea61..6f65894d9d559 100644 --- a/x-pack/plugins/lists/server/routes/find_lists_by_size_route.ts +++ b/x-pack/plugins/lists/server/routes/internal/find_lists_by_size_route.ts @@ -8,17 +8,16 @@ import { validate } from '@kbn/securitysolution-io-ts-utils'; import { transformError } from '@kbn/securitysolution-es-utils'; import { - FIND_LISTS_BY_SIZE, + INTERNAL_FIND_LISTS_BY_SIZE, MAXIMUM_SMALL_IP_RANGE_VALUE_LIST_DASH_SIZE, MAXIMUM_SMALL_VALUE_LIST_SIZE, } from '@kbn/securitysolution-list-constants'; import { chunk } from 'lodash'; -import type { ListsPluginRouter } from '../types'; -import { decodeCursor } from '../services/utils'; -import { findListsBySizeRequestQuery, findListsBySizeResponse } from '../../common/api'; - -import { buildRouteValidation, buildSiemResponse, getListClient } from './utils'; +import type { ListsPluginRouter } from '../../types'; +import { decodeCursor } from '../../services/utils'; +import { findListsBySizeRequestQuery, findListsBySizeResponse } from '../../../common/api'; +import { buildRouteValidation, buildSiemResponse, getListClient } from '../utils'; export const findListsBySizeRoute = (router: ListsPluginRouter): void => { router.get( @@ -26,7 +25,7 @@ export const findListsBySizeRoute = (router: ListsPluginRouter): void => { options: { tags: ['access:lists-read'], }, - path: `${FIND_LISTS_BY_SIZE}`, + path: INTERNAL_FIND_LISTS_BY_SIZE, validate: { query: buildRouteValidation(findListsBySizeRequestQuery), }, diff --git a/x-pack/plugins/lists/server/routes/create_list_route.ts b/x-pack/plugins/lists/server/routes/list/create_list_route.ts similarity index 74% rename from x-pack/plugins/lists/server/routes/create_list_route.ts rename to x-pack/plugins/lists/server/routes/list/create_list_route.ts index 484d045f23aae..7a1eef80aa16c 100644 --- a/x-pack/plugins/lists/server/routes/create_list_route.ts +++ b/x-pack/plugins/lists/server/routes/list/create_list_route.ts @@ -9,12 +9,14 @@ import { validate } from '@kbn/securitysolution-io-ts-utils'; import { transformError } from '@kbn/securitysolution-es-utils'; import { LIST_URL } from '@kbn/securitysolution-list-constants'; -import type { ListsPluginRouter } from '../types'; -import { CreateListRequestDecoded, createListRequest, createListResponse } from '../../common/api'; - -import { buildRouteValidation, buildSiemResponse } from './utils'; - -import { getListClient } from '.'; +import type { ListsPluginRouter } from '../../types'; +import { + CreateListRequestDecoded, + createListRequest, + createListResponse, +} from '../../../common/api'; +import { buildRouteValidation, buildSiemResponse } from '../utils'; +import { getListClient } from '..'; export const createListRoute = (router: ListsPluginRouter): void => { router.post( @@ -35,13 +37,19 @@ export const createListRoute = (router: ListsPluginRouter): void => { const { name, description, deserializer, id, serializer, type, meta, version } = request.body; const lists = await getListClient(context); - const listExists = await lists.getListIndexExists(); - if (!listExists) { + const dataStreamExists = await lists.getListDataStreamExists(); + const indexExists = await lists.getListIndexExists(); + + if (!dataStreamExists && !indexExists) { return siemResponse.error({ - body: `To create a list, the index must exist first. Index "${lists.getListIndex()}" does not exist`, + body: `To create a list, the data stream must exist first. Data stream "${lists.getListName()}" does not exist`, statusCode: 400, }); } else { + // needs to be migrated to data stream + if (!dataStreamExists && indexExists) { + await lists.migrateListIndexToDataStream(); + } if (id != null) { const list = await lists.getList({ id }); if (list != null) { diff --git a/x-pack/plugins/lists/server/routes/delete_list_route.ts b/x-pack/plugins/lists/server/routes/list/delete_list_route.ts similarity index 96% rename from x-pack/plugins/lists/server/routes/delete_list_route.ts rename to x-pack/plugins/lists/server/routes/list/delete_list_route.ts index a8bb0fe01840d..ba14a2240d7e2 100644 --- a/x-pack/plugins/lists/server/routes/delete_list_route.ts +++ b/x-pack/plugins/lists/server/routes/list/delete_list_route.ts @@ -18,14 +18,12 @@ import { import { getSavedObjectType } from '@kbn/securitysolution-list-utils'; import { LIST_URL } from '@kbn/securitysolution-list-constants'; -import type { ListsPluginRouter } from '../types'; -import type { ExceptionListClient } from '../services/exception_lists/exception_list_client'; -import { escapeQuotes } from '../services/utils/escape_query'; -import { deleteListRequestQuery, deleteListResponse } from '../../common/api'; - -import { buildRouteValidation, buildSiemResponse } from './utils'; - -import { getExceptionListClient, getListClient } from '.'; +import type { ListsPluginRouter } from '../../types'; +import type { ExceptionListClient } from '../../services/exception_lists/exception_list_client'; +import { escapeQuotes } from '../../services/utils/escape_query'; +import { deleteListRequestQuery, deleteListResponse } from '../../../common/api'; +import { buildRouteValidation, buildSiemResponse } from '../utils'; +import { getExceptionListClient, getListClient } from '..'; export const deleteListRoute = (router: ListsPluginRouter): void => { router.delete( diff --git a/x-pack/plugins/lists/server/routes/import_list_item_route.ts b/x-pack/plugins/lists/server/routes/list/import_list_item_route.ts similarity index 71% rename from x-pack/plugins/lists/server/routes/import_list_item_route.ts rename to x-pack/plugins/lists/server/routes/list/import_list_item_route.ts index 5155a32cb2441..60ecf15a07356 100644 --- a/x-pack/plugins/lists/server/routes/import_list_item_route.ts +++ b/x-pack/plugins/lists/server/routes/list/import_list_item_route.ts @@ -10,14 +10,12 @@ import { validate } from '@kbn/securitysolution-io-ts-utils'; import { transformError } from '@kbn/securitysolution-es-utils'; import { LIST_ITEM_URL } from '@kbn/securitysolution-list-constants'; -import type { ListsPluginRouter } from '../types'; -import { ConfigType } from '../config'; -import { importListItemRequestQuery, importListItemResponse } from '../../common/api'; - -import { buildRouteValidation, buildSiemResponse } from './utils'; -import { createStreamFromBuffer } from './utils/create_stream_from_buffer'; - -import { getListClient } from '.'; +import type { ListsPluginRouter } from '../../types'; +import { ConfigType } from '../../config'; +import { importListItemRequestQuery, importListItemResponse } from '../../../common/api'; +import { buildRouteValidation, buildSiemResponse } from '../utils'; +import { createStreamFromBuffer } from '../utils/create_stream_from_buffer'; +import { getListClient } from '..'; export const importListItemRoute = (router: ListsPluginRouter, config: ConfigType): void => { router.post( @@ -45,13 +43,33 @@ export const importListItemRoute = (router: ListsPluginRouter, config: ConfigTyp const stream = createStreamFromBuffer(request.body); const { deserializer, list_id: listId, serializer, type } = request.query; const lists = await getListClient(context); - const listExists = await lists.getListIndexExists(); - if (!listExists) { - return siemResponse.error({ - body: `To import a list item, the index must exist first. Index "${lists.getListIndex()}" does not exist`, - statusCode: 400, - }); + + const listDataExists = await lists.getListDataStreamExists(); + if (!listDataExists) { + const listIndexExists = await lists.getListIndexExists(); + if (!listIndexExists) { + return siemResponse.error({ + body: `To import a list item, the data steam must exist first. Data stream "${lists.getListName()}" does not exist`, + statusCode: 400, + }); + } + // otherwise migration is needed + await lists.migrateListIndexToDataStream(); + } + + const listItemDataExists = await lists.getListItemDataStreamExists(); + if (!listItemDataExists) { + const listItemIndexExists = await lists.getListItemIndexExists(); + if (!listItemIndexExists) { + return siemResponse.error({ + body: `To import a list item, the data steam must exist first. Data stream "${lists.getListItemName()}" does not exist`, + statusCode: 400, + }); + } + // otherwise migration is needed + await lists.migrateListItemIndexToDataStream(); } + if (listId != null) { const list = await lists.getList({ id: listId }); if (list == null) { diff --git a/x-pack/plugins/lists/server/routes/patch_list_route.ts b/x-pack/plugins/lists/server/routes/list/patch_list_route.ts similarity index 70% rename from x-pack/plugins/lists/server/routes/patch_list_route.ts rename to x-pack/plugins/lists/server/routes/list/patch_list_route.ts index 41f9e1c815e54..02edd41e4f074 100644 --- a/x-pack/plugins/lists/server/routes/patch_list_route.ts +++ b/x-pack/plugins/lists/server/routes/list/patch_list_route.ts @@ -9,12 +9,10 @@ import { validate } from '@kbn/securitysolution-io-ts-utils'; import { transformError } from '@kbn/securitysolution-es-utils'; import { LIST_URL } from '@kbn/securitysolution-list-constants'; -import type { ListsPluginRouter } from '../types'; -import { patchListRequest, patchListResponse } from '../../common/api'; - -import { buildRouteValidation, buildSiemResponse } from './utils'; - -import { getListClient } from '.'; +import type { ListsPluginRouter } from '../../types'; +import { patchListRequest, patchListResponse } from '../../../common/api'; +import { buildRouteValidation, buildSiemResponse } from '../utils'; +import { getListClient } from '..'; export const patchListRoute = (router: ListsPluginRouter): void => { router.patch( @@ -32,7 +30,17 @@ export const patchListRoute = (router: ListsPluginRouter): void => { try { const { name, description, id, meta, _version, version } = request.body; const lists = await getListClient(context); - const list = await lists.updateList({ _version, description, id, meta, name, version }); + + const dataStreamExists = await lists.getListDataStreamExists(); + // needs to be migrated to data stream if index exists + if (!dataStreamExists) { + const indexExists = await lists.getListIndexExists(); + if (indexExists) { + await lists.migrateListIndexToDataStream(); + } + } + + const list = await lists.patchList({ _version, description, id, meta, name, version }); if (list == null) { return siemResponse.error({ body: `list id: "${id}" not found`, diff --git a/x-pack/plugins/lists/server/routes/read_list_route.ts b/x-pack/plugins/lists/server/routes/list/read_list_route.ts similarity index 87% rename from x-pack/plugins/lists/server/routes/read_list_route.ts rename to x-pack/plugins/lists/server/routes/list/read_list_route.ts index 583db5c065b62..d7a12a80ec7ef 100644 --- a/x-pack/plugins/lists/server/routes/read_list_route.ts +++ b/x-pack/plugins/lists/server/routes/list/read_list_route.ts @@ -9,12 +9,10 @@ import { validate } from '@kbn/securitysolution-io-ts-utils'; import { transformError } from '@kbn/securitysolution-es-utils'; import { LIST_URL } from '@kbn/securitysolution-list-constants'; -import type { ListsPluginRouter } from '../types'; -import { readListRequestQuery, readListResponse } from '../../common/api'; - -import { buildRouteValidation, buildSiemResponse } from './utils'; - -import { getListClient } from '.'; +import type { ListsPluginRouter } from '../../types'; +import { readListRequestQuery, readListResponse } from '../../../common/api'; +import { buildRouteValidation, buildSiemResponse } from '../utils'; +import { getListClient } from '..'; export const readListRoute = (router: ListsPluginRouter): void => { router.get( diff --git a/x-pack/plugins/lists/server/routes/update_list_route.ts b/x-pack/plugins/lists/server/routes/list/update_list_route.ts similarity index 74% rename from x-pack/plugins/lists/server/routes/update_list_route.ts rename to x-pack/plugins/lists/server/routes/list/update_list_route.ts index b2fe4f49950ad..a134341acd658 100644 --- a/x-pack/plugins/lists/server/routes/update_list_route.ts +++ b/x-pack/plugins/lists/server/routes/list/update_list_route.ts @@ -9,12 +9,10 @@ import { validate } from '@kbn/securitysolution-io-ts-utils'; import { transformError } from '@kbn/securitysolution-es-utils'; import { LIST_URL } from '@kbn/securitysolution-list-constants'; -import type { ListsPluginRouter } from '../types'; -import { updateListRequest, updateListResponse } from '../../common/api'; - -import { buildRouteValidation, buildSiemResponse } from './utils'; - -import { getListClient } from '.'; +import type { ListsPluginRouter } from '../../types'; +import { updateListRequest, updateListResponse } from '../../../common/api'; +import { buildRouteValidation, buildSiemResponse } from '../utils'; +import { getListClient } from '..'; export const updateListRoute = (router: ListsPluginRouter): void => { router.put( @@ -32,6 +30,16 @@ export const updateListRoute = (router: ListsPluginRouter): void => { try { const { name, description, id, meta, _version, version } = request.body; const lists = await getListClient(context); + + const dataStreamExists = await lists.getListDataStreamExists(); + // needs to be migrated to data stream if index exists + if (!dataStreamExists) { + const indexExists = await lists.getListIndexExists(); + if (indexExists) { + await lists.migrateListIndexToDataStream(); + } + } + const list = await lists.updateList({ _version, description, id, meta, name, version }); if (list == null) { return siemResponse.error({ diff --git a/x-pack/plugins/lists/server/routes/list_index/create_list_index_route.ts b/x-pack/plugins/lists/server/routes/list_index/create_list_index_route.ts new file mode 100644 index 0000000000000..9116e5d338e5e --- /dev/null +++ b/x-pack/plugins/lists/server/routes/list_index/create_list_index_route.ts @@ -0,0 +1,84 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { validate } from '@kbn/securitysolution-io-ts-utils'; +import { transformError } from '@kbn/securitysolution-es-utils'; +import { LIST_INDEX } from '@kbn/securitysolution-list-constants'; + +import { createListIndexResponse } from '../../../common/api'; +import type { ListsPluginRouter } from '../../types'; +import { buildSiemResponse, removeLegacyTemplatesIfExist } from '../utils'; +import { getListClient } from '..'; + +export const createListIndexRoute = (router: ListsPluginRouter): void => { + router.post( + { + options: { + tags: ['access:lists-all'], + }, + path: LIST_INDEX, + validate: false, + }, + async (context, _, response) => { + const siemResponse = buildSiemResponse(response); + + try { + const lists = await getListClient(context); + + const listDataStreamExists = await lists.getListDataStreamExists(); + const listItemDataStreamExists = await lists.getListItemDataStreamExists(); + + const templateListExists = await lists.getListTemplateExists(); + const templateListItemsExists = await lists.getListItemTemplateExists(); + + if (!templateListExists || !listDataStreamExists) { + await lists.setListTemplate(); + } + + if (!templateListItemsExists || !listItemDataStreamExists) { + await lists.setListItemTemplate(); + } + + await removeLegacyTemplatesIfExist(lists); + + if (listDataStreamExists && listItemDataStreamExists) { + return siemResponse.error({ + body: `data stream: "${lists.getListName()}" and "${lists.getListItemName()}" already exists`, + statusCode: 409, + }); + } + + if (!listDataStreamExists) { + const listIndexExists = await lists.getListIndexExists(); + await (listIndexExists + ? lists.migrateListIndexToDataStream() + : lists.createListDataStream()); + } + + if (!listItemDataStreamExists) { + const listItemIndexExists = await lists.getListItemIndexExists(); + await (listItemIndexExists + ? lists.migrateListItemIndexToDataStream() + : lists.createListItemDataStream()); + } + + const [validated, errors] = validate({ acknowledged: true }, createListIndexResponse); + if (errors != null) { + return siemResponse.error({ body: errors, statusCode: 500 }); + } else { + return response.ok({ body: validated ?? {} }); + } + } catch (err) { + const error = transformError(err); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); + } + } + ); +}; diff --git a/x-pack/plugins/lists/server/routes/list_index/delete_list_index_route.ts b/x-pack/plugins/lists/server/routes/list_index/delete_list_index_route.ts new file mode 100644 index 0000000000000..2c8a2fb3212ce --- /dev/null +++ b/x-pack/plugins/lists/server/routes/list_index/delete_list_index_route.ts @@ -0,0 +1,147 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { validate } from '@kbn/securitysolution-io-ts-utils'; +import { transformError } from '@kbn/securitysolution-es-utils'; +import { LIST_INDEX } from '@kbn/securitysolution-list-constants'; + +import { ListClient } from '../../services/lists/list_client'; +import type { ListsPluginRouter } from '../../types'; +import { deleteListIndexResponse } from '../../../common/api'; +import { buildSiemResponse, removeLegacyTemplatesIfExist } from '../utils'; +import { getListClient } from '..'; + +/** + * Deletes all of the indexes, template, ilm policies, and aliases. You can check + * this by looking at each of these settings from ES after a deletion: + * + * GET /_template/.lists-default + * GET /.lists-default-000001/ + * GET /_ilm/policy/.lists-default + * GET /_alias/.lists-default + * + * GET /_template/.items-default + * GET /.items-default-000001/ + * GET /_ilm/policy/.items-default + * GET /_alias/.items-default + * + * And ensuring they're all gone + */ +export const deleteListIndexRoute = (router: ListsPluginRouter): void => { + router.delete( + { + options: { + tags: ['access:lists-all'], + }, + path: LIST_INDEX, + validate: false, + }, + async (context, _, response) => { + const siemResponse = buildSiemResponse(response); + try { + const lists = await getListClient(context); + const listIndexExists = await lists.getListIndexExists(); + const listItemIndexExists = await lists.getListItemIndexExists(); + + const listDataStreamExists = await lists.getListDataStreamExists(); + const listItemDataStreamExists = await lists.getListItemDataStreamExists(); + + // return early if no data stream or indices exist + if ( + !listDataStreamExists && + !listItemDataStreamExists && + !listIndexExists && + !listItemIndexExists + ) { + return siemResponse.error({ + body: `index and data stream: "${lists.getListName()}" and "${lists.getListItemName()}" does not exist`, + statusCode: 404, + }); + } + + // ensure data streams deleted if exist + await deleteDataStreams(lists, listDataStreamExists, listItemDataStreamExists); + + // ensure indices deleted if exist and were not migrated + await deleteIndices(lists, listIndexExists, listItemIndexExists); + + await deleteIndexTemplates(lists); + await removeLegacyTemplatesIfExist(lists); + + const [validated, errors] = validate({ acknowledged: true }, deleteListIndexResponse); + if (errors != null) { + return siemResponse.error({ body: errors, statusCode: 500 }); + } else { + return response.ok({ body: validated ?? {} }); + } + } catch (err) { + const error = transformError(err); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); + } + } + ); +}; + +/** + * Delete list/item indices + */ +const deleteIndices = async ( + lists: ListClient, + listIndexExists: boolean, + listItemIndexExists: boolean +): Promise => { + if (listIndexExists) { + await lists.deleteListIndex(); + } + if (listItemIndexExists) { + await lists.deleteListItemIndex(); + } + + const listsPolicyExists = await lists.getListPolicyExists(); + const listItemPolicyExists = await lists.getListItemPolicyExists(); + + if (listsPolicyExists) { + await lists.deleteListPolicy(); + } + if (listItemPolicyExists) { + await lists.deleteListItemPolicy(); + } +}; + +/** + * Delete list/item data streams + */ +const deleteDataStreams = async ( + lists: ListClient, + listDataStreamExists: boolean, + listItemDataStreamExists: boolean +): Promise => { + if (listDataStreamExists) { + await lists.deleteListDataStream(); + } + if (listItemDataStreamExists) { + await lists.deleteListItemDataStream(); + } +}; + +/** + * Delete list/item index templates + */ +const deleteIndexTemplates = async (lists: ListClient): Promise => { + const listsTemplateExists = await lists.getListTemplateExists(); + const listItemTemplateExists = await lists.getListItemTemplateExists(); + + if (listsTemplateExists) { + await lists.deleteListTemplate(); + } + if (listItemTemplateExists) { + await lists.deleteListItemTemplate(); + } +}; diff --git a/x-pack/plugins/lists/server/routes/export_list_item_route.ts b/x-pack/plugins/lists/server/routes/list_index/export_list_item_route.ts similarity index 89% rename from x-pack/plugins/lists/server/routes/export_list_item_route.ts rename to x-pack/plugins/lists/server/routes/list_index/export_list_item_route.ts index 5ab4dcaea6f8f..079a25ab24b02 100644 --- a/x-pack/plugins/lists/server/routes/export_list_item_route.ts +++ b/x-pack/plugins/lists/server/routes/list_index/export_list_item_route.ts @@ -10,12 +10,10 @@ import { Stream } from 'stream'; import { transformError } from '@kbn/securitysolution-es-utils'; import { LIST_ITEM_URL } from '@kbn/securitysolution-list-constants'; -import type { ListsPluginRouter } from '../types'; -import { exportListItemRequestQuery } from '../../common/api'; - -import { buildRouteValidation, buildSiemResponse } from './utils'; - -import { getListClient } from '.'; +import type { ListsPluginRouter } from '../../types'; +import { exportListItemRequestQuery } from '../../../common/api'; +import { buildRouteValidation, buildSiemResponse } from '../utils'; +import { getListClient } from '..'; export const exportListItemRoute = (router: ListsPluginRouter): void => { router.post( diff --git a/x-pack/plugins/lists/server/routes/find_list_route.ts b/x-pack/plugins/lists/server/routes/list_index/find_list_route.ts similarity index 92% rename from x-pack/plugins/lists/server/routes/find_list_route.ts rename to x-pack/plugins/lists/server/routes/list_index/find_list_route.ts index 411fc4e17c760..ab717a5f05ffb 100644 --- a/x-pack/plugins/lists/server/routes/find_list_route.ts +++ b/x-pack/plugins/lists/server/routes/list_index/find_list_route.ts @@ -9,11 +9,10 @@ import { validate } from '@kbn/securitysolution-io-ts-utils'; import { transformError } from '@kbn/securitysolution-es-utils'; import { LIST_URL } from '@kbn/securitysolution-list-constants'; -import type { ListsPluginRouter } from '../types'; -import { decodeCursor } from '../services/utils'; -import { findListRequestQuery, findListResponse } from '../../common/api'; - -import { buildRouteValidation, buildSiemResponse, getListClient } from './utils'; +import type { ListsPluginRouter } from '../../types'; +import { decodeCursor } from '../../services/utils'; +import { findListRequestQuery, findListResponse } from '../../../common/api'; +import { buildRouteValidation, buildSiemResponse, getListClient } from '../utils'; export const findListRoute = (router: ListsPluginRouter): void => { router.get( diff --git a/x-pack/plugins/lists/server/routes/read_list_index_route.ts b/x-pack/plugins/lists/server/routes/list_index/read_list_index_route.ts similarity index 63% rename from x-pack/plugins/lists/server/routes/read_list_index_route.ts rename to x-pack/plugins/lists/server/routes/list_index/read_list_index_route.ts index cd33c12371b39..3f1ffa8b95f5d 100644 --- a/x-pack/plugins/lists/server/routes/read_list_index_route.ts +++ b/x-pack/plugins/lists/server/routes/list_index/read_list_index_route.ts @@ -9,12 +9,10 @@ import { validate } from '@kbn/securitysolution-io-ts-utils'; import { transformError } from '@kbn/securitysolution-es-utils'; import { LIST_INDEX } from '@kbn/securitysolution-list-constants'; -import type { ListsPluginRouter } from '../types'; -import { readListIndexResponse } from '../../common/api'; - -import { buildSiemResponse } from './utils'; - -import { getListClient } from '.'; +import type { ListsPluginRouter } from '../../types'; +import { readListIndexResponse } from '../../../common/api'; +import { buildSiemResponse } from '../utils'; +import { getListClient } from '..'; export const readListIndexRoute = (router: ListsPluginRouter): void => { router.get( @@ -30,12 +28,12 @@ export const readListIndexRoute = (router: ListsPluginRouter): void => { try { const lists = await getListClient(context); - const listIndexExists = await lists.getListIndexExists(); - const listItemIndexExists = await lists.getListItemIndexExists(); + const listDataStreamExists = await lists.getListDataStreamExists(); + const listItemDataStreamExists = await lists.getListItemDataStreamExists(); - if (listIndexExists || listItemIndexExists) { + if (listDataStreamExists && listItemDataStreamExists) { const [validated, errors] = validate( - { list_index: listIndexExists, list_item_index: listItemIndexExists }, + { list_index: listDataStreamExists, list_item_index: listItemDataStreamExists }, readListIndexResponse ); if (errors != null) { @@ -43,19 +41,19 @@ export const readListIndexRoute = (router: ListsPluginRouter): void => { } else { return response.ok({ body: validated ?? {} }); } - } else if (!listIndexExists && listItemIndexExists) { + } else if (!listDataStreamExists && listItemDataStreamExists) { return siemResponse.error({ - body: `index ${lists.getListIndex()} does not exist`, + body: `data stream ${lists.getListName()} does not exist`, statusCode: 404, }); - } else if (!listItemIndexExists && listIndexExists) { + } else if (!listItemDataStreamExists && listDataStreamExists) { return siemResponse.error({ - body: `index ${lists.getListItemIndex()} does not exist`, + body: `data stream ${lists.getListItemName()} does not exist`, statusCode: 404, }); } else { return siemResponse.error({ - body: `index ${lists.getListIndex()} and index ${lists.getListItemIndex()} does not exist`, + body: `data stream ${lists.getListName()} and data stream ${lists.getListItemName()} does not exist`, statusCode: 404, }); } diff --git a/x-pack/plugins/lists/server/routes/create_list_item_route.ts b/x-pack/plugins/lists/server/routes/list_item/create_list_item_route.ts similarity index 93% rename from x-pack/plugins/lists/server/routes/create_list_item_route.ts rename to x-pack/plugins/lists/server/routes/list_item/create_list_item_route.ts index c5642139ae3ad..9a06a9dc2c4e0 100644 --- a/x-pack/plugins/lists/server/routes/create_list_item_route.ts +++ b/x-pack/plugins/lists/server/routes/list_item/create_list_item_route.ts @@ -9,12 +9,10 @@ import { validate } from '@kbn/securitysolution-io-ts-utils'; import { transformError } from '@kbn/securitysolution-es-utils'; import { LIST_ITEM_URL } from '@kbn/securitysolution-list-constants'; -import { createListItemRequest, createListItemResponse } from '../../common/api'; -import type { ListsPluginRouter } from '../types'; - -import { buildRouteValidation, buildSiemResponse } from './utils'; - -import { getListClient } from '.'; +import { createListItemRequest, createListItemResponse } from '../../../common/api'; +import type { ListsPluginRouter } from '../../types'; +import { buildRouteValidation, buildSiemResponse } from '../utils'; +import { getListClient } from '..'; export const createListItemRoute = (router: ListsPluginRouter): void => { router.post( diff --git a/x-pack/plugins/lists/server/routes/delete_list_item_route.ts b/x-pack/plugins/lists/server/routes/list_item/delete_list_item_route.ts similarity index 94% rename from x-pack/plugins/lists/server/routes/delete_list_item_route.ts rename to x-pack/plugins/lists/server/routes/list_item/delete_list_item_route.ts index c580238455fff..a334d7012b461 100644 --- a/x-pack/plugins/lists/server/routes/delete_list_item_route.ts +++ b/x-pack/plugins/lists/server/routes/list_item/delete_list_item_route.ts @@ -9,16 +9,14 @@ import { validate } from '@kbn/securitysolution-io-ts-utils'; import { transformError } from '@kbn/securitysolution-es-utils'; import { LIST_ITEM_URL } from '@kbn/securitysolution-list-constants'; -import type { ListsPluginRouter } from '../types'; +import type { ListsPluginRouter } from '../../types'; import { deleteListItemArrayResponse, deleteListItemRequestQuery, deleteListItemResponse, -} from '../../common/api'; - -import { buildRouteValidation, buildSiemResponse } from './utils'; - -import { getListClient } from '.'; +} from '../../../common/api'; +import { buildRouteValidation, buildSiemResponse } from '../utils'; +import { getListClient } from '..'; export const deleteListItemRoute = (router: ListsPluginRouter): void => { router.delete( diff --git a/x-pack/plugins/lists/server/routes/find_list_item_route.ts b/x-pack/plugins/lists/server/routes/list_item/find_list_item_route.ts similarity index 95% rename from x-pack/plugins/lists/server/routes/find_list_item_route.ts rename to x-pack/plugins/lists/server/routes/list_item/find_list_item_route.ts index 077dd90b7323a..acd1bbd0f834f 100644 --- a/x-pack/plugins/lists/server/routes/find_list_item_route.ts +++ b/x-pack/plugins/lists/server/routes/list_item/find_list_item_route.ts @@ -9,15 +9,14 @@ import { validate } from '@kbn/securitysolution-io-ts-utils'; import { transformError } from '@kbn/securitysolution-es-utils'; import { LIST_ITEM_URL } from '@kbn/securitysolution-list-constants'; -import type { ListsPluginRouter } from '../types'; -import { decodeCursor } from '../services/utils'; +import type { ListsPluginRouter } from '../../types'; +import { decodeCursor } from '../../services/utils'; import { FindListItemRequestQueryDecoded, findListItemRequestQuery, findListItemResponse, -} from '../../common/api'; - -import { buildRouteValidation, buildSiemResponse, getListClient } from './utils'; +} from '../../../common/api'; +import { buildRouteValidation, buildSiemResponse, getListClient } from '../utils'; export const findListItemRoute = (router: ListsPluginRouter): void => { router.get( diff --git a/x-pack/plugins/lists/server/routes/patch_list_item_route.ts b/x-pack/plugins/lists/server/routes/list_item/patch_list_item_route.ts similarity index 75% rename from x-pack/plugins/lists/server/routes/patch_list_item_route.ts rename to x-pack/plugins/lists/server/routes/list_item/patch_list_item_route.ts index c4496197727e4..b71c949242546 100644 --- a/x-pack/plugins/lists/server/routes/patch_list_item_route.ts +++ b/x-pack/plugins/lists/server/routes/list_item/patch_list_item_route.ts @@ -9,12 +9,10 @@ import { validate } from '@kbn/securitysolution-io-ts-utils'; import { transformError } from '@kbn/securitysolution-es-utils'; import { LIST_ITEM_URL } from '@kbn/securitysolution-list-constants'; -import type { ListsPluginRouter } from '../types'; -import { patchListItemRequest, patchListItemResponse } from '../../common/api'; - -import { buildRouteValidation, buildSiemResponse } from './utils'; - -import { getListClient } from '.'; +import type { ListsPluginRouter } from '../../types'; +import { patchListItemRequest, patchListItemResponse } from '../../../common/api'; +import { buildRouteValidation, buildSiemResponse } from '../utils'; +import { getListClient } from '..'; export const patchListItemRoute = (router: ListsPluginRouter): void => { router.patch( @@ -32,7 +30,17 @@ export const patchListItemRoute = (router: ListsPluginRouter): void => { try { const { value, id, meta, _version } = request.body; const lists = await getListClient(context); - const listItem = await lists.updateListItem({ + + const dataStreamExists = await lists.getListItemDataStreamExists(); + // needs to be migrated to data stream if index exists + if (!dataStreamExists) { + const indexExists = await lists.getListItemIndexExists(); + if (indexExists) { + await lists.migrateListItemIndexToDataStream(); + } + } + + const listItem = await lists.patchListItem({ _version, id, meta, diff --git a/x-pack/plugins/lists/server/routes/read_list_item_route.ts b/x-pack/plugins/lists/server/routes/list_item/read_list_item_route.ts similarity index 94% rename from x-pack/plugins/lists/server/routes/read_list_item_route.ts rename to x-pack/plugins/lists/server/routes/list_item/read_list_item_route.ts index cb16d0d5f2df4..796be1ae2983d 100644 --- a/x-pack/plugins/lists/server/routes/read_list_item_route.ts +++ b/x-pack/plugins/lists/server/routes/list_item/read_list_item_route.ts @@ -9,16 +9,14 @@ import { validate } from '@kbn/securitysolution-io-ts-utils'; import { transformError } from '@kbn/securitysolution-es-utils'; import { LIST_ITEM_URL } from '@kbn/securitysolution-list-constants'; -import type { ListsPluginRouter } from '../types'; +import type { ListsPluginRouter } from '../../types'; import { readListItemArrayResponse, readListItemRequestQuery, readListItemResponse, -} from '../../common/api'; - -import { buildRouteValidation, buildSiemResponse } from './utils'; - -import { getListClient } from '.'; +} from '../../../common/api'; +import { buildRouteValidation, buildSiemResponse } from '../utils'; +import { getListClient } from '..'; export const readListItemRoute = (router: ListsPluginRouter): void => { router.get( diff --git a/x-pack/plugins/lists/server/routes/update_list_item_route.ts b/x-pack/plugins/lists/server/routes/list_item/update_list_item_route.ts similarity index 77% rename from x-pack/plugins/lists/server/routes/update_list_item_route.ts rename to x-pack/plugins/lists/server/routes/list_item/update_list_item_route.ts index d05f68bf05262..f2ea42c538f61 100644 --- a/x-pack/plugins/lists/server/routes/update_list_item_route.ts +++ b/x-pack/plugins/lists/server/routes/list_item/update_list_item_route.ts @@ -9,12 +9,10 @@ import { validate } from '@kbn/securitysolution-io-ts-utils'; import { transformError } from '@kbn/securitysolution-es-utils'; import { LIST_ITEM_URL } from '@kbn/securitysolution-list-constants'; -import type { ListsPluginRouter } from '../types'; -import { updateListItemRequest, updateListItemResponse } from '../../common/api'; - -import { buildRouteValidation, buildSiemResponse } from './utils'; - -import { getListClient } from '.'; +import type { ListsPluginRouter } from '../../types'; +import { updateListItemRequest, updateListItemResponse } from '../../../common/api'; +import { buildRouteValidation, buildSiemResponse } from '../utils'; +import { getListClient } from '..'; export const updateListItemRoute = (router: ListsPluginRouter): void => { router.put( @@ -32,6 +30,16 @@ export const updateListItemRoute = (router: ListsPluginRouter): void => { try { const { value, id, meta, _version } = request.body; const lists = await getListClient(context); + + const dataStreamExists = await lists.getListItemDataStreamExists(); + // needs to be migrated to data stream if index exists + if (!dataStreamExists) { + const indexExists = await lists.getListItemIndexExists(); + if (indexExists) { + await lists.migrateListItemIndexToDataStream(); + } + } + const listItem = await lists.updateListItem({ _version, id, diff --git a/x-pack/plugins/lists/server/routes/read_privileges_route.mock.ts b/x-pack/plugins/lists/server/routes/list_privileges/read_list_privileges_route.mock.ts similarity index 100% rename from x-pack/plugins/lists/server/routes/read_privileges_route.mock.ts rename to x-pack/plugins/lists/server/routes/list_privileges/read_list_privileges_route.mock.ts diff --git a/x-pack/plugins/lists/server/routes/read_privileges_route.ts b/x-pack/plugins/lists/server/routes/list_privileges/read_list_privileges_route.ts similarity index 89% rename from x-pack/plugins/lists/server/routes/read_privileges_route.ts rename to x-pack/plugins/lists/server/routes/list_privileges/read_list_privileges_route.ts index 51ffaa9713b62..8a6c404220bbb 100644 --- a/x-pack/plugins/lists/server/routes/read_privileges_route.ts +++ b/x-pack/plugins/lists/server/routes/list_privileges/read_list_privileges_route.ts @@ -9,9 +9,8 @@ import { readPrivileges, transformError } from '@kbn/securitysolution-es-utils'; import { merge } from 'lodash/fp'; import { LIST_PRIVILEGES_URL } from '@kbn/securitysolution-list-constants'; -import type { ListsPluginRouter } from '../types'; - -import { buildSiemResponse, getListClient } from './utils'; +import type { ListsPluginRouter } from '../../types'; +import { buildSiemResponse, getListClient } from '../utils'; export const readPrivilegesRoute = (router: ListsPluginRouter): void => { router.get( @@ -27,8 +26,8 @@ export const readPrivilegesRoute = (router: ListsPluginRouter): void => { try { const esClient = (await context.core).elasticsearch.client.asCurrentUser; const lists = await getListClient(context); - const clusterPrivilegesLists = await readPrivileges(esClient, lists.getListIndex()); - const clusterPrivilegesListItems = await readPrivileges(esClient, lists.getListItemIndex()); + const clusterPrivilegesLists = await readPrivileges(esClient, lists.getListName()); + const clusterPrivilegesListItems = await readPrivileges(esClient, lists.getListItemName()); const privileges = merge( { listItems: clusterPrivilegesListItems, diff --git a/x-pack/plugins/lists/server/routes/utils/index.ts b/x-pack/plugins/lists/server/routes/utils/index.ts index f035ae5dbfe9b..dd349bc5ec6e9 100644 --- a/x-pack/plugins/lists/server/routes/utils/index.ts +++ b/x-pack/plugins/lists/server/routes/utils/index.ts @@ -5,6 +5,7 @@ * 2.0. */ +export * from './remove_templates_if_exist'; export * from './get_error_message_exception_list_item'; export * from './get_error_message_exception_list'; export * from './get_list_client'; diff --git a/x-pack/plugins/lists/server/routes/utils/remove_templates_if_exist.ts b/x-pack/plugins/lists/server/routes/utils/remove_templates_if_exist.ts new file mode 100644 index 0000000000000..ac761b5779048 --- /dev/null +++ b/x-pack/plugins/lists/server/routes/utils/remove_templates_if_exist.ts @@ -0,0 +1,28 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { ListClient } from '../../services/lists/list_client'; + +export const removeLegacyTemplatesIfExist = async (lists: ListClient): Promise => { + try { + const legacyTemplateExists = await lists.getLegacyListTemplateExists(); + const legacyTemplateListItemsExists = await lists.getLegacyListItemTemplateExists(); + + // Check if the old legacy lists and items template exists and remove it + if (legacyTemplateExists) { + await lists.deleteLegacyListTemplate(); + } + if (legacyTemplateListItemsExists) { + await lists.deleteLegacyListItemTemplate(); + } + } catch (err) { + // 410 error is for ES serverless, this API doesn't exist there any more, so _template request returns 410 error + if (err.statusCode !== 404 && err.statusCode !== 410) { + throw err; + } + } +}; diff --git a/x-pack/plugins/lists/server/schemas/elastic_query/index_es_list_item_schema.mock.ts b/x-pack/plugins/lists/server/schemas/elastic_query/index_es_list_item_schema.mock.ts index 9a41946c6677c..a2b9217c0ad7a 100644 --- a/x-pack/plugins/lists/server/schemas/elastic_query/index_es_list_item_schema.mock.ts +++ b/x-pack/plugins/lists/server/schemas/elastic_query/index_es_list_item_schema.mock.ts @@ -10,6 +10,7 @@ import { DATE_NOW, LIST_ID, META, TIE_BREAKER, USER, VALUE } from '../../../comm import { IndexEsListItemSchema } from './index_es_list_item_schema'; export const getIndexESListItemMock = (ip = VALUE): IndexEsListItemSchema => ({ + '@timestamp': DATE_NOW, created_at: DATE_NOW, created_by: USER, deserializer: undefined, diff --git a/x-pack/plugins/lists/server/schemas/elastic_query/index_es_list_item_schema.ts b/x-pack/plugins/lists/server/schemas/elastic_query/index_es_list_item_schema.ts index b3130b95fe978..d4d94cd2a4bab 100644 --- a/x-pack/plugins/lists/server/schemas/elastic_query/index_es_list_item_schema.ts +++ b/x-pack/plugins/lists/server/schemas/elastic_query/index_es_list_item_schema.ts @@ -14,6 +14,7 @@ import { metaOrUndefined, serializerOrUndefined, tie_breaker_id, + timestamp, updated_at, updated_by, } from '@kbn/securitysolution-io-ts-list-types'; @@ -23,6 +24,7 @@ import { esDataTypeUnion } from '../common/schemas'; export const indexEsListItemSchema = t.intersection([ t.exact( t.type({ + '@timestamp': timestamp, created_at, created_by, deserializer: deserializerOrUndefined, diff --git a/x-pack/plugins/lists/server/schemas/elastic_query/index_es_list_schema.mock.ts b/x-pack/plugins/lists/server/schemas/elastic_query/index_es_list_schema.mock.ts index 9e72c83223bab..b3cb37857cc9a 100644 --- a/x-pack/plugins/lists/server/schemas/elastic_query/index_es_list_schema.mock.ts +++ b/x-pack/plugins/lists/server/schemas/elastic_query/index_es_list_schema.mock.ts @@ -20,6 +20,7 @@ import { import { IndexEsListSchema } from './index_es_list_schema'; export const getIndexESListMock = (): IndexEsListSchema => ({ + '@timestamp': DATE_NOW, created_at: DATE_NOW, created_by: USER, description: DESCRIPTION, diff --git a/x-pack/plugins/lists/server/schemas/elastic_query/index_es_list_schema.ts b/x-pack/plugins/lists/server/schemas/elastic_query/index_es_list_schema.ts index 85e2eb95dd7e4..f6ca3bf1ecb2f 100644 --- a/x-pack/plugins/lists/server/schemas/elastic_query/index_es_list_schema.ts +++ b/x-pack/plugins/lists/server/schemas/elastic_query/index_es_list_schema.ts @@ -16,6 +16,7 @@ import { name, serializerOrUndefined, tie_breaker_id, + timestamp, type, updated_at, updated_by, @@ -24,6 +25,7 @@ import { version } from '@kbn/securitysolution-io-ts-types'; export const indexEsListSchema = t.exact( t.type({ + '@timestamp': timestamp, created_at, created_by, description, diff --git a/x-pack/plugins/lists/server/schemas/elastic_query/update_es_list_schema.ts b/x-pack/plugins/lists/server/schemas/elastic_query/update_es_list_schema.ts index fe73d0fb9207f..15caf840d7dbd 100644 --- a/x-pack/plugins/lists/server/schemas/elastic_query/update_es_list_schema.ts +++ b/x-pack/plugins/lists/server/schemas/elastic_query/update_es_list_schema.ts @@ -6,6 +6,7 @@ */ import * as t from 'io-ts'; +import { version } from '@kbn/securitysolution-io-ts-types'; import { descriptionOrUndefined, metaOrUndefined, @@ -21,6 +22,7 @@ export const updateEsListSchema = t.exact( name: nameOrUndefined, updated_at, updated_by, + version, }) ); diff --git a/x-pack/plugins/lists/server/schemas/elastic_response/search_es_list_item_schema.mock.ts b/x-pack/plugins/lists/server/schemas/elastic_response/search_es_list_item_schema.mock.ts index 40427f0293488..b8369c8ed06a1 100644 --- a/x-pack/plugins/lists/server/schemas/elastic_response/search_es_list_item_schema.mock.ts +++ b/x-pack/plugins/lists/server/schemas/elastic_response/search_es_list_item_schema.mock.ts @@ -22,6 +22,7 @@ import { getShardMock } from '../common/get_shard.mock'; import { SearchEsListItemSchema } from './search_es_list_item_schema'; export const getSearchEsListItemsAsAllUndefinedMock = (): SearchEsListItemSchema => ({ + '@timestamp': DATE_NOW, binary: undefined, boolean: undefined, byte: undefined, diff --git a/x-pack/plugins/lists/server/schemas/elastic_response/search_es_list_item_schema.ts b/x-pack/plugins/lists/server/schemas/elastic_response/search_es_list_item_schema.ts index 158783ce088b2..8b0fa71f2222f 100644 --- a/x-pack/plugins/lists/server/schemas/elastic_response/search_es_list_item_schema.ts +++ b/x-pack/plugins/lists/server/schemas/elastic_response/search_es_list_item_schema.ts @@ -11,9 +11,10 @@ import { created_by, deserializerOrUndefined, list_id, - metaOrUndefined, + nullableMetaOrUndefined, serializerOrUndefined, tie_breaker_id, + timestampOrUndefined, updated_at, updated_by, } from '@kbn/securitysolution-io-ts-list-types'; @@ -46,6 +47,7 @@ import { export const searchEsListItemSchema = t.exact( t.type({ + '@timestamp': timestampOrUndefined, binary: binaryOrUndefined, boolean: booleanOrUndefined, byte: byteOrUndefined, @@ -70,7 +72,7 @@ export const searchEsListItemSchema = t.exact( list_id, long: longOrUndefined, long_range: longRangeOrUndefined, - meta: metaOrUndefined, + meta: nullableMetaOrUndefined, serializer: serializerOrUndefined, shape: shapeOrUndefined, short: shortOrUndefined, diff --git a/x-pack/plugins/lists/server/schemas/elastic_response/search_es_list_schema.mock.ts b/x-pack/plugins/lists/server/schemas/elastic_response/search_es_list_schema.mock.ts index 4e0cfef7c1352..1d4b282d5352a 100644 --- a/x-pack/plugins/lists/server/schemas/elastic_response/search_es_list_schema.mock.ts +++ b/x-pack/plugins/lists/server/schemas/elastic_response/search_es_list_schema.mock.ts @@ -25,6 +25,7 @@ import { getShardMock } from '../common/get_shard.mock'; import { SearchEsListSchema } from './search_es_list_schema'; export const getSearchEsListMock = (): SearchEsListSchema => ({ + '@timestamp': DATE_NOW, created_at: DATE_NOW, created_by: USER, description: DESCRIPTION, diff --git a/x-pack/plugins/lists/server/schemas/elastic_response/search_es_list_schema.ts b/x-pack/plugins/lists/server/schemas/elastic_response/search_es_list_schema.ts index 7e2ca2d6343cb..17d2e64fb7542 100644 --- a/x-pack/plugins/lists/server/schemas/elastic_response/search_es_list_schema.ts +++ b/x-pack/plugins/lists/server/schemas/elastic_response/search_es_list_schema.ts @@ -12,10 +12,11 @@ import { description, deserializerOrUndefined, immutable, - metaOrUndefined, name, + nullableMetaOrUndefined, serializerOrUndefined, tie_breaker_id, + timestampOrUndefined, type, updated_at, updated_by, @@ -24,12 +25,13 @@ import { version } from '@kbn/securitysolution-io-ts-types'; export const searchEsListSchema = t.exact( t.type({ + '@timestamp': timestampOrUndefined, created_at, created_by, description, deserializer: deserializerOrUndefined, immutable, - meta: metaOrUndefined, + meta: nullableMetaOrUndefined, name, serializer: serializerOrUndefined, tie_breaker_id, diff --git a/x-pack/plugins/lists/server/services/extension_points/extension_point_storage_client.ts b/x-pack/plugins/lists/server/services/extension_points/extension_point_storage_client.ts index f2d2035459b54..b3ada7ac69cd5 100644 --- a/x-pack/plugins/lists/server/services/extension_points/extension_point_storage_client.ts +++ b/x-pack/plugins/lists/server/services/extension_points/extension_point_storage_client.ts @@ -45,6 +45,7 @@ export class ExtensionPointStorageClient implements ExtensionPointStorageClientI async pipeRun< T extends ExtensionPoint['type'], D extends NarrowExtensionPointToType = NarrowExtensionPointToType, + // @ts-expect-error ts upgrade v4.7.4 P extends Parameters = Parameters >( extensionType: T, diff --git a/x-pack/plugins/lists/server/services/extension_points/types.ts b/x-pack/plugins/lists/server/services/extension_points/types.ts index 61aa7c451362d..2a298e96d2656 100644 --- a/x-pack/plugins/lists/server/services/extension_points/types.ts +++ b/x-pack/plugins/lists/server/services/extension_points/types.ts @@ -185,6 +185,7 @@ export interface ExtensionPointStorageClientInterface { pipeRun< T extends ExtensionPoint['type'], D extends NarrowExtensionPointToType = NarrowExtensionPointToType, + // @ts-expect-error ts upgrade v4.7.4 P extends Parameters = Parameters >( extensionType: T, diff --git a/x-pack/plugins/lists/server/services/items/create_list_item.test.ts b/x-pack/plugins/lists/server/services/items/create_list_item.test.ts index ec8ba2876126c..700d85d935d3f 100644 --- a/x-pack/plugins/lists/server/services/items/create_list_item.test.ts +++ b/x-pack/plugins/lists/server/services/items/create_list_item.test.ts @@ -14,7 +14,7 @@ import { getIndexESListItemMock } from '../../schemas/elastic_query/index_es_lis import { CreateListItemOptions, createListItem } from './create_list_item'; import { getCreateListItemOptionsMock } from './create_list_item.mock'; -describe('crete_list_item', () => { +describe('create_list_item', () => { beforeEach(() => { jest.clearAllMocks(); }); @@ -26,7 +26,7 @@ describe('crete_list_item', () => { test('it returns a list item as expected with the id changed out for the elastic id', async () => { const options = getCreateListItemOptionsMock(); const esClient = elasticsearchClientMock.createScopedClusterClient().asCurrentUser; - esClient.index.mockResponse( + esClient.create.mockResponse( // @ts-expect-error not full response interface { _id: 'elastic-id-123' } ); @@ -46,14 +46,14 @@ describe('crete_list_item', () => { index: LIST_ITEM_INDEX, refresh: 'wait_for', }; - expect(options.esClient.index).toBeCalledWith(expected); + expect(options.esClient.create).toBeCalledWith(expected); }); test('It returns an auto-generated id if id is sent in undefined', async () => { const options = getCreateListItemOptionsMock(); options.id = undefined; const esClient = elasticsearchClientMock.createScopedClusterClient().asCurrentUser; - esClient.index.mockResponse( + esClient.create.mockResponse( // @ts-expect-error not full response interface { _id: 'elastic-id-123' } ); diff --git a/x-pack/plugins/lists/server/services/items/create_list_item.ts b/x-pack/plugins/lists/server/services/items/create_list_item.ts index 9e80d8e4f4019..c51d3e3b944ea 100644 --- a/x-pack/plugins/lists/server/services/items/create_list_item.ts +++ b/x-pack/plugins/lists/server/services/items/create_list_item.ts @@ -52,6 +52,7 @@ export const createListItem = async ({ const createdAt = dateNow ?? new Date().toISOString(); const tieBreakerId = tieBreaker ?? uuidv4(); const baseBody = { + '@timestamp': createdAt, created_at: createdAt, created_by: user, deserializer, @@ -68,9 +69,9 @@ export const createListItem = async ({ ...baseBody, ...elasticQuery, }; - const response = await esClient.index({ + const response = await esClient.create({ body, - id, + id: id ?? uuidv4(), index: listItemIndex, refresh: 'wait_for', }); diff --git a/x-pack/plugins/lists/server/services/items/create_list_items_bulk.test.ts b/x-pack/plugins/lists/server/services/items/create_list_items_bulk.test.ts index ea2ff697c7d37..a2499a94d619e 100644 --- a/x-pack/plugins/lists/server/services/items/create_list_items_bulk.test.ts +++ b/x-pack/plugins/lists/server/services/items/create_list_items_bulk.test.ts @@ -56,6 +56,7 @@ describe('crete_list_item_bulk', () => { body: [ { create: { _index: LIST_ITEM_INDEX } }, { + '@timestamp': '2020-04-20T15:25:31.830Z', created_at: '2020-04-20T15:25:31.830Z', created_by: 'some user', deserializer: undefined, diff --git a/x-pack/plugins/lists/server/services/items/create_list_items_bulk.ts b/x-pack/plugins/lists/server/services/items/create_list_items_bulk.ts index 0944e916c826a..54965751a058a 100644 --- a/x-pack/plugins/lists/server/services/items/create_list_items_bulk.ts +++ b/x-pack/plugins/lists/server/services/items/create_list_items_bulk.ts @@ -60,6 +60,7 @@ export const createListItemsBulk = async ({ }); if (elasticQuery != null) { const elasticBody: IndexEsListItemSchema = { + '@timestamp': createdAt, created_at: createdAt, created_by: user, deserializer, diff --git a/x-pack/plugins/lists/server/services/items/delete_list_item.test.ts b/x-pack/plugins/lists/server/services/items/delete_list_item.test.ts index d2c424804297d..a468eae0b8811 100644 --- a/x-pack/plugins/lists/server/services/items/delete_list_item.test.ts +++ b/x-pack/plugins/lists/server/services/items/delete_list_item.test.ts @@ -40,16 +40,20 @@ describe('delete_list_item', () => { expect(deletedListItem).toEqual(listItem); }); - test('Delete calls "delete" if a list item is returned from "getListItem"', async () => { + test('Delete calls "deleteByQuery" if a list item is returned from "getListItem"', async () => { const listItem = getListItemResponseMock(); (getListItem as unknown as jest.Mock).mockResolvedValueOnce(listItem); const options = getDeleteListItemOptionsMock(); await deleteListItem(options); - const deleteQuery = { - id: LIST_ITEM_ID, + const deleteByQuery = { index: LIST_ITEM_INDEX, - refresh: 'wait_for', + query: { + ids: { + values: [LIST_ITEM_ID], + }, + }, + refresh: false, }; - expect(options.esClient.delete).toBeCalledWith(deleteQuery); + expect(options.esClient.deleteByQuery).toBeCalledWith(deleteByQuery); }); }); diff --git a/x-pack/plugins/lists/server/services/items/delete_list_item.ts b/x-pack/plugins/lists/server/services/items/delete_list_item.ts index 8fbdae3420acf..dffc12091d0fb 100644 --- a/x-pack/plugins/lists/server/services/items/delete_list_item.ts +++ b/x-pack/plugins/lists/server/services/items/delete_list_item.ts @@ -25,10 +25,14 @@ export const deleteListItem = async ({ if (listItem == null) { return null; } else { - await esClient.delete({ - id, + await esClient.deleteByQuery({ index: listItemIndex, - refresh: 'wait_for', + query: { + ids: { + values: [id], + }, + }, + refresh: false, }); } return listItem; diff --git a/x-pack/plugins/lists/server/services/items/find_list_item.test.ts b/x-pack/plugins/lists/server/services/items/find_list_item.test.ts index 8b1457f0ce53d..93ed864c05f00 100644 --- a/x-pack/plugins/lists/server/services/items/find_list_item.test.ts +++ b/x-pack/plugins/lists/server/services/items/find_list_item.test.ts @@ -31,6 +31,7 @@ describe('find_list_item', () => { { _id: 'some-list-item-id', _source: { + '@timestamp': '2020-04-20T15:25:31.830Z', _version: 'undefined', created_at: '2020-04-20T15:25:31.830Z', created_by: 'some user', diff --git a/x-pack/plugins/lists/server/services/items/get_list_item.test.ts b/x-pack/plugins/lists/server/services/items/get_list_item.test.ts index 2c2b703246a5d..55dfcb8062176 100644 --- a/x-pack/plugins/lists/server/services/items/get_list_item.test.ts +++ b/x-pack/plugins/lists/server/services/items/get_list_item.test.ts @@ -50,6 +50,7 @@ describe('get_list_item', () => { test('it returns null if all the values underneath the source type is undefined', async () => { const data = getSearchListItemMock(); data.hits.hits[0]._source = { + '@timestamp': DATE_NOW, binary: undefined, boolean: undefined, byte: undefined, diff --git a/x-pack/plugins/lists/server/services/items/get_list_item_by_values.test.ts b/x-pack/plugins/lists/server/services/items/get_list_item_by_values.test.ts index 9f0b183b97b5c..d48a59fb48668 100644 --- a/x-pack/plugins/lists/server/services/items/get_list_item_by_values.test.ts +++ b/x-pack/plugins/lists/server/services/items/get_list_item_by_values.test.ts @@ -62,6 +62,7 @@ describe('get_list_item_by_values', () => { expect(listItem).toEqual([ { + '@timestamp': DATE_NOW, created_at: DATE_NOW, created_by: USER, id: LIST_ITEM_ID, diff --git a/x-pack/plugins/lists/server/services/items/get_list_item_template.test.ts b/x-pack/plugins/lists/server/services/items/get_list_item_template.test.ts index 10d1a0be11efb..dd2547cdaca13 100644 --- a/x-pack/plugins/lists/server/services/items/get_list_item_template.test.ts +++ b/x-pack/plugins/lists/server/services/items/get_list_item_template.test.ts @@ -23,11 +23,12 @@ describe('get_list_item_template', () => { test('it returns a list template with the string filled in', async () => { const template = getListItemTemplate('some_index'); expect(template).toEqual({ - index_patterns: ['some_index-*'], + data_stream: {}, + index_patterns: ['some_index'], template: { + lifecycle: {}, mappings: { listMappings: {} }, settings: { - index: { lifecycle: { name: 'some_index', rollover_alias: 'some_index' } }, mapping: { total_fields: { limit: 10000, diff --git a/x-pack/plugins/lists/server/services/items/get_list_item_template.ts b/x-pack/plugins/lists/server/services/items/get_list_item_template.ts index d42844e3e133a..69d20f465944d 100644 --- a/x-pack/plugins/lists/server/services/items/get_list_item_template.ts +++ b/x-pack/plugins/lists/server/services/items/get_list_item_template.ts @@ -9,16 +9,12 @@ import listsItemsMappings from './list_item_mappings.json'; export const getListItemTemplate = (index: string): Record => { const template = { - index_patterns: [`${index}-*`], + data_stream: {}, + index_patterns: [index], template: { + lifecycle: {}, mappings: listsItemsMappings, settings: { - index: { - lifecycle: { - name: index, - rollover_alias: index, - }, - }, mapping: { total_fields: { limit: 10000, diff --git a/x-pack/plugins/lists/server/services/items/list_item_mappings.json b/x-pack/plugins/lists/server/services/items/list_item_mappings.json index 1381402c2f2f4..67a8d784d3a73 100644 --- a/x-pack/plugins/lists/server/services/items/list_item_mappings.json +++ b/x-pack/plugins/lists/server/services/items/list_item_mappings.json @@ -1,6 +1,9 @@ { "dynamic": "strict", "properties": { + "@timestamp": { + "type": "date" + }, "tie_breaker_id": { "type": "keyword" }, diff --git a/x-pack/plugins/lists/server/services/items/search_list_item_by_values.test.ts b/x-pack/plugins/lists/server/services/items/search_list_item_by_values.test.ts index 7673347d488dd..e52654a7a696e 100644 --- a/x-pack/plugins/lists/server/services/items/search_list_item_by_values.test.ts +++ b/x-pack/plugins/lists/server/services/items/search_list_item_by_values.test.ts @@ -74,6 +74,7 @@ describe('search_list_item_by_values', () => { { items: [ { + '@timestamp': '2020-04-20T15:25:31.830Z', _version: undefined, created_at: '2020-04-20T15:25:31.830Z', created_by: 'some user', diff --git a/x-pack/plugins/lists/server/services/items/update_list_item.test.ts b/x-pack/plugins/lists/server/services/items/update_list_item.test.ts index 14fe97638e710..d7bff1c11c5df 100644 --- a/x-pack/plugins/lists/server/services/items/update_list_item.test.ts +++ b/x-pack/plugins/lists/server/services/items/update_list_item.test.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ - import { elasticsearchClientMock } from '@kbn/core-elasticsearch-client-server-mocks'; import type { ListItemSchema } from '@kbn/securitysolution-io-ts-list-types'; @@ -14,6 +13,12 @@ import { updateListItem } from './update_list_item'; import { getListItem } from './get_list_item'; import { getUpdateListItemOptionsMock } from './update_list_item.mock'; +jest.mock('../utils/check_version_conflict', () => ({ + checkVersionConflict: jest.fn(), +})); +jest.mock('../utils/wait_until_document_indexed', () => ({ + waitUntilDocumentIndexed: jest.fn(), +})); jest.mock('./get_list_item', () => ({ getListItem: jest.fn(), })); @@ -27,25 +32,22 @@ describe('update_list_item', () => { jest.clearAllMocks(); }); - test('it returns a list item as expected with the id changed out for the elastic id when there is a list item to update', async () => { + test('it returns a list item when updated', async () => { const listItem = getListItemResponseMock(); (getListItem as unknown as jest.Mock).mockResolvedValueOnce(listItem); const options = getUpdateListItemOptionsMock(); const esClient = elasticsearchClientMock.createScopedClusterClient().asCurrentUser; - esClient.update.mockResponse( - // @ts-expect-error not full response interface - { _id: 'elastic-id-123' } - ); - const updatedList = await updateListItem({ ...options, esClient }); - const expected: ListItemSchema = { ...getListItemResponseMock(), id: 'elastic-id-123' }; - expect(updatedList).toEqual(expected); + esClient.updateByQuery.mockResponse({ updated: 1 }); + const updatedListItem = await updateListItem({ ...options, esClient }); + const expected: ListItemSchema = getListItemResponseMock(); + expect(updatedListItem).toEqual(expected); }); test('it returns null when there is not a list item to update', async () => { (getListItem as unknown as jest.Mock).mockResolvedValueOnce(null); const options = getUpdateListItemOptionsMock(); - const updatedList = await updateListItem(options); - expect(updatedList).toEqual(null); + const updatedListItem = await updateListItem(options); + expect(updatedListItem).toEqual(null); }); test('it returns null when the serializer and type such as ip_range returns nothing', async () => { @@ -57,7 +59,18 @@ describe('update_list_item', () => { }; (getListItem as unknown as jest.Mock).mockResolvedValueOnce(listItem); const options = getUpdateListItemOptionsMock(); - const updatedList = await updateListItem(options); - expect(updatedList).toEqual(null); + const updatedListItem = await updateListItem(options); + expect(updatedListItem).toEqual(null); + }); + + test('throw error if no list item was updated', async () => { + const listItem = getListItemResponseMock(); + (getListItem as unknown as jest.Mock).mockResolvedValueOnce(listItem); + const options = getUpdateListItemOptionsMock(); + const esClient = elasticsearchClientMock.createScopedClusterClient().asCurrentUser; + esClient.updateByQuery.mockResponse({ updated: 0 }); + await expect(updateListItem({ ...options, esClient })).rejects.toThrow( + 'No list item has been updated' + ); }); }); diff --git a/x-pack/plugins/lists/server/services/items/update_list_item.ts b/x-pack/plugins/lists/server/services/items/update_list_item.ts index 71f6f9eba4290..13132c525e9cc 100644 --- a/x-pack/plugins/lists/server/services/items/update_list_item.ts +++ b/x-pack/plugins/lists/server/services/items/update_list_item.ts @@ -12,10 +12,12 @@ import type { MetaOrUndefined, _VersionOrUndefined, } from '@kbn/securitysolution-io-ts-list-types'; -import { decodeVersion, encodeHitVersion } from '@kbn/securitysolution-es-utils'; -import { transformListItemToElasticQuery } from '../utils'; -import { UpdateEsListItemSchema } from '../../schemas/elastic_query'; +import { + checkVersionConflict, + transformListItemToElasticQuery, + waitUntilDocumentIndexed, +} from '../utils'; import { getListItem } from './get_list_item'; @@ -28,6 +30,7 @@ export interface UpdateListItemOptions { user: string; meta: MetaOrUndefined; dateNow?: string; + isPatch?: boolean; } export const updateListItem = async ({ @@ -39,6 +42,7 @@ export const updateListItem = async ({ user, meta, dateNow, + isPatch = false, }: UpdateListItemOptions): Promise => { const updatedAt = dateNow ?? new Date().toISOString(); const listItem = await getListItem({ esClient, id, listItemIndex }); @@ -53,30 +57,76 @@ export const updateListItem = async ({ if (elasticQuery == null) { return null; } else { - const doc: UpdateEsListItemSchema = { + checkVersionConflict(_version, listItem._version); + const keyValues = Object.entries(elasticQuery).map(([key, keyValue]) => ({ + key, + value: keyValue, + })); + + const params = { + // when assigning undefined in painless, it will remove property and wil set it to null + // for patch we don't want to remove unspecified value in payload + assignEmpty: !isPatch, + keyValues, meta, updated_at: updatedAt, updated_by: user, - ...elasticQuery, }; - const response = await esClient.update({ - ...decodeVersion(_version), - body: { - doc, - }, - id: listItem.id, + const response = await esClient.updateByQuery({ + conflicts: 'proceed', index: listItemIndex, - refresh: 'wait_for', + query: { + ids: { + values: [id], + }, + }, + refresh: false, + script: { + lang: 'painless', + params, + source: ` + for (int i; i < params.keyValues.size(); i++) { + def entry = params.keyValues[i]; + ctx._source[entry.key] = entry.value; + } + if (params.assignEmpty == true || params.containsKey('meta')) { + ctx._source.meta = params.meta; + } + ctx._source.updated_at = params.updated_at; + ctx._source.updated_by = params.updated_by; + // needed for list items that were created before migration to data streams + if (ctx._source.containsKey('@timestamp') == false) { + ctx._source['@timestamp'] = ctx._source.created_at; + } + `, + }, }); + + let updatedOCCVersion: string | undefined; + if (response.updated) { + const checkIfListUpdated = async (): Promise => { + const updatedListItem = await getListItem({ esClient, id, listItemIndex }); + if (updatedListItem?._version === listItem._version) { + throw Error('List item has not been re-indexed in time'); + } + updatedOCCVersion = updatedListItem?._version; + }; + + await waitUntilDocumentIndexed(checkIfListUpdated); + } else { + throw Error('No list item has been updated'); + } + return { - _version: encodeHitVersion(response), + '@timestamp': listItem['@timestamp'], + _version: updatedOCCVersion, created_at: listItem.created_at, created_by: listItem.created_by, deserializer: listItem.deserializer, - id: response._id, + id, list_id: listItem.list_id, - meta: meta ?? listItem.meta, + meta: isPatch ? meta ?? listItem.meta : meta, serializer: listItem.serializer, tie_breaker_id: listItem.tie_breaker_id, type: listItem.type, diff --git a/x-pack/plugins/lists/server/services/items/write_lines_to_bulk_list_items.ts b/x-pack/plugins/lists/server/services/items/write_lines_to_bulk_list_items.ts index 9e9b15284cc67..9d18b78757943 100644 --- a/x-pack/plugins/lists/server/services/items/write_lines_to_bulk_list_items.ts +++ b/x-pack/plugins/lists/server/services/items/write_lines_to_bulk_list_items.ts @@ -54,60 +54,68 @@ export const importListItemsToStream = ({ meta, version, }: ImportListItemsToStreamOptions): Promise => { - return new Promise((resolve) => { + return new Promise((resolve, reject) => { const readBuffer = new BufferLines({ bufferSize: config.importBufferSize, input: stream }); let fileName: string | undefined; let list: ListSchema | null = null; readBuffer.on('fileName', async (fileNameEmitted: string) => { - readBuffer.pause(); - fileName = decodeURIComponent(fileNameEmitted); - if (listId == null) { - list = await createListIfItDoesNotExist({ - description: i18n.translate('xpack.lists.services.items.fileUploadFromFileSystem', { - defaultMessage: 'File uploaded from file system of {fileName}', - values: { fileName }, - }), - deserializer, - esClient, - id: fileName, - immutable: false, - listIndex, - meta, - name: fileName, - serializer, - type, - user, - version, - }); + try { + readBuffer.pause(); + fileName = decodeURIComponent(fileNameEmitted); + if (listId == null) { + list = await createListIfItDoesNotExist({ + description: i18n.translate('xpack.lists.services.items.fileUploadFromFileSystem', { + defaultMessage: 'File uploaded from file system of {fileName}', + values: { fileName }, + }), + deserializer, + esClient, + id: fileName, + immutable: false, + listIndex, + meta, + name: fileName, + serializer, + type, + user, + version, + }); + } + readBuffer.resume(); + } catch (err) { + reject(err); } - readBuffer.resume(); }); readBuffer.on('lines', async (lines: string[]) => { - if (listId != null) { - await writeBufferToItems({ - buffer: lines, - deserializer, - esClient, - listId, - listItemIndex, - meta, - serializer, - type, - user, - }); - } else if (fileName != null) { - await writeBufferToItems({ - buffer: lines, - deserializer, - esClient, - listId: fileName, - listItemIndex, - meta, - serializer, - type, - user, - }); + try { + if (listId != null) { + await writeBufferToItems({ + buffer: lines, + deserializer, + esClient, + listId, + listItemIndex, + meta, + serializer, + type, + user, + }); + } else if (fileName != null) { + await writeBufferToItems({ + buffer: lines, + deserializer, + esClient, + listId: fileName, + listItemIndex, + meta, + serializer, + type, + user, + }); + } + } catch (err) { + reject(err); } }); diff --git a/x-pack/plugins/lists/server/services/lists/create_list.test.ts b/x-pack/plugins/lists/server/services/lists/create_list.test.ts index 96744d9f55bae..86c0155c43ec4 100644 --- a/x-pack/plugins/lists/server/services/lists/create_list.test.ts +++ b/x-pack/plugins/lists/server/services/lists/create_list.test.ts @@ -15,7 +15,7 @@ import { getIndexESListMock } from '../../schemas/elastic_query/index_es_list_sc import { CreateListOptions, createList } from './create_list'; import { getCreateListOptionsMock } from './create_list.mock'; -describe('crete_list', () => { +describe('create_list', () => { beforeEach(() => { jest.clearAllMocks(); }); @@ -27,7 +27,7 @@ describe('crete_list', () => { test('it returns a list as expected with the id changed out for the elastic id', async () => { const options = getCreateListOptionsMock(); const esClient = elasticsearchClientMock.createScopedClusterClient().asCurrentUser; - esClient.index.mockResponse( + esClient.create.mockResponse( // @ts-expect-error not full response interface { _id: 'elastic-id-123' } ); @@ -43,7 +43,7 @@ describe('crete_list', () => { serializer: '(?)', }; const esClient = elasticsearchClientMock.createScopedClusterClient().asCurrentUser; - esClient.index.mockResponse( + esClient.create.mockResponse( // @ts-expect-error not full response interface { _id: 'elastic-id-123' } ); @@ -67,14 +67,14 @@ describe('crete_list', () => { index: LIST_INDEX, refresh: 'wait_for', }; - expect(options.esClient.index).toBeCalledWith(expected); + expect(options.esClient.create).toBeCalledWith(expected); }); test('It returns an auto-generated id if id is sent in undefined', async () => { const options = getCreateListOptionsMock(); options.id = undefined; const esClient = elasticsearchClientMock.createScopedClusterClient().asCurrentUser; - esClient.index.mockResponse( + esClient.create.mockResponse( // @ts-expect-error not full response interface { _id: 'elastic-id-123' } ); diff --git a/x-pack/plugins/lists/server/services/lists/create_list.ts b/x-pack/plugins/lists/server/services/lists/create_list.ts index 3a31b7fdf6b9a..cd3497b6e891a 100644 --- a/x-pack/plugins/lists/server/services/lists/create_list.ts +++ b/x-pack/plugins/lists/server/services/lists/create_list.ts @@ -58,6 +58,7 @@ export const createList = async ({ }: CreateListOptions): Promise => { const createdAt = dateNow ?? new Date().toISOString(); const body: IndexEsListSchema = { + '@timestamp': createdAt, created_at: createdAt, created_by: user, description, @@ -72,12 +73,14 @@ export const createList = async ({ updated_by: user, version, }; - const response = await esClient.index({ + + const response = await esClient.create({ body, - id, + id: id ?? uuidv4(), index: listIndex, refresh: 'wait_for', }); + return { _version: encodeHitVersion(response), id: response._id, diff --git a/x-pack/plugins/lists/server/services/lists/delete_list.test.ts b/x-pack/plugins/lists/server/services/lists/delete_list.test.ts index 9fb0c5c8d6469..dd2a8639e9278 100644 --- a/x-pack/plugins/lists/server/services/lists/delete_list.test.ts +++ b/x-pack/plugins/lists/server/services/lists/delete_list.test.ts @@ -12,6 +12,10 @@ import { getList } from './get_list'; import { deleteList } from './delete_list'; import { getDeleteListOptionsMock } from './delete_list.mock'; +jest.mock('../utils', () => ({ + waitUntilDocumentIndexed: jest.fn(), +})); + jest.mock('./get_list', () => ({ getList: jest.fn(), })); @@ -36,34 +40,45 @@ describe('delete_list', () => { const list = getListResponseMock(); (getList as unknown as jest.Mock).mockResolvedValueOnce(list); const options = getDeleteListOptionsMock(); + options.esClient.deleteByQuery = jest.fn().mockResolvedValue({ deleted: 1 }); const deletedList = await deleteList(options); expect(deletedList).toEqual(list); }); - test('Delete calls "deleteByQuery" and "delete" if a list is returned from getList', async () => { + test('Delete calls "deleteByQuery" for list items if a list is returned from getList', async () => { const list = getListResponseMock(); (getList as unknown as jest.Mock).mockResolvedValueOnce(list); const options = getDeleteListOptionsMock(); + options.esClient.deleteByQuery = jest.fn().mockResolvedValue({ deleted: 1 }); await deleteList(options); const deleteByQuery = { body: { query: { term: { list_id: LIST_ID } } }, + conflicts: 'proceed', index: LIST_ITEM_INDEX, refresh: false, }; - expect(options.esClient.deleteByQuery).toBeCalledWith(deleteByQuery); + expect(options.esClient.deleteByQuery).toHaveBeenNthCalledWith(1, deleteByQuery); }); - test('Delete calls "delete" second if a list is returned from getList', async () => { + test('Delete calls "deleteByQuery" for list if a list is returned from getList', async () => { const list = getListResponseMock(); (getList as unknown as jest.Mock).mockResolvedValueOnce(list); const options = getDeleteListOptionsMock(); + options.esClient.deleteByQuery = jest.fn().mockResolvedValue({ deleted: 1 }); await deleteList(options); - const deleteQuery = { - id: LIST_ID, + const deleteByQuery = { + body: { + query: { + ids: { + values: [LIST_ID], + }, + }, + }, + conflicts: 'proceed', index: LIST_INDEX, - refresh: 'wait_for', + refresh: false, }; - expect(options.esClient.delete).toHaveBeenNthCalledWith(1, deleteQuery); + expect(options.esClient.deleteByQuery).toHaveBeenCalledWith(deleteByQuery); }); test('Delete does not call data client if the list returns null', async () => { @@ -72,4 +87,13 @@ describe('delete_list', () => { await deleteList(options); expect(options.esClient.delete).not.toHaveBeenCalled(); }); + + test('throw error if no list was deleted', async () => { + const list = getListResponseMock(); + (getList as unknown as jest.Mock).mockResolvedValueOnce(list); + const options = getDeleteListOptionsMock(); + options.esClient.deleteByQuery = jest.fn().mockResolvedValue({ deleted: 0 }); + + await expect(deleteList(options)).rejects.toThrow('No list has been deleted'); + }); }); diff --git a/x-pack/plugins/lists/server/services/lists/delete_list.ts b/x-pack/plugins/lists/server/services/lists/delete_list.ts index f82845e339ed7..c6b452675b7c3 100644 --- a/x-pack/plugins/lists/server/services/lists/delete_list.ts +++ b/x-pack/plugins/lists/server/services/lists/delete_list.ts @@ -8,6 +8,8 @@ import { ElasticsearchClient } from '@kbn/core/server'; import type { Id, ListSchema } from '@kbn/securitysolution-io-ts-list-types'; +import { waitUntilDocumentIndexed } from '../utils'; + import { getList } from './get_list'; export interface DeleteListOptions { @@ -35,15 +37,37 @@ export const deleteList = async ({ }, }, }, + conflicts: 'proceed', index: listItemIndex, refresh: false, }); - await esClient.delete({ - id, + const response = await esClient.deleteByQuery({ + body: { + query: { + ids: { + values: [id], + }, + }, + }, + conflicts: 'proceed', index: listIndex, - refresh: 'wait_for', + refresh: false, }); + + if (response.deleted) { + const checkIfListDeleted = async (): Promise => { + const deletedList = await getList({ esClient, id, listIndex }); + if (deletedList !== null) { + throw Error('List has not been re-indexed in time'); + } + }; + + await waitUntilDocumentIndexed(checkIfListDeleted); + } else { + throw Error('No list has been deleted'); + } + return list; } }; diff --git a/x-pack/plugins/lists/server/services/lists/get_list_template.test.ts b/x-pack/plugins/lists/server/services/lists/get_list_template.test.ts index 57d67d6d383ca..d77eb8917c5ef 100644 --- a/x-pack/plugins/lists/server/services/lists/get_list_template.test.ts +++ b/x-pack/plugins/lists/server/services/lists/get_list_template.test.ts @@ -24,11 +24,12 @@ describe('get_list_template', () => { test('it returns a list template with the string filled in', async () => { const template = getListTemplate('some_index'); expect(template).toEqual({ - index_patterns: ['some_index-*'], + data_stream: {}, + index_patterns: ['some_index'], template: { + lifecycle: {}, mappings: { dynamic: 'strict', properties: {} }, settings: { - index: { lifecycle: { name: 'some_index', rollover_alias: 'some_index' } }, mapping: { total_fields: { limit: 10000 } }, }, }, diff --git a/x-pack/plugins/lists/server/services/lists/get_list_template.ts b/x-pack/plugins/lists/server/services/lists/get_list_template.ts index 8b3cfa8d1df6e..81a66c0642af0 100644 --- a/x-pack/plugins/lists/server/services/lists/get_list_template.ts +++ b/x-pack/plugins/lists/server/services/lists/get_list_template.ts @@ -8,16 +8,12 @@ import listMappings from './list_mappings.json'; export const getListTemplate = (index: string): Record => ({ - index_patterns: [`${index}-*`], + data_stream: {}, + index_patterns: [index], template: { + lifecycle: {}, mappings: listMappings, settings: { - index: { - lifecycle: { - name: index, - rollover_alias: index, - }, - }, mapping: { total_fields: { limit: 10000, diff --git a/x-pack/plugins/lists/server/services/lists/list_client.mock.ts b/x-pack/plugins/lists/server/services/lists/list_client.mock.ts index a2f11e2ac1202..cd361526d2813 100644 --- a/x-pack/plugins/lists/server/services/lists/list_client.mock.ts +++ b/x-pack/plugins/lists/server/services/lists/list_client.mock.ts @@ -24,8 +24,8 @@ import { import { ListClient } from './list_client'; export class ListClientMock extends ListClient { - public getListIndex = jest.fn().mockReturnValue(LIST_INDEX); - public getListItemIndex = jest.fn().mockReturnValue(LIST_ITEM_INDEX); + public getListName = jest.fn().mockReturnValue(LIST_INDEX); + public getListItemName = jest.fn().mockReturnValue(LIST_ITEM_INDEX); public getList = jest.fn().mockResolvedValue(getListResponseMock()); public createList = jest.fn().mockResolvedValue(getListResponseMock()); public createListIfItDoesNotExist = jest.fn().mockResolvedValue(getListResponseMock()); diff --git a/x-pack/plugins/lists/server/services/lists/list_client.test.ts b/x-pack/plugins/lists/server/services/lists/list_client.test.ts index 7259f56b9a91b..e6d6c069ccb3a 100644 --- a/x-pack/plugins/lists/server/services/lists/list_client.test.ts +++ b/x-pack/plugins/lists/server/services/lists/list_client.test.ts @@ -14,12 +14,12 @@ describe('list_client', () => { describe('Mock client checks (not exhaustive tests against it)', () => { test('it returns the get list index as expected', () => { const mock = getListClientMock(); - expect(mock.getListIndex()).toEqual(LIST_INDEX); + expect(mock.getListName()).toEqual(LIST_INDEX); }); test('it returns the get list item index as expected', () => { const mock = getListClientMock(); - expect(mock.getListItemIndex()).toEqual(LIST_ITEM_INDEX); + expect(mock.getListItemName()).toEqual(LIST_ITEM_INDEX); }); test('it returns a mock list item', async () => { diff --git a/x-pack/plugins/lists/server/services/lists/list_client.ts b/x-pack/plugins/lists/server/services/lists/list_client.ts index b6dd681c8802c..d0b72313b7fd6 100644 --- a/x-pack/plugins/lists/server/services/lists/list_client.ts +++ b/x-pack/plugins/lists/server/services/lists/list_client.ts @@ -4,18 +4,24 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ - +import { MappingProperty } from '@elastic/elasticsearch/lib/api/types'; import type { ElasticsearchClient } from '@kbn/core/server'; import { createBootstrapIndex, + createDataStream, deleteAllIndex, + deleteDataStream, deleteIndexTemplate, deletePolicy, deleteTemplate, getBootstrapIndexExists, + getDataStreamExists, getIndexTemplateExists, getPolicyExists, getTemplateExists, + migrateToDataStream, + putMappings, + removePolicyFromIndex, setIndexTemplate, setPolicy, } from '@kbn/securitysolution-es-utils'; @@ -47,8 +53,10 @@ import { updateListItem, } from '../items'; import listsItemsPolicy from '../items/list_item_policy.json'; +import listItemMappings from '../items/list_item_mappings.json'; import listPolicy from './list_policy.json'; +import listMappings from './list_mappings.json'; import type { ConstructorOptions, CreateListIfItDoesNotExistOptions, @@ -115,10 +123,10 @@ export class ListClient { } /** - * Returns the list index name - * @returns The list index name + * Returns the list data stream or index name + * @returns The list data stream/index name */ - public getListIndex = (): string => { + public getListName = (): string => { const { spaceId, config: { listIndex: listsIndexName }, @@ -127,10 +135,10 @@ export class ListClient { }; /** - * Returns the list item index name - * @returns The list item index name + * Returns the list item data stream or index name + * @returns The list item data stream/index name */ - public getListItemIndex = (): string => { + public getListItemName = (): string => { const { spaceId, config: { listItemIndex: listsItemsIndexName }, @@ -146,8 +154,8 @@ export class ListClient { */ public getList = async ({ id }: GetListOptions): Promise => { const { esClient } = this; - const listIndex = this.getListIndex(); - return getList({ esClient, id, listIndex }); + const listName = this.getListName(); + return getList({ esClient, id, listIndex: listName }); }; /** @@ -178,14 +186,14 @@ export class ListClient { version, }: CreateListOptions): Promise => { const { esClient, user } = this; - const listIndex = this.getListIndex(); + const listName = this.getListName(); return createList({ description, deserializer, esClient, id, immutable, - listIndex, + listIndex: listName, meta, name, serializer, @@ -225,14 +233,14 @@ export class ListClient { version, }: CreateListIfItDoesNotExistOptions): Promise => { const { esClient, user } = this; - const listIndex = this.getListIndex(); + const listName = this.getListName(); return createListIfItDoesNotExist({ description, deserializer, esClient, id, immutable, - listIndex, + listIndex: listName, meta, name, serializer, @@ -248,8 +256,18 @@ export class ListClient { */ public getListIndexExists = async (): Promise => { const { esClient } = this; - const listIndex = this.getListIndex(); - return getBootstrapIndexExists(esClient, listIndex); + const listName = this.getListName(); + return getBootstrapIndexExists(esClient, listName); + }; + + /** + * True if the list data stream exists, otherwise false + * @returns True if the list data stream exists, otherwise false + */ + public getListDataStreamExists = async (): Promise => { + const { esClient } = this; + const listName = this.getListName(); + return getDataStreamExists(esClient, listName); }; /** @@ -258,28 +276,104 @@ export class ListClient { */ public getListItemIndexExists = async (): Promise => { const { esClient } = this; - const listItemIndex = this.getListItemIndex(); - return getBootstrapIndexExists(esClient, listItemIndex); + const listItemName = this.getListItemName(); + return getBootstrapIndexExists(esClient, listItemName); + }; + + /** + * True if the list item data stream exists, otherwise false + * @returns True if the list item data stream exists, otherwise false + */ + public getListItemDataStreamExists = async (): Promise => { + const { esClient } = this; + const listItemName = this.getListItemName(); + return getDataStreamExists(esClient, listItemName); }; /** * Creates the list boot strap index for ILM policies. * @returns The contents of the bootstrap response from Elasticsearch + * @deprecated after moving to data streams there should not be need to use it */ public createListBootStrapIndex = async (): Promise => { const { esClient } = this; - const listIndex = this.getListIndex(); - return createBootstrapIndex(esClient, listIndex); + const listName = this.getListName(); + return createBootstrapIndex(esClient, listName); + }; + + /** + * Creates list data stream + * @returns The contents of the create data stream from Elasticsearch + */ + public createListDataStream = async (): Promise => { + const { esClient } = this; + const listName = this.getListName(); + return createDataStream(esClient, listName); + }; + + /** + * update list index mappings with @timestamp and migrates it to data stream + * @returns + */ + public migrateListIndexToDataStream = async (): Promise => { + const { esClient } = this; + const listName = this.getListName(); + // update list index template + await this.setListTemplate(); + // first need to update mapping of existing index to add @timestamp + await putMappings( + esClient, + listName, + listMappings.properties as Record + ); + await migrateToDataStream(esClient, listName); + await removePolicyFromIndex(esClient, listName); + if (await this.getListPolicyExists()) { + await this.deleteListPolicy(); + } + }; + + /** + * update list items index mappings with @timestamp and migrates it to data stream + * @returns + */ + public migrateListItemIndexToDataStream = async (): Promise => { + const { esClient } = this; + const listItemName = this.getListItemName(); + // update list items index template + await this.setListItemTemplate(); + // first need to update mapping of existing index to add @timestamp + await putMappings( + esClient, + listItemName, + listItemMappings.properties as Record + ); + await migrateToDataStream(esClient, listItemName); + await removePolicyFromIndex(esClient, listItemName); + if (await this.getListItemPolicyExists()) { + await this.deleteListItemPolicy(); + } }; /** * Creates the list item boot strap index for ILM policies. * @returns The contents of the bootstrap response from Elasticsearch + * @deprecated after moving to data streams there should not be need to use it */ public createListItemBootStrapIndex = async (): Promise => { const { esClient } = this; - const listItemIndex = this.getListItemIndex(); - return createBootstrapIndex(esClient, listItemIndex); + const listItemName = this.getListItemName(); + return createBootstrapIndex(esClient, listItemName); + }; + + /** + * Creates list item data stream + * @returns The contents of the create data stream from Elasticsearch + */ + public createListItemDataStream = async (): Promise => { + const { esClient } = this; + const listItemName = this.getListItemName(); + return createDataStream(esClient, listItemName); }; /** @@ -288,8 +382,8 @@ export class ListClient { */ public getListPolicyExists = async (): Promise => { const { esClient } = this; - const listIndex = this.getListIndex(); - return getPolicyExists(esClient, listIndex); + const listName = this.getListName(); + return getPolicyExists(esClient, listName); }; /** @@ -298,7 +392,7 @@ export class ListClient { */ public getListItemPolicyExists = async (): Promise => { const { esClient } = this; - const listsItemIndex = this.getListItemIndex(); + const listsItemIndex = this.getListItemName(); return getPolicyExists(esClient, listsItemIndex); }; @@ -308,8 +402,8 @@ export class ListClient { */ public getListTemplateExists = async (): Promise => { const { esClient } = this; - const listIndex = this.getListIndex(); - return getIndexTemplateExists(esClient, listIndex); + const listName = this.getListName(); + return getIndexTemplateExists(esClient, listName); }; /** @@ -318,8 +412,8 @@ export class ListClient { */ public getListItemTemplateExists = async (): Promise => { const { esClient } = this; - const listItemIndex = this.getListItemIndex(); - return getIndexTemplateExists(esClient, listItemIndex); + const listItemName = this.getListItemName(); + return getIndexTemplateExists(esClient, listItemName); }; /** @@ -328,8 +422,8 @@ export class ListClient { */ public getLegacyListTemplateExists = async (): Promise => { const { esClient } = this; - const listIndex = this.getListIndex(); - return getTemplateExists(esClient, listIndex); + const listName = this.getListName(); + return getTemplateExists(esClient, listName); }; /** @@ -338,8 +432,8 @@ export class ListClient { */ public getLegacyListItemTemplateExists = async (): Promise => { const { esClient } = this; - const listItemIndex = this.getListItemIndex(); - return getTemplateExists(esClient, listItemIndex); + const listItemName = this.getListItemName(); + return getTemplateExists(esClient, listItemName); }; /** @@ -347,8 +441,8 @@ export class ListClient { * @returns The contents of the list template for ILM. */ public getListTemplate = (): Record => { - const listIndex = this.getListIndex(); - return getListTemplate(listIndex); + const listName = this.getListName(); + return getListTemplate(listName); }; /** @@ -356,8 +450,8 @@ export class ListClient { * @returns The contents of the list item template for ILM. */ public getListItemTemplate = (): Record => { - const listItemIndex = this.getListItemIndex(); - return getListItemTemplate(listItemIndex); + const listItemName = this.getListItemName(); + return getListItemTemplate(listItemName); }; /** @@ -367,8 +461,8 @@ export class ListClient { public setListTemplate = async (): Promise => { const { esClient } = this; const template = this.getListTemplate(); - const listIndex = this.getListIndex(); - return setIndexTemplate(esClient, listIndex, template); + const listName = this.getListName(); + return setIndexTemplate(esClient, listName, template); }; /** @@ -378,28 +472,30 @@ export class ListClient { public setListItemTemplate = async (): Promise => { const { esClient } = this; const template = this.getListItemTemplate(); - const listItemIndex = this.getListItemIndex(); - return setIndexTemplate(esClient, listItemIndex, template); + const listItemName = this.getListItemName(); + return setIndexTemplate(esClient, listItemName, template); }; /** * Sets the list policy * @returns The contents of the list policy set + * @deprecated after moving to data streams there should not be need to use it */ public setListPolicy = async (): Promise => { const { esClient } = this; - const listIndex = this.getListIndex(); - return setPolicy(esClient, listIndex, listPolicy); + const listName = this.getListName(); + return setPolicy(esClient, listName, listPolicy); }; /** * Sets the list item policy * @returns The contents of the list policy set + * @deprecated after moving to data streams there should not be need to use it */ public setListItemPolicy = async (): Promise => { const { esClient } = this; - const listItemIndex = this.getListItemIndex(); - return setPolicy(esClient, listItemIndex, listsItemsPolicy); + const listItemName = this.getListItemName(); + return setPolicy(esClient, listItemName, listsItemsPolicy); }; /** @@ -408,8 +504,8 @@ export class ListClient { */ public deleteListIndex = async (): Promise => { const { esClient } = this; - const listIndex = this.getListIndex(); - return deleteAllIndex(esClient, `${listIndex}-*`); + const listName = this.getListName(); + return deleteAllIndex(esClient, `${listName}-*`); }; /** @@ -418,8 +514,28 @@ export class ListClient { */ public deleteListItemIndex = async (): Promise => { const { esClient } = this; - const listItemIndex = this.getListItemIndex(); - return deleteAllIndex(esClient, `${listItemIndex}-*`); + const listItemName = this.getListItemName(); + return deleteAllIndex(esClient, `${listItemName}-*`); + }; + + /** + * Deletes the list data stream + * @returns True if the list index was deleted, otherwise false + */ + public deleteListDataStream = async (): Promise => { + const { esClient } = this; + const listName = this.getListName(); + return deleteDataStream(esClient, listName); + }; + + /** + * Deletes the list item data stream + * @returns True if the list index was deleted, otherwise false + */ + public deleteListItemDataStream = async (): Promise => { + const { esClient } = this; + const listItemName = this.getListItemName(); + return deleteDataStream(esClient, listItemName); }; /** @@ -428,8 +544,8 @@ export class ListClient { */ public deleteListPolicy = async (): Promise => { const { esClient } = this; - const listIndex = this.getListIndex(); - return deletePolicy(esClient, listIndex); + const listName = this.getListName(); + return deletePolicy(esClient, listName); }; /** @@ -438,8 +554,8 @@ export class ListClient { */ public deleteListItemPolicy = async (): Promise => { const { esClient } = this; - const listItemIndex = this.getListItemIndex(); - return deletePolicy(esClient, listItemIndex); + const listItemName = this.getListItemName(); + return deletePolicy(esClient, listItemName); }; /** @@ -448,8 +564,8 @@ export class ListClient { */ public deleteListTemplate = async (): Promise => { const { esClient } = this; - const listIndex = this.getListIndex(); - return deleteIndexTemplate(esClient, listIndex); + const listName = this.getListName(); + return deleteIndexTemplate(esClient, listName); }; /** @@ -458,8 +574,8 @@ export class ListClient { */ public deleteListItemTemplate = async (): Promise => { const { esClient } = this; - const listItemIndex = this.getListItemIndex(); - return deleteIndexTemplate(esClient, listItemIndex); + const listItemName = this.getListItemName(); + return deleteIndexTemplate(esClient, listItemName); }; /** @@ -468,8 +584,8 @@ export class ListClient { */ public deleteLegacyListTemplate = async (): Promise => { const { esClient } = this; - const listIndex = this.getListIndex(); - return deleteTemplate(esClient, listIndex); + const listName = this.getListName(); + return deleteTemplate(esClient, listName); }; /** @@ -478,8 +594,8 @@ export class ListClient { */ public deleteLegacyListItemTemplate = async (): Promise => { const { esClient } = this; - const listItemIndex = this.getListItemIndex(); - return deleteTemplate(esClient, listItemIndex); + const listItemName = this.getListItemName(); + return deleteTemplate(esClient, listItemName); }; /** @@ -488,8 +604,8 @@ export class ListClient { */ public deleteListItem = async ({ id }: DeleteListItemOptions): Promise => { const { esClient } = this; - const listItemIndex = this.getListItemIndex(); - return deleteListItem({ esClient, id, listItemIndex }); + const listItemName = this.getListItemName(); + return deleteListItem({ esClient, id, listItemIndex: listItemName }); }; /** @@ -506,11 +622,11 @@ export class ListClient { type, }: DeleteListItemByValueOptions): Promise => { const { esClient } = this; - const listItemIndex = this.getListItemIndex(); + const listItemName = this.getListItemName(); return deleteListItemByValue({ esClient, listId, - listItemIndex, + listItemIndex: listItemName, type, value, }); @@ -524,13 +640,13 @@ export class ListClient { */ public deleteList = async ({ id }: DeleteListOptions): Promise => { const { esClient } = this; - const listIndex = this.getListIndex(); - const listItemIndex = this.getListItemIndex(); + const listName = this.getListName(); + const listItemName = this.getListItemName(); return deleteList({ esClient, id, - listIndex, - listItemIndex, + listIndex: listName, + listItemIndex: listItemName, }); }; @@ -547,11 +663,11 @@ export class ListClient { stream, }: ExportListItemsToStreamOptions): void => { const { esClient } = this; - const listItemIndex = this.getListItemIndex(); + const listItemName = this.getListItemName(); exportListItemsToStream({ esClient, listId, - listItemIndex, + listItemIndex: listItemName, stream, stringToAppend, }); @@ -580,15 +696,15 @@ export class ListClient { version, }: ImportListItemsToStreamOptions): Promise => { const { esClient, user, config } = this; - const listItemIndex = this.getListItemIndex(); - const listIndex = this.getListIndex(); + const listItemName = this.getListItemName(); + const listName = this.getListName(); return importListItemsToStream({ config, deserializer, esClient, listId, - listIndex, - listItemIndex, + listIndex: listName, + listItemIndex: listItemName, meta, serializer, stream, @@ -612,11 +728,11 @@ export class ListClient { type, }: GetListItemByValueOptions): Promise => { const { esClient } = this; - const listItemIndex = this.getListItemIndex(); + const listItemName = this.getListItemName(); return getListItemByValue({ esClient, listId, - listItemIndex, + listItemIndex: listItemName, type, value, }); @@ -646,13 +762,13 @@ export class ListClient { meta, }: CreateListItemOptions): Promise => { const { esClient, user } = this; - const listItemIndex = this.getListItemIndex(); + const listItemName = this.getListItemName(); return createListItem({ deserializer, esClient, id, listId, - listItemIndex, + listItemIndex: listItemName, meta, serializer, type, @@ -678,12 +794,43 @@ export class ListClient { meta, }: UpdateListItemOptions): Promise => { const { esClient, user } = this; - const listItemIndex = this.getListItemIndex(); + const listItemName = this.getListItemName(); return updateListItem({ _version, esClient, id, - listItemIndex, + isPatch: false, + listItemIndex: listItemName, + meta, + user, + value, + }); + }; + + /** + * Patches a list item's value given the id of the list item. + * See {@link https://www.elastic.co/guide/en/elasticsearch/reference/current/optimistic-concurrency-control.html} + * for more information around optimistic concurrency control. + * @param options + * @param options._version This is the version, useful for optimistic concurrency control. + * @param options.id id of the list to replace the list item with. + * @param options.value The value of the list item to replace. + * @param options.meta Additional meta data to associate with the list items as an object of "key/value" pairs. You can set this to "undefined" to not update meta values. + */ + public patchListItem = async ({ + _version, + id, + value, + meta, + }: UpdateListItemOptions): Promise => { + const { esClient, user } = this; + const listItemName = this.getListItemName(); + return updateListItem({ + _version, + esClient, + id, + isPatch: true, + listItemIndex: listItemName, meta, user, value, @@ -711,13 +858,48 @@ export class ListClient { version, }: UpdateListOptions): Promise => { const { esClient, user } = this; - const listIndex = this.getListIndex(); + const listName = this.getListName(); + return updateList({ + _version, + description, + esClient, + id, + isPatch: false, + listIndex: listName, + meta, + name, + user, + version, + }); + }; + + /** + * Patches a list container's value given the id of the list. + * @param options + * @param options._version This is the version, useful for optimistic concurrency control. + * @param options.id id of the list to replace the list container data with. + * @param options.name The new name, or "undefined" if this should not be updated. + * @param options.description The new description, or "undefined" if this should not be updated. + * @param options.meta Additional meta data to associate with the list items as an object of "key/value" pairs. You can set this to "undefined" to not update meta values. + * @param options.version Updates the version of the list. + */ + public patchList = async ({ + _version, + id, + name, + description, + meta, + version, + }: UpdateListOptions): Promise => { + const { esClient, user } = this; + const listName = this.getListName(); return updateList({ _version, description, esClient, id, - listIndex, + isPatch: true, + listIndex: listName, meta, name, user, @@ -733,11 +915,11 @@ export class ListClient { */ public getListItem = async ({ id }: GetListItemOptions): Promise => { const { esClient } = this; - const listItemIndex = this.getListItemIndex(); + const listItemName = this.getListItemName(); return getListItem({ esClient, id, - listItemIndex, + listItemIndex: listItemName, }); }; @@ -755,11 +937,11 @@ export class ListClient { value, }: GetListItemsByValueOptions): Promise => { const { esClient } = this; - const listItemIndex = this.getListItemIndex(); + const listItemName = this.getListItemName(); return getListItemByValues({ esClient, listId, - listItemIndex, + listItemIndex: listItemName, type, value, }); @@ -779,11 +961,11 @@ export class ListClient { value, }: SearchListItemByValuesOptions): Promise => { const { esClient } = this; - const listItemIndex = this.getListItemIndex(); + const listItemName = this.getListItemName(); return searchListItemByValues({ esClient, listId, - listItemIndex, + listItemIndex: listItemName, type, value, }); @@ -813,12 +995,12 @@ export class ListClient { runtimeMappings, }: FindListOptions): Promise => { const { esClient } = this; - const listIndex = this.getListIndex(); + const listName = this.getListName(); return findList({ currentIndexPosition, esClient, filter, - listIndex, + listIndex: listName, page, perPage, runtimeMappings, @@ -855,15 +1037,15 @@ export class ListClient { searchAfter, }: FindListItemOptions): Promise => { const { esClient } = this; - const listIndex = this.getListIndex(); - const listItemIndex = this.getListItemIndex(); + const listName = this.getListName(); + const listItemName = this.getListItemName(); return findListItem({ currentIndexPosition, esClient, filter, listId, - listIndex, - listItemIndex, + listIndex: listName, + listItemIndex: listItemName, page, perPage, runtimeMappings, @@ -880,14 +1062,14 @@ export class ListClient { sortOrder, }: FindAllListItemsOptions): Promise => { const { esClient } = this; - const listIndex = this.getListIndex(); - const listItemIndex = this.getListItemIndex(); + const listName = this.getListName(); + const listItemName = this.getListItemName(); return findAllListItems({ esClient, filter, listId, - listIndex, - listItemIndex, + listIndex: listName, + listItemIndex: listItemName, sortField, sortOrder, }); diff --git a/x-pack/plugins/lists/server/services/lists/list_mappings.json b/x-pack/plugins/lists/server/services/lists/list_mappings.json index d00b00b6469a3..c097408ee9527 100644 --- a/x-pack/plugins/lists/server/services/lists/list_mappings.json +++ b/x-pack/plugins/lists/server/services/lists/list_mappings.json @@ -1,6 +1,9 @@ { "dynamic": "strict", "properties": { + "@timestamp": { + "type": "date" + }, "name": { "type": "keyword" }, diff --git a/x-pack/plugins/lists/server/services/lists/update_list.test.ts b/x-pack/plugins/lists/server/services/lists/update_list.test.ts index 8e68acd358861..4a088e01910de 100644 --- a/x-pack/plugins/lists/server/services/lists/update_list.test.ts +++ b/x-pack/plugins/lists/server/services/lists/update_list.test.ts @@ -14,6 +14,11 @@ import { updateList } from './update_list'; import { getList } from './get_list'; import { getUpdateListOptionsMock } from './update_list.mock'; +jest.mock('../utils', () => ({ + checkVersionConflict: jest.fn(), + waitUntilDocumentIndexed: jest.fn(), +})); + jest.mock('./get_list', () => ({ getList: jest.fn(), })); @@ -27,20 +32,6 @@ describe('update_list', () => { jest.clearAllMocks(); }); - test('it returns a list as expected with the id changed out for the elastic id when there is a list to update', async () => { - const list = getListResponseMock(); - (getList as unknown as jest.Mock).mockResolvedValueOnce(list); - const options = getUpdateListOptionsMock(); - const esClient = elasticsearchClientMock.createScopedClusterClient().asCurrentUser; - esClient.update.mockResponse( - // @ts-expect-error not full response interface - { _id: 'elastic-id-123' } - ); - const updatedList = await updateList({ ...options, esClient }); - const expected: ListSchema = { ...getListResponseMock(), id: 'elastic-id-123' }; - expect(updatedList).toEqual(expected); - }); - test('it returns a list with serializer and deserializer', async () => { const list: ListSchema = { ...getListResponseMock(), @@ -50,15 +41,12 @@ describe('update_list', () => { (getList as unknown as jest.Mock).mockResolvedValueOnce(list); const options = getUpdateListOptionsMock(); const esClient = elasticsearchClientMock.createScopedClusterClient().asCurrentUser; - esClient.update.mockResponse( - // @ts-expect-error not full response interface - { _id: 'elastic-id-123' } - ); + esClient.updateByQuery.mockResolvedValue({ updated: 1 }); const updatedList = await updateList({ ...options, esClient }); const expected: ListSchema = { ...getListResponseMock(), deserializer: '{{value}}', - id: 'elastic-id-123', + id: list.id, serializer: '(?)', }; expect(updatedList).toEqual(expected); @@ -70,4 +58,17 @@ describe('update_list', () => { const updatedList = await updateList(options); expect(updatedList).toEqual(null); }); + + test('throw error if no list was updated', async () => { + const list: ListSchema = { + ...getListResponseMock(), + deserializer: '{{value}}', + serializer: '(?)', + }; + (getList as unknown as jest.Mock).mockResolvedValueOnce(list); + const options = getUpdateListOptionsMock(); + const esClient = elasticsearchClientMock.createScopedClusterClient().asCurrentUser; + esClient.updateByQuery.mockResolvedValue({ updated: 0 }); + await expect(updateList({ ...options, esClient })).rejects.toThrow('No list has been updated'); + }); }); diff --git a/x-pack/plugins/lists/server/services/lists/update_list.ts b/x-pack/plugins/lists/server/services/lists/update_list.ts index 300e4a20946c2..fcb976d7eff02 100644 --- a/x-pack/plugins/lists/server/services/lists/update_list.ts +++ b/x-pack/plugins/lists/server/services/lists/update_list.ts @@ -15,9 +15,9 @@ import type { _VersionOrUndefined, } from '@kbn/securitysolution-io-ts-list-types'; import { VersionOrUndefined } from '@kbn/securitysolution-io-ts-types'; -import { decodeVersion, encodeHitVersion } from '@kbn/securitysolution-es-utils'; import { UpdateEsListSchema } from '../../schemas/elastic_query'; +import { checkVersionConflict, waitUntilDocumentIndexed } from '../utils'; import { getList } from '.'; @@ -32,6 +32,7 @@ export interface UpdateListOptions { meta: MetaOrUndefined; dateNow?: string; version: VersionOrUndefined; + isPatch?: boolean; } export const updateList = async ({ @@ -45,36 +46,90 @@ export const updateList = async ({ meta, dateNow, version, + isPatch = false, }: UpdateListOptions): Promise => { const updatedAt = dateNow ?? new Date().toISOString(); const list = await getList({ esClient, id, listIndex }); if (list == null) { return null; } else { + checkVersionConflict(_version, list._version); const calculatedVersion = version == null ? list.version + 1 : version; - const doc: UpdateEsListSchema = { + + const params: UpdateEsListSchema = { description, meta, name, updated_at: updatedAt, updated_by: user, + version: calculatedVersion, }; - const response = await esClient.update({ - ...decodeVersion(_version), - body: { doc }, - id, + + const response = await esClient.updateByQuery({ + conflicts: 'proceed', index: listIndex, - refresh: 'wait_for', + query: { + ids: { + values: [id], + }, + }, + refresh: false, + script: { + lang: 'painless', + params: { + ...params, + // when assigning undefined in painless, it will remove property and wil set it to null + // for patch we don't want to remove unspecified value in payload + assignEmpty: !isPatch, + }, + source: ` + if (params.assignEmpty == true || params.containsKey('description')) { + ctx._source.description = params.description; + } + if (params.assignEmpty == true || params.containsKey('meta')) { + ctx._source.meta = params.meta; + } + if (params.assignEmpty == true || params.containsKey('name')) { + ctx._source.name = params.name; + } + if (params.assignEmpty == true || params.containsKey('version')) { + ctx._source.version = params.version; + } + ctx._source.updated_at = params.updated_at; + ctx._source.updated_by = params.updated_by; + // needed for list that were created before migration to data streams + if (ctx._source.containsKey('@timestamp') == false) { + ctx._source['@timestamp'] = ctx._source.created_at; + } + `, + }, }); + + let updatedOCCVersion: string | undefined; + if (response.updated) { + const checkIfListUpdated = async (): Promise => { + const updatedList = await getList({ esClient, id, listIndex }); + if (updatedList?._version === list._version) { + throw Error('Document has not been re-indexed in time'); + } + updatedOCCVersion = updatedList?._version; + }; + + await waitUntilDocumentIndexed(checkIfListUpdated); + } else { + throw Error('No list has been updated'); + } + return { - _version: encodeHitVersion(response), + '@timestamp': list['@timestamp'], + _version: updatedOCCVersion, created_at: list.created_at, created_by: list.created_by, description: description ?? list.description, deserializer: list.deserializer, - id: response._id, + id, immutable: list.immutable, - meta, + meta: isPatch ? meta ?? list.meta : meta, name: name ?? list.name, serializer: list.serializer, tie_breaker_id: list.tie_breaker_id, diff --git a/x-pack/plugins/lists/server/services/utils/check_version_conflict.ts b/x-pack/plugins/lists/server/services/utils/check_version_conflict.ts new file mode 100644 index 0000000000000..66bebdae9ec05 --- /dev/null +++ b/x-pack/plugins/lists/server/services/utils/check_version_conflict.ts @@ -0,0 +1,26 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +import Boom from '@hapi/boom'; +import { decodeVersion } from '@kbn/securitysolution-es-utils'; + +/** + * checks if encoded OCC update _version matches actual version of list/item + * @param updateVersion - version in payload + * @param existingVersion - version in exiting list/item + */ +export const checkVersionConflict = ( + updateVersion: string | undefined, + existingVersion: string | undefined +): void => { + if (updateVersion && existingVersion && updateVersion !== existingVersion) { + throw Boom.conflict( + `Conflict: versions mismatch. Provided versions:${JSON.stringify( + decodeVersion(updateVersion) + )} does not match ${JSON.stringify(decodeVersion(existingVersion))}` + ); + } +}; diff --git a/x-pack/plugins/lists/server/services/utils/find_source_value.ts b/x-pack/plugins/lists/server/services/utils/find_source_value.ts index ed39b51dac6c6..5d03c8f6707b3 100644 --- a/x-pack/plugins/lists/server/services/utils/find_source_value.ts +++ b/x-pack/plugins/lists/server/services/utils/find_source_value.ts @@ -23,7 +23,7 @@ export const findSourceValue = ( const foundEntry = Object.entries(listItem).find( ([key, value]) => types.includes(key) && value != null ); - if (foundEntry != null) { + if (foundEntry != null && foundEntry[1] !== null) { const [foundType, value] = foundEntry; switch (foundType) { case 'shape': diff --git a/x-pack/plugins/lists/server/services/utils/index.ts b/x-pack/plugins/lists/server/services/utils/index.ts index 64e7c50d0e7b0..ecd2bbc5f469f 100644 --- a/x-pack/plugins/lists/server/services/utils/index.ts +++ b/x-pack/plugins/lists/server/services/utils/index.ts @@ -8,6 +8,7 @@ export * from './calculate_scroll_math'; export * from './encode_decode_cursor'; export * from './escape_query'; +export * from './check_version_conflict'; export * from './find_source_type'; export * from './find_source_value'; export * from './get_query_filter_from_type_value'; @@ -21,3 +22,4 @@ export * from './transform_elastic_named_search_to_list_item'; export * from './transform_elastic_to_list_item'; export * from './transform_elastic_to_list'; export * from './transform_list_item_to_elastic_query'; +export * from './wait_until_document_indexed'; diff --git a/x-pack/plugins/lists/server/services/utils/transform_elastic_to_list.ts b/x-pack/plugins/lists/server/services/utils/transform_elastic_to_list.ts index 3242742c1cfd6..e5e917a147ac9 100644 --- a/x-pack/plugins/lists/server/services/utils/transform_elastic_to_list.ts +++ b/x-pack/plugins/lists/server/services/utils/transform_elastic_to_list.ts @@ -24,6 +24,9 @@ export const transformElasticToList = ({ _version: encodeHitVersion(hit), id: hit._id, ...hit._source, + // meta can be null if deleted (empty in PUT payload), since update_by_query set deleted values as null + // return it as undefined to keep it consistent with payload + meta: hit._source?.meta ?? undefined, }; }); }; diff --git a/x-pack/plugins/lists/server/services/utils/transform_elastic_to_list_item.ts b/x-pack/plugins/lists/server/services/utils/transform_elastic_to_list_item.ts index 3edbab94a0cfd..46ac86a5c8aae 100644 --- a/x-pack/plugins/lists/server/services/utils/transform_elastic_to_list_item.ts +++ b/x-pack/plugins/lists/server/services/utils/transform_elastic_to_list_item.ts @@ -56,13 +56,16 @@ export const transformElasticHitsToListItem = ({ throw new ErrorWithStatusCode(`Was expected ${type} to not be null/undefined`, 400); } else { return { + '@timestamp': _source?.['@timestamp'], _version: encodeHitVersion(hit), created_at, created_by, deserializer, id: _id, list_id, - meta, + // meta can be null if deleted (empty in PUT payload), since update_by_query set deleted values as null + // return it as undefined to keep it consistent with payload + meta: meta ?? undefined, serializer, tie_breaker_id, type, diff --git a/x-pack/plugins/lists/server/services/utils/wait_until_document_indexed.ts b/x-pack/plugins/lists/server/services/utils/wait_until_document_indexed.ts new file mode 100644 index 0000000000000..6bed7083b615e --- /dev/null +++ b/x-pack/plugins/lists/server/services/utils/wait_until_document_indexed.ts @@ -0,0 +1,25 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +import pRetry from 'p-retry'; + +// index.refresh_interval +// https://www.elastic.co/guide/en/elasticsearch/reference/8.9/index-modules.html#dynamic-index-settings +const DEFAULT_INDEX_REFRESH_TIME = 1000; + +/** + * retries until list/list item has been re-indexed + * After migration to data stream and using update_by_query, delete_by_query which do support only refresh=true/false, + * this utility needed response back when updates/delete applied + * @param fn execution function to retry + */ +export const waitUntilDocumentIndexed = async (fn: () => Promise): Promise => { + await new Promise((resolve) => setTimeout(resolve, DEFAULT_INDEX_REFRESH_TIME)); + await pRetry(fn, { + minTimeout: DEFAULT_INDEX_REFRESH_TIME, + retries: 5, + }); +}; diff --git a/x-pack/plugins/ml/public/application/aiops/change_point_detection.tsx b/x-pack/plugins/ml/public/application/aiops/change_point_detection.tsx index d5d2f24276cb6..65ec83b2cabbf 100644 --- a/x-pack/plugins/ml/public/application/aiops/change_point_detection.tsx +++ b/x-pack/plugins/ml/public/application/aiops/change_point_detection.tsx @@ -63,6 +63,7 @@ export const ChangePointDetectionPage: FC = () => { 'presentationUtil', 'embeddable', 'cases', + 'i18n', ]), fieldStats: { useFieldStatsTrigger, FieldStatsFlyoutProvider }, }} diff --git a/x-pack/plugins/ml/public/application/aiops/log_categorization.tsx b/x-pack/plugins/ml/public/application/aiops/log_categorization.tsx index 93e08b0871313..81412a726c1fa 100644 --- a/x-pack/plugins/ml/public/application/aiops/log_categorization.tsx +++ b/x-pack/plugins/ml/public/application/aiops/log_categorization.tsx @@ -54,6 +54,7 @@ export const LogCategorizationPage: FC = () => { 'unifiedSearch', 'theme', 'lens', + 'i18n', ])} /> )} diff --git a/x-pack/plugins/ml/public/application/aiops/log_rate_analysis.tsx b/x-pack/plugins/ml/public/application/aiops/log_rate_analysis.tsx index 527c442df2c1a..1d9f4e7d92c4a 100644 --- a/x-pack/plugins/ml/public/application/aiops/log_rate_analysis.tsx +++ b/x-pack/plugins/ml/public/application/aiops/log_rate_analysis.tsx @@ -57,6 +57,7 @@ export const LogRateAnalysisPage: FC = () => { 'unifiedSearch', 'theme', 'lens', + 'i18n', ])} /> )} diff --git a/x-pack/plugins/ml/public/application/app.tsx b/x-pack/plugins/ml/public/application/app.tsx index 9a1e7169bebe3..ca1a398de1cbf 100644 --- a/x-pack/plugins/ml/public/application/app.tsx +++ b/x-pack/plugins/ml/public/application/app.tsx @@ -15,12 +15,7 @@ import type { UsageCollectionSetup } from '@kbn/usage-collection-plugin/public'; import { DatePickerContextProvider } from '@kbn/ml-date-picker'; import { Storage } from '@kbn/kibana-utils-plugin/public'; import { UI_SETTINGS } from '@kbn/data-plugin/common'; -import { - KibanaContextProvider, - KibanaThemeProvider, - toMountPoint, - wrapWithTheme, -} from '@kbn/kibana-react-plugin/public'; +import { KibanaContextProvider, KibanaThemeProvider } from '@kbn/kibana-react-plugin/public'; import { StorageContextProvider } from '@kbn/ml-local-storage'; import useLifecycles from 'react-use/lib/useLifecycles'; import useObservable from 'react-use/lib/useObservable'; @@ -128,9 +123,7 @@ const App: FC = ({ coreStart, deps, appMountParams }) => { if (!licenseReady || !mlCapabilities) return null; const datePickerDeps = { - ...pick(services, ['data', 'http', 'notifications', 'theme', 'uiSettings']), - toMountPoint, - wrapWithTheme, + ...pick(services, ['data', 'http', 'notifications', 'theme', 'uiSettings', 'i18n']), uiSettingsKeys: UI_SETTINGS, }; diff --git a/x-pack/plugins/ml/public/application/components/delete_space_aware_item_check_modal/delete_space_aware_item_check_modal.tsx b/x-pack/plugins/ml/public/application/components/delete_space_aware_item_check_modal/delete_space_aware_item_check_modal.tsx index 4b576695c981a..d436a52f7ccb3 100644 --- a/x-pack/plugins/ml/public/application/components/delete_space_aware_item_check_modal/delete_space_aware_item_check_modal.tsx +++ b/x-pack/plugins/ml/public/application/components/delete_space_aware_item_check_modal/delete_space_aware_item_check_modal.tsx @@ -18,7 +18,6 @@ import { EuiModalBody, EuiModalFooter, EuiButton, - EuiLoadingSpinner, EuiText, EuiSpacer, } from '@elastic/eui'; @@ -273,11 +272,11 @@ export const DeleteSpaceAwareItemCheckModal: FC = ({ ); setButtonContent(buttonText); setModalContent(modalText); + setIsLoading(false); }); if (typeof setDidUntag === 'function') { setDidUntag(false); } - setIsLoading(false); // eslint-disable-next-line react-hooks/exhaustive-deps }, [hasManagedJob]); @@ -324,68 +323,72 @@ export const DeleteSpaceAwareItemCheckModal: FC = ({ return ( - {isLoading === true && ( - <> - - - - - - - - - )} - {isLoading === false && ( - <> - - - - - + <> + + + + + - {modalContent} + {isLoading === false ? ( + <> + {modalContent} - - - - {!hasUntagged && - itemCheckRespSummary?.canTakeAnyAction && - itemCheckRespSummary?.canRemoveFromSpace && - itemCheckRespSummary?.canDelete && ( - - {mlSavedObjectType === 'trained-model' - ? shouldUnTagModelLabel - : shouldUnTagJobLabel} - - )} - - - + + + {!hasUntagged && itemCheckRespSummary?.canTakeAnyAction && itemCheckRespSummary?.canRemoveFromSpace && - !itemCheckRespSummary?.canDelete - ? onUntagClick - : onClick - } - fill - > - {buttonContent} - - - - - - )} + itemCheckRespSummary?.canDelete && ( + + {mlSavedObjectType === 'trained-model' + ? shouldUnTagModelLabel + : shouldUnTagJobLabel} + + )} + + + + {buttonContent} + + + + + + ) : ( + + + + + + + )} + ); }; diff --git a/x-pack/plugins/ml/public/application/components/header_menu_portal/header_menu_portal.tsx b/x-pack/plugins/ml/public/application/components/header_menu_portal/header_menu_portal.tsx index e3190e626a3bd..79d09619a0780 100644 --- a/x-pack/plugins/ml/public/application/components/header_menu_portal/header_menu_portal.tsx +++ b/x-pack/plugins/ml/public/application/components/header_menu_portal/header_menu_portal.tsx @@ -7,7 +7,8 @@ import React, { FC, ReactNode, useContext, useEffect, useMemo } from 'react'; import { createHtmlPortalNode, InPortal, OutPortal } from 'react-reverse-portal'; -import { KibanaContextProvider, toMountPoint } from '@kbn/kibana-react-plugin/public'; +import { KibanaContextProvider } from '@kbn/kibana-react-plugin/public'; +import { toMountPoint } from '@kbn/react-kibana-mount'; import { useMlKibana } from '../../contexts/kibana'; import { MlPageControlsContext } from '../ml_page'; @@ -17,6 +18,7 @@ export interface HeaderMenuPortalProps { export const HeaderMenuPortal: FC = ({ children }) => { const { services } = useMlKibana(); + const { theme, i18n } = services; const { setHeaderActionMenu } = useContext(MlPageControlsContext); @@ -32,7 +34,7 @@ export const HeaderMenuPortal: FC = ({ children }) => { , - { theme$: services.theme.theme$ } + { theme, i18n } ); return mount(element); }); diff --git a/x-pack/plugins/ml/public/application/components/ml_inference/add_inference_pipeline_flyout.tsx b/x-pack/plugins/ml/public/application/components/ml_inference/add_inference_pipeline_flyout.tsx index 7d4ea408111fe..8c1d1cb4ec5c6 100644 --- a/x-pack/plugins/ml/public/application/components/ml_inference/add_inference_pipeline_flyout.tsx +++ b/x-pack/plugins/ml/public/application/components/ml_inference/add_inference_pipeline_flyout.tsx @@ -103,7 +103,7 @@ export const AddInferencePipelineFlyout: FC = ( ); return ( - +

    diff --git a/x-pack/plugins/ml/public/application/components/ml_inference/components/add_inference_pipeline_footer.tsx b/x-pack/plugins/ml/public/application/components/ml_inference/components/add_inference_pipeline_footer.tsx index f0a8beb2482f6..04ea2ea217375 100644 --- a/x-pack/plugins/ml/public/application/components/ml_inference/components/add_inference_pipeline_footer.tsx +++ b/x-pack/plugins/ml/public/application/components/ml_inference/components/add_inference_pipeline_footer.tsx @@ -47,7 +47,10 @@ export const AddInferencePipelineFooter: FC = ({ return ( - + {pipelineCreated ? CLOSE_BUTTON_LABEL : CANCEL_BUTTON_LABEL} @@ -66,6 +69,7 @@ export const AddInferencePipelineFooter: FC = ({ {nextStep !== undefined ? ( setStep(nextStep as AddInferencePipelineSteps)} @@ -76,6 +80,7 @@ export const AddInferencePipelineFooter: FC = ({ ) : ( = memo( return ( - + = memo( } > = memo( } > ) => handleAdditionalSettingsChange({ tag: e.target.value }) diff --git a/x-pack/plugins/ml/public/application/components/ml_inference/components/on_failure_configuration.tsx b/x-pack/plugins/ml/public/application/components/ml_inference/components/on_failure_configuration.tsx index bc8bc4eedb2d3..f53e80b122f53 100644 --- a/x-pack/plugins/ml/public/application/components/ml_inference/components/on_failure_configuration.tsx +++ b/x-pack/plugins/ml/public/application/components/ml_inference/components/on_failure_configuration.tsx @@ -89,7 +89,7 @@ export const OnFailureConfiguration: FC = memo( }; return ( - + @@ -146,6 +146,7 @@ export const OnFailureConfiguration: FC = memo( = memo( {ignoreFailure === false ? ( = memo( <> {!editOnFailure ? ( = memo( ) : null} {editOnFailure ? ( = memo( isInvalid={pipelineNameError !== undefined} > = memo( = memo( > ) => handleConfigChange(e.target.value, 'targetField') diff --git a/x-pack/plugins/ml/public/application/components/ml_inference/components/processor_configuration.tsx b/x-pack/plugins/ml/public/application/components/ml_inference/components/processor_configuration.tsx index 7f2dfe9ede728..9da9f71b3cf96 100644 --- a/x-pack/plugins/ml/public/application/components/ml_inference/components/processor_configuration.tsx +++ b/x-pack/plugins/ml/public/application/components/ml_inference/components/processor_configuration.tsx @@ -156,7 +156,10 @@ export const ProcessorConfiguration: FC = memo( }; return ( - + {/* INFERENCE CONFIG */} @@ -193,6 +196,7 @@ export const ProcessorConfiguration: FC = memo( { @@ -228,6 +232,7 @@ export const ProcessorConfiguration: FC = memo( } error={inferenceConfigError ?? inferenceConfigError} isInvalid={inferenceConfigError !== undefined || inferenceConfigError !== undefined} + data-test-subj="mlTrainedModelsInferencePipelineInferenceConfigEditor" > {editInferenceConfig ? ( = memo( onChange={handleInferenceConfigChange} /> ) : ( - + {JSON.stringify(inferenceConfig, null, 2)} )} @@ -311,6 +319,7 @@ export const ProcessorConfiguration: FC = memo( { @@ -349,10 +358,15 @@ export const ProcessorConfiguration: FC = memo( } error={fieldMapError} isInvalid={fieldMapError !== undefined} + data-test-subj="mlTrainedModelsInferencePipelineFieldMapEdit" > <> {!editFieldMapping ? ( - + {JSON.stringify(fieldMap ?? {}, null, 2)} ) : null} diff --git a/x-pack/plugins/ml/public/application/components/ml_inference/components/review_and_create_pipeline.tsx b/x-pack/plugins/ml/public/application/components/ml_inference/components/review_and_create_pipeline.tsx index 352f11a0ba867..9e085b3e46509 100644 --- a/x-pack/plugins/ml/public/application/components/ml_inference/components/review_and_create_pipeline.tsx +++ b/x-pack/plugins/ml/public/application/components/ml_inference/components/review_and_create_pipeline.tsx @@ -58,7 +58,12 @@ export const ReviewAndCreatePipeline: FC = ({ const configCodeBlock = useMemo( () => ( - + {JSON.stringify(inferencePipeline ?? {}, null, 2)} ), @@ -67,7 +72,11 @@ export const ReviewAndCreatePipeline: FC = ({ return ( <> - + {pipelineCreated === false ? ( @@ -86,6 +95,7 @@ export const ReviewAndCreatePipeline: FC = ({ {pipelineCreated === true && pipelineError === undefined ? ( = ({ onClick, disabled }) => ( - + {i18n.translate( 'xpack.ml.trainedModels.content.indices.pipelines.addInferencePipelineModal.saveChangesButton', { defaultMessage: 'Save changes' } diff --git a/x-pack/plugins/ml/public/application/components/ml_inference/components/test_pipeline.tsx b/x-pack/plugins/ml/public/application/components/ml_inference/components/test_pipeline.tsx index 19120de441f4c..e2b5ceabaac88 100644 --- a/x-pack/plugins/ml/public/application/components/ml_inference/components/test_pipeline.tsx +++ b/x-pack/plugins/ml/public/application/components/ml_inference/components/test_pipeline.tsx @@ -129,7 +129,11 @@ export const TestPipeline: FC = memo(({ state, sourceIndex }) => { return ( <> - +

    @@ -245,6 +249,7 @@ export const TestPipeline: FC = memo(({ state, sourceIndex }) => { <> = memo(({ state, sourceIndex }) => { - + {simulatePipelineError ? JSON.stringify(simulatePipelineError, null, 2) : simulatePipelineResult diff --git a/x-pack/plugins/ml/public/application/components/ml_inference/validation.ts b/x-pack/plugins/ml/public/application/components/ml_inference/validation.ts index c86389607d54a..f6326669cf55b 100644 --- a/x-pack/plugins/ml/public/application/components/ml_inference/validation.ts +++ b/x-pack/plugins/ml/public/application/components/ml_inference/validation.ts @@ -87,7 +87,7 @@ export const validateInferenceConfig = ( } // If populated, inference config must have the correct model type - if (inferenceConfig && inferenceConfigKeys.length > 0) { + if (modelType && inferenceConfig && inferenceConfigKeys.length > 0) { if (modelType === inferenceConfigKeys[0]) { return error; } else { diff --git a/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx b/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx index 6e455e9e87d99..099062232a1b7 100644 --- a/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx +++ b/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_management/components/action_clone/clone_action_name.tsx @@ -10,7 +10,6 @@ import React, { FC } from 'react'; import { cloneDeep, isEqual } from 'lodash'; import { i18n } from '@kbn/i18n'; import { FormattedMessage } from '@kbn/i18n-react'; -import { toMountPoint, wrapWithTheme } from '@kbn/kibana-react-plugin/public'; import { extractErrorMessage } from '@kbn/ml-error-utils'; import { isClassificationAnalysis, @@ -19,6 +18,7 @@ import { DEFAULT_RESULTS_FIELD, type DataFrameAnalyticsConfig, } from '@kbn/ml-data-frame-analytics-utils'; +import { toMountPoint } from '@kbn/react-kibana-mount'; import { DeepReadonly } from '../../../../../../../common/types/common'; import { useMlKibana, useNavigateToPath } from '../../../../../contexts/kibana'; import { DEFAULT_NUM_TOP_FEATURE_IMPORTANCE_VALUES } from '../../hooks/use_create_analytics_form'; @@ -414,9 +414,9 @@ export const useNavigateToWizardWithClonedJob = () => { http: { basePath }, application: { capabilities }, theme, + i18n: i18nStart, }, } = useMlKibana(); - const theme$ = theme.theme$; const navigateToPath = useNavigateToPath(); const canCreateDataView = capabilities.savedObjectsManagement.edit === true || capabilities.indexPatterns.save === true; @@ -434,38 +434,36 @@ export const useNavigateToWizardWithClonedJob = () => { } else { toasts.addDanger({ title: toMountPoint( - wrapWithTheme( - <> - - {canCreateDataView ? ( - - - - - ), - }} - /> - - ) : null} - , - theme$ - ) + <> + + {canCreateDataView ? ( + + + + + ), + }} + /> + + ) : null} + , + { theme, i18n: i18nStart } ), }); } diff --git a/x-pack/plugins/ml/public/application/memory_usage/memory_usage_page.tsx b/x-pack/plugins/ml/public/application/memory_usage/memory_usage_page.tsx index 9fe3261aec74c..fd0c2f4157a58 100644 --- a/x-pack/plugins/ml/public/application/memory_usage/memory_usage_page.tsx +++ b/x-pack/plugins/ml/public/application/memory_usage/memory_usage_page.tsx @@ -51,8 +51,6 @@ export const MemoryUsagePage: FC = () => { {isADEnabled && isDFAEnabled && isNLPEnabled ? ( - - ) : ( <> { {selectedTab === TAB.NODES ? : } + ) : ( + )} ); diff --git a/x-pack/plugins/ml/public/application/model_management/deployment_setup.tsx b/x-pack/plugins/ml/public/application/model_management/deployment_setup.tsx index f7dfab5847718..3ac6960af55ca 100644 --- a/x-pack/plugins/ml/public/application/model_management/deployment_setup.tsx +++ b/x-pack/plugins/ml/public/application/model_management/deployment_setup.tsx @@ -27,11 +27,10 @@ import { EuiSelect, EuiSpacer, } from '@elastic/eui'; -import { toMountPoint, wrapWithTheme } from '@kbn/kibana-react-plugin/public'; -import type { Observable } from 'rxjs'; -import type { CoreTheme, OverlayStart } from '@kbn/core/public'; +import type { I18nStart, OverlayStart, ThemeServiceStart } from '@kbn/core/public'; import { css } from '@emotion/react'; import { numberValidator } from '@kbn/ml-agg-utils'; +import { toMountPoint } from '@kbn/react-kibana-mount'; import { isCloudTrial } from '../services/ml_server_info'; import { composeValidators, @@ -497,7 +496,12 @@ export const StartUpdateDeploymentModal: FC = ({ * @param theme$ */ export const getUserInputModelDeploymentParamsProvider = - (overlays: OverlayStart, theme$: Observable, startModelDeploymentDocUrl: string) => + ( + overlays: OverlayStart, + theme: ThemeServiceStart, + i18nStart: I18nStart, + startModelDeploymentDocUrl: string + ) => ( model: ModelItem, initialParams?: ThreadingParams, @@ -507,30 +511,28 @@ export const getUserInputModelDeploymentParamsProvider = try { const modalSession = overlays.openModal( toMountPoint( - wrapWithTheme( - { - modalSession.close(); - - const resultConfig = { ...config }; - if (resultConfig.priority === 'low') { - resultConfig.numOfAllocations = 1; - resultConfig.threadsPerAllocations = 1; - } - - resolve(resultConfig); - }} - onClose={() => { - modalSession.close(); - resolve(); - }} - />, - theme$ - ) + { + modalSession.close(); + + const resultConfig = { ...config }; + if (resultConfig.priority === 'low') { + resultConfig.numOfAllocations = 1; + resultConfig.threadsPerAllocations = 1; + } + + resolve(resultConfig); + }} + onClose={() => { + modalSession.close(); + resolve(); + }} + />, + { theme, i18n: i18nStart } ) ); } catch (e) { diff --git a/x-pack/plugins/ml/public/application/model_management/force_stop_dialog.tsx b/x-pack/plugins/ml/public/application/model_management/force_stop_dialog.tsx index 4721ddb898fa3..c0200b366e6ef 100644 --- a/x-pack/plugins/ml/public/application/model_management/force_stop_dialog.tsx +++ b/x-pack/plugins/ml/public/application/model_management/force_stop_dialog.tsx @@ -15,10 +15,10 @@ import { } from '@elastic/eui'; import { FormattedMessage } from '@kbn/i18n-react'; import { i18n } from '@kbn/i18n'; -import type { OverlayStart, ThemeServiceStart } from '@kbn/core/public'; -import { toMountPoint, wrapWithTheme } from '@kbn/kibana-react-plugin/public'; +import type { I18nStart, OverlayStart, ThemeServiceStart } from '@kbn/core/public'; import { isPopulatedObject } from '@kbn/ml-is-populated-object'; import { isDefined } from '@kbn/ml-is-defined'; +import { toMountPoint } from '@kbn/react-kibana-mount'; import type { ModelItem } from './models_list'; interface ForceStopModelConfirmDialogProps { @@ -165,26 +165,24 @@ export const StopModelDeploymentsConfirmDialog: FC + (overlays: OverlayStart, theme: ThemeServiceStart, i18nStart: I18nStart) => async (forceStopModel: ModelItem): Promise => { return new Promise(async (resolve, reject) => { try { const modalSession = overlays.openModal( toMountPoint( - wrapWithTheme( - { - modalSession.close(); - reject(); - }} - onConfirm={(deploymentIds: string[]) => { - modalSession.close(); - resolve(deploymentIds); - }} - />, - theme.theme$ - ) + { + modalSession.close(); + reject(); + }} + onConfirm={(deploymentIds: string[]) => { + modalSession.close(); + resolve(deploymentIds); + }} + />, + { theme, i18n: i18nStart } ) ); } catch (e) { diff --git a/x-pack/plugins/ml/public/application/model_management/model_actions.tsx b/x-pack/plugins/ml/public/application/model_management/model_actions.tsx index 9cd0794d1b488..2dc8e3f3ff5d5 100644 --- a/x-pack/plugins/ml/public/application/model_management/model_actions.tsx +++ b/x-pack/plugins/ml/public/application/model_management/model_actions.tsx @@ -54,6 +54,7 @@ export function useModelActions({ application: { navigateToUrl, capabilities }, overlays, theme, + i18n: i18nStart, docLinks, mlServices: { mlApiServices }, }, @@ -93,14 +94,19 @@ export function useModelActions({ }, [mlApiServices]); const getUserConfirmation = useMemo( - () => getUserConfirmationProvider(overlays, theme), - [overlays, theme] + () => getUserConfirmationProvider(overlays, theme, i18nStart), + [i18nStart, overlays, theme] ); const getUserInputModelDeploymentParams = useMemo( () => - getUserInputModelDeploymentParamsProvider(overlays, theme.theme$, startModelDeploymentDocUrl), - [overlays, theme.theme$, startModelDeploymentDocUrl] + getUserInputModelDeploymentParamsProvider( + overlays, + theme, + i18nStart, + startModelDeploymentDocUrl + ), + [overlays, theme, i18nStart, startModelDeploymentDocUrl] ); const isBuiltInModel = useCallback( @@ -450,7 +456,11 @@ export function useModelActions({ onModelDeployRequest(model); }, available: (item) => { - const isDfaTrainedModel = item.metadata?.analytics_config !== undefined; + const isDfaTrainedModel = + item.metadata?.analytics_config !== undefined || + item.inference_config?.regression !== undefined || + item.inference_config?.classification !== undefined; + return ( isDfaTrainedModel && !isBuiltInModel(item) && diff --git a/x-pack/plugins/ml/public/application/model_management/test_models/models/text_expansion/text_expansion_output.tsx b/x-pack/plugins/ml/public/application/model_management/test_models/models/text_expansion/text_expansion_output.tsx index da048103ac1a3..46e5342c33f45 100644 --- a/x-pack/plugins/ml/public/application/model_management/test_models/models/text_expansion/text_expansion_output.tsx +++ b/x-pack/plugins/ml/public/application/model_management/test_models/models/text_expansion/text_expansion_output.tsx @@ -63,6 +63,44 @@ export const TextExpansionOutput: FC<{ export const DocumentResult: FC<{ response: FormattedTextExpansionResponse; +}> = ({ response }) => { + const statInfo = useResultStatFormatting(response); + + return ( + <> + {response.text !== undefined ? ( + <> + + + {statInfo.icon !== null ? ( + + ) : null} + {statInfo.text} + + + } + /> + + + {response.text} + + + ) : null} + + ); +}; + +/* + * Currently not used. Tokens could contain sensitive words, so need to be hidden from the user. + * This may change in the future, in which case this function will be used. + */ +export const DocumentResultWithTokens: FC<{ + response: FormattedTextExpansionResponse; }> = ({ response }) => { const tokens = response.adjustedTokenWeights .filter(({ value }) => value > 0) diff --git a/x-pack/plugins/ml/public/application/routing/use_active_route.tsx b/x-pack/plugins/ml/public/application/routing/use_active_route.tsx index d3dd543f3ecdb..3974b13eb51de 100644 --- a/x-pack/plugins/ml/public/application/routing/use_active_route.tsx +++ b/x-pack/plugins/ml/public/application/routing/use_active_route.tsx @@ -8,9 +8,10 @@ import { useLocation, useRouteMatch } from 'react-router-dom'; import { keyBy } from 'lodash'; import React, { useEffect, useMemo, useRef } from 'react'; -import { toMountPoint, useExecutionContext } from '@kbn/kibana-react-plugin/public'; +import { useExecutionContext } from '@kbn/kibana-react-plugin/public'; import { EuiCallOut } from '@elastic/eui'; import { FormattedMessage } from '@kbn/i18n-react'; +import { toMountPoint } from '@kbn/react-kibana-mount'; import { PLUGIN_ID } from '../../../common/constants/app'; import { useMlKibana } from '../contexts/kibana'; import type { MlRoute } from './router'; @@ -23,7 +24,7 @@ export const useActiveRoute = (routesList: MlRoute[]): MlRoute => { const { pathname } = useLocation(); const { - services: { executionContext, overlays, theme }, + services: { executionContext, overlays, theme, i18n }, } = useMlKibana(); /** @@ -77,7 +78,7 @@ export const useActiveRoute = (routesList: MlRoute[]): MlRoute => { />

    , - { theme$: theme.theme$ } + { theme, i18n } ) ); @@ -89,7 +90,7 @@ export const useActiveRoute = (routesList: MlRoute[]): MlRoute => { }, 15000); } }, - [activeRoute, overlays, theme, pathname] + [activeRoute, overlays, theme, pathname, i18n] ); useExecutionContext(executionContext, { diff --git a/x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_embeddable.tsx b/x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_embeddable.tsx index 556a9c8419d7b..40fc78ea15e13 100644 --- a/x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_embeddable.tsx +++ b/x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_embeddable.tsx @@ -11,8 +11,7 @@ import { CoreStart } from '@kbn/core/public'; import { i18n } from '@kbn/i18n'; import { Subject } from 'rxjs'; import { KibanaContextProvider, KibanaThemeProvider } from '@kbn/kibana-react-plugin/public'; -import { Embeddable, IContainer } from '@kbn/embeddable-plugin/public'; -import type { DataView } from '@kbn/data-views-plugin/common'; +import { IContainer } from '@kbn/embeddable-plugin/public'; import { EmbeddableAnomalyChartsContainer } from './embeddable_anomaly_charts_container_lazy'; import type { JobId } from '../../../common/types/anomaly_detection_jobs'; import type { MlDependencies } from '../../application/app'; @@ -23,6 +22,8 @@ import { AnomalyChartsServices, } from '..'; import { EmbeddableLoading } from '../common/components/embeddable_loading_fallback'; +import { AnomalyDetectionEmbeddable } from '../common/anomaly_detection_embeddable'; + export const getDefaultExplorerChartsPanelTitle = (jobIds: JobId[]) => i18n.translate('xpack.ml.anomalyChartsEmbeddable.title', { defaultMessage: 'ML anomaly charts for {jobIds}', @@ -31,7 +32,7 @@ export const getDefaultExplorerChartsPanelTitle = (jobIds: JobId[]) => export type IAnomalyChartsEmbeddable = typeof AnomalyChartsEmbeddable; -export class AnomalyChartsEmbeddable extends Embeddable< +export class AnomalyChartsEmbeddable extends AnomalyDetectionEmbeddable< AnomalyChartsEmbeddableInput, AnomalyChartsEmbeddableOutput > { @@ -44,52 +45,7 @@ export class AnomalyChartsEmbeddable extends Embeddable< public services: [CoreStart, MlDependencies, AnomalyChartsServices], parent?: IContainer ) { - super( - initialInput, - { - defaultTitle: initialInput.title, - defaultDescription: initialInput.description, - }, - parent - ); - this.initializeOutput(initialInput); - } - - private async initializeOutput(initialInput: AnomalyChartsEmbeddableInput) { - const { anomalyExplorerService } = this.services[2]; - const { jobIds } = initialInput; - - try { - const jobs = await anomalyExplorerService.getCombinedJobs(jobIds); - const dataViewsService = this.services[1].data.dataViews; - - // First get list of unique indices from the selected jobs - const indices = new Set(jobs.map((j) => j.datafeed_config.indices).flat()); - // Then find the data view assuming the data view title matches the index name - const indexPatterns: Record = {}; - for (const indexName of indices) { - const response = await dataViewsService.find(`"${indexName}"`); - - const indexPattern = response.find( - (obj) => obj.title.toLowerCase() === indexName.toLowerCase() - ); - if (indexPattern !== undefined) { - indexPatterns[indexPattern.id!] = indexPattern; - } - } - - this.updateOutput({ - ...this.getOutput(), - indexPatterns: Object.values(indexPatterns), - }); - } catch (e) { - // Unable to find and load data view but we can ignore the error - // as we only load it to support the filter & query bar - // the visualizations should still work correctly - - // eslint-disable-next-line no-console - console.error(`Unable to load data views for ${jobIds}`, e); - } + super(initialInput, services[2].anomalyDetectorService, services[1].data.dataViews, parent); } public onLoading() { diff --git a/x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_setup_flyout.tsx b/x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_setup_flyout.tsx index a4417faa8e100..92aea068c5b15 100644 --- a/x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_setup_flyout.tsx +++ b/x-pack/plugins/ml/public/embeddables/anomaly_charts/anomaly_charts_setup_flyout.tsx @@ -7,7 +7,7 @@ import React from 'react'; import type { CoreStart } from '@kbn/core/public'; -import { toMountPoint, wrapWithTheme } from '@kbn/kibana-react-plugin/public'; +import { toMountPoint } from '@kbn/react-kibana-mount'; import { extractInfluencers } from '../../../common/util/job_utils'; import { VIEW_BY_JOB_LABEL } from '../../application/explorer/explorer_constants'; import { getDefaultExplorerChartsPanelTitle } from './anomaly_charts_embeddable'; @@ -21,7 +21,7 @@ export async function resolveEmbeddableAnomalyChartsUserInput( coreStart: CoreStart, input?: AnomalyChartsEmbeddableInput ): Promise> { - const { http, overlays } = coreStart; + const { http, overlays, theme, i18n } = coreStart; const { getJobs } = mlApiServicesProvider(new HttpService(http)); @@ -32,28 +32,25 @@ export async function resolveEmbeddableAnomalyChartsUserInput( const { jobs } = await getJobs({ jobId: jobIds.join(',') }); const influencers = extractInfluencers(jobs); influencers.push(VIEW_BY_JOB_LABEL); - const { theme$ } = coreStart.theme; const modalSession = overlays.openModal( toMountPoint( - wrapWithTheme( - { - modalSession.close(); - resolve({ - jobIds, - title: panelTitle, - maxSeriesToPlot, - }); - }} - onCancel={() => { - modalSession.close(); - reject(); - }} - />, - theme$ - ) + { + modalSession.close(); + resolve({ + jobIds, + title: panelTitle, + maxSeriesToPlot, + }); + }} + onCancel={() => { + modalSession.close(); + reject(); + }} + />, + { theme, i18n } ) ); } catch (error) { diff --git a/x-pack/plugins/ml/public/embeddables/anomaly_swimlane/anomaly_swimlane_embeddable.tsx b/x-pack/plugins/ml/public/embeddables/anomaly_swimlane/anomaly_swimlane_embeddable.tsx index 4d28dbd4f0e6f..75a6e0650181a 100644 --- a/x-pack/plugins/ml/public/embeddables/anomaly_swimlane/anomaly_swimlane_embeddable.tsx +++ b/x-pack/plugins/ml/public/embeddables/anomaly_swimlane/anomaly_swimlane_embeddable.tsx @@ -11,7 +11,7 @@ import { CoreStart } from '@kbn/core/public'; import { i18n } from '@kbn/i18n'; import { Subject } from 'rxjs'; import { KibanaContextProvider, KibanaThemeProvider } from '@kbn/kibana-react-plugin/public'; -import { Embeddable, IContainer } from '@kbn/embeddable-plugin/public'; +import { IContainer } from '@kbn/embeddable-plugin/public'; import { EmbeddableSwimLaneContainer } from './embeddable_swim_lane_container_lazy'; import type { JobId } from '../../../common/types/anomaly_detection_jobs'; import type { MlDependencies } from '../../application/app'; @@ -23,6 +23,7 @@ import { AnomalySwimlaneServices, } from '..'; import { EmbeddableLoading } from '../common/components/embeddable_loading_fallback'; +import { AnomalyDetectionEmbeddable } from '../common/anomaly_detection_embeddable'; export const getDefaultSwimlanePanelTitle = (jobIds: JobId[]) => i18n.translate('xpack.ml.swimlaneEmbeddable.title', { @@ -32,7 +33,7 @@ export const getDefaultSwimlanePanelTitle = (jobIds: JobId[]) => export type IAnomalySwimlaneEmbeddable = typeof AnomalySwimlaneEmbeddable; -export class AnomalySwimlaneEmbeddable extends Embeddable< +export class AnomalySwimlaneEmbeddable extends AnomalyDetectionEmbeddable< AnomalySwimlaneEmbeddableInput, AnomalySwimlaneEmbeddableOutput > { @@ -45,14 +46,7 @@ export class AnomalySwimlaneEmbeddable extends Embeddable< public services: [CoreStart, MlDependencies, AnomalySwimlaneServices], parent?: IContainer ) { - super( - initialInput, - { - defaultTitle: initialInput.title, - defaultDescription: initialInput.description, - }, - parent - ); + super(initialInput, services[2].anomalyDetectorService, services[1].data.dataViews, parent); } public reportsEmbeddableLoad() { diff --git a/x-pack/plugins/ml/public/embeddables/anomaly_swimlane/anomaly_swimlane_setup_flyout.tsx b/x-pack/plugins/ml/public/embeddables/anomaly_swimlane/anomaly_swimlane_setup_flyout.tsx index 12073abb5d95f..dc2ca931cc805 100644 --- a/x-pack/plugins/ml/public/embeddables/anomaly_swimlane/anomaly_swimlane_setup_flyout.tsx +++ b/x-pack/plugins/ml/public/embeddables/anomaly_swimlane/anomaly_swimlane_setup_flyout.tsx @@ -7,7 +7,7 @@ import React from 'react'; import type { CoreStart } from '@kbn/core/public'; -import { toMountPoint, wrapWithTheme } from '@kbn/kibana-react-plugin/public'; +import { toMountPoint } from '@kbn/react-kibana-mount'; import { extractInfluencers } from '../../../common/util/job_utils'; import { VIEW_BY_JOB_LABEL } from '../../application/explorer/explorer_constants'; import { AnomalySwimlaneInitializer } from './anomaly_swimlane_initializer'; @@ -21,7 +21,7 @@ export async function resolveAnomalySwimlaneUserInput( coreStart: CoreStart, input?: AnomalySwimlaneEmbeddableInput ): Promise> { - const { http, overlays } = coreStart; + const { http, overlays, theme, i18n } = coreStart; const { getJobs } = mlApiServicesProvider(new HttpService(http)); @@ -32,29 +32,26 @@ export async function resolveAnomalySwimlaneUserInput( const { jobs } = await getJobs({ jobId: jobIds.join(',') }); const influencers = extractInfluencers(jobs); influencers.push(VIEW_BY_JOB_LABEL); - const { theme$ } = coreStart.theme; const modalSession = overlays.openModal( toMountPoint( - wrapWithTheme( - { - modalSession.close(); - resolve({ - jobIds, - title: explicitInput.panelTitle, - ...explicitInput, - }); - }} - onCancel={() => { - modalSession.close(); - reject(); - }} - />, - theme$ - ) + { + modalSession.close(); + resolve({ + jobIds, + title: explicitInput.panelTitle, + ...explicitInput, + }); + }} + onCancel={() => { + modalSession.close(); + reject(); + }} + />, + { theme, i18n } ) ); } catch (error) { diff --git a/x-pack/plugins/ml/public/embeddables/common/anomaly_detection_embeddable.ts b/x-pack/plugins/ml/public/embeddables/common/anomaly_detection_embeddable.ts new file mode 100644 index 0000000000000..7722238cdbb38 --- /dev/null +++ b/x-pack/plugins/ml/public/embeddables/common/anomaly_detection_embeddable.ts @@ -0,0 +1,84 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { + Embeddable, + type EmbeddableInput, + type EmbeddableOutput, + type IContainer, +} from '@kbn/embeddable-plugin/public'; +import { type DataView } from '@kbn/data-views-plugin/common'; +import { type DataViewsContract } from '@kbn/data-views-plugin/public'; +import { firstValueFrom } from 'rxjs'; +import { type AnomalyDetectorService } from '../../application/services/anomaly_detector_service'; + +export type CommonInput = { jobIds: string[] } & EmbeddableInput; + +export type CommonOutput = { indexPatterns?: DataView[] } & EmbeddableOutput; + +export abstract class AnomalyDetectionEmbeddable< + Input extends CommonInput, + Output extends CommonOutput +> extends Embeddable { + // Need to defer embeddable load in order to resolve data views + deferEmbeddableLoad = true; + + protected constructor( + initialInput: Input, + private anomalyDetectorService: AnomalyDetectorService, + private dataViewsService: DataViewsContract, + parent?: IContainer + ) { + super( + initialInput, + { + defaultTitle: initialInput.title, + defaultDescription: initialInput.description, + } as Output, + parent + ); + + this.initializeOutput(initialInput).finally(() => { + this.setInitializationFinished(); + }); + } + + protected async initializeOutput(initialInput: CommonInput) { + const { jobIds } = initialInput; + + try { + const jobs = await firstValueFrom(this.anomalyDetectorService.getJobs$(jobIds)); + + // First get list of unique indices from the selected jobs + const indices = new Set(jobs.map((j) => j.datafeed_config!.indices).flat()); + // Then find the data view assuming the data view title matches the index name + const indexPatterns: Record = {}; + for (const indexName of indices) { + const response = await this.dataViewsService.find(`"${indexName}"`); + const indexPattern = response.find((obj) => + obj.getIndexPattern().toLowerCase().includes(indexName.toLowerCase()) + ); + + if (indexPattern !== undefined) { + indexPatterns[indexPattern.id!] = indexPattern; + } + } + + this.updateOutput({ + ...this.getOutput(), + indexPatterns: Object.values(indexPatterns), + }); + } catch (e) { + // Unable to find and load data view but we can ignore the error + // as we only load it to support the filter & query bar + // the visualizations should still work correctly + + // eslint-disable-next-line no-console + console.error(`Unable to load data views for ${jobIds}`, e); + } + } +} diff --git a/x-pack/plugins/ml/public/embeddables/common/resolve_job_selection.tsx b/x-pack/plugins/ml/public/embeddables/common/resolve_job_selection.tsx index f1b84a7d046c0..00c4a02d4e929 100644 --- a/x-pack/plugins/ml/public/embeddables/common/resolve_job_selection.tsx +++ b/x-pack/plugins/ml/public/embeddables/common/resolve_job_selection.tsx @@ -9,14 +9,11 @@ import moment from 'moment'; import { takeUntil, distinctUntilChanged, skip } from 'rxjs/operators'; import { from } from 'rxjs'; import React from 'react'; -import { - KibanaContextProvider, - toMountPoint, - wrapWithTheme, -} from '@kbn/kibana-react-plugin/public'; +import { KibanaContextProvider } from '@kbn/kibana-react-plugin/public'; +import { toMountPoint } from '@kbn/react-kibana-mount'; import { getInitialGroupsMap } from '../../application/components/job_selector/job_selector'; import { getMlGlobalServices } from '../../application/app'; -import { JobId } from '../../../common/types/anomaly_detection_jobs'; +import type { JobId } from '../../../common/types/anomaly_detection_jobs'; import { JobSelectorFlyout } from './components/job_selector_flyout'; /** @@ -35,6 +32,7 @@ export async function resolveJobSelection( http, uiSettings, theme, + i18n, application: { currentAppId$ }, } = coreStart; @@ -71,23 +69,19 @@ export async function resolveJobSelection( const flyoutSession = coreStart.overlays.openFlyout( toMountPoint( - wrapWithTheme( - - - , - theme.theme$ - ) + + + , + { theme, i18n } ), { 'data-test-subj': 'mlFlyoutJobSelector', diff --git a/x-pack/plugins/ml/public/embeddables/job_creation/common/create_flyout.tsx b/x-pack/plugins/ml/public/embeddables/job_creation/common/create_flyout.tsx index c6a580c544584..7fd5f9e86fca8 100644 --- a/x-pack/plugins/ml/public/embeddables/job_creation/common/create_flyout.tsx +++ b/x-pack/plugins/ml/public/embeddables/job_creation/common/create_flyout.tsx @@ -8,11 +8,8 @@ import React from 'react'; import { takeUntil, distinctUntilChanged, skip } from 'rxjs/operators'; import { from } from 'rxjs'; -import { - toMountPoint, - wrapWithTheme, - KibanaContextProvider, -} from '@kbn/kibana-react-plugin/public'; +import { KibanaContextProvider } from '@kbn/kibana-react-plugin/public'; +import { toMountPoint } from '@kbn/react-kibana-mount'; import type { SharePluginStart } from '@kbn/share-plugin/public'; import type { DataPublicPluginStart } from '@kbn/data-plugin/public'; import type { CoreStart } from '@kbn/core/public'; @@ -34,7 +31,8 @@ export function createFlyout( ): Promise { const { http, - theme: { theme$ }, + theme, + i18n, overlays, application: { currentAppId$ }, } = coreStart; @@ -48,27 +46,25 @@ export function createFlyout( const flyoutSession = overlays.openFlyout( toMountPoint( - wrapWithTheme( - + { + onFlyoutClose(); + resolve(); }} - > - { - onFlyoutClose(); - resolve(); - }} - /> - , - theme$ - ) + /> + , + { theme, i18n } ), { 'data-test-subj': 'mlFlyoutLayerSelector', diff --git a/x-pack/plugins/ml/public/embeddables/job_creation/lens/lens_vis_layer_selection_flyout/flyout.tsx b/x-pack/plugins/ml/public/embeddables/job_creation/lens/lens_vis_layer_selection_flyout/flyout.tsx index aebba425a633c..06420c071c220 100644 --- a/x-pack/plugins/ml/public/embeddables/job_creation/lens/lens_vis_layer_selection_flyout/flyout.tsx +++ b/x-pack/plugins/ml/public/embeddables/job_creation/lens/lens_vis_layer_selection_flyout/flyout.tsx @@ -18,7 +18,6 @@ import { EuiTitle, EuiSpacer, EuiText, - useEuiTheme, } from '@elastic/eui'; import { Layer } from './layer'; @@ -32,7 +31,6 @@ interface Props { } export const LensLayerSelectionFlyout: FC = ({ onClose, embeddable }) => { - const { euiTheme } = useEuiTheme(); const { services: { data, lens }, } = useMlFromLensKibanaContext(); @@ -72,7 +70,7 @@ export const LensLayerSelectionFlyout: FC = ({ onClose, embeddable }) => /> - + {layerResults.map((layer, i) => ( ))} diff --git a/x-pack/plugins/ml/public/embeddables/types.ts b/x-pack/plugins/ml/public/embeddables/types.ts index 74a2e042a9898..48a7b5d43a5ac 100644 --- a/x-pack/plugins/ml/public/embeddables/types.ts +++ b/x-pack/plugins/ml/public/embeddables/types.ts @@ -58,6 +58,7 @@ export interface AnomalySwimlaneEmbeddableCustomOutput { perPage?: number; fromPage?: number; interval?: number; + indexPatterns?: DataView[]; } export type AnomalySwimlaneEmbeddableOutput = EmbeddableOutput & diff --git a/x-pack/plugins/ml/tsconfig.json b/x-pack/plugins/ml/tsconfig.json index ff3b8076a8ba1..57811ff1201fe 100644 --- a/x-pack/plugins/ml/tsconfig.json +++ b/x-pack/plugins/ml/tsconfig.json @@ -103,5 +103,6 @@ "@kbn/content-management-plugin", "@kbn/ml-in-memory-table", "@kbn/presentation-util-plugin", + "@kbn/react-kibana-mount", ], } diff --git a/x-pack/plugins/monitoring/public/application/pages/apm/overview.tsx b/x-pack/plugins/monitoring/public/application/pages/apm/overview.tsx index 9dd30bf6db81a..e12b567d8340f 100644 --- a/x-pack/plugins/monitoring/public/application/pages/apm/overview.tsx +++ b/x-pack/plugins/monitoring/public/application/pages/apm/overview.tsx @@ -70,7 +70,10 @@ export const ApmOverviewPage: React.FC = ({ clusters }) => { getPageData={getPageData} data-test-subj="apmOverviewPage" > - {data && } + { + // @ts-expect-error ts upgrade v4.7.4 + data && + } ); }; diff --git a/x-pack/plugins/monitoring/public/application/pages/enterprise_search/overview.tsx b/x-pack/plugins/monitoring/public/application/pages/enterprise_search/overview.tsx index 0cd97166dcf5d..4493ec12adba4 100644 --- a/x-pack/plugins/monitoring/public/application/pages/enterprise_search/overview.tsx +++ b/x-pack/plugins/monitoring/public/application/pages/enterprise_search/overview.tsx @@ -69,7 +69,10 @@ export const EntSearchOverviewPage: React.FC = ({ clusters }) => data-test-subj="entSearchOverviewPage" >
    - {data && } + { + // @ts-expect-error ts upgrade v4.7.4 + data && + }
    ); diff --git a/x-pack/plugins/observability/common/threshold_rule/types.ts b/x-pack/plugins/observability/common/threshold_rule/types.ts index 526fbe574c526..6511a2cb280a5 100644 --- a/x-pack/plugins/observability/common/threshold_rule/types.ts +++ b/x-pack/plugins/observability/common/threshold_rule/types.ts @@ -14,8 +14,7 @@ import { metricsExplorerMetricRT } from './metrics_explorer'; import { TimeUnitChar } from '../utils/formatters/duration'; import { SNAPSHOT_CUSTOM_AGGREGATIONS } from './constants'; -// eslint-disable-next-line @typescript-eslint/no-empty-interface -interface DeepPartialArray extends Array> {} +type DeepPartialArray = Array>; type DeepPartialObject = { [P in keyof T]+?: DeepPartial }; export type DeepPartial = T extends any[] diff --git a/x-pack/plugins/observability/docs/openapi/slo/bundled.json b/x-pack/plugins/observability/docs/openapi/slo/bundled.json index a949bc868850e..653b8e72e3bfd 100644 --- a/x-pack/plugins/observability/docs/openapi/slo/bundled.json +++ b/x-pack/plugins/observability/docs/openapi/slo/bundled.json @@ -798,7 +798,9 @@ "nullable": false, "required": [ "index", - "timestampField" + "timestampField", + "good", + "total" ], "properties": { "index": { diff --git a/x-pack/plugins/observability/docs/openapi/slo/bundled.yaml b/x-pack/plugins/observability/docs/openapi/slo/bundled.yaml index 1a134dd4d5d6b..c23ba97556c95 100644 --- a/x-pack/plugins/observability/docs/openapi/slo/bundled.yaml +++ b/x-pack/plugins/observability/docs/openapi/slo/bundled.yaml @@ -504,6 +504,8 @@ components: required: - index - timestampField + - good + - total properties: index: description: The index or index pattern to use diff --git a/x-pack/plugins/observability/docs/openapi/slo/components/schemas/indicator_properties_custom_kql.yaml b/x-pack/plugins/observability/docs/openapi/slo/components/schemas/indicator_properties_custom_kql.yaml index 2f8c9fb42b0a8..1f271147356e1 100644 --- a/x-pack/plugins/observability/docs/openapi/slo/components/schemas/indicator_properties_custom_kql.yaml +++ b/x-pack/plugins/observability/docs/openapi/slo/components/schemas/indicator_properties_custom_kql.yaml @@ -12,6 +12,8 @@ properties: required: - index - timestampField + - good + - total properties: index: description: The index or index pattern to use diff --git a/x-pack/plugins/observability/public/hooks/slo/query_key_factory.ts b/x-pack/plugins/observability/public/hooks/slo/query_key_factory.ts index 74e2e31be4151..2175f67e807fb 100644 --- a/x-pack/plugins/observability/public/hooks/slo/query_key_factory.ts +++ b/x-pack/plugins/observability/public/hooks/slo/query_key_factory.ts @@ -34,6 +34,7 @@ export const sloKeys = { historicalSummaries: () => [...sloKeys.all, 'historicalSummary'] as const, historicalSummary: (list: Array<{ sloId: string; instanceId: string }>) => [...sloKeys.historicalSummaries(), list] as const, + definitions: (search: string) => [...sloKeys.all, 'definitions', search] as const, globalDiagnosis: () => [...sloKeys.all, 'globalDiagnosis'] as const, burnRates: (sloId: string, instanceId: string | undefined) => [...sloKeys.all, 'burnRates', sloId, instanceId] as const, diff --git a/x-pack/plugins/observability/public/hooks/slo/use_fetch_global_diagnosis.ts b/x-pack/plugins/observability/public/hooks/slo/use_fetch_global_diagnosis.ts index 9ae7723ccebbb..94ec7c625a1b1 100644 --- a/x-pack/plugins/observability/public/hooks/slo/use_fetch_global_diagnosis.ts +++ b/x-pack/plugins/observability/public/hooks/slo/use_fetch_global_diagnosis.ts @@ -13,7 +13,10 @@ import { } from '@tanstack/react-query'; import { i18n } from '@kbn/i18n'; import type { PublicLicenseJSON } from '@kbn/licensing-plugin/public'; -import type { SecurityGetUserPrivilegesResponse } from '@elastic/elasticsearch/lib/api/typesWithBodyKey'; +import type { + SecurityGetUserPrivilegesResponse, + TransformGetTransformStatsResponse, +} from '@elastic/elasticsearch/lib/api/typesWithBodyKey'; import { useKibana } from '../../utils/kibana_react'; import { convertErrorForUseInToast } from './helpers/convert_error_for_use_in_toast'; import { sloKeys } from './query_key_factory'; @@ -24,6 +27,10 @@ interface SloGlobalDiagnosisResponse { sloResources: { [x: string]: 'OK' | 'NOT_OK'; }; + sloSummaryResources: { + [x: string]: 'OK' | 'NOT_OK'; + }; + sloSummaryTransformsStats: TransformGetTransformStatsResponse; } export interface UseFetchSloGlobalDiagnoseResponse { diff --git a/x-pack/plugins/observability/public/hooks/slo/use_fetch_rules_for_slo.ts b/x-pack/plugins/observability/public/hooks/slo/use_fetch_rules_for_slo.ts index eab7a9a65df8a..a31e6f8f35f47 100644 --- a/x-pack/plugins/observability/public/hooks/slo/use_fetch_rules_for_slo.ts +++ b/x-pack/plugins/observability/public/hooks/slo/use_fetch_rules_for_slo.ts @@ -21,8 +21,10 @@ interface Params { sloIds?: SloId[]; } -// eslint-disable-next-line @typescript-eslint/consistent-type-definitions -export type SloRule = { sloId: string; name: string }; +export interface SloRule extends Record { + sloId: string; + name: string; +} interface RuleApiResponse { page: number; diff --git a/x-pack/plugins/observability/public/hooks/slo/use_fetch_slo_definitions.ts b/x-pack/plugins/observability/public/hooks/slo/use_fetch_slo_definitions.ts index 33a480254c826..e74b3570177e4 100644 --- a/x-pack/plugins/observability/public/hooks/slo/use_fetch_slo_definitions.ts +++ b/x-pack/plugins/observability/public/hooks/slo/use_fetch_slo_definitions.ts @@ -5,14 +5,15 @@ * 2.0. */ +import { FindSloDefinitionsResponse, SLOResponse } from '@kbn/slo-schema'; import { QueryObserverResult, RefetchOptions, RefetchQueryFilters, useQuery, } from '@tanstack/react-query'; -import { SLOResponse } from '@kbn/slo-schema'; import { useKibana } from '../../utils/kibana_react'; +import { sloKeys } from './query_key_factory'; export interface UseFetchSloDefinitionsResponse { isLoading: boolean; @@ -26,31 +27,33 @@ export interface UseFetchSloDefinitionsResponse { interface Params { name?: string; - size?: number; } -export function useFetchSloDefinitions({ - name = '', - size = 10, -}: Params): UseFetchSloDefinitionsResponse { - const { savedObjects } = useKibana().services; +export function useFetchSloDefinitions({ name = '' }: Params): UseFetchSloDefinitionsResponse { + const { http } = useKibana().services; const search = name.endsWith('*') ? name : `${name}*`; const { isLoading, isError, isSuccess, data, refetch } = useQuery({ - queryKey: ['fetchSloDefinitions', search], - queryFn: async () => { + queryKey: sloKeys.definitions(search), + queryFn: async ({ signal }) => { try { - const response = await savedObjects.client.find({ - type: 'slo', - search, - searchFields: ['name'], - perPage: size, - }); - return response.savedObjects.map((so) => so.attributes); + const response = await http.get( + '/internal/observability/slos/_definitions', + { + query: { + search, + }, + signal, + } + ); + + return response; } catch (error) { throw new Error(`Something went wrong. Error: ${error}`); } }, + retry: false, + refetchOnWindowFocus: false, }); return { isLoading, isError, isSuccess, data, refetch }; diff --git a/x-pack/plugins/observability/public/locators/rules.ts b/x-pack/plugins/observability/public/locators/rules.ts index 673b567c0f32f..9d54745dcd197 100644 --- a/x-pack/plugins/observability/public/locators/rules.ts +++ b/x-pack/plugins/observability/public/locators/rules.ts @@ -12,16 +12,15 @@ import type { RuleStatus } from '@kbn/triggers-actions-ui-plugin/public'; import { rulesLocatorID } from '../../common'; import { RULES_PATH } from '../../common/locators/paths'; -// eslint-disable-next-line @typescript-eslint/consistent-type-definitions -export type RulesParams = { +export interface RulesParams extends SerializableRecord { lastResponse?: string[]; params?: Record; search?: string; status?: RuleStatus[]; type?: string[]; -}; +} -export interface RulesLocatorParams extends RulesParams, SerializableRecord {} +export type RulesLocatorParams = RulesParams; export class RulesLocatorDefinition implements LocatorDefinition { public readonly id = rulesLocatorID; diff --git a/x-pack/plugins/observability/public/locators/slo_details.ts b/x-pack/plugins/observability/public/locators/slo_details.ts index e7b5cdd363f65..913c848508b61 100644 --- a/x-pack/plugins/observability/public/locators/slo_details.ts +++ b/x-pack/plugins/observability/public/locators/slo_details.ts @@ -10,10 +10,9 @@ import type { LocatorDefinition } from '@kbn/share-plugin/public'; import { sloDetailsLocatorID } from '../../common'; import { SLOS_PATH } from '../../common/locators/paths'; -// eslint-disable-next-line @typescript-eslint/consistent-type-definitions -export type SloDetailsParams = { +export interface SloDetailsParams { sloId?: string; -}; +} export interface SloDetailsLocatorParams extends SloDetailsParams, SerializableRecord {} diff --git a/x-pack/plugins/observability/public/pages/slo_edit/components/slo_edit_form_objective_section.tsx b/x-pack/plugins/observability/public/pages/slo_edit/components/slo_edit_form_objective_section.tsx index 23c73b302b73a..951e879f43cf1 100644 --- a/x-pack/plugins/observability/public/pages/slo_edit/components/slo_edit_form_objective_section.tsx +++ b/x-pack/plugins/observability/public/pages/slo_edit/components/slo_edit_form_objective_section.tsx @@ -241,17 +241,17 @@ export function SloEditFormObjectiveSection() { min: 0.001, max: 99.999, }} - render={({ field: { ref, ...field }, fieldState }) => ( + render={({ field: { ref, onChange, ...field }, fieldState }) => ( field.onChange(Number(event.target.value))} + onChange={(event) => onChange(event.target.value)} /> )} /> diff --git a/x-pack/plugins/observability/public/pages/slo_edit/components/slo_edit_form_objective_section_timeslices.tsx b/x-pack/plugins/observability/public/pages/slo_edit/components/slo_edit_form_objective_section_timeslices.tsx index bdc8b15d46923..2d2648290ba8a 100644 --- a/x-pack/plugins/observability/public/pages/slo_edit/components/slo_edit_form_objective_section_timeslices.tsx +++ b/x-pack/plugins/observability/public/pages/slo_edit/components/slo_edit_form_objective_section_timeslices.tsx @@ -43,17 +43,17 @@ export function SloEditFormObjectiveSectionTimeslices() { min: 0.001, max: 99.999, }} - render={({ field: { ref, ...field }, fieldState }) => ( + render={({ field: { ref, onChange, ...field }, fieldState }) => ( field.onChange(Number(event.target.value))} + onChange={(event) => onChange(event.target.value)} /> )} /> @@ -82,17 +82,17 @@ export function SloEditFormObjectiveSectionTimeslices() { defaultValue="1" control={control} rules={{ required: true, min: 1, max: 120 }} - render={({ field: { ref, ...field }, fieldState }) => ( + render={({ field: { ref, onChange, ...field }, fieldState }) => ( field.onChange(String(Number(event.target.value)))} + onChange={(event) => onChange(String(parseInt(event.target.value, 10)))} /> )} /> diff --git a/x-pack/plugins/observability/server/lib/rules/threshold/threshold_executor.test.ts b/x-pack/plugins/observability/server/lib/rules/threshold/threshold_executor.test.ts index 861af59aa2ad6..1cf093ab91eee 100644 --- a/x-pack/plugins/observability/server/lib/rules/threshold/threshold_executor.test.ts +++ b/x-pack/plugins/observability/server/lib/rules/threshold/threshold_executor.test.ts @@ -37,7 +37,7 @@ interface AlertTestInstance { state: any; } -let persistAlertInstances = false; // eslint-disable-line prefer-const +const persistAlertInstances = false; type TestRuleState = Record & { aRuleStateKey: string; diff --git a/x-pack/plugins/observability/server/lib/rules/threshold/threshold_executor.ts b/x-pack/plugins/observability/server/lib/rules/threshold/threshold_executor.ts index e3c306b52dce7..64180fb8875f0 100644 --- a/x-pack/plugins/observability/server/lib/rules/threshold/threshold_executor.ts +++ b/x-pack/plugins/observability/server/lib/rules/threshold/threshold_executor.ts @@ -50,14 +50,14 @@ export type MetricThresholdRuleTypeState = RuleTypeState & { groupBy?: string | string[]; }; export type MetricThresholdAlertState = AlertState; // no specific instance state used -// eslint-disable-next-line @typescript-eslint/consistent-type-definitions -export type MetricThresholdAlertContext = { + +export interface MetricThresholdAlertContext extends Record { alertDetailsUrl: string; groupings?: object; reason?: string; timestamp: string; // ISO string value?: Array | null; -}; +} export const FIRED_ACTIONS_ID = 'threshold.fired'; export const NO_DATA_ACTIONS_ID = 'threshold.nodata'; diff --git a/x-pack/plugins/observability/server/routes/slo/route.ts b/x-pack/plugins/observability/server/routes/slo/route.ts index 14e5a26e7c7ff..e991f2b6a9d4f 100644 --- a/x-pack/plugins/observability/server/routes/slo/route.ts +++ b/x-pack/plugins/observability/server/routes/slo/route.ts @@ -5,11 +5,13 @@ * 2.0. */ +import { errors } from '@elastic/elasticsearch'; import { failedDependency, forbidden } from '@hapi/boom'; import { createSLOParamsSchema, deleteSLOParamsSchema, fetchHistoricalSummaryParamsSchema, + findSloDefinitionsParamsSchema, findSLOParamsSchema, getPreviewDataParamsSchema, getSLOBurnRatesParamsSchema, @@ -31,6 +33,7 @@ import { UpdateSLO, } from '../../services/slo'; import { FetchHistoricalSummary } from '../../services/slo/fetch_historical_summary'; +import { FindSLODefinitions } from '../../services/slo/find_slo_definitions'; import { getBurnRates } from '../../services/slo/get_burn_rates'; import { getGlobalDiagnosis, getSloDiagnosis } from '../../services/slo/get_diagnosis'; import { GetPreviewData } from '../../services/slo/get_preview_data'; @@ -57,9 +60,13 @@ const transformGenerators: Record = { 'sli.histogram.custom': new HistogramTransformGenerator(), }; -const isLicenseAtLeastPlatinum = async (context: ObservabilityRequestHandlerContext) => { +const assertPlatinumLicense = async (context: ObservabilityRequestHandlerContext) => { const licensing = await context.licensing; - return licensing.license.hasAtLeast('platinum'); + const hasCorrectLicense = licensing.license.hasAtLeast('platinum'); + + if (!hasCorrectLicense) { + throw forbidden('Platinum license or higher is needed to make use of this feature.'); + } }; const createSLORoute = createObservabilityServerRoute({ @@ -69,11 +76,7 @@ const createSLORoute = createObservabilityServerRoute({ }, params: createSLOParamsSchema, handler: async ({ context, params, logger }) => { - const hasCorrectLicense = await isLicenseAtLeastPlatinum(context); - - if (!hasCorrectLicense) { - throw forbidden('Platinum license or higher is needed to make use of this feature.'); - } + await assertPlatinumLicense(context); const esClient = (await context.core).elasticsearch.client.asCurrentUser; const soClient = (await context.core).savedObjects.client; @@ -94,11 +97,7 @@ const updateSLORoute = createObservabilityServerRoute({ }, params: updateSLOParamsSchema, handler: async ({ context, params, logger }) => { - const hasCorrectLicense = await isLicenseAtLeastPlatinum(context); - - if (!hasCorrectLicense) { - throw forbidden('Platinum license or higher is needed to make use of this feature.'); - } + await assertPlatinumLicense(context); const esClient = (await context.core).elasticsearch.client.asCurrentUser; const soClient = (await context.core).savedObjects.client; @@ -126,11 +125,7 @@ const deleteSLORoute = createObservabilityServerRoute({ logger, dependencies: { getRulesClientWithRequest }, }) => { - const hasCorrectLicense = await isLicenseAtLeastPlatinum(context); - - if (!hasCorrectLicense) { - throw forbidden('Platinum license or higher is needed to make use of this feature.'); - } + await assertPlatinumLicense(context); const esClient = (await context.core).elasticsearch.client.asCurrentUser; const soClient = (await context.core).savedObjects.client; @@ -152,11 +147,7 @@ const getSLORoute = createObservabilityServerRoute({ }, params: getSLOParamsSchema, handler: async ({ context, params }) => { - const hasCorrectLicense = await isLicenseAtLeastPlatinum(context); - - if (!hasCorrectLicense) { - throw forbidden('Platinum license or higher is needed to make use of this feature.'); - } + await assertPlatinumLicense(context); const soClient = (await context.core).savedObjects.client; const esClient = (await context.core).elasticsearch.client.asCurrentUser; @@ -177,11 +168,7 @@ const enableSLORoute = createObservabilityServerRoute({ }, params: manageSLOParamsSchema, handler: async ({ context, params, logger }) => { - const hasCorrectLicense = await isLicenseAtLeastPlatinum(context); - - if (!hasCorrectLicense) { - throw forbidden('Platinum license or higher is needed to make use of this feature.'); - } + await assertPlatinumLicense(context); const soClient = (await context.core).savedObjects.client; const esClient = (await context.core).elasticsearch.client.asCurrentUser; @@ -203,11 +190,7 @@ const disableSLORoute = createObservabilityServerRoute({ }, params: manageSLOParamsSchema, handler: async ({ context, params, logger }) => { - const hasCorrectLicense = await isLicenseAtLeastPlatinum(context); - - if (!hasCorrectLicense) { - throw forbidden('Platinum license or higher is needed to make use of this feature.'); - } + await assertPlatinumLicense(context); const soClient = (await context.core).savedObjects.client; const esClient = (await context.core).elasticsearch.client.asCurrentUser; @@ -229,11 +212,7 @@ const findSLORoute = createObservabilityServerRoute({ }, params: findSLOParamsSchema, handler: async ({ context, params, logger }) => { - const hasCorrectLicense = await isLicenseAtLeastPlatinum(context); - - if (!hasCorrectLicense) { - throw forbidden('Platinum license or higher is needed to make use of this feature.'); - } + await assertPlatinumLicense(context); const soClient = (await context.core).savedObjects.client; const esClient = (await context.core).elasticsearch.client.asCurrentUser; @@ -247,6 +226,25 @@ const findSLORoute = createObservabilityServerRoute({ }, }); +const findSloDefinitionsRoute = createObservabilityServerRoute({ + endpoint: 'GET /internal/observability/slos/_definitions', + options: { + tags: ['access:slo_read'], + }, + params: findSloDefinitionsParamsSchema, + handler: async ({ context, params }) => { + await assertPlatinumLicense(context); + + const soClient = (await context.core).savedObjects.client; + const repository = new KibanaSavedObjectsSLORepository(soClient); + const findSloDefinitions = new FindSLODefinitions(repository); + + const response = await findSloDefinitions.execute(params.query.search); + + return response; + }, +}); + const fetchHistoricalSummary = createObservabilityServerRoute({ endpoint: 'POST /internal/observability/slos/_historical_summary', options: { @@ -254,11 +252,7 @@ const fetchHistoricalSummary = createObservabilityServerRoute({ }, params: fetchHistoricalSummaryParamsSchema, handler: async ({ context, params }) => { - const hasCorrectLicense = await isLicenseAtLeastPlatinum(context); - - if (!hasCorrectLicense) { - throw forbidden('Platinum license or higher is needed to make use of this feature.'); - } + await assertPlatinumLicense(context); const soClient = (await context.core).savedObjects.client; const esClient = (await context.core).elasticsearch.client.asCurrentUser; @@ -280,11 +274,7 @@ const getSLOInstancesRoute = createObservabilityServerRoute({ }, params: getSLOInstancesParamsSchema, handler: async ({ context, params }) => { - const hasCorrectLicense = await isLicenseAtLeastPlatinum(context); - - if (!hasCorrectLicense) { - throw forbidden('Platinum license or higher is needed to make use of this feature.'); - } + await assertPlatinumLicense(context); const soClient = (await context.core).savedObjects.client; const esClient = (await context.core).elasticsearch.client.asCurrentUser; @@ -312,7 +302,7 @@ const getDiagnosisRoute = createObservabilityServerRoute({ const response = await getGlobalDiagnosis(esClient, licensing); return response; } catch (error) { - if (error.cause.statusCode === 403) { + if (error instanceof errors.ResponseError && error.statusCode === 403) { throw forbidden('Insufficient Elasticsearch cluster permissions to access feature.'); } throw failedDependency(error); @@ -342,11 +332,7 @@ const getSloBurnRates = createObservabilityServerRoute({ }, params: getSLOBurnRatesParamsSchema, handler: async ({ context, params }) => { - const hasCorrectLicense = await isLicenseAtLeastPlatinum(context); - - if (!hasCorrectLicense) { - throw forbidden('Platinum license or higher is needed to make use of this feature.'); - } + await assertPlatinumLicense(context); const esClient = (await context.core).elasticsearch.client.asCurrentUser; const soClient = (await context.core).savedObjects.client; @@ -370,11 +356,7 @@ const getPreviewData = createObservabilityServerRoute({ }, params: getPreviewDataParamsSchema, handler: async ({ context, params }) => { - const hasCorrectLicense = await isLicenseAtLeastPlatinum(context); - - if (!hasCorrectLicense) { - throw forbidden('Platinum license or higher is needed to make use of this feature.'); - } + await assertPlatinumLicense(context); const esClient = (await context.core).elasticsearch.client.asCurrentUser; const service = new GetPreviewData(esClient); @@ -388,6 +370,7 @@ export const sloRouteRepository = { ...disableSLORoute, ...enableSLORoute, ...fetchHistoricalSummary, + ...findSloDefinitionsRoute, ...findSLORoute, ...getSLORoute, ...updateSLORoute, diff --git a/x-pack/plugins/observability/server/services/slo/find_slo_definitions.ts b/x-pack/plugins/observability/server/services/slo/find_slo_definitions.ts new file mode 100644 index 0000000000000..157e5b4be5696 --- /dev/null +++ b/x-pack/plugins/observability/server/services/slo/find_slo_definitions.ts @@ -0,0 +1,18 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { FindSloDefinitionsResponse, findSloDefinitionsResponseSchema } from '@kbn/slo-schema'; +import { SLORepository } from './slo_repository'; + +export class FindSLODefinitions { + constructor(private repository: SLORepository) {} + + public async execute(search: string): Promise { + const sloList = await this.repository.search(search); + return findSloDefinitionsResponseSchema.encode(sloList); + } +} diff --git a/x-pack/plugins/observability/server/services/slo/get_diagnosis.ts b/x-pack/plugins/observability/server/services/slo/get_diagnosis.ts index 028a8089658d1..4bdf43e143342 100644 --- a/x-pack/plugins/observability/server/services/slo/get_diagnosis.ts +++ b/x-pack/plugins/observability/server/services/slo/get_diagnosis.ts @@ -5,6 +5,7 @@ * 2.0. */ +import { errors } from '@elastic/elasticsearch'; import { ElasticsearchClient } from '@kbn/core-elasticsearch-server'; import { LicensingApiRequestHandlerContext } from '@kbn/licensing-plugin/server'; import { @@ -28,27 +29,23 @@ export async function getGlobalDiagnosis( esClient: ElasticsearchClient, licensing: LicensingApiRequestHandlerContext ) { - try { - const licenseInfo = licensing.license.toJSON(); - const userPrivileges = await esClient.security.getUserPrivileges(); - const sloResources = await getSloResourcesDiagnosis(esClient); - const sloSummaryResources = await getSloSummaryResourcesDiagnosis(esClient); - - const sloSummaryTransformsStats = await esClient.transform.getTransformStats({ - transform_id: `${SLO_SUMMARY_TRANSFORM_NAME_PREFIX}*`, - allow_no_match: true, - }); + const licenseInfo = licensing.license.toJSON(); + const userPrivileges = await esClient.security.getUserPrivileges(); + const sloResources = await getSloResourcesDiagnosis(esClient); + const sloSummaryResources = await getSloSummaryResourcesDiagnosis(esClient); - return { - licenseAndFeatures: licenseInfo, - userPrivileges, - sloResources, - sloSummaryResources, - sloSummaryTransformsStats, - }; - } catch (error) { - throw error; - } + const sloSummaryTransformsStats = await esClient.transform.getTransformStats({ + transform_id: `${SLO_SUMMARY_TRANSFORM_NAME_PREFIX}*`, + allow_no_match: true, + }); + + return { + licenseAndFeatures: licenseInfo, + userPrivileges, + sloResources, + sloSummaryResources, + sloSummaryTransformsStats, + }; } export async function getSloDiagnosis( @@ -115,7 +112,10 @@ async function getSloResourcesDiagnosis(esClient: ElasticsearchClient) { [SLO_INGEST_PIPELINE_NAME]: ingestPipelineExists ? OK : NOT_OK, }; } catch (err) { - if (err.meta.statusCode === 403) { + if ( + err instanceof errors.ResponseError && + (err.statusCode === 403 || err.meta.statusCode === 403) + ) { throw new Error('Insufficient permissions to access Elasticsearch Cluster', { cause: err }); } } @@ -141,7 +141,10 @@ async function getSloSummaryResourcesDiagnosis(esClient: ElasticsearchClient) { [SLO_SUMMARY_COMPONENT_TEMPLATE_SETTINGS_NAME]: settingsTemplateExists ? OK : NOT_OK, }; } catch (err) { - if (err.meta.statusCode === 403) { + if ( + err instanceof errors.ResponseError && + (err.statusCode === 403 || err.meta.statusCode === 403) + ) { throw new Error('Insufficient permissions to access Elasticsearch Cluster', { cause: err }); } } diff --git a/x-pack/plugins/observability/server/services/slo/get_preview_data.ts b/x-pack/plugins/observability/server/services/slo/get_preview_data.ts index 7928747720537..e85085dcec115 100644 --- a/x-pack/plugins/observability/server/services/slo/get_preview_data.ts +++ b/x-pack/plugins/observability/server/services/slo/get_preview_data.ts @@ -316,7 +316,7 @@ export class GetPreviewData { } } -function getElastichsearchQueryOrThrow(kuery: string) { +function getElastichsearchQueryOrThrow(kuery: string | undefined = '') { try { return toElasticsearchQuery(fromKueryExpression(kuery)); } catch (err) { diff --git a/x-pack/plugins/observability/server/services/slo/mocks/index.ts b/x-pack/plugins/observability/server/services/slo/mocks/index.ts index ef5a93ad3c63f..36afc3a9191cd 100644 --- a/x-pack/plugins/observability/server/services/slo/mocks/index.ts +++ b/x-pack/plugins/observability/server/services/slo/mocks/index.ts @@ -40,6 +40,7 @@ const createSLORepositoryMock = (): jest.Mocked => { findById: jest.fn(), findAllByIds: jest.fn(), deleteById: jest.fn(), + search: jest.fn(), }; }; diff --git a/x-pack/plugins/observability/server/services/slo/slo_repository.test.ts b/x-pack/plugins/observability/server/services/slo/slo_repository.test.ts index e303b759ea4ef..4b61bff04ea6f 100644 --- a/x-pack/plugins/observability/server/services/slo/slo_repository.test.ts +++ b/x-pack/plugins/observability/server/services/slo/slo_repository.test.ts @@ -163,4 +163,20 @@ describe('KibanaSavedObjectsSLORepository', () => { }); expect(soClientMock.delete).toHaveBeenCalledWith(SO_SLO_TYPE, SOME_SLO.id); }); + + it('searches by name', async () => { + const repository = new KibanaSavedObjectsSLORepository(soClientMock); + soClientMock.find.mockResolvedValueOnce(soFindResponse([SOME_SLO, ANOTHER_SLO])); + + const results = await repository.search(SOME_SLO.name); + + expect(results).toEqual([SOME_SLO, ANOTHER_SLO]); + expect(soClientMock.find).toHaveBeenCalledWith({ + type: SO_SLO_TYPE, + page: 1, + perPage: 25, + search: SOME_SLO.name, + searchFields: ['name'], + }); + }); }); diff --git a/x-pack/plugins/observability/server/services/slo/slo_repository.ts b/x-pack/plugins/observability/server/services/slo/slo_repository.ts index 6ab9a78dc49e3..cc595ed0b0099 100644 --- a/x-pack/plugins/observability/server/services/slo/slo_repository.ts +++ b/x-pack/plugins/observability/server/services/slo/slo_repository.ts @@ -20,6 +20,7 @@ export interface SLORepository { findAllByIds(ids: string[]): Promise; findById(id: string): Promise; deleteById(id: string): Promise; + search(search: string): Promise; } export class KibanaSavedObjectsSLORepository implements SLORepository { @@ -97,6 +98,21 @@ export class KibanaSavedObjectsSLORepository implements SLORepository { throw err; } } + + async search(search: string): Promise { + try { + const response = await this.soClient.find({ + type: SO_SLO_TYPE, + page: 1, + perPage: 25, + search, + searchFields: ['name'], + }); + return response.saved_objects.map((slo) => toSLO(slo.attributes)); + } catch (err) { + throw err; + } + } } function toStoredSLO(slo: SLO): StoredSLO { diff --git a/x-pack/plugins/observability/server/services/slo/summary_transform/__snapshots__/summary_transform_installer.test.ts.snap b/x-pack/plugins/observability/server/services/slo/summary_transform/__snapshots__/summary_transform_installer.test.ts.snap index 3e4424efdbd90..0a76a924129b2 100644 --- a/x-pack/plugins/observability/server/services/slo/summary_transform/__snapshots__/summary_transform_installer.test.ts.snap +++ b/x-pack/plugins/observability/server/services/slo/summary_transform/__snapshots__/summary_transform_installer.test.ts.snap @@ -58,7 +58,7 @@ Array [ "goodEvents": "goodEvents", "totalEvents": "totalEvents", }, - "script": "if (params.totalEvents == 0) { return -1 } else { return params.goodEvents / params.totalEvents }", + "script": "if (params.totalEvents == 0) { return -1 } else if (params.goodEvents >= params.totalEvents) { return 1 } else { return params.goodEvents / params.totalEvents }", }, }, "statusCode": Object { @@ -286,7 +286,7 @@ Array [ "goodEvents": "goodEvents", "totalEvents": "totalEvents", }, - "script": "if (params.totalEvents == 0) { return -1 } else { return params.goodEvents / params.totalEvents }", + "script": "if (params.totalEvents == 0) { return -1 } else if (params.goodEvents >= params.totalEvents) { return 1 } else { return params.goodEvents / params.totalEvents }", }, }, "statusCode": Object { @@ -514,7 +514,7 @@ Array [ "goodEvents": "goodEvents", "totalEvents": "totalEvents", }, - "script": "if (params.totalEvents == 0) { return -1 } else { return params.goodEvents / params.totalEvents }", + "script": "if (params.totalEvents == 0) { return -1 } else if (params.goodEvents >= params.totalEvents) { return 1 } else { return params.goodEvents / params.totalEvents }", }, }, "statusCode": Object { @@ -757,7 +757,7 @@ Array [ "goodEvents": "goodEvents", "totalEvents": "totalEvents", }, - "script": "if (params.totalEvents == 0) { return -1 } else { return params.goodEvents / params.totalEvents }", + "script": "if (params.totalEvents == 0) { return -1 } else if (params.goodEvents >= params.totalEvents) { return 1 } else { return params.goodEvents / params.totalEvents }", }, }, "statusCode": Object { @@ -1013,7 +1013,7 @@ Array [ "goodEvents": "goodEvents", "totalEvents": "totalEvents", }, - "script": "if (params.totalEvents == 0) { return -1 } else { return params.goodEvents / params.totalEvents }", + "script": "if (params.totalEvents == 0) { return -1 } else if (params.goodEvents >= params.totalEvents) { return 1 } else { return params.goodEvents / params.totalEvents }", }, }, "statusCode": Object { diff --git a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_30d_rolling.ts b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_30d_rolling.ts index 49a9313f0ca9f..4e1279392a0d1 100644 --- a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_30d_rolling.ts +++ b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_30d_rolling.ts @@ -88,7 +88,7 @@ export const SUMMARY_OCCURRENCES_30D_ROLLING: TransformPutTransformRequest = { totalEvents: 'totalEvents', }, script: - 'if (params.totalEvents == 0) { return -1 } else { return params.goodEvents / params.totalEvents }', + 'if (params.totalEvents == 0) { return -1 } else if (params.goodEvents >= params.totalEvents) { return 1 } else { return params.goodEvents / params.totalEvents }', }, }, errorBudgetInitial: { diff --git a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_7d_rolling.ts b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_7d_rolling.ts index b515e4ead626f..fd04fa207744d 100644 --- a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_7d_rolling.ts +++ b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_7d_rolling.ts @@ -88,7 +88,7 @@ export const SUMMARY_OCCURRENCES_7D_ROLLING: TransformPutTransformRequest = { totalEvents: 'totalEvents', }, script: - 'if (params.totalEvents == 0) { return -1 } else { return params.goodEvents / params.totalEvents }', + 'if (params.totalEvents == 0) { return -1 } else if (params.goodEvents >= params.totalEvents) { return 1 } else { return params.goodEvents / params.totalEvents }', }, }, errorBudgetInitial: { diff --git a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_90d_rolling.ts b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_90d_rolling.ts index 3ae7d6c96f054..2ec860a4cdbfb 100644 --- a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_90d_rolling.ts +++ b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_90d_rolling.ts @@ -88,7 +88,7 @@ export const SUMMARY_OCCURRENCES_90D_ROLLING: TransformPutTransformRequest = { totalEvents: 'totalEvents', }, script: - 'if (params.totalEvents == 0) { return -1 } else { return params.goodEvents / params.totalEvents }', + 'if (params.totalEvents == 0) { return -1 } else if (params.goodEvents >= params.totalEvents) { return 1 } else { return params.goodEvents / params.totalEvents }', }, }, errorBudgetInitial: { diff --git a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_monthly_aligned.ts b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_monthly_aligned.ts index 7a5a8083630cb..083bdcb174542 100644 --- a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_monthly_aligned.ts +++ b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_monthly_aligned.ts @@ -88,7 +88,7 @@ export const SUMMARY_OCCURRENCES_MONTHLY_ALIGNED: TransformPutTransformRequest = totalEvents: 'totalEvents', }, script: - 'if (params.totalEvents == 0) { return -1 } else { return params.goodEvents / params.totalEvents }', + 'if (params.totalEvents == 0) { return -1 } else if (params.goodEvents >= params.totalEvents) { return 1 } else { return params.goodEvents / params.totalEvents }', }, }, errorBudgetInitial: { diff --git a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_weekly_aligned.ts b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_weekly_aligned.ts index cc897dc84c507..45dc45200906c 100644 --- a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_weekly_aligned.ts +++ b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_occurrences_weekly_aligned.ts @@ -88,7 +88,7 @@ export const SUMMARY_OCCURRENCES_WEEKLY_ALIGNED: TransformPutTransformRequest = totalEvents: 'totalEvents', }, script: - 'if (params.totalEvents == 0) { return -1 } else { return params.goodEvents / params.totalEvents }', + 'if (params.totalEvents == 0) { return -1 } else if (params.goodEvents >= params.totalEvents) { return 1 } else { return params.goodEvents / params.totalEvents }', }, }, errorBudgetInitial: { diff --git a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_30d_rolling.ts b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_30d_rolling.ts index f5dea3efcf879..ae5f0a36650d4 100644 --- a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_30d_rolling.ts +++ b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_30d_rolling.ts @@ -88,7 +88,7 @@ export const SUMMARY_TIMESLICES_30D_ROLLING: TransformPutTransformRequest = { totalEvents: 'totalEvents', }, script: - 'if (params.totalEvents == 0) { return -1 } else { return params.goodEvents / params.totalEvents }', + 'if (params.totalEvents == 0) { return -1 } else if (params.goodEvents >= params.totalEvents) { return 1 } else { return params.goodEvents / params.totalEvents }', }, }, errorBudgetInitial: { diff --git a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_7d_rolling.ts b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_7d_rolling.ts index 3bd1e33351529..3db1d5818d66e 100644 --- a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_7d_rolling.ts +++ b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_7d_rolling.ts @@ -88,7 +88,7 @@ export const SUMMARY_TIMESLICES_7D_ROLLING: TransformPutTransformRequest = { totalEvents: 'totalEvents', }, script: - 'if (params.totalEvents == 0) { return -1 } else { return params.goodEvents / params.totalEvents }', + 'if (params.totalEvents == 0) { return -1 } else if (params.goodEvents >= params.totalEvents) { return 1 } else { return params.goodEvents / params.totalEvents }', }, }, errorBudgetInitial: { diff --git a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_90d_rolling.ts b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_90d_rolling.ts index 7e9d572d77d15..089d155896f80 100644 --- a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_90d_rolling.ts +++ b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_90d_rolling.ts @@ -88,7 +88,7 @@ export const SUMMARY_TIMESLICES_90D_ROLLING: TransformPutTransformRequest = { totalEvents: 'totalEvents', }, script: - 'if (params.totalEvents == 0) { return -1 } else { return params.goodEvents / params.totalEvents }', + 'if (params.totalEvents == 0) { return -1 } else if (params.goodEvents >= params.totalEvents) { return 1 } else { return params.goodEvents / params.totalEvents }', }, }, errorBudgetInitial: { diff --git a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_monthly_aligned.ts b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_monthly_aligned.ts index cd7f7e4f36a96..1d27c7c2f4a29 100644 --- a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_monthly_aligned.ts +++ b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_monthly_aligned.ts @@ -116,7 +116,7 @@ export const SUMMARY_TIMESLICES_MONTHLY_ALIGNED: TransformPutTransformRequest = totalEvents: 'totalEvents', }, script: - 'if (params.totalEvents == 0) { return -1 } else { return params.goodEvents / params.totalEvents }', + 'if (params.totalEvents == 0) { return -1 } else if (params.goodEvents >= params.totalEvents) { return 1 } else { return params.goodEvents / params.totalEvents }', }, }, errorBudgetInitial: { diff --git a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_weekly_aligned.ts b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_weekly_aligned.ts index f4808cffac784..1b46171c2cf10 100644 --- a/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_weekly_aligned.ts +++ b/x-pack/plugins/observability/server/services/slo/summary_transform/templates/summary_timeslices_weekly_aligned.ts @@ -101,7 +101,7 @@ export const SUMMARY_TIMESLICES_WEEKLY_ALIGNED: TransformPutTransformRequest = { totalEvents: 'totalEvents', }, script: - 'if (params.totalEvents == 0) { return -1 } else { return params.goodEvents / params.totalEvents }', + 'if (params.totalEvents == 0) { return -1 } else if (params.goodEvents >= params.totalEvents) { return 1 } else { return params.goodEvents / params.totalEvents }', }, }, errorBudgetInitial: { diff --git a/x-pack/plugins/observability/server/services/slo/transform_generators/common.ts b/x-pack/plugins/observability/server/services/slo/transform_generators/common.ts index ea64f23662695..37f976696d22d 100644 --- a/x-pack/plugins/observability/server/services/slo/transform_generators/common.ts +++ b/x-pack/plugins/observability/server/services/slo/transform_generators/common.ts @@ -8,7 +8,7 @@ import { fromKueryExpression, toElasticsearchQuery } from '@kbn/es-query'; import { InvalidTransformError } from '../../../errors'; -export function getElastichsearchQueryOrThrow(kuery: string) { +export function getElastichsearchQueryOrThrow(kuery: string | undefined = '') { try { return toElasticsearchQuery(fromKueryExpression(kuery)); } catch (err) { diff --git a/x-pack/plugins/osquery/common/api/live_query/find_live_query_route.ts b/x-pack/plugins/osquery/common/api/live_query/find_live_query_route.ts index 110466a706457..be0787b85fd87 100644 --- a/x-pack/plugins/osquery/common/api/live_query/find_live_query_route.ts +++ b/x-pack/plugins/osquery/common/api/live_query/find_live_query_route.ts @@ -9,7 +9,7 @@ import * as t from 'io-ts'; import { toNumberRt } from '@kbn/io-ts-utils'; export const findLiveQueryRequestQuerySchema = t.type({ - filterQuery: t.union([t.string, t.undefined]), + kuery: t.union([t.string, t.undefined]), page: t.union([toNumberRt, t.undefined]), pageSize: t.union([toNumberRt, t.undefined]), sort: t.union([t.string, t.undefined]), diff --git a/x-pack/plugins/osquery/common/api/live_query/get_live_query_results_route.ts b/x-pack/plugins/osquery/common/api/live_query/get_live_query_results_route.ts index 553e3eae10cd8..ce09004ddb58f 100644 --- a/x-pack/plugins/osquery/common/api/live_query/get_live_query_results_route.ts +++ b/x-pack/plugins/osquery/common/api/live_query/get_live_query_results_route.ts @@ -9,7 +9,7 @@ import * as t from 'io-ts'; import { toNumberRt } from '@kbn/io-ts-utils'; export const getLiveQueryResultsRequestQuerySchema = t.type({ - filterQuery: t.union([t.string, t.undefined]), + kuery: t.union([t.string, t.undefined]), page: t.union([toNumberRt, t.undefined]), pageSize: t.union([toNumberRt, t.undefined]), sort: t.union([t.string, t.undefined]), diff --git a/x-pack/plugins/osquery/common/search_strategy/osquery/index.ts b/x-pack/plugins/osquery/common/search_strategy/osquery/index.ts index b8985297b3062..53508c17208b2 100644 --- a/x-pack/plugins/osquery/common/search_strategy/osquery/index.ts +++ b/x-pack/plugins/osquery/common/search_strategy/osquery/index.ts @@ -5,9 +5,7 @@ * 2.0. */ -import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey'; import type { IEsSearchRequest } from '@kbn/data-plugin/common'; -import type { ESQuery } from '../../typed_json'; import type { ActionsStrategyResponse, ActionsRequestOptions, @@ -19,7 +17,7 @@ import type { import type { AgentsStrategyResponse, AgentsRequestOptions } from './agents'; import type { ResultsStrategyResponse, ResultsRequestOptions } from './results'; -import type { DocValueFields, SortField, PaginationInputPaginated } from '../common'; +import type { SortField, PaginationInputPaginated } from '../common'; export * from './actions'; export * from './agents'; @@ -36,9 +34,7 @@ export enum OsqueryQueries { export type FactoryQueryTypes = OsqueryQueries; export interface RequestBasicOptions extends IEsSearchRequest { - filterQuery: ESQuery | string | undefined; - aggregations?: Record; - docValueFields?: DocValueFields[]; + kuery?: string; factoryQueryType?: FactoryQueryTypes; componentTemplateExists?: boolean; } diff --git a/x-pack/plugins/osquery/common/utils/build_query/filters.ts b/x-pack/plugins/osquery/common/utils/build_query/filters.ts index 0d82a581e27d9..3ae72c25edf82 100644 --- a/x-pack/plugins/osquery/common/utils/build_query/filters.ts +++ b/x-pack/plugins/osquery/common/utils/build_query/filters.ts @@ -5,15 +5,7 @@ * 2.0. */ -import { isEmpty, isString } from 'lodash/fp'; import type { PaginationInputPaginated, Inspect } from '../../search_strategy'; -import type { ESQuery } from '../../typed_json'; - -export const createQueryFilterClauses = (filterQuery: ESQuery | string | undefined) => - !isEmpty(filterQuery) ? [isString(filterQuery) ? JSON.parse(filterQuery) : filterQuery] : []; - -export const createFilter = (filterQuery: ESQuery | string | undefined) => - isString(filterQuery) ? filterQuery : JSON.stringify(filterQuery); export type InspectResponse = Inspect & { response: string[] }; diff --git a/x-pack/plugins/osquery/cypress.config.ts b/x-pack/plugins/osquery/cypress.config.ts index ba126f71343df..4efb4ce8c5429 100644 --- a/x-pack/plugins/osquery/cypress.config.ts +++ b/x-pack/plugins/osquery/cypress.config.ts @@ -7,6 +7,19 @@ import { defineCypressConfig } from '@kbn/cypress-config'; +import path from 'path'; +import { safeLoad as loadYaml } from 'js-yaml'; +import { readFileSync } from 'fs'; + +import type { YamlRoleDefinitions } from '../../test_serverless/shared/lib'; +// eslint-disable-next-line @kbn/imports/no_boundary_crossing +import { setupUserDataLoader } from '../../test_serverless/functional/test_suites/security/cypress/support/setup_data_loader_tasks'; +const ROLES_YAML_FILE_PATH = path.join( + `${__dirname}/cypress/support`, + 'project_controller_osquery_roles.yml' +); +const roleDefinitions = loadYaml(readFileSync(ROLES_YAML_FILE_PATH, 'utf8')) as YamlRoleDefinitions; + export default defineCypressConfig({ defaultCommandTimeout: 60000, execTimeout: 120000, @@ -29,6 +42,9 @@ export default defineCypressConfig({ 'cypress-react-selector': { root: '#osquery-app', }, + grepFilterSpecs: true, + grepTags: '@ess', + grepOmitFiltered: true, }, e2e: { @@ -37,5 +53,10 @@ export default defineCypressConfig({ experimentalRunAllSpecs: true, experimentalMemoryManagement: true, numTestsKeptInMemory: 3, + setupNodeEvents(on, config) { + setupUserDataLoader(on, config, { roleDefinitions, additionalRoleName: 'viewer' }); + + return config; + }, }, }); diff --git a/x-pack/plugins/osquery/cypress/e2e/all/add_integration.cy.ts b/x-pack/plugins/osquery/cypress/e2e/all/add_integration.cy.ts index 71f89c3bf4dbf..4011d2db427a2 100644 --- a/x-pack/plugins/osquery/cypress/e2e/all/add_integration.cy.ts +++ b/x-pack/plugins/osquery/cypress/e2e/all/add_integration.cy.ts @@ -28,11 +28,9 @@ import { interceptAgentPolicyId, policyContainsIntegration, } from '../../tasks/integrations'; - -import { login } from '../../tasks/login'; import { findAndClickButton, findFormFieldByRowsLabelAndType } from '../../tasks/live_query'; -describe('ALL - Add Integration', () => { +describe('ALL - Add Integration', { tags: ['@ess', '@brokenInServerless'] }, () => { let savedQueryId: string; before(() => { @@ -42,7 +40,7 @@ describe('ALL - Add Integration', () => { }); beforeEach(() => { - login(); + cy.login('elastic'); }); after(() => { @@ -63,7 +61,7 @@ describe('ALL - Add Integration', () => { cy.get(`[url="${NAV_SEARCH_INPUT_OSQUERY_RESULTS.MANAGER}"]`).should('exist').click(); }); - describe('Add and upgrade integration', () => { + describe('Add and upgrade integration', { tags: ['@ess'] }, () => { const oldVersion = '0.7.4'; const [integrationName, policyName] = generateRandomStringName(2); let policyId: string; @@ -78,7 +76,7 @@ describe('ALL - Add Integration', () => { cleanupAgentPolicy(policyId); }); - it('should add the old integration and be able to upgrade it', () => { + it('should add the old integration and be able to upgrade it', { tags: '@ess' }, () => { cy.visit(createOldOsqueryPath(oldVersion)); addCustomIntegration(integrationName, policyName); policyContainsIntegration(integrationName, policyName); diff --git a/x-pack/plugins/osquery/cypress/e2e/all/alerts_cases.cy.ts b/x-pack/plugins/osquery/cypress/e2e/all/alerts_cases.cy.ts index 9d3c3ea482a08..47976f3740c76 100644 --- a/x-pack/plugins/osquery/cypress/e2e/all/alerts_cases.cy.ts +++ b/x-pack/plugins/osquery/cypress/e2e/all/alerts_cases.cy.ts @@ -5,6 +5,7 @@ * 2.0. */ +import { LIVE_QUERY_EDITOR } from '../../screens/live_query'; import { cleanupCase, cleanupPack, @@ -14,17 +15,17 @@ import { loadRule, packFixture, } from '../../tasks/api_fixtures'; -import { ROLE, login } from '../../tasks/login'; import { addToCase, checkActionItemsInResults, + clickRuleName, loadRuleAlerts, submitQuery, viewRecentCaseAndCheckResults, } from '../../tasks/live_query'; import { generateRandomStringName, interceptCaseId } from '../../tasks/integrations'; - -describe('Alert Event Details - Cases', () => { +import { ServerlessRoleName } from '../../support/roles'; +describe('Alert Event Details - Cases', { tags: ['@ess', '@serverless'] }, () => { let ruleId: string; let ruleName: string; let packId: string; @@ -44,9 +45,9 @@ describe('Alert Event Details - Cases', () => { }); beforeEach(() => { - login(ROLE.soc_manager); + cy.login(ServerlessRoleName.SOC_MANAGER); cy.visit('/app/security/rules'); - cy.contains(ruleName).click(); + clickRuleName(ruleName); }); after(() => { @@ -72,10 +73,10 @@ describe('Alert Event Details - Cases', () => { cy.getBySel('expand-event').first().click({ force: true }); cy.getBySel('take-action-dropdown-btn').click(); cy.getBySel('osquery-action-item').click(); - cy.contains('Run a set of queries in a pack').wait(500).click(); - cy.getBySel('select-live-pack').within(() => { - cy.getBySel('comboBoxInput').type(`${packName}{downArrow}{enter}`); - }); + cy.contains(/^\d+ agen(t|ts) selected/); + cy.contains('Run a set of queries in a pack').click(); + cy.get(LIVE_QUERY_EDITOR).should('not.exist'); + cy.getBySel('select-live-pack').click().type(`${packName}{downArrow}{enter}`); submitQuery(); cy.get('[aria-label="Add to Case"]').first().click(); cy.getBySel('cases-table-add-case-filter-bar').click(); @@ -91,7 +92,8 @@ describe('Alert Event Details - Cases', () => { }); }); - describe('Case', () => { + // verify why calling new action doesnt add to response actions list + describe.skip('Case', () => { let caseId: string; before(() => { @@ -134,6 +136,7 @@ describe('Alert Event Details - Cases', () => { cases: true, timeline: true, }); + addToCase(caseId); viewRecentCaseAndCheckResults(); }); diff --git a/x-pack/plugins/osquery/cypress/e2e/all/alerts_liked_apps.cy.ts b/x-pack/plugins/osquery/cypress/e2e/all/alerts_liked_apps.cy.ts index 6ccff4840d893..9a9448fc790b0 100644 --- a/x-pack/plugins/osquery/cypress/e2e/all/alerts_liked_apps.cy.ts +++ b/x-pack/plugins/osquery/cypress/e2e/all/alerts_liked_apps.cy.ts @@ -7,19 +7,20 @@ import { cleanupRule, loadRule } from '../../tasks/api_fixtures'; import { RESPONSE_ACTIONS_ITEM_0, RESPONSE_ACTIONS_ITEM_1 } from '../../tasks/response_actions'; -import { ROLE, login } from '../../tasks/login'; import { checkActionItemsInResults, + clickRuleName, inputQuery, loadRuleAlerts, submitQuery, } from '../../tasks/live_query'; import { closeModalIfVisible, closeToastIfVisible } from '../../tasks/integrations'; import { RESULTS_TABLE, RESULTS_TABLE_BUTTON } from '../../screens/live_query'; +import { ServerlessRoleName } from '../../support/roles'; const UUID_REGEX = '[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}'; -describe('Alert Event Details', { browser: 'electron' }, () => { +describe('Alert Event Details', { browser: 'electron', tags: ['@ess', '@serverless'] }, () => { let ruleId: string; let ruleName: string; @@ -36,9 +37,9 @@ describe('Alert Event Details', { browser: 'electron' }, () => { }); beforeEach(() => { - login(ROLE.soc_manager); + cy.login(ServerlessRoleName.SOC_MANAGER); cy.visit('/app/security/rules'); - cy.contains(ruleName).click(); + clickRuleName(ruleName); }); it('should be able to add investigation guides to response actions', () => { @@ -98,7 +99,7 @@ describe('Alert Event Details', { browser: 'electron' }, () => { closeModalIfVisible(); }); - it('can visit discover from response action results', () => { + it('can visit discover from response action results', { tags: ['@ess'] }, () => { const discoverRegex = new RegExp(`action_id: ${UUID_REGEX}`); cy.getBySel('expand-event').first().click(); cy.getBySel('securitySolutionDocumentDetailsFlyoutResponseSectionHeader').click(); @@ -124,7 +125,7 @@ describe('Alert Event Details', { browser: 'electron' }, () => { }); }); - it('can visit lens from response action results', () => { + it('can visit lens from response action results', { tags: ['@ess'] }, () => { const lensRegex = new RegExp(`Action ${UUID_REGEX} results`); cy.getBySel('expand-event').first().click(); cy.getBySel('securitySolutionDocumentDetailsFlyoutResponseSectionHeader').click(); @@ -158,7 +159,7 @@ describe('Alert Event Details', { browser: 'electron' }, () => { cy.getBySel('breadcrumbs').contains(lensRegex); }); - it('can add to timeline from response action results', () => { + it('can add to timeline from response action results', { tags: ['@ess'] }, () => { const timelineRegex = new RegExp(`Added ${UUID_REGEX} to timeline`); const filterRegex = new RegExp(`action_id: "${UUID_REGEX}"`); cy.getBySel('expand-event').first().click(); diff --git a/x-pack/plugins/osquery/cypress/e2e/all/alerts_multiple_agents.cy.ts b/x-pack/plugins/osquery/cypress/e2e/all/alerts_multiple_agents.cy.ts index b472a99b86568..f120791fe1160 100644 --- a/x-pack/plugins/osquery/cypress/e2e/all/alerts_multiple_agents.cy.ts +++ b/x-pack/plugins/osquery/cypress/e2e/all/alerts_multiple_agents.cy.ts @@ -6,15 +6,16 @@ */ import { cleanupRule, loadRule } from '../../tasks/api_fixtures'; -import { ROLE, login } from '../../tasks/login'; import { + clickRuleName, inputQuery, loadRuleAlerts, submitQuery, takeOsqueryActionWithParams, } from '../../tasks/live_query'; +import { ServerlessRoleName } from '../../support/roles'; -describe('Alert Event Details - dynamic params', () => { +describe('Alert Event Details - dynamic params', { tags: ['@ess', '@serverless'] }, () => { let ruleId: string; let ruleName: string; @@ -31,9 +32,9 @@ describe('Alert Event Details - dynamic params', () => { }); beforeEach(() => { - login(ROLE.soc_manager); + cy.login(ServerlessRoleName.SOC_MANAGER); cy.visit('/app/security/rules'); - cy.contains(ruleName).click(); + clickRuleName(ruleName); }); it('should substitute parameters in investigation guide', () => { diff --git a/x-pack/plugins/osquery/cypress/e2e/all/alerts_response_actions_form.cy.ts b/x-pack/plugins/osquery/cypress/e2e/all/alerts_response_actions_form.cy.ts index 38a2c5e7c1501..cac1e827721da 100644 --- a/x-pack/plugins/osquery/cypress/e2e/all/alerts_response_actions_form.cy.ts +++ b/x-pack/plugins/osquery/cypress/e2e/all/alerts_response_actions_form.cy.ts @@ -19,170 +19,179 @@ import { RESPONSE_ACTIONS_ITEM_2, OSQUERY_RESPONSE_ACTION_ADD_BUTTON, } from '../../tasks/response_actions'; -import { ROLE, login } from '../../tasks/login'; -import { checkActionItemsInResults, inputQuery, typeInECSFieldInput } from '../../tasks/live_query'; +import { + checkActionItemsInResults, + clickRuleName, + inputQuery, + typeInECSFieldInput, +} from '../../tasks/live_query'; import { closeDateTabIfVisible, closeToastIfVisible } from '../../tasks/integrations'; +import { ServerlessRoleName } from '../../support/roles'; -describe('Alert Event Details - Response Actions Form', { browser: 'electron' }, () => { - let multiQueryPackId: string; - let multiQueryPackName: string; - let ruleId: string; - let ruleName: string; - let packId: string; - let packName: string; - const packData = packFixture(); - const multiQueryPackData = multiQueryPackFixture(); +describe( + 'Alert Event Details - Response Actions Form', + { browser: 'electron', tags: ['@ess', '@serverless'] }, + () => { + let multiQueryPackId: string; + let multiQueryPackName: string; + let ruleId: string; + let ruleName: string; + let packId: string; + let packName: string; + const packData = packFixture(); + const multiQueryPackData = multiQueryPackFixture(); - beforeEach(() => { - loadPack(packData).then((data) => { - packId = data.saved_object_id; - packName = data.name; - }); - loadPack(multiQueryPackData).then((data) => { - multiQueryPackId = data.saved_object_id; - multiQueryPackName = data.name; + beforeEach(() => { + loadPack(packData).then((data) => { + packId = data.saved_object_id; + packName = data.name; + }); + loadPack(multiQueryPackData).then((data) => { + multiQueryPackId = data.saved_object_id; + multiQueryPackName = data.name; + }); + loadRule().then((data) => { + ruleId = data.id; + ruleName = data.name; + }); + cy.login(ServerlessRoleName.SOC_MANAGER); }); - loadRule().then((data) => { - ruleId = data.id; - ruleName = data.name; + afterEach(() => { + cleanupPack(packId); + cleanupPack(multiQueryPackId); + cleanupRule(ruleId); }); - login(ROLE.soc_manager); - }); - afterEach(() => { - cleanupPack(packId); - cleanupPack(multiQueryPackId); - cleanupRule(ruleId); - }); - it('adds response actions with osquery with proper validation and form values', () => { - cy.visit('/app/security/rules'); - cy.contains(ruleName).click(); - cy.getBySel('editRuleSettingsLink').click(); - cy.getBySel('globalLoadingIndicator').should('not.exist'); - closeDateTabIfVisible(); - cy.getBySel('edit-rule-actions-tab').click(); - cy.contains('Response actions are run on each rule execution.'); - cy.getBySel(OSQUERY_RESPONSE_ACTION_ADD_BUTTON).click(); - cy.getBySel(RESPONSE_ACTIONS_ITEM_0).within(() => { - cy.contains('Query is a required field'); - inputQuery('select * from uptime1'); - }); - cy.getBySel(OSQUERY_RESPONSE_ACTION_ADD_BUTTON).click(); - cy.getBySel(RESPONSE_ACTIONS_ITEM_1).within(() => { - cy.contains('Run a set of queries in a pack').click(); - }); - cy.contains('Save changes').click(); - cy.getBySel('response-actions-error') - .within(() => { + it('adds response actions with osquery with proper validation and form values', () => { + cy.visit('/app/security/rules'); + clickRuleName(ruleName); + cy.getBySel('editRuleSettingsLink').click(); + cy.getBySel('globalLoadingIndicator').should('not.exist'); + closeDateTabIfVisible(); + cy.getBySel('edit-rule-actions-tab').click(); + cy.contains('Response actions are run on each rule execution.'); + cy.getBySel(OSQUERY_RESPONSE_ACTION_ADD_BUTTON).click(); + cy.getBySel(RESPONSE_ACTIONS_ITEM_0).within(() => { + cy.contains('Query is a required field'); + inputQuery('select * from uptime1'); + }); + cy.getBySel(OSQUERY_RESPONSE_ACTION_ADD_BUTTON).click(); + cy.getBySel(RESPONSE_ACTIONS_ITEM_1).within(() => { + cy.contains('Run a set of queries in a pack').click(); + }); + cy.contains('Save changes').click(); + cy.getBySel('response-actions-error') + .within(() => { + cy.contains('Pack is a required field'); + }) + .should('exist'); + cy.getBySel(RESPONSE_ACTIONS_ITEM_1).within(() => { cy.contains('Pack is a required field'); - }) - .should('exist'); - cy.getBySel(RESPONSE_ACTIONS_ITEM_1).within(() => { - cy.contains('Pack is a required field'); - cy.getBySel('comboBoxInput').type(`${packName}{downArrow}{enter}`); - }); + cy.getBySel('comboBoxInput').type(`${packName}{downArrow}{enter}`); + }); - cy.getBySel(OSQUERY_RESPONSE_ACTION_ADD_BUTTON).click(); + cy.getBySel(OSQUERY_RESPONSE_ACTION_ADD_BUTTON).click(); - cy.getBySel(RESPONSE_ACTIONS_ITEM_2).within(() => { - cy.contains('Query is a required field'); - inputQuery('select * from uptime'); - cy.contains('Advanced').click(); - typeInECSFieldInput('message{downArrow}{enter}'); - cy.getBySel('osqueryColumnValueSelect').type('days{downArrow}{enter}'); - cy.wait(1000); // wait for the validation to trigger - cypress is way faster than users ;) - }); + cy.getBySel(RESPONSE_ACTIONS_ITEM_2).within(() => { + cy.contains('Query is a required field'); + inputQuery('select * from uptime'); + cy.contains('Advanced').click(); + typeInECSFieldInput('message{downArrow}{enter}'); + cy.getBySel('osqueryColumnValueSelect').type('days{downArrow}{enter}'); + cy.wait(1000); // wait for the validation to trigger - cypress is way faster than users ;) + }); - cy.getBySel('ruleEditSubmitButton').click(); - cy.contains(`${ruleName} was saved`).should('exist'); - closeToastIfVisible(); + cy.getBySel('ruleEditSubmitButton').click(); + cy.contains(`${ruleName} was saved`).should('exist'); + closeToastIfVisible(); - cy.getBySel('editRuleSettingsLink').click(); - cy.getBySel('globalLoadingIndicator').should('not.exist'); - cy.getBySel('edit-rule-actions-tab').click(); - cy.getBySel(RESPONSE_ACTIONS_ITEM_0).within(() => { - cy.contains('select * from uptime1'); - }); - cy.getBySel(RESPONSE_ACTIONS_ITEM_2).within(() => { - cy.contains('select * from uptime'); - cy.contains('Log message optimized for viewing in a log viewer'); - cy.contains('Days of uptime'); - }); - cy.getBySel(RESPONSE_ACTIONS_ITEM_1).within(() => { - cy.contains(packName); - cy.getBySel('comboBoxInput').type('{backspace}{enter}'); - }); - cy.getBySel(RESPONSE_ACTIONS_ITEM_0).within(() => { - cy.contains('select * from uptime1'); - cy.getBySel('remove-response-action').click(); - }); - cy.getBySel(RESPONSE_ACTIONS_ITEM_0).within(() => { - cy.contains('Search for a pack to run'); - cy.contains('Pack is a required field'); - cy.getBySel('comboBoxInput').type(`${packName}{downArrow}{enter}`); - }); - cy.getBySel(RESPONSE_ACTIONS_ITEM_1).within(() => { - cy.contains('select * from uptime'); - cy.contains('Log message optimized for viewing in a log viewer'); - cy.contains('Days of uptime'); - }); - cy.intercept('PUT', '/api/detection_engine/rules').as('saveRuleSingleQuery'); - cy.getBySel('ruleEditSubmitButton').click(); - cy.wait('@saveRuleSingleQuery').should(({ request }) => { - const oneQuery = [ - { - interval: 3600, - query: 'select * from uptime;', - id: Object.keys(packData.queries)[0], - }, - ]; - expect(request.body.response_actions[0].params.queries).to.deep.equal(oneQuery); - }); + cy.getBySel('editRuleSettingsLink').click(); + cy.getBySel('globalLoadingIndicator').should('not.exist'); + cy.getBySel('edit-rule-actions-tab').click(); + cy.getBySel(RESPONSE_ACTIONS_ITEM_0).within(() => { + cy.contains('select * from uptime1'); + }); + cy.getBySel(RESPONSE_ACTIONS_ITEM_2).within(() => { + cy.contains('select * from uptime'); + cy.contains('Log message optimized for viewing in a log viewer'); + cy.contains('Days of uptime'); + }); + cy.getBySel(RESPONSE_ACTIONS_ITEM_1).within(() => { + cy.contains(packName); + cy.getBySel('comboBoxInput').type('{backspace}{enter}'); + }); + cy.getBySel(RESPONSE_ACTIONS_ITEM_0).within(() => { + cy.contains('select * from uptime1'); + cy.getBySel('remove-response-action').click(); + }); + cy.getBySel(RESPONSE_ACTIONS_ITEM_0).within(() => { + cy.contains('Search for a pack to run'); + cy.contains('Pack is a required field'); + cy.getBySel('comboBoxInput').type(`${packName}{downArrow}{enter}`); + }); + cy.getBySel(RESPONSE_ACTIONS_ITEM_1).within(() => { + cy.contains('select * from uptime'); + cy.contains('Log message optimized for viewing in a log viewer'); + cy.contains('Days of uptime'); + }); + cy.intercept('PUT', '/api/detection_engine/rules').as('saveRuleSingleQuery'); + cy.getBySel('ruleEditSubmitButton').click(); + cy.wait('@saveRuleSingleQuery').should(({ request }) => { + const oneQuery = [ + { + interval: 3600, + query: 'select * from uptime;', + id: Object.keys(packData.queries)[0], + }, + ]; + expect(request.body.response_actions[0].params.queries).to.deep.equal(oneQuery); + }); - cy.contains(`${ruleName} was saved`).should('exist'); - closeToastIfVisible(); + cy.contains(`${ruleName} was saved`).should('exist'); + closeToastIfVisible(); - cy.getBySel('editRuleSettingsLink').click(); - cy.getBySel('globalLoadingIndicator').should('not.exist'); - cy.getBySel('edit-rule-actions-tab').click(); - cy.getBySel(RESPONSE_ACTIONS_ITEM_0).within(() => { - cy.contains(packName); - cy.getBySel('comboBoxInput').type(`${multiQueryPackName}{downArrow}{enter}`); - checkActionItemsInResults({ - cases: false, - lens: false, - discover: false, - timeline: false, + cy.getBySel('editRuleSettingsLink').click(); + cy.getBySel('globalLoadingIndicator').should('not.exist'); + cy.getBySel('edit-rule-actions-tab').click(); + cy.getBySel(RESPONSE_ACTIONS_ITEM_0).within(() => { + cy.contains(packName); + cy.getBySel('comboBoxInput').type(`${multiQueryPackName}{downArrow}{enter}`); + checkActionItemsInResults({ + cases: false, + lens: false, + discover: false, + timeline: false, + }); }); - }); - cy.getBySel(RESPONSE_ACTIONS_ITEM_1).within(() => { - cy.contains('select * from uptime'); - cy.contains('Log message optimized for viewing in a log viewer'); - cy.contains('Days of uptime'); - }); - cy.intercept('PUT', '/api/detection_engine/rules').as('saveRuleMultiQuery'); + cy.getBySel(RESPONSE_ACTIONS_ITEM_1).within(() => { + cy.contains('select * from uptime'); + cy.contains('Log message optimized for viewing in a log viewer'); + cy.contains('Days of uptime'); + }); + cy.intercept('PUT', '/api/detection_engine/rules').as('saveRuleMultiQuery'); - cy.contains('Save changes').click(); - cy.wait('@saveRuleMultiQuery').should(({ request }) => { - const threeQueries = [ - { - interval: 3600, - query: 'SELECT * FROM memory_info;', - platform: 'linux', - id: Object.keys(multiQueryPackData.queries)[0], - }, - { - interval: 3600, - query: 'SELECT * FROM system_info;', - id: Object.keys(multiQueryPackData.queries)[1], - }, - { - interval: 10, - query: 'select opera_extensions.* from users join opera_extensions using (uid);', - id: Object.keys(multiQueryPackData.queries)[2], - }, - ]; - expect(request.body.response_actions[0].params.queries).to.deep.equal(threeQueries); + cy.contains('Save changes').click(); + cy.wait('@saveRuleMultiQuery').should(({ request }) => { + const threeQueries = [ + { + interval: 3600, + query: 'SELECT * FROM memory_info;', + platform: 'linux', + id: Object.keys(multiQueryPackData.queries)[0], + }, + { + interval: 3600, + query: 'SELECT * FROM system_info;', + id: Object.keys(multiQueryPackData.queries)[1], + }, + { + interval: 10, + query: 'select opera_extensions.* from users join opera_extensions using (uid);', + id: Object.keys(multiQueryPackData.queries)[2], + }, + ]; + expect(request.body.response_actions[0].params.queries).to.deep.equal(threeQueries); + }); }); - }); -}); + } +); diff --git a/x-pack/plugins/osquery/cypress/e2e/all/cases.cy.ts b/x-pack/plugins/osquery/cypress/e2e/all/cases.cy.ts index 00d7e6738cfb5..4ba7ab5befabf 100644 --- a/x-pack/plugins/osquery/cypress/e2e/all/cases.cy.ts +++ b/x-pack/plugins/osquery/cypress/e2e/all/cases.cy.ts @@ -11,33 +11,32 @@ import { viewRecentCaseAndCheckResults, } from '../../tasks/live_query'; import { navigateTo } from '../../tasks/navigation'; -import { ROLE, login } from '../../tasks/login'; import { loadLiveQuery, loadCase, cleanupCase } from '../../tasks/api_fixtures'; +import { ServerlessRoleName } from '../../support/roles'; describe('Add to Cases', () => { let liveQueryId: string; let liveQueryQuery: string; - before(() => { loadLiveQuery({ agent_all: true, query: "SELECT * FROM os_version where name='Ubuntu';", + kuery: '', }).then((liveQuery) => { liveQueryId = liveQuery.action_id; liveQueryQuery = liveQuery.queries[0].query; }); }); - describe('observability', () => { + describe('observability', { tags: ['@ess'] }, () => { let caseId: string; let caseTitle: string; - before(() => { loadCase('observability').then((caseInfo) => { caseId = caseInfo.id; caseTitle = caseInfo.title; }); - login(ROLE.soc_manager); + cy.login(ServerlessRoleName.SOC_MANAGER); navigateTo('/app/osquery'); }); @@ -60,7 +59,7 @@ describe('Add to Cases', () => { }); }); - describe('security', () => { + describe('security', { tags: ['@ess', '@serverless'] }, () => { let caseId: string; let caseTitle: string; @@ -69,7 +68,7 @@ describe('Add to Cases', () => { caseId = caseInfo.id; caseTitle = caseInfo.title; }); - login(ROLE.soc_manager); + cy.login(ServerlessRoleName.SOC_MANAGER); navigateTo('/app/osquery'); }); diff --git a/x-pack/plugins/osquery/cypress/e2e/all/custom_space.cy.ts b/x-pack/plugins/osquery/cypress/e2e/all/custom_space.cy.ts index 33d5d42660e46..89d0526d41566 100644 --- a/x-pack/plugins/osquery/cypress/e2e/all/custom_space.cy.ts +++ b/x-pack/plugins/osquery/cypress/e2e/all/custom_space.cy.ts @@ -5,7 +5,6 @@ * 2.0. */ -import { ROLE, login } from '../../tasks/login'; import { navigateTo } from '../../tasks/navigation'; import { checkActionItemsInResults, @@ -15,10 +14,15 @@ import { submitQuery, } from '../../tasks/live_query'; import { loadSpace, loadPack, cleanupPack, cleanupSpace } from '../../tasks/api_fixtures'; +import { ServerlessRoleName } from '../../support/roles'; +const testSpaces = [ + { name: 'default', tags: ['@ess', '@serverless'] }, + { name: 'custom-spaces', tags: ['@ess'] }, +]; describe('ALL - Custom space', () => { - ['default', 'custom-space'].forEach((spaceName) => { - describe(`[${spaceName}]`, () => { + testSpaces.forEach((testSpace) => { + describe(`[${testSpace.name}]`, { tags: testSpace.tags }, () => { let packName: string; let packId: string; let spaceId: string; @@ -26,7 +30,7 @@ describe('ALL - Custom space', () => { before(() => { cy.wrap( new Promise((resolve) => { - if (spaceName !== 'default') { + if (testSpace.name !== 'default') { loadSpace().then((space) => { spaceId = space.id; resolve(spaceId); @@ -56,18 +60,18 @@ describe('ALL - Custom space', () => { }); beforeEach(() => { - login(ROLE.soc_manager); + cy.login(ServerlessRoleName.SOC_MANAGER); navigateTo(`/s/${spaceId}/app/osquery`); }); after(() => { cleanupPack(packId, spaceId); - if (spaceName !== 'default') { + if (testSpace.name !== 'default') { cleanupSpace(spaceId); } }); - it('Discover should be opened in new tab in results table', () => { + it('Discover should be opened in new tab in results table', { tags: ['@ess'] }, () => { cy.contains('New live query').click(); selectAllAgents(); inputQuery('select * from uptime;'); @@ -85,7 +89,6 @@ describe('ALL - Custom space', () => { .then(($href) => { // @ts-expect-error-next-line href string - check types cy.visit($href); - cy.getBySel('breadcrumbs').contains('Discover').should('exist'); cy.getBySel('discoverDocTable', { timeout: 60000 }).within(() => { cy.contains('action_data.queryselect * from uptime'); }); diff --git a/x-pack/plugins/osquery/cypress/e2e/all/ecs_mappings.cy.ts b/x-pack/plugins/osquery/cypress/e2e/all/ecs_mappings.cy.ts index 352b47d634104..98ad7ad0a26c2 100644 --- a/x-pack/plugins/osquery/cypress/e2e/all/ecs_mappings.cy.ts +++ b/x-pack/plugins/osquery/cypress/e2e/all/ecs_mappings.cy.ts @@ -6,7 +6,6 @@ */ import { getAdvancedButton } from '../../screens/integrations'; -import { ROLE, login } from '../../tasks/login'; import { navigateTo } from '../../tasks/navigation'; import { checkResults, @@ -17,10 +16,11 @@ import { typeInECSFieldInput, typeInOsqueryFieldInput, } from '../../tasks/live_query'; +import { ServerlessRoleName } from '../../support/roles'; -describe('EcsMapping', () => { +describe('EcsMapping', { tags: ['@ess', '@serverless'] }, () => { beforeEach(() => { - login(ROLE.soc_manager); + cy.login(ServerlessRoleName.SOC_MANAGER); }); it('should properly show static values in form and results', () => { @@ -58,14 +58,17 @@ describe('EcsMapping', () => { cy.getBySel('savedQuerySelect').within(() => { cy.getBySel('comboBoxInput').type('processes_elastic{downArrow}{enter}'); }); - cy.react('EuiAccordionClass', { - props: { buttonContent: 'Advanced', forceState: 'open' }, - }).should('exist'); - cy.getBySel('advanced-accordion-content').within(() => { - cy.contains('Advanced').click(); - }); - cy.react('EuiAccordionClass', { - props: { buttonContent: 'Advanced', forceState: 'closed' }, - }).should('exist'); + + cy.contains('Use the fields below to map results from this query to ECS fields.').should( + 'be.visible' + ); + cy.contains('Advanced').click(); + cy.contains('Use the fields below to map results from this query to ECS fields.').should( + 'not.be.visible' + ); + cy.contains('Advanced').click(); + cy.contains('Use the fields below to map results from this query to ECS fields.').should( + 'be.visible' + ); }); }); diff --git a/x-pack/plugins/osquery/cypress/e2e/all/edit_saved_queries.cy.ts b/x-pack/plugins/osquery/cypress/e2e/all/edit_saved_queries.cy.ts index a9ec7ed1dd37d..99381684e5b7a 100644 --- a/x-pack/plugins/osquery/cypress/e2e/all/edit_saved_queries.cy.ts +++ b/x-pack/plugins/osquery/cypress/e2e/all/edit_saved_queries.cy.ts @@ -6,10 +6,10 @@ */ import { navigateTo } from '../../tasks/navigation'; -import { ROLE, login } from '../../tasks/login'; import { loadSavedQuery, cleanupSavedQuery } from '../../tasks/api_fixtures'; +import { ServerlessRoleName } from '../../support/roles'; -describe('ALL - Edit saved query', () => { +describe('ALL - Edit saved query', { tags: ['@ess', '@serverless'] }, () => { let savedQueryName: string; let savedQueryId: string; @@ -21,7 +21,7 @@ describe('ALL - Edit saved query', () => { }); beforeEach(() => { - login(ROLE.soc_manager); + cy.login(ServerlessRoleName.SOC_MANAGER); navigateTo('/app/osquery/saved_queries'); }); diff --git a/x-pack/plugins/osquery/cypress/e2e/all/live_query.cy.ts b/x-pack/plugins/osquery/cypress/e2e/all/live_query.cy.ts index 865033208b15d..f1893e5e5a16f 100644 --- a/x-pack/plugins/osquery/cypress/e2e/all/live_query.cy.ts +++ b/x-pack/plugins/osquery/cypress/e2e/all/live_query.cy.ts @@ -5,91 +5,25 @@ * 2.0. */ -import { ROLE, login } from '../../tasks/login'; import { navigateTo } from '../../tasks/navigation'; import { - addToCase, - checkActionItemsInResults, checkResults, inputQuery, selectAllAgents, submitQuery, typeInECSFieldInput, typeInOsqueryFieldInput, - viewRecentCaseAndCheckResults, } from '../../tasks/live_query'; -import { - LIVE_QUERY_EDITOR, - RESULTS_TABLE, - RESULTS_TABLE_BUTTON, - RESULTS_TABLE_CELL_WRRAPER, -} from '../../screens/live_query'; +import { LIVE_QUERY_EDITOR } from '../../screens/live_query'; import { getAdvancedButton } from '../../screens/integrations'; -import { - loadPack, - loadSavedQuery, - cleanupPack, - cleanupCase, - cleanupSavedQuery, - loadCase, -} from '../../tasks/api_fixtures'; - -describe('ALL - Live Query', () => { - let packId: string; - let packName: string; - let savedQueryId: string; - let savedQueryName: string; - let caseId: string; - - before(() => { - loadPack({ - queries: { - system_memory_linux_elastic: { - ecs_mapping: {}, - interval: 3600, - platform: 'linux', - query: 'SELECT * FROM memory_info;', - }, - system_info_elastic: { - ecs_mapping: {}, - interval: 3600, - platform: 'linux,windows,darwin', - query: 'SELECT * FROM system_info;', - }, - failingQuery: { - ecs_mapping: {}, - interval: 10, - query: 'select opera_extensions.* from users join opera_extensions using (uid);', - }, - }, - }).then((pack) => { - packId = pack.saved_object_id; - packName = pack.name; - }); - loadSavedQuery({ - interval: '3600', - query: 'select * from uptime;', - ecs_mapping: {}, - }).then((savedQuery) => { - savedQueryId = savedQuery.saved_object_id; - savedQueryName = savedQuery.name; - }); - loadCase('securitySolution').then((caseInfo) => { - caseId = caseInfo.id; - }); - }); +import { ServerlessRoleName } from '../../support/roles'; +describe('ALL - Live Query', { tags: ['@serverless', '@ess'] }, () => { beforeEach(() => { - login(ROLE.soc_manager); + cy.login(ServerlessRoleName.SOC_MANAGER); navigateTo('/app/osquery'); }); - after(() => { - cleanupPack(packId); - cleanupSavedQuery(savedQueryId); - cleanupCase(caseId); - }); - it('should validate the form', () => { cy.contains('New live query').click(); submitQuery(); @@ -117,109 +51,6 @@ describe('ALL - Live Query', () => { cy.url().should('include', 'app/fleet/agents/'); }); - it('should run query and enable ecs mapping', () => { - const cmd = Cypress.platform === 'darwin' ? '{meta}{enter}' : '{ctrl}{enter}'; - cy.contains('New live query').click(); - selectAllAgents(); - inputQuery('select * from uptime;'); - cy.wait(500); - // checking submit by clicking cmd+enter - inputQuery(cmd); - checkResults(); - checkActionItemsInResults({ - lens: true, - discover: true, - cases: true, - timeline: false, - }); - cy.react(RESULTS_TABLE_CELL_WRRAPER, { - props: { id: 'osquery.days.number', index: 1 }, - }).should('exist'); - cy.react(RESULTS_TABLE_CELL_WRRAPER, { - props: { id: 'osquery.hours.number', index: 2 }, - }).should('exist'); - - getAdvancedButton().click(); - typeInECSFieldInput('message{downArrow}{enter}'); - typeInOsqueryFieldInput('days{downArrow}{enter}'); - submitQuery(); - - checkResults(); - cy.getBySel(RESULTS_TABLE).within(() => { - cy.getBySel(RESULTS_TABLE_BUTTON).should('exist'); - }); - cy.react(RESULTS_TABLE_CELL_WRRAPER, { - props: { id: 'message', index: 1 }, - }).should('exist'); - cy.react(RESULTS_TABLE_CELL_WRRAPER, { - props: { id: 'osquery.days.number', index: 2 }, - }) - .react('EuiIconTip', { props: { type: 'indexMapping' } }) - .should('exist'); - }); - - it('should run customized saved query', () => { - cy.contains('New live query').click(); - selectAllAgents(); - cy.react('SavedQueriesDropdown').type(`${savedQueryName}{downArrow}{enter}`); - inputQuery('{selectall}{backspace}select * from users;'); - cy.wait(1000); - submitQuery(); - checkResults(); - navigateTo('/app/osquery'); - cy.react('EuiButtonIcon', { props: { iconType: 'play' } }) - .eq(0) - .should('be.visible') - .click(); - - cy.get(LIVE_QUERY_EDITOR).contains('select * from users;'); - }); - - it('should open query details by clicking the details icon', () => { - cy.react('EuiButtonIcon', { props: { iconType: 'visTable' } }) - .first() - .click(); - cy.contains('Live query details'); - cy.contains('select * from users;'); - }); - - it('should run live pack', () => { - cy.contains('New live query').click(); - cy.contains('Run a set of queries in a pack.').click(); - cy.get(LIVE_QUERY_EDITOR).should('not.exist'); - cy.getBySel('select-live-pack').click().type(`${packName}{downArrow}{enter}`); - cy.contains('This table contains 3 rows.'); - cy.contains('system_memory_linux_elastic'); - cy.contains('system_info_elastic'); - cy.contains('failingQuery'); - selectAllAgents(); - submitQuery(); - cy.getBySel('live-query-loading').should('exist'); - cy.getBySel('live-query-loading', { timeout: 10000 }).should('not.exist'); - cy.getBySel('toggleIcon-system_memory_linux_elastic').click(); - checkResults(); - checkActionItemsInResults({ - lens: true, - discover: true, - cases: true, - timeline: false, - }); - cy.contains('Status').click(); - cy.getBySel('tableHeaderCell_status_0').should('exist'); - cy.getBySel('tableHeaderCell_fields.agent_id[0]_1').should('exist'); - cy.getBySel('tableHeaderCell__source.action_response.osquery.count_2').should('exist'); - cy.getBySel('tableHeaderCell_fields.error[0]_3').should('exist'); - - cy.getBySel('toggleIcon-system_memory_linux_elastic').click(); - cy.getBySel('toggleIcon-failingQuery').click(); - cy.contains('Status').click(); - cy.contains('query failed, code: 1, message: no such table: opera_extensions'); - cy.getBySel('toggleIcon-failingQuery').click(); - cy.getBySel('toggleIcon-system_memory_linux_elastic').click(); - addToCase(caseId); - viewRecentCaseAndCheckResults(); - }); - it('should run multiline query', () => { const multilineQuery = 'select u.username, {shift+enter}' + @@ -255,6 +86,6 @@ describe('ALL - Live Query', () => { inputQuery('{selectall}{backspace}{selectall}{backspace}'); // not sure if this is how it used to work when I implemented the functionality, but let's leave it like this for now - cy.get(LIVE_QUERY_EDITOR).invoke('height').should('be.gt', 200).and('be.lt', 350); + cy.get(LIVE_QUERY_EDITOR).invoke('height').should('be.gt', 200).and('be.lt', 380); }); }); diff --git a/x-pack/plugins/osquery/cypress/e2e/all/live_query_packs.cy.ts b/x-pack/plugins/osquery/cypress/e2e/all/live_query_packs.cy.ts new file mode 100644 index 0000000000000..e4edd56ff3701 --- /dev/null +++ b/x-pack/plugins/osquery/cypress/e2e/all/live_query_packs.cy.ts @@ -0,0 +1,103 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { navigateTo } from '../../tasks/navigation'; +import { + addToCase, + checkActionItemsInResults, + checkResults, + selectAllAgents, + submitQuery, + viewRecentCaseAndCheckResults, +} from '../../tasks/live_query'; +import { LIVE_QUERY_EDITOR } from '../../screens/live_query'; +import { loadPack, cleanupPack, cleanupCase, loadCase } from '../../tasks/api_fixtures'; +import { ServerlessRoleName } from '../../support/roles'; + +describe('ALL - Live Query Packs', { tags: ['@serverless', '@ess'] }, () => { + let packName: string; + let packId: string; + let caseId: string; + + before(() => { + loadPack({ + queries: { + system_memory_linux_elastic: { + ecs_mapping: {}, + interval: 3600, + platform: 'linux', + query: 'SELECT * FROM memory_info;', + }, + system_info_elastic: { + ecs_mapping: {}, + interval: 3600, + platform: 'linux,windows,darwin', + query: 'SELECT * FROM system_info;', + }, + failingQuery: { + ecs_mapping: {}, + interval: 10, + query: 'select opera_extensions.* from users join opera_extensions using (uid);', + }, + }, + }).then((pack) => { + packId = pack.saved_object_id; + packName = pack.name; + }); + + loadCase('securitySolution').then((caseInfo) => { + caseId = caseInfo.id; + }); + }); + + beforeEach(() => { + cy.login(ServerlessRoleName.SOC_MANAGER); + navigateTo('/app/osquery'); + }); + + after(() => { + cleanupPack(packId); + cleanupCase(caseId); + }); + + it('should run live pack', () => { + cy.contains('New live query').click(); + cy.contains('Run a set of queries in a pack.').click(); + cy.get(LIVE_QUERY_EDITOR).should('not.exist'); + cy.getBySel('select-live-pack').click().type(`${packName}{downArrow}{enter}`); + cy.contains('This table contains 3 rows.'); + cy.contains('system_memory_linux_elastic'); + cy.contains('system_info_elastic'); + cy.contains('failingQuery'); + selectAllAgents(); + submitQuery(); + cy.getBySel('live-query-loading').should('exist'); + cy.getBySel('live-query-loading', { timeout: 10000 }).should('not.exist'); + cy.getBySel('toggleIcon-system_memory_linux_elastic').click(); + checkResults(); + checkActionItemsInResults({ + lens: true, + discover: true, + cases: true, + timeline: false, + }); + cy.contains('Status').click(); + cy.getBySel('tableHeaderCell_status_0').should('exist'); + cy.getBySel('tableHeaderCell_fields.agent_id[0]_1').should('exist'); + cy.getBySel('tableHeaderCell__source.action_response.osquery.count_2').should('exist'); + cy.getBySel('tableHeaderCell_fields.error[0]_3').should('exist'); + + cy.getBySel('toggleIcon-system_memory_linux_elastic').click(); + cy.getBySel('toggleIcon-failingQuery').click(); + cy.contains('Status').click(); + cy.contains('query failed, code: 1, message: no such table: opera_extensions'); + cy.getBySel('toggleIcon-failingQuery').click(); + cy.getBySel('toggleIcon-system_memory_linux_elastic').click(); + addToCase(caseId); + viewRecentCaseAndCheckResults(); + }); +}); diff --git a/x-pack/plugins/osquery/cypress/e2e/all/live_query_run.cy.ts b/x-pack/plugins/osquery/cypress/e2e/all/live_query_run.cy.ts new file mode 100644 index 0000000000000..871c2aac920fa --- /dev/null +++ b/x-pack/plugins/osquery/cypress/e2e/all/live_query_run.cy.ts @@ -0,0 +1,117 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { navigateTo } from '../../tasks/navigation'; +import { + checkActionItemsInResults, + checkResults, + inputQuery, + selectAllAgents, + submitQuery, + typeInECSFieldInput, + typeInOsqueryFieldInput, +} from '../../tasks/live_query'; +import { + LIVE_QUERY_EDITOR, + RESULTS_TABLE, + RESULTS_TABLE_BUTTON, + RESULTS_TABLE_CELL_WRRAPER, +} from '../../screens/live_query'; +import { getAdvancedButton } from '../../screens/integrations'; +import { loadSavedQuery, cleanupSavedQuery } from '../../tasks/api_fixtures'; +import { ServerlessRoleName } from '../../support/roles'; + +describe('ALL - Live Query run custom and saved', { tags: ['@ess'] }, () => { + let savedQueryId: string; + let savedQueryName: string; + + before(() => { + loadSavedQuery({ + interval: '3600', + query: 'select * from uptime;', + ecs_mapping: {}, + }).then((savedQuery) => { + savedQueryId = savedQuery.saved_object_id; + savedQueryName = savedQuery.name; + }); + }); + + beforeEach(() => { + cy.login(ServerlessRoleName.SOC_MANAGER); + navigateTo('/app/osquery'); + }); + + after(() => { + cleanupSavedQuery(savedQueryId); + }); + + it('should run query and enable ecs mapping', () => { + const cmd = Cypress.platform === 'darwin' ? '{meta}{enter}' : '{ctrl}{enter}'; + cy.contains('New live query').click(); + selectAllAgents(); + inputQuery('select * from uptime;'); + cy.wait(500); + // checking submit by clicking cmd+enter + inputQuery(cmd); + checkResults(); + checkActionItemsInResults({ + lens: true, + discover: true, + cases: true, + timeline: false, + }); + cy.react(RESULTS_TABLE_CELL_WRRAPER, { + props: { id: 'osquery.days.number', index: 1 }, + }).should('exist'); + cy.react(RESULTS_TABLE_CELL_WRRAPER, { + props: { id: 'osquery.hours.number', index: 2 }, + }).should('exist'); + + getAdvancedButton().click(); + typeInECSFieldInput('message{downArrow}{enter}'); + typeInOsqueryFieldInput('days{downArrow}{enter}'); + submitQuery(); + + checkResults(); + cy.getBySel(RESULTS_TABLE).within(() => { + cy.getBySel(RESULTS_TABLE_BUTTON).should('exist'); + }); + cy.react(RESULTS_TABLE_CELL_WRRAPER, { + props: { id: 'message', index: 1 }, + }).should('exist'); + cy.react(RESULTS_TABLE_CELL_WRRAPER, { + props: { id: 'osquery.days.number', index: 2 }, + }) + .react('EuiIconTip', { props: { type: 'indexMapping' } }) + .should('exist'); + }); + + it('should run customized saved query', () => { + cy.contains('New live query').click(); + selectAllAgents(); + cy.react('SavedQueriesDropdown').type(`${savedQueryName}{downArrow}{enter}`); + inputQuery('{selectall}{backspace}select * from users;'); + cy.wait(1000); + submitQuery(); + checkResults(); + navigateTo('/app/osquery'); + cy.react('EuiButtonIcon', { props: { iconType: 'play' } }) + .eq(0) + .should('be.visible') + .click(); + + cy.get(LIVE_QUERY_EDITOR).contains('select * from users;'); + }); + + it('should open query details by clicking the details icon', () => { + cy.react('EuiButtonIcon', { props: { iconType: 'visTable' } }) + .first() + .click(); + cy.contains('Live query details'); + cy.contains('select * from users;'); + }); +}); diff --git a/x-pack/plugins/osquery/cypress/e2e/all/metrics.cy.ts b/x-pack/plugins/osquery/cypress/e2e/all/metrics.cy.ts index 5bc561baed7fe..d19e43867b5c0 100644 --- a/x-pack/plugins/osquery/cypress/e2e/all/metrics.cy.ts +++ b/x-pack/plugins/osquery/cypress/e2e/all/metrics.cy.ts @@ -6,12 +6,12 @@ */ import { navigateTo } from '../../tasks/navigation'; -import { ROLE, login } from '../../tasks/login'; import { checkResults, inputQuery, submitQuery } from '../../tasks/live_query'; import { loadSavedQuery, cleanupSavedQuery } from '../../tasks/api_fixtures'; import { triggerLoadData } from '../../tasks/inventory'; +import { ServerlessRoleName } from '../../support/roles'; -describe('ALL - Inventory', () => { +describe('ALL - Inventory', { tags: ['@ess'] }, () => { let savedQueryName: string; let savedQueryId: string; @@ -23,7 +23,7 @@ describe('ALL - Inventory', () => { }); beforeEach(() => { - login(ROLE.soc_manager); + cy.login(ServerlessRoleName.SOC_MANAGER); navigateTo('/app/osquery'); }); diff --git a/x-pack/plugins/osquery/cypress/e2e/all/packs_create_edit.cy.ts b/x-pack/plugins/osquery/cypress/e2e/all/packs_create_edit.cy.ts index c9c3a065bcc42..52d1236c1f12f 100644 --- a/x-pack/plugins/osquery/cypress/e2e/all/packs_create_edit.cy.ts +++ b/x-pack/plugins/osquery/cypress/e2e/all/packs_create_edit.cy.ts @@ -15,7 +15,6 @@ import { findFormFieldByRowsLabelAndType, inputQuery, } from '../../tasks/live_query'; -import { ROLE, login } from '../../tasks/login'; import { activatePack, deactivatePack, preparePack } from '../../tasks/packs'; import { closeModalIfVisible, @@ -27,6 +26,7 @@ import { DEFAULT_POLICY } from '../../screens/fleet'; import { getIdFormField, getSavedQueriesDropdown } from '../../screens/live_query'; import { loadSavedQuery, cleanupSavedQuery, cleanupPack, loadPack } from '../../tasks/api_fixtures'; import { request } from '../../tasks/common'; +import { ServerlessRoleName } from '../../support/roles'; describe('Packs - Create and Edit', () => { let savedQueryId: string; @@ -86,7 +86,7 @@ describe('Packs - Create and Edit', () => { }); beforeEach(() => { - login(ROLE.soc_manager); + cy.login(ServerlessRoleName.SOC_MANAGER); navigateTo('/app/osquery'); }); @@ -97,7 +97,7 @@ describe('Packs - Create and Edit', () => { cleanupSavedQuery(multipleMappingsSavedQueryId); }); - describe('Check if result type is correct', () => { + describe('Check if result type is correct', { tags: ['@ess', '@serverless'] }, () => { let resultTypePackId: string; before(() => { @@ -221,7 +221,7 @@ describe('Packs - Create and Edit', () => { }); }); - describe('Check if pack is created', () => { + describe('Check if pack is created', { tags: ['@ess', '@serverless'] }, () => { const packName = 'Pack-name' + generateRandomStringName(1)[0]; let packId: string; @@ -261,7 +261,7 @@ describe('Packs - Create and Edit', () => { }); }); - describe('to click the edit button and edit pack', () => { + describe('to click the edit button and edit pack', { tags: ['@ess', '@serverless'] }, () => { const newQueryName = 'new-query-name' + generateRandomStringName(1)[0]; let packId: string; @@ -314,49 +314,57 @@ describe('Packs - Create and Edit', () => { }); }); - describe('should trigger validation when saved query is being chosen', () => { - let packId: string; - let packName: string; - - before(() => { - request<{ items: PackagePolicy[] }>({ - url: '/internal/osquery/fleet_wrapper/package_policies', - headers: { - 'Elastic-Api-Version': API_VERSIONS.internal.v1, - }, - }) - .then((response) => - loadPack({ - policy_ids: [response.body.items[0].policy_id], - queries: { - [savedQueryName]: { ecs_mapping: {}, interval: 3600, query: 'select * from uptime;' }, - }, - }) - ) - .then((pack) => { - packId = pack.saved_object_id; - packName = pack.name; - }); - }); + describe( + 'should trigger validation when saved query is being chosen', + { tags: ['@ess', '@serverless'] }, + () => { + let packId: string; + let packName: string; + + before(() => { + request<{ items: PackagePolicy[] }>({ + url: '/internal/osquery/fleet_wrapper/package_policies', + headers: { + 'Elastic-Api-Version': API_VERSIONS.internal.v1, + }, + }) + .then((response) => + loadPack({ + policy_ids: [response.body.items[0].policy_id], + queries: { + [savedQueryName]: { + ecs_mapping: {}, + interval: 3600, + query: 'select * from uptime;', + }, + }, + }) + ) + .then((pack) => { + packId = pack.saved_object_id; + packName = pack.name; + }); + }); - after(() => { - cleanupPack(packId); - }); + after(() => { + cleanupPack(packId); + }); - it('', () => { - preparePack(packName); - findAndClickButton('Edit'); - findAndClickButton('Add query'); - cy.contains('Attach next query'); - cy.contains('ID must be unique').should('not.exist'); - getSavedQueriesDropdown().type(`${savedQueryName}{downArrow}{enter}`); - cy.react('EuiFlyoutFooter').react('EuiButton').contains('Save').click(); - cy.contains('ID must be unique').should('exist'); - cy.react('EuiFlyoutFooter').react('EuiButtonEmpty').contains('Cancel').click(); - }); - }); + it('', () => { + preparePack(packName); + findAndClickButton('Edit'); + findAndClickButton('Add query'); + cy.contains('Attach next query'); + cy.contains('ID must be unique').should('not.exist'); + getSavedQueriesDropdown().type(`${savedQueryName}{downArrow}{enter}`); + cy.react('EuiFlyoutFooter').react('EuiButton').contains('Save').click(); + cy.contains('ID must be unique').should('exist'); + cy.react('EuiFlyoutFooter').react('EuiButtonEmpty').contains('Cancel').click(); + }); + } + ); - describe('should open lens in new tab', () => { + describe('should open lens in new tab', { tags: ['@ess'] }, () => { let packId: string; let packName: string; @@ -371,7 +379,11 @@ describe('Packs - Create and Edit', () => { loadPack({ policy_ids: [response.body.items[0].policy_id], queries: { - [savedQueryName]: { ecs_mapping: {}, interval: 3600, query: 'select * from uptime;' }, + [savedQueryName]: { + ecs_mapping: {}, + interval: 3600, + query: 'select * from uptime;', + }, }, }) ) @@ -461,7 +473,7 @@ describe('Packs - Create and Edit', () => { }); }); - describe('deactivate and activate pack', () => { + describe('deactivate and activate pack', { tags: ['@ess', '@serverless'] }, () => { let packId: string; let packName: string; @@ -497,7 +509,7 @@ describe('Packs - Create and Edit', () => { }); }); - describe('should verify that packs are triggered', () => { + describe('should verify that packs are triggered', { tags: ['@ess', '@serverless'] }, () => { let packId: string; let packName: string; @@ -564,7 +576,7 @@ describe('Packs - Create and Edit', () => { }); }); - describe('delete all queries in the pack', () => { + describe('delete all queries in the pack', { tags: ['@ess', '@serverless'] }, () => { let packId: string; let packName: string; @@ -610,74 +622,82 @@ describe('Packs - Create and Edit', () => { }); }); - describe('enable changing saved queries and ecs_mappings', () => { - let packId: string; - let packName: string; - - before(() => { - request<{ items: PackagePolicy[] }>({ - url: '/internal/osquery/fleet_wrapper/package_policies', - headers: { - 'Elastic-Api-Version': API_VERSIONS.internal.v1, - }, - }) - .then((response) => - loadPack({ - policy_ids: [response.body.items[0].policy_id], - queries: { - [savedQueryName]: { ecs_mapping: {}, interval: 3600, query: 'select * from uptime;' }, - }, - }) - ) - .then((pack) => { - packId = pack.saved_object_id; - packName = pack.name; - }); - }); - - after(() => { - cleanupPack(packId); - }); - - it('', () => { - preparePack(packName); - cy.contains(/^Edit$/).click(); + describe( + 'enable changing saved queries and ecs_mappings', + { tags: ['@ess', '@serverless'] }, + () => { + let packId: string; + let packName: string; + + before(() => { + request<{ items: PackagePolicy[] }>({ + url: '/internal/osquery/fleet_wrapper/package_policies', + headers: { + 'Elastic-Api-Version': API_VERSIONS.internal.v1, + }, + }) + .then((response) => + loadPack({ + policy_ids: [response.body.items[0].policy_id], + queries: { + [savedQueryName]: { + ecs_mapping: {}, + interval: 3600, + query: 'select * from uptime;', + }, + }, + }) + ) + .then((pack) => { + packId = pack.saved_object_id; + packName = pack.name; + }); + }); - findAndClickButton('Add query'); + after(() => { + cleanupPack(packId); + }); - getSavedQueriesDropdown().type(`${multipleMappingsSavedQueryName} {downArrow} {enter}`); - cy.contains('Custom key/value pairs').should('exist'); - cy.contains('Days of uptime').should('exist'); - cy.contains('List of keywords used to tag each').should('exist'); - cy.contains('Seconds of uptime').should('exist'); - cy.contains('Client network address.').should('exist'); - cy.contains('Total uptime seconds').should('exist'); - cy.getBySel('ECSMappingEditorForm').should('have.length', 4); - - getSavedQueriesDropdown().type(`${nomappingSavedQueryName} {downArrow} {enter}`); - cy.contains('Custom key/value pairs').should('not.exist'); - cy.contains('Days of uptime').should('not.exist'); - cy.contains('List of keywords used to tag each').should('not.exist'); - cy.contains('Seconds of uptime').should('not.exist'); - cy.contains('Client network address.').should('not.exist'); - cy.contains('Total uptime seconds').should('not.exist'); - cy.getBySel('ECSMappingEditorForm').should('have.length', 1); - - getSavedQueriesDropdown().type(`${oneMappingSavedQueryName} {downArrow} {enter}`); - cy.contains('Name of the continent').should('exist'); - cy.contains('Seconds of uptime').should('exist'); - cy.getBySel('ECSMappingEditorForm').should('have.length', 2); - - findAndClickButton('Save'); - cy.react('CustomItemAction', { - props: { index: 0, item: { id: oneMappingSavedQueryName } }, - }).click(); - cy.contains('Name of the continent').should('exist'); - cy.contains('Seconds of uptime').should('exist'); - }); - }); + it('', () => { + preparePack(packName); + cy.contains(/^Edit$/).click(); + + findAndClickButton('Add query'); + + getSavedQueriesDropdown().type(`${multipleMappingsSavedQueryName} {downArrow} {enter}`); + cy.contains('Custom key/value pairs').should('exist'); + cy.contains('Days of uptime').should('exist'); + cy.contains('List of keywords used to tag each').should('exist'); + cy.contains('Seconds of uptime').should('exist'); + cy.contains('Client network address.').should('exist'); + cy.contains('Total uptime seconds').should('exist'); + cy.getBySel('ECSMappingEditorForm').should('have.length', 4); + + getSavedQueriesDropdown().type(`${nomappingSavedQueryName} {downArrow} {enter}`); + cy.contains('Custom key/value pairs').should('not.exist'); + cy.contains('Days of uptime').should('not.exist'); + cy.contains('List of keywords used to tag each').should('not.exist'); + cy.contains('Seconds of uptime').should('not.exist'); + cy.contains('Client network address.').should('not.exist'); + cy.contains('Total uptime seconds').should('not.exist'); + cy.getBySel('ECSMappingEditorForm').should('have.length', 1); + + getSavedQueriesDropdown().type(`${oneMappingSavedQueryName} {downArrow} {enter}`); + cy.contains('Name of the continent').should('exist'); + cy.contains('Seconds of uptime').should('exist'); + cy.getBySel('ECSMappingEditorForm').should('have.length', 2); + + findAndClickButton('Save'); + cy.react('CustomItemAction', { + props: { index: 0, item: { id: oneMappingSavedQueryName } }, + }).click(); + cy.contains('Name of the continent').should('exist'); + cy.contains('Seconds of uptime').should('exist'); + }); + } + ); - describe('to click delete button', () => { + describe('to click delete button', { tags: ['@ess', '@serverless'] }, () => { let packName: string; before(() => { @@ -700,7 +720,7 @@ describe('Packs - Create and Edit', () => { }); }); - it('', () => { + it('', { tags: ['@ess', '@serverless'] }, () => { preparePack(packName); findAndClickButton('Edit'); deleteAndConfirm('pack'); diff --git a/x-pack/plugins/osquery/cypress/e2e/all/packs_integration.cy.ts b/x-pack/plugins/osquery/cypress/e2e/all/packs_integration.cy.ts index 39c720525103a..96cf4a285ccc7 100644 --- a/x-pack/plugins/osquery/cypress/e2e/all/packs_integration.cy.ts +++ b/x-pack/plugins/osquery/cypress/e2e/all/packs_integration.cy.ts @@ -18,7 +18,6 @@ import { selectAllAgents, submitQuery, } from '../../tasks/live_query'; -import { ROLE, login } from '../../tasks/login'; import { activatePack, cleanupAllPrebuiltPacks, deactivatePack } from '../../tasks/packs'; import { addIntegration, @@ -32,65 +31,70 @@ import { DEFAULT_POLICY, OSQUERY_POLICY } from '../../screens/fleet'; import { LIVE_QUERY_EDITOR } from '../../screens/live_query'; import { cleanupPack, cleanupAgentPolicy } from '../../tasks/api_fixtures'; import { request } from '../../tasks/common'; +import { ServerlessRoleName } from '../../support/roles'; -describe('ALL - Packs', () => { +describe('ALL - Packs', { tags: ['@ess', '@serverless'] }, () => { const integration = 'Osquery Manager'; - describe('Validate that agent policy is getting removed from pack if we remove agent policy', () => { - beforeEach(() => { - login(); - }); - const AGENT_POLICY_NAME = `PackTest` + generateRandomStringName(1)[0]; - const REMOVING_PACK = 'removing-pack' + generateRandomStringName(1)[0]; - - it('add integration', () => { - cy.visit(FLEET_AGENT_POLICIES); - cy.contains('Create agent policy').click(); - cy.get('input[placeholder*="Choose a name"]').type(AGENT_POLICY_NAME); - cy.get('.euiFlyoutFooter').contains('Create agent policy').click(); - cy.contains(`Agent policy '${AGENT_POLICY_NAME}' created`); - cy.visit(FLEET_AGENT_POLICIES); - cy.contains(AGENT_POLICY_NAME).click(); - cy.contains('Add integration').click(); - cy.contains(integration).click(); - addIntegration(AGENT_POLICY_NAME); - cy.contains('Add Elastic Agent later').click(); - navigateTo('app/osquery/packs'); - findAndClickButton('Add pack'); - findFormFieldByRowsLabelAndType('Name', REMOVING_PACK); - findFormFieldByRowsLabelAndType('Scheduled agent policies (optional)', AGENT_POLICY_NAME); - findAndClickButton('Save pack'); - - closeToastIfVisible(); - cy.getBySel('tablePaginationPopoverButton').click(); - cy.getBySel('tablePagination-50-rows').click(); - cy.react('ScheduledQueryNameComponent', { props: { name: REMOVING_PACK } }).click(); - cy.contains(`${REMOVING_PACK} details`).should('exist'); - findAndClickButton('Edit'); - cy.react('EuiComboBoxInput', { props: { value: AGENT_POLICY_NAME } }).should('exist'); - - cy.visit(FLEET_AGENT_POLICIES); - cy.contains(AGENT_POLICY_NAME).click(); - cy.get('.euiTableCellContent') - .get('.euiPopover__anchor') - .get(`[aria-label="Open"]`) - .first() - .click(); - cy.contains(/^Delete integration$/).click(); - closeModalIfVisible(); - cy.contains(/^Deleted integration 'osquery_manager-*/); - navigateTo('app/osquery/packs'); - cy.contains(REMOVING_PACK).click(); - cy.contains(`${REMOVING_PACK} details`).should('exist'); - cy.wait(1000); - findAndClickButton('Edit'); - cy.react('EuiComboBoxInput', { props: { value: '' } }).should('exist'); - }); - }); + describe( + 'Validate that agent policy is getting removed from pack if we remove agent policy', + { tags: ['@ess'] }, + () => { + beforeEach(() => { + cy.login('elastic'); + }); + const AGENT_POLICY_NAME = `PackTest` + generateRandomStringName(1)[0]; + const REMOVING_PACK = 'removing-pack' + generateRandomStringName(1)[0]; + + it('add integration', () => { + cy.visit(FLEET_AGENT_POLICIES); + cy.contains('Create agent policy').click(); + cy.get('input[placeholder*="Choose a name"]').type(AGENT_POLICY_NAME); + cy.get('.euiFlyoutFooter').contains('Create agent policy').click(); + cy.contains(`Agent policy '${AGENT_POLICY_NAME}' created`); + cy.visit(FLEET_AGENT_POLICIES); + cy.contains(AGENT_POLICY_NAME).click(); + cy.contains('Add integration').click(); + cy.contains(integration).click(); + addIntegration(AGENT_POLICY_NAME); + cy.contains('Add Elastic Agent later').click(); + navigateTo('app/osquery/packs'); + findAndClickButton('Add pack'); + findFormFieldByRowsLabelAndType('Name', REMOVING_PACK); + findFormFieldByRowsLabelAndType('Scheduled agent policies (optional)', AGENT_POLICY_NAME); + findAndClickButton('Save pack'); + + closeToastIfVisible(); + cy.getBySel('tablePaginationPopoverButton').click(); + cy.getBySel('tablePagination-50-rows').click(); + cy.react('ScheduledQueryNameComponent', { props: { name: REMOVING_PACK } }).click(); + cy.contains(`${REMOVING_PACK} details`).should('exist'); + findAndClickButton('Edit'); + cy.react('EuiComboBoxInput', { props: { value: AGENT_POLICY_NAME } }).should('exist'); + + cy.visit(FLEET_AGENT_POLICIES); + cy.contains(AGENT_POLICY_NAME).click(); + cy.get('.euiTableCellContent') + .get('.euiPopover__anchor') + .get(`[aria-label="Open"]`) + .first() + .click(); + cy.contains(/^Delete integration$/).click(); + closeModalIfVisible(); + cy.contains(/^Deleted integration 'osquery_manager-*/); + navigateTo('app/osquery/packs'); + cy.contains(REMOVING_PACK).click(); + cy.contains(`${REMOVING_PACK} details`).should('exist'); + cy.wait(1000); + findAndClickButton('Edit'); + cy.react('EuiComboBoxInput', { props: { value: '' } }).should('exist'); + }); + } + ); - describe('Load prebuilt packs', () => { + describe('Load prebuilt packs', { tags: ['@ess', '@serverless'] }, () => { beforeEach(() => { - login(ROLE.soc_manager); + cy.login(ServerlessRoleName.SOC_MANAGER); navigateTo('/app/osquery/packs'); }); @@ -156,7 +160,6 @@ describe('ALL - Packs', () => { selectAllAgents(); submitQuery(); cy.getBySel('live-query-loading').should('exist'); - cy.getBySel('live-query-loading', { timeout: 10000 }).should('not.exist'); cy.getBySel('toggleIcon-events').click(); checkResults(); checkActionItemsInResults({ @@ -170,9 +173,9 @@ describe('ALL - Packs', () => { }); }); - describe('Global packs', () => { + describe('Global packs', { tags: ['@ess'] }, () => { beforeEach(() => { - login(); + cy.login('elastic'); navigateTo('/app/osquery/packs'); }); diff --git a/x-pack/plugins/osquery/cypress/e2e/all/saved_queries.cy.ts b/x-pack/plugins/osquery/cypress/e2e/all/saved_queries.cy.ts index de537fe73b911..017c86ed0247b 100644 --- a/x-pack/plugins/osquery/cypress/e2e/all/saved_queries.cy.ts +++ b/x-pack/plugins/osquery/cypress/e2e/all/saved_queries.cy.ts @@ -18,11 +18,11 @@ import { viewRecentCaseAndCheckResults, } from '../../tasks/live_query'; import { navigateTo } from '../../tasks/navigation'; -import { ROLE, login } from '../../tasks/login'; import { getSavedQueriesComplexTest } from '../../tasks/saved_queries'; import { loadCase, cleanupCase, loadPack, cleanupPack } from '../../tasks/api_fixtures'; +import { ServerlessRoleName } from '../../support/roles'; -describe('ALL - Saved queries', () => { +describe('ALL - Saved queries', { tags: ['@ess', '@serverless'] }, () => { let caseId: string; before(() => { @@ -32,7 +32,7 @@ describe('ALL - Saved queries', () => { }); beforeEach(() => { - login(ROLE.soc_manager); + cy.login(ServerlessRoleName.SOC_MANAGER); navigateTo('/app/osquery'); }); diff --git a/x-pack/plugins/osquery/cypress/e2e/all/timelines.cy.ts b/x-pack/plugins/osquery/cypress/e2e/all/timelines.cy.ts index c65f131185b29..460a79a7467de 100644 --- a/x-pack/plugins/osquery/cypress/e2e/all/timelines.cy.ts +++ b/x-pack/plugins/osquery/cypress/e2e/all/timelines.cy.ts @@ -6,11 +6,11 @@ */ import { takeOsqueryActionWithParams } from '../../tasks/live_query'; -import { ROLE, login } from '../../tasks/login'; +import { ServerlessRoleName } from '../../support/roles'; -describe('ALL - Timelines', () => { +describe('ALL - Timelines', { tags: ['@ess'] }, () => { beforeEach(() => { - login(ROLE.soc_manager); + cy.login(ServerlessRoleName.SOC_MANAGER); }); it('should substitute osquery parameter on non-alert event take action', () => { diff --git a/x-pack/plugins/osquery/cypress/e2e/roles/admin.cy.ts b/x-pack/plugins/osquery/cypress/e2e/roles/admin.cy.ts deleted file mode 100644 index 4a4915d412cbf..0000000000000 --- a/x-pack/plugins/osquery/cypress/e2e/roles/admin.cy.ts +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { ROLE, login } from '../../tasks/login'; -import { navigateTo } from '../../tasks/navigation'; -import { checkResults, inputQuery, selectAllAgents, submitQuery } from '../../tasks/live_query'; - -describe('Admin', () => { - beforeEach(() => { - login(ROLE.admin); - navigateTo('/app/osquery'); - }); - - it('should be able to run live query with BASE All permissions', () => { - cy.contains('New live query').click(); - selectAllAgents(); - inputQuery('select * from uptime;'); - submitQuery(); - checkResults(); - }); -}); diff --git a/x-pack/plugins/osquery/cypress/e2e/roles/alert_test.cy.ts b/x-pack/plugins/osquery/cypress/e2e/roles/alert_test.cy.ts index e30f39ce4b77f..fcaf812b2c5f3 100644 --- a/x-pack/plugins/osquery/cypress/e2e/roles/alert_test.cy.ts +++ b/x-pack/plugins/osquery/cypress/e2e/roles/alert_test.cy.ts @@ -5,103 +5,38 @@ * 2.0. */ -import { ROLE, login } from '../../tasks/login'; -import { - checkResults, - findAndClickButton, - findFormFieldByRowsLabelAndType, - submitQuery, -} from '../../tasks/live_query'; -import { closeModalIfVisible, closeToastIfVisible } from '../../tasks/integrations'; -import { navigateTo } from '../../tasks/navigation'; -import { loadPack, loadRule, cleanupRule, cleanupPack } from '../../tasks/api_fixtures'; -import { preparePack } from '../../tasks/packs'; -import { DEFAULT_POLICY } from '../../screens/fleet'; +import { checkResults, clickRuleName, submitQuery } from '../../tasks/live_query'; +import { loadRule, cleanupRule } from '../../tasks/api_fixtures'; +import { ServerlessRoleName } from '../../support/roles'; -describe('Alert Test', () => { - let packName: string; - let packId: string; +describe('Alert Test', { tags: ['@ess'] }, () => { let ruleName: string; let ruleId: string; before(() => { - loadPack({ - description: '', - enabled: true, - queries: { - packQuery: { - interval: 10, - query: 'select * from uptime;', - ecs_mapping: {}, - }, - }, - }).then((data) => { - packId = data.saved_object_id; - packName = data.name; - }); loadRule().then((data) => { - ruleId = data.id; ruleName = data.name; - }); - }); - - beforeEach(() => { - login(ROLE.alert_test); - }); - - after(() => { - cleanupPack(packId); - cleanupRule(ruleId); - }); - - describe('alert_test role', () => { - beforeEach(() => { - login(ROLE.alert_test); - }); - - it('should not be able to run live query', () => { - navigateTo('/app/osquery'); - preparePack(packName); - findAndClickButton('Edit'); - cy.contains(`Edit ${packName}`); - findFormFieldByRowsLabelAndType( - 'Scheduled agent policies (optional)', - `${DEFAULT_POLICY} {downArrow}{enter}` - ); - findAndClickButton('Update pack'); - closeModalIfVisible(); - cy.contains(`Successfully updated "${packName}" pack`); - closeToastIfVisible(); - - cy.visit('/app/security/rules'); - cy.contains(ruleName).click(); - cy.wait(2000); - cy.getBySel('ruleSwitch').should('have.attr', 'aria-checked', 'true'); - cy.getBySel('ruleSwitch').click(); - cy.getBySel('ruleSwitch').should('have.attr', 'aria-checked', 'false'); - cy.getBySel('ruleSwitch').click(); - cy.getBySel('ruleSwitch').should('have.attr', 'aria-checked', 'true'); - cy.getBySel('expand-event').first().click(); - cy.getBySel('take-action-dropdown-btn').click(); - cy.getBySel('osquery-action-item').click(); - - cy.contains('Run Osquery'); - cy.contains('Permission denied'); + ruleId = data.id; }); }); describe('t1_analyst role', () => { beforeEach(() => { - login(ROLE.t1_analyst); + cy.login(ServerlessRoleName.T1_ANALYST); - cy.visit(`/app/security/rules/id/${ruleId}/alerts`); - cy.getBySel('expand-event').first().click(); + cy.visit('/app/security/rules'); + clickRuleName(ruleName); + cy.getBySel('expand-event').first().click({ force: true }); cy.wait(500); cy.getBySel('securitySolutionDocumentDetailsFlyoutInvestigationGuideButton').click(); cy.contains('Get processes').click(); }); + after(() => { + cleanupRule(ruleId); + }); + it('should be able to run rule investigation guide query', () => { submitQuery(); checkResults(); diff --git a/x-pack/plugins/osquery/cypress/e2e/roles/none.cy.ts b/x-pack/plugins/osquery/cypress/e2e/roles/none.cy.ts deleted file mode 100644 index 171729114dd31..0000000000000 --- a/x-pack/plugins/osquery/cypress/e2e/roles/none.cy.ts +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { ROLE, login } from '../../tasks/login'; -import { NAV_SEARCH_INPUT_OSQUERY_RESULTS } from '../../tasks/navigation'; -import { loadRule, cleanupRule } from '../../tasks/api_fixtures'; - -describe('None', () => { - beforeEach(() => { - login(ROLE.none); - - cy.visit('/app/home'); - }); - - it('should not see osquery in global search', () => { - cy.getBySel('nav-search-input').type('Osquery'); - cy.get(`[url="${NAV_SEARCH_INPUT_OSQUERY_RESULTS.MANAGEMENT}"]`).should('not.exist'); - cy.get(`[url="${NAV_SEARCH_INPUT_OSQUERY_RESULTS.LOGS}"]`).should('not.exist'); - cy.get(`[url="${NAV_SEARCH_INPUT_OSQUERY_RESULTS.MANAGER}"]`).should('not.exist'); - }); - - it('should get 403 forbidden response when trying to GET osquery', () => { - cy.request({ - url: '/app/osquery/live_queries', - failOnStatusCode: false, - }).then((resp) => { - expect(resp.status).to.eq(403); - }); - cy.request({ - url: '/app/osquery/saved_queries', - failOnStatusCode: false, - }).then((resp) => { - expect(resp.status).to.eq(403); - }); - cy.request({ - url: '/app/osquery/packs', - failOnStatusCode: false, - }).then((resp) => { - expect(resp.status).to.eq(403); - }); - }); - - describe('Detection Engine', () => { - let ruleId: string; - - before(() => { - login(ROLE.soc_manager); - loadRule(true).then((data) => { - ruleId = data.id; - }); - cy.visit(`/app/security/alerts`); - cy.getBySel('expand-event').should('exist'); - login(ROLE.none); - }); - - after(() => { - cleanupRule(ruleId); - }); - - it('should not see osquery in alerts', () => { - cy.visit(`/app/security/rules/id/${ruleId}/alerts`); - cy.getBySel('expand-event').first().click(); - cy.getBySel('take-action-dropdown-btn').click(); - cy.getBySel('securitySolutionDocumentDetailsFlyoutResponseSectionHeader').click(); - cy.getBySel('securitySolutionDocumentDetailsFlyoutResponseButton').click(); - cy.contains('Permission denied').should('exist'); - }); - }); -}); diff --git a/x-pack/plugins/osquery/cypress/e2e/roles/reader.cy.ts b/x-pack/plugins/osquery/cypress/e2e/roles/reader.cy.ts index fb53aa3217202..82b02bdda7289 100644 --- a/x-pack/plugins/osquery/cypress/e2e/roles/reader.cy.ts +++ b/x-pack/plugins/osquery/cypress/e2e/roles/reader.cy.ts @@ -5,7 +5,6 @@ * 2.0. */ -import { ROLE, login } from '../../tasks/login'; import { navigateTo } from '../../tasks/navigation'; import { cleanupPack, @@ -14,8 +13,9 @@ import { loadPack, loadSavedQuery, } from '../../tasks/api_fixtures'; +import { ServerlessRoleName } from '../../support/roles'; -describe('Reader - only READ', () => { +describe('Reader - only READ', { tags: ['@ess'] }, () => { let savedQueryName: string; let savedQueryId: string; let packName: string; @@ -37,7 +37,7 @@ describe('Reader - only READ', () => { }); beforeEach(() => { - login(ROLE.reader); + cy.login(ServerlessRoleName.READER); }); after(() => { diff --git a/x-pack/plugins/osquery/cypress/e2e/roles/t1_analyst.cy.ts b/x-pack/plugins/osquery/cypress/e2e/roles/t1_analyst.cy.ts deleted file mode 100644 index 3192c9a421a77..0000000000000 --- a/x-pack/plugins/osquery/cypress/e2e/roles/t1_analyst.cy.ts +++ /dev/null @@ -1,135 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { SAVED_QUERY_ID } from '../../../public/saved_queries/constants'; -import { ROLE, login } from '../../tasks/login'; -import { navigateTo } from '../../tasks/navigation'; -import { - checkActionItemsInResults, - checkResults, - selectAllAgents, - submitQuery, -} from '../../tasks/live_query'; -import { getSavedQueriesDropdown, LIVE_QUERY_EDITOR } from '../../screens/live_query'; -import { - cleanupPack, - cleanupSavedQuery, - loadLiveQuery, - loadPack, - loadSavedQuery, -} from '../../tasks/api_fixtures'; - -describe('T1 Analyst - READ + runSavedQueries ', () => { - let savedQueryName: string; - let savedQueryId: string; - let packName: string; - let packId: string; - let liveQueryQuery: string; - - before(() => { - loadPack().then((data) => { - packId = data.saved_object_id; - packName = data.name; - }); - loadSavedQuery().then((data) => { - savedQueryId = data.saved_object_id; - savedQueryName = data.id; - }); - loadLiveQuery().then((data) => { - liveQueryQuery = data.queries?.[0].query; - }); - }); - - beforeEach(() => { - login(ROLE.t1_analyst); - }); - - after(() => { - cleanupSavedQuery(savedQueryId); - cleanupPack(packId); - }); - - it('should be able to run saved queries but not add new ones', () => { - navigateTo('/app/osquery/saved_queries'); - cy.waitForReact(1000); - cy.contains(savedQueryName); - cy.contains('Add saved query').should('be.disabled'); - cy.react('PlayButtonComponent', { - props: { savedQuery: { id: savedQueryName } }, - }) - .should('not.be.disabled') - .click(); - selectAllAgents(); - cy.contains('select * from uptime;'); - submitQuery(); - checkResults(); - checkActionItemsInResults({ - lens: false, - discover: false, - cases: true, - timeline: false, - }); - }); - - it('should be able to play in live queries history', () => { - navigateTo('/app/osquery/live_queries'); - cy.waitForReact(1000); - cy.contains('New live query').should('not.be.disabled'); - cy.contains(liveQueryQuery); - cy.wait(1000); - cy.react('EuiTableBody').first().react('CustomItemAction').first().click(); - cy.contains(savedQueryName); - submitQuery(); - checkResults(); - }); - - it('should be able to use saved query in a new query', () => { - navigateTo('/app/osquery/live_queries'); - cy.waitForReact(1000); - cy.contains('New live query').should('not.be.disabled').click(); - selectAllAgents(); - getSavedQueriesDropdown().type(`${savedQueryName}{downArrow} {enter}`); - cy.contains('select * from uptime'); - submitQuery(); - checkResults(); - }); - - it('should not be able to add nor edit packs', () => { - navigateTo('/app/osquery/packs'); - cy.waitForReact(1000); - cy.getBySel('tablePaginationPopoverButton').click(); - cy.getBySel('tablePagination-50-rows').click(); - cy.contains('Add pack').should('be.disabled'); - cy.react('ActiveStateSwitchComponent', { - props: { item: { name: packName } }, - }) - .find('button') - .should('be.disabled'); - cy.contains(packName).click(); - cy.contains(`${packName} details`); - cy.contains('Edit').should('be.disabled'); - // TODO: fix it - cy.react('CustomItemAction', { - props: { index: 0, item: { id: SAVED_QUERY_ID } }, - options: { timeout: 3000 }, - }).should('not.exist'); - cy.react('CustomItemAction', { - props: { index: 1, item: { id: SAVED_QUERY_ID } }, - options: { timeout: 3000 }, - }).should('not.exist'); - }); - - it('should not be able to create new liveQuery from scratch', () => { - navigateTo('/app/osquery'); - - cy.contains('New live query').click(); - selectAllAgents(); - cy.get(LIVE_QUERY_EDITOR).should('not.exist'); - submitQuery(); - cy.contains('Query is a required field'); - }); -}); diff --git a/x-pack/plugins/osquery/cypress/e2e/roles/t1_and_t2_analyst.cy.ts b/x-pack/plugins/osquery/cypress/e2e/roles/t1_and_t2_analyst.cy.ts new file mode 100644 index 0000000000000..779df77f2d382 --- /dev/null +++ b/x-pack/plugins/osquery/cypress/e2e/roles/t1_and_t2_analyst.cy.ts @@ -0,0 +1,139 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { SAVED_QUERY_ID } from '../../../public/saved_queries/constants'; +import { navigateTo } from '../../tasks/navigation'; +import { + checkActionItemsInResults, + checkResults, + selectAllAgents, + submitQuery, +} from '../../tasks/live_query'; +import { getSavedQueriesDropdown, LIVE_QUERY_EDITOR } from '../../screens/live_query'; +import { + cleanupPack, + cleanupSavedQuery, + loadLiveQuery, + loadPack, + loadSavedQuery, +} from '../../tasks/api_fixtures'; +import type { ServerlessRoleName } from '../../support/roles'; + +describe(`T1 and T2 analysts`, { tags: ['@ess', '@serverless'] }, () => { + ['t1_analyst', 't2_analyst'].forEach((role: string) => { + describe(`${role}- READ + runSavedQueries `, { tags: ['@ess', '@serverless'] }, () => { + let savedQueryName: string; + let savedQueryId: string; + let packName: string; + let packId: string; + let liveQueryQuery: string; + + before(() => { + loadPack().then((data) => { + packId = data.saved_object_id; + packName = data.name; + }); + loadSavedQuery().then((data) => { + savedQueryId = data.saved_object_id; + savedQueryName = data.id; + }); + loadLiveQuery().then((data) => { + liveQueryQuery = data.queries?.[0].query; + }); + }); + + beforeEach(() => { + cy.login(role as ServerlessRoleName); + }); + + after(() => { + cleanupSavedQuery(savedQueryId); + cleanupPack(packId); + }); + + it('should be able to run saved queries but not add new ones', () => { + navigateTo('/app/osquery/saved_queries'); + cy.waitForReact(1000); + cy.contains(savedQueryName); + cy.contains('Add saved query').should('be.disabled'); + cy.react('PlayButtonComponent', { + props: { savedQuery: { id: savedQueryName } }, + }) + .should('not.be.disabled') + .click(); + selectAllAgents(); + cy.contains('select * from uptime;'); + submitQuery(); + checkResults(); + checkActionItemsInResults({ + lens: true, + discover: true, + cases: true, + timeline: false, + }); + }); + + it('should be able to play in live queries history', () => { + navigateTo('/app/osquery/live_queries'); + cy.waitForReact(1000); + cy.contains('New live query').should('not.be.disabled'); + cy.contains(liveQueryQuery); + cy.wait(1000); + cy.react('EuiTableBody').first().react('CustomItemAction').first().click(); + cy.contains(savedQueryName); + submitQuery(); + checkResults(); + }); + + it('should be able to use saved query in a new query', () => { + navigateTo('/app/osquery/live_queries'); + cy.waitForReact(1000); + cy.contains('New live query').should('not.be.disabled').click(); + selectAllAgents(); + getSavedQueriesDropdown().type(`${savedQueryName}{downArrow} {enter}`); + cy.contains('select * from uptime'); + submitQuery(); + checkResults(); + }); + + it('should not be able to add nor edit packs', () => { + navigateTo('/app/osquery/packs'); + cy.waitForReact(1000); + cy.getBySel('tablePaginationPopoverButton').click(); + cy.getBySel('tablePagination-50-rows').click(); + cy.contains('Add pack').should('be.disabled'); + cy.react('ActiveStateSwitchComponent', { + props: { item: { name: packName } }, + }) + .find('button') + .should('be.disabled'); + cy.contains(packName).click(); + cy.contains(`${packName} details`); + cy.contains('Edit').should('be.disabled'); + // TODO: fix it + cy.react('CustomItemAction', { + props: { index: 0, item: { id: SAVED_QUERY_ID } }, + options: { timeout: 3000 }, + }).should('not.exist'); + cy.react('CustomItemAction', { + props: { index: 1, item: { id: SAVED_QUERY_ID } }, + options: { timeout: 3000 }, + }).should('not.exist'); + }); + + it('should not be able to create new liveQuery from scratch', () => { + navigateTo('/app/osquery'); + + cy.contains('New live query').click(); + selectAllAgents(); + cy.get(LIVE_QUERY_EDITOR).should('not.exist'); + submitQuery(); + cy.contains('Query is a required field'); + }); + }); + }); +}); diff --git a/x-pack/plugins/osquery/cypress/e2e/roles/t2_analyst.cy.ts b/x-pack/plugins/osquery/cypress/e2e/roles/t2_analyst.cy.ts deleted file mode 100644 index 7e074f896d362..0000000000000 --- a/x-pack/plugins/osquery/cypress/e2e/roles/t2_analyst.cy.ts +++ /dev/null @@ -1,142 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { ROLE, login } from '../../tasks/login'; -import { navigateTo } from '../../tasks/navigation'; -import { - checkResults, - selectAllAgents, - submitQuery, - inputQuery, - typeInECSFieldInput, - typeInOsqueryFieldInput, - checkActionItemsInResults, -} from '../../tasks/live_query'; -import { getSavedQueriesComplexTest } from '../../tasks/saved_queries'; -import { loadPack, loadSavedQuery, cleanupSavedQuery, cleanupPack } from '../../tasks/api_fixtures'; - -describe('T2 Analyst - READ + Write Live/Saved + runSavedQueries ', () => { - const SAVED_QUERY_ID = 'Saved-Query-Id'; - - let savedQueryName: string; - let savedQueryId: string; - let packName: string; - let packId: string; - - before(() => { - loadPack().then((data) => { - packId = data.saved_object_id; - packName = data.name; - }); - loadSavedQuery().then((data) => { - savedQueryId = data.saved_object_id; - savedQueryName = data.id; - }); - }); - - beforeEach(() => { - login(ROLE.t2_analyst); - navigateTo('/app/osquery'); - }); - - after(() => { - cleanupSavedQuery(savedQueryId); - cleanupPack(packId); - }); - - getSavedQueriesComplexTest(); - - it('should not be able to add nor edit packs', () => { - navigateTo('/app/osquery/packs'); - cy.waitForReact(1000); - cy.getBySel('tablePaginationPopoverButton').click(); - cy.getBySel('tablePagination-50-rows').click(); - cy.contains('Add pack').should('be.disabled'); - cy.react('ActiveStateSwitchComponent', { - props: { item: { name: packName } }, - }) - .find('button') - .should('be.disabled'); - cy.contains(packName).click(); - cy.contains(`${packName} details`); - cy.contains('Edit').should('be.disabled'); - // TODO: fix - cy.react('CustomItemAction', { - props: { index: 0, item: { id: SAVED_QUERY_ID } }, - options: { timeout: 3000 }, - }).should('not.exist'); - cy.react('CustomItemAction', { - props: { index: 1, item: { id: SAVED_QUERY_ID } }, - options: { timeout: 3000 }, - }).should('not.exist'); - }); - - it('should run query and enable ecs mapping', () => { - const cmd = Cypress.platform === 'darwin' ? '{meta}{enter}' : '{ctrl}{enter}'; - cy.contains('New live query').click(); - selectAllAgents(); - inputQuery('select * from uptime;'); - cy.wait(500); - // checking submit by clicking cmd+enter - inputQuery(cmd); - checkResults(); - checkActionItemsInResults({ - lens: false, - discover: false, - cases: true, - timeline: false, - }); - cy.react('EuiDataGridHeaderCellWrapper', { - props: { id: 'osquery.days.number', index: 1 }, - }).should('exist'); - cy.react('EuiDataGridHeaderCellWrapper', { - props: { id: 'osquery.hours.number', index: 2 }, - }).should('exist'); - - cy.react('EuiAccordionClass', { props: { buttonContent: 'Advanced' } }) - .last() - .click(); - - typeInECSFieldInput('message{downArrow}{enter}'); - typeInOsqueryFieldInput('days{downArrow}{enter}'); - submitQuery(); - - checkResults(); - cy.react('EuiDataGridHeaderCellWrapper', { - props: { id: 'message', index: 1 }, - }).should('exist'); - cy.react('EuiDataGridHeaderCellWrapper', { - props: { id: 'osquery.days.number', index: 2 }, - }).within(() => { - cy.get('.euiToolTipAnchor').within(() => { - cy.get('svg').should('exist'); - }); - }); - }); - - it('to click the edit button and edit pack', () => { - navigateTo('/app/osquery/saved_queries'); - cy.react('CustomItemAction', { - props: { index: 1, item: { id: savedQueryName } }, - }).click(); - cy.contains('Custom key/value pairs.').should('exist'); - cy.contains('Hours of uptime').should('exist'); - cy.get('[data-test-subj="ECSMappingEditorForm"]') - .first() - .within(() => { - cy.react('EuiButtonIcon', { props: { iconType: 'trash' } }).click(); - }); - cy.react('EuiButton').contains('Update query').click(); - cy.wait(5000); - - cy.react('CustomItemAction', { - props: { index: 1, item: { id: savedQueryName } }, - }).click(); - cy.contains('Custom key/value pairs').should('not.exist'); - cy.contains('Hours of uptime').should('not.exist'); - }); -}); diff --git a/x-pack/plugins/osquery/cypress/e2e/tiers/endpoint_complete.cy.ts b/x-pack/plugins/osquery/cypress/e2e/tiers/endpoint_complete.cy.ts new file mode 100644 index 0000000000000..87cece1de8da2 --- /dev/null +++ b/x-pack/plugins/osquery/cypress/e2e/tiers/endpoint_complete.cy.ts @@ -0,0 +1,24 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { checkOsqueryResponseActionsPermissions } from '../../tasks/response_actions'; + +describe( + 'App Features for Enpoint Complete PLI', + { + tags: ['@serverless'], + env: { + ftrConfig: { + productTypes: [ + { product_line: 'endpoint', product_tier: 'complete' }, + { product_line: 'security', product_tier: 'complete' }, + ], + }, + }, + }, + () => checkOsqueryResponseActionsPermissions(true) +); diff --git a/x-pack/plugins/osquery/cypress/e2e/tiers/endpoint_essentials.cy.ts b/x-pack/plugins/osquery/cypress/e2e/tiers/endpoint_essentials.cy.ts new file mode 100644 index 0000000000000..c2c94bb5afd0e --- /dev/null +++ b/x-pack/plugins/osquery/cypress/e2e/tiers/endpoint_essentials.cy.ts @@ -0,0 +1,24 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { checkOsqueryResponseActionsPermissions } from '../../tasks/response_actions'; + +describe( + 'App Features for Endpoint Essentials PLI', + { + tags: ['@serverless'], + env: { + ftrConfig: { + productTypes: [ + { product_line: 'security', product_tier: 'essentials' }, + { product_line: 'endpoint', product_tier: 'essentials' }, + ], + }, + }, + }, + () => checkOsqueryResponseActionsPermissions(false) +); diff --git a/x-pack/plugins/osquery/cypress/e2e/tiers/security_complete.cy.ts b/x-pack/plugins/osquery/cypress/e2e/tiers/security_complete.cy.ts new file mode 100644 index 0000000000000..1aa248e560e55 --- /dev/null +++ b/x-pack/plugins/osquery/cypress/e2e/tiers/security_complete.cy.ts @@ -0,0 +1,21 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { checkOsqueryResponseActionsPermissions } from '../../tasks/response_actions'; + +describe( + 'App Features for Security Complete PLI', + { + tags: ['@serverless'], + env: { + ftrConfig: { + productTypes: [{ product_line: 'security', product_tier: 'complete' }], + }, + }, + }, + () => checkOsqueryResponseActionsPermissions(false) +); diff --git a/x-pack/plugins/osquery/cypress/e2e/tiers/security_essentials.cy.ts b/x-pack/plugins/osquery/cypress/e2e/tiers/security_essentials.cy.ts new file mode 100644 index 0000000000000..1842bd4ccfb7f --- /dev/null +++ b/x-pack/plugins/osquery/cypress/e2e/tiers/security_essentials.cy.ts @@ -0,0 +1,19 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { checkOsqueryResponseActionsPermissions } from '../../tasks/response_actions'; + +describe( + 'App Features for Security Essentials PLI', + { + tags: ['@serverless'], + env: { + ftrConfig: { productTypes: [{ product_line: 'security', product_tier: 'essentials' }] }, + }, + }, + () => checkOsqueryResponseActionsPermissions(false) +); diff --git a/x-pack/plugins/osquery/cypress/plugins/index.ts b/x-pack/plugins/osquery/cypress/plugins/index.ts index 9bcc097256ca3..8a8e654202134 100644 --- a/x-pack/plugins/osquery/cypress/plugins/index.ts +++ b/x-pack/plugins/osquery/cypress/plugins/index.ts @@ -29,6 +29,8 @@ module.exports = (on: any, config: any) => { // eslint-disable-next-line @typescript-eslint/no-var-requires require('@cypress/code-coverage/task')(on, config); + // eslint-disable-next-line @typescript-eslint/no-var-requires + require('@cypress/grep/src/plugin')(config); // `on` is used to hook into various events Cypress emits // `config` is the resolved Cypress config diff --git a/x-pack/plugins/osquery/cypress/support/e2e.ts b/x-pack/plugins/osquery/cypress/support/e2e.ts index e848ce3ef9b8e..76a705cb5977c 100644 --- a/x-pack/plugins/osquery/cypress/support/e2e.ts +++ b/x-pack/plugins/osquery/cypress/support/e2e.ts @@ -23,22 +23,37 @@ // *********************************************************** // force ESM in this module +import type { SecuritySolutionDescribeBlockFtrConfig } from '@kbn/security-solution-plugin/scripts/run_cypress/utils'; + export {}; import 'cypress-react-selector'; import registerCypressGrep from '@cypress/grep'; +import type { ServerlessRoleName } from './roles'; +import { login } from '../../../../test_serverless/functional/test_suites/security/cypress/tasks/login'; + registerCypressGrep(); declare global { // eslint-disable-next-line @typescript-eslint/no-namespace namespace Cypress { + interface SuiteConfigOverrides { + env?: { + ftrConfig: SecuritySolutionDescribeBlockFtrConfig; + }; + } + interface Chainable { getBySel(...args: Parameters): Chainable>; + getBySelContains( ...args: Parameters ): Chainable>; + clickOutside(): Chainable>; + + login(role?: ServerlessRoleName | 'elastic'): void; } } } @@ -57,6 +72,8 @@ Cypress.Commands.add( () => cy.get('body').click(0, 0) // 0,0 here are the x and y coordinates ); +Cypress.Commands.add('login', login); + // Alternatively you can use CommonJS syntax: // require('./commands') Cypress.on('uncaught:exception', () => false); diff --git a/x-pack/plugins/osquery/cypress/support/project_controller_osquery_roles.yml b/x-pack/plugins/osquery/cypress/support/project_controller_osquery_roles.yml new file mode 100644 index 0000000000000..c15e8b558ddbd --- /dev/null +++ b/x-pack/plugins/osquery/cypress/support/project_controller_osquery_roles.yml @@ -0,0 +1,40 @@ +soc_manager: + applications: + - application: discover + privileges: + - all + resources: "*" + - application: visualize + privileges: + - read + resources: "*" + - application: observabilityCases + privileges: + - all + resources: "*" + - application: securitySolutionCases + privileges: + - all + resources: "*" + - application: infrastructure + privileges: + - read + resources: "*" + - application: indexPatterns + privileges: + - all + resources: "*" + +# custom roles for osquery lack of permission testing +reader: + indices: + - names: + - logs-* + privileges: + - read + - write + applications: + - application: osquery + privileges: + - read + resources: "*" diff --git a/x-pack/plugins/osquery/cypress/support/roles.ts b/x-pack/plugins/osquery/cypress/support/roles.ts new file mode 100644 index 0000000000000..b257803631e40 --- /dev/null +++ b/x-pack/plugins/osquery/cypress/support/roles.ts @@ -0,0 +1,8 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export { ServerlessRoleName } from '../../../../test_serverless/shared/lib/security/types'; diff --git a/x-pack/plugins/osquery/cypress/tasks/api_fixtures.ts b/x-pack/plugins/osquery/cypress/tasks/api_fixtures.ts index 91f32126b55e4..9a139eadf9adf 100644 --- a/x-pack/plugins/osquery/cypress/tasks/api_fixtures.ts +++ b/x-pack/plugins/osquery/cypress/tasks/api_fixtures.ts @@ -103,6 +103,7 @@ export const loadPack = (payload: Partial = {}, space = 'default') => headers: { 'Elastic-Api-Version': API_VERSIONS.public.v1, }, + url: `/s/${space}/api/osquery/packs`, }).then((response) => response.body.data); @@ -121,6 +122,7 @@ export const loadLiveQuery = ( payload = { agent_all: true, query: 'select * from uptime;', + kuery: '', } ) => request<{ @@ -221,6 +223,9 @@ export const loadRule = (includeResponseActions = false) => : {}), } as RuleCreateProps, url: `/api/detection_engine/rules`, + headers: { + 'Elastic-Api-Version': API_VERSIONS.public.v1, + }, }).then((response) => response.body); export const cleanupRule = (id: string) => { @@ -293,4 +298,8 @@ export const loadAgentPolicy = () => }).then((response) => response.body.item); export const cleanupAgentPolicy = (agentPolicyId: string) => - request({ method: 'POST', body: { agentPolicyId }, url: '/api/fleet/agent_policies/delete' }); + request({ + method: 'POST', + body: { agentPolicyId }, + url: '/api/fleet/agent_policies/delete', + }); diff --git a/x-pack/plugins/osquery/cypress/tasks/common.ts b/x-pack/plugins/osquery/cypress/tasks/common.ts index 5704796c10b0b..f377d41d335a0 100644 --- a/x-pack/plugins/osquery/cypress/tasks/common.ts +++ b/x-pack/plugins/osquery/cypress/tasks/common.ts @@ -6,11 +6,14 @@ */ export const API_AUTH = { - user: Cypress.env('ELASTICSEARCH_USERNAME'), - pass: Cypress.env('ELASTICSEARCH_PASSWORD'), + user: Cypress.env('KIBANA_USERNAME') ?? Cypress.env('ELASTICSEARCH_USERNAME'), + pass: Cypress.env('KIBANA_PASSWORD') ?? Cypress.env('ELASTICSEARCH_PASSWORD'), }; -export const API_HEADERS = { 'kbn-xsrf': 'cypress' }; +export const API_HEADERS = { + 'kbn-xsrf': 'cypress', + 'x-elastic-internal-origin': 'security-solution', +}; export const request = ( options: Partial diff --git a/x-pack/plugins/osquery/cypress/tasks/live_query.ts b/x-pack/plugins/osquery/cypress/tasks/live_query.ts index 144bf8c94f6be..1fd8be180b5dd 100644 --- a/x-pack/plugins/osquery/cypress/tasks/live_query.ts +++ b/x-pack/plugins/osquery/cypress/tasks/live_query.ts @@ -6,7 +6,7 @@ */ import { LIVE_QUERY_EDITOR } from '../screens/live_query'; -import { ROLE, login } from './login'; +import { ServerlessRoleName } from '../support/roles'; export const DEFAULT_QUERY = 'select * from processes;'; export const BIG_QUERY = 'select * from processes, users limit 110;'; @@ -101,9 +101,9 @@ export const toggleRuleOffAndOn = (ruleName: string) => { }; export const loadRuleAlerts = (ruleName: string) => { - login(ROLE.soc_manager); + cy.login(ServerlessRoleName.SOC_MANAGER); cy.visit('/app/security/rules'); - cy.contains(ruleName).click(); + clickRuleName(ruleName); cy.getBySel('alertsTable').within(() => { cy.getBySel('expand-event') .first() @@ -170,3 +170,7 @@ export const takeOsqueryActionWithParams = () => { submitQuery(); cy.getBySel('dataGridHeader').should('contain', 'tags', { timeout: 6000000 }); }; + +export const clickRuleName = (ruleName: string) => { + cy.contains('a[data-test-subj="ruleName"]', ruleName).click({ force: true }); +}; diff --git a/x-pack/plugins/osquery/cypress/tasks/login.ts b/x-pack/plugins/osquery/cypress/tasks/login.ts deleted file mode 100644 index 40c8ffa45a1ae..0000000000000 --- a/x-pack/plugins/osquery/cypress/tasks/login.ts +++ /dev/null @@ -1,345 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import * as yaml from 'js-yaml'; -import type { UrlObject } from 'url'; -import Url from 'url'; -import type { Role } from '@kbn/security-plugin/common'; -import { request } from './common'; -import adminRole from '../../scripts/roles_users/admin/role.json'; -import alertTestRole from '../../scripts/roles_users/alert_test/role.json'; -import noneRole from '../../scripts/roles_users/none/role.json'; -import platformEngineerRole from '../../scripts/roles_users/platform_engineer/role.json'; -import readerRole from '../../scripts/roles_users/reader/role.json'; -import socManagerRole from '../../scripts/roles_users/soc_manager/role.json'; -import t1AnalystRole from '../../scripts/roles_users/t1_analyst/role.json'; -import t2AnalystRole from '../../scripts/roles_users/t2_analyst/role.json'; - -export enum ROLE { - soc_manager = 'soc_manager', - reader = 'reader', - t1_analyst = 't1_analyst', - t2_analyst = 't2_analyst', - platform_engineer = 'platform_engineer', - admin = 'admin', // base: ['all'] - alert_test = 'alert_test', - none = 'none', -} - -export const rolesMapping: { [key in ROLE]: Omit } = { - admin: adminRole, - alert_test: alertTestRole, - none: noneRole, - platform_engineer: platformEngineerRole, - reader: readerRole, - soc_manager: socManagerRole, - t1_analyst: t1AnalystRole, - t2_analyst: t2AnalystRole, -}; - -/** - * Credentials in the `kibana.dev.yml` config file will be used to authenticate - * with Kibana when credentials are not provided via environment variables - */ -const KIBANA_DEV_YML_PATH = '../../../config/kibana.dev.yml'; - -/** - * The configuration path in `kibana.dev.yml` to the username to be used when - * authenticating with Kibana. - */ -const ELASTICSEARCH_USERNAME_CONFIG_PATH = 'config.elasticsearch.username'; - -/** - * The configuration path in `kibana.dev.yml` to the password to be used when - * authenticating with Kibana. - */ -const ELASTICSEARCH_PASSWORD_CONFIG_PATH = 'config.elasticsearch.password'; - -/** - * The `CYPRESS_ELASTICSEARCH_USERNAME` environment variable specifies the - * username to be used when authenticating with Kibana - */ -const ELASTICSEARCH_USERNAME = 'ELASTICSEARCH_USERNAME'; - -/** - * The `CYPRESS_ELASTICSEARCH_PASSWORD` environment variable specifies the - * username to be used when authenticating with Kibana - */ -const ELASTICSEARCH_PASSWORD = 'ELASTICSEARCH_PASSWORD'; - -/** - * The Kibana server endpoint used for authentication - */ -const LOGIN_API_ENDPOINT = '/internal/security/login'; - -/** - * cy.visit will default to the baseUrl which uses the default kibana test user - * This function will override that functionality in cy.visit by building the baseUrl - * directly from the environment variables set up in x-pack/test/security_solution_cypress/runner.ts - * - * @param role string role/user to log in with - * @param route string route to visit - */ -export const getUrlWithRoute = (role: ROLE, route: string) => { - const url = Cypress.config().baseUrl; - const kibana = new URL(String(url)); - const theUrl = `${Url.format({ - auth: `${role}:changeme`, - username: role, - password: 'changeme', - protocol: kibana.protocol.replace(':', ''), - hostname: kibana.hostname, - port: kibana.port, - } as UrlObject)}${route.startsWith('/') ? '' : '/'}${route}`; - cy.log(`origin: ${theUrl}`); - - return theUrl; -}; - -interface User { - username: string; - password: string; -} - -/** - * Builds a URL with basic auth using the passed in user. - * - * @param user the user information to build the basic auth with - * @param route string route to visit - */ -export const constructUrlWithUser = (user: User, route: string) => { - const url = Cypress.config().baseUrl; - const kibana = new URL(String(url)); - const hostname = kibana.hostname; - const username = user.username; - const password = user.password; - const protocol = kibana.protocol.replace(':', ''); - const port = kibana.port; - - const path = `${route.startsWith('/') ? '' : '/'}${route}`; - const strUrl = `${protocol}://${username}:${password}@${hostname}:${port}${path}`; - const builtUrl = new URL(strUrl); - - cy.log(`origin: ${builtUrl.href}`); - - return builtUrl.href; -}; - -export const getCurlScriptEnvVars = () => ({ - ELASTICSEARCH_URL: Cypress.env('ELASTICSEARCH_URL'), - ELASTICSEARCH_USERNAME: Cypress.env('ELASTICSEARCH_USERNAME'), - ELASTICSEARCH_PASSWORD: Cypress.env('ELASTICSEARCH_PASSWORD'), - KIBANA_URL: Cypress.config().baseUrl, -}); - -export const postRoleAndUser = (role: ROLE) => { - const rolePrivileges = rolesMapping[role]; - // post the role - request({ - method: 'PUT', - url: `/api/security/role/${role}`, - body: rolePrivileges, - }); - - // post the user associated with the role to elasticsearch - request({ - method: 'POST', - url: `/internal/security/users/${role}`, - body: { - username: role, - password: Cypress.env(ELASTICSEARCH_PASSWORD), - roles: [role], - }, - }); -}; - -export const deleteRoleAndUser = (role: ROLE) => { - request({ - method: 'DELETE', - url: `/internal/security/users/${role}`, - }); - request({ - method: 'DELETE', - url: `/api/security/role/${role}`, - }); -}; - -export const loginWithUser = (user: User) => { - const url = Cypress.config().baseUrl; - - request({ - body: { - providerType: 'basic', - providerName: url && !url.includes('localhost') ? 'cloud-basic' : 'basic', - currentURL: '/', - params: { - username: user.username, - password: user.password, - }, - }, - headers: { 'kbn-xsrf': 'cypress-creds-via-config' }, - method: 'POST', - url: constructUrlWithUser(user, LOGIN_API_ENDPOINT), - }); -}; - -export const loginWithRole = async (role: ROLE) => { - postRoleAndUser(role); - const theUrl = Url.format({ - auth: `${role}:changeme`, - username: role, - password: 'changeme', - protocol: Cypress.env('protocol'), - hostname: Cypress.env('hostname'), - port: Cypress.env('configport'), - } as UrlObject); - cy.log(`origin: ${theUrl}`); - cy.session([role], () => { - cy.request({ - body: { - providerType: 'basic', - providerName: 'basic', - currentURL: '/', - params: { - username: role, - password: 'changeme', - }, - }, - headers: { 'kbn-xsrf': 'cypress-creds-via-config' }, - method: 'POST', - url: getUrlWithRoute(role, LOGIN_API_ENDPOINT), - }); - }); -}; - -/** - * Authenticates with Kibana using, if specified, credentials specified by - * environment variables. The credentials in `kibana.dev.yml` will be used - * for authentication when the environment variables are unset. - * - * To speed the execution of tests, prefer this non-interactive authentication, - * which is faster than authentication via Kibana's interactive login page. - */ -export const login = (role?: ROLE) => { - if (role != null) { - loginWithRole(role); - } else if (credentialsProvidedByEnvironment()) { - loginViaEnvironmentCredentials(); - } else { - loginViaConfig(); - } -}; - -/** - * Returns `true` if the credentials used to login to Kibana are provided - * via environment variables - */ -const credentialsProvidedByEnvironment = (): boolean => - Cypress.env(ELASTICSEARCH_USERNAME) != null && Cypress.env(ELASTICSEARCH_PASSWORD) != null; - -/** - * Authenticates with Kibana by reading credentials from the - * `CYPRESS_ELASTICSEARCH_USERNAME` and `CYPRESS_ELASTICSEARCH_PASSWORD` - * environment variables, and POSTing the username and password directly to - * Kibana's `/internal/security/login` endpoint, bypassing the login page (for speed). - */ -const loginViaEnvironmentCredentials = () => { - const url = Cypress.config().baseUrl; - - cy.log( - `Authenticating via environment credentials from the \`CYPRESS_${ELASTICSEARCH_USERNAME}\` and \`CYPRESS_${ELASTICSEARCH_PASSWORD}\` environment variables` - ); - - const username = Cypress.env(ELASTICSEARCH_USERNAME); - const password = Cypress.env(ELASTICSEARCH_PASSWORD); - - // programmatically authenticate without interacting with the Kibana login page - cy.session([username, password], () => { - cy.request({ - body: { - providerType: 'basic', - providerName: url && !url.includes('localhost') ? 'cloud-basic' : 'basic', - currentURL: '/', - params: { - username, - password, - }, - }, - headers: { 'kbn-xsrf': 'cypress-creds-via-env' }, - method: 'POST', - url: `${Cypress.config().baseUrl}${LOGIN_API_ENDPOINT}`, - }); - }); -}; - -/** - * Authenticates with Kibana by reading credentials from the - * `kibana.dev.yml` file and POSTing the username and password directly to - * Kibana's `/internal/security/login` endpoint, bypassing the login page (for speed). - */ -const loginViaConfig = () => { - cy.log( - `Authenticating via config credentials \`${ELASTICSEARCH_USERNAME_CONFIG_PATH}\` and \`${ELASTICSEARCH_PASSWORD_CONFIG_PATH}\` from \`${KIBANA_DEV_YML_PATH}\`` - ); - - // read the login details from `kibana.dev.yaml` - cy.readFile(KIBANA_DEV_YML_PATH).then((kibanaDevYml) => { - const config = yaml.safeLoad(kibanaDevYml); - - const username = 'elastic'; - const password = config.elasticsearch.password; - - // programmatically authenticate without interacting with the Kibana login page - cy.session([username, password], () => { - cy.request({ - body: { - providerType: 'basic', - providerName: 'basic', - currentURL: '/', - params: { - username, - password, - }, - }, - headers: { 'kbn-xsrf': 'cypress-creds-via-config' }, - method: 'POST', - url: `${Cypress.config().baseUrl}${LOGIN_API_ENDPOINT}`, - }); - }); - }); -}; - -/** - * Get the configured auth details that were used to spawn cypress - * - * @returns the default Elasticsearch username and password for this environment - */ -export const getEnvAuth = (): User => { - if (credentialsProvidedByEnvironment()) { - return { - username: Cypress.env(ELASTICSEARCH_USERNAME), - password: Cypress.env(ELASTICSEARCH_PASSWORD), - }; - } else { - let user: User = { username: '', password: '' }; - cy.readFile(KIBANA_DEV_YML_PATH).then((devYml) => { - const config = yaml.safeLoad(devYml); - user = { username: config.elasticsearch.username, password: config.elasticsearch.password }; - }); - - return user; - } -}; - -/** - * Authenticates with Kibana, visits the specified `url`, and waits for the - * Kibana global nav to be displayed before continuing - */ -export const loginAndWaitForPage = (url: string) => { - login(); - cy.visit(url); -}; diff --git a/x-pack/plugins/osquery/cypress/tasks/response_actions.ts b/x-pack/plugins/osquery/cypress/tasks/response_actions.ts index 5f8500b89837c..bfdb437540f07 100644 --- a/x-pack/plugins/osquery/cypress/tasks/response_actions.ts +++ b/x-pack/plugins/osquery/cypress/tasks/response_actions.ts @@ -5,9 +5,54 @@ * 2.0. */ +import { clickRuleName } from './live_query'; +import { ServerlessRoleName } from '../support/roles'; +import { cleanupRule, loadRule } from './api_fixtures'; +import { closeDateTabIfVisible } from './integrations'; + export const RESPONSE_ACTIONS_ITEM_0 = 'response-actions-list-item-0'; export const RESPONSE_ACTIONS_ITEM_1 = 'response-actions-list-item-1'; export const RESPONSE_ACTIONS_ITEM_2 = 'response-actions-list-item-2'; export const RESPONSE_ACTIONS_ITEM_3 = 'response-actions-list-item-3'; export const OSQUERY_RESPONSE_ACTION_ADD_BUTTON = 'Osquery-response-action-type-selection-option'; +export const ENDPOINT_RESPONSE_ACTION_ADD_BUTTON = + 'Endpoint Security-response-action-type-selection-option'; + +export const checkOsqueryResponseActionsPermissions = (enabled: boolean) => { + let ruleId: string; + let ruleName: string; + + before(() => { + loadRule().then((data) => { + ruleId = data.id; + ruleName = data.name; + }); + }); + after(() => { + cleanupRule(ruleId); + }); + + beforeEach(() => { + cy.login(ServerlessRoleName.SOC_MANAGER); + }); + + it(`response actions should ${enabled ? 'be available ' : 'not be available'}`, () => { + cy.visit('/app/security/rules'); + clickRuleName(ruleName); + cy.getBySel('editRuleSettingsLink').click(); + cy.getBySel('globalLoadingIndicator').should('not.exist'); + closeDateTabIfVisible(); + cy.getBySel('edit-rule-actions-tab').click(); + cy.contains('Response actions are run on each rule execution.'); + cy.getBySel(OSQUERY_RESPONSE_ACTION_ADD_BUTTON).click(); + if (enabled) { + cy.getBySel(ENDPOINT_RESPONSE_ACTION_ADD_BUTTON).click(); + cy.contains('Query is a required field'); + cy.contains('Select an endpoint response action.'); + } else { + cy.contains('Upgrade your license to Endpoint Complete to use Osquery Response Actions.'); + cy.getBySel(ENDPOINT_RESPONSE_ACTION_ADD_BUTTON).should('be.disabled'); + } + }); +}; diff --git a/x-pack/plugins/osquery/cypress/tasks/saved_queries.ts b/x-pack/plugins/osquery/cypress/tasks/saved_queries.ts index 574a38543f891..86002e9ffcafe 100644 --- a/x-pack/plugins/osquery/cypress/tasks/saved_queries.ts +++ b/x-pack/plugins/osquery/cypress/tasks/saved_queries.ts @@ -62,6 +62,7 @@ export const getSavedQueriesComplexTest = () => cy.getBySel('pagination-button-next').click().wait(500).click(); cy.contains('columns hidden').should('exist'); + // enter fullscreen cy.getBySel(RESULTS_TABLE_BUTTON).trigger('mouseover'); cy.contains(/Enter fullscreen$/).should('not.exist'); cy.contains('Exit fullscreen').should('exist'); diff --git a/x-pack/plugins/osquery/cypress/tsconfig.json b/x-pack/plugins/osquery/cypress/tsconfig.json index dd9bbc7f0e110..b8e92e55bbd2e 100644 --- a/x-pack/plugins/osquery/cypress/tsconfig.json +++ b/x-pack/plugins/osquery/cypress/tsconfig.json @@ -2,7 +2,9 @@ "extends": "../../../../tsconfig.base.json", "include": [ "**/*", - "../cypress.config.ts" + "../cypress.config.ts", + "../serverless_cypress.config.ts", + "../../../test_serverless/shared/lib" ], "exclude": [ "target/**/*" @@ -25,7 +27,6 @@ "path": "../tsconfig.json", "force": true }, - "@kbn/security-plugin", "@kbn/security-solution-plugin", "@kbn/fleet-plugin", "@kbn/cases-plugin" diff --git a/x-pack/plugins/osquery/package.json b/x-pack/plugins/osquery/package.json index e36c3c4e7bfcc..bd21bb192545a 100644 --- a/x-pack/plugins/osquery/package.json +++ b/x-pack/plugins/osquery/package.json @@ -5,10 +5,14 @@ "private": true, "license": "Elastic License 2.0", "scripts": { - "cypress:burn": "yarn cypress:run --env burn=2 --concurrency=1 --headed", + "cypress:burn": "yarn cypress:run --env burn=2 --headed", "cypress:changed-specs-only": "yarn cypress:run --changed-specs-only --env burn=2", - "cypress:open": "node ../security_solution/scripts/start_cypress_parallel open --config-file ../osquery/cypress.config.ts --ftr-config-file ../../../x-pack/test/osquery_cypress/cli_config", - "cypress:run": "node ../security_solution/scripts/start_cypress_parallel run --config-file ../osquery/cypress.config.ts --ftr-config-file ../../../x-pack/test/osquery_cypress/cli_config --concurrency 1", + "cypress": "node ../security_solution/scripts/start_cypress_parallel --config-file ../osquery/cypress.config.ts --ftr-config-file ../../../x-pack/test/osquery_cypress/cli_config", + "cypress:open": "yarn cypress open", + "cypress:run": "yarn cypress run", + "cypress:serverless": "node ../security_solution/scripts/start_cypress_parallel --config-file ../osquery/serverless_cypress.config.ts --ftr-config-file ../../../x-pack/test/osquery_cypress/serverless_cli_config", + "cypress:serverless:open": "yarn cypress:serverless open", + "cypress:serverless:run": "yarn cypress:serverless run", "nyc": "../../../node_modules/.bin/nyc report --reporter=text-summary", "junit:merge": "../../../node_modules/.bin/mochawesome-merge ../../../target/kibana-osquery/cypress/results/mochawesome*.json > ../../../target/kibana-osquery/cypress/results/output.json && ../../../node_modules/.bin/marge ../../../target/kibana-osquery/cypress/results/output.json --reportDir ../../../target/kibana-osquery/cypress/results && yarn junit:transform && mkdir -p ../../../target/junit && cp ../../../target/kibana-osquery/cypress/results/*.xml ../../../target/junit/", "junit:transform": "node ../security_solution/scripts/junit_transformer --pathPattern '../../../target/kibana-osquery/cypress/results/*.xml' --rootDirectory ../../../ --reportName 'Osquery Cypress' --writeInPlace" diff --git a/x-pack/plugins/osquery/public/action_results/use_action_results.ts b/x-pack/plugins/osquery/public/action_results/use_action_results.ts index f950b4f1907c3..ef7dbad151d20 100644 --- a/x-pack/plugins/osquery/public/action_results/use_action_results.ts +++ b/x-pack/plugins/osquery/public/action_results/use_action_results.ts @@ -11,11 +11,7 @@ import { useQuery } from '@tanstack/react-query'; import { i18n } from '@kbn/i18n'; import { lastValueFrom } from 'rxjs'; import type { InspectResponse } from '../common/helpers'; -import { - createFilter, - getInspectResponse, - generateTablePaginationOptions, -} from '../common/helpers'; +import { getInspectResponse, generateTablePaginationOptions } from '../common/helpers'; import { useKibana } from '../common/lib/kibana'; import type { ResultEdges, @@ -24,7 +20,6 @@ import type { Direction, } from '../../common/search_strategy'; import { OsqueryQueries } from '../../common/search_strategy'; -import type { ESTermQuery } from '../../common/typed_json'; import { queryClient } from '../query_client'; import { useErrorToast } from '../common/hooks/use_error_toast'; @@ -43,7 +38,7 @@ export interface UseActionResults { direction: Direction; limit: number; sortField: string; - filterQuery?: ESTermQuery | string; + kuery?: string; skip?: boolean; isLive?: boolean; } @@ -55,7 +50,7 @@ export const useActionResults = ({ direction, limit, sortField, - filterQuery, + kuery, skip = false, isLive = false, }: UseActionResults) => { @@ -70,7 +65,7 @@ export const useActionResults = ({ { actionId, factoryQueryType: OsqueryQueries.actionResults, - filterQuery: createFilter(filterQuery), + kuery, pagination: generateTablePaginationOptions(activePage, limit), sort: { direction, diff --git a/x-pack/plugins/osquery/public/actions/actions_table.tsx b/x-pack/plugins/osquery/public/actions/actions_table.tsx index ef256d73946e3..cd5e1a685d33b 100644 --- a/x-pack/plugins/osquery/public/actions/actions_table.tsx +++ b/x-pack/plugins/osquery/public/actions/actions_table.tsx @@ -62,11 +62,7 @@ const ActionsTableComponent = () => { const { data: actionsData } = useAllLiveQueries({ activePage: pageIndex, limit: pageSize, - filterQuery: { - exists: { - field: 'user_id', - }, - }, + kuery: 'user_id: *', }); const onTableChange = useCallback(({ page = {} }) => { diff --git a/x-pack/plugins/osquery/public/actions/use_all_live_queries.ts b/x-pack/plugins/osquery/public/actions/use_all_live_queries.ts index ec124b552b2aa..cb118d01bc867 100644 --- a/x-pack/plugins/osquery/public/actions/use_all_live_queries.ts +++ b/x-pack/plugins/osquery/public/actions/use_all_live_queries.ts @@ -9,10 +9,8 @@ import { useQuery } from '@tanstack/react-query'; import { i18n } from '@kbn/i18n'; import { API_VERSIONS } from '../../common/constants'; -import { createFilter } from '../common/helpers'; import { useKibana } from '../common/lib/kibana'; import type { ActionEdges, ActionsStrategyResponse } from '../../common/search_strategy'; -import type { ESTermQuery, ESExistsQuery } from '../../common/typed_json'; import { useErrorToast } from '../common/hooks/use_error_toast'; import { Direction } from '../../common/search_strategy'; @@ -22,7 +20,7 @@ export interface UseAllLiveQueriesConfig { direction?: Direction; limit?: number; sortField?: string; - filterQuery?: ESTermQuery | ESExistsQuery | string; + kuery?: string; skip?: boolean; alertId?: string; } @@ -35,7 +33,7 @@ export const useAllLiveQueries = ({ direction = Direction.desc, limit = 100, sortField = '@timestamp', - filterQuery, + kuery, skip = false, alertId, }: UseAllLiveQueriesConfig) => { @@ -53,7 +51,7 @@ export const useAllLiveQueries = ({ { version: API_VERSIONS.public.v1, query: { - filterQuery: createFilter(filterQuery), + kuery, page: activePage, pageSize: limit, sort: sortField, diff --git a/x-pack/plugins/osquery/public/actions/use_live_query_details.ts b/x-pack/plugins/osquery/public/actions/use_live_query_details.ts index bea2a0bc6b6fb..4437662625b1b 100644 --- a/x-pack/plugins/osquery/public/actions/use_live_query_details.ts +++ b/x-pack/plugins/osquery/public/actions/use_live_query_details.ts @@ -12,13 +12,12 @@ import { filter } from 'lodash'; import type { ECSMapping } from '@kbn/osquery-io-ts-types'; import { API_VERSIONS } from '../../common/constants'; import { useKibana } from '../common/lib/kibana'; -import type { ESTermQuery } from '../../common/typed_json'; import { useErrorToast } from '../common/hooks/use_error_toast'; interface UseLiveQueryDetails { actionId?: string; isLive?: boolean; - filterQuery?: ESTermQuery | string; + kuery?: string; skip?: boolean; queryIds?: string[]; } @@ -54,7 +53,7 @@ export interface LiveQueryDetailsItem { export const useLiveQueryDetails = ({ actionId, - filterQuery, + kuery, isLive = false, skip = false, queryIds, // enable finding out specific queries only, eg. in cases @@ -63,7 +62,7 @@ export const useLiveQueryDetails = ({ const setErrorToast = useErrorToast(); return useQuery<{ data: LiveQueryDetailsItem }, Error, LiveQueryDetailsItem>( - ['liveQueries', { actionId, filterQuery, queryIds }], + ['liveQueries', { actionId, kuery, queryIds }], () => http.get(`/api/osquery/live_queries/${actionId}`, { version: API_VERSIONS.public.v1 }), { enabled: !skip && !!actionId, diff --git a/x-pack/plugins/osquery/public/agents/use_agent_groups.ts b/x-pack/plugins/osquery/public/agents/use_agent_groups.ts index 156b439dcc18d..c7b72b489bbec 100644 --- a/x-pack/plugins/osquery/public/agents/use_agent_groups.ts +++ b/x-pack/plugins/osquery/public/agents/use_agent_groups.ts @@ -35,30 +35,13 @@ export const useAgentGroups = () => { >( ['agentGroups'], async () => { + const policiesQuery = osqueryPolicies?.reduce((acc, policy) => `${acc} OR ${policy}`); + const responseData = await lastValueFrom( data.search.search( { - filterQuery: { terms: { policy_id: osqueryPolicies } }, + kuery: `policy_id: ( ${policiesQuery} )`, factoryQueryType: OsqueryQueries.agents, - aggregations: { - platforms: { - terms: { - field: 'local_metadata.os.platform', - }, - aggs: { - policies: { - terms: { - field: 'policy_id', - }, - }, - }, - }, - policies: { - terms: { - field: 'policy_id', - }, - }, - }, pagination: generateTablePaginationOptions(0, 9000), sort: { direction: 'asc', diff --git a/x-pack/plugins/osquery/public/common/helpers.test.ts b/x-pack/plugins/osquery/public/common/helpers.test.ts deleted file mode 100644 index 968023d726b3b..0000000000000 --- a/x-pack/plugins/osquery/public/common/helpers.test.ts +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import type { ESQuery } from '../../common/typed_json'; - -import { createFilter } from './helpers'; - -describe('Helpers', () => { - describe('#createFilter', () => { - test('if it is a string it returns untouched', () => { - const filter = createFilter('even invalid strings return the same'); - expect(filter).toBe('even invalid strings return the same'); - }); - - test('if it is an ESQuery object it will be returned as a string', () => { - const query: ESQuery = { term: { 'host.id': 'host-value' } }; - const filter = createFilter(query); - expect(filter).toBe(JSON.stringify(query)); - }); - - test('if it is undefined, then undefined is returned', () => { - const filter = createFilter(undefined); - expect(filter).toBe(undefined); - }); - }); -}); diff --git a/x-pack/plugins/osquery/public/common/helpers.ts b/x-pack/plugins/osquery/public/common/helpers.ts index 7697e1d59d5ce..db882c867326f 100644 --- a/x-pack/plugins/osquery/public/common/helpers.ts +++ b/x-pack/plugins/osquery/public/common/helpers.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { isString } from 'lodash/fp'; - import type { PaginationInputPaginated, FactoryQueryTypes, @@ -14,11 +12,6 @@ import type { Inspect, } from '../../common/search_strategy'; -import type { ESQuery } from '../../common/typed_json'; - -export const createFilter = (filterQuery: ESQuery | string | undefined) => - isString(filterQuery) ? filterQuery : JSON.stringify(filterQuery); - export type InspectResponse = Inspect & { response: string[] }; export const generateTablePaginationOptions = ( diff --git a/x-pack/plugins/osquery/public/results/use_all_results.ts b/x-pack/plugins/osquery/public/results/use_all_results.ts index ee545a2eaf9e9..09f18cfd2d17c 100644 --- a/x-pack/plugins/osquery/public/results/use_all_results.ts +++ b/x-pack/plugins/osquery/public/results/use_all_results.ts @@ -10,11 +10,7 @@ import { useQuery } from '@tanstack/react-query'; import { i18n } from '@kbn/i18n'; import { lastValueFrom } from 'rxjs'; import type { InspectResponse } from '../common/helpers'; -import { - createFilter, - generateTablePaginationOptions, - getInspectResponse, -} from '../common/helpers'; +import { generateTablePaginationOptions, getInspectResponse } from '../common/helpers'; import { useKibana } from '../common/lib/kibana'; import type { ResultEdges, @@ -23,7 +19,6 @@ import type { Direction, } from '../../common/search_strategy'; import { OsqueryQueries } from '../../common/search_strategy'; -import type { ESTermQuery } from '../../common/typed_json'; import { useErrorToast } from '../common/hooks/use_error_toast'; @@ -40,7 +35,7 @@ interface UseAllResults { activePage: number; limit: number; sort: Array<{ field: string; direction: Direction }>; - filterQuery?: ESTermQuery | string; + kuery?: string; skip?: boolean; isLive?: boolean; } @@ -50,7 +45,7 @@ export const useAllResults = ({ activePage, limit, sort, - filterQuery, + kuery, skip = false, isLive = false, }: UseAllResults) => { @@ -65,7 +60,7 @@ export const useAllResults = ({ { actionId, factoryQueryType: OsqueryQueries.results, - filterQuery: createFilter(filterQuery), + kuery, pagination: generateTablePaginationOptions(activePage, limit), sort, }, diff --git a/x-pack/plugins/osquery/scripts/roles_users/README.md b/x-pack/plugins/osquery/scripts/roles_users/README.md deleted file mode 100644 index aadc696a5f504..0000000000000 --- a/x-pack/plugins/osquery/scripts/roles_users/README.md +++ /dev/null @@ -1,11 +0,0 @@ -Initial version of roles support for Osquery - -| Role | Data Sources
    (logs-osquery_manager* index) | Live Queries | Saved Queries | Packs | Osquery Integration | Cases | Discovery/Lens | Metrics UI | -|:--------------------------------------------:|:-----------------------------------------------:|:-------------------------------:|:-------------:|:-----:|:-------------------:|:-----:|:-------------:|:----------:| -| NO Data Source access user | none | none | none | none | none | none | none | none | -| Reader (read-only user) | read | read | read | read | none | none | none | none | -| T1 Analyst | read | read, (run saved queries) | read | read | none | none | none | none | -| T2 Analyst | read | read, write (tbc) | all | read | none | read | none | none | -| Hunter / T3 Analyst | read | all | all | all | none | all | read | all | -| SOC Manager | read | all | all | all | none | all | read | all | -| Platform Engineer (data ingest, cluster ops) | read | all | all | all | all | all | read | none | diff --git a/x-pack/plugins/osquery/scripts/roles_users/admin/role.json b/x-pack/plugins/osquery/scripts/roles_users/admin/role.json deleted file mode 100644 index b2c643ea5c5ab..0000000000000 --- a/x-pack/plugins/osquery/scripts/roles_users/admin/role.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "elasticsearch": { - "cluster": [], - "indices": [ - { - "names": ["logs-osquery_manager*"], - "privileges": ["read"] - } - ], - "run_as": [] - }, - "kibana": [ - { - "base": ["all"], - "feature": {}, - "spaces": ["*"] - } - ] -} - diff --git a/x-pack/plugins/osquery/scripts/roles_users/alert_test/role.json b/x-pack/plugins/osquery/scripts/roles_users/alert_test/role.json deleted file mode 100644 index 02a4a1097aff4..0000000000000 --- a/x-pack/plugins/osquery/scripts/roles_users/alert_test/role.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "elasticsearch": { - "cluster": ["manage"], - "indices": [ - { - "names": [".items-*", ".lists-*", ".alerts-security.alerts-*", ".siem-signals-*"], - "privileges": ["manage", "read", "write", "view_index_metadata", "maintenance"] - }, - { - "names": ["*"], - "privileges": ["read"] - }, - { - "names": ["logs-osquery_manager*"], - "privileges": ["read"] - } - ], - "run_as": [] - }, - "kibana": [ - { - "base": [], - "feature": { - "discover": ["read"], - "infrastructure": ["read"], - "ml": ["all"], - "siem": ["all"], - "osquery": ["read", "packs_all"], - "visualize": ["read"] - }, - "spaces": ["*"] - } - ] -} - diff --git a/x-pack/plugins/osquery/scripts/roles_users/none/role.json b/x-pack/plugins/osquery/scripts/roles_users/none/role.json deleted file mode 100644 index e83370767d581..0000000000000 --- a/x-pack/plugins/osquery/scripts/roles_users/none/role.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "elasticsearch": { - "cluster": ["manage"], - "indices": [ - { - "names": [".items-*", ".lists-*", ".alerts-security.alerts-*", ".siem-signals-*"], - "privileges": ["manage", "read", "write", "view_index_metadata", "maintenance"] - }, - { - "names": ["*"], - "privileges": ["read"] - }, - { - "names": ["logs-osquery_manager*"], - "privileges": ["read"] - } - ], - "run_as": [] - }, - "kibana": [ - { - "base": [], - "feature": { - "discover": ["read"], - "infrastructure": ["read"], - "ml": ["all"], - "siem": ["all"], - "osquery": [], - "visualize": ["read"] - }, - "spaces": ["*"] - } - ] -} - diff --git a/x-pack/plugins/osquery/scripts/roles_users/platform_engineer/role.json b/x-pack/plugins/osquery/scripts/roles_users/platform_engineer/role.json deleted file mode 100644 index bd7e75c119641..0000000000000 --- a/x-pack/plugins/osquery/scripts/roles_users/platform_engineer/role.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "elasticsearch": { - "cluster": [], - "indices": [ - { - "names": ["logs-osquery_manager*"], - "privileges": ["read"] - } - ], - "run_as": [] - }, - "kibana": [ - { - "base": [], - "feature": { - "fleet": ["all"], - "osquery": ["all"] - }, - "spaces": ["*"] - } - ] -} - diff --git a/x-pack/plugins/osquery/scripts/roles_users/reader/role.json b/x-pack/plugins/osquery/scripts/roles_users/reader/role.json deleted file mode 100644 index 5695ea5e83887..0000000000000 --- a/x-pack/plugins/osquery/scripts/roles_users/reader/role.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "elasticsearch": { - "cluster": [], - "indices": [ - { - "names": ["logs-osquery_manager*"], - "privileges": ["read"] - } - ], - "run_as": [] - }, - "kibana": [ - { - "base": [], - "feature": { - "osquery": ["read"] - }, - "spaces": ["*"] - } - ] -} - diff --git a/x-pack/plugins/osquery/scripts/roles_users/soc_manager/role.json b/x-pack/plugins/osquery/scripts/roles_users/soc_manager/role.json deleted file mode 100644 index 380162a903882..0000000000000 --- a/x-pack/plugins/osquery/scripts/roles_users/soc_manager/role.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "elasticsearch": { - "cluster": ["manage"], - "indices": [ - { - "names": [".items-*", ".lists-*", ".alerts-security.alerts-*", ".siem-signals-*", "logs-*"], - "privileges": ["manage", "read", "write", "view_index_metadata", "maintenance"] - }, - { - "names": ["*"], - "privileges": ["read"] - } - ], - "run_as": [] - }, - "kibana": [ - { - "base": [], - "feature": { - "discover": ["all"], - "infrastructure": ["read"], - "indexPatterns": ["all"], - "observabilityCases": ["all"], - "securitySolutionCases": ["all"], - "ml": ["all"], - "siem": ["all"], - "savedObjectsManagement": ["all"], - "osquery": ["all"], - "visualize": ["read"], - "actions": ["all"] - }, - "spaces": ["*"] - } - ] -} - diff --git a/x-pack/plugins/osquery/scripts/roles_users/t1_analyst/role.json b/x-pack/plugins/osquery/scripts/roles_users/t1_analyst/role.json deleted file mode 100644 index 8b5e6112c0234..0000000000000 --- a/x-pack/plugins/osquery/scripts/roles_users/t1_analyst/role.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "elasticsearch": { - "cluster": ["manage"], - "indices": [ - { - "names": [".items-*", ".lists-*", ".alerts-security.alerts-*", ".siem-signals-*"], - "privileges": ["manage", "read", "write", "view_index_metadata", "maintenance"] - }, - { - "names": ["*"], - "privileges": ["read"] - }, - { - "names": ["logs-osquery_manager*"], - "privileges": ["read"] - } - ], - "run_as": [] - }, - "kibana": [ - { - "base": [], - "feature": { - "siem": ["all"], - "osquery": ["read", "run_saved_queries" ] - }, - "spaces": ["*"] - } - ] -} - diff --git a/x-pack/plugins/osquery/scripts/roles_users/t2_analyst/role.json b/x-pack/plugins/osquery/scripts/roles_users/t2_analyst/role.json deleted file mode 100644 index 1c1503f437d8c..0000000000000 --- a/x-pack/plugins/osquery/scripts/roles_users/t2_analyst/role.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "elasticsearch": { - "cluster": [], - "indices": [ - { - "names": ["logs-osquery_manager*"], - "privileges": ["read"] - } - ], - "run_as": [] - }, - "kibana": [ - { - "base": [], - "feature": { - "osquery": ["read", "live_queries_all", "saved_queries_all", "packs_read", "run_saved_queries"] - }, - "spaces": ["*"] - } - ] -} - diff --git a/x-pack/plugins/osquery/server/routes/live_query/find_live_query_route.ts b/x-pack/plugins/osquery/server/routes/live_query/find_live_query_route.ts index 2e12d1cd967b1..2258843b73227 100644 --- a/x-pack/plugins/osquery/server/routes/live_query/find_live_query_route.ts +++ b/x-pack/plugins/osquery/server/routes/live_query/find_live_query_route.ts @@ -21,8 +21,8 @@ import type { Direction, } from '../../../common/search_strategy'; import { OsqueryQueries } from '../../../common/search_strategy'; -import { createFilter, generateTablePaginationOptions } from '../../../common/utils/build_query'; import { findLiveQueryRequestQuerySchema } from '../../../common/api'; +import { generateTablePaginationOptions } from '../../../common/utils/build_query'; export const findLiveQueryRoute = (router: IRouter) => { router.versioned @@ -52,7 +52,7 @@ export const findLiveQueryRoute = (router: IRouter) = search.search( { factoryQueryType: OsqueryQueries.actions, - filterQuery: createFilter(request.query.filterQuery), + kuery: request.query.kuery, pagination: generateTablePaginationOptions( request.query.page ?? 0, request.query.pageSize ?? 100 diff --git a/x-pack/plugins/osquery/server/routes/live_query/get_live_query_details_route.ts b/x-pack/plugins/osquery/server/routes/live_query/get_live_query_details_route.ts index a6b6b06dcaca4..2b32a3269b693 100644 --- a/x-pack/plugins/osquery/server/routes/live_query/get_live_query_details_route.ts +++ b/x-pack/plugins/osquery/server/routes/live_query/get_live_query_details_route.ts @@ -61,7 +61,6 @@ export const getLiveQueryDetailsRoute = (router: IRouter( { actionId: request.params.id, - filterQuery: {}, factoryQueryType: OsqueryQueries.actionDetails, }, { abortSignal, strategy: 'osquerySearchStrategy' } diff --git a/x-pack/plugins/osquery/server/routes/live_query/get_live_query_results_route.ts b/x-pack/plugins/osquery/server/routes/live_query/get_live_query_results_route.ts index bd924e9c93b34..a1154b3b8c0d2 100644 --- a/x-pack/plugins/osquery/server/routes/live_query/get_live_query_results_route.ts +++ b/x-pack/plugins/osquery/server/routes/live_query/get_live_query_results_route.ts @@ -22,7 +22,7 @@ import type { ActionDetailsStrategyResponse, } from '../../../common/search_strategy'; import { OsqueryQueries } from '../../../common/search_strategy'; -import { createFilter, generateTablePaginationOptions } from '../../../common/utils/build_query'; +import { generateTablePaginationOptions } from '../../../common/utils/build_query'; import { getActionResponses } from './utils'; import { getLiveQueryResultsRequestParamsSchema, @@ -61,7 +61,7 @@ export const getLiveQueryResultsRoute = (router: IRouter( { actionId: request.params.id, - filterQuery: createFilter(request.query.filterQuery), + kuery: request.query.kuery, factoryQueryType: OsqueryQueries.actionDetails, }, { abortSignal, strategy: 'osquerySearchStrategy' } @@ -83,7 +83,7 @@ export const getLiveQueryResultsRoute = (router: IRouter( @@ -68,7 +72,7 @@ export const deletePackRoute = (router: IRouter, osqueryContext: OsqueryAppConte await Promise.all( currentPackagePolicies.map((packagePolicy) => packagePolicyService?.update( - savedObjectsClient, + internalSavedObjectsClient, esClient, packagePolicy.id, produce(packagePolicy, (draft) => { diff --git a/x-pack/plugins/osquery/server/search_strategy/osquery/factory/actions/all/query.all_actions.dsl.ts b/x-pack/plugins/osquery/server/search_strategy/osquery/factory/actions/all/query.all_actions.dsl.ts index 7761b441a5e32..81c1e0541b8bd 100644 --- a/x-pack/plugins/osquery/server/search_strategy/osquery/factory/actions/all/query.all_actions.dsl.ts +++ b/x-pack/plugins/osquery/server/search_strategy/osquery/factory/actions/all/query.all_actions.dsl.ts @@ -9,17 +9,19 @@ import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey'; import type { ISearchRequestParams } from '@kbn/data-plugin/common'; import { AGENT_ACTIONS_INDEX } from '@kbn/fleet-plugin/common'; +import { getQueryFilter } from '../../../../../utils/build_query'; import { ACTIONS_INDEX } from '../../../../../../common/constants'; import type { AgentsRequestOptions } from '../../../../../../common/search_strategy'; -import { createQueryFilterClauses } from '../../../../../../common/utils/build_query'; export const buildActionsQuery = ({ - filterQuery, + kuery = '', sort, pagination: { cursorStart, querySize }, componentTemplateExists, }: AgentsRequestOptions): ISearchRequestParams => { - const filter = [...createQueryFilterClauses(filterQuery)]; + const { + bool: { filter }, + } = getQueryFilter({ filter: kuery }); const dslQuery = { allow_no_indices: true, diff --git a/x-pack/plugins/osquery/server/search_strategy/osquery/factory/actions/details/query.action_details.dsl.ts b/x-pack/plugins/osquery/server/search_strategy/osquery/factory/actions/details/query.action_details.dsl.ts index da5f0d216c686..3a5fe3db37b7b 100644 --- a/x-pack/plugins/osquery/server/search_strategy/osquery/factory/actions/details/query.action_details.dsl.ts +++ b/x-pack/plugins/osquery/server/search_strategy/osquery/factory/actions/details/query.action_details.dsl.ts @@ -7,30 +7,30 @@ import type { ISearchRequestParams } from '@kbn/data-plugin/common'; import { AGENT_ACTIONS_INDEX } from '@kbn/fleet-plugin/common'; +import { isEmpty } from 'lodash'; +import { getQueryFilter } from '../../../../../utils/build_query'; import { ACTIONS_INDEX } from '../../../../../../common/constants'; import type { ActionDetailsRequestOptions } from '../../../../../../common/search_strategy'; -import { createQueryFilterClauses } from '../../../../../../common/utils/build_query'; export const buildActionDetailsQuery = ({ actionId, - filterQuery, + kuery, componentTemplateExists, }: ActionDetailsRequestOptions): ISearchRequestParams => { - const filter = [ - ...createQueryFilterClauses(filterQuery), - { - match_phrase: { - action_id: actionId, - }, - }, - ]; + const actionIdQuery = `action_id: ${actionId}`; + let filter = actionIdQuery; + if (!isEmpty(kuery)) { + filter = filter + ` AND ${kuery}`; + } + + const filterQuery = getQueryFilter({ filter }); const dslQuery = { allow_no_indices: true, index: componentTemplateExists ? `${ACTIONS_INDEX}*` : AGENT_ACTIONS_INDEX, ignore_unavailable: true, body: { - query: { bool: { filter } }, + query: { bool: { filter: filterQuery } }, size: 1, fields: ['*'], }, diff --git a/x-pack/plugins/osquery/server/search_strategy/osquery/factory/actions/results/query.action_results.dsl.ts b/x-pack/plugins/osquery/server/search_strategy/osquery/factory/actions/results/query.action_results.dsl.ts index 366342e954fad..47901f47b6593 100644 --- a/x-pack/plugins/osquery/server/search_strategy/osquery/factory/actions/results/query.action_results.dsl.ts +++ b/x-pack/plugins/osquery/server/search_strategy/osquery/factory/actions/results/query.action_results.dsl.ts @@ -7,25 +7,25 @@ import type { ISearchRequestParams } from '@kbn/data-plugin/common'; import { AGENT_ACTIONS_RESULTS_INDEX } from '@kbn/fleet-plugin/common'; +import { isEmpty } from 'lodash'; import { ACTION_RESPONSES_INDEX } from '../../../../../../common/constants'; import type { ActionResultsRequestOptions } from '../../../../../../common/search_strategy'; -import { createQueryFilterClauses } from '../../../../../../common/utils/build_query'; +import { getQueryFilter } from '../../../../../utils/build_query'; export const buildActionResultsQuery = ({ actionId, - filterQuery, + kuery, // pagination: { activePage, querySize }, sort, componentTemplateExists, }: ActionResultsRequestOptions): ISearchRequestParams => { - const filter = [ - ...createQueryFilterClauses(filterQuery), - { - match_phrase: { - action_id: actionId, - }, - }, - ]; + const actionIdQuery = `action_id: ${actionId}`; + let filter = actionIdQuery; + if (!isEmpty(kuery)) { + filter = filter + ` AND ${kuery}`; + } + + const filterQuery = getQueryFilter({ filter }); const dslQuery = { allow_no_indices: true, @@ -70,7 +70,7 @@ export const buildActionResultsQuery = ({ }, }, }, - query: { bool: { filter } }, + query: { bool: { filter: filterQuery } }, // from: activePage * querySize, size: 10000, // querySize, track_total_hits: true, diff --git a/x-pack/plugins/osquery/server/search_strategy/osquery/factory/agents/query.all_agents.dsl.ts b/x-pack/plugins/osquery/server/search_strategy/osquery/factory/agents/query.all_agents.dsl.ts index 908c0cbdd32bf..20a5f07c5d11d 100644 --- a/x-pack/plugins/osquery/server/search_strategy/osquery/factory/agents/query.all_agents.dsl.ts +++ b/x-pack/plugins/osquery/server/search_strategy/osquery/factory/agents/query.all_agents.dsl.ts @@ -7,19 +7,22 @@ import type { ISearchRequestParams } from '@kbn/data-plugin/common'; import { AGENTS_INDEX } from '@kbn/fleet-plugin/common'; +import { isEmpty } from 'lodash'; +import { getQueryFilter } from '../../../../utils/build_query'; import type { AgentsRequestOptions } from '../../../../../common/search_strategy'; -import { createQueryFilterClauses } from '../../../../../common/utils/build_query'; export const buildAgentsQuery = ({ - filterQuery, + kuery, pagination: { cursorStart, querySize }, sort, - aggregations, }: AgentsRequestOptions): ISearchRequestParams => { - const filter = [ - { term: { active: { value: 'true' } } }, - ...createQueryFilterClauses(filterQuery), - ]; + const activeQuery = `active: true`; + let filter = activeQuery; + if (!isEmpty(kuery)) { + filter = activeQuery + ` AND ${kuery}`; + } + + const filterQuery = getQueryFilter({ filter }); const dslQuery = { allow_no_indices: true, @@ -28,10 +31,28 @@ export const buildAgentsQuery = ({ body: { query: { bool: { - filter, + filter: filterQuery, + }, + }, + aggs: { + platforms: { + terms: { + field: 'local_metadata.os.platform', + }, + aggs: { + policies: { + terms: { + field: 'policy_id', + }, + }, + }, + }, + policies: { + terms: { + field: 'policy_id', + }, }, }, - aggs: aggregations, track_total_hits: true, sort: [ { diff --git a/x-pack/plugins/osquery/server/search_strategy/osquery/factory/results/query.all_results.dsl.ts b/x-pack/plugins/osquery/server/search_strategy/osquery/factory/results/query.all_results.dsl.ts index 8a33b4b5a8371..2c8d408672275 100644 --- a/x-pack/plugins/osquery/server/search_strategy/osquery/factory/results/query.all_results.dsl.ts +++ b/x-pack/plugins/osquery/server/search_strategy/osquery/factory/results/query.all_results.dsl.ts @@ -6,34 +6,26 @@ */ import type { ISearchRequestParams } from '@kbn/data-plugin/common'; +import { isEmpty } from 'lodash'; +import { getQueryFilter } from '../../../../utils/build_query'; import { OSQUERY_INTEGRATION_NAME } from '../../../../../common'; import type { ResultsRequestOptions } from '../../../../../common/search_strategy'; -import { createQueryFilterClauses } from '../../../../../common/utils/build_query'; export const buildResultsQuery = ({ actionId, agentId, - filterQuery, + kuery, sort, pagination: { activePage, querySize }, }: ResultsRequestOptions): ISearchRequestParams => { - const filter = [ - ...createQueryFilterClauses(filterQuery), - { - match_phrase: { - action_id: actionId, - }, - }, - ...(agentId - ? [ - { - match_phrase: { - 'agent.id': agentId, - }, - }, - ] - : []), - ]; + const actionIdQuery = `action_id: ${actionId}`; + const agentQuery = agentId ? ` AND agent.id: ${agentId}` : ''; + let filter = actionIdQuery + agentQuery; + if (!isEmpty(kuery)) { + filter = filter + ` AND ${kuery}`; + } + + const filterQuery = getQueryFilter({ filter }); const dslQuery = { allow_no_indices: true, @@ -53,7 +45,7 @@ export const buildResultsQuery = ({ }, }, }, - query: { bool: { filter } }, + query: { bool: { filter: filterQuery } }, from: activePage * querySize, size: querySize, track_total_hits: true, diff --git a/x-pack/plugins/osquery/server/search_strategy/osquery/index.ts b/x-pack/plugins/osquery/server/search_strategy/osquery/index.ts index bf7220026f59b..af14d84fa3637 100644 --- a/x-pack/plugins/osquery/server/search_strategy/osquery/index.ts +++ b/x-pack/plugins/osquery/server/search_strategy/osquery/index.ts @@ -41,13 +41,12 @@ export const osquerySearchStrategyProvider = ( mergeMap((exists) => { const strictRequest = { factoryQueryType: request.factoryQueryType, - filterQuery: request.filterQuery, - ...('aggregations' in request ? { aggregations: request.aggregations } : {}), + kuery: request.kuery, ...('pagination' in request ? { pagination: request.pagination } : {}), ...('sort' in request ? { sort: request.sort } : {}), ...('actionId' in request ? { actionId: request.actionId } : {}), ...('agentId' in request ? { agentId: request.agentId } : {}), - }; + } as StrategyRequestType; const dsl = queryFactory.buildDsl({ ...strictRequest, diff --git a/x-pack/plugins/osquery/server/utils/build_query.ts b/x-pack/plugins/osquery/server/utils/build_query.ts new file mode 100644 index 0000000000000..c085790febdec --- /dev/null +++ b/x-pack/plugins/osquery/server/utils/build_query.ts @@ -0,0 +1,18 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import type { Query } from '@kbn/es-query'; +import { buildEsQuery } from '@kbn/es-query'; + +export const getQueryFilter = ({ filter }: { filter: string }) => { + const kqlQuery: Query = { + language: 'kuery', + query: filter, + }; + + return buildEsQuery(undefined, kqlQuery, []); +}; diff --git a/x-pack/plugins/osquery/serverless_cypress.config.ts b/x-pack/plugins/osquery/serverless_cypress.config.ts new file mode 100644 index 0000000000000..6b60dc076631f --- /dev/null +++ b/x-pack/plugins/osquery/serverless_cypress.config.ts @@ -0,0 +1,43 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { defineCypressConfig } from '@kbn/cypress-config'; +// eslint-disable-next-line @kbn/imports/no_boundary_crossing +import { setupUserDataLoader } from '../../test_serverless/functional/test_suites/security/cypress/support/setup_data_loader_tasks'; + +// eslint-disable-next-line import/no-default-export +export default defineCypressConfig({ + defaultCommandTimeout: 60000, + execTimeout: 60000, + pageLoadTimeout: 60000, + responseTimeout: 60000, + screenshotsFolder: '../../../target/kibana-osquery/cypress/screenshots', + trashAssetsBeforeRuns: false, + video: false, + viewportHeight: 946, + viewportWidth: 1680, + + env: { + 'cypress-react-selector': { + root: '#osquery-app', + }, + grepFilterSpecs: true, + grepTags: '@serverless --@brokenInServerless', + grepOmitFiltered: true, + }, + e2e: { + specPattern: './cypress/e2e/**/*.cy.ts', + experimentalRunAllSpecs: true, + experimentalMemoryManagement: true, + numTestsKeptInMemory: 3, + setupNodeEvents: (on, config) => { + setupUserDataLoader(on, config, { additionalRoleName: 'viewer' }); + + return config; + }, + }, +}); diff --git a/x-pack/plugins/osquery/tsconfig.json b/x-pack/plugins/osquery/tsconfig.json index 3a0ce71afa5f4..6cd1086b8a850 100644 --- a/x-pack/plugins/osquery/tsconfig.json +++ b/x-pack/plugins/osquery/tsconfig.json @@ -5,6 +5,7 @@ }, "exclude": [ "cypress.config.ts", + "serverless_cypress.config.ts", "target/**/*", ], "include": [ @@ -15,6 +16,7 @@ "scripts/**/**.json", "server/**/*", "cypress.config.ts", + "serverless_cypress.config.ts", "../../../typings/**/*", // ECS and Osquery schema files "public/common/schemas/*/**.json", @@ -74,6 +76,6 @@ "@kbn/core-lifecycle-browser", "@kbn/core-saved-objects-server", "@kbn/monaco", - "@kbn/io-ts-utils" + "@kbn/io-ts-utils", ] } diff --git a/x-pack/plugins/profiling/e2e/cypress/e2e/profiling_views/differential_functions.cy.ts b/x-pack/plugins/profiling/e2e/cypress/e2e/profiling_views/differential_functions.cy.ts new file mode 100644 index 0000000000000..b1a2df79e3dc7 --- /dev/null +++ b/x-pack/plugins/profiling/e2e/cypress/e2e/profiling_views/differential_functions.cy.ts @@ -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); + } + }); + }); + }); +}); diff --git a/x-pack/plugins/profiling/e2e/cypress/e2e/profiling_views/functions.cy.ts b/x-pack/plugins/profiling/e2e/cypress/e2e/profiling_views/functions.cy.ts new file mode 100644 index 0000000000000..7ad922ceb7936 --- /dev/null +++ b/x-pack/plugins/profiling/e2e/cypress/e2e/profiling_views/functions.cy.ts @@ -0,0 +1,90 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +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'); + }); +}); diff --git a/x-pack/plugins/profiling/e2e/cypress/e2e/profiling_views/home.cy.ts b/x-pack/plugins/profiling/e2e/cypress/e2e/profiling_views/home.cy.ts index 297a446ea9f5c..1f4f91156f797 100644 --- a/x-pack/plugins/profiling/e2e/cypress/e2e/profiling_views/home.cy.ts +++ b/x-pack/plugins/profiling/e2e/cypress/e2e/profiling_views/home.cy.ts @@ -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(); diff --git a/x-pack/plugins/profiling/e2e/cypress/e2e/profiling_views/stacktraces.cy.ts b/x-pack/plugins/profiling/e2e/cypress/e2e/profiling_views/stacktraces.cy.ts new file mode 100644 index 0000000000000..f60320889d9f3 --- /dev/null +++ b/x-pack/plugins/profiling/e2e/cypress/e2e/profiling_views/stacktraces.cy.ts @@ -0,0 +1,139 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +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'); + }); + }); +}); diff --git a/x-pack/plugins/profiling/e2e/cypress/e2e/profiling_views/storage_explorer.cy.ts b/x-pack/plugins/profiling/e2e/cypress/e2e/profiling_views/storage_explorer.cy.ts new file mode 100644 index 0000000000000..b7d5680cc3477 --- /dev/null +++ b/x-pack/plugins/profiling/e2e/cypress/e2e/profiling_views/storage_explorer.cy.ts @@ -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); + }); + }); + }); +}); diff --git a/x-pack/plugins/profiling/e2e/cypress/fixtures/storage_explorer_summary.json b/x-pack/plugins/profiling/e2e/cypress/fixtures/storage_explorer_summary.json new file mode 100644 index 0000000000000..6b1da899ec8f8 --- /dev/null +++ b/x-pack/plugins/profiling/e2e/cypress/fixtures/storage_explorer_summary.json @@ -0,0 +1,8 @@ +{ + "totalProfilingSizeBytes": 3042204, + "totalSymbolsSizeBytes": 644588, + "diskSpaceUsedPct": 0.0000030585286387140013, + "totalNumberOfDistinctProbabilisticValues": 2, + "totalNumberOfHosts": 1, + "dailyDataGenerationBytes": 8601.25 +} \ No newline at end of file diff --git a/x-pack/plugins/profiling/e2e/cypress/support/commands.ts b/x-pack/plugins/profiling/e2e/cypress/support/commands.ts index 75809f92afe45..9a01caf46a8f0 100644 --- a/x-pack/plugins/profiling/e2e/cypress/support/commands.ts +++ b/x-pack/plugins/profiling/e2e/cypress/support/commands.ts @@ -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}'); + } +); diff --git a/x-pack/plugins/profiling/e2e/cypress/support/types.d.ts b/x-pack/plugins/profiling/e2e/cypress/support/types.d.ts index 8db14ad70561a..67bbc4509dc26 100644 --- a/x-pack/plugins/profiling/e2e/cypress/support/types.d.ts +++ b/x-pack/plugins/profiling/e2e/cypress/support/types.d.ts @@ -13,6 +13,19 @@ declare namespace Cypress { }): Cypress.Chainable>; loginAsElastic(): Cypress.Chainable>; getByTestSubj(selector: string): Chainable>; - 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; } } diff --git a/x-pack/plugins/profiling/e2e/es_archivers/profiling_data_anonymized.json b/x-pack/plugins/profiling/e2e/es_archivers/profiling_data_anonymized.json new file mode 100644 index 0000000000000..14a1296b8a42d --- /dev/null +++ b/x-pack/plugins/profiling/e2e/es_archivers/profiling_data_anonymized.json @@ -0,0 +1,26416 @@ +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jSW2U4_r9a5pRRoz2fHRtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qHaZTY2vXFbhjAbygCJcFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hGLZ6nF5AS8CBzWTt3gCzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XKjsZL2KXpodOfuFoDs0YQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-TLw09aGRdgf9CDh0PTQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vw8KIGK_PF-dee9cSVnZBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-jq7GZtW9ARGurxAr-_A5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l_BdWsCefFCMBHxXtyw_Iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ccuRE7rvGbylFOE2-Vdm-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uWeWSSxu5sqKRlZaY4eAfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PlHE9ADU3mZbp8w0yqMlvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KtSO89M9VCytWeOA_oiQpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eGK7xCE0q6I8iYxZSFEHTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KwXcanRetdSttfxy05UTJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0mmkz3CnoIlIVzumszyK0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XBOHr121AI0HBXMVp0ML0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PKH_u6ChhJxckDGOO_zGyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7EsAu37ihslSkq5_KM2CQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MhKbOdyD1AepHNZ5p5VKbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X2e2lPNtTN4TSFGTl1nCqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jk1zGZ6FJdgGFQYufgY7ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ha9i-u7s9fKx1HFoDNO0Kw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["773504632786234"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6wH2PMvQLOzb-w20cckcQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aIuj3UFpTYwKllsd7272GQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsLS1vMfeRFS2PkKyx_Rpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CVk6bBh2sasSABkk2yreCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hhTQvJNxtR2eGzrU16lmJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C06EKCiyFx3Pn4eqP7_0Vg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rXAURQ1kiv9H2yZvakeuBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ApduzXDNHCBTEfxGmtNslg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P0zu1s4JzPjPDd_Vd7cn6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5GfY8EjRtjh0YibV3Qi_5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pgCk94hEld6tri9k3zTI7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QtONVQ7ixoD2XEX10A1hkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5C9tVBswSQGz0JViHPvYNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yeQfSUI4_BczpbW4QdVcSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l7TOnfsZ0Oz_cxAh8t_TMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u0ruNDKoo243OCd9NgEnWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["quosysHAEjLBmlro9m_ngQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZVHdt4rRKbUdxnZTJm-T_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uN-YY_i1gvVmqACLDXQMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mbBHks5z29T0bUsu5EMQag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S0AgGW17HLWhUTiG7kGXPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8666tagpDMUwLxpcys84Tw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aRsHfQoswd8eYLTSZIr-jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OfALl3Wo3o1t_X30Qk37XA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z_8-OcnbKRTWePRhYPa1qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["goNIrfII85QQIfgfQ648gw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m5UMdgbxI1wxlBz3vjrzgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["320436511443"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kju3wmSmA44jDZVegFrCxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mPYq8oyV7ZV_nGEjY2Kc4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "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": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QHnHxTKeHarXj9y6s2mHeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cnfVvs_A3k1-m1CA0ruWaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vIBbtxLj7A-Bvzlt-bR08A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3UITWGKDrHZPpwwp5kPTCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xQF0-oJ8JdkDt-6rMsRLlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6epEt039prWDA1mKzr3j4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vozRSLCjLToa8YixKSyrJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T_TlYqz_7B9a-y_GWM7_sA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i27z4TxZ8219irmfqUB6Ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nFMOTBXwfXy2rS9rQ7VuoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FT_-S3dtxKMT-rFNNrYSGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XJXvcRJSTv0fetUhCxNrHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_zRG8Zm-TV-OEPw995JtBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RT76Wy4E7w3R6MwMto44Tw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_2EjEMFvvc3zr5RhEP50Gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FFcUwrs4ffbYcHn46JPyzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_3VCRU55rE61ngmy6nUu0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D4LWUMywng37JkJBitFBpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lJu_iGqX_IjaCqq1SMsRtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-j5C91_VmNJiaip_TmatTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z0x2qcndWnWv_949s_B0kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UMsTpqgIIeXVCMAnyD79_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hSK5YME25rlOxWM9QDKfOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["436879061896705"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yeQfSUI4_BczpbW4QdVcSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tcbTCLufHy8UbmaAK8q3ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UGDuq1XZODb02226cKaFdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UDdkGUkVb5eesXaBvqvyqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A9Ir5iH3kK5U00HEUoEd1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1F5okdkNPV4sVd83X5bYOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sZS1XfsAKfkUIk_B3D46EA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["juLJTPUsSdVd1YFvTwb6Nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5oNxv_7bMfCjqa3eBz_s3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z0x2qcndWnWv_949s_B0kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fGZ0_jAt2Sa6H9aqgR9ALQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w8uO5W0wiJCpZplxEC1JFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zGL0B9VberxW4FezGa6l7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JPDqwE5vdIl3FS7GtvUXqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y6u6JS5j_0cjiYf9M8rHGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SQ_1llgB9pHjszKVlayMvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776219"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ayUT0DO-jC_Mh--DNMewkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5hQDQXVFSWhod-irdUh5cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5cq_GlWOgDPPgWZmR1FdWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VV_S6GktcnF630eBifKr2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZaFV67YbSi9BrxRc2eGM3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l7TOnfsZ0Oz_cxAh8t_TMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vLxXjVzfAkGaJOOqJpJWGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsLS1vMfeRFS2PkKyx_Rpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qBq-7m-QnKdTZ7IgrjCZqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FVCO-2DSmdo5cwb6xs2XPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5TnmC_EtR1egr-VwVq9IYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1ZwdcwBltMRW8njpewzvJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oVuo4Odmf-MdkPEKxNJxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["seEJBjI353Jgq3ilVgUOcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vV8StTEwG27qRNmXvSQnWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zH4yGVxY1imrUBjFhnKcAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VFYhhz8sqnqMXy2BXfzYxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LMgC_pj236jbZulsolnmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2k45I8UTjAFirMa9eIlZsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lOrPOhwAdGMUyqGKuk1vCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J7vTb8unea8libzIPYw9Fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["461886721230527"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kw-upPyzSMkC3tPk4w7KCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IvyT1Ee_-LfT2uWHruTkYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ugIz67Ev4SbsNzwiqw6egQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b-paALXMHtQzSYfN1_LIQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1hJUVJmc90yZ1ifhHbLXeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "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": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vhf8NzidyahhcdRrhV2tZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vz9H3AqwucSsGrNwOSz0ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sf3Q9ZLgU00mVPvTWu8Tzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7fijxECGAPGLx6hmM9oxjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yocGo0BxuP0NorkFbAsu9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rXS9SIc4nfA61CMQTgLywQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BWJYyK1M7SWxDHZHNRzRWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LTIY6jjU_NkQSO1vbzAR1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CrhbEM7QPhMiIIyEY_Jibw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jxyWk-ftBO8W2R9Uu6H3NA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ziVRbL4J2zmIimCd5dnmkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NGdOEe3DqvxInWQuAHjHQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PHisV5yyeBTxepMxNGfrxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K_BTLwRmtLDAQZlUaG_XNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NA_SRlvcEeTb90WzagQR1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G856X2brPaMvQKpMNNqIQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J6jWZvvVcvb8g3MeES3S-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cnRaDXJC0A8G279UzF-vXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jO6NTqpGp_CHUe6zBHiSDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S2DlZOWlfNB6o3arOdV7Lw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["goLacCwigTPMZCeICHXPhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bVzsIBhfYp5qDo9Kz4tFmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f4pDz1cx3YDG6D3ASmYcgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vUd7LUOlEzT1w32bH1zYbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_eN577uJw5hksIBqBf1iCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzyVw9-CnV8kDbp00nDLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GXIz77FLzTplaCOxm0B_0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DnsVFIlR8r83XyYb6bLHBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x-9YB9WyZYKEJL89XZ2wlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5JBqloLOxGy2RdP76Z_BnQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kRd2tupGjxrjLahazps8Sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dTRgS4ElTqFJ6sYDG_1Elg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UlxpzYDzTrle0usRzv_jpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nwg53akFiAKZJpHiqCwAbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X-P0lV_rGdVI_8Dxw8fzgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B5zce_f4N45Itu5RhOF9CQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oVuo4Odmf-MdkPEKxNJxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6nuYBx_vW2-EF2PDR0-1NA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZKNzQAHHe_cNd3rO-y4iLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uFfy6tMD89kRdnXjUB9Exw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_WyShtnNC36vlv02gG4qCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ioxFgkVObv-I5g84RTGSSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f7riNXLCE7Lya9tYdhWvxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WB1iR1vMQZ8gF_ktwZj6sA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["752276635735424"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q_u7IoOwx8G_ggWzBf7SPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["swfD6YCCLdmhl6gow4zpcQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["758342188863263"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i3VVbQEF8y09CAolsSQBvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vNVkZ8wxrLlgCSBCwJDDkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ld2W0f7Ym8RC8Y3ks0qozA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Sw1kweYzAnossvkRogyCCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BYfLgwssJN01WD8jqeu3Zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZA8T93hlv8fxrEeTbP6iUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C2Ql36p9WjZ_86YIJErzgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SDUgN8PVL4m0QdDkBbnIDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rwn-emofvSjsdxvKAf4KpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["272326412587439"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["giBWEt4QjtavV9fwylJCFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tk9nnPSRs0UXmOv0kC-f_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nrWC-qc5axy4sfEcyAbH_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8Sls7YkmKFCSaOsvoUg1dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZiQJHkJNhfjNdEKRXL5QnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0o2kk_kHA6J1PYlTFPM3RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UeeN9w2TOFRltemf8fqzOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t6Jyl6ams8foz3V3MhHk9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zWKllBn38KanVP1sRfNTvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bQ-t2me3no7hrG7BJshXNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Bpc8eToJHZimyCogMpwGRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hj4d4dnw1d5Ai0FYTgrFrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lX0fEUYuffNYgt7y8lWqJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z_8-OcnbKRTWePRhYPa1qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zmESUw1Zei1kvjzl1SZNaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l7TOnfsZ0Oz_cxAh8t_TMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uBbKBM9HPWXmF7lgBbqn7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OmDWtDsllFFomem3Mdsdug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o_Ot9q_vHiqyt6z_tKWMiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UY9b3d4OnCEDiR5-aB-YVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vIBbtxLj7A-Bvzlt-bR08A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-kv1BoDC1-yq-sDIUSVHvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776125"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JsKo9eA_zbsAOvux77lhHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["188373672314673"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776125"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pNtMkp20SCCEh-TxrA7W_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-GVmmBBa9yr-m-ILwf5zlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Aw8ZJfoeDNAIdQeY6NtTIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "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": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W2lHKIZaQkTw7zk52w5a1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776145"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3whWAY5xh8GAsj0P7rCK5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6sgQRQYUvthb_mx0SZlpMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["676621898341841"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bwQ3geR6Dc9xi0t8guTHew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B467-tM_xsgT__3ZvcZpXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VNUy9Kl8PZqeMvwb9TiUaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MwXi-DFSda8MTVxk8JD-uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SY3hZxRMVbU_LhR_fsRb_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_DhzR6dvflvRHRcqtd7GFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a1s5LU-rT5zvSIgKmP0jJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kbEUN-QOQOIjM5mfj2ILfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lnmcvnDnosSKMTYvgm7Epw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x5rAkl-7qPFuolZlWPAkUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aDmfAmT07s3C9E8zzE3cJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xpn_K_m-c0cQR9r4hLjXkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zCymryvp2j8z8Oy2zlcnlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w_HZOvClvI2HsBbJfNU-EA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f0SPQX5AVVd4GEQzOJVMKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jq5yVOLbQGxYbXZnP5I7zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZndsICGWbrD6J4BVHqQM7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nD85insZMOUq_FlHy7KJrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KkGYRkVn12mQsi_SGM0Jrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZKNzQAHHe_cNd3rO-y4iLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rtLWsf0bQDHrSMWDW9YU3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s77y9jKH8drMOWXLmWPwGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LpjlQ5x3C5y0GS9aUsntg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RbKchl_4xnq7yV-Q25CZiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHHH56Gg_3eKY-7vNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TZXiSxQTQpQch8zeigYG_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4BjV2rYL8aZZ9wWVP_iBZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VwUylZN1Ciho38uTRm9iHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5C9tVBswSQGz0JViHPvYNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3kBsdcdJuehrHwupMmytxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VwUylZN1Ciho38uTRm9iHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oVuo4Odmf-MdkPEKxNJxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kA717wmtrauoztRQsgG4PQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Hi1xqW7gnqMR0vJ_jyI7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vUd7LUOlEzT1w32bH1zYbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5euzUarpbN3mYb5wNSo6tw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x-dvfE0WP73LPsEYuUxfgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAaZYeT4FhJtkt8tMhB4bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["624325675086863"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UHjRGCGnN_IYn4fU42UENg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uNmMFG6CGOZcyHdySFqBxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1gf1rl7kyCfhLB6YiPdzMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8JXazZeFHK5-UCd969i2Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T_HZgFQHe6dPFOxqiU6lSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bEmtVzIU_epxdvSxCjwB-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VwUylZN1Ciho38uTRm9iHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7fLjmESQgzutRqqKhKAIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i2LRaEQbaFjppfKBRlcmXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ALnABGmJ9o6L9sDKJxvSXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v56E4DBax-mq-ATGnWVSQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cYDl9ousQbgfYxygX2lM2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ecD_mOI8q4Cja1MdFgpfKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IQq1JK2G9xiQPt83Q51OKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5C9tVBswSQGz0JViHPvYNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xk4yAe0khSy8_a2SOV9bRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9awep8I580wKNGVWPU3zOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KTWnX7JoxcA7QKVh21Eg-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2CC6FclZGgiWgBtAlUI6fA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["05FOW23jM0j0M9jfmJ93UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RCrec6lavTAbosp4f6WrlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c4r_QH8QJIos6k5aVv9MwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["js8bgJ66knafO46d8ln2Cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UaGO0adJ6fx1kLHqf5qy7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V378CoEAxuDA8TdO9JheuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9kU5bmjQFjFC5AVmJ7BijQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3mOJ_bZHbI9BCSH7EmMPpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r4-dv23e6cK3wf70GAFR-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["26eMbIowZ7RFzGdD2uFyMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6CiTG5-LDOns23hoVPtyZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xG-J8jMWseGdOU1sdRBQdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lA9nEcA0uuTL_71GNcgdwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n0jqZglq2abjzUlT0D05Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bGp_k0dgNQaJzNCJfp_KVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4CYs8zRCH2kwIRvoJLaDYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4ZzGXzdUE94DgCIvdx6jaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ymZhfR6CSgi_0T9KIxwzLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s4c75Pyv4cZXMPWM012gbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xaQtJm9p00-Jz117AlZe2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z6LadKEjSbTRipkrctFwiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WhEDMzDK1NjN0Eborj2SQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xbY1WMOHeCLXx6Ve-mWwpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X1hi8-3cWL65DMkAorIdIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["773504632786234"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UbOj5nt5_ZA6gcga2l7Caw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uXijUrvGMjzOETEmDJNAig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FsL-ii7oDUAdlIp6HIiCBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WI00fQbxRwJuj8sF5Tzd2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VNkLTUfwicmpAGbJuAZjxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["whjQnYnkC1qOzcD5V7FwRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i9ooibYAKsAu87Iou-AftQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dobhl5ofY0uMkot107beaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D0btI8J3q8CjKMGLeUsKig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c1BBf8_D0Zq_e4sWgAdTEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cJ9JggUwtbxQCAJye8Yvtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5pTNwxxfBlsIS-4EpZQNyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XRTFr0ecKlolYPr7OFrIwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["362271319534141"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDZLu2kbgCRTlx5C0tAU6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DBYjR7puV1Ugyd5JtM9XrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZwazY7gzuMQj2_W8d6dlyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dZVhEMwoIzMGD6Fthzhnhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ThZy4U6L2fitmoMYc1TvCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3BMUu4iAPcjnLzSizH0l2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7g31Dez7xFD_kRoX4sD50A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o9rrwXJbM6W3KhAnab2hlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f7riNXLCE7Lya9tYdhWvxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wodfI0Qjs3NXAooq-q8Ykg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6qn8dRThwMb4sKyHdsYIBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["410bN33n-_z_JAkwLTBxCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_6kR-USWGgxhjhlJfdSewQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["377218743540142"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ud-CukKVH6u2M9pLqLKNKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g-VGT148bDBcpUizwj3LXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5jPOL2BCon4p4v0UyqfsXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TlYJWGnBS9-rQro1JWkfVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0pVn3RaIbpVhn8RviFIpJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rPoP8nTU3L_pP77a9tVx-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EC-N90X1-cY4i7M7nO-spA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hrw_5LjjZespxQS8P2PsYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q0Tyb7jka2jL30SZBsJhvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-k51cbCmTnVl-dahOkNuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["41wmIH9jwMlMrZWTpeKHUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M8XF3EDgLoiHuskFtsDbIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NIcwjcTUxYrOZlE8A754rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d5t035vLHEEj1-NawauH3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776145"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mR_bhwYz0Z7HgmN-2Reqgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JWLXJAVMATKQ_NqN-b0ZaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mfPI-I_qFPUYDnGYxnk-3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FbpUFko8tUm3ejMa5f6k0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pIUgG5E4gDRt2dza9aR7Ig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gpy3Q2u5ZrnHXb3KmhEpOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xk220Mi9zFcLeqpxwKjYgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q9HZvluGVeiW38is5m-oLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v90IGNI0SMs12ehTDnuo0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LZvFVTJOMfo7RHR7D2PEUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tpfKAB3ce62OhmOmHASsvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHHH56Gg_3eKY-7vNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SnrnvQoDfswWva5evHB2IQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["773504632786234"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pKq4i700hPpldKZt8IoC4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0WMo-65XcyOKtSWppCr-Lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GXNTn72ecLm64IgFcvS3tw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uT9OC4sMxo7gbhe0Tvg8fQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["773504632786234"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8Zn6UdZZHr0P1-htNGE9Yw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OUQo5-1DEmMawSabebh9Ng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jmJj_1BnViyZrfHd_98iaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ysjD2KEV11Q-X20IVM68Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p0Vv5U9TyuarmDvqQJYvgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kBSgpn7ZjmiglyBaasyctQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MWuCzXH99QKyPSTUMq2R0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BGIHiDpY1YP5dvRehgwWHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mh_-Cny5cU4tDakx9JerXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Cv-Mak1VlpmhEVyP9U96rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_bJEnTtbOe0IZcVirgheKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["298566699369502"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2v6DHhtnoM808PoWJLnrhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LpjlQ5x3C5y0GS9aUsntg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776219"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pdnAKjnu-StfNjKlk_DDQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LTmHo33H8lgM3A5DkgF4hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["snWFeoBCumPh_6wYJNdLVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0vq261A5n0vZb2J3xefmfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zL1TxCaQ1nzlRv5_Vq3WZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8giK6mKV7HDPF-jB4e6ajg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UxSRiReX-sDqSz7nCVXpzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yCBJRpYjYKO3ecqYeuUP3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4uPdEWYsvs4SFw1vIspTAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IkFQJGP6hdklKpjmMwHWFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lV971tLwMevoQHfu6FbioQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zdYgWAubqWFz0RieUZ7cAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6V7s4PsI459YFMwlUSPwxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["188373672314673"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["26pPt3W8xfk2EoAHTjVslw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zvfv-v1dDQYusgwWUDpBXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EVIFfwgdZj5Sv-6zyEIoRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6ee2Lqy0XDZh9JQTs8tvXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M1SyyMAcAe64T6looz5s7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gxzjL_p8qDzzo6NpgcG50A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y9EyIC7MB-aLTW4vwGDzzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jzM3_RaSHWvB0wG3aA8SGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GtJdhqX9xCV5VGVrQo5CNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y4jL0stzMTYWFXUGclJXSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xTQIKBEh5woXPXzDxLDJ5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A3a1Ysg6YpffbxqvXKeyxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cSZTax9ffr-YAd3FYSW_LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mrZRk6LFrzBHs2s8qGEBLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C-lJpxXT861Scb4vCoKH8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xLyFq0BB5wVhyMdsChAX0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v6Zd4rrrKmUTWtNl83vt_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C5p5Jd86H7LCTBlMpo49Yg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oVuo4Odmf-MdkPEKxNJxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KMPITO_o3WTOeBDf92OR3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aTfIQImMhlpayYFJYKzSuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nxfXKacnHOwFhdyFHmkaYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bv7KuJFIr0dHhLc5vDTivg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8vBDLL9ajILo3cRdIxo__g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NfR92A36krFu6OFBX_NJGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z861aVFL7X0OdKVxd3X_iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XMhsYNE-yg1lhTR9Ih4O1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7EsAu37ihslSkq5_KM2CQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_x2q29NOiLMSNpbpC-oaGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vf8KgBBtHJH4x3GXNPL5LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_cCjzVgqwRq1Go1-c-dLag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5oxfwQ8KKCFQx_Qdby36oA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Wm3BPPr3QSQFqdes_N00ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CtBrpsJG7vIeHk2xO7U9zQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a3xb-ssrGNekJuDgWvwpzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["11CuWXBuHwUfQSwUU9MawA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V4SdVA7f4ulo2UItR5v4bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y6Ek-APmesaFeQOrOWBNcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L-krqMHCCcuwJFf2rdvXfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G9ECosqumaYYOVTFlJRp6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["POjLBRcetnRZI7sxLcuaIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UdzbXM5vQvdHmvnJ6zf05w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dqSbVx6m1QzCICB8ZYQDbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DlLEick1QmXUtEBA2i1OXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SidK5t453tuGAMfasCOdQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SWXURIvhiV1ltnadwuzdpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iMbyDQoVJg27eBII-z_6nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["539321790240722"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6Ka-3JlTgkm2OGJ6k1gw6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WEhADZOmZ2629xowZEFXBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kA717wmtrauoztRQsgG4PQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I8d78PwZV4AkHoqpLI9UEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4vy5M6nowLFGuHYXyww9Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TaQjNmHwZdurzTYtBzNrbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c9q9_yo7Mt7aRPcMMS7TSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GoTiUMDpdhKLM1T4iTnbpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oVuo4Odmf-MdkPEKxNJxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["opKV73B4ba5Ix4sboNzZRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHHH56Gg_3eKY-7vNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6qn8dRThwMb4sKyHdsYIBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xk220Mi9zFcLeqpxwKjYgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OiUIbEMSSdSoHLjhM6BVYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lSf7Tc5yBm_fc-OBhMSJFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FJfhaknPBtFc-5rp-LqD7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zuJ6Un0oQQHrjEIrzmqZvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L7mGCOr6hDmWUKkK2ILung"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZIeFqlfxiST4dOSyrN_rAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dOIMHL9CWKMrBAKtwKwBGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gEu8zGSgCLnMsvKySIUTuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R-0W6enRom2neHT3IVU9aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeLqMJxxpT2jsR6Xt4zqGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4AxbDvTpu-aA3Q_KcpmP7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9XaUnPPtgxfYR4iOYVLS0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RFxzXWjR4kscab5MLb7O9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p5du1njclvrtK1OKF1VJCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8lih77TYGcMh0KSG5Nxt4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fi1wUb286zTbiK7_F0g4YQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Agnft5pwv37Rr2YjnFgSCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PFzGLySsfgDPspp8JOhd8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wkNFgmgAHEeZwvM9ZbPDWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jxKs4T5jsTKw_TwgxJuX1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["902250717641659"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7so5YKwv6-K3eXkjBd3E2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["857406119818438"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QgKoM_HHJHxpVgNd2h-hRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-qwk1sk-kwHBtZSyFatpjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KWNGCyRmkC1xEn7URSn49g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dvV0frbzzIMo5IEep2DrYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mMJCEhMX2OqRBO9KjY8WmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XoQikJ7lSV9HsNJAH4LTgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0j1wiZ2zi9t7EenFUwZ_Qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zo4C1xxGkbnF7lTJ1cO0rA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HxzITtTGkTKaWWHGey6FdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UpYGXNFuNKSS_TxIb2zLdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1t0A0cwqqnxS4RnamHOttA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nE2W3QU8Q_gSxcGmy1L07w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776145"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E6RGbwWm0dVxqFwOWVv2aQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["buVgMA22PwlzKtTsw_vecg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kXmrwjMmwWaVC_ReuC4ACw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zMyb7cX8I6ObuUKiX5YshA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uFfy6tMD89kRdnXjUB9Exw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PwfEiAPNQKzrFl1e-iXV0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k2877jaRcY_Xwxl90RYOAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iJo4ez4PuCIPz3LMt8or7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["36zXeWUTQ3GViRMIlZa29Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EBIz_-mHvJb-jtxFCd1J3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["15Mi87EWZutJB4cK0PXpjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NOGQ2fCgOSotecfke9wUVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NA_SRlvcEeTb90WzagQR1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q9B1hAQOLo_jfRAnyK44QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kWecWBu1LfclB8J1flsEoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Akrp9yIrXr_ryMAZNM70fQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZEdeFMwuL0Ijslo5YXl3tQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6G3yOrfgWU-MmHK-bx7pRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u4ENslLvqJ7fMHP-2q_rdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NUvgKpMCEkNNiC1zyhgNig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QMxWy-HLDdixOY7zgrqBCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6QySVXDyX3G1zoxdjACqvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy7ehlHJjUeAGoBTZAGRKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XIUoVbDbMc0bWstLy1wrIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zEIksK3cfonq6bczdcfCPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3kBsdcdJuehrHwupMmytxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [3], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5C9tVBswSQGz0JViHPvYNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aQKF-lZpsjIErlLR24edOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruch9eRlQqOnJ3ZVNLKC2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lQmbf93LWPq2WiUz0mMawg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["svuOXkVD7f696L1kXWuSEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_9EUaNCl3IuE7tIxwFYMuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DTjmqTIfuK29CyAvA4mI5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8qCKX3oImp7i24kNwHLQ1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yrePrrfPvgQuAdwhOk5H3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZMnBOSVj41408ZF2xWlR9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UPk0nOMfMkr-e1H4cfaRgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3v8U1mpKDHrnwYgVqKH7yg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["45c-vEn-WBFXDhGB8cTsZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gr_H85XinNcu7ohea8Ev2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dG9xE_FqAmBRVjfHO9kL3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NkrPNH7bWIbJpn64lkiskQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["902250717641659"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jYDcO_10MMmj90cLQU-PiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["79kYT9YweA6MRDhgEUmzgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HMdmoo5Eyynmz0zom3NzAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JR6E07WvNgJwpTlm8l-rDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pLzEWCPdO8G1Nsr1cgNccw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JvT94dVRKZeOgNA295fEAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VwUylZN1Ciho38uTRm9iHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YfaF6apd--i6ujBLpl-HyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow01"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ddRcEglUHvRB0GTY5px_1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jSW2U4_r9a5pRRoz2fHRtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ziVRbL4J2zmIimCd5dnmkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ccuRE7rvGbylFOE2-Vdm-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["26eMbIowZ7RFzGdD2uFyMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yeQfSUI4_BczpbW4QdVcSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aRsHfQoswd8eYLTSZIr-jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C2Ql36p9WjZ_86YIJErzgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o9rrwXJbM6W3KhAnab2hlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z_8-OcnbKRTWePRhYPa1qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Bpc8eToJHZimyCogMpwGRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0pVn3RaIbpVhn8RviFIpJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z_8-OcnbKRTWePRhYPa1qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-kv1BoDC1-yq-sDIUSVHvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6epEt039prWDA1mKzr3j4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1t0A0cwqqnxS4RnamHOttA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Cv-Mak1VlpmhEVyP9U96rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NOGQ2fCgOSotecfke9wUVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q9B1hAQOLo_jfRAnyK44QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qBq-7m-QnKdTZ7IgrjCZqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruch9eRlQqOnJ3ZVNLKC2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5C9tVBswSQGz0JViHPvYNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EVIFfwgdZj5Sv-6zyEIoRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VFYhhz8sqnqMXy2BXfzYxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lOrPOhwAdGMUyqGKuk1vCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yocGo0BxuP0NorkFbAsu9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Wm3BPPr3QSQFqdes_N00ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["11CuWXBuHwUfQSwUU9MawA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PlHE9ADU3mZbp8w0yqMlvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xG-J8jMWseGdOU1sdRBQdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6Ka-3JlTgkm2OGJ6k1gw6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c1BBf8_D0Zq_e4sWgAdTEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f7riNXLCE7Lya9tYdhWvxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Sw1kweYzAnossvkRogyCCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bQ-t2me3no7hrG7BJshXNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jxKs4T5jsTKw_TwgxJuX1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["902250717641659"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q0Tyb7jka2jL30SZBsJhvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T_TlYqz_7B9a-y_GWM7_sA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MwXi-DFSda8MTVxk8JD-uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_bJEnTtbOe0IZcVirgheKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["298566699369502"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8vBDLL9ajILo3cRdIxo__g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776219"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pdnAKjnu-StfNjKlk_DDQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_x2q29NOiLMSNpbpC-oaGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I8d78PwZV4AkHoqpLI9UEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3kBsdcdJuehrHwupMmytxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c9q9_yo7Mt7aRPcMMS7TSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CVk6bBh2sasSABkk2yreCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dobhl5ofY0uMkot107beaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L7mGCOr6hDmWUKkK2ILung"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZIeFqlfxiST4dOSyrN_rAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dOIMHL9CWKMrBAKtwKwBGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["giBWEt4QjtavV9fwylJCFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PFzGLySsfgDPspp8JOhd8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kju3wmSmA44jDZVegFrCxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QgKoM_HHJHxpVgNd2h-hRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-GVmmBBa9yr-m-ILwf5zlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "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": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sZS1XfsAKfkUIk_B3D46EA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ysjD2KEV11Q-X20IVM68Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EBIz_-mHvJb-jtxFCd1J3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kBSgpn7ZjmiglyBaasyctQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8giK6mKV7HDPF-jB4e6ajg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TZXiSxQTQpQch8zeigYG_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IkFQJGP6hdklKpjmMwHWFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["seEJBjI353Jgq3ilVgUOcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6V7s4PsI459YFMwlUSPwxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["188373672314673"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["26pPt3W8xfk2EoAHTjVslw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gxzjL_p8qDzzo6NpgcG50A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A3a1Ysg6YpffbxqvXKeyxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JvT94dVRKZeOgNA295fEAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YfaF6apd--i6ujBLpl-HyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["05FOW23jM0j0M9jfmJ93UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J6jWZvvVcvb8g3MeES3S-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dqSbVx6m1QzCICB8ZYQDbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MhKbOdyD1AepHNZ5p5VKbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GoTiUMDpdhKLM1T4iTnbpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ApduzXDNHCBTEfxGmtNslg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P0zu1s4JzPjPDd_Vd7cn6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pgCk94hEld6tri9k3zTI7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oVuo4Odmf-MdkPEKxNJxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D0btI8J3q8CjKMGLeUsKig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cJ9JggUwtbxQCAJye8Yvtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zuJ6Un0oQQHrjEIrzmqZvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDZLu2kbgCRTlx5C0tAU6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R-0W6enRom2neHT3IVU9aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zmESUw1Zei1kvjzl1SZNaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vIBbtxLj7A-Bvzlt-bR08A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uBbKBM9HPWXmF7lgBbqn7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cnfVvs_A3k1-m1CA0ruWaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o_Ot9q_vHiqyt6z_tKWMiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zo4C1xxGkbnF7lTJ1cO0rA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["41wmIH9jwMlMrZWTpeKHUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yCBJRpYjYKO3ecqYeuUP3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_9EUaNCl3IuE7tIxwFYMuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow02"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oVuo4Odmf-MdkPEKxNJxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ccuRE7rvGbylFOE2-Vdm-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c1BBf8_D0Zq_e4sWgAdTEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Bpc8eToJHZimyCogMpwGRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q0Tyb7jka2jL30SZBsJhvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["seEJBjI353Jgq3ilVgUOcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ziVRbL4J2zmIimCd5dnmkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C2Ql36p9WjZ_86YIJErzgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MwXi-DFSda8MTVxk8JD-uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gxzjL_p8qDzzo6NpgcG50A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_x2q29NOiLMSNpbpC-oaGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z_8-OcnbKRTWePRhYPa1qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YfaF6apd--i6ujBLpl-HyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Wm3BPPr3QSQFqdes_N00ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pgCk94hEld6tri9k3zTI7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDZLu2kbgCRTlx5C0tAU6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["giBWEt4QjtavV9fwylJCFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QgKoM_HHJHxpVgNd2h-hRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow03"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cnfVvs_A3k1-m1CA0ruWaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow04"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z_8-OcnbKRTWePRhYPa1qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow04"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gxzjL_p8qDzzo6NpgcG50A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow04"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ziVRbL4J2zmIimCd5dnmkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-5pow04"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pgCk94hEld6tri9k3zTI7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow04"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["giBWEt4QjtavV9fwylJCFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-5pow04"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Bpc8eToJHZimyCogMpwGRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow04"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cnfVvs_A3k1-m1CA0ruWaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-5pow04"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MwXi-DFSda8MTVxk8JD-uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-5pow05"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gxzjL_p8qDzzo6NpgcG50A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow06"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gxzjL_p8qDzzo6NpgcG50A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-5pow07"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gxzjL_p8qDzzo6NpgcG50A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vIgNMIYNO50uX0uwG_2roQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MYLOPIqya-9hbxMvVtHtEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WNtSSbesKL5OT0QAkE8JWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AhFZqwHd5QXLapCgztWs4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nxfXKacnHOwFhdyFHmkaYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JPBfprFcYI4CIhppjQEU8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bv7KuJFIr0dHhLc5vDTivg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k0HH6HkmrO3PjuCrN5xpqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0QVqdJlbcVihyYkynU5WiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OQ1S2PH1wUAbKC6td2MEOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["16M6oxTVsLMHhLUk75IsNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WgBd1iqmjwXGZyMKT4ahzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w3xnKikVInZNF5EAfNPcog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JF-bEOX20dA6FrlaQoCfyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vWLhaRktefOGM0ssEqx48g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9v4baFRxFkRsX202a1Jlyg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["640779771810114"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bVUsqm-nV6BS0DAFr15CVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["640779771810114"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HJxkp_0dYxVVXMM8lFTP_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M3TLkod4MtIDVAdTRCLeig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H6pBqnvAiGefFQR-0xq8Gw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XKjsZL2KXpodOfuFoDs0YQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7ybeLjCjozZ27_Bx43Kdhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TJiX4Sic6no4nhNYgmAWtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jxyWk-ftBO8W2R9Uu6H3NA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mLzfB9o1Uee0MJuuCHe0GQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8sHt7LZlQ0liSOpTVZhGAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0n0wDYacvgyJbPpg0CkiqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aSNtQdIIqZU_wYxiTx2dhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vf8KgBBtHJH4x3GXNPL5LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9id7nFkcklBOakIetBYt8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UD7rLNy1lzT-Ks3eh_U7fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c4r_QH8QJIos6k5aVv9MwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GVXKioR4pgAUvoXdIcddmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RH7b2-6pjWsXgDNoHlbTOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gIXSLAy11Lynu762yJRpHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PBPveHYqj_2L4V53YjC2Wg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jdgB-PQx3akdszRCWY1b1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oxqnHZvOMinR2p9mVNarxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OqNgSWSKB9V19yC_3zOwUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7sw2pjFKONSht5r4eb5rJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mKzwFx0glHZhbdarRs_chA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jO6NTqpGp_CHUe6zBHiSDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c7VLnPrfa3Wwjmd8BayeWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wzVhadaUK8xV2GgSkf93CA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7EsAu37ihslSkq5_KM2CQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M-MVs_7S3urLefk1LjOXMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V4SdVA7f4ulo2UItR5v4bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J6jWZvvVcvb8g3MeES3S-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VIKRNYe8GVsCLsV0sfiW0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Bjn8FdST7_4Bu-4l28hKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cnRaDXJC0A8G279UzF-vXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2E7wIsuQRTOhAo16QgNd4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mQ3IrIwduPQA6-1ZdEttIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cFy_pCXF1g2GQo7EjKg3Jw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9fMnyLUAwoiJ-nSwRiURzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UQ1fVd58k2fSqjQSJ4y2iQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r16MsuJNGd9pCkzewZ9UPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_gSF5q7r1647uLbZILJYkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["POjLBRcetnRZI7sxLcuaIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UdzbXM5vQvdHmvnJ6zf05w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSo77erAlkE9Bu2Gej-2RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzTtNi1gMdKfhJuzA7AQFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DTmxsDAUJTkT6N4yEzSMew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dDsvo5FXLLPMF55JXGlbNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JlmUYqLcZQBfpkhkjSjA4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZSL-nv9vuOQuUQF3uUa-Uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r-p7M-kKC5zkDCGGaQTwtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7EsAu37ihslSkq5_KM2CQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l5hQ7yEmTyf7pvGODN3WGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wtz8tLQcs5niwDYcEkJzeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w6eG2dWgFKo7rTxck2geSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u8aJEohVcGlIauanSfDd1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6F6cUqywicK0wh-Nt0B7lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z8jNOELsk9N-t-k8xkKsfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nm8JRHH7gW7nGjrzSQMYmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["223976284759160"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WD0vkI4ZsFJX0JeUNoVLqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["889485102048138"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J3fgyfQdG3GNnC2oPsxhXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cdPXuSrcc-e7Xc6Ft_0zLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["03xBoKk9QFKkTcTaYeCLgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l_BdWsCefFCMBHxXtyw_Iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PKH_u6ChhJxckDGOO_zGyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oczIRi-epiNY8m0vGbpfmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6Ka-3JlTgkm2OGJ6k1gw6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jM7OFL7Ib6AomffUSmDWMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9x681JN1h3SqDZwU_3b_Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gb-XavvnF8N6aNRB03ZHSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XfPjxqQV5aAbG1XeZTL6tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZLm5Ji1NQahkliKAlwO0Lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ENd0ZQPQhCBrVRTzVrRlTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fNrC3cVS1zvFAJzXdUT00Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NzgebI0nzVnR1pYzslViEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5N_PEF2K2AAT2WWymgXy2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ocw-0y52e0CJonP7I2wpcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["21yhTyFYdhk_uY8yPTzDuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TyPvb67X2QKa-JckQs7uaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dnn0ifBzTRyMALBIYqyvxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c1BBf8_D0Zq_e4sWgAdTEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4ZzGXzdUE94DgCIvdx6jaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xaQtJm9p00-Jz117AlZe2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b0tSKpedfEEoZID2cYjOVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b_iWyCligVK40McpM9jHaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Exn_8xTlBgjYEBW741hd8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ml3glErZ-ktsF5LNe_im2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xzQNBRGm9wibhQxq1fgMrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Lcyn0kBqq69ATX8SPy64vQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ha9i-u7s9fKx1HFoDNO0Kw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["773504632786234"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9yk8T4T4bor4dgDKsooCzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KtdipdI_zfkxpFcGZuJLlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4vy5M6nowLFGuHYXyww9Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6TvPSjgriSXKOKa1IM7e3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ay08OUEgW2J5aFmlktUamw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q_Ms3K_obdgs3Mo6mXa3bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YMwKGJse1CpvmNsnehzS3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tNBOoQnan6B2t-te8ufD2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AmusQ2BbqvYO2k_O_i41gw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J9LNQqc3lXDIZom0g0QDQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c9q9_yo7Mt7aRPcMMS7TSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GXIz77FLzTplaCOxm0B_0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xbY1WMOHeCLXx6Ve-mWwpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zFwamFTlz7hC5kbQ7mVixg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Hr7CeItvPy8I5LyzxNJdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zaOIMjTehAFaD95s7HxmFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6wH2PMvQLOzb-w20cckcQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C0EL1h6q2z9LqYo98KuOtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4iIp1XpTkN0gp_0KOZ9YXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FcBisk9MBJiEm5RcNYQgJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JgUfQM-rwdQlgto7hkaw2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MdC7UfXClsiVIyHGuuu20g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xHwJcsLzjdXyp74fJaJKbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oPUmSIMMNxEiuZQmO9xSOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F7_rX066p_KJ2FxuoLLfiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CVk6bBh2sasSABkk2yreCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hhTQvJNxtR2eGzrU16lmJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["17yX6y3HjSnExB70KLrL_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v634lG8ScPFYcBIWkjNICQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gjBgpr41DYkilzGufiTHQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8xJ_FuKEXuGpNKjN-cCTew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UL4wClyozacv4jOW1_IMFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xFk7zQayaC92LKFIiFZIXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["imiOXA4JwpWO0duCac7VDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L2tnlnFGd85PzXoftF62tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_5WL1FeC7D0JWAYwOT6i8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C06EKCiyFx3Pn4eqP7_0Vg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rtLWsf0bQDHrSMWDW9YU3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gbm0BnsYQfm1H2YS-j5tDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iNtkbY9yUtK3XcUEf-ydxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b8vG5HR_RUdJ6w8U89LvVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RgOrqNvnm-Pz3vaDkqBBSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fz5MxEQE3535thZWvwej0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KSlgLs4KuRHUbmWiYnIXRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7wlHqM6Sb0POC8ceQA6lMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kRd2tupGjxrjLahazps8Sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MtYMJ4uu1e8mNKc4BTLu3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WHdLU06VujMoiyFZz-6Z1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D-ToJgKdWowgyxDTv_PoGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["41aS5Wt6o2kU6WNHSnllLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ioZVBmSM638A7ggN3sTWag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vZxXRva_k9rxktoXW3i7Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VNkLTUfwicmpAGbJuAZjxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iyhvBiSYTA0NUPt9XPgw9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I1Y9Ni9I5xwaBA-6EzPx9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4VLcatrmtkpRKC6Z8ESAGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["whjQnYnkC1qOzcD5V7FwRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ghkW6t8RwXibYrUFVPCOOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jHPaRAYIEF5DCPV1MxoM0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TRUnK-WWANtupdruMNoGhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5qEIEHhl2fpx8ABpVcKHWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rkmP4tDn8QrR2_LXoPYpKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pgCk94hEld6tri9k3zTI7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PKalH8x4jaR5jSF5ZD7fNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PW7zQ23afSzZi1XCupz-Ig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xSer4-is-N3oCq4jhytMlA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qSGUIJ9pg8er8yDjtpY1lA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [3], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dZVhEMwoIzMGD6Fthzhnhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ibDj5ZZUt6AS37OrshiJdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3kBsdcdJuehrHwupMmytxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OiUIbEMSSdSoHLjhM6BVYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mG3uazcAGCpfIp0QMrP4Gw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CQZMmwgNlqYp7kxz6XHs1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i9ooibYAKsAu87Iou-AftQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yeQfSUI4_BczpbW4QdVcSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g-VGT148bDBcpUizwj3LXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o1IV1KtEnO9QgXXJ_2WZhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qPD_FES-msqkj5vsf9kYfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MOn_jA1RJOEOCR_EdpmQSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zagslR6kwxJJ6S1R1ldJRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KLTnRb3TnUCXGZZ6IpB0dQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n931PCUhL26jfJ6Qa4M5Iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kGaKyx04V90ppp1jAoxQgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y-HHCWyQuqsx_aX2tv_uAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i3qHsjq_vKfKNLwOfm-i7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NgLUpYh7wqTvP5UPjb3lEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IfCePpDTKZ8xQbRzsJ4WLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jRNDhOqXBGS54cSkvIu2Fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sMu3Az0KqCo2Eyzj4F1TlA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RBIz8YSqwEsI8vQ6s401VA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l7TOnfsZ0Oz_cxAh8t_TMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lSf7Tc5yBm_fc-OBhMSJFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K0MKqv-eV06bvE3VYCWJow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x-dvfE0WP73LPsEYuUxfgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SdK7326n2wD9cYNG5ZgF7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["915058604027130"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZQu4pKifTxhqaBd8ZvnVQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lQ5a90yyfu3YQ53fwCbEUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rxNA2GjOg2EUyKRRxaIxug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XWzJzUy7Vvm_2R1Y60lA8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["402856434502201"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XRTFr0ecKlolYPr7OFrIwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["362271319534141"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["swfD6YCCLdmhl6gow4zpcQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["758342188863263"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i3VVbQEF8y09CAolsSQBvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WgfE3EpDBODOIydfExij_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["akaabcBUl8tIrbdEdxLvXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["108795321966692"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4E_lG1hn0ttWHrWqGlQaqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iN2Ofk3zy12fitGiXI1OjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hJtVhWAglQ_RhmTssDgfmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0uIdPWEH2ddbQQgKgSraCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5hbuAw2zDBR_MfUaW6-wRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b9h46ZBYMkEpYhwneGnE7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b8UPnaUnsvBkW1Qnyq0aWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mbBHks5z29T0bUsu5EMQag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ld2W0f7Ym8RC8Y3ks0qozA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JKy5_VqsJK5YT0i7cfSI9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WXat65Sd_FSb3q_O_39_OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DrHP-maKMXt1WSKlYDFBcg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ViebNdABRRrwrcxNcWnJEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RcNPwSZ_RRjUo3KUMQkJwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [3], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["syiikeoV8HsQ11iug6Szrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fR91DMhsph9eZTKyrXc1iQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZV3_FaAdqzPCe6bEG_jy3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S5e4O7lBx37gz0fcZIzqtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [3], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["txZXHAJurNaMIlI0kux2YA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q0Tyb7jka2jL30SZBsJhvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_tHnBNzSyqzZjLju1VghBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["87CHyrTQMBEvvzlb8FihBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ajvgr8YYecNRW2djHSe6jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9FJI5HKsAIDyEIpw9F77Pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X6b-9jZFuboLrqv-KCQf4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yUWsnzO4k76J_1XcjaT6nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rwn-emofvSjsdxvKAf4KpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["272326412587439"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["49ypE05vMmaEKO9rDQTgug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["108795321966692"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c_tET_0OC_GKzFyzhalhSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ctl6ha_BM-ShLptZgtFCfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4RDD13AGJv2QRFllRjefVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o9rrwXJbM6W3KhAnab2hlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tk9nnPSRs0UXmOv0kC-f_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eTnAPrtbI0UPiiHhSjr1IQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dhoLohkKaxq47PiJIksXfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xtQfsuim8hcKpQY9alqcIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eLGJ6B5pzf6VzkaX-T-tjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["108795321966692"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1WJhqcUqLhbn-lKKloL3Iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["goNIrfII85QQIfgfQ648gw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-tG63aa4MqAGxDURIhi7Hw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hgd1f1L_CW7sRmHb0warYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N6dB94SEYMjCukJ9TS8bDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Ql87_XD7x_m3wC-TEuRLw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Agnft5pwv37Rr2YjnFgSCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B5EdnpHaN6u42aLLYRQ2hQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UeeN9w2TOFRltemf8fqzOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pztM9BQ-fjzy-dCQKNMjPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2RyPkubYvOhcCvhjZgdRTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nArRvnXOOBjM2AHWa8PuVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["320436511443"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m5UMdgbxI1wxlBz3vjrzgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["320436511443"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GdbfleJKJp8VauALzj2x-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dh2FW9xWWT13Dt2euwStXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UbZWbU0S5kd22SAXz7exPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EEeUn8b0Iub4lrEKoW-5lA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["366298156948152"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yo9qkwTeVi6r3OgJvNCP1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C0EL1h6q2z9LqYo98KuOtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VgrHu6f1LBh-n720CWflw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g-VGT148bDBcpUizwj3LXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kju3wmSmA44jDZVegFrCxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t6Jyl6ams8foz3V3MhHk9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tyB-SVqui9azJXAO4c3K3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TlYJWGnBS9-rQro1JWkfVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Bpc8eToJHZimyCogMpwGRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FTAhytTD-54lkJE_7OpM2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeLqMJxxpT2jsR6Xt4zqGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mnd31Vnx6i_r5WV2hM5bDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EZ2YsSTqh3amiqmt5jrW4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X6LF29qeuW-SFBwoJhTnAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["upTWniMdF91y_cOS-OvN3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H1yy82oouV-ENepJEK15HQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jrT2GruQyeVXsK6hiM2AuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UZ8rlHpyHU_5rmSXnTnxiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [3], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qPD_FES-msqkj5vsf9kYfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zI2aRfMoHaH-gZiEq7cj9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jxKs4T5jsTKw_TwgxJuX1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["902250717641659"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Bdjijs-NB-vAqWMaZfufMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["773504632786234"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QSrekVp3Aqc_-844xrh8BQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kTZBV-McxW5nVoq0bfDnwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ktzYn_vjXNgMuyJlOX5pHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hBUFyIS6_MPCOWu-5CqrBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zqEaDpKRyJAOpyXtzl9UkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DTv1zAKsMig_RbmQr3hEEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3jx5ziVarO0rH_UBySTUCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NV6VnAF8jT7vQfk1JyGXpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gW3Qw94HVgEkWZo80m3bJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["272326412587439"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P3ialIWlnxijlxjtEz_ZOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z_8-OcnbKRTWePRhYPa1qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ReBSsFsGGDaBt690LaHypg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gI_am1fwTx9YAJzEsSed9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EC-N90X1-cY4i7M7nO-spA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["38N-Nz5djScZwwbB2NxXDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KWNGCyRmkC1xEn7URSn49g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3vt8oTjSVhChgy2VdDHcdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Sy9U-PZ9ZdU-DFhAHqPUlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bE0kL6kSsxQ0BcAkS0-TnQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pN5IOT_VxO3_wUIBhsiEIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B5zce_f4N45Itu5RhOF9CQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R_HaHETxWktGeCRqpOJ8dA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jk1zGZ6FJdgGFQYufgY7ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3AzTtEH6jVnKZJZ7bEruww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UsI7pVrWWavMHSwjGh222g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6waIIi9StjlrYFV-4ogIHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jugbV3zZUNUFdWf4_ZIyzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["223976284759160"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WWLGRQ_5C8xQmKnrR2xqSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XoQikJ7lSV9HsNJAH4LTgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YkDswwGDcRcULSbyMQBvSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ebUgTadpLb8gm1e8lsQWbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UY9b3d4OnCEDiR5-aB-YVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8S3xYS2HNOX3YbvsQit97g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["331754333305812"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LlYzfaShM3xC3r8aP013CQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HxzITtTGkTKaWWHGey6FdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776125"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fwTV7xcQOe72cAjxcodFbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776125"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vGkLtxNBR6Lr1M8J7YwcMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xTvvRHUaPoDdRNt9HJAxjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RRSBTG8alx0CWHE1k2AQIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["27VmuMaZ2B31ynhtH7MV2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KcOiTTTgvYGRMXlpLOi98w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m0J5IPQkjfw9DuDn33ISzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EqgJKTQHjXKf5Hm_-bdBpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vozRSLCjLToa8YixKSyrJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1AUluavEDFWSryJb3xLzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T_TlYqz_7B9a-y_GWM7_sA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_DcUS5h4tNHVKchEvxD8HA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z0x2qcndWnWv_949s_B0kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OfSmw3kpU5HlRON7vl__6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lnnrocGqYOi4n8uKvO-lBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rh49DkcU1mNwsRDeGnJgHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0zW9pXo6mj0PNWCWCag9Fw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2sFyjRFnhRiXkq1Vg9Y4zA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W2lHKIZaQkTw7zk52w5a1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FT_-S3dtxKMT-rFNNrYSGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uiBLaHBhyxDqu_NZ4TO82w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_eN577uJw5hksIBqBf1iCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x4hRUQX54NRZQYMyfx_S0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [4], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vy0Q-WSF5dbbwZxkb9slNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776145"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TLbgSL9Zw35AQNlV8CH_ZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776145"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UjcwmQF4p5_9XdWwQfdqxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776145"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c9Wp-y5_7FybvVa662QrHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776145"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N51twwQ-uvjl9L3xxzZX0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776145"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["buVgMA22PwlzKtTsw_vecg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BVI7-9Shiru48UhVo2eoyg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["188373672314673"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2C74qCVGzZTHngBDop625g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9Uey1A5J1-R-pjj8BJadLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776156"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5cq_GlWOgDPPgWZmR1FdWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776156"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OO6h3jpx_OeMWFoqtHtGsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776156"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XJLcK8jkZLug-hYNjFZn4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776156"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HleZ43SDVG_N3JUmOfvcHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776156"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kG0gs0twniSACyYUEUfgmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_n9dn1tcT4GqEd-xBF48aQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fS08xi1u9SSHyC0GsODkdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9qiI7c1EsKF70-9DzcnXxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Bg13tQoAawk44svPY1yTZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mfPI-I_qFPUYDnGYxnk-3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JfAsfEbGGsaRpXuoYj9m0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["504cODi5E3iqtKGXXZCSMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ccfud6PDeDW3H-_qOx6reQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FFcUwrs4ffbYcHn46JPyzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zMyb7cX8I6ObuUKiX5YshA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hPoy_NF5OSgwwL5UAOzu5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IBEKsb7vBcjUCW1wEZutzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L_vMTFYQ8NEKBmN0gUNvSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lJu_iGqX_IjaCqq1SMsRtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FJy0IC1EylQCTSSSBZutsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-vNIUcH_pVq3rXT_PTR3xw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yOqIWABrxJsjVQYhq-4kzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bwQ3geR6Dc9xi0t8guTHew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v4I2JWrGUfBNr1h7Qt_viQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s5A7NO-IetfMgExlVLT7DA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ME_bq-JiBTP2TTuqawOqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kUYKNSX4GPJ3SuIfrag9pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8XEHZtS_mTKkPthIjGj2nQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MIISvnstjgGN5Nr1tBRmNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2O5kOZJ3_Wglv6zDEypvZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U0cf28-SA2W9gVX05wfbAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eP9q_fLIb3pZLTYs8SQrKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_eUYL3YvgHA3_rAv7tW1yg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ai0eTg1yYVEpKADKsZaoRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ktsy2Cu5XGbuKFzunfsP8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R-0W6enRom2neHT3IVU9aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "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": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fGpYIWgG6iM380xUK3zO5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kAevgyPrUYMi1qMg2RT9YQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cPus8bV0OND2Ha7sjGKd1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j4KzSSQDpuya1wIDnhP-6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["752276635735424"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9Gz61dBIC7ELHLuPOdyJhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VNUy9Kl8PZqeMvwb9TiUaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z0x2qcndWnWv_949s_B0kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MwXi-DFSda8MTVxk8JD-uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cxhTQ5av-rm2EqR9mYi1wg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kHECybcfqN8uWz-3bszMhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xk220Mi9zFcLeqpxwKjYgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UsI7pVrWWavMHSwjGh222g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jL-YoCP6m-foEcRVmjKhJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OMe70k_uc6xBG2sbBtpHUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["prlJ2PdpdntL-7u9l1ZVQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h2Ibe6HNlmTaxFcHlQkktg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LZvFVTJOMfo7RHR7D2PEUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bGp_k0dgNQaJzNCJfp_KVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IS3h9TbD3pnH8ulT-D1YfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZkdSiPfKIHhfSeq6Qzpm3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3pcee38JQGIYf4rBrJUHKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["223976284759160"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1F5okdkNPV4sVd83X5bYOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H2VeIiUYo-0rRucz1YzC2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9JcNV7-9fkG4ACBbl21Xuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zgM0FrkiX4SlWr6oMgm_9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["peBwAq-Rf6egCmV1lK5X1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SnrnvQoDfswWva5evHB2IQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["773504632786234"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2FO6mUwKH4shOgUheDEvWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["223976284759160"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5oNxv_7bMfCjqa3eBz_s3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a1s5LU-rT5zvSIgKmP0jJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZpjYqKFeza_P-0E6-9HQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8ig1iwolEs0FBT0sURsa2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kbEUN-QOQOIjM5mfj2ILfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhJgQDxmkKJzBGmmGPAG0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rFs-0q-mW95c43NFrT9uBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mUUjSkXYtF4rtngUWjmeUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EgP9UQUh1MCTJpxBEGb0Rw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lnmcvnDnosSKMTYvgm7Epw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X6cjQDPHncRV2XEnR81qhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z93g50d8HwYpd8WV7J74Hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zGL0B9VberxW4FezGa6l7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UWYay9e3HyKHpRcyjCQLLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x5rAkl-7qPFuolZlWPAkUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aDmfAmT07s3C9E8zzE3cJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R3TJa-RfHMrAqkxUB4NpsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zPcSnBNqWAITrQcVMpEFWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6K8OgHnUYjtWyr4OsciNiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fMerBmdQ5SEVMKnQRqQ66Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PxmYvGkUV1IJA8Ols16StQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_F4YhR7CPtPMyIx-kmC0Hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ysjD2KEV11Q-X20IVM68Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p0Vv5U9TyuarmDvqQJYvgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HU2--exZrcQBziKXZNla2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sYfRZVNbwtdDZNrhqBw5fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dOIMHL9CWKMrBAKtwKwBGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wSbB6NvdX_S4sjuO5XbtUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0umU1L_QLm_FOFwcDc3Pdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AhnnJVvJKhuW62FxeUzbYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FsCxMtizAzay8smRGSitBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BGIHiDpY1YP5dvRehgwWHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x-dvfE0WP73LPsEYuUxfgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l6bHYtW3gLMsVCmazSwafg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1VWsxO3jFJmEihuGjZ6n5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bo5HP0vwnRoASCXAZGTlKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mh_-Cny5cU4tDakx9JerXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OiEKttNfeIlKzJGA5z-ZNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y5MAeJ_kAzIzPg9zSs4Gyg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LZvFVTJOMfo7RHR7D2PEUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3vVnQBR0KSAbKxg9h0tlTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yUwNo6h0RJrKD3MAvvpzhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LTrixagg28jINMLbWPS4sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hyslIhEYrdCY7Y2kR4LC4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L32M8nUjWcB8ZD-GBoywbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2v6DHhtnoM808PoWJLnrhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b24SYdtkbKZNKbXUua9QEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["78g2NV3y5XhUtCz2lybgzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kWecWBu1LfclB8J1flsEoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MzVhQaF_xkZomLV8IvrG-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LWnst4pCYWcBpZh59YPC9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["108795321966692"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776219"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LpjlQ5x3C5y0GS9aUsntg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m0DUTT-orrZNLCpCBT229Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vbVDNryVwMzLbezYWCSjlA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LTmHo33H8lgM3A5DkgF4hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["snWFeoBCumPh_6wYJNdLVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uZ2h5TgkQGTbTnmFCWbIaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ayUT0DO-jC_Mh--DNMewkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FceHTBJkHyJnfppIQCRv7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rok93z2LCfJ0ZJK0AUi9yg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Doe5Pg2weXLqIXwvr_cG2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5hQDQXVFSWhod-irdUh5cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HtqQEgS5dAjy2dvKTnyLtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0vq261A5n0vZb2J3xefmfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KkGYRkVn12mQsi_SGM0Jrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAga6sY-ILliizwOQOLq9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cA_Jm_35NEFACdYbyTgseg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u4ENslLvqJ7fMHP-2q_rdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hzufBopUmVOahF8dluG49Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6yXKe_on43mKRggPSy_g3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vUd7LUOlEzT1w32bH1zYbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vjTi-nJOu9I_8moNqz8iCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uoopGdRXF7YsQ5mpcE9ccQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MjnEjnYGv-U9rs4P9zuGNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wlpgBzf8EwLf8rXDcgVwEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YvWyWLhAImSPM-tyoadCrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ojvRdtV05FCfJSfO56kH9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tUqIS11DapMr3pZUA0k7Xw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j254-j_AtOG3kQK-qvpPOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uFfy6tMD89kRdnXjUB9Exw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LpjlQ5x3C5y0GS9aUsntg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rweMcaPmnPL4I4jcQfxf0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WxcGXwfcqKNpMKE8zhEFLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1EXI19Z-O3qg_0-FXRlo5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RbKchl_4xnq7yV-Q25CZiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KYXNBFEaST9joFwbh1TNtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9s3h3ys1xkj1UYVqdYC8ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RDQJAJ6Er301BF3pU5cp8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["14429572553353"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CZ96dERRqph9zG2AZecUpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["meCjbo7HVKiASc4lT5GHWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qBq-7m-QnKdTZ7IgrjCZqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8xJ_FuKEXuGpNKjN-cCTew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FVCO-2DSmdo5cwb6xs2XPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5UNOLHWWOEbx8VEtnMeM4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jcfk66YXZuy5CZSv7G2qMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A7VJJLLjTUy6Yc_w9sUC9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ql4tDv4iFbtic0VQeulf5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruch9eRlQqOnJ3ZVNLKC2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["um1TAUTtgy6aD0pdjdvpug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XuKwddzJMYQ3zNTaC_ZL7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["709jvaBVClQ_fHPobLQWbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mfqAZXGyDqbH1fPMX0xAeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [5], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5C9tVBswSQGz0JViHPvYNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N6yoC5MEhf-Plh-uBAaDFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lQmbf93LWPq2WiUz0mMawg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DPmaEuSvgw_bYOsbepNixQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UVrrjBvSFCo69oeflIjlwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zdYgWAubqWFz0RieUZ7cAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cABoYY6pcOeW0BnpKHvYbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rNUfXAhSNYKhBYrPXiejqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0c7Wf3iRgF2yaR3Vh4YEbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bIr_UN9A_aOvoztdXgbenw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KxkXbAPId9L6ej0qROOBNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dZVhEMwoIzMGD6Fthzhnhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6qn8dRThwMb4sKyHdsYIBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZARRyTs-pxJfGWyxfdSvhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aAKfq2sw3U20jw1YWMDRmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HXdq657THMKKpJpOzApCpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["96Gpre1S8-BX3-iSwjuJ3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-_xLuMKDp3FvMehau3GQaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cwCCGQnhrBpXYeJR6UO6OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a9RoNb_CP_QBiNsaf40rTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsLS1vMfeRFS2PkKyx_Rpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NMvk0bRJU9YFEqW7dUmPTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["135101477313444"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "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": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TyPvb67X2QKa-JckQs7uaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v4HwB1_clgx5rwBnfLqd1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jJFQhyyI67HMRTa7_xT6Hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vUd7LUOlEzT1w32bH1zYbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8qCKX3oImp7i24kNwHLQ1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DTjmqTIfuK29CyAvA4mI5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6yXKe_on43mKRggPSy_g3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2DuSHZWTGJK66zap7_0lGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2AQqVFFd7iTt8VAf4mqs2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PNEVIYDb3Tl2Jt3vwOlVBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHHH56Gg_3eKY-7vNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qCuVVUMEIbq3wGYuxzHpEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d1Eu3zr2gx6pm4W-05HVBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAaZYeT4FhJtkt8tMhB4bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["624325675086863"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bFL43h38cCSmyCigV_nhHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gvLGcBYKJcogsvMPCXW6Kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FegCmMNlTYxTi6BZY4sf2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MNoOASNIU68SUFgbeLW58A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VFYhhz8sqnqMXy2BXfzYxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["feiuP8u0H7n0s-U8-9B6Ig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QQogzpQy7c17cSSq2v2Okg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gxzjL_p8qDzzo6NpgcG50A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pf0O000DjUY4tHzEEx9PhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8JXazZeFHK5-UCd969i2Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qiHjEfoOVcAokevEwswykw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EpCL-2gY1tPrrT7oJTlBOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["773504632786234"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y9EyIC7MB-aLTW4vwGDzzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bEmtVzIU_epxdvSxCjwB-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q19jKleC5BO5fbKgnRBk8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jzM3_RaSHWvB0wG3aA8SGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dG9xE_FqAmBRVjfHO9kL3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GtJdhqX9xCV5VGVrQo5CNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["szVTwJO-zNujlDgZMbLwuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_YzsXQ2u0qjWRAhYK1z-RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LA2AxHgE7BeqbFwJBWlvEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ugIz67Ev4SbsNzwiqw6egQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y4jL0stzMTYWFXUGclJXSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vdcmSxLY5tAW_HVGwJhfVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LYyAwk-p8w31-4oPfcqkXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3kBsdcdJuehrHwupMmytxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QF3m18xsLOVy9Pau7_T9HA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oVuo4Odmf-MdkPEKxNJxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rWzS_3AchqOC3pek4V9wnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-EQWBEcgcR4lPpbe8saRAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6NtXAGdlCKbuaT_8yErbXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Cry2aWSQXge0LDz67p7UEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9Ccnybqafbd-z2JQ7pZb5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NSag8-crkz-hfM8qQnbPjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cSZTax9ffr-YAd3FYSW_LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i2LRaEQbaFjppfKBRlcmXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [3], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bVkSYYrL3sh5uXtIk1Wqpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JnSKFHek1VX4hQrcBvK6Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["22n-1zke9Bc_2bdxfUIJoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["320436511443"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C-lJpxXT861Scb4vCoKH8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b24SYdtkbKZNKbXUua9QEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EsWqvlXH-xzaqMmVPGdL-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JR6E07WvNgJwpTlm8l-rDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruch9eRlQqOnJ3ZVNLKC2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fIQcSdu_o8kv1IBr0ptMXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CdIveqlX741rRKqxrLHOWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UsI7pVrWWavMHSwjGh222g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h5FMSK1xcOtgOzCKe17UYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gcJpb2vXiNBsuY11aHVplg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C0EL1h6q2z9LqYo98KuOtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yocGo0BxuP0NorkFbAsu9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-jCT_DocD2AmpR0D2mkSYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["68lt6oqYPJGKYAHcE_DOPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u2xwTd8RgJ0w5WVh3yO7rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b6V4xY7xrfAyYrkPBC6rSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rXS9SIc4nfA61CMQTgLywQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "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": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wZhqrriek0oSfMMOqXrFHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BWJYyK1M7SWxDHZHNRzRWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i_NdJnu7ybq6fBIO714GNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C0EL1h6q2z9LqYo98KuOtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jbMRQf0fAADQ6-2j3Rarmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [3], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3kBsdcdJuehrHwupMmytxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [4], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5C9tVBswSQGz0JViHPvYNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s8yhIwZ6Oz8mvRuL2uJo7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KTWnX7JoxcA7QKVh21Eg-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YfaF6apd--i6ujBLpl-HyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aTfIQImMhlpayYFJYKzSuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2AMdyfvFgq0vUOmYRakbhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UA2bJN7NBwZPLtYp95Tv8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jjrwqUs45FILhdhuWXt03A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["05FOW23jM0j0M9jfmJ93UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RCrec6lavTAbosp4f6WrlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3IBPv6_iL-yVtBeXaQHMRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["624325675086863"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2M9F42C3cPsKb-frscdh9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-jq7GZtW9ARGurxAr-_A5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B6rlwkctgouLw4CHSlkPIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jSW2U4_r9a5pRRoz2fHRtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7EsAu37ihslSkq5_KM2CQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XMhsYNE-yg1lhTR9Ih4O1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PZ1hPxVMcA6Axh2Z0vehHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DBzMLG78Q9TObQDPGaahLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_x2q29NOiLMSNpbpC-oaGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["achOIm1VCy7pN2p0q9qstQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RWZgRvM7NzicByW5D02O8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Rw85YbAcZ4tfCh25CQ5QcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jLpClDgk6WLmhMeqd0zthQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1z4pn2KqG5AbQbk7sW9s0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5351nQbmEsceaZ_Owr4I3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hGLZ6nF5AS8CBzWTt3gCzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c2cShwXB6kWnqKAhzu4c2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K_BTLwRmtLDAQZlUaG_XNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DRn5FcS1nxJTDCbqilgAig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x9C_YZAzS-4rXIoUYRYXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YSQth5DVpOxNUr4ur3fqBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CtBrpsJG7vIeHk2xO7U9zQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dL_ewtmy2v2fPIQOJsiCyg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ixtZ9gtpPBhoJQLf1mczkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9kU5bmjQFjFC5AVmJ7BijQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ECabQfDPNdq2S_4PkNDNJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y6Ek-APmesaFeQOrOWBNcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l_BdWsCefFCMBHxXtyw_Iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r4-dv23e6cK3wf70GAFR-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jQaA9RtWSTb7-brMOswc9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tJpyJm7rhJhi9qSpxYfcQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S2DlZOWlfNB6o3arOdV7Lw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-7DvnP1mizQYw8mIIpgbMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qfTmBimUEntZFf3uqyP5ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L-krqMHCCcuwJFf2rdvXfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ccuRE7rvGbylFOE2-Vdm-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7xwMOd4RJ8Ot1XrcX4r_8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UEgXiWzog7ofJh1wmSUNAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lpSfk5la04mzB7itsdouPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MOMLGeZHNRPNfebm294vfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nwg53akFiAKZJpHiqCwAbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KkcMbd2bAR3JzWud6Q6xvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C-lJpxXT861Scb4vCoKH8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O7vHLJCZ_lbAVkrm4A_Fwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["goLacCwigTPMZCeICHXPhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bm57SdIz8Jpy7Q9n7ej9mw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["78g2NV3y5XhUtCz2lybgzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["26eMbIowZ7RFzGdD2uFyMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-5E-VwOnNYpYxgG8FB6iWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["857406119818438"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d22iTQah1Eml5msUtvJFFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YRjXw8eHDiMZ04izgnYhOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BQk-MXyYmfQIG9OS3OeGYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_OL1506gLc6iOGLX-Qw-uQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KtSO89M9VCytWeOA_oiQpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ztff1ZPSmre6kQubnqE56Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsivEyBL3ZXrqbvo2gdd8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g26zKQT7gg8BeuF77xo4zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZErdmOuEza_O26oDg3OsUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DlLEick1QmXUtEBA2i1OXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Hl7_Gtrks_pDu2K34uNnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mUyE_suvnt8oYk97Ie-0dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SWXURIvhiV1ltnadwuzdpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1YGxNWOwDLWdH8szb5mhxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jvcjy4lv5fuvEvSUFv75vA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KwXcanRetdSttfxy05UTJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HcVSvH84frJlF8DalZYCcg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IV_eFZFEiAxUawVhqRkKyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4LbOSheVOPhBRtrj_efe9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1meHLmJUyOvIGQ1FajHiSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9Ccnybqafbd-z2JQ7pZb5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mDXCeTd_eRt1BQxPfDdwOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SGvw5ir6fB5BAdIsbNGI6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iMbyDQoVJg27eBII-z_6nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["539321790240722"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x-OEmPIsqxCREyUxoFN7EQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_jqRMH-qHd6C2OHsRzsMVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [3], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7EsAu37ihslSkq5_KM2CQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k1XlOKugKDqN99EsABIGPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TgSI8jE9l-bwlyoj1VrEjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DgsxxiksahrmG4oWeF2lQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gU5lkuog4teZPWuyQj4toA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p7ozn-FzI6f3HgZkeIvlFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jCt-dkxGCSLjvvb8Ifv7cw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4CYs8zRCH2kwIRvoJLaDYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N7Kmf5Kd7TIB0G4JiPG7WQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s4c75Pyv4cZXMPWM012gbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vRhVO7223GyxUdDbf-SqPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I8d78PwZV4AkHoqpLI9UEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PvwkEQrDgdPHZLanFez_0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d1zd7H86hsAjrfeP9cX4-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a4VUXMxj-NprP9Bgxnf2-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kA717wmtrauoztRQsgG4PQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hE2efI20UHUcIoyiDQ_1qQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZgvGCOCx48ZK2oWf8bG-Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pIsUknmQepKheS5IPa00NA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f4pDz1cx3YDG6D3ASmYcgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VVA1mMm7McHUqkqp0Z4iUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4npFclYrTYk5F8lP7-xbUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X2e2lPNtTN4TSFGTl1nCqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uFfy6tMD89kRdnXjUB9Exw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jJFQhyyI67HMRTa7_xT6Hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ktC1Rg0Kg-GVHcnK06D8KA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ysz4kNxpLozIWUTYSKcN7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q51JvKXLQhd1r7lQdyRWLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N32HuJ5yIbtDP0-_D_613g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y5OUJzFBgHr4Ges87IpuYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mtayBA9s8mOJo0A3l6b7fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EJ3gaYjYo6bxhCS7DTzSRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u5bWoo_V68O30C1CzGAzEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x4_NnlccyBffpCakKmYgfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gndsttBtGJweDhEYcAgHmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["70-ZyyfFOXs7l7Tgs6aFug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-OlSGZ5KQwt77e_6D1fU8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xQwMet3rir4ovrrKmjGlnQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8EAjrBbbPO1NBkwe5Zw6rA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y-BWAgIjFAM8sO4LD5yGGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w35COD7jsOBT9GDBrzNokA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WhEDMzDK1NjN0Eborj2SQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V_rbL0bmkMzq5098K2y4vA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1MrYKWFs57njedbqm1rigw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X1hi8-3cWL65DMkAorIdIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["773504632786234"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aIuj3UFpTYwKllsd7272GQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xbY1WMOHeCLXx6Ve-mWwpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d3U6daZGLQlx_hl_1g4_CA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-OuU_jt8sQ20eSWAqWt71g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iPAdKQVY7vg1o2gkYJ3hkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yfDZhiWmLf30jUFk7-tkow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6wH2PMvQLOzb-w20cckcQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AeE_qy_HRFl-vgIeAYTtbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2sfPTNURTcvYQ5zdjMYJlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_xsl0DUvgmwkE--D5zKWLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xpw2GyTSbvWFp3Ih0k20Jw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0Dcaa0AWiOWQP0Cpiv1ncQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3kBsdcdJuehrHwupMmytxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uXijUrvGMjzOETEmDJNAig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H1nlXMxFq4leVZnwK9jV2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pmPfyylK5ZSwvmJMbfWD6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHHH56Gg_3eKY-7vNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mEioHVO0PZSJQhY89CZf5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FsL-ii7oDUAdlIp6HIiCBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uXijUrvGMjzOETEmDJNAig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["prGHKpIxIBvqJNQElllWaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zzM_y3dcuVSUG4quX8gLOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R0MFqIpTEX_JqhMXE6fdrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["17yX6y3HjSnExB70KLrL_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VX0D1FqSB0R0ee_vyNQD3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oafIGAFPzRwGNqlLpfTS0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UlxpzYDzTrle0usRzv_jpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GpM3-TGe7t3m0_qGifCD9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OZaCa2Xs6TJOHcgNOIJQAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WI00fQbxRwJuj8sF5Tzd2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EIn-w9Sic3yyxoOC90W4TQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pa7HT4RqowcItE6L730stw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YBhByzU7rcVYwQcEw5vwtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pZQYJXaUqFc02obUZw99pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["al-T7sbWTz_61eD_q-L2cQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e93aUwUf19uMoO0gNkoH3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zo2gDeKAcvfZQvQ-6Kr1XA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6qn8dRThwMb4sKyHdsYIBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X-P0lV_rGdVI_8Dxw8fzgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HuzrSFPRQ1TaBzZ33t9Y6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QtONVQ7ixoD2XEX10A1hkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5cq_GlWOgDPPgWZmR1FdWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UVrrjBvSFCo69oeflIjlwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [5], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsLS1vMfeRFS2PkKyx_Rpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gGULehZ_DIB09JwTIeY5QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VwUylZN1Ciho38uTRm9iHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UdRSAcper1TqxS3G0JEz7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rVsbnyh1Gu0HmT9fa4uLnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AVlEbvOnjmlc0WP-0dpVjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vxj2to8RjvKhrnX0_mismA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HB8yIfTc4JLXTsHtjPAdOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c1BBf8_D0Zq_e4sWgAdTEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZKNzQAHHe_cNd3rO-y4iLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6cgk_wzXLuCamIL0QtAjng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DgYVN34ZcCDpb_8g_OO-zQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SFn-AE4FVjnPbzGVfeaMqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RY6CR2GX63ecIZk12OBekA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iqCgR9hvEpggddLXHhRtwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O0BoHxZkoimQc5Yim0gmqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IzNbTVjsXO2ogTT5t3czHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ioxFgkVObv-I5g84RTGSSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LpjlQ5x3C5y0GS9aUsntg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uMc0FZQXFFzUyXqetz2LWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UOlhWSp-9HXqQB_mQ5CGPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WUKaUQgCBn15ct1ssGqVIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cJ9JggUwtbxQCAJye8Yvtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-IQP_--0veLpPEP-a-NjRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yBuR5zC7F0DVUI87hPntYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Utw-vJHSG_liQEQfgGM7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yIzHpDn2HhXgUQuzrujsvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f7riNXLCE7Lya9tYdhWvxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EgN5jlPsElCbrLLn3JHyyg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vvHJt62uzFP3AKrhWF7mXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OmFs5fBntP4og-nSnZowhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q_u7IoOwx8G_ggWzBf7SPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776061"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cEKU9CqfrZ1VXQsbR9HeoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vNVkZ8wxrLlgCSBCwJDDkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IFVYTGtbQbLahSu7x5SFWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9STLAbDjf2YYtiy7fNtNKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jWMuhjkmiPz4Jik5OH76Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KgRaz5rqouUTP5q-SUKRqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X0qQ_Q81_t_BGYj-Q4czow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0O6bTv4W_0K39-2C9Dvx5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZIeFqlfxiST4dOSyrN_rAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ysZqeGNiSCUlG_-9kO1eZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9aOim5Gg_KDYjBhfxq7LaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["glHGP2Q0gjZKetKu4g86MQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8666tagpDMUwLxpcys84Tw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDZLu2kbgCRTlx5C0tAU6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9XaUnPPtgxfYR4iOYVLS0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zuTgZQZK3GvhoHKyYp4b7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z9auTnUtgCLPwKMpBB4I5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NZ5tzxuTQ42cOlbp1jvl0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeLqMJxxpT2jsR6Xt4zqGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D-xRQQtf7YFLdo9-bwM7Og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ueg-nEwDfGvoNm5J5xvUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["91WxlDa6Iwukn4Ye9ST2OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BYfLgwssJN01WD8jqeu3Zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NnEd2rdWIzQh3lzvczhnrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Govv8eCqUZ8iYrKnS5Zj8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cWrOq_8AuD-kFHQY19QOOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a_SNx-0PYa8jpGwKHXLj3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vPq841mqP7v92eT3yj4HMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UZmUihfjNXsB5IHKB94LLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Js_WPoIkhx5gcFZ6huQvxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ThZy4U6L2fitmoMYc1TvCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JEHpDorQ3X69mmPVtKXDMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aRsHfQoswd8eYLTSZIr-jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DN7XMYJuV9ASq7mR0Nzbjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3BMUu4iAPcjnLzSizH0l2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cRYD0SSDuXf-81wyn4CqFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jk1zGZ6FJdgGFQYufgY7ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1EXI19Z-O3qg_0-FXRlo5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tIyST1pMm8awViFudDyd9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YzmEvw4yzSVOrC1HjuT7DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1ZAtayYjqyl53MjK4l-zrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V2Dpjk54kTdcC--1CueUKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8ErGxWyK7tSZTfHzIvlpiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sigxfoCBaO4Bql7SuGylmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mlkt_2gWpqQMBMgRmp7_2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cA_Jm_35NEFACdYbyTgseg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dpqreVris4izbdrt_XQ9dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0o-tp6FsoJo0I5jGkQl8BQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8Sls7YkmKFCSaOsvoUg1dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EgN5jlPsElCbrLLn3JHyyg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xFQ8ZHsEh4N52gpu0__MRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p5du1njclvrtK1OKF1VJCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8lih77TYGcMh0KSG5Nxt4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DjJN3an5jxseyPPs3KrbIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ngcCNB63nqo3inUXQQ6WGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CUdU_mHHPKnAvC3UF2KZbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lLJNdfcqSFacx8nxW6RHKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w2vSdMp2FpCKcQc-Sfv4Hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PFzGLySsfgDPspp8JOhd8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wkNFgmgAHEeZwvM9ZbPDWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SFn-AE4FVjnPbzGVfeaMqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vIBbtxLj7A-Bvzlt-bR08A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tQjVSdrygbcOkkQOq1dlzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Rys4kwPoB7843D4vmJ7Cbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BYfLgwssJN01WD8jqeu3Zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vLxXjVzfAkGaJOOqJpJWGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rXAURQ1kiv9H2yZvakeuBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hf1cTSy1VHiyApUWUOThZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O9ef8dRV4l_MugfvQ0rYYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0twwhU3HmT2kic7WpxygEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tR82cBwIiS2U4EHguxOkpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wDaxiAlNCniADyyTRRvwig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ElUl7wtRE-M8S-x_zQwgpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rPoP8nTU3L_pP77a9tVx-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KCq0s-HiFvVRWrBt4DnM6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CFLHaMsQiwz2_9tfK6Jz_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Eg0GTWgq3Q3VcNiwVlR_Mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dy3N-GVUyIaD6G8I5WnkEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uBbKBM9HPWXmF7lgBbqn7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iUBMjCORMSxEuj5evR0Lnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mjcEHtWlGba3o59kSWwFkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zlmxsTTPMJDp5d_OFnqBkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ITdW6AIUPJDb7k2YbpXj_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hrw_5LjjZespxQS8P2PsYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xk4yAe0khSy8_a2SOV9bRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M5Lgm-b6FZmqpjTbbABZ4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dvV0frbzzIMo5IEep2DrYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3UITWGKDrHZPpwwp5kPTCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vivqmbOAKqoGY8t_YC1z2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHHH56Gg_3eKY-7vNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o_Ot9q_vHiqyt6z_tKWMiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OUe1LzZ6Lzlf4Ypiokhs2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YIgx2415PKFymIoK27fv3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0j1wiZ2zi9t7EenFUwZ_Qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vIBbtxLj7A-Bvzlt-bR08A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SFn-AE4FVjnPbzGVfeaMqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tdzUvs7W0lBn5RMuHgCBGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OPeOIoXE8SwG5uuXQoAI6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J1VoCLgIXD5i7Xe2jDaJwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776125"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qc_gZ3OIm7yHC9uh3bLU5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["461886721230527"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776125"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bYYVZfAsnhVZHmI112IlZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776125"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-k51cbCmTnVl-dahOkNuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T2e3X1O-saOJJg68yQrzDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FfU3KGa4jQE4GKP8Psa9ng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nQIvPcT5PaZ24bBySxZzSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gUXMaRB9Rk_sq6bdsBOl_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hh888r27k0OnR6ZBdr_d_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zFpa6Apn2NYhFyhInGTwPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fFezJjomIkwVRpDyTq29-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6epEt039prWDA1mKzr3j4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-iH4Fx2HT0jdErUZopaXuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["41wmIH9jwMlMrZWTpeKHUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nW1FnTdTo9f3ftknDCYiXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wywmi0V1NDRwQhYNMUDEjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dZVhEMwoIzMGD6Fthzhnhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XknhFZBXH0hH7qwf4yKWqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["azyy72VZDfwabYJtyf5s8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LQJGzirOgUlGaUBORlg_Wg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xjggtUmqz00R3af_p6u37A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i27z4TxZ8219irmfqUB6Ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kot75liUTwO7WGfa9_JnHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["um0F7pJ4JjWiEKxrt7WuOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dj2iaQ_4_Q0FlLaPsVgwBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ggpnP179y3OOCr0xd25vKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hLNd2TCmh3-IMKclCV4PDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["soqkYkxjGqtHrdsusprhQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XJXvcRJSTv0fetUhCxNrHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["brsCVrBbnkBSSlL8IvWUew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NIcwjcTUxYrOZlE8A754rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d5t035vLHEEj1-NawauH3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SrafhsgxIK0tYHDI3k0sYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776145"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E6RGbwWm0dVxqFwOWVv2aQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776145"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b9P9XdFCm07W5Euc0idp6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kXmrwjMmwWaVC_ReuC4ACw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3blkVUmhYGlb1bNhKqNU-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d12Kc58-bA6BIjcZkMIfew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JWLXJAVMATKQ_NqN-b0ZaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GLNGk-y2oGwbb6kjN_834Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RT76Wy4E7w3R6MwMto44Tw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BUc3pDzH0aXE4t4bzvulEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["298566699369502"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776156"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jC1Bnn3An_-2VEoFqK30ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["223976284759160"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nCPoDiBMg8TKKTfgTIZEyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["03mWsYqppFddOnCKyEnBdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WqVyAY7aN_-vI0dM-RfV2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JMXgDW5bre-oZMgVw-foJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D4LWUMywng37JkJBitFBpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["22o2SQsBaprkcHxNEC8v9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uWoxl8Ng7kbwfwj2W7U9XA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6sgQRQYUvthb_mx0SZlpMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["676621898341841"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X0qQ_Q81_t_BGYj-Q4czow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kEFPe4Uplkug1J6skqOdoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x4wbbfFtWwxR0we5p2mRqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GZSVExRUmQVSrwabIIQ9bQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uFfy6tMD89kRdnXjUB9Exw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3OT8fSOJB4oLvyTgt_bRlA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O5lLlWeDVPBzxcQgxCRocQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ETN5AO1XCrHTaHv-3EII-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qAcbgsr0X5NLkv_zThT8rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aZs4jsKGhSOg3hYRAefOmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jf-LsQId6C24_rKGVJ_m6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UMsTpqgIIeXVCMAnyD79_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QjwZvc5Ld7ORXNUfvAcA_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gpy3Q2u5ZrnHXb3KmhEpOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K0QqN_0ybSb5prvsU3g4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6vxSTu0a6CRx7nzjWGXvow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hSK5YME25rlOxWM9QDKfOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["436879061896705"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3AzTtEH6jVnKZJZ7bEruww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L4Jc0QYQPl5oqQHZgM_rKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CwmDE10uD1eMoImp-GVrEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SY3hZxRMVbU_LhR_fsRb_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N6yoC5MEhf-Plh-uBAaDFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHHH56Gg_3eKY-7vNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5DxLQCnm2m1lyk1iyQvgDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i233s6L2yjK0p6w73O5okg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UGDuq1XZODb02226cKaFdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zKndlJnTB4GWd_wWRBBaPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PpIAnxzKbHPvsJfDNYGz0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2s2gtHw1Byz4f-WAOloLeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YJf-sPi9NXmrPeT2tTjMTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A4EhEuhS8IiFn7yF92241g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qOy5xmk_cQRqgv6xvrCJqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jCt6gzQ4WoMjVVyiDgq3ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7YQvcIQ6XYlQ3sXhTuhCwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OzS1Me61aQgrNm_5q5gG_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TeWRzuib6_zjGTJZhr5MYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V4Mni4vG0SrvFqEET7JXkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tlE9sCDAlzZZrdyWLdj4Ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_9EUaNCl3IuE7tIxwFYMuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RDtpI2toyxzROuKtNgFscw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h922_qZcgzMfw20uT64-dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SKXdzrkJkDYNKCa1HrNclg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0WMo-65XcyOKtSWppCr-Lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2egN4O8OswLmfe0zNNUhrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q0ENIP1KEnFtYZ61TVJgFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6RnRZPKOzUqhQJOIMgg3qQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w8uO5W0wiJCpZplxEC1JFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hjsIDPN1mt0rvi6oNK-mzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeLqMJxxpT2jsR6Xt4zqGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1aU11IqO8jelcqIry4nENg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jmJj_1BnViyZrfHd_98iaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6Mxcs4Tj7_OsAvreAvdmWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CA_wEwOu92Pr6owyUiFytg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JT6kUzwPy34L4dx63HT66Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XNzdGKUus2mLIVM8_RNfvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L1YWRxMqhNJmkC1cRmEGUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E19vJ2JKuCizp7wSSskOyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P7bpp1DLVW1DnKVBzlcXJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7fLjmESQgzutRqqKhKAIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V-jOQZ4DQhARmhR_HcsbzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zagslR6kwxJJ6S1R1ldJRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [3], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yKV4bCtYVd11m7Fk7XysVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F4kam_5f6I_ATS5P1FRJXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JYE-aPaoLsbONCxPlpfMBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["63Wf8e7_ejHJlL6C1-Re1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MWuCzXH99QKyPSTUMq2R0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zCymryvp2j8z8Oy2zlcnlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LxiPwTs-ik1b5LgD1gD8_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Sm3qCbqd3-uYIWv5kaQZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IFVYTGtbQbLahSu7x5SFWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I1f2qioCd15br-zV3bETow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FPsVwBlkey9ZrHIqOcJJzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fUJACRQV91_n5erdwrpsKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0pfL-5C-WWqs0UipIUkkAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1VP5oxMWyra5a-ePQRQfQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f0SPQX5AVVd4GEQzOJVMKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_q__A1DtslztwI8Prcjb0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y6u6JS5j_0cjiYf9M8rHGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xlxLGJkU6ON08qReHvd9-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kTDx6wHWjXIe5qbJcYLRBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TS6C_OqZhD7mkpwo4uvc2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["298566699369502"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_bJEnTtbOe0IZcVirgheKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["298566699369502"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RT-nlBYMVTTUwYUUUMhb4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u2AD2dN-UISqlrcsxppvng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mx66nwdoDHoQx6oMK8HIdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LwTkCYtB7pieMiq8O7t-mA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z_8-OcnbKRTWePRhYPa1qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yYefdtiqA9Bd7sp3p_vBMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xAlAJgIH19B4s4eLUFa4uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uN-YY_i1gvVmqACLDXQMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gIqOBIkddGqGa-6C-I17xQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["298566699369502"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776219"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wuidS7Cs14FqxJ9Lrou1hw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776219"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bQ18ag7YP2eYAkgjL1WfPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776219"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KgemfHU-_DHAqd1xMdV0VQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776219"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mSmxc4aQIdqJmMpqMRrzaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZVKEoR298hTyfJ4X6CfkgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["arVmURC-PhwXXHbNdhWNkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6Xg78Qz1bRNiXPGMI1FW4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W_4xBcIc_f_s9tU-JNOc3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FQSuBOEerdpkcCEsvdl1Yg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y4kaKxJi1BAJ4hu7KqO3vA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T2EnrjxsTdnnpLXEdoM0Hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RK5QOedYDJN8YhVo9FJwjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UxSRiReX-sDqSz7nCVXpzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wKjqi9Ka_oEDiU0pmy3_-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GKNlyx5cbQj8gTIosd1VCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kHECybcfqN8uWz-3bszMhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DQz3gvERMDOJGhbluo5aOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nXgGLlKDQCNZ9DDAVm_tzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xYWPQJQixeW0wBhXPgmgYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J9IXv_Dgbw208zqBl9KIig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H549HD7yAZrxeCqWJvncLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZKNzQAHHe_cNd3rO-y4iLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rtLWsf0bQDHrSMWDW9YU3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hkmnr5munTJucB-JyFCw5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s77y9jKH8drMOWXLmWPwGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HMURvypdMffNAprvPS6zpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5DDw-DtrdzZtW7kg5HTxCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CoU2VwCQTWREAWHLrF1NIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TLhtcjKAgbEdfw_zbyPIwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QMxWy-HLDdixOY7zgrqBCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jQfYvR6mRwZ0wKpt1W4mmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eZXeywFX-mVgZVes42SXyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8QG_1w4KeN_BoFI4Cgnn2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cFtvAtXlucoXx3v_5BHAKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uGZlsYS2XN7j8WGQnHza3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dLA7nA7hBfEYzANTryn9Yw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zEIksK3cfonq6bczdcfCPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TbXzMARXBr6uOHnzwUD29g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UVrrjBvSFCo69oeflIjlwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [4], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5C9tVBswSQGz0JViHPvYNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kim3yi5rHyvzz2f3NyxFrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["223976284759160"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Eu7dkXXXhKKf3OZOlmcFpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WD0vkI4ZsFJX0JeUNoVLqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["889485102048138"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0QFvxLHZI3B4zBf4hq4f3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SHfyhSnEb1p1IWRrszMVNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yiPsNUAJlJs2hvho9bRRDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MMJ3Ol6mKxYAMKTBVs0z4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5TnmC_EtR1egr-VwVq9IYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5_lr00tLIT63S1bk55QnKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rNUfXAhSNYKhBYrPXiejqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UeTA6tEPDeMGzDj5UUu2OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lV971tLwMevoQHfu6FbioQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3kBsdcdJuehrHwupMmytxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_M4wr6gtwGGYiPzlJzz32A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ocxmluiIN-Xsi0P91U1v0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q0yF-eZ1POeSXtlQfaAmiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [4], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5C9tVBswSQGz0JViHPvYNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0PqMYaSLIzRw-x-nU88s7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["na0sHIn8j5m7z-gUWECZgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4aXf_UcuTWGl7wE937kCMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o7G30v-z3P3eU8ti0ttesw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["598467497736126"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AxEU6p-R7yu3BKQoEWmsig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gsxP-BJ04BEy6kq6iDl0sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BgTYmWLcSHALENB382ShAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6V7s4PsI459YFMwlUSPwxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["188373672314673"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MNoOASNIU68SUFgbeLW58A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D9_b-M49zUzwQX8HBngcVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lLjNSon0kMlL_GeOGmhieQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GgIwKEACpDkomOEULtU6jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dXLI9akSDfhUQO7SDVEsDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s9SsAHGXptlxLsodlKXRfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [6], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oVuo4Odmf-MdkPEKxNJxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["veXBb1E1biajExFAXEtxkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["26pPt3W8xfk2EoAHTjVslw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IFXCxQ_42YlxZPfirhTMSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RHHKSTY1jwvhqHbdgf290w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l6u_-Kc7kpXXMDJYWsMNhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gxtIUXB5kh3fPTZzm9NBqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OOceu0IxWVevDBws5ShG5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xtwAyBfQvkWcf13H8ZLvag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S1pvlhWspslKp6nRLyEhbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kA717wmtrauoztRQsgG4PQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oa-K2M3FOalFIx-uXtMbhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["khaMzqn4jk0qmytmlLpK9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BuBAa1I5jvFL7gYGxAiqPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qoVNc9mYtN0tTHaFUhrbZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i7LgI_ueqfJdaQrzvYmKYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["twqd3gKOXzo1ljRyTz5Ssw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lBjABDojOtEboesMDDBsrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A0lqFeDgoUgkAVlvNGnR1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1S82rIl8qMc5ca8_oVmBxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UHjRGCGnN_IYn4fU42UENg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TThSaCEKhOK4rSjzgjO5yA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FxldC4kM9dHxSQ8AHCya7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["otm-oQ4xgoufZ3gANAunUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q-c2pTxcwfTFwP7wEdZJ0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z3mjY4F-APZLM0cY5ypBfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TCokfe5PpOM9eDSE9LSRhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["msqQCDo8QBUf7AXIVm-gMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z_8-OcnbKRTWePRhYPa1qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UrIH6hgBxUDeEf4vC-j13Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LZvFVTJOMfo7RHR7D2PEUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7HEwHvlICgH83lADayNlSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LkipsJR8SNb7CmTHmkEkWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J7vTb8unea8libzIPYw9Fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["461886721230527"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OUTGLO3n62eM8U_HdeR5nQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kw-upPyzSMkC3tPk4w7KCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IvyT1Ee_-LfT2uWHruTkYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zOfB1-xphCJVIYuRjDwDGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["787218053052923"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [3], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5C9tVBswSQGz0JViHPvYNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oCgVqp-MVWv4_Q1oOdryMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jYDcO_10MMmj90cLQU-PiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mfqAZXGyDqbH1fPMX0xAeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fix2NzP6ylR64nRJe1XifQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fwe1Z5FY9Tv5dePD34IJww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SDwcXkiHM8A0NOMuSkTSFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KMPITO_o3WTOeBDf92OR3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l5lnFm-KBzcQaaoXt_d1Ng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9vPi40Zs4u4TUqcoxfAAiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g-VGT148bDBcpUizwj3LXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DXrvcKGkDKalZj08wDl4-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G-0PF80NWvHlwwAy42bKIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b-paALXMHtQzSYfN1_LIQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xTQIKBEh5woXPXzDxLDJ5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dvZWM_ZMVzc3V8P5Qxo70g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i8Ul8ghl04_uXUpsSI_CWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xh-hyCVzRByf2920YIxjrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uvoysDyH_175syenG8Ak5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "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": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iKq1so1oRdQrNuV0NoX8eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CXHYXiiYRCqthG3Eim6xWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6g5IBth2t5hFUJ29aDZIqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aswSujPdY1piZpTrckknCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fCSYYdpth83NnFIQFK3tFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_H8ymVwShRULJ7aiFWraUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Rf_nsQwo3o7CwVKTLsWdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YISGDv7YxY--0wpSk3PHUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8xbgeT_5N72hTsNM0BgoFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kVJlAojvJIwNgoRAlARkqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5cq_GlWOgDPPgWZmR1FdWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qvcjlUFBCF-JXqTwZS6SqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vz9H3AqwucSsGrNwOSz0ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xLyFq0BB5wVhyMdsChAX0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3AzTtEH6jVnKZJZ7bEruww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2IEmZt2U43tAEGSuPI05eA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aam1NrL__vqO8zn7CbunXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y0d3HUkER9oSacdroMqHbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4Jhfw5SiQAMF_gqLEtxCuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8fN7jqLMpxIaQa26G9fLlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zyb7pAzJ1yurTbFF6tyotw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["42vxTpc6aK--wPoeImN5mQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lq6pf1KkZGF1LzuvYn3GXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ri8THh1H50J0zvIysOPcMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YSaFDWHJ_iCjzSCB6DK_RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ya16xA5wR92kAWnR4dKwTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZbS1IKLswPXFG5ZyWePtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E9ZNTntOOl_IYSLbsHzSyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["889485102048138"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nkLhaXsVw3-8NTJ_RrPOKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RQslAigzLFVQBMcm2HyODA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UD2V5eCNLXgLkaPYiOqqqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C5p5Jd86H7LCTBlMpo49Yg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LA2AxHgE7BeqbFwJBWlvEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-uPJRsxx3fYBKSMq8-8XzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MMS_Fcgw_IMEXhyPHrpTcQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["188373672314673"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tDngfOgaFY4W8H9Wf9EwzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [3], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uN-YY_i1gvVmqACLDXQMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wHJbulFJJ6_w_2DMN0h9Hw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vy2a6fjBfjrwGpS9HVG-Kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d1Eu3zr2gx6pm4W-05HVBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mtfZcNhTc9a7pQKB2TUjiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NfR92A36krFu6OFBX_NJGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3k_lgbAOw9MU1pd_YSgnZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MMY925EAMI9AP1h0laQBfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OKik8O5tB2uhKVm3roNZsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8vBDLL9ajILo3cRdIxo__g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fjb8QpKgHV426fXezrFZOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["veHHye3RGZjcYCL2YcxwZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qHaZTY2vXFbhjAbygCJcFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tlbfZampMMvwOvipHAfuvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3o-w3Farnwxoq1x7_S1N9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["leVyR4QTPth9dAyZtm2y8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["553078659890738"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l3L_ebDL0ZOLUst0GsrMiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UaGO0adJ6fx1kLHqf5qy7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NGdOEe3DqvxInWQuAHjHQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PHisV5yyeBTxepMxNGfrxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AbeQrTtXehXZ01-sVir0dQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lpEdBT-lhEvIig3KMD8H7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JmiVF50NInNg5dJWl48anA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OFiO_FKeCtYsSxuoxXmRZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wRnZ-FC28vuMm8VeN_8m6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iM_vU2BABjoXLNhFxWYIng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BrAEOfLFCyPmoS_PnPIn2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pj-CYSIMORjAXF08J9Y0Cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["js8bgJ66knafO46d8ln2Cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O7CPDrNlr-hiRWOQv0tH4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u6TuzdhCBmlpTfpFCgOLVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vw8KIGK_PF-dee9cSVnZBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FVMVLTKSYZDdHWfCEO0OQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5oxfwQ8KKCFQx_Qdby36oA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iv8vybju0c0Tu5zAjfgpGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RehMrqDR6c1jEiSjZ2KMbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["624325675086863"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NA_SRlvcEeTb90WzagQR1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-jq7GZtW9ARGurxAr-_A5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Se_zU8x-WtOXkk7pRmjybA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hAcCJcL5OlDgcGDAjn8X9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qW4np8gUc9rtXbps9-9CWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D8BnVNVQ_cUz3jRXniJtNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5gHxlL9cUqgbqNJb1EYWHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YR4pAYtED85_hbNCe9TyJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JrDIqkQs4xl133KqfzmLUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IUPERUxtlz99d93WuGaNEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ucff7l5T5KqYVeIVdViRNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0LkVxQAa6pU0RqhwVjYI7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EMPaBlyG4Uc-b8KSdiBOQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["11CuWXBuHwUfQSwUU9MawA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Wm3BPPr3QSQFqdes_N00ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4hh2Apz4l_ogPwgTUzlW9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9Byplk-PdYph_QhhSUXG2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["64waXz9E1SA7hG6byl61jw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G9ECosqumaYYOVTFlJRp6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6CiTG5-LDOns23hoVPtyZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fg9M6pSNiWUXKaFhQJPYzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uWeWSSxu5sqKRlZaY4eAfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P0E89cwPlA1_ZPxptth3hA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PlHE9ADU3mZbp8w0yqMlvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MNsikT22kDxOHbRTTmFxuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dqSbVx6m1QzCICB8ZYQDbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0mmkz3CnoIlIVzumszyK0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SidK5t453tuGAMfasCOdQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A5ssvnQuHcYq_iG9AJXucQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sbR7lCy6JyKqp_hUdL_qEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p6toiAoGuISzHgo2mVbosg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["58Z3TvR_36nik6ZHAY87vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PWaQ1zkPKAJNWrCdnxjMkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mjiWiZDRt2iNaC0mkXYaXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cqW9xWRuxaMM9GXDdvExfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lA9nEcA0uuTL_71GNcgdwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n0jqZglq2abjzUlT0D05Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZrFu8Dq5jTIDd4Pao74GVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Oy7WWxQY6oFWn_Jfuj_CMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FZ8OhM0nh2LwgSsIwO9-rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dyz1le-WwlbFzLi-sGe3UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gx5rwCcLYn9O9vuZ_cwAtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5IGmcJX0Tm7Da7pyfAm0ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BI8QzmO7HqlLwK_VwmtkDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LGYpyUrO9zCBbf8c-CYMqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bkq8_WCWOBR57Er7TUpEZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MhKbOdyD1AepHNZ5p5VKbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vXeu5VMN7k9w3jzIueSyxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eSDjNZzmE89aAtj56rJKEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ITBNtz-bjKnk_l4Kwx9kUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zQXE0BqdbCBszoP4PfD3mQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ymZhfR6CSgi_0T9KIxwzLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sffBX94zlLN7tMr0m-fNdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["57alq8shv_PO5tRW-bCjkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Lpd2r6uDTGAMsnv0qxe5ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FcPB6qo85UxIbtxQHfZTqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JB3ORSitt3sUmXyL3b5z9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cLkCP7P3dCghZzfDz9CzpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jk1zGZ6FJdgGFQYufgY7ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nw0lHUGtJlhAw3RL4j2VeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xk4yAe0khSy8_a2SOV9bRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g2Ydsd-ql78qo4jbzJGd9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LXztxA__HEtNSZCEs61QIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MTIJ3vTYM-LphU0AUVDFgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z6LadKEjSbTRipkrctFwiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1yWTkeS1nBqh-9vB-Az9vQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wKIhZpc_SbmeMR0xa3FpYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TaQjNmHwZdurzTYtBzNrbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yPsp3gldnYluQE1Il8N2GA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LPl0UGKc6NMMmzEc5_ZAiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["05FOW23jM0j0M9jfmJ93UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-_QLItFaoCKVf49lsrt3dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["swB6E3sA-frE5cWwskY4GQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DnsVFIlR8r83XyYb6bLHBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u9NrxEAkXivbGcF2O2ACQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["188373672314673"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-q-VC6CdgCrCtUxKV-j7IQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruch9eRlQqOnJ3ZVNLKC2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xLyFq0BB5wVhyMdsChAX0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NZN9qvDpFMES8kyQozYIBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DGw_2OEeuELDD0KkqG3p7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["moGFQ5GRQH67-tZkDxelhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Bm-ISLgTBoRgHmW4qbWWCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AcZUK1Aws1E1RE5GDb5CQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v87WOGP5rvv292j0hZyBpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsLS1vMfeRFS2PkKyx_Rpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GgKE1zn57mDKC6DejA5z7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cMJxtfYAkLp7CyGCtIYWWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PNMKCihKyzqKVXmkpAX-UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PVGyZ-hcrKKgRdjqX66tZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zFwamFTlz7hC5kbQ7mVixg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UbOj5nt5_ZA6gcga2l7Caw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bSTMPTAp2IvGdLqbSdMiRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l7TOnfsZ0Oz_cxAh8t_TMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I8d78PwZV4AkHoqpLI9UEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZXvRF6M9Sb6WIAMAYzZ-ZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T9eGzwsiFziCB5AQ4Q7t4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hkKHAhDonVvw0QtyP7IxgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [3], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XsYoQXgK0CmO8QoDPuIIxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LBxVuiVVD4GLWbZZeutgXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5JBqloLOxGy2RdP76Z_BnQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["osH9-1iIvzwlKI94aiTz3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9RrA6J3alySbm-v-3xUWvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["135101477313444"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5NOliwY1eM4XUb_yAeT_Mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nwg53akFiAKZJpHiqCwAbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ibfhubna49sFyP27FXEsMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Gf3npy8nYduuYDgS0-DSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LpjlQ5x3C5y0GS9aUsntg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5GfY8EjRtjh0YibV3Qi_5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oPUmSIMMNxEiuZQmO9xSOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VmY6eirFLUrEMyqbS18HAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h1VvU2JWIvwyNNEgXP-CmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rE7aKX9AZ9U6RgLB7Hm3EQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FShgEj64z4UUGMcsLm2t8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o0AT_E1hMiqX6VkkOkU3dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B5zce_f4N45Itu5RhOF9CQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xk220Mi9zFcLeqpxwKjYgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9kK-JoyEZKUK1QXgB_8kdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8xJ_FuKEXuGpNKjN-cCTew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nV5I4hF4uBpI6Ym1xsaH1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M7R5znigJFufzj0UY0YNyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bUd_4UNvKl_Qr8lsRn-AxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9CvogPnKVfmAfQ3JOywbDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5C9tVBswSQGz0JViHPvYNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6nuYBx_vW2-EF2PDR0-1NA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BzoHR5e-WyaDOLcp2Z_ZNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p8OUZgbA7NiB4oqts39unw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KtTGH3bT7aOWup2DcbPG2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qSWFZpeBtwC5ThJEUqyN8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dobhl5ofY0uMkot107beaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u0ruNDKoo243OCd9NgEnWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_WyShtnNC36vlv02gG4qCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vmOHJW5BNmBCxc9wbXa8Kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OxRcuSs5d76WVEOhbzUzqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VCDiqC9ZhKuiMdA3qifFVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hbmbPp-ElBVvP49jalJ5dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SeAPiCFUMLwS-3Uu67LXhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "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": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uFfy6tMD89kRdnXjUB9Exw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D0btI8J3q8CjKMGLeUsKig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EnLPI1UZl5V9MlaC1_8N2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["quosysHAEjLBmlro9m_ngQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Efv60mODqA2uHWbZqxNPAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hwtp9n3Bp_1rok4zYqcbZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mfdo9N1VvIQt_V4_UKPs_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N6yoC5MEhf-Plh-uBAaDFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1EXI19Z-O3qg_0-FXRlo5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZbRznzuMAVjiy--L1mCe3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["461886721230527"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rEjKfwi1CMkEKg9Zur-QZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["624325675086863"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MbGULjnhE82gLrY6PAHv5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QYWBj9Lnpq81U6emfMtEHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wOLD-x7ocHqFfW2A3qB2nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FJfhaknPBtFc-5rp-LqD7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wpzOzuBMXKSlxCrFeD8r4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wohyMdwMAerXFVqTACJFyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZVHdt4rRKbUdxnZTJm-T_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WB1iR1vMQZ8gF_ktwZj6sA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["752276635735424"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AVoXqH8nEIOZYmjx3YbSoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["orUySAvojSOkm2fKgml1Mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vNGPqYP9tZ8bsYSlvSprlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776061"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LNQU913VhnG5DvN4to80Yw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776061"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0JiH8rdTNJ3-XAj6Q3BkqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776061"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w_4nl45MasB3RlOBrLRGiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zuJ6Un0oQQHrjEIrzmqZvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zyMCig53Dw1Kh6Y5Ak4ECg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wgH90pvBZQzKg6Ovbqal9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WEHPkqhUHSa6PStjpEGbog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S0AgGW17HLWhUTiG7kGXPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S1Qziid6uRmcyL63L7pIqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OXlPee9VUh865GMcRyC-Qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DBbldGwmSSBNJib6rcxL2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HLPVixRDLT7-Qan3KzSfWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vG5qkEuqusPem8LUs14viA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TQmI4XMpMDMshV6f5WJ0VQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3iJdbBEEHj_LHj-Eg69qrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZwazY7gzuMQj2_W8d6dlyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RFLu11z3TNPa75y9d_ZSXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["moUaNPTeG--sbOPLkvb-kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f4zVx7PjjqtdSBCg40SHnQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dOIMHL9CWKMrBAKtwKwBGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1Luv_4XOIdCXl2mmqOn1Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ScogL9vmu0xz5zcs_TJYbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["41Co6gQES-zPyJMYsPlSWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["461886721230527"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [3], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dZVhEMwoIzMGD6Fthzhnhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzyVw9-CnV8kDbp00nDLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L9qGPYp4CMtMhaaLDAx6aQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aizX5lOG3wp3s40GxSmH_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C2Ql36p9WjZ_86YIJErzgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J7IyZV3ZsWdsRB-OpXmMeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X8BPxjq5G6hlAhfapGVCSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9Kursr-ojha3h05WShrLBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7g31Dez7xFD_kRoX4sD50A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lfuBODC7k6gIc119AoTp3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["izeMyuQSLOrl6hLi0dwyyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["786927327914675"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OfALl3Wo3o1t_X30Qk37XA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VzyMcaMWu883-Ds9Hg7mZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R4BvGvXkjCLRnrdiI_A8qQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gmhXDYdzVYBywA7pPjVdNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["veOIAFRxCa22CxifEZaQKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["223976284759160"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ULHe6GiefdQx6dk4hoN8TQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UVFR6xJxlY15kAwEzaclvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QRbzBnRIK4WrJxG9Sw-Fsg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E7qR1xO6m-6y8hakdrgUKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6qn8dRThwMb4sKyHdsYIBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VXd7vps3s3paQw7JLyXRiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0o2kk_kHA6J1PYlTFPM3RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WRhjSBabbAxDosOCs999nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gAG1HMhOOlK-azE89-mC-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VXz6WWJean72faTvD-It7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dLwiG7eG_m597YNX1x2oNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vqNmp5DQJf1Vi-GoNNrJSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vgdZ_DAZjunrtiwZaVAaNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["410bN33n-_z_JAkwLTBxCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qNoDsTST-roO_pSZa6GDpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["320436511443"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_6kR-USWGgxhjhlJfdSewQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["377218743540142"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8Pukzn1v9frZ4L8yQWTluw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M-9VUFVpS9caukeGa-Cf9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Hyi0folCOrTOKWnTkwYx8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6XkUnJnVtI69J1xQz2N7UQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fFW4hYJ0SQeKKNYH-nfcDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yGilAff1LXtWYRg9JkiIrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5jPOL2BCon4p4v0UyqfsXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R2mRXLOBUloGPbvJF9B2CA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bQ-t2me3no7hrG7BJshXNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mSPyuvsRaq2-6g33wYn5vQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zWKllBn38KanVP1sRfNTvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "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": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GBxSUMfC5FVUyuehR7751w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6yXKe_on43mKRggPSy_g3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "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": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XDpp17zZ2y8xGuMEXN6JAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rtLWsf0bQDHrSMWDW9YU3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0j1wiZ2zi9t7EenFUwZ_Qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iMDnXBvdtf9BNWDU3TngJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hj4d4dnw1d5Ai0FYTgrFrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JKQIfdhExc7T0qPhnUoFKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eNWShRKrcCc4np9IoAgLqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7so5YKwv6-K3eXkjBd3E2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["857406119818438"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lX0fEUYuffNYgt7y8lWqJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ggKMKTRw8RVS24IWFyjrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kHECybcfqN8uWz-3bszMhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uwwu83-7ZLM7s_6zrMA_XQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vIBbtxLj7A-Bvzlt-bR08A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ALG1PVLBUi45jyZ4vBoHwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l7TOnfsZ0Oz_cxAh8t_TMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cnfVvs_A3k1-m1CA0ruWaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T8nh4Uz1hBa2hX7n6l8yLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-xmbfr5P2W9uCZFUF6Si-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-qwk1sk-kwHBtZSyFatpjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gpy3Q2u5ZrnHXb3KmhEpOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3pKLtf9WJhx15LISarI_OA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IMcY7t7UBT608t-YbYkr9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [3], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QZEW0QZHlZo8Ns75Lvqypw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xQF0-oJ8JdkDt-6rMsRLlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t7EzQ4dDLyByCPO1Xy6HXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R2mRXLOBUloGPbvJF9B2CA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-kv1BoDC1-yq-sDIUSVHvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q0Tyb7jka2jL30SZBsJhvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8TaAaAbO2kYoYXz8lQOzyg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zo4C1xxGkbnF7lTJ1cO0rA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-uWpV-IdjmcpFys8aRIW4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LMgC_pj236jbZulsolnmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776125"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HM8rAYVgxm9ISWWjA7zGvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776125"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B3_F9VazCTuNY89XIkhbmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776125"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xV5Nf0I7DK3vta7fk0KbtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776125"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pNtMkp20SCCEh-TxrA7W_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ccyeq1MpEdYyyzMGVkI-PQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pzrNDArCkOE6-i5e_YKIbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vpma7OHz1GIqMdFma9OCqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_M0mETQ7RVSJpiioBm3h5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-GVmmBBa9yr-m-ILwf5zlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Phec8t3IOOaLzHxccca_NQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3ara6vR1-C9qieNSLppJHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RQA0UxZgfEsa41ykMw755A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z1K4WqC6eykbHpG2pCP39Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a1rGdMZVY9410EVr4QWtWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gwAkLFPRBUNZ7Ylc3F5eQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Aw8ZJfoeDNAIdQeY6NtTIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V0FscKR06PIQDFIotfIKkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b7p0ctDc0Lo9ZQ-Z1yf35Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pE6-YODgFyP3rrWsQdeunQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LTDYxmtmuczz9esgISVWJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1t0A0cwqqnxS4RnamHOttA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5y_M8aAQ_Z7onmYxHZZPLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uGST6kifL8k4q1M25HR_rA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fbu62ZoIJ7ygVD1cBxwLFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9sbwpQX6fTfKAsfiRQoSUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eokW3Zt2rGR7hPkbVLGwZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GrCH0ACfAmAYkhQ0Nhdi9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["buaxIa9twIg6BvMTZMOZOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WYyQ6A0T9-FK5wIfxnEvmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NjHv3zzMwZXdi1gFgV0lPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nFMOTBXwfXy2rS9rQ7VuoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xE58gd4ma2t147AfRmXZkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fYcWIiOhl747dksEpAA-Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QpM8ux8n6ePRoM3jLITdXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nE2W3QU8Q_gSxcGmy1L07w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zsq7iNke2jT6FItAd8xpxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["53NabLq4kgx0p4GuroY5sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776145"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5DxLQCnm2m1lyk1iyQvgDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776145"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_4Avcg9eMxD8hzGqOSHm6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776145"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8YVd3iBnxN-_dthgW3tB2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["773504632786234"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776145"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3whWAY5xh8GAsj0P7rCK5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ngAaMeciDXsShUdZwj5b6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["74DxzMOdA9t1FvsZG48A5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZiQJHkJNhfjNdEKRXL5QnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cwCCGQnhrBpXYeJR6UO6OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vtSE5aGz-uOtbw4NoHH-BA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R-MkMEYdnTYQw3iP30ljBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JWJHnXkfutLim5-WdEj40Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AP5Eq7B7RisKC973OjTPaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mPGghmgrDHP1rcsSECHRTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776156"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-L61XxN8KK8PVObP8gzNiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776156"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LwTkCYtB7pieMiq8O7t-mA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776156"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gAG1HMhOOlK-azE89-mC-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PDntH_7UfcrtrYRTUFZNSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aiVO0Ls10cuvtAaPP1Ar1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_3VCRU55rE61ngmy6nUu0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "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": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LzP7Xe_aqXmeHoR1mZEElw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["183136836447771"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0d9YQ-e0NkV6D_CllKADtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3snf7hhTXiyt1fZWWdCXqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1yWTkeS1nBqh-9vB-Az9vQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FbpUFko8tUm3ejMa5f6k0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ROx3_noWEM4PMqEgmejD5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W0EbojakWb3GuNBotaIupA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wFzs3nsPKm0-98nOdvnpYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U3tuNsCfRtithEbU3D4zXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hdkvaeKR7zUkSoU1xekEFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OOH_o1fUWzmMBH2LWuNmNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["773504632786234"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jpvgat2uryAeQWobxLhTDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3R_Mil7LaIegq27zUpnnTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oH3_96UX1vEzFR-eQzNz5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YADyz6khXeObYiZDVs-8Kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["461886721230527"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2MWICwt3pfU5YXQDhC222Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tMhMWp-rgrdCO6E0QnPlSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o1IV1KtEnO9QgXXJ_2WZhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ve5EB78hZLtL1HRvFClNPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["stb8gIJ5loEHEG8pPDd6KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-j5C91_VmNJiaip_TmatTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lAEfA2bS6WSoOsgfURUdRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MZkz3916MYFEBfheTUXaYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8t0Xme65S58rNXSbYoq4oQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zo-0ahuX1XcweGrTuXchFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EG1mq4-EF1ukDk7Iz2MpyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5cq_GlWOgDPPgWZmR1FdWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1EXI19Z-O3qg_0-FXRlo5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9If3cdMRPBzg1X3LOjvTmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1RB76pKLkn3TAPBKzo-tTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bVBJt7S3jXOW3OLJONm2dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v90IGNI0SMs12ehTDnuo0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E8GTAs4LB7epizryEDKA8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tcbTCLufHy8UbmaAK8q3ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Lda3BzAcdULVzpDBXq2_xA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zOfB1-xphCJVIYuRjDwDGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["787218053052923"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BH5bAWAGW7P6C3ONF8Dn_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7UiVDLu3Bh5kUcAEngg4zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MuLfBRC46YX5NpEuQP08Iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HYBNI14FI-2vtAX9So58qQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dN58P3I1L0q_xbL_RVS2oQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A9Ir5iH3kK5U00HEUoEd1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r9jSheisZ_8k55soN-Igeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TYr4hkQ-Ogu0SkdSS5DbZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sZS1XfsAKfkUIk_B3D46EA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQr5VhhWJVsk_42IdK8tlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OFdK4mvMOorRf1NaABBLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NwpLm8pY0dI9UQ5ChDYmZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["miNhVmEwOpuSyQhZlQHD2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHHH56Gg_3eKY-7vNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v_MRiqmr_7QtlbkX0nZcPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pKq4i700hPpldKZt8IoC4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QrSIhi1YKLPldBlpW6KCMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["188373672314673"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Y5-o0gkUhbrP54-KmzBRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H0qoQEMjjWZpnEfjZNkCrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ftj5tTSDXhH--t9L_E7Q_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wTfkFbs7GFZd4Nuap2oEeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RGTQGLgwsiAj99vgKnT4NQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uT9OC4sMxo7gbhe0Tvg8fQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["773504632786234"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2lZJ-kLvc40hzTjbbuKY0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iO9pN0VwPsPcNWSrcOEYxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YIwJFFj-moY7AfshfD3Vrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OUQo5-1DEmMawSabebh9Ng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kxS0GHhQbImebcry_20uIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r0we6vLzfa6gZzshzJR9Eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Oz8xNW_mjFW_W0orY0HFYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xr5_7cZmTFZ-q0xsVeI5iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xpn_K_m-c0cQR9r4hLjXkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "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": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u5OSU5I_Lho0fyiRjyH2Ig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lLjNSon0kMlL_GeOGmhieQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kBSgpn7ZjmiglyBaasyctQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["51K4oSWZp3pUu3tImGvyrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JXpes-A2QmTu0qjw6MA3nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eq0KhK0DXa1YeNyRQw_UUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["brrtOS1R2EI-JAakU-xOLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ecIJ7alEqvkZHPAYHPBxuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["15Mi87EWZutJB4cK0PXpjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZCyujnP85WNJhUMJpvTgjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2S9bo3BneuTjHP1V3InOAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AcDJOgevQpasXvgzQzhZyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3ztb9nLgYIU37q8yWxNMkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fu791ouBDme_fg0-1PmCHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w_HZOvClvI2HsBbJfNU-EA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wMYpNYJGdYQOQzp2QFWVOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_m5_XF6jp71sVPU0N0_5sQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tcbTCLufHy8UbmaAK8q3ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NOGQ2fCgOSotecfke9wUVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iqlNhgFRloPVdjhCzw2Jcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["298566699369502"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jq5yVOLbQGxYbXZnP5I7zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fWB1pGsmIM_jfobk9T4fjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["62pvoopCxqQWexPJwxWRKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NA_SRlvcEeTb90WzagQR1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q9B1hAQOLo_jfRAnyK44QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jtw3m9TbgS_Vd9LzvggK_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lZMN6zaybe8fUdjpnJuRZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZndsICGWbrD6J4BVHqQM7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LpjlQ5x3C5y0GS9aUsntg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5DHoz0134Gnm4TqZyhV4mA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EldeYxZAMuNZMH733xh1lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776219"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6M_I7UVl77oqDi3cuEEQ5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["787218053052923"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776219"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0Uf0J3MmR1rXcBrp3qhMmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776219"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pdnAKjnu-StfNjKlk_DDQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "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": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ct4KVN2OGy2QmyBrSGNd3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["188373672314673"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9tmmarxWYY1GiFt6cfwD0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5QG78g_tGZTKr0G1ANhKDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zL1TxCaQ1nzlRv5_Vq3WZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8giK6mKV7HDPF-jB4e6ajg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sBO5lTwHzh5B6XNPBNtjHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0iOF97WzAGxfIRG9LI9Btw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Akrp9yIrXr_ryMAZNM70fQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yCBJRpYjYKO3ecqYeuUP3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T7vncmW-T6vSHVWR57tdyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["773504632786234"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9FJI5HKsAIDyEIpw9F77Pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZEdeFMwuL0Ijslo5YXl3tQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cVmuRDduIoHFumAGZYig6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6-iOd23a790HEXq9WXifNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZaFV67YbSi9BrxRc2eGM3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JCP0BVGlLm-Oh6Gj12DwBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j5gau05UjWmU9RAZhEt0lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vb2Ub8_PPY1F2LjTMHRlGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l7TOnfsZ0Oz_cxAh8t_TMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JcyJuDPZFiebFGdlrICJDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SFn-AE4FVjnPbzGVfeaMqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6OaUumRb8P6q4GlOGK0eGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9bqdsZ9OwQlJspL0__RGkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cTlawyo3FAUMhdZaTUA-jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FT_-S3dtxKMT-rFNNrYSGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vLxXjVzfAkGaJOOqJpJWGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BfHf4fN1YDNeqJL546UXVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FHjKHGEwTh_OSeyQnbjIGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NUvgKpMCEkNNiC1zyhgNig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["os6daKfSvfffiF5ytCbQ-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XmofraVlDxT8cbdzRp2Shg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hNaLAj6XzTM6FnNZFoA8PQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ibx3y23Elbf91yXToHAerw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y9EyIC7MB-aLTW4vwGDzzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4uPdEWYsvs4SFw1vIspTAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zsujCD9VadX69Z5UbuZTkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aNKJ1wpKsx20h3VcebwzJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHHH56Gg_3eKY-7vNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4lnkvegfTiAdDK0pj2nYXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LA2AxHgE7BeqbFwJBWlvEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xLyFq0BB5wVhyMdsChAX0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mg_ny-cfxQRHd6bDgZrK3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [4], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3kBsdcdJuehrHwupMmytxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WBPkUSPOzdf2do4EAjhl9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TZXiSxQTQpQch8zeigYG_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["prUUkVp69zV1mzgyUI_BhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sWtjOfdiboXxxf3-sATYAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TSDielWbTpTMTTrXP_2Ocw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4BjV2rYL8aZZ9wWVP_iBZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VCO7Byieb2Qt6FRTCFSOxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K4kwu4nbTEdNCioz7l8H6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LpjlQ5x3C5y0GS9aUsntg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MEXbJrTVN5WYO_wNiUqdIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsLS1vMfeRFS2PkKyx_Rpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [3], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oVuo4Odmf-MdkPEKxNJxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6nuYBx_vW2-EF2PDR0-1NA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MXi6ij-PKUaCwmcQxDXKKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AQgiOwCxuS5ewG4b0XgbGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MrYyGRbOREUeHSMqF3-fVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EU6gMIOruv4LBXeewjMptw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FkpFsu7aCd7Qw08Jy5aPoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1Rrpv2uctOUa08FxzIUTRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [3], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oVuo4Odmf-MdkPEKxNJxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3kBsdcdJuehrHwupMmytxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y7npw8vCXsh5UIW1iQUjmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JXdqgk5BJc-LD2ztKdHPoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "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": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XpbIl_9EImYumBlz--Ys5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzyVw9-CnV8kDbp00nDLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_9EUaNCl3IuE7tIxwFYMuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WXat65Sd_FSb3q_O_39_OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KgvmZoje8DnGpKxTpmx0mQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["75xCheR2y9ewDRA_rLYz5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ch9aKMSaNgTSD6tnnggptg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["108795321966692"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ozEYEdV60r8t_NAHasaAZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g3Z5T6U1p7j8VO4hmi8uSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RCEPIWqcsJ7aGREZKQWc-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ytEKvd8EK0rbaJ8oYypnYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Hi1xqW7gnqMR0vJ_jyI7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5jPOL2BCon4p4v0UyqfsXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EVIFfwgdZj5Sv-6zyEIoRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZMnBOSVj41408ZF2xWlR9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YdHIbTKwJH70a0848UqZOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["me7W5n7rjuJ_rjBZlcyt7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BFJWErFCHO32D2yZyoEHgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["575uGCE05OvDArhDhbVA9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mDMvsWlBM76O6KXIRi4tEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruch9eRlQqOnJ3ZVNLKC2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3v8U1mpKDHrnwYgVqKH7yg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W17746IlG7LeSXQztGFWDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eSNOCSxZsGV9BIt4ibM3jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fKedWCj67XGj9qcnQ7OTzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IhhW55e7fpp6Xx4dkJ9zvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [3], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LuHTRqFhZGNXFSNILVt_Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qnJu-cgYKb__w7BJUfq0pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LMgC_pj236jbZulsolnmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YNPBcMWTpCi16H8JR8e5-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NA_SRlvcEeTb90WzagQR1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U_9ojT7eeTDev-ZVdw6XKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["45c-vEn-WBFXDhGB8cTsZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DcDJxAbhaeXAke0iiK1Ajg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-KS0u49xolpP7NNNTq5cCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZndsICGWbrD6J4BVHqQM7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cJnYWLVLWsQfbMmFjmNv6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1W4XpLZvb9OZD33GXR-9mQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["108795321966692"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O36pv4qXMtag3G-S2wH0Fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gr_H85XinNcu7ohea8Ev2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9VE5NoIrJEDfmfrULO2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T_HZgFQHe6dPFOxqiU6lSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UOlhWSp-9HXqQB_mQ5CGPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4Qwrvn05v6ZDRlg-EeY-HA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Lda3BzAcdULVzpDBXq2_xA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CaBZMOvKJOCk0Y5gTuUWyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2egN4O8OswLmfe0zNNUhrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NkrPNH7bWIbJpn64lkiskQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["902250717641659"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fodpQnlx_a2XgcQZ7xijjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EGF80p591eCgrxDbr5NbbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aIP58eUu8m0tIq0h1T4SIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fuQU1xXehuPaV3dvFr19Ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E2fsFui4vZG4XlP5k6KlOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["210ylSHwHO4ZytcOLGUc0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VwUylZN1Ciho38uTRm9iHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7v5gJVMF6Nxk9bye6pFDSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CHpGVtR5tRytizjLL0Fwqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TnDNY4eYwHax81bZ5EmWCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1hJUVJmc90yZ1ifhHbLXeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["asNkporasNO5DdA_RQAM7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["223976284759160"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A3a1Ysg6YpffbxqvXKeyxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KS1N91hvcJHrA9nDriwgFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "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": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s9opFMoZIHLT9tSBeXhhVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mrZRk6LFrzBHs2s8qGEBLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Lh2vQV-fpzIBt9URkjqr7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0GK16zsxEbKxVJCi8hvSQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BE7h2K77yw97C_Kaq6i4Wg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wVxfeW31BKBlFSOTuEq2vg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e0O8X9eAL4BpJRLkqPPdsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6Of7n3LxXcuXac6SQ0pCtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pLzEWCPdO8G1Nsr1cgNccw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wTaZSRJ4Q9tkq0cKzmYCPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v56E4DBax-mq-ATGnWVSQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OvHEG1poEQfLiVjIHvTACw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H7rJR36nPHUOi8E64uyY6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zF2NlkT_Dii5WetCUbH8EQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s1CNiMWPlfq2_NPSqfuWSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M2lZwCQQvCZZ928HBtbMFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1L4u4X7zg9e093vp0rVvgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v6Zd4rrrKmUTWtNl83vt_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oq7a6jSEaR4vQ3Zoerkv8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dOIMHL9CWKMrBAKtwKwBGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zwRxq7fw01rZnPXYOF40qw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3SaSc7Qb_pTpCQGjWi08LQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i0YGLUH3jSc3EqUN0sndYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KMPITO_o3WTOeBDf92OR3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pChhou59FmvZn7O2ZvhLgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9CvogPnKVfmAfQ3JOywbDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xk4yAe0khSy8_a2SOV9bRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsLS1vMfeRFS2PkKyx_Rpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [3], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VwUylZN1Ciho38uTRm9iHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UVrrjBvSFCo69oeflIjlwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-tc9uLrvW5AtcifaiO7Sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2X4gRc-KO6bRKT6359Af-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9awep8I580wKNGVWPU3zOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yuOdfjXuH9SHZfgGw5wpcQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c9qfkzvPcWTWta5w6I_uSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AtXClYE-qGEHpuC-Jm5rtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6KLawcrrsy_lcz8OQSiegQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["21BhiohUZgpC9WMoB-TQ9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nE0jpTPsQJSKGMTGL4Mvsg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0PD_9Kt7GRM8ROsCkbenrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7eLFKMaE8osGBh7ebPqCVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z861aVFL7X0OdKVxd3X_iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aQ-skLm7MBaPqK2HhT2HGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7fLjmESQgzutRqqKhKAIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vSzi5YquMyeNaQW9B4sDZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MEKItYA1QzwQVTSMuQGy0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776000"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yGokuWTMopT-VySEra22dQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WAFvqnn46-Sd9KpZ8BBrgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["640779771810114"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ziVRbL4J2zmIimCd5dnmkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UaaR3AJv5ndnRjLQjP1UQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hF4M4trNat0Ifnh6asg1Yw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-TLw09aGRdgf9CDh0PTQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PNga2YYLyE-sFIxPdpQhjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s-2JYu0cfzeKxgGAmMmGWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OJALMmMPOa0K6lBeNZ-7mw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-DFHMOpLDZQgcK9se4qShA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OGEhf4PSLILOkwEIjiOVMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YfsTjmPD9kLqRjMUMi6JuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gh-da9g2A6Yj_mC9OD5Juw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Las4OgqTRbuEV37-qgK_lA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1Pskv-gOgJtlDh4WHXN8bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mDM1aTnXUGk__uYqVeZ4jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dgU6NNtL9bFRK0l0DnvxRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0XNfczd--T_llqNCpWNAsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RJoYn2cupaWfbWdZ4mletg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_cCjzVgqwRq1Go1-c-dLag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nU_YVoKQV63uYp8cpQfLHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["624325675086863"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vCEAVQxnik3MYoVq6mJuXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G856X2brPaMvQKpMNNqIQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-gkJK_XEykMz5nAT-MZbUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9h5PW1s0EEHtLJmRKgof9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V378CoEAxuDA8TdO9JheuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L2tnlnFGd85PzXoftF62tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U86dghIRPJfDVhTuuH42DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0RMZYBAHOGeayUG0AI76hw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a3xb-ssrGNekJuDgWvwpzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ETxyHCIsX1qDDjJns-f97g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tmSSgDYXbYW8Msbbrdt9Fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["groLCJHfCqtzXI7Qhmsv_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nqxm9Q0qtTqSS4AxrYfVng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Eykjypfev8SxdzSs2SdS7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x-aoAzh936JaX4mmRnYe0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3mOJ_bZHbI9BCSH7EmMPpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["24JM-vtdkpiOaOirrlfSxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JvgA8fjy9UV2sjVnj7k7Ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UP6ivM1qmQtrm_2izDMY1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MNoOASNIU68SUFgbeLW58A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xSWbkr7KGN5XffKImzIn5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dZVhEMwoIzMGD6Fthzhnhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UX0dRGctmFF5qBp5Nz1hkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776007"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bVzsIBhfYp5qDo9Kz4tFmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xG-J8jMWseGdOU1sdRBQdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v3y2d04fapj4iPzxIwbZQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["29avLvyd03U-9hPxg1Hb1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZMD1_jjyAZz1AnKCdHkpdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JVG5AAkGigYjBzrsDQpvDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lFTuFSg1FTGTRF99CmOmyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QABq-r1aM8TtOc2Nrr2fUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xEYQxp_YiZZkOG1ri3w3Cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SvqeTdfGMLFLKIXsNnh8xw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2U1n9JtFDOLQnh-BmreAJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Lzwa4kKclF71ykHbLDtsRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eGK7xCE0q6I8iYxZSFEHTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7WlTuI6gm_CZb1xJOqgXbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzUCb8Wg8Xmaznxql2WVbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QOPhdTjHfn2kEhGrtCRUcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xWmeNR7dylwIcGrpJYPZLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["96sgA3PNNIhrc_Nn8vguaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7TOWr7rDd_Aj_12HguWIaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jzvOiTGOu9bQjTbKf8x4AA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-TdzOXrz7LOJxm2MzvCXyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bGp_k0dgNQaJzNCJfp_KVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776013"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5G6r00YkRaeb154FqmaEpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["37RKzvRm9gRUgycoVk6d2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JtQKfZmqQ34RWgXZ6RR9WQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LLuCWf1qUsk7q-MfF5NsCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fILKiQ-NDjmhhDtBXrtN1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3BMMt8-EDfuJSb11EqVZGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XBOHr121AI0HBXMVp0ML0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dr7XnUKtzq1QND784LJLLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k-XfYQDa7TQIS1t1ntW1hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hEqXG4dGhoAlQU12ZvBUfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FRkDvQWqQRhUdPA0TX2j9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4EsMXZIT-kuLqYwkUnHWrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SFn-AE4FVjnPbzGVfeaMqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7AM0prgm67n5d6K3VpPj9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pc1CY99fyq22J_NkRA7yrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vUd7LUOlEzT1w32bH1zYbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pbDDnOl7mpHBzobc65EPtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EZ2YsSTqh3amiqmt5jrW4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3vt8oTjSVhChgy2VdDHcdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["871NTow5Z00sy62U0HfiHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_eN577uJw5hksIBqBf1iCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7oirPXmDHUuITFlC6IEPLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EQIYYwQ0WnOTQBNUCA4zhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WEhADZOmZ2629xowZEFXBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hkSGwVOwB9xKbRbsDt24eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UEgXiWzog7ofJh1wmSUNAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nModsyeNli1A3nLz6PKbFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UMgRCn1Y6mTt_TSwWSLIVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zwMO4rVv9rl1VAuhiQiQDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fX0UaHgsGUK7jZpiR1PvSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776018"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y2sC122UNoSmdbZIC3feRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gmv4Y95ml9oJsJjRZdZlsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NwwCTsQlvA_KVmT3evXpMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xoCa-qbawi1vN9sZmKPLvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Bevuk9ubDyZB3ndA51uInA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xd6N1dgLUiQ6uI8diQqbyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzyVw9-CnV8kDbp00nDLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NNDb0IpeJX1J2SI82xr6sQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UxcP6jwX5DcB2acaC1b5og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776023"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OScqsQkf146vVs8sTxoPBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iC1eAzHeybST_8s2en8k-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NZN9qvDpFMES8kyQozYIBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gRonKLEvh1yZCOX3WmfJGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yckEj7GWNq012NwxrU-weA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wyALAqqulHx7Ajay9j0LWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["237402223102643"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VX7mBWir0zSSm4c0SBgjXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["188373672314673"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776028"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lov5KD2E45an5PQzkVS5Cw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["108795321966692"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p0VJqBHL4U1X3AJs7_UEVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mpp_665E1c21xBCwipgVFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M_BoisNtawBssLhhN71DhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8OjYmgPHSo-kKUxmUT3cBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OcT065MsIcIvPA2CwWtMyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x-9YB9WyZYKEJL89XZ2wlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GoTiUMDpdhKLM1T4iTnbpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gRonKLEvh1yZCOX3WmfJGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7m2nLuufhcWDTydg84J9eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kB4a4KTXh5IMJo-TCA1eEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oVuo4Odmf-MdkPEKxNJxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nl2ElkJslUJBof-2miQPtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p-WKRQjqC4ydJVOfzTrRtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["223976284759160"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gcHIgmc1VPaLqFdit4y-Mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rXAURQ1kiv9H2yZvakeuBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g0TcViARYA_NarblNdiqUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776034"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RI-fDGVL6Ony9upvuhAbeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TNHj5BNoVqP99omvUMlAZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["opKV73B4ba5Ix4sboNzZRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GoTiUMDpdhKLM1T4iTnbpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ApduzXDNHCBTEfxGmtNslg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lsQi5I89N3DlyjuVtE5TKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cA_Jm_35NEFACdYbyTgseg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V1VA99K-35mj77E2cXBSeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2r62w1--BLvFTjONci85xQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TQ1AKxQV7MskLqujIUdT5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dTRgS4ElTqFJ6sYDG_1Elg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5VenU8ysrrCFtT9Gcxo9mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nuTs9YJsCYElegNfJHtMQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Lqqlo7A9sqWXpD9r2hwvHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8MUpEWViKbPjp_Cls_rSig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WhEDMzDK1NjN0Eborj2SQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Plmay_bw1OMGja18U9JiOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P0zu1s4JzPjPDd_Vd7cn6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NQwMw8B1NJ93shL-Vs0fBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I8MxFd2oQiwulkncGAE3Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jWNXniVLSOlQNJgApEy6fA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_XnuSOJ6sLm8vinUv3DUGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776044"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AUNmNv0i4w5YnQPHlQey4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UMseRv2wkeKbYE9s84OBjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [4], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oVuo4Odmf-MdkPEKxNJxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xz4kWWK8gcm23oDogTav3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GqrLgsdtPQ_MxDCexwuH7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bJFKSObEVSXRB1JkRZrzNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "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": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0rcM--vv7mknaWNeNoD-ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XXVig9Ie3HmFHZwzuss1kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OxVykxLrjAY-XgNQtErYDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iCKcb0WeFv7cYGfg5qDFaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T1tvM5q06BjUqyhvwHyp7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776050"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NKIT-6sz8Rcrv5dQo1Svfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5pTNwxxfBlsIS-4EpZQNyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xds8XZ-H-9YjjzGczHI3TQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s5Kktz8Nmqj2dhyMqgHigQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m2nvxLRsneZHYQUNowXahA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["315v6PIu47oxrbBO5H7dQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uN-YY_i1gvVmqACLDXQMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776056"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776061"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IFVYTGtbQbLahSu7x5SFWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776061"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jog5rnmK6T5_oGh4Qshxcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y6F1nvvdpHb9hSW-EieYIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["223976284759160"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cLkCP7P3dCghZzfDz9CzpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L7mGCOr6hDmWUKkK2ILung"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mNezBhkZzdSGTljmi51tLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u78B1-xu2_OtQQtsqfxtcg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3xRTmmUGRAUMAXusP6hWQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wK2wKo3xjabSPyNZCyGl9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P6hw_Ym4WY7GDNK1P28gCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D09V3uEfQ7MP0Hhjcc4s2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FNd-F2Xh-SPdJymKRrAx4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776071"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WgfE3EpDBODOIydfExij_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VW2DzidLUTHtdiNaTOU8GA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DBYjR7puV1Ugyd5JtM9XrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Sw1kweYzAnossvkRogyCCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kD-zL7DTf-ubUCRJLnR4sA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SFn-AE4FVjnPbzGVfeaMqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O5lLlWeDVPBzxcQgxCRocQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R-0W6enRom2neHT3IVU9aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WEhADZOmZ2629xowZEFXBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4AxbDvTpu-aA3Q_KcpmP7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gEu8zGSgCLnMsvKySIUTuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kI3_nnc4n3kGClEWpDRG9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3vt8oTjSVhChgy2VdDHcdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t38j3or2eu60hVljMeEnUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yWfNGi4bzSYK-Ui6nhRcEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HDgxVgZHq5L-Wgfgl_YdRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZA8T93hlv8fxrEeTbP6iUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jz9mvzTNLIpVk-2AGCSUvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sPqqmDZLLGF6_pzrJ1s5lA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776077"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OR4vYLoqzlo7phFh3Qfx1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zOL_FYe-nRqaWD7IxkOLoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fNsvbUxXRVu2Mhtol_2f7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SDUgN8PVL4m0QdDkBbnIDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u9tk3moa0rpmNInJvBuemg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kZUMDJ0NP_gqht7ozwPNrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776083"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BBKNI3Uum2tvcePLaUHnIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["giBWEt4QjtavV9fwylJCFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nrWC-qc5axy4sfEcyAbH_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XSKFxKaBoSQ47sJlFE7ZDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776088"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RFxzXWjR4kscab5MLb7O9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mBHnD6gIqOzMoRSdrePxJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z_8-OcnbKRTWePRhYPa1qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RT3Cjvzoaa7KEC6y0Kzf8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f7riNXLCE7Lya9tYdhWvxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dZVhEMwoIzMGD6Fthzhnhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wodfI0Qjs3NXAooq-q8Ykg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZiQJHkJNhfjNdEKRXL5QnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m2nvxLRsneZHYQUNowXahA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JgkBYxltk__zzss14Jo1Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776094"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xaB1q_B0lnzAxJyENbbG1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6DXCxqKZhOH-ZWLtn6Ak8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fi1wUb286zTbiK7_F0g4YQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i6rXY5g33CZQwJKT42mfOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7fLjmESQgzutRqqKhKAIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K83sxCaQdi1aUMB4CY2c2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kdbgi1zcKKPnfWkBsEyF9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["320436511443"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uWu41ZyoAHuWSbKYNQRsYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["320436511443"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_-7j_39ErPDFgo4Z30h-mQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["320436511443"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HilsbWncrrv0zxu6yrWe1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["320436511443"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oh4yHktp64UCFk2gPVKr6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ud-CukKVH6u2M9pLqLKNKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776101"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4BXbx8Vyg8cW5_Ii5r0G1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mPYq8oyV7ZV_nGEjY2Kc4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JAVFL_9B1Mru2EDRfP3R4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QHnHxTKeHarXj9y6s2mHeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T8nh4Uz1hBa2hX7n6l8yLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["duo0Ze5zflWT3RoURhqfhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WEhADZOmZ2629xowZEFXBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NnEd2rdWIzQh3lzvczhnrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O0nxUZHGpbp2WXmKV75bIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7rjZ7hTVSpTbRt5xYa240Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776106"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0pVn3RaIbpVhn8RviFIpJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aPbM0hO6AOwxvIGYUBCUKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RrulaTp6_1p2LeP1W9cKzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zmESUw1Zei1kvjzl1SZNaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QgKoM_HHJHxpVgNd2h-hRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZuZrhTmryHY6BwcmGEp2Nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pu5PKkDnNMy8ShJ_zDgVIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0EMJmpczU4ucKazgHEe6JQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BnraydbvEwL6mkTBVZOVLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["acZoxBtzHbHvrq8Gf1eQpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776111"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GPYImyMgbg4pYrMArKSxDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l12Wk1CPTxh63qV3nfRE7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776116"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mMJCEhMX2OqRBO9KjY8WmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o4TVF3J69EwMbk08S5viwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["787218053052923"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["imcz-zqt-oMhcL0qLCk8qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OmDWtDsllFFomem3Mdsdug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LM0kXAQjnh-obheyahWo1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bZ5KGLHdU9j4VxTqgQfhhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YhKxkPrAdtcjRgR6Tgd2MA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rkfCYXBXEXL8iyMiWl29aA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776120"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F6TQB40Pr1sgezdu6286cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776125"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I0SF85fInDyZrP-7z-UR5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776125"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["84j_N3XJQ-JNtR9IgmysGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776125"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JsKo9eA_zbsAOvux77lhHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["188373672314673"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HJO4ml5Wnty3ovHfoaOHdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["42l0GjzGJUnr2atPhaQbjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bdUJtBu3FMvJJSVLzAxvzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FMkhyUSqaqT6qtLpswSR3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TlBiM4WFhH4m2XZCDIJqBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xJ1RDbDqnEVXUDn6zZGvJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nmIx6kUsvWkiJwjLxLculQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u2u6ApbEqH4fCGK4_Nj0-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WgfE3EpDBODOIydfExij_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776131"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JrK5310tC2Ccq3nsp0xrsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FcBisk9MBJiEm5RcNYQgJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UpYGXNFuNKSS_TxIb2zLdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jugbV3zZUNUFdWf4_ZIyzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["223976284759160"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YQVFN6cdEp1dhgLb-zerJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MzJj3KNtxi6rfo2HmSnLYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776135"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XC5SywLBeX1PQ5gC8i2e8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M8XF3EDgLoiHuskFtsDbIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BYfLgwssJN01WD8jqeu3Zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W64Hj5AK1289v02A2Slajw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["67zkXT7kJq28ZrcWkggawQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1hGtGBtbN7mytA5A1xIing"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Le3KXBpRasLvB5LgZia5gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dIBh8sUUni4s0t1rrnlQkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "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": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Ttd93Rg_46WVZhFrpwWHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4x7-v8sf2wkB19C1p2T6UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YyVV1kIE9meXXksdP2BMpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["188373672314673"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_zRG8Zm-TV-OEPw995JtBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776140"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qJU4RB4StmOvSy1y3PJnFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776145"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8u8CjRLgzjZJS4eb9PBqzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776145"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x-dvfE0WP73LPsEYuUxfgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776145"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mR_bhwYz0Z7HgmN-2Reqgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776145"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MNoOASNIU68SUFgbeLW58A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iJIduktnCtafB-uneC0bag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3RQ6_QU7yKmm6dd1xL6clQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Q--2f75Hs2GuIge1bpuQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wc-PTMROXLRZy1BYLTP_Xw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M56qbhAN0zSyPqoRnP2tig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SFRgBQBPcaWSZYoeDr05dA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TDv_u3XA5_4cTN3lv3-xrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776150"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gfFpjA37RmD2yNdNSpq-Ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["294692632435719"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776156"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_MILyLDKZ0Ax7h48jWwftQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776156"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SlatH5JV2_pteXorVCCWUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776156"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GP5kPAoo7FZsJJhy9ioFLw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WvJZCAg7gVxCX3Q5TFv4Ng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aw_ehqsFzKvXDeAxyd_JnQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wz2Er9skwFtbnZG85T6Hhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EhjS2ZTFyA2g4l1OL6QaBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KPA1EdDHV9tsyKVmtamT-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [3], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_2EjEMFvvc3zr5RhEP50Gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vKRD_W5Xif7zQiyDcfzS1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["223976284759160"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s8Wfl925vhnqB7X1lx9SAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UqVgdEQmtz4BvVb-b_N-Uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4othc15Si8rzSZKd5fXnCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NOnGh3gxK7KVO42qzDOWUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776161"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NKv5LvHHHjB40AO3gBBcEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VmoiM_e5uVFhx6gPipsfEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["461886721230527"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7i10_kdG8m16X7lau6FAtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["223976284759160"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XXVig9Ie3HmFHZwzuss1kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GmqIw3uB8H5NzQ0n1rlvLw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pIUgG5E4gDRt2dza9aR7Ig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0GUbMBQAjjeuwvfDjff_jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KjIFdeuijOwfOO1paOAuWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PwfEiAPNQKzrFl1e-iXV0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9fHd1qzMpEB79nCTvgEZMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dKhGTzhAT-8xVuVa7hSZGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B467-tM_xsgT__3ZvcZpXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ybmwwcaZ07U3EwvY5bz3qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["248416876307317"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QgLqFhOqhxBM1zdfXvUm1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KfhNvGqZ99UsOiA-zG-94g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eNBv1KFKUgpPuqklH5wVdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fp3JKxC8Kg-FrE8ZKU_2DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776167"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f-xSeXYlwr_R__rETMAfLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dF7D1EKgjwKTt8_IoU1gZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LffF1641guxpP7AZRFw0Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yeQfSUI4_BczpbW4QdVcSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zl--muvOuc6G6EaNmRL25Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gwfrS14UPNn_m66tZsNffg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q9HZvluGVeiW38is5m-oLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["raE6kJoWm3X2iURrV-a9zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776172"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qtisN9waCSYumv1f7kFdRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XsjtsZW09ynLa8sPb7wXtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0zahREvpGsNoW6K7WjuwwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["223976284759160"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tpfKAB3ce62OhmOmHASsvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uQuuWjHbJIHHTzQdgYrOvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ffe81jJCf-5Tz5JxqVqIEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UDdkGUkVb5eesXaBvqvyqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k2877jaRcY_Xwxl90RYOAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776177"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A1WcF985smqa63VO_XGPmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_DhzR6dvflvRHRcqtd7GFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aHZ3m-oAEY-BTbMVqBfwmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nyv_abDVLR7AwRgAX6ZS3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["889485102048138"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776183"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bpJwGAFeVERZb45jAtC-iQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["juLJTPUsSdVd1YFvTwb6Nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iJo4ez4PuCIPz3LMt8or7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nsfGreQ-AJXhxxIOSpjP4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ITFOaJ_FpHZdMgfR0-CNtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y66K3evy_zukvuBb-3XJsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TFbCcre0xjwuvxM8Q2TGcg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XQ5Vd_P1t4lptAjc-gELxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z0x2qcndWnWv_949s_B0kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1azdmus8MOaCZZsOVGC4Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3SaSc7Qb_pTpCQGjWi08LQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fGZ0_jAt2Sa6H9aqgR9ALQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776189"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q19jKleC5BO5fbKgnRBk8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F9_iF4xLcSQJWgjKwnbw8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GXNTn72ecLm64IgFcvS3tw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vVP3ARUkSlBDVcRAqdOW5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8Zn6UdZZHr0P1-htNGE9Yw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zCYZiBoh5dVeJO-uZEe0tA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776194"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3YsAUtd5JQ3NZqfZlNTpBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hbXGPbDX5meL7i9JY3U4bQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FmdBBeJo8Q4TwP3QhUw84A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JPDqwE5vdIl3FS7GtvUXqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BKHw0-DnZnXjHo-trBEtjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["223976284759160"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EYxDwvYiVdh7oMXeyW4Psg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XJXvcRJSTv0fetUhCxNrHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T-Nfuo0WceZ91fjrIGZgow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EBIz_-mHvJb-jtxFCd1J3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["36zXeWUTQ3GViRMIlZa29Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "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": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UXmQTj34Bfms8P6GHQL7oA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kj-T6bDuFCA1H7u6tv3Q7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8mkrzoK-o0LQFCcarO5Q_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SwUuykb_nSAgPkD2YwlSOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dZVhEMwoIzMGD6Fthzhnhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776199"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b9hzKzSK6K9cySAkztDLHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1EXI19Z-O3qg_0-FXRlo5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pF_VPuayrQaA_-gMev7asQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-wNXXVcp1G0vZ_ELE62wVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HeDKeDoyOXeh664H0T-uHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-mvN-EJywD2CtGMVjxfj7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Cv-Mak1VlpmhEVyP9U96rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YhEbH2FG5ivdqyvHHtwFZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zQindYwMtv8QD8UZS8rDBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sTe2gaKXR2tzI1Uih3fzkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776204"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4EB1ol6WjzbeyxUJ2VSnqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7W3F2hEgaUkwyZcLK1h5lw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iIQDVtFWyOixic2-vG4WNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0WERHU6g08URhHuc5ReoIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sTBxctfZyjL7MDyWD25UbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776209"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qPH4wGFBjmjYSqbbbmP5Nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jy45k_7VEg7Hdo0VsawlrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SQ_1llgB9pHjszKVlayMvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YU9bkeMVvGuf-oZRVaL0SA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DyPPnFWG2US7PQm_sSslSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776214"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jWMuhjkmiPz4Jik5OH76Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776219"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S-v0N2UaZBZCRQFvLWh0mw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776219"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K-THxjZuQKxctVUQ0u4oQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pN4BRIiZAPBLooN037OYVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LD8p9DqgIt3JWaWxlSBsig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lRDV2TQEiHRFJlrJA08r3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["223976284759160"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3jx5ziVarO0rH_UBySTUCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fqlDalQnR0z4CfFMV3Mv9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nD85insZMOUq_FlHy7KJrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0kn4_QzabFvdQcvQLObnJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WPDGxGUEKnBo9VYkMHsgtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aZ5a5uABVj3-LJ7f05RUMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776224"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JF-bEOX20dA6FrlaQoCfyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hrU7XkNODwXgcz8OCsx4lw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5cq_GlWOgDPPgWZmR1FdWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RH7b2-6pjWsXgDNoHlbTOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VV_S6GktcnF630eBifKr2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wY3E_gKFS1ZJ4uURbE_CuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AwPeMADeDnDZzAn2ChgTiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6G3yOrfgWU-MmHK-bx7pRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3YKLiS5v9esExQHN_lUyDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gbFoUhSiyAOf2A72gCDEhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KPMeKbA7XSVzTtIqW5z5Jw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_eN577uJw5hksIBqBf1iCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_T0Nm4O8Y8U38S1pK82Lxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k3i0bZyqIMrBeswWiG5zuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RKK2RKLW_Ei_7Dgg-kl3DA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fDk3AkTxLyCpW9cxedW9KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g1TbNQs0ehcm3oPXvCWrtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R-0W6enRom2neHT3IVU9aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7czAoKydvBg4f9OkGzNLw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iOoRfUidn7YTaniqOeBzoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6QySVXDyX3G1zoxdjACqvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776230"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O60pT0bfrT1F8AW0u7ZPDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jk1zGZ6FJdgGFQYufgY7ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RkWfedJzAssL1nTDk2WiNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy7ehlHJjUeAGoBTZAGRKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0qXynUHKB0uj6o5ggMEZJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["737374362731193"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GlDj3gtN-SiDm_OlOLXbgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UKvXfIweVZx_3gQ8hWsreQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzyVw9-CnV8kDbp00nDLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776236"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mduFZHSqWmcFAnBXnITtBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s8_yXcGg1yuUwAAmPr0kGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oVuo4Odmf-MdkPEKxNJxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9CvogPnKVfmAfQ3JOywbDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MlR02wA8P06Jyn8XvtqFZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XIUoVbDbMc0bWstLy1wrIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Iq337cZlaNeWdaHYaTyxSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsLS1vMfeRFS2PkKyx_Rpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GWf0s51SG7d0t9NkDgO_uQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DAT2RXhw6iy54wqZ5o2XbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aQKF-lZpsjIErlLR24edOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4njjNItvEbDgi29-ZVtyFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IkFQJGP6hdklKpjmMwHWFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fc0hsHze8JxXuxC0PiL3Xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AV3KqYOZqF9Mk2HE54qTBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["htaIGrI3ifWmBEapZg99QQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b24SYdtkbKZNKbXUua9QEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1ZwdcwBltMRW8njpewzvJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776243"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776248"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VwUylZN1Ciho38uTRm9iHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zQ1nyOCbOtedL7gx4fO7Ig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RAEEiLKRi0cpDpUvgRHHmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHHH56Gg_3eKY-7vNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4CPxtr11h9ffUzRbEO4ToA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AcZUK1Aws1E1RE5GDb5CQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsLS1vMfeRFS2PkKyx_Rpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VwUylZN1Ciho38uTRm9iHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HYV7fbbT0nK1xRneWZNmrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["seEJBjI353Jgq3ilVgUOcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["svuOXkVD7f696L1kXWuSEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["twLQSGHRRNfqbcH24UR0Ig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OLBhZqqz0joP6g8Ng4HUQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VrSxcTD6q313dfS8LYDXkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TTj0itlL9Oi4rCTAoQtluw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["612811514396694"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Bpu6sk-wSCuBeOPMU3UfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vV8StTEwG27qRNmXvSQnWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6RlqbJ-JTbDdtDvKzkJO-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LpjlQ5x3C5y0GS9aUsntg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776253"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N6yoC5MEhf-Plh-uBAaDFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WkwWsCOQ4jfAKbRLlzcQHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5C9tVBswSQGz0JViHPvYNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EtCgzXvWZL2OAx_jvmlLOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zvfv-v1dDQYusgwWUDpBXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UPk0nOMfMkr-e1H4cfaRgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D64BENZwj0LErl1Umv3YHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za80CuxN6vjf7klqVj-zCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PUFx9O95UA1jFMgHuRcVig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yrePrrfPvgQuAdwhOk5H3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oX6ZfNYgLGXsgfXoNGxxiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zH4yGVxY1imrUBjFhnKcAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mnd31Vnx6i_r5WV2hM5bDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TSSUdNRrvwhE4qibA7ttMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5euzUarpbN3mYb5wNSo6tw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SrafhsgxIK0tYHDI3k0sYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dso6TximVS3RxBDyh_SNPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_x2q29NOiLMSNpbpC-oaGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776259"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hyaOwrYy-y6_MqiyYC7KDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6V_gKNpX0-x6mxgUbCPfnQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a0TwkNounoaKRIVZRpQyIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x-dvfE0WP73LPsEYuUxfgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p4gMSQxsFIJzmUMc91-Cgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["570375955092508"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3w47mZnOBc0zbLvmW3VIKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["461886721230527"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6ee2Lqy0XDZh9JQTs8tvXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ddKCAt8I6JfAqt2_xFaDCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WkrL6TODCfAqmVviEmO3tw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GEa_dhde-sUv8ucfkON8KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776265"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Rk9GtySU0Mc8HwRVj3UbGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5cWlSE7anvatrAiKNJ_2hA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uNmMFG6CGOZcyHdySFqBxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M1SyyMAcAe64T6looz5s7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vubqa9zhg40xLxVg96ejAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["223976284759160"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2k45I8UTjAFirMa9eIlZsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["615212787252045"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1gf1rl7kyCfhLB6YiPdzMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RuqNusVlN7lwSvXsZmvISQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eE41AUFVYZ7SWM-cMo2uGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9UeR8byKX2vZOFjGKyo1sQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fkLnEKVER3DEjd9x3K7xzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["402856434502201"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776269"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lOrPOhwAdGMUyqGKuk1vCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8DNGva4bOAAqZhiyIuesBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fsw2Qk8r-PvXb5NKVMogVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776274"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0RLFnq52wVIAB0sP7d89Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FtCoBCewy-2EZy7jCsvWPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776279"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["frtHPKpjFujS7nkAyRL-Lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["comUbojQ_YSGFwlR5eYPHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tx6qqbLHLG2C1liDvdvH2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["79kYT9YweA6MRDhgEUmzgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["09j8gq-qKKCmdYB2xM1fkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AFTenYAnZSkIfRTCULtOBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7fLjmESQgzutRqqKhKAIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cWrOq_8AuD-kFHQY19QOOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ocgzGTENS6-t1-W9D31duw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AJKJLsdONuhRTPCLgDAGRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HMdmoo5Eyynmz0zom3NzAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KkOQVNXIKJR3_J8glLX38Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vhf8NzidyahhcdRrhV2tZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ALnABGmJ9o6L9sDKJxvSXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [2], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IsqdVnLNhl2x75Zl1gQDqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776285"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D_C6SDv9aVBnhKkxsGPJUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["siw-NMFRxrOXAjdaV3eOWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hHiIhdRmVNFS978M5K1l7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KhjLtyZgZE42WLwpSsMFNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ecD_mOI8q4Cja1MdFgpfKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cYDl9ousQbgfYxygX2lM2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Yiiw7BZTBSb5H1VVsRHT6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sf3Q9ZLgU00mVPvTWu8Tzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JvT94dVRKZeOgNA295fEAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xMx3Cq_a3YmMx1DUph5FSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cBtic5L873Cu1LhCvzk3zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tzkUxJPFNak60RgTMnrYcg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7fijxECGAPGLx6hmM9oxjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rlHZ4F86_IkUTEldGdKkxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bzvMC220qgZqnmhkzFWIZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KS1N91hvcJHrA9nDriwgFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XQeY0u1F2xnHmZQvstPXhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TzdqvfQSI4yM_t1ELTqYFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vUd7LUOlEzT1w32bH1zYbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FjtKztgbAQPS6bJqFyRkYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VXjiFmSJ0HfgABPfuOQxjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g1TbNQs0ehcm3oPXvCWrtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SWnMQRi9b6sdpiIXZr2J-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IQq1JK2G9xiQPt83Q51OKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["scKMoVIbbsXT0ePI0cAHEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jh5qVq4UUQtN9O8WhEZ3nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nbnWZTR-NGSbB-LLD0uLzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Bs_-GfXJPjEAVmj6gcKKiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["115433608855878"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ddRcEglUHvRB0GTY5px_1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u9X3V4iAbUQK01T4dj3dMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["51377649819891"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776291"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jL-_rgTa7K52iv0NxwT3Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mfqAZXGyDqbH1fPMX0xAeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FVCO-2DSmdo5cwb6xs2XPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [5], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oVuo4Odmf-MdkPEKxNJxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["763115845039522"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YYALrzmw9j6F0pki4v-UkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["66687612094024"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FQo3ZBR7hFihUZ8XJ-ov7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["icdKzqzngO6neOmcWHtljw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ddRcEglUHvRB0GTY5px_1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eDsx8SGe61uuwG9gmqSj5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2CC6FclZGgiWgBtAlUI6fA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["198931014602320"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LTIY6jjU_NkQSO1vbzAR1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["610976868727227"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CrhbEM7QPhMiIIyEY_Jibw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["742986830474080"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-events-all"}} +{"Stacktrace.count": [1], "profiling.project.id": ["3145700"], "os.kernel": ["9.9.9-0"], "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1681776297"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["8457605156473051743"], "process.thread.name": ["204573209514225"], "container.name": ["instance-0000000010"]} +{"create": {"_index": "profiling-executables", "_id": "7B_NxRB-tFVbAaTDiew0fw"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "84dde824ff4daeae0d29f41977647695e8c0f7a1"}, "file": {"name": "node"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "SHpn8pwAHiX47J0IzMtXvw"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "c82d390b13c4cea8624cd19365023f7d6c07e4fa"}, "file": {"name": "haproxy"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "hpS1QtdrBQjGg-LCbfqeSA"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": "d1163134b6cc14098083ac420083eea08b245718"}, "file": {"name": "bridge"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "I-7FSPUFvGFUkGA6jlppyw"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": ""}, "file": {"name": "libstdc++.so.6.0.19"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "sYulZmcgr-wVjGncTZYDFw"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "17cde188f2963b4062bafe8d6c38f2aa40af66a8"}, "file": {"name": "libjq.so.1.0.4"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "uQABjZuvQhtEKnwbx2fUhQ"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "1f06001733b9be9478b105faf0dac6bdf36c85de"}, "file": {"name": "libpthread-2.27.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "FuIO9WbemvG_iGdYJZU2nQ"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "608e0a34911c5e67fcf8262debb9e99c3e03ab81"}, "file": {"name": "libzip.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "ZSkKN3zNxr0HYuO2pqe5hQ"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": ""}, "file": {"name": "libjvm.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "XT4fd_WKeR1cE-hlLelCQA"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "562adab00e70282ab9d563a7aeaff7bc7c4e0f61"}, "file": {"name": "metricbeat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "Yxe-SHgukLEpCkawSk1QWA"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "48bc7a3db1ec42839f4106b0d13a932c60d75405"}, "file": {"name": "pf-host-agent"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "3aS07d9PG4lc4UzuBbVWzQ"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "9470e279388f7f9cb2ed3b2872d0c2095b191ff4"}, "file": {"name": "libc-2.17.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "SVqTovndX3vgWwiNPDrUZA"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": ""}, "file": {"name": "libnio.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "2iSc_7W6mQyfzHA8XRDUrw"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "32c06165c2d881e2a2818a73062abc3cc0bdb0a1"}, "file": {"name": "/"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "sTGLCNH21piOrMPoln5uBQ"}} +{"@timestamp": "1681689600", "Executable": {"build": {"id": ""}, "file": {"name": "libjvm.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "J6GSZQSmfOBquczb-SF8bA"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "9c7a770263493ec798d32cd798c22e08491e48d7"}, "file": {"name": "metricbeat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "WpojVIMMfjg1gPX4CFe0BA"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": ""}, "file": {"name": "libzip.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "u2oaF7T_uufCU99I4pBkqA"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": ""}, "file": {"name": "libmanagement_ext.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "l5FZ1ntrBTGZUQPXJtfAlA"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": ""}, "file": {"name": "liblzma.so.5.2.10"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "Jsaw4aRwbsrSC4mkOwhwQQ"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": ""}, "file": {"name": "libnio.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "hrCIM-i5cm0sSd-oVTZrsg"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": ""}, "file": {"name": "libzip.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "0aeAC4XpbxqxubqgoasMaQ"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "2bf1db331982e4386f89e52eac0b49745e23d660"}, "file": {"name": "libjava.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "L68TrOZ9FjSDW38aILC82g"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "b3de2701fa3aef182d8e7b2db8d294a91af1eb7c"}, "file": {"name": "libverify.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "-aKNhT4giJI0-fil_3Ot_w"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": ""}, "file": {"name": "container-task-service"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "1NmuNXqOaWlDl-ljfvsBcw"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": ""}, "file": {"name": "linux-vdso.so.1"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "r0qIY7jWRZF97Xo5fDF5cA"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "c62b5f14cc01f184492b2c540cb6db83aa3dfff8"}, "file": {"name": "libjava.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "qjB_amR59Lv13Nhle_Nwbw"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "1878e6b475720c7c51969e69ab2d276fae6d1dee"}, "file": {"name": "libc-2.31.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "CcyyeiNGM40TOoP3RRHPJw"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "1ca552d4da0dc0a2f3adf6a740361a3a4108df54"}, "file": {"name": "docker-proxy"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "Yq1Ak9_WYtjiRUK6jyz9ag"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "50ce2c120241ed855acd2a66fb90d5ec1d4c49c5"}, "file": {"name": "libnio.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "Ifn5UOOZw7Eb-8v_kPDQow"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "3a290cfffcf4a580f1579a0fc9988346eb180264"}, "file": {"name": "libseccomp.so.2.5.1"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "2HVF-fC6bGu1PSwJc2kzOg"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "ec302b318786ec3830d9c27d96c6a45ebc496bf5"}, "file": {"name": "_openssl.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "gtQ4kMk_MBWrPUAFqVnYyw"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "489d0f22c85c3a32cedf379a2deb4b94829ec873"}, "file": {"name": "filebeat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "kTH7nPbx-X9xSr9wWSQ4oQ"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "ef3e006dfe3132a41d4d4dc0e407d6ea658e11c4"}, "file": {"name": "libz.so.1.2.11"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "YwxnBMtVSfJhocgnI0WgmA"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": ""}, "file": {"name": "libqualys-cloud-agent.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "uof2oKCX86V-_cQCuGg7Ew"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": "ede88b3a0c7efa97624d2875c85517af0a739253"}, "file": {"name": "nf_conntrack"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "xFA0V1dCXRoFBkiljWo8aA"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": ""}, "file": {"name": "libqualys-common.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "634wiWh6F21tPpXr0Zz3mg"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "9fdb74e7b217d06c93172a8243f8547f947ee6d1"}, "file": {"name": "libc-2.31.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "L9Bd3XIiGWasJdN8trI5tg"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": ""}, "file": {"name": "containerd-shim"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "NvEDT4zSZcnoSuXBl2lV4g"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "7cbcb0322f585236d81b557ed95c708f98a20c33"}, "file": {"name": "libssl.so.1.0.2k"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "c6lwtZBG2BzNKGtSyzLrTA"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "230acb059171dc7c19b9318d5ef5feb2c6f4e568"}, "file": {"name": "systemd"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "BkWkPRvktqhDDhVdutdfuA"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": ""}, "file": {"name": "libjava.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "1gXEZRnAPQTspGOB36fnyQ"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "c3e565680f4f33fdfabce12db4b079ccab4700f1"}, "file": {"name": "libmount.so.1.1.0"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "EM1xxPB-70RIIw82DzybBg"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "d7ab172bb790dd2f74b40c6a7f3c42004a696c59"}, "file": {"name": "systemd-resolved"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "Ht2yyHtMhQP9uhMxLoNAEg"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": "0883f95c4ebd4d9f9c6e87bab3411e4db2c74920"}, "file": {"name": "libz.so.1.2.11"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "z5k14PsCcDvFyUC1kmlV3Q"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "0eca98a615313a9d2be9a993097f65969dee8816"}, "file": {"name": "containerd"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "rtOWfs-RaxXWHIPyRB9RAA"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "e745ee2423d5388da9345298b9499a5308e467b2"}, "file": {"name": "libnss_files-2.17.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "cEvvhuguaGYCmGWrnWRz1Q"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "7ce3ef6b0c6c2c687b4c6643596171dc03569610"}, "file": {"name": "auditbeat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "eJ7BYIhIN72fM2Cz8k8m9Q"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": "cf6d86cf965b129ec9dfdcd756741e43233684ab"}, "file": {"name": "libpthread-2.28.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "NH411-U9ZJbhx9KntPIOtA"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "4431119007b4c6c2321f0b6ee069885935a3885d"}, "file": {"name": "docker"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "UbK4uezrplMLlSw0h87Xfg"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": "6eee75cb89aff959ae1ba2c54194fd82d6aa604e"}, "file": {"name": "xfs"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "c4mWQO6Pvl8zD3U38ut_9g"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "ee1f25ff6e197466242c1a2e96057de48f973a28"}, "file": {"name": "jq"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "Sxgb26oKQwlt07if9woPTQ"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": "af19d8efb1fb159bdc44e043adbc3412c282ad12"}, "file": {"name": "br_netfilter"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "UJmIMEc6K8gJ39NHYaD0Ww"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "f7307432a8b162377e77a182b6cc2e53d771ec4b"}, "file": {"name": "libc-2.27.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "v9-un2Qg4o_hZDeItW-Lfg"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": "33d30c20d175357a3497081e95f0fa482c840b40"}, "file": {"name": "ld-2.28.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "bx9jqjuemtiUm8j-_s73zQ"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "43a2bc419314aa566cd5ba54779ae18b47022cad"}, "file": {"name": "libjvm.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "Qlc5cqX0MBEMLoVTH5TCOA"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": ""}, "file": {"name": "libjava.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "uVi0_akuSWTIatJohqMk3Q"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "e0b0f9699477c4fe496e1db7c7b92940baeff273"}, "file": {"name": "libjvm.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "Fuiq0RN8VMfwSLHsA6DzhA"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": "c52b0055d6c5b32b0561ffe7c25b40eba4aec3c2"}, "file": {"name": "libdbus-1.so.3.19.4"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "Z3CKaS4aU08RhYA19y5ITQ"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "ced267ea05869f9c3b8e789e83b7fa545f0b7c49"}, "file": {"name": "dockerd"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "FyXDR9UuNGXTbBJptWFcKw"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "4587364908de169dec62ffa538170118c1c3a078"}, "file": {"name": "ld-2.31.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "QRLEHBaKoaTG7nEoPkKciQ"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": ""}, "file": {"name": "libmanagement.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "am-Z0RfUVY0oYK5VXRDk9w"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": "10b53d2317fc7019f88bbcc546ca761c8a4c76cc"}, "file": {"name": "libsystemd-shared-237.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "vzkGS_4tXNYOGWeEMTHsfw"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "babecb6e4901854343bbfcf6c4b51ed1fc0fda0b"}, "file": {"name": "stunnel"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "_x4aKgh_XJ5-w5YMGr9j7g"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "abc2fdc38635eae448da9df55f8d57e7345eb12b"}, "file": {"name": "libpython3.6m.so.1.0"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "fhsEKXDuxJ-jIJrZpdRuSA"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "0c75f746ff8d9d30d6417d79b7732a66f5890a8b"}, "file": {"name": "libz.so.1.2.11"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "3mYYqsL3RyZ4MT4Z8-by-g"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": ""}, "file": {"name": "egress-firewall-tool"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "tQgAmBJBgPLrkikSPRsmtg"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "e10cc8f2b932fc3daeda22f8dac5ebb969524e5b"}, "file": {"name": "libpthread-2.17.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "DHMn6ZZcNA6-RmrkDCI6ig"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": ""}, "file": {"name": "libjava.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "8JkSH12WhA-WQr2yainO7A"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": "f148d451b907351661b9bd69460069ce681bfde8"}, "file": {"name": "iptable_filter"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "4rFFPORY8_4FvK9QaA3QUQ"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "63e115dedee42e3aee75e0d5fa41243ac2cf9228"}, "file": {"name": "python2.7"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "8NlMClggx8jaziUTJXlmWA"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "f0983025f0e0f327a6da752ff4ffa675e0be393f"}, "file": {"name": "libpthread-2.31.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "LhSmdLZs37wH6EMWPlegEQ"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "9b03a5571e128c07bf955eb2bd8155311295ae50"}, "file": {"name": "libcrypto.so.1.0.2k"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "Fr4KuuAdcuLzUhqxYoXsLw"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "f48e96a1f4a549776ca4167095ad7527720d4b0e"}, "file": {"name": "libpthread-2.19.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "6tVKI4mSYDEJ-ABAIpYXcg"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": "c5f89ea1c68710d2a493bb604c343a92c4f8ddeb"}, "file": {"name": "vmlinux"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "cKHyLiwo2RANh6cTXVIEBg"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": ""}, "file": {"name": "libPocoFoundation.so.86"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "0rNuxKNw6YxtKvsF6kS_jQ"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "3217ca3a53a930c7bb1e5c83789d09b30b0f3b39"}, "file": {"name": "libc-2.19.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "vQ7EacG6CR4rzcFaNFEsTQ"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "7b4536f41cdaa5888408e82d0836e33dcf436466"}, "file": {"name": "libpthread-2.31.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "IG5EpvTeHopVC9IqkA_kSg"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": "82ea9e63228be586342161635bc31afbb96637a7"}, "file": {"name": "aufs"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "Clmtm3Gj4Mb2mUsOYrmYag"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": ""}, "file": {"name": "libnio.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "wEIfl0pGBuepuUcTwdKc2g"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": "101d8983a254f1b26637242e10b80ecae42eff2d"}, "file": {"name": "libz.so.1.2.11"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "NzJ_Z5A_H4TjZWzADQAilg"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": "2b376254e33cfc43b5e4eb3ce756b5fc4da38b06"}, "file": {"name": "ip_tables"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "GXH6S9Nv2Lf0omTz4cH4RA"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": ""}, "file": {"name": "libzip.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "pp6LgRqCGeGjs7cnnwItcA"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": "a91d7b51b23a64e86b82a91511c446c137d3ec8e"}, "file": {"name": "libc-2.28.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "cgIdU-uvJLoO1WrtsV2P8g"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": "bb16b0161f80427dc45ea6e94c412fcad34bc15a"}, "file": {"name": "ena"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "-FiXU0afkg-sRwubj2WiAw"}} +{"@timestamp": "1683504000", "Executable": {"build": {"id": "a607524ba9b6f400a9af233fa574bc7f2abd5f33"}, "file": {"name": "dbus-daemon"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-executables", "_id": "8DDAjVJl721y2vxKHGSBeg"}} +{"@timestamp": "1684108800", "Executable": {"build": {"id": ""}, "file": {"name": "libjvm.so"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Tb0WlBVBkaK2mAIu8Lhe5gAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "ReplicationTracker.java"}, "function": {"name": "void org.elasticsearch.index.seqno.ReplicationTracker.updateReplicationGroupAndNotify()", "offset": 3}, "line": {"number": 1026}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MgCpDbfqkuF0Au3Mi2jaeQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentParser$Token org.elasticsearch.xcontent.json.JsonXContentParser.nextToken()"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nu8xfvDC28qhuFrvR_OkPwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeMap(java.util.Map)"}, "line": {"number": 443}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IHsYDz2NB6hyLlZKxrgCHwAAAAAAAADa"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorize(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 57}, "line": {"number": 316}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UeBLZIMubAc4tcEy2sOybQAAAAAAAAED"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "boolean org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient, java.util.Optional)", "offset": 27}, "line": {"number": 240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBF"}} +{"Stackframe": {"function": {"name": "sock_recvmsg"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tEy-A8lz0LlXhsYvqccKNAAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$7071+0x0000000801e9e7c8.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1PhVGIcoQAgleHhVcpf27gAAAAAAAAAv"}} +{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.CopyBytesSocketChannel.doReadBytes(io.netty.buffer.ByteBuf)", "offset": 5}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aMdAw5F6bqw1nsXGt00a9AAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory$FSIndexOutput.(org.apache.lucene.store.FSDirectory, java.lang.String)"}, "line": {"number": 406}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IzZjJeBcq6pQk1xgfHWRqwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "DirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.DirectoryReader.openIfChanged(org.apache.lucene.index.DirectoryReader)"}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KB0KS3hQ9ShgNXNnOutrBwAAAAAAAABZ"}} +{"Stackframe": {"file": {"name": "AWS4Signer.java"}, "function": {"name": "java.lang.String com.amazonaws.auth.AWS4Signer.createCanonicalRequest(com.amazonaws.SignableRequest, java.lang.String)", "offset": 14}, "line": {"number": 341}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fDqNreXUioiFDFwNREuqLgAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "CancellableBulkScorer.java"}, "function": {"name": "int org.elasticsearch.search.internal.CancellableBulkScorer.score(org.apache.lucene.search.LeafCollector, org.apache.lucene.util.Bits, int, int)", "offset": 4}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7ptKTGTqqszfKDkDMhWl3gAAAAAAAAHC"}} +{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.index.SegmentMerger.merge()", "offset": 41}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GCvRtTeITgdQ5d1IBVVvmAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation$1.onResponse(java.lang.Object)"}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rzUIpq900aeM1bcZXA4bwwAAAAAAAACX"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "void sun.nio.fs.UnixPath.initOffsets()", "offset": 31}, "line": {"number": 235}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SsLxTgHFbTYmQH4wK_CEdgAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "RestRequest.java"}, "function": {"name": "void org.elasticsearch.rest.RestRequest.withContentOrSourceParamParserOrNull(org.elasticsearch.core.CheckedConsumer)", "offset": 7}, "line": {"number": 471}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3w5xyA8SskdHEEGy4TbDIwAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$ContextRestoreResponseHandler.handleResponse(org.elasticsearch.transport.TransportResponse)", "offset": 3}, "line": {"number": 1277}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tLidJxRjGWRw8PC1hoYlVAAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "RoutingTable.java"}, "function": {"name": "java.util.List org.elasticsearch.cluster.routing.RoutingTable.shardsWithState(org.elasticsearch.cluster.routing.ShardRoutingState)", "offset": 2}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wTSbu1Pr78mJrU1RTg5RYgAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.commitIndexWriter(org.apache.lucene.index.IndexWriter, org.elasticsearch.index.translog.Translog, java.lang.String)", "offset": 34}, "line": {"number": 2793}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "void org.elasticsearch.indices.IndicesService.loadIntoContext(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.search.internal.SearchContext, org.elasticsearch.search.query.QueryPhase)", "offset": 4}, "line": {"number": 1128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E6PjQ6yX7cquO-45jTFBqwAAAAAAAABo"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$writeIndexGen$63(org.elasticsearch.repositories.RepositoryData, org.elasticsearch.action.StepListener, org.elasticsearch.action.ActionListener)", "offset": 37}, "line": {"number": 2344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9G7qgzWR4HB2bQAmHxPhaQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncPrimaryAction$$Lambda$7603+0x0000000801ed52f8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cuyNWlZFQkabnqdPXO_rXQAAAAAAAABN"}} +{"Stackframe": {"file": {"name": "Inflater.java"}, "function": {"name": "int java.util.zip.Inflater.inflate(byte[], int, int)", "offset": 12}, "line": {"number": 378}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HQSUABK0mO8Kp3EUnYqw4gAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Class.java"}, "function": {"name": "java.lang.Class java.lang.Class.forName0(java.lang.String, boolean, java.lang.ClassLoader, java.lang.Class)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GZgGBcuTH2cGCNk1SuZsdAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.forceFlush(io.netty.channel.ChannelHandlerContext)", "offset": 1}, "line": {"number": 1801}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2Ims6MoX1Xgrymv6lvzgDAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u9GeMWftGvMQfzDDA51wmAAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "URLClassPath.java"}, "function": {"name": "void jdk.internal.loader.URLClassPath.check(java.net.URL)", "offset": 6}, "line": {"number": 559}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tGdG6Ekrs0R5JngDxtv8-gAAAAAAAABC"}} +{"Stackframe": {"file": {"name": "AbstractJavaResourceMethodDispatcher.java"}, "function": {"name": "java.lang.Object org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.invoke(org.glassfish.jersey.server.ContainerRequest, java.lang.Object, java.lang.Object[])", "offset": 54}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Pa7d6e1HpoCr7lfaOA_9VAAAAAAAAAHb"}} +{"Stackframe": {"file": {"name": "AutoCreateAction.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterState org.elasticsearch.action.admin.indices.create.AutoCreateAction$TransportAction$1.execute(org.elasticsearch.cluster.ClusterState)", "offset": 66}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vNIlRmFlIZi4eEeFbJkdJgAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "long org.elasticsearch.index.translog.Translog.findEarliestLastModifiedAge(long, java.lang.Iterable, org.elasticsearch.index.translog.TranslogWriter)", "offset": 4}, "line": {"number": 423}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UM3h48-oBMi00mRAqhB4IAAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.implDelete(java.nio.file.Path, boolean)", "offset": 10}, "line": {"number": 235}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "com.typesafe.config.impl.AbstractConfigValue com.typesafe.config.impl.SimpleConfig.find(com.typesafe.config.impl.Path, com.typesafe.config.ConfigValueType, com.typesafe.config.impl.Path)"}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlpa"}} +{"Stackframe": {"function": {"name": "show_mountinfo"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h2i8b6s7ABK28E4XdjB5FQAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap$ValueSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 18}, "line": {"number": 1766}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2cxgkaQz6jHA-zT7PPZDvwAAAAAAAACz"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.prepareCommitInternal()", "offset": 34}, "line": {"number": 3364}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1TcD-cYA4xs7rqA_y0alsAAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseValue(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, org.elasticsearch.xcontent.XContentParser$Token, java.lang.String[])", "offset": 12}, "line": {"number": 741}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gbCFQS2suYv46rP_aUsebAAAAAAAAAHW"}} +{"Stackframe": {"file": {"name": "FieldsIndexWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.FieldsIndexWriter.finish(int, long, org.apache.lucene.store.IndexOutput)", "offset": 36}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1nz2D_enJEI7s5XIn5TJ-QAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext org.elasticsearch.common.util.concurrent.ThreadContext.stashContext()"}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x_AviyjXcqJjS67hCSKerAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "void org.elasticsearch.common.io.Streams$FlushOnCloseOutputStream.writeBytes(byte[], int, int)"}, "line": {"number": 266}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3HjZuF7dq_MwD3oux4xPeAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.IndexModule$$Lambda$1431+0x00000008017d2f18.acquireIndexCommitForSnapshot(org.elasticsearch.index.engine.Engine)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CqifFk8xy3782YHVmD9JcQAAAAAAAAEP"}} +{"Stackframe": {"file": {"name": "SegmentCoreReaders.java"}, "function": {"name": "void org.apache.lucene.index.SegmentCoreReaders.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.IOContext)", "offset": 72}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jHJRblj4MnsFMdCKOybNAQAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "IdentityHashMap.java"}, "function": {"name": "void java.util.IdentityHashMap.closeDeletion(int)", "offset": 9}, "line": {"number": 592}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zPAncFjeEtFg0ea8Pfo73QAAAAAAAAFI"}} +{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4.compressWithDictionary(byte[], int, int, int, org.apache.lucene.store.DataOutput, org.apache.lucene.util.compress.LZ4$HashTable)", "offset": 54}, "line": {"number": 581}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WP24-sIZ9ujXLXhCrx5dnQAAAAAAAACq"}} +{"Stackframe": {"file": {"name": "S3RetryingInputStream.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3RetryingInputStream.openStream()", "offset": 8}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N9zxMuVRpQW2eudcqAYcbAAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$2(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener, org.elasticsearch.common.util.concurrent.ListenableFuture, org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$UserWithHash)", "offset": 2}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FnmwXe2vE-fdjOidW-gJfQAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object jdk.internal.reflect.GeneratedMethodAccessor230.invoke(java.lang.Object, java.lang.Object[])"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p_Ns50uuE6TGp-NWwcnKMAAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "GelfSenderThread.java"}, "function": {"name": "void org.graylog2.log4j2.shaded.gelfclient.transport.GelfSenderThread$1.run()", "offset": 27}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Sxgb26oKQwlt07if9woPTQAAAAAAABLv"}} +{"Stackframe": {"function": {"name": "br_nf_hook_thresh"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hpS1QtdrBQjGg-LCbfqeSAAAAAAAACyj"}} +{"Stackframe": {"function": {"name": "br_fdb_update"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wELFL8jGCRMErF4_7iFL_AAAAAAAAABJ"}} +{"Stackframe": {"file": {"name": "DocumentMapper.java"}, "function": {"name": "org.elasticsearch.index.mapper.DocumentMapper org.elasticsearch.index.mapper.DocumentMapper$Builder.build(org.elasticsearch.index.mapper.MapperService)", "offset": 6}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HiZp0zbTVQt0obvtwwP7XAAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsGroup org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsGroup$Builder.build()", "offset": 1}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Fw4N_DGYxmWJY3G6VlrCLwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "PolicySpiFile.java"}, "function": {"name": "boolean sun.security.provider.PolicySpiFile.engineImplies(java.security.ProtectionDomain, java.security.Permission)"}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GmYMrqcymh2Li0OrBJcg8AAAAAAAAABt"}} +{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "int sun.nio.ch.EPollSelectorImpl.processEvents(int, java.util.function.Consumer)", "offset": 13}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "A9VwK6SroKXsQKAAWW8wJgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "JvmGcMonitorService.java"}, "function": {"name": "org.elasticsearch.monitor.jvm.JvmStats org.elasticsearch.monitor.jvm.JvmGcMonitorService$JvmMonitor.jvmStats()"}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ANmrmrqqJv18GWh_5HHQlgAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeStringField(java.lang.String, java.lang.String)", "offset": 3}, "line": {"number": 533}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG"}} +{"Stackframe": {"file": {"name": "ProtocolExec.java"}, "function": {"name": "org.apache.http.client.methods.CloseableHttpResponse org.apache.http.impl.execchain.ProtocolExec.execute(org.apache.http.conn.routing.HttpRoute, org.apache.http.client.methods.HttpRequestWrapper, org.apache.http.client.protocol.HttpClientContext, org.apache.http.client.methods.HttpExecutionAware)", "offset": 76}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1_TQy4bzrYXq1nfuss_o_wAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.getText()", "offset": 3}, "line": {"number": 315}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rJUdSzEY4nBcXSavXvuL4QAAAAAAAACX"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.authenticateWithCache(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener)", "offset": 75}, "line": {"number": 200}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIer"}} +{"Stackframe": {"function": {"name": "ip_rcv"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ggf9kW-zoddyVYpEp-cnZAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "OneMergeWrappingMergePolicy.java"}, "function": {"name": "org.apache.lucene.index.MergePolicy$MergeSpecification org.apache.lucene.index.OneMergeWrappingMergePolicy.findMerges(org.apache.lucene.index.MergeTrigger, org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TBMkprEh01zslJl_qiQmuAAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "byte[] org.elasticsearch.xpack.core.security.authc.support.BCrypt.crypt_raw(byte[], byte[], int, int[])", "offset": 13}, "line": {"number": 627}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cKIQZ9F8vNRoqWPV7VBuXwAAAAAAAABa"}} +{"Stackframe": {"file": {"name": "SearchHits.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.search.SearchHits.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 10}, "line": {"number": 147}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k_ABxmqh7g9WH83U7CzhyQAAAAAAAAHm"}} +{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.ObjectParser.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object, java.lang.Object)", "offset": 55}, "line": {"number": 312}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "y86E6w-NUJfYYLcFp2N4MQAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "boolean org.apache.lucene.search.ReferenceManager.maybeRefresh()", "offset": 6}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N8Io9c4at6yq-2fiioy4tgAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "TransportClusterHealthAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.health.ClusterHealthResponse org.elasticsearch.action.admin.cluster.health.TransportClusterHealthAction.getResponse(org.elasticsearch.action.admin.cluster.health.ClusterHealthRequest, org.elasticsearch.cluster.ClusterState, int, boolean)"}, "line": {"number": 203}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dPrFv_oNmQQvcyFWj8z9dgAAAAAAAABj"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lookForExistingAuthentication(java.util.function.Consumer)", "offset": 16}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8NNZPX4WzZU8wwEhaddYdwAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction$2.doRun()", "offset": 1}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E7Si9KeNnLhexcT10oHiFQAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "MonotonicLongValues.java"}, "function": {"name": "long org.apache.lucene.util.packed.MonotonicLongValues.get(int, int)"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EyAyIi6MbvlkCdAdoJJykwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "TopDocsCollectorContext.java"}, "function": {"name": "void org.elasticsearch.search.query.TopDocsCollectorContext$SimpleTopDocsCollectorContext.postProcess(org.elasticsearch.search.query.QuerySearchResult)"}, "line": {"number": 319}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WsCQmTSDw0k0qcC-8oiYqgAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "int java.lang.String.hashCode()", "offset": 2}, "line": {"number": 2350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdaQ"}} +{"Stackframe": {"function": {"name": "common_perm_cond"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lrNuGOqZ1W2gPcoSPK5FRwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "BaseRestHandler.java"}, "function": {"name": "void org.elasticsearch.rest.BaseRestHandler.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.internal.node.NodeClient)"}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JyvX4de4kP3zAAP_GoR7XwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "SSLSocketInputRecord.java"}, "function": {"name": "int sun.security.ssl.SSLSocketInputRecord.bytesInCompletePacket()"}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OVbzts78rozw73k3kwZElwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "TransportIndicesStatsAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation(org.elasticsearch.action.support.broadcast.BroadcastRequest, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionListener)"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0JFePiIGG-AreW0ofMty1AAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "BufferedReader.java"}, "function": {"name": "void java.io.BufferedReader.fill()", "offset": 31}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Vp_XOo7EOjf6hwG8_wtUTQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "PeerRecoverySourceService.java"}, "function": {"name": "void org.elasticsearch.indices.recovery.PeerRecoverySourceService.access$000(org.elasticsearch.indices.recovery.PeerRecoverySourceService, org.elasticsearch.indices.recovery.StartRecoveryRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjgt"}} +{"Stackframe": {"function": {"name": "lookup_fast"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bVXxpnmgIbO0K4TjtY7pDAAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "SocketChannelImpl.java"}, "function": {"name": "int sun.nio.ch.SocketChannelImpl.write(java.nio.ByteBuffer)", "offset": 9}, "line": {"number": 542}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FS55TSwq0w7KNb6oqdqsJwAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$RequestFilterChain.proceed(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MWMRq4GUysNDjxb07DjPAwAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryShardReference.perform(org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.action.ActionListener)", "offset": 8}, "line": {"number": 1132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "TransportShardRefreshAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction.shardOperationOnPrimary(org.elasticsearch.action.support.replication.BasicReplicationRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FDp23rE1CceEicB2tyC3EgAAAAAAAABP"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$5(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationResult)", "offset": 9}, "line": {"number": 405}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bhZo2QRqgq-0DU0P-coC5wAAAAAAAABJ"}} +{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.engine.SegmentsStats org.elasticsearch.index.engine.Engine.segmentsStats(boolean)", "offset": 5}, "line": {"number": 540}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kpBi8LFR3RTjSJqFuljOuQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Deflater.java"}, "function": {"name": "long java.util.zip.Deflater.deflateBytesBytes(long, byte[], int, int, byte[], int, int, int, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PDEqZtYIRK0Y1OfcNC6JFgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ApacheHttpRequestFactory.java"}, "function": {"name": "void com.amazonaws.http.apache.request.impl.ApacheHttpRequestFactory.addProxyConfig(org.apache.http.client.config.RequestConfig$Builder, com.amazonaws.http.settings.HttpClientSettings)"}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABQ"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.lang.Object java.util.stream.AbstractPipeline.evaluate(java.util.stream.TerminalOp)", "offset": 7}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YLZ4zK7cwy3rua-7G2ar4AAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "long org.elasticsearch.index.translog.Translog.minGenerationForSeqNo(long, org.elasticsearch.index.translog.TranslogWriter, java.util.List)", "offset": 5}, "line": {"number": 1686}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7Ormen3KBfy8FXv7OmF-kAAAAAAAAACJ"}} +{"Stackframe": {"file": {"name": "ReplicationTracker.java"}, "function": {"name": "void org.elasticsearch.index.seqno.ReplicationTracker.updateFromMaster(long, java.util.Set, org.elasticsearch.cluster.routing.IndexShardRoutingTable)", "offset": 9}, "line": {"number": 1090}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xPU5BqDaIJn7vLaWOn9pswAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryResult.runPostReplicationActions(org.elasticsearch.action.ActionListener)"}, "line": {"number": 562}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFgX"}} +{"Stackframe": {"function": {"name": "smp_call_function_single"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YGWVVbrNUpdnBpF_fR4SdwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient$ClusterAdmin.getSnapshots(org.elasticsearch.action.admin.cluster.snapshots.get.GetSnapshotsRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 981}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nZ_TLoQXzn9RYaGn5N0v4wAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.createCompoundFile(org.apache.lucene.util.InfoStream, org.apache.lucene.store.TrackingDirectoryWrapper, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext, org.apache.lucene.util.IOConsumer)", "offset": 10}, "line": {"number": 5742}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fjJuU1RWkoyBxZODQLK13QAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "RestToXContentListener.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestToXContentListener.buildResponse(org.elasticsearch.common.xcontent.ToXContentObject)"}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hCDtT-9vDXD-e8HuC9915wAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "Channels.java"}, "function": {"name": "void java.nio.channels.Channels.writeFully(java.nio.channels.WritableByteChannel, java.nio.ByteBuffer)", "offset": 8}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uC86pFXXnBLCj6eRRljPDwAAAAAAAACE"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 22}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LtwWMtOCVYMwVl8TS_MduQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "BaseTranslogReader.java"}, "function": {"name": "long org.elasticsearch.index.translog.BaseTranslogReader.getLastModifiedTime()"}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ywRpFKHnyqIdEibpvZWLtAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "JsonReadContext.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.JsonReadContext._checkDup(com.fasterxml.jackson.core.json.DupDetector, java.lang.String)"}, "line": {"number": 202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Emp83XV0ORPGC9VjSudbcAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 217}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3DsLLpnzoGeqib2_MeXKdgAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.callDecode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 4}, "line": {"number": 413}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1rUG_FMFENPLm_LxQvhypQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "BytesReferenceStreamInput.java"}, "function": {"name": "int org.elasticsearch.common.bytes.BytesReferenceStreamInput.read(byte[], int, int)"}, "line": {"number": 222}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KS1zErlzm4f4HFs44XqqaQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "void java.lang.Throwable.()", "offset": 53}, "line": {"number": 250}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Hr7DaUVBf6Mvou5VCDAFbQAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "SecondaryAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator.authenticate(java.util.function.Consumer, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 94}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "S-bF0OQ5zu714NI9jV1-DQAAAAAAAADE"}} +{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService.lambda$startNewShards$1(org.elasticsearch.cluster.SnapshotsInProgress$Entry, java.util.Map)", "offset": 11}, "line": {"number": 267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xCNGQgO99Ct-y3BxTXN3RwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "boolean org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$WildcardExpressionResolver.lambda$matchResourcesToWildcard$7(org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$Context, org.elasticsearch.cluster.metadata.IndexAbstraction)"}, "line": {"number": 1232}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i_JW0SMBS0hXEJxPvmBaaAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "SingletonSortedNumericDocValues.java"}, "function": {"name": "int org.apache.lucene.index.SingletonSortedNumericDocValues.nextDoc()"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7Ri4HFWgKP29WX5jactbGQAAAAAAAACa"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObjectOrNested(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper)", "offset": 37}, "line": {"number": 479}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i2OZ9-P_pjOFSV36486xoQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 1}, "line": {"number": 635}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NZgS_masnJN3AvEMpCeN1QAAAAAAAAHH"}} +{"Stackframe": {"file": {"name": "TransportGetSnapshotsAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.snapshots.get.TransportGetSnapshotsAction.loadSnapshotInfos(org.elasticsearch.cluster.SnapshotsInProgress, java.lang.String, java.lang.String[], boolean, boolean, java.util.Map, java.util.List, org.elasticsearch.repositories.RepositoryData, org.elasticsearch.tasks.CancellableTask, org.elasticsearch.action.admin.cluster.snapshots.get.GetSnapshotsRequest$SortBy, org.elasticsearch.action.admin.cluster.snapshots.get.GetSnapshotsRequest$After, int, org.elasticsearch.search.sort.SortOrder, org.elasticsearch.action.ActionListener)", "offset": 55}, "line": {"number": 346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uj5fRTSdGJxlX0gfzctOogAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.lambda$handleRequest$2(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.internal.node.NodeClient, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 5}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eDtEsbyqaPA8nODsaXH2CwAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "ValuesSource.java"}, "function": {"name": "long org.elasticsearch.search.aggregations.support.ValuesSource$Bytes$WithOrdinals.globalMaxOrd(org.apache.lucene.search.IndexSearcher)", "offset": 5}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D7h1Gv1Mp4lGv-01tQoxdQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TransportSingleShardAction.java"}, "function": {"name": "void org.elasticsearch.action.support.single.shard.TransportSingleShardAction$AsyncSingleAction$2.handleResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 233}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xAhlVWErYnSgk5BtC2imuwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "RetentionLeaseBackgroundSyncAction.java"}, "function": {"name": "void org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction.shardOperationOnReplica(org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YqT3WwhcvvvGwqhq_677_AAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "ScopedMemoryAccess.java"}, "function": {"name": "void jdk.internal.misc.ScopedMemoryAccess.copyMemory(jdk.internal.misc.ScopedMemoryAccess$Scope, jdk.internal.misc.ScopedMemoryAccess$Scope, java.lang.Object, long, java.lang.Object, long, long)"}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YkF0CuSz_Qqwl0qctgLHtAAAAAAAAACU"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$3(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.common.util.concurrent.ListenableFuture, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 20}, "line": {"number": 221}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i__VMh3MgmTJp7v_qMbssAAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "SegmentCommitInfo.java"}, "function": {"name": "long org.apache.lucene.index.SegmentCommitInfo.sizeInBytes()", "offset": 2}, "line": {"number": 226}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Jj6ja2Wbkf1_R1a9nVWcUAAAAAAAAAEe"}} +{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.CommonStats.(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 42}, "line": {"number": 199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DDx8Tabgis3a0xF6j6Br1AAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ScopedMemoryAccess.java"}, "function": {"name": "boolean jdk.internal.misc.ScopedMemoryAccess.closeScope0(jdk.internal.foreign.MemorySessionImpl)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PKn9pNyuk4x5JmghNk_g-wAAAAAAAAE6"}} +{"Stackframe": {"file": {"name": "IndicesAndAliasesResolver.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authz.ResolvedIndices org.elasticsearch.xpack.security.authz.IndicesAndAliasesResolver.resolveIndicesAndAliases(java.lang.String, org.elasticsearch.action.IndicesRequest, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizedIndices)", "offset": 41}, "line": {"number": 235}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DW9pkruARZjPztBaJpJNKQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$1841.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sPRIu4G_UqOumyaMlOEsUwAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", "offset": 6}, "line": {"number": 1114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_p12Y0DOk4cFEn5gGz9psgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.lang.Object java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$UnmodifiableEntry.getKey()"}, "line": {"number": 1767}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zB4IvgA7bsMPLgsuCANUUAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ObjectName.java"}, "function": {"name": "void javax.management.ObjectName.(java.lang.String)", "offset": 1010}, "line": {"number": 1406}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1B7iWINM55ii7YHBwT_BfQAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "TransportMonitoringBulkAction.java"}, "function": {"name": "void org.elasticsearch.xpack.monitoring.action.TransportMonitoringBulkAction$AsyncAction.executeExport(java.util.Collection, long, org.elasticsearch.action.ActionListener)"}, "line": {"number": 137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEuzk"}} +{"Stackframe": {"function": {"name": "hrtimer_cancel"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VqmV2Y2Fi3wRyCsQN4PYeQAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "OutputRecord.java"}, "function": {"name": "long sun.security.ssl.OutputRecord.encrypt(sun.security.ssl.SSLCipher$SSLWriteCipher, byte, int)", "offset": 3}, "line": {"number": 469}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJ"}} +{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile.inbound(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.action.ActionListener)", "offset": 33}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gpzmfljwMvF6axjuntzBmAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.lang.Object java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$1.next()"}, "line": {"number": 1672}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5rk_UJ-u8N3KSTCupmswwgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "Scheduler.java"}, "function": {"name": "void org.elasticsearch.threadpool.Scheduler$ReschedulingRunnable.doRun()", "offset": 1}, "line": {"number": 214}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R9d-4EOoAQqhB1QW7ZwT_wAAAAAAAABJ"}} +{"Stackframe": {"file": {"name": "IndexSearcher.java"}, "function": {"name": "void org.apache.lucene.search.IndexSearcher.search(java.util.List, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 12}, "line": {"number": 668}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "goak5Y9ISXuErAxp-dfksgAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "DateTimeFormatterBuilder.java"}, "function": {"name": "void org.joda.time.format.DateTimeFormatterBuilder$PaddedNumber.printTo(java.lang.Appendable, long, org.joda.time.Chronology, int, org.joda.time.DateTimeZone, java.util.Locale)", "offset": 1}, "line": {"number": 1429}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzeZ"}} +{"Stackframe": {"function": {"name": "audit_filter_inodes"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h3WTBx-QeTdXBYE6dCwz6gAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.action.support.nodes.BaseNodeRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mHJkS0RGvjKJIH_CXIlsPgAAAAAAAAC0"}} +{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode.decryptFinal(byte[], int, int, byte[], int)", "offset": 39}, "line": {"number": 776}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ob8euj5VS7ygs-H5kZoYDQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "QueryFetchSearchResult.java"}, "function": {"name": "void org.elasticsearch.search.fetch.QueryFetchSearchResult.writeTo(org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5DLT1-7dtlWsYx9XrPzwBwAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "void org.elasticsearch.index.translog.Translog.trimUnreferencedReaders()", "offset": 5}, "line": {"number": 1735}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5iN7OCAj-2IgmFqLvCWrTwAAAAAAAAES"}} +{"Stackframe": {"file": {"name": "DlsFlsLicenseRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.DlsFlsLicenseRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 57}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vj9KWV7ATkWJJTMhiLlh8wAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "Thread.java"}, "function": {"name": "void java.lang.Thread.run()", "offset": 2}, "line": {"number": 1589}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y3R8SvzC_aAE7qgJvT7cmQAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "RestStatusToXContentListener.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestStatusToXContentListener.buildResponse(org.elasticsearch.common.xcontent.StatusToXContentObject, org.elasticsearch.xcontent.XContentBuilder)", "offset": 1}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bCBdTuDS0DbCDGTJHRgQHgAAAAAAAACK"}} +{"Stackframe": {"file": {"name": "Lucene50CompoundFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene50.Lucene50CompoundFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 14}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R-gRcWEmmQueFLieTf9cNwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ResourceLeakDetector.java"}, "function": {"name": "io.netty.util.ResourceLeakTracker io.netty.util.ResourceLeakDetector.track(java.lang.Object)"}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "d55u1lPodAfLflRouVTMDQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TrackingDirectoryWrapper.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.TrackingDirectoryWrapper.createOutput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M2oQMdzf0FGz61Jik2pntAAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "RestActions.java"}, "function": {"name": "org.elasticsearch.rest.BytesRestResponse org.elasticsearch.rest.action.RestActions.nodesResponse(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params, org.elasticsearch.action.support.nodes.BaseNodesResponse)", "offset": 3}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "AuthorizationUtils.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationUtils$AsyncAuthorizer.setRunAsRoles(org.elasticsearch.xpack.security.authz.permission.Role)", "offset": 1}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YNG5rLJWIsjMTCOpoQz9TwAAAAAAAACG"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.readIntoNativeBuffer(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 16}, "line": {"number": 276}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fHwOxyP169K9CQO3cKSjNgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "EsExecutors.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.EsExecutors$1.execute(java.lang.Runnable)"}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NADamcz6VgHxdsqQ-H3gJwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "void org.apache.lucene.search.ReferenceManager.maybeRefreshBlocking()", "offset": 5}, "line": {"number": 240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tS3W-juTeGevwds4OwWo-AAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "sun.security.ssl.Ciphertext sun.security.ssl.SSLEngineImpl.encode(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 2}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EKWhQ1NGJOd2rM9L7jxkPwAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "void sun.nio.ch.FileChannelImpl.force(boolean)", "offset": 11}, "line": {"number": 531}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oXDDSz_OfNZuiQsqIGyUPAAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "StreamDecoder.java"}, "function": {"name": "int sun.nio.cs.StreamDecoder.read(char[], int, int)", "offset": 4}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "68WyKd9kixq8a0DuxdFRfgAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "ObjectMapper.java"}, "function": {"name": "org.elasticsearch.index.mapper.ObjectMapper org.elasticsearch.index.mapper.ObjectMapper$Builder.createMapper(java.lang.String, java.lang.String, boolean, org.elasticsearch.index.mapper.ObjectMapper$Nested, org.elasticsearch.index.mapper.ObjectMapper$Dynamic, java.lang.Boolean, java.util.Map, org.elasticsearch.common.settings.Settings)"}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u1ok5Oy22VA1gVmC1frmBwAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "Lucene90PostingsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90PostingsReader$EverythingEnum.(org.apache.lucene.codecs.lucene90.Lucene90PostingsReader, org.apache.lucene.index.FieldInfo)", "offset": 84}, "line": {"number": 650}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJzyg"}} +{"Stackframe": {"function": {"name": "__get_free_pages"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "java.nio.file.Path sun.nio.fs.UnixPath.getName(int)"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HhIaqq60njiI-TSR6IpvaAAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "MultiLevelSkipListReader.java"}, "function": {"name": "int org.apache.lucene.codecs.MultiLevelSkipListReader.skipTo(int)", "offset": 7}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EF3J2R77dXygxhwXIoXXUwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "java.util.Iterator java.util.ArrayList.iterator()"}, "line": {"number": 834}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bPdR4mcydIF6d5I7BNRoXQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient$ClusterAdmin.execute(org.elasticsearch.action.Action, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 730}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "L-koTtrYcgwtJX4JNCtNUgAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.write(java.lang.Object, org.elasticsearch.common.blobstore.BlobContainer, java.lang.String, boolean, java.util.Map)", "offset": 1}, "line": {"number": 346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jr5f3E7C6V_PhtqAGuNvDQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.SegmentMerger$$Lambda$8050+0x0000000802659000.merge(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.SegmentReadState)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mSJ6fSPuHzsY_PJcgbXOQAAAAAAAAACa"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "void sun.nio.fs.UnixPath.initOffsets()", "offset": 33}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8EydHzqUyrjotjG1DR1HjgAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "org.elasticsearch.common.collect.Tuple org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.bytes.BytesReference, boolean)"}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "SimpleChannelInboundHandler.java"}, "function": {"name": "void io.netty.channel.SimpleChannelInboundHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 5}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_qijKAoIrj192_UIiHcBhwAAAAAAAABj"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.writeValuesSingleBlock(org.apache.lucene.index.SortedNumericDocValues, long, int, long, long, java.util.Map)", "offset": 1}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DHsnAoMYJiyf1W11jJ-_lgAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "InboundDecoder.java"}, "function": {"name": "int org.elasticsearch.transport.InboundDecoder.internalDecode(org.elasticsearch.common.bytes.ReleasableBytesReference, java.util.function.Consumer)", "offset": 8}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApQK3"}} +{"Stackframe": {"function": {"name": "strchr"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ji8QGmnKHoMZnaBBpWbi6gAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "IndexLifecycleRunner.java"}, "function": {"name": "void org.elasticsearch.xpack.ilm.IndexLifecycleRunner.runPolicyAfterStateChange(java.lang.String, org.elasticsearch.cluster.metadata.IndexMetadata)", "offset": 4}, "line": {"number": 333}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 48}, "line": {"number": 328}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iQk8OgBQx5evO4aY_GwftAAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.channels.FileChannel sun.nio.fs.UnixFileSystemProvider.newFileChannel(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])", "offset": 4}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tHw2EICMhh3_licSMXsQIgAAAAAAAABY"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.lang.Object java.util.stream.AbstractPipeline.evaluate(java.util.stream.TerminalOp)", "offset": 7}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wFlJbQoR_Mt8rauw3Qs4IgAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "SortedNumericDVIndexFieldData.java"}, "function": {"name": "void org.elasticsearch.index.fielddata.plain.SortedNumericDVIndexFieldData.(org.elasticsearch.index.Index, java.lang.String, org.elasticsearch.index.fielddata.IndexNumericFieldData$NumericType)"}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k-iHhugN07psoCA3oD8uAgAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "DeflaterOutputStream.java"}, "function": {"name": "void java.util.zip.DeflaterOutputStream.deflate()", "offset": 2}, "line": {"number": 261}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k_IuQ3Tj-0pB21HCi5bPIAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TransportClusterStatsAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction.nodeOperation(org.elasticsearch.action.support.nodes.BaseNodeRequest, org.elasticsearch.tasks.Task)"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3V1Tx_6BXumlpLFbwNqGtAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.index.query.SearchExecutionContext$$Lambda$6414+0x0000000801ccd550.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y4GXBcWnfQyta5ocrIdtBQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$6(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener, java.util.Set)"}, "line": {"number": 291}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vF3EXYALHmjQtcdOOO4edQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "com.amazonaws.services.s3.model.ObjectMetadata com.amazonaws.services.s3.AmazonS3Client$PutObjectStrategy.invokeServiceCall(com.amazonaws.Request)"}, "line": {"number": 5942}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4pm-RlnsToJPewKWxyTO3gAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "boolean org.apache.lucene.codecs.lucene80.IndexedDISI.advanceExact(int)", "offset": 4}, "line": {"number": 399}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "PendingSoftDeletes.java"}, "function": {"name": "int org.apache.lucene.index.PendingSoftDeletes.numDeletesToMerge(org.apache.lucene.index.MergePolicy, org.apache.lucene.util.IOSupplier)", "offset": 1}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GP9DcZgvFsVU-FrimfbKfQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "Channels.java"}, "function": {"name": "void java.nio.channels.Channels.writeFullyImpl(java.nio.channels.WritableByteChannel, java.nio.ByteBuffer)", "offset": 1}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dGrJ7brreNfhV4KADjvV8QAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator$$Lambda$6986+0x0000000801e9df80.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vBoVUlhIFzzElOeQU4CcwgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FetchLookupFieldsPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchLookupFieldsPhase.run()"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZbvmFtHvqv74jokq3XvBkgAAAAAAAACS"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.bytes.BytesReference, boolean, org.elasticsearch.xcontent.XContentType, java.util.Set, java.util.Set)", "offset": 15}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MQ3uW5IsAOX4HA-PQV68YwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI$1.compare(java.lang.Object, java.lang.Object)"}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CX7Q7rsBeXI37-8OOBP_XgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "TemplateUtils.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.xpack.template.TemplateUtils.load(java.lang.String)", "offset": 2}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R8-4EoWI4M3vwqI6iUSsNQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.index.engine.InternalEngine$$Lambda$9574+0x00000008028864b0.get()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WdP0jKvbSW-F3IXqFZzXpQAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$CachingAsyncSupplier.getAsync(org.elasticsearch.action.ActionListener)", "offset": 12}, "line": {"number": 1015}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4CZPHF-aehJgVB8TpitL3wAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.findName(int[], int, int, int)", "offset": 6}, "line": {"number": 2240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4tuZpds1RwY_aRceEiCKwgAAAAAAAABk"}} +{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendRequest(org.elasticsearch.cluster.node.DiscoveryNode, org.elasticsearch.transport.TcpChannel, long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.TransportVersion, org.elasticsearch.transport.Compression$Scheme, boolean)", "offset": 14}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pV99g5et2CwFuOPgVK-mJwAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "Spliterators.java"}, "function": {"name": "boolean java.util.Spliterators$IteratorSpliterator.tryAdvance(java.util.function.Consumer)", "offset": 6}, "line": {"number": 1932}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y9uy0jT_olZW6YV4k5pWhwAAAAAAAAEl"}} +{"Stackframe": {"file": {"name": "MultiDocValues.java"}, "function": {"name": "void org.apache.lucene.index.MultiDocValues$OrdinalMap.(java.lang.Object, org.apache.lucene.index.TermsEnum[], org.apache.lucene.index.MultiDocValues$OrdinalMap$SegmentMap, float)", "offset": 29}, "line": {"number": 558}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "40MpjoVP8Hl-BKuvUaGZ2AAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "FetchSearchResult.java"}, "function": {"name": "org.elasticsearch.search.fetch.FetchSearchResult org.elasticsearch.search.fetch.FetchSearchResult.readFetchSearchResult(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeFlush()", "offset": 1}, "line": {"number": 907}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cvKtJGgNPYlj-CA3c92J7wAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "FsDirectoryFactory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.elasticsearch.index.store.FsDirectoryFactory$HybridDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 8}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "void org.apache.lucene.store.LockValidatingDirectoryWrapper.sync(java.util.Collection)", "offset": 1}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4pMgUWm4rtyPJPkF4YsFtwAAAAAAAAB7"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler$PublicationContext.buildDiffAndSerializeStates()", "offset": 8}, "line": {"number": 369}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3w5xyA8SskdHEEGy4TbDIwAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$ContextRestoreResponseHandler.handleResponse(org.elasticsearch.transport.TransportResponse)", "offset": 4}, "line": {"number": 1278}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$1.doRun()"}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4XL-_3HqKL4a-N25S_4rwwAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "FutureTask.java"}, "function": {"name": "void java.util.concurrent.FutureTask.run()", "offset": 10}, "line": {"number": 266}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P7t3blDxeYi07Hv420EtQAAAAAAAAAGD"}} +{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.doInternalExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.bulk.BulkRequest, java.lang.String, org.elasticsearch.action.ActionListener)", "offset": 71}, "line": {"number": 323}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UczL1F-b_k4z3ImSWHECfQAAAAAAAABU"}} +{"Stackframe": {"file": {"name": "IndicesPermission.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authz.accesscontrol.IndicesAccessControl org.elasticsearch.xpack.core.security.authz.permission.IndicesPermission.authorize(java.lang.String, java.util.Set, java.util.Map, org.elasticsearch.xpack.core.security.authz.permission.FieldPermissionsCache)", "offset": 8}, "line": {"number": 435}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sLW5MVrNYr3JDIzLAQcc3AAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "ManagementFactory.java"}, "function": {"name": "java.util.List java.lang.management.ManagementFactory.getPlatformMXBeans(java.lang.Class)", "offset": 8}, "line": {"number": 731}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HW4-asF9W20WAgPf6bG3rwAAAAAAAACG"}} +{"Stackframe": {"file": {"name": "ComparableTimSort.java"}, "function": {"name": "void java.util.ComparableTimSort.sort(java.lang.Object[], int, int, java.lang.Object[], int, int)", "offset": 27}, "line": {"number": 207}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ERZoN6J3j8Dsz-tNhFGNcgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "LogManager.java"}, "function": {"name": "org.apache.logging.log4j.spi.LoggerContext org.apache.logging.log4j.LogManager.getContext(boolean)"}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VkwvTLJA_wYkkvZ7q0WeEQAAAAAAAADG"}} +{"Stackframe": {"file": {"name": "NativePRNG.java"}, "function": {"name": "void sun.security.provider.NativePRNG$RandomIO.ensureBufferValid()", "offset": 43}, "line": {"number": 525}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SqN7slLdgy2OaneYiiWHQwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction$AsyncSingleAction.lambda$doStart$3(org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)"}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N3iNjVmP1b90Y_Au3khyRAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "void org.elasticsearch.threadpool.ThreadPool$1.run()", "offset": 2}, "line": {"number": 402}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALqAi"}} +{"Stackframe": {"function": {"name": "__x64_sys_unlink"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ThkKQ-mbqxbswQXS_1D96gAAAAAAAABx"}} +{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "int com.fasterxml.jackson.dataformat.smile.SmileGenerator._findSeenName(java.lang.String)", "offset": 24}, "line": {"number": 2622}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nnUdNj2uBRgH8hkAFjfx5gAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap.forEach(java.util.function.BiConsumer)", "offset": 6}, "line": {"number": 1421}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$1.doRun()"}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W19Tjw-jwIbyufOKZLiEmQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "java.lang.Throwable java.lang.Throwable.fillInStackTrace()", "offset": 2}, "line": {"number": 783}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "756-4PT13Jk_CirPtg_SfQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "long org.apache.lucene.search.Boolean2ScorerSupplier$$Lambda$8036+0x0000000802656f58.applyAsLong(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.decode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 4}, "line": {"number": 1286}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VHW64ADdKWEeKDNfyNMi1wAAAAAAAAEV"}} +{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.xcontent.ObjectParser.parse(org.elasticsearch.xcontent.XContentParser, java.lang.Object, java.lang.Object)", "offset": 47}, "line": {"number": 320}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AAnABuJtrWflPvotxCoPjQAAAAAAAAFD"}} +{"Stackframe": {"file": {"name": "AccessControlContext.java"}, "function": {"name": "void java.security.AccessControlContext.checkPermission(java.security.Permission)", "offset": 56}, "line": {"number": 463}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0WwlJv4egC9_TYsNNy-2uAAAAAAAAADs"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "java.lang.String org.elasticsearch.transport.TcpTransport.handleRequest(org.elasticsearch.transport.TcpChannel, java.lang.String, org.elasticsearch.common.io.stream.StreamInput, long, int, org.elasticsearch.Version, java.net.InetSocketAddress, byte)", "offset": 27}, "line": {"number": 1246}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Gu2so7XtpGUr5L4B1Car9QAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AbstractNioChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.forceFlush()"}, "line": {"number": 368}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fFtXuenTBEiIanE9ZLS9KQAAAAAAAACH"}} +{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterState org.elasticsearch.cluster.ClusterState$ClusterStateDiff.apply(org.elasticsearch.cluster.ClusterState)", "offset": 12}, "line": {"number": 812}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFp"}} +{"Stackframe": {"file": {"name": "IndicesAliasesRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.IndicesAliasesRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 55}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l_plqR4x5xi_qOVu9JWCxQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher.doCheckAndNotify()"}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Iua6UXBxSmqy5taRqVRXwgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.acquirePrimaryOperationPermit(org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 896}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dn1QdHTtENizBvfQq0rJpgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Rewriteable.java"}, "function": {"name": "void org.elasticsearch.index.query.Rewriteable.rewriteAndFetch(org.elasticsearch.index.query.Rewriteable, org.elasticsearch.index.query.QueryRewriteContext, org.elasticsearch.action.ActionListener)"}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1LJLLPHZa7_J46rYsATDdAAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "void org.elasticsearch.cluster.ClusterState$ClusterStateDiff.(org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)", "offset": 5}, "line": {"number": 761}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OzkHkS17HRu8c3H4oJbrdwAAAAAAAABl"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.authenticateWithCache(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WvBX7aqogcS_sYCA-tA5IQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "HandledTransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.HandledTransportAction$TransportHandler.messageReceived(org.elasticsearch.action.ActionRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HC0gC3BFwdNWsLtKomq2gQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "FieldMapper.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.index.mapper.FieldMapper$MultiFields.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)"}, "line": {"number": 610}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "198FZCTxq16d0UJlhg9MrgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "DataInput.java"}, "function": {"name": "java.lang.String org.apache.lucene.store.DataInput.readString()"}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp"}} +{"Stackframe": {"function": {"name": "__schedule"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k4vCwNOIBWpsT80Dtnw9LAAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.write(int)", "offset": 5}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3jzoaxecTMpMeDCGDwy-RgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "java.lang.Object java.util.concurrent.ConcurrentHashMap.remove(java.lang.Object)"}, "line": {"number": 1097}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$AuthorizationResultListener.onResponse(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationResult)", "offset": 6}, "line": {"number": 689}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bY3RtTMNEnhvgonzWleY4wAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.implWrite(byte[], int, int)", "offset": 5}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2m4VqGfi_IE6FL0pSfE_-wAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.updateDocument(org.apache.lucene.index.Term, java.lang.Iterable)", "offset": 4}, "line": {"number": 1571}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wrBa50Kv2QbqC8pKyQLbSgAAAAAAAABI"}} +{"Stackframe": {"file": {"name": "URI.java"}, "function": {"name": "void java.net.URI$Parser.parse(boolean)", "offset": 7}, "line": {"number": 3163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "80G6zvzFPytbRyfwuXWQcAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "sun.nio.fs.UnixPath sun.nio.fs.UnixPath.getName(int)"}, "line": {"number": 332}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nRErDzpnTzpX2rOLznVipAAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeList(java.util.List)", "offset": 2}, "line": {"number": 915}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F-UVz7qWVUzScRv1FhkbzQAAAAAAAAGS"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 42}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LPlt4oo-IpHI2h8d_e_PDQAAAAAAAACY"}} +{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "long org.apache.lucene.index.DocumentsWriter.flushAllThreads()", "offset": 22}, "line": {"number": 672}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0cZiHBBWN2vYtEyCZ5X5wgAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$2(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener, org.elasticsearch.common.util.concurrent.ListenableFuture, org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$CachedResult)", "offset": 4}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p_BQ7Yb3OD8awPcwxbgm8QAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.AbstractObjectParser$$Lambda$1471+0x00000008011897d0.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qN4Vqjijt0HHN8TkXT1dVwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "SocketDispatcher.java"}, "function": {"name": "int sun.nio.ch.SocketDispatcher.write(java.io.FileDescriptor, long, int)"}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6dExDGydccb5ppCwtV6RSQAAAAAAAABJ"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState$Builder.build()"}, "line": {"number": 507}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XkH8NDliPW9U7dMx7efo5wAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "TopDocsCollectorContext.java"}, "function": {"name": "org.elasticsearch.common.lucene.search.TopDocsAndMaxScore org.elasticsearch.search.query.TopDocsCollectorContext$SimpleTopDocsCollectorContext.newTopDocs()", "offset": 7}, "line": {"number": 312}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcED"}} +{"Stackframe": {"function": {"name": "__do_sys_newfstat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OKXE0TsqEsNxLqr0g-oK6QAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "JvmGcMonitorService.java"}, "function": {"name": "void org.elasticsearch.monitor.jvm.JvmGcMonitorService$JvmMonitor.run()"}, "line": {"number": 426}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0YpHRX6ZLVSO127u68ifLAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.Map$Entry java.util.HashMap$EntryIterator.next()"}, "line": {"number": 1617}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AHDWiqg2PdozODqc3QF78QAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "BooleanQuery.java"}, "function": {"name": "boolean org.apache.lucene.search.BooleanQuery.equalsTo(org.apache.lucene.search.BooleanQuery)", "offset": 2}, "line": {"number": 434}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "We8y-sSERHR4cZ5ibo5NRgAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "AutomatonQuery.java"}, "function": {"name": "void org.apache.lucene.search.AutomatonQuery.(org.apache.lucene.index.Term, org.apache.lucene.util.automaton.Automaton, int, boolean)", "offset": 4}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIsSN"}} +{"Stackframe": {"function": {"name": "truncate_inode_pages_range"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "G2n_GX3QviffvfY7aSFilgAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "DirectMethodHandleAccessor.java"}, "function": {"name": "java.lang.Object jdk.internal.reflect.DirectMethodHandleAccessor.invokeImpl(java.lang.Object, java.lang.Object[])", "offset": 1}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BD-QSmQP8xD9tmGVKfoJ8AAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.concurrent.ThreadContext$$Lambda$6675+0x0000000802407bf8.read(org.elasticsearch.common.io.stream.StreamInput)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCIE"}} +{"Stackframe": {"function": {"name": "seq_path_root"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIaN"}} +{"Stackframe": {"function": {"name": "ip_local_deliver"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lF0402c3xDTaGy1WpLy7vwAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "Lucene90CompoundFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90CompoundFormat.writeCompoundFile(org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo)", "offset": 8}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lmEDdo47Bm7dynPLqUx_fAAAAAAAAABe"}} +{"Stackframe": {"file": {"name": "DslJsonSerializer.java"}, "function": {"name": "void co.elastic.apm.agent.report.serialize.DslJsonSerializer.serializeStackTraceArrayElements(java.lang.StackTraceElement[])", "offset": 21}, "line": {"number": 989}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gm8AuUNO9K8eEDhJQ1w7agAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "QueuedThreadPool.java"}, "function": {"name": "void org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(java.lang.Runnable)"}, "line": {"number": 883}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2SsSTdYmCfm-g39jtVjCvwAAAAAAAACT"}} +{"Stackframe": {"file": {"name": "TransportGetSnapshotsAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.snapshots.get.TransportGetSnapshotsAction.getMultipleReposSnapshotInfo(boolean, org.elasticsearch.cluster.SnapshotsInProgress, java.util.List, java.lang.String[], boolean, boolean, org.elasticsearch.tasks.CancellableTask, org.elasticsearch.action.admin.cluster.snapshots.get.GetSnapshotsRequest$SortBy, org.elasticsearch.action.admin.cluster.snapshots.get.GetSnapshotsRequest$After, int, org.elasticsearch.search.sort.SortOrder, org.elasticsearch.action.ActionListener)", "offset": 29}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m-b1Zgjt4v-saeL7kAv5lwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "RestBulkAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.document.RestBulkAction.lambda$prepareRequest$0(org.elasticsearch.client.node.NodeClient, org.elasticsearch.action.bulk.BulkRequest, org.elasticsearch.rest.RestChannel)"}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1c7wfSzTBWNtKP8vA7BBsAAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.tryRead(java.io.FileDescriptor, byte[], int, int)", "offset": 3}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4fSOtc6eDAaA6I0MG40V3wAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.lambda$forceApply$25(org.apache.lucene.index.BufferedUpdatesStream$SegmentState[], java.util.concurrent.atomic.AtomicBoolean, java.util.Set)"}, "line": {"number": 6134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4TLVOI15O9hT3k5UjShaLgAAAAAAAABv"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "boolean org.elasticsearch.index.shard.IndexShard.scheduledRefresh()", "offset": 18}, "line": {"number": 3826}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wb65uaTCBYe2MCZtuMHkqAAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "TokenService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.TokenService.tryAuthenticateToken(org.elasticsearch.common.settings.SecureString, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 393}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fqMuFCyw6Ke6rdEcCkNIrAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "org.elasticsearch.transport.TransportRequest org.elasticsearch.transport.RequestHandlerRegistry.newRequest(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BY5YV5xXx7ZBlABDbJ23mAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$6(org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationResult)", "offset": 1}, "line": {"number": 433}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QTjf5Ta2BqWKmmdF_ECRlgAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "Queries.java"}, "function": {"name": "org.apache.lucene.search.Query org.elasticsearch.common.lucene.search.Queries.newNonNestedFilter()", "offset": 2}, "line": {"number": 61}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j_DalQzm9M9lsrdxKoLeDwAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 222}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fD5Zam0aMgZzi6yQShKg2QAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.fieldvisitor.StoredFieldLoader$$Lambda$8274+0x00000008027661c8.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XfzVlqt59V4pxpf_35ocjgAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "HealthChecks.java"}, "function": {"name": "java.util.concurrent.CompletionStage no.found.service.health.HealthChecks.executeChecks(java.util.concurrent.Executor)", "offset": 15}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xNgBHgNqPNx9KViH_BIZBQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "LinkedHashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.LinkedHashMap.newNode(int, java.lang.Object, java.lang.Object, java.util.HashMap$Node)"}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_-w0jN8EBuSyBPLluRtS_AAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "void java.util.Arrays.fill(int[], int)"}, "line": {"number": 3181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UbN9iJkCyKUEAH9roSlHpwAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write(byte[], int, int)", "offset": 2}, "line": {"number": 400}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6mWHIvKcVS0RX9PbNqiFMwAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$DirectResponseChannel.sendResponse(org.elasticsearch.transport.TransportResponse, org.elasticsearch.transport.TransportResponseOptions)", "offset": 6}, "line": {"number": 1134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "40oG6-IrciuAgTpVOuRhmQAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$1.doRun()"}, "line": {"number": 527}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "er7IYYpYGm8FuaYV6j9_KgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "DeflaterOutputStream.java"}, "function": {"name": "void java.util.zip.DeflaterOutputStream.deflate()"}, "line": {"number": 250}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p6Bzxzm52ErHu1F2bY_TegAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "NodeEnvironment.java"}, "function": {"name": "void org.elasticsearch.env.NodeEnvironment.assertEnvIsLocked()", "offset": 3}, "line": {"number": 1105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Tzjtq4EDG4TD9HdN8PuouwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "FieldAndDocumentLevelSecurityRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.interceptor.FieldAndDocumentLevelSecurityRequestInterceptor.intercept(java.lang.Object, org.elasticsearch.xpack.security.user.User)"}, "line": {"number": 33}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL5fR"}} +{"Stackframe": {"function": {"name": "__f_unlock_pos"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Vru4hpAw_7_usxGosAlYKQAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateAppliers(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.common.StopWatch)", "offset": 1}, "line": {"number": 490}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5rjyz2cJULt1ApwgwhK6XAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannel.writeAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAb-w"}} +{"Stackframe": {"function": {"name": "aufs_permission"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8-MMxslGaTYHxfHF1qfQfgAAAAAAAABv"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ReroutePhase.performLocalAction(org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.cluster.node.DiscoveryNode, org.elasticsearch.cluster.metadata.IndexMetadata)", "offset": 11}, "line": {"number": 893}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6bUb6PbjXkAtRAQm7Ra2sQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$consumeToken$14(java.util.Map, org.elasticsearch.xpack.core.security.user.User)"}, "line": {"number": 302}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fw_-Aaamj8Rs4l-zocEV8AAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "Cipher.java"}, "function": {"name": "void javax.crypto.Cipher.updateAAD(byte[])", "offset": 4}, "line": {"number": 2707}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N9zxMuVRpQW2eudcqAYcbAAAAAAAAABC"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$2(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener, org.elasticsearch.common.util.concurrent.ListenableFuture, org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$UserWithHash)", "offset": 18}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M35XBWe3gnTsFQlgGAvN-QAAAAAAAAB6"}} +{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authc.support.BCrypt.key(byte[])", "offset": 14}, "line": {"number": 562}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EYg23MDW9OugrMeHK86augAAAAAAAAFi"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.runTask(org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask)", "offset": 38}, "line": {"number": 407}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_"}} +{"Stackframe": {"function": {"name": "do_futex"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Hv4qsTbjF5vdy7Ua2f84lAAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "ResultDeduplicator.java"}, "function": {"name": "void org.elasticsearch.action.ResultDeduplicator.executeOnce(java.lang.Object, org.elasticsearch.action.ActionListener, java.util.function.BiConsumer)", "offset": 2}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u93Ukboxh3n8fpdAM9THpwAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "AuthorizationUtils.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationUtils$AsyncAuthorizer.authorize(org.elasticsearch.xpack.security.authz.AuthorizationService)", "offset": 9}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NcIQR2c5Ob8K5vbpAkilygAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Searcher org.elasticsearch.index.engine.Engine.acquireSearcher(java.lang.String, org.elasticsearch.index.engine.Engine$SearcherScope, java.util.function.Function)", "offset": 3}, "line": {"number": 706}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zgO9-qlGF96Qf8hviCOy7QAAAAAAAABm"}} +{"Stackframe": {"file": {"name": "TransportClusterStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.stats.ClusterStatsNodeResponse org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction.nodeOperation(org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction$ClusterStatsNodeRequest, org.elasticsearch.tasks.Task)", "offset": 6}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "POaf2meILyNtXlyuau5zHwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$$Lambda$5077+0x00000008020bf4b8.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_-XUdumhTxHCVZ0GQJxIggAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ChannelActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.ChannelActionListener.onResponse(java.lang.Object)"}, "line": {"number": 16}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SVYBVG1fCfTODpNzLfPxlQAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.lambda$handleRequest$0(java.lang.String, org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient, org.elasticsearch.xpack.core.security.authc.support.SecondaryAuthentication)", "offset": 4}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C1S0u5i-I99o7AP-YW5LEQAAAAAAAABN"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.unknownValue(java.lang.Object, boolean)", "offset": 13}, "line": {"number": 822}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHaMZ"}} +{"Stackframe": {"function": {"name": "__do_sys_bpf"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_Mj0l5QoylIkj8uQiHBbSgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.doHandleResponse(org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EjqVtFve0NBSahnBSZ385QAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "boolean java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.add(java.lang.Runnable)"}, "line": {"number": 1127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uIMZbQBpWylsvNiHYVayGwAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.SingleThreadEventExecutor$5.run()", "offset": 8}, "line": {"number": 858}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "NodeService.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.node.NodeService.stats(org.elasticsearch.action.admin.indices.stats.CommonStatsFlags, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean)", "offset": 4}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.SingleThreadEventExecutor$4.run()", "offset": 8}, "line": {"number": 997}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i2aFs26ofgy9R_bgqRAgPQAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "AbstractObjectCollection.java"}, "function": {"name": "java.lang.Object[] com.carrotsearch.hppc.AbstractObjectCollection.toArray(java.lang.Class)", "offset": 3}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWrX"}} +{"Stackframe": {"function": {"name": "vfs_read"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9J2jLQ1FZetb1lgChbiqDwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$10770+0x000000080298f318.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h-wCzOxgNVXW0rGeq9VRGAAAAAAAAABu"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendLocalRequest(long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions)", "offset": 11}, "line": {"number": 906}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i32deQLexkVpk6b1igaeZgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "AESCipher.java"}, "function": {"name": "int com.sun.crypto.provider.AESCipher.engineDoFinal(byte[], int, int, byte[], int)"}, "line": {"number": 501}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vtOmTuUGvKYiQRK_O9kHuwAAAAAAAANU"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "long[] org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.writeValues(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 116}, "line": {"number": 286}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AATo2Vqo1n4TLgDJq9tPgwAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "Netty4HttpPipeliningHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpPipeliningHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 2}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jV8HGQcIH37huzYl8sdkOQAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "FileBasedSeedHostsProvider.java"}, "function": {"name": "java.util.List org.elasticsearch.discovery.FileBasedSeedHostsProvider.getHostsList()", "offset": 4}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tFnTI0KlLYyCsvALAFvbSwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ShardId.java"}, "function": {"name": "void org.elasticsearch.index.shard.ShardId.writeTo(org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3rHPfLdsGQfhdDUx1rePLAAAAAAAAAB0"}} +{"Stackframe": {"file": {"name": "DateFieldMapper.java"}, "function": {"name": "org.elasticsearch.index.mapper.MappedFieldType$Relation org.elasticsearch.index.mapper.DateFieldMapper$DateFieldType.isFieldWithinQuery(long, long, java.lang.Object, java.lang.Object, boolean, boolean, java.time.ZoneId, org.elasticsearch.common.time.DateMathParser, org.elasticsearch.index.query.QueryRewriteContext)", "offset": 17}, "line": {"number": 572}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dXCCMJJCG6SB0NI-JLXs-wAAAAAAAABx"}} +{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "com.carrotsearch.hppc.cursors.ObjectObjectCursor com.carrotsearch.hppc.ObjectObjectHashMap$EntryIterator.fetch()", "offset": 12}, "line": {"number": 664}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "d__-FJDRZlyO8YWNJRXoCgAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "void java.util.concurrent.ConcurrentHashMap$BaseIterator.(java.util.concurrent.ConcurrentHashMap$Node[], int, int, int, java.util.concurrent.ConcurrentHashMap)", "offset": 2}, "line": {"number": 3435}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALQsy"}} +{"Stackframe": {"function": {"name": "do_dentry_open"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZmLYrdZRRL-TXWg182qKJAAAAAAAAABx"}} +{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "boolean java.util.regex.Pattern$CharPropertyGreedy.match(java.util.regex.Matcher, int, java.lang.CharSequence)", "offset": 22}, "line": {"number": 4302}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAI9or"}} +{"Stackframe": {"function": {"name": "memdup_user"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5R-yx7MYDZ-mt3l2_RLRhwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Lucene54DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene54.Lucene54DocValuesProducer$CompressedBinaryDocValues$CompressedBinaryTermsEnum.readTerm(int)"}, "line": {"number": 1346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlqJ"}} +{"Stackframe": {"function": {"name": "show_mountinfo"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y9mQUdyp86jQhHqOid6GcwAAAAAAAABF"}} +{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.OutboundMessage, org.elasticsearch.core.Releasable)", "offset": 13}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JZAp-_m0--d0j2rImdy6sQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "java.lang.Object[] java.util.Arrays.copyOf(java.lang.Object[], int)"}, "line": {"number": 3481}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dxSK3xE1ZB_w58ylB87r2QAAAAAAAAP4"}} +{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment org.apache.lucene.index.DocumentsWriterPerThread.flush(org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 86}, "line": {"number": 395}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mE1ci0y85Ym-Dqw-Q5t-OwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ActionRunnable.java"}, "function": {"name": "void org.elasticsearch.action.ActionRunnable$1.doRun()"}, "line": {"number": 34}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KKv0NXm_ezj8s4xL2h0ukQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "JsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.JsonParser.nextFieldName()"}, "line": {"number": 1065}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AbstractResourceWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.AbstractResourceWatcher.checkAndNotify()", "offset": 1}, "line": {"number": 33}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QE1C6oZLYffge09QUEmCwQAAAAAAAADJ"}} +{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 42}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mSpmTS_M_7gsQqQ-Ipk5OgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.fetch.QueryFetchSearchResult org.elasticsearch.search.SearchService.executeFetchPhase(org.elasticsearch.search.internal.ReaderContext, org.elasticsearch.search.internal.SearchContext, long)", "offset": 2}, "line": {"number": 654}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2NV1_P-7MD9EV4IU3PPFPgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ExecutionService.java"}, "function": {"name": "void org.elasticsearch.xpack.watcher.execution.ExecutionService$WatchExecutionTask.run()"}, "line": {"number": 499}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eHnN2Txvq-iOALceSe76EgAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "int[] org.elasticsearch.transport.TcpTransport.defaultPortRange()", "offset": 3}, "line": {"number": 512}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo"}} +{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.nio.channels.FileChannel sun.nio.fs.UnixChannelFactory.newFileChannel(int, sun.nio.fs.UnixPath, java.lang.String, java.util.Set, int)", "offset": 17}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "paeptaXHRDYD67F7ORC0twAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "org.elasticsearch.common.collect.ImmutableOpenMap org.elasticsearch.common.io.stream.StreamInput.readImmutableMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader)", "offset": 6}, "line": {"number": 710}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3r-tlbWKH7Bh4O96M6j3bgAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "URLClassPath.java"}, "function": {"name": "jdk.internal.loader.Resource jdk.internal.loader.URLClassPath$JarLoader.getResource(java.lang.String, boolean)", "offset": 6}, "line": {"number": 934}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WMhHaOTktxi97U0bj2R8pgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.apache.lucene.search.Weight.bulkScorer(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GWaNS7Aannj1ZssQUxZReQAAAAAAAAGH"}} +{"Stackframe": {"file": {"name": "DocumentMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentMapper.(org.elasticsearch.index.mapper.MapperService, org.elasticsearch.index.mapper.Mapping)", "offset": 47}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jfWZKcvJcvZvI74FMiyrAgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.access$000(org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator)"}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iwJm4bnAtF_1nhbNXfjG4QAAAAAAAACs"}} +{"Stackframe": {"file": {"name": "StringLatin1.java"}, "function": {"name": "java.lang.String java.lang.StringLatin1.toLowerCase(java.lang.String, byte[], java.util.Locale)", "offset": 21}, "line": {"number": 453}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "d42kcgsfWYVSrmwZHQBrmgAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "JarFile.java"}, "function": {"name": "java.util.zip.ZipEntry java.util.jar.JarFile.getEntry(java.lang.String)", "offset": 7}, "line": {"number": 513}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ge0L0SwsSbyUWsXqVMbKswAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.io.OutputStream java.nio.file.Files.newOutputStream(java.nio.file.Path, java.nio.file.OpenOption[])"}, "line": {"number": 224}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$1862.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sh5haWvwgdAIUGCzIKDuvgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "ConstructingObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.ConstructingObjectParser.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)"}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KVrvJesf6XnwO-_VBlzbfQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "SliceOps.java"}, "function": {"name": "java.util.stream.Sink java.util.stream.SliceOps$1.opWrapSink(int, java.util.stream.Sink)"}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0Hv4A9FbObC1xflw5MxpBgAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "TimSorter.java"}, "function": {"name": "void org.apache.lucene.util.TimSorter.merge(int, int, int)", "offset": 11}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rZfJBEypdS4uOTEOkE706AAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextThreadLocal.set(org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct)", "offset": 3}, "line": {"number": 511}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e7YYWaQTMh8P2PCVzA2a8gAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "boolean java.util.AbstractMap.containsKey(java.lang.Object)", "offset": 10}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eM3LHfJob_f6p51a6_86sgAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat$$Lambda$8685+0x000000080207b720.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$resolveAuthorizationInfo$1(org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.permission.Role)", "offset": 10}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Bf-yRJvH4QpulLhf_rmUcgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "GrowableWriter.java"}, "function": {"name": "void org.apache.lucene.util.packed.GrowableWriter.set(int, long)"}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e4gRr7pHlbk5g_m4oMCLjwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$$Lambda$636+0x0000000800f6ec70.close()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uEMMwNyWvJYvudsWRyLnxQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ActionListenerResponseHandler.java"}, "function": {"name": "void org.elasticsearch.action.ActionListenerResponseHandler.handleResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "U0eTKdsDxlOsU56i41jsOgAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "boolean java.util.stream.AbstractPipeline.copyIntoWithCancel(java.util.stream.Sink, java.util.Spliterator)", "offset": 5}, "line": {"number": 501}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FTxQJid-O66-FuYdEDBjgwAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequest(org.elasticsearch.cluster.node.DiscoveryNode, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 6}, "line": {"number": 690}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4ExmIEmG5cbeqkrcSlhsEAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Directory.java"}, "function": {"name": "org.apache.lucene.store.ChecksumIndexInput org.apache.lucene.store.Directory.openChecksumInput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PtC-S19WCnMV3aDspjfrbQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "MultiTermsEnum.java"}, "function": {"name": "boolean org.apache.lucene.index.MultiTermsEnum$TermMergeQueue.lessThan(java.lang.Object, java.lang.Object)"}, "line": {"number": 405}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JWK_qo1WxBG5S-rYdc4IpwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$RunAfterActionListener.onResponse(java.lang.Object)"}, "line": {"number": 392}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "io.netty.channel.ChannelPipeline io.netty.channel.DefaultChannelPipeline.fireChannelRead(java.lang.Object)"}, "line": {"number": 919}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "f4RFO4opMHbfDHsMuk104wAAAAAAAACf"}} +{"Stackframe": {"file": {"name": "LRUQueryCache.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight.bulkScorer(org.apache.lucene.index.LeafReaderContext)", "offset": 26}, "line": {"number": 810}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FmQpCEOKh0tQsiSVjTAfogAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "EventFD.java"}, "function": {"name": "int sun.nio.ch.EventFD.set0(int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k9mnaRclHZhhpFF3LBU5TwAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "SortedDocValuesTermsEnum.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.apache.lucene.index.SortedDocValuesTermsEnum.next()", "offset": 4}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTih"}} +{"Stackframe": {"function": {"name": "new_sync_read"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RLw4AzQ1twQD4Yf1dhVtogAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.xpack.core.template.IndexTemplateRegistry$$Lambda$7884+0x0000000801f2c240.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bu6t-WTb-nsfb-QwFBEV_QAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.execute(java.lang.Runnable)", "offset": 28}, "line": {"number": 1349}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DSeW5vniUG6RwPchwmi1uQAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.createCompoundFile(org.apache.lucene.util.InfoStream, org.apache.lucene.store.TrackingDirectoryWrapper, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext, org.apache.lucene.util.IOUtils$IOConsumer)", "offset": 10}, "line": {"number": 5313}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hlX4PwF686mIDW3QTMcPLgAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.processEvents(java.util.Queue, boolean, boolean)", "offset": 5}, "line": {"number": 5043}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(java.lang.String, org.elasticsearch.transport.TransportRequest, boolean, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C6MkBEHFDeIGZnIrO2EiSQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress.writeTo(org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "n9pHjqEBxYX6b9EURk3zKQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKeysPlain(java.util.Set)", "offset": 4}, "line": {"number": 682}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XwcbS0rkymicbnLB2hsPAwAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory.deleteFile(java.lang.String)", "offset": 3}, "line": {"number": 335}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OxxKBS9Al6yHytdJFJ36vwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$$Lambda$5079+0x00000008020bf8d8.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aHgX82y4T_e8yx1PTBBNgQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.support.AbstractXContentParser.readValue(org.elasticsearch.common.xcontent.XContentParser, org.elasticsearch.common.xcontent.support.AbstractXContentParser$MapFactory, org.elasticsearch.common.xcontent.XContentParser$Token)", "offset": 3}, "line": {"number": 385}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N1PQDu1Ay8cMXPJ8jF7fCAAAAAAAAABr"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.store.IOContext, java.lang.String, org.apache.lucene.codecs.compressing.CompressionMode, int, int, int)", "offset": 15}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "il81Lr-W5rr5XmSIKLZOpgAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.xcontent.XContentBuilder.unknownValue(java.lang.Object, boolean)", "offset": 6}, "line": {"number": 932}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6KM6RK-sq5wYpyjnMfBa7AAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "BufferedInputStream.java"}, "function": {"name": "int java.io.BufferedInputStream.read1(byte[], int, int)", "offset": 7}, "line": {"number": 282}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Vrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "NotifyOnceListener.java"}, "function": {"name": "void org.elasticsearch.action.NotifyOnceListener.onResponse(java.lang.Object)", "offset": 1}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1t7fQsJNgmiW7cyVgRgDbAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "EventFD.java"}, "function": {"name": "void sun.nio.ch.EventFD.set()"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANsQP"}} +{"Stackframe": {"function": {"name": "proc_pid_cmdline_read"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vqs9jnSjNyh-nZ4ZqxUaIgAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer()", "offset": 2}, "line": {"number": 2647}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1xBvehWaFQefKkuHjb2hUwAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$CachingAsyncSupplier.getAsync(org.elasticsearch.action.ActionListener)", "offset": 12}, "line": {"number": 1032}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "otkeOgHMDZdOlA7GywTS3gAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient.execute(org.elasticsearch.action.Action, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 408}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H7k-cEmonp8Mf9KH-IRLOgAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$1(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 7}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sIHvJnxChEoRsKipii7HlAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService$1.onResponse(java.lang.Object)"}, "line": {"number": 263}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.doAuthenticate(org.elasticsearch.xpack.security.authc.Authenticator$Context, boolean, org.elasticsearch.action.ActionListener)", "offset": 20}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kQIfOKgH7suSILPob4uOXAAAAAAAAAFU"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$CommitId org.elasticsearch.index.engine.InternalEngine.flush(boolean, boolean)", "offset": 50}, "line": {"number": 2087}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sF38PDfU0kIoG-7bSfYumwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService$$Lambda$3063.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oIbcZroK0mbxpVqmuMaywgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Rewriteable.java"}, "function": {"name": "void org.elasticsearch.index.query.Rewriteable.rewriteAndFetch(org.elasticsearch.index.query.Rewriteable, org.elasticsearch.index.query.QueryRewriteContext, org.elasticsearch.action.ActionListener, int)", "offset": 2}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BMkPKAR3xjhA9hAiL4J1DAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "NettyAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf org.elasticsearch.transport.NettyAllocator$NoDirectBuffers.buffer(int)"}, "line": {"number": 221}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pnx0xwNPdcZ32kceiz_BpQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "PriorityQueue.java"}, "function": {"name": "java.lang.Object org.apache.lucene.util.PriorityQueue.updateTop()"}, "line": {"number": 211}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4vumsXLFX3u2H9rleESgvQAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "AbstractPagedMutable.java"}, "function": {"name": "void org.apache.lucene.util.packed.AbstractPagedMutable.set(long, long)", "offset": 3}, "line": {"number": 98}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "v3mwO6LH2DaLxjpGkTBbYgAAAAAAAADV"}} +{"Stackframe": {"file": {"name": "TransportClusterHealthAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.health.TransportClusterHealthAction.executeHealth(org.elasticsearch.action.admin.cluster.health.ClusterHealthRequest, org.elasticsearch.action.ActionListener)", "offset": 45}, "line": {"number": 190}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XoNqQsMeesgJkRR-qQrvugAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrapAndFlush(io.netty.channel.ChannelHandlerContext)", "offset": 15}, "line": {"number": 803}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1vmWfRl7JvnIelrwmbOFDwAAAAAAAABd"}} +{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 21}, "line": {"number": 220}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "smBhnYHgATZAzavAZlHv_AAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.inboundMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.BytesReference)", "offset": 4}, "line": {"number": 913}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qH9UPrg4huZ8XQq2XLmR-AAAAAAAAABm"}} +{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "int sun.nio.ch.FileChannelImpl.read(java.nio.ByteBuffer, long)", "offset": 14}, "line": {"number": 824}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFbO"}} +{"Stackframe": {"function": {"name": "generic_exec_single"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sXZpSIBEOU_muIAf05ydPAAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$1.doRun()"}, "line": {"number": 341}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jPboacU0YKXwkYKndASIHgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "URLClassPath.java"}, "function": {"name": "java.net.URL jdk.internal.loader.URLClassPath.checkURL(java.net.URL)", "offset": 2}, "line": {"number": 532}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BCRsSn7mjeP9Qqw10U_ACAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "AggregatorBase.java"}, "function": {"name": "org.elasticsearch.search.aggregations.LeafBucketCollector org.elasticsearch.search.aggregations.AggregatorBase.getLeafCollector(org.apache.lucene.index.LeafReaderContext)", "offset": 1}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FzJF8qZ49M3tzNcHAYKOpwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "URLClassLoader.java"}, "function": {"name": "java.io.InputStream java.net.URLClassLoader.getResourceAsStream(java.lang.String)", "offset": 1}, "line": {"number": 284}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CkV75JgYBXf-KhQ2Owuf9wAAAAAAAAEf"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrap(io.netty.channel.ChannelHandlerContext, boolean)", "offset": 55}, "line": {"number": 862}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bnXqUjxAcj-_pCBkj3VY6gAAAAAAAABw"}} +{"Stackframe": {"file": {"name": "OutputRecord.java"}, "function": {"name": "long sun.security.ssl.OutputRecord.t13Encrypt(sun.security.ssl.SSLCipher$SSLWriteCipher, byte, java.nio.ByteBuffer, int, int, int, sun.security.ssl.ProtocolVersion)", "offset": 21}, "line": {"number": 413}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F_PHkNHp1cM7FmVp9OVy9AAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKeysPlain(java.util.Set)", "offset": 11}, "line": {"number": 556}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 5}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E-UV4Q5gHz5xBV_lbP0MMgAAAAAAAAEy"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node[] java.util.HashMap.resize()", "offset": 57}, "line": {"number": 735}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPTD"}} +{"Stackframe": {"function": {"name": "napi_complete_done"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JZ7XDmRGv-o1RsE1NP1PJAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "StringLatin1.java"}, "function": {"name": "char java.lang.StringLatin1.charAt(byte[], int)"}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CbaXrSWy6QpifdaKY580cQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "BuiltinClassLoader.java"}, "function": {"name": "java.net.URL jdk.internal.loader.BuiltinClassLoader.lambda$findResourceOnClassPath$0(java.lang.String)"}, "line": {"number": 535}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jW43N2PmWvpZYp55bora1gAAAAAAAACL"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 71}, "line": {"number": 570}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h8ulXQ0PqCWi8WjndyD3QAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authc.support.BCrypt.encipher(int[], int)"}, "line": {"number": 1430}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5vShGsOt6DdWOsue-DtpXgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ClientHandshakeContext.java"}, "function": {"name": "void sun.security.ssl.ClientHandshakeContext.kickstart()", "offset": 4}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m_vFRi2fRRTLPHNf1t7ZcQAAAAAAAABJ"}} +{"Stackframe": {"file": {"name": "ActorGraphInterpreter.scala"}, "function": {"name": "int akka.stream.impl.fusing.GraphInterpreterShell$AsyncInput.execute(int)", "offset": 5}, "line": {"number": 521}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$authorizeIndexAction$5(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, java.util.Map, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult)", "offset": 1}, "line": {"number": 327}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$1.onResponse(java.lang.Object)"}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ToVtc2P50kV-QGj3la9_ZAAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.store.StoreStats org.elasticsearch.index.shard.IndexShard.storeStats()", "offset": 7}, "line": {"number": 1110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hT_GFd-d817AZqi9jIee6QAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$1.onResponse(org.elasticsearch.action.ActionResponse)"}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cWSN3IQ3jNhzSL9LJBVnOgAAAAAAAABe"}} +{"Stackframe": {"file": {"name": "OutputRecord.java"}, "function": {"name": "long sun.security.ssl.OutputRecord.t10Encrypt(sun.security.ssl.SSLCipher$SSLWriteCipher, byte, int)", "offset": 13}, "line": {"number": 528}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SlMSKsPQXAL_RyuuiP1MSQAAAAAAAABJ"}} +{"Stackframe": {"file": {"name": "Lucene50StoredFieldsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.StoredFieldsReader org.apache.lucene.codecs.lucene50.Lucene50StoredFieldsFormat.fieldsReader(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.index.FieldInfos, org.apache.lucene.store.IOContext)", "offset": 5}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RQ20oTZ6pwni6paND2updwAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "DefaultTransformer.java"}, "function": {"name": "com.typesafe.config.impl.AbstractConfigValue com.typesafe.config.impl.DefaultTransformer.transform(com.typesafe.config.impl.AbstractConfigValue, com.typesafe.config.ConfigValueType)", "offset": 5}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5cqp6ABMm5Addf0FgPKQIQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "ZipFile.java"}, "function": {"name": "int java.util.zip.ZipFile$Source.readAt(byte[], int, int, long)", "offset": 2}, "line": {"number": 1308}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_F7IJYgvtDq5pEjUn4ybdQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "MapperService.java"}, "function": {"name": "java.util.Map org.elasticsearch.index.mapper.MapperService.mergeAndApplyMappings(java.util.Map, org.elasticsearch.index.mapper.MapperService$MergeReason)"}, "line": {"number": 419}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pFQLco1pJFMLg-Vzz3y8ZgAAAAAAAACL"}} +{"Stackframe": {"file": {"name": "MappingParser.java"}, "function": {"name": "org.elasticsearch.index.mapper.Mapping org.elasticsearch.index.mapper.MappingParser.parse(java.lang.String, org.elasticsearch.common.compress.CompressedXContent, java.lang.String)", "offset": 22}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QE1C6oZLYffge09QUEmCwQAAAAAAAABJ"}} +{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 17}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 5}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T-7yVwNuXXP4l85wV1xmqgAAAAAAAABg"}} +{"Stackframe": {"file": {"name": "S3RetryingInputStream.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3RetryingInputStream.(org.elasticsearch.repositories.s3.S3BlobStore, java.lang.String, long, long)", "offset": 23}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory$FSIndexOutput.(org.apache.lucene.store.FSDirectory, java.lang.String, java.nio.file.OpenOption[])", "offset": 1}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SyH3A-L8GuYowpuZ08nsBwAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeFieldName(java.lang.String)", "offset": 3}, "line": {"number": 546}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "owyrXkB83AG3IYXAToFk1wAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "YAMLParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.dataformat.yaml.YAMLParser.nextToken()", "offset": 9}, "line": {"number": 418}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DAUA7GSw6Ke6rbTnHSbHTAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "org.elasticsearch.transport.TransportRequest org.elasticsearch.transport.RequestHandlerRegistry.newRequest(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Sxgb26oKQwlt07if9woPTQAAAAAAAALo"}} +{"Stackframe": {"function": {"name": "ip_sabotage_in"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7exNcAD3DCXLAozqoZf9bQAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "CharacterRunAutomaton.java"}, "function": {"name": "boolean org.apache.lucene.util.automaton.CharacterRunAutomaton.run(java.lang.String)", "offset": 6}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fZ3COijH60wdDIIVUpSInQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "long java.nio.file.Files.size(java.nio.file.Path)"}, "line": {"number": 2466}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yzswjXVxRE-4XShLDgxaaAAAAAAAAACJ"}} +{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ObjectParser.parseSub(org.elasticsearch.common.xcontent.XContentParser, org.elasticsearch.common.xcontent.ObjectParser$FieldParser, java.lang.String, java.lang.Object, java.lang.Object)", "offset": 17}, "line": {"number": 543}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uOzixkp7ZlAvNxTEUEAtwwAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "ElasticApmTracer.java"}, "function": {"name": "void co.elastic.apm.agent.impl.ElasticApmTracer.afterTransactionStart(java.lang.ClassLoader, co.elastic.apm.agent.impl.transaction.Transaction)", "offset": 7}, "line": {"number": 243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.nio.channels.FileChannel sun.nio.fs.UnixChannelFactory.newFileChannel(sun.nio.fs.UnixPath, java.util.Set, int)"}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sZ-zITk7o3FzWojUIf0L0wAAAAAAAABy"}} +{"Stackframe": {"file": {"name": "StandardTokenizerImpl.java"}, "function": {"name": "int org.apache.lucene.analysis.standard.StandardTokenizerImpl.getNextToken()", "offset": 30}, "line": {"number": 887}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "int io.netty.handler.ssl.SslHandler.unwrap(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, int, int)", "offset": 155}, "line": {"number": 1518}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YF3FgsmtJ5bq5eUQFvPU3AAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "SelectorImpl.java"}, "function": {"name": "int sun.nio.ch.SelectorImpl.select(long)", "offset": 2}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F0PU7bQ8aSr5vRj-z9gSNQAAAAAAAAB8"}} +{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "java.util.concurrent.RunnableScheduledFuture java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()", "offset": 18}, "line": {"number": 1182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgDv"}} +{"Stackframe": {"function": {"name": "__local_bh_enable_ip"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ThG33AeFzjAN_ipcLLd1KwAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "void org.apache.lucene.index.SegmentMerger.mergeFieldInfos()", "offset": 2}, "line": {"number": 214}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "S75DkUYHGa18F1kYhZ0XYwAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 4}, "line": {"number": 274}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cGBPCS3aPXXlmHmrx5RsEQAAAAAAAACn"}} +{"Stackframe": {"file": {"name": "JvmStats.java"}, "function": {"name": "org.elasticsearch.monitor.jvm.JvmStats org.elasticsearch.monitor.jvm.JvmStats.jvmStats()", "offset": 12}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "ActionRunnable.java"}, "function": {"name": "void org.elasticsearch.action.ActionRunnable$2.accept(org.elasticsearch.action.ActionListener)"}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W9D_ahUN7evrE8NIbI96ywAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "DirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.DirectoryReader.openIfChanged(org.apache.lucene.index.DirectoryReader)"}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "emnA4GIO594kGgGOGkqRhgAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "TermQuery.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.TermQuery$TermWeight.scorer(org.apache.lucene.index.LeafReaderContext)", "offset": 1}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XNiEFVfexcwhuzJE2wFqSQAAAAAAAACo"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.consumeUser(org.elasticsearch.xpack.core.security.user.User, java.util.Map)", "offset": 22}, "line": {"number": 653}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E0u1MLNFEnCqJENombcfnQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.util.List java.nio.file.Files.readAllLines(java.nio.file.Path)"}, "line": {"number": 3452}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Xzo8AP-f-a1xKbRltbpi-gAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.merge(java.lang.Object, java.lang.Object, java.util.function.BiFunction)"}, "line": {"number": 1362}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4oROntQ4zAdpf6wKcORUhAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UnixFileSystem.java"}, "function": {"name": "java.lang.String java.io.UnixFileSystem.canonicalize0(java.lang.String)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN6Kx"}} +{"Stackframe": {"function": {"name": "kernfs_sop_show_options"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Tlb-NMKl40FjLIQMDGJfBQAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "SourceLookup.java"}, "function": {"name": "java.util.Map org.elasticsearch.search.lookup.SourceLookup.loadSourceIfNeeded()", "offset": 4}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tzBcwDe6SUq4Jkyew2O5egAAAAAAAACS"}} +{"Stackframe": {"file": {"name": "SegmentCoreReaders.java"}, "function": {"name": "void org.apache.lucene.index.SegmentCoreReaders.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.IOContext)", "offset": 53}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ba23Sz2WIr-h3_3ywbXOAwAAAAAAAACY"}} +{"Stackframe": {"file": {"name": "TransportNodesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation(org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction$NodeStatsRequest, org.elasticsearch.tasks.Task)", "offset": 4}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vDN9klGroza1blCRLcWrMAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "IndexAbstraction.java"}, "function": {"name": "org.elasticsearch.cluster.metadata.IndexAbstraction$Type org.elasticsearch.cluster.metadata.IndexAbstraction$ConcreteIndex.getType()"}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6dOf_roibFbI4CWjV9e8PwAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap$ValueSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 18}, "line": {"number": 1779}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6euAcrRks5bLxxAuk2RtfgAAAAAAAABp"}} +{"Stackframe": {"file": {"name": "DocumentFieldMappers.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentFieldMappers.(java.util.Collection, org.apache.lucene.analysis.Analyzer, org.apache.lucene.analysis.Analyzer, org.apache.lucene.analysis.Analyzer)", "offset": 8}, "line": {"number": 61}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PEbpT_8Xljn7u1j5oJzfHQAAAAAAAAFs"}} +{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.dataformat.smile.SmileParser._handleFieldName()", "offset": 57}, "line": {"number": 1346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dxRWp_ajvwfVnp7V1wqDwQAAAAAAAABf"}} +{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "void org.elasticsearch.search.query.QueryPhase.execute(org.elasticsearch.search.internal.SearchContext)", "offset": 18}, "line": {"number": 98}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gh5ZUK32QaLM1EoyY_BRswAAAAAAAABm"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsReader.(org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat, org.apache.lucene.index.SegmentReadState)", "offset": 33}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.support.nodes.TransportNodesAction.nodeOperation(org.elasticsearch.action.support.nodes.BaseNodeRequest, org.elasticsearch.tasks.Task)"}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Tyuf4RNGIxt-ueaCsLj22AAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "TransportNodesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation(org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction$NodeStatsRequest, org.elasticsearch.tasks.Task)", "offset": 1}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X65gV3sxJNzXSi1CGKTRgAAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "DslJsonSerializer.java"}, "function": {"name": "void co.elastic.apm.agent.report.serialize.DslJsonSerializer.serializeStacktrace(java.lang.StackTraceElement[])", "offset": 3}, "line": {"number": 960}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xgR1nDKqRrRw5aGR8MbuygAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "howoCkte-ATgwNzSYhc3bwAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "TcpTransportChannel.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransportChannel.sendResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x7dNtL9l6yQnqIhb2iRkJQAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "org.elasticsearch.common.collect.Tuple org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.bytes.BytesReference, boolean, org.elasticsearch.common.xcontent.XContentType)", "offset": 11}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANyAN"}} +{"Stackframe": {"function": {"name": "proc_pid_status"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XQF-stwqMiArQgxmCuIBPQAAAAAAAABI"}} +{"Stackframe": {"file": {"name": "ClientHelper.java"}, "function": {"name": "void org.elasticsearch.xpack.core.ClientHelper.executeWithHeadersAsync(java.util.Map, java.lang.String, org.elasticsearch.client.internal.Client, org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 311}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "t7UTQ9GGQKtD8smsLz7rmQAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.internal.SearchContext org.elasticsearch.search.SearchService.createContext(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.index.engine.Engine$Searcher)", "offset": 6}, "line": {"number": 485}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)", "offset": 5}, "line": {"number": 753}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Arz1MMWCC2fkAl6FCL43rAAAAAAAAABQ"}} +{"Stackframe": {"file": {"name": "PushPostingsWriterBase.java"}, "function": {"name": "org.apache.lucene.codecs.BlockTermState org.apache.lucene.codecs.PushPostingsWriterBase.writeTerm(org.apache.lucene.util.BytesRef, org.apache.lucene.index.TermsEnum, org.apache.lucene.util.FixedBitSet, org.apache.lucene.codecs.NormsProducer)", "offset": 12}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EzlTNMIGbx2ZiPDgwyoVKwAAAAAAAAE4"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$PendingBlock.compileIndex(java.util.List, org.apache.lucene.store.RAMOutputStream, org.apache.lucene.util.IntsRefBuilder)", "offset": 24}, "line": {"number": 431}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LZeO9S9IXnalwT9Nl3ihfQAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$executeOneFileSnapshot$78(org.elasticsearch.index.store.Store, org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.elasticsearch.index.shard.ShardId, org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshot$FileInfo, org.elasticsearch.repositories.IndexId, org.elasticsearch.snapshots.SnapshotId, java.util.concurrent.BlockingQueue, java.util.concurrent.Executor, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 2938}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qm1hDSu4gBGUqdizlOHmtQAAAAAAAABZ"}} +{"Stackframe": {"file": {"name": "ServerRuntime.java"}, "function": {"name": "void org.glassfish.jersey.server.ServerRuntime$1.run()", "offset": 15}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1IYhUhcpiA-eO7MqPXqj1QAAAAAAAABO"}} +{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesProducer org.apache.lucene.index.SegmentReader.initDocValuesProducer()", "offset": 10}, "line": {"number": 190}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SiQqkZi_PQebtsnQ4dVCJQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "java.lang.Number com.typesafe.config.impl.SimpleConfig.getNumber(java.lang.String)"}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l0o_mr3onqzQhpZerRGtWAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.startStoredFields(int)"}, "line": {"number": 364}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QmcT1EKH8NJh27zC1hMnYAAAAAAAAACU"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterState org.elasticsearch.snapshots.SnapshotsService$SnapshotShardsUpdateContext.computeUpdatedState()", "offset": 10}, "line": {"number": 3708}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "On3v6Dv2rwT8WclZhpQ9IgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient$ClusterAdmin.execute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 695}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "L5j21l_lgSbj7tDtmImORwAAAAAAAABk"}} +{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "void org.elasticsearch.tracing.apm.APMTracer.setSpanAttributes(java.util.Map, io.opentelemetry.api.trace.SpanBuilder)", "offset": 11}, "line": {"number": 297}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlsoG"}} +{"Stackframe": {"function": {"name": "__tcp_push_pending_frames"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "s4zVuFE809K66EfKcw5rKwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "SessionInputBufferImpl.java"}, "function": {"name": "int org.apache.http.impl.io.SessionInputBufferImpl.streamRead(byte[], int, int)", "offset": 1}, "line": {"number": 137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Lnxtv0aoKpVidKfsnYen4QAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "int java.util.ArrayList$ArrayListSpliterator.characteristics()"}, "line": {"number": 1639}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0Y5Y3h6UQzgvM7WuW977JgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct.access$1100(org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct, java.lang.String, java.lang.String, java.util.function.Function)"}, "line": {"number": 352}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xSxGOEPHSeIqk-xr6UnAuQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.lang.Boolean org.elasticsearch.common.settings.Settings.getAsBoolean(java.lang.String, java.lang.Boolean)"}, "line": {"number": 372}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj"}} +{"Stackframe": {"function": {"name": "do_syscall_64"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjjMP"}} +{"Stackframe": {"function": {"name": "rtnetlink_rcv_msg"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cG5W-PDYduXZ1DZFU5bdYwAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "Netty4MessageChannelHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 4}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALka7"}} +{"Stackframe": {"function": {"name": "link_path_walk.part.33"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GO1QDVqG-4CNnMRn2v_9VAAAAAAAAABW"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "boolean com.fasterxml.jackson.core.json.UTF8StreamJsonParser._loadMore()", "offset": 24}, "line": {"number": 237}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qA6aTmYIY5XQ-D5SlmSYOwAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "Netty4MessageChannelHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler.lambda$doFlush$0(io.netty.channel.ChannelHandlerContext, org.elasticsearch.transport.netty4.Netty4MessageChannelHandler$WriteOperation, io.netty.util.concurrent.Future)", "offset": 2}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN0Cm"}} +{"Stackframe": {"function": {"name": "show_stat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "woaSXtApD-PrSWDZ_aE3VwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Spliterators.java"}, "function": {"name": "void java.util.Spliterators$IteratorSpliterator.forEachRemaining(java.util.function.Consumer)"}, "line": {"number": 1795}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xIfNH7oj8c26gQcDKc66DwAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "LockSupport.java"}, "function": {"name": "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)", "offset": 3}, "line": {"number": 252}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ieVPbh3z67ZFj7IGoqq7zgAAAAAAAACT"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()", "offset": 27}, "line": {"number": 1056}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BqggmkfzJnuxgxfVRTtJOAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "PeerRecoverySourceService.java"}, "function": {"name": "void org.elasticsearch.indices.recovery.PeerRecoverySourceService$StartRecoveryTransportRequestHandler.messageReceived(org.elasticsearch.indices.recovery.StartRecoveryRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B_TZlmg-i-MShObdqiYcyAAAAAAAAAFE"}} +{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.readRecord(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 75}, "line": {"number": 612}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Fg2KiEq3-QS_hoWS2OekUAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "TemplateUtils.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.core.template.TemplateUtils.load(java.lang.String)"}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5utt2dQ8HKrTepHdNpprxQAAAAAAAAFn"}} +{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.CommonStats org.elasticsearch.action.admin.indices.stats.CommonStats.getShardLevelStats(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 21}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2EOfsQbApgG4RbgJc2m_FgAAAAAAAAHR"}} +{"Stackframe": {"file": {"name": "ReplicationTracker.java"}, "function": {"name": "void org.elasticsearch.index.seqno.ReplicationTracker.updateFromMaster(long, java.util.Set, org.elasticsearch.cluster.routing.IndexShardRoutingTable)", "offset": 48}, "line": {"number": 1233}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WBXdhz4cG7Z1nFWG7UChaQAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readMap(org.elasticsearch.common.xcontent.XContentParser, org.elasticsearch.common.xcontent.support.AbstractXContentParser$MapFactory)", "offset": 6}, "line": {"number": 326}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nZYX4eDXJe7LJpXvPCTaIAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "ZipFile.java"}, "function": {"name": "int java.util.zip.ZipFile$ZipFileInputStream.read(byte[], int, int)", "offset": 2}, "line": {"number": 928}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Kg-p48Ob-pDaS5XUMw0BuQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener.completeWith(org.elasticsearch.action.ActionListener, org.elasticsearch.common.CheckedSupplier)"}, "line": {"number": 436}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EFoOI6BMp-b-Y3eJPVq_QQAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "MessageToByteEncoder.java"}, "function": {"name": "void io.netty.handler.codec.MessageToByteEncoder.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 13}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "40ES46dU7pwVTIhZzOkjPwAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermissionCollection.implies(java.security.Permission)", "offset": 9}, "line": {"number": 1202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OCBJ3b0yd0m46kgQppcopwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.xcontent.provider.json.JsonXContentGenerator.writeFieldName(java.lang.String)"}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tscFotyki1cui1xuu3ewxgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.tryApply(org.apache.lucene.index.FrozenBufferedUpdates)", "offset": 2}, "line": {"number": 6038}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l-sBEPXDA8ztd_41Qie1FgAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "boolean org.elasticsearch.index.translog.Translog.ensureSynced(org.elasticsearch.index.translog.Translog$Location)", "offset": 3}, "line": {"number": 844}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aiJGDUDQn3AwPNk1jr1dCQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.lang.Object java.util.Collections$UnmodifiableMap.get(java.lang.Object)"}, "line": {"number": 1454}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3M56M_g_f1gYgGNi_mtl_gAAAAAAAABq"}} +{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "java.util.SortedMap org.elasticsearch.cluster.metadata.Metadata$Builder.buildIndicesLookup()", "offset": 8}, "line": {"number": 1635}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZGiclrIrsuL0m6y7E3kViwAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "ActionFilter.java"}, "function": {"name": "void org.elasticsearch.action.support.ActionFilter$Simple.apply(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.support.ActionFilterChain)", "offset": 1}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VeiXB0YRwCqhIZpdcAnulgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "StepListener.java"}, "function": {"name": "void org.elasticsearch.action.StepListener.innerOnResponse(java.lang.Object)"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D2YgRHuWqhQ-ZOYMf9DAFQAAAAAAAABp"}} +{"Stackframe": {"file": {"name": "SelectorImpl.java"}, "function": {"name": "int sun.nio.ch.SelectorImpl.processReadyEvents(int, sun.nio.ch.SelectionKeyImpl, java.util.function.Consumer)", "offset": 16}, "line": {"number": 307}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VWqFWS_a_jkGmSuTSg6DgQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "PageCacheRecycler.java"}, "function": {"name": "org.elasticsearch.common.recycler.Recycler$V org.elasticsearch.common.util.PageCacheRecycler.bytePage(boolean)", "offset": 1}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wt0sf_JgSqOTKaBcf1zgawAAAAAAAAB7"}} +{"Stackframe": {"file": {"name": "Class.java"}, "function": {"name": "java.io.InputStream java.lang.Class.getResourceAsStream(java.lang.String)", "offset": 36}, "line": {"number": 2787}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jWxMhVzBeHM3bqEF5ueSZwAAAAAAAACO"}} +{"Stackframe": {"file": {"name": "Lucene90PostingsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90PostingsWriter.(org.apache.lucene.index.SegmentWriteState)", "offset": 22}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ8"}} +{"Stackframe": {"function": {"name": "audit_filter_syscall.constprop.19"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7Gg3ynNracz03llaovpNygAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ImmutableOpenMap.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.collect.ImmutableOpenMap.get(java.lang.Object)"}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wbtJcWeJtbauPpFOHZDjTAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline$5$1.accept(java.lang.Object)"}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5430MZlAMqI5SXd_yT5HRQAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$authorizeRequest$4(org.elasticsearch.xpack.security.authc.Authentication, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.authz.permission.Role, org.elasticsearch.xpack.security.authz.permission.Role)", "offset": 13}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fNhSD70xDQrz7J48eeJThwAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.computeIfAbsent(java.lang.Object, java.util.function.Function)", "offset": 9}, "line": {"number": 1202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qwd0u0yf77aYVcTrTir5kQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "long org.apache.lucene.store.FilterDirectory.fileLength(java.lang.String)"}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjoZw"}} +{"Stackframe": {"function": {"name": "rtnl_dump_ifinfo"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AAAAAAAAV4sAAAAAAAAAHYXuSio4gqgn"}} +{"Stackframe": {"function": {"name": "_new_array_Java"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xlxlqYNZokkB3BLAyO89ygAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QBbvUVLpPH8FdglduYsmOwAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "FSTCompiler.java"}, "function": {"name": "org.apache.lucene.util.fst.FSTCompiler org.apache.lucene.util.fst.FSTCompiler$Builder.build()"}, "line": {"number": 272}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gkQuFSIA2UC_9Mknn8WGYQAAAAAAAAB6"}} +{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authc.support.BCrypt.key(byte[])", "offset": 14}, "line": {"number": 1501}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7DAWJ2oagx2bmaj9AXRbbgAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "IndexRoutingTable.java"}, "function": {"name": "java.util.List org.elasticsearch.cluster.routing.IndexRoutingTable.shardsWithState(org.elasticsearch.cluster.routing.ShardRoutingState)", "offset": 2}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XrI7v8DrMvbrhWXwZwCmlgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DocumentMapper.java"}, "function": {"name": "org.elasticsearch.index.mapper.ParsedDocument org.elasticsearch.index.mapper.DocumentMapper.parse(org.elasticsearch.index.mapper.SourceToParse)"}, "line": {"number": 277}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6PDnpLs5LIM9SpjUeSu5BwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$7037+0x000000080246a000.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hjAyoRprP-ATzdRzIqim_AAAAAAAAABP"}} +{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.util.TreeMap$Entry java.util.TreeMap.getEntry(java.lang.Object)", "offset": 15}, "line": {"number": 359}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KlMLGpkm1pBrBLT79cviPAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.map()"}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACuEk"}} +{"Stackframe": {"function": {"name": "get_signal"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MFqyYyMA6QeOFwV5IC1VmQAAAAAAAADX"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "java.lang.Object com.amazonaws.services.s3.AmazonS3Client.invoke(com.amazonaws.Request, com.amazonaws.http.HttpResponseHandler, java.lang.String, java.lang.String, boolean)", "offset": 46}, "line": {"number": 5054}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ABic3l15LWzfxEDtDgq1DQAAAAAAAACm"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$snapshotShard$77(org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.apache.lucene.index.IndexCommit, org.elasticsearch.index.shard.ShardId, org.elasticsearch.snapshots.SnapshotId, java.util.List, org.elasticsearch.common.blobstore.BlobContainer, java.lang.Runnable, java.lang.String, org.elasticsearch.repositories.SnapshotShardContext, java.util.Collection)", "offset": 26}, "line": {"number": 2811}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3HYeSFaP4bm-Z2NSJub6sAAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "ExponentionallyIncreasingSleepingWaitStrategy.java"}, "function": {"name": "long co.elastic.apm.agent.report.disruptor.ExponentionallyIncreasingSleepingWaitStrategy.waitFor(long, com.lmax.disruptor.Sequence, com.lmax.disruptor.Sequence, com.lmax.disruptor.SequenceBarrier)", "offset": 3}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pFdw5ZXUxbxybXgBBjV8_wAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "int java.lang.String.lastIndexOf(int)"}, "line": {"number": 1649}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qX8-oC5V0WLBgQpW-imEyQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesProducer org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat.fieldsProducer(org.apache.lucene.index.SegmentReadState)"}, "line": {"number": 380}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1XsKZz2qQFSDIhWfdGBZ5wAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "sun.nio.fs.UnixPath sun.nio.fs.UnixPath.normalize()"}, "line": {"number": 480}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWxb"}} +{"Stackframe": {"function": {"name": "ksys_read"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zyZpAtY8QHu127Ag2ZcL9AAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.lstat(sun.nio.fs.UnixPath, sun.nio.fs.UnixFileAttributes)", "offset": 4}, "line": {"number": 310}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vzF2pi1WQpPJ5LtMBp-0XgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.file.DirectoryStream java.nio.file.Files.newDirectoryStream(java.nio.file.Path)"}, "line": {"number": 457}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3yZRDT05_hGvUj8jRvChFAAAAAAAAAOx"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "boolean org.apache.lucene.index.ReadersAndUpdates.writeFieldUpdates(org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos$FieldNumbers, long, org.apache.lucene.util.InfoStream)", "offset": 126}, "line": {"number": 631}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xBpLrGZNr5AfSV-nBH12VwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "DefaultBHttpClientConnection.java"}, "function": {"name": "void org.apache.http.impl.DefaultBHttpClientConnection.sendRequestHeader(org.apache.http.HttpRequest)", "offset": 2}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wW06ySXKbT--KZOlG5kgCQAAAAAAAABN"}} +{"Stackframe": {"file": {"name": "BytesReferenceStreamInput.java"}, "function": {"name": "void org.elasticsearch.common.bytes.BytesReferenceStreamInput.readBytes(byte[], int, int)", "offset": 5}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZPQwbuCECd-hRvtNHzeV5wAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.xcontent.XContent, byte[], int, int, boolean)", "offset": 9}, "line": {"number": 210}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ifinGpNZEDb24abZy_zLXQAAAAAAAAIg"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "int io.netty.handler.ssl.SslHandler.unwrap(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, int, int)", "offset": 144}, "line": {"number": 1436}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fmVqFyGK_erbPbR830tm8gAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateAppliers(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder)"}, "line": {"number": 524}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$0(org.elasticsearch.xpack.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.user.User)", "offset": 3}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pm5ZZT8tAonkuZs4iAYeNQAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Collection org.elasticsearch.common.io.stream.StreamInput.readCollection(org.elasticsearch.common.io.stream.Writeable$Reader, java.util.function.IntFunction, java.util.Collection)", "offset": 6}, "line": {"number": 1153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5430MZlAMqI5SXd_yT5HRQAAAAAAAABR"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$authorizeRequest$4(org.elasticsearch.xpack.security.authc.Authentication, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.authz.permission.Role, org.elasticsearch.xpack.security.authz.permission.Role)", "offset": 10}, "line": {"number": 205}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "otDVL_fyRUOGDSbdwqUYNAAAAAAAAAFN"}} +{"Stackframe": {"file": {"name": "SearchHit.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.search.SearchHit.toInnerXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 45}, "line": {"number": 676}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VbCJF2qb-nr5O5yW6In1-AAAAAAAAAB1"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 14}, "line": {"number": 437}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALiQn"}} +{"Stackframe": {"function": {"name": "inode_permission"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ynk6E9ReVsUsstHFtTIiXQAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.writeReaderPool(boolean)", "offset": 6}, "line": {"number": 3629}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MvIuHY42s0KcV-itoSXYpwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "sun.nio.fs.UnixPath sun.nio.fs.UnixPath.getFileName()"}, "line": {"number": 286}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jYKah-GaJpbI-jAwYcFi1QAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "EsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor.execute(java.lang.Runnable)", "offset": 2}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_0-4l_O5OSPUrCE3hq6HrwAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "ShardGetService.java"}, "function": {"name": "org.elasticsearch.index.fieldvisitor.StoredFieldLoader org.elasticsearch.index.get.ShardGetService.buildStoredFieldLoader(java.lang.String[], org.elasticsearch.search.fetch.subphase.FetchSourceContext, org.elasticsearch.index.mapper.SourceLoader)", "offset": 11}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N2WIrknGnRR-faq8Y0RYogAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Sink.java"}, "function": {"name": "void java.util.stream.Sink$ChainedReference.end()"}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tRQ_cRKzj3WFAvcrLLqjdwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.io.BufferedReader java.nio.file.Files.newBufferedReader(java.nio.file.Path, java.nio.charset.Charset)", "offset": 1}, "line": {"number": 2921}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ReecyGgWWJgzc543tXNeIAAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "SecondaryAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator.authenticateAndAttachToContext(org.elasticsearch.rest.RestRequest, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XrBpNAskp4LhvHyToQuFVgAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "BaseFuture.java"}, "function": {"name": "boolean org.elasticsearch.common.util.concurrent.BaseFuture.set(java.lang.Object)", "offset": 2}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zbjhk7iO4zKDe_CtTcO5FQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "JvmGcMonitorService.java"}, "function": {"name": "void org.elasticsearch.monitor.jvm.JvmGcMonitorService$JvmMonitor.run()"}, "line": {"number": 392}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xzVp1246WQXER1towTGTRQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "DisabledAlgorithmConstraints.java"}, "function": {"name": "boolean sun.security.util.DisabledAlgorithmConstraints.permits(java.util.Set, java.lang.String, java.security.AlgorithmParameters)", "offset": 5}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "n---EOWUd46LLyh1l27lHwAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "void java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$1.(java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet)", "offset": 1}, "line": {"number": 1655}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "00NNdPuiDBrEpZhGxqSNigAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "NodeService.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.node.NodeService.stats(org.elasticsearch.action.admin.indices.stats.CommonStatsFlags, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean)", "offset": 1}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AAJDI44qiLmfDctbzFRobQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "org.apache.lucene.index.SortedNumericDocValues org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer$2.getSortedNumeric(org.apache.lucene.index.FieldInfo)"}, "line": {"number": 504}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "G-xCglt1CSRw88p7F7VV9AAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkDelete(java.lang.String)"}, "line": {"number": 866}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEMf"}} +{"Stackframe": {"function": {"name": "do_syscall_64"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mCVS1Rzc9wTd3abY2wEkkwAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "boolean org.elasticsearch.action.bulk.TransportBulkAction$BulkOperation.addFailureIfIndexIsUnavailable(org.elasticsearch.action.DocWriteRequest, int, org.elasticsearch.action.bulk.TransportBulkAction$ConcreteIndices, org.elasticsearch.cluster.metadata.Metadata)", "offset": 8}, "line": {"number": 700}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C9V4PTTZs-PQQpDxqxp5GgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.xpack.core.security.authc.Authentication$RealmRef$$Lambda$6919+0x000000080240ac58.read(org.elasticsearch.common.io.stream.StreamInput)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "G0kQGTdde9u28DW8xZmb1AAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.reindex.ScrollableHitSource$$Lambda$8328+0x000000080276edb8.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k_YfqtPanypbBh77mBMmrAAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "boolean org.elasticsearch.transport.TcpTransport.validateMessageHeader(org.elasticsearch.common.bytes.BytesReference)", "offset": 2}, "line": {"number": 1268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk"}} +{"Stackframe": {"function": {"name": "path_lookupat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RoEXpF3R2NyeWrYDiUWi2AAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase$2.innerOnResponse(org.elasticsearch.search.SearchPhaseResult)"}, "line": {"number": 220}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "io.netty.channel.ChannelPipeline io.netty.channel.DefaultChannelPipeline.fireChannelRead(java.lang.Object)"}, "line": {"number": 926}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IkSo5taWM8U71y2hDxxHngAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "SegmentCommitInfo.java"}, "function": {"name": "long org.apache.lucene.index.SegmentCommitInfo.sizeInBytes()", "offset": 3}, "line": {"number": 230}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "IndicesRequestCache.java"}, "function": {"name": "java.lang.Object org.elasticsearch.indices.IndicesRequestCache$Loader.load(java.lang.Object)"}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E9iUlIQsVQsPhYcGfBeeagAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "EngineWriter.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult$HandshakeStatus sun.security.ssl.EngineWriter.writeRecord(sun.security.ssl.EngineOutputRecord, sun.security.ssl.EngineArgs, sun.security.ssl.Authenticator, sun.security.ssl.CipherBox)", "offset": 23}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN"}} +{"Stackframe": {"function": {"name": "__wake_up_sync_key"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1MY1Nuqea_D-u-FFo2a_-AAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "SelectorImpl.java"}, "function": {"name": "int sun.nio.ch.SelectorImpl.lockAndDoSelect(long)", "offset": 5}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ld19avkWqL3IrjwADqpyvwAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "ProtectionDomain.java"}, "function": {"name": "boolean java.security.ProtectionDomain.implies(java.security.Permission)", "offset": 7}, "line": {"number": 285}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Urj27ZFZeZ-3lsT-8mj4RAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Setting$$Lambda$33+0x0000000800c1dda0.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "02k8lTPTUqykbeCXCr9k_AAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 10}, "line": {"number": 794}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1B59VY_DkwRaBnYLL8PJHgAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "TransportRequestHandler.java"}, "function": {"name": "void org.elasticsearch.transport.TransportRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 33}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8-zVVCfuZs1an5l1jRG2PAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ESLoggerFactory.java"}, "function": {"name": "org.apache.logging.log4j.Logger org.elasticsearch.common.logging.ESLoggerFactory.getLogger(java.lang.String, java.lang.Class)"}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LX5DD-dM1kj7Y11eHErxNgAAAAAAAABW"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "java.lang.Object java.util.stream.ReferencePipeline.collect(java.util.stream.Collector)", "offset": 8}, "line": {"number": 499}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6bY2TIbWMnM_5a8NvB1PNAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Locale.java"}, "function": {"name": "java.lang.String java.util.Locale.getLanguage()"}, "line": {"number": 1300}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H3Nam0N9mRIAZOe993J4YQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromIndexMetadata(org.elasticsearch.cluster.metadata.IndexMetadata)", "offset": 2}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "89HR02MeEsszdbWonSYgpgAAAAAAAABw"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun()", "offset": 10}, "line": {"number": 740}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qjkbzJCs46utKAIQU_ZjYgAAAAAAAADm"}} +{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.handleIncomingRequest(org.elasticsearch.http.HttpRequest, org.elasticsearch.http.HttpChannel, java.lang.Exception)", "offset": 59}, "line": {"number": 516}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WdP0jKvbSW-F3IXqFZzXpQAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$CachingAsyncSupplier.getAsync(org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 1012}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "PrioritizedEsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.run()", "offset": 6}, "line": {"number": 210}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlOPs"}} +{"Stackframe": {"function": {"name": "ip_output"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAAp2"}} +{"Stackframe": {"function": {"name": "si_read_lock"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FhQpJm5r-cnkNVrkf6woGgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ClusterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterService.submitStateUpdateTasks(java.lang.String, java.util.Map, org.elasticsearch.cluster.ClusterStateTaskConfig, org.elasticsearch.cluster.ClusterStateTaskExecutor)"}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DnVdZhb1BpdhjHCw8ZRExwAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "TemplateUtils.java"}, "function": {"name": "void org.elasticsearch.xpack.core.template.TemplateUtils.validate(java.lang.String)", "offset": 8}, "line": {"number": 98}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I1o0TW3AMtnA-slp2SbrnAAAAAAAAAEe"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService.publishClusterStateUpdate(org.elasticsearch.cluster.ClusterStateTaskExecutor, org.elasticsearch.cluster.service.BatchSummary, org.elasticsearch.cluster.ClusterState, java.util.List, org.elasticsearch.cluster.ClusterState, org.elasticsearch.core.TimeValue)", "offset": 50}, "line": {"number": 361}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OySJoKKhdV4d8u0geDOOHQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "OsProbe.java"}, "function": {"name": "boolean org.elasticsearch.monitor.os.OsProbe.lambda$areCgroupStatsAvailable$1(java.lang.String)"}, "line": {"number": 621}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6l-EHm0OnthNsvyaQcuYhwAAAAAAAACN"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 65}, "line": {"number": 470}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Kmi3IV_5C6YkqCwr-5OCjQAAAAAAAADs"}} +{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ObjectParser.lambda$declareNamedObjects$14(java.util.function.BiFunction, java.util.function.Consumer, org.elasticsearch.common.xcontent.ParseField, java.util.function.BiConsumer, org.elasticsearch.common.xcontent.XContentParser, java.lang.Object, java.lang.Object)", "offset": 24}, "line": {"number": 462}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y-QS5npSPxf1yPUr9712ewAAAAAAAAB4"}} +{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.executeSearch(org.elasticsearch.action.search.SearchTask, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.OriginalIndices, java.util.List, java.util.function.BiFunction, org.elasticsearch.cluster.ClusterState, java.util.Map, org.elasticsearch.action.ActionListener, org.elasticsearch.action.search.SearchResponse$Clusters, org.elasticsearch.action.search.SearchContextId, org.elasticsearch.action.search.TransportSearchAction$SearchAsyncActionProvider)", "offset": 26}, "line": {"number": 961}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "siCTJzrkNS8HPcHNBHnmewAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "NumberFormatException.java"}, "function": {"name": "void java.lang.NumberFormatException.(java.lang.String)"}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_YLxou54StNacGQBpLgASwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.IndexService$$Lambda$9095+0x000000080280e0e0.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QDBP9T4S_X-922MjGAbT1AAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "AbstractCollection.java"}, "function": {"name": "boolean java.util.AbstractCollection.addAll(java.util.Collection)", "offset": 2}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j37J4jfSErVvEBjrFNgGZwAAAAAAAAB5"}} +{"Stackframe": {"file": {"name": "Matcher.java"}, "function": {"name": "boolean java.util.regex.Matcher.match(int, int)", "offset": 12}, "line": {"number": 1755}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wdry1MBp0EaTNjezqO9mhAAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$7241+0x000000080251ea10.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e4FBCt2c4GYHVLxPkuzsFwAAAAAAAABo"}} +{"Stackframe": {"file": {"name": "EngineOutputRecord.java"}, "function": {"name": "void sun.security.ssl.EngineOutputRecord.write(sun.security.ssl.EngineArgs, sun.security.ssl.Authenticator, sun.security.ssl.CipherBox)", "offset": 54}, "line": {"number": 225}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BNrNtUxjbxaAxGXdc-eVXAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkPermission(java.security.Permission)"}, "line": {"number": 408}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgKm"}} +{"Stackframe": {"function": {"name": "kmem_cache_alloc"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6euAcrRks5bLxxAuk2RtfgAAAAAAAAC6"}} +{"Stackframe": {"file": {"name": "DocumentFieldMappers.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentFieldMappers.(java.util.Collection, org.apache.lucene.analysis.Analyzer, org.apache.lucene.analysis.Analyzer, org.apache.lucene.analysis.Analyzer)", "offset": 15}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xVLEHRTMTIDPZshBDYiEZgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "AnalysisRegistry.java"}, "function": {"name": "org.elasticsearch.index.analysis.IndexAnalyzers org.elasticsearch.index.analysis.AnalysisRegistry.build(org.elasticsearch.index.IndexSettings)", "offset": 2}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uKtnhT2o_J-LMMCHDuqHcgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "HandledTransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.HandledTransportAction$TransportHandler.messageReceived(org.elasticsearch.action.ActionRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4UCPpue6CVok_lbZI08fLQAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.write(byte[], int, int)", "offset": 3}, "line": {"number": 199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QxTPNhFsgl-8e8i61Q7phQAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "FutureTask.java"}, "function": {"name": "void java.util.concurrent.FutureTask.run()", "offset": 9}, "line": {"number": 317}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DBSrey1hof91_f6sdRmT0AAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.getRoles(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)"}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "woaSXtApD-PrSWDZ_aE3VwAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "Spliterators.java"}, "function": {"name": "void java.util.Spliterators$IteratorSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 6}, "line": {"number": 1801}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "42BUy3BbkpnttyuMqLirigAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "ShardSnapshotTaskRunner.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ShardSnapshotTaskRunner$FileSnapshotTask.doRun()", "offset": 5}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7kiwTAFzycT-wgooymyU5QAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.master.MasterNodeRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0hO7monEF-RsjLZl9HnnagAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "FieldAndDocumentLevelSecurityRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.interceptor.FieldAndDocumentLevelSecurityRequestInterceptor.intercept(org.elasticsearch.action.IndicesRequest, org.elasticsearch.xpack.security.user.User)", "offset": 3}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Amq1Q_OWnEFyfJsbIWLjHgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ActionListenerResponseHandler.java"}, "function": {"name": "void org.elasticsearch.action.ActionListenerResponseHandler.handleResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o7sR_pIbiVV_Z8TfMWbBfAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "void org.elasticsearch.threadpool.ThreadPool$1.run()", "offset": 2}, "line": {"number": 444}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MgnzgTUwSrjft9SA3YZTtAAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.flush(io.netty.channel.ChannelHandlerContext)", "offset": 15}, "line": {"number": 781}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-CA2HwYxn7uXuJvRLWceDgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.value(java.lang.Object)"}, "line": {"number": 797}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4URotnESy3Ld2Rr6S5TljAAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.value(java.lang.String)", "offset": 3}, "line": {"number": 660}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAB5I0"}} +{"Stackframe": {"function": {"name": "xfs_create"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_"}} +{"Stackframe": {"function": {"name": "__x64_sys_openat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JvETSNUFmQzhSgQRV87p_gAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.xcontent.support.AbstractXContentParser.readMapSafe(org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier)", "offset": 2}, "line": {"number": 312}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "APU-k0FhSNYXtxt-lyLANwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "AbstractByteBuf.java"}, "function": {"name": "void io.netty.buffer.AbstractByteBuf.ensureAccessible()"}, "line": {"number": 1488}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jNbJJD0szUDlnbhrWsIGkAAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.finishAuthentication(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)", "offset": 6}, "line": {"number": 325}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KexVB1e9PNIcjT5PXtDCTAAAAAAAAABU"}} +{"Stackframe": {"file": {"name": "DateTimeFormatter.java"}, "function": {"name": "void org.joda.time.format.DateTimeFormatter.printTo(java.lang.Appendable, long, org.joda.time.Chronology)", "offset": 13}, "line": {"number": 730}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MHYwZ_YFmkP6a90hgj1nMgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult$HandshakeStatus sun.security.ssl.SSLEngineImpl.writeRecord(sun.security.ssl.EngineOutputRecord, sun.security.ssl.EngineArgs)", "offset": 1}, "line": {"number": 1300}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MnjW6RG_D7hsUp0ibYWGjQAAAAAAAAEA"}} +{"Stackframe": {"file": {"name": "TransportGetSnapshotsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.snapshots.get.TransportGetSnapshotsAction$SnapshotsInRepo org.elasticsearch.action.admin.cluster.snapshots.get.TransportGetSnapshotsAction.buildSimpleSnapshotInfos(java.util.Set, java.lang.String, org.elasticsearch.repositories.RepositoryData, java.util.List, org.elasticsearch.action.admin.cluster.snapshots.get.GetSnapshotsRequest$SortBy, org.elasticsearch.action.admin.cluster.snapshots.get.GetSnapshotsRequest$After, int, org.elasticsearch.search.sort.SortOrder)", "offset": 16}, "line": {"number": 476}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "n6T8b92zQJPvdUVCdVoNdAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ClusterStateUpdateTask.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterStateTaskExecutor$ClusterTasksResult org.elasticsearch.cluster.ClusterStateUpdateTask.execute(org.elasticsearch.cluster.ClusterState, java.util.List)"}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObjectOrField(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.Mapper)", "offset": 1}, "line": {"number": 574}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "s32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "HttpRequestExecutor.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.protocol.HttpRequestExecutor.execute(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext)", "offset": 6}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uUANklE7zdWCsUEELcyV6wAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "org.elasticsearch.cluster.SnapshotsInProgress$Entry org.elasticsearch.cluster.SnapshotsInProgress$Entry.withStartedShards(org.elasticsearch.common.collect.ImmutableOpenMap)"}, "line": {"number": 1191}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BkwDPTHLhIovyT2lUxnnJQAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.syncRetentionLeases()", "offset": 5}, "line": {"number": 2663}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0wOjB5IuI4nHBVGCfg41awAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.IndexService$$Lambda$8122+0x0000000802714c00.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W2orkSxhItalTCL1xwDk_AAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ActionRunnable.java"}, "function": {"name": "void org.elasticsearch.action.ActionRunnable.lambda$supply$0(org.elasticsearch.common.CheckedSupplier, org.elasticsearch.action.ActionListener)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dAeX1d421DMJ2cC6FX3tvwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ElasticApmTracer.java"}, "function": {"name": "co.elastic.apm.agent.impl.transaction.Transaction co.elastic.apm.agent.impl.ElasticApmTracer.startChildTransaction(java.lang.Object, co.elastic.apm.agent.impl.transaction.TextHeaderGetter, co.elastic.apm.agent.impl.sampling.Sampler, long, java.lang.ClassLoader)", "offset": 2}, "line": {"number": 209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZEIcKVY7lNYjO6j6Z5DPQAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader.document(int, org.apache.lucene.index.StoredFieldVisitor)"}, "line": {"number": 630}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C64NVLkkZ7RW349y9srs0gAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "void org.elasticsearch.cluster.DiffableUtils$ImmutableOpenMapDiff.(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)"}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uoS8VlPflz8QSK7BPMOvQQAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "Lucene90CompoundReader.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90CompoundReader.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 7}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bu-iOIJyfhomu1qj0BqWkwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "SortedNumericDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedNumericDocValuesWriter$BufferedSortedNumericDocValues.(org.apache.lucene.util.packed.PackedLongValues, org.apache.lucene.util.packed.PackedLongValues, org.apache.lucene.search.DocIdSetIterator)", "offset": 1}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rukD5963lGO3Ma9AI2LXWgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "void org.apache.lucene.store.LockValidatingDirectoryWrapper.deleteFile(java.lang.String)"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "java.lang.Throwable java.lang.Throwable.fillInStackTrace()", "offset": 2}, "line": {"number": 787}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ONigPeL1dq_jh4iKyfGgcgAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "FollowersChecker.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.FollowersChecker$FollowerCheckRequest.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 2}, "line": {"number": 430}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LqB_qzGaa6qKbfDAuZn5vgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "java.lang.StackTraceElement[] java.lang.Throwable.getStackTrace()"}, "line": {"number": 853}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cptZwQ29UjBRbf8J6p9ncgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACHEw"}} +{"Stackframe": {"function": {"name": "flush_tlb_mm_range"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XQAhaCnyqkeCfjLm4h_8UQAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "RestBuilderListener.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestBuilderListener.buildResponse(java.lang.Object)", "offset": 1}, "line": {"number": 27}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FzRiu7WoiAEZKSMqwfwi8wAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "boolean sun.nio.fs.UnixPath.equals(java.lang.Object)", "offset": 1}, "line": {"number": 766}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "g4gMugAmfKAgFkmzrjjQZwAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "AuthorizationUtils.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationUtils$AsyncAuthorizer.authorize(org.elasticsearch.xpack.security.authz.AuthorizationService)", "offset": 3}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sImjAGxEOCfJp0uCTUesZwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "CopyOnWriteHashMap.java"}, "function": {"name": "org.elasticsearch.common.collect.CopyOnWriteHashMap org.elasticsearch.common.collect.CopyOnWriteHashMap.copyAndPutAll(java.util.Map)"}, "line": {"number": 524}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "d1QkxfCgm0LvKZB8Lm2ifwAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "SearchShardTarget.java"}, "function": {"name": "void org.elasticsearch.search.SearchShardTarget.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 6}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zEHb9nHP5bFEE5As4w896QAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Hasher.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authc.support.Hasher.access$100(org.elasticsearch.common.settings.SecureString, char[])"}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0s7uxPt4C0neZhw5beiboQAAAAAAAACW"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.xcontent.support.AbstractXContentParser.readValueUnsafe(org.elasticsearch.xcontent.XContentParser$Token, org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier)", "offset": 15}, "line": {"number": 403}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UEgwC5cQurWgmCJ0lemLqQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "MappedMemorySegmentImpl.java"}, "function": {"name": "java.lang.foreign.MemorySegment jdk.internal.foreign.MappedMemorySegmentImpl.asSlice(long, long)"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qy0et5QaTY5taodjxWkq4gAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "java.lang.String[] org.apache.lucene.store.FSDirectory.listAll()", "offset": 1}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_LK6vQmkJV2KER5Y7ub6NwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient$IndicesAdmin.getIndex(org.elasticsearch.action.admin.indices.get.GetIndexRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 1357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kGb2Tgcv7TAAnt4S5dlXcgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.xcontent.support.AbstractXContentParser.map()"}, "line": {"number": 263}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "java.lang.Object com.amazonaws.services.s3.AmazonS3Client.invoke(com.amazonaws.Request, com.amazonaws.http.HttpResponseHandler, java.lang.String, java.lang.String)"}, "line": {"number": 5000}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KLdsSpMCKySKDdCQ2KiutQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.coordination.Coordinator$$Lambda$4965+0x0000000801ffcb58.apply(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GFyqbEms7vfI45E-4bpX6AAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor.access$600(org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor, org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportInterceptor$AsyncSender)"}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qm8yYHYQV97eV8QVjFf-rAAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "ZipFile.java"}, "function": {"name": "java.util.zip.ZipEntry java.util.zip.ZipFile.getEntry(java.lang.String)", "offset": 4}, "line": {"number": 331}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fzLzWZQgzth4yv0Aw0PoLgAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "BatchEventProcessor.java"}, "function": {"name": "void com.lmax.disruptor.BatchEventProcessor.run()", "offset": 9}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdbc"}} +{"Stackframe": {"function": {"name": "apparmor_inode_getattr"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E-UV4Q5gHz5xBV_lbP0MMgAAAAAAAADZ"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node[] java.util.HashMap.resize()", "offset": 36}, "line": {"number": 714}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nGz5zemXBq52gl3823VamQAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "RetryableAction.java"}, "function": {"name": "void org.elasticsearch.action.support.RetryableAction$1.doRun()", "offset": 3}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zTg-1BaqPve5RYYrhWqKBgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportClusterStateAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.state.TransportClusterStateAction.masterOperation(org.elasticsearch.action.support.master.MasterNodeRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)"}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJwYU"}} +{"Stackframe": {"function": {"name": "free_work"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cgIdU-uvJLoO1WrtsV2P8gAAAAAAAFcq"}} +{"Stackframe": {"function": {"name": "ena_io_poll"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jtEB8q7ZNk5LwicDPNbPVQAAAAAAAABo"}} +{"Stackframe": {"file": {"name": "Lucene90BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.blocktree.Lucene90BlockTreeTermsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 14}, "line": {"number": 358}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dJ2sHJS_vHp5BLfliwHuTQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "int org.apache.lucene.codecs.DocValuesConsumer$SortedNumericDocValuesSub.nextDoc()"}, "line": {"number": 363}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h-mcFcSefWaXpPLGLAmk8gAAAAAAAADY"}} +{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.doHandleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 27}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YgvoZ6DleZJd_ACRhoNarAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Netty4WriteThrottlingHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4WriteThrottlingHandler.flush(io.netty.channel.ChannelHandlerContext)"}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA8y"}} +{"Stackframe": {"function": {"name": "mangle_path"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "68m2CwWM-Ledaj5WNl9lhAAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.action.support.TransportAction.execute(org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-ewB6MfVuUB7Vi_jcn5d-AAAAAAAAAAv"}} +{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "void org.elasticsearch.tasks.TaskManager.startTrace(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.tasks.Task)", "offset": 7}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jjxn4cl8bBaRqPgS5F0n8gAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "int org.apache.lucene.codecs.compressing.LZ4.decompress(org.apache.lucene.store.DataInput, int, byte[], int)", "offset": 15}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "n-IlVo5-jcMpxFIQmT8ZXQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$consumeToken$18(java.util.Map, org.elasticsearch.xpack.core.security.user.User)"}, "line": {"number": 523}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PKckO5bmxRn-hXTioVnlUwAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.finishAuthentication(org.elasticsearch.xpack.core.security.user.User)", "offset": 6}, "line": {"number": 416}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8g5GgzaRtndh1_mhtIHztwAAAAAAAACV"}} +{"Stackframe": {"file": {"name": "ClientConnectionSettingsImpl.scala"}, "function": {"name": "akka.http.impl.settings.ClientConnectionSettingsImpl akka.http.impl.settings.ClientConnectionSettingsImpl$.fromSubConfig(com.typesafe.config.Config, com.typesafe.config.Config)", "offset": 9}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASepa"}} +{"Stackframe": {"function": {"name": "apparmor_file_open"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readMapSafe(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier)", "offset": 1}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NMPX1MdtzuRZ2k27VY7qAQAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "boolean org.apache.lucene.index.StandardDirectoryReader.isCurrent()", "offset": 12}, "line": {"number": 363}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QJvjLM8_Am-8HBcCjdeQvwAAAAAAAABY"}} +{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.shard.DocsStats org.elasticsearch.index.engine.Engine.docsStats(org.apache.lucene.index.IndexReader)", "offset": 12}, "line": {"number": 200}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "y2nHsZqN7Z3XV5aac3vDUwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.notifyListener(org.elasticsearch.action.ActionListener, java.util.concurrent.ExecutorService)"}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RK8a3DzcZMuwoK9TpGXQTwAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "org.elasticsearch.index.store.ByteSizeCachingDirectory$SizeAndModCount org.elasticsearch.index.store.ByteSizeCachingDirectory$1.refresh()", "offset": 7}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgVN"}} +{"Stackframe": {"function": {"name": "irq_exit"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs-i"}} +{"Stackframe": {"function": {"name": "__wake_up"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GPK7pyl3RjtyKa9WtooOGgAAAAAAAABf"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap$HashIterator.nextNode()", "offset": 6}, "line": {"number": 1588}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2Vq7hlSQLB1KnkU2m2cuSQAAAAAAAAB6"}} +{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.apache.lucene.search.BooleanWeight.scorerSupplier(org.apache.lucene.index.LeafReaderContext)", "offset": 10}, "line": {"number": 400}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "r6OQqChD9ydemA0TTpv7WwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AbstractRunnable.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractRunnable.run()"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvo_"}} +{"Stackframe": {"function": {"name": "hrtimer_nanosleep"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "K92zia0pzvb-AxQHNNmLHgAAAAAAAAFY"}} +{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment org.apache.lucene.index.DocumentsWriterPerThread.flush(org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 49}, "line": {"number": 392}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "G7bHBS7Fdu6ai7jmhfwpdwAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$1.onResponse(org.elasticsearch.action.ActionResponse)", "offset": 1}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XnoSB634C4csFM2aSGubHwAAAAAAAABN"}} +{"Stackframe": {"file": {"name": "HttpURLConnection.java"}, "function": {"name": "void sun.net.www.protocol.http.HttpURLConnection.plainConnect()", "offset": 24}, "line": {"number": 1127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.roles(java.util.Set, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xhbJyq2dXJOtFwl6fNdtPwAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "java.io.InputStream org.elasticsearch.repositories.s3.S3BlobContainer.readBlob(java.lang.String)"}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ljijwxlolNIlc2z0nvWGRwAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "boolean java.nio.file.Files.exists(java.nio.file.Path, java.nio.file.LinkOption[])", "offset": 3}, "line": {"number": 2521}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TaskBatcher.java"}, "function": {"name": "void org.elasticsearch.cluster.service.TaskBatcher$BatchedTask.run()"}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BZ80eZyhE0ZGJTcKVaaGgQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.field(java.lang.String, java.lang.String)", "offset": 4}, "line": {"number": 643}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "94QsDIL7bUk7Oxas7lNqGAAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer.writeBlob(java.lang.String, java.io.InputStream, long, boolean)", "offset": 1}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uB_3Gzwjvj1RjZpSgTL9mwAAAAAAAABH"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.finishAuthentication(org.elasticsearch.xpack.core.security.user.User)", "offset": 6}, "line": {"number": 706}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tSoQcDVRjSU4uYcP1lWNWQAAAAAAAAC7"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesProducer.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.apache.lucene.codecs.lucene80.Lucene80DocValuesProducer$TermsDict.next()", "offset": 23}, "line": {"number": 1170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nEGtvDxGHYK9PNQyhlcWjgAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "Sorter.java"}, "function": {"name": "int org.apache.lucene.util.Sorter.lower(int, int, int)", "offset": 4}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l23LqRBCxbwmYYhWIs5QbQAAAAAAAAB6"}} +{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.BCrypt.key(byte[])", "offset": 14}, "line": {"number": 561}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5uJBJdbCydi3Mb0Lo2CA1QAAAAAAAACd"}} +{"Stackframe": {"file": {"name": "LZ4WithPresetDictCompressionMode.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene87.LZ4WithPresetDictCompressionMode$LZ4WithPresetDictCompressor.compress(byte[], int, int, org.apache.lucene.store.DataOutput)", "offset": 20}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZLVm2Yq3JzpECVJuRqNdawAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$checkForBearerToken$3(org.elasticsearch.xpack.security.authc.UserToken)", "offset": 3}, "line": {"number": 361}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSUu"}} +{"Stackframe": {"function": {"name": "vfs_open"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yH-BtS6FnIXjCbAUM88qLAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ClassLoader.java"}, "function": {"name": "void java.lang.ClassLoader.checkClassLoaderPermission(java.lang.ClassLoader, java.lang.Class)"}, "line": {"number": 1523}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x69oGDnn9-Q70zg0yENhkwAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", "offset": 20}, "line": {"number": 1144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1QlYH0wyslTnvnZNFQkhKgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "int com.fasterxml.jackson.core.json.UTF8StreamJsonParser._skipColon2(boolean)"}, "line": {"number": 3090}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIjB"}} +{"Stackframe": {"function": {"name": "__seccomp_filter"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ms77UquhEB9L8EpL6yLc0wAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "DiscoveryModule.java"}, "function": {"name": "java.util.List org.elasticsearch.discovery.DiscoveryModule.lambda$new$4(java.util.List, org.elasticsearch.discovery.SeedHostsProvider$HostsResolver)", "offset": 2}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dzakKVh1hyD14fSEmEYvfgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "BitsetFilterCache.java"}, "function": {"name": "org.elasticsearch.index.cache.bitset.BitsetFilterCache$Value org.elasticsearch.index.cache.bitset.BitsetFilterCache.lambda$getAndLoadIfNotPresent$1(org.apache.lucene.search.Query, org.apache.lucene.index.LeafReaderContext, org.elasticsearch.index.shard.ShardId, org.apache.lucene.search.Query)"}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4qZNxkVZi02_G1WdmsL0xwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ByteQuadsCanonicalizer.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.findName(int[], int)"}, "line": {"number": 564}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W6zbfG-pUtsdP3JjLENKRQAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(io.netty.channel.ChannelHandlerContext, io.netty.handler.codec.CodecOutputList, int)", "offset": 1}, "line": {"number": 323}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "382AxucgZGR9pbz3KlXhagAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService.maybeRefreshEngine(boolean)", "offset": 1}, "line": {"number": 921}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Jykms_cRxKkshvpgqtA2ZQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "java.util.List java.util.stream.ReferencePipeline.toList()"}, "line": {"number": 627}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P45sZexBCIMi_FH_5MLiHAAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.access$1200(org.elasticsearch.transport.TcpTransport, org.elasticsearch.cluster.node.DiscoveryNode, java.lang.Object, long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.Version, byte)"}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZccN0t7i0EOtwJSEeQbbkQAAAAAAAAIF"}} +{"Stackframe": {"file": {"name": "Lucene90BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.blocktree.Lucene90BlockTreeTermsWriter$TermsWriter.writeBlocks(int, int)", "offset": 111}, "line": {"number": 725}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i__VMh3MgmTJp7v_qMbssAAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "SegmentCommitInfo.java"}, "function": {"name": "long org.apache.lucene.index.SegmentCommitInfo.sizeInBytes()", "offset": 3}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8kz0sRC3Fb0ahbrci4PVAgAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.admin.cluster.RestClusterGetSettingsAction$$Lambda$1979.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wrGTszw_tSixGUdZNDOq7AAAAAAAAACN"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.updateShardState(org.elasticsearch.cluster.routing.ShardRouting, long, java.util.function.BiConsumer, long, java.util.Set, org.elasticsearch.cluster.routing.IndexShardRoutingTable)", "offset": 24}, "line": {"number": 535}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hbkYCZ39Eje7isZhzZhyHgAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "TimSorter.java"}, "function": {"name": "int org.apache.lucene.util.TimSorter.nextRun()", "offset": 8}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wejFmudpqNHflvIcKknWqAAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$consumeToken$13(org.elasticsearch.xpack.security.authc.Realm, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 301}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4_IQF_LxnGyk2lDca0XOLwAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "IndexTemplateRegistry.java"}, "function": {"name": "void org.elasticsearch.xpack.core.template.IndexTemplateRegistry.addIndexLifecyclePoliciesIfMissing(org.elasticsearch.cluster.ClusterState)", "offset": 3}, "line": {"number": 491}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PQucG8F-Yu3IYNQ_8vxwFQAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "DeltaPackedLongValues.java"}, "function": {"name": "void org.apache.lucene.util.packed.DeltaPackedLongValues$Builder.pack(long[], int, int, float)", "offset": 7}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I5_zKrcNIkC32oVURsAb6gAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "java.util.stream.Node$Builder java.util.stream.ReferencePipeline.makeNodeBuilder(long, java.util.function.IntFunction)"}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QOOD1c7R67z8gbSz6sGkSwAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "SearchHitField.java"}, "function": {"name": "void org.elasticsearch.search.SearchHitField.readFrom(org.elasticsearch.common.io.stream.StreamInput)", "offset": 4}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lFttW9DSKwbJ3RVBuwGD_QAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "TransportClusterInfoAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.info.TransportClusterInfoAction.masterOperation(org.elasticsearch.action.support.master.MasterNodeRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "IndicesFieldDataCache.java"}, "function": {"name": "org.elasticsearch.index.fielddata.IndexFieldData$Global org.elasticsearch.indices.fielddata.cache.IndicesFieldDataCache$IndexFieldCache.load(org.apache.lucene.index.DirectoryReader, org.elasticsearch.index.fielddata.IndexFieldData$Global)", "offset": 3}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "c-e-WU3-IJt_PPAtxrYO8wAAAAAAAAGV"}} +{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.writeRecord(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 83}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BNctXlyqBr-0kZdjpDJr0AAAAAAAAABv"}} +{"Stackframe": {"file": {"name": "SystemIndexManager.java"}, "function": {"name": "void org.elasticsearch.indices.SystemIndexManager.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 21}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aHgX82y4T_e8yx1PTBBNgQAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.support.AbstractXContentParser.readValue(org.elasticsearch.common.xcontent.XContentParser, org.elasticsearch.common.xcontent.support.AbstractXContentParser$MapFactory, org.elasticsearch.common.xcontent.XContentParser$Token)", "offset": 11}, "line": {"number": 393}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Dg9EjRff17PWRNomsbjntQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ObjectName.java"}, "function": {"name": "void javax.management.ObjectName.(java.lang.String)", "offset": 1010}, "line": {"number": 1407}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xUcCwk9iyCJTRBsvF-FbswAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "SeedHostsResolver.java"}, "function": {"name": "void org.elasticsearch.discovery.SeedHostsResolver$1.doRun()", "offset": 6}, "line": {"number": 226}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "n8yyz5vynZOoIo8vPU8CuQAAAAAAAAMJ"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.mergeMiddle(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergePolicy)", "offset": 106}, "line": {"number": 4356}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PeJFTdbz8JGDuMv22vt3yAAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$5604+0x0000000801ab1ee0.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kyX4HuuLIjtT78u3tBP5uAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "java.lang.Object com.amazonaws.services.s3.AmazonS3Client.access$300(com.amazonaws.services.s3.AmazonS3Client, com.amazonaws.Request, com.amazonaws.http.HttpResponseHandler, java.lang.String, java.lang.String)"}, "line": {"number": 394}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B_TZlmg-i-MShObdqiYcyAAAAAAAAAK9"}} +{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.readRecord(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 154}, "line": {"number": 691}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "void java.util.stream.Streams$ConcatSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 1}, "line": {"number": 734}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6euAcrRks5bLxxAuk2RtfgAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "DocumentFieldMappers.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentFieldMappers.(java.util.Collection, org.apache.lucene.analysis.Analyzer, org.apache.lucene.analysis.Analyzer, org.apache.lucene.analysis.Analyzer)", "offset": 6}, "line": {"number": 59}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ge8VsMiHUgv6uPoct1QeWAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "ZipFile.java"}, "function": {"name": "int java.util.zip.ZipFile$Source.getEntryPos(java.lang.String, boolean)", "offset": 4}, "line": {"number": 1615}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wbl5MrbJc9wo3KaVmfjO6QAAAAAAAAB7"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Settings.convertMapsToArrays(java.util.Map)", "offset": 20}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JiDit2LD3UA_K38KQLtubgAAAAAAAACI"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.writeDocValues(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)", "offset": 16}, "line": {"number": 345}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w8GVRjAwPMFQC_D_wSJ9HQAAAAAAAACN"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "void java.io.FilePermission.init(int)", "offset": 31}, "line": {"number": 343}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5Agt9ShJmhlj-nI54ilISQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "IndexOutputOutputStream.java"}, "function": {"name": "void org.elasticsearch.common.lucene.store.IndexOutputOutputStream.write(byte[], int, int)"}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fqX01Q_XnrWTMFwMltCSzQAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived(org.elasticsearch.action.support.replication.TransportReplicationAction$ConcreteShardRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 1}, "line": {"number": 475}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RA6fryXhwc6j3TqIqI_2kAAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.handlePrimaryResult(org.elasticsearch.action.support.replication.ReplicationOperation$PrimaryResult)", "offset": 3}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YUqlosets6-rXKgChfDXoQAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "DefaultBHttpClientConnection.java"}, "function": {"name": "void org.apache.http.impl.DefaultBHttpClientConnection.sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest)", "offset": 8}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0Oqv_TDkuwLFb16GYwq7BgAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.script.ScriptSettings$$Lambda$334.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jzN7oGzjO6fv1s92-BFCeQAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendResponse(org.elasticsearch.TransportVersion, org.elasticsearch.transport.TcpChannel, long, java.lang.String, org.elasticsearch.transport.TransportResponse, org.elasticsearch.transport.Compression$Scheme, boolean)", "offset": 9}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xT2WWO0xpoJavs9lRfxlrQAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$10768+0x000000080298eee0.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dB4PTvxusL-njRQbYYX1BgAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "void org.elasticsearch.common.settings.Setting.checkDeprecation(org.elasticsearch.common.settings.Settings)", "offset": 3}, "line": {"number": 370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Lk-ayVoCxcqQzq4jE_npOAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "AbstractAggregationBuilder.java"}, "function": {"name": "org.elasticsearch.search.aggregations.AggregatorFactory org.elasticsearch.search.aggregations.AbstractAggregationBuilder.build(org.elasticsearch.search.aggregations.support.AggregationContext, org.elasticsearch.search.aggregations.AggregatorFactory)"}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjMqP"}} +{"Stackframe": {"function": {"name": "dev_queue_xmit"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi08L"}} +{"Stackframe": {"function": {"name": "consume_skb"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lm-dL0oBgfvDWr46CGfkEAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "KeywordFieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.KeywordFieldMapper.indexValue(org.elasticsearch.index.mapper.ParseContext, java.lang.String)"}, "line": {"number": 481}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1x0MRoZ2zCpyeLl2nZZSQgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "BytesStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.BytesStreamOutput.writeByte(byte)"}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ws0N6fTgPArljYYAC403MwAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.acceptState(org.elasticsearch.cluster.ClusterState)", "offset": 5}, "line": {"number": 242}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UkueeppiTuWpAUJ_Q3y4iAAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "DockerHealthCheck.scala"}, "function": {"name": "java.util.concurrent.CompletionStage no.found.docker.DockerHealthCheck.checkAsync(java.util.concurrent.Executor)", "offset": 2}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALzVz"}} +{"Stackframe": {"function": {"name": "shrink_dentry_list"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R1GkjoPI5Yxt9CGoDpaaGwAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "AbstractList.java"}, "function": {"name": "int java.util.AbstractList.hashCode()", "offset": 2}, "line": {"number": 569}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w8WZ7knoCa_QO4bWg-OEuAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput$$Lambda$5365+0x0000000801aac298.write(org.elasticsearch.common.io.stream.StreamOutput, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E-LPqDQzyXigNIYWBMlgtgAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "LoggingHandler.java"}, "function": {"name": "void io.netty.handler.logging.LoggingHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 3}, "line": {"number": 280}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cBtf2-e1bkY-X8ucCf27zgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "FeedbackCipher.java"}, "function": {"name": "void com.sun.crypto.provider.FeedbackCipher.(com.sun.crypto.provider.SymmetricCipher)", "offset": 2}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pKLBb0_sPdt_IxvNqtQh6AAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.apache.lucene.search.Weight.bulkScorer(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XpviWYO7CFQF88r_qvK5hQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "int java.util.HashMap.hash(java.lang.Object)"}, "line": {"number": 338}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GBhILDYlssyThkp8tHozyQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.onResponse(org.elasticsearch.common.lease.Releasable)"}, "line": {"number": 522}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk5gH"}} +{"Stackframe": {"function": {"name": "__netlink_dump_start"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IHa31Kt95ZEX4I86HsYJtAAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "void org.elasticsearch.search.SearchService.loadOrExecuteQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.search.internal.SearchContext)", "offset": 5}, "line": {"number": 252}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(org.elasticsearch.rest.RestRequest, boolean, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dwSOkkrBP5mhBlnlAF95JQAAAAAAAABq"}} +{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "org.apache.lucene.index.SortedNumericDocValues org.apache.lucene.codecs.DocValuesConsumer$3.getSortedNumeric(org.apache.lucene.index.FieldInfo)", "offset": 13}, "line": {"number": 392}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ"}} +{"Stackframe": {"function": {"name": "do_sys_open"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LE9059JushFpT02ldF8LBAAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "void sun.nio.fs.UnixPath.checkRead()", "offset": 2}, "line": {"number": 780}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "98crfAiSKlCUGPoKQd7HZwAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "IntroSorter.java"}, "function": {"name": "void org.apache.lucene.util.IntroSorter.sort(int, int)", "offset": 1}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Kb-tzduguGzSwq-TvJVcAQAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Index org.elasticsearch.index.shard.IndexShard.prepareIndex(org.elasticsearch.index.mapper.MapperService, java.lang.String, org.elasticsearch.index.mapper.SourceToParse, long, long, long, org.elasticsearch.index.VersionType, org.elasticsearch.index.engine.Engine$Operation$Origin, long, boolean, long, long)", "offset": 9}, "line": {"number": 863}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aRrOrNITdHBtU0ooj817_wAAAAAAAABW"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "org.elasticsearch.search.fetch.FetchSubPhase$HitContext org.elasticsearch.search.fetch.FetchPhase.prepareNonNestedHitContext(org.elasticsearch.search.internal.SearchContext, org.elasticsearch.search.fetch.FetchPhase$Profiler, org.elasticsearch.index.fieldvisitor.FieldsVisitor, int, java.util.Map, org.apache.lucene.index.LeafReaderContext, org.elasticsearch.common.CheckedBiConsumer)", "offset": 7}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-SQAt_091j0wh4lQu2r18QAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "PromiseNotificationUtil.java"}, "function": {"name": "void io.netty.util.internal.PromiseNotificationUtil.trySuccess(io.netty.util.concurrent.Promise, java.lang.Object, io.netty.util.internal.logging.InternalLogger)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "K4Wl3Qo0Q4iNLE1_roC0rgAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6900+0x0000000801db1d68.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-tADPF5o26h8OuVwJec-JwAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "BasicHeaderIterator.java"}, "function": {"name": "org.apache.http.Header org.apache.http.message.BasicHeaderIterator.nextHeader()", "offset": 5}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zBmd40xeIWlVWiaWFnVM2QAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "EsExecutors.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.EsExecutors$DirectExecutorService.execute(java.lang.Runnable)"}, "line": {"number": 246}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlxR"}} +{"Stackframe": {"function": {"name": "show_mountinfo"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z0hdy73gJuxMxMUBOMHWTQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FilterStreamInput.java"}, "function": {"name": "byte org.elasticsearch.common.io.stream.FilterStreamInput.readByte()"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DmCjVnOlyRCGuSWi8wFNugAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "java.lang.String java.lang.String.toLowerCase()"}, "line": {"number": 3411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aI2zTChMADjZ-wxAxvb-PAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "BooleanQuery.java"}, "function": {"name": "void org.apache.lucene.search.BooleanQuery.(boolean, int, org.apache.lucene.search.BooleanClause[], org.apache.lucene.search.BooleanQuery$1)"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H3I9lsKeM021aDJgbYYYAwAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateListener(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder, java.util.Collection)", "offset": 3}, "line": {"number": 571}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pDdH2I4ITPlwXLt-L5JoUAAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(io.netty.channel.ChannelHandlerContext, io.netty.handler.codec.CodecOutputList, int)", "offset": 1}, "line": {"number": 324}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aG38C7AQR-wEDFFefkRnfgAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, java.lang.Throwable)", "offset": 5}, "line": {"number": 451}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MfnvsYbrGgMTd5Rb3Kil9wAAAAAAAAC8"}} +{"Stackframe": {"file": {"name": "IndexFieldDataService.java"}, "function": {"name": "org.elasticsearch.index.fielddata.IndexFieldData org.elasticsearch.index.fielddata.IndexFieldDataService.getForField(org.elasticsearch.index.mapper.MappedFieldType)", "offset": 19}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j5zlUQh7CKlo9dGRL_ZvEwAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.map(java.util.Map, boolean, boolean)", "offset": 16}, "line": {"number": 891}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.addListener(org.elasticsearch.action.ActionListener, java.util.concurrent.ExecutorService, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 2}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZNIMXBN7NKTXUfXb93okMgAAAAAAAABQ"}} +{"Stackframe": {"file": {"name": "AbstractNioByteChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read()", "offset": 15}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UA4BjsyOQrnvMdgV5LUO_AAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService$$Lambda$10694+0x0000000802972d18.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9IhHfuWJrOs11474cWFSIwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "java.lang.String[] java.util.regex.Pattern.split(java.lang.CharSequence)"}, "line": {"number": 1335}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ch_u3pCKkhuOfcEbqwjJrwAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "UnixFileSystem.java"}, "function": {"name": "java.lang.String java.io.UnixFileSystem.normalize(java.lang.String)", "offset": 5}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N1yQmT_9n6cWItzZGETCQAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "JarURLConnection.java"}, "function": {"name": "void java.net.JarURLConnection.(java.net.URL)", "offset": 1}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QhgKoY7YGPuzgknqN_IlIwAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService$SafeClusterStateTaskListener.clusterStateProcessed(java.lang.String, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)", "offset": 1}, "line": {"number": 523}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6PDTyNLwDP2GCrVJoblLzgAAAAAAAABI"}} +{"Stackframe": {"file": {"name": "IncludeExclude.java"}, "function": {"name": "org.apache.lucene.util.LongBitSet org.elasticsearch.search.aggregations.bucket.terms.support.IncludeExclude$PartitionedOrdinalsFilter.acceptedGlobalOrdinals(org.apache.lucene.index.RandomAccessOrds)", "offset": 9}, "line": {"number": 285}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jkfqsU9w34yk0ipcsxq5HgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.processEvents(boolean)", "offset": 1}, "line": {"number": 5428}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PhHweSUk-rcHLCvi4mySwgAAAAAAAAEs"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.tryAllHandlers(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 44}, "line": {"number": 356}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xPyjeTIJnG9fHl2tahzA6gAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "BufferedReader.java"}, "function": {"name": "java.lang.String java.io.BufferedReader.implReadLine(boolean, boolean[])", "offset": 11}, "line": {"number": 371}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9OzUb7JNYeSMrBmReN9TLAAAAAAAAAEw"}} +{"Stackframe": {"file": {"name": "OrdinalMap.java"}, "function": {"name": "void org.apache.lucene.index.OrdinalMap.(org.apache.lucene.index.IndexReader$CacheKey, org.apache.lucene.index.TermsEnum[], org.apache.lucene.index.OrdinalMap$SegmentMap, float)", "offset": 70}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LqiOes3kysZtBc8totbsBAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.lstat0(long, sun.nio.fs.UnixFileAttributes)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GS-BM31ayIfhOMl6o8fHjwAAAAAAAABu"}} +{"Stackframe": {"file": {"name": "SortedNumericDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedNumericDocValuesWriter.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.DocValuesConsumer)", "offset": 17}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kqeq91eyNY8ANyNL5QUkXgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.apache.lucene.store.FilterDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6WTxcKL689nQxyNz9An6VwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "void io.netty.channel.DefaultChannelPipeline$HeadContext.flush(io.netty.channel.ChannelHandlerContext)"}, "line": {"number": 1396}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yFBJd9cdNdUZI2XG5UyXfQAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "FSTCompiler.java"}, "function": {"name": "void org.apache.lucene.util.fst.FSTCompiler.(org.apache.lucene.util.fst.FST$INPUT_TYPE, int, int, boolean, boolean, int, org.apache.lucene.util.fst.Outputs, boolean, int, float)", "offset": 59}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JIJ67u_XI4-jnSyBIeegBAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "MappingMetadata.java"}, "function": {"name": "java.util.Map org.elasticsearch.cluster.metadata.MappingMetadata.sourceAsMap()"}, "line": {"number": 137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ryXkoj4-FLTKQHGPNi1F9QAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "DiscoveryNode.java"}, "function": {"name": "void org.elasticsearch.cluster.node.DiscoveryNode.(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 385}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XDxGh_Brs7A1yOGKt9vDgAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "long org.elasticsearch.index.engine.InternalEngine.getLastSyncedGlobalCheckpoint()"}, "line": {"number": 2857}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OsFY5wzpdR2T8945g3gHggAAAAAAAACE"}} +{"Stackframe": {"file": {"name": "Template.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.cluster.metadata.Template.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 14}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P85-ZHhT2OrY2C13tzUCcgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "java.lang.String java.lang.String.intern()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D5lAQaLy9ATYrsXm9SsubAAAAAAAAAE_"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesProducer.(org.apache.lucene.index.SegmentReadState, java.lang.String, java.lang.String, java.lang.String, java.lang.String)", "offset": 39}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6vLdbR-rUObkBHp1yQiB0AAAAAAAAABq"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler$PublicationContext.buildDiffAndSerializeStates()", "offset": 10}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N_jyWA7M6TwYIg6lYwMZzwAAAAAAAABh"}} +{"Stackframe": {"file": {"name": "RestUpdateByQueryAction.java"}, "function": {"name": "org.elasticsearch.index.reindex.UpdateByQueryRequest org.elasticsearch.reindex.RestUpdateByQueryAction.buildRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.common.io.stream.NamedWriteableRegistry)", "offset": 15}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YEThj3UEuGl2wDiJSq9vSAAAAAAAAADm"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.applyIndexOperation(org.elasticsearch.index.engine.Engine, long, long, long, org.elasticsearch.index.VersionType, long, long, long, boolean, org.elasticsearch.index.engine.Engine$Operation$Origin, org.elasticsearch.index.mapper.SourceToParse)", "offset": 47}, "line": {"number": 986}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UvL0y1JUslNFPdxuHL61jgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$6473+0x0000000801c867c0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7IEHERnF90mapP9IXL1FNAAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "org.elasticsearch.search.fetch.FetchSubPhase$HitContext org.elasticsearch.search.fetch.FetchPhase.prepareHitContext(org.elasticsearch.search.internal.SearchContext, boolean, org.elasticsearch.search.fetch.FetchPhase$Profiler, org.elasticsearch.search.LeafNestedDocuments, org.elasticsearch.index.fieldvisitor.LeafStoredFieldLoader, int, org.apache.lucene.index.LeafReaderContext, org.elasticsearch.index.mapper.SourceLoader$Leaf)", "offset": 1}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rUHBgSz_SQE-q7C0lnDupQAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.ReadersAndUpdates.getReadOnlyClone(org.apache.lucene.store.IOContext)", "offset": 7}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D0ofxcgGz_JIo1VPr4gbYQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "boolean java.util.stream.StreamSpliterators$WrappingSpliterator$$Lambda$116.getAsBoolean()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_jcNhXlm_4ESbJ83f0qd9AAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "DupDetector.java"}, "function": {"name": "boolean com.fasterxml.jackson.core.json.DupDetector.isDup(java.lang.String)", "offset": 19}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6K_-Y3cBMb_UtiT-qSh5dQAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "DocIDMerger.java"}, "function": {"name": "org.apache.lucene.index.DocIDMerger$Sub org.apache.lucene.index.DocIDMerger$SequentialDocIDMerger.next()", "offset": 5}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Q1b7jdbtxavHFLXq_nCrrgAAAAAAAACK"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.consumeToken(org.elasticsearch.xpack.core.security.authc.AuthenticationToken)", "offset": 67}, "line": {"number": 533}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAirCv"}} +{"Stackframe": {"function": {"name": "sock_def_readable"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Eo37R4TG_ubE_su8nzeliwAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeClusterAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "b2ckm-0wQN1Adu_SQOHiPwAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "FsDirectoryFactory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.elasticsearch.index.store.FsDirectoryFactory$HybridDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 8}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DJjb-hiaxSF7RAV6Z3IfnQAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "TimSorter.java"}, "function": {"name": "void org.apache.lucene.util.TimSorter.sort(int, int)", "offset": 7}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DePeDrfzT4Z9IiWuAa2yfQAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.wrap(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer)", "offset": 14}, "line": {"number": 1186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "U6oUxAKdgFsLxgCW62GbLAAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "boolean java.util.regex.Pattern$GroupTail.match(java.util.regex.Matcher, int, java.lang.CharSequence)", "offset": 9}, "line": {"number": 4832}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UIy2Q7YM4c27tuS1_ztJlAAAAAAAAACV"}} +{"Stackframe": {"file": {"name": "TransportBroadcastByNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived(org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$NodeRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 12}, "line": {"number": 412}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N2e_V1FnhaoAEo890khZ-QAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "SdkHttpClient.java"}, "function": {"name": "org.apache.http.HttpResponse com.amazonaws.http.apache.client.impl.SdkHttpClient.execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.protocol.HttpContext)"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3snKxK1kYMyCD8yp6NPsUAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Phase.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleAction org.elasticsearch.xpack.core.ilm.Phase.lambda$static$2(org.elasticsearch.common.xcontent.XContentParser, java.lang.String, java.lang.String)"}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BF5-aKv2OAM_gpCUkp3mhAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FileInputStream.java"}, "function": {"name": "int java.io.FileInputStream.read(byte[], int, int)"}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "t2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAJQ"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "boolean org.elasticsearch.action.bulk.TransportShardBulkAction.executeBulkItemRequest(org.elasticsearch.action.bulk.BulkPrimaryExecutionContext, org.elasticsearch.action.update.UpdateHelper, java.util.function.LongSupplier, org.elasticsearch.action.bulk.MappingUpdatePerformer, java.util.function.Consumer, org.elasticsearch.action.ActionListener)", "offset": 92}, "line": {"number": 353}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ILb5QzqdmE5sdkoOBOs6awAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService.access$100(org.elasticsearch.snapshots.SnapshotShardsService, org.elasticsearch.snapshots.Snapshot, org.elasticsearch.index.shard.ShardId, org.elasticsearch.repositories.ShardSnapshotResult)"}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4D0fbc_pdXE-9wAhBiPZKgAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeBulkItems$22(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationContext, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener, java.lang.String, java.util.Set)", "offset": 7}, "line": {"number": 846}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1DMLps0Phwo-rlcCw6stdQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput$$Lambda$8549+0x0000000801fd5418.write(org.elasticsearch.common.io.stream.StreamOutput, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D5TWJecLBrI9DD1qUI4PMAAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5606+0x0000000801ab2350.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAJd"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 66}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HfMb4ib8WKiucqC90J7sSwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "long org.elasticsearch.index.store.Store$StoreDirectory.estimateSize()"}, "line": {"number": 704}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALVN7"}} +{"Stackframe": {"function": {"name": "__x64_sys_writev"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hW8OwmmxjJYCeXfLTZy__QAAAAAAAAFL"}} +{"Stackframe": {"file": {"name": "IndicesAliasesRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.IndicesAliasesRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 65}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xipOTqrwcd56sA9XuGoHcwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ReduceOps.java"}, "function": {"name": "int java.util.stream.ReduceOps$3.getOpFlags()"}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vqa2qJ2cwRBJMXL7-qTksgAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer.writeBlob(java.lang.String, boolean, boolean, org.elasticsearch.core.CheckedConsumer)", "offset": 74}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ok4zrk1T3mBLtObzPQcS-QAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Deflater.java"}, "function": {"name": "int java.util.zip.Deflater.deflate(byte[], int, int)"}, "line": {"number": 465}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_etALA28oEWqh2qGb97M7QAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.concurrent.ThreadContext$$Lambda$5735+0x0000000801be4d28.read(org.elasticsearch.common.io.stream.StreamInput)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XXAlTOaS8XqXSJc4sB0AFgAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.xcontent.XContent, java.lang.String, boolean)", "offset": 2}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnKXQ"}} +{"Stackframe": {"function": {"name": "unix_stream_sendmsg"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AGwBzN2wVQI2rKP42JhPfAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "XContentMapValues.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.XContentMapValues.lambda$filter$0(org.apache.lucene.util.automaton.CharacterRunAutomaton, org.apache.lucene.util.automaton.CharacterRunAutomaton, org.apache.lucene.util.automaton.CharacterRunAutomaton, java.util.Map)"}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7rhErXkPi9cws8rEi9vJcwAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "DirectByteBuffer.java"}, "function": {"name": "java.nio.ByteBuffer java.nio.DirectByteBuffer.duplicate()", "offset": 4}, "line": {"number": 221}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Zb4pGe2cTLCA76HvxkNMNwAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "ByteBuffer.java"}, "function": {"name": "java.nio.ByteBuffer java.nio.ByteBuffer.getArray(int, byte[], int, int)", "offset": 18}, "line": {"number": 932}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u2WVw07zPKE8tjDW7uq3_AAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "org.apache.lucene.index.SortedDocValues org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer$3.getSorted(org.apache.lucene.index.FieldInfo)", "offset": 1}, "line": {"number": 765}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.core.security.authz.store.RoleReferenceIntersection$$Lambda$7790+0x0000000802546600.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yaNpzFvIPtiJi3LwjMyZHgAAAAAAAAGM"}} +{"Stackframe": {"file": {"name": "ClusterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterService.publishAndApplyChanges(org.elasticsearch.cluster.service.ClusterService$TaskInputs, org.elasticsearch.cluster.service.ClusterService$TaskOutputs)", "offset": 58}, "line": {"number": 774}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8RcHlq9cItc9ubcDW2AKXgAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "void co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.writeEvent(co.elastic.apm.agent.report.ReportingEvent)", "offset": 5}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_pxpI1Nkkofih1oFQHl3WwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "ObjectMapper.java"}, "function": {"name": "java.util.Iterator org.elasticsearch.index.mapper.ObjectMapper.iterator()"}, "line": {"number": 397}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0YvYYZqpoRVqaulkjga7JQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.decRef(java.lang.Object)"}, "line": {"number": 350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Zju6rAGbAtHQitND_873BgAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter$IndexWriterMergeSource.merge(org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 1}, "line": {"number": 5920}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WW3_EbNz_1GX9glPH_zWuQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "int java.util.TreeMap$KeySet.size()"}, "line": {"number": 1404}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hext5Np4MklqKjuB1rw5igAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction$$Lambda$7300+0x00000008025261f8.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zkX_ZZVUPja3uHE0dMvPaQAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "MultiCollector.java"}, "function": {"name": "org.apache.lucene.search.LeafCollector org.apache.lucene.search.MultiCollector.getLeafCollector(org.apache.lucene.index.LeafReaderContext)", "offset": 4}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p5w5pK5DC7tvfZH54keo2AAAAAAAAAB_"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$writeIndexGen$66(org.elasticsearch.action.StepListener, org.elasticsearch.Version, long, org.elasticsearch.action.ActionListener, java.util.function.Function, org.elasticsearch.repositories.RepositoryData)", "offset": 17}, "line": {"number": 2365}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_9_-8qGjh9aou0FeZrQLMgAAAAAAAAC9"}} +{"Stackframe": {"file": {"name": "SSLCipher.java"}, "function": {"name": "sun.security.ssl.Plaintext sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.decrypt(byte, java.nio.ByteBuffer, byte[])", "offset": 26}, "line": {"number": 1649}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-xAh5Z-SxGsLYmmPrAbYUQAAAAAAAACP"}} +{"Stackframe": {"file": {"name": "TransportClusterHealthAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.health.TransportClusterHealthAction.masterOperation(org.elasticsearch.tasks.Task, org.elasticsearch.action.admin.cluster.health.ClusterHealthRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)", "offset": 52}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Rt6zauIajYCS35l66QRKCQAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeClusterAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uWSjn1AIf1Wt8HOEQkzjgAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "long org.elasticsearch.common.io.Streams.copy(java.io.InputStream, java.io.OutputStream)"}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p-6FGk_K6StmGvAWftOUzQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "TransportGetIndexAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.get.TransportGetIndexAction.doMasterOperation(org.elasticsearch.action.support.master.info.ClusterInfoRequest, java.lang.String[], org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5zVzmKYjyLpwowkBh3-YNQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ResourceMethodInvoker.java"}, "function": {"name": "java.lang.Object org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(java.lang.Object)"}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JYDGNyrxwMciptwAXDUuRwAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "AbstractAsyncTask.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractAsyncTask.run()", "offset": 8}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "53F48CLbttkBCL1_nvNwfwAAAAAAAABe"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.finish()", "offset": 14}, "line": {"number": 336}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4UCPpue6CVok_lbZI08fLQAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.write(byte[], int, int)", "offset": 9}, "line": {"number": 205}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wFolLawtZ8KIPHu9VlFy3wAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.createCompoundFile(org.apache.lucene.util.InfoStream, org.apache.lucene.store.TrackingDirectoryWrapper, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext, org.apache.lucene.util.IOUtils$IOConsumer)", "offset": 10}, "line": {"number": 5315}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rIEKDf_JcvZvJASJgvTasgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.access$000(org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator)"}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jwkBY0s-EHDmaMTnMHI2lgAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.xcontent.XContent, byte[], int, int, boolean)", "offset": 2}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "asfjD62HMHzrp-TIN-8V-gAAAAAAAABq"}} +{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "boolean java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.offer(java.lang.Runnable)", "offset": 21}, "line": {"number": 1117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dVXLQszZHgabMaRgrKn91QAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "File.java"}, "function": {"name": "java.lang.String java.io.File.getCanonicalPath()", "offset": 3}, "line": {"number": 618}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iXaoDIhlEPfbXJEFUAhiKQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct.putSingleHeader(java.lang.String, java.lang.String, java.util.Map)"}, "line": {"number": 401}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z7em3gxFGrIrQEp2dvnPNwAAAAAAAAC6"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.forceApply(org.apache.lucene.index.FrozenBufferedUpdates)", "offset": 51}, "line": {"number": 6104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rOOdiLJX-1B7cLCvfMwHQQAAAAAAAAED"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 62}, "line": {"number": 443}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iGdBKMVY5TdyDSj849t27QAAAAAAAABR"}} +{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.SingleThreadEventExecutor.execute(java.lang.Runnable)", "offset": 26}, "line": {"number": 799}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GGHOuWs-kNsU0GtQ48oWGgAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.xcontent.XContentBuilder.unknownValue(java.lang.Object, boolean)", "offset": 6}, "line": {"number": 822}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lL02ENMn9TDqCnir50TaAgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$1.onResponse(java.lang.Object)"}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PT8Qhq3pE7S7UQ5pBb6dmAAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.apache.lucene.search.BooleanWeight.bulkScorer(org.apache.lucene.index.LeafReaderContext)", "offset": 6}, "line": {"number": 395}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nrhN620EAJ_Aof0ETZ3WHAAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.shard.DocsStats org.elasticsearch.index.engine.Engine.docStats()", "offset": 1}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$doAuthenticateAndCache$4(org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.authc.support.UsernamePasswordToken, org.elasticsearch.xpack.security.user.User)", "offset": 1}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6XSmObFSSfKQphH28GHZfAAAAAAAAAG2"}} +{"Stackframe": {"file": {"name": "MainClientExec.java"}, "function": {"name": "org.apache.http.client.methods.CloseableHttpResponse org.apache.http.impl.execchain.MainClientExec.execute(org.apache.http.conn.routing.HttpRoute, org.apache.http.client.methods.HttpRequestWrapper, org.apache.http.client.protocol.HttpClientContext, org.apache.http.client.methods.HttpExecutionAware)", "offset": 81}, "line": {"number": 236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BvLbND_0DrAH3Z_KTjqNwwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "HashSet.java"}, "function": {"name": "boolean java.util.HashSet.add(java.lang.Object)"}, "line": {"number": 221}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ch4Y3JM3fz5yMRs1YmQqPQAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "java.lang.StackTraceElement[] java.lang.Throwable.getOurStackTrace()", "offset": 2}, "line": {"number": 861}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SSGGC14VYxcFAL3lGtENzQAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation$2.onResponse(org.elasticsearch.action.support.replication.ReplicationOperation$ReplicaResponse)", "offset": 2}, "line": {"number": 224}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0LGXmFocz46kL18OXWxszwAAAAAAAABk"}} +{"Stackframe": {"file": {"name": "InflaterInputStream.java"}, "function": {"name": "int java.util.zip.InflaterInputStream.read(byte[], int, int)", "offset": 16}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9hAOHgmwWWwZTwO4K132QgAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.addNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 3}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fdVymRP0v5Xa8xgKjz9rGwAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor.sendWithUser(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportInterceptor$AsyncSender, boolean)", "offset": 8}, "line": {"number": 162}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4kWCaNFLMV9D_w_Vhl3uMQAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "MSBRadixSorter.java"}, "function": {"name": "void org.apache.lucene.util.MSBRadixSorter.radixSort(int, int, int, int)", "offset": 7}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EnRoHyZazasm_zTjL5tnOgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.stat(sun.nio.fs.UnixPath, sun.nio.fs.UnixFileAttributes)", "offset": 2}, "line": {"number": 277}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jjxn4cl8bBaRqPgS5F0n8gAAAAAAAAD_"}} +{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "int org.apache.lucene.codecs.compressing.LZ4.decompress(org.apache.lucene.store.DataInput, int, byte[], int)", "offset": 49}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "S06qc2WWdjyLzzAdWuSUuwAAAAAAAAGz"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.io.stream.StreamInput.readString()", "offset": 49}, "line": {"number": 477}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4G0_XUxOHYuEKQMP-FkGHwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.xcontent.json.JsonXContentGenerator.writeFieldName(java.lang.String)"}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBGg"}} +{"Stackframe": {"function": {"name": "mark_wake_futex"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2qk3SUFPdBYwVkFMX3ttpwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ComposableIndexTemplate.java"}, "function": {"name": "org.elasticsearch.cluster.metadata.ComposableIndexTemplate org.elasticsearch.cluster.metadata.ComposableIndexTemplate.parse(org.elasticsearch.common.xcontent.XContentParser)"}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz4-"}} +{"Stackframe": {"function": {"name": "__audit_syscall_exit"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2klY3p2jr0ajN24nSnnxAwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.io.InputStream java.nio.file.Files.newInputStream(java.nio.file.Path, java.nio.file.OpenOption[])"}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-BSYq_-fWhfdOLbXMbRsJwAAAAAAAADL"}} +{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "void sun.security.ssl.SSLSocketImpl$AppOutputStream.write(byte[], int, int)", "offset": 35}, "line": {"number": 1287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iTk3U2-62NFOFRUZ1dKBrwAAAAAAAABt"}} +{"Stackframe": {"file": {"name": "Rewriteable.java"}, "function": {"name": "void org.elasticsearch.index.query.Rewriteable.rewriteAndFetch(org.elasticsearch.index.query.Rewriteable, org.elasticsearch.index.query.QueryRewriteContext, org.elasticsearch.action.ActionListener, int)", "offset": 19}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Or3A_uFtf7YBOMVYzqReaQAAAAAAAACq"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor.sendRequestInner(org.elasticsearch.transport.TransportInterceptor$AsyncSender, org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 45}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "r9OA6z6ywxk33MG1uly6aAAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$3(org.elasticsearch.action.support.ActionFilterChain, org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener, java.lang.Void)"}, "line": {"number": 190}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FaAnmesk_y2t3EkYWQyVZgAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "ByteBuffer.java"}, "function": {"name": "java.nio.ByteBuffer java.nio.ByteBuffer.allocate(int)", "offset": 2}, "line": {"number": 363}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_bWrQJSE9QDRqMSbes6HHAAAAAAAAACK"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermission.impliesIgnoreMask(java.io.FilePermission)", "offset": 23}, "line": {"number": 611}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TmzQelMX43KPMwjrLHXzKgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.authenticateAsync()"}, "line": {"number": 210}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N155AC9KQhoTagHpiv5nrgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction$$Lambda$1952.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eQTk-J6y4I8N-SMXB7gKXwAAAAAAAADF"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser._parseName(int)", "offset": 32}, "line": {"number": 1824}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GLgvZduLXzxu8BO2Sf5iiAAAAAAAAACE"}} +{"Stackframe": {"file": {"name": "BufferedIndexInput.java"}, "function": {"name": "void org.apache.lucene.store.BufferedIndexInput.refill()", "offset": 15}, "line": {"number": 315}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObject(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, java.lang.String[])", "offset": 4}, "line": {"number": 608}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAcFf"}} +{"Stackframe": {"function": {"name": "aufs_permission"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TOa0ygAfQQy9_fxWXp26HwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object no.found.service.health.HealthChecks$$Lambda$3958.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "trUzCYGjKe3UUnWzzQXqEwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport$RequestHandler.doRun()"}, "line": {"number": 1288}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YuFRqUWC2dt608XUwtEIRQAAAAAAAABw"}} +{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.buildRoleFromRoleReference(org.elasticsearch.xpack.core.security.authz.store.RoleReference, org.elasticsearch.action.ActionListener)", "offset": 50}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9jqjVVKEx8WeQCg7IsRoQQAAAAAAAADH"}} +{"Stackframe": {"file": {"name": "IndexingMemoryController.java"}, "function": {"name": "void org.elasticsearch.indices.IndexingMemoryController$ShardsIndicesStatusChecker.runUnlocked()", "offset": 35}, "line": {"number": 326}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pGnFHfBK3F-I6STArMJjqQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.SnapshotsInProgress$$Lambda$5521+0x0000000801b0eba0.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k_s_ITRPELxw2Zk2jzGG8wAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "TreeSet.java"}, "function": {"name": "boolean java.util.TreeSet.add(java.lang.Object)"}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vc-j1E8HSTKofoqXgmmEFQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "int java.lang.String.hashCode()"}, "line": {"number": 1540}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "emtnMy3iySqrF6v2pitJkQAAAAAAAACf"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "int org.elasticsearch.transport.TcpTransport.readHeaderBuffer(org.elasticsearch.common.bytes.BytesReference)", "offset": 28}, "line": {"number": 883}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HLm7NAzTeipEOn9w_dC-wAAAAAAAAABJ"}} +{"Stackframe": {"file": {"name": "GrowableWriter.java"}, "function": {"name": "void org.apache.lucene.util.packed.GrowableWriter.ensureCapacity(long)", "offset": 7}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OfSN4qpvICe5qZwj_0pPhAAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "SegmentInfos.java"}, "function": {"name": "java.lang.String org.apache.lucene.index.SegmentInfos.finishCommit(org.apache.lucene.store.Directory)", "offset": 8}, "line": {"number": 836}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CvC3lIC7E70AiCoZ7DVYSQAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline$2$1.accept(java.lang.Object)", "offset": 1}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xPBNnsh_8JR4ENw7lxv6RgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "OutputRecord.java"}, "function": {"name": "long sun.security.ssl.OutputRecord.t10Encrypt(sun.security.ssl.SSLCipher$SSLWriteCipher, byte, java.nio.ByteBuffer, int, int, int, sun.security.ssl.ProtocolVersion)", "offset": 1}, "line": {"number": 436}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FlgPzMfkmxZ6MfLlJ0EVIAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "ConstructingObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ConstructingObjectParser$Target.access$900(org.elasticsearch.common.xcontent.ConstructingObjectParser$Target, int, java.lang.Object)"}, "line": {"number": 396}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Uq-HaSaqgAOt3llTC3jRJwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "LZ4SafeUtils.java"}, "function": {"name": "int org.elasticsearch.lz4.LZ4SafeUtils.commonBytes(byte[], int, int, int)"}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lqnkRSi2l38NtuG1By7gSwAAAAAAAABF"}} +{"Stackframe": {"file": {"name": "InferenceProcessor.java"}, "function": {"name": "int org.elasticsearch.xpack.ml.inference.ingest.InferenceProcessor$Factory.countNumberInferenceProcessors(org.elasticsearch.cluster.ClusterState)", "offset": 11}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y-QS5npSPxf1yPUr9712ewAAAAAAAAD6"}} +{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.executeSearch(org.elasticsearch.action.search.SearchTask, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.OriginalIndices, java.util.List, java.util.function.BiFunction, org.elasticsearch.cluster.ClusterState, java.util.Map, org.elasticsearch.action.ActionListener, org.elasticsearch.action.search.SearchResponse$Clusters, org.elasticsearch.action.search.SearchContextId, org.elasticsearch.action.search.TransportSearchAction$SearchAsyncActionProvider)", "offset": 47}, "line": {"number": 982}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AVByGTd87T_9N9GHRNPvXQAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.IndexShardStats org.elasticsearch.indices.IndicesService.indexShardStats(org.elasticsearch.indices.IndicesService, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 8}, "line": {"number": 342}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uraIFXU9GqBqmWbTlxjVJAAAAAAAAABi"}} +{"Stackframe": {"file": {"name": "ArraysSupport.java"}, "function": {"name": "int jdk.internal.util.ArraysSupport.mismatch(byte[], int, byte[], int, int)", "offset": 14}, "line": {"number": 298}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "UpdateRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.UpdateRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)"}, "line": {"number": 27}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rG4zWNbzF43FlUaeZiWkVQAAAAAAAACB"}} +{"Stackframe": {"file": {"name": "LifecyclePolicy.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.LifecyclePolicy.toSteps(org.elasticsearch.client.Client, org.elasticsearch.license.XPackLicenseState)", "offset": 23}, "line": {"number": 240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P-EiwvkkF9nbQhabEyjyCAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ByteBuffer.java"}, "function": {"name": "void java.nio.ByteBuffer.(int, int, int, int, byte[], int)"}, "line": {"number": 281}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QMctDnxPPYtUnhB_5ZvHdgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "FieldNameAnalyzer.java"}, "function": {"name": "void org.elasticsearch.index.analysis.FieldNameAnalyzer.(java.util.Map)", "offset": 1}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aDyBXusCSgxGJvBxfJIWPwAAAAAAAACI"}} +{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileParser._loadToHaveAtLeast(int)", "offset": 15}, "line": {"number": 289}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hnFmKbq4bPMUr6dKfnAuCAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "OTelSpanBuilder.java"}, "function": {"name": "io.opentelemetry.api.trace.SpanBuilder co.elastic.apm.agent.opentelemetry.sdk.OTelSpanBuilder.setAttribute(io.opentelemetry.api.common.AttributeKey, java.lang.Object)"}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-VgZWZvvoe_9HhGDZJCzLgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.processEvents(boolean)", "offset": 1}, "line": {"number": 5426}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I4jMo9QP9xmtWdJqTQVyZAAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "RestStatusToXContentListener.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestStatusToXContentListener.buildResponse(org.elasticsearch.common.xcontent.StatusToXContentObject, org.elasticsearch.common.xcontent.XContentBuilder)", "offset": 1}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oOxfz22MTLX1COavxYytHQAAAAAAAAD0"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.parseMediumName(int)", "offset": 31}, "line": {"number": 1885}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "efTBmpxxTjoAafV3eDofAQAAAAAAAACu"}} +{"Stackframe": {"file": {"name": "SSLEngineInputRecord.java"}, "function": {"name": "sun.security.ssl.Plaintext[] sun.security.ssl.SSLEngineInputRecord.decodeInputRecord(java.nio.ByteBuffer)", "offset": 35}, "line": {"number": 240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VthdIAkyIWxV-e9fI9rVBQAAAAAAAACI"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 22}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eOiDFFx8fEa1T0wux9bfqAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "SocketDispatcher.java"}, "function": {"name": "long sun.nio.ch.SocketDispatcher.writev(java.io.FileDescriptor, long, int)"}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EQUK1Q6ZFWK4cthaLpBqMwAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction.shardOperationOnPrimary(org.elasticsearch.action.support.replication.ReplicatedWriteRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jj4EO_grm_cOEklAp23b9QAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ByteBufferGuard.java"}, "function": {"name": "void org.apache.lucene.store.ByteBufferGuard.getBytes(java.nio.ByteBuffer, byte[], int, int)", "offset": 1}, "line": {"number": 94}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEd3c"}} +{"Stackframe": {"function": {"name": "rcu_exp_wait_wake"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "FilterOutputStream.java"}, "function": {"name": "void java.io.FilterOutputStream.close()", "offset": 12}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w4iPcCvnDaOeCsCucOk6-gAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.coordination.LeaderChecker$$Lambda$4552+0x0000000801834228.read(org.elasticsearch.common.io.stream.StreamInput)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RxkYl0oyBdU9th-HWQUOKAAAAAAAAABZ"}} +{"Stackframe": {"file": {"name": "PooledDirectByteBuf.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.PooledDirectByteBuf.setBytes(int, io.netty.buffer.ByteBuf, int, int)", "offset": 6}, "line": {"number": 328}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "s7vZritmiKufeJDzCX_JRAAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.lambda$doAuthenticate$1(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.authc.Authenticator$Result)", "offset": 1}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oyUgxxOY520Rj3U8w5GHoQAAAAAAAADS"}} +{"Stackframe": {"file": {"name": "Long.java"}, "function": {"name": "long java.lang.Long.parseLong(java.lang.String, int)", "offset": 38}, "line": {"number": 692}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "J4eQqgwFH8hGziiVTbtiYwAAAAAAAACO"}} +{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.merge(org.apache.lucene.index.MergeState)", "offset": 16}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "57LvoS5XWl_fcJcp0yiW5gAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "RestToXContentListener.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestToXContentListener.buildResponse(java.lang.Object)"}, "line": {"number": 34}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KSV5zpqX5uS8pJ0jF65uTgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeList(java.util.List)"}, "line": {"number": 1187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WSv_GvqwNCJW0gL3eEOBtwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotsService.access$2100(org.elasticsearch.snapshots.SnapshotsService, org.elasticsearch.snapshots.Snapshot, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.repositories.RepositoryData)"}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUktU"}} +{"Stackframe": {"function": {"name": "string_escape_mem"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-sV6jQPrmt99eaayd2cwygAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "TimSorter.java"}, "function": {"name": "void org.apache.lucene.util.TimSorter.sort(int, int)", "offset": 9}, "line": {"number": 203}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iXE09wsufQpbcJFrBbH5RAAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$authenticateAsync$0(org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 2}, "line": {"number": 336}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bsQjgCW9UjBRbj0X9EX2MgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DaLOu1u8r2OzUEp60ph7fAAAAAAAAADX"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.innerParseObject(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, org.elasticsearch.xcontent.XContentParser, java.lang.String, org.elasticsearch.xcontent.XContentParser$Token)", "offset": 27}, "line": {"number": 518}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlHmB"}} +{"Stackframe": {"function": {"name": "ip_sublist_rcv_finish"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AQBNOYwNNBj76H9O8wvl6gAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesProducer.java"}, "function": {"name": "org.apache.lucene.codecs.lucene80.Lucene80DocValuesProducer$SortedNumericEntry org.apache.lucene.codecs.lucene80.Lucene80DocValuesProducer.readSortedNumeric(org.apache.lucene.store.ChecksumIndexInput)", "offset": 2}, "line": {"number": 309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Fpc8lrhPQ4yUW2cihur-4QAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TaskBatcher.java"}, "function": {"name": "void org.elasticsearch.cluster.service.TaskBatcher$BatchedTask.run()"}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OzfMwGMAUWlo9CHMDsxtzAAAAAAAAABm"}} +{"Stackframe": {"file": {"name": "DockerService.scala"}, "function": {"name": "scala.concurrent.Future no.found.docker.DockerService.ping(akka.stream.Materializer, co.elastic.cloud.tracing.TraceContext)", "offset": 3}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0YNPfOkv7TAAnafMtZqNkgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.xcontent.support.AbstractXContentParser.map()"}, "line": {"number": 254}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncPrimaryAction$$Lambda$7601+0x0000000801ed4b70.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eCd7pmEC4QoP7FQm1ikosgAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.handleIncomingPublishRequest(org.elasticsearch.transport.BytesTransportRequest)", "offset": 9}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8oQ_ZJ3ImiZWOZcNHv_WYwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.implDelete(java.nio.file.Path, boolean)", "offset": 1}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "655NLQCwT2lThms9b7SeGwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Authentication.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.Authentication.writeTo(org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wPMn-SWi7gfHNn2n10TVWQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "void java.util.Collections$2.forEachRemaining(java.util.function.Consumer)"}, "line": {"number": 4861}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "00eisXGmqWCNhkkhQAtLcAAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.lambda$onResponse$2(org.elasticsearch.core.Releasable, org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaResult)"}, "line": {"number": 652}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAUSK"}} +{"Stackframe": {"function": {"name": "aufs_d_revalidate"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XgmM-An4WEa_cvbAz9u_mQAAAAAAAABJ"}} +{"Stackframe": {"file": {"name": "ToParentBlockJoinQuery.java"}, "function": {"name": "org.apache.lucene.search.Weight org.apache.lucene.search.join.ToParentBlockJoinQuery.createWeight(org.apache.lucene.search.IndexSearcher, org.apache.lucene.search.ScoreMode, float)", "offset": 11}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qZY0RfBvPvNV6NUJtoKH8AAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.index(org.elasticsearch.index.engine.Engine$Index)", "offset": 2}, "line": {"number": 546}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "75MTQgFwHrOqmJ603qSRDgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "void java.security.AccessController.checkPermission(java.security.Permission)", "offset": 4}, "line": {"number": 858}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vsVYW4ktRFYgTrOh7kpjsgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "DigestInputStream.java"}, "function": {"name": "int java.security.DigestInputStream.read(byte[], int, int)"}, "line": {"number": 162}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KG0yJwPdmCgBSiArw5PPigAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ElasticApmTracer.java"}, "function": {"name": "org.stagemonitor.configuration.ConfigurationOptionProvider co.elastic.apm.agent.impl.ElasticApmTracer.getConfig(java.lang.Class)"}, "line": {"number": 370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JDnO1OdT3mBLtMfsODhVKQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Deflater.java"}, "function": {"name": "int java.util.zip.Deflater.deflate(byte[], int, int)"}, "line": {"number": 462}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eDYErd7QwzAMWeqUh1lyAQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.Version org.elasticsearch.common.settings.Settings.getAsVersion(java.lang.String, org.elasticsearch.Version)"}, "line": {"number": 526}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tLWCyKrEBYGzX2N5W13-8QAAAAAAAACn"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$consumeToken$15(org.elasticsearch.xpack.core.security.authc.Realm, org.elasticsearch.xpack.core.security.authc.AuthenticationToken, long, org.elasticsearch.action.ActionListener, java.util.Map, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 10}, "line": {"number": 489}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OMI6Q27dkZQjRDWwoDM78QAAAAAAAACh"}} +{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "void java.security.AccessController.checkPermission(java.security.Permission)", "offset": 30}, "line": {"number": 1036}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o-jqtuMSQjS4_DLqr5n5BwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Rewriteable.java"}, "function": {"name": "org.elasticsearch.index.query.Rewriteable org.elasticsearch.index.query.Rewriteable.rewrite(org.elasticsearch.index.query.Rewriteable, org.elasticsearch.index.query.QueryRewriteContext, boolean)", "offset": 2}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ycx3jsOzoddyVXaGAexG9AAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "OneMergeWrappingMergePolicy.java"}, "function": {"name": "org.apache.lucene.index.MergePolicy$MergeSpecification org.apache.lucene.index.OneMergeWrappingMergePolicy.findMerges(org.apache.lucene.index.MergeTrigger, org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WsvuuOCf77aYVbEsqDBn4QAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "long org.apache.lucene.store.FilterDirectory.fileLength(java.lang.String)"}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vc-j1E8HSTKofoqXgmmEFQAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "int java.lang.String.hashCode()", "offset": 2}, "line": {"number": 1542}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rXkHFJHXlVwu4t25QPtmYgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.executePhase(org.elasticsearch.action.search.SearchPhase)"}, "line": {"number": 424}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$null$11(org.elasticsearch.xpack.security.authc.Realm, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.user.User)", "offset": 7}, "line": {"number": 309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uVBW3qATYlP-aD6h0fuyUwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "SocketAccess.java"}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.s3.SocketAccess.doPrivileged(java.security.PrivilegedAction)", "offset": 1}, "line": {"number": 31}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E2NlszEGRXNxKeW09blqBAAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient.execute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 402}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1bop6BtJ2-QbHt1_vwb9pQAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "int org.elasticsearch.transport.TcpTransport.readMessageLength(org.elasticsearch.common.bytes.BytesReference)", "offset": 3}, "line": {"number": 850}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZXgikkpw19cSXy4ymPbmNQAAAAAAAABF"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.value(java.lang.Iterable, boolean)", "offset": 16}, "line": {"number": 915}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M8i6RTc75b9Htv3EHlmttAAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.authenticate(org.elasticsearch.xpack.security.authc.AuthenticationToken, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mvWNLiibNh2jmnrh-j3LtgAAAAAAAABY"}} +{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 18}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MbaOnaCMmj3Z2Dka8DRidwAAAAAAAAE7"}} +{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.mergeSortedSetField(org.apache.lucene.index.FieldInfo, org.apache.lucene.index.MergeState)", "offset": 44}, "line": {"number": 853}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qPX7c9qFPVztIYzdyCPgWQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "JvmGcMonitorService.java"}, "function": {"name": "void org.elasticsearch.monitor.jvm.JvmGcMonitorService$JvmMonitor.monitorGc()", "offset": 2}, "line": {"number": 402}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Nq-HYNBtSIE_8ynEeqGhFgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation$2$$Lambda$9873+0x00000008028c5518.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GaTWB84HBLHkoSJAOUFJ2gAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "int sun.nio.fs.UnixPath.compareTo(java.nio.file.Path)", "offset": 15}, "line": {"number": 759}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8SZ50ezQPJ6hhIGbzC7WeQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeNamedWriteable(org.elasticsearch.common.io.stream.NamedWriteable)", "offset": 1}, "line": {"number": 857}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "q6xr0eveECf8Lijmxw8LoAAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler$PublicationContext$1.get()", "offset": 8}, "line": {"number": 388}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6ArPI4q1nbl9aI5EW-OtkQAAAAAAAADx"}} +{"Stackframe": {"file": {"name": "Provider.java"}, "function": {"name": "java.lang.Object java.security.Provider$Service.newInstance(java.lang.Object)", "offset": 37}, "line": {"number": 1893}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b"}} +{"Stackframe": {"function": {"name": "__wake_up_common_lock"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cj1i9bDkXvg3vH52VRJiMAAAAAAAAABO"}} +{"Stackframe": {"file": {"name": "MapperUtils.java"}, "function": {"name": "void org.elasticsearch.index.mapper.MapperUtils.collect(org.elasticsearch.index.mapper.Mapper, java.util.Collection, java.util.Collection)", "offset": 8}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BKv4jotFxZeXs8KllM_KxQAAAAAAAAD_"}} +{"Stackframe": {"file": {"name": "AggregationPhase.java"}, "function": {"name": "void org.elasticsearch.search.aggregations.AggregationPhase.execute(org.elasticsearch.search.internal.SearchContext)", "offset": 49}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_ktOOcW9JUFV28eqG98lGgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.xpack.core.security.authc.RealmDomain$$Lambda$7788+0x0000000802545c08.read(org.elasticsearch.common.io.stream.StreamInput)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Er2yE5HxkoOQjHTSQIF_kwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentParser$Token org.elasticsearch.common.xcontent.json.JsonXContentParser.nextToken()"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uezlLZVYMF9cbBEbxdsDcwAAAAAAAABI"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient.execute(com.amazonaws.Request, com.amazonaws.http.HttpResponseHandler, com.amazonaws.http.HttpResponseHandler, com.amazonaws.http.ExecutionContext, com.amazonaws.RequestConfig)", "offset": 10}, "line": {"number": 561}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEuxw"}} +{"Stackframe": {"function": {"name": "hrtimer_try_to_cancel"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3v-z5nFE6uqyuNzzhpgGUwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "SecurityContext.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authc.Authentication org.elasticsearch.xpack.core.security.SecurityContext.getAuthentication()"}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SYSSbioufiMK4TqEn24uLgAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedExceptionAction, java.security.AccessControlContext, java.lang.Class)", "offset": 5}, "line": {"number": 807}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "FileDispatcherImpl.java"}, "function": {"name": "int sun.nio.ch.FileDispatcherImpl.write0(java.io.FileDescriptor, long, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tgTcpaw1PHSeu1PntXA3fQAAAAAAAABX"}} +{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.onResponse(java.lang.Object)", "offset": 6}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QL8xAzFpyYQtSy_chtA5fgAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "SortedSetDVOrdinalsIndexFieldData.java"}, "function": {"name": "org.elasticsearch.index.fielddata.IndexOrdinalsFieldData org.elasticsearch.index.fielddata.plain.SortedSetDVOrdinalsIndexFieldData.localGlobalDirect(org.apache.lucene.index.DirectoryReader)"}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QMO0tOc9LHhoVe-iumAfmwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Searcher org.elasticsearch.index.engine.Engine$SearcherSupplier.acquireSearcher(java.lang.String)"}, "line": {"number": 1253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YMf1vN4Xj82X8azesbKqWQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)"}, "line": {"number": 626}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yaDDp4ajuHZJEd39avMrXQAAAAAAAAEm"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$1.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 22}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "S6rhF6QuVR-vQCbeLGEjfwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "WatcherClientProxy.java"}, "function": {"name": "org.elasticsearch.action.delete.DeleteResponse org.elasticsearch.xpack.watcher.support.init.proxy.WatcherClientProxy.delete(org.elasticsearch.action.delete.DeleteRequest)"}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F44Y-ELdVzbmYJDBLoV7lgAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.performOnPrimary(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.update.UpdateHelper, java.util.function.LongSupplier, org.elasticsearch.action.bulk.MappingUpdatePerformer, java.util.function.Consumer, org.elasticsearch.action.ActionListener, org.elasticsearch.threadpool.ThreadPool, java.lang.String)", "offset": 54}, "line": {"number": 203}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fr4XAR94bkvR_VkpMkjQxwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Socket.java"}, "function": {"name": "void java.net.Socket$SocketOutputStream.write(byte[], int, int)"}, "line": {"number": 1120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.unlink0(long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$3.onResponse(java.lang.Object)"}, "line": {"number": 307}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "113KL9tnNlUP_dgFCwl99AAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ManagementFactory.java"}, "function": {"name": "java.util.List java.lang.management.ManagementFactory.getMemoryPoolMXBeans()"}, "line": {"number": 403}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1rHoPMq-mpf_DwJrvHqYAwAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress$Entry.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 11}, "line": {"number": 598}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$1836.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nfqsljljgnxi4qqym6m8IQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkPermission(java.security.Permission)"}, "line": {"number": 411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.applyInternal(java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 21}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SoESWitTbygqCArOsyQ6ZAAAAAAAAABe"}} +{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "long org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsReader.ramBytesUsed()", "offset": 4}, "line": {"number": 335}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D1dWKQQj2nxvN71HvJgtbgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.ch.NioSocketImpl.beginWrite()", "offset": 2}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_qdX8twer-rDPhvmBKnqlAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "boolean org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$WildcardExpressionResolver$$Lambda$8471+0x0000000802793dd8.test(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAACV"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader.visitDocument(int, org.apache.lucene.index.StoredFieldVisitor)", "offset": 12}, "line": {"number": 595}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "je1jG-SMcDP5bWyoezk-tgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "PendingSoftDeletes.java"}, "function": {"name": "int org.apache.lucene.index.PendingSoftDeletes.numDeletesToMerge(org.apache.lucene.index.MergePolicy, org.apache.lucene.util.IOSupplier)", "offset": 1}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1SF4gtpA4iYoQsQrqdIeXAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ZipCoder.java"}, "function": {"name": "int java.util.zip.ZipCoder.hash(java.lang.String)"}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-YmpZ5jMdGGZ61q6AMB5BgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "long org.elasticsearch.index.translog.Translog.getLastSyncedGlobalCheckpoint()"}, "line": {"number": 642}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DaLOu1u8r2OzUEp60ph7fAAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.innerParseObject(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, org.elasticsearch.xcontent.XContentParser, java.lang.String, org.elasticsearch.xcontent.XContentParser$Token)", "offset": 13}, "line": {"number": 504}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEuXc"}} +{"Stackframe": {"function": {"name": "hrtimer_active"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb_l"}} +{"Stackframe": {"function": {"name": "__x64_sys_newlstat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NAg59bv61LPPiYi05gl2kwAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "QuerySearchResult.java"}, "function": {"name": "void org.elasticsearch.search.query.QuerySearchResult.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 5}, "line": {"number": 370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlH3T"}} +{"Stackframe": {"function": {"name": "ip_rcv_finish"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-xeI6MIHiM8nZhd6ChS_mAAAAAAAAAEJ"}} +{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.fs.UnixChannelFactory.open(int, sun.nio.fs.UnixPath, java.lang.String, sun.nio.fs.UnixChannelFactory$Flags, int)", "offset": 58}, "line": {"number": 247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R71vwc9Gh9GvdvgaspSkvwAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "Permissions.java"}, "function": {"name": "boolean java.security.Permissions.implies(java.security.Permission)", "offset": 6}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ipL4zf-M1T0VsH07_OL0tQAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "AbstractWeakConcurrentMap.java"}, "function": {"name": "java.lang.Object com.blogspot.mydailyjava.weaklockfree.AbstractWeakConcurrentMap.get(java.lang.Object)", "offset": 2}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LrT96WuiUXgKg4BgtAP98wAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$1(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 7}, "line": {"number": 147}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XEL8uypdAacLWMwpaKSA9AAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "SettingsCompanionImpl.scala"}, "function": {"name": "java.lang.Object akka.http.impl.util.SettingsCompanionImpl.apply(com.typesafe.config.Config)"}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3aj9s-NGFcA7Bdb3tQvjIQAAAAAAAACU"}} +{"Stackframe": {"file": {"name": "SearchHit.java"}, "function": {"name": "void org.elasticsearch.search.SearchHit.readFrom(org.elasticsearch.common.io.stream.StreamInput)", "offset": 21}, "line": {"number": 881}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "20w3jg2T4eqERcHiFWPDIAAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "File.java"}, "function": {"name": "void java.io.File.(java.lang.String)", "offset": 106}, "line": {"number": 280}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YcsRqxbGzFlPociNmelgWAAAAAAAAABh"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader$BlockState$1.fillBuffer()", "offset": 5}, "line": {"number": 531}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BCPSKqpuiK-cY00UoGsZhwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "MessageDigest.java"}, "function": {"name": "int java.security.MessageDigest$Delegate.engineDigest(byte[], int, int)"}, "line": {"number": 686}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "afO-4k-CgwdZv49Ap83kBgAAAAAAAAL2"}} +{"Stackframe": {"file": {"name": "Operations.java"}, "function": {"name": "org.apache.lucene.util.automaton.Automaton org.apache.lucene.util.automaton.Operations.determinize(org.apache.lucene.util.automaton.Automaton, int)", "offset": 120}, "line": {"number": 785}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "38c3vPeCplShkhWG6NDtqgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "java.util.regex.Pattern$Node java.util.regex.Pattern$BnM.optimize(java.util.regex.Pattern$Node)"}, "line": {"number": 5394}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrj6"}} +{"Stackframe": {"function": {"name": "htab_map_get_next_key"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BrUFbWJQXA38LKOgrDwJigAAAAAAAABJ"}} +{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 17}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2LzHjSgmLRTwZBUFU5tC3AAAAAAAAAOk"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "boolean org.apache.lucene.index.ReadersAndUpdates.writeFieldUpdates(org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos$FieldNumbers, long, org.apache.lucene.util.InfoStream)", "offset": 127}, "line": {"number": 679}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TPMG217WBYb76UxoaEjdpwAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "Mac.java"}, "function": {"name": "byte[] javax.crypto.Mac.doFinal(byte[])", "offset": 5}, "line": {"number": 655}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8AK2DMaPRPJBJPIbAxg5BQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Unsafe.java"}, "function": {"name": "void sun.misc.Unsafe.setMemory(java.lang.Object, long, long, byte)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VrkGa1SbyRj73L3L9NE1XAAAAAAAAABZ"}} +{"Stackframe": {"file": {"name": "TransportIndicesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.ShardStats org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.lambda$shardOperation$0(org.elasticsearch.tasks.Task, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.action.admin.indices.stats.IndicesStatsRequest)", "offset": 8}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4T44kzE9JU_n4pRF5j5FFwAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "TransportShardRefreshAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction.shardOperationOnPrimary(org.elasticsearch.action.support.replication.BasicReplicationRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BQgPvwiw9NNbOJgDcqi8DAAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.inboundMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage)", "offset": 7}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ugKdJaT7v8ADq65rxjOiXwAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "ShardId.java"}, "function": {"name": "void org.elasticsearch.index.shard.ShardId.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 2}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DjdOEEgRNl2srRXl5Oz1UgAAAAAAAADm"}} +{"Stackframe": {"file": {"name": "MasterFaultDetection.java"}, "function": {"name": "void org.elasticsearch.discovery.zen.MasterFaultDetection$MasterPingRequestHandler.messageReceived(org.elasticsearch.discovery.zen.MasterFaultDetection$MasterPingRequest, org.elasticsearch.transport.TransportChannel)", "offset": 66}, "line": {"number": 392}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "q6Nv6zedp9zMaC3bjBa3OwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "IntPipeline.java"}, "function": {"name": "int java.util.stream.IntPipeline.sum()"}, "line": {"number": 473}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0EOWuO-1I_jw1WEaYJ3N4QAAAAAAAAB4"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter.write(org.apache.lucene.index.Fields)", "offset": 22}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MVr_CbGNEnYyymXVtC8noAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction$1.handleResponse(org.elasticsearch.action.support.nodes.BaseNodeResponse)"}, "line": {"number": 205}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HVH5DriP2pa77x1ZoXUG7AAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "OrdinalMap.java"}, "function": {"name": "org.apache.lucene.index.OrdinalMap org.apache.lucene.index.OrdinalMap.build(org.apache.lucene.index.IndexReader$CacheKey, org.apache.lucene.index.TermsEnum[], long[], float)", "offset": 6}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BrUFbWJQXA38LKOgrDwJigAAAAAAAADv"}} +{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 45}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o8rqfKK5bLlXTh-ItgR3_AAAAAAAAABI"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.unknownValue(java.lang.Object)", "offset": 11}, "line": {"number": 813}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dH_-XVY1o9Dh1CsvXltQLQAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$authenticateAsync$2(org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 3}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W87P_sgUDxSTpL44g-B3sgAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(io.netty.channel.ChannelHandlerContext, io.netty.handler.codec.CodecOutputList, int)", "offset": 1}, "line": {"number": 346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YWXIxk3SU50xKaZayCzMKAAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.executeWithTimer()", "offset": 6}, "line": {"number": 764}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k8128AKbUGB0smWYBgRB6AAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "java.lang.Object com.carrotsearch.hppc.ObjectObjectHashMap$EntryIterator.fetch()"}, "line": {"number": 641}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fcKzuljmcxtS7oTdbjcx5AAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap$ValueIterator.next()"}, "line": {"number": 1466}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ghn_nSPcLUHN_pt9H7ZErQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "UTF8JsonGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.UTF8JsonGenerator.writeStartObject()"}, "line": {"number": 313}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p8jexvuOHfTNZvsBxu9edAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Handler.java"}, "function": {"name": "java.net.URLConnection sun.net.www.protocol.jar.Handler.openConnection(java.net.URL)"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jHMFmtkVIMASmw7nhGBacQAAAAAAAABU"}} +{"Stackframe": {"file": {"name": "AttributeSource.java"}, "function": {"name": "void org.apache.lucene.util.AttributeSource.addAttributeImpl(org.apache.lucene.util.AttributeImpl)", "offset": 10}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kTuJwdWOQ890OtJgEybsewAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "AlgorithmDecomposer.java"}, "function": {"name": "java.util.Set sun.security.util.AlgorithmDecomposer.decomposeImpl(java.lang.String)", "offset": 16}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jpeW1PajV35WIXdPugFMIAAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "AggregatorFactories.java"}, "function": {"name": "org.elasticsearch.search.aggregations.Aggregator[] org.elasticsearch.search.aggregations.AggregatorFactories.createTopLevelAggregators()", "offset": 4}, "line": {"number": 226}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ceSN5BlMG0ARBYcsvYKxUgAAAAAAAADZ"}} +{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.index.SegmentMerger.merge()", "offset": 35}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EeBm2vPFcnytFzkGIYZfFAAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "CodecUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.CodecUtil.writeBEInt(org.apache.lucene.store.DataOutput, int)", "offset": 3}, "line": {"number": 656}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BxI5O-imEgV3N9x_K1cpQwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "ActorGraphInterpreter.scala"}, "function": {"name": "void akka.stream.impl.fusing.ActorGraphInterpreter.aroundReceive(scala.PartialFunction, java.lang.Object)"}, "line": {"number": 716}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ztzf3j-L67aAIY5BvXSolgAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "DirectMethodHandleAccessor.java"}, "function": {"name": "java.lang.Object jdk.internal.reflect.DirectMethodHandleAccessor.invoke(java.lang.Object, java.lang.Object[])", "offset": 5}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHarO"}} +{"Stackframe": {"function": {"name": "__do_sys_bpf"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XQCUoVCvFjlXEr6e8K8moQAAAAAAAABX"}} +{"Stackframe": {"file": {"name": "SSLEngineInputRecord.java"}, "function": {"name": "sun.security.ssl.Plaintext[] sun.security.ssl.SSLEngineInputRecord.decode(java.nio.ByteBuffer)", "offset": 25}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cb9IQeq3-QS_hpwjlphK0AAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "TemplateUtils.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.core.template.TemplateUtils.load(java.lang.String)"}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7ZmFxDQcUJ2DdUoVkYC-ywAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "RetentionLeaseBackgroundSyncAction.java"}, "function": {"name": "void org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction.shardOperationOnPrimary(org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction$Request, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "doGPGU2LcZtf1qDix-DnAAAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5619+0x0000000801b2a230.getAsync(org.elasticsearch.action.ActionListener)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "ProtectionDomain.java"}, "function": {"name": "boolean java.security.ProtectionDomain.impliesWithAltFilePerm(java.security.Permission)", "offset": 2}, "line": {"number": 353}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BOaqyHr_2GYQ5H_RGUiqwgAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "URI.java"}, "function": {"name": "int java.net.URI$Parser.scan(int, int, long, long)", "offset": 5}, "line": {"number": 3114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-kwQ5tzIMTia7ESgS4_wzAAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "TcpTransportChannel.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransportChannel.sendResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nr3XAEOEGxHwIAnKpVTJ_QAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.field(java.lang.String, java.lang.Object)"}, "line": {"number": 789}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YvScvdM6KJZLJ6guypJyfAAAAAAAAAGs"}} +{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "int sun.security.ssl.SSLSocketImpl$AppInputStream.read(byte[], int, int)", "offset": 71}, "line": {"number": 1048}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dr7nJhzDAJ3KA627xZhFegAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "org.elasticsearch.search.SearchHit org.elasticsearch.search.fetch.FetchPhase.createSearchHit(org.elasticsearch.search.internal.SearchContext, org.elasticsearch.index.fieldvisitor.FieldsVisitor, int, int, org.apache.lucene.index.LeafReaderContext)", "offset": 3}, "line": {"number": 191}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4--FGbLdMz46YjN0-7Uv7QAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "Errors.java"}, "function": {"name": "java.lang.Object org.glassfish.jersey.internal.Errors.process(java.util.concurrent.Callable, boolean)", "offset": 9}, "line": {"number": 292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2oqM6SzR82V7WWu8G-cC8QAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "StringCoding.java"}, "function": {"name": "java.lang.StringCoding$Result java.lang.StringCoding.decode(java.nio.charset.Charset, byte[], int, int)", "offset": 7}, "line": {"number": 263}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H993ZydDem1gABEwmkxlggAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "LifecyclePolicyUtils.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecyclePolicy org.elasticsearch.xpack.core.ilm.LifecyclePolicyUtils.loadPolicy(java.lang.String, java.lang.String, org.elasticsearch.xcontent.NamedXContentRegistry)", "offset": 1}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2kNP-fbSjTC_hm1jEY6s0QAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.addNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)"}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "54KOjROM8trD42aKwWM2jQAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "int org.elasticsearch.index.engine.InternalEngine.estimateNumberOfHistoryOperations(java.lang.String, org.elasticsearch.index.engine.Engine$HistorySource, long)", "offset": 3}, "line": {"number": 609}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WUsgmXBmEYsZWCQlmPqU4wAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "LockSupport.java"}, "function": {"name": "void java.util.concurrent.locks.LockSupport.parkNanos(long)", "offset": 1}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "svY6S8i7kOKyMF4wzyUc1AAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "ResourceLeakDetector.java"}, "function": {"name": "void io.netty.util.ResourceLeakDetector$DefaultResourceLeak.(java.lang.Object, java.lang.ref.ReferenceQueue, java.util.Set)", "offset": 10}, "line": {"number": 379}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dZfda0UcYRM2ke2rRcR6rQAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction.onOperation(int, org.elasticsearch.action.support.nodes.BaseNodeResponse)", "offset": 2}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AlYTZm3Udn5te27JKKjO8wAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "java.lang.Throwable java.lang.Throwable.fillInStackTrace()", "offset": 2}, "line": {"number": 797}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0v3fw3R6M9K5pBw9frSxowAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "MMapDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.apache.lucene.store.MMapDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 3}, "line": {"number": 238}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7omsvqUCsJhnLDj4ZvJ9QgAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "BufferedReader.java"}, "function": {"name": "java.lang.String java.io.BufferedReader.readLine()"}, "line": {"number": 396}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w4mT2NPQOW-Mg0N_xZsuzAAAAAAAAADg"}} +{"Stackframe": {"file": {"name": "BulkShardRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.BulkShardRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 34}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cnUFYX3c9XPINCca7EXauwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "CachedKeyWeakConcurrentMap.java"}, "function": {"name": "java.lang.Object co.elastic.apm.agent.collections.CachedKeyWeakConcurrentMap.getLookupKey(java.lang.Object)"}, "line": {"number": 27}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Pnh4OBolKLQEKxwc_nQpPgAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.lambda$innerRun$1(org.elasticsearch.action.search.SearchPhaseController$ReducedQueryPhase, boolean)"}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pZ1DxhgiXyxWPuNbBtMrIAAAAAAAAACL"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.tryAllHandlers(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 19}, "line": {"number": 336}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kUJgVxIXgDBTomuPsxvCVwAAAAAAAABJ"}} +{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "java.lang.Object java.util.AbstractMap.get(java.lang.Object)", "offset": 10}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SLkdwnAJDm_ftJbeTN6kiwAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "Exporters.java"}, "function": {"name": "void org.elasticsearch.xpack.monitoring.exporter.Exporters.export(java.util.Collection, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yz69EEqQZdFKMk1kXzfCQQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.action.support.nodes.BaseNodeRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 262}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NX2GurXP9eWlHwN0fLlalwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction$MetadataStatsCache$$Lambda$7085+0x0000000801e55448.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dR-5oewY63tH4fYLV5hc3AAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.util.stream.Sink java.util.stream.AbstractPipeline.wrapAndCopyInto(java.util.stream.Sink, java.util.Spliterator)"}, "line": {"number": 474}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0D5QIcqYfSjF8Y2Aggw1CgAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(io.netty.channel.ChannelHandlerContext, java.util.List, int)", "offset": 1}, "line": {"number": 297}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e8CS3YBIrSZfELEzs29ejAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "boolean org.elasticsearch.indices.SystemIndexManager$$Lambda$7876+0x0000000801f2a090.test(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p8XgQrU2BcPpUS47TUHGtwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ObjectMapper.java"}, "function": {"name": "org.elasticsearch.index.mapper.Mapper org.elasticsearch.index.mapper.ObjectMapper.getMapper(java.lang.String)"}, "line": {"number": 303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QzrbsOA4ABi_SVkKBvATrgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.lambda$write$0(java.lang.Object, java.lang.String, boolean, java.util.Map, java.io.OutputStream)"}, "line": {"number": 346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyP3"}} +{"Stackframe": {"function": {"name": "audit_filter_rules.constprop.21"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zC1z37qWlgbIB1dFpt4zjAAAAAAAAAAv"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(java.lang.Object)", "offset": 10}, "line": {"number": 442}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BkvohLqsP1J5ZsbvSe8hxgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$10774+0x000000080298f988.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QNZzHGnqskrqlEo3XdkqqwAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "IndicesQueryCache.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.elasticsearch.indices.IndicesQueryCache$CachingWeightWrapper.bulkScorer(org.apache.lucene.index.LeafReaderContext)", "offset": 1}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "79Vr1UCiWCHkL7FDARORzgAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter$$Lambda$7952+0x0000000802625320.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "void java.security.AccessController.checkPermission(java.security.Permission)", "offset": 4}, "line": {"number": 1042}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rRD3IAWNeA4GPRh7roh_BAAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "int sun.nio.ch.FileChannelImpl.write(java.nio.ByteBuffer)", "offset": 16}, "line": {"number": 306}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAB11z"}} +{"Stackframe": {"function": {"name": "xfs_vn_mknod"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DaA4Pzfwu9odhU8DzKcUaQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction$$Lambda$6557+0x0000000801d27d40.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RTxK_RC9xGWNzv2PtonXEwAAAAAAAAEE"}} +{"Stackframe": {"file": {"name": "HttpClient.scala"}, "function": {"name": "scala.concurrent.Future no.found.http.HighLevelHttpClient.$anonfun$streamingHttpRequest$1(no.found.http.HighLevelHttpClient, akka.http.scaladsl.model.HttpRequest, scala.Option, akka.util.Timeout, no.found.http.HttpRequestOptions, akka.stream.Materializer, co.elastic.cloud.tracing.TraceContext)", "offset": 14}, "line": {"number": 204}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NG3FN99VSnZbKGXoOWiZmAAAAAAAAADl"}} +{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.createOrUpdateShards(org.elasticsearch.cluster.ClusterState)", "offset": 18}, "line": {"number": 556}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VYAhhPSb0PZhnETden6FRAAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.action.support.nodes.BaseNodeRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 4}, "line": {"number": 282}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u0xNsLYCmVoeocVtV4LUOAAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "ReplicationGroup.java"}, "function": {"name": "void org.elasticsearch.index.shard.ReplicationGroup.(org.elasticsearch.cluster.routing.IndexShardRoutingTable, java.util.Set, java.util.Set, long)", "offset": 6}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZcARz7-qKEoplrucM2GwSAAAAAAAAATZ"}} +{"Stackframe": {"file": {"name": "MetaDataCreateIndexService.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterState org.elasticsearch.cluster.metadata.MetaDataCreateIndexService$1.execute(org.elasticsearch.cluster.ClusterState)", "offset": 143}, "line": {"number": 378}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WNCauDs9dY-5HAHHBWp9KwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "SourceLookup.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.search.lookup.SourceLookup.sourceAsMapAndType(org.elasticsearch.common.bytes.BytesReference)"}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cP7knzpeaRcHnYFC5O8YoQAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "StoredFieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.index.StoredFieldsConsumer.initStoredFieldsWriter()", "offset": 2}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "449MNg-Y_ftqVzjxrtZ_gwAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.checkpoint()", "offset": 1}, "line": {"number": 2716}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ha_aXoRIEPeeYmi0i6Dl_gAAAAAAAAC2"}} +{"Stackframe": {"file": {"name": "FreqProxTermsWriter.java"}, "function": {"name": "void org.apache.lucene.index.FreqProxTermsWriter.flush(java.util.Map, org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)", "offset": 26}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG"}} +{"Stackframe": {"function": {"name": "do_syscall_64"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3R6peF1IdwfQqmb119dyMQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FilterDirectory.deleteFile(java.lang.String)"}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LL2AmHorGMGLHFvQ3KWNRAAAAAAAAABy"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.addSortedSetField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 15}, "line": {"number": 891}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TlFug72sGY9jn74bRoRbagAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$DirectResponseChannel.processResponse(org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 1144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vf7QtfK9pdGvwA-FZkTf9QAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 702}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iwbRYlInQnO_voJhCywEagAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.close()"}, "line": {"number": 278}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p9UR3btTZUo1MztbkeIkOQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ByteBufferIndexInput.java"}, "function": {"name": "void org.apache.lucene.store.ByteBufferIndexInput.readBytes(byte[], int, int)"}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Qzn1A6CqCIZUpcbEC_VoFgAAAAAAAACS"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.lambda$getAuthenticatorConsumer$5(boolean, org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.security.authc.Authenticator, org.elasticsearch.action.ActionListener)", "offset": 36}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wPUvH7ZdMm81__UGWskM5wAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "IllegalStateException.java"}, "function": {"name": "void java.lang.IllegalStateException.(java.lang.String)"}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T1r4-vp84Xtr8X-Kc_0sagAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Set org.elasticsearch.common.io.stream.StreamInput.readSet(org.elasticsearch.common.io.stream.Writeable$Reader)"}, "line": {"number": 1139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rlJe-BzIZP-Nx264rMiErQAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$5632+0x0000000801b2bcb0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PSWlcMAn8oAcpAmj2Wv1uwAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter$$Lambda$7973+0x000000080262b000.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdLN"}} +{"Stackframe": {"function": {"name": "common_file_perm"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Rww-hja5KWn3UBihMGepiQAAAAAAAAEe"}} +{"Stackframe": {"file": {"name": "Packed64.java"}, "function": {"name": "int org.apache.lucene.util.packed.Packed64.set(int, long[], int, int)", "offset": 25}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FH4SH_uTiEszu4Eono2UAQAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.maybeAuthorizeRunAs(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 36}, "line": {"number": 371}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JMRq6xCt8zXeV2v7oyIghQAAAAAAAABh"}} +{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "void org.apache.lucene.index.SegmentReader.(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.store.IOContext)", "offset": 9}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-"}} +{"Stackframe": {"file": {"name": "Cache.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.cache.Cache.computeIfAbsent(java.lang.Object, org.elasticsearch.common.cache.CacheLoader)", "offset": 44}, "line": {"number": 412}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xlIo9s6lv-3rTTrZtnrDmQAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "IndexTemplateMetadata.java"}, "function": {"name": "void org.elasticsearch.cluster.metadata.IndexTemplateMetadata$Builder.toXContentWithTypes(org.elasticsearch.cluster.metadata.IndexTemplateMetadata, org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 1}, "line": {"number": 355}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dJNFFjunvzyH-JOoGfM9DQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.onResponse(org.elasticsearch.action.search.SearchResponse)"}, "line": {"number": 292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OdhNFK09ypq7bYC30OEbwQAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "void org.apache.lucene.search.ReferenceManager.doMaybeRefresh()", "offset": 6}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "ForkJoinTask.java"}, "function": {"name": "int java.util.concurrent.ForkJoinTask.doExec()", "offset": 2}, "line": {"number": 290}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zmPJOJAYU3S2ktp1SujETgAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "BigArrays.java"}, "function": {"name": "org.elasticsearch.common.util.ByteArray org.elasticsearch.common.util.BigArrays.resize(org.elasticsearch.common.util.ByteArray, long)", "offset": 1}, "line": {"number": 564}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i8uuylUIH4F1Fcj0a85AGgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "com.typesafe.config.impl.ConfigNumber com.typesafe.config.impl.SimpleConfig.getConfigNumber(java.lang.String)"}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rdit7Kpe5k_2Pr8SUDMjsQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "void org.elasticsearch.tracing.apm.APMTracer.setSpanAttributes(org.elasticsearch.common.util.concurrent.ThreadContext, java.util.Map, io.opentelemetry.api.trace.SpanBuilder)"}, "line": {"number": 324}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pzTcRcencDxd0mEO6HA0bAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.handleCachedAuthentication(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.action.ActionListener)"}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4yrZLxokljeohMojKnS6HgAAAAAAAACH"}} +{"Stackframe": {"file": {"name": "NodeIndicesStats.java"}, "function": {"name": "void org.elasticsearch.indices.NodeIndicesStats.(org.elasticsearch.action.admin.indices.stats.CommonStats, java.util.Map, java.util.Map)", "offset": 9}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hRWuhP2XlIOrGluAvR5cNwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ReservedRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.esnative.ReservedRealm.doAuthenticate(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xw8wDk6TpJf9Gwydbb4rogAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "DeprecationLogger.java"}, "function": {"name": "void org.elasticsearch.common.logging.DeprecationLogger.deprecatedAndMaybeLog(java.lang.String, java.lang.String, java.lang.Object[])"}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HQaseND-R9Eij_93pefSLwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor$Worker.run()"}, "line": {"number": 630}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SqPIz2A75z1oeJL2DG66JwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequest(org.elasticsearch.cluster.node.DiscoveryNode, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 1}, "line": {"number": 530}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2u2jPMdq36h9BOg_kllzLgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction$AsyncSingleAction$1.onResponse(java.lang.Object)"}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iQ3-U2pFJokP-jlw4Yr9FQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.put(java.lang.Object, java.lang.Object)"}, "line": {"number": 612}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9ZcPzi6i1uzjxExCGCn20AAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "InferenceProcessor.java"}, "function": {"name": "void org.elasticsearch.xpack.ml.inference.ingest.InferenceProcessor$Factory.accept(org.elasticsearch.cluster.ClusterState)", "offset": 1}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4gj0C7RMNmlQUbyfvqTY6AAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "InboundDecoder.java"}, "function": {"name": "org.elasticsearch.transport.Header org.elasticsearch.transport.InboundDecoder.readHeader(org.elasticsearch.Version, int, org.elasticsearch.common.bytes.BytesReference)", "offset": 13}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pTQwlw111ksRO8rVWFQy5wAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrapAndFlush(io.netty.channel.ChannelHandlerContext)", "offset": 11}, "line": {"number": 800}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MvbPSvnNdxwES7PLV-EUDwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UTF8JsonGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.UTF8JsonGenerator.writeFieldName(java.lang.String)"}, "line": {"number": 214}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OrBM09fWGT_rRuFZPkf4tgAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5669+0x0000000801b38d90.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jIXiJ_3QIrjPxWXJm0vTUAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient$ClusterAdmin.state(org.elasticsearch.action.admin.cluster.state.ClusterStateRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 766}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "515JXhvu-Tp0j9MvQAZtWgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "java.lang.Object[] java.util.ArrayList.grow()"}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dZ7JiawsSbyUWtx7EnYO0wAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.io.OutputStream java.nio.file.Files.newOutputStream(java.nio.file.Path, java.nio.file.OpenOption[])"}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlN5a"}} +{"Stackframe": {"function": {"name": "__ip_queue_xmit"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Slb8MNVKIFfE9HJqtN3BhwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Inflater.java"}, "function": {"name": "long java.util.zip.Inflater.inflateBytesBytes(long, byte[], int, int, byte[], int, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbpN"}} +{"Stackframe": {"function": {"name": "tcp_sendmsg_locked"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qy-7WZgPcXaQOVH4VCBn9AAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "LifecyclePolicyMetadata.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xpack.core.ilm.LifecyclePolicyMetadata.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 2}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Swuwow_beuwloT-61i7PRwAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.acquirePrimaryOperationPermit(org.elasticsearch.action.ActionListener, java.lang.String, java.lang.Object, boolean)", "offset": 3}, "line": {"number": 3006}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MRWXwWKl_fPnxgwH09TqSwAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "void org.elasticsearch.search.internal.ContextIndexSearcher.searchLeaf(org.apache.lucene.index.LeafReaderContext, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 12}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ebgd4CLY_KjuqzrbLSi7zwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.util.Iterator java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet.iterator()"}, "line": {"number": 1654}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1SZ-vHLuOgv6pXYOBmUrygAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "LeaderChecker.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.LeaderChecker$LeaderCheckRequest.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 402}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NLTICG6WanN9VF8OrxDPvAAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$TreeNode java.util.HashMap$TreeNode.getTreeNode(int, java.lang.Object)"}, "line": {"number": 1881}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHZdw"}} +{"Stackframe": {"function": {"name": "__do_sys_bpf"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yzF6hkXAWj2zsycLYYGV0AAAAAAAAAD7"}} +{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode$GCMEncrypt.doFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 28}, "line": {"number": 1328}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0LDAxE6DYP0OTdLijzG8qgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext.addResponseHeader(java.lang.String, java.lang.String, java.util.function.Function)"}, "line": {"number": 280}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nisgr1RUcTVhb-d_TidN8AAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "ClusterStateNodeUpdater.java"}, "function": {"name": "void org.elasticsearch.plugin.found.zookeeper.updaters.ClusterStateNodeUpdater.clusterChanged(org.elasticsearch.cluster.ClusterState)", "offset": 5}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TswSZkOSFrZzpdMc4ENOMQAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator$$Lambda$7961+0x0000000802626618.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aHQiNWkf6kHxebx5TYaGhgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction.masterOperation(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.master.MasterNodeRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)"}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dTPbC_veUyGmSAjusjbQDAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "CodecUtil.java"}, "function": {"name": "int org.apache.lucene.codecs.CodecUtil.readBEInt(org.apache.lucene.store.DataInput)"}, "line": {"number": 667}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kHofji4pS4HiCyyAcPZ84AAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "LambdaForm$MH"}, "function": {"name": "java.lang.Object java.lang.invoke.LambdaForm$MH+0x00000008029bc400.invoke(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN21"}} +{"Stackframe": {"function": {"name": "__netif_receive_skb_one_core"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iynY3Vpl2yeKIqRo2Ld9YAAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.write(byte[], int, int)", "offset": 5}, "line": {"number": 123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kMuo0JXogl3x5AQTaHy4yAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard$$Lambda$7771+0x00000008025d9a20.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7Elz6xgAevwUpvFunHR27wAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext.lambda$newStoredContext$4(boolean, org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct, org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct)", "offset": 1}, "line": {"number": 214}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAABbI3"}} +{"Stackframe": {"function": {"name": "xfs_end_io"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PdntB36p_DeKmNIFQmfwvQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "org.elasticsearch.index.mapper.Mapper org.elasticsearch.index.mapper.DocumentParser.getMapper(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, java.lang.String[])"}, "line": {"number": 935}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ELq11kdAb5wONWvy2t3XBwAAAAAAAACu"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "int io.netty.handler.ssl.SslHandler.unwrap(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, int)", "offset": 39}, "line": {"number": 1373}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Pbg3bxycAbj268bN7ebHNQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun()", "offset": 2}, "line": {"number": 732}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M9DGG7E9GfEUAiHeOdyIiQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService.onPublicationSuccess(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.MasterService$TaskOutputs)", "offset": 1}, "line": {"number": 270}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yZOsTG9FAcYTrf0Vyvqt0QAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "TimSorter.java"}, "function": {"name": "void org.apache.lucene.util.TimSorter.exhaustStack()", "offset": 1}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8AFkU9EDwekeQG-iHB-52AAAAAAAAABg"}} +{"Stackframe": {"file": {"name": "RestClusterGetSettingsAction.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.rest.action.admin.cluster.RestClusterGetSettingsAction.renderResponse(org.elasticsearch.cluster.ClusterState, boolean, org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 12}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "a5zoVUaYg3Rkw0lFMZBibAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ScopedMemoryAccess.java"}, "function": {"name": "boolean jdk.internal.misc.ScopedMemoryAccess.closeScope(jdk.internal.foreign.MemorySessionImpl)"}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zpP80T6FdaTGeY1BUSMu-AAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.metadata.Metadata$MetadataDiff.apply(java.lang.Object)"}, "line": {"number": 943}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3AY8MNUz0wDPTGwFdp088QAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "org.elasticsearch.index.Index org.elasticsearch.cluster.metadata.IndexNameExpressionResolver.concreteWriteIndex(org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.support.IndicesOptions, java.lang.String, boolean, boolean)", "offset": 18}, "line": {"number": 561}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jE-4Ja_8RAzuC-rb8IfgCgAAAAAAAABN"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction$2.doRun()", "offset": 16}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Fyp83xXfFJSe50n0K0hjNAAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run()", "offset": 4}, "line": {"number": 660}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1z71Un1VHSd46-saNDpLAAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannel.write(java.lang.Object)"}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vqEkVtvrBS0dWJTRUUQ1dwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Spliterator.java"}, "function": {"name": "void java.util.Spliterator$OfInt.forEachRemaining(java.util.function.Consumer)"}, "line": {"number": 698}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RPFiojmndeu_4nmb3OGehAAAAAAAAABq"}} +{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator.close()", "offset": 22}, "line": {"number": 1846}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Dn_by4fn1KU32-U6kNQlBQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "JdkZlibEncoder.java"}, "function": {"name": "void io.netty.handler.codec.compression.JdkZlibEncoder.encode(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.buffer.ByteBuf)"}, "line": {"number": 33}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x8IZY0dEvsXx9GTB6nqKhQAAAAAAAABd"}} +{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.doNext(int)", "offset": 18}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C8mYvLHQlltOsj0Fh-JO2gAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "Nodes.java"}, "function": {"name": "java.util.stream.Node$Builder java.util.stream.Nodes.builder(long, java.util.function.IntFunction)", "offset": 1}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qV6Z4BTScShgShhYYQCpIwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Automatons.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.support.Automatons$1.test(java.lang.Object)"}, "line": {"number": 315}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "b5fzxGCEoC6tvmMetgycEQAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "void java.util.regex.Pattern.(java.lang.String, int)", "offset": 405}, "line": {"number": 1351}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bOb86QTSjl0Tbgl6WGMPVwAAAAAAAADN"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken()", "offset": 51}, "line": {"number": 758}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MnYM9B90Ha_6l2oFXip8PgAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "int java.lang.String.hashCode()", "offset": 3}, "line": {"number": 2339}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MkNMV6YsN8vqkVrdv-R--gAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$$Lambda$554+0x0000000800e0da10.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4fOsfY8_kA5tjsgDGGtxCgAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "AbstractObjectParser.java"}, "function": {"name": "java.util.List org.elasticsearch.common.xcontent.AbstractObjectParser.lambda$declareObjectArrayOrNull$16(org.elasticsearch.common.xcontent.ContextParser, org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)"}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALMl1"}} +{"Stackframe": {"function": {"name": "check_stack_object"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADI"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorize(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 45}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TYW1TxsFYROrTysD5UpvkQAAAAAAAABF"}} +{"Stackframe": {"file": {"name": "Authentication.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authc.Authentication.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 17}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wu0A4-y-hJFjTGYZh91yogAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "Regex.java"}, "function": {"name": "boolean org.elasticsearch.common.regex.Regex.simpleMatch(java.lang.String[], java.lang.String)", "offset": 2}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bjQybHdPZPsvcVS9w00EngAAAAAAAACH"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateListener(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder, java.util.Collection)", "offset": 11}, "line": {"number": 565}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HAV7Zh5H5JQPHONsGvZ0PAAAAAAAAABX"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.checkForBearerToken()", "offset": 12}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Qc2K8rXdRUaeeNNqv5MKzAAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "Lucene84PostingsReader.java"}, "function": {"name": "org.apache.lucene.codecs.lucene84.Lucene84PostingsReader$EverythingEnum org.apache.lucene.codecs.lucene84.Lucene84PostingsReader$EverythingEnum.reset(org.apache.lucene.codecs.lucene84.Lucene84PostingsFormat$IntBlockTermState, int)", "offset": 10}, "line": {"number": 671}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XwzvwXzhEy7CpnUA9MlgtQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "java.lang.Object java.util.ArrayList$Itr.next()"}, "line": {"number": 967}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vHxswwRQXic3ko_486ipYwAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "CollectionUtil.java"}, "function": {"name": "void org.apache.lucene.util.CollectionUtil.timSort(java.util.List, java.util.Comparator)", "offset": 2}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hpdrA0BwX9k4wpq28cpa-QAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "PeerFinder.java"}, "function": {"name": "void org.elasticsearch.discovery.PeerFinder$1.doRun()", "offset": 1}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4BHyios_sf5mi1p4OqQ41gAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.lang.Object java.util.Collections$SynchronizedMap.get(java.lang.Object)"}, "line": {"number": 2672}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASg5x"}} +{"Stackframe": {"function": {"name": "aa_path_perm"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nyUe0ieJOQSaVhtc2Cv9oQAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "NodeService.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.info.NodeInfo org.elasticsearch.node.NodeService.info(boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean)", "offset": 1}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ4C7"}} +{"Stackframe": {"function": {"name": "get_page_from_freelist"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X5jiPdo6Vah6tu3dfOw-zAAAAAAAAABv"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.consumeUser(org.elasticsearch.xpack.core.security.user.User, java.util.Map)", "offset": 14}, "line": {"number": 372}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6"}} +{"Stackframe": {"file": {"name": "FieldAndDocumentLevelSecurityRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.FieldAndDocumentLevelSecurityRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 35}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KxqMoc3LCiU70OJLD23WsQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "SearchTransportService.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchTransportService$6.messageReceived(org.elasticsearch.search.internal.ShardSearchTransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 343}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BFzsvc2FJJqJ7MOfSIYcgwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "SecondaryAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator.lambda$authenticateAndAttachToContext$2(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.support.SecondaryAuthentication)", "offset": 3}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0RgYbC2fQjxygsXZf0s0DwAAAAAAAADS"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 35}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2RFqiy_TIF9Ivmg849R6KQAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.processDocument(int, java.lang.Iterable)", "offset": 16}, "line": {"number": 491}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UZ2NFNzh7BT3C3hRjMF2fAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline$Head.forEach(java.util.function.Consumer)", "offset": 1}, "line": {"number": 580}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "erKDHYSDTnqDmMOW6Hy0GQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ReuseBuffersLZ4BlockOutputStream.java"}, "function": {"name": "void org.elasticsearch.transport.ReuseBuffersLZ4BlockOutputStream.finish()", "offset": 1}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZICRnstTjqeSOkLK1jp-HwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ByteBufferGuard.java"}, "function": {"name": "void org.apache.lucene.store.ByteBufferGuard.getBytes(java.nio.ByteBuffer, byte[], int, int)", "offset": 1}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D"}} +{"Stackframe": {"function": {"name": "__x64_sys_epoll_pwait"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cGRDia95o64czGD3ETERlQAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "void org.elasticsearch.tracing.apm.APMTracer.stopTrace(java.lang.String)", "offset": 3}, "line": {"number": 377}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YNvLePk3bv25BUHN3KzEXQAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 6}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XaZGNqRrKLsTTQDai0tUawAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void java.nio.file.Files$$Lambda$284+0x0000000800d6f150.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1OssVXIbkn5BQi4tGKSa8AAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "void java.io.FilePermission.(java.lang.String, java.lang.String)", "offset": 1}, "line": {"number": 489}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xitMwS4ViC61BCy_8U7u2AAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkPropertyAccess(java.lang.String)"}, "line": {"number": 1155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9UrT2S_M5-Qdj7wy3Ez_sQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Setting.getRaw(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 360}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F1HF75RYzjvrvu68iKDxPAAAAAAAAABY"}} +{"Stackframe": {"file": {"name": "TieredMergePolicy.java"}, "function": {"name": "org.apache.lucene.index.MergePolicy$MergeSpecification org.apache.lucene.index.TieredMergePolicy.findMerges(org.apache.lucene.index.MergeTrigger, org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.IndexWriter)", "offset": 10}, "line": {"number": 292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Kmi3IV_5C6YkqCwr-5OCjQAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ObjectParser.lambda$declareNamedObjects$14(java.util.function.BiFunction, java.util.function.Consumer, org.elasticsearch.common.xcontent.ParseField, java.util.function.BiConsumer, org.elasticsearch.common.xcontent.XContentParser, java.lang.Object, java.lang.Object)", "offset": 5}, "line": {"number": 443}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GRd0IayWSCUz9wn4iSY-5QAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "IntPipeline.java"}, "function": {"name": "int java.util.stream.IntPipeline.reduce(int, java.util.function.IntBinaryOperator)"}, "line": {"number": 515}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7IBmDOSH_dR0MHQWs_TXjQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.flushBuffer()", "offset": 1}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iBROdefyYqo_oyuWWpBVogAAAAAAAABC"}} +{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.xcontent.provider.json.JsonXContentGenerator.close()", "offset": 12}, "line": {"number": 567}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RW7C8N1q94TuMskdRCHbYwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$1.onResponse(java.lang.Object)"}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p7qKIzzn4w0j5_vK-B0EmwAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.dataformat.smile.SmileParser.getText()", "offset": 6}, "line": {"number": 996}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fQScnL62yb1c-L2CPjqt4AAAAAAAAABF"}} +{"Stackframe": {"file": {"name": "SessionInputBufferImpl.java"}, "function": {"name": "int org.apache.http.impl.io.SessionInputBufferImpl.read(byte[], int, int)", "offset": 12}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gOUif1gfr_8m0lfQOck_cQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ShardId.java"}, "function": {"name": "void org.elasticsearch.index.shard.ShardId.writeTo(org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tELl2tv1H-OesCtcxmuUzgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ConfigurationRegistry.java"}, "function": {"name": "org.stagemonitor.configuration.ConfigurationOptionProvider org.stagemonitor.configuration.ConfigurationRegistry.getConfig(java.lang.Class)"}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MbaOnaCMmj3Z2Dka8DRidwAAAAAAAAEn"}} +{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.mergeSortedSetField(org.apache.lucene.index.FieldInfo, org.apache.lucene.index.MergeState)", "offset": 41}, "line": {"number": 850}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuKD"}} +{"Stackframe": {"function": {"name": "__x64_sys_epoll_ctl"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RdiKCN4y7glkFfG9QX6_tAAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "URLClassPath.java"}, "function": {"name": "jdk.internal.loader.Resource jdk.internal.loader.URLClassPath$JarLoader.getResource(java.lang.String, boolean)", "offset": 4}, "line": {"number": 959}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "Mailbox.scala"}, "function": {"name": "void akka.dispatch.Mailbox.run()", "offset": 2}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y38Z6UTpZtsLVrG4bUASjAAAAAAAAAC8"}} +{"Stackframe": {"file": {"name": "JettyHttpContainer.java"}, "function": {"name": "void org.glassfish.jersey.jetty.JettyHttpContainer.handle(java.lang.String, org.eclipse.jetty.server.Request, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)", "offset": 31}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zw9xCOPfBJjbhlvP6HG9ewAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Index org.elasticsearch.index.shard.IndexShard.prepareIndex(org.elasticsearch.index.mapper.MapperService, org.elasticsearch.index.mapper.SourceToParse, long, long, long, org.elasticsearch.index.VersionType, org.elasticsearch.index.engine.Engine$Operation$Origin, long, boolean, long, long, long)", "offset": 8}, "line": {"number": 1021}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uqDOD1ifWRsTEq9upTcTAwAAAAAAAACn"}} +{"Stackframe": {"file": {"name": "RangeQueryBuilder.java"}, "function": {"name": "org.elasticsearch.index.mapper.MappedFieldType$Relation org.elasticsearch.index.query.RangeQueryBuilder.getRelation(org.elasticsearch.index.query.QueryRewriteContext)", "offset": 28}, "line": {"number": 449}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "REjw0fMyi7uCOYeOdQhKUAAAAAAAAAD2"}} +{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "java.lang.Object java.util.concurrent.ConcurrentHashMap.replaceNode(java.lang.Object, java.lang.Object, java.lang.Object)", "offset": 34}, "line": {"number": 1140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-I0qeKDe1hMr58wzZHuN2wAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "HttpRequestExecutor.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.protocol.HttpRequestExecutor.doSendRequest(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext)", "offset": 9}, "line": {"number": 205}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HA3TD5377NJUVWpcrnF53AAAAAAAAADX"}} +{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.doHandleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 27}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "30LKpoivW5ehYDbXlKRqvgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Unsafe.java"}, "function": {"name": "void sun.misc.Unsafe.setMemory(long, long, byte)"}, "line": {"number": 529}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rdBSAs46J2u7qmGAwcl72gAAAAAAAABP"}} +{"Stackframe": {"file": {"name": "BasicLineFormatter.java"}, "function": {"name": "void org.apache.http.message.BasicLineFormatter.doFormatRequestLine(org.apache.http.util.CharArrayBuffer, org.apache.http.RequestLine)", "offset": 12}, "line": {"number": 198}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "v-BWBCzanLU8PuKPwDfFAwAAAAAAAAGM"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "com.amazonaws.Request com.amazonaws.services.s3.AmazonS3Client.createRequest(java.lang.String, java.lang.String, com.amazonaws.AmazonWebServiceRequest, com.amazonaws.http.HttpMethodName, java.net.URI)", "offset": 74}, "line": {"number": 4754}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "void java.nio.file.Files.delete(java.nio.file.Path)"}, "line": {"number": 1152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rSUSoohdnG6MdsfC9pID0QAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Netty4HttpRequestHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpRequestHandler.channelRead0(io.netty.channel.ChannelHandlerContext, java.lang.Object)"}, "line": {"number": 19}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qeHIgzzOczGD0wBwOrHP2QAAAAAAAAFJ"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncPrimaryAction.runWithPrimaryShardReference(org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryShardReference)", "offset": 82}, "line": {"number": 508}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-QN0Lznzz3LjWKMZzZD5rwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$1851.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JpTsQQlmGWQ5UI3dBfHw_QAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "int org.apache.lucene.index.ReadersAndUpdates$2$1.nextDoc()"}, "line": {"number": 390}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hOHMyxPNCIGw4qBG7phR0gAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "void org.apache.lucene.index.SegmentMerger.mergePoints(org.apache.lucene.index.SegmentWriteState)", "offset": 1}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "QuotaAwareFileSystemProvider.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes co.elastic.cloud.quotaawarefs.QuotaAwareFileSystemProvider.readAttributes(java.nio.file.Path, java.lang.Class, java.nio.file.LinkOption[])"}, "line": {"number": 337}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pSVcwHLkS-nxPYoJIIKFcQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Iterator.java"}, "function": {"name": "void java.util.Iterator.forEachRemaining(java.util.function.Consumer)", "offset": 1}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ODEF5LCm75g5je9PKredEgAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "boolean org.elasticsearch.indices.IndicesService.canCache(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.search.internal.SearchContext)", "offset": 20}, "line": {"number": 1483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JgZRyAOoiDw-UUT43F6zfAAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "HandledTransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.HandledTransportAction$TransportHandler.messageReceived(org.elasticsearch.action.ActionRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w7WOWZs79Wz210098loDzAAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "Netty4HttpPipeliningHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpPipeliningHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 2}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "agZiqOTeFJJvJSEd_bICHwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)"}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gnnlFaM6NR6_UU1aEYXcowAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object akka.stream.scaladsl.TLSPlacebo$$$Lambda$1024.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JYb5JOqnMPOCcF7fd5apugAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "SocketDispatcher.java"}, "function": {"name": "int sun.nio.ch.SocketDispatcher.read0(java.io.FileDescriptor, long, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GFseY0uix2hxT0Di8k7-3AAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "IndexTemplateConfig.java"}, "function": {"name": "byte[] org.elasticsearch.xpack.core.template.IndexTemplateConfig.loadBytes()"}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1xP"}} +{"Stackframe": {"function": {"name": "_raw_read_unlock_bh"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B20OugZuwBAeveso7e9HjAAAAAAAAAB7"}} +{"Stackframe": {"file": {"name": "AWS4Signer.java"}, "function": {"name": "void com.amazonaws.auth.AWS4Signer.sign(com.amazonaws.SignableRequest, com.amazonaws.auth.AWSCredentials)", "offset": 24}, "line": {"number": 247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OF2u4sKIhhHNYD9MW460yQAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "Netty4TcpChannel.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4TcpChannel.sendMessage(org.elasticsearch.common.bytes.BytesReference, org.elasticsearch.action.ActionListener)", "offset": 14}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMxXI"}} +{"Stackframe": {"function": {"name": "eventfd_write"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NfM0LhQlSM_JpwKY-QxdBAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "org.elasticsearch.common.io.stream.Writeable org.elasticsearch.common.io.stream.StreamInput.readOptionalWriteable(org.elasticsearch.common.io.stream.Writeable$Reader)", "offset": 1}, "line": {"number": 1037}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z_WaY2pXtLyni7L_8jKtBgAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "StoredFieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.index.StoredFieldsConsumer.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)", "offset": 2}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zJht6Rgw2a7A-GEkQuBvDwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "System.java"}, "function": {"name": "java.lang.Enum[] java.lang.System$2.getEnumConstantsShared(java.lang.Class)"}, "line": {"number": 2348}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wg3NMwFQjkpTmdqB4Do_BAAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "CopyOnWriteHashMap.java"}, "function": {"name": "org.elasticsearch.common.collect.CopyOnWriteHashMap org.elasticsearch.common.collect.CopyOnWriteHashMap.copyAndPutAll(java.lang.Iterable)", "offset": 2}, "line": {"number": 530}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7CHWfexiCsBkFNUGKAEZBQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "org.apache.http.conn.ConnectionRequest com.amazonaws.http.conn.$Proxy30.requestConnection(org.apache.http.conn.routing.HttpRoute, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Td5FN6j36M4I5XfTsjp8NwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "PlatformComponent.java"}, "function": {"name": "java.lang.Class java.lang.management.PlatformComponent.getMXBeanInterface()", "offset": 1}, "line": {"number": 366}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fQi-oLERzTztO_dqegJXlQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.lambda$buildFieldsGroupMapping$2(java.util.Map, org.apache.lucene.codecs.PostingsFormat, org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsGroup$Builder)"}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qgmjWpW3k5-dhnv9CCTcfwAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "Spliterators.java"}, "function": {"name": "void java.util.Spliterators$IteratorSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 6}, "line": {"number": 1921}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "s2i4LP9eVmd_xE1tnFauogAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.startObject(java.lang.String)"}, "line": {"number": 222}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tW1ONDyoCZkpOb4VQBh9egAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "SegmentCommitInfo.java"}, "function": {"name": "java.util.Collection org.apache.lucene.index.SegmentCommitInfo.files()"}, "line": {"number": 238}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Dg0i2lYRLQUln2hBXrJbCwAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.sendResponse(org.elasticsearch.Version, java.lang.Object, org.elasticsearch.transport.TransportResponse, long, java.lang.String, org.elasticsearch.transport.TransportResponseOptions, byte)", "offset": 14}, "line": {"number": 1197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HVAzZrPoCZr5Mjxtu7E5bwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "LongPipeline.java"}, "function": {"name": "java.util.OptionalLong java.util.stream.LongPipeline.reduce(java.util.function.LongBinaryOperator)"}, "line": {"number": 503}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "exlLI1uBpP8VBaUqNRf9DQAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "TcpTransportChannel.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransportChannel.sendResponse(org.elasticsearch.transport.TransportResponse, org.elasticsearch.transport.TransportResponseOptions)"}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "POIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter.lambda$inbound$1(java.lang.String, org.elasticsearch.TransportVersion, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 8}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CNBX4p645M_2FKSVjVlopAAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "MessageDigest.java"}, "function": {"name": "int java.security.MessageDigest.digest(byte[], int, int)", "offset": 7}, "line": {"number": 418}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "82g1SAYpsFtnBogFl0v0GAAAAAAAAADJ"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncPrimaryAction.doRun()", "offset": 29}, "line": {"number": 411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H993ZydDem1gABEwmkxlggAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "LifecyclePolicyUtils.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecyclePolicy org.elasticsearch.xpack.core.ilm.LifecyclePolicyUtils.loadPolicy(java.lang.String, java.lang.String, org.elasticsearch.xcontent.NamedXContentRegistry)", "offset": 8}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Nbmk5t8I_9NxUYnE2nMqGQAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "SearchQueryThenFetchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchQueryThenFetchAsyncAction.executePhaseOnShard(org.elasticsearch.action.search.SearchShardIterator, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.action.search.SearchActionListener)"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N6GQLYcZVTMZFVsClXmzKQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeMap(org.elasticsearch.common.collect.ImmutableOpenMap)"}, "line": {"number": 638}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bem31qqzjUFpI7bh8w8-nQAAAAAAAABm"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.finishCommit()", "offset": 19}, "line": {"number": 3811}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IU8u--NbxjOeMw1G028-GgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "NettyAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf org.elasticsearch.transport.NettyAllocator$NoDirectBuffers.heapBuffer(int)"}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zNauVubvid-JWDwk7qANbgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.common.util.concurrent.ThreadContext.readHeadersFromStream(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 441}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xo4rC3y2CcS6B7wZyQHREAAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.lambda$executeRequest$6(org.elasticsearch.action.search.SearchTask, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.action.ActionListener, org.elasticsearch.action.search.TransportSearchAction$SearchAsyncActionProvider, org.elasticsearch.action.search.SearchRequest)", "offset": 13}, "line": {"number": 390}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cGonFmCxGC0dUZ5gEg0KQgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.take()"}, "line": {"number": 1286}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXbv"}} +{"Stackframe": {"function": {"name": "__alloc_file"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "L-_tQCaPRoXtazKap89hsgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 2}, "line": {"number": 941}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "r4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelHandlerContext io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(java.lang.Object)"}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "b1GECJUSnH_79vWkuc6clwAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "boolean java.util.regex.Pattern$GroupHead.match(java.util.regex.Matcher, int, java.lang.CharSequence)", "offset": 2}, "line": {"number": 4801}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Al_h9gC68463XnWmby4-QgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.commit(long, long, org.elasticsearch.Version)", "offset": 1}, "line": {"number": 1151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1S9eFAopKcZX-VnW9ChdWAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Setting.get(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 463}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dvXvZeuLUdI7V9EmrQpkSQAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "RestRequest.java"}, "function": {"name": "void org.elasticsearch.rest.RestRequest.withContentOrSourceParamParserOrNull(org.elasticsearch.core.CheckedConsumer)", "offset": 8}, "line": {"number": 513}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-bdPLgVx58dzwkE7OjvI9QAAAAAAAAD8"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 63}, "line": {"number": 477}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kPOuFMPm2_j7vX6Q_7bKcAAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.index.SoftDeletesRetentionMergePolicy.getScorer(org.apache.lucene.search.Query, org.apache.lucene.index.CodecReader)", "offset": 3}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IIH8JfYmIZybsjMwsvSZmgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "NumberFieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.NumberFieldMapper.doXContentBody(org.elasticsearch.common.xcontent.XContentBuilder, boolean, org.elasticsearch.common.xcontent.ToXContent$Params)"}, "line": {"number": 1124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xpGNjXh9ZlEtOeiCM1OO0wAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "NodesFaultDetection.java"}, "function": {"name": "void org.elasticsearch.discovery.zen.NodesFaultDetection$PingRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel)"}, "line": {"number": 281}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qYA0yXrjfQUiViGsCwfP0gAAAAAAAAG9"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken()", "offset": 91}, "line": {"number": 813}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k-iHhugN07psoCA3oD8uAgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "DeflaterOutputStream.java"}, "function": {"name": "void java.util.zip.DeflaterOutputStream.deflate()"}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BzHaaplfCkGFxXmJVqCJAgAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "IndexSearcher.java"}, "function": {"name": "void org.apache.lucene.search.IndexSearcher.search(org.apache.lucene.search.Query, org.apache.lucene.search.Collector)"}, "line": {"number": 472}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8uVqqmQs2krZT40-iqFC3AAAAAAAAAC8"}} +{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.awaitMatch(java.util.concurrent.LinkedTransferQueue$Node, java.util.concurrent.LinkedTransferQueue$Node, java.lang.Object, boolean, long)", "offset": 36}, "line": {"number": 740}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "roTQ2x4u1u0ROVEifn0kaQAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.commit(long, long)", "offset": 3}, "line": {"number": 779}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ETOeqaIKM-TpplLP4iNFxgAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "SecurityContext.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.SecurityContext.executeAsInternalUser(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.TransportVersion, java.util.function.Consumer)", "offset": 4}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nliiCX4exwFhNaWWExWL2QAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ConcurrentMergeScheduler.java"}, "function": {"name": "void org.apache.lucene.index.ConcurrentMergeScheduler.doMerge(org.apache.lucene.index.MergeScheduler$MergeSource, org.apache.lucene.index.MergePolicy$OneMerge)"}, "line": {"number": 626}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BvE20tx_aKDX9k1QBsUKsgAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.processDocument(int, java.lang.Iterable)", "offset": 13}, "line": {"number": 485}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "asuzVBqmptGBGQ7h_SoWWAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "CachedSupplier.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.CachedSupplier.get()", "offset": 1}, "line": {"number": 31}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UepoRzuMTBR-jFpLlu_fPgAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "SegmentInfos.java"}, "function": {"name": "java.util.Collection org.apache.lucene.index.SegmentInfos.files(boolean)", "offset": 10}, "line": {"number": 820}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zgO9-qlGF96Qf8hviCOy7QAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "TransportClusterStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.stats.ClusterStatsNodeResponse org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction.nodeOperation(org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction$ClusterStatsNodeRequest, org.elasticsearch.tasks.Task)", "offset": 3}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bGB7hInbax1m3qcXahwOVwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$7257+0x0000000802520000.get()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wQRLh0_1mVfrLTkzs1izhQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gFPyL3qH7XvAMbrBvAuRfwAAAAAAAADb"}} +{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.forwardFragments(org.elasticsearch.transport.TcpChannel, java.util.ArrayList)", "offset": 15}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tiJNC5TRsJ2Po6yB9hj7ugAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction.execute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 11}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "th6lg9e5SyYc2UpZYBYbAQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "AggregatorFactory.java"}, "function": {"name": "void org.elasticsearch.search.aggregations.AggregatorFactory.(java.lang.String, org.elasticsearch.search.aggregations.support.AggregationContext, org.elasticsearch.search.aggregations.AggregatorFactory, org.elasticsearch.search.aggregations.AggregatorFactories$Builder, java.util.Map)", "offset": 4}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Q25YN3mx81c5h9FyskSVQAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.finishAuthentication(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 352}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZnU"}} +{"Stackframe": {"function": {"name": "__handle_mm_fault"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kxlPGvmJaixHgVVGYdR3ZAAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "void org.apache.lucene.search.ReferenceManager.release(java.lang.Object)", "offset": 1}, "line": {"number": 274}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QiFXaEzTwN7w_cqE4M3pQgAAAAAAAACF"}} +{"Stackframe": {"file": {"name": "MessageToMessageEncoder.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageEncoder.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 30}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALsuZ"}} +{"Stackframe": {"function": {"name": "iterate_dir"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kqENcUInN8VvKd6Dc2jO5AAAAAAAAACq"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "int org.apache.lucene.index.DefaultIndexingChain.processField(org.apache.lucene.index.IndexableField, long, int)", "offset": 19}, "line": {"number": 447}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf"}} +{"Stackframe": {"function": {"name": "futex_wait"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w2tPevxkIsQ5_AYdA12M_AAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "ClusterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterService.runTasks(org.elasticsearch.cluster.service.ClusterService$TaskInputs)", "offset": 15}, "line": {"number": 571}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tEnA5bbecd5HgfHANQcYvAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageInboundHandler$$Lambda$6638+0x00000008023ecea0.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nZmkelHuL2rN_AY8H-OMEgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "MapperService.java"}, "function": {"name": "void org.elasticsearch.index.mapper.MapperService.merge(org.elasticsearch.cluster.metadata.IndexMetaData, org.elasticsearch.index.mapper.MapperService$MergeReason, boolean)"}, "line": {"number": 264}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "MergePolicy.java"}, "function": {"name": "long org.apache.lucene.index.MergePolicy.size(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.MergePolicy$MergeContext)"}, "line": {"number": 678}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "arxA1QBozmn6abFSxPuNegAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Booleans.java"}, "function": {"name": "boolean org.elasticsearch.core.Booleans.parseBoolean(java.lang.String)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0rDJMn8VgPYie4Xyg6PSTgAAAAAAAAKa"}} +{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.readRecord(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 154}, "line": {"number": 691}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kS74ucMYVsOCEN6lWzqZlwAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.util.stream.Sink java.util.stream.AbstractPipeline.wrapAndCopyInto(java.util.stream.Sink, java.util.Spliterator)"}, "line": {"number": 499}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBs-"}} +{"Stackframe": {"function": {"name": "futex_wake"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFdKO"}} +{"Stackframe": {"function": {"name": "proc_cgroup_show"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pxq9i_P7P2LtOabkMgl8CAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "LeaderChecker.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.LeaderChecker.lambda$new$0(org.elasticsearch.cluster.coordination.LeaderChecker$LeaderCheckRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 1}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5DGFi3MrQEDDo8fCYbA5hAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "org.elasticsearch.index.store.StoreStats org.elasticsearch.index.store.Store.stats(long, java.util.function.LongUnaryOperator)", "offset": 1}, "line": {"number": 353}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Hwm3pNPC4Wa3xFabNuzwcgAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "AbstractIndexOrdinalsFieldData.java"}, "function": {"name": "org.elasticsearch.index.fielddata.IndexOrdinalsFieldData org.elasticsearch.index.fielddata.plain.AbstractIndexOrdinalsFieldData.localGlobalDirect(org.apache.lucene.index.DirectoryReader)"}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wrBa50Kv2QbqC8pKyQLbSgAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "URI.java"}, "function": {"name": "void java.net.URI$Parser.parse(boolean)", "offset": 11}, "line": {"number": 3167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uFE_5iRgVAA28vEAbB_cNwAAAAAAAADE"}} +{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "void org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction.onScrollResponse(long, int, org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction$ScrollConsumableHitsResponse)", "offset": 35}, "line": {"number": 378}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ChGc_KlbDChxhbLYz-xpPwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "TimedRunnable.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.TimedRunnable.doRun()", "offset": 1}, "line": {"number": 33}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zaw8NcOC1xUcyZZoD0CI1AAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext.restore()"}, "line": {"number": 479}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fl80KEygC0q2Noyd1zAXYAAAAAAAAABU"}} +{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "org.elasticsearch.threadpool.Scheduler$ScheduledCancellable org.elasticsearch.threadpool.ThreadPool.schedule(java.lang.Runnable, org.elasticsearch.core.TimeValue, java.lang.String)", "offset": 32}, "line": {"number": 424}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0Bt_4cO5WqUPlkr8SPaKaQAAAAAAAACd"}} +{"Stackframe": {"file": {"name": "HttpObjectDecoder.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpObjectDecoder.decode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 27}, "line": {"number": 214}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XtgaUXrhm9uTP3ztzfpd-gAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeBoolean(boolean)"}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "adI05FeXl-z73o2NJPxYawAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "RestResponseListener.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestResponseListener.processResponse(java.lang.Object)"}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9jiHXEAqY3kbQsrq9gMUXgAAAAAAAANJ"}} +{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.merge(org.apache.lucene.index.MergeState)", "offset": 108}, "line": {"number": 243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$1.onResponse(java.lang.Object)"}, "line": {"number": 571}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3k0zXk7dxW89N_3czY0RZAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.index.mapper.DateFieldMapper$DateFieldType$$Lambda$6415+0x0000000801ccddf0.apply(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kQIfOKgH7suSILPob4uOXAAAAAAAAAEj"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$CommitId org.elasticsearch.index.engine.InternalEngine.flush(boolean, boolean)", "offset": 38}, "line": {"number": 2075}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "r3Vnx-dTQcIIufztwCi9dQAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "FillInterest.java"}, "function": {"name": "boolean org.eclipse.jetty.io.FillInterest.fillable()", "offset": 5}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iYtUXbZ1cPtxIQ5iXlqsJAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.maybeMerge(org.apache.lucene.index.MergePolicy, org.apache.lucene.index.MergeTrigger, int)", "offset": 1}, "line": {"number": 2082}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z6tWuney7g-Y4N5qVR1EmAAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "void java.util.ArrayList.forEach(java.util.function.Consumer)", "offset": 5}, "line": {"number": 1511}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XasdzsgYzXeaIf1qB6YHcQAAAAAAAADm"}} +{"Stackframe": {"file": {"name": "TransformIndexer.java"}, "function": {"name": "void org.elasticsearch.xpack.transform.transforms.TransformIndexer.onStart(long, org.elasticsearch.action.ActionListener)", "offset": 111}, "line": {"number": 369}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LZh34Qe9WZt7ydt6m_9sHgAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.softUpdateDocument(org.apache.lucene.index.Term, java.lang.Iterable, org.apache.lucene.document.Field[])", "offset": 6}, "line": {"number": 1799}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAADA"}} +{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.fsync(java.nio.file.Path, boolean)", "offset": 22}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZJjsD24vVeIB2Mk_BbDMOgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "java.nio.file.Path sun.nio.fs.UnixPath.normalize()"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CeCTWGhzZ22dKgkK2rmozgAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "AuthenticationContextSerializer.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authc.Authentication org.elasticsearch.xpack.core.security.authc.support.AuthenticationContextSerializer.decode(java.lang.String)", "offset": 4}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dJYgdZ6MFANs6aW-kJSCJAAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "void java.lang.Throwable.(java.lang.String)", "offset": 68}, "line": {"number": 265}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pny64bxVlV3tBC1sODqZ9QAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "MonotonicLongValues.java"}, "function": {"name": "void org.apache.lucene.util.packed.MonotonicLongValues$Builder.pack(long[], int, int, float)", "offset": 4}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eXzE17y_6L8nwmbQOjs63AAAAAAAAABy"}} +{"Stackframe": {"file": {"name": "TransformIndexer.java"}, "function": {"name": "boolean org.elasticsearch.xpack.transform.transforms.TransformIndexer.maybeTriggerAsyncJob(long)", "offset": 29}, "line": {"number": 617}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", "offset": 21}, "line": {"number": 1149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uof2oKCX86V-_cQCuGg7EwAAAAAAAC58"}} +{"Stackframe": {"function": {"name": "nf_conntrack_in"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DSzApI2QrzwHok_nBxUbCAAAAAAAAAEM"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader$SerializedDocument org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader$BlockState.document(int)", "offset": 66}, "line": {"number": 643}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "22bcZc1mxVdkBovRtLXmeAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "RestActions.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestActions$NodesResponseRestListener.buildResponse(java.lang.Object, org.elasticsearch.common.xcontent.XContentBuilder)"}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y3ftK9mWklQQE1dRC8tbhwAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "InputStreamStreamInput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.InputStreamStreamInput.readBytes(byte[], int, int)", "offset": 2}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bfWTJUKYANwcIsCQIfxvLQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress$Entry.(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.SnapshotsInProgress$1)"}, "line": {"number": 516}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RpytFVQWXXRAk8QQZ7KiCQAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "RestSearchAction.java"}, "function": {"name": "org.elasticsearch.rest.BaseRestHandler$RestChannelConsumer org.elasticsearch.rest.action.search.RestSearchAction.prepareRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.client.node.NodeClient)", "offset": 18}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7e32DwxqF0KavchyqVkOEgAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "PackedLongValues.java"}, "function": {"name": "void org.apache.lucene.util.packed.PackedLongValues$Iterator.(org.apache.lucene.util.packed.PackedLongValues)", "offset": 3}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JHv-WxN-6ew3HWVylhRcvwAAAAAAAACD"}} +{"Stackframe": {"file": {"name": "IndexLifecycleService.java"}, "function": {"name": "void org.elasticsearch.xpack.ilm.IndexLifecycleService.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 32}, "line": {"number": 326}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "un6cBO6D7gNVatBvdCHO5wAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ClientConnectionManagerFactory.java"}, "function": {"name": "java.lang.Object com.amazonaws.http.conn.ClientConnectionManagerFactory$Handler.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])"}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vvrucdq7XDjtQT3GX21jQwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation$2.onResponse(java.lang.Object)"}, "line": {"number": 194}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC"}} +{"Stackframe": {"function": {"name": "sock_write_iter"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FOd9HiviZUDhaNiKk_owWwAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "IndexTemplateConfig.java"}, "function": {"name": "byte[] org.elasticsearch.xpack.core.template.IndexTemplateConfig.loadBytes()"}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZBiGD584czs37vexEv-WgQAAAAAAAABx"}} +{"Stackframe": {"file": {"name": "Lucene50StoredFieldsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.StoredFieldsWriter org.apache.lucene.codecs.lucene50.Lucene50StoredFieldsFormat.fieldsWriter(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 5}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m9ieovFwf2R2wYPTPe0oHAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FileDispatcherImpl.java"}, "function": {"name": "int sun.nio.ch.FileDispatcherImpl.read(java.io.FileDescriptor, long, int)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wcWRy9o8aBuBPSZu3QixfgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "RateLimitedFSDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.RateLimitedFSDirectory.createOutput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAI2OH"}} +{"Stackframe": {"function": {"name": "shmem_show_options"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL2nC"}} +{"Stackframe": {"function": {"name": "iput"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H-oIPm6rn2UvnPt58L-yLgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "MemoryPoolImpl.java"}, "function": {"name": "java.lang.management.MemoryUsage sun.management.MemoryPoolImpl.getPeakUsage()"}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5n7LLsQnp8wzVSA9RUpYdgAAAAAAAACO"}} +{"Stackframe": {"file": {"name": "RestGetIndicesAction.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.admin.indices.RestGetIndicesAction$1.buildResponse(org.elasticsearch.action.admin.indices.get.GetIndexResponse, org.elasticsearch.common.xcontent.XContentBuilder)", "offset": 11}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vBQwZ05l4giD114gt0KIBQAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "BHttpConnectionBase.java"}, "function": {"name": "int org.apache.http.impl.BHttpConnectionBase.fillInputBuffer(int)", "offset": 4}, "line": {"number": 342}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QFmkHrTe4rYuSaotjLlfzgAAAAAAAACc"}} +{"Stackframe": {"file": {"name": "ShardGetService.java"}, "function": {"name": "org.elasticsearch.index.get.GetResult org.elasticsearch.index.get.ShardGetService.innerGetFetch(java.lang.String, java.lang.String[], org.elasticsearch.search.fetch.subphase.FetchSourceContext, org.elasticsearch.index.engine.Engine$GetResult, boolean)", "offset": 22}, "line": {"number": 248}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P4GdI6f6aagjBxBAKz-KIgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService$$Lambda$7666+0x0000000801edda40.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NtCGtgNOSKjf89hTQ9pKCgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "ParentTaskAssigningClient.java"}, "function": {"name": "void org.elasticsearch.client.internal.ParentTaskAssigningClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9sYnFbigFrf_-fozodwm9QAAAAAAAAGE"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "int org.apache.lucene.index.DefaultIndexingChain.processField(int, org.apache.lucene.index.IndexableField, long, int)", "offset": 54}, "line": {"number": 568}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4hfXqIriRq-rW-iKKuDGxQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.IndexWriter$$Lambda$5571+0x0000000801ba0810.process(org.apache.lucene.index.IndexWriter)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GoNepwzc_zT2_J1VozUIzwAAAAAAAACV"}} +{"Stackframe": {"file": {"name": "Server.java"}, "function": {"name": "void org.eclipse.jetty.server.Server.handle(org.eclipse.jetty.server.HttpChannel)", "offset": 22}, "line": {"number": 516}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_"}} +{"Stackframe": {"function": {"name": "do_epoll_wait"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6rsVEZ9sKsa4Vh8IikWAbwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "MapperService.java"}, "function": {"name": "org.elasticsearch.index.mapper.DocumentMapper org.elasticsearch.index.mapper.MapperService.merge(java.lang.String, org.elasticsearch.common.compress.CompressedXContent, org.elasticsearch.index.mapper.MapperService$MergeReason, boolean)"}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "inEc9_3SInxrxMPUsGkjqwAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "void java.lang.String.(byte[], int, int, java.nio.charset.Charset)", "offset": 5}, "line": {"number": 524}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0lZH7mbg6Z2T87nCQ5tLBwAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "BytesStore.java"}, "function": {"name": "org.apache.lucene.util.fst.FST$BytesReader org.apache.lucene.util.fst.BytesStore.getReverseReader(boolean)", "offset": 3}, "line": {"number": 448}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qfCyjEvZmP5eBivFcIMKBAAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor.sendWithUser(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportInterceptor$AsyncSender)", "offset": 5}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z_WaY2pXtLyni7L_8jKtBgAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "StoredFieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.index.StoredFieldsConsumer.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)"}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vUsvcPccCee-aB1C2WoAswAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xcontent.XContentBuilder$$Lambda$311+0x00000008013dca28.write(org.elasticsearch.xcontent.XContentBuilder, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w_8HYglWw-0jqUUlUeMgagAAAAAAAADX"}} +{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Setting.get(org.elasticsearch.common.settings.Settings, boolean)", "offset": 26}, "line": {"number": 493}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yzswjXVxRE-4XShLDgxaaAAAAAAAAABQ"}} +{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ObjectParser.parseSub(org.elasticsearch.common.xcontent.XContentParser, org.elasticsearch.common.xcontent.ObjectParser$FieldParser, java.lang.String, java.lang.Object, java.lang.Object)", "offset": 3}, "line": {"number": 529}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readMap(org.elasticsearch.common.xcontent.XContentParser, org.elasticsearch.common.xcontent.support.AbstractXContentParser$MapFactory)", "offset": 14}, "line": {"number": 334}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QjcJgCUAsytsXGSmYCNuVgAAAAAAAADA"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 89}, "line": {"number": 624}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_QeIf-ckQffQy4Ke0K6c_AAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "IndexSearcher.java"}, "function": {"name": "org.apache.lucene.search.Query org.apache.lucene.search.IndexSearcher.rewrite(org.apache.lucene.search.Query)", "offset": 1}, "line": {"number": 683}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aU3BPDaIKeUIlhsZawDOqAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Collection.java"}, "function": {"name": "java.util.stream.Stream java.util.Collection.stream()"}, "line": {"number": 581}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fGeO8E0dKkjTaq21mlOYCAAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "boolean org.elasticsearch.index.shard.IndexShard.scheduledRefresh()", "offset": 2}, "line": {"number": 3460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MHOHZ9dur_p0OUPsIclbdwAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "PushPostingsWriterBase.java"}, "function": {"name": "org.apache.lucene.codecs.BlockTermState org.apache.lucene.codecs.PushPostingsWriterBase.writeTerm(org.apache.lucene.util.BytesRef, org.apache.lucene.index.TermsEnum, org.apache.lucene.util.FixedBitSet, org.apache.lucene.codecs.NormsProducer)", "offset": 6}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I_i_3enTR60S4qDgQ3zxCQAAAAAAAAE9"}} +{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.dataformat.smile.SmileParser._findDecodedFromSymbols(int)", "offset": 44}, "line": {"number": 1740}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SFbeRqnS7DIbUgl7U9gcRQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.channels.SeekableByteChannel java.nio.file.Files.newByteChannel(java.nio.file.Path, java.nio.file.OpenOption[])", "offset": 6}, "line": {"number": 432}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XpP7XQ-NdKuBv70dYM6FnQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase$$Lambda$6003+0x0000000801c172c8.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BHkZBcmNHMjIQUGuyLAiYwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.ActionRunnable$$Lambda$6402+0x0000000801cc8450.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VDHcIH7TAzjEZelOOPY5DwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "void org.elasticsearch.threadpool.ThreadPool$ThreadedRunnable.run()"}, "line": {"number": 598}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "J1IhvI4XpB_ivF6THMrsmAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "SystemIndexManager.java"}, "function": {"name": "org.elasticsearch.Version org.elasticsearch.indices.SystemIndexManager.readMappingVersion(org.elasticsearch.indices.SystemIndexDescriptor, org.elasticsearch.cluster.metadata.MappingMetadata)", "offset": 2}, "line": {"number": 266}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAB1xd"}} +{"Stackframe": {"function": {"name": "xfs_generic_create"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1XS2aFbrMvbrgkTeGP6LGgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "DocumentMapper.java"}, "function": {"name": "org.elasticsearch.index.mapper.ParsedDocument org.elasticsearch.index.mapper.DocumentMapper.parse(org.elasticsearch.index.mapper.SourceToParse)"}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iOrzBCYQs1BopsXJA6o-yQAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction.executeMasterOperation(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.master.MasterNodeRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-moASSZTgRJvmZb7ddZg5QAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "org.elasticsearch.cluster.ClusterStateTaskExecutor$ClusterTasksResult org.elasticsearch.snapshots.SnapshotsService$$Lambda$1533+0x00000008011481f8.execute(org.elasticsearch.cluster.ClusterState, java.util.List)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YEThj3UEuGl2wDiJSq9vSAAAAAAAAACq"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.applyIndexOperation(org.elasticsearch.index.engine.Engine, long, long, long, org.elasticsearch.index.VersionType, long, long, long, boolean, org.elasticsearch.index.engine.Engine$Operation$Origin, org.elasticsearch.index.mapper.SourceToParse)", "offset": 20}, "line": {"number": 959}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MktHTZ1kYQIosVfruXQEgAAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.updateCheckPoints(org.elasticsearch.cluster.routing.ShardRouting, java.util.function.LongSupplier, java.util.function.LongSupplier)", "offset": 1}, "line": {"number": 307}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VP2iu3D_L8M5jxqo2fKWYAAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleResponse(java.net.InetSocketAddress, org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.InboundMessage)", "offset": 3}, "line": {"number": 349}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2PevTTgB0h-tyzl-zqJWswAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "InternalAggregation.java"}, "function": {"name": "void org.elasticsearch.search.aggregations.InternalAggregation.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 3}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F-UVz7qWVUzScRv1FhkbzQAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 3}, "line": {"number": 221}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "s__kQ2m1V3bn-9gwOriqPQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "RateLimitedIndexOutput.java"}, "function": {"name": "void org.apache.lucene.store.RateLimitedIndexOutput.writeByte(byte)"}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FxtpJ_NWQpPJ5FLumU0ojgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.file.DirectoryStream java.nio.file.Files.newDirectoryStream(java.nio.file.Path)"}, "line": {"number": 482}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIUme"}} +{"Stackframe": {"function": {"name": "uprobe_deny_signal"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IETnUMLdTY0X_27KY2cD_AAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.s3.S3BlobContainer$$Lambda$10707+0x000000080270a410.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "b6rO_tpQt622H0nBBuO6SAAAAAAAAABQ"}} +{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.StandardDirectoryReader org.apache.lucene.index.StandardDirectoryReader.open(org.apache.lucene.index.IndexWriter, org.apache.lucene.util.IOUtils$IOFunction, org.apache.lucene.index.SegmentInfos, boolean, boolean)", "offset": 15}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o5YfkD43MSN2LFcekR9lVQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "SortedSetDocValuesWriter.java"}, "function": {"name": "java.util.Iterator org.apache.lucene.index.SortedSetDocValuesWriter$2.iterator()"}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9YfSdWjTHtXOXD-P-YJ-oQAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.read(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 3}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Sqtwcr6f3RwqQFAs9J6l6QAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.InboundHandler$$Lambda$5352+0x0000000801aa5720.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "L_sAxM5NHsnYQp22GwDx8gAAAAAAAABw"}} +{"Stackframe": {"file": {"name": "SearchRequestCacheDisablingInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.SearchRequestCacheDisablingInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 11}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GWaNS7Aannj1ZssQUxZReQAAAAAAAADM"}} +{"Stackframe": {"file": {"name": "DocumentMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentMapper.(org.elasticsearch.index.mapper.MapperService, org.elasticsearch.index.mapper.Mapping)", "offset": 27}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5kQrz31-vtpLpHkSNl9lFwAAAAAAAAG9"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "org.elasticsearch.search.SearchHits org.elasticsearch.search.fetch.FetchPhase.buildSearchHits(org.elasticsearch.search.internal.SearchContext, org.elasticsearch.search.fetch.FetchPhase$Profiler)", "offset": 67}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hCbyFiiUxYQZQBO3egyd8AAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "java.lang.Object com.carrotsearch.hppc.ObjectObjectHashMap$ValuesIterator.fetch()"}, "line": {"number": 941}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi8ED"}} +{"Stackframe": {"function": {"name": "sk_stream_write_space"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj"}} +{"Stackframe": {"function": {"name": "__softirqentry_text_start"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW22"}} +{"Stackframe": {"function": {"name": "ksys_write"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5HuV0084wClXz_bInEa-IwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.xcontent.ConstructingObjectParser$$Lambda$2345+0x0000000801342b50.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OIU72g2wQhgyLETe_w4R1gAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "GlobalOrdinalMapping.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.elasticsearch.index.fielddata.ordinals.GlobalOrdinalMapping.lookupOrd(long)", "offset": 2}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1E7vLqgIEliy4P46okASEgAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.tasks.TaskManager.unregister(org.elasticsearch.tasks.Task)", "offset": 17}, "line": {"number": 295}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk63z"}} +{"Stackframe": {"function": {"name": "netlink_unicast"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "S3oYjBa3aRK5is2l8pi-3QAAAAAAAAB7"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Settings.convertMapsToArrays(java.util.Map)", "offset": 20}, "line": {"number": 198}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Iz7G0PXjTk-LSaINRyAXzgAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "InternalTerms.java"}, "function": {"name": "void org.elasticsearch.search.aggregations.bucket.terms.InternalTerms$Bucket.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 4}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QtMelJKn2GMpVgIdbCShVAAAAAAAAADj"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermission.impliesIgnoreMask(java.io.FilePermission)", "offset": 41}, "line": {"number": 630}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h-mcFcSefWaXpPLGLAmk8gAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.doHandleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 11}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2OWtsBQW6DA4kXJxcJcc7QAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TrackingDirectoryWrapper.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.TrackingDirectoryWrapper.createTempOutput(java.lang.String, java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VOnMEGCyX7vvCgTfrp9ErgAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "Netty4HttpRequest.java"}, "function": {"name": "java.util.Set org.elasticsearch.http.netty4.Netty4HttpRequest$HttpHeadersMap.entrySet()", "offset": 3}, "line": {"number": 328}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m61OiFi7ipeTEQpdgB4G8gAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.metadata.Template$$Lambda$2762+0x00000008013b2820.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lzJoiXUGaltqdWh-iTQ4TQAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "User.java"}, "function": {"name": "void org.elasticsearch.xpack.security.user.User.writeUser(org.elasticsearch.xpack.security.user.User, org.elasticsearch.common.io.stream.StreamOutput)", "offset": 3}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kLG20VFMtAeL120q9dFk-QAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "void org.elasticsearch.search.internal.ContextIndexSearcher.search(java.util.List, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 41}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DvxORZxoFkDRuJT-GJ72RwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.BufferedUpdatesStream$SegmentState[] org.apache.lucene.index.IndexWriter.openSegmentStates(java.util.List, java.util.Set, long)"}, "line": {"number": 5812}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAwsz"}} +{"Stackframe": {"function": {"name": "do_signal"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m140cnmnDMXwCTqH-lotHAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$1.hasNext()"}, "line": {"number": 1676}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Or3A_uFtf7YBOMVYzqReaQAAAAAAAAB0"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor.sendRequestInner(org.elasticsearch.transport.TransportInterceptor$AsyncSender, org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 31}, "line": {"number": 242}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qrDOC_oX1XgrymCyOCSMzAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "f_rIvCQMW5oayMPHCj4aUgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "int java.io.FilePermission.containsPath(java.nio.file.Path, java.nio.file.Path)"}, "line": {"number": 702}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tU5StqeZvwdKSMyM5nPlIwAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "FetchSearchResult.java"}, "function": {"name": "void org.elasticsearch.search.fetch.FetchSearchResult.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 2}, "line": {"number": 98}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jorj45TI-Qd-VAwU3oeBogAAAAAAAACK"}} +{"Stackframe": {"file": {"name": "AnalysisStats.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.stats.AnalysisStats org.elasticsearch.action.admin.cluster.stats.AnalysisStats.of(org.elasticsearch.cluster.metadata.Metadata, java.lang.Runnable)", "offset": 19}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HxzxHvIFieRj5L9dtBmJDgAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "sun.security.ssl.Plaintext sun.security.ssl.SSLSocketImpl.decode(java.nio.ByteBuffer)", "offset": 4}, "line": {"number": 1501}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0PDL1t8foukKrjOTMeznFwAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.xcontent.XContent, java.lang.String, boolean)", "offset": 7}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "f8VYhNP4CdjxG54sGwOztQAAAAAAAABo"}} +{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.nio.channels.FileChannel sun.nio.fs.UnixChannelFactory.newFileChannel(int, sun.nio.fs.UnixPath, java.lang.String, java.util.Set, int)", "offset": 17}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Q5prAre2OuRCakrlnLYmSwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "IngestService.java"}, "function": {"name": "void org.elasticsearch.ingest.IngestService.lambda$applyClusterState$7(java.util.function.Consumer)"}, "line": {"number": 693}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hRsRUw78WKiucrogpgXANwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "long org.elasticsearch.index.store.Store$StoreDirectory.estimateSize()"}, "line": {"number": 735}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VY8isU5x9BO-Wo5ffXRMDwAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$ContextRestoreResponseHandler.handleResponse(org.elasticsearch.transport.TransportResponse)", "offset": 3}, "line": {"number": 1470}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9y6T0XjNIrAyHZHcTXEkswAAAAAAAAGt"}} +{"Stackframe": {"file": {"name": "SegmentTermsEnumFrame.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.SegmentTermsEnumFrame.loadBlock()", "offset": 47}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JwvzxGCZCvr20cP2ebvBVQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.Iterator java.util.HashMap$EntrySet.iterator()"}, "line": {"number": 1100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WNHUiu4BFqRVmqF_mtCsFQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "URLClassPath.java"}, "function": {"name": "java.net.URL jdk.internal.loader.URLClassPath$JarLoader.findResource(java.lang.String, boolean)"}, "line": {"number": 915}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1sRL8dzXntfZDPvtrM5MsgAAAAAAAACA"}} +{"Stackframe": {"file": {"name": "Lucene50PostingsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene50.Lucene50PostingsReader$BlockPostingsEnum.refillDocs()", "offset": 11}, "line": {"number": 608}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2RfKfVPwyqKh_r9U1oFgUwAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.xcontent.XContent, byte[], int, int, boolean, java.util.Set, java.util.Set)", "offset": 8}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WY2_M7eCNrhZsLoJqmwFKwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 934}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlxcj"}} +{"Stackframe": {"function": {"name": "established_get_first.isra.39"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TR0CnebfBTQ0MB6Lw8cZBAAAAAAAAABv"}} +{"Stackframe": {"file": {"name": "BaseRestHandler.java"}, "function": {"name": "void org.elasticsearch.rest.BaseRestHandler.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient)", "offset": 16}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YF5GymQJP4kloPPjSqFh6AAAAAAAAACi"}} +{"Stackframe": {"file": {"name": "DiscoveryNode.java"}, "function": {"name": "void org.elasticsearch.cluster.node.DiscoveryNode.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 17}, "line": {"number": 289}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "idAHvTfpCa_Lill3CvLIKwAAAAAAAABU"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.messageReceived(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage, long)", "offset": 10}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_oRewwL9e3LfROggE6zIhAAAAAAAAAMz"}} +{"Stackframe": {"file": {"name": "RepositoryData.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.repositories.RepositoryData.snapshotsToXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.Version, boolean)", "offset": 101}, "line": {"number": 762}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "v7GKAWxeXNZbjk8Dw8GzZgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "void org.elasticsearch.index.store.ByteSizeCachingDirectory$2.writeByte(byte)"}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GPPIIhc9JBDF0bex-RCt3wAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "Integer.java"}, "function": {"name": "int java.lang.Integer.parseInt(java.lang.String)"}, "line": {"number": 615}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "omklHAPZnqPNJHwVpvh2vQAAAAAAAACr"}} +{"Stackframe": {"file": {"name": "CoordinationState.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishResponse org.elasticsearch.cluster.coordination.CoordinationState.handlePublishRequest(org.elasticsearch.cluster.coordination.PublishRequest)", "offset": 27}, "line": {"number": 392}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ny-uPBreW2lvZbJRdHUc3wAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "Constructor.java"}, "function": {"name": "java.lang.Object java.lang.reflect.Constructor.newInstanceWithCaller(java.lang.Object[], boolean, java.lang.Class)", "offset": 8}, "line": {"number": 499}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "juY93UXKVJbEQKc5k60p9wAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "RestUpdateByQueryAction.java"}, "function": {"name": "org.elasticsearch.index.reindex.AbstractBulkByScrollRequest org.elasticsearch.reindex.RestUpdateByQueryAction.buildRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.common.io.stream.NamedWriteableRegistry)"}, "line": {"number": 28}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dy9m8b1oF2u3h9LUXHjYIAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "Security.java"}, "function": {"name": "java.lang.Object[] java.security.Security.getImpl(java.lang.String, java.lang.String, java.lang.String)", "offset": 2}, "line": {"number": 700}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "saQ5ZOut9f2P2MZp-a05OwAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.getInternal(long)", "offset": 4}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtKD"}} +{"Stackframe": {"function": {"name": "ep_send_events_proc"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CyFPDZBEiXoheKAUx-Kq0wAAAAAAAADG"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeString(java.lang.String)", "offset": 24}, "line": {"number": 446}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gtX88AmaTOI_01lUU2TraAAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$authorizeIndexAction$3(java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.Authentication, java.util.Map, org.elasticsearch.xpack.core.security.authz.ResolvedIndices)", "offset": 6}, "line": {"number": 317}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jW43N2PmWvpZYp55bora1gAAAAAAAADA"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 93}, "line": {"number": 592}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Upqzzk59PbxypyRs4QkNMAAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "org.elasticsearch.index.mapper.ParsedDocument org.elasticsearch.index.mapper.DocumentParser.parseDocument(org.elasticsearch.index.mapper.SourceToParse, org.elasticsearch.index.mapper.MappingLookup)", "offset": 14}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "y7jdQXuqmZbueYJpOXUh2wAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "DeflaterOutputStream.java"}, "function": {"name": "void java.util.zip.DeflaterOutputStream.finish()", "offset": 3}, "line": {"number": 225}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile.lambda$inbound$1(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.Version, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 7}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4_9Ja0HeMbT0P_tvtE-_5QAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$writeIndexGen$65(org.elasticsearch.repositories.RepositoryData, org.elasticsearch.Version, java.io.OutputStream)", "offset": 1}, "line": {"number": 2367}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gIVE_He_HcVwkF6GliVVvwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportBroadcastByNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 397}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bUpZ48eu6eiEjFsuaTvsNgAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "IndexOrDocValuesQuery.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.IndexOrDocValuesQuery$1$1.get(long)", "offset": 2}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KKci4M_8u3lv7Ydwxf31oQAAAAAAAACF"}} +{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "void org.elasticsearch.transport.CopyBytesSocketChannel.doWrite(io.netty.channel.ChannelOutboundBuffer)", "offset": 31}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.run()", "offset": 6}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9AWYxiUgpg8BGREZwy8hfAAAAAAAAACv"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequestInternal(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 28}, "line": {"number": 975}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZB5AF2kz_ddL2Cqvbd8kDgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TransportNodesInfoAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction.nodeOperation(org.elasticsearch.action.support.nodes.BaseNodeRequest)"}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AeJHJ79tk0TVcKmpj6rE2wAAAAAAAACf"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService.sync(java.util.function.Consumer, java.lang.String)", "offset": 12}, "line": {"number": 973}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VpdzCqONOyPWNGtdEBJe9wAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.json.JsonXContentGenerator.writeStartObject()", "offset": 6}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zx1rycUz_ddL2AYEOaAVfgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TransportNodesInfoAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction.nodeOperation(org.elasticsearch.action.support.nodes.BaseNodeRequest)"}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb-c"}} +{"Stackframe": {"function": {"name": "__do_sys_newlstat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z03CQ7BmO5DWD5cAAhlTWwAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "AWS4Signer.java"}, "function": {"name": "java.lang.String com.amazonaws.auth.AWS4Signer.getCanonicalizedHeaderString(com.amazonaws.SignableRequest)", "offset": 7}, "line": {"number": 501}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dR-5oewY63tH4fYLV5hc3AAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.util.stream.Sink java.util.stream.AbstractPipeline.wrapAndCopyInto(java.util.stream.Sink, java.util.Spliterator)"}, "line": {"number": 474}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iUVHn5RyVPHY25u4XrRpdgAAAAAAAACT"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotsService$SnapshotShardsUpdateContext$EntryContext.executeShardSnapshotUpdate(org.elasticsearch.common.collect.ImmutableOpenMap, java.util.function.Supplier, org.elasticsearch.snapshots.SnapshotsService$ShardSnapshotUpdate, java.lang.Object)", "offset": 21}, "line": {"number": 3859}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2hOdPvl1p5dv859XD0m5tQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.ReadersAndUpdates.getReader(org.apache.lucene.store.IOContext)", "offset": 2}, "line": {"number": 145}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tUugY2gAhpWf99wEorV4JgAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.read(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 3}, "line": {"number": 293}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YNG5rLJWIsjMTCOpoQz9TwAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.readIntoNativeBuffer(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 14}, "line": {"number": 274}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JgmaT4hGItQStPxlJGEPUAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.store.StoreStats org.elasticsearch.index.shard.IndexShard.storeStats()"}, "line": {"number": 703}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zcfKpbpAZN9qkm-T9sCmgAAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory.sync(java.util.Collection)", "offset": 3}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h9jgcblMMhqnshwrhCHrJwAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "HttpContentEncoder.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpContentEncoder.encode(io.netty.buffer.ByteBuf, java.util.List)"}, "line": {"number": 322}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T5rdW6hQxkRw8R0h0I6dhAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "OutputStreamStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.OutputStreamStreamOutput.close()"}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yLcvbV13CtkdfmXNFFed3QAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.addSortedSetField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)"}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Dk85LW9HyxD9vcA1wyDoDgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService.access$200(org.elasticsearch.index.IndexService, boolean)"}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "J5GIi-GNKOMWg90kwwIJaQAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "CgroupV1Subsystem.java"}, "function": {"name": "long jdk.internal.platform.cgroupv1.CgroupV1Subsystem.getLongValue(jdk.internal.platform.CgroupSubsystemController, java.lang.String)"}, "line": {"number": 190}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gdEtfESsDNl02I7JUxnTmAAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "void org.apache.lucene.index.SegmentMerger.mergeTerms(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.SegmentReadState)", "offset": 11}, "line": {"number": 209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dD4p9P31y_X_TwW0CA_rJwAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.xcontent.support.AbstractXContentParser.readMapSafe(org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier)", "offset": 1}, "line": {"number": 304}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFfVE"}} +{"Stackframe": {"function": {"name": "cgroup1_show_options"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IpvwX_fblQb3SBOaR6FXdQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.xcontent.XContentBuilder.close()"}, "line": {"number": 1251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGB"}} +{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "boolean org.elasticsearch.search.query.QueryPhase.executeInternal(org.elasticsearch.search.internal.SearchContext)", "offset": 80}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObjectOrField(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.Mapper)", "offset": 4}, "line": {"number": 577}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e7jcj9ca-ENh_em7UG8YrQAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "IngestService.java"}, "function": {"name": "void org.elasticsearch.ingest.IngestService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 9}, "line": {"number": 1032}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6Zj-Lw9a6Ydo4gb-eMkgLgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ReduceOps.java"}, "function": {"name": "java.lang.Object java.util.stream.ReduceOps$ReduceOp.evaluateSequential(java.util.stream.PipelineHelper, java.util.Spliterator)"}, "line": {"number": 708}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FB2lbICPeg4uVJ_bp0LkUgAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.Engine.refreshNeeded()", "offset": 7}, "line": {"number": 1017}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sYYc1wpJMhBB0VxP9JiigwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "FileDispatcherImpl.java"}, "function": {"name": "long sun.nio.ch.FileDispatcherImpl.size0(java.io.FileDescriptor)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tMlQRUcqMTg123vaMnWXIQAAAAAAAABZ"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService.runTasks(org.elasticsearch.cluster.service.MasterService$TaskInputs)", "offset": 16}, "line": {"number": 243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3GraiHROJsQD8vNYdRBuYQAAAAAAAADv"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.indices.NodeIndicesStats org.elasticsearch.indices.IndicesService.stats(org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 15}, "line": {"number": 460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nQRJ3xr79n3cY6qS99IffwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "void io.netty.channel.DefaultChannelPipeline$HeadContext.flush(io.netty.channel.ChannelHandlerContext)"}, "line": {"number": 1372}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DZvlF3IdU-9TjIbcA47GUgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "CodecUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.CodecUtil.writeCRC(org.apache.lucene.store.IndexOutput)"}, "line": {"number": 569}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Kmi3IV_5C6YkqCwr-5OCjQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ObjectParser.lambda$declareNamedObjects$14(java.util.function.BiFunction, java.util.function.Consumer, org.elasticsearch.common.xcontent.ParseField, java.util.function.BiConsumer, org.elasticsearch.common.xcontent.XContentParser, java.lang.Object, java.lang.Object)", "offset": 4}, "line": {"number": 442}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ucY-hDA6B-WAclSR3dnjWAAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "byte[] org.elasticsearch.xpack.security.authc.support.BCrypt.crypt_raw(byte[], byte[], int, int[])", "offset": 13}, "line": {"number": 626}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ywRpFKHnyqIdEibpvZWLtAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "JsonReadContext.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.JsonReadContext._checkDup(com.fasterxml.jackson.core.json.DupDetector, java.lang.String)"}, "line": {"number": 202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zwiX7AgVqL-aPC-SuEi6CAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, sun.nio.ch.NativeDispatcher)"}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9XlwsBj4VNVlqaRQ8nE0vwAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "BufferedReader.java"}, "function": {"name": "java.lang.String java.io.BufferedReader.readLine(boolean, boolean[])", "offset": 4}, "line": {"number": 348}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZWFss6ZxFzhbt0Csr3RjvQAAAAAAAABS"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.performOnReplicas(org.elasticsearch.action.support.replication.ReplicationRequest, long, long, org.elasticsearch.index.shard.ReplicationGroup, org.elasticsearch.action.support.replication.PendingReplicationActions)", "offset": 6}, "line": {"number": 202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DnuglYjSP_yHnOeoUpC43wAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AbstractEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)"}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rMNYV5KroKXsOMeuZv5hxgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "JvmGcMonitorService.java"}, "function": {"name": "org.elasticsearch.monitor.jvm.JvmStats org.elasticsearch.monitor.jvm.JvmGcMonitorService$JvmMonitor.jvmStats()"}, "line": {"number": 522}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACH"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.decodeJdkCompatible(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf)", "offset": 37}, "line": {"number": 1236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eNbj51SwVufxZ4R3ztSduAAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline$3$1.accept(java.lang.Object)"}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OWLIonXH0dbba490g9mt5gAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.value(java.lang.Object)"}, "line": {"number": 811}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dYHO2OE3YPDkjfbk38eLJwAAAAAAAABl"}} +{"Stackframe": {"file": {"name": "FsProbe.java"}, "function": {"name": "org.elasticsearch.monitor.fs.FsInfo$IoStats org.elasticsearch.monitor.fs.FsProbe.ioStats(java.util.Set, org.elasticsearch.monitor.fs.FsInfo)", "offset": 10}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MVBEVPIg9jpvUF6dYB6UegAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "ForkJoinPool.java"}, "function": {"name": "void java.util.concurrent.ForkJoinPool.managedBlock(java.util.concurrent.ForkJoinPool$ManagedBlocker)", "offset": 4}, "line": {"number": 3690}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Upqzzk59PbxypyRs4QkNMAAAAAAAAABY"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "org.elasticsearch.index.mapper.ParsedDocument org.elasticsearch.index.mapper.DocumentParser.parseDocument(org.elasticsearch.index.mapper.SourceToParse, org.elasticsearch.index.mapper.MappingLookup)", "offset": 15}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C17-3NlBpv2arbZiuXnRAQAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.innerParseObject(org.elasticsearch.index.mapper.ParseContext, org.elasticsearch.index.mapper.ObjectMapper, org.elasticsearch.common.xcontent.XContentParser, java.lang.String, org.elasticsearch.common.xcontent.XContentParser$Token)", "offset": 7}, "line": {"number": 388}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gYxqkqlVp6_U5mFkfV4jIAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.monitoring.rest.action.RestMonitoringBulkAction$$Lambda$2434.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UKPJi2EnOGK8xGawpYto8gAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "int[] java.util.Arrays.copyOf(int[], int)"}, "line": {"number": 3585}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EcqKjJFNWzWaobcaIUelIwAAAAAAAADF"}} +{"Stackframe": {"file": {"name": "AbstractQueryBuilder.java"}, "function": {"name": "org.elasticsearch.index.query.QueryBuilder org.elasticsearch.index.query.AbstractQueryBuilder.parseInnerQueryBuilder(org.elasticsearch.common.xcontent.XContentParser, java.lang.Integer)", "offset": 19}, "line": {"number": 309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAABJ"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 8}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GVtE5azmnq7oQE07RxtqrwAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "SearcherManager.java"}, "function": {"name": "org.apache.lucene.search.IndexSearcher org.apache.lucene.search.SearcherManager.refreshIfNeeded(org.apache.lucene.search.IndexSearcher)", "offset": 6}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B1Fik48UGCbX7UauOrd97AAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "void sun.security.ssl.SSLSocketImpl.startHandshake(boolean)", "offset": 18}, "line": {"number": 434}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5eWztjuadZyU6X7HBypcZgAAAAAAAACc"}} +{"Stackframe": {"file": {"name": "TermsAggregatorFactory.java"}, "function": {"name": "org.elasticsearch.search.aggregations.Aggregator org.elasticsearch.search.aggregations.bucket.terms.TermsAggregatorFactory.doCreateInternal(org.elasticsearch.search.aggregations.support.ValuesSource, org.elasticsearch.search.aggregations.Aggregator, boolean, java.util.List, java.util.Map)", "offset": 29}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBwt"}} +{"Stackframe": {"function": {"name": "futex_wake"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XmhyO4LlwHvRxhPCl5OZlwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "GlobalCheckpointSyncAction.java"}, "function": {"name": "void org.elasticsearch.index.seqno.GlobalCheckpointSyncAction.shardOperationOnPrimary(org.elasticsearch.index.seqno.GlobalCheckpointSyncAction$Request, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wfX4W43RcsvFornvkG6aiwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "boolean com.carrotsearch.hppc.ObjectObjectHashMap.equals(java.lang.Object, java.lang.Object)"}, "line": {"number": 1192}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0Bmu_hqLQc2qW5yo4O6HQQAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.writeReaderPool(boolean)", "offset": 6}, "line": {"number": 3915}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SeSHb4DYVqNQaGYUHfay2QAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.map(java.util.Map, boolean, boolean)", "offset": 16}, "line": {"number": 980}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-KR_9gWV9AG0Xu1KPjVnowAAAAAAAABY"}} +{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$TermsDict.(org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer, org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$TermsDictEntry, org.apache.lucene.store.IndexInput)", "offset": 13}, "line": {"number": 1070}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "K3z6VlJKaoVH_PfNkbsLxgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "AbstractQueryBuilder.java"}, "function": {"name": "org.elasticsearch.index.query.QueryBuilder org.elasticsearch.index.query.AbstractQueryBuilder.rewrite(org.elasticsearch.index.query.QueryRewriteContext)"}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_jcNhXlm_4ESbJ83f0qd9AAAAAAAAABq"}} +{"Stackframe": {"file": {"name": "DupDetector.java"}, "function": {"name": "boolean com.fasterxml.jackson.core.json.DupDetector.isDup(java.lang.String)", "offset": 19}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.refresh(java.lang.String, org.elasticsearch.index.engine.Engine$SearcherScope, boolean)", "offset": 12}, "line": {"number": 1685}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qcU64j9X3Y0wz1S1Xdh05AAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "NumberFieldMapper.java"}, "function": {"name": "org.elasticsearch.index.mapper.MappedFieldType org.elasticsearch.index.mapper.NumberFieldMapper.fieldType()"}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JdvIaoH8miVW9zaDiDOZJwAAAAAAAADS"}} +{"Stackframe": {"file": {"name": "ResizeRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.ResizeRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 47}, "line": {"number": 98}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UDU1_CPvfFPVWUEWglidAAAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "IndexTemplateRegistry.java"}, "function": {"name": "void org.elasticsearch.xpack.core.template.IndexTemplateRegistry.addIndexLifecyclePoliciesIfMissing(org.elasticsearch.cluster.ClusterState)", "offset": 3}, "line": {"number": 398}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pqwgV3KyRy1vwalpuADBEgAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.apply(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.support.ActionFilterChain)", "offset": 25}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y75LJ0Nv_hnuhGcPPjegiwAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "HttpChannel.java"}, "function": {"name": "void org.eclipse.jetty.server.HttpChannel.dispatch(javax.servlet.DispatcherType, org.eclipse.jetty.server.HttpChannel$Dispatchable)", "offset": 4}, "line": {"number": 732}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "d1HUDx--zqw--O9SJhCTGgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$6475+0x0000000801c86c20.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kM19RKDjtUYg_445-nhKCQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "boolean org.apache.lucene.codecs.lucene80.IndexedDISI$Method$1.advanceWithinBlock(org.apache.lucene.codecs.lucene80.IndexedDISI, int)", "offset": 3}, "line": {"number": 478}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mGFonAOfO9RTIvyjMIlDYAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct.access$800(org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct, java.lang.String, java.lang.String)"}, "line": {"number": 352}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3zmrnv5FPKfZo6XTe3MvDwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "InternalLock.java"}, "function": {"name": "void jdk.internal.misc.InternalLock.unlock()"}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lXmpkj0zpTSACRNmGcLZdgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.support.AbstractXContentParser.namedObject(java.lang.Class, java.lang.String, java.lang.Object)"}, "line": {"number": 398}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nhJ7WfxXi1VxL-LJV1qh3wAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.StoredFieldsReader org.apache.lucene.codecs.compressing.CompressingStoredFieldsFormat.fieldsReader(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.index.FieldInfos, org.apache.lucene.store.IOContext)"}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TZeXKeFIsAFVFzECyphbeQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService.access$100(org.elasticsearch.cluster.service.MasterService, org.elasticsearch.cluster.service.MasterService$TaskInputs)"}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QmO1C8276OYdXp97CXS3VgAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "RangeQueryBuilder.java"}, "function": {"name": "org.apache.lucene.search.Query org.elasticsearch.index.query.RangeQueryBuilder.doToQuery(org.elasticsearch.index.query.SearchExecutionContext)", "offset": 20}, "line": {"number": 503}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I48brEkgWPSZXqrqrHkPZQAAAAAAAABv"}} +{"Stackframe": {"file": {"name": "TranslogWriter.java"}, "function": {"name": "boolean org.elasticsearch.index.translog.TranslogWriter.syncUpTo(long)", "offset": 19}, "line": {"number": 472}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7pXLIFt09fSjcQsRLxLYogAAAAAAAABf"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.parseLongName(int, int, int)", "offset": 13}, "line": {"number": 1858}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wnT-3kaCOQYfHKOug9rNHQAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "void org.elasticsearch.index.store.Store$StoreDirectory.deleteFile(java.lang.String, java.lang.String)", "offset": 1}, "line": {"number": 699}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_bHlhtihggGRe9cno3Fl0wAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.IndexModule$$Lambda$657+0x0000000800f85dd8.acquireIndexCommitForSnapshot(org.elasticsearch.index.engine.Engine)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Iii-ihJY98hUrLJlGHW9PgAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsReader.java"}, "function": {"name": "org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$SerializedDocument org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader.serializedDocument(int)", "offset": 5}, "line": {"number": 612}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nQWGdRxvqVjwlLmQWH1PhwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FileDispatcherImpl.java"}, "function": {"name": "int sun.nio.ch.FileDispatcherImpl.write(java.io.FileDescriptor, long, int)"}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Pgj_99rlVO9A9q1dsgzW5wAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "TemplateUtils.java"}, "function": {"name": "void org.elasticsearch.xpack.core.template.TemplateUtils.validate(java.lang.String)", "offset": 8}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dXbg8BIrgqcyz9Q7l7InFAAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ObjectParser.parseArray(org.elasticsearch.common.xcontent.XContentParser, org.elasticsearch.common.xcontent.ObjectParser$FieldParser, java.lang.String, java.lang.Object, java.lang.Object)", "offset": 1}, "line": {"number": 511}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "r8runDm4rOcHO76XR-D7jAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.commit()", "offset": 1}, "line": {"number": 3728}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H"}} +{"Stackframe": {"function": {"name": "__netif_receive_skb"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GBJ1zKS_b9jP7AxB92tjCQAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeClusterAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oFGSj80HW27xumhO-X7bOAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ImmutableOpenMap.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.collect.ImmutableOpenMap$Builder.put(java.lang.Object, java.lang.Object)"}, "line": {"number": 333}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjL51"}} +{"Stackframe": {"function": {"name": "dev_hard_start_xmit"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o12usDa-ccgM9QQ_AEcx1QAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.elasticsearch.search.internal.ContextIndexSearcher$1.bulkScorer(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACb"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 29}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fiqNEC4hTNfpjbFJ8zPtkAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.ClusterState$ClusterStateDiff.apply(java.lang.Object)"}, "line": {"number": 734}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_0ASABFzCfxuv_YallgR9QAAAAAAAABv"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ReroutePhase.performLocalAction(org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.cluster.node.DiscoveryNode, org.elasticsearch.cluster.metadata.IndexMetadata)", "offset": 11}, "line": {"number": 910}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Slee4kfqZn4jriwWdPiU4wAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FilterStreamInput.java"}, "function": {"name": "int org.elasticsearch.common.io.stream.FilterStreamInput.readVInt()"}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "okBlt5oedmnS64oAufr-2wAAAAAAAACX"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.xcontent.support.AbstractXContentParser.readValueUnsafe(org.elasticsearch.xcontent.XContentParser$Token, org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier)", "offset": 11}, "line": {"number": 394}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hCJWOdaohdHelEJWcmp16wAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "RoleReferenceIntersection.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authz.store.RoleReferenceIntersection.buildRole(java.util.function.BiConsumer, org.elasticsearch.action.ActionListener)", "offset": 13}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C-NMw9vE7-rFK10EWQYO_wAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.authorizeRequest(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lF0402c3xDTaGy1WpLy7vwAAAAAAAACH"}} +{"Stackframe": {"file": {"name": "Lucene90CompoundFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90CompoundFormat.writeCompoundFile(org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo)", "offset": 23}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "U8y7tkq3OrTv74Jpmv-rDQAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "long org.elasticsearch.index.store.Store$StoreStatsCache.estimateSize(org.apache.lucene.store.Directory)", "offset": 4}, "line": {"number": 1402}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e9VBoOb6ap6y2iBqQXec9wAAAAAAAADn"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.doAddSortedField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 30}, "line": {"number": 667}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fnFonGQxpm_e6wtqJ2HwRwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher.doCheckAndNotify()"}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wzziaDDsT_hLVgnhYSGujgAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Index org.elasticsearch.index.shard.IndexShard.prepareIndexOnReplica(org.elasticsearch.index.mapper.SourceToParse, long, org.elasticsearch.index.VersionType, long, boolean)", "offset": 1}, "line": {"number": 519}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fGOA0JLmMg26rQH30fPUgwAAAAAAAABR"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 10}, "line": {"number": 278}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFydc"}} +{"Stackframe": {"function": {"name": "audit_filter_rules.constprop.21"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-x4xsB-yJ_WKOC_-ysDNoQAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotsService$7.onResponse(org.elasticsearch.repositories.RepositoryData)"}, "line": {"number": 1849}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gfz1ToZobLt1aklyZQg9bAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "void java.util.concurrent.ConcurrentHashMap$ValueIterator.(java.util.concurrent.ConcurrentHashMap$Node[], int, int, int, java.util.concurrent.ConcurrentHashMap)"}, "line": {"number": 3474}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "L-TqhtRJEZh9BowyUbSUxgAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.finish()", "offset": 10}, "line": {"number": 936}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BJDHz_v6MglYWRIxZBsdiQAAAAAAAADq"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$consumeToken$11(org.elasticsearch.xpack.core.security.authc.Realm, org.elasticsearch.action.ActionListener, java.util.Map, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 19}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzzZ"}} +{"Stackframe": {"function": {"name": "__audit_syscall_entry"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MqBIsif3R2mzo0ykDzfhVgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "void org.apache.lucene.index.ReadersAndUpdates.swapNewReaderWithLatestLiveDocs()"}, "line": {"number": 756}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAGv"}} +{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.index.SegmentMerger.merge()", "offset": 42}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "SocketAccess.java"}, "function": {"name": "java.lang.Void org.elasticsearch.repositories.s3.SocketAccess.lambda$doPrivilegedVoid$0(java.lang.Runnable)"}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi6eR"}} +{"Stackframe": {"function": {"name": "__skb_wait_for_more_packets"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "c6sNi_Eq6TRojSYoNgQCiAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DiscoveryNode.java"}, "function": {"name": "void org.elasticsearch.cluster.node.DiscoveryNode.lambda$writeTo$2(org.elasticsearch.common.io.stream.StreamOutput, org.elasticsearch.cluster.node.DiscoveryNodeRole)"}, "line": {"number": 443}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VRveQjGO8lwrNUZEmH77BwAAAAAAAACJ"}} +{"Stackframe": {"file": {"name": "FieldInfos.java"}, "function": {"name": "int org.apache.lucene.index.FieldInfos$FieldNumbers.addOrGet(java.lang.String, int, org.apache.lucene.index.IndexOptions, org.apache.lucene.index.DocValuesType, int, int, int, boolean)", "offset": 11}, "line": {"number": 314}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UGhPK0oju7EvvwLchugW7QAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$getRepositoryData$52(org.elasticsearch.repositories.RepositoryData, org.elasticsearch.cluster.metadata.RepositoryMetadata, org.elasticsearch.action.ActionListener)"}, "line": {"number": 1686}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1wwBJ-HqUIgmrCOrOjJevAAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "SearchActionListener.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchActionListener.onResponse(org.elasticsearch.search.SearchPhaseResult)", "offset": 2}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tcc3nGvWGKhavpq5QMPrpwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$8288+0x0000000802762618.get()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TfA03yzrHeIQP4enYtoe1gAAAAAAAABz"}} +{"Stackframe": {"file": {"name": "SearchTransportService.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchTransportService.sendExecuteQuery(org.elasticsearch.transport.Transport$Connection, org.elasticsearch.search.internal.ShardSearchTransportRequest, org.elasticsearch.action.search.SearchTask, org.elasticsearch.action.search.SearchActionListener)", "offset": 15}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xapGPQ-bTbd2NvmuklXrPAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.concurrent.ThreadContext$$Lambda$6674+0x00000008024079f0.read(org.elasticsearch.common.io.stream.StreamInput)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TTvJ5_z-0po5hbnYEq-wrAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.handleSuccessResponse(com.amazonaws.http.AmazonHttpClient$RequestExecutor$ExecOneRequestParams, org.apache.http.client.protocol.HttpClientContext, int)"}, "line": {"number": 1427}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hlv_ksAXxTQ2GTBcbRb2JwAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "java.util.concurrent.ScheduledFuture java.util.concurrent.ScheduledThreadPoolExecutor.schedule(java.lang.Runnable, long, java.util.concurrent.TimeUnit)", "offset": 6}, "line": {"number": 562}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ii3DfKc87aEj3ekkrQzbAwAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "TraceContext.java"}, "function": {"name": "boolean co.elastic.apm.agent.impl.transaction.TraceContext$4.asChildOf(co.elastic.apm.agent.impl.transaction.TraceContext, java.lang.Object, co.elastic.apm.agent.impl.transaction.TextHeaderGetter)", "offset": 7}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCHp"}} +{"Stackframe": {"function": {"name": "seq_path_root"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0QzQekxDG0sMrfbr_ICYAQAAAAAAAABN"}} +{"Stackframe": {"file": {"name": "CipherBox.java"}, "function": {"name": "byte[] sun.security.ssl.CipherBox.createExplicitNonce(sun.security.ssl.Authenticator, byte, int)", "offset": 10}, "line": {"number": 1015}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "in5v2wJ7XyoS8p4d3X2VHgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "void io.netty.channel.DefaultChannelPipeline$HeadContext.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 1391}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wyrs0b2Xeu1gDeFw9u_zswAAAAAAAABS"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermissionCollection.implies(java.security.Permission)", "offset": 11}, "line": {"number": 1209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lcKpyKbbslpxpIA6-ZigAwAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.fetch.QueryFetchSearchResult org.elasticsearch.search.SearchService.executeFetchPhase(org.elasticsearch.search.internal.ReaderContext, org.elasticsearch.search.internal.SearchContext, long)", "offset": 5}, "line": {"number": 672}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZF4Ah1MmkuF8Sdd7c3MVOAAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "MultiBucketCollector.java"}, "function": {"name": "org.elasticsearch.search.aggregations.LeafBucketCollector org.elasticsearch.search.aggregations.MultiBucketCollector.getLeafCollector(org.apache.lucene.index.LeafReaderContext)", "offset": 3}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ydGLSNwrZw-nu2sK1xpAIwAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard$7.write(java.util.List)"}, "line": {"number": 3731}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gGmahx-heT-ng3OOXwJzzQAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "RetryableAction.java"}, "function": {"name": "void org.elasticsearch.action.support.RetryableAction.run()", "offset": 2}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i8xLrghLCR3CLFjtylOjjAAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "ActorGraphInterpreter.scala"}, "function": {"name": "void akka.stream.impl.fusing.ActorGraphInterpreter.akka$stream$impl$fusing$ActorGraphInterpreter$$processEvent(akka.stream.impl.fusing.ActorGraphInterpreter$BoundaryEvent)", "offset": 3}, "line": {"number": 800}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jBeiHwwOyRIapBbs5J2OjgAAAAAAAABX"}} +{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.onResponse(java.lang.Object)", "offset": 7}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OFvli6IQdK5-vtR_oE3g3gAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.decode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 1}, "line": {"number": 1247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yFWUxFEmttx69t1SIwsMmwAAAAAAAACb"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.handlePrimaryResult(org.elasticsearch.action.support.replication.ReplicationOperation$PrimaryResult)", "offset": 24}, "line": {"number": 152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MPiqnRkhTKv0m8ZZu0GUPQAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "StackTraceElement.java"}, "function": {"name": "java.lang.StackTraceElement[] java.lang.StackTraceElement.of(java.lang.Object, int)", "offset": 6}, "line": {"number": 541}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction)"}, "line": {"number": 312}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "opFI2iPPQrSoKgHSzuYsiwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "AbstractNioChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.flush0()", "offset": 1}, "line": {"number": 354}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "syuAMg3RShupVDY63eHfbQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "NodeClient.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.client.node.NodeClient.executeLocally(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sRqFVRgtIpahqWj1VJMq5wAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "DelegatingChannelPromiseNotifier.java"}, "function": {"name": "void io.netty.channel.DelegatingChannelPromiseNotifier.operationComplete(io.netty.channel.ChannelFuture)", "offset": 3}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N1PQDu1Ay8cMXPJ8jF7fCAAAAAAAAAD6"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.store.IOContext, java.lang.String, org.apache.lucene.codecs.compressing.CompressionMode, int, int, int)", "offset": 23}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I63RT_W0q_XUvwLmcrZgvQAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "Authentication.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.Authentication.writeToContext(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.xpack.security.crypto.CryptoService, org.elasticsearch.common.settings.Settings, org.elasticsearch.Version, boolean)", "offset": 6}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7eR8iwq2rV97lappyryDxwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "PrioritizedEsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.runAndClean(java.lang.Runnable)"}, "line": {"number": 247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zoewjR5W8LM0EekPXrURMgAAAAAAAABi"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "boolean java.lang.String.regionMatches(boolean, int, java.lang.String, int, int)", "offset": 14}, "line": {"number": 1430}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wZ_kr4qwzlJw8PaXZ_kzeQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction$$Lambda$6702+0x0000000801d4d370.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fT0k69QoWDcgSGG9DEbGKQAAAAAAAABU"}} +{"Stackframe": {"file": {"name": "ReaderPool.java"}, "function": {"name": "boolean org.apache.lucene.index.ReaderPool.writeAllDocValuesUpdates()", "offset": 6}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jdrai_0fDiGEvZJybTdZ_gAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ConcurrentMergeScheduler.java"}, "function": {"name": "void org.apache.lucene.index.ConcurrentMergeScheduler.doMerge(org.apache.lucene.index.MergeScheduler$MergeSource, org.apache.lucene.index.MergePolicy$OneMerge)"}, "line": {"number": 639}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mVTx8S_hff78C60ouuBUUAAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.xcontent.json.JsonXContentGenerator.writeRawField(java.lang.String, java.io.InputStream)", "offset": 8}, "line": {"number": 323}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4R-UJEw8a2NxouGShvWOwAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.access$100(org.elasticsearch.transport.TransportService, long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions)"}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "55JJslMiYsQuhlwSNEJPmQAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "InternalTerms.java"}, "function": {"name": "void org.elasticsearch.search.aggregations.bucket.terms.InternalTerms.doWriteTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 3}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_m0BaB7Njen0iXAlXXyURwAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "SearchExecutionContext.java"}, "function": {"name": "org.elasticsearch.index.query.ParsedQuery org.elasticsearch.index.query.SearchExecutionContext.toQuery(org.elasticsearch.index.query.QueryBuilder, org.elasticsearch.core.CheckedFunction)", "offset": 3}, "line": {"number": 522}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zVZBdh_gmAiL5X6tN_0jKgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readMap(org.elasticsearch.common.xcontent.XContentParser)"}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mQBmof6SRRPAHT_GwQNzBAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "MonitoringIndexNameResolver.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.monitoring.resolver.MonitoringIndexNameResolver$Timestamped.template()"}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Is1c660ptsvyJc90Tw_uzQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.lambda$wrapPrimaryOperationPermitListener$22(org.elasticsearch.action.ActionListener, org.elasticsearch.core.Releasable)", "offset": 1}, "line": {"number": 3032}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lUab7RI6M1kcYmpom65WngAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "TransportMonitoringBulkAction.java"}, "function": {"name": "void org.elasticsearch.xpack.monitoring.action.TransportMonitoringBulkAction$AsyncAction.start()"}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAK6uM"}} +{"Stackframe": {"function": {"name": "get_mem_cgroup_from_mm"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jGpW5CwHOoA7hIucEbiLmQAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "Spliterators.java"}, "function": {"name": "boolean java.util.Spliterators$ArraySpliterator.tryAdvance(java.util.function.Consumer)", "offset": 4}, "line": {"number": 1016}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZp"}} +{"Stackframe": {"function": {"name": "audit_filter_syscall.constprop.19"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Dm9DG4ZqDn_4bGJnyMFN4AAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "FileChannel.java"}, "function": {"name": "java.nio.channels.FileChannel java.nio.channels.FileChannel.open(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])", "offset": 1}, "line": {"number": 298}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8VQNjJHt4dBRU5VSN3KkiQAAAAAAAAEC"}} +{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "void org.apache.lucene.index.SegmentReader.(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.SegmentReader, org.apache.lucene.util.Bits, org.apache.lucene.util.Bits, int, boolean)", "offset": 21}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "f15ZZuvJposXWOcmbKQgxAAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "FileChannel.java"}, "function": {"name": "java.nio.channels.FileChannel java.nio.channels.FileChannel.open(java.nio.file.Path, java.nio.file.OpenOption[])", "offset": 6}, "line": {"number": 363}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4dIwNpyNQOyQPjDgfjNvLgAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "JarURLConnection.java"}, "function": {"name": "void sun.net.www.protocol.jar.JarURLConnection.connect()", "offset": 2}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "K0flqZKMYgGhD375agfmDQAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService$Batcher.run(java.lang.Object, java.util.List, java.lang.String)", "offset": 2}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1pEcO9CYkxI799CldX3uowAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "BatchEventProcessor.java"}, "function": {"name": "void com.lmax.disruptor.BatchEventProcessor.processEvents()", "offset": 7}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0x-UDWXgJuxMxIbzLxwzzQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FilterStreamInput.java"}, "function": {"name": "byte org.elasticsearch.common.io.stream.FilterStreamInput.readByte()"}, "line": {"number": 30}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "V2scYnOfxIMJlGAZyHanJwAAAAAAAAB4"}} +{"Stackframe": {"file": {"name": "PackedInts.java"}, "function": {"name": "void org.apache.lucene.util.packed.PackedInts.copy(org.apache.lucene.util.packed.PackedInts$Reader, int, org.apache.lucene.util.packed.PackedInts$Mutable, int, int, int)", "offset": 10}, "line": {"number": 1122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IpdJ0jKEIlGYoFbGaUItnwAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "SegmentInfos.java"}, "function": {"name": "void org.apache.lucene.index.SegmentInfos.write(org.apache.lucene.store.Directory)", "offset": 15}, "line": {"number": 487}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hUTCUJp2TXU8cmsY31FJGAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.access$000(org.elasticsearch.action.search.FetchSearchPhase)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1WFWJQ-5eNvfc5VEhr7whQAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct.putResponse(java.lang.String, java.lang.String, java.util.function.Function)", "offset": 6}, "line": {"number": 446}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "adwgcL-TZ_xxbrmGnweaWQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "void java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$1.(java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet)", "offset": 1}, "line": {"number": 1673}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N3m7ttZ3oTXaEB1cOsBlRQAAAAAAAAAv"}} +{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "org.elasticsearch.index.Index[] org.elasticsearch.cluster.metadata.IndexNameExpressionResolver.concreteIndices(org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.IndicesRequest, long)", "offset": 12}, "line": {"number": 324}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaQ6"}} +{"Stackframe": {"function": {"name": "handle_mm_fault"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3TPttQJEnBLdbxWIzlHkewAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.acquirePrimaryOperationPermit(org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 1090}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUA0s"}} +{"Stackframe": {"function": {"name": "blkcg_print_blkgs"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kOY-QLCab90APtsAsauGrgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4TcpChannel$$Lambda$5316+0x0000000801a8fb48.operationComplete(io.netty.util.concurrent.Future)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Bbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.callDecode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 18}, "line": {"number": 446}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DRFJdePdVhpMBVu08qX2qgAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "Phase.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.Phase org.elasticsearch.xpack.core.ilm.Phase.lambda$static$0(java.lang.Object[], java.lang.String)", "offset": 1}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JmbV-AH56XNUdA5-wxAqIAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "EsExecutors.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.EsExecutors$1.execute(java.lang.Runnable)"}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AC193D4pyhWuZ3IlH4DcEgAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$1$$Lambda$1774.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xRRpstX06zlN2uNvmCHGyAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "MemorySegmentIndexInput.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.apache.lucene.store.MemorySegmentIndexInput$SingleSegmentImpl.slice(java.lang.String, long, long)"}, "line": {"number": 454}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DfjmuQiW-eZjkaL1IV_ESQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotsService$UpdateSnapshotStatusAction.masterOperation(org.elasticsearch.action.support.master.MasterNodeRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)"}, "line": {"number": 4070}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WLOUsm-IsQxvoTcefLktBQAAAAAAAABj"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "java.lang.Object java.util.stream.ReferencePipeline.collect(java.util.stream.Collector)", "offset": 10}, "line": {"number": 684}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KoZCqsyM0sKzmLSHhW2LPgAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$DirectResponseChannel.sendResponse(org.elasticsearch.transport.TransportResponse)", "offset": 6}, "line": {"number": 1336}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PVc6RpxG1qL5zo_yzS9QWwAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService.publish(org.elasticsearch.cluster.ClusterStatePublicationEvent, org.elasticsearch.cluster.coordination.ClusterStatePublisher$AckListener, org.elasticsearch.action.ActionListener)", "offset": 6}, "line": {"number": 470}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oEroAMNNQ8CbyJb3fKpwIgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "EPollArrayWrapper.java"}, "function": {"name": "void sun.nio.ch.EPollArrayWrapper.interrupt(int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Executors.java"}, "function": {"name": "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()"}, "line": {"number": 577}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YqSD5Hl57zxJljwXyAsavwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$6477+0x0000000801c87088.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E412ubC6vIkVnhrQF2Kv0QAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "IndicesQueryCache.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.elasticsearch.indices.IndicesQueryCache$CachingWeightWrapper.scorerSupplier(org.apache.lucene.index.LeafReaderContext)", "offset": 1}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Pw0lwfQZQc0MOiG5MIrhJAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeMap(org.elasticsearch.common.collect.ImmutableOpenMap)"}, "line": {"number": 637}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBAu"}} +{"Stackframe": {"function": {"name": "xen_hvm_callback_vector"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9kPyGC0UFb-ggUrmSlRB2gAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "boolean io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)", "offset": 11}, "line": {"number": 404}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0l6kg1DOc87uEKp4jfqgpwAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.dataformat.smile.SmileParser.getText()", "offset": 6}, "line": {"number": 1072}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AC6sIDdQuWlno6mhwaFiZwAAAAAAAAEH"}} +{"Stackframe": {"file": {"name": "Lucene60FieldInfosFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene60.Lucene60FieldInfosFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.index.FieldInfos, org.apache.lucene.store.IOContext)", "offset": 29}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pw39aHPM6ZVCFZXiDRezsgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.xcontent.json.JsonXContentGenerator.writeString(java.lang.String)"}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DliY6tssVncRZTUK_C4ajAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "ReferenceCountUtil.java"}, "function": {"name": "java.lang.Object io.netty.util.ReferenceCountUtil.touch(java.lang.Object, java.lang.Object)", "offset": 1}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vX-mC67g6JXGX3gq3Q5XWAAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$10(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.xpack.security.audit.AuditTrail, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 426}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "amhiroi9lH-AuCvUISnaLwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TransportNodesInfoAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction.nodeOperation(org.elasticsearch.transport.TransportRequest, org.elasticsearch.tasks.Task)"}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtss"}} +{"Stackframe": {"function": {"name": "complete"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.mergeMiddle(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergePolicy)", "offset": 72}, "line": {"number": 4757}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o8rqfKK5bLlXTh-ItgR3_AAAAAAAAABb"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.unknownValue(java.lang.Object)", "offset": 13}, "line": {"number": 815}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6DR1g1ntOxmr30J0BBvOfAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "boolean org.elasticsearch.rest.RestController.handleNoHandlerFound(java.lang.String, org.elasticsearch.rest.RestRequest$Method, java.lang.String, org.elasticsearch.rest.RestChannel)"}, "line": {"number": 282}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnv"}} +{"Stackframe": {"function": {"name": "net_rx_action"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKC"}} +{"Stackframe": {"function": {"name": "futex_wait"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zJS1ch2PqqsLX8q5Wj0t7wAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsReader.java"}, "function": {"name": "long org.apache.lucene.codecs.blocktree.BlockTreeTermsReader.ramBytesUsed()", "offset": 1}, "line": {"number": 319}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XODh_PNTdI03DfbDbvh0RQAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "java.nio.ByteBuffer sun.security.ssl.SSLSocketImpl.readApplicationRecord(java.nio.ByteBuffer)", "offset": 9}, "line": {"number": 1444}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2O82_08jyA2A5hrIvRAWzgAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "RandomAccessFile.java"}, "function": {"name": "void java.io.RandomAccessFile.readFully(byte[], int, int)", "offset": 2}, "line": {"number": 468}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nyMCPt5M-rbb158Tnrz3sgAAAAAAAAE1"}} +{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriterPerThread.sealFlushedSegment(org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 54}, "line": {"number": 498}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tHSZmvQyPXNnLCLQcNVJtwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "SegmentTermsEnum.java"}, "function": {"name": "org.apache.lucene.codecs.blocktree.SegmentTermsEnumFrame org.apache.lucene.codecs.blocktree.SegmentTermsEnum.getFrame(int)"}, "line": {"number": 211}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAKU"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 72}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pz26RZIIszjYMjtzkRg4ogAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.doAddSortedField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)"}, "line": {"number": 499}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qjaz-3R5MGuHG8xBpiPquAAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "SegmentDocValues.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesProducer org.apache.lucene.index.SegmentDocValues.getDocValuesProducer(long, org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos)", "offset": 2}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7WnwRMuT5uBVEeQvchhCRAAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "BytesReference.java"}, "function": {"name": "void org.elasticsearch.common.bytes.BytesReference.writeTo(java.io.OutputStream)", "offset": 3}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3cy7MJJaHXkqSAQ460kolwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.bulk.TransportShardBulkAction$$Lambda$7422+0x0000000801f19e08.get()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF7"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 80}, "line": {"number": 324}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xzImn0o_mZVH7TtiAowasAAAAAAAAABh"}} +{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.StandardDirectoryReader.open(org.apache.lucene.index.IndexWriter, org.apache.lucene.index.SegmentInfos, boolean, boolean)", "offset": 18}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QQ-UobY6DFPGcpuf-3bTQAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "DefaultBHttpClientConnection.java"}, "function": {"name": "boolean org.apache.http.impl.DefaultBHttpClientConnection.isResponseAvailable(int)", "offset": 2}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Su5A3ytRNpUaqJtDPFtJoAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.apache.lucene.index.IndexWriter$$Lambda$6660+0x0000000801d83830.apply(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nUlR4gFV1TL9_w5t2UfESQAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation$1.onResponse(java.lang.Void)", "offset": 1}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kTJVCBjDfmFAPRrGLStltQAAAAAAAACP"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.extractToken(java.util.function.Consumer)", "offset": 20}, "line": {"number": 455}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WHt2sjXXBXmxk_WhY3xuqQAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "java.nio.ByteBuffer sun.security.ssl.SSLSocketImpl.readApplicationRecord(java.nio.ByteBuffer)", "offset": 9}, "line": {"number": 1465}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CqHdoNRupr5ud0SEqGGzcgAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "ResourceWatcherService.java"}, "function": {"name": "void org.elasticsearch.watcher.ResourceWatcherService$ResourceMonitor.run()", "offset": 2}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h7IE8LZSIUd912gM4pUUUAAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "S3RequestEndpointResolver.java"}, "function": {"name": "boolean com.amazonaws.services.s3.internal.S3RequestEndpointResolver.shouldUseVirtualAddressing(java.net.URI)", "offset": 1}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bYxYe2jgm-ZVQ1wIKl60VgAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.unwrap(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 15}, "line": {"number": 506}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RzjbtVKcKAJORTMSkyG2eQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.inboundMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage)"}, "line": {"number": 829}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l8_muRLFlOvTUC1a0tSuzwAAAAAAAABX"}} +{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.write(org.apache.lucene.index.Fields)", "offset": 17}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dRwl39wiwpK9-zrDh4fLcgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "MappingMetadata.java"}, "function": {"name": "java.util.Map org.elasticsearch.cluster.metadata.MappingMetadata.getSourceAsMap()"}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0hcFUvwWZfQvp2KtSe1TEQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.authenticateAsync()"}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w2b8aJArzOq-8nt8TQScxwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "int java.util.Arrays.compareUnsigned(byte[], int, int, byte[], int, int)"}, "line": {"number": 5919}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DvnksL7QDssoGl1VYPV1EwAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes sun.nio.fs.UnixFileSystemProvider.readAttributes(java.nio.file.Path, java.lang.Class, java.nio.file.LinkOption[])", "offset": 8}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACc6R"}} +{"Stackframe": {"function": {"name": "__raw_spin_unlock_irq"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "493G4lGxxLfYXMqOHIciJwAAAAAAAAEE"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "java.util.Set org.elasticsearch.xpack.security.authz.RBACEngine.resolveAuthorizedIndicesFromRole(org.elasticsearch.xpack.core.security.authz.permission.Role, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.util.Map)", "offset": 23}, "line": {"number": 554}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "prbfaPuvU_n-ucbpjQxQ_AAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.IndexWriter.lambda$getReader$0(long, java.util.Map, org.apache.lucene.index.SegmentCommitInfo)", "offset": 3}, "line": {"number": 536}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Zr166QHbSYbZh56patrJTAAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "DeltaPackedLongValues.java"}, "function": {"name": "void org.apache.lucene.util.packed.DeltaPackedLongValues$Builder.pack(long[], int, int, float)", "offset": 7}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0h29bG9GloE7lpAkXsQGDwAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "JsonXContent.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentParser org.elasticsearch.xcontent.json.JsonXContent.createParser(org.elasticsearch.xcontent.NamedXContentRegistry, org.elasticsearch.xcontent.DeprecationHandler, byte[], int, int)", "offset": 3}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-0evKJDf6RH7Cjp24ibpGwAAAAAAAABp"}} +{"Stackframe": {"file": {"name": "DslJsonSerializer.java"}, "function": {"name": "void co.elastic.apm.agent.report.serialize.DslJsonSerializer.serializeSpan(co.elastic.apm.agent.impl.transaction.Span)", "offset": 12}, "line": {"number": 755}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vTiT6RQHSjUNEBuIvfofKgAAAAAAAABR"}} +{"Stackframe": {"file": {"name": "DeflaterOutputStream.java"}, "function": {"name": "void java.util.zip.DeflaterOutputStream.write(byte[], int, int)", "offset": 11}, "line": {"number": 210}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bcm3REG58b46CBv8_xMfuwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "org.elasticsearch.common.xcontent.ToXContent org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.read(java.lang.String, org.elasticsearch.common.blobstore.BlobContainer, java.lang.String, org.elasticsearch.common.xcontent.NamedXContentRegistry)", "offset": 1}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qgT1G94i7OMCDzibJAJ1dgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$DirectResponseChannel.processResponse(org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 1356}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XfH1sbSxEuiQC9e5gcEKzQAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.s3.S3BlobContainer.lambda$writeBlob$1(long, java.lang.String, java.io.InputStream)", "offset": 1}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApyVc"}} +{"Stackframe": {"function": {"name": "__mutex_lock.isra.10"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABY"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.xcontent.support.AbstractXContentParser.readMapEntries(org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier, java.util.Map)", "offset": 7}, "line": {"number": 320}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9s9slFTRs3KIVQdo-wyVugAAAAAAAAIY"}} +{"Stackframe": {"file": {"name": "RecoverySourceHandler.java"}, "function": {"name": "void org.elasticsearch.indices.recovery.RecoverySourceHandler.recoverToTarget(org.elasticsearch.action.ActionListener)", "offset": 114}, "line": {"number": 280}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAK6fD"}} +{"Stackframe": {"function": {"name": "memcg_stat_show"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9Yx-v1soY3obBM9enH73ogAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase$1.doRun()"}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Q6BTqglgEur1JnwgYj4wmAAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "LocalExporter.java"}, "function": {"name": "org.elasticsearch.xpack.monitoring.exporter.local.LocalBulk org.elasticsearch.xpack.monitoring.exporter.local.LocalExporter.resolveBulk(org.elasticsearch.cluster.ClusterState, boolean)", "offset": 13}, "line": {"number": 200}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bem31qqzjUFpI7bh8w8-nQAAAAAAAACj"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.finishCommit()", "offset": 30}, "line": {"number": 3822}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SdUzkeL9_v2VezVxWgWRqAAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.flush()", "offset": 3}, "line": {"number": 239}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALoLB"}} +{"Stackframe": {"function": {"name": "getname"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dRMG3BjNfH2se-egabnU-QAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "IngestService.java"}, "function": {"name": "void org.elasticsearch.ingest.IngestService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 9}, "line": {"number": 693}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HdbjDGqcyeXdawK4ayl-8QAAAAAAAACv"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequestInternal(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 28}, "line": {"number": 850}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAME"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.prepareCommitInternal()", "offset": 130}, "line": {"number": 3460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Olb164JexhSMm0UtBL_VygAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "OutputStreamIndexOutput.java"}, "function": {"name": "long org.apache.lucene.store.OutputStreamIndexOutput.getChecksum()"}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XdG0dvGZNE9EiogDM70KjQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.write(byte[], int, int)"}, "line": {"number": 516}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pjc1-JTccEPjdmvL7IyGRgAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$6480+0x0000000801c874e8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iO8S4ZDXPufD6TNmOY29JAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "void org.elasticsearch.common.io.Streams$FlushOnCloseOutputStream.writeBytes(byte[], int, int)"}, "line": {"number": 274}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7jYCNzkb9MmHUrU5CHQXAwAAAAAAAACk"}} +{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendRequest(org.elasticsearch.cluster.node.DiscoveryNode, org.elasticsearch.transport.TcpChannel, long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.Version, boolean, boolean)", "offset": 21}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dymPrMwSHJkE00arRNB68AAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction.lambda$finishHim$0()"}, "line": {"number": 267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p0_NTCpSk9QXa6fNd9afdwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.IndexWriter$1$$Lambda$5242+0x0000000801a61820.process(org.apache.lucene.index.IndexWriter)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "L8d7ZrNDNNkKQuLYAtJHoAAAAAAAAACV"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.engine.InternalEngine.indexIntoLucene(org.elasticsearch.index.engine.Engine$Index, org.elasticsearch.index.engine.InternalEngine$IndexingStrategy)", "offset": 9}, "line": {"number": 606}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GY8FzW1zmT9O6Iy3KHcGZQAAAAAAAAF7"}} +{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode$GCMDecrypt.doFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 53}, "line": {"number": 1572}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "t4nV0UqksCicoYQITIw3KgAAAAAAAAB-"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser._finishAndReturnString()", "offset": 24}, "line": {"number": 2469}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QO3p3TG-d9_GDkJGiXDItQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "org.elasticsearch.cluster.Diff org.elasticsearch.cluster.ClusterState.readDiffFrom(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.node.DiscoveryNode)"}, "line": {"number": 752}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nPSuZSGoA22y5gsINYeZDgAAAAAAAAH7"}} +{"Stackframe": {"file": {"name": "EatWhatYouKill.java"}, "function": {"name": "boolean org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(boolean)", "offset": 129}, "line": {"number": 315}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1WldWE0hyfvqjPz-ty_czQAAAAAAAABZ"}} +{"Stackframe": {"file": {"name": "AbstractAsyncTask.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractAsyncTask.rescheduleIfNecessary()", "offset": 10}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2mls36J-19MRabNbSCaaCwAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "Inflater.java"}, "function": {"name": "int java.util.zip.Inflater.inflate(byte[], int, int)", "offset": 10}, "line": {"number": 373}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbj4"}} +{"Stackframe": {"function": {"name": "vfs_statx"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFX"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncPrimaryAction.runWithPrimaryShardReference(org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryShardReference)", "offset": 66}, "line": {"number": 421}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB"}} +{"Stackframe": {"function": {"name": "seq_read"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NTpNzO80FoolhzIYxlwSqQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "org.elasticsearch.cluster.DiffableUtils$MapDiff org.elasticsearch.cluster.DiffableUtils.diff(org.elasticsearch.common.collect.ImmutableOpenMap, org.elasticsearch.common.collect.ImmutableOpenMap, org.elasticsearch.cluster.DiffableUtils$KeySerializer)", "offset": 1}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2bocF2PaQb-4x21c82XN2wAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "BufferedInputStream.java"}, "function": {"name": "int java.io.BufferedInputStream.implRead()", "offset": 1}, "line": {"number": 289}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GXtNt3Bw_FnzVg6vpA0KtgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "ForkJoinPool.java"}, "function": {"name": "void java.util.concurrent.ForkJoinPool.unmanagedBlock(java.util.concurrent.ForkJoinPool$ManagedBlocker)", "offset": 1}, "line": {"number": 3745}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zAEpMWy9RmzsKDLga2bS_QAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "void java.util.Arrays.fill(byte[], byte)"}, "line": {"number": 3286}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.resolveAuthorizationInfo(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Tlw414lD5V7AUUaR2nBa8gAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask.run()"}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W4fRUywM1R6k-YZN0urJjAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Transaction.java"}, "function": {"name": "co.elastic.apm.agent.impl.transaction.Transaction co.elastic.apm.agent.impl.transaction.Transaction.start(co.elastic.apm.agent.impl.transaction.TraceContext$ChildContextCreatorTwoArg, java.lang.Object, java.lang.Object, long, co.elastic.apm.agent.impl.sampling.Sampler)"}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Dg0i2lYRLQUln2hBXrJbCwAAAAAAAACk"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.sendResponse(org.elasticsearch.Version, java.lang.Object, org.elasticsearch.transport.TransportResponse, long, java.lang.String, org.elasticsearch.transport.TransportResponseOptions, byte)", "offset": 22}, "line": {"number": 1205}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ev0SJ_PFdgv9NYHa9effJgAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "RestCancellableNodeClient.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestCancellableNodeClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 2}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZN759WSZ9POEYgWN0dzlTQAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "AbstractBigArray.java"}, "function": {"name": "byte[] org.elasticsearch.common.util.AbstractBigArray.newBytePage(int)", "offset": 1}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "f8AX8nZ-lp_iU67C5ubGNwAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "Cipher.java"}, "function": {"name": "int javax.crypto.Cipher.doFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 14}, "line": {"number": 2500}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "FutureTask.java"}, "function": {"name": "void java.util.concurrent.FutureTask.run()", "offset": 9}, "line": {"number": 264}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CYmmifTlP7qDv4TsTU1LUAAAAAAAAAC6"}} +{"Stackframe": {"file": {"name": "TransportContext.java"}, "function": {"name": "void sun.security.ssl.TransportContext.kickstart()", "offset": 33}, "line": {"number": 249}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sTWJo6_vn8knb1fsiPDBcwAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor.sendWithUser(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportInterceptor$AsyncSender)", "offset": 11}, "line": {"number": 421}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qYA0yXrjfQUiViGsCwfP0gAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken()"}, "line": {"number": 722}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9PmXvHucczCVlI0S70oJBQAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.action.support.TransportAction.execute(org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 8}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4JQqkFvm0YZvatJnibQXiAAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run()", "offset": 2}, "line": {"number": 718}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uwSrGXrIlilHG9LeAbu8sgAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.lambda$consumeToken$4(org.elasticsearch.xpack.core.security.authc.AuthenticationToken, java.util.concurrent.atomic.AtomicReference, java.util.concurrent.atomic.AtomicReference, long, org.elasticsearch.xpack.security.authc.Authenticator$Context, java.util.Map, org.elasticsearch.xpack.core.security.authc.Realm, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 147}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "f_rIvCQMW5oayMPHCj4aUgAAAAAAAADh"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "int java.io.FilePermission.containsPath(java.nio.file.Path, java.nio.file.Path)", "offset": 55}, "line": {"number": 757}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mdtLbTGS2m1_yRWrZMRMMwAAAAAAAAII"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "void org.elasticsearch.search.SearchService.parseSource(org.elasticsearch.search.DefaultSearchContext, org.elasticsearch.search.builder.SearchSourceBuilder, boolean)", "offset": 77}, "line": {"number": 1014}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "la-ABesqjo5PfHY2Zk-hLgAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService.(org.elasticsearch.index.IndexSettings, org.elasticsearch.env.NodeEnvironment, org.elasticsearch.common.xcontent.NamedXContentRegistry, org.elasticsearch.index.similarity.SimilarityService, org.elasticsearch.index.IndexService$ShardStoreDeleter, org.elasticsearch.index.analysis.AnalysisRegistry, org.elasticsearch.index.engine.EngineFactory, org.elasticsearch.indices.breaker.CircuitBreakerService, org.elasticsearch.common.util.BigArrays, org.elasticsearch.threadpool.ThreadPool, org.elasticsearch.script.ScriptService, org.elasticsearch.cluster.service.ClusterService, org.elasticsearch.client.Client, org.elasticsearch.index.cache.query.QueryCache, org.elasticsearch.index.store.IndexStore, org.elasticsearch.index.shard.IndexEventListener, org.elasticsearch.index.IndexModule$IndexSearcherWrapperFactory, org.elasticsearch.indices.mapper.MapperRegistry, org.elasticsearch.indices.fielddata.cache.IndicesFieldDataCache, java.util.List, java.util.List)", "offset": 38}, "line": {"number": 145}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jsLLxIAhtu1IcuCmLP4yNgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportShardRefreshAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction.shardOperationOnPrimary(org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mxNhetCUxYQZQBlbqXLWtAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "java.lang.Object com.carrotsearch.hppc.ObjectObjectHashMap$ValuesIterator.fetch()"}, "line": {"number": 943}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u4vqxWKlKO7QUS6KhfhZ-wAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "TermQuery.java"}, "function": {"name": "org.apache.lucene.index.TermsEnum org.apache.lucene.search.TermQuery$TermWeight.getTermsEnum(org.apache.lucene.index.LeafReaderContext)", "offset": 3}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjD-P"}} +{"Stackframe": {"function": {"name": "dev_get_stats"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eRljlBhZopdiZAys9KOsTAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "BytesArray.java"}, "function": {"name": "byte org.elasticsearch.common.bytes.BytesArray.get(int)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eLZcmkguwR8Cgi2RzPcV7gAAAAAAAACf"}} +{"Stackframe": {"file": {"name": "LRUQueryCache.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight.scorerSupplier(org.apache.lucene.index.LeafReaderContext)", "offset": 26}, "line": {"number": 746}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BJf_YwgHp7Yg-TjdIMYP_AAAAAAAAAC0"}} +{"Stackframe": {"file": {"name": "TransportGetSnapshotsAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.snapshots.get.TransportGetSnapshotsAction.getSingleRepoSnapshotInfo(org.elasticsearch.cluster.SnapshotsInProgress, java.lang.String, java.lang.String[], boolean, boolean, org.elasticsearch.tasks.CancellableTask, org.elasticsearch.action.admin.cluster.snapshots.get.GetSnapshotsRequest$SortBy, org.elasticsearch.action.admin.cluster.snapshots.get.GetSnapshotsRequest$After, int, org.elasticsearch.search.sort.SortOrder, org.elasticsearch.action.ActionListener)", "offset": 15}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "puQkFDz8_jnH98S3xQfURAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TransportMonitoringBulkAction.java"}, "function": {"name": "void org.elasticsearch.xpack.monitoring.action.TransportMonitoringBulkAction.doExecute(org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "simybevA8DW5tgv6lrGi5AAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.access$1900(io.netty.channel.AbstractChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4GtqB27Vl3drRtp5csOpewAAAAAAAACI"}} +{"Stackframe": {"file": {"name": "LaxContentLengthStrategy.java"}, "function": {"name": "long org.apache.http.impl.entity.LaxContentLengthStrategy.determineLength(org.apache.http.HttpMessage)", "offset": 28}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MMAujfe9xzktoHyDqw_cGgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.DefaultChannelPipeline.writeAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 1020}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JJq_lJKXq3LjYiqODd2ceQAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "JavaDateMathParser.java"}, "function": {"name": "java.time.Instant org.elasticsearch.common.time.JavaDateMathParser.parse(java.lang.String, java.util.function.LongSupplier, boolean, java.time.ZoneId)", "offset": 3}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QBBzcWlTfzWnm6IfkSXEKwAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.deserialize(java.lang.String, org.elasticsearch.xcontent.NamedXContentRegistry, java.io.InputStream)", "offset": 2}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TransportNodesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation(org.elasticsearch.transport.TransportRequest, org.elasticsearch.tasks.Task)"}, "line": {"number": 32}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_RXItxjZY1fxMf77PZ043AAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "LocalBulk.java"}, "function": {"name": "void org.elasticsearch.xpack.monitoring.exporter.local.LocalBulk.doAdd(java.util.Collection)", "offset": 12}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YM_gl0OeNbTAtY8GRC8UVgAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 8}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YY6rmsokuP0BKno7mbtScAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$SetFromMap.remove(java.lang.Object)"}, "line": {"number": 5460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bsyDek069Ex-p_WmJk4qUwAAAAAAAABm"}} +{"Stackframe": {"file": {"name": "MappingStats.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.stats.MappingStats org.elasticsearch.action.admin.cluster.stats.MappingStats.of(org.elasticsearch.cluster.metadata.Metadata, java.lang.Runnable)", "offset": 14}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9RLReftQjqEbCrOzjF5TiwAAAAAAAACa"}} +{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.executeNextPhase(org.elasticsearch.action.search.SearchPhase, org.elasticsearch.action.search.SearchPhase)", "offset": 16}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oow_X2y8CguzT6l5exV_aAAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.handler.ssl.SslHandler$SslEngineType$3.allocateWrapBuffer(io.netty.handler.ssl.SslHandler, io.netty.buffer.ByteBufAllocator, int, int)"}, "line": {"number": 312}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bMzaZATN1l7AUFoobYOAAgAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.lambda$getRoles$1(org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.permission.Role)", "offset": 9}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-L6AWYpz_33u8acGuhOGDQAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "ChunkedToXContentHelper.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.common.xcontent.ChunkedToXContentHelper.lambda$xContentValuesMap$9(java.util.Map$Entry, org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dtBXhZ-luS3XxwtqeSJndgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction$2.finishRequest()"}, "line": {"number": 233}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7jEiTNMaubPBqDqJ10fz9QAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.xcontent.XContentBuilder.close()"}, "line": {"number": 1129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7mriOKfPxEedu-U5xcOHzQAAAAAAAADo"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 29}, "line": {"number": 301}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1uyqX7gDw_vBe3Aou2wnuwAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "void java.util.Arrays.sort(java.lang.Object[], int, int, java.util.Comparator)", "offset": 7}, "line": {"number": 1512}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "c6zhheBld8wEBO7TlhnPcgAAAAAAAABC"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.handlePrimaryRequest(org.elasticsearch.action.support.replication.TransportReplicationAction$ConcreteShardRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 11}, "line": {"number": 355}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wcwS_jKe-J8ZEpRM7gaB2wAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "FilterDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.FilterDirectoryReader.doOpenIfChanged()"}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vB5-VFNxmRTipezH9t4OWQAAAAAAAABX"}} +{"Stackframe": {"file": {"name": "SSLEngineInputRecord.java"}, "function": {"name": "sun.security.ssl.Plaintext[] sun.security.ssl.SSLEngineInputRecord.decode(java.nio.ByteBuffer)", "offset": 25}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "void org.elasticsearch.search.SearchService.loadOrExecuteQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.search.internal.SearchContext)"}, "line": {"number": 453}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "afsxKVvoOFfmdjpMFdkeLAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "java.lang.Runnable org.apache.lucene.util.bkd.BKDWriter$OneDimensionBKDWriter.finish()", "offset": 1}, "line": {"number": 589}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tKw1MOs57-P0NtuUhrlgBAAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "void java.util.TreeMap$ValueSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 8}, "line": {"number": 3215}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Cja8VfWo4RLA9wiLOJNheQAAAAAAAACY"}} +{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "long org.apache.lucene.index.DocumentsWriter.flushAllThreads()", "offset": 23}, "line": {"number": 653}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Lq5m9KEJy8LZZKxQPveNBAAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "S3RequestEndpointResolver.java"}, "function": {"name": "java.net.URI com.amazonaws.services.s3.internal.S3RequestEndpointResolver.convertToVirtualHostEndpoint(java.net.URI, java.lang.String)"}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0Og38EZo1V7Xaj5UHUpXuQAAAAAAAABi"}} +{"Stackframe": {"file": {"name": "OTelSpanBuilder.java"}, "function": {"name": "io.opentelemetry.api.trace.Span co.elastic.apm.agent.opentelemetry.sdk.OTelSpanBuilder.startSpan()", "offset": 10}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bp2VGPiYdXtH-r2DFiQP0QAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "java.util.Iterator java.util.AbstractMap$2.iterator()"}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "El8e1KDnRSx78JGf4h_r2gAAAAAAAAD0"}} +{"Stackframe": {"file": {"name": "ObjectName.java"}, "function": {"name": "void javax.management.ObjectName.setCanonicalName(char[], char[], java.lang.String[], java.util.Map, int, int)", "offset": 44}, "line": {"number": 837}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N8EaJBp59RHZ5cTYR_Dm5gAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "void io.netty.channel.DefaultChannelPipeline$HeadContext.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 1367}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sGGIttrx5Ue0y4BE91jU_QAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "Cache.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.cache.Cache.get(java.lang.Object, long, java.util.function.Consumer)", "offset": 1}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JUARmndao0aHauFQK7obFgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportAutoPutMappingAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.mapping.put.TransportAutoPutMappingAction.masterOperation(org.elasticsearch.action.support.master.MasterNodeRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)"}, "line": {"number": 33}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zo2rYxi4MhJ1lvaG9--jQgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "URI.java"}, "function": {"name": "int java.net.URI$Parser.parseHostname(int, int)", "offset": 6}, "line": {"number": 3481}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gTkKo96ASvMgXyPTt69aMQAAAAAAAAN6"}} +{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.cluster.ClusterState.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 100}, "line": {"number": 418}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oyOPCAIGwaEIvRtPGG_P1AAAAAAAAAER"}} +{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.getRoles(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)", "offset": 37}, "line": {"number": 279}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAASKF"}} +{"Stackframe": {"function": {"name": "do_ii_write_lock"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "G8dGr5IRBKlUa63ayAjDEQAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "IndexTemplateRegistry.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.template.IndexTemplateRegistry.componentTemplatesExist(org.elasticsearch.cluster.ClusterState, org.elasticsearch.xpack.core.template.IndexTemplateConfig)", "offset": 1}, "line": {"number": 292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pokhquvW9ooLc3LbDvwZ4AAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "AsyncTwoPhaseIndexer.java"}, "function": {"name": "void org.elasticsearch.xpack.core.indexing.AsyncTwoPhaseIndexer.lambda$maybeTriggerAsyncJob$5(long)"}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vfQyY8YDfkSdAL5L2iEyeAAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "ResourceLeakDetector.java"}, "function": {"name": "void io.netty.util.ResourceLeakDetector$DefaultResourceLeak.(java.lang.Object, java.lang.ref.ReferenceQueue, java.util.Set)", "offset": 10}, "line": {"number": 382}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Xo7g-Y5QcR1vwA7ORZK_pAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DataOutput.java"}, "function": {"name": "void org.apache.lucene.store.DataOutput.writeString(java.lang.String)"}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hbRa_Mv_nNX73QDH-O5j0QAAAAAAAABp"}} +{"Stackframe": {"file": {"name": "CompletionFieldStats.java"}, "function": {"name": "org.elasticsearch.search.suggest.completion.CompletionStats org.elasticsearch.search.suggest.completion.CompletionFieldStats.completionStats(org.apache.lucene.index.IndexReader, java.lang.String[])", "offset": 10}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "huTO9r9yWJ6J0VGaFeZs5gAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService.syncRetentionLeases()"}, "line": {"number": 957}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BdRp2_G2D_8XBU2CKdGO6gAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "SearchRequest.java"}, "function": {"name": "org.elasticsearch.action.search.SearchRequest org.elasticsearch.action.search.SearchRequest.rewrite(org.elasticsearch.index.query.QueryRewriteContext)", "offset": 4}, "line": {"number": 780}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACfVP"}} +{"Stackframe": {"function": {"name": "__do_sys_wait4"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zEf9qEa-MLzluKUM9knuogAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "void org.apache.lucene.search.Weight$DefaultBulkScorer.scoreAll(org.apache.lucene.search.LeafCollector, org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.search.TwoPhaseIterator, org.apache.lucene.util.Bits)", "offset": 3}, "line": {"number": 246}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-H9uIyHBzTuJT1TxPYzhNwAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "BigArrays.java"}, "function": {"name": "org.elasticsearch.common.util.AbstractBigArray org.elasticsearch.common.util.BigArrays.resizeInPlace(org.elasticsearch.common.util.AbstractBigArray, long)", "offset": 9}, "line": {"number": 517}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DUWYePMsNbo7HGAKMdOLTAAAAAAAAAEg"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 35}, "line": {"number": 662}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gDRAAy1IwcF0IR_YOLzWjwAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "CompressedXContent.java"}, "function": {"name": "void org.elasticsearch.common.compress.CompressedXContent.(org.elasticsearch.common.xcontent.ToXContent, org.elasticsearch.common.xcontent.XContentType, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 7}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8d37I3z4luvj6nh9MTu4AAAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.util.stream.Node java.util.stream.AbstractPipeline.evaluate(java.util.Spliterator, boolean, java.util.function.IntFunction)", "offset": 7}, "line": {"number": 545}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hQvt9SGcnRC8tVEB_Tur9QAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "AbstractIterator.java"}, "function": {"name": "boolean com.carrotsearch.hppc.AbstractIterator.hasNext()", "offset": 2}, "line": {"number": 30}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EK_62InRGh0CLx240pMRPwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "InputStreamReader.java"}, "function": {"name": "int java.io.InputStreamReader.read(char[], int, int)"}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EqtQxEspQTRRSSWWTkm-NgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "LifecyclePolicyConfig.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecyclePolicy org.elasticsearch.xpack.core.template.LifecyclePolicyConfig.load(org.elasticsearch.common.xcontent.NamedXContentRegistry)"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFW5E"}} +{"Stackframe": {"function": {"name": "cgroup_show_path"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XjyaLTQPNDwnxeTIUaoLqAAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.updateDocs(org.apache.lucene.index.Term, java.util.List, org.apache.lucene.index.IndexWriter)", "offset": 4}, "line": {"number": 1294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApawn"}} +{"Stackframe": {"function": {"name": "memcpy_erms"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yFWUxFEmttx69t1SIwsMmwAAAAAAAACP"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.handlePrimaryResult(org.elasticsearch.action.support.replication.ReplicationOperation$PrimaryResult)", "offset": 22}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.channels.FileChannel sun.nio.fs.UnixFileSystemProvider.newFileChannel(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])", "offset": 4}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N1WyTlGFxfHgSyYQ3aeHDQAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$11(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult)"}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "85xU6UdOBVE-6wKT-DYa3QAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.xcontent.XContent, java.io.InputStream, boolean)", "offset": 1}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mL4_fiGL19dS8gCIwMyo6AAAAAAAAABu"}} +{"Stackframe": {"file": {"name": "IndexWarmer.java"}, "function": {"name": "void org.elasticsearch.index.IndexWarmer.warm(org.elasticsearch.index.engine.Engine$Searcher, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.index.IndexSettings)", "offset": 14}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QzMU8x58pu8LAFTJ6bQCOwAAAAAAAACn"}} +{"Stackframe": {"file": {"name": "Lucene90BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.blocktree.Lucene90BlockTreeTermsWriter.(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.codecs.PostingsWriterBase, int, int)", "offset": 43}, "line": {"number": 285}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$RequestFilterChain.proceed(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1Oc4N1dQ1k7rPv-ec5lPNgAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "int sun.nio.ch.FileChannelImpl.read(java.nio.ByteBuffer)", "offset": 16}, "line": {"number": 240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApQKz"}} +{"Stackframe": {"function": {"name": "strchr"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "f_rIvCQMW5oayMPHCj4aUgAAAAAAAAC-"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "int java.io.FilePermission.containsPath(java.nio.file.Path, java.nio.file.Path)", "offset": 51}, "line": {"number": 753}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7qz18bHgG-Zc_fVo9Dsh7AAAAAAAAABP"}} +{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.OutboundMessage, org.elasticsearch.action.ActionListener)", "offset": 10}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gSCcDWmELuplsa8VqJDXWAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CjJC7YgrLROQv5HQSsKhfAAAAAAAAAFo"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.indexDocValue(int, org.apache.lucene.index.DefaultIndexingChain$PerField, org.apache.lucene.index.DocValuesType, org.apache.lucene.index.IndexableField)", "offset": 43}, "line": {"number": 717}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1kRkZENrD0C0zg-5j1NV2AAAAAAAAACW"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.tryAllHandlers(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 31}, "line": {"number": 531}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BIGurv2nSrr97P1vYN16KAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Map.java"}, "function": {"name": "void java.util.Map.forEach(java.util.function.BiConsumer)", "offset": 1}, "line": {"number": 706}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4U-xAnLrdtDr0a69h0nqYgAAAAAAAACH"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.decodeJdkCompatible(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf)", "offset": 37}, "line": {"number": 1237}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RzPPwKNnwrb8tJ77hoPpDQAAAAAAAABk"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.innerParseObject(org.elasticsearch.index.mapper.ParseContext, org.elasticsearch.index.mapper.ObjectMapper, org.elasticsearch.common.xcontent.XContentParser, java.lang.String, org.elasticsearch.common.xcontent.XContentParser$Token)", "offset": 11}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Es-JdNswBBYy0dgOuoAxgQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FilterDirectoryReader.java"}, "function": {"name": "boolean org.apache.lucene.index.FilterDirectoryReader.isCurrent()"}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Td0Ns3o3xskfXfM4g2iVNAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient.search(org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 535}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5pJbc4ld-dqU0cbENH5UewAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "ResourceLeakDetector.java"}, "function": {"name": "io.netty.util.ResourceLeakDetector$DefaultResourceLeak io.netty.util.ResourceLeakDetector.track0(java.lang.Object)", "offset": 8}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GIy5Mg_ksRG2OUR8ttDU2wAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "Cipher.java"}, "function": {"name": "int javax.crypto.Cipher.doFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 14}, "line": {"number": 2501}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SU7fNzMC3NazhQDT5xGXYgAAAAAAAABI"}} +{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.util.TreeMap$Entry java.util.TreeMap.getEntry(java.lang.Object)", "offset": 14}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "v8jasp6reY29DfYcp4RGRAAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "boolean org.elasticsearch.action.bulk.TransportShardBulkAction.executeBulkItemRequest(org.elasticsearch.action.bulk.BulkPrimaryExecutionContext, org.elasticsearch.action.update.UpdateHelper, java.util.function.LongSupplier, org.elasticsearch.action.bulk.MappingUpdatePerformer, java.util.function.Consumer, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Va8kyQzczGyPdH_kSKP-vQAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.Engine.refreshNeeded()", "offset": 8}, "line": {"number": 723}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "125X0goavCApK-g1l1pkWwAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader.readField(org.apache.lucene.store.DataInput, org.apache.lucene.index.StoredFieldVisitor, org.apache.lucene.index.FieldInfo, int)", "offset": 4}, "line": {"number": 215}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_gteXZinNF7SSsZfg8slZgAAAAAAAABH"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.dispatchedShardOperationOnPrimary(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UCnmJL_-MJgM9JSMBPzPxQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FollowersChecker.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.FollowersChecker$FollowerChecker$3.run()"}, "line": {"number": 381}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bBkYL12c2ecT2962grUNRAAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.updateGlobalCheckpointForShard(java.lang.String, long)", "offset": 2}, "line": {"number": 2492}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "medSjTisT_c6UDMJcEb40wAAAAAAAABQ"}} +{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "void sun.nio.ch.FileChannelImpl.force(boolean)", "offset": 9}, "line": {"number": 468}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bbwmv37dMI1yN-YGmVVIuwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "HandledTransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.HandledTransportAction$TransportHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAVPWS"}} +{"Stackframe": {"function": {"name": "nla_put"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "n8eXgVc_ymv5C0s_SD4x4AAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.lambda$publishFrozenUpdates$10(org.apache.lucene.index.FrozenBufferedUpdates, org.apache.lucene.index.IndexWriter)"}, "line": {"number": 2779}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7ptKTGTqqszfKDkDMhWl3gAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.index.SegmentMerger.merge()", "offset": 8}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WMBQH2cqudnz0nG322UKdQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "int com.fasterxml.jackson.core.json.UTF8StreamJsonParser._skipWSOrEnd()", "offset": 1}, "line": {"number": 2957}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m5p8puApNHgdtwb3aFhxPAAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "boolean io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)", "offset": 11}, "line": {"number": 472}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_L-V6AKh04k4Gsn-ITaa0AAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "ScannerImpl.java"}, "function": {"name": "void org.yaml.snakeyaml.scanner.ScannerImpl.addToken(org.yaml.snakeyaml.tokens.Token)", "offset": 1}, "line": {"number": 303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k2Vd7cm7l6vxlSy0gXOaPwAAAAAAAACa"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "void java.io.FilePermission.init(int)", "offset": 32}, "line": {"number": 345}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile.lambda$inbound$1(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.Version, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 8}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5mFfstASu8Qeky6I-gL8pgAAAAAAAAFB"}} +{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.fs.UnixChannelFactory.open(int, sun.nio.fs.UnixPath, java.lang.String, sun.nio.fs.UnixChannelFactory$Flags, int)", "offset": 71}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mc5XjIkng3hgjSBfLrVghAAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$1.onResponse(java.lang.Void)", "offset": 1}, "line": {"number": 601}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RKpieMMJVCw_q0ww3HrwCAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$8085+0x00000008026c0430.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XzWVAFfWPkx_-5DzBgosgQAAAAAAAADa"}} +{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "void org.apache.lucene.index.SegmentReader.(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.store.IOContext)", "offset": 24}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ReservedRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.esnative.ReservedRealm.doAuthenticate(org.elasticsearch.xpack.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jCF-L0oa1cz1koEOd3XDdQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ForEachOps.java"}, "function": {"name": "void java.util.stream.ForEachOps$ForEachOp$OfRef.accept(java.lang.Object)"}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PrVtf7vrjGGpVbEAol3b9QAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "InferenceProcessor.java"}, "function": {"name": "void org.elasticsearch.xpack.ml.inference.ingest.InferenceProcessor$Factory.accept(org.elasticsearch.cluster.ClusterState)", "offset": 2}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ozR7rHeowembmV8tqrkzHQAAAAAAAAHe"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.startCommit(org.apache.lucene.index.SegmentInfos)", "offset": 70}, "line": {"number": 5101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I22ioUnOc8vGYs191M9aFgAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "RestGetIndicesAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.admin.indices.RestGetIndicesAction$1.writeMappings(org.elasticsearch.common.collect.ImmutableOpenMap, org.elasticsearch.common.xcontent.XContentBuilder)", "offset": 4}, "line": {"number": 152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjh74"}} +{"Stackframe": {"function": {"name": "rtnl_dump_all"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k-Vn8s9qtj7D3BSWLIWnXAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "java.util.Map org.elasticsearch.indices.IndicesService.statsByShard(org.elasticsearch.indices.IndicesService, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 5}, "line": {"number": 486}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Cn7hlCJwY0Tl2g_95dXhhgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.StandardDirectoryReader$$Lambda$7101+0x0000000801ec9a50.close()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$9(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult)"}, "line": {"number": 303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rUHBgSz_SQE-q7C0lnDupQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.ReadersAndUpdates.getReadOnlyClone(org.apache.lucene.store.IOContext)", "offset": 1}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ajfTkAEoNMj425lCUBZBEwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ReuseBuffersLZ4BlockOutputStream.java"}, "function": {"name": "void org.elasticsearch.transport.ReuseBuffersLZ4BlockOutputStream.close()", "offset": 1}, "line": {"number": 192}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DcQMgtZQLqwr_0Ox7dSTjAAAAAAAAAC8"}} +{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.sendSearchResponse(org.elasticsearch.search.internal.InternalSearchResponse, org.elasticsearch.common.util.concurrent.AtomicArray)", "offset": 18}, "line": {"number": 655}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ck_MxLBdFaeX0Pe9TGo2LgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "SessionOutputBufferImpl.java"}, "function": {"name": "void org.apache.http.impl.io.SessionOutputBufferImpl.flushBuffer()", "offset": 2}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I0QtQ3x5Qtt-qibQRB-qEAAAAAAAAACT"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()", "offset": 27}, "line": {"number": 1070}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4m9mTW_zDlDiftTb5WLt5wAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.ensureTranslogSynced(java.util.stream.Stream)", "offset": 2}, "line": {"number": 571}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Fg2KiEq3-QS_hoWS2OekUAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TemplateUtils.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.core.template.TemplateUtils.load(java.lang.String)"}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8_3LGlNMADWVmY7MNYKbGgAAAAAAAABY"}} +{"Stackframe": {"file": {"name": "Completion090PostingsFormat.java"}, "function": {"name": "org.elasticsearch.search.suggest.completion.CompletionStats org.elasticsearch.search.suggest.completion2x.Completion090PostingsFormat.completionStats(org.apache.lucene.index.IndexReader, java.lang.String[])", "offset": 6}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nFTZ4MXQlS-LtyA78dSw9wAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "void org.elasticsearch.search.internal.ContextIndexSearcher.searchLeaf(org.apache.lucene.index.LeafReaderContext, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 4}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_12dBBQS0uavYleBZwRCTwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "JsonParser.java"}, "function": {"name": "boolean com.fasterxml.jackson.core.JsonParser.isEnabled(com.fasterxml.jackson.core.JsonParser$Feature)"}, "line": {"number": 714}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cAhyClD7-cFHqhNdc9T23AAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.siftUp(int, java.util.concurrent.RunnableScheduledFuture)", "offset": 8}, "line": {"number": 976}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rBhH0j2VK5-SoJFag65jhQAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "DataInput.java"}, "function": {"name": "java.util.Map org.apache.lucene.store.DataInput.readMapOfStrings()", "offset": 8}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALyil"}} +{"Stackframe": {"function": {"name": "dput"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wbOiLYqCcWwpRHbVJhaTTgAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendChildRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.tasks.Task, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 2}, "line": {"number": 556}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1hD0EQKJcmKVxYGeSGcN_wAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "StoredFieldLoader.java"}, "function": {"name": "void org.elasticsearch.index.fieldvisitor.StoredFieldLoader$ReaderStoredFieldLoader.advanceTo(int)", "offset": 2}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8PLzoB-u4hzDZ_WKIg8FxQAAAAAAAABU"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.read(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 15}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HYCPABbHg3v8ZSX1NQW6ywAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Header.java"}, "function": {"name": "void org.elasticsearch.transport.Header.finishParsingHeader(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "d42kcgsfWYVSrmwZHQBrmgAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "JarFile.java"}, "function": {"name": "java.util.zip.ZipEntry java.util.jar.JarFile.getEntry(java.lang.String)", "offset": 3}, "line": {"number": 509}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9gl0Tnf4vRq7To4TNSCe1AAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "DeltaPackedLongValues.java"}, "function": {"name": "org.apache.lucene.util.packed.DeltaPackedLongValues org.apache.lucene.util.packed.DeltaPackedLongValues$Builder.build()"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sd1-fzhWHGpZk5BbNZ95mAAAAAAAAAER"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush(boolean)", "offset": 31}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CbdDmMKBlXYo9bdav2WFiAAAAAAAAAC-"}} +{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.createIndicesAndUpdateShards(org.elasticsearch.cluster.ClusterState)", "offset": 28}, "line": {"number": 463}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jorj45TI-Qd-VAwU3oeBogAAAAAAAACW"}} +{"Stackframe": {"file": {"name": "AnalysisStats.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.stats.AnalysisStats org.elasticsearch.action.admin.cluster.stats.AnalysisStats.of(org.elasticsearch.cluster.metadata.Metadata, java.lang.Runnable)", "offset": 19}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "46cRp9b6CxM3JVl8H47a-wAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "void io.netty.channel.DefaultChannelPipeline$HeadContext.flush(io.netty.channel.ChannelHandlerContext)"}, "line": {"number": 1296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "ClassLoader.java"}, "function": {"name": "java.net.URL java.lang.ClassLoader.getResource(java.lang.String)", "offset": 3}, "line": {"number": 1396}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "L5j21l_lgSbj7tDtmImORwAAAAAAAAEG"}} +{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "void org.elasticsearch.tracing.apm.APMTracer.setSpanAttributes(java.util.Map, io.opentelemetry.api.trace.SpanBuilder)", "offset": 27}, "line": {"number": 313}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wmGhlkvWzfTghgQ1sZAecgAAAAAAAADX"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "java.lang.Object com.amazonaws.services.s3.AmazonS3Client.invoke(com.amazonaws.Request, com.amazonaws.http.HttpResponseHandler, java.lang.String, java.lang.String, boolean)", "offset": 45}, "line": {"number": 5456}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mkLFSzwLd_GSc1FYqgqiCgAAAAAAAACk"}} +{"Stackframe": {"file": {"name": "Sorter.java"}, "function": {"name": "void org.apache.lucene.util.Sorter.mergeInPlace(int, int, int)", "offset": 27}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o5ekWirNltCbuL3RdYOs8AAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "BasicTokenIterator.java"}, "function": {"name": "int org.apache.http.message.BasicTokenIterator.findNext(int)", "offset": 6}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "llu2gdnj2j-vMGA_Gh1y9wAAAAAAAAA8"}} +{"Stackframe": {"file": {"name": "SearchHits.java"}, "function": {"name": "void org.elasticsearch.search.SearchHits.readFrom(org.elasticsearch.common.io.stream.StreamInput)", "offset": 8}, "line": {"number": 211}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wa2KSPungNJV4Kgnh4ALTgAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "void java.util.AbstractMap$2$1.(java.util.AbstractMap$2)", "offset": 1}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m4AoWu9JzAMUZrCsBO9JagAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "java.lang.Object[] java.util.stream.ReferencePipeline.toArray(java.util.function.IntFunction)", "offset": 1}, "line": {"number": 438}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASSMw"}} +{"Stackframe": {"function": {"name": "aa_dfa_match"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2xbMKGUKsExE5SEi9o0YIwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "SearchHit.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.search.SearchHit.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 1}, "line": {"number": 622}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QEcHhqXCi5-qkJh0R6a7kgAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "CloseableHttpClient.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.impl.client.CloseableHttpClient.execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.protocol.HttpContext)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SLFvE_cP2SyjsekmrBc9LQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j1RL_HrqcYG8xQUBJflv_wAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "HashSet.java"}, "function": {"name": "boolean java.util.HashSet.contains(java.lang.Object)"}, "line": {"number": 203}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "y9wAruXr5eENJ6q-yQaEgwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Lucene90PointsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90PointsWriter.(org.apache.lucene.index.SegmentWriteState)"}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z8p7JeF0PBmR0rYu5TgGbQAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "AbstractIndexComponent.java"}, "function": {"name": "void org.elasticsearch.index.AbstractIndexComponent.(org.elasticsearch.index.IndexSettings)", "offset": 2}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w3TshcZYurjm6c72duqqcwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "JvmGcMonitorService.java"}, "function": {"name": "void org.elasticsearch.monitor.jvm.JvmGcMonitorService$JvmMonitor.monitorGc()", "offset": 2}, "line": {"number": 403}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_aLNQj4NizwmYCt1Iy9dBQAAAAAAAAB1"}} +{"Stackframe": {"file": {"name": "AbstractQueuedSynchronizer.java"}, "function": {"name": "long java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(long)", "offset": 13}, "line": {"number": 1661}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RrXasmojz0ojjKVFAz-eswAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vb4ztJy7kQUuiz66b5BPNgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.field(java.lang.String)", "offset": 1}, "line": {"number": 292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D6cli4-gg2k7zlaMjhN3BgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "SearchHits.java"}, "function": {"name": "org.elasticsearch.search.SearchHits org.elasticsearch.search.SearchHits.readSearchHits(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yJnMziB_3pl6nUaBEI6cWgAAAAAAAABg"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.apache.lucene.search.IndexSearcher org.elasticsearch.index.engine.InternalEngine$SearchFactory.newSearcher(org.apache.lucene.index.IndexReader, org.apache.lucene.index.IndexReader)", "offset": 10}, "line": {"number": 1437}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "V1AAAJZxfA577guD2Mmh4AAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "SegmentDocValues.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesProducer org.apache.lucene.index.SegmentDocValues.getDocValuesProducer(long, org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos)", "offset": 2}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EsiemG9MpfP023-drLo7agAAAAAAAAEt"}} +{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.core.security.authc.support.BCrypt.hashpw(org.elasticsearch.common.settings.SecureString, java.lang.String)", "offset": 49}, "line": {"number": 708}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Z6-SBdAVlrtQxIkO1BQIbAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$DelegatingActionListener.onResponse(java.lang.Object)"}, "line": {"number": 184}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vcmbteT9Zn8Dn3HK9hT_jwAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "PlatformMBeanProvider.java"}, "function": {"name": "java.util.List sun.management.spi.PlatformMBeanProvider$PlatformComponent.getMBeans(java.lang.Class)", "offset": 3}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "adyH-5f8qL7d_nwuPRSZEwAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult io.netty.handler.ssl.SslHandler$SslEngineType$3.unwrap(io.netty.handler.ssl.SslHandler, io.netty.buffer.ByteBuf, int, int, io.netty.buffer.ByteBuf)", "offset": 3}, "line": {"number": 282}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rO2U8bCEOPtVR0fJrGRR8wAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "PoolArena.java"}, "function": {"name": "java.nio.ByteBuffer io.netty.buffer.PoolArena$DirectArena.allocateDirect(int)", "offset": 1}, "line": {"number": 764}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rtJFGuFDWKgkQ_kOhDwLwgAAAAAAAADc"}} +{"Stackframe": {"file": {"name": "FreqProxTermsWriter.java"}, "function": {"name": "void org.apache.lucene.index.FreqProxTermsWriter.flush(java.util.Map, org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.NormsProducer)", "offset": 44}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XzWVAFfWPkx_-5DzBgosgQAAAAAAAABh"}} +{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "void org.apache.lucene.index.SegmentReader.(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.store.IOContext)", "offset": 8}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IMTQbn27-V62k7p4E0iU3AAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "IndicesQueryCache.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.elasticsearch.indices.IndicesQueryCache$CachingWeightWrapper.scorerSupplier(org.apache.lucene.index.LeafReaderContext)", "offset": 1}, "line": {"number": 162}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7Ormen3KBfy8FXv7OmF-kAAAAAAAAAHy"}} +{"Stackframe": {"file": {"name": "ReplicationTracker.java"}, "function": {"name": "void org.elasticsearch.index.seqno.ReplicationTracker.updateFromMaster(long, java.util.Set, org.elasticsearch.cluster.routing.IndexShardRoutingTable)", "offset": 42}, "line": {"number": 1123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E8C4Sn4zVobGsEAl794nrwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "int org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat$DeserializeMetaBlobInputStream.read()"}, "line": {"number": 215}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aq6JBsIgl6kcLVLMnZY__gAAAAAAAAD0"}} +{"Stackframe": {"file": {"name": "TransformTask.java"}, "function": {"name": "void org.elasticsearch.xpack.transform.transforms.TransformTask.triggered(org.elasticsearch.xpack.transform.transforms.scheduling.TransformScheduler$Event)", "offset": 37}, "line": {"number": 435}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUXpp"}} +{"Stackframe": {"function": {"name": "lockref_put_return"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MkmisheVP0DaTeF1Tgq6BwAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write(byte[], int, int)", "offset": 2}, "line": {"number": 416}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3OcYHHsh83oCW5F2NbiqtwAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorize$3(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo)", "offset": 1}, "line": {"number": 314}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0FX-pXK8X9ZHvq5PeuRa6gAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "TranslogWriter.java"}, "function": {"name": "void org.elasticsearch.index.translog.TranslogWriter.writeToFile(java.nio.ByteBuffer)", "offset": 1}, "line": {"number": 551}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "U0AZMa4zRqgmaTLFaFBIIwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline.forEach(java.util.function.Consumer)"}, "line": {"number": 596}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAioHU"}} +{"Stackframe": {"function": {"name": "__sys_socket"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ceAXg6TZDkdNFtcE_O4vaQAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "BufferedUpdatesStream.java"}, "function": {"name": "void org.apache.lucene.index.BufferedUpdatesStream$SegmentState.(org.apache.lucene.index.ReadersAndUpdates, org.apache.lucene.util.IOUtils$IOConsumer, org.apache.lucene.index.SegmentCommitInfo)", "offset": 2}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8yK7Uvpt_PwG8tWXk0oEHgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ChannelOutboundHandlerAdapter.java"}, "function": {"name": "void io.netty.channel.ChannelOutboundHandlerAdapter.flush(io.netty.channel.ChannelHandlerContext)"}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Vcy8PuJ6UoNqzGrL87c0RgAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void java.util.stream.Collectors$$Lambda$327.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "S4DQ5gj04oVPTd_cZvriwQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "PhaseExecutionInfo.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.PhaseExecutionInfo org.elasticsearch.xpack.core.ilm.PhaseExecutionInfo.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.String)"}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i5PY1S9sARw8LzFxg-t1XgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "void org.elasticsearch.threadpool.ThreadPool$ReschedulingRunnable.doRun()", "offset": 1}, "line": {"number": 811}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sZ7DuqUIOGepxIijYq8VswAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "void org.elasticsearch.tracing.apm.APMTracer.startTrace(org.elasticsearch.common.util.concurrent.ThreadContext, java.lang.String, java.lang.String, java.util.Map)", "offset": 15}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sRXhqddpmnoFsWkC5mTZFQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "BasicLineFormatter.java"}, "function": {"name": "org.apache.http.util.CharArrayBuffer org.apache.http.message.BasicLineFormatter.appendProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.ProtocolVersion)"}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PxKXTV4MDkHtmEvOc2iKdAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.file.attribute.FileTime java.nio.file.Files.getLastModifiedTime(java.nio.file.Path, java.nio.file.LinkOption[])"}, "line": {"number": 2394}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PJTlw6VeTaTK6Ugh88lHIwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$ConsumerAndSuffix.close()"}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Ei"}} +{"Stackframe": {"function": {"name": "netlink_dump"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "88LSnaqXjMdQmseUT8Y22gAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler$PublicationContext$3.handleResponse(org.elasticsearch.cluster.coordination.PublishWithJoinResponse)"}, "line": {"number": 421}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EYGjlLJCu-Vl57yx-_7_hwAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "PoolingHttpClientConnectionManager.java"}, "function": {"name": "void org.apache.http.impl.conn.PoolingHttpClientConnectionManager.connect(org.apache.http.HttpClientConnection, org.apache.http.conn.routing.HttpRoute, int, org.apache.http.protocol.HttpContext)", "offset": 13}, "line": {"number": 374}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "12nEeMsH00wjguIyHXaYDwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "NamedDiffableValueSerializer.java"}, "function": {"name": "org.elasticsearch.cluster.Diff org.elasticsearch.cluster.NamedDiffableValueSerializer.readDiff(org.elasticsearch.common.io.stream.StreamInput, java.lang.String)"}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Eh0v14Wp9mB3u5tYha0hzQAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$RequestFilterChain.proceed(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WBKrGzwz7SG6nZHQCew75AAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "InputStreamStreamInput.java"}, "function": {"name": "byte org.elasticsearch.common.io.stream.InputStreamStreamInput.readByte()"}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P8KXk_YkMAioYhgO5xbnPwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.prepareCommit()", "offset": 1}, "line": {"number": 3535}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "utn7B_e8CjiON2nJb1OPvgAAAAAAAABO"}} +{"Stackframe": {"file": {"name": "Header.java"}, "function": {"name": "void org.elasticsearch.transport.Header.finishParsingHeader(org.elasticsearch.common.io.stream.StreamInput)", "offset": 13}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_4C4BIdUdgn-KAnGS1BzAAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "AbstractMemorySegmentImpl.java"}, "function": {"name": "jdk.internal.foreign.AbstractMemorySegmentImpl jdk.internal.foreign.AbstractMemorySegmentImpl.asSliceNoCheck(long, long)"}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iQVo4-YPSPQT8lzVnTciPgAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile.lambda$inbound$2(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.permission.Role, org.elasticsearch.xpack.core.security.authz.permission.Role)", "offset": 1}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dFvXeiu0bJwgpB4R6tiKPQAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "DslJsonSerializer.java"}, "function": {"name": "void co.elastic.apm.agent.report.serialize.DslJsonSerializer.serializeSpanNdJson(co.elastic.apm.agent.impl.transaction.Span)", "offset": 2}, "line": {"number": 281}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ye_yqgGWVAuuc8LeRI2VUQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Comparators.java"}, "function": {"name": "int java.util.Comparators$NaturalOrderComparator.compare(java.lang.Comparable, java.lang.Comparable)"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4pQmnbdVKlEPbRd3rB3jwgAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ScheduledThreadPoolExecutor.delayedExecute(java.util.concurrent.RunnableScheduledFuture)", "offset": 3}, "line": {"number": 342}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eLPEw3jnFkvsJ2aQiz21NAAAAAAAAABf"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)", "offset": 7}, "line": {"number": 576}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wwh143L4mTM-msioEjaOPQAAAAAAAACO"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult io.netty.handler.ssl.SslHandler.wrap(io.netty.buffer.ByteBufAllocator, javax.net.ssl.SSLEngine, io.netty.buffer.ByteBuf, io.netty.buffer.ByteBuf)", "offset": 33}, "line": {"number": 1041}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6xWPN5N9Vm07FKp43AjLBQAAAAAAAABO"}} +{"Stackframe": {"file": {"name": "NumericDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.NumericDocValuesWriter.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.DocValuesConsumer)", "offset": 11}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cqDrFg2lVIlEaumPl_y8qQAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "ProtectionDomain.java"}, "function": {"name": "boolean java.security.ProtectionDomain.implies(java.security.Permission)", "offset": 7}, "line": {"number": 321}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QBE1k946VwHy-LGygYESpwAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "SystemIndexManager.java"}, "function": {"name": "java.util.List org.elasticsearch.indices.SystemIndexManager.getEligibleDescriptors(org.elasticsearch.cluster.metadata.Metadata)", "offset": 4}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fpT9dKVCjbBUsOxTK_gNnQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Util.java"}, "function": {"name": "javax.management.ObjectName sun.management.Util.newObjectName(java.lang.String, java.lang.String)"}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HZ0GBRVKni6SsJNHL5AkLgAAAAAAAABU"}} +{"Stackframe": {"file": {"name": "AbstractQueuedSynchronizer.java"}, "function": {"name": "long java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(long)", "offset": 15}, "line": {"number": 2123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z3OVwE39ldWnCO3e3J2ChQAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "long org.elasticsearch.index.translog.Translog.earliestLastModifiedAge()", "offset": 2}, "line": {"number": 409}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ"}} +{"Stackframe": {"function": {"name": "m_show"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "void java.util.stream.AbstractPipeline.copyInto(java.util.stream.Sink, java.util.Spliterator)", "offset": 8}, "line": {"number": 513}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Khjys_tqUowZalyaQ3fQDAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "SettingsCompanion.scala"}, "function": {"name": "java.lang.Object akka.http.scaladsl.settings.SettingsCompanion.apply(akka.actor.ActorSystem)"}, "line": {"number": 19}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oZdMUu1rfFyEetd-xjBrwgAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "EnumMap.java"}, "function": {"name": "void java.util.EnumMap.(java.lang.Class)", "offset": 32}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5SdE72_y-hSLbJxOG9tFVgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap$KeyIterator.next()"}, "line": {"number": 1620}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8fD8MYf3rRLn0p51wgRpQgAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction$1.doRun()"}, "line": {"number": 192}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7LziU26eINk4gGAzQhjzRAAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.close(java.lang.Iterable)", "offset": 4}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p9zD_NE4uqwzAMaadVzmagAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "java.lang.Runnable org.apache.lucene.util.bkd.BKDWriter.writeField1Dim(org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, java.lang.String, org.apache.lucene.codecs.MutablePointValues)", "offset": 22}, "line": {"number": 473}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wRa4VkbKWWg5BAVuyBhN4AAAAAAAAABJ"}} +{"Stackframe": {"file": {"name": "ChannelInputStream.java"}, "function": {"name": "int sun.nio.ch.ChannelInputStream.read(byte[], int, int)", "offset": 11}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qd26ee2y8slhneyPRIcQAgAAAAAAAADE"}} +{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService.lambda$startNewShards$1(org.elasticsearch.cluster.SnapshotsInProgress$Entry, java.util.Map)", "offset": 11}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8oR2r1TwDR8oMI-rElH28QAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "org.apache.lucene.index.SortedNumericDocValues org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsReader.getSortedNumeric(org.apache.lucene.index.FieldInfo)", "offset": 1}, "line": {"number": 338}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "J7EMgIdtNxSVC_-TGyYQ3AAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeVInt(int)", "offset": 4}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "v0o-SuFa6Ydo5LzhQb4MjgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ReduceOps.java"}, "function": {"name": "java.lang.Object java.util.stream.ReduceOps$ReduceOp.evaluateSequential(java.util.stream.PipelineHelper, java.util.Spliterator)"}, "line": {"number": 921}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YYzk7c32FriCyY7m0aSg5gAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader$BlockState$1.readBytes(byte[], int, int)", "offset": 4}, "line": {"number": 550}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TTYsykzwRWGC2DP0T69z7QAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "InflaterInputStream.java"}, "function": {"name": "int java.util.zip.InflaterInputStream.read(byte[], int, int)", "offset": 10}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "v5dA57HXZ1996swqeLZdUQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "LocalExporter.java"}, "function": {"name": "org.elasticsearch.xpack.monitoring.exporter.ExportBulk org.elasticsearch.xpack.monitoring.exporter.local.LocalExporter.openBulk()"}, "line": {"number": 98}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sA51xjk_b2HNViwO0q0xrAAAAAAAAAB4"}} +{"Stackframe": {"file": {"name": "MetadataCreateIndexService.java"}, "function": {"name": "void org.elasticsearch.cluster.metadata.MetadataCreateIndexService.updateIndexMappingsAndBuildSortOrder(org.elasticsearch.index.IndexService, org.elasticsearch.action.admin.indices.create.CreateIndexClusterStateUpdateRequest, java.util.List, org.elasticsearch.cluster.metadata.IndexMetadata)", "offset": 5}, "line": {"number": 1303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "V5L5cSexPMdTDKYbyZjj6gAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.util.List java.nio.file.Files.readAllLines(java.nio.file.Path, java.nio.charset.Charset)", "offset": 3}, "line": {"number": 3399}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gTkmFNeogkFDQEs_Mlre8AAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.Engine.refreshNeeded()", "offset": 8}, "line": {"number": 999}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00i"}} +{"Stackframe": {"function": {"name": "schedule_hrtimeout_range"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JDHHnKZefnrVelWma4FLrgAAAAAAAABW"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.startTrace(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.rest.RestChannel, java.lang.String)", "offset": 18}, "line": {"number": 469}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VC0ia-TWHUXgHjt_xdSPsQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder$$Lambda$28.write(org.elasticsearch.common.xcontent.XContentBuilder, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "S4dKKBsXH2ynC2dCCnVoPgAAAAAAAAB2"}} +{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "void com.sun.crypto.provider.GaloisCounterMode.engineInit(int, java.security.Key, java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom)", "offset": 19}, "line": {"number": 300}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h9RTRJ-fMkhaBb0sHV1CqwAAAAAAAAME"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.prepareCommitInternal()", "offset": 143}, "line": {"number": 3715}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "IndexSearcher.java"}, "function": {"name": "void org.apache.lucene.search.IndexSearcher.search(org.apache.lucene.search.Query, org.apache.lucene.search.Collector)", "offset": 1}, "line": {"number": 443}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m140cnmnDMXwCTqH-lotHAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$1.hasNext()"}, "line": {"number": 1676}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N_nPCm3TGYOGbXHM3T3DGAAAAAAAAAFJ"}} +{"Stackframe": {"file": {"name": "CompiledAutomaton.java"}, "function": {"name": "void org.apache.lucene.util.automaton.CompiledAutomaton.(org.apache.lucene.util.automaton.Automaton, java.lang.Boolean, boolean, int, boolean)", "offset": 92}, "line": {"number": 238}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALUey"}} +{"Stackframe": {"function": {"name": "vfs_write"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "68Kd2F2G5cbeqk2uYg-UgAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Directory.java"}, "function": {"name": "org.apache.lucene.store.ChecksumIndexInput org.apache.lucene.store.Directory.openChecksumInput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yBWSGqiiI_VOVi3uSjsniwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.CopyBytesSocketChannel.readFromSocketChannel(java.nio.channels.SocketChannel, java.nio.ByteBuffer)"}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Awlvi9BQCHUWjIysk-DIYAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotsService$7.onResponse(java.lang.Object)"}, "line": {"number": 1846}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XAg238VPx7h3EjuW7EjQkwAAAAAAAAFV"}} +{"Stackframe": {"file": {"name": "ExpandSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.ExpandSearchPhase.run()", "offset": 50}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.xcontent.support.AbstractXContentParser.readMapEntries(org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier, java.util.Map, java.lang.String)", "offset": 2}, "line": {"number": 324}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "azOr1dYomfn_S0qqSTxKZwAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService$$Lambda$10696+0x00000008029733b8.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6l-EHm0OnthNsvyaQcuYhwAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 8}, "line": {"number": 413}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HPMCfkOJRiUT5Qc3SSjArwAAAAAAAADP"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeBulkItems$19(org.elasticsearch.action.bulk.BulkShardRequest, java.util.Map, org.elasticsearch.xpack.security.audit.AuditTrail, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, java.util.Collection)", "offset": 53}, "line": {"number": 829}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Juo8qUKghncsaJVIOQ-UxAAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "boolean org.apache.lucene.codecs.lucene80.IndexedDISI$Method$1.advanceExactWithinBlock(org.apache.lucene.codecs.lucene80.IndexedDISI, int)", "offset": 6}, "line": {"number": 496}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bKlVw9gLE4jRKTChgrEglAAAAAAAAABg"}} +{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "int sun.nio.ch.EPollSelectorImpl.doSelect(java.util.function.Consumer, long)", "offset": 15}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OgXCZlr_5lhpTZQoSrxsMQAAAAAAAABd"}} +{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "java.lang.Object com.carrotsearch.hppc.ObjectObjectHashMap.put(java.lang.Object, java.lang.Object)", "offset": 14}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mXpni8pjVSIFQGWEOuaZmgAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress$Entry.(org.elasticsearch.snapshots.Snapshot, boolean, boolean, org.elasticsearch.cluster.SnapshotsInProgress$State, java.util.Map, java.util.List, java.util.List, long, long, org.elasticsearch.common.collect.ImmutableOpenMap, java.lang.String, java.util.Map, org.elasticsearch.Version)"}, "line": {"number": 738}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "t8_l1_Cm8vU3xJ2Ui5mFagAAAAAAAACl"}} +{"Stackframe": {"file": {"name": "ByteQuadsCanonicalizer.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._findSecondary(int, int, int)", "offset": 13}, "line": {"number": 664}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Fydu_jIEUCOQMYYMzhWUPQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.coordination.PublicationTransportHandler$PublicationContext$$Lambda$7907+0x0000000801fbd3b0.apply(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAFN"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 66}, "line": {"number": 310}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MT-d8HUP7sCTrw90PJ0t7AAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequest(org.elasticsearch.cluster.node.DiscoveryNode, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 1}, "line": {"number": 517}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7agwHperI1lpO6HjOmatbgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "RestStatusToXContentListener.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestStatusToXContentListener.buildResponse(java.lang.Object, org.elasticsearch.common.xcontent.XContentBuilder)"}, "line": {"number": 22}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Stb7SO-i1ysmwO8Lu0fgRQAAAAAAAADa"}} +{"Stackframe": {"file": {"name": "ES87BloomFilterPostingsFormat.java"}, "function": {"name": "void org.elasticsearch.index.codec.bloomfilter.ES87BloomFilterPostingsFormat$FieldsWriter.writePostings(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 15}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VyiEhRfD3cpMAUdxvE6uLQAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$DirectResponseChannel.sendResponse(org.elasticsearch.transport.TransportResponse)", "offset": 6}, "line": {"number": 1154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3KV0rpkE2E6w6XxWj_IWXAAAAAAAAACU"}} +{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.removeIndices(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 14}, "line": {"number": 355}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw"}} +{"Stackframe": {"function": {"name": "vfs_write"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fZ1SoGSE80OZ2t9ks5kZMwAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "TcpTransportChannel.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransportChannel.sendResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lLz61dScX0qP4lCt6ZUMggAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "SSLEngine.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult javax.net.ssl.SSLEngine.wrap(java.nio.ByteBuffer[], java.nio.ByteBuffer)", "offset": 3}, "line": {"number": 509}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5LiiYvRk2tAe8r0a1hyONQAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.index(org.elasticsearch.index.engine.Engine, org.elasticsearch.index.engine.Engine$Index)", "offset": 7}, "line": {"number": 557}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o4xE6tnek8DDKVBCgUY23gAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "org.elasticsearch.cluster.metadata.Metadata$Custom org.elasticsearch.cluster.metadata.Metadata.custom(java.lang.String)"}, "line": {"number": 1293}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rU2gYsZPORRvUmAaUHS0ngAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "IndexReader.java"}, "function": {"name": "void org.apache.lucene.index.IndexReader.close()", "offset": 1}, "line": {"number": 385}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qG8i5jaDrGhTyGtmlMlG_QAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "boolean java.util.regex.Pattern$SliceI.match(java.util.regex.Matcher, int, java.lang.CharSequence)"}, "line": {"number": 4113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "n2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.refreshIfNeeded(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)"}, "line": {"number": 370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eEXFmSmLstwTaBBVp_eSTgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$writeAuthToContext$22(org.elasticsearch.xpack.security.authc.Authentication)"}, "line": {"number": 465}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIj8"}} +{"Stackframe": {"function": {"name": "__seccomp_filter"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8Zl1Hn34Qq3KbfhSotUixQAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer$1.onCompletion()", "offset": 1}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LXCqd0sDg5Z1XmxKMTzH2wAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "LambdaForm$DMH"}, "function": {"name": "long java.lang.invoke.LambdaForm$DMH+0x0000000801300800.invokeInterface(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC6Xu"}} +{"Stackframe": {"function": {"name": "process_one_work"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P5S8gbg14vynLAZMWG2Y6gAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "StringLatin1.java"}, "function": {"name": "boolean java.lang.StringLatin1.regionMatchesCI(byte[], int, byte[], int, int)", "offset": 10}, "line": {"number": 402}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "b0RGeGy0UFdJ7sS77zZqFQAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener.onResponse(java.lang.Iterable, java.lang.Object)", "offset": 3}, "line": {"number": 291}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HyBeZYPY4-mSUOFMq2R5wwAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.implWrite(byte[], int, int)", "offset": 7}, "line": {"number": 407}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ixaQmigMwFUALyXH0XndswAAAAAAAADv"}} +{"Stackframe": {"file": {"name": "URI.java"}, "function": {"name": "int java.net.URI$Parser.parseServer(int, int)", "offset": 37}, "line": {"number": 3350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "y_Kb_1plOC7673Fl1U32vQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Phase.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.Phase org.elasticsearch.xpack.core.ilm.Phase.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.String)"}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YlO0NgYBRfcb2MwaU6PEpgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "BytesArray.java"}, "function": {"name": "int org.elasticsearch.common.bytes.BytesArray.length()"}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.stat0(long, sun.nio.fs.UnixFileAttributes)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ihn5y3aUSH0SbJMgByz2sQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "Thread.java"}, "function": {"name": "void java.lang.Thread.run()", "offset": 1}, "line": {"number": 831}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8gQCh08pqdyg0DB5wkr7SwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Index.java"}, "function": {"name": "int org.elasticsearch.index.Index.hashCode()"}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rgAjIQySCix3y3Kbq5dkvwAAAAAAAABl"}} +{"Stackframe": {"file": {"name": "NIOFSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.NIOFSDirectory$NIOFSIndexInput.readInternal(java.nio.ByteBuffer)", "offset": 12}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAASdO"}} +{"Stackframe": {"function": {"name": "di_write_lock"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Edy7WlyFZta5S1JFk5yFhAAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrapAndFlush(io.netty.channel.ChannelHandlerContext)", "offset": 11}, "line": {"number": 797}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DTUauL5DuTHOhH20MbQ0aQAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "InboundDecoder.java"}, "function": {"name": "org.elasticsearch.transport.Header org.elasticsearch.transport.InboundDecoder.readHeader(org.elasticsearch.TransportVersion, int, org.elasticsearch.common.bytes.BytesReference)", "offset": 13}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DXStuM9FGoRVIzn6iyb_SQAAAAAAAABm"}} +{"Stackframe": {"file": {"name": "FileSystemProvider.java"}, "function": {"name": "java.io.OutputStream java.nio.file.spi.FileSystemProvider.newOutputStream(java.nio.file.Path, java.nio.file.OpenOption[])", "offset": 13}, "line": {"number": 478}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "J-sAAPBB1HnX3Yvmh7CNVgAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "AbstractSet.java"}, "function": {"name": "boolean java.util.AbstractSet.equals(java.lang.Object)", "offset": 9}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e5CI3XQegnxQMO6V9n4noAAAAAAAAAB0"}} +{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService$1.onResponse(org.elasticsearch.repositories.ShardSnapshotResult)", "offset": 14}, "line": {"number": 280}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "FilterMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.FilterMergePolicy.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.util.IOSupplier)"}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LI7hHy8LyfIAUwZcB8iKFwAAAAAAAAA8"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.admin.cluster.snapshots.get.TransportGetSnapshotsAction$$Lambda$8112+0x0000000801f8d248.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.mergeMiddle(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergePolicy)", "offset": 72}, "line": {"number": 4759}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GawXE6WUmGWmhx0zlzThjwAAAAAAAAEg"}} +{"Stackframe": {"file": {"name": "TransportGetIndexAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.get.TransportGetIndexAction.doMasterOperation(org.elasticsearch.action.admin.indices.get.GetIndexRequest, java.lang.String[], org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)", "offset": 40}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kGhnruBMfWniu_ewaA6cjQAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.map(java.util.Map, boolean, boolean)", "offset": 16}, "line": {"number": 1098}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3GVgd7461M2Ew-ktlhyjlAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchModule$$Lambda$1466+0x0000000801188d08.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iQ3-U2pFJokP-jlw4Yr9FQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.put(java.lang.Object, java.lang.Object)"}, "line": {"number": 612}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7Hie1WP0q1mBRY33SmWBmQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)"}, "line": {"number": 542}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "G99T3qcZC8_AxTO5xN8aUwAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.util.stream.Sink java.util.stream.AbstractPipeline.wrapAndCopyInto(java.util.stream.Sink, java.util.Spliterator)"}, "line": {"number": 471}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WQRA1-IhgiKjbn3zE2dF5AAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "IndexModule.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.IndexModule.lambda$static$1(org.elasticsearch.index.engine.Engine)"}, "line": {"number": 494}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xIeEUt5kLS4U3EmJ2DoeaQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "StringBuilder.java"}, "function": {"name": "java.lang.StringBuilder java.lang.StringBuilder.append(java.lang.Object)"}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_7xqiZJMUCsg_264O9Ah7AAAAAAAAACx"}} +{"Stackframe": {"file": {"name": "FieldSortBuilder.java"}, "function": {"name": "org.elasticsearch.search.sort.SortFieldAndFormat org.elasticsearch.search.sort.FieldSortBuilder.build(org.elasticsearch.index.query.QueryShardContext)", "offset": 27}, "line": {"number": 277}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5EcD-U0cxRtdESeN-UEmcwAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient.execute(com.amazonaws.Request, com.amazonaws.http.HttpResponseHandler, com.amazonaws.http.HttpResponseHandler, com.amazonaws.http.ExecutionContext)"}, "line": {"number": 541}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4CZPHF-aehJgVB8TpitL3wAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.findName(int[], int, int, int)", "offset": 4}, "line": {"number": 2238}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3ZGnbBP662Xz656-BL63fAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "LifecyclePolicy.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.Phase org.elasticsearch.xpack.core.ilm.LifecyclePolicy.lambda$static$1(org.elasticsearch.common.xcontent.XContentParser, java.lang.String, java.lang.String)"}, "line": {"number": 59}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tMkrwhvZsCkojfivwC-ofAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ObjectName.java"}, "function": {"name": "javax.management.ObjectName javax.management.ObjectName.getInstance(java.lang.String)"}, "line": {"number": 1295}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_oxIlHmzNVD2Qt3Pm_FyKQAAAAAAAADo"}} +{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.bulk.BulkRequest, org.elasticsearch.action.ActionListener)", "offset": 37}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BFGjgFTdK1xnfs0xj5apUwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "java.lang.Object[] java.util.stream.ReferencePipeline.toArray(java.util.function.IntFunction)", "offset": 1}, "line": {"number": 616}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-DwmZfEc-uYyG5RZ3S3rrQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object java.lang.management.ManagementFactory$$Lambda$269+0x0000000800d1a298.apply(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SRpYTZfhwLcM3Dy3yQ23_AAAAAAAAABW"}} +{"Stackframe": {"file": {"name": "MappingUpdatedAction.java"}, "function": {"name": "void org.elasticsearch.cluster.action.index.MappingUpdatedAction.updateMappingOnMaster(org.elasticsearch.index.Index, java.lang.String, org.elasticsearch.index.mapper.Mapping, org.elasticsearch.action.ActionListener)", "offset": 14}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "U5jbbbC88jUa-8dlGUKWMgAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "void java.util.ArrayList.sort(java.util.Comparator)", "offset": 1}, "line": {"number": 1454}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HIIjrBY7gA03CnEjMAD7QgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$7224+0x000000080251c630.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "shq-irvfX-gF1mgvoEZeYQAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$8891+0x000000080201a570.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "d3kpVhLsdwM004-RCJ5KgwAAAAAAAABR"}} +{"Stackframe": {"file": {"name": "SegmentDocValues.java"}, "function": {"name": "org.apache.lucene.util.RefCount org.apache.lucene.index.SegmentDocValues.newDocValuesProducer(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.Directory, java.lang.Long, org.apache.lucene.index.FieldInfos)", "offset": 10}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6sBKtqBatbzPgogd7p8IQgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.decRef(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)"}, "line": {"number": 405}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oGwyto3BslHwE9mIoXY8WgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "org.elasticsearch.common.transport.TransportAddress[] org.elasticsearch.transport.TransportService.addressesFromString(java.lang.String)"}, "line": {"number": 967}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CCZSkfBMRh3g8xxOIUYV7AAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "void org.elasticsearch.threadpool.ThreadPool$LoggingRunnable.run()"}, "line": {"number": 436}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mF7WiqgSdIb9xDGS5qVe3AAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService.maybeRefreshEngine(boolean)", "offset": 1}, "line": {"number": 878}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wf9mrqZKrjw_yhc1kSPntQAAAAAAAACE"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.readIntoNativeBuffer(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 18}, "line": {"number": 339}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p5Sj0Wa5Ym1vTB3JVfCaPwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "OsProbe.java"}, "function": {"name": "org.elasticsearch.monitor.os.OsStats$Cgroup org.elasticsearch.monitor.os.OsProbe.getCgroup()"}, "line": {"number": 671}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "K06i4sR69nVCcg3FbwNeuwAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory$FSIndexOutput.(org.apache.lucene.store.FSDirectory, java.lang.String)"}, "line": {"number": 387}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YHfGBRgNKeVxiy8hLQet7QAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "BoolQueryBuilder.java"}, "function": {"name": "void org.elasticsearch.index.query.BoolQueryBuilder.addBooleanClauses(org.elasticsearch.index.query.SearchExecutionContext, org.apache.lucene.search.BooleanQuery$Builder, java.util.List, org.apache.lucene.search.BooleanClause$Occur)", "offset": 1}, "line": {"number": 331}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8RS1Nly7R5USaUVxZKBsKQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "Util.java"}, "function": {"name": "javax.management.ObjectName sun.management.Util.newObjectName(java.lang.String)"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "89ev44cPu__kE-arZOqAIAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput$$Lambda$38.write(org.elasticsearch.common.io.stream.StreamOutput, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j4D5A-hVhJ3sXUDMsr3WcAAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.UTF8StreamJsonParser._closeInput()", "offset": 1}, "line": {"number": 252}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D1zKwC0RpAfeJUlfitr_CgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.indices.IndicesService$$Lambda$2394.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GTDz5BEJ5HMljeo0WMABIQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "Netty4MessageChannelHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler.flush(io.netty.channel.ChannelHandlerContext)", "offset": 1}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kRzLpzeNznNKCk7oxweCJQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry$$Lambda$6910+0x0000000802439310.close()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eQ5eHfXsWTnATdnWhCFGWgAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "MappingUpdatedAction.java"}, "function": {"name": "void org.elasticsearch.cluster.action.index.MappingUpdatedAction.sendUpdateMapping(org.elasticsearch.index.Index, java.lang.String, org.elasticsearch.index.mapper.Mapping, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rVJnJ5WgkAAuxcvebNsXPwAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "int io.netty.handler.ssl.SslHandler.unwrap(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, int)", "offset": 4}, "line": {"number": 1339}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h9JxRYZ-Y8EVIiI8sDoSGAAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.implRead(byte[], int, int)", "offset": 11}, "line": {"number": 309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uchUv6RRAwtUDrZKhO2h8QAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.lambda$consumeToken$2(org.elasticsearch.xpack.core.security.authc.AuthenticationToken, java.util.concurrent.atomic.AtomicReference, java.util.concurrent.atomic.AtomicReference, long, org.elasticsearch.xpack.security.authc.Authenticator$Context, java.util.Map, org.elasticsearch.xpack.core.security.authc.Realm, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZmt"}} +{"Stackframe": {"function": {"name": "__handle_mm_fault"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "itNYDDux1CCzX0YHImZaewAAAAAAAACB"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.authenticateWithCache(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener)", "offset": 38}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fJIr5vQAn81_ytZBhz6xpAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.s3.SocketAccess$$Lambda$8688+0x00000008020835a0.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xyC-vyzgsDe_VuNG-DhfIQAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.moveToNextPhase(org.elasticsearch.common.util.concurrent.AtomicArray, org.elasticsearch.action.search.SearchPhaseController$ReducedQueryPhase, org.elasticsearch.common.util.concurrent.AtomicArray)", "offset": 6}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bOb86QTSjl0Tbgl6WGMPVwAAAAAAAADh"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken()", "offset": 55}, "line": {"number": 762}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACO"}} +{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.merge(org.apache.lucene.index.MergeState)", "offset": 16}, "line": {"number": 145}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B-4a2N9xDOSL4yxG_gAffQAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$4(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.common.util.concurrent.ListenableFuture, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 11}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_OURcYkX0iBxmyshrTvm6gAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "AbstractNioByteChannel.java"}, "function": {"name": "java.lang.Object io.netty.channel.nio.AbstractNioByteChannel.filterOutboundMessage(java.lang.Object)", "offset": 6}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pl4QAnODL99kwWMDWeoC8wAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.resolveIndexNames(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.cluster.metadata.Metadata, java.util.Set, org.elasticsearch.action.ActionListener)"}, "line": {"number": 600}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4LcEXAQVP4PCo9VxhEKuZQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "void org.elasticsearch.cluster.DiffableUtils$DiffableValueSerializer.writeDiff(org.elasticsearch.cluster.Diff, org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 690}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BQ3-gSiDHtjBWMvWMYG6qgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "PeersRequest.java"}, "function": {"name": "void org.elasticsearch.discovery.PeersRequest.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 32}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m3tIqGWDOzCH_q4z0bYhiAAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.dataformat.smile.SmileParser.nextToken()", "offset": 11}, "line": {"number": 374}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAYPw"}} +{"Stackframe": {"function": {"name": "aufs_open_dir"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6f4gG0tA9vAOwVrj6dlJ0wAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "ReuseBuffersLZ4BlockOutputStream.java"}, "function": {"name": "void org.elasticsearch.transport.ReuseBuffersLZ4BlockOutputStream.flushBufferedData()", "offset": 3}, "line": {"number": 207}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gPBctPsmAQAJ7XPMDQ-KKgAAAAAAAADL"}} +{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "void sun.security.ssl.SSLSocketImpl$AppOutputStream.write(byte[], int, int)", "offset": 35}, "line": {"number": 1298}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJ"}} +{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.common.IteratingActionListener.run()", "offset": 6}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjObt"}} +{"Stackframe": {"function": {"name": "gro_normal_list.part.135"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mKXTVTxiptRtMPDOFrZoTwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateListeners(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.common.StopWatch)"}, "line": {"number": 505}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjiEf"}} +{"Stackframe": {"function": {"name": "rtnl_fill_stats"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gs-Dp-bkHGP2EKd53eqOEgAAAAAAAAB-"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$MetadataIndexWriter.prepareCommit(java.lang.String, long, long, org.elasticsearch.Version)", "offset": 10}, "line": {"number": 654}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m6GbdumwIZ5HutRKgvHDQAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "InputStreamStreamInput.java"}, "function": {"name": "byte org.elasticsearch.common.io.stream.InputStreamStreamInput.readByte()"}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIsub"}} +{"Stackframe": {"function": {"name": "truncate_inode_pages_final"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AIW-lPQXo1TdAE_hNw_PqQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.translog.TranslogStats org.elasticsearch.index.shard.IndexShard.translogStats()"}, "line": {"number": 1141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YKoBBl0G_e9oE7cFaZfzDAAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "URLClassLoader.java"}, "function": {"name": "java.net.URL java.net.URLClassLoader.findResource(java.lang.String)", "offset": 7}, "line": {"number": 620}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2"}} +{"Stackframe": {"file": {"name": "NativeFSLockFactory.java"}, "function": {"name": "void org.apache.lucene.store.NativeFSLockFactory$NativeFSLock.ensureValid()", "offset": 21}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesProducer.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene80.Lucene80DocValuesProducer$SparseNumericDocValues.nextDoc()"}, "line": {"number": 484}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KB4O6teQl5VhWOOWlMIubQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "void java.util.Arrays.fill(int[], int)"}, "line": {"number": 3180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wACdzqsbVZZ7-w9w4aA61AAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "SSLEngineInputRecord.java"}, "function": {"name": "sun.security.ssl.Plaintext[] sun.security.ssl.SSLEngineInputRecord.decode(java.nio.ByteBuffer[], int, int)", "offset": 3}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Rf28uus4XCT1MYMuboj79gAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncPrimaryAction.lambda$runWithPrimaryShardReference$2(org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryShardReference, org.elasticsearch.action.support.replication.ReplicationResponse)", "offset": 20}, "line": {"number": 414}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iN3C5173bfl4YBtV1f8buwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.internalSendMessage(java.lang.Object, org.elasticsearch.common.bytes.BytesReference, org.elasticsearch.action.NotifyOnceListener)"}, "line": {"number": 1135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAABa3a"}} +{"Stackframe": {"function": {"name": "xfs_end_ioend"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "O6091ZB5jV9xKR7I7_uzYgAAAAAAAABd"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.messageReceived(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage, long)", "offset": 13}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LG1iCWXc581Ya7-aKQE_xgAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.util.stream.Node java.util.stream.AbstractPipeline.evaluate(java.util.Spliterator, boolean, java.util.function.IntFunction)", "offset": 7}, "line": {"number": 575}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "BestBucketsDeferringCollector.java"}, "function": {"name": "org.elasticsearch.search.aggregations.InternalAggregation org.elasticsearch.search.aggregations.bucket.BestBucketsDeferringCollector$2.buildAggregation(long)", "offset": 4}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4LWodyiv9Hy4HicwczMhQwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.exists(java.nio.file.Path)", "offset": 1}, "line": {"number": 532}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4Rje6Na2MFlheox6495qOgAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.settings.Settings.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 2}, "line": {"number": 672}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-k1yErCu-jNwISnaM-KD7QAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "java.lang.String org.elasticsearch.xcontent.provider.json.JsonXContentParser.nextFieldName()"}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "COmxs2R5NWtojTt5uW-SCQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "int sun.nio.fs.UnixPath.getNameCount()"}, "line": {"number": 295}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_SYQoPxIook4uiOmDZql5wAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Util.java"}, "function": {"name": "java.lang.String sun.nio.fs.Util.toString(byte[])"}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eLZcmkguwR8Cgi2RzPcV7gAAAAAAAACD"}} +{"Stackframe": {"file": {"name": "LRUQueryCache.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight.scorerSupplier(org.apache.lucene.index.LeafReaderContext)", "offset": 23}, "line": {"number": 743}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bACwSC3MlpPvpZ_EqjrI5AAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "Permissions.java"}, "function": {"name": "boolean java.security.Permissions.implies(java.security.Permission)", "offset": 7}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4kWCaNFLMV9D_w_Vhl3uMQAAAAAAAABU"}} +{"Stackframe": {"file": {"name": "MSBRadixSorter.java"}, "function": {"name": "void org.apache.lucene.util.MSBRadixSorter.radixSort(int, int, int, int)", "offset": 14}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tEh-T90uBvlQfHt8UOCI5QAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run()", "offset": 4}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "IndexShardOperationPermits.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShardOperationPermits.acquire(org.elasticsearch.action.ActionListener, java.lang.String, boolean, java.lang.Object)", "offset": 5}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "STqKraHdt8yd9UD4ZkdTcAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.map(java.util.Map)"}, "line": {"number": 866}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "db7h5t6lXZ_2CL1N4DXU6AAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "ValuesSource.java"}, "function": {"name": "org.apache.lucene.index.RandomAccessOrds org.elasticsearch.search.aggregations.support.ValuesSource$Bytes$WithOrdinals$FieldData.globalOrdinalsValues(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6ip1iuYQq9vB3aUDYyBeIwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Lucene80NormsProducer.java"}, "function": {"name": "boolean org.apache.lucene.codecs.lucene80.Lucene80NormsProducer$SparseNormsIterator.advanceExact(int)"}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AUF9qfndDpPVzyW0cm1sXgAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$RunBeforeActionListener.onResponse(java.lang.Object)", "offset": 5}, "line": {"number": 440}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALAuj"}} +{"Stackframe": {"function": {"name": "mem_cgroup_try_charge"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ks4MbYgXaKKBNMAO1163fgAAAAAAAACv"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 29}, "line": {"number": 284}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FJbudZvNmbVnc0OPR39dIgAAAAAAAADT"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextFieldName()", "offset": 49}, "line": {"number": 1080}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CMh__DRjYW6WKuSO4E-9UAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$6.doRun()"}, "line": {"number": 1045}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mqWA7SS-uPGD-_Z3zWEpkgAAAAAAAABq"}} +{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.xcontent.json.JsonXContentGenerator.writeRawField(java.lang.String, java.io.InputStream, org.elasticsearch.xcontent.XContentType)", "offset": 16}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "59i-wMdSlFTE9FP7ALC-fwAAAAAAAABP"}} +{"Stackframe": {"file": {"name": "MergePolicy.java"}, "function": {"name": "boolean org.apache.lucene.index.MergePolicy.useCompoundFile(org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 12}, "line": {"number": 669}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bhZo2QRqgq-0DU0P-coC5wAAAAAAAABW"}} +{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.engine.SegmentsStats org.elasticsearch.index.engine.Engine.segmentsStats(boolean)", "offset": 6}, "line": {"number": 541}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8XTAfUAP46Th8rm1oSYfsgAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6231+0x0000000801cdad20.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uof2oKCX86V-_cQCuGg7EwAAAAAAAChU"}} +{"Stackframe": {"function": {"name": "__nf_conntrack_find_get"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kBpc1PHwyN8zr12mMJMNgQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.json.JsonXContentGenerator.writeNullField(java.lang.String)"}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uC86pFXXnBLCj6eRRljPDwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 1}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0UWcGuv4HeepGHFbr48-rAAAAAAAAAC5"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsReader.(org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat, org.apache.lucene.index.SegmentReadState)", "offset": 44}, "line": {"number": 311}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z_ZeRXCxHeNXTu6DB2OR1gAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "EsExecutors.java"}, "function": {"name": "boolean org.elasticsearch.common.util.concurrent.EsExecutors$ExecutorScalingQueue.offer(java.lang.Object)"}, "line": {"number": 363}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HHvO0O_M7qxq_PkVq5p74wAAAAAAAAHm"}} +{"Stackframe": {"file": {"name": "SSLEngineOutputRecord.java"}, "function": {"name": "sun.security.ssl.Ciphertext sun.security.ssl.SSLEngineOutputRecord.encode(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer)", "offset": 92}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9F2a_yzWrSmXRu6SZEKaiwAAAAAAAABd"}} +{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "void co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.dispatchEvent(co.elastic.apm.agent.report.ReportingEvent, long, boolean)", "offset": 18}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3EjttOooo8WfaORlLIDB5QAAAAAAAAB6"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.serialize(org.elasticsearch.common.xcontent.ToXContent, java.lang.String, boolean, java.io.OutputStream)", "offset": 24}, "line": {"number": 303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9EBKc87P9754FpEI-1iJ5QAAAAAAAADM"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ReroutePhase.performRemoteAction(org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.cluster.node.DiscoveryNode)", "offset": 18}, "line": {"number": 721}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fJ2vEHN0ahhqkolwZM_-mAAAAAAAAACd"}} +{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.deleteFiles(java.util.Collection)", "offset": 20}, "line": {"number": 717}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAATw-1"}} +{"Stackframe": {"function": {"name": "part_in_flight"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ahMxWqP1a_8hG_qUbGypwwAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.scoreRange(org.apache.lucene.search.LeafCollector, org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.search.TwoPhaseIterator, org.apache.lucene.util.Bits, int, int)", "offset": 3}, "line": {"number": 221}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "45tdflDdpQ8_sS3AcLhDvAAAAAAAAACk"}} +{"Stackframe": {"file": {"name": "TransformScheduler.java"}, "function": {"name": "void org.elasticsearch.xpack.transform.transforms.scheduling.TransformScheduler.processScheduledTasks()", "offset": 29}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B9B5e8V6cjFPIRCy3TgKPAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "OTelSpanBuilder.java"}, "function": {"name": "io.opentelemetry.api.trace.SpanBuilder co.elastic.apm.agent.opentelemetry.sdk.OTelSpanBuilder.setAttribute(java.lang.String, java.lang.String)"}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9sYnFbigFrf_-fozodwm9QAAAAAAAAFs"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "int org.apache.lucene.index.DefaultIndexingChain.processField(int, org.apache.lucene.index.IndexableField, long, int)", "offset": 50}, "line": {"number": 564}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pGS8OUXSiLWiH5S3vFML0QAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "MemorySessionImpl.java"}, "function": {"name": "void jdk.internal.foreign.MemorySessionImpl.close()"}, "line": {"number": 241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "t50PCqH5T4d6gM3drpxvmwAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 44}, "line": {"number": 874}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jcM_4Dl2NGfu-G-e5pBI8wAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "boolean sun.nio.ch.IOUtil.drain(int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y_0PlmgodfGN6ilNuwSgmAAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "LRUQueryCache.java"}, "function": {"name": "org.apache.lucene.search.DocIdSet org.apache.lucene.search.LRUQueryCache.cacheIntoBitSet(org.apache.lucene.search.BulkScorer, int)", "offset": 2}, "line": {"number": 513}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rs-7smSxpcCpQ4EcnQyDfwAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.checkForApiKey()"}, "line": {"number": 377}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6UVknviTZuHBZK9RlE_ImQAAAAAAAAB9"}} +{"Stackframe": {"file": {"name": "MessageToMessageEncoder.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageEncoder.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 28}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ljUXeBhwvOEIoKLQ54oy3wAAAAAAAABk"}} +{"Stackframe": {"file": {"name": "Checkpoint.java"}, "function": {"name": "java.lang.String org.elasticsearch.index.translog.Checkpoint.toString()"}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kwGfYhr1GsPl-q9KOVF6bQAAAAAAAAGs"}} +{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "int sun.security.ssl.SSLSocketImpl$AppInputStream.read(byte[], int, int)", "offset": 71}, "line": {"number": 1069}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aTMNVHETyzaTiTA3xRl8fgAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "org.elasticsearch.cluster.routing.RoutingNodes org.elasticsearch.cluster.ClusterState.getRoutingNodes()", "offset": 3}, "line": {"number": 307}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_IZbUtnGtg8gN8VtB0NjtQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "AbstractFileSystemProvider.java"}, "function": {"name": "void sun.nio.fs.AbstractFileSystemProvider.delete(java.nio.file.Path)"}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_Bdmm0vBbIMO55dmTHq0vQAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "SearchActionListener.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchActionListener.onResponse(org.elasticsearch.search.SearchPhaseResult)", "offset": 2}, "line": {"number": 33}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4LZyz0ky4KZRxU-ycOOQygAAAAAAAABN"}} +{"Stackframe": {"file": {"name": "HexUtils.java"}, "function": {"name": "void co.elastic.apm.agent.util.HexUtils.nextBytes(java.lang.String, int, byte[])", "offset": 4}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFA8y"}} +{"Stackframe": {"function": {"name": "get_futex_value_locked"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5vMyVxaxXbqzsaKVqZzo9wAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "OutputStreamStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.OutputStreamStreamOutput.writeBytes(byte[], int, int)"}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vxRz972AIxuNYE4eDQCpVgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.xcontent.json.JsonXContentParser.text()", "offset": 1}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GgYuOINmwLJxsjP-M2E9cQAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "RestClusterGetSettingsAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.admin.cluster.RestClusterGetSettingsAction.lambda$prepareRequest$0(org.elasticsearch.client.node.NodeClient, org.elasticsearch.action.admin.cluster.state.ClusterStateRequest, boolean, org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel)"}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JTsyAcrLrEZPJGcLGjMJIQAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "DateFieldMapper.java"}, "function": {"name": "org.apache.lucene.search.Query org.elasticsearch.index.mapper.DateFieldMapper$DateFieldType.handleNow(org.elasticsearch.index.query.SearchExecutionContext, java.util.function.Function)", "offset": 5}, "line": {"number": 509}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5iAtVIILui-LgFNzk7nI4QAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SourceLookup.java"}, "function": {"name": "java.lang.Object org.elasticsearch.search.lookup.SourceLookup.filter(org.elasticsearch.search.fetch.subphase.FetchSourceContext)"}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xLg4xP6kyCCJ392C0IAEAwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "BaseRestHandler.java"}, "function": {"name": "void org.elasticsearch.rest.BaseRestHandler.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient)"}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T7Ugi353BwPylAwIPK3gzQAAAAAAAAHv"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "void org.elasticsearch.search.fetch.FetchPhase.execute(org.elasticsearch.search.internal.SearchContext)", "offset": 68}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C28fEz-7x-SIpNyW4Bp0FwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "FilteringTokenFilter.java"}, "function": {"name": "boolean org.apache.lucene.analysis.FilteringTokenFilter.incrementToken()", "offset": 1}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zEgrOk71L1BRIHvznRZuRQAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "void org.apache.lucene.index.SegmentMerger.mergeDocValues(org.apache.lucene.index.SegmentWriteState)", "offset": 1}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACfNr"}} +{"Stackframe": {"function": {"name": "do_group_exit"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHafM"}} +{"Stackframe": {"function": {"name": "__do_sys_bpf"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4m5U9eeeE_AZZNhyDQlE3QAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "FileBasedSeedHostsProvider.java"}, "function": {"name": "java.util.List org.elasticsearch.discovery.FileBasedSeedHostsProvider.getSeedAddresses(org.elasticsearch.discovery.SeedHostsProvider$HostsResolver)"}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fgcQtYXN4h_K1-CWi7-E3gAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.lambda$writeMap$3(org.elasticsearch.common.io.stream.StreamOutput, org.elasticsearch.common.io.stream.Writeable)"}, "line": {"number": 637}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rLjBo_k19vor7LkQgiOErwAAAAAAAABx"}} +{"Stackframe": {"file": {"name": "FreqProxTermsWriter.java"}, "function": {"name": "void org.apache.lucene.index.FreqProxTermsWriter.flush(java.util.Map, org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.NormsProducer)", "offset": 15}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IS1ArEPDf7OwNwli619BSwAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$consumeToken$13(java.util.Map, org.elasticsearch.xpack.core.security.authc.Realm, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nD25wdhZLWE2nkSvAA770QAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Reference.java"}, "function": {"name": "void java.lang.ref.Reference.clear0()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z0TmQagVnHgFdAowAPCojQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "java.lang.Long com.typesafe.config.impl.SimpleConfig.getBytes(java.lang.String)", "offset": 2}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Lo1bd7PttsuTzFjX2oW5lgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "JarURLConnection.java"}, "function": {"name": "java.io.InputStream sun.net.www.protocol.jar.JarURLConnection.getInputStream()"}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "v9PefBDDy2o7h2ynvK6BYwAAAAAAAABh"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.file.DirectoryStream sun.nio.fs.UnixFileSystemProvider.newDirectoryStream(java.nio.file.Path, java.nio.file.DirectoryStream$Filter)", "offset": 25}, "line": {"number": 431}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wdf_fGMEPXcmaZUprOUqQwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.ClusterModule$$Lambda$2290+0x000000080133a970.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wg3NMwFQjkpTmdqB4Do_BAAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "CopyOnWriteHashMap.java"}, "function": {"name": "org.elasticsearch.common.collect.CopyOnWriteHashMap org.elasticsearch.common.collect.CopyOnWriteHashMap.copyAndPutAll(java.lang.Iterable)", "offset": 3}, "line": {"number": 531}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Jd7KB1CKmQqnIXVwnMnWUgAAAAAAAAB-"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.settings.Settings.getAsStructuredMap()", "offset": 7}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM"}} +{"Stackframe": {"function": {"name": "futex_wake"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fEf2U4TLcZ6jkTz3kXzr0AAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.maybeLookupRunAsUser(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZpYDXfs7r7CQqXsxWm2X2QAAAAAAAACJ"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.sendResponse(org.elasticsearch.Version, java.util.Set, org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.TransportResponse, long, java.lang.String, boolean, byte)", "offset": 18}, "line": {"number": 847}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSg7"}} +{"Stackframe": {"function": {"name": "do_sys_open"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gWgyKs0cnaG6FMFlBYqqnQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "SortedOps.java"}, "function": {"name": "void java.util.stream.SortedOps$SizedRefSortingSink.begin(long)"}, "line": {"number": 346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GteHJRmtGt9tBprXMjfNSgAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter$$Lambda$6983+0x0000000801e9d930.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2yACv8-EQiZTIRa2WNkdEwAAAAAAAACE"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.serialize(org.elasticsearch.xcontent.ToXContent, java.lang.String, boolean, java.util.Map, java.io.OutputStream)", "offset": 26}, "line": {"number": 332}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VhlTljsBJDT98mVay1CuwwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer.lambda$executeSingleUpload$19(org.elasticsearch.repositories.s3.AmazonS3Reference, com.amazonaws.services.s3.model.PutObjectRequest)"}, "line": {"number": 487}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM"}} +{"Stackframe": {"file": {"name": "Netty4HttpPipeliningHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpPipeliningHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 16}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ExOLHpMtDJgNCMVUQOkZYwAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.lambda$innerRun$1(org.elasticsearch.action.search.SearchPhaseController$ReducedQueryPhase, boolean)"}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TpjjgqBU-O7RfxeFvF0xSgAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "io.opentelemetry.context.Context org.elasticsearch.tracing.apm.APMTracer.lambda$startTrace$1(java.lang.String, java.lang.String, org.elasticsearch.tracing.apm.APMTracer$APMServices, org.elasticsearch.common.util.concurrent.ThreadContext, java.util.Map)", "offset": 10}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vmHQgfCcfOO_aBNITDEbmwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.write(byte[], int, int)"}, "line": {"number": 503}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-9csDmO37G4aOEY7rEoDVQAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase$2.innerOnResponse(org.elasticsearch.search.fetch.FetchSearchResult)", "offset": 2}, "line": {"number": 226}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N7zwNYLSEE1UJ2LdT3SexQAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "HmacCore.java"}, "function": {"name": "byte[] com.sun.crypto.provider.HmacCore.engineDoFinal()", "offset": 16}, "line": {"number": 240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TZYG0O3Fq7DAPgmVpgfjHQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "void sun.nio.ch.NioSocketImpl$2.write(byte[], int, int)"}, "line": {"number": 812}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CSTFmAwO5vU5_W27M98DswAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "ElasticsearchMergePolicy.java"}, "function": {"name": "org.apache.lucene.index.MergePolicy$MergeSpecification org.elasticsearch.index.shard.ElasticsearchMergePolicy.findMerges(org.apache.lucene.index.MergeTrigger, org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.IndexWriter)"}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "odI-mpJC6OJmTYf_rv8B7gAAAAAAAAB-"}} +{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "int sun.nio.ch.EPollSelectorImpl.processEvents(int, java.util.function.Consumer)", "offset": 19}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEeBq"}} +{"Stackframe": {"function": {"name": "wait_rcu_exp_gp"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "n94c5qCYR6pOYC1Ght5oSAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "SearchHit.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.search.SearchHit.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 1}, "line": {"number": 547}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALoE6"}} +{"Stackframe": {"function": {"name": "getname_flags"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qMWTR3sRXDI_KgvcJVsGRwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6902+0x0000000801db2198.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_9_-8qGjh9aou0FeZrQLMgAAAAAAAADT"}} +{"Stackframe": {"file": {"name": "SSLCipher.java"}, "function": {"name": "sun.security.ssl.Plaintext sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.decrypt(byte, java.nio.ByteBuffer, byte[])", "offset": 33}, "line": {"number": 1656}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "K7SbFHXdVXATGhidHvqjHQAAAAAAAADf"}} +{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "void com.sun.crypto.provider.GaloisCounterMode.init(int, java.security.Key, javax.crypto.spec.GCMParameterSpec)", "offset": 35}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LT5lr845yiJBLJcYHx5FbQAAAAAAAABW"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "java.lang.Object java.util.stream.ReferencePipeline.collect(java.util.stream.Collector)", "offset": 8}, "line": {"number": 578}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "25mp98L6MrKhqE8ccc5QLgAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "BaseRestHandler.java"}, "function": {"name": "void org.elasticsearch.rest.BaseRestHandler.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient)"}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3gDxzJnNA7N984KflEQ98gAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeSystemUser(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 620}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B_ImP3FPXINLaYvJmiGo_QAAAAAAAABN"}} +{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode.encryptFinal(byte[], int, int, byte[], int)", "offset": 13}, "line": {"number": 629}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iaYGOKrCYzeQFPvSFK3LGwAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "LoggingHandler.java"}, "function": {"name": "void io.netty.handler.logging.LoggingHandler.flush(io.netty.channel.ChannelHandlerContext)", "offset": 3}, "line": {"number": 295}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qCAXb4nsA8MBowrcfqVWbwAAAAAAAACC"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.commitInternal(org.apache.lucene.index.MergePolicy)", "offset": 25}, "line": {"number": 3778}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Dt1F-FuYYu7f950c2kh4-wAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "MonitoringIndexNameResolver.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.monitoring.resolver.MonitoringIndexNameResolver$Timestamped.index(org.elasticsearch.xpack.monitoring.exporter.MonitoringDoc)"}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C-k4pP3C58XjF9Fd3Lq5HwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "DefaultHttpHeaders.java"}, "function": {"name": "io.netty.handler.codec.http.HttpHeaders io.netty.handler.codec.http.DefaultHttpHeaders.add(java.lang.CharSequence, java.lang.Object)"}, "line": {"number": 123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "125X0goavCApK-g1l1pkWwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader.readField(org.apache.lucene.store.DataInput, org.apache.lucene.index.StoredFieldVisitor, org.apache.lucene.index.FieldInfo, int)"}, "line": {"number": 211}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SxBEkZVEzrql9ThYOxK2HwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UnfollowAction.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.UnfollowAction.toSteps(org.elasticsearch.client.Client, java.lang.String, org.elasticsearch.xpack.core.ilm.Step$StepKey)"}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASc3-"}} +{"Stackframe": {"function": {"name": "apparmor_capable"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OdkuTNpXjsFc7WV5c_bgKAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard$$Lambda$8959+0x00000008027eb9c0.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h8QiaabflgCjYmifUSAc5wAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "EPollArrayWrapper.java"}, "function": {"name": "void sun.nio.ch.EPollArrayWrapper.interrupt()"}, "line": {"number": 317}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cJztuwL3Ka8-GXv43dDYNAAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "void java.util.concurrent.ConcurrentHashMap$EntrySpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 2}, "line": {"number": 3643}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wkAS81DnJIPI3jCVPnJ-eAAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "void java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$UnmodifiableEntrySetSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 1}, "line": {"number": 1650}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MWL6u1rwSyPKKa74FLbYBgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "AWS4Signer.java"}, "function": {"name": "byte[] com.amazonaws.auth.AWS4Signer.computeSignature(java.lang.String, byte[], com.amazonaws.auth.internal.AWS4SignerRequestParams)"}, "line": {"number": 435}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8JkSH12WhA-WQr2yainO7AAAAAAAAABe"}} +{"Stackframe": {"function": {"name": "iptable_filter_hook"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XlU-BoenXM4_Js4U6LFVlQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$$Lambda$6914+0x0000000802433568.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nftB2PmJZcz7DZJedLNipgAAAAAAAABQ"}} +{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "void sun.nio.ch.FileChannelImpl.force(boolean)", "offset": 9}, "line": {"number": 465}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DfOndB4ftHT4N14zYmevBgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write1(int, byte)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uqz36MZf1ln0xVwpZ_tNhgAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeOptionalString(java.lang.String)", "offset": 4}, "line": {"number": 351}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D_SFoBfOPuB9mtXdOIQrvgAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.index(java.util.List, org.apache.lucene.index.IndexWriter)", "offset": 3}, "line": {"number": 662}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SMW9zCbquMJpN4-ovsWRRgAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "IndicesQueryCache.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.elasticsearch.indices.IndicesQueryCache$CachingWeightWrapper.bulkScorer(org.apache.lucene.index.LeafReaderContext)", "offset": 1}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KGcnodwCdbO2RZIs7I3VDAAAAAAAAAG7"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleRequest(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.Header, org.elasticsearch.transport.InboundMessage)", "offset": 85}, "line": {"number": 283}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C95QcIcnPLRLOVCNpL2R7wAAAAAAAABl"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$1.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 10}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Or3A_uFtf7YBOMVYzqReaQAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor.sendRequestInner(org.elasticsearch.transport.TransportInterceptor$AsyncSender, org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 5}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ng4wCleBoQTspajWUco4NQAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.io.stream.StreamInput.readMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader, java.util.function.IntFunction)", "offset": 6}, "line": {"number": 635}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cgIdU-uvJLoO1WrtsV2P8gAAAAAAAFg2"}} +{"Stackframe": {"function": {"name": "ena_io_poll"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LMhxKV9KGc8nN9e8jIZ_dQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "CollectionUtil.java"}, "function": {"name": "int org.apache.lucene.util.CollectionUtil$ListTimSorter.compare(int, int)"}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mSKMuTauUB6AvF_x3SDLhAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$RefreshResult org.elasticsearch.index.engine.InternalEngine.refresh(java.lang.String)"}, "line": {"number": 1836}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedExceptionAction)", "offset": 3}, "line": {"number": 569}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlcA7"}} +{"Stackframe": {"function": {"name": "tcp_sendmsg"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALzio"}} +{"Stackframe": {"function": {"name": "d_invalidate"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vlCPx-o5L3rGjIY2JuUHlQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.TransportService$$Lambda$1301.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TbI11ipOuRPV1oq3v1R7ugAAAAAAAAIP"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ReroutePhase.doRun()", "offset": 81}, "line": {"number": 891}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZZo2k2tvXWSiaLmHTg6jtQAAAAAAAADo"}} +{"Stackframe": {"file": {"name": "PeerRecoverySourceService.java"}, "function": {"name": "void org.elasticsearch.indices.recovery.PeerRecoverySourceService.recover(org.elasticsearch.indices.recovery.StartRecoveryRequest, org.elasticsearch.action.ActionListener)", "offset": 26}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lmdMMTHiYSG09aFSlb3EMgAAAAAAAADF"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser._parseName(int)", "offset": 32}, "line": {"number": 1732}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rTxaKzkbha_JID224cs5EwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl$1.read(byte[], int, int)"}, "line": {"number": 803}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAFI"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 36}, "line": {"number": 198}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1LWZJ-lujpfxLmSgW40IUAAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.updateCheckPoints(org.elasticsearch.cluster.routing.ShardRouting, java.util.function.LongSupplier, java.util.function.LongSupplier, java.lang.Runnable)", "offset": 3}, "line": {"number": 312}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ABic3l15LWzfxEDtDgq1DQAAAAAAAABd"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$snapshotShard$77(org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.apache.lucene.index.IndexCommit, org.elasticsearch.index.shard.ShardId, org.elasticsearch.snapshots.SnapshotId, java.util.List, org.elasticsearch.common.blobstore.BlobContainer, java.lang.Runnable, java.lang.String, org.elasticsearch.repositories.SnapshotShardContext, java.util.Collection)", "offset": 15}, "line": {"number": 2800}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "osHSi38irPvHcYZp1iwRgQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$3149.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "f5pCmW13zl5OWUDLG_ClrwAAAAAAAAC4"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.executeQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)", "offset": 18}, "line": {"number": 644}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "91NwS7lzCKtMa9wKtX82wQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "LocalCheckpointTracker.java"}, "function": {"name": "org.elasticsearch.index.seqno.SeqNoStats org.elasticsearch.index.seqno.LocalCheckpointTracker.getStats(long)"}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mxRwXt-8CQt60ehjLjpoTwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory.privateDeleteFile(java.lang.String, boolean)"}, "line": {"number": 370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1oyY5_H1XDxnqxtQutVBSwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.close(java.io.Closeable[])"}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "29AZF_seMl3LWsBL1xLs0AAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "Authentication.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authc.Authentication$RealmRef.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 5}, "line": {"number": 770}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UepoRzuMTBR-jFpLlu_fPgAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "SegmentInfos.java"}, "function": {"name": "java.util.Collection org.apache.lucene.index.SegmentInfos.files(boolean)", "offset": 10}, "line": {"number": 820}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QUT-nNY12PdX-wWYy6XdlgAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "AbstractObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.AbstractObjectParser.lambda$declareObject$1(org.elasticsearch.common.xcontent.ContextParser, org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)"}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Dg0i2lYRLQUln2hBXrJbCwAAAAAAAAB7"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.sendResponse(org.elasticsearch.Version, java.lang.Object, org.elasticsearch.transport.TransportResponse, long, java.lang.String, org.elasticsearch.transport.TransportResponseOptions, byte)", "offset": 16}, "line": {"number": 1199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_20iQw_1BgBh9m8HkEpgSwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "Lucene90BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.blocktree.Lucene90BlockTreeTermsWriter$TermsWriter.write(org.apache.lucene.util.BytesRef, org.apache.lucene.index.TermsEnum, org.apache.lucene.codecs.NormsProducer)"}, "line": {"number": 1024}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TehVpU4OSSIJc9O233JRogAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "JsonGeneratorImpl.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.JsonGeneratorImpl.writeStringField(java.lang.String, java.lang.String)"}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "illcsETYyGChWwTauJoFaAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "LifecyclePolicyConfig.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecyclePolicy org.elasticsearch.xpack.core.template.LifecyclePolicyConfig.load(org.elasticsearch.xcontent.NamedXContentRegistry)"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BJ_g-jSj1e8zPXdoO0aPvgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.ingest.geoip.DatabaseNodeService$$Lambda$6029+0x00000008017d24d8.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "45e8Lbo-GtzVUz8fB3zJjQAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "Log4jContextFactory.java"}, "function": {"name": "org.apache.logging.log4j.spi.LoggerContext org.apache.logging.log4j.core.impl.Log4jContextFactory.getContext(java.lang.String, java.lang.ClassLoader, java.lang.Object, boolean, java.net.URI, java.lang.String)"}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjh5v"}} +{"Stackframe": {"function": {"name": "rtnl_dump_all"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Mo8MRZcTTA5MSH5mIc8c7wAAAAAAAABi"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.updateChildren()", "offset": 18}, "line": {"number": 247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DVSkUfLwOzQuwgYi6TvurAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "AbstractCollection.java"}, "function": {"name": "boolean java.util.AbstractCollection.addAll(java.util.Collection)", "offset": 1}, "line": {"number": 335}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eCd7pmEC4QoP7FQm1ikosgAAAAAAAAEK"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.handleIncomingPublishRequest(org.elasticsearch.transport.BytesTransportRequest)", "offset": 35}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zr7T9Lp-M7VvlAtjs4B4fwAAAAAAAADS"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.updateShardState(org.elasticsearch.cluster.routing.ShardRouting, long, java.util.function.BiConsumer, long, java.util.Set, org.elasticsearch.cluster.routing.IndexShardRoutingTable)", "offset": 24}, "line": {"number": 535}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UokG84asYjWnHhDlmgOwzwAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "org.elasticsearch.index.mapper.ParsedDocument org.elasticsearch.index.mapper.DocumentParser.parseDocument(org.elasticsearch.index.mapper.SourceToParse, org.elasticsearch.index.mapper.MappingLookup)", "offset": 5}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3Ht5x9T6A9s9JtoiYrgOOgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKey(java.nio.channels.SelectionKey, io.netty.channel.nio.AbstractNioChannel)"}, "line": {"number": 743}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FZzIgNzHRBST9tkBv-Hj5wAAAAAAAAB4"}} +{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "long org.apache.lucene.search.Boolean2ScorerSupplier.computeCost()", "offset": 9}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xR9z1wQG4rHRUc-6hGmCnQAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "StoredFieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.index.StoredFieldsConsumer.startDocument(int)", "offset": 1}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7XuwAERz4-wOtMHIT2RfpgAAAAAAAAA8"}} +{"Stackframe": {"file": {"name": "TimSort.java"}, "function": {"name": "void java.util.TimSort.sort(java.lang.Object[], int, int, java.util.Comparator, java.lang.Object[], int, int)", "offset": 8}, "line": {"number": 220}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$3.onResponse(java.lang.Object)"}, "line": {"number": 579}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k-oYEuE0qNzcsmMdylxs5gAAAAAAAAFB"}} +{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.fs.UnixChannelFactory.open(int, sun.nio.fs.UnixPath, java.lang.String, sun.nio.fs.UnixChannelFactory$Flags, int)", "offset": 70}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rT6Wpj_D6biwR0z1hrGxmwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "void java.util.ArrayList.add(java.lang.Object, java.lang.Object[], int)", "offset": 1}, "line": {"number": 454}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mvIyISC3NjpTUMXf329NrAAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "ChannelOutputStream.java"}, "function": {"name": "void sun.nio.ch.ChannelOutputStream.writeFully(java.nio.channels.WritableByteChannel, java.nio.ByteBuffer)", "offset": 7}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5gDnmh9w-dLR4BjuTxdXiQAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.xcontent.ObjectParser$$Lambda$2348+0x00000008013431f0.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jEYY4P2KOQ6Ns3Ko0jNObAAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "BlobStoreIndexShardSnapshots.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 2}, "line": {"number": 221}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "62YI4UQGzJYoqSNJQeEjWQAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.acceptState(org.elasticsearch.cluster.ClusterState)", "offset": 5}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "litBJTEf-RvW8Ez2lNF1CQAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.applyIndexOperationOnPrimary(long, org.elasticsearch.index.VersionType, org.elasticsearch.index.mapper.SourceToParse, long, long, long, boolean)", "offset": 1}, "line": {"number": 913}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sTm2NJa4oF2xjv4OCkRO2AAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "AbstractByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.AbstractByteBufAllocator.toLeakAwareBuffer(io.netty.buffer.ByteBuf)", "offset": 2}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eXbGsW5csMSDC-cNf7pLNAAAAAAAAAC3"}} +{"Stackframe": {"file": {"name": "SignatureScheme.java"}, "function": {"name": "java.util.List sun.security.ssl.SignatureScheme.getSupportedAlgorithms(sun.security.ssl.SSLConfiguration, java.security.AlgorithmConstraints, java.util.List)", "offset": 22}, "line": {"number": 399}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANs3-"}} +{"Stackframe": {"function": {"name": "proc_pid_readlink"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rwyujQb4ou3uOCGjw02PxQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ActionRunnable.java"}, "function": {"name": "void org.elasticsearch.action.ActionRunnable$3.doRun()"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0Cdt9wyWxnG2B-xGXMO6owAAAAAAAADY"}} +{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.xfer(java.lang.Object, boolean, int, long)", "offset": 21}, "line": {"number": 616}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VFvoTC_1MXfHqnOeoSu9rAAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.handleResponse(java.net.InetSocketAddress, org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.transport.TransportResponseHandler)", "offset": 3}, "line": {"number": 1436}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PzdDQa2X1btcuJ3DV1Tv8AAAAAAAAAB_"}} +{"Stackframe": {"file": {"name": "HttpPipeliningHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.pipelining.HttpPipeliningHandler.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 31}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ONHH6OehoJVnZCnYDVR0qQAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "ChannelOutboundBuffer.java"}, "function": {"name": "boolean io.netty.channel.ChannelOutboundBuffer.remove()", "offset": 15}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-tSbHlR91dVpvAdxUOkCnAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.field(java.lang.String)", "offset": 1}, "line": {"number": 363}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vbgAMp4MJN-LIAvT-yH7-gAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "URLClassPath.java"}, "function": {"name": "void jdk.internal.loader.URLClassPath.check(java.net.URL)", "offset": 2}, "line": {"number": 548}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1IhEUKf_PDCxfheapNhvQQAAAAAAAACI"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.writeDocValues(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)", "offset": 16}, "line": {"number": 348}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZC4caaBbQcOc2WclRiklUwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "SSLEngine.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult javax.net.ssl.SSLEngine.unwrap(java.nio.ByteBuffer, java.nio.ByteBuffer)"}, "line": {"number": 679}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAF0Ia"}} +{"Stackframe": {"function": {"name": "__audit_inode"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "L8sWYOpDqlyTZ6yAf0Lh2QAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "BitsetFilterCache.java"}, "function": {"name": "org.apache.lucene.util.BitSet org.elasticsearch.index.cache.bitset.BitsetFilterCache$QueryWrapperBitSetProducer.getBitSet(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LyZJMdHx6B3ILhnNOrY3PgAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.ReadersAndUpdates.createNewReaderWithLatestLiveDocs(org.apache.lucene.index.SegmentReader)", "offset": 3}, "line": {"number": 667}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-AwDkjQ8a2Nxouc2tmEa4AAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.access$100(org.elasticsearch.transport.TransportService, long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions)"}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "g3pCi59qPBWaSfqiWTmFLwAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.serialize(java.lang.Object, java.lang.String, boolean, java.util.Map, java.io.OutputStream)", "offset": 28}, "line": {"number": 388}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eGt3fpd8fb-33IEga_JxmgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "java.lang.Object java.io.FilePermission$1.run()"}, "line": {"number": 203}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Cfiji-HVozsgpxvJKchgUAAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "BooleanQuery.java"}, "function": {"name": "org.apache.lucene.search.BooleanQuery org.apache.lucene.search.BooleanQuery$Builder.build()"}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y9mQUdyp86jQhHqOid6GcwAAAAAAAACW"}} +{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.OutboundMessage, org.elasticsearch.core.Releasable)", "offset": 23}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l0hCUDJE9WA5zrDYnTjz6wAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "boolean java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.add(java.lang.Object)"}, "line": {"number": 899}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yLktZTzdimRjC_BTBG8XkQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "UnixCopyFile.java"}, "function": {"name": "void sun.nio.fs.UnixCopyFile.move(sun.nio.fs.UnixPath, sun.nio.fs.UnixPath, java.nio.file.CopyOption[])", "offset": 12}, "line": {"number": 408}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D7No12t1lMzlOf32q04HAAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(java.lang.String, org.elasticsearch.transport.TransportRequest, boolean, org.elasticsearch.action.ActionListener)"}, "line": {"number": 184}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vRvuI9QPYw-gBmLoCCciSwAAAAAAAABP"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "java.lang.Object org.elasticsearch.indices.IndicesService.withTempIndexService(org.elasticsearch.cluster.metadata.IndexMetadata, org.elasticsearch.core.CheckedFunction)", "offset": 29}, "line": {"number": 673}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CfntqUZeNm20sNox6HFMzgAAAAAAAACV"}} +{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.writeAppRecord(sun.security.ssl.EngineArgs)", "offset": 63}, "line": {"number": 1271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Uf1tpnHSTgQXg9RKIrvZYQAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "QuotaAwareFileSystemProvider.java"}, "function": {"name": "java.nio.channels.SeekableByteChannel co.elastic.cloud.quotaawarefs.QuotaAwareFileSystemProvider.newByteChannel(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])"}, "line": {"number": 264}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7KiGB3QuQ0TSydl142kv4gAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "UnicodeUtil.java"}, "function": {"name": "int org.apache.lucene.util.UnicodeUtil.UTF16toUTF8(java.lang.CharSequence, int, int, byte[])"}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pglWm0RMq3BU4u1P5KYMegAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "SettingsFilter.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.SettingsFilter.filterSettings(java.lang.Iterable, org.elasticsearch.common.settings.Settings)"}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ssBRfns2Nmyl0bqa54cg3AAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "SocketAccess.java"}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.s3.SocketAccess.doPrivilegedIOException(java.security.PrivilegedExceptionAction)", "offset": 2}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SIWLB-q7XDjtQV-fe_Xm4wAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation$2.onResponse(java.lang.Object)"}, "line": {"number": 222}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-i9B3-JNdczGS_XZOzEMqwAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.tracing.apm.APMTracer$$Lambda$6897+0x00000008022d47f8.apply(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "INf3qrj40tfRq5N_0-qbsgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "void sun.nio.ch.FileChannelImpl$Closer.run()"}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Sxgb26oKQwlt07if9woPTQAAAAAAAB5c"}} +{"Stackframe": {"function": {"name": "br_nf_pre_routing_finish"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yvz8ri9VtYwQi8HkR9wUVwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Settings.get(java.lang.String)"}, "line": {"number": 275}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OVKwi55Br_WT9fxVyQu6PgAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.apache.lucene.search.BooleanWeight.bulkScorer(org.apache.lucene.index.LeafReaderContext)", "offset": 11}, "line": {"number": 338}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IduqSoeBKMJ1d1pipuvwGAAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "ExportBulk.java"}, "function": {"name": "void org.elasticsearch.xpack.monitoring.exporter.ExportBulk$Compound.doAdd(java.util.Collection)", "offset": 3}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-X0ClxKEs8PvBHrNUl0TcwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "CipherCore.java"}, "function": {"name": "void com.sun.crypto.provider.CipherCore.init(int, java.security.Key, java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom)"}, "line": {"number": 503}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ARERFsH9aCTn8PbCU_PPbAAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "ChannelOutboundBuffer.java"}, "function": {"name": "void io.netty.channel.ChannelOutboundBuffer.removeBytes(long)", "offset": 15}, "line": {"number": 338}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vd6KL86yS07n57xmk89KxQAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "Lucene54DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene54.Lucene54DocValuesConsumer.addSortedField(org.apache.lucene.index.FieldInfo, java.lang.Iterable, java.lang.Iterable)", "offset": 3}, "line": {"number": 579}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eEsPvNGYH982Mv0mPexpzgAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap.forEach(java.util.function.BiConsumer)", "offset": 6}, "line": {"number": 1429}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6xbk6AMXATcqSh5_w-yOEgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TransportClusterStatsAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction.nodeOperation(org.elasticsearch.action.support.nodes.BaseNodeRequest)"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbfA"}} +{"Stackframe": {"function": {"name": "vfs_getattr"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lp7v6sCnonPpIWgPLuwZbgAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter$$Lambda$3128.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ac8L5UaM7hx6_7ogYUjJpQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "TransportClusterStatsAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction.newResponseAsync(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.nodes.BaseNodesRequest, java.util.List, java.util.List, org.elasticsearch.action.ActionListener)"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jW43N2PmWvpZYp55bora1gAAAAAAAADM"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 99}, "line": {"number": 598}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "t1rjy3Ck_TErVMhv-psy8AAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.node.Node$$Lambda$5198+0x0000000801a0c750.publish(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.action.ActionListener, org.elasticsearch.cluster.coordination.ClusterStatePublisher$AckListener)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9"}} +{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter.inbound(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.action.ActionListener)", "offset": 33}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lJfPltGODmJePtyLCuHROAAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "URLClassPath.java"}, "function": {"name": "jdk.internal.loader.Resource jdk.internal.loader.URLClassPath$JarLoader.checkResource(java.lang.String, boolean, java.util.jar.JarEntry)", "offset": 5}, "line": {"number": 851}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9RiRfbyw6Ke6ra9C7bpO7AAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "org.elasticsearch.transport.TransportRequest org.elasticsearch.transport.RequestHandlerRegistry.newRequest(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R9d-4EOoAQqhB1QW7ZwT_wAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "IndexSearcher.java"}, "function": {"name": "void org.apache.lucene.search.IndexSearcher.search(java.util.List, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 9}, "line": {"number": 665}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(java.lang.Object)", "offset": 12}, "line": {"number": 444}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "G8dGr5IRBKlUa63ayAjDEQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "IndexTemplateRegistry.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.template.IndexTemplateRegistry.componentTemplatesExist(org.elasticsearch.cluster.ClusterState, org.elasticsearch.xpack.core.template.IndexTemplateConfig)"}, "line": {"number": 291}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "t9ckTBj6pqlfYZDlDMZ1uwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "void org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction.onScrollResponse(org.elasticsearch.index.reindex.ScrollableHitSource$AsyncResponse)"}, "line": {"number": 327}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANyri"}} +{"Stackframe": {"function": {"name": "tid_fd_revalidate"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCOK"}} +{"Stackframe": {"function": {"name": "futex_wait"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YHlfwms-HGWuY-ESvaAwpQAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService.sendSnapshotShardUpdate(org.elasticsearch.snapshots.Snapshot, org.elasticsearch.index.shard.ShardId, org.elasticsearch.cluster.SnapshotsInProgress$ShardSnapshotStatus)"}, "line": {"number": 479}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E43CjQfPMmc1FieffTmJPgAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "DataOutput.java"}, "function": {"name": "void org.apache.lucene.store.DataOutput.writeVLong(long)", "offset": 3}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qQno9-_wyhcIA1C-x4nIXAAAAAAAAAEm"}} +{"Stackframe": {"file": {"name": "MapperService.java"}, "function": {"name": "void org.elasticsearch.index.mapper.MapperService.checkFieldUniqueness(java.lang.String, java.util.Collection, java.util.Collection, java.util.Map, org.elasticsearch.index.mapper.FieldTypeLookup)", "offset": 20}, "line": {"number": 562}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "A7XOdSnQ9slI9gE1iFi_qgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "MappedByteBuffer.java"}, "function": {"name": "void java.nio.MappedByteBuffer.(int, int, int, int)"}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DpqFKlGbJ6eFD6whTHVnegAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "void org.apache.lucene.index.SegmentReader.document(int, org.apache.lucene.index.StoredFieldVisitor)", "offset": 1}, "line": {"number": 253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HmuH5pCGXma5ToZjJwiZHAAAAAAAAAC2"}} +{"Stackframe": {"file": {"name": "PolicyStepsRegistry.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.ilm.PolicyStepsRegistry.parseStepsFromPhase(java.lang.String, java.lang.String, java.lang.String)", "offset": 18}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eVTpZJdYNChcW539BKWJ3wAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$7849+0x00000008025e8888.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.LockValidatingDirectoryWrapper.createOutput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7kWfJ8nFzR4uYy0sz1PD_QAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "OsProbe.java"}, "function": {"name": "long org.elasticsearch.monitor.os.OsProbe.getTotalPhysicalMemorySize()", "offset": 5}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EH6veLqK7EPfdYG7XzXWOQAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "ReleasableBytesReference.java"}, "function": {"name": "int org.elasticsearch.common.bytes.ReleasableBytesReference.getInt(int)", "offset": 1}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YZ2-HZ9CohIHOnrl9NrNTAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask.run()"}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8IycasHuDpn892i9ex9phAAAAAAAAAB7"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "org.elasticsearch.cluster.SnapshotsInProgress$Entry org.elasticsearch.cluster.SnapshotsInProgress$Entry.readFrom(org.elasticsearch.common.io.stream.StreamInput)", "offset": 17}, "line": {"number": 831}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "58SSP1Jorf8j_W_ngTyDbgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.common.io.Streams.readFully(java.io.InputStream)", "offset": 1}, "line": {"number": 243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Mo8MRZcTTA5MSH5mIc8c7wAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.updateChildren()"}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "SortedSetDVOrdinalsIndexFieldData.java"}, "function": {"name": "org.elasticsearch.index.fielddata.IndexFieldData org.elasticsearch.index.fielddata.plain.SortedSetDVOrdinalsIndexFieldData.localGlobalDirect(org.apache.lucene.index.DirectoryReader)"}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "A80fpNwLg5UyZGOl2HXL1wAAAAAAAAH2"}} +{"Stackframe": {"file": {"name": "MetaDataMappingService.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterState org.elasticsearch.cluster.metadata.MetaDataMappingService$PutMappingExecutor.applyRequest(org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.admin.indices.mapping.put.PutMappingClusterStateUpdateRequest, java.util.Map)", "offset": 67}, "line": {"number": 311}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ABUSIyp6z6jka7vrSENSfQAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory$FSIndexOutput.(org.apache.lucene.store.FSDirectory, java.lang.String)"}, "line": {"number": 409}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "q4o-L61GbPXCZrDHmIkjUAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService$TaskOutputs.lambda$processedDifferentClusterState$1(org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.service.MasterService$Batcher$UpdateTask)"}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgHX"}} +{"Stackframe": {"function": {"name": "__slab_alloc"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.index.SegmentMerger.merge()", "offset": 3}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OJSQdrTxf40GzDZQ3SHo8gAAAAAAAAB4"}} +{"Stackframe": {"file": {"name": "HttpConnection.java"}, "function": {"name": "void org.eclipse.jetty.server.HttpConnection.onFillable()", "offset": 26}, "line": {"number": 277}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h6SWrdSzXfBtMfWpEhL_SQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.LockValidatingDirectoryWrapper.createOutput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2LPBWkpKhgTDwrjs_LVOmwAAAAAAAAHr"}} +{"Stackframe": {"file": {"name": "AnalysisRegistry.java"}, "function": {"name": "java.util.Map org.elasticsearch.index.analysis.AnalysisRegistry.buildMapping(org.elasticsearch.index.analysis.AnalysisRegistry$Component, org.elasticsearch.index.IndexSettings, java.util.Map, java.util.Map, java.util.Map)", "offset": 51}, "line": {"number": 361}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmMhn"}} +{"Stackframe": {"function": {"name": "snmp_get_cpu_field"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ovRPcszTde0VZh4hrqQUtwAAAAAAAABe"}} +{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "void org.elasticsearch.search.query.QueryPhase.execute(org.elasticsearch.search.internal.SearchContext)", "offset": 20}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2ZLt6QSDm53uXJtEjRk5cQAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "Template.java"}, "function": {"name": "org.elasticsearch.common.compress.CompressedXContent org.elasticsearch.cluster.metadata.Template.lambda$static$2(org.elasticsearch.xcontent.XContentParser, java.lang.Void)", "offset": 6}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w4Cq1cfo2BosL5j6RghC2gAAAAAAAADf"}} +{"Stackframe": {"file": {"name": "CancellableSingleObjectCache.java"}, "function": {"name": "void org.elasticsearch.common.util.CancellableSingleObjectCache.get(java.lang.Object, java.util.function.BooleanSupplier, org.elasticsearch.action.ActionListener)", "offset": 46}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DsmnB-99lpR3jSBsZQO0JQAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "byte[] org.elasticsearch.xpack.core.security.authc.support.BCrypt.crypt_raw(byte[], byte[], int, int[])", "offset": 11}, "line": {"number": 1563}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wJjZ6rOmNJJmblBzmKA7yQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.field(java.lang.String, java.lang.Object)"}, "line": {"number": 796}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VhUIBMnDjpGauL-PhicCqgAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "ResourceWatcherService.java"}, "function": {"name": "void org.elasticsearch.watcher.ResourceWatcherService$ResourceMonitor.run()", "offset": 2}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HAPuRG_LRRYFUeA5sYpd1gAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "SessionInputBufferImpl.java"}, "function": {"name": "int org.apache.http.impl.io.SessionInputBufferImpl.fillBuffer()", "offset": 11}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T7Ugi353BwPylAwIPK3gzQAAAAAAAAJo"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "void org.elasticsearch.search.fetch.FetchPhase.execute(org.elasticsearch.search.internal.SearchContext)", "offset": 82}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8RQyRW_fqLsoJLvr6Yk7xQAAAAAAAABz"}} +{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.apache.lucene.search.BooleanWeight.scorerSupplier(org.apache.lucene.index.LeafReaderContext)", "offset": 10}, "line": {"number": 379}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QN3Ei4y0jjQeG3JY3GoqzgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "BufferedIndexInput.java"}, "function": {"name": "byte org.apache.lucene.store.BufferedIndexInput.readByte()", "offset": 1}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACli4"}} +{"Stackframe": {"function": {"name": "capable"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tG4-XeBGb5DNqjdfe9ekJwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "void org.elasticsearch.core.Streams$1.write(byte[], int, int)"}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2JdqJqt8BMgPWVhHXGXHjQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "RestGetIndicesAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.admin.indices.RestGetIndicesAction.lambda$prepareRequest$0(org.elasticsearch.client.node.NodeClient, org.elasticsearch.action.admin.indices.get.GetIndexRequest, org.elasticsearch.rest.RestRequest, boolean, org.elasticsearch.rest.RestChannel)"}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TMN58sDtY11o0S1fn4NuzQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDWriter.writeLeafBlockPackedValues(org.apache.lucene.store.DataOutput, int[], int, int, java.util.function.IntFunction, int)"}, "line": {"number": 1023}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zKHS4hsJddCCPPI3lqHKuAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "org.elasticsearch.cluster.NamedDiff org.elasticsearch.cluster.SnapshotsInProgress.readDiffFrom(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WGoSXD4hgiKjdS4ZTCpocAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "IndexModule.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.IndexModule.lambda$static$1(org.elasticsearch.index.engine.Engine)"}, "line": {"number": 626}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5m3n_54tQQHrC0wzPZkPdAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "S3RequestEndpointResolver.java"}, "function": {"name": "void com.amazonaws.services.s3.internal.S3RequestEndpointResolver.resolveRequestEndpoint(com.amazonaws.Request)"}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OwxhJ9aS9l8Am41KVUEKowAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "CountedCollector.java"}, "function": {"name": "void org.elasticsearch.action.search.CountedCollector.countDown()", "offset": 2}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALAzx"}} +{"Stackframe": {"function": {"name": "mem_cgroup_try_charge_delay"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Lu4BbYQNxvrnJvSur5jWAAAAAAAAAAG3"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 49}, "line": {"number": 264}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4vwWTuaA5W0Uq7WSODTSAQAAAAAAAAB8"}} +{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.merge(org.apache.lucene.index.MergeState, org.apache.lucene.codecs.NormsProducer)", "offset": 15}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KH5_QfKIKeUIlFImab-3OAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Collection.java"}, "function": {"name": "java.util.stream.Stream java.util.Collection.stream()"}, "line": {"number": 743}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN6r9"}} +{"Stackframe": {"function": {"name": "kernfs_iop_getattr"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "97Zy-DfeoR5C-A8AXtDSdgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService$TaskOutputs.processedDifferentClusterState(org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)"}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xEhHwPkzqPTZe7BAGzwjIwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "boolean org.elasticsearch.index.seqno.ReplicationTracker$$Lambda$7541+0x0000000801ec5418.test(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ESDsaq0zLYAinhbn7iz71QAAAAAAAABX"}} +{"Stackframe": {"file": {"name": "ScriptSettings.java"}, "function": {"name": "java.lang.String org.elasticsearch.script.ScriptSettings.lambda$languageSettings$2(java.util.Map, org.elasticsearch.script.ScriptContext, java.util.Map, org.elasticsearch.script.ScriptType, java.lang.String, boolean, org.elasticsearch.common.settings.Setting, org.elasticsearch.common.settings.Settings)", "offset": 11}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l8by2NZ7WjCFmKmn5LkVDAAAAAAAAABN"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.IndexShardStats org.elasticsearch.indices.IndicesService.indexShardStats(org.elasticsearch.indices.IndicesService, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 24}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SfUOLPncvmUbspPEBmYXMAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry$TransportChannelWrapper.sendResponse(org.elasticsearch.transport.TransportResponse)", "offset": 1}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6M6LrYsHqAc6auZXIZFiuQAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "boolean org.elasticsearch.index.translog.Translog.ensureSynced(java.util.stream.Stream)", "offset": 4}, "line": {"number": 865}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ijqaYqwrn000ejmETNv3vAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "TextFieldMapper.java"}, "function": {"name": "org.elasticsearch.index.mapper.MappedFieldType org.elasticsearch.index.mapper.TextFieldMapper.fieldType()"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "O7ZJXgGLbjYmpQSVNhIhagAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.revisitIndexDeletionPolicyOnTranslogSynced()", "offset": 3}, "line": {"number": 632}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I48brEkgWPSZXqrqrHkPZQAAAAAAAAC6"}} +{"Stackframe": {"file": {"name": "TranslogWriter.java"}, "function": {"name": "boolean org.elasticsearch.index.translog.TranslogWriter.syncUpTo(long)", "offset": 29}, "line": {"number": 482}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NZgS_masnJN3AvEMpCeN1QAAAAAAAAH8"}} +{"Stackframe": {"file": {"name": "TransportGetSnapshotsAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.snapshots.get.TransportGetSnapshotsAction.loadSnapshotInfos(org.elasticsearch.cluster.SnapshotsInProgress, java.lang.String, java.lang.String[], boolean, boolean, java.util.Map, java.util.List, org.elasticsearch.repositories.RepositoryData, org.elasticsearch.tasks.CancellableTask, org.elasticsearch.action.admin.cluster.snapshots.get.GetSnapshotsRequest$SortBy, org.elasticsearch.action.admin.cluster.snapshots.get.GetSnapshotsRequest$After, int, org.elasticsearch.search.sort.SortOrder, org.elasticsearch.action.ActionListener)", "offset": 66}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJv"}} +{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.index.SegmentMerger.merge()", "offset": 53}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjnS2"}} +{"Stackframe": {"function": {"name": "rtnl_fill_ifinfo"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAABtAv"}} +{"Stackframe": {"function": {"name": "xfs_iget"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$2(java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.ActionResponse)", "offset": 1}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e7YYWaQTMh8P2PCVzA2a8gAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "boolean java.util.AbstractMap.containsKey(java.lang.Object)"}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EI2ZG0yDy6LJc1opjkWatgAAAAAAAAJM"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 100}, "line": {"number": 536}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1rHoPMq-mpf_DwJrvHqYAwAAAAAAAACK"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress$Entry.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 17}, "line": {"number": 604}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ajJdsnOIBpdo6hxvZuINSQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction$AsyncSingleAction$1.onResponse(org.elasticsearch.action.ActionResponse)"}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F2SRNVvpG70uKYyVRryv4AAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$1.doRun()"}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sfKOGWw8x1l_9VhHo5GlhQAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "RestStatusToXContentListener.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestStatusToXContentListener.buildResponse(org.elasticsearch.common.xcontent.StatusToXContentObject, org.elasticsearch.common.xcontent.XContentBuilder)", "offset": 1}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nvRDyOHmzao0-KiE93qpmgAAAAAAAACF"}} +{"Stackframe": {"file": {"name": "HttpObjectDecoder.java"}, "function": {"name": "io.netty.handler.codec.http.HttpObjectDecoder$State io.netty.handler.codec.http.HttpObjectDecoder.readHeaders(io.netty.buffer.ByteBuf)", "offset": 18}, "line": {"number": 584}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IAnIcQ3bOqZLIYVOjvKR0wAAAAAAAADS"}} +{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "void org.elasticsearch.cluster.metadata.Metadata$Builder.toXContent(org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 24}, "line": {"number": 1759}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BYoo4tfxgmh8oDE9G0T8dgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.lang.Object java.util.TreeMap$KeyIterator.next()"}, "line": {"number": 1265}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3K41TRtENmkBYdKW59LkhwAAAAAAAACI"}} +{"Stackframe": {"file": {"name": "DiscoveryNode.java"}, "function": {"name": "void org.elasticsearch.cluster.node.DiscoveryNode.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 17}, "line": {"number": 236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pY2MvdN80J-OPBSDYZs_8gAAAAAAAABS"}} +{"Stackframe": {"file": {"name": "Netty4HttpRequestHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpRequestHandler.channelRead0(io.netty.channel.ChannelHandlerContext, org.elasticsearch.http.HttpPipelinedRequest)", "offset": 5}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQz"}} +{"Stackframe": {"function": {"name": "__x64_sys_futex"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tDenB2ykH_eGrlIxAUJwHAAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$7855+0x00000008025e9728.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ir67aqpspCTaRrMYjCIMTgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "InternalAggregations.java"}, "function": {"name": "void org.elasticsearch.search.aggregations.InternalAggregations.writeTo(org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-ZUigVp6H-HqH1lR0smw4gAAAAAAAADm"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.applyIndexOperation(org.elasticsearch.index.engine.Engine, long, long, long, org.elasticsearch.index.VersionType, long, long, long, boolean, org.elasticsearch.index.engine.Engine$Operation$Origin, org.elasticsearch.index.mapper.SourceToParse)", "offset": 28}, "line": {"number": 847}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tao5sKvTYUz0761qd2K8tQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ByteBufferIndexInput.java"}, "function": {"name": "short org.apache.lucene.store.ByteBufferIndexInput.readShort()"}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TphZkORhkBDEbRDMofKltAAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 9}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7qKsj4xn8s1AMSf99ASSjAAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "RestClusterGetSettingsAction.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.admin.cluster.RestClusterGetSettingsAction$1.buildResponse(org.elasticsearch.action.admin.cluster.state.ClusterStateResponse, org.elasticsearch.common.xcontent.XContentBuilder)"}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "644cGNT2qB6lvzqttzEn0AAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "TemplateUtils.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.core.template.TemplateUtils.loadTemplate(java.lang.String, java.lang.String, java.lang.String, java.util.Map)", "offset": 2}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BEz4t6pyKxlu50ntqchLuAAAAAAAAADc"}} +{"Stackframe": {"file": {"name": "HttpChannel.java"}, "function": {"name": "boolean org.eclipse.jetty.server.HttpChannel.handle()", "offset": 32}, "line": {"number": 479}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QDkJCt6xHk7D12ZqlrT-UAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "SearchTransportService.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchTransportService$10.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 384}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DVtYIioEzQbMnonclHMdUAAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "AbstractBytesReference.java"}, "function": {"name": "int org.elasticsearch.common.bytes.AbstractBytesReference.getInt(int)"}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ukkz7TICliMQmbQxZ0wSyQAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.StandardDirectoryReader.doOpenFromWriter(org.apache.lucene.index.IndexCommit)", "offset": 8}, "line": {"number": 293}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dz3i4bkkYsjT-e-OYyoK1AAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 717}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xYUK_AZApuCfUvl6Cnon_QAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.applyIndexOperationOnPrimary(long, org.elasticsearch.index.VersionType, org.elasticsearch.index.mapper.SourceToParse, long, long, long, boolean)", "offset": 1}, "line": {"number": 804}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vpboNfauwLs6xQ0xkHOOWgAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.inboundMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage)", "offset": 7}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qWBohVpV0WLBgoRPY3ha5QAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesProducer org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat.fieldsProducer(org.apache.lucene.index.SegmentReadState)"}, "line": {"number": 386}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADAxg"}} +{"Stackframe": {"function": {"name": "kthread"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BSJ5hdjHKaXygIliq5aHKwAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "DatabaseNodeService.java"}, "function": {"name": "void org.elasticsearch.ingest.geoip.DatabaseNodeService.lambda$checkDatabases$3(java.util.Map$Entry)", "offset": 5}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9wONEswsASRmLn53bq8pOwAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.writeNorms(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)", "offset": 6}, "line": {"number": 389}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "phNkrTvBEAdC--TfG-uZjgAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "Lucene50PostingsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.FieldsConsumer org.apache.lucene.codecs.lucene50.Lucene50PostingsFormat.fieldsConsumer(org.apache.lucene.index.SegmentWriteState)", "offset": 4}, "line": {"number": 427}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Q70GyAvg9GVN1H3biOBfEAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "AESCrypt.java"}, "function": {"name": "int com.sun.crypto.provider.AESCrypt.getBlockSize()"}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bjQybHdPZPsvcVS9w00EngAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateListener(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder, java.util.Collection)", "offset": 5}, "line": {"number": 559}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT"}} +{"Stackframe": {"function": {"name": "syscall_slow_exit_work"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BgRSJxG-YlX2vVr-GlbrUQAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.internalParseDocument(org.elasticsearch.index.mapper.RootObjectMapper, org.elasticsearch.index.mapper.MetadataFieldMapper[], org.elasticsearch.index.mapper.ParseContext, org.elasticsearch.common.xcontent.XContentParser)", "offset": 10}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlWJ3"}} +{"Stackframe": {"function": {"name": "tcp_push"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lFttW9DSKwbJ3RVBuwGD_QAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportClusterInfoAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.info.TransportClusterInfoAction.masterOperation(org.elasticsearch.action.support.master.MasterNodeRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CasUHBASz8HLDmgbus_pogAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "ConstantScoreQuery.java"}, "function": {"name": "int org.apache.lucene.search.ConstantScoreQuery$ConstantBulkScorer.score(org.apache.lucene.search.LeafCollector, org.apache.lucene.util.Bits, int, int)"}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6lZUkN3dGRNTlylh0Rs1AgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKeys()", "offset": 3}, "line": {"number": 510}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NCAjj9ga_oZwZ7NBAV35jQAAAAAAAABg"}} +{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.decRef(java.util.Collection)", "offset": 14}, "line": {"number": 598}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "L8d7ZrNDNNkKQuLYAtJHoAAAAAAAAABk"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.engine.InternalEngine.indexIntoLucene(org.elasticsearch.index.engine.Engine$Index, org.elasticsearch.index.engine.InternalEngine$IndexingStrategy)", "offset": 5}, "line": {"number": 602}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_Xrfw0A11GLpx_3z7clkYQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "GlobalCheckpointSyncAction.java"}, "function": {"name": "org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryResult org.elasticsearch.index.seqno.GlobalCheckpointSyncAction.lambda$shardOperationOnPrimary$4(org.elasticsearch.index.shard.IndexShard, org.elasticsearch.index.seqno.GlobalCheckpointSyncAction$Request)"}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAilCP"}} +{"Stackframe": {"function": {"name": "sock_poll"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rwXSlDQ1x9VYCzlc6vMZVwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "HttpObjectDecoder.java"}, "function": {"name": "io.netty.util.internal.AppendableCharSequence io.netty.handler.codec.http.HttpObjectDecoder$HeaderParser.parse(io.netty.buffer.ByteBuf)", "offset": 2}, "line": {"number": 872}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xBTi6zq6LxTMAqb38KRrfgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "boolean java.util.HashMap.containsKey(java.lang.Object)"}, "line": {"number": 595}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D8SuOAHHuRsEe9MWrwApVgAAAAAAAAEC"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.messageReceived(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage, long)", "offset": 36}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uqz36MZf1ln0xVwpZ_tNhgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeOptionalString(java.lang.String)", "offset": 3}, "line": {"number": 350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ju-nyM9Fw6BsW2f0t2JLpgAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.tasks.TaskManager.unregister(org.elasticsearch.tasks.Task)", "offset": 2}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nJza7RyqAJvxwSwpIZ_FNwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "MessageDigest.java"}, "function": {"name": "java.security.MessageDigest java.security.MessageDigest.getInstance(java.lang.String)", "offset": 3}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Jxqv5kTB0kxVBdEhPkU4GAAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "org.elasticsearch.index.Index[] org.elasticsearch.action.search.TransportSearchAction.resolveLocalIndices(org.elasticsearch.action.OriginalIndices, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider)", "offset": 5}, "line": {"number": 899}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gh3_dq-X3ps5hlW-NYikEwAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "InboundDecoder.java"}, "function": {"name": "org.elasticsearch.transport.Header org.elasticsearch.transport.InboundDecoder.readHeader(org.elasticsearch.Version, int, org.elasticsearch.common.bytes.BytesReference)", "offset": 13}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SKShXX_SoB-XI6Mg7eraKAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "StringCoding.java"}, "function": {"name": "char[] java.lang.StringCoding.decode(java.lang.String, byte[], int, int)"}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I4XCZmzAbOlEjitOFAEUSwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "SearchExecutionContext.java"}, "function": {"name": "org.apache.lucene.search.Query org.elasticsearch.index.query.SearchExecutionContext.lambda$toQuery$3(org.elasticsearch.index.query.QueryBuilder)"}, "line": {"number": 510}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jWxMhVzBeHM3bqEF5ueSZwAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "Lucene90PostingsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90PostingsWriter.(org.apache.lucene.index.SegmentWriteState)", "offset": 9}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aG3pqhoIQMvuRP0geTTqcgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.monitor.fs.FsService$$Lambda$2841+0x00000008013cd000.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VRatagfaZstKq9MrghPCigAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.field(java.lang.String)", "offset": 1}, "line": {"number": 246}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.handleCachedAuthentication(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.action.ActionListener)"}, "line": {"number": 242}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "y3V4Wh9j61CfcWNgvt1uPgAAAAAAAABz"}} +{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "java.lang.Object java.util.concurrent.ConcurrentHashMap.computeIfAbsent(java.lang.Object, java.util.function.Function)", "offset": 16}, "line": {"number": 1708}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "V4a2SdmvejjWRd6P73Yk6wAAAAAAAACN"}} +{"Stackframe": {"file": {"name": "BufferedIndexInput.java"}, "function": {"name": "int org.apache.lucene.store.BufferedIndexInput.readVInt()", "offset": 19}, "line": {"number": 207}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e7YYWaQTMh8P2PCVzA2a8gAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "boolean java.util.AbstractMap.containsKey(java.lang.Object)"}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0JcseVtS-XRULdaKsDczLgAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "TransformScheduler.java"}, "function": {"name": "boolean org.elasticsearch.xpack.transform.transforms.scheduling.TransformScheduler.processScheduledTasksInternal()", "offset": 18}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "imafDmtOvH8dRRJ00H9XgwAAAAAAAAC1"}} +{"Stackframe": {"file": {"name": "ServerRuntime.java"}, "function": {"name": "void org.glassfish.jersey.server.ServerRuntime.process(org.glassfish.jersey.server.ContainerRequest)", "offset": 33}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eZDLzxoM-uAmR0oUiILRRwAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "BuiltinClassLoader.java"}, "function": {"name": "java.net.URL jdk.internal.loader.BuiltinClassLoader.findResourceOnClassPath(java.lang.String)", "offset": 5}, "line": {"number": 536}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "spKgho_5MzCgmqSnvn5kAAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "IntroSorter.java"}, "function": {"name": "int org.apache.lucene.util.IntroSorter.median(int, int, int)", "offset": 1}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VVK_WAyCJXzCWcMyxQV5BQAAAAAAAAEh"}} +{"Stackframe": {"file": {"name": "MessageAggregator.java"}, "function": {"name": "void io.netty.handler.codec.MessageAggregator.decode(io.netty.channel.ChannelHandlerContext, java.lang.Object, java.util.List)", "offset": 60}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5iAtVIILui-LgFNzk7nI4QAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "SourceLookup.java"}, "function": {"name": "java.lang.Object org.elasticsearch.search.lookup.SourceLookup.filter(org.elasticsearch.search.fetch.subphase.FetchSourceContext)"}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l1u0IFDookuutA2Rr8oiCQAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "Constructor.java"}, "function": {"name": "java.lang.Object java.lang.reflect.Constructor.newInstance(java.lang.Object[])", "offset": 1}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1uqT2g7Au-K7vA_ApCg22AAAAAAAAAB8"}} +{"Stackframe": {"file": {"name": "DeprecationLogger.java"}, "function": {"name": "void org.elasticsearch.common.logging.DeprecationLogger.deprecated(java.util.Set, java.lang.String, boolean, java.lang.Object[])", "offset": 10}, "line": {"number": 311}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFoMX"}} +{"Stackframe": {"function": {"name": "cpuset_task_status_allowed"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YNR_kK3tcd5nuXG_-CFlnAAAAAAAAADy"}} +{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.engine.SegmentsStats org.elasticsearch.index.engine.Engine.segmentsStats(boolean, boolean)", "offset": 18}, "line": {"number": 810}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7XuwAERz4-wOtMHIT2RfpgAAAAAAAABp"}} +{"Stackframe": {"file": {"name": "TimSort.java"}, "function": {"name": "void java.util.TimSort.sort(java.lang.Object[], int, int, java.util.Comparator, java.lang.Object[], int, int)", "offset": 22}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WRcdI0lls5vzaErIK0sorwAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "TermStates.java"}, "function": {"name": "org.apache.lucene.index.TermsEnum org.apache.lucene.index.TermStates.loadTermsEnum(org.apache.lucene.index.LeafReaderContext, org.apache.lucene.index.Term)", "offset": 3}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iRknTmYoSeArhtkADiL7_AAAAAAAAACB"}} +{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "int sun.nio.ch.FileChannelImpl.readInternal(java.nio.ByteBuffer, long)", "offset": 10}, "line": {"number": 815}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXfZ"}} +{"Stackframe": {"function": {"name": "alloc_empty_file"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UhgtRJJsgBZ2crDmbBGA0gAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.update(org.apache.lucene.index.Term, java.util.List, org.apache.lucene.index.IndexWriter)", "offset": 3}, "line": {"number": 739}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$AuthorizationResultListener.onResponse(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationResult)", "offset": 10}, "line": {"number": 986}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YSP8Ib_W13QEw_Ivysg7FgAAAAAAAAFy"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.handleIndexActionAuthorizationResult(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener)", "offset": 64}, "line": {"number": 582}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7Ormen3KBfy8FXv7OmF-kAAAAAAAAACk"}} +{"Stackframe": {"file": {"name": "ReplicationTracker.java"}, "function": {"name": "void org.elasticsearch.index.seqno.ReplicationTracker.updateFromMaster(long, java.util.Set, org.elasticsearch.cluster.routing.IndexShardRoutingTable)", "offset": 10}, "line": {"number": 1091}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2cAnwi6XhCW3Nwdpcay_dwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "MetadataCreateIndexService.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterState org.elasticsearch.cluster.metadata.MetadataCreateIndexService.lambda$applyCreateIndexWithTemporaryService$3(org.elasticsearch.action.admin.indices.create.CreateIndexClusterStateUpdateRequest, java.util.List, org.elasticsearch.cluster.metadata.IndexMetadata, boolean, java.util.function.Function, org.elasticsearch.cluster.metadata.IndexMetadata, java.util.List, org.elasticsearch.cluster.ClusterState, java.util.function.BiConsumer, org.elasticsearch.index.IndexService)"}, "line": {"number": 453}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m5-Un0na0bSGJs4I2yfHnwAAAAAAAADv"}} +{"Stackframe": {"file": {"name": "TaskBatcher.java"}, "function": {"name": "void org.elasticsearch.cluster.service.TaskBatcher.runIfNotProcessed(org.elasticsearch.cluster.service.TaskBatcher$BatchedTask)", "offset": 24}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WsBETJrPecSrGYvg781P3AAAAAAAAAC4"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.snapshotShard(org.elasticsearch.repositories.SnapshotShardContext)", "offset": 25}, "line": {"number": 2602}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "A9vz2bP9GXPEMLJDLuO1HAAAAAAAAABo"}} +{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.engine.SegmentsStats org.elasticsearch.index.engine.Engine.segmentsStats(boolean, boolean)", "offset": 8}, "line": {"number": 852}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DLrWTvtAPDh4Uv4u2shragAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4$HighCompressionHashTable.()", "offset": 4}, "line": {"number": 309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vqJadkgElIf37V0IeQdRQwAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.indices.fielddata.cache.IndicesFieldDataCache$IndexFieldCache$$Lambda$2398.load(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e5dlQQg88ZLOKiNAZin85gAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "TranslogDeletionPolicy.java"}, "function": {"name": "long org.elasticsearch.index.translog.TranslogDeletionPolicy.getMinTranslogGenByAge(java.util.List, org.elasticsearch.index.translog.TranslogWriter, long, long)", "offset": 2}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_oKA7slDAC67s5XFNub3EAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$handleIndexActionAuthorizationResult$15(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, java.lang.Void)"}, "line": {"number": 575}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_qkVJm0NxTF9ak3kQe9veQAAAAAAAABl"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.netty.channel.ChannelPromise)", "offset": 20}, "line": {"number": 792}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "y06JmZzGFRMatVW0N2V1pgAAAAAAAAB_"}} +{"Stackframe": {"file": {"name": "HttpPipeliningHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.pipelining.HttpPipeliningHandler.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 31}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "thzncPMjH_Hp8wlnC889jAAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "DelayedAllocationService.java"}, "function": {"name": "void org.elasticsearch.cluster.routing.DelayedAllocationService.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 2}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m-qUpm5qFpCV1J_pprJuHwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "boolean org.elasticsearch.xpack.security.authz.AuthorizationService.isIndexAction(java.lang.String)"}, "line": {"number": 866}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TEeNHsvM_HbT0J1Ha9ikXQAAAAAAAAA8"}} +{"Stackframe": {"file": {"name": "FetchSourcePhase.java"}, "function": {"name": "void org.elasticsearch.search.fetch.subphase.FetchSourcePhase$1.hitExecute(org.elasticsearch.search.fetch.subphase.FetchSourceContext, org.elasticsearch.search.fetch.FetchSubPhase$HitContext)", "offset": 11}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf"}} +{"Stackframe": {"file": {"name": "AbstractNioByteChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read()", "offset": 30}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H_-HLBRLH2q9IHfzvqzcewAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "ResourceMethodInvocationHandlerFactory.java"}, "function": {"name": "java.lang.Object org.glassfish.jersey.server.model.internal.ResourceMethodInvocationHandlerFactory.lambda$static$0(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FEdkdGoY4hlyAih8cHpaLgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.map(java.util.Map)"}, "line": {"number": 929}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ch6Kr8U7ie4VuVYxsoYs0AAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.concurrent.ThreadContext.getTransient(java.lang.String)"}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hNYG08OlyRCGuQPJ1oSEcgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "java.lang.String java.lang.String.toLowerCase()"}, "line": {"number": 3423}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "t2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAHI"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "boolean org.elasticsearch.action.bulk.TransportShardBulkAction.executeBulkItemRequest(org.elasticsearch.action.bulk.BulkPrimaryExecutionContext, org.elasticsearch.action.update.UpdateHelper, java.util.function.LongSupplier, org.elasticsearch.action.bulk.MappingUpdatePerformer, java.util.function.Consumer, org.elasticsearch.action.ActionListener)", "offset": 59}, "line": {"number": 320}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFE1i"}} +{"Stackframe": {"function": {"name": "do_futex"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nD7QKbPeresstocfBtl0cAAAAAAAAAGP"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.executeOneRequest(com.amazonaws.http.AmazonHttpClient$RequestExecutor$ExecOneRequestParams)", "offset": 63}, "line": {"number": 1346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TXS-M7XDD4DedgFr7B7PEgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "BytesStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.BytesStreamOutput.writeBytes(byte[], int, int)"}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACw"}} +{"Stackframe": {"file": {"name": "InternalHttpClient.java"}, "function": {"name": "org.apache.http.client.methods.CloseableHttpResponse org.apache.http.impl.client.InternalHttpClient.doExecute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext)", "offset": 28}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-bdPLgVx58dzwkE7OjvI9QAAAAAAAABS"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 31}, "line": {"number": 445}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RVieMaRFe3uT8LWVn0x_HgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SecureRandom.java"}, "function": {"name": "void java.security.SecureRandom.nextBytes(byte[])"}, "line": {"number": 468}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JQ--Da8UMa_zKaKYpLYZrgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext$WriteAndFlushTask.write(io.netty.channel.AbstractChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 1}, "line": {"number": 1152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "niAUD34hYKPNQKGi6-iIXAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "CodecReader.java"}, "function": {"name": "void org.apache.lucene.index.CodecReader.document(int, org.apache.lucene.index.StoredFieldVisitor)", "offset": 1}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALQw-"}} +{"Stackframe": {"function": {"name": "do_dentry_open"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jPBgPvk00-cPTcAR_mq_6gAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.indices.analysis.AnalysisModule$$Lambda$434.get(org.elasticsearch.index.IndexSettings, org.elasticsearch.env.Environment, java.lang.String, org.elasticsearch.common.settings.Settings)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pLk3eEBAQ6mOObR4PSHT3AAAAAAAAADE"}} +{"Stackframe": {"file": {"name": "SocketChannelImpl.java"}, "function": {"name": "long sun.nio.ch.SocketChannelImpl.write(java.nio.ByteBuffer[], int, int)", "offset": 13}, "line": {"number": 504}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C_0aTeR6JBYKeG8Yqz7OGgAAAAAAAAET"}} +{"Stackframe": {"file": {"name": "CoordinationState.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishResponse org.elasticsearch.cluster.coordination.CoordinationState.handlePublishRequest(org.elasticsearch.cluster.coordination.PublishRequest)", "offset": 36}, "line": {"number": 413}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "ContextPreservingActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.ContextPreservingActionListener.onResponse(java.lang.Object)", "offset": 1}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "johm0WRz57B_39YZlSM0UgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.coordination.LeaderChecker$$Lambda$4969+0x0000000801ffdd70.read(org.elasticsearch.common.io.stream.StreamInput)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5Ri24JfQ3hOfAMeWMo31rAAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "AbstractDelegateHttpsURLConnection.java"}, "function": {"name": "sun.net.www.http.HttpClient sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(java.net.URL, java.net.Proxy, int)"}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F8tqHJqW0foQIdn2VBvKQAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Netty4Utils.java"}, "function": {"name": "io.netty.buffer.ByteBuf org.elasticsearch.transport.netty4.Netty4Utils.toByteBuf(org.elasticsearch.common.bytes.BytesReference)"}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h4ygMADaHcq2Tj0JPsaeGgAAAAAAAADP"}} +{"Stackframe": {"file": {"name": "RootObjectMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.RootObjectMapper.validateDynamicTemplate(org.elasticsearch.index.mapper.MappingParserContext, org.elasticsearch.index.mapper.DynamicTemplate)", "offset": 24}, "line": {"number": 442}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz7y"}} +{"Stackframe": {"function": {"name": "__audit_syscall_exit"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "86NiCqpvI1l5OJX-NxLKWAAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublicationTransportHandler$PublicationContext org.elasticsearch.cluster.coordination.PublicationTransportHandler.newPublicationContext(org.elasticsearch.cluster.ClusterStatePublicationEvent)", "offset": 6}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pOUGa4nlXTzn3bJ7pH2ySwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.lang.Object java.util.Collections$UnmodifiableCollection$1.next()"}, "line": {"number": 1054}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SSUIew2Sa--7leh89Jd_rgAAAAAAAABH"}} +{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.createOrUpdateShard(org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.node.DiscoveryNodes, org.elasticsearch.cluster.routing.RoutingTable, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.indices.cluster.IndicesClusterStateService$AllocatedIndex)", "offset": 5}, "line": {"number": 510}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LWxbmjqw9fP9oqHxogAn9gAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.FilterDirectory.createOutput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2Xty6HwzbNvbrg9wHlGVxAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "PooledDirectByteBuf.java"}, "function": {"name": "java.nio.ByteBuffer io.netty.buffer.PooledDirectByteBuf.newInternalNioBuffer(java.nio.ByteBuffer)"}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gpzmfljwMvF6axjuntzBmAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.lang.Object java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$1.next()"}, "line": {"number": 1672}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ReqGmG84wgWysPpit0xgpwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequest(org.elasticsearch.cluster.node.DiscoveryNode, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportResponseHandler)"}, "line": {"number": 675}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M9FHTHUX8n2-ELVOjeLTlwAAAAAAAABu"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$writeIndexGen$63(org.elasticsearch.repositories.RepositoryData, org.elasticsearch.action.StepListener, org.elasticsearch.action.ActionListener)", "offset": 41}, "line": {"number": 2265}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gKtOALC-hEJjrat8PovbXgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "DeltaPackedLongValues.java"}, "function": {"name": "org.apache.lucene.util.packed.PackedLongValues org.apache.lucene.util.packed.DeltaPackedLongValues$Builder.build()"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NcpE6adeOVCfvBx4qpjhtwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeCollection(java.util.Collection)"}, "line": {"number": 1180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.refresh(java.lang.String, org.elasticsearch.index.engine.Engine$SearcherScope, boolean)", "offset": 15}, "line": {"number": 1688}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oBaCABFgEsivPLSijHi7MwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler$PublicationContext$3.handleResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 412}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Qdsa8CodEr3BBR20SawlOgAAAAAAAAII"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "void org.apache.lucene.index.ReadersAndUpdates.handleDVUpdates(org.apache.lucene.index.FieldInfos, org.apache.lucene.store.Directory, org.apache.lucene.codecs.DocValuesFormat, org.apache.lucene.index.SegmentReader, java.util.Map, long, org.apache.lucene.util.InfoStream)", "offset": 87}, "line": {"number": 367}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "b8Hh4l9luLQDA0--un99UgAAAAAAAAB-"}} +{"Stackframe": {"file": {"name": "FetchSourceSubPhase.java"}, "function": {"name": "void org.elasticsearch.search.fetch.subphase.FetchSourceSubPhase.hitExecute(org.elasticsearch.search.internal.SearchContext, org.elasticsearch.search.fetch.FetchSubPhase$HitContext)", "offset": 16}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e15HzVmatJ9a2i6gkWlZ3AAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "CounterMode.java"}, "function": {"name": "void com.sun.crypto.provider.CounterMode.(com.sun.crypto.provider.SymmetricCipher)", "offset": 5}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$1840.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xWXbvqcob2cyNB-_TJKbYQAAAAAAAABZ"}} +{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "long org.apache.lucene.index.DocumentsWriterPerThread.updateDocuments(java.lang.Iterable, org.apache.lucene.index.DocumentsWriterDeleteQueue$Node, org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 16}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALm6B"}} +{"Stackframe": {"function": {"name": "path_openat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASgiP"}} +{"Stackframe": {"function": {"name": "aa_str_perms"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Cn"}} +{"Stackframe": {"function": {"name": "netlink_dump"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9w39rtHSYGtkUYmFvMJs_wAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "boolean org.elasticsearch.index.shard.IndexShard.isRefreshNeeded()"}, "line": {"number": 1806}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wft0IPWpEm0-yVfU_de9-wAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.access0(long, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pu-N4aBOZsn4VU4z7Imv8AAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "InferenceProcessor.java"}, "function": {"name": "void org.elasticsearch.xpack.ml.inference.ingest.InferenceProcessor$Factory.accept(java.lang.Object)"}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBo5"}} +{"Stackframe": {"function": {"name": "seq_read"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADS7g"}} +{"Stackframe": {"function": {"name": "migration_cpu_stop"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Upp5VWkbyXiZhnZAzBafhAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "ElasticApmTracer.java"}, "function": {"name": "co.elastic.apm.agent.impl.transaction.Transaction co.elastic.apm.agent.impl.ElasticApmTracer.startRootTransaction(java.lang.ClassLoader, long)"}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oIYS8oKywxk33PzxrExveAAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$3(org.elasticsearch.action.support.ActionFilterChain, org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener, java.lang.Void)"}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbdH"}} +{"Stackframe": {"function": {"name": "tcp_sendmsg_locked"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o6177iuGkV2SA7F3ufehBwAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "void org.elasticsearch.common.settings.Setting.diff(org.elasticsearch.common.settings.Settings$Builder, org.elasticsearch.common.settings.Settings, org.elasticsearch.common.settings.Settings)", "offset": 1}, "line": {"number": 351}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xjSvau0yCC6WYo-obUFaEAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.lang.Object java.util.TreeMap$ValueIterator.next()"}, "line": {"number": 1256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YJe5yWcckJxkEukmP7AjawAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.channels.SeekableByteChannel java.nio.file.Files.newByteChannel(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])"}, "line": {"number": 380}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "f7zfB261PmeVR0CVV6m2gAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "boolean sun.nio.fs.UnixNativeDispatcher.exists(sun.nio.fs.UnixPath)", "offset": 2}, "line": {"number": 493}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nzw4AVNutfhHt7T-gQii5AAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)", "offset": 1}, "line": {"number": 568}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4b4Plbf2oPTboMVQZt3neAAAAAAAAABQ"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "org.elasticsearch.gateway.PersistedClusterStateService$Writer$WriterStats org.elasticsearch.gateway.PersistedClusterStateService$Writer.updateMetadata(org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.cluster.metadata.Metadata)", "offset": 7}, "line": {"number": 826}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AhQOKKpsmBvhrEO3UCMXXwAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "OutputRecord.java"}, "function": {"name": "long sun.security.ssl.OutputRecord.encrypt(sun.security.ssl.SSLCipher$SSLWriteCipher, byte, int)", "offset": 3}, "line": {"number": 464}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1oTFJJD8oE6SApFeuZctegAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "MappingVisitor.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.stats.MappingVisitor.visitMapping(java.util.Map, java.lang.String, java.util.function.BiConsumer)", "offset": 5}, "line": {"number": 28}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jMdC0iDbsCJHoOmxD683QwAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeBulkItems(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationContext, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, java.lang.String, org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 737}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XmcQ4_6bleDFvrRZ47Cq9wAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.lambda$handleRequest$2(java.lang.String, org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 5}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LV9G5ZxtEfojbVKjeQ9ZFAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "MappingMultiPostingsEnum.java"}, "function": {"name": "int org.apache.lucene.index.MappingMultiPostingsEnum$MappingPostingsSub.nextDoc()"}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qKrM4v33j8Ui9JyIz2QXDgAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.List org.elasticsearch.common.xcontent.support.AbstractXContentParser.readListUnsafe(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier)", "offset": 3}, "line": {"number": 361}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hVikmGjXzRnSmmMyJkgF7QAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "HeapByteBuffer.java"}, "function": {"name": "java.nio.ByteBuffer java.nio.HeapByteBuffer.put(byte[], int, int)"}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PWtIWZkUUG3HKpZ_gvZdFgAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "ForEachOps.java"}, "function": {"name": "java.lang.Object java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(java.util.stream.PipelineHelper, java.util.Spliterator)"}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rx1IYyt_N65Gocl6CDiGDAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkPermission(java.security.Permission)"}, "line": {"number": 549}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0OI-JWcbihL86mmEQDV04QAAAAAAAACT"}} +{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendRequest(org.elasticsearch.cluster.node.DiscoveryNode, org.elasticsearch.transport.TcpChannel, long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.Version, org.elasticsearch.transport.Compression$Scheme, boolean)", "offset": 22}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XadgtJFQ10pxn_-sij7tlQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "void java.util.stream.AbstractPipeline.copyInto(java.util.stream.Sink, java.util.Spliterator)", "offset": 4}, "line": {"number": 484}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q"}} +{"Stackframe": {"function": {"name": "StubRoutines (2)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rAbRn9ZtwHgAlMdysbgKgQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "GCTR.java"}, "function": {"name": "int com.sun.crypto.provider.GCTR.doFinal(byte[], int, int, byte[], int)"}, "line": {"number": 203}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oSePRGhk9APbC-LdyaI32gAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 36}, "line": {"number": 226}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "21OviUyRbmnxs6uitnTC3wAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "void org.elasticsearch.index.store.Store$StoreDirectory.deleteFile(java.lang.String, java.lang.String)", "offset": 1}, "line": {"number": 714}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4pCnOxpOLdRSNtLvL6eRrwAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "SystemIndexManager.java"}, "function": {"name": "org.elasticsearch.indices.SystemIndexManager$State org.elasticsearch.indices.SystemIndexManager.calculateIndexState(org.elasticsearch.cluster.ClusterState, org.elasticsearch.indices.SystemIndexDescriptor)", "offset": 8}, "line": {"number": 225}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fbAbOZDzuuTLoVcDDlO2awAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "MemoryPoolImpl.java"}, "function": {"name": "javax.management.ObjectName sun.management.MemoryPoolImpl.getObjectName()"}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-1qdgNrxzH--duaVR1QSFQAAAAAAAACV"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.doExecute()", "offset": 20}, "line": {"number": 814}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Sf4UiN34U8G1c8haVk1h3AAAAAAAAABC"}} +{"Stackframe": {"file": {"name": "MSBRadixSorter.java"}, "function": {"name": "int org.apache.lucene.util.MSBRadixSorter.computeCommonPrefixLengthAndBuildHistogram(int, int, int, int[])", "offset": 2}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aLOl6FCWtZ16Qk1Y0IIBGgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "RestResponseListener.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestResponseListener.processResponse(java.lang.Object)"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "c1uIuH7G_H0iDn31aPif-QAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.engine.Engine.acquireIndexCommitForSnapshot()"}, "line": {"number": 1129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aiLfZKl2jCog6I24zCqBbQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "CPoolProxy.java"}, "function": {"name": "void org.apache.http.impl.conn.CPoolProxy.receiveResponseEntity(org.apache.http.HttpResponse)"}, "line": {"number": 162}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rXg08pRb0PXnBBxadl4kCgAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run()", "offset": 2}, "line": {"number": 891}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SpuVyl1yybAmI0lABPU6JwAAAAAAAAEx"}} +{"Stackframe": {"file": {"name": "PoolArena.java"}, "function": {"name": "void io.netty.buffer.PoolArena.allocate(io.netty.buffer.PoolThreadCache, io.netty.buffer.PooledByteBuf, int)", "offset": 56}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANp-d"}} +{"Stackframe": {"function": {"name": "proc_reg_read"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "76oMN5gawXJbUdBHZW56vAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext$WriteAndFlushTask.write(io.netty.channel.AbstractChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 1}, "line": {"number": 1137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4m9mTW_zDlDiftTb5WLt5wAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.ensureTranslogSynced(java.util.stream.Stream)"}, "line": {"number": 569}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Hey8fifUJOv2rbW7np0VDwAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "RestBuilderListener.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestBuilderListener.buildResponse(java.lang.Object)", "offset": 1}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LN3NdhSYKxRbaqnM5W9FBwAAAAAAAABp"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.consumeUser(org.elasticsearch.xpack.security.user.User)", "offset": 14}, "line": {"number": 392}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Z9hje1cbFu-XpVYNW9SlywAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "boolean java.util.stream.ReferencePipeline.forEachWithCancel(java.util.Spliterator, java.util.stream.Sink)"}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6TJAAN6nl4b6IOLJXsSfmwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.internalParseDocument(org.elasticsearch.index.mapper.RootObjectMapper, org.elasticsearch.index.mapper.MetadataFieldMapper[], org.elasticsearch.index.mapper.DocumentParserContext)"}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5vj2qWMYXopIAHMeOOhgxAAAAAAAAAGC"}} +{"Stackframe": {"file": {"name": "DiscoveryNode.java"}, "function": {"name": "void org.elasticsearch.cluster.node.DiscoveryNode.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 31}, "line": {"number": 332}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oG3DRiZKlMZ3sh3A8whkKQAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.search.suggest.completion.CompletionStats org.elasticsearch.index.shard.IndexShard.completionStats(java.lang.String[])", "offset": 6}, "line": {"number": 744}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "75MTQgFwHrOqmJ603qSRDgAAAAAAAACh"}} +{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "void java.security.AccessController.checkPermission(java.security.Permission)", "offset": 30}, "line": {"number": 884}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKQhJ"}} +{"Stackframe": {"function": {"name": "alloc_pages_current"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "20-1J-PlXPjZR4X3WZE6lQAAAAAAAADA"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 40}, "line": {"number": 314}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cIw1KjOVhLu6JfffmCME8wAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "void sun.nio.ch.NioSocketImpl.write(byte[], int, int)", "offset": 9}, "line": {"number": 433}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "v8jasp6reY29DfYcp4RGRAAAAAAAAAFI"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "boolean org.elasticsearch.action.bulk.TransportShardBulkAction.executeBulkItemRequest(org.elasticsearch.action.bulk.BulkPrimaryExecutionContext, org.elasticsearch.action.update.UpdateHelper, java.util.function.LongSupplier, org.elasticsearch.action.bulk.MappingUpdatePerformer, java.util.function.Consumer, org.elasticsearch.action.ActionListener)", "offset": 52}, "line": {"number": 350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HraciiRO31pdWLKXJjfvFwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.sync()", "offset": 1}, "line": {"number": 3759}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M43VZw3emUYxEGolzsc4cQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "LifecycleAction.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.LifecycleAction.toSteps(org.elasticsearch.client.Client, java.lang.String, org.elasticsearch.xpack.core.ilm.Step$StepKey, org.elasticsearch.license.XPackLicenseState)"}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pmiRP16sLzHMk4sQotP67AAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncPrimaryAction.lambda$doRun$0(org.elasticsearch.index.shard.IndexShard, org.elasticsearch.core.Releasable)"}, "line": {"number": 414}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "apAnlvLPH-oOxbShKb24TAAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "java.lang.String[] java.util.regex.Pattern.split(java.lang.CharSequence, int)", "offset": 6}, "line": {"number": 1265}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "void org.elasticsearch.search.SearchService.loadOrExecuteQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.search.internal.SearchContext)", "offset": 5}, "line": {"number": 390}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5E3RifhwtkkbQvQxmdbzmwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TransportClusterStatsAction.java"}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction$MetadataStatsCache.lambda$refresh$0(org.elasticsearch.cluster.metadata.Metadata, java.lang.Runnable)"}, "line": {"number": 217}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Gs0tfvIN9I1zwkPyuCYq4AAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.map(java.util.Map)", "offset": 11}, "line": {"number": 877}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAClha"}} +{"Stackframe": {"function": {"name": "ns_capable_common"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JKjf0pZHg3dzwDeAqfO16AAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "NodeClient.java"}, "function": {"name": "void org.elasticsearch.client.node.NodeClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BJ2RJCp2SC7d8aYH6UZHTwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesProducer.java"}, "function": {"name": "org.apache.lucene.index.SortedNumericDocValues org.apache.lucene.codecs.lucene80.Lucene80DocValuesProducer.getSortedNumeric(org.apache.lucene.index.FieldInfo)"}, "line": {"number": 1344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6IAXoYeI62bQppY-qjqJ0AAAAAAAAADC"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.executeOneRequest(com.amazonaws.http.AmazonHttpClient$RequestExecutor$ExecOneRequestParams)", "offset": 32}, "line": {"number": 1297}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iO1mMPtAsXsWYZtGrgAdjwAAAAAAAACo"}} +{"Stackframe": {"file": {"name": "IndexShardOperationsLock.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShardOperationsLock.acquire(org.elasticsearch.action.ActionListener, java.lang.String, boolean)", "offset": 27}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ifuzCpl1zo6zLw_paxkEdQAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "SdkHttpRequestExecutor.java"}, "function": {"name": "org.apache.http.HttpResponse com.amazonaws.http.protocol.SdkHttpRequestExecutor.doSendRequest(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext)", "offset": 19}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pwf2qv_E6qoTShEL7CgcmQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authc.support.BCrypt.encipher(int[], int)"}, "line": {"number": 491}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Lu4BbYQNxvrnJvSur5jWAAAAAAAAAABu"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 10}, "line": {"number": 225}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SyklCBn51Vp_g9q3KLAvZwAAAAAAAAGv"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.executeHelper()", "offset": 61}, "line": {"number": 1157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JbUgkc8lBw5j0OD5NYjMWQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "void org.elasticsearch.search.fetch.FetchPhase.loadStoredFields(java.util.function.Function, org.elasticsearch.search.fetch.FetchPhase$Profiler, java.lang.String, org.elasticsearch.common.CheckedBiConsumer, org.elasticsearch.index.fieldvisitor.FieldsVisitor, int)", "offset": 2}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Tlm2yos2yNMmUywsA990NAAAAAAAAARr"}} +{"Stackframe": {"file": {"name": "ObjectName.java"}, "function": {"name": "void javax.management.ObjectName.construct(java.lang.String)", "offset": 241}, "line": {"number": 664}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnr"}} +{"Stackframe": {"function": {"name": "syscall_trace_enter"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkRead(java.lang.String)"}, "line": {"number": 747}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvyz"}} +{"Stackframe": {"function": {"name": "__x64_sys_nanosleep"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qi3usQvX6nGjXxgm580OogAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.SnapshotsInProgress$ShardSnapshotStatus$$Lambda$7202+0x0000000801e73820.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zVl_JFLMBO6_XcJyl0ewxwAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "LZ4WithPresetDictCompressionMode.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene87.LZ4WithPresetDictCompressionMode$LZ4WithPresetDictDecompressor.decompress(org.apache.lucene.store.DataInput, int, int, int, org.apache.lucene.util.BytesRef)", "offset": 7}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RFjLCSKw9fP9oqeV0WzvFgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.FilterDirectory.createOutput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YdYAjZUSmfoWBbGkU49nnwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.apache.lucene.index.IndexWriter$$Lambda$6244+0x0000000801c69d38.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cV0o7vAf2W7Ihj4gtxIcCAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ShardSnapshotResult.java"}, "function": {"name": "void org.elasticsearch.repositories.ShardSnapshotResult.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wMYFsNM0woNzFGwcp47vbgAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction.execute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 11}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "r7JXAcCwImWiXtuB_xZxrgAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.decPendingAndFinishIfNeeded()", "offset": 2}, "line": {"number": 440}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TQJwJt0-vl6QQoIDFyT9WgAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "ActorGraphInterpreter.scala"}, "function": {"name": "java.lang.Object akka.stream.impl.fusing.ActorGraphInterpreter$$anonfun$receive$1.applyOrElse(java.lang.Object, scala.Function1)", "offset": 3}, "line": {"number": 818}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jMN4nO9pan5R8V5H-r9gzwAAAAAAAACv"}} +{"Stackframe": {"file": {"name": "MetadataMappingService.java"}, "function": {"name": "void org.elasticsearch.cluster.metadata.MetadataMappingService.putMapping(org.elasticsearch.action.admin.indices.mapping.put.PutMappingClusterStateUpdateRequest, org.elasticsearch.action.ActionListener)", "offset": 26}, "line": {"number": 253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mk3P52OFEqt1TZqklgylngAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "RuntimeException.java"}, "function": {"name": "void java.lang.RuntimeException.(java.lang.String)"}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "41OrzWvK6lbOz1-ffS5eNAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "SearchRequest.java"}, "function": {"name": "java.lang.Object org.elasticsearch.action.search.SearchRequest.rewrite(org.elasticsearch.index.query.QueryRewriteContext)"}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YX6jd4K2CK6gVQH6DsXh-AAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "SSLAlgorithmConstraints.java"}, "function": {"name": "boolean sun.security.ssl.SSLAlgorithmConstraints.permits(java.util.Set, java.lang.String, java.security.AlgorithmParameters)", "offset": 13}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mHsoQaBy_jlH5-zItFSRsAAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "Checkpoint.java"}, "function": {"name": "void org.elasticsearch.index.translog.Checkpoint.write(java.nio.channels.FileChannel, java.nio.file.Path, org.elasticsearch.index.translog.Checkpoint)", "offset": 4}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4OW"}} +{"Stackframe": {"function": {"name": "netlink_recvmsg"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "a9xJ5FQfUEQO7I4aLnTqGgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ChannelInputStream.java"}, "function": {"name": "int sun.nio.ch.ChannelInputStream.read(java.nio.ByteBuffer)"}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Jka4_scu9xr1JKUZQmFbgQAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "java.util.Iterator java.util.concurrent.ConcurrentHashMap$ValuesView.iterator()", "offset": 3}, "line": {"number": 4740}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0tdJXiZYZuozRWVHE58tBQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$AuthorizationResultListener.onResponse(java.lang.Object)"}, "line": {"number": 664}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C7K-us0mqSTOC05nudRrpwAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "long sun.nio.ch.FileChannelImpl.size()", "offset": 10}, "line": {"number": 387}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hFR94sc2fPjalZlQgZv1dAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "FileDispatcherImpl.java"}, "function": {"name": "int sun.nio.ch.FileDispatcherImpl.pread(java.io.FileDescriptor, long, int, long)"}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lv5p_7PvmAcAMuvPOHN84wAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "MSBRadixSorter.java"}, "function": {"name": "void org.apache.lucene.util.MSBRadixSorter.sort(int, int)", "offset": 1}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ahMxWqP1a_8hG_qUbGypwwAAAAAAAABb"}} +{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.scoreRange(org.apache.lucene.search.LeafCollector, org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.search.TwoPhaseIterator, org.apache.lucene.util.Bits, int, int)", "offset": 14}, "line": {"number": 232}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "c8wp1Q45CdLtTNnj6qINTwAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "SingleObjectCache.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.SingleObjectCache.getOrRefresh()", "offset": 4}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lMhfA8E2jb3TCQnQMEboyAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "NIOFSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.NIOFSDirectory$NIOFSIndexInput.close()", "offset": 1}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAVth"}} +{"Stackframe": {"function": {"name": "au_do_open"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CaJPwmIWM0NDJVv8d07kjgAAAAAAAABh"}} +{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.common.IteratingActionListener.onResponse(java.lang.Object)", "offset": 9}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gDav7mSa1H0kLuPzayJt0QAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "AbstractAsyncTask.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractAsyncTask.run()", "offset": 8}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WSancnmbX3N0mzUrLDNaPQAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(io.netty.channel.AbstractChannelHandlerContext, java.lang.Object)", "offset": 3}, "line": {"number": 365}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "s9MntjdT5XiNr-rHeRcTvQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "DocIDMerger.java"}, "function": {"name": "int org.apache.lucene.index.DocIDMerger$Sub.nextMappedDoc()"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kIHoeHOqUABD9df742XoZgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.cluster.coordination.LeaderChecker$$Lambda$4237+0x0000000801898000.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ahMxWqP1a_8hG_qUbGypwwAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.scoreRange(org.apache.lucene.search.LeafCollector, org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.search.TwoPhaseIterator, org.apache.lucene.util.Bits, int, int)", "offset": 11}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hyDoVUWwwXEvgB5sKTLeXQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.lambda$publishFrozenUpdates$10(org.apache.lucene.index.FrozenBufferedUpdates, org.apache.lucene.index.IndexWriter)"}, "line": {"number": 2742}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T7Ugi353BwPylAwIPK3gzQAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "void org.elasticsearch.search.fetch.FetchPhase.execute(org.elasticsearch.search.internal.SearchContext)", "offset": 9}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cW83SXox2LT9tGyYE9o19AAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "JarURLConnection.java"}, "function": {"name": "void java.net.JarURLConnection.parseSpecs(java.net.URL)", "offset": 10}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XLF69uXjx__SMzPQ-aqv3gAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ParserImpl.java"}, "function": {"name": "org.yaml.snakeyaml.events.Event org.yaml.snakeyaml.parser.ParserImpl.getEvent()"}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qQT28tkYE_Jc8XwmYq5euQAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object no.found.http.HighLevelHttpClient$$Lambda$1358.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QoETQaJh4hk1PJNhgxG6YQAAAAAAAACe"}} +{"Stackframe": {"file": {"name": "TransportNodesInfoAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.info.NodeInfo org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction.nodeOperation(org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction$NodeInfoRequest, org.elasticsearch.tasks.Task)", "offset": 2}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mmPsjN7E1ia7Jag3tIGVTQAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "void org.apache.lucene.index.SegmentReader.(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.IOContext)", "offset": 6}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9VUHn-omdMzBxHZlC8YHBgAAAAAAAABC"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.handlePrimaryRequest(org.elasticsearch.action.support.replication.TransportReplicationAction$ConcreteShardRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 6}, "line": {"number": 295}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CEhlVwLkGcF6wPQ9FYzYUQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "IndexTemplateRegistry.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecyclePolicy org.elasticsearch.xpack.core.template.IndexTemplateRegistry.lambda$addIndexLifecyclePoliciesIfMissing$8(org.elasticsearch.xpack.core.template.LifecyclePolicyConfig)"}, "line": {"number": 397}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wsiwpURe2IZjbmwCkcK3NwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putIfAbsent(java.lang.Object, java.lang.Object)"}, "line": {"number": 1061}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk7XQ"}} +{"Stackframe": {"function": {"name": "netlink_rcv_skb"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zREyrkkSTH9SXYVy_-sKAwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readOrderedMap(org.elasticsearch.common.xcontent.XContentParser)"}, "line": {"number": 300}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TifPIvND7b7ICq3M7OVoFwAAAAAAAABj"}} +{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.IndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 17}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlu6"}} +{"Stackframe": {"function": {"name": "show_mountinfo"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fsSq5sroB-tGgeWogK4rbQAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "RootObjectMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.RootObjectMapper.validate(org.elasticsearch.index.mapper.DynamicTemplate, java.lang.String, java.util.function.BiConsumer)", "offset": 1}, "line": {"number": 472}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9ZZppGm6KidGLnQQCLqseAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FilterLeafReader.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.apache.lucene.index.FilterLeafReader$FilterTermsEnum.next()"}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IwwbyqFq94TuMsCm_P7YEwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$1.onResponse(java.lang.Object)"}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IcaOS57nW0_cDU2ipChvQQAAAAAAAACG"}} +{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.deleteIndices(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 13}, "line": {"number": 285}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y9uy0jT_olZW6YV4k5pWhwAAAAAAAAES"}} +{"Stackframe": {"file": {"name": "MultiDocValues.java"}, "function": {"name": "void org.apache.lucene.index.MultiDocValues$OrdinalMap.(java.lang.Object, org.apache.lucene.index.TermsEnum[], org.apache.lucene.index.MultiDocValues$OrdinalMap$SegmentMap, float)", "offset": 43}, "line": {"number": 572}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZU_AKrN0O1tUEGDaSRobyAAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.common.bytes.ReleasableBytesReference org.elasticsearch.cluster.coordination.PublicationTransportHandler$PublicationContext.lambda$buildDiffAndSerializeStates$2(org.elasticsearch.common.util.LazyInitializable, org.elasticsearch.cluster.node.DiscoveryNode, org.elasticsearch.Version)"}, "line": {"number": 371}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALX6y"}} +{"Stackframe": {"function": {"name": "fput"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wl0U5vJFJokP-keLWBjMkQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.put(java.lang.Object, java.lang.Object)"}, "line": {"number": 611}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN6I"}} +{"Stackframe": {"function": {"name": "netif_receive_skb"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "04jbaimoCFtwGn506T5lyQAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.master.MasterNodeRequest, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bLRnm0K2LnF8O3sUIvVtEQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "CPoolProxy.java"}, "function": {"name": "void org.apache.http.impl.conn.CPoolProxy.sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest)"}, "line": {"number": 152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rtJFGuFDWKgkQ_kOhDwLwgAAAAAAAACU"}} +{"Stackframe": {"file": {"name": "FreqProxTermsWriter.java"}, "function": {"name": "void org.apache.lucene.index.FreqProxTermsWriter.flush(java.util.Map, org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.NormsProducer)", "offset": 20}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ewU9RfzsPed7JATT94aw-wAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "long org.apache.lucene.store.FSDirectory.fileLength(java.lang.String)", "offset": 4}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rcaxiDZySELWCuXdWiYPQgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "IllegalArgumentException.java"}, "function": {"name": "void java.lang.IllegalArgumentException.(java.lang.String)"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAVT5r"}} +{"Stackframe": {"function": {"name": "strncpy_from_user"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "02PTq9Jtr4iKE59hgBxlagAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "Mailbox.scala"}, "function": {"name": "void akka.dispatch.Mailbox.processMailbox(int, long)", "offset": 4}, "line": {"number": 270}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr"}} +{"Stackframe": {"function": {"name": "do_page_fault"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xBTi6zq6LxTMAqb38KRrfgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "boolean java.util.HashMap.containsKey(java.lang.Object)"}, "line": {"number": 595}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "G2qWtKA710-HVR2JIOIICwAAAAAAAAB2"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicasProxy.performOn(org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.action.support.replication.ReplicationRequest, long, long, long, org.elasticsearch.action.ActionListener)", "offset": 17}, "line": {"number": 1261}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fBNzPpcZwIcFZU3mPnPZtwAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "BufferedReader.java"}, "function": {"name": "java.lang.String java.io.BufferedReader.readLine(boolean, boolean[])", "offset": 12}, "line": {"number": 329}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YgsSLUYpiS9cWv6amzrEpAAAAAAAAABu"}} +{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 19}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "NumberFormatException.java"}, "function": {"name": "java.lang.NumberFormatException java.lang.NumberFormatException.forInputString(java.lang.String)"}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "O6091ZB5jV9xKR7I7_uzYgAAAAAAAAEN"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.messageReceived(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage, long)", "offset": 39}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Vb9Nboq4yl2G4leT-jYdRgAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "BytesStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.BytesStreamOutput.writeBytes(byte[], int, int)", "offset": 10}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ue_-5_LRHLwQQ66t4C_dVQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ResourceLeakDetector.java"}, "function": {"name": "void io.netty.util.ResourceLeakDetector$TraceRecord.(io.netty.util.ResourceLeakDetector$TraceRecord)"}, "line": {"number": 616}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "125X0goavCApK-g1l1pkWwAAAAAAAABk"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader.readField(org.apache.lucene.store.DataInput, org.apache.lucene.index.StoredFieldVisitor, org.apache.lucene.index.FieldInfo, int)", "offset": 11}, "line": {"number": 222}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TzkAwqPHYLvwYBOwmocR6wAAAAAAAABZ"}} +{"Stackframe": {"file": {"name": "ChannelInputStream.java"}, "function": {"name": "int sun.nio.ch.ChannelInputStream.read(java.nio.channels.ReadableByteChannel, java.nio.ByteBuffer, boolean)", "offset": 14}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M2OILZain4HbmUZD_h9ouAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.SegmentsStats org.elasticsearch.index.shard.IndexShard.segmentStats(boolean)"}, "line": {"number": 720}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyO-"}} +{"Stackframe": {"function": {"name": "audit_filter_rules.constprop.21"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "g3pCi59qPBWaSfqiWTmFLwAAAAAAAAB-"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.serialize(java.lang.Object, java.lang.String, boolean, java.util.Map, java.io.OutputStream)", "offset": 26}, "line": {"number": 386}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "d-0bMtRUTimogqLX77QywwAAAAAAAABy"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.writeFromNativeBuffer(java.io.FileDescriptor, java.nio.ByteBuffer, long, sun.nio.ch.NativeDispatcher)", "offset": 13}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xDXeTINsutWQ3L9FCGjV5QAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "void org.elasticsearch.index.store.Store$StoreDirectory.deleteFile(java.lang.String)"}, "line": {"number": 750}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e6HlflPyKAlNlF7JPJCNJQAAAAAAAAFL"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.runTask(java.lang.String, java.util.function.Function, org.elasticsearch.action.ActionListener)", "offset": 44}, "line": {"number": 428}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k1o6cGLS1FzksoHJvPKdFQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "Lucene94FieldInfosFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene94.Lucene94FieldInfosFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.index.FieldInfos, org.apache.lucene.store.IOContext)", "offset": 2}, "line": {"number": 332}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bsyDek069Ex-p_WmJk4qUwAAAAAAAABy"}} +{"Stackframe": {"file": {"name": "MappingStats.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.stats.MappingStats org.elasticsearch.action.admin.cluster.stats.MappingStats.of(org.elasticsearch.cluster.metadata.Metadata, java.lang.Runnable)", "offset": 14}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "umnLDwSZ51G6dAiG4b1ChAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.maybeRefresh(java.lang.String)"}, "line": {"number": 1870}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ji8QGmnKHoMZnaBBpWbi6gAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "IndexLifecycleRunner.java"}, "function": {"name": "void org.elasticsearch.xpack.ilm.IndexLifecycleRunner.runPolicyAfterStateChange(java.lang.String, org.elasticsearch.cluster.metadata.IndexMetadata)", "offset": 1}, "line": {"number": 330}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "am2PCvpc2R64nNimbUFS0QAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "java.nio.channels.Selector sun.nio.ch.EPollSelectorImpl.wakeup()", "offset": 3}, "line": {"number": 254}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMP_"}} +{"Stackframe": {"function": {"name": "ip_finish_output2"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gRIeCgEmQvGu3TyGRA0y2wAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "MultiDocValues.java"}, "function": {"name": "long org.apache.lucene.index.MultiDocValues$OrdinalMap.getFirstSegmentOrd(long)"}, "line": {"number": 644}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2qSm8YWxCseLd4fv21CSvQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "SearchTransportService.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchTransportService$ConnectionCountingHandler.handleResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 642}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wcw67NCnOLTYutynHBvqowAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.execute(java.lang.Runnable)", "offset": 28}, "line": {"number": 1368}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_t41Zgn8MiPpsE2ExccvfwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$2920.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2WFW5n_XxRma7D1UP5oRKAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.ingest.IngestService$$Lambda$6027+0x0000000801c2ba18.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dPSSEqwU6mN7f6LCRm4TwgAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "FieldsVisitor.java"}, "function": {"name": "void org.elasticsearch.index.fieldvisitor.FieldsVisitor.reset()", "offset": 5}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yFBJd9cdNdUZI2XG5UyXfQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "FSTCompiler.java"}, "function": {"name": "void org.apache.lucene.util.fst.FSTCompiler.(org.apache.lucene.util.fst.FST$INPUT_TYPE, int, int, boolean, boolean, int, org.apache.lucene.util.fst.Outputs, boolean, int, float)", "offset": 48}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l7MRN84z7GBONDE4j4f6FQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher.doCheckAndNotify()"}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dl8CmVsiorem5CvNnWQ45QAAAAAAAAC0"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObjectOrNested(org.elasticsearch.index.mapper.ParseContext, org.elasticsearch.index.mapper.ObjectMapper, boolean)", "offset": 36}, "line": {"number": 373}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9RATOG9Hc01jgL4JokM8owAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.processEvents(boolean)", "offset": 1}, "line": {"number": 5881}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "K4GtFsHu3sEiObk5SkQ6NgAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "PolicyFile.java"}, "function": {"name": "boolean sun.security.provider.PolicyFile.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 4}, "line": {"number": 994}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5KDO11BWTfkkFO9MFEbTJwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "Long.java"}, "function": {"name": "long java.lang.Long.parseLong(java.lang.String)"}, "line": {"number": 817}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5FhUc-ysJtthqcIVmgASTQAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "DateTimeFormatterBuilder.java"}, "function": {"name": "void org.joda.time.format.DateTimeFormatterBuilder$Composite.printTo(java.lang.Appendable, long, org.joda.time.Chronology, int, org.joda.time.DateTimeZone, java.util.Locale)", "offset": 12}, "line": {"number": 2483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pTlbbE4fyfUNihcsjOaEcgAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "SystemIndexManager.java"}, "function": {"name": "org.elasticsearch.indices.SystemIndexManager$UpgradeStatus org.elasticsearch.indices.SystemIndexManager.getUpgradeStatus(org.elasticsearch.cluster.ClusterState, org.elasticsearch.indices.SystemIndexDescriptor)"}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R4O21YPz5WkGUKdaZ1xVrgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "MultiTermsEnum.java"}, "function": {"name": "void org.apache.lucene.index.MultiTermsEnum.pushTop()"}, "line": {"number": 273}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "asfjD62HMHzrp-TIN-8V-gAAAAAAAABO"}} +{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "boolean java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.offer(java.lang.Runnable)", "offset": 14}, "line": {"number": 1110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kzf2S9k1qbr0BOhKsbsKTAAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "MessageToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 20}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "c9WPXjfxUsY9A-4tktrxsgAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "AWS4Signer.java"}, "function": {"name": "java.lang.String com.amazonaws.auth.AWS4Signer.getSignedHeadersString(com.amazonaws.SignableRequest)", "offset": 6}, "line": {"number": 526}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I-mlHnTAwjY_0P67Hmx_TwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction.shardOperationOnPrimary(org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bSqWaYKtavFZqjY4T_025wAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "ThreadLocal.java"}, "function": {"name": "java.lang.Object java.lang.ThreadLocal.get()", "offset": 3}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OOfgbFUyyyBf7NiIDQweHAAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "DeflaterOutputStream.java"}, "function": {"name": "void java.util.zip.DeflaterOutputStream.flush()", "offset": 2}, "line": {"number": 274}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4TLVOI15O9hT3k5UjShaLgAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "boolean org.elasticsearch.index.shard.IndexShard.scheduledRefresh()", "offset": 2}, "line": {"number": 3810}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zk_PAPIluouMAlyxqI2lSwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Object)"}, "line": {"number": 1071}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ytmnDvqR2kv8bcodWBOqIQAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "void io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()", "offset": 28}, "line": {"number": 930}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B3E8rhZygkGfEw_Q4JDkwgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "org.apache.lucene.index.TermsEnum org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$BaseSortedDocValues.termsEnum()"}, "line": {"number": 1001}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5ocKe_xZhLoIMKsqpwD-EgAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesFormat.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesProducer org.apache.lucene.codecs.lucene80.Lucene80DocValuesFormat.fieldsProducer(org.apache.lucene.index.SegmentReadState)"}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ywctG_sMzzXt8DhXRU3jGwAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader$SerializedDocument org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader.document(int)", "offset": 5}, "line": {"number": 659}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "U-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "TokenService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.TokenService.getAndValidateToken(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.action.ActionListener)", "offset": 26}, "line": {"number": 218}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AV8wmuu_NnjgQM-gIicjoAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "void io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)"}, "line": {"number": 1410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkBo"}} +{"Stackframe": {"function": {"name": "walk_component"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "byasmlG2krl-ot4l0JR9AgAAAAAAAAEj"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$CommitId org.elasticsearch.index.engine.InternalEngine.flush(boolean, boolean)", "offset": 34}, "line": {"number": 1860}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dciEg2zVAoapt7MT0cXoNwAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$7191+0x000000080244a0d0.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "isG4XFXxe-F-cnbJLaRjfQAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "GraphInterpreter.scala"}, "function": {"name": "void akka.stream.impl.fusing.GraphInterpreter.processPush(akka.stream.impl.fusing.GraphInterpreter$Connection)", "offset": 2}, "line": {"number": 542}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pVlUGQpw_Cq0LEtbbly5dAAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$7229+0x000000080251cea0.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Zk43mZ48MNKz-8sDUsL_rAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "SettingsCompanion.scala"}, "function": {"name": "java.lang.Object akka.http.scaladsl.settings.SettingsCompanion.apply$(akka.http.scaladsl.settings.SettingsCompanion, akka.actor.ActorSystem)"}, "line": {"number": 19}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CNq6Kt4mWkOk16Nvp19k6AAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "FileDispatcherImpl.java"}, "function": {"name": "long sun.nio.ch.FileDispatcherImpl.writev0(java.io.FileDescriptor, long, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hWO0Ej8QxAN8OGdadeUgHAAAAAAAAADa"}} +{"Stackframe": {"file": {"name": "NamedXContentRegistry.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.NamedXContentRegistry.parseNamedObject(java.lang.Class, java.lang.String, org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)", "offset": 18}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFUvu"}} +{"Stackframe": {"function": {"name": "cgroup_seqfile_show"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vFHpuMfxurJGYl7N87FnEAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node[] java.util.HashMap.resize()"}, "line": {"number": 684}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7zPKGV-eM0z3BYd8xdD0NwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.addSortedNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)"}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T_CbuFH2T-k0d1BucuCrUAAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction$1.doRun()"}, "line": {"number": 246}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HxwFNv8DwJmuLSpQ419gewAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedExceptionAction, java.security.AccessControlContext, java.lang.Class)", "offset": 5}, "line": {"number": 784}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TdvyEkBALxwDoycOnD-RjgAAAAAAAABk"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.updateChildren()", "offset": 18}, "line": {"number": 215}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rbwR-ACr3s5lHPzJRwgUNgAAAAAAAAEm"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.io.stream.StreamInput.readString()", "offset": 58}, "line": {"number": 481}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I6P0_IKCAh0onrKVnGKjqAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "URLClassPath.java"}, "function": {"name": "java.net.URL jdk.internal.loader.URLClassPath.checkURL(java.net.URL)", "offset": 2}, "line": {"number": 538}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "atIdAKYLgBKZMlaW-Dl3CAAAAAAAAABO"}} +{"Stackframe": {"file": {"name": "MappedMultiFields.java"}, "function": {"name": "org.apache.lucene.index.PostingsEnum org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum.postings(org.apache.lucene.index.PostingsEnum, int)", "offset": 13}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4X1D0bE8dXWnBHefwzL1KgAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "int sun.nio.ch.FileChannelImpl.write(java.nio.ByteBuffer)", "offset": 10}, "line": {"number": 281}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PYNr3fcqAEd1mjY30PW6-AAAAAAAAADD"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "void org.elasticsearch.search.SearchService.parseSource(org.elasticsearch.search.DefaultSearchContext, org.elasticsearch.search.builder.SearchSourceBuilder)", "offset": 26}, "line": {"number": 634}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8Jw1TVPLmPNxJZ-iu1UbtQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "MappingVisitor.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.stats.MappingVisitor.visitMapping(java.util.Map, java.util.function.BiConsumer)"}, "line": {"number": 19}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xa170c4ceuN7F4Z_jhJFyQAAAAAAAAEX"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.parseMediumName2(int, int)", "offset": 35}, "line": {"number": 1840}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zuU2nZWYk_lR7WzzP_HMIwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$8124+0x0000000801f8ed58.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKeys()", "offset": 3}, "line": {"number": 583}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlmsw"}} +{"Stackframe": {"function": {"name": "tcp_rcv_established"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M7mUtUMKeSbKl86LPQ4FpgAAAAAAAABm"}} +{"Stackframe": {"file": {"name": "Method.java"}, "function": {"name": "java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[])", "offset": 19}, "line": {"number": 578}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GO1QDVqG-4CNnMRn2v_9VAAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "boolean com.fasterxml.jackson.core.json.UTF8StreamJsonParser._loadMore()", "offset": 6}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cj1i9bDkXvg3vH52VRJiMAAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "MapperUtils.java"}, "function": {"name": "void org.elasticsearch.index.mapper.MapperUtils.collect(org.elasticsearch.index.mapper.Mapper, java.util.Collection, java.util.Collection)", "offset": 7}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KV1fAWClOoINijqAgbPmTwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "boolean java.util.regex.Pattern$BranchConn.match(java.util.regex.Matcher, int, java.lang.CharSequence)"}, "line": {"number": 4710}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUkts"}} +{"Stackframe": {"function": {"name": "string_escape_mem"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vw2FT3151oizPmalmfG1PwAAAAAAAACm"}} +{"Stackframe": {"file": {"name": "CipherCore.java"}, "function": {"name": "int com.sun.crypto.provider.CipherCore.finalNoPadding(byte[], int, byte[], int, int)", "offset": 18}, "line": {"number": 1122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Vo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "int sun.nio.fs.UnixNativeDispatcher.open0(long, int, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YyddXeaYdXtH-rqw_mxACQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "java.util.Iterator java.util.AbstractMap$2.iterator()"}, "line": {"number": 409}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GgMrYdv_iHmlFuq9BK0A5QAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$MetadataIndexWriter.commit()"}, "line": {"number": 658}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZuSiv65WwcAu_jfpG6ANPQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "PendingReplicationActions.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.PendingReplicationActions.accept(java.lang.Object)"}, "line": {"number": 25}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o9I8XHop3y7uLb8wdADAN______AbjYq"}} +{"Stackframe": {"function": {"name": "__key.128173"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nPCAxeiqMcZau3eqPVPDPQAAAAAAAACj"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.lambda$getAuthenticatorConsumer$5(boolean, org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.security.authc.Authenticator, org.elasticsearch.action.ActionListener)", "offset": 20}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jHGplk-5lyW-HjmXkIdflQAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$1.lambda$sendRequest$2(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportInterceptor$AsyncSender, org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext)"}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Rq9zkaF6sUD5FfpUB-KQEwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "QuotaAwareFileSystemProvider.java"}, "function": {"name": "void co.elastic.cloud.quotaawarefs.QuotaAwareFileSystemProvider.checkAccess(java.nio.file.Path, java.nio.file.AccessMode[])"}, "line": {"number": 326}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iDeUqi9fXDm_fNSrL17LBgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.get(java.lang.Object)"}, "line": {"number": 556}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5h_x3DWmOz8VIG9_VAD0HAAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.authenticateAsync(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 14}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DaEGjLV2qC4AGn6rr9H05wAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "InternalMappedTerms.java"}, "function": {"name": "void org.elasticsearch.search.aggregations.bucket.terms.InternalMappedTerms.writeTermTypeInfoTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 5}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0qjoqZl267F0DC5OJqPG4gAAAAAAAABp"}} +{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel)", "offset": 9}, "line": {"number": 61}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAiyGG"}} +{"Stackframe": {"function": {"name": "__alloc_skb"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ISo198vJQrYNdynfqzotagAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.lang.Object java.util.TreeMap.get(java.lang.Object)"}, "line": {"number": 279}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HDR9S3uHHXddIiGMGd1LPwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.tryApply(org.apache.lucene.index.FrozenBufferedUpdates)", "offset": 2}, "line": {"number": 5567}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bhnM-182eA1jGyBQl8pMugAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$1860.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sR4qdLhnoIuT0SC7K04RWwAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "ScorerUtil.java"}, "function": {"name": "long org.apache.lucene.search.ScorerUtil.costWithMinShouldMatch(java.util.stream.LongStream, int, int)", "offset": 7}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZSBccAp6iur2RMi-BalLxwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.apache.lucene.index.IndexCommit org.elasticsearch.index.engine.InternalEngine.lambda$acquireLastIndexCommit$6()"}, "line": {"number": 2227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w6kzV8D69jasat-u2vkUCAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$7532+0x0000000801f3b7e8.get()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VdwrqP2He6NLNQ9LuEAacQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "io.netty.channel.ChannelPipeline io.netty.channel.DefaultChannelPipeline.fireChannelRead(java.lang.Object)"}, "line": {"number": 965}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-iXDKA3YC-uP6gBDyblJbwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$7036+0x000000080246f9c8.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "U_j9WWlyWElqIOf8loqE1gAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "EatWhatYouKill.java"}, "function": {"name": "void org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run()"}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mZ6pM0OEbp3JJIi6QUyNsQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.read(java.io.FileDescriptor, java.nio.ByteBuffer, long, sun.nio.ch.NativeDispatcher)"}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "St7lFjY3zfwOi_rfHJtWoQAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Object, java.util.Set)", "offset": 13}, "line": {"number": 1088}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "paeptaXHRDYD67F7ORC0twAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "org.elasticsearch.common.collect.ImmutableOpenMap org.elasticsearch.common.io.stream.StreamInput.readImmutableMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader)", "offset": 6}, "line": {"number": 710}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hThLzOSIQizmnJjoY5cDqwAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.executeLocalSearch(org.elasticsearch.tasks.Task, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.OriginalIndices, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener, org.elasticsearch.action.search.SearchContextId, org.elasticsearch.action.search.TransportSearchAction$SearchAsyncActionProvider)"}, "line": {"number": 769}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bcm3REG58b46CBv8_xMfuwAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "org.elasticsearch.common.xcontent.ToXContent org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.read(java.lang.String, org.elasticsearch.common.blobstore.BlobContainer, java.lang.String, org.elasticsearch.common.xcontent.NamedXContentRegistry)", "offset": 2}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Yj3NB309iqozWSOQATrWBgAAAAAAAAB5"}} +{"Stackframe": {"file": {"name": "ConcurrentMergeScheduler.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.index.ConcurrentMergeScheduler$1.createOutput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 12}, "line": {"number": 288}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Kb-BUhTmEy25n_HMPR0FvwAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "ClassLoader.java"}, "function": {"name": "java.net.URL java.lang.ClassLoader.getResource(java.lang.String)", "offset": 3}, "line": {"number": 1399}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DzZ0dEa7XDjtQVGFBWf08wAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation$2.onResponse(java.lang.Object)"}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PPHhe_apJQbRd-Odyq3hXwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.core.security.authz.store.RoleReferenceIntersection$$Lambda$7792+0x0000000802546a30.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALiNV"}} +{"Stackframe": {"function": {"name": "inode_permission"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4qy1OhHC2klcRs4XgL9D7QAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "TermsHashPerField.java"}, "function": {"name": "void org.apache.lucene.index.TermsHashPerField.add(org.apache.lucene.util.BytesRef, int)", "offset": 4}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MEhCGFUvnR-s79TodsgBdAAAAAAAAADe"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "java.lang.String org.elasticsearch.transport.TcpTransport.handleRequest(java.lang.Object, java.lang.String, org.elasticsearch.common.io.stream.StreamInput, long, int, org.elasticsearch.Version, java.net.InetSocketAddress, byte)", "offset": 25}, "line": {"number": 1510}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TsD0RrBnIgAER8sz4r-hTwAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "void org.apache.lucene.index.StandardDirectoryReader.doClose()", "offset": 17}, "line": {"number": 387}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JZAp-_m0--d0j2rImdy6sQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "java.lang.Object[] java.util.Arrays.copyOf(java.lang.Object[], int)"}, "line": {"number": 3481}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACY8z"}} +{"Stackframe": {"function": {"name": "__x64_sys_clone"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R8Unr-8xOl9YfaVb1B0yFAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "PointRangeQuery.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.PointRangeQuery$1$4.get(long)"}, "line": {"number": 334}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pW8useNRLFWJHbQ9ncrSDQAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.maybeAuthorizeRunAs(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 27}, "line": {"number": 266}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CR_orhXYgPjlsF3bAh1bcAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "sun.security.ssl.Ciphertext sun.security.ssl.SSLEngineImpl.encode(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)"}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6Sl034LNupVWS0LGAM7CqgAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "TranslogDeletionPolicy.java"}, "function": {"name": "long org.elasticsearch.index.translog.TranslogDeletionPolicy.minTranslogGenRequired(java.util.List, org.elasticsearch.index.translog.TranslogWriter)", "offset": 1}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "17HTI7iF5IciDolEslsOPQAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "java.lang.String java.lang.String.toLowerCase(java.util.Locale)"}, "line": {"number": 3387}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N4_m1vnrP1MXWCUw2cXf5wAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.lambda$writeMap$4(org.elasticsearch.common.io.stream.StreamOutput, org.elasticsearch.common.io.stream.Writeable)"}, "line": {"number": 637}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EVrDMxSBi7bvrsiLPE4SVgAAAAAAAABg"}} +{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.IndexingChain.writePoints(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)", "offset": 18}, "line": {"number": 355}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VZ92wJHz4QeIc3nyf1htQgAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "ResourceWatcherService.java"}, "function": {"name": "void org.elasticsearch.watcher.ResourceWatcherService$ResourceMonitor.run()", "offset": 2}, "line": {"number": 194}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "A0Tl0kLgX3hdE-5qIk9RVgAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "long org.elasticsearch.common.io.Streams.copy(java.io.InputStream, java.io.OutputStream, byte[])", "offset": 7}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9F2sPFUdWnrciDjWRDA8VgAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeMap(org.elasticsearch.common.collect.ImmutableOpenMap, org.elasticsearch.common.io.stream.Writeable$Writer, org.elasticsearch.common.io.stream.Writeable$Writer)", "offset": 2}, "line": {"number": 629}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(java.lang.Object)", "offset": 2}, "line": {"number": 362}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N1R-9DGIZrDXK9x_wnFgtgAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.internalParseDocument(org.elasticsearch.index.mapper.RootObjectMapper, org.elasticsearch.index.mapper.MetadataFieldMapper[], org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.xcontent.XContentParser)", "offset": 10}, "line": {"number": 145}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "05XKwzdpS7Kd0uKbnrxHMgAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction.finishHim()", "offset": 6}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_EVdVfyApPsVUy6u6pxduQAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "Netty4TcpChannel.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4TcpChannel.lambda$addPromise$1(org.elasticsearch.action.ActionListener, io.netty.util.concurrent.Future)", "offset": 8}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PvCj-Ab34SfIYTR_F-HgGwAAAAAAAACd"}} +{"Stackframe": {"file": {"name": "FollowersChecker.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.FollowersChecker$FollowerChecker.handleWakeUp()", "offset": 18}, "line": {"number": 307}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lNGFqePH4YxgTFonXnLtUwAAAAAAAABW"}} +{"Stackframe": {"file": {"name": "IndicesQueryCache.java"}, "function": {"name": "org.elasticsearch.index.cache.query.QueryCacheStats org.elasticsearch.indices.IndicesQueryCache.getStats(org.elasticsearch.index.shard.ShardId)", "offset": 5}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "v4Ru5tqeSthdwSuFubOO5wAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ByteBuffer.java"}, "function": {"name": "java.nio.Buffer java.nio.ByteBuffer.limit(int)"}, "line": {"number": 267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lQyhpD_c93PUFLAOMsmBKgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "BooleanQuery.java"}, "function": {"name": "void org.apache.lucene.search.BooleanQuery.(boolean, int, org.apache.lucene.search.BooleanClause[])"}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QiTo58FObDGDVxhW5ylvXwAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "FileSystemUtils.java"}, "function": {"name": "java.nio.file.Path[] org.elasticsearch.common.io.FileSystemUtils.toArray(java.nio.file.DirectoryStream)"}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W7ecGdd5UmqqnRTWfHNqsAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ManagementFactory.java"}, "function": {"name": "java.util.stream.Stream java.lang.management.ManagementFactory.lambda$getPlatformMXBeans$3(java.lang.Class, sun.management.spi.PlatformMBeanProvider$PlatformComponent)"}, "line": {"number": 730}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "A_kWoNW8jw3N93m_5CwHgwAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$1.lambda$sendRequest$0(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportInterceptor$AsyncSender, boolean, org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext)"}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XIkoVhPN9nGWJltNSKuTxQAAAAAAAAFN"}} +{"Stackframe": {"file": {"name": "Builder.java"}, "function": {"name": "void org.apache.lucene.util.fst.Builder.freezeTail(int)", "offset": 73}, "line": {"number": 349}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lcdDbZ1ycQTgFv_SpDoCWAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "NativeBuffers.java"}, "function": {"name": "void sun.nio.fs.NativeBuffers.releaseNativeBuffer(sun.nio.fs.NativeBuffer)"}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vAJHjqNGr3CUZ2XaU7rPiQAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "ByteBuffer.java"}, "function": {"name": "java.nio.ByteBuffer java.nio.ByteBuffer.get(byte[], int, int)", "offset": 5}, "line": {"number": 800}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MAeNVf9VknVgzLcDuw060QAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "GHASH.java"}, "function": {"name": "int com.sun.crypto.provider.GHASH.update(byte[], int, int)"}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GrFN_vqIiUXweFiD8Wqk0AAAAAAAAAES"}} +{"Stackframe": {"file": {"name": "ReservedThreadExecutor.java"}, "function": {"name": "void org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run()", "offset": 55}, "line": {"number": 409}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANvHp"}} +{"Stackframe": {"function": {"name": "proc_flush_task"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xlb09pg_CNqer4pEvxIDdgAAAAAAAABa"}} +{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "boolean java.util.regex.Pattern$NotBehind.match(java.util.regex.Matcher, int, java.lang.CharSequence)", "offset": 11}, "line": {"number": 5302}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AydMRjIz1OdcUN0eWHfUfwAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "AbstractThrottledTaskRunner.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractThrottledTaskRunner$1.doRun()", "offset": 1}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GS-BM31ayIfhOMl6o8fHjwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "SortedNumericDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedNumericDocValuesWriter.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.DocValuesConsumer)"}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7uksKfxFONj3nEtg73WagwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$7.doRun()"}, "line": {"number": 687}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "s32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "HttpRequestExecutor.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.protocol.HttpRequestExecutor.execute(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext)", "offset": 4}, "line": {"number": 123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZFPsdInlq-bcPlmCOSdVJgAAAAAAAACF"}} +{"Stackframe": {"file": {"name": "ByteQuadsCanonicalizer.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.findName(int, int)", "offset": 25}, "line": {"number": 527}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3R5WdMy-PzbXDBwRtogT5gAAAAAAAABe"}} +{"Stackframe": {"file": {"name": "DateFieldMapper.java"}, "function": {"name": "org.apache.lucene.search.Query org.elasticsearch.index.mapper.DateFieldMapper$DateFieldType.lambda$dateRangeQuery$2(java.lang.Object, boolean, java.time.ZoneId, org.elasticsearch.common.time.DateMathParser, org.elasticsearch.index.mapper.DateFieldMapper$Resolution, java.lang.Object, boolean, java.util.function.BiFunction, java.util.function.LongSupplier)", "offset": 16}, "line": {"number": 493}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "MultiDocValues.java"}, "function": {"name": "org.apache.lucene.index.MultiDocValues$OrdinalMap org.apache.lucene.index.MultiDocValues$OrdinalMap.build(java.lang.Object, org.apache.lucene.index.TermsEnum[], long[], float)", "offset": 6}, "line": {"number": 511}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fB-E1mu6hJEFot7jB8X5ywAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKeys()", "offset": 3}, "line": {"number": 652}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jUMcrcBzL4lLr32UCpZoUQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction$$Lambda$7653+0x0000000801f65c00.updateMappings(org.elasticsearch.index.mapper.Mapping, org.elasticsearch.index.shard.ShardId, java.lang.String, org.elasticsearch.action.ActionListener)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmKgj"}} +{"Stackframe": {"function": {"name": "inet_dump_ifaddr"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlmtx"}} +{"Stackframe": {"function": {"name": "tcp_rcv_established"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Q1HRbZMZV9Fx6KiIEQ_vIQAAAAAAAACB"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "org.elasticsearch.cluster.SnapshotsInProgress$Entry org.elasticsearch.snapshots.SnapshotsService$SnapshotShardsUpdateContext$EntryContext.computeUpdatedEntry()", "offset": 10}, "line": {"number": 3763}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vYbs9q5H85HJMqhuczkhvgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "RangeQueryBuilder.java"}, "function": {"name": "org.elasticsearch.index.query.QueryBuilder org.elasticsearch.index.query.RangeQueryBuilder.doRewrite(org.elasticsearch.index.query.QueryRewriteContext)"}, "line": {"number": 459}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GLDSd1ISNevOKzSmDgruJwAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "MemorySegmentIndexInput.java"}, "function": {"name": "void org.apache.lucene.store.MemorySegmentIndexInput.close()", "offset": 13}, "line": {"number": 449}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WNSWOp_4Iqt56ZuW1XrPJwAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrap(io.netty.channel.ChannelHandlerContext, boolean)", "offset": 19}, "line": {"number": 828}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YPLEzZeIG2eS21HPGg9UDwAAAAAAAAB0"}} +{"Stackframe": {"file": {"name": "DocsWithFieldSet.java"}, "function": {"name": "void org.apache.lucene.index.DocsWithFieldSet.add(int)", "offset": 10}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x2dOFg0yEocAScOtYTlKbAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object java.lang.management.ManagementFactory$$Lambda$160+0x00000008010faa30.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hQj1w50CfP8YweEdnC-JyAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$MetadataIndexWriter.commit()"}, "line": {"number": 537}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rLBv85fvZDzdHWrRMDmO5AAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "BytesStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.BytesStreamOutput.ensureCapacity(long)"}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApymC"}} +{"Stackframe": {"function": {"name": "__mutex_lock_slowpath"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ReduceOps.java"}, "function": {"name": "java.lang.Object java.util.stream.ReduceOps$ReduceOp.evaluateSequential(java.util.stream.PipelineHelper, java.util.Spliterator)"}, "line": {"number": 913}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ActionRunnable.java"}, "function": {"name": "void org.elasticsearch.action.ActionRunnable$2.accept(java.lang.Object)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Uc3Hxu80nWajDYNI1RALIwAAAAAAAAGg"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.handleIndexActionAuthorizationResult(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener)", "offset": 71}, "line": {"number": 556}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZKLj_deYRtPDewbXBnoroAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$RefreshResult org.elasticsearch.index.engine.InternalEngine.maybeRefresh(java.lang.String)"}, "line": {"number": 1841}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iH1rt2A0cDFvTr2IZcc8_wAAAAAAAACW"}} +{"Stackframe": {"file": {"name": "FieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.FieldsConsumer.merge(org.apache.lucene.index.MergeState, org.apache.lucene.codecs.NormsProducer)", "offset": 22}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCIa"}} +{"Stackframe": {"function": {"name": "futex_wait"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bdLIO9fg6Bsro1ZepYBZlQAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter.close()", "offset": 9}, "line": {"number": 1044}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LTb9asUQOMhlb43-O2hRvAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "void org.elasticsearch.cluster.DiffableUtils$DiffableValueSerializer.writeDiff(org.elasticsearch.cluster.Diff, org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 629}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAVmG"}} +{"Stackframe": {"function": {"name": "au_h_open"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile.lambda$authorizeAsync$5(org.elasticsearch.xpack.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.authz.permission.Role, org.elasticsearch.xpack.security.authz.permission.Role)", "offset": 1}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5snd27jMDyCzCgMymsEVngAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "InternalClient.java"}, "function": {"name": "void org.elasticsearch.xpack.security.InternalClient.doExecute(org.elasticsearch.action.Action, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 11}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bHYnTTMwOKs9GmXcNLK2tgAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "SegmentTermsEnum.java"}, "function": {"name": "org.apache.lucene.index.PostingsEnum org.apache.lucene.codecs.blocktree.SegmentTermsEnum.postings(org.apache.lucene.index.PostingsEnum, int)", "offset": 8}, "line": {"number": 1004}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rUm6eKXC2r517lo4-7MF6wAAAAAAAACK"}} +{"Stackframe": {"file": {"name": "RoutingNode.java"}, "function": {"name": "void org.elasticsearch.cluster.routing.RoutingNode.(java.lang.String, org.elasticsearch.cluster.node.DiscoveryNode, java.util.LinkedHashMap)", "offset": 13}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBiZ"}} +{"Stackframe": {"function": {"name": "seq_read"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_v6hOoIgYf3eN97moDCA0AAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "FilterMergePolicy.java"}, "function": {"name": "org.apache.lucene.index.MergePolicy$MergeSpecification org.apache.lucene.index.FilterMergePolicy.findMerges(org.apache.lucene.index.MergeTrigger, org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EIpTc6zorXqtTjOVazk4HwAAAAAAAABo"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.finish(org.apache.lucene.index.FieldInfos, int)", "offset": 8}, "line": {"number": 489}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x8ERETcapIt78IXSEO8DRwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "RestActionListener.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestActionListener.onResponse(java.lang.Object)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DP6PZKAs07323BH7JdjoywAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelHandlerContext io.netty.channel.AbstractChannelHandlerContext.flush()", "offset": 3}, "line": {"number": 749}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I38BEvuOR5ZIj0xVCqeBhwAAAAAAAAC6"}} +{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.sendSearchResponse(org.elasticsearch.search.internal.InternalSearchResponse, org.elasticsearch.common.util.concurrent.AtomicArray)", "offset": 18}, "line": {"number": 722}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5h1fxxJ6EO-OnrqL_BatiwAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "BufferedInputStream.java"}, "function": {"name": "int java.io.BufferedInputStream.read()", "offset": 3}, "line": {"number": 276}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eIKZHUnkOnlIeLcFKA7B_wAAAAAAAADK"}} +{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.checkpoint(org.apache.lucene.index.SegmentInfos, boolean)", "offset": 20}, "line": {"number": 536}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H-wSa23kc3U3gWusbQ0H7AAAAAAAAAAv"}} +{"Stackframe": {"file": {"name": "ByteBuffersDataOutput.java"}, "function": {"name": "void org.apache.lucene.store.ByteBuffersDataOutput.copyTo(org.apache.lucene.store.DataOutput)", "offset": 2}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Sm0xkBmU0d55bIWjfcYmtAAAAAAAAABb"}} +{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "void io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()", "offset": 28}, "line": {"number": 856}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pfFrejV5_d2JafhorerbtgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "int sun.nio.fs.UnixPath.getNameCount()"}, "line": {"number": 326}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0qjoqZl267F0DC5OJqPG4gAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel)"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zTvLXdOFcy2gmvTP-mriSwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.nullField(java.lang.String)", "offset": 1}, "line": {"number": 252}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hicgrP6yr_-9qRDPdRH1UQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "CodecUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.CodecUtil.writeCRC(org.apache.lucene.store.IndexOutput)"}, "line": {"number": 643}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rD7cM-A9XXlHFS-efShWpgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$authenticateAsync$2(org.elasticsearch.xpack.security.authc.Authentication)", "offset": 1}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DRh-aVmDZx3L8a5NK1VAdwAAAAAAAADN"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken()", "offset": 50}, "line": {"number": 797}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR"}} +{"Stackframe": {"function": {"name": "audit_filter_syscall.constprop.19"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QXvaGnSY0e9Ndzfl5fNy7QAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "AbstractByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.AbstractByteBufAllocator.directBuffer(int, int)", "offset": 4}, "line": {"number": 181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GOAeLBP6U_Nxv7LKjBKI9gAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "MatchOps.java"}, "function": {"name": "void java.util.stream.MatchOps$1MatchSink.accept(java.lang.Object)"}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6gx5j99QwRXWvrkyBMUOQwAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "int java.util.Arrays.mismatch(byte[], int, int, byte[], int, int)", "offset": 6}, "line": {"number": 7661}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1Hl4c2ZSJL2yCzY8yWfLCgAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "FieldInfos.java"}, "function": {"name": "org.apache.lucene.index.FieldInfo org.apache.lucene.index.FieldInfos$Builder.add(org.apache.lucene.index.FieldInfo, long)"}, "line": {"number": 564}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xFXqeYvu4HepayMSpjUTRQAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.rename(sun.nio.fs.UnixPath, sun.nio.fs.UnixPath)", "offset": 3}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Gq5m7YsN9AxAFbfEdlTTPwAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "void sun.nio.fs.UnixPath.checkDelete()", "offset": 2}, "line": {"number": 822}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qbE663jMUK0zZ7ijkl_AugAAAAAAAAB_"}} +{"Stackframe": {"file": {"name": "FilteredTermsEnum.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.apache.lucene.index.FilteredTermsEnum.next()", "offset": 14}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HYZxCzuz6LEXaDimozBLlgAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterService$$Lambda$1795.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "okBlt5oedmnS64oAufr-2wAAAAAAAACp"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.xcontent.support.AbstractXContentParser.readValueUnsafe(org.elasticsearch.xcontent.XContentParser$Token, org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier)", "offset": 11}, "line": {"number": 394}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0s7uxPt4C0neZhw5beiboQAAAAAAAACQ"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.xcontent.support.AbstractXContentParser.readValueUnsafe(org.elasticsearch.xcontent.XContentParser$Token, org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier)", "offset": 12}, "line": {"number": 400}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EVcmFq_4edpopY2aEzriOwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "GetInstance.java"}, "function": {"name": "sun.security.jca.GetInstance$Instance sun.security.jca.GetInstance.getInstance(java.security.Provider$Service, java.lang.Class)"}, "line": {"number": 236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nH2PRDy3afrpHJb0PPWy4QAAAAAAAAD9"}} +{"Stackframe": {"file": {"name": "Lucene80NormsProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80NormsProducer.(org.apache.lucene.index.SegmentReadState, java.lang.String, java.lang.String, java.lang.String, java.lang.String)", "offset": 27}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8UqGTNx_lSKM0JhywBi_yQAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "RestSearchAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction.lambda$prepareRequest$2(org.elasticsearch.client.node.NodeClient, org.elasticsearch.rest.RestRequest, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.rest.RestChannel)", "offset": 1}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "udTo70AymJSY5V7NrMKeuQAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "void java.util.TreeMap.addEntry(java.lang.Object, java.lang.Object, java.util.TreeMap$Entry, boolean)", "offset": 5}, "line": {"number": 770}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eSDVI8fOAZv0e5U1CWeTYAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader$BlockState.doReset(int)"}, "line": {"number": 409}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Brvx5pqqFaBnVfPIEkqCGAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct.access$2100(org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct, java.util.Map)"}, "line": {"number": 496}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nPcpIVOjAbk4oUD0VpGGhQAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "LifecyclePolicyUtils.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecyclePolicy org.elasticsearch.xpack.core.ilm.LifecyclePolicyUtils.loadPolicy(java.lang.String, java.lang.String, org.elasticsearch.common.xcontent.NamedXContentRegistry)", "offset": 5}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "88w1fh0F81IStbAbdJdsKwAAAAAAAAB0"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.snapshotFile(org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshot$FileInfo, org.elasticsearch.repositories.IndexId, org.elasticsearch.index.shard.ShardId, org.elasticsearch.snapshots.SnapshotId, org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.elasticsearch.index.store.Store)", "offset": 31}, "line": {"number": 3357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gEM872jKqCuxRPvZH3-WoQAAAAAAAABI"}} +{"Stackframe": {"file": {"name": "SSLCipher.java"}, "function": {"name": "int sun.security.ssl.SSLCipher$T12GcmWriteCipherGenerator$GcmWriteCipher.encrypt(byte, java.nio.ByteBuffer)", "offset": 9}, "line": {"number": 1749}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5AlGpMeJ43kub-4_w-C8rgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "ChannelActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.ChannelActionListener.onResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ELZFv7-_1yfN7X3zTjyYpQAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.elasticsearch.core.internal.io.IOUtils.deleteFilesIgnoringExceptions(java.util.Collection)", "offset": 4}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KajmK1kGGiUK0_xnKycBYwAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6892+0x0000000801db0a98.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nY6Bz6koyx0B67n9HdjFUAAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.netty.channel.ChannelPromise)", "offset": 7}, "line": {"number": 816}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "93KKtPDSfPMvEhxj9OzJ1gAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "void sun.nio.ch.FileChannelImpl$Closer.run()"}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QdTHQesbASt6Y5f1ZiVhFQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Util.java"}, "function": {"name": "java.util.Iterator sun.nio.ch.Util$2.iterator()"}, "line": {"number": 352}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yq8wpNNFEnCqJHCKFRmAPQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.util.List java.nio.file.Files.readAllLines(java.nio.file.Path)"}, "line": {"number": 3436}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "akq4mF0mmQueFMEUlSNLxwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ResourceLeakDetector.java"}, "function": {"name": "io.netty.util.ResourceLeakTracker io.netty.util.ResourceLeakDetector.track(java.lang.Object)"}, "line": {"number": 246}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXoU"}} +{"Stackframe": {"function": {"name": "alloc_file_pseudo"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OzFeuLNSMVWvCPrgnxwbuAAAAAAAAAFW"}} +{"Stackframe": {"file": {"name": "ExpandSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.ExpandSearchPhase.run()", "offset": 49}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACslz"}} +{"Stackframe": {"function": {"name": "do_send_sig_info"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k-5h8x6ooEsPmPGI81luowAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "DataTier.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.core.DataTier.getPreferredTiersConfiguration(java.lang.String)", "offset": 4}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cbkwHPYF70VsNmLVqI_lxwAAAAAAAAAv"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation$2.onResponse(org.elasticsearch.action.support.replication.ReplicationOperation$ReplicaResponse)", "offset": 1}, "line": {"number": 226}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JmyP7PdfC2skKKShHbUYvwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "void org.elasticsearch.index.store.ByteSizeCachingDirectory$2.writeByte(byte)"}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Kn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "void org.apache.lucene.search.ReferenceManager.doMaybeRefresh()", "offset": 6}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eMmj7SEH4d43NfOGc4LF7AAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.resolveAuthorizationInfo(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACfOH"}} +{"Stackframe": {"function": {"name": "__x64_sys_exit_group"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-ohc9ArPlivHYzVPr7FWAwAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "RestRequest.java"}, "function": {"name": "java.util.Map org.elasticsearch.rest.RestRequest.params(java.lang.String)", "offset": 4}, "line": {"number": 191}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMS9a"}} +{"Stackframe": {"function": {"name": "__dentry_path"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrkG"}} +{"Stackframe": {"function": {"name": "htab_map_get_next_key"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XVNBFCfyJTMghKxL6eldLgAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$6383+0x0000000801c84f90.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0WHxvAaEQdTf5grBjCUuBgAAAAAAAABS"}} +{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "java.lang.Object com.carrotsearch.hppc.ObjectObjectHashMap.get(java.lang.Object)", "offset": 12}, "line": {"number": 389}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_SVMTPuh4odvZuz9v2YN4gAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5627+0x0000000801b2b198.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3tEO5jfS8bPOQLKbFrM9TgAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotsService.lambda$finalizeSnapshotEntry$34(org.elasticsearch.cluster.SnapshotsInProgress$Entry, java.util.List, org.elasticsearch.snapshots.Snapshot, java.lang.String, org.elasticsearch.repositories.ShardGenerations, java.util.ArrayList, org.elasticsearch.repositories.Repository, org.elasticsearch.repositories.RepositoryData, java.lang.String, org.elasticsearch.cluster.metadata.Metadata)"}, "line": {"number": 1950}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XnjBlJcnxcvhBZn6AsXK5AAAAAAAAACs"}} +{"Stackframe": {"file": {"name": "TimeseriesLifecycleType.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.TimeseriesLifecycleType.getOrderedPhases(java.util.Map)", "offset": 13}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eX9iAJM3toZWX3uGKIS4WwAAAAAAAAJa"}} +{"Stackframe": {"file": {"name": "RoutingNodes.java"}, "function": {"name": "void org.elasticsearch.cluster.routing.RoutingNodes.(org.elasticsearch.cluster.ClusterState, boolean)", "offset": 78}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vj65UPjKKxZemqlJuUY4oQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "void org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.Boolean, java.lang.Integer, java.lang.String, java.lang.String, java.lang.Long, java.lang.Long, java.lang.Long, java.lang.Long, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, org.elasticsearch.xpack.core.ilm.LifecycleExecutionState$1)"}, "line": {"number": 25}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SEJ4L9rNkUfC0VWzNbUViwAAAAAAAABI"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "java.lang.Object com.amazonaws.services.s3.AmazonS3Client.uploadObject(java.io.InputStream, java.io.File, com.amazonaws.services.s3.model.ObjectMetadata, com.amazonaws.event.ProgressListener, com.amazonaws.Request, com.amazonaws.services.s3.model.S3DataSource, boolean, boolean, com.amazonaws.services.s3.internal.UploadObjectStrategy, boolean)", "offset": 19}, "line": {"number": 1808}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Q30RZfWFP56RmjbSYkP0SwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "PoolArena.java"}, "function": {"name": "io.netty.buffer.PoolChunk io.netty.buffer.PoolArena$DirectArena.newChunk(int, int, int, int)", "offset": 2}, "line": {"number": 740}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "r2p-9d0QpDfcdk32QsPfVQAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.read(byte[], int, int)", "offset": 11}, "line": {"number": 350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "waGuiCnZHjaq2zEddS0PTAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "LowerCaseFilter.java"}, "function": {"name": "boolean org.apache.lucene.analysis.LowerCaseFilter.incrementToken()"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6LUTkRV9uS8zSBd0cY3xRAAAAAAAAAFv"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.messageReceived(org.elasticsearch.common.bytes.BytesReference, org.elasticsearch.transport.TcpChannel)", "offset": 38}, "line": {"number": 1110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN6L_"}} +{"Stackframe": {"function": {"name": "kernfs_sop_show_path"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApz47"}} +{"Stackframe": {"function": {"name": "down_read"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BLMUDhisoSsAbWA78zGk0QAAAAAAAAB-"}} +{"Stackframe": {"file": {"name": "SortedSetDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedSetDocValuesWriter.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.DocValuesConsumer)", "offset": 15}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XWlznauAikAesf850f8rJgAAAAAAAADP"}} +{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "long org.apache.lucene.util.bkd.BKDWriter.merge(org.apache.lucene.store.IndexOutput, java.util.List, java.util.List)", "offset": 32}, "line": {"number": 558}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEH-"}} +{"Stackframe": {"function": {"name": "do_syscall_64"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x7TDQwwLG-Lx987UVQ_9uwAAAAAAAABz"}} +{"Stackframe": {"file": {"name": "DigestBase.java"}, "function": {"name": "void sun.security.provider.DigestBase.engineUpdate(byte[], int, int)", "offset": 17}, "line": {"number": 123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qQLoAUeVsmFsa4Dsof41dAAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 3}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Xsky9cTDpKcm_kOUJgRO_wAAAAAAAAE7"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.handleIncomingPublishRequest(org.elasticsearch.transport.BytesTransportRequest)", "offset": 38}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wKREEYJF8V2B2guAeJRSCwAAAAAAAACo"}} +{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService.snapshot(org.elasticsearch.index.shard.ShardId, org.elasticsearch.snapshots.Snapshot, org.elasticsearch.repositories.IndexId, java.util.Map, org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.elasticsearch.Version, org.elasticsearch.action.ActionListener)", "offset": 19}, "line": {"number": 359}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "neOkLg7Birx-EWGBuoP5rgAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.incomingRequest(org.elasticsearch.http.HttpRequest, org.elasticsearch.http.HttpChannel)", "offset": 3}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QTjf5Ta2BqWKmmdF_ECRlgAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "Queries.java"}, "function": {"name": "org.apache.lucene.search.Query org.elasticsearch.common.lucene.search.Queries.newNonNestedFilter()", "offset": 3}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xtOO4kKnZGFcF5CzFT3P5wAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "SearchResponseSections.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.action.search.SearchResponseSections.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)"}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yGmqavuo_87Zcq8eO-zFJQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.util.stream.Stream java.util.Collections$UnmodifiableCollection.stream()"}, "line": {"number": 1094}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hi5_JyewpBCnAeIUIUefnQAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "StandardTokenizer.java"}, "function": {"name": "boolean org.apache.lucene.analysis.standard.StandardTokenizer.incrementToken()", "offset": 4}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4qZNxkVZi02_G1WdmsL0xwAAAAAAAABm"}} +{"Stackframe": {"file": {"name": "ByteQuadsCanonicalizer.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.findName(int[], int)", "offset": 18}, "line": {"number": 582}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjONN"}} +{"Stackframe": {"function": {"name": "__netif_receive_skb_list_core"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0uQfhygt3iA5h-6EqK0MPAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "SocketDispatcher.java"}, "function": {"name": "int sun.nio.ch.SocketDispatcher.read(java.io.FileDescriptor, long, int)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EVqCqcMqZlQ0w1_HMPbgrgAAAAAAAABN"}} +{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendResponse(org.elasticsearch.Version, java.util.Set, org.elasticsearch.transport.TcpChannel, long, java.lang.String, org.elasticsearch.transport.TransportResponse, boolean, boolean)", "offset": 10}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter$IndexWriterMergeSource.merge(org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 1}, "line": {"number": 5922}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ndx1OiBmHCbTOxIkK1dupgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "RetentionLeaseBackgroundSyncAction.java"}, "function": {"name": "void org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction.sendRetentionLeaseSyncAction(org.elasticsearch.index.shard.ShardId, java.lang.String, long, org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction$Request)"}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "K4q5bjj7FsLI8bLo_hB_IAAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$RunBeforeActionListener.onResponse(java.lang.Object)", "offset": 5}, "line": {"number": 389}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H7vWo6EmFvCNotlmk2j9zgAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "Method.java"}, "function": {"name": "java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[])", "offset": 10}, "line": {"number": 566}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WsBETJrPecSrGYvg781P3AAAAAAAAAHL"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.snapshotShard(org.elasticsearch.repositories.SnapshotShardContext)", "offset": 69}, "line": {"number": 2646}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DkUb3XtVJF4DvOzLdzKoEQAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.lambda$handleRequest$0(java.lang.String, org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient, org.elasticsearch.xpack.core.security.authc.support.SecondaryAuthentication)", "offset": 4}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8ZRk8SyYMUcoYIl9aB0UjwAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "SecondaryAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator.authenticate(java.util.function.Consumer, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 94}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9dSiAVf4JMZUU7oBgAZVBwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "BoolQueryBuilder.java"}, "function": {"name": "org.elasticsearch.index.query.QueryBuilder org.elasticsearch.index.query.BoolQueryBuilder.lambda$static$1(org.elasticsearch.common.xcontent.XContentParser, java.lang.Integer)"}, "line": {"number": 283}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "L-qs_NfIroV4qP0e80fCMQAAAAAAAAHT"}} +{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "boolean org.elasticsearch.search.query.QueryPhase.executeInternal(org.elasticsearch.search.internal.SearchContext)", "offset": 95}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Hs84X9WR2gx5bBItVVyJWAAAAAAAAAB4"}} +{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.onResponse(java.lang.Object)", "offset": 13}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "A40VS-0F5gGiCT87AV4zFgAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile$$Lambda$2921.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0RgYbC2fQjxygsXZf0s0DwAAAAAAAABP"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 7}, "line": {"number": 290}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BdKSwoL-cf8qYgQQe-cA-gAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.io.stream.StreamInput.readString()", "offset": 8}, "line": {"number": 382}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KRCS3oa0phXRyOSzHy3iAAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "long org.elasticsearch.index.shard.IndexShard.getLastSyncedGlobalCheckpoint()"}, "line": {"number": 2795}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AXdRYMIFcqxnuCjwvnMiwAAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "LifecyclePolicy.java"}, "function": {"name": "void org.elasticsearch.xpack.core.ilm.LifecyclePolicy.validate()"}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w64jvzcoyqey7vlsJR66HAAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "TokenService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.TokenService.getAndValidateToken(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 300}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QIgnFhV-k7x98pPix58j8wAAAAAAAACi"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction$AsyncSingleAction.doStart(org.elasticsearch.cluster.ClusterState)", "offset": 42}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TBsi_uo6Ja6CX6zuoV3IjgAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "CopyOnWriteHashMap.java"}, "function": {"name": "org.elasticsearch.common.collect.CopyOnWriteHashMap$InnerNode org.elasticsearch.common.collect.CopyOnWriteHashMap$InnerNode.putExisting(java.lang.Object, int, int, int, java.lang.Object, org.apache.lucene.util.mutable.MutableValueInt)", "offset": 7}, "line": {"number": 351}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hDeNHR-uaDqXexxBeqdlYwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "long org.elasticsearch.index.store.ByteSizeCachingDirectory.access$200(org.apache.lucene.store.Directory)"}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_pb_V8KDz_2bUtibVIhXagAAAAAAAAD0"}} +{"Stackframe": {"file": {"name": "ObjectName.java"}, "function": {"name": "void javax.management.ObjectName.setCanonicalName(char[], char[], java.lang.String[], java.util.Map, int, int)", "offset": 44}, "line": {"number": 836}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_qkVJm0NxTF9ak3kQe9veQAAAAAAAACG"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.netty.channel.ChannelPromise)", "offset": 24}, "line": {"number": 796}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8VQNjJHt4dBRU5VSN3KkiQAAAAAAAAEK"}} +{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "void org.apache.lucene.index.SegmentReader.(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.SegmentReader, org.apache.lucene.util.Bits, org.apache.lucene.util.Bits, int, boolean)", "offset": 22}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "St7lFjY3zfwOi_rfHJtWoQAAAAAAAABp"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Object, java.util.Set)", "offset": 16}, "line": {"number": 1091}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Od_tdbuxKdAsGp-YQDSdLAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "AbstractQueryBuilder.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.query.AbstractQueryBuilder.rewrite(org.elasticsearch.index.query.QueryRewriteContext)"}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nuqNPzkuzBZWgJDmOY2XwAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory.fsync(java.lang.String)"}, "line": {"number": 303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Fg2KiEq3-QS_hoWS2OekUAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "TemplateUtils.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.core.template.TemplateUtils.load(java.lang.String)"}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1c3wwLudj91FOPJ_fc9mPQAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "SortedSetDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedSetDocValuesWriter$BufferedSortedSetDocValues.(int[], int[], org.apache.lucene.util.BytesRefHash, org.apache.lucene.util.packed.PackedLongValues, org.apache.lucene.util.packed.PackedLongValues, int, org.apache.lucene.search.DocIdSetIterator)", "offset": 14}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4tQB4iVnNlUP_drXIryOCAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ManagementFactory.java"}, "function": {"name": "java.util.List java.lang.management.ManagementFactory.getMemoryPoolMXBeans()"}, "line": {"number": 402}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZlAa-8GOzk2cNYWa7bT2wQAAAAAAAAEZ"}} +{"Stackframe": {"file": {"name": "DefaultRestChannel.java"}, "function": {"name": "void org.elasticsearch.http.DefaultRestChannel.sendResponse(org.elasticsearch.rest.RestResponse)", "offset": 49}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F5qoecjRJHP5R2VRMq1xIQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "org.elasticsearch.common.collect.ImmutableOpenMap org.elasticsearch.common.io.stream.StreamInput.readImmutableMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader)", "offset": 6}, "line": {"number": 708}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "teC1KbM9JBDFzx4EHTXvUwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "Integer.java"}, "function": {"name": "int java.lang.Integer.parseInt(java.lang.String)"}, "line": {"number": 784}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "c8yUmV9G-B-SCoegb2pWEQAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "PackedLongValues.java"}, "function": {"name": "void org.apache.lucene.util.packed.PackedLongValues$Builder.finish()", "offset": 4}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mVBN-6O2zeIv8GsCRrlSswAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter$1.lambda$deleteUnusedFiles$0(java.util.Collection, org.apache.lucene.index.IndexWriter)"}, "line": {"number": 436}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ImGvHBpzgeZWAcXSV5I00AAAAAAAAACM"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.index.IndexService org.elasticsearch.indices.IndicesService.createIndex(org.elasticsearch.cluster.metadata.IndexMetaData, java.util.List)", "offset": 17}, "line": {"number": 413}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_8CkmXN7rMP1z1mWZ4cysQAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "SSLEngineInputRecord.java"}, "function": {"name": "sun.security.ssl.Plaintext[] sun.security.ssl.SSLEngineInputRecord.decode(java.nio.ByteBuffer[], int, int)", "offset": 3}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ75B"}} +{"Stackframe": {"function": {"name": "__do_sys_madvise"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w7HSilaT6ScQ9DqRu4RYLQAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.value(java.lang.Iterable)", "offset": 14}, "line": {"number": 902}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XTzyt_7oaEFXC9VgfSHzxQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Regex.java"}, "function": {"name": "boolean org.elasticsearch.common.regex.Regex.simpleMatch(java.lang.String, java.lang.String)"}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-s3_zUsOzzNu4k-nEJzJkAAAAAAAAAEj"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService.runTasks(org.elasticsearch.cluster.ClusterStateTaskExecutor, java.util.List, org.elasticsearch.cluster.service.BatchSummary)", "offset": 38}, "line": {"number": 298}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N9PMe4dCPllLdnaTDHMAZgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "MapBuilder.java"}, "function": {"name": "org.elasticsearch.common.collect.MapBuilder org.elasticsearch.common.collect.MapBuilder.putAll(java.util.Map)"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hpS1QtdrBQjGg-LCbfqeSAAAAAAAAFjZ"}} +{"Stackframe": {"function": {"name": "br_pass_frame_up"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C5SckzYBj7bxYLqCrzqtmwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authc.support.BCrypt.checkpw(org.elasticsearch.common.settings.SecureString, java.lang.String)"}, "line": {"number": 789}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eOXjDtmISDDtSL4dEzZt-wAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.bytes.BytesReference, boolean)"}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z7yF4xFIRpq25tmzB5TjNgAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$6059+0x0000000801c34eb0.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xuNxfKOUTzUB_wbH4TLt0wAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "void org.elasticsearch.search.fetch.FetchPhase.execute(org.elasticsearch.search.internal.SearchContext)", "offset": 18}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsK"}} +{"Stackframe": {"function": {"name": "__vfs_write"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2RFqiy_TIF9Ivmg849R6KQAAAAAAAABp"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.processDocument(int, java.lang.Iterable)", "offset": 24}, "line": {"number": 499}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0IgBJXkhHjjN4lbBooaULQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ObjectMapper.java"}, "function": {"name": "org.elasticsearch.index.mapper.Mapper org.elasticsearch.index.mapper.ObjectMapper$Builder.build(org.elasticsearch.index.mapper.Mapper$BuilderContext)"}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S"}} +{"Stackframe": {"function": {"name": "schedule"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "O3oKk3BCpEPlmMiRGXV40wAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "OutputStream.java"}, "function": {"name": "void java.io.OutputStream.write(byte[])"}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u1A1mq4_NM3j2_15WwdIbwAAAAAAAACH"}} +{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.run()", "offset": 6}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "addzwDQ6pDMdsj-b9ffhFgAAAAAAAADK"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "void sun.nio.fs.UnixFileSystemProvider.checkAccess(java.nio.file.Path, java.nio.file.AccessMode[])", "offset": 37}, "line": {"number": 306}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C0WKYZJsdZy_HtDNc5i0jAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Hasher.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authc.support.Hasher$1.verify(org.elasticsearch.common.settings.SecureString, char[])"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HTY1Ogm7PbqFs5I836YiPAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$10759+0x0000000802987ac8.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Gg8yWTMBWgWQ1-9YJzEFhAAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "java.lang.Object[] java.util.ArrayList.grow(int)", "offset": 5}, "line": {"number": 237}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ygiinZb-VL-5X6K63nWolQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor$Worker.run()"}, "line": {"number": 628}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RokQB_28ixgK1PZ3da_sAgAAAAAAAABo"}} +{"Stackframe": {"file": {"name": "TermContext.java"}, "function": {"name": "org.apache.lucene.index.TermContext org.apache.lucene.index.TermContext.build(org.apache.lucene.index.IndexReaderContext, org.apache.lucene.index.Term)", "offset": 10}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xGM1BGYapiiJfmZA3cUi3QAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.decode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 4}, "line": {"number": 1285}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3oR3jcJ5b9zgoO0Wjaw3AQAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "DeflaterOutputStream.java"}, "function": {"name": "void java.util.zip.DeflaterOutputStream.flush()", "offset": 2}, "line": {"number": 283}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wjoN_o9EY3gERyhEEbPRJAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$7.doRun()"}, "line": {"number": 654}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CRQRzguK_v5o3bXGHtMLfwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "java.lang.Object java.util.Arrays$ArrayItr.next()"}, "line": {"number": 4243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pM4H5PkiAZh48znXOMyymwAAAAAAAAL5"}} +{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction$BulkOperation.doRun()", "offset": 89}, "line": {"number": 628}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k_ABxmqh7g9WH83U7CzhyQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.ObjectParser.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object, java.lang.Object)", "offset": 3}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALtxs"}} +{"Stackframe": {"function": {"name": "ksys_getdents64"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ClientConnectionSettings.scala"}, "function": {"name": "akka.http.scaladsl.settings.ClientConnectionSettings akka.http.scaladsl.settings.ClientConnectionSettings$.apply(com.typesafe.config.Config)"}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LVimiel0B4F-AHEis4ToAgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6229+0x0000000801cda8e0.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GOPzq0h4Pslwnjs2CP5J9gAAAAAAAACD"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct.putResponseHeaders(java.util.Map)", "offset": 10}, "line": {"number": 565}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nYdOHRNiMitOfqxT9gnkcAAAAAAAAABC"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.slowParseName()", "offset": 9}, "line": {"number": 1892}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uti5O7mRcEkooxDaymMu0wAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun()", "offset": 7}, "line": {"number": 958}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "TransportShardRefreshAction.java"}, "function": {"name": "org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryResult org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction.lambda$shardOperationOnPrimary$0(org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.support.replication.BasicReplicationRequest)"}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vJ9aY3SiI_VOViscMoUSuwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.CopyBytesSocketChannel.readFromSocketChannel(java.nio.channels.SocketChannel, java.nio.ByteBuffer)"}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3ir-1yKStl3nukZF4xyXAQAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$4(java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.support.ActionFilterChain, org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 3}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ABipyEawAgbPQx-X36vFuQAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "SocketChannelImpl.java"}, "function": {"name": "int sun.nio.ch.SocketChannelImpl.write(java.nio.ByteBuffer)", "offset": 8}, "line": {"number": 532}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ7gC"}} +{"Stackframe": {"function": {"name": "madvise_free_single_vma"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "34fB7qb3OTOSVWKcGDOtPgAAAAAAAABl"}} +{"Stackframe": {"file": {"name": "DirectByteBuffer.java"}, "function": {"name": "java.nio.ByteBuffer java.nio.DirectByteBuffer.get(byte[], int, int)", "offset": 16}, "line": {"number": 280}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kUz6eVxQfuG1Ni1zQ_7TuAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "PriorityQueue.java"}, "function": {"name": "java.lang.Object org.apache.lucene.util.PriorityQueue.updateTop()"}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9iGiBo6WupT2In4pnTz02gAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "RetryableAction.java"}, "function": {"name": "void org.elasticsearch.action.support.RetryableAction$1.doRun()", "offset": 3}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oKdk1KWFxihFv8webGVzvwAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Iterable, java.lang.Object, java.util.Set)", "offset": 4}, "line": {"number": 1047}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qsOdwnOfdpGhy1Ny492aAwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "org.elasticsearch.cluster.SnapshotsInProgress$Entry org.elasticsearch.cluster.SnapshotsInProgress.lambda$new$0(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZNIMXBN7NKTXUfXb93okMgAAAAAAAACf"}} +{"Stackframe": {"file": {"name": "AbstractNioByteChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read()", "offset": 30}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OmwXLYgK4mB4VPSorht2jwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "HttpContentEncoder.java"}, "function": {"name": "boolean io.netty.handler.codec.http.HttpContentEncoder.encodeContent(io.netty.handler.codec.http.HttpContent, java.util.List)", "offset": 2}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1fE-A15-sG5pm2Nv6tb9vgAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient.execute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 407}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABR"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readMap(org.elasticsearch.common.xcontent.XContentParser, org.elasticsearch.common.xcontent.support.AbstractXContentParser$MapFactory)", "offset": 8}, "line": {"number": 328}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "adI05FeXl-z73o2NJPxYawAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "RestResponseListener.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestResponseListener.processResponse(java.lang.Object)"}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMB-t"}} +{"Stackframe": {"function": {"name": "seq_escape"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XL_fwLkYkxkYcfgosK-fdQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.s3.S3BlobContainer$$Lambda$8686+0x0000000802083178.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wJxZZ5hW2VCSspNBDWGffQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AbstractJavaResourceMethodDispatcher.java"}, "function": {"name": "javax.ws.rs.core.Response org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher.dispatch(java.lang.Object, org.glassfish.jersey.server.ContainerRequest)", "offset": 2}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eUEknoTlPZT0JPs_cYSwTwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "int org.elasticsearch.search.fetch.FetchPhase.findRootDocumentIfNested(org.elasticsearch.search.internal.SearchContext, org.apache.lucene.index.LeafReaderContext, int)", "offset": 1}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fpCTa2Wfr3Ii1CHPbLs62AAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController$ResourceHandlingHttpChannel.sendResponse(org.elasticsearch.rest.RestResponse)", "offset": 1}, "line": {"number": 521}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KWsyRlbmkWc0VsXrJ16gBQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "void java.lang.String.(byte[], java.lang.String)"}, "line": {"number": 491}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kq0yLDykiP_zZwIifyjGPAAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "IndexWarmer.java"}, "function": {"name": "void org.elasticsearch.index.IndexWarmer$FieldDataWarmer.lambda$warmReader$1(org.elasticsearch.index.fielddata.IndexFieldDataService, org.elasticsearch.index.mapper.MappedFieldType, org.elasticsearch.index.engine.Engine$Searcher, org.elasticsearch.index.shard.IndexShard, java.util.concurrent.CountDownLatch)", "offset": 3}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NWHLfNvctW-FBwe-kXor2AAAAAAAAAD7"}} +{"Stackframe": {"file": {"name": "Field.java"}, "function": {"name": "org.apache.lucene.analysis.TokenStream org.apache.lucene.document.Field.tokenStream(org.apache.lucene.analysis.Analyzer, org.apache.lucene.analysis.TokenStream)", "offset": 47}, "line": {"number": 560}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SVbN9lR22448Ba__VWnVkQAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "SourceLookup.java"}, "function": {"name": "java.util.Map org.elasticsearch.search.lookup.SourceLookup.source()", "offset": 4}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oR6ICTVNNCMS_uU8l3S0qQAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "ShardGetService.java"}, "function": {"name": "org.elasticsearch.index.get.GetResult org.elasticsearch.index.get.ShardGetService.get(java.lang.String, java.lang.String[], boolean, long, org.elasticsearch.index.VersionType, long, long, org.elasticsearch.search.fetch.subphase.FetchSourceContext, boolean)", "offset": 3}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vvfzMfPudZT7dL091tNenwAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "RestSearchAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction.parseSearchRequest(org.elasticsearch.action.search.SearchRequest, org.elasticsearch.rest.RestRequest, org.elasticsearch.common.xcontent.XContentParser, org.elasticsearch.common.io.stream.NamedWriteableRegistry, java.util.function.IntConsumer)", "offset": 5}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pE_XF-eq0tBl0fP7Y7zrSwAAAAAAAADY"}} +{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.xfer(java.lang.Object, boolean, int, long)", "offset": 21}, "line": {"number": 684}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KcjVoO3dzCmC3PrWs_ohHgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(java.lang.String, org.elasticsearch.transport.TransportMessage, org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.action.ActionListener)"}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wKREEYJF8V2B2guAeJRSCwAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService.snapshot(org.elasticsearch.index.shard.ShardId, org.elasticsearch.snapshots.Snapshot, org.elasticsearch.repositories.IndexId, java.util.Map, org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.elasticsearch.Version, org.elasticsearch.action.ActionListener)", "offset": 18}, "line": {"number": 358}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "inLD7FTDiZ9QX8bC0I9L_QAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "HttpRequestExecutor.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext)", "offset": 8}, "line": {"number": 273}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "stWZFEwn_P2axA2CCLL2dAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "BulkScorer.java"}, "function": {"name": "void org.apache.lucene.search.BulkScorer.score(org.apache.lucene.search.LeafCollector, org.apache.lucene.util.Bits)"}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "V3VF8-btHHz_lRbyNYn4HAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.implDelete(java.nio.file.Path, boolean)", "offset": 1}, "line": {"number": 222}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-jIdg0mLkcZxesIDlQ1-KwAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.stringStringMap(java.lang.String, java.util.Map)", "offset": 6}, "line": {"number": 1057}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Gf_lEMENHnxizeBtMQocRwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "FileDispatcherImpl.java"}, "function": {"name": "long sun.nio.ch.FileDispatcherImpl.size(java.io.FileDescriptor)"}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l6qjEZsxpyV10ZQK3YpvIwAAAAAAAACN"}} +{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.CommonStats.(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 8}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.internal.node.NodeClient)", "offset": 16}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qeBE7mdKgcIgzAsX_goa7wAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "PackedLongValues.java"}, "function": {"name": "long org.apache.lucene.util.packed.PackedLongValues.get(int, int)"}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AtdYY3_ZD2MDB5gcLHvc5AAAAAAAAABk"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeGenericValue(java.lang.Object)", "offset": 20}, "line": {"number": 653}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Kb-BUhTmEy25n_HMPR0FvwAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "ClassLoader.java"}, "function": {"name": "java.net.URL java.lang.ClassLoader.getResource(java.lang.String)", "offset": 8}, "line": {"number": 1404}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Fue__87qnEgFZQsrLFNQ3wAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "MultiDocValues.java"}, "function": {"name": "org.apache.lucene.index.MultiDocValues$OrdinalMap org.apache.lucene.index.MultiDocValues$OrdinalMap.build(java.lang.Object, org.apache.lucene.index.SortedSetDocValues[], float)", "offset": 6}, "line": {"number": 490}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WsBETJrPecSrGYvg781P3AAAAAAAAAOb"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.snapshotShard(org.elasticsearch.repositories.SnapshotShardContext)", "offset": 138}, "line": {"number": 2715}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MnYM9B90Ha_6l2oFXip8PgAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "int java.lang.String.hashCode()", "offset": 2}, "line": {"number": 2338}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1Az5XiB-HqkM2KIxBs7pHgAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrapAndFlush(io.netty.channel.ChannelHandlerContext)", "offset": 11}, "line": {"number": 811}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "O1O08mBKiFTCL7FfanfkYAAAAAAAAACw"}} +{"Stackframe": {"file": {"name": "PropertyPermission.java"}, "function": {"name": "boolean java.util.PropertyPermissionCollection.implies(java.security.Permission)", "offset": 43}, "line": {"number": 556}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qmQpaCXwQ_DuGH3g4fme8gAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.doHandleResponse(org.elasticsearch.transport.TransportResponseHandler, java.net.InetSocketAddress, org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.transport.Header, org.elasticsearch.core.Releasable)", "offset": 15}, "line": {"number": 400}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readMap(org.elasticsearch.common.xcontent.XContentParser, org.elasticsearch.common.xcontent.support.AbstractXContentParser$MapFactory)", "offset": 13}, "line": {"number": 333}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DpfPH-P4iHE8WKdUsFaI6AAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)"}, "line": {"number": 529}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rLjBo_k19vor7LkQgiOErwAAAAAAAADQ"}} +{"Stackframe": {"file": {"name": "FreqProxTermsWriter.java"}, "function": {"name": "void org.apache.lucene.index.FreqProxTermsWriter.flush(java.util.Map, org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.NormsProducer)", "offset": 43}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KnKBdeWKnQ8CH5bzvx0i6AAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.writeAuthToContext(org.elasticsearch.xpack.security.authc.Authentication)", "offset": 3}, "line": {"number": 467}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rp7bgp_IDPpzNiZYGVm1vQAAAAAAAABR"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.BufferedUpdatesStream$SegmentState[] org.apache.lucene.index.IndexWriter.openSegmentStates(java.util.List, java.util.Set, long)", "offset": 4}, "line": {"number": 5814}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1oyY5_H1XDxnqxtQutVBSwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.close(java.io.Closeable[])"}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtJB"}} +{"Stackframe": {"function": {"name": "__x64_sys_tgkill"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tLN6FRqCApmsduxj5WK9JwAAAAAAAABk"}} +{"Stackframe": {"file": {"name": "SegmentCoreReaders.java"}, "function": {"name": "void org.apache.lucene.index.SegmentCoreReaders.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.IOContext)", "offset": 49}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dhiUmvfDk2OXbcgaknkEMgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.io.stream.StreamInput.readMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader)"}, "line": {"number": 638}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZPQwbuCECd-hRvtNHzeV5wAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.xcontent.XContent, byte[], int, int, boolean)", "offset": 1}, "line": {"number": 202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8lbOW9-D9FVTLW-mPAz8XgAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleResponse(java.net.InetSocketAddress, org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.transport.TransportResponseHandler)", "offset": 11}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j2qwrZpsRV8fAzY6mxm9VgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.rename0(long, long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FQVEqfdF3Gc5vOLVf8c4EAAAAAAAAAE9"}} +{"Stackframe": {"file": {"name": "Netty4MessageChannelHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler.doFlush(io.netty.channel.ChannelHandlerContext)", "offset": 57}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IRSZAhdGPD6ZKrMqfWCRMwAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "ByteQuadsCanonicalizer.java"}, "function": {"name": "boolean com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._verifyLongName2(int[], int, int)", "offset": 5}, "line": {"number": 753}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3WiD8CvP3HQqqrwn5L6bcAAAAAAAAAHy"}} +{"Stackframe": {"file": {"name": "ReplicationTracker.java"}, "function": {"name": "void org.elasticsearch.index.seqno.ReplicationTracker.updateFromMaster(long, java.util.Set, org.elasticsearch.cluster.routing.IndexShardRoutingTable)", "offset": 47}, "line": {"number": 1198}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AUK9d8NUT-13gC6FtlSmKAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "ConstructingObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.xcontent.ConstructingObjectParser.parse(org.elasticsearch.xcontent.XContentParser, java.lang.Object)"}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rMKxqCJ9f_oijK47ftj5yAAAAAAAAABy"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain$PerField.invert(org.apache.lucene.index.IndexableField, boolean)", "offset": 27}, "line": {"number": 740}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aPSsQ8x5Ub2iNdzhtk5QFAAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "ObjectMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.ObjectMapper.(java.lang.String, java.lang.String, boolean, org.elasticsearch.index.mapper.ObjectMapper$Nested, org.elasticsearch.index.mapper.ObjectMapper$Dynamic, java.lang.Boolean, java.util.Map, org.elasticsearch.common.settings.Settings)", "offset": 2}, "line": {"number": 323}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "isA5sAubGPm1mkHKsussQgAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WXc0Ul2uIu2AvsVIqd0TXQAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "LoggingHandler.java"}, "function": {"name": "void io.netty.handler.logging.LoggingHandler.flush(io.netty.channel.ChannelHandlerContext)", "offset": 3}, "line": {"number": 265}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u2DScCPg-79KHpSdqd651AAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService.publish(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.MasterService$TaskOutputs, long)", "offset": 11}, "line": {"number": 262}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WZQZJR8GL_maEntEY7GcngAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "URL.java"}, "function": {"name": "void java.net.URL.(java.lang.String)"}, "line": {"number": 515}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FxUii1Qg0ODP7PNbShAMtgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.ActionRunnable$$Lambda$7171+0x0000000801ed6e00.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VlVI9xnHYUk-tJyxyXWlYwAAAAAAAACA"}} +{"Stackframe": {"file": {"name": "SearchResponse.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.action.search.SearchResponse.innerToXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 13}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJje"}} +{"Stackframe": {"function": {"name": "__secure_computing"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cXlweJcTpRnUmFxwZ3wPIwAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 21}, "line": {"number": 457}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3dU8SaBBaVcGwyJDZQ1quAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "RealmDomain.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authc.RealmDomain org.elasticsearch.xpack.core.security.authc.RealmDomain.readFrom(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iLCTWRKOWFgxy9lCZCKQuAAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.getText()", "offset": 3}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_mPV7Hp65KUOwvav9b8I9gAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ObjectPoolFactory.java"}, "function": {"name": "java.lang.Object co.elastic.apm.agent.objectpool.ObjectPoolFactory$1.createInstance()"}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "axxtk6GnkoiqRXb69JxcoAAAAAAAAACg"}} +{"Stackframe": {"file": {"name": "IndexShardOperationPermits.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShardOperationPermits.acquire(org.elasticsearch.action.ActionListener, java.lang.String, boolean, java.lang.Object, java.lang.StackTraceElement[])", "offset": 44}, "line": {"number": 275}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bKlVw9gLE4jRKTChgrEglAAAAAAAAADM"}} +{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "int sun.nio.ch.EPollSelectorImpl.doSelect(java.util.function.Consumer, long)", "offset": 32}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Iq0mgP3CUfU3TpmXsgUFKgAAAAAAAACM"}} +{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "int sun.nio.ch.FileChannelImpl.read(java.nio.ByteBuffer)", "offset": 14}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF"}} +{"Stackframe": {"function": {"name": "do_syscall_64"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mvWNLiibNh2jmnrh-j3LtgAAAAAAAABu"}} +{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 20}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACWQP"}} +{"Stackframe": {"function": {"name": "dup_mm"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CVegIjspc9VOluOpQVnKFgAAAAAAAACg"}} +{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.getInternal(long)", "offset": 13}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Gw9H1l67yAnzlh8ZHG_VaQAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.authenticate(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NAyv5_9WaYsdB6UWKJ9U_wAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$8(org.elasticsearch.action.ActionListener, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizedIndices)", "offset": 1}, "line": {"number": 462}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1w2R0Z8nd4XHXpj3W-TC0gAAAAAAAAC8"}} +{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer.executeSingleUpload(org.elasticsearch.repositories.s3.S3BlobStore, java.lang.String, java.io.InputStream, long)", "offset": 18}, "line": {"number": 464}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAToQ_"}} +{"Stackframe": {"function": {"name": "blk_mq_in_flight"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GDhslQHiuyW0iTpWT3GOHwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "Builder.java"}, "function": {"name": "org.apache.lucene.util.fst.FST org.apache.lucene.util.fst.Builder.finish()", "offset": 3}, "line": {"number": 522}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OD88rfBmy4BfCXerLT5e5QAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "long org.apache.lucene.store.FSDirectory.fileLength(java.lang.String)", "offset": 4}, "line": {"number": 242}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NCnW31JAeE6fBCMV8tcmcAAAAAAAAABo"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService.maybeRefreshEngine()", "offset": 11}, "line": {"number": 689}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uUQ4hHxS5ecL-ZWhFYxmxgAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "CodecUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.CodecUtil.verifyAndCopyIndexHeader(org.apache.lucene.store.IndexInput, org.apache.lucene.store.DataOutput, byte[])", "offset": 8}, "line": {"number": 284}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zdNMqH5FJokP-kpdb9WNRQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.put(java.lang.Object, java.lang.Object)"}, "line": {"number": 610}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALUbi"}} +{"Stackframe": {"function": {"name": "rw_verify_area"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qM8yXDH25TuvyXbygEZfxAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "boolean java.nio.file.Files.exists(java.nio.file.Path, java.nio.file.LinkOption[])", "offset": 1}, "line": {"number": 2385}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PemEHqTP_7PVbNCzQt-XlAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "CodecUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.CodecUtil.writeFooter(org.apache.lucene.store.IndexOutput)", "offset": 2}, "line": {"number": 393}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-dCLwO5wySWo4Ufen5TsOAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(java.lang.String, org.elasticsearch.transport.TransportMessage, org.elasticsearch.xpack.security.user.User, org.elasticsearch.Version, org.elasticsearch.action.ActionListener)"}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXbg"}} +{"Stackframe": {"function": {"name": "__alloc_file"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sF5y1rzkGcF6wVyaguE8oQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "IndexTemplateRegistry.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecyclePolicy org.elasticsearch.xpack.core.template.IndexTemplateRegistry.lambda$addIndexLifecyclePoliciesIfMissing$8(org.elasticsearch.xpack.core.template.LifecyclePolicyConfig)"}, "line": {"number": 490}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5aCosL5sFCAbDkRqY-Vk6QAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "BHttpConnectionBase.java"}, "function": {"name": "org.apache.http.HttpEntity org.apache.http.impl.BHttpConnectionBase.prepareInput(org.apache.http.HttpMessage)", "offset": 2}, "line": {"number": 220}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_KMmEq2paFXK4Jyp952ENwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "ConstructingObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ConstructingObjectParser.lambda$declareNamedObjects$6(int, org.elasticsearch.common.xcontent.ConstructingObjectParser$Target, java.util.List)"}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0zuUj5fP_pGoDJej-vMgfgAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "ForceMergeAction.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.ForceMergeAction.toSteps(org.elasticsearch.client.Client, java.lang.String, org.elasticsearch.xpack.core.ilm.Step$StepKey)", "offset": 2}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "La1p8Zipnj6REaWhYaT-QAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.refreshIfNeeded(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)"}, "line": {"number": 387}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ1"}} +{"Stackframe": {"function": {"name": "audit_filter_syscall.constprop.19"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pny64bxVlV3tBC1sODqZ9QAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "MonotonicLongValues.java"}, "function": {"name": "void org.apache.lucene.util.packed.MonotonicLongValues$Builder.pack(long[], int, int, float)"}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vgzxNJQ73m4v8Yk4kSwEQQAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "ResourceMethodInvoker.java"}, "function": {"name": "javax.ws.rs.core.Response org.glassfish.jersey.server.model.ResourceMethodInvoker.invoke(org.glassfish.jersey.server.internal.process.RequestProcessingContext, java.lang.Object)", "offset": 32}, "line": {"number": 478}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile$$Lambda$1712.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4ZG6-YGelmJ-HvYGGP11fAAAAAAAAABa"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.writeAuthToContext(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)", "offset": 11}, "line": {"number": 346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FS1bL4hzYgOQRasRTmaMCwAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "PendingReplicationActions.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.PendingReplicationActions.cancelActions(java.util.ArrayList, java.lang.String)"}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter$EventQueue.processEvents()", "offset": 2}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN9Em"}} +{"Stackframe": {"function": {"name": "kernfs_seq_show"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xO_doWsVfTOu6EOTZQnX8AAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "boolean java.util.regex.Pattern$Branch.match(java.util.regex.Matcher, int, java.lang.CharSequence)", "offset": 4}, "line": {"number": 4746}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hoLVpsHuA2zmZMudT3CGEwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "S3RetryingInputStream.java"}, "function": {"name": "int org.elasticsearch.repositories.s3.S3RetryingInputStream.read(byte[], int, int)", "offset": 3}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALmkK"}} +{"Stackframe": {"function": {"name": "path_openat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6IAXoYeI62bQppY-qjqJ0AAAAAAAAAJM"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.executeOneRequest(com.amazonaws.http.AmazonHttpClient$RequestExecutor$ExecOneRequestParams)", "offset": 91}, "line": {"number": 1356}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uV5aLL-du21LatlMUEqFAgAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "ChannelOutboundBuffer.java"}, "function": {"name": "void io.netty.channel.ChannelOutboundBuffer.safeSuccess(io.netty.channel.ChannelPromise)"}, "line": {"number": 703}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P9BGxoNfJ5xFs47cHe23_gAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.util.stream.Node java.util.stream.AbstractPipeline.evaluateToArrayNode(java.util.function.IntFunction)", "offset": 15}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-ZIQjPg8DbinOdRNkQM6lwAAAAAAAACb"}} +{"Stackframe": {"file": {"name": "Cache.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.cache.Cache.computeIfAbsent(java.lang.Object, org.elasticsearch.common.cache.CacheLoader)", "offset": 44}, "line": {"number": 418}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-OuZ_zFnMJsV4zFgjL7inAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "boolean org.elasticsearch.common.settings.Setting.exists(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 437}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre"}} +{"Stackframe": {"function": {"name": "do_futex"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VyubPqZIpIsaGdq5yyQHTAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateListeners(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder)"}, "line": {"number": 559}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 1}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC6oJ"}} +{"Stackframe": {"function": {"name": "worker_thread"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Lh1LDdjDW07X-POqmR5FOgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ConcurrentMergeScheduler.java"}, "function": {"name": "void org.apache.lucene.index.ConcurrentMergeScheduler.doMerge(org.apache.lucene.index.IndexWriter, org.apache.lucene.index.MergePolicy$OneMerge)"}, "line": {"number": 624}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M4kfuweTCRjkzuYcFSqUswAAAAAAAABg"}} +{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.done(boolean)", "offset": 12}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kEwl_sgOS_oHg-LLjsCRbAAAAAAAAAE1"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node[] java.util.HashMap.resize()", "offset": 57}, "line": {"number": 734}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nsN5oeLyhaU3rc_4TQfhXgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.xcontent.ObjectParser$$Lambda$498+0x0000000800ec8850.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wD7qCDk3lqH0hpTFDQk1YQAAAAAAAABg"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readMapEntries(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier, java.util.Map)", "offset": 7}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eufT8zCegZUSBK09BAzk9wAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.doHandleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.internal.node.NodeClient)", "offset": 1}, "line": {"number": 123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAATsSN"}} +{"Stackframe": {"function": {"name": "blk_mq_queue_tag_busy_iter"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zEpSbjOtmfVAT3a6xWND_gAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendChildRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.tasks.Task, org.elasticsearch.transport.TransportResponseHandler)"}, "line": {"number": 547}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wB6SgkpYZuozQWVfdG9HpQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$AuthorizationResultListener.onResponse(java.lang.Object)"}, "line": {"number": 952}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.dispatchedShardOperationOnPrimary(org.elasticsearch.action.support.replication.ReplicatedWriteRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "psq3d9VHFR3Z9OJwAkcAPAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "LeaderChecker.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.LeaderChecker$LeaderCheckRequest.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 427}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h2McnzqwfbL5yBZRK65EugAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline$3$1.accept(java.lang.Object)"}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZkPmPV7VCVD8EkLP0Gy3BwAAAAAAAAT9"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.snapshotShard(org.elasticsearch.repositories.SnapshotShardContext)", "offset": 266}, "line": {"number": 2907}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHR"}} +{"Stackframe": {"function": {"name": "do_syscall_64"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZcW1B2vnJcG_EoD488XjJQAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$$Lambda$4631+0x00000008018e7558.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D8SuOAHHuRsEe9MWrwApVgAAAAAAAABU"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.messageReceived(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage, long)", "offset": 10}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7eP3POMzJHenXrvglsJksAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "SSLSocketInputRecord.java"}, "function": {"name": "int sun.security.ssl.SSLSocketInputRecord.bytesInCompletePacket()"}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAATxBS"}} +{"Stackframe": {"function": {"name": "diskstats_show"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6lY285-SV83-nAIgYbFimwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction.access$500(org.elasticsearch.action.support.master.TransportMasterNodeAction, org.elasticsearch.tasks.Task, org.elasticsearch.action.support.master.MasterNodeRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XDgohratZUQwpKekym6X1AAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$7533+0x0000000801f3bc08.get()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QS_lAdb7VsN_QJ5pyFRlHgAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "Mac.java"}, "function": {"name": "byte[] javax.crypto.Mac.doFinal()", "offset": 4}, "line": {"number": 580}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T_HZPc4nEhQTTwxclKtUYQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "SimpleChannelInboundHandler.java"}, "function": {"name": "void io.netty.channel.SimpleChannelInboundHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 5}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zeGr_IH7JnnAgNEsYk5-cAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Version.java"}, "function": {"name": "org.elasticsearch.Version org.elasticsearch.Version.indexCreated(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FedFnYQW8bHf16nVrC3eNgAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 6}, "line": {"number": 274}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4io8TQpKnhHcoJs_H_nFpQAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "ExponentionallyIncreasingSleepingWaitStrategy.java"}, "function": {"name": "int co.elastic.apm.agent.report.disruptor.ExponentionallyIncreasingSleepingWaitStrategy.applyWaitMethod(com.lmax.disruptor.SequenceBarrier, int)", "offset": 6}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtH1"}} +{"Stackframe": {"function": {"name": "do_tkill"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "So3FGd7WJjIO_5ktfF2gpQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "OutputStreamIndexOutput.java"}, "function": {"name": "void org.apache.lucene.store.OutputStreamIndexOutput.writeByte(byte)"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BemXd-G6RDOwTOuPV3xpUwAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "AbstractByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.AbstractByteBufAllocator.heapBuffer(int, int)", "offset": 4}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PE7_q3aweA58rtlG2V2VoAAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "AbstractByteBuf.java"}, "function": {"name": "int io.netty.buffer.AbstractByteBuf.forEachByte(io.netty.util.ByteProcessor)", "offset": 2}, "line": {"number": 1316}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XSIOV1ohkclYqqYakcDyYQAAAAAAAABp"}} +{"Stackframe": {"file": {"name": "ShardGetService.java"}, "function": {"name": "org.elasticsearch.index.get.GetResult org.elasticsearch.index.get.ShardGetService.innerGet(java.lang.String, java.lang.String[], boolean, long, org.elasticsearch.index.VersionType, long, long, org.elasticsearch.search.fetch.subphase.FetchSourceContext, boolean)", "offset": 13}, "line": {"number": 215}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_Yekd6tTRtuWqAD-aKIdBQAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObject(org.elasticsearch.index.mapper.ParseContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, java.lang.String[])", "offset": 4}, "line": {"number": 578}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oUhUjXiuWVHPsx8RwRzwzQAAAAAAAABI"}} +{"Stackframe": {"file": {"name": "SSLCipher.java"}, "function": {"name": "int sun.security.ssl.SSLCipher$T12GcmWriteCipherGenerator$GcmWriteCipher.encrypt(byte, java.nio.ByteBuffer)", "offset": 9}, "line": {"number": 1786}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9iEsaZI76W1WejkwhmTFwQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "org.elasticsearch.cluster.DiffableUtils$MapDiff org.elasticsearch.cluster.DiffableUtils.readImmutableOpenMapDiff(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)"}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PhHweSUk-rcHLCvi4mySwgAAAAAAAAEf"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.tryAllHandlers(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 40}, "line": {"number": 352}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R-HVaw3JZ2IsajBZdLbC8gAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.finishAuthentication(org.elasticsearch.xpack.security.user.User)", "offset": 6}, "line": {"number": 455}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XFsyX0Vq94TuMs7Bc44FAwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$1.onResponse(java.lang.Object)"}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rT6Wpj_D6biwR0z1hrGxmwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "void java.util.ArrayList.add(java.lang.Object, java.lang.Object[], int)", "offset": 2}, "line": {"number": 455}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OhwRwPlI-WXSbymgmwmRggAAAAAAAAB6"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.executeQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchTask)", "offset": 21}, "line": {"number": 278}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "g4gMugAmfKAgFkmzrjjQZwAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "AuthorizationUtils.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationUtils$AsyncAuthorizer.authorize(org.elasticsearch.xpack.security.authz.AuthorizationService)", "offset": 9}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lnJKMmht2WAdGkeK5DkNVQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "HttpContentEncoder.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpContentEncoder.encode(io.netty.channel.ChannelHandlerContext, java.lang.Object, java.util.List)"}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m-C5-w8EcuN6p-eKsCUxUQAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "UnassignedInfo.java"}, "function": {"name": "long org.elasticsearch.cluster.routing.UnassignedInfo.findNextDelayedAllocation(long, org.elasticsearch.cluster.ClusterState)", "offset": 3}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "02Y8Ail7HWaHase9K4My8wAAAAAAAABS"}} +{"Stackframe": {"file": {"name": "IndexWarmer.java"}, "function": {"name": "org.elasticsearch.index.IndexWarmer$TerminationHandle org.elasticsearch.index.IndexWarmer$FieldDataWarmer.warmReader(org.elasticsearch.index.shard.IndexShard, org.elasticsearch.index.engine.Engine$Searcher)", "offset": 4}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jiOROD0tmELw9GVQYUYO2AAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DelegatingTransportChannel.java"}, "function": {"name": "void org.elasticsearch.transport.DelegatingTransportChannel.sendResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9hTMtdP-Kaf579B6Djqy8QAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.execute()", "offset": 5}, "line": {"number": 738}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Pe3ctc9W4J1u_ZCOerqNzAAAAAAAAACU"}} +{"Stackframe": {"file": {"name": "MetaDataMappingService.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterStateTaskExecutor$ClusterTasksResult org.elasticsearch.cluster.metadata.MetaDataMappingService$PutMappingExecutor.execute(org.elasticsearch.cluster.ClusterState, java.util.List)", "offset": 14}, "line": {"number": 230}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CuV4zhXsbstpo0uwp_uAFgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "SessionOutputBufferImpl.java"}, "function": {"name": "void org.apache.http.impl.io.SessionOutputBufferImpl.flush()"}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P_4qycvxHBZREHniLmgHbAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.deleteNewFiles(java.util.Collection)"}, "line": {"number": 5335}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(org.elasticsearch.rest.RestRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TJNGpZ5zrxHIWzJGPowW7QAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.xcontent.support.AbstractXContentParser.mapOrdered()"}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7Pi_2fyFGSK4JgBchCm1CQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "RuntimeException.java"}, "function": {"name": "void java.lang.RuntimeException.(java.lang.String)"}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BNctXlyqBr-0kZdjpDJr0AAAAAAAAABY"}} +{"Stackframe": {"file": {"name": "SystemIndexManager.java"}, "function": {"name": "void org.elasticsearch.indices.SystemIndexManager.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 19}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AHbgjE1mrEUxDWK3HkjL9AAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "FieldMapper.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.index.mapper.FieldMapper.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)"}, "line": {"number": 380}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8YqqCdmkiYhp8MhNYHa7HwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "MasterFaultDetection.java"}, "function": {"name": "void org.elasticsearch.discovery.zen.MasterFaultDetection$MasterPingRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel)"}, "line": {"number": 322}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dJZnxxfSj1TBzD3FyyfeDQAAAAAAAAB0"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.write(org.apache.lucene.util.BytesRef, org.apache.lucene.index.TermsEnum, org.apache.lucene.codecs.NormsProducer)", "offset": 5}, "line": {"number": 912}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P7Rt6loZ_wUSBc3hapNxlgAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "int com.fasterxml.jackson.dataformat.smile.SmileGenerator._shortUTF8Encode(java.lang.String, int, int)", "offset": 8}, "line": {"number": 1992}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-UMV2UZ-zVoMJMYJ04x58QAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "SearchScrollAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchScrollAsyncAction.sendResponse(org.elasticsearch.action.search.SearchPhaseController$ReducedQueryPhase, org.elasticsearch.common.util.concurrent.AtomicArray)", "offset": 8}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FKmuDb9OiAlOmhNzpFQWMgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TaskBatcher.java"}, "function": {"name": "void org.elasticsearch.cluster.service.TaskBatcher$BatchedTask.run()"}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j-VXt8KnrYS9nMeTJRcX6gAAAAAAAACU"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 58}, "line": {"number": 462}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oRpjVU0Vm5RBoRBBh96UQQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkPropertyAccess(java.lang.String)"}, "line": {"number": 1152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Go4CBISLnucBIZD1h6lqAwAAAAAAAAB-"}} +{"Stackframe": {"file": {"name": "SearchSourceBuilder.java"}, "function": {"name": "void org.elasticsearch.search.builder.SearchSourceBuilder.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 14}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LUnFGHfMsV3itSEiBr_pdgAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "long org.elasticsearch.index.translog.Translog.getMinReferencedGen()", "offset": 2}, "line": {"number": 1780}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb6B"}} +{"Stackframe": {"function": {"name": "cp_new_stat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lpRCGlUta_cleZPDK4rgegAAAAAAAAEG"}} +{"Stackframe": {"file": {"name": "QueuedThreadPool.java"}, "function": {"name": "void org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run()", "offset": 54}, "line": {"number": 1034}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UzBLcYsYZ48ySlpYqqKUBAAAAAAAAABP"}} +{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator.close()", "offset": 19}, "line": {"number": 1891}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "To5h_VPG74jZVr_rPWhSXwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "org.elasticsearch.index.mapper.Mapper org.elasticsearch.index.mapper.DocumentParser.getLeafMapper(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, java.lang.String[])"}, "line": {"number": 971}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "O437KvS3RFmTLYSV2BANPgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "AbstractByteBuf.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.AbstractByteBuf.writeBytes(java.nio.ByteBuffer)", "offset": 1}, "line": {"number": 1113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "84FX4Ibrkj4mG_iQy_xkVAAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "AbstractBulkByQueryRestHandler.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentParser org.elasticsearch.reindex.AbstractBulkByQueryRestHandler.extractRequestSpecificFields(org.elasticsearch.rest.RestRequest, java.util.Map)", "offset": 7}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AAahb89jp2nXTHxX6vfDVgAAAAAAAAIa"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.writeBlocks(int, int)", "offset": 88}, "line": {"number": 637}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F-UVz7qWVUzScRv1FhkbzQAAAAAAAADx"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 24}, "line": {"number": 242}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AtwGZsrxCBN7vaMzOL4ZVQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "HttpClientSettings.java"}, "function": {"name": "java.lang.String com.amazonaws.http.settings.HttpClientSettings.getProxyHost()"}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0mM_z6Wv3d5Hlet7vNYQBAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "StepListener.java"}, "function": {"name": "void org.elasticsearch.action.StepListener.whenComplete(org.elasticsearch.core.CheckedConsumer, java.util.function.Consumer)"}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Gq5m7YsN9AxAFbfEdlTTPwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "void sun.nio.fs.UnixPath.checkDelete()", "offset": 2}, "line": {"number": 822}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_QDKE9rwKJOqV48Ig3tZ1wAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.lambda$innerRun$2(java.lang.String, org.elasticsearch.action.search.SearchPhaseController$ReducedQueryPhase, boolean)"}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlJj2"}} +{"Stackframe": {"function": {"name": "ip_forward_finish"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHriM"}} +{"Stackframe": {"function": {"name": "htab_map_get_next_key"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TeHsdsLU8lMl4hod-ZJtBwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "RestSearchAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction.parseSearchRequest(org.elasticsearch.action.search.SearchRequest, org.elasticsearch.rest.RestRequest, org.elasticsearch.xcontent.XContentParser, org.elasticsearch.common.io.stream.NamedWriteableRegistry, java.util.function.IntConsumer, java.util.function.BiConsumer)"}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LG1iCWXc581Ya7-aKQE_xgAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.util.stream.Node java.util.stream.AbstractPipeline.evaluate(java.util.Spliterator, boolean, java.util.function.IntFunction)", "offset": 5}, "line": {"number": 573}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ii8vGTKR_hj8fN-xuppngwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard$$Lambda$9098+0x000000080280e940.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NhsvdrVhO142ZMTjcR-obwAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "Netty4HttpChannel.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpChannel.sendResponse(org.elasticsearch.http.HttpResponse, org.elasticsearch.action.ActionListener)"}, "line": {"number": 32}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oaAqnvBf39hEMknB1ptAAgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "Scheduler.java"}, "function": {"name": "void org.elasticsearch.threadpool.Scheduler$ReschedulingRunnable.doRun()", "offset": 1}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Id6rxbbnETrinnhjeUmMTgAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "RestActions.java"}, "function": {"name": "org.elasticsearch.rest.BytesRestResponse org.elasticsearch.rest.action.RestActions.nodesResponse(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params, org.elasticsearch.action.support.nodes.BaseNodesResponse)", "offset": 3}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fRzclogVikoGj9ila0Zr-AAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.onResponse(java.lang.Object)"}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ifN9r0wurhPb3dG8PudTpAAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "JsonReadContext.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.JsonReadContext.setCurrentName(java.lang.String)", "offset": 1}, "line": {"number": 198}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qwPQ_i5WGexQYU8q8eVTyQAAAAAAAABz"}} +{"Stackframe": {"file": {"name": "GatewayMetaState.java"}, "function": {"name": "void org.elasticsearch.gateway.GatewayMetaState$LucenePersistedState.setLastAcceptedState(org.elasticsearch.cluster.ClusterState)", "offset": 11}, "line": {"number": 506}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.handleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 4}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YuFRqUWC2dt608XUwtEIRQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.buildRoleFromRoleReference(org.elasticsearch.xpack.core.security.authz.store.RoleReference, org.elasticsearch.action.ActionListener)"}, "line": {"number": 249}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-xGaToLkGkY7B0CjGV1OZgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService.lambda$sync$19(java.util.function.Consumer, org.elasticsearch.index.shard.IndexShard)"}, "line": {"number": 973}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FD5TB8FwgEkaTgViNnnC1gAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeBulkItems(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationContext, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, java.lang.String, org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 708}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uYzYTGLU4u_wBpWSds1IVQAAAAAAAABS"}} +{"Stackframe": {"file": {"name": "FieldInfos.java"}, "function": {"name": "org.apache.lucene.index.FieldInfo org.apache.lucene.index.FieldInfos$Builder.addOrUpdateInternal(java.lang.String, int, boolean, boolean, boolean, org.apache.lucene.index.IndexOptions, org.apache.lucene.index.DocValuesType, long, java.util.Map, int, int, int, boolean)", "offset": 16}, "line": {"number": 533}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QzMU8x58pu8LAFTJ6bQCOwAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "Lucene90BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.blocktree.Lucene90BlockTreeTermsWriter.(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.codecs.PostingsWriterBase, int, int)", "offset": 27}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EA1OKjiVXEAGGRXpRU8t5QAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.get(long)"}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1Uhaaq-KCySIEBwLdwJOrQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Netty4Transport.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4Transport.sendMessage(io.netty.channel.Channel, org.elasticsearch.common.bytes.BytesReference, org.elasticsearch.action.ActionListener)"}, "line": {"number": 396}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mkLFSzwLd_GSc1FYqgqiCgAAAAAAAABj"}} +{"Stackframe": {"file": {"name": "Sorter.java"}, "function": {"name": "void org.apache.lucene.util.Sorter.mergeInPlace(int, int, int)", "offset": 17}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DaLOu1u8r2OzUEp60ph7fAAAAAAAAADT"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.innerParseObject(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, org.elasticsearch.xcontent.XContentParser, java.lang.String, org.elasticsearch.xcontent.XContentParser$Token)", "offset": 25}, "line": {"number": 516}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "clNKHmin0SttGhUDhj4qagAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "NodeClient.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.client.node.NodeClient.executeLocally(org.elasticsearch.action.GenericAction, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuoD"}} +{"Stackframe": {"function": {"name": "ep_poll"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "px0hV-6ryQEPvsqFbgeWxAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Builder.java"}, "function": {"name": "void org.apache.lucene.util.fst.Builder.(org.apache.lucene.util.fst.FST$INPUT_TYPE, int, int, boolean, boolean, int, org.apache.lucene.util.fst.Outputs, boolean, float, boolean, int)", "offset": 92}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Uu5glQJyFgpEjTQ_UpnTpgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask)"}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW"}} +{"Stackframe": {"function": {"name": "ksys_read"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-mAMSaO8HC1n82ENmkUabwAAAAAAAAEc"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesConsumer org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.getInstance(org.apache.lucene.index.FieldInfo, boolean)", "offset": 53}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qv2lArN7QPfX_8vxJbcbpgAAAAAAAAFa"}} +{"Stackframe": {"file": {"name": "IndicesAliasesRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.IndicesAliasesRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 70}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3aPBW84m5dZlrwJguOb7UwAAAAAAAABf"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap$HashIterator.nextNode()", "offset": 6}, "line": {"number": 1601}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nP5Trt-dKjuqAt-_lVvSZAAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "Lucene80NormsConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80NormsConsumer.(org.apache.lucene.index.SegmentWriteState, java.lang.String, java.lang.String, java.lang.String, java.lang.String)", "offset": 4}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "a38j856FxIPiwroWnutPzgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "ChannelOutputStream.java"}, "function": {"name": "void sun.nio.ch.ChannelOutputStream.writeFully(java.nio.ByteBuffer)", "offset": 1}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iLeGKvbT4JiM2zBRgGpU5AAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.addListener(org.elasticsearch.action.ActionListener, java.util.concurrent.ExecutorService, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 2}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CdiM_N4hdaPvSJwq3P6azwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.internal.support.AbstractClient.execute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 380}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yTEFrClQdB3Qsv66pEjNUwAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "TieredMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.TieredMergePolicy$SegmentByteSizeDescending.compare(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.SegmentCommitInfo)", "offset": 1}, "line": {"number": 249}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W2EZxMJf3malwIBSLiHzvwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotsService.access$4600(org.elasticsearch.snapshots.SnapshotsService, org.elasticsearch.snapshots.SnapshotsService$ShardSnapshotUpdate, org.elasticsearch.action.ActionListener)"}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnJ0g"}} +{"Stackframe": {"function": {"name": "unix_stream_recvmsg"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "S_ErxVtracz03jHdVwTbqgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ImmutableOpenMap.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.collect.ImmutableOpenMap.get(java.lang.Object)"}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nx5J7FG4gwufRMoryQ1tmwAAAAAAAADy"}} +{"Stackframe": {"file": {"name": "FetchPhaseDocsIterator.java"}, "function": {"name": "org.elasticsearch.search.SearchHit[] org.elasticsearch.search.fetch.FetchPhaseDocsIterator.iterate(org.elasticsearch.search.SearchShardTarget, org.apache.lucene.index.IndexReader, int[])", "offset": 23}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "d9RG0yBd7ZTSoad56XM1vgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "Errors.java"}, "function": {"name": "void org.glassfish.jersey.internal.Errors.process(java.lang.Runnable)"}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UnphKVh-9QACDNWSmmV53AAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "RetentionLeaseSyncer.java"}, "function": {"name": "void org.elasticsearch.index.seqno.RetentionLeaseSyncer.backgroundSync(org.elasticsearch.index.shard.ShardId, java.lang.String, long, org.elasticsearch.index.seqno.RetentionLeases)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gmjUzsxRLEujWJFPXkncMgAAAAAAAACL"}} +{"Stackframe": {"file": {"name": "MapperService.java"}, "function": {"name": "java.util.Map org.elasticsearch.index.mapper.MapperService.internalMerge(org.elasticsearch.cluster.metadata.IndexMetaData, org.elasticsearch.index.mapper.MapperService$MergeReason, boolean, boolean)", "offset": 12}, "line": {"number": 285}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aDryPCSTXpxFYpA-G4_AlwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "BoostQuery.java"}, "function": {"name": "org.apache.lucene.search.Weight org.apache.lucene.search.BoostQuery.createWeight(org.apache.lucene.search.IndexSearcher, org.apache.lucene.search.ScoreMode, float)"}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UZERbZIQjSg87ouQDqW1NgAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "SegmentInfo.java"}, "function": {"name": "void org.apache.lucene.index.SegmentInfo.setFiles(java.util.Collection)", "offset": 1}, "line": {"number": 272}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5M-fyJXzZzW8DvCgOZZ3FAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction.access$400(org.elasticsearch.action.support.master.TransportMasterNodeAction, org.elasticsearch.tasks.Task, org.elasticsearch.action.support.master.MasterNodeRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "js4u1eHeGpsu-vXLTnW8uQAAAAAAAABW"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "java.util.Set org.apache.lucene.index.ReadersAndUpdates.writeFieldInfosGen(org.apache.lucene.index.FieldInfos, org.apache.lucene.store.Directory, org.apache.lucene.codecs.FieldInfosFormat)", "offset": 9}, "line": {"number": 544}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6l-EHm0OnthNsvyaQcuYhwAAAAAAAACj"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 69}, "line": {"number": 474}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qWdmqD7_YZgrJlkim5VjDgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.onResponse(java.lang.Object)"}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DXeLC1cDPFA8RqPCoQVOPAAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "PooledByteBuf.java"}, "function": {"name": "java.nio.ByteBuffer io.netty.buffer.PooledByteBuf.internalNioBuffer()", "offset": 2}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Mo0G3Ryin3OSJJlsa04N6wAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "StreamSpliterators.java"}, "function": {"name": "boolean java.util.stream.StreamSpliterators$WrappingSpliterator.lambda$initPartialTraversalState$0()"}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Cb3k0Ed3ogplzow-lgEp0QAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "FieldUsageTrackingDirectoryReader.java"}, "function": {"name": "void org.elasticsearch.search.internal.FieldUsageTrackingDirectoryReader$FieldUsageTrackingLeafReader.document(int, org.apache.lucene.index.StoredFieldVisitor)", "offset": 1}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CA2Pa7BoL3e78-tkZ7NnwQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "PrioritizedEsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.runAndClean(java.lang.Runnable)"}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "v0TRkfoB0GMPf0piB0g1_wAAAAAAAABS"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "org.elasticsearch.common.xcontent.ToXContent org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.deserialize(java.lang.String, org.elasticsearch.common.xcontent.NamedXContentRegistry, java.io.InputStream)", "offset": 14}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3CtdmmzWFDHgyMsAZ5xuPAAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "SSLExtension.java"}, "function": {"name": "byte[] sun.security.ssl.SSLExtension.produce(sun.security.ssl.ConnectionContext, sun.security.ssl.SSLHandshake$HandshakeMessage)", "offset": 1}, "line": {"number": 603}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E5ablZjSwaw4LkNasKqxDQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$2.onResponse(java.lang.Object)"}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UPM-HyqGeVqfJgBKSo6ARQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$3152.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.indices.IndicesService.cacheShardLevelResult(org.elasticsearch.index.shard.IndexShard, org.apache.lucene.index.DirectoryReader, org.elasticsearch.common.bytes.BytesReference, java.util.function.Consumer)", "offset": 17}, "line": {"number": 1216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "K_1eR84MDkHtmAgcOm681AAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.file.attribute.FileTime java.nio.file.Files.getLastModifiedTime(java.nio.file.Path, java.nio.file.LinkOption[])"}, "line": {"number": 2402}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w0e12mQXLU6z_nU7sQyVgAAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "FetchSourcePhase.java"}, "function": {"name": "void org.elasticsearch.search.fetch.subphase.FetchSourcePhase$1.process(org.elasticsearch.search.fetch.FetchSubPhase$HitContext)", "offset": 8}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5mFfstASu8Qeky6I-gL8pgAAAAAAAAEK"}} +{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.fs.UnixChannelFactory.open(int, sun.nio.fs.UnixPath, java.lang.String, sun.nio.fs.UnixChannelFactory$Flags, int)", "offset": 59}, "line": {"number": 246}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IfypTA79lNbSQ0wodVdUIgAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.access$1700(io.netty.channel.AbstractChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bgN0IJ8H68sqZWLrgBMvsQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "JavaResourceMethodDispatcherProvider.java"}, "function": {"name": "javax.ws.rs.core.Response org.glassfish.jersey.server.model.internal.JavaResourceMethodDispatcherProvider$VoidOutInvoker.doDispatch(java.lang.Object, org.glassfish.jersey.server.ContainerRequest)"}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "89QgHcaz-NjGLJbNw7HkywAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "JdkZlibEncoder.java"}, "function": {"name": "void io.netty.handler.codec.compression.JdkZlibEncoder.deflate(io.netty.buffer.ByteBuf)", "offset": 1}, "line": {"number": 327}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sekohEm28rHxpRudfXENQgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "BufferedChecksumIndexInput.java"}, "function": {"name": "byte org.apache.lucene.store.BufferedChecksumIndexInput.readByte()"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RJS3mfuj1SlbMar-vOH9CAAAAAAAAACi"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction$AsyncSingleAction.doStart(org.elasticsearch.cluster.ClusterState)", "offset": 36}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6qtI5rBZUCPwlvUdhEAyyQAAAAAAAABw"}} +{"Stackframe": {"file": {"name": "ReplicationTracker.java"}, "function": {"name": "org.elasticsearch.index.shard.ReplicationGroup org.elasticsearch.index.seqno.ReplicationTracker.calculateReplicationGroup()", "offset": 7}, "line": {"number": 953}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sPO63moZmQeRDFosCGHfhQAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.close()", "offset": 12}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAio9n"}} +{"Stackframe": {"function": {"name": "__x64_sys_sendto"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.executeQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)", "offset": 7}, "line": {"number": 622}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oJ7RxaFVtYwQjzTDRX18rwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Settings.get(java.lang.String)"}, "line": {"number": 247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "klX8tI6RbguXhwa8P7ml8gAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$1.onResponse(java.lang.Void)", "offset": 1}, "line": {"number": 575}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RZHHE_LN0EKL6oIilRIcrAAAAAAAAACI"}} +{"Stackframe": {"file": {"name": "BlobStoreIndexShardSnapshots.java"}, "function": {"name": "org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots.fromXContent(org.elasticsearch.common.xcontent.XContentParser)", "offset": 17}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HFnb_IVy4MjK7Vjuq2DN6gAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "Ops.scala"}, "function": {"name": "void akka.stream.impl.fusing.Map$$anon$1.onPush()", "offset": 1}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XSMznkRt2WAdGjlwbap95QAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "HttpContentEncoder.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpContentEncoder.encode(io.netty.channel.ChannelHandlerContext, java.lang.Object, java.util.List)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NEA431VvZx5EvIda-awJrAAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "Iterator.java"}, "function": {"name": "void java.util.Iterator.forEachRemaining(java.util.function.Consumer)", "offset": 2}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 14}, "line": {"number": 723}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ee5ZDKMHiVCtP6qAhF9CEQAAAAAAAAEq"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.applyChanges(org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState, java.lang.String, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder)", "offset": 25}, "line": {"number": 503}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pE_XF-eq0tBl0fP7Y7zrSwAAAAAAAABp"}} +{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.xfer(java.lang.Object, boolean, int, long)", "offset": 10}, "line": {"number": 673}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Stdff30sTwwMW3207S4hcQAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "Mapping.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.index.mapper.Mapping.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)"}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Kc3Qpigh43lyCXxKBVsfZQAAAAAAAADI"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.forceApply(org.apache.lucene.index.FrozenBufferedUpdates)", "offset": 48}, "line": {"number": 5632}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tIoSY_1vT_j29F717EmR3AAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.wrap(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer)"}, "line": {"number": 123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qvNVcLOt_ffF8fUAgdlifgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "org.elasticsearch.common.transport.TransportAddress[] org.elasticsearch.transport.TcpTransport.addressesFromString(java.lang.String)"}, "line": {"number": 505}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oKJuZuFh3gEYUCcmgv5xjQAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "DataOutput.java"}, "function": {"name": "void org.apache.lucene.store.DataOutput.writeString(java.lang.String)", "offset": 1}, "line": {"number": 273}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H7o77ANtSaWU3Ypp865GJwAAAAAAAABW"}} +{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "void org.elasticsearch.cluster.DiffableUtils$MapDiff.(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)", "offset": 8}, "line": {"number": 390}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "itfZdu4NdI0YJrHcgeE-TwAAAAAAAACX"}} +{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.updateShard(org.elasticsearch.cluster.node.DiscoveryNodes, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.indices.cluster.IndicesClusterStateService$Shard, org.elasticsearch.cluster.routing.RoutingTable, org.elasticsearch.cluster.ClusterState)", "offset": 11}, "line": {"number": 593}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x8IZY0dEvsXx9GTB6nqKhQAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.doNext(int)", "offset": 17}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T93qUW7twBf0xQlQpFHQIgAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "OrdinalMap.java"}, "function": {"name": "org.apache.lucene.index.OrdinalMap org.apache.lucene.index.OrdinalMap.build(org.apache.lucene.index.IndexReader$CacheKey, org.apache.lucene.index.TermsEnum[], long[], float)", "offset": 6}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YKoBBl0G_e9oE7cFaZfzDAAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "URLClassLoader.java"}, "function": {"name": "java.net.URL java.net.URLClassLoader.findResource(java.lang.String)"}, "line": {"number": 613}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mSBnbtksrVvKstlIID71bwAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "ContextPreservingActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.ContextPreservingActionListener.onResponse(java.lang.Object)", "offset": 1}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lRUzx9K_j-Phy_nSUNsKfQAAAAAAAAEB"}} +{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "void java.util.regex.Pattern.compile()", "offset": 51}, "line": {"number": 1709}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-BXBCyVdFs10x2OcVoAoKQAAAAAAAAFP"}} +{"Stackframe": {"file": {"name": "Coordinator.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.Coordinator.publish(org.elasticsearch.cluster.ClusterStatePublicationEvent, org.elasticsearch.action.ActionListener, org.elasticsearch.cluster.coordination.ClusterStatePublisher$AckListener)", "offset": 41}, "line": {"number": 1357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5_zddmyO37Dam1L6ekM5pgAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "SegmentInfos.java"}, "function": {"name": "void org.apache.lucene.index.SegmentInfos.prepareCommit(org.apache.lucene.store.Directory)", "offset": 4}, "line": {"number": 803}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7mriOKfPxEedu-U5xcOHzQAAAAAAAABa"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 11}, "line": {"number": 283}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wi6IGN8qc6k-a5Oge6MluAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "DefaultHttpResponseParser.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(org.apache.http.io.SessionInputBuffer)", "offset": 5}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yQDYDWiyDEgJMgGvgsz9TQAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "Lucene54DocValuesProducer.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.apache.lucene.codecs.lucene54.Lucene54DocValuesProducer$CompressedBinaryDocValues$CompressedBinaryTermsEnum.next()", "offset": 7}, "line": {"number": 1362}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gS4BqKHRLy9ywAJxtWFusQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "SSLSocketOutputRecord.java"}, "function": {"name": "void sun.security.ssl.SSLSocketOutputRecord.deliver(byte[], int, int)"}, "line": {"number": 288}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l8by2NZ7WjCFmKmn5LkVDAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.IndexShardStats org.elasticsearch.indices.IndicesService.indexShardStats(org.elasticsearch.indices.IndicesService, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 8}, "line": {"number": 467}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p3fO6R-HhQcKmmzP8aNv3gAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "StoredFieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.index.StoredFieldsConsumer.finishDocument()"}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader.visitDocument(int, org.apache.lucene.index.StoredFieldVisitor)"}, "line": {"number": 583}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TCbt0pq5tuFh3zQn-XdPnQAAAAAAAAE8"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.index.FieldInfos, org.apache.lucene.store.IOContext, java.lang.String, org.apache.lucene.codecs.compressing.CompressionMode)", "offset": 35}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "02a72hUoYtag5F7mkr084QAAAAAAAABU"}} +{"Stackframe": {"file": {"name": "FileSystemProvider.java"}, "function": {"name": "java.io.InputStream java.nio.file.spi.FileSystemProvider.newInputStream(java.nio.file.Path, java.nio.file.OpenOption[])", "offset": 8}, "line": {"number": 422}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u80wzeYkSnSlt8hhdfSXpgAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.FSDirectory.createOutput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 7}, "line": {"number": 254}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "G29Eq8FQTzrJ3tmwKUGa-AAAAAAAAAB-"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.getRepositoryData(org.elasticsearch.action.ActionListener)", "offset": 15}, "line": {"number": 1686}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bKvyYhI0uByw7mLji6yQIwAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "PoolArena.java"}, "function": {"name": "void io.netty.buffer.PoolArena.allocateNormal(io.netty.buffer.PooledByteBuf, int, int)", "offset": 7}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN9jw"}} +{"Stackframe": {"function": {"name": "kernfs_fop_read"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALoEa"}} +{"Stackframe": {"function": {"name": "getname_flags"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jRPUUEtO9tA38nKSenaVfwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "void org.elasticsearch.index.store.ByteSizeCachingDirectory.deleteFile(java.lang.String)"}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HmuH5pCGXma5ToZjJwiZHAAAAAAAAAD9"}} +{"Stackframe": {"file": {"name": "PolicyStepsRegistry.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.ilm.PolicyStepsRegistry.parseStepsFromPhase(java.lang.String, java.lang.String, java.lang.String)", "offset": 24}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h6SWrdSzXfBtMfWpEhL_SQAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.LockValidatingDirectoryWrapper.createOutput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 1}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DKAduOJj0_IU6QK7Duf7kQAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "ResourceLeakDetector.java"}, "function": {"name": "io.netty.util.ResourceLeakDetector$DefaultResourceLeak io.netty.util.ResourceLeakDetector.track0(java.lang.Object)", "offset": 8}, "line": {"number": 264}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tMSkejbMLbAwBvxyLlav4wAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "RestStatusToXContentListener.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestStatusToXContentListener.buildResponse(org.elasticsearch.common.xcontent.ToXContentObject, org.elasticsearch.common.xcontent.XContentBuilder)"}, "line": {"number": 33}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(org.elasticsearch.rest.RestRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XadgtJFQ10pxn_-sij7tlQAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "void java.util.stream.AbstractPipeline.copyInto(java.util.stream.Sink, java.util.Spliterator)", "offset": 3}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lIoxgWzH60wdDIe5gejCgQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "long java.nio.file.Files.size(java.nio.file.Path)"}, "line": {"number": 2468}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4W76RwUjGcgIjQApiAJJHAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "PrioritizedThrottledTaskRunner.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedThrottledTaskRunner$TaskWrapper.onResponse(java.lang.Object)"}, "line": {"number": 27}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "79oV5sP-J3yps9pMow1qNAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor$Worker.run()"}, "line": {"number": 635}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D0rVr9r2i8CRuvzOSp3RnAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "EsExecutors.java"}, "function": {"name": "boolean org.elasticsearch.common.util.concurrent.EsExecutors$ExecutorScalingQueue.offer(java.lang.Object)"}, "line": {"number": 293}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x3cFmRipcZyDdJFPRQEWSwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "JvmGcMonitorService.java"}, "function": {"name": "void org.elasticsearch.monitor.jvm.JvmGcMonitorService$JvmMonitor.monitorGc()", "offset": 2}, "line": {"number": 437}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_NQ"}} +{"Stackframe": {"function": {"name": "__do_page_fault"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIkY"}} +{"Stackframe": {"function": {"name": "__seccomp_filter"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T7mjAHfoZj3YbHDiOoSTCgAAAAAAAABv"}} +{"Stackframe": {"file": {"name": "MemorySegmentIndexInput.java"}, "function": {"name": "org.apache.lucene.store.MemorySegmentIndexInput org.apache.lucene.store.MemorySegmentIndexInput.buildSlice(java.lang.String, long, long)", "offset": 20}, "line": {"number": 420}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.onResponse(java.lang.Object)", "offset": 13}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ANUDzCguopTSw91qnI0ylAAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "TaskTransportChannel.java"}, "function": {"name": "void org.elasticsearch.transport.TaskTransportChannel.sendResponse(org.elasticsearch.transport.TransportResponse)", "offset": 2}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Is2RKfC4b2ukkhfUF--06AAAAAAAAABw"}} +{"Stackframe": {"file": {"name": "Lucene86PointsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene86.Lucene86PointsWriter.writeField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.PointsReader)", "offset": 15}, "line": {"number": 123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApQ28"}} +{"Stackframe": {"function": {"name": "number"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ANQ0YYpZP3RAycFynQe56AAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "SortedNumericDocValuesWriter.java"}, "function": {"name": "org.apache.lucene.index.SortedNumericDocValues org.apache.lucene.index.SortedNumericDocValuesWriter$1.getSortedNumeric(org.apache.lucene.index.FieldInfo)", "offset": 4}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "655cFkYo375T8NGzpy-aFwAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.write(org.elasticsearch.common.xcontent.ToXContent, org.elasticsearch.common.blobstore.BlobContainer, java.lang.String, boolean)", "offset": 1}, "line": {"number": 275}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dgy0_dQK7Uq2EhYPyJUaCwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ScannerImpl.java"}, "function": {"name": "boolean org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(org.yaml.snakeyaml.tokens.Token$ID[])", "offset": 1}, "line": {"number": 263}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "241uNZPD0pUSm0tjjx8oWgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.AbstractObjectParser$$Lambda$6552+0x0000000801d26c90.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFLf"}} +{"Stackframe": {"function": {"name": "__x64_sys_futex"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R-5D09eZM_0UfWInzOtpGAAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.SingleThreadEventExecutor$4.run()", "offset": 8}, "line": {"number": 989}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "G2Gr0Endt8yd9TWwB25Y2AAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.map(java.util.Map)"}, "line": {"number": 870}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nPCAxeiqMcZau3eqPVPDPQAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.lambda$getAuthenticatorConsumer$5(boolean, org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.security.authc.Authenticator, org.elasticsearch.action.ActionListener)", "offset": 14}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wZ09eiIX1XgrymZWZ5BnrAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WQ6bT2fa54MaJ9Zp8xloAgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Field.java"}, "function": {"name": "void org.apache.lucene.document.Field$BinaryTokenStream.()"}, "line": {"number": 581}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2xWh6mlB5HrLIvnbGMdVXQAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "void java.lang.String.(byte[], int, int, java.lang.String)", "offset": 4}, "line": {"number": 426}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "UnixFileAttributeViews.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes sun.nio.fs.UnixFileAttributeViews$Basic.readAttributes()"}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7TPQy1lIigGeJ-ojTqWNMgAAAAAAAACL"}} +{"Stackframe": {"file": {"name": "PolicyStepsRegistry.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.Step org.elasticsearch.xpack.ilm.PolicyStepsRegistry.getStep(org.elasticsearch.cluster.metadata.IndexMetadata, org.elasticsearch.xpack.core.ilm.Step$StepKey)", "offset": 18}, "line": {"number": 218}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qEBUjzYNkS1ejSIGCCvPLQAAAAAAAABW"}} +{"Stackframe": {"file": {"name": "AbstractAlgorithmConstraints.java"}, "function": {"name": "boolean sun.security.util.AbstractAlgorithmConstraints.checkAlgorithm(java.util.List, java.lang.String, sun.security.util.AlgorithmDecomposer)", "offset": 17}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "erIxMNVFTJW9h2xdYC1vVwAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "org.elasticsearch.index.Index org.elasticsearch.action.bulk.TransportBulkAction$ConcreteIndices.resolveIfAbsent(org.elasticsearch.action.DocWriteRequest)", "offset": 4}, "line": {"number": 758}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yvAi05xS0gDZaCLbbx3tnAAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6898+0x0000000801db1938.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_LS"}} +{"Stackframe": {"function": {"name": "__do_page_fault"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VRV3OqaPHH0CL0c13xlvAwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.dispatchedShardOperationOnReplica(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 525}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.indices.IndicesService$$Lambda$2391.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JrDz31YXmFGmOb787RQvsAAAAAAAAACg"}} +{"Stackframe": {"file": {"name": "InitialSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.InitialSearchPhase.run()", "offset": 11}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZUFLMa3qOUxE9ODiWTLKvQAAAAAAAACZ"}} +{"Stackframe": {"file": {"name": "NodesFaultDetection.java"}, "function": {"name": "void org.elasticsearch.discovery.zen.NodesFaultDetection$PingRequestHandler.messageReceived(org.elasticsearch.discovery.zen.NodesFaultDetection$PingRequest, org.elasticsearch.transport.TransportChannel)", "offset": 13}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "c9PnOdDPyU4oBYBeuUJKDQAAAAAAAAE0"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesProducer.readFields(java.lang.String, org.apache.lucene.store.ChecksumIndexInput, org.apache.lucene.index.FieldInfos)", "offset": 32}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gV8FQ6Q2R91R0ux-TEduiAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ShardId.java"}, "function": {"name": "int org.elasticsearch.index.shard.ShardId.computeHashCode()"}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PwR81tCEw_YLoJoW67EqfwAAAAAAAABj"}} +{"Stackframe": {"file": {"name": "PriorityQueue.java"}, "function": {"name": "void org.apache.lucene.util.PriorityQueue.downHeap(int)", "offset": 11}, "line": {"number": 284}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6sFIukgY7ho7yax5BMPJNQAAAAAAAABf"}} +{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "void org.elasticsearch.search.query.QueryPhase.execute(org.elasticsearch.search.internal.SearchContext)", "offset": 16}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wdRZBOgt1iAFeehFpb20mAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.poll(long, java.util.concurrent.TimeUnit)"}, "line": {"number": 1294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pv2BnGF3DU5EF7_9vBhh5wAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "CopyOnWriteArrayList.java"}, "function": {"name": "void java.util.concurrent.CopyOnWriteArrayList.forEach(java.util.function.Consumer)", "offset": 3}, "line": {"number": 807}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "q0kPH1osD2SS18yYjsejKAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeBytes(byte[], int)"}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fbT9eHA5tj6rUvxqpnewLAAAAAAAAADW"}} +{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "short org.apache.lucene.codecs.lucene80.IndexedDISI.writeBitSet(org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.store.IndexOutput, byte)", "offset": 12}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kUJgVxIXgDBTomuPsxvCVwAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "java.lang.Object java.util.AbstractMap.get(java.lang.Object)", "offset": 8}, "line": {"number": 184}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rpC2HihAJEedhpNUsvhzNAAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "OsProbe.java"}, "function": {"name": "org.elasticsearch.monitor.os.OsStats org.elasticsearch.monitor.os.OsProbe.osStats()", "offset": 1}, "line": {"number": 894}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMluQ"}} +{"Stackframe": {"function": {"name": "show_mountinfo"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mhckGVh3BGIWcToRYxPBggAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.addSortedSetField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)"}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3le9lVb1YZlOVDHLOf4bawAAAAAAAACH"}} +{"Stackframe": {"file": {"name": "ElasticsearchConcurrentMergeScheduler.java"}, "function": {"name": "void org.elasticsearch.index.engine.ElasticsearchConcurrentMergeScheduler.doMerge(org.apache.lucene.index.MergeScheduler$MergeSource, org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 22}, "line": {"number": 94}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SeSHb4DYVqNQaGYUHfay2QAAAAAAAABI"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.map(java.util.Map, boolean, boolean)", "offset": 14}, "line": {"number": 978}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CZzzpWShlteDQnB55hliSwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.onResponse(java.lang.Object)"}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0tEAP3x_JoFH6wNaGZk0agAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.netty4.CopyBytesSocketChannel.doReadBytes(io.netty.buffer.ByteBuf)", "offset": 4}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xfgBzvNqXjtLo-fOw_LghAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ClientConnectionSettings.scala"}, "function": {"name": "java.lang.Object akka.http.scaladsl.settings.ClientConnectionSettings$.apply(com.typesafe.config.Config)"}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NydFwQjPoz3616OzRlBFxAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$$Lambda$1710.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uIpQ1uRexMdnpWaro5896wAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "StoredFieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.index.StoredFieldsConsumer.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)"}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-bfXtV49fhR0KNLHrhQhfQAAAAAAAABZ"}} +{"Stackframe": {"file": {"name": "BlobStoreIndexShardSnapshots.java"}, "function": {"name": "void org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots.(java.util.List)", "offset": 9}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbR-"}} +{"Stackframe": {"function": {"name": "generic_fillattr"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qVud9aAxlVfNdghSN8mVawAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "CancellableSingleObjectCache.java"}, "function": {"name": "void org.elasticsearch.common.util.CancellableSingleObjectCache.startRefresh(java.lang.Object, org.elasticsearch.common.util.CancellableSingleObjectCache$CachedItem)"}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zcDe-AWheYxyPE1J1pvsUwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ComposableIndexTemplate.java"}, "function": {"name": "org.elasticsearch.cluster.metadata.ComposableIndexTemplate org.elasticsearch.cluster.metadata.ComposableIndexTemplate.parse(org.elasticsearch.xcontent.XContentParser)"}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pGv-va4FOh2AYYkCjbquJQAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "BulkOperationPacked.java"}, "function": {"name": "void org.apache.lucene.util.packed.BulkOperationPacked.encode(long[], int, long[], int, int)", "offset": 5}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Eh0v14Wp9mB3u5tYha0hzQAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$RequestFilterChain.proceed(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ecGPZMO_Ar5A3oFGzfPKKAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "void io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)"}, "line": {"number": 1434}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wAswvS18vVVd6M7ubmG8QAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "OperatingSystemMXBean.java"}, "function": {"name": "long com.sun.management.OperatingSystemMXBean.getTotalPhysicalMemorySize()"}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "A0eVofdMKp0fyGfOekNToQAAAAAAAABF"}} +{"Stackframe": {"file": {"name": "AbstractS3ResponseHandler.java"}, "function": {"name": "com.amazonaws.AmazonWebServiceResponse com.amazonaws.services.s3.internal.AbstractS3ResponseHandler.parseResponseMetadata(com.amazonaws.http.HttpResponse)", "offset": 6}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VrEXQtq5rACInFvkCbyV7QAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.engine.InternalEngine.acquireLastIndexCommit(boolean)", "offset": 5}, "line": {"number": 2227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1kDY7ns2Gd2tQLkuiWOHugAAAAAAAABk"}} +{"Stackframe": {"file": {"name": "ResourceMethodInvoker.java"}, "function": {"name": "org.glassfish.jersey.server.ContainerResponse org.glassfish.jersey.server.model.ResourceMethodInvoker.apply(org.glassfish.jersey.server.internal.process.RequestProcessingContext)", "offset": 21}, "line": {"number": 400}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6qtI5rBZUCPwlvUdhEAyyQAAAAAAAAB5"}} +{"Stackframe": {"file": {"name": "ReplicationTracker.java"}, "function": {"name": "org.elasticsearch.index.shard.ReplicationGroup org.elasticsearch.index.seqno.ReplicationTracker.calculateReplicationGroup()", "offset": 7}, "line": {"number": 953}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UTnfjgku7DWKbdK4CbCuzgAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5643+0x0000000801b335e0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IlG1oGvMr2iYvhrqxgQozwAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeBulkItems$20(java.util.Set, org.elasticsearch.action.ActionListener)"}, "line": {"number": 822}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KYuxvLtkpRjySBFghaqyHAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.access$300(org.elasticsearch.transport.TcpTransport, org.elasticsearch.cluster.node.DiscoveryNode, org.elasticsearch.transport.TcpChannel, long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.Version, boolean, byte)"}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LczqS6cuSWWD7v2xnXFx3gAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction.access$100(org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction, int, org.elasticsearch.action.support.nodes.BaseNodeResponse)"}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TXTxOwy8uhdU1jeoZU7T8QAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$6401+0x0000000801cc8228.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBv0"}} +{"Stackframe": {"function": {"name": "futex_wake"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rOOdiLJX-1B7cLCvfMwHQQAAAAAAAAB2"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 14}, "line": {"number": 395}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "Iterable.java"}, "function": {"name": "void java.lang.Iterable.forEach(java.util.function.Consumer)", "offset": 2}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dGVCghYZ4HWUSmxadLJ4TQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.concurrent.ThreadContext$$Lambda$5611+0x0000000801bb0b28.get()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Jxqv5kTB0kxVBdEhPkU4GAAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "org.elasticsearch.index.Index[] org.elasticsearch.action.search.TransportSearchAction.resolveLocalIndices(org.elasticsearch.action.OriginalIndices, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider)", "offset": 8}, "line": {"number": 902}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "29QTPW9x-q8C_WnM8CuMHwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "DocumentParserContext.java"}, "function": {"name": "org.elasticsearch.index.mapper.MetadataFieldMapper org.elasticsearch.index.mapper.DocumentParserContext.getMetadataMapper(java.lang.String)"}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EbDp5Ji3y8uTKzXL0h4-JQAAAAAAAAB8"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 22}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7keqI88wllc3F2Zm_7E7bQAAAAAAAAEe"}} +{"Stackframe": {"file": {"name": "Packed64.java"}, "function": {"name": "int org.apache.lucene.util.packed.Packed64.get(int, long[], int, int)", "offset": 25}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oFGe-5CpzjeMGGyplwFhtAAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "ConjunctionScorer.java"}, "function": {"name": "void org.apache.lucene.search.ConjunctionScorer.(org.apache.lucene.search.Weight, java.util.Collection, java.util.Collection)", "offset": 2}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QJ-JVADSuuonf59sOKCy_wAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.unwrap(java.nio.ByteBuffer, java.nio.ByteBuffer[], int, int)"}, "line": {"number": 482}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "LinuxFileSystemProvider.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes sun.nio.fs.LinuxFileSystemProvider.readAttributes(java.nio.file.Path, java.lang.Class, java.nio.file.LinkOption[])", "offset": 5}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RJXjPkp22gaQo9vwY-85JAAAAAAAAAB1"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.(org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter, org.apache.lucene.index.FieldInfo)", "offset": 497}, "line": {"number": 1028}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pD64Y8dYs0KzJcRfejjvpQAAAAAAAAE6"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleRequest(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.Header, org.elasticsearch.transport.InboundMessage)", "offset": 35}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rlMDvNahhog_2YwC1vqNigAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$3132.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RRCB-prsWhHdH7-dfeGMbQAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "void org.elasticsearch.indices.IndicesService.deleteIndexStoreIfDeletionAllowed(java.lang.String, org.elasticsearch.index.Index, org.elasticsearch.index.IndexSettings, org.elasticsearch.indices.IndicesService$IndexDeletionAllowedPredicate)", "offset": 29}, "line": {"number": 1034}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yIwqYS0mEOsOOFPEeyqyswAAAAAAAABC"}} +{"Stackframe": {"file": {"name": "BoolQueryBuilder.java"}, "function": {"name": "org.elasticsearch.index.query.BoolQueryBuilder org.elasticsearch.index.query.BoolQueryBuilder.fromXContent(org.elasticsearch.common.xcontent.XContentParser, java.lang.Integer)", "offset": 5}, "line": {"number": 304}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xMi3lfkibPU0NAhJ8DhGPgAAAAAAAABR"}} +{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.lambda$consumeToken$3(org.elasticsearch.xpack.security.authc.Authenticator$Context, java.util.Map, org.elasticsearch.action.ActionListener, java.util.concurrent.atomic.AtomicReference, java.util.concurrent.atomic.AtomicReference, org.elasticsearch.xpack.core.security.user.User)", "offset": 6}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yXKDtBzzfIoSkaFR2cf2FwAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "IndexTemplateRegistry.java"}, "function": {"name": "void org.elasticsearch.xpack.core.template.IndexTemplateRegistry.addComposableTemplatesIfMissing(org.elasticsearch.cluster.ClusterState)", "offset": 6}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "09pLhX8Ysxadrvlyzhew7QAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.parseLongName(int, int, int)"}, "line": {"number": 1816}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFDLh"}} +{"Stackframe": {"function": {"name": "futex_wake_op"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.authenticateAsync(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 21}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o3sxp4JlXj_WO36SyKuarAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "OsProbe.java"}, "function": {"name": "org.elasticsearch.monitor.os.OsStats$Cgroup org.elasticsearch.monitor.os.OsProbe.getCgroup(boolean)"}, "line": {"number": 889}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "A81KQnIActlJrUuE6mKR2QAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.cluster.coordination.PublicationTransportHandler.serializeDiffClusterState(org.elasticsearch.cluster.Diff, org.elasticsearch.Version)", "offset": 4}, "line": {"number": 250}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HSSZPv-Jiv2fPLN9vFx42gAAAAAAAAEL"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.rest.RestHandler, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 47}, "line": {"number": 327}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0Og38EZo1V7Xaj5UHUpXuQAAAAAAAABF"}} +{"Stackframe": {"file": {"name": "OTelSpanBuilder.java"}, "function": {"name": "io.opentelemetry.api.trace.Span co.elastic.apm.agent.opentelemetry.sdk.OTelSpanBuilder.startSpan()", "offset": 8}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD8cD"}} +{"Stackframe": {"function": {"name": "__raw_callee_save___pv_queued_spin_unlock"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "A_f9j659izgXSTlh6Tab-QAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$6563+0x0000000801cff7c0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnI8b"}} +{"Stackframe": {"function": {"name": "unix_write_space"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApyNL"}} +{"Stackframe": {"function": {"name": "mutex_unlock"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OM3cBlLfFnVP_GH9Bls5ZQAAAAAAAABY"}} +{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "java.nio.ByteBuffer sun.security.ssl.SSLSocketImpl.readApplicationRecord(java.nio.ByteBuffer)", "offset": 28}, "line": {"number": 1474}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PWXRgbcW8lEByvjyzU_gWgAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.finishWrap(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, io.netty.channel.ChannelPromise, boolean, boolean)", "offset": 8}, "line": {"number": 894}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BCRsSn7mjeP9Qqw10U_ACAAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "AggregatorBase.java"}, "function": {"name": "org.elasticsearch.search.aggregations.LeafBucketCollector org.elasticsearch.search.aggregations.AggregatorBase.getLeafCollector(org.apache.lucene.index.LeafReaderContext)", "offset": 2}, "line": {"number": 207}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vw2FT3151oizPmalmfG1PwAAAAAAAAC5"}} +{"Stackframe": {"file": {"name": "CipherCore.java"}, "function": {"name": "int com.sun.crypto.provider.CipherCore.finalNoPadding(byte[], int, byte[], int, int)", "offset": 20}, "line": {"number": 1124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "d2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "com.typesafe.config.impl.AbstractConfigValue com.typesafe.config.impl.SimpleConfig.find(java.lang.String, com.typesafe.config.ConfigValueType)", "offset": 1}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAABz"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 13}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFF06"}} +{"Stackframe": {"function": {"name": "smp_call_function_many"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7ThQQHp1G_6RWzt6Guj7FwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.json.JsonXContentGenerator.writeFieldName(java.lang.String)"}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UKLoduJn5-YPXULy7Ukl9AAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.score(org.apache.lucene.search.LeafCollector, org.apache.lucene.util.Bits, int, int)", "offset": 2}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.LockValidatingDirectoryWrapper.createOutput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 1}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9jm7YJeLA-iI3VEniLy60gAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "InboundDecoder.java"}, "function": {"name": "int org.elasticsearch.transport.InboundDecoder.headerBytesToRead(org.elasticsearch.common.bytes.BytesReference)", "offset": 4}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JVv_d-Wq_iSNJYmh3K1k7wAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction.finishHim()", "offset": 6}, "line": {"number": 254}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Hpc9fcwdAtL-q9U_IYdFuQAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation$2.onResponse(org.elasticsearch.action.support.replication.ReplicationOperation$ReplicaResponse)", "offset": 4}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFrZg"}} +{"Stackframe": {"function": {"name": "auditd_test_task"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DaLOu1u8r2OzUEp60ph7fAAAAAAAAABk"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.innerParseObject(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, org.elasticsearch.xcontent.XContentParser, java.lang.String, org.elasticsearch.xcontent.XContentParser$Token)", "offset": 11}, "line": {"number": 502}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PQg0p5VJN7QeUvOh1Rp-ngAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "long java.util.stream.AbstractPipeline.exactOutputSizeIfKnown(java.util.Spliterator)"}, "line": {"number": 466}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eQTk-J6y4I8N-SMXB7gKXwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser._parseName(int)"}, "line": {"number": 1792}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i8qUzmADhGx9PMH8RJ_tdAAAAAAAAACP"}} +{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "org.elasticsearch.cluster.metadata.Metadata org.elasticsearch.cluster.metadata.Metadata$MetadataDiff.apply(org.elasticsearch.cluster.metadata.Metadata)", "offset": 11}, "line": {"number": 1030}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABv"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "boolean org.elasticsearch.index.shard.IndexShard.scheduledRefresh()", "offset": 18}, "line": {"number": 3910}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "skGfd5BDAMA1fbyY3ykq7wAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "SecondaryAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator.authenticate(java.util.function.Consumer, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hHUnlV5Qyum23hfdTp1g5QAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "OperatingSystemImpl.java"}, "function": {"name": "long com.sun.management.internal.OperatingSystemImpl.getOpenFileDescriptorCount0()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dpptNj2TDyK9YcbKw8llygAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ElasticsearchReaderManager.java"}, "function": {"name": "org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader org.elasticsearch.index.engine.ElasticsearchReaderManager.refreshIfNeeded(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QjcJgCUAsytsXGSmYCNuVgAAAAAAAACL"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 70}, "line": {"number": 605}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DlkkGc4FXw0csMPvt9170AAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "CgroupSubsystemController.java"}, "function": {"name": "java.lang.String jdk.internal.platform.CgroupSubsystemController.getStringValue(jdk.internal.platform.CgroupSubsystemController, java.lang.String)", "offset": 3}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Tl_Iodjc0LWexYa5MoBoHAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "FilterStreamInput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.FilterStreamInput.readBytes(byte[], int, int)"}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uCrYcJJKClqXMP74KTJEhQAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "NIOFSDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.apache.lucene.store.NIOFSDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 3}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ia0MXyNtEXFHubDSaKDv9wAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.internalParseDocument(org.elasticsearch.index.mapper.Mapping, org.elasticsearch.index.mapper.ParseContext$InternalParseContext, org.elasticsearch.common.xcontent.XContentParser)", "offset": 10}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iXE09wsufQpbcJFrBbH5RAAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$authenticateAsync$0(org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 4}, "line": {"number": 338}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HRX5ZF5fIW1GKCXf3a6CmwAAAAAAAACt"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "org.elasticsearch.index.translog.Translog$Location org.elasticsearch.action.bulk.TransportShardBulkAction.performOnReplica(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard)", "offset": 27}, "line": {"number": 564}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dxSK3xE1ZB_w58ylB87r2QAAAAAAAAFt"}} +{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment org.apache.lucene.index.DocumentsWriterPerThread.flush(org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 41}, "line": {"number": 350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kEwl_sgOS_oHg-LLjsCRbAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node[] java.util.HashMap.resize()"}, "line": {"number": 677}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QkTHiGv7YcEhiVyTUJfj3gAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.safeExecute(io.netty.util.concurrent.EventExecutor, java.lang.Runnable, io.netty.channel.ChannelPromise, java.lang.Object)"}, "line": {"number": 1007}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7hPDIBH8MLHxsotS8sE9kgAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat$$Lambda$10706+0x0000000802977208.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sIwqahRkjtW0nY-bGfyZwwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Exception.java"}, "function": {"name": "void java.lang.Exception.(java.lang.String)"}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NdurIec2eVknw5UWeyAGhAAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "void io.netty.channel.AbstractChannel$AbstractUnsafe.write(java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 16}, "line": {"number": 799}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AZGriLcxLoYYv_Z-GwPFpwAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "com.carrotsearch.hppc.cursors.ObjectCursor com.carrotsearch.hppc.ObjectObjectHashMap$ValuesIterator.fetch()", "offset": 1}, "line": {"number": 955}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TB_J6DUBBlvmBbXJoevIsQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ShardSnapshotTaskRunner.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ShardSnapshotTaskRunner$ShardSnapshotTask.doRun()"}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ysmsm8HVpt4jndQdHwl9VQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.IndexModule$$Lambda$661+0x0000000800f7ee78.acquireIndexCommitForSnapshot(org.elasticsearch.index.engine.Engine)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DmBUWt5eqfvD889nmv6e_QAAAAAAAACP"}} +{"Stackframe": {"file": {"name": "BuiltinClassLoader.java"}, "function": {"name": "java.net.URL jdk.internal.loader.BuiltinClassLoader.findResource(java.lang.String)", "offset": 38}, "line": {"number": 355}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RI8tWB64dE3pZrciG-qjEwAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer.readFields(org.apache.lucene.store.IndexInput, org.apache.lucene.index.FieldInfos)", "offset": 7}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACA"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.authenticateAsync(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 23}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HXMKVH0vYlc6MTlUxPh-OgAAAAAAAACp"}} +{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.innerRun()", "offset": 12}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)", "offset": 5}, "line": {"number": 776}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i5hCmtAbdsA6NCXhfCcKOgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ParserMinimalBase.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.base.ParserMinimalBase.getCurrentToken()"}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IRUNDuXpLKKMxZ9pgQ-ihgAAAAAAAAEt"}} +{"Stackframe": {"file": {"name": "ESLZ4Compressor.java"}, "function": {"name": "int org.elasticsearch.lz4.ESLZ4Compressor.compress64k(byte[], int, int, byte[], int, int)", "offset": 56}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zyaCXIaYasENrpmi3j3qmQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "StepListener.java"}, "function": {"name": "void org.elasticsearch.action.StepListener.onResponse(java.lang.Object)", "offset": 1}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ORVIxASD4wCMIrAYPIVrNQAAAAAAAACV"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.action.bulk.TransportShardBulkAction.executeIndexRequestOnReplica(org.elasticsearch.action.index.IndexRequest, org.elasticsearch.index.shard.IndexShard)", "offset": 16}, "line": {"number": 449}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8_3LGlNMADWVmY7MNYKbGgAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "Completion090PostingsFormat.java"}, "function": {"name": "org.elasticsearch.search.suggest.completion.CompletionStats org.elasticsearch.search.suggest.completion2x.Completion090PostingsFormat.completionStats(org.apache.lucene.index.IndexReader, java.lang.String[])", "offset": 5}, "line": {"number": 339}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DEXun7CQm6bEfyZWvzwPOQAAAAAAAABy"}} +{"Stackframe": {"file": {"name": "BitsetFilterCache.java"}, "function": {"name": "org.apache.lucene.util.BitSet org.elasticsearch.index.cache.bitset.BitsetFilterCache.getAndLoadIfNotPresent(org.apache.lucene.search.Query, org.apache.lucene.index.LeafReaderContext)", "offset": 12}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SZIzrSBBPBO2zJj0aqaKggAAAAAAAAEv"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "com.amazonaws.services.s3.model.S3Object com.amazonaws.services.s3.AmazonS3Client.getObject(com.amazonaws.services.s3.model.GetObjectRequest)", "offset": 51}, "line": {"number": 1498}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9oCrznC_hRK-NHF3gez-FgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Unsafe.java"}, "function": {"name": "void sun.misc.Unsafe.park(boolean, long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vlT6chcaANOrBrrDI8IREAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$lookForExistingAuthentication$4(java.util.function.Consumer, org.elasticsearch.xpack.security.authc.Authentication)"}, "line": {"number": 246}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w3qTM6Aby-qZXMm0XUnzgwAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleResponse(java.net.InetSocketAddress, org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.transport.TransportResponseHandler)", "offset": 13}, "line": {"number": 324}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KKq9hFu_HcVwkAnnzs7gcwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportBroadcastByNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 427}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ImSMEYxGQoS8Ko52LTpvDgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.writeAtomic(org.elasticsearch.common.blobstore.BlobContainer, java.lang.String, org.elasticsearch.core.CheckedConsumer, boolean)", "offset": 1}, "line": {"number": 2679}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sm3enN7dM6tCy3LCfPjrvgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "SingletonSortedSetDocValues.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.apache.lucene.index.SingletonSortedSetDocValues.lookupOrd(long)"}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6ZyDu8REFKLpyM-Kdz5OhAAAAAAAAADW"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncPrimaryAction.doRun()", "offset": 29}, "line": {"number": 411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kYKwgTJK-9URPxdbVIaSTwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "FsProbe.java"}, "function": {"name": "java.util.List org.elasticsearch.monitor.fs.FsProbe.readProcDiskStats()"}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelHandlerContext io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(java.lang.Object)"}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ"}} +{"Stackframe": {"function": {"name": "ep_insert"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sVHkQBLFueXylT9J5JnmGQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "SearchRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.SearchRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)"}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tX2kT2rXjxm20OW1HCBdLgAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "AsciiString.java"}, "function": {"name": "int io.netty.util.AsciiString.hashCode(java.lang.CharSequence)", "offset": 7}, "line": {"number": 1400}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4vwWTuaA5W0Uq7WSODTSAQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.merge(org.apache.lucene.index.MergeState, org.apache.lucene.codecs.NormsProducer)", "offset": 3}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "atxNg2wB0yTwBdq5mQELkAAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.store.StoreStats org.elasticsearch.index.shard.IndexShard.storeStats()", "offset": 7}, "line": {"number": 1358}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YVcFEflggWCRxtIyAFnYrgAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.timedRead(java.io.FileDescriptor, byte[], int, int, long)", "offset": 8}, "line": {"number": 276}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xkve8TpR3957l1VqIfu39gAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "org.elasticsearch.cluster.SnapshotsInProgress$Entry org.elasticsearch.cluster.SnapshotsInProgress$Entry.access$000(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 684}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uYJaHL8c7yuUg9zbiJgfXAAAAAAAAABb"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.select(boolean)", "offset": 25}, "line": {"number": 752}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Mjtyswsr5RSXvAnPmILipAAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "DataOutput.java"}, "function": {"name": "void org.apache.lucene.store.DataOutput.writeInt(int)", "offset": 3}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Rq1eFN8SiXxM79ZsydqqqAAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "SizeBlockingQueue.java"}, "function": {"name": "boolean org.elasticsearch.common.util.concurrent.SizeBlockingQueue.offer(java.lang.Object)", "offset": 8}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R8Unr-8xOl9YfaVb1B0yFAAAAAAAAACr"}} +{"Stackframe": {"file": {"name": "PointRangeQuery.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.PointRangeQuery$1$4.get(long)", "offset": 15}, "line": {"number": 349}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Za0P_0e34shcw6VJJ_B5XgAAAAAAAACW"}} +{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.deleteNewFiles(java.util.Collection)", "offset": 17}, "line": {"number": 673}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCD0"}} +{"Stackframe": {"function": {"name": "futex_wait_setup"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u7S91U7Iqd-gCdQi3EcwPAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "PeerRecoverySourceService.java"}, "function": {"name": "void org.elasticsearch.indices.recovery.PeerRecoverySourceService$StartRecoveryTransportRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kiQ7KxPYNd0HZxuM62vmnwAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "AESCipher.java"}, "function": {"name": "int com.sun.crypto.provider.AESCipher.engineDoFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 3}, "line": {"number": 673}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Pp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "IndexReader.java"}, "function": {"name": "void org.apache.lucene.index.IndexReader.decRef()", "offset": 9}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2w9lEEegEaL2ybuXAjH-5gAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.addGlobalMetadataDocuments(org.elasticsearch.cluster.metadata.Metadata)", "offset": 1}, "line": {"number": 1085}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UJPsIIaxDfChbUoF4ScVKQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "TemplateUtils.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.core.template.TemplateUtils.replaceVariables(java.lang.String, java.lang.String, java.lang.String, java.util.Map)"}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EXm1hlIrQc2WIKO4W87lDAAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "FileChannel.java"}, "function": {"name": "java.nio.channels.FileChannel java.nio.channels.FileChannel.open(java.nio.file.Path, java.nio.file.OpenOption[])", "offset": 6}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VZ8R4UF_7xzlvYFwyCOjWgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ProcessService.java"}, "function": {"name": "org.elasticsearch.monitor.process.ProcessStats org.elasticsearch.monitor.process.ProcessService.stats()"}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3wUqWgsBzfZ4hye-ZoHF8AAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler$$Lambda$5317+0x0000000801a90460.operationComplete(io.netty.util.concurrent.Future)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fjtW9vtmDWgO1Pk6zjyUWAAAAAAAAACO"}} +{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "void sun.nio.ch.FileChannelImpl.implCloseChannel()", "offset": 30}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EOTpfUqJOuaAVD3AKgKtLgAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "BytesStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.BytesStreamOutput.ensureCapacity(long)", "offset": 6}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OUbgbjykZCfB9WwnVI9DPQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "CollectionUtil.java"}, "function": {"name": "void org.apache.lucene.util.CollectionUtil.introSort(java.util.List, java.util.Comparator)", "offset": 2}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nia7whBbxOvwBeZB8fnAXQAAAAAAAACE"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.readIntoNativeBuffer(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 18}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZIcfvDe31w9pismrAmm0JwAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.script.ScriptSettings$$Lambda$335.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8APXYE035H8lrUVPlepz8wAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "java.lang.Object java.util.AbstractMap$1$1.next()"}, "line": {"number": 358}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMqa"}} +{"Stackframe": {"function": {"name": "__ip_finish_output"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8d37I3z4luvj6nh9MTu4AAAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.util.stream.Node java.util.stream.AbstractPipeline.evaluate(java.util.Spliterator, boolean, java.util.function.IntFunction)", "offset": 6}, "line": {"number": 544}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Sq4yJYXB5hEMp7oPtTmUiQAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$RefreshResult org.elasticsearch.index.shard.IndexShard.refresh(java.lang.String)", "offset": 4}, "line": {"number": 1236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Mp70PZJK05AbTbmTOwflagAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "ScrollableHitSource.java"}, "function": {"name": "void org.elasticsearch.index.reindex.ScrollableHitSource.onResponse(org.elasticsearch.index.reindex.ScrollableHitSource$Response)", "offset": 2}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cZ_9FY4snXfsEZePSiR1IgAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.ReadersAndUpdates.getReadOnlyClone(org.apache.lucene.store.IOContext)", "offset": 8}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VEVSaDZsnx1_EI9pECvQKAAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "System.java"}, "function": {"name": "java.lang.String java.lang.System.getProperty(java.lang.String)", "offset": 4}, "line": {"number": 931}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GGHOuWs-kNsU0GtQ48oWGgAAAAAAAABO"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.xcontent.XContentBuilder.unknownValue(java.lang.Object, boolean)", "offset": 13}, "line": {"number": 829}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_8mW4hWd4BOv7BBBIH1XlgAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "BlobStoreIndexShardSnapshots.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 8}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ftfEAOBekZboI1FEtGHG8gAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$4(java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.support.ActionFilterChain, org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 3}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_2ZUhccHf_aMDB4EGvtrrAAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "Cache.java"}, "function": {"name": "org.elasticsearch.common.cache.Cache$Entry org.elasticsearch.common.cache.Cache$CacheSegment.get(java.lang.Object, long, java.util.function.Predicate, java.util.function.Consumer)", "offset": 2}, "line": {"number": 211}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Zou-EwmpdzrcXx7eij10xwAAAAAAAABP"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Index org.elasticsearch.index.shard.IndexShard.prepareIndex(org.elasticsearch.index.mapper.MapperService, java.lang.String, org.elasticsearch.index.mapper.SourceToParse, long, long, long, org.elasticsearch.index.VersionType, org.elasticsearch.index.engine.Engine$Operation$Origin, long, boolean, long, long)", "offset": 10}, "line": {"number": 1013}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QnopTe1pxTR1kVhVN4qn2QAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.IndexWriter.lambda$getReader$0(long, java.util.Map, org.apache.lucene.index.SegmentCommitInfo)", "offset": 3}, "line": {"number": 571}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vBoVUlhIFzzElOeQU4CcwgAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "FetchLookupFieldsPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchLookupFieldsPhase.run()", "offset": 2}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x0gi_Lu_MQxnxMW1-0ZQNQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Netty4SizeHeaderFrameDecoder.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4SizeHeaderFrameDecoder.decode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkRead(java.lang.String)"}, "line": {"number": 747}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fiNry6aywxk33PR7ZSinSAAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$3(org.elasticsearch.action.support.ActionFilterChain, org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener, java.lang.Void)"}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BwVeD9nkaf4MT5BmT8DTjQAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "DiscoveryNode.java"}, "function": {"name": "void org.elasticsearch.cluster.node.DiscoveryNode.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 7}, "line": {"number": 442}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Sl8QmNBWhfPFBDZ-zT5cegAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AwsResponseHandlerAdapter.java"}, "function": {"name": "java.lang.Object com.amazonaws.http.response.AwsResponseHandlerAdapter.handle(com.amazonaws.http.HttpResponse)"}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PT4VaUhFLgQWjMovkqo-tQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.s3.S3RetryingInputStream$$Lambda$6890+0x0000000801e24130.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VMij9qz2nHE69MEZpME2cgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ConstantScoreQuery.java"}, "function": {"name": "org.apache.lucene.search.Weight org.apache.lucene.search.ConstantScoreQuery.createWeight(org.apache.lucene.search.IndexSearcher, org.apache.lucene.search.ScoreMode, float)"}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lzaQ7rnM1jJ-7X0cuTYcVgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ReleasableBytesReference.java"}, "function": {"name": "int org.elasticsearch.common.bytes.ReleasableBytesReference.length()"}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kqJ4VqDE70cb2cN5KIkXQQAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "CompressedXContent.java"}, "function": {"name": "void org.elasticsearch.common.compress.CompressedXContent.(java.lang.String)"}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XwAhZSmmzOw18_-H38te0AAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "BitSetIterator.java"}, "function": {"name": "int org.apache.lucene.util.BitSetIterator.nextDoc()"}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lF0402c3xDTaGy1WpLy7vwAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "Lucene90CompoundFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90CompoundFormat.writeCompoundFile(org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo)", "offset": 5}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uJ92AJuIye4-5NDP89wkuQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "SearchResponse.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.action.search.SearchResponse.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 1}, "line": {"number": 262}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LbDXQXQlDNAPNuTWnAgwZAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.xpack.core.template.IndexTemplateRegistry$$Lambda$7987+0x0000000801fc7810.apply(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NQk8Tm52TXU8cldaOVcGKAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.access$000(org.elasticsearch.action.search.FetchSearchPhase)"}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NyW53PYqE1m3YVflb2BCegAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.validateEnd(org.elasticsearch.xcontent.XContentParser)"}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IZGUOrgjbqfmbQ1HlCskBgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "CachedLookupKey.java"}, "function": {"name": "co.elastic.apm.agent.weakconcurrent.CachedLookupKey co.elastic.apm.agent.weakconcurrent.CachedLookupKey.get(java.lang.Object)", "offset": 1}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ArHoFYyXVsZt6HAc7EjVzgAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.doAuthenticate(org.elasticsearch.xpack.security.authc.Authenticator$Context, boolean, org.elasticsearch.action.ActionListener)", "offset": 18}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DoOWiMf3FXpVTm1lISLlNAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport$2.doRun()"}, "line": {"number": 1450}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rG4zWNbzF43FlUaeZiWkVQAAAAAAAADc"}} +{"Stackframe": {"file": {"name": "LifecyclePolicy.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.LifecyclePolicy.toSteps(org.elasticsearch.client.Client, org.elasticsearch.license.XPackLicenseState)", "offset": 31}, "line": {"number": 248}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QOd1XvqsUrgvrUhi_EhnRAAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "MatchedQueriesFetchSubPhase.java"}, "function": {"name": "void org.elasticsearch.search.fetch.subphase.MatchedQueriesFetchSubPhase.hitsExecute(org.elasticsearch.search.internal.SearchContext, org.elasticsearch.search.SearchHit[])", "offset": 6}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yCsgTIwDC_hDJDfLFUPapAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ActionRunnable.java"}, "function": {"name": "void org.elasticsearch.action.ActionRunnable$2.doRun()"}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M1U5MRplArg1qeEAEk5MlAAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.handleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 4}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xufRTVMCyNgp_yFmnSCnyQAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotsService$$Lambda$8557+0x0000000801fd7078.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "svTLBaq-js4dv9XNweS7QgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ZipFile.java"}, "function": {"name": "java.util.zip.ZipEntry java.util.zip.ZipFile.getEntry(java.lang.String)"}, "line": {"number": 324}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F2jodMGv8PK12gxqypqfdgAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "Character.java"}, "function": {"name": "int java.lang.Character.codePointAtImpl(char[], int, int)", "offset": 4}, "line": {"number": 8985}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM"}} +{"Stackframe": {"function": {"name": "sock_recvmsg"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7ko5nSdnNlUP_d2pOnRKIAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ManagementFactory.java"}, "function": {"name": "java.util.List java.lang.management.ManagementFactory.getMemoryPoolMXBeans()"}, "line": {"number": 401}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "q70nRV_P6WVXyRtYM6D75QAAAAAAAAQs"}} +{"Stackframe": {"file": {"name": "Lucene54DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene54.Lucene54DocValuesConsumer.addNumericField(org.apache.lucene.index.FieldInfo, java.lang.Iterable, org.apache.lucene.codecs.lucene54.Lucene54DocValuesConsumer$NumberType)", "offset": 150}, "line": {"number": 243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KpITysyc01IYxgnwc53UiQAAAAAAAACx"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.writePoints(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)", "offset": 20}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mmNAof30bMRSwYN0RqyIdgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.ReadersAndUpdates.getReadOnlyClone(org.apache.lucene.store.IOContext)", "offset": 1}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0EOWuO-1I_jw1WEaYJ3N4QAAAAAAAACA"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter.write(org.apache.lucene.index.Fields)", "offset": 25}, "line": {"number": 347}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PWYGELIW3SqFoRNmW7QBAgAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "BigByteArray.java"}, "function": {"name": "void org.elasticsearch.common.util.BigByteArray.set(long, byte[], int, int)", "offset": 12}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j_szotBjFArpC5TNR-8gUQAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$2(java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.ActionResponse)", "offset": 2}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKeysPlain(java.util.Set)", "offset": 11}, "line": {"number": 544}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "b0EZjrjz491rqJx3vSRDfAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "WeakHashMap.java"}, "function": {"name": "java.lang.Object java.util.WeakHashMap.get(java.lang.Object)"}, "line": {"number": 401}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1LCxlgD3_e4Ym8K1UlEBRQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.startStoredFields(int)"}, "line": {"number": 449}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kxK1qXTyCT9ACujXNEXtGQAAAAAAAAEu"}} +{"Stackframe": {"file": {"name": "SSLSocketInputRecord.java"}, "function": {"name": "sun.security.ssl.Plaintext[] sun.security.ssl.SSLSocketInputRecord.decodeInputRecord()", "offset": 53}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QNDqKDPWY6nq0qvBxhyKdwAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.List org.elasticsearch.common.xcontent.support.AbstractXContentParser.readList(org.elasticsearch.common.xcontent.XContentParser, org.elasticsearch.common.xcontent.support.AbstractXContentParser$MapFactory)", "offset": 8}, "line": {"number": 368}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Gs0tfvIN9I1zwkPyuCYq4AAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.map(java.util.Map)", "offset": 10}, "line": {"number": 876}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IXlzZhpzADPtw1r86oHKcgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object java.lang.invoke.MethodHandle.invokeBasic(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ltb-SLLFS4DeUTd0FR1KzQAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "SortBuilder.java"}, "function": {"name": "java.util.Optional org.elasticsearch.search.sort.SortBuilder.buildSort(java.util.List, org.elasticsearch.index.query.QueryShardContext)", "offset": 3}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nFTZ4MXQlS-LtyA78dSw9wAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "void org.elasticsearch.search.internal.ContextIndexSearcher.searchLeaf(org.apache.lucene.index.LeafReaderContext, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 13}, "line": {"number": 184}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9vvlObj6sj2v9DQG_1E_-wAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "FileUserPasswdStore.java"}, "function": {"name": "boolean org.elasticsearch.xpack.security.authc.file.FileUserPasswdStore.verifyPassword(java.lang.String, org.elasticsearch.common.settings.SecureString)", "offset": 4}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Dp-8xDj8Y_niPKqY_GH18wAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotsService.innerUpdateSnapshotState(org.elasticsearch.snapshots.SnapshotsService$ShardSnapshotUpdate, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 4015}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOK4"}} +{"Stackframe": {"function": {"name": "inet_sendmsg"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AZDR3l_HtCM5cX-45SSLjQAAAAAAAABF"}} +{"Stackframe": {"file": {"name": "HttpChannel.java"}, "function": {"name": "void org.eclipse.jetty.server.HttpChannel.lambda$handle$1()", "offset": 6}, "line": {"number": 487}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mIhHJLRWLV08bvGOk_MaUQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.flush()"}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PYNQGka54-Rn86JqyO8oZgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler$$Lambda$5306+0x0000000801a77138.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9LcbhYCkWtGyipSFqusBKQAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeMap(org.elasticsearch.common.collect.ImmutableOpenMap, org.elasticsearch.common.io.stream.Writeable$Writer, org.elasticsearch.common.io.stream.Writeable$Writer)", "offset": 2}, "line": {"number": 628}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1pEcO9CYkxI799CldX3uowAAAAAAAABS"}} +{"Stackframe": {"file": {"name": "BatchEventProcessor.java"}, "function": {"name": "void com.lmax.disruptor.BatchEventProcessor.processEvents()", "offset": 16}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yBhEFtyRRCvGIybyDtzQDwAAAAAAAABS"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun()", "offset": 6}, "line": {"number": 594}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Q74ZSoBrLiINArpQeOleFAAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.opt(java.util.Collection, int, org.apache.lucene.search.ScoreMode, long)", "offset": 1}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes java.nio.file.Files.readAttributes(java.nio.file.Path, java.lang.Class, java.nio.file.LinkOption[])"}, "line": {"number": 1843}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hyYs1X0lg50NltvYtvEQGQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.cluster.metadata.Metadata.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)"}, "line": {"number": 1069}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D9GVFlImznaIRsowjgVv2gAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult org.elasticsearch.xpack.security.authz.RBACEngine.buildIndicesAccessControl(java.lang.String, org.elasticsearch.xpack.core.security.authz.permission.Role, org.elasticsearch.xpack.core.security.authz.ResolvedIndices, java.util.Map)"}, "line": {"number": 903}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "644cGNT2qB6lvzqttzEn0AAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "TemplateUtils.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.core.template.TemplateUtils.loadTemplate(java.lang.String, java.lang.String, java.lang.String, java.util.Map)"}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bt6qqHDcXiO54zHx3aAldQAAAAAAAADg"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.applyChanges(org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)", "offset": 31}, "line": {"number": 477}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mSA4n3hfHoHO_l078KYe-gAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService.publish(org.elasticsearch.cluster.ClusterStatePublicationEvent, org.elasticsearch.cluster.service.MasterService$TaskOutputs)", "offset": 6}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tpYrdrzxLxKEo0lof5nOvwAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter.finish(int)", "offset": 9}, "line": {"number": 486}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gNQ3gt-jVly-lGFf8lvTDgAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "TransportAutoPutMappingAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.mapping.put.TransportAutoPutMappingAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xbB2JzUL5kKb9-epbYeC7gAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "boolean java.util.regex.Pattern$BmpCharProperty.match(java.util.regex.Matcher, int, java.lang.CharSequence)", "offset": 2}, "line": {"number": 3967}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tO6JpVZeu0abSD0xpUFNBgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$UnmodifiableCollection.contains(java.lang.Object)"}, "line": {"number": 1038}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jfbp-pxxSKb0OJYS2GhtfgAAAAAAAABe"}} +{"Stackframe": {"file": {"name": "OutputRecord.java"}, "function": {"name": "long sun.security.ssl.OutputRecord.t10Encrypt(sun.security.ssl.SSLCipher$SSLWriteCipher, byte, int)", "offset": 13}, "line": {"number": 532}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8OiJZHURIK_gi5RsAiMk3QAAAAAAAAD6"}} +{"Stackframe": {"file": {"name": "Lucene84PostingsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.Lucene84PostingsWriter.startDoc(int, int)", "offset": 37}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bCyjGhoQ-llBpE9jO3P0_AAAAAAAAACg"}} +{"Stackframe": {"file": {"name": "TransportClusterStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.stats.ClusterStatsNodeResponse org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction.nodeOperation(org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction$ClusterStatsNodeRequest)", "offset": 7}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFw2-"}} +{"Stackframe": {"function": {"name": "unroll_tree_refs"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mSJ6fSPuHzsY_PJcgbXOQAAAAAAAAACX"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "void sun.nio.fs.UnixPath.initOffsets()", "offset": 31}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1oTFJJD8oE6SApFeuZctegAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "MappingVisitor.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.stats.MappingVisitor.visitMapping(java.util.Map, java.lang.String, java.util.function.BiConsumer)"}, "line": {"number": 23}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WtYwpXZiYRFgEt1nxr5kLwAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$5678+0x0000000801b3a118.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Uc3Hxu80nWajDYNI1RALIwAAAAAAAAGQ"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.handleIndexActionAuthorizationResult(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener)", "offset": 55}, "line": {"number": 540}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexActionName(java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.accesscontrol.IndicesAccessControl, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 351}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fcwlJZe3vp7o1kWId0rqugAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.util.Set java.util.Collections$UnmodifiableMap.entrySet()"}, "line": {"number": 1496}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5eWztjuadZyU6X7HBypcZgAAAAAAAAGk"}} +{"Stackframe": {"file": {"name": "TermsAggregatorFactory.java"}, "function": {"name": "org.elasticsearch.search.aggregations.Aggregator org.elasticsearch.search.aggregations.bucket.terms.TermsAggregatorFactory.doCreateInternal(org.elasticsearch.search.aggregations.support.ValuesSource, org.elasticsearch.search.aggregations.Aggregator, boolean, java.util.List, java.util.Map)", "offset": 79}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1HXZZ713KyUPF_V7-YXiGAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "RestClusterGetSettingsAction.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.admin.cluster.RestClusterGetSettingsAction$1.buildResponse(java.lang.Object, org.elasticsearch.common.xcontent.XContentBuilder)"}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YMf1vN4Xj82X8azesbKqWQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 1}, "line": {"number": 627}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gS4BqKHRLy9ywAJxtWFusQAAAAAAAAEe"}} +{"Stackframe": {"file": {"name": "SSLSocketOutputRecord.java"}, "function": {"name": "void sun.security.ssl.SSLSocketOutputRecord.deliver(byte[], int, int)", "offset": 53}, "line": {"number": 341}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nxBVaHmISDDtSUWBhVotmwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.bytes.BytesReference, boolean)"}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kNYFghz3UdICunQ0hZrtDgAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.admin.indices.RestGetIndicesAction$$Lambda$2317.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Zf4KmPLa6_uw8gRgiw9EUAAAAAAAAAE4"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.runTask(java.lang.String, java.util.function.Function, org.elasticsearch.action.ActionListener)", "offset": 44}, "line": {"number": 428}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "MergePolicy.java"}, "function": {"name": "long org.apache.lucene.index.MergePolicy.size(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 1}, "line": {"number": 679}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3RWdbZcCPMpVZ1qCQ2JZEQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.checkOperatorPrivileges(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest)"}, "line": {"number": 317}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$DelegatingFailureActionListener.onResponse(java.lang.Object)"}, "line": {"number": 250}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1LWZJ-lujpfxLmSgW40IUAAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.updateCheckPoints(org.elasticsearch.cluster.routing.ShardRouting, java.util.function.LongSupplier, java.util.function.LongSupplier, java.lang.Runnable)", "offset": 32}, "line": {"number": 341}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3ktdpK4jZYOeGOMnKE591QAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "OrdinalMap.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.apache.lucene.index.OrdinalMap$TermsEnumIndex.next()"}, "line": {"number": 59}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GRYpedysLzHMkupJW0yOkAAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncPrimaryAction.lambda$doRun$0(org.elasticsearch.index.shard.IndexShard, org.elasticsearch.core.Releasable)"}, "line": {"number": 343}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM2"}} +{"Stackframe": {"function": {"name": "do_syscall_64"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpEy"}} +{"Stackframe": {"function": {"name": "user_path_at_empty"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jXA44eQDJB4STkgNORi52AAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.FilterDirectory.createTempOutput(java.lang.String, java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2yACv8-EQiZTIRa2WNkdEwAAAAAAAACX"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.serialize(org.elasticsearch.xcontent.ToXContent, java.lang.String, boolean, java.util.Map, java.io.OutputStream)", "offset": 28}, "line": {"number": 334}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0s7uxPt4C0neZhw5beiboQAAAAAAAABZ"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.xcontent.support.AbstractXContentParser.readValueUnsafe(org.elasticsearch.xcontent.XContentParser$Token, org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier)", "offset": 4}, "line": {"number": 392}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eLPEw3jnFkvsJ2aQiz21NAAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)", "offset": 1}, "line": {"number": 570}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "15SXPQ5T2MJIiMIcJWeXiQAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "boolean java.util.Arrays.equals(byte[], int, int, byte[], int, int)", "offset": 8}, "line": {"number": 2710}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nh_gImNGDSS549Z2uBSgzQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "IndexingMemoryController.java"}, "function": {"name": "void org.elasticsearch.indices.IndexingMemoryController$ShardsIndicesStatusChecker.run()", "offset": 2}, "line": {"number": 279}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4AOC1otNYKhZE8ncURFrlgAAAAAAAAF5"}} +{"Stackframe": {"file": {"name": "FieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.FieldMapper.doXContentBody(org.elasticsearch.common.xcontent.XContentBuilder, boolean, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 35}, "line": {"number": 423}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AHKxzIy_KVzHzDvz9MzN4AAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "ClientConfiguration.java"}, "function": {"name": "java.lang.String com.amazonaws.ClientConfiguration.getProxyHostProperty()", "offset": 1}, "line": {"number": 692}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kjVWL0CvcoVO8UJQES2rXgAAAAAAAACB"}} +{"Stackframe": {"file": {"name": "CipherCore.java"}, "function": {"name": "byte[] com.sun.crypto.provider.CipherCore.prepareInputBuffer(byte[], int, int, byte[], int)", "offset": 18}, "line": {"number": 1011}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TpjjgqBU-O7RfxeFvF0xSgAAAAAAAAA8"}} +{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "io.opentelemetry.context.Context org.elasticsearch.tracing.apm.APMTracer.lambda$startTrace$1(java.lang.String, java.lang.String, org.elasticsearch.tracing.apm.APMTracer$APMServices, org.elasticsearch.common.util.concurrent.ThreadContext, java.util.Map)", "offset": 11}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALoC7"}} +{"Stackframe": {"function": {"name": "putname"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ff0m6vVgvBwc3vbqfludlAAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "PendingReplicationActions.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.PendingReplicationActions.cancelActions(java.util.ArrayList, java.lang.String)", "offset": 1}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xz8R4MTaPzD1CrgkfDi_QwAAAAAAAAC4"}} +{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.IndexedDISI.flush(int, org.apache.lucene.util.FixedBitSet, int, byte, org.apache.lucene.store.IndexOutput)", "offset": 16}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZgROkWlvV9ujJA-aNSGhMwAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "Cipher.java"}, "function": {"name": "int javax.crypto.Cipher.doFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 14}, "line": {"number": 2502}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LZh55WiQA4pYUO2PyDs0LQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "OutputStreamIndexOutput.java"}, "function": {"name": "void org.apache.lucene.store.OutputStreamIndexOutput.writeBytes(byte[], int, int)"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DJrVAhIsrM7D63maCxrMRwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UnicodeUtil.java"}, "function": {"name": "int org.apache.lucene.util.UnicodeUtil.UTF16toUTF8(java.lang.CharSequence, int, int, byte[], int)"}, "line": {"number": 194}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nFec0jDdaqJcSPL265lPiAAAAAAAAAD1"}} +{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.handleIncomingRequest(org.elasticsearch.http.HttpRequest, org.elasticsearch.http.HttpChannel, java.lang.Exception)", "offset": 75}, "line": {"number": 460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dLwWk1CGjdl0nWT4XrDcdgAAAAAAAACS"}} +{"Stackframe": {"file": {"name": "Deflater.java"}, "function": {"name": "int java.util.zip.Deflater.deflate(byte[], int, int, int)", "offset": 27}, "line": {"number": 586}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pHVBvSKqV5pNmUpMq3vEugAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "void org.elasticsearch.index.translog.Translog.sync()", "offset": 2}, "line": {"number": 767}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Did6ELKrHHo6Q5OlK6_GZAAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "SelectorImpl.java"}, "function": {"name": "int sun.nio.ch.SelectorImpl.select(long)", "offset": 2}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApTh-"}} +{"Stackframe": {"function": {"name": "bitmap_string.isra.7"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAit8t"}} +{"Stackframe": {"function": {"name": "sock_wfree"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jVVHMYu0P2OEHJFmfTZ5eQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "CipherSpi.java"}, "function": {"name": "int javax.crypto.CipherSpi.engineDoFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)"}, "line": {"number": 735}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MgCiOnnGW7RnGD1RtS_HwgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "TextFieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.TextFieldMapper.doXContentBody(org.elasticsearch.common.xcontent.XContentBuilder, boolean, org.elasticsearch.common.xcontent.ToXContent$Params)"}, "line": {"number": 415}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8Lr1AwdmXjQ6E8sJ1LQOsQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer.lambda$executeSingleUpload$19(org.elasticsearch.repositories.s3.AmazonS3Reference, com.amazonaws.services.s3.model.PutObjectRequest)"}, "line": {"number": 465}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E-v8FNfqQYHt5vFsJHPNCQAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress$Entry.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 6}, "line": {"number": 957}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAilrf"}} +{"Stackframe": {"function": {"name": "__sock_create"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Jiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.writeIncrementalStateAndCommit(long, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)", "offset": 6}, "line": {"number": 628}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NOwpliUmPE7K5OCtB0_uiwAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "Lucene80NormsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.NormsProducer org.apache.lucene.codecs.lucene80.Lucene80NormsFormat.normsProducer(org.apache.lucene.index.SegmentReadState)"}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zu2cxjnj021U6YG5r_SQBwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$TreeNode java.util.HashMap$TreeNode.putTreeVal(java.util.HashMap, java.util.HashMap$Node[], int, java.lang.Object, java.lang.Object)", "offset": 2}, "line": {"number": 2116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LVJktE5O_eKuQzS_qlhvqQAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.DefaultIndexingChain$PerField org.apache.lucene.index.DefaultIndexingChain.getOrAddField(java.lang.String, org.apache.lucene.index.IndexableFieldType, boolean)", "offset": 10}, "line": {"number": 760}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "PrioritizedEsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.runAndClean(java.lang.Runnable)"}, "line": {"number": 241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hTCcyJ3soXig5DBwawFWwgAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "SharedSession.java"}, "function": {"name": "void jdk.internal.foreign.SharedSession.justClose()", "offset": 6}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "12wqq0CZSFWXQTyNvq7lawAAAAAAAABq"}} +{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.SoftDeletesRetentionMergePolicy.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.util.IOSupplier)", "offset": 7}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l5ZkyrayZACzWiFbND1wdwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ByteArrayOutputStream.java"}, "function": {"name": "byte[] java.io.ByteArrayOutputStream.toByteArray()"}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DsmnB-99lpR3jSBsZQO0JQAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "byte[] org.elasticsearch.xpack.core.security.authc.support.BCrypt.crypt_raw(byte[], byte[], int, int[])", "offset": 10}, "line": {"number": 1562}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0n7bnuaG-8sBjMSdabTn_gAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsReader.java"}, "function": {"name": "org.apache.lucene.index.Terms org.apache.lucene.codecs.blocktree.BlockTreeTermsReader.terms(java.lang.String)", "offset": 1}, "line": {"number": 292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oMr-xUy8NjCuFSJ4JeJcDQAAAAAAAAEZ"}} +{"Stackframe": {"file": {"name": "SearchHit.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.search.SearchHit.toInnerXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 38}, "line": {"number": 592}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u3PdJ9uaY7J6wq8TpSw5VQAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "PooledByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.PooledByteBufAllocator.newDirectBuffer(int, int)", "offset": 12}, "line": {"number": 331}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UlLH1TtX81jau37svfBqgQAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelHandlerContext io.netty.channel.AbstractChannelHandlerContext.flush()", "offset": 3}, "line": {"number": 893}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QH4VYcH0-bM7E6PfVIY9ggAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.ml.utils.InferenceProcessorInfoExtractor$$Lambda$7040+0x00000008023de458.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BWfrX2QdlPT8mMtH-6pvmQAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "IdentityHashMap.java"}, "function": {"name": "java.lang.Object java.util.IdentityHashMap.put(java.lang.Object, java.lang.Object)", "offset": 8}, "line": {"number": 428}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gr6Podewhx9_Rz-1pSpjLgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction$1.handleResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GMI3PZtY4pqLz85PHavuaAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "FilterInputStream.java"}, "function": {"name": "int java.io.FilterInputStream.read(byte[], int, int)"}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_93WPbrUDW14kcLWmrpKPQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "NamedDiffableValueSerializer.java"}, "function": {"name": "org.elasticsearch.cluster.Diff org.elasticsearch.cluster.NamedDiffableValueSerializer.readDiff(org.elasticsearch.common.io.stream.StreamInput, java.lang.Object)"}, "line": {"number": 19}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GkQZa3IswBElyiTMt5MGEQAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ReroutePhase.performAction(org.elasticsearch.cluster.node.DiscoveryNode, java.lang.String, boolean, org.elasticsearch.transport.TransportRequest)"}, "line": {"number": 969}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hLeIdbN4zWJHz84x2tdNAwAAAAAAAADR"}} +{"Stackframe": {"file": {"name": "Integer.java"}, "function": {"name": "int java.lang.Integer.parseInt(java.lang.String, int)", "offset": 39}, "line": {"number": 668}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k1mE9uRRLQFnqDwlSGynLgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeBulkItems$21(org.elasticsearch.action.ActionListener, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult)"}, "line": {"number": 852}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wQ_ty31z3DmE5XjxpCpS5QAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "PackedLongValues.java"}, "function": {"name": "void org.apache.lucene.util.packed.PackedLongValues$Iterator.fillBlock()", "offset": 3}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "ContextPreservingActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.ContextPreservingActionListener.onResponse(java.lang.Object)", "offset": 1}, "line": {"number": 31}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hWO0Ej8QxAN8OGdadeUgHAAAAAAAAABQ"}} +{"Stackframe": {"file": {"name": "NamedXContentRegistry.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.NamedXContentRegistry.parseNamedObject(java.lang.Class, java.lang.String, org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)", "offset": 8}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAENPt"}} +{"Stackframe": {"function": {"name": "kstat_irqs_usr"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kZgtpJIkDQ7_uBMazY7fxwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "boolean java.util.stream.ReferencePipeline.anyMatch(java.util.function.Predicate)"}, "line": {"number": 632}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AbryWQXPWxYtuiP4bBIegwAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.handleOperationRequest(org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 5}, "line": {"number": 336}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnJsR"}} +{"Stackframe": {"function": {"name": "unix_stream_read_generic"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sVRH8uyfnyQixTABDkZaEgAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$7195+0x000000080244af70.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CyFPDZBEiXoheKAUx-Kq0wAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeString(java.lang.String)", "offset": 3}, "line": {"number": 425}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi0ex"}} +{"Stackframe": {"function": {"name": "skb_release_all"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wNusbVCe8LxqIAQ1y37evwAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$7221+0x000000080251c000.getAsync(org.elasticsearch.action.ActionListener)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rG4zWNbzF43FlUaeZiWkVQAAAAAAAADE"}} +{"Stackframe": {"file": {"name": "LifecyclePolicy.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.LifecyclePolicy.toSteps(org.elasticsearch.client.Client, org.elasticsearch.license.XPackLicenseState)", "offset": 29}, "line": {"number": 246}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3zeYgqKoKpViatmGLneDpQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "int java.util.ArrayList$ArrayListSpliterator.characteristics()"}, "line": {"number": 1388}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nKhcql1SQ7g-aNYXxz6k1AAAAAAAAACl"}} +{"Stackframe": {"file": {"name": "ApacheHttpRequestFactory.java"}, "function": {"name": "org.apache.http.client.methods.HttpRequestBase com.amazonaws.http.apache.request.impl.ApacheHttpRequestFactory.create(com.amazonaws.Request, com.amazonaws.http.settings.HttpClientSettings)", "offset": 32}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WSancnmbX3N0mzUrLDNaPQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(io.netty.channel.AbstractChannelHandlerContext, java.lang.Object)"}, "line": {"number": 362}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 49}, "line": {"number": 267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ey48KottxpUVWqD_C991oQAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "DirectConstructorHandleAccessor.java"}, "function": {"name": "java.lang.Object jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(java.lang.Object[])", "offset": 7}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LeNDhekdw-sjNwsp6sqctgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "OsService.java"}, "function": {"name": "org.elasticsearch.monitor.os.OsStats org.elasticsearch.monitor.os.OsService$OsStatsCache.refresh()"}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pHZ30TKAe6C6T34R7-7vMgAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeVInt(int)", "offset": 11}, "line": {"number": 262}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5JuKxbkWPMw0EpITr8WSNAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "CodecReader.java"}, "function": {"name": "void org.apache.lucene.index.CodecReader.document(int, org.apache.lucene.index.StoredFieldVisitor)", "offset": 1}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACd4N"}} +{"Stackframe": {"function": {"name": "do_wait"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_56OZ5ZdGG3mX9wz1zNHYgAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "LockSupport.java"}, "function": {"name": "void java.util.concurrent.locks.LockSupport.park()", "offset": 3}, "line": {"number": 371}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyde"}} +{"Stackframe": {"function": {"name": "audit_filter_rules.constprop.21"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kjL3LVO9xzkttD37vWQ9qgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.DefaultChannelPipeline.writeAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 1066}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PxORMJeLnvYkd7o_ejUPcQAAAAAAAADp"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.index.IndexService org.elasticsearch.indices.IndicesService.createIndexService(java.lang.String, org.elasticsearch.cluster.metadata.IndexMetaData, org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.indices.fielddata.cache.IndicesFieldDataCache, java.util.List, org.elasticsearch.index.shard.IndexingOperationListener[])", "offset": 17}, "line": {"number": 448}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cESCe1Tetwzk9WZFJGO4wgAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$10(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.xpack.security.audit.AuditTrail, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 456}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VM-zYjHbw420CrRgZSSdCQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "void java.lang.String.checkIndex(int, int)"}, "line": {"number": 4570}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N0nOeOJdjggSFx_cpb47egAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "void org.apache.lucene.index.SegmentMerger.mergeTerms(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.codecs.NormsProducer)", "offset": 1}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_dVFF8yOMJrHrd13Z_YwqQAAAAAAAAFb"}} +{"Stackframe": {"file": {"name": "GlobalOrdinalsStringTermsAggregator.java"}, "function": {"name": "org.elasticsearch.search.aggregations.InternalAggregation org.elasticsearch.search.aggregations.bucket.terms.GlobalOrdinalsStringTermsAggregator.buildAggregation(long)", "offset": 42}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rV1JNblxRI5fLicyinWLbQAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 277}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k2iriyOmr9_9GjSrH7z_jwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object java.lang.management.ManagementFactory$$Lambda$261+0x0000000800d5ac40.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ihprad0bkU-u2IU9StodIgAAAAAAAAFX"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.applyChanges(org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState, java.lang.String, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder)", "offset": 32}, "line": {"number": 504}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i4PCA3W27MVi4Ei_Ff0q6QAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "TransportNodesInfoAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.info.NodeInfo org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction.nodeOperation(org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction$NodeInfoRequest)", "offset": 1}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Meupuj3mN3g2ScGhhzmNFQAAAAAAAAF4"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "com.amazonaws.services.s3.model.PutObjectResult com.amazonaws.services.s3.AmazonS3Client.putObject(com.amazonaws.services.s3.model.PutObjectRequest)", "offset": 63}, "line": {"number": 1821}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IHa31Kt95ZEX4I86HsYJtAAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "void org.elasticsearch.search.SearchService.loadOrExecuteQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.search.internal.SearchContext)", "offset": 3}, "line": {"number": 250}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fRMkFndiE_cl9dIgufgNmQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.startObject()"}, "line": {"number": 249}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6RxlcSCbdZsay0LZL6BomwAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$7851+0x00000008025e8cb8.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X0lArM8Um0i6Jb2IPyUDBwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "BasicDayOfMonthDateTimeField.java"}, "function": {"name": "int org.joda.time.chrono.BasicDayOfMonthDateTimeField.get(long)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1BtLvHTF43nwpZc72vczMQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction$$Lambda$7451+0x0000000801f2d128.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LDdYUFmfmBXmyn1AQ_9arwAAAAAAAAC8"}} +{"Stackframe": {"file": {"name": "OutboundMessage.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.transport.OutboundMessage.serialize(org.elasticsearch.common.io.stream.BytesStreamOutput)", "offset": 33}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NK6q-mYZhWe1E7afoKkwiQAAAAAAAADY"}} +{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.doHandleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 27}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hbRa_Mv_nNX73QDH-O5j0QAAAAAAAABb"}} +{"Stackframe": {"file": {"name": "CompletionFieldStats.java"}, "function": {"name": "org.elasticsearch.search.suggest.completion.CompletionStats org.elasticsearch.search.suggest.completion.CompletionFieldStats.completionStats(org.apache.lucene.index.IndexReader, java.lang.String[])", "offset": 9}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "f5okn6LIO72fwnskoiRwJAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction$$Lambda$7054+0x0000000801eb1868.get()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PbXXr1ohgiKjdKmG8bXqXAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "IndexModule.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.IndexModule.lambda$static$1(org.elasticsearch.index.engine.Engine)"}, "line": {"number": 547}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Gv4-gnM04seHvi2rk7HAtwAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.util.TreeMap$Entry java.util.TreeMap$PrivateEntryIterator.nextEntry()", "offset": 5}, "line": {"number": 1212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "20Vh0LR2s2ItTGiFG7p9YAAAAAAAAABp"}} +{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "org.apache.lucene.index.SortedDocValues org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer.getSorted(org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$SortedEntry)", "offset": 14}, "line": {"number": 846}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0Si9ua-OAmPMKLEbBoEhPQAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService.lambda$createShard$1(org.elasticsearch.index.shard.ShardId, org.elasticsearch.index.engine.Engine$Searcher)", "offset": 2}, "line": {"number": 343}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DYw6-LyNoVsQdM43hcJCegAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "LockSupport.java"}, "function": {"name": "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)", "offset": 1}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KKci4M_8u3lv7Ydwxf31oQAAAAAAAABh"}} +{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "void org.elasticsearch.transport.CopyBytesSocketChannel.doWrite(io.netty.channel.ChannelOutboundBuffer)", "offset": 24}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GHVg4DCslZzmAI9ykvrGBAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "CgroupMetrics.java"}, "function": {"name": "long jdk.internal.platform.CgroupMetrics.getMemoryLimit()"}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lN083j_rdg2B1dvviOhFMgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaResult org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica(org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.index.shard.IndexShard)"}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UfDyrL3FwaQ3-kXYQdojZgAAAAAAAAC9"}} +{"Stackframe": {"file": {"name": "EngineOutputRecord.java"}, "function": {"name": "void sun.security.ssl.EngineOutputRecord.write(sun.security.ssl.EngineArgs, sun.security.ssl.Authenticator, sun.security.ssl.CipherBox, int)", "offset": 51}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rDU1slesp8jXrjLdtmA2BAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "java.lang.String org.elasticsearch.xcontent.json.JsonXContentParser.currentName()"}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "PrioritizedEsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.run()", "offset": 6}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-pQ7u4Ee6imT9PbqfC5keAAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "FieldsIndexWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.FieldsIndexWriter.(org.apache.lucene.store.Directory, java.lang.String, java.lang.String, java.lang.String, java.lang.String, byte[], int, org.apache.lucene.store.IOContext)", "offset": 9}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CVegIjspc9VOluOpQVnKFgAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.getInternal(long)", "offset": 5}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NJGrW12l4VtfBBiRfaaqLQAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "PagedBytesAtomicFieldData.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.elasticsearch.index.fielddata.plain.PagedBytesAtomicFieldData$ValuesHolder.lookupOrd(long)", "offset": 1}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlqKz"}} +{"Stackframe": {"function": {"name": "__tcp_transmit_skb"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Er2yE5HxkoOQjHTSQIF_kwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentParser$Token org.elasticsearch.common.xcontent.json.JsonXContentParser.nextToken()"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wr21gCsicBxbZw2IJaNDDgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$apply$1(org.elasticsearch.action.support.ActionFilterChain, org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, java.lang.Void)"}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "382AxucgZGR9pbz3KlXhagAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService.maybeRefreshEngine(boolean)", "offset": 3}, "line": {"number": 923}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R4O21YPz5WkGUKdaZ1xVrgAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "MultiTermsEnum.java"}, "function": {"name": "void org.apache.lucene.index.MultiTermsEnum.pushTop()", "offset": 6}, "line": {"number": 279}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "r8jPkIagwkcKu3VFH_5eFQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.elasticsearch.search.internal.ContextIndexSearcher$1.bulkScorer(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 233}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_zxyi-wgtH_Wz8ut-WKY9wAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Setting.innerGetRaw(org.elasticsearch.common.settings.Settings)", "offset": 4}, "line": {"number": 550}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwAIU"}} +{"Stackframe": {"function": {"name": "ret_from_fork"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ajW2nQ-3UP-UP0xIB0YeegAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Recyclers.java"}, "function": {"name": "boolean org.elasticsearch.common.recycler.Recyclers$1$1.isRecycled()"}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9mGmNPajVnDGFBu5a15MIAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "IndexSearcher.java"}, "function": {"name": "org.apache.lucene.search.Weight org.apache.lucene.search.IndexSearcher.createWeight(org.apache.lucene.search.Query, org.apache.lucene.search.ScoreMode, float)", "offset": 1}, "line": {"number": 724}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rm7qvZUZlKLe_NANuZbHtAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "RestStatusToXContentListener.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestStatusToXContentListener.buildResponse(java.lang.Object, org.elasticsearch.xcontent.XContentBuilder)"}, "line": {"number": 22}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XgaFzHgWL9yv-6z5r4WLpgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "CloseableThreadLocal.java"}, "function": {"name": "void org.apache.lucene.util.CloseableThreadLocal.set(java.lang.Object)"}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "29240F2y6QpifctCBMbrCQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "BuiltinClassLoader.java"}, "function": {"name": "java.net.URL jdk.internal.loader.BuiltinClassLoader.lambda$findResourceOnClassPath$0(java.lang.String)"}, "line": {"number": 539}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qvj-4JBj-kdKXEa-laJZqgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$2.onResponse(java.lang.Void)"}, "line": {"number": 574}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PQ7bqNWiBKX3an-wfD_BAAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "LifecyclePolicy.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecyclePolicy org.elasticsearch.xpack.core.ilm.LifecyclePolicy.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.String)"}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6ugXrbvpCgFOZbv3dKa6swAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "ConjunctionUtils.java"}, "function": {"name": "org.apache.lucene.search.DocIdSetIterator org.apache.lucene.search.ConjunctionUtils.intersectScorers(java.util.Collection)", "offset": 9}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tr8slt8HY3Wuyaey7A19YAAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "java.util.Set org.elasticsearch.rest.RestController.getValidHandlerMethodSet(java.lang.String)", "offset": 5}, "line": {"number": 464}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KJs-T6FVV1KxfNtTA1gU6AAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "ChannelInputStream.java"}, "function": {"name": "int sun.nio.ch.ChannelInputStream.read(java.nio.ByteBuffer)", "offset": 7}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yQDYDWiyDEgJMgGvgsz9TQAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "Lucene54DocValuesProducer.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.apache.lucene.codecs.lucene54.Lucene54DocValuesProducer$CompressedBinaryDocValues$CompressedBinaryTermsEnum.next()", "offset": 10}, "line": {"number": 1365}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tItoNsUMOSUuiEQl3xYhbQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "int sun.nio.fs.UnixNativeDispatcher.open(sun.nio.fs.UnixPath, int, int)", "offset": 2}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OUV_Man7LKpLI_xXeAvtgAAAAAAAAACe"}} +{"Stackframe": {"file": {"name": "Netty4MessageChannelHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 8}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RzPPwKNnwrb8tJ77hoPpDQAAAAAAAADT"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.innerParseObject(org.elasticsearch.index.mapper.ParseContext, org.elasticsearch.index.mapper.ObjectMapper, org.elasticsearch.common.xcontent.XContentParser, java.lang.String, org.elasticsearch.common.xcontent.XContentParser$Token)", "offset": 20}, "line": {"number": 492}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACA"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction.execute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 16}, "line": {"number": 61}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x5NpytSG_YNdcrXrWt_K8gAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "RoleReferenceIntersection.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authz.store.RoleReferenceIntersection.lambda$buildRole$1(java.util.function.BiConsumer, org.elasticsearch.action.support.GroupedActionListener, org.elasticsearch.xpack.core.security.authz.store.RoleReference)"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WC84z5yW0bfbqtzaBiwk7QAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings$Builder org.elasticsearch.common.settings.Settings$Builder.put(org.elasticsearch.common.settings.Settings, boolean)"}, "line": {"number": 1135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ytZblqIBEsQV2ku_vlKaDgAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext org.elasticsearch.common.util.concurrent.ThreadContext.stashContext()", "offset": 8}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hve4jX92AzYM2N-JeQNG2QAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer.writeBlob(java.lang.String, boolean, boolean, org.elasticsearch.core.CheckedConsumer)", "offset": 53}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vtOmTuUGvKYiQRK_O9kHuwAAAAAAAANh"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "long[] org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.writeValues(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 116}, "line": {"number": 286}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W25rCJpWwcAu_jUXA-ofzQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "PendingReplicationActions.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.PendingReplicationActions.accept(java.lang.Object)"}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eLa88eGD5YHpas6x1G8apQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "FieldMapper.java"}, "function": {"name": "java.lang.String org.elasticsearch.index.mapper.FieldMapper.name()"}, "line": {"number": 265}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MDjyE5AlqASoc6cxfe5K2wAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory.deleteFile(java.lang.String)", "offset": 3}, "line": {"number": 339}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jW43N2PmWvpZYp55bora1gAAAAAAAACu"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 78}, "line": {"number": 577}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tsS1EtD0AN9RREU7M9BEeAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node[] java.util.HashMap.resize()"}, "line": {"number": 676}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u0qxTrkiZSat46G0GdrgmAAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "BytesRefHash.java"}, "function": {"name": "int[] org.apache.lucene.util.BytesRefHash.sort()", "offset": 18}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5VZIXKdThz-hZwdLu0KVfwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode.engineDoFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 2}, "line": {"number": 454}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHraA"}} +{"Stackframe": {"function": {"name": "lookup_nulls_elem_raw"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gaRLWCPFmMbsDDPHf8r6vQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "void java.lang.Throwable.(java.lang.String)", "offset": 73}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YNvLePk3bv25BUHN3KzEXQAAAAAAAACh"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 30}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OYnj1PBgc_QiC0SFcADBpQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "BulkOperationPacked6.java"}, "function": {"name": "void org.apache.lucene.util.packed.BulkOperationPacked6.decode(long[], int, long[], int, int)"}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VupuAC5J4NWIL7kdvuzpSAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress$ShardSnapshotStatus.writeTo(org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 476}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 1}, "line": {"number": 764}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eFaXX7H_gmfoLAN8WX-xDQAAAAAAAACO"}} +{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "void sun.nio.ch.FileChannelImpl.implCloseChannel()", "offset": 30}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cuz7PAFLw8DoVVSTVsTZvwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FilterIndexOutput.java"}, "function": {"name": "long org.elasticsearch.common.lucene.store.FilterIndexOutput.getChecksum()"}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_CTrWCBcF1yntIOzlzRqGQAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "RestBuilderListener.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestBuilderListener.buildResponse(java.lang.Object)", "offset": 1}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CBEprBuB4AK7YgJytOvjqwAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "void com.sun.crypto.provider.GaloisCounterMode$GCMEngine.processAAD()", "offset": 2}, "line": {"number": 828}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XwBU-eRBaCnHy44Hfhv2qwAAAAAAAAB2"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.extractToken(java.util.function.Consumer)", "offset": 18}, "line": {"number": 249}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FYp6NrRQUdcxcMQHOiZr7QAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "boolean io.netty.util.concurrent.DefaultPromise.setValue0(java.lang.Object)", "offset": 3}, "line": {"number": 615}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RIYqG8R7SOQv287DSnsK9QAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "HttpContentEncoder.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpContentEncoder.decode(io.netty.channel.ChannelHandlerContext, java.lang.Object, java.util.List)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ETOJ-3ScyIWVpISjqClk8AAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "SegmentTermsEnum.java"}, "function": {"name": "org.apache.lucene.index.PostingsEnum org.apache.lucene.codecs.lucene90.blocktree.SegmentTermsEnum.postings(org.apache.lucene.index.PostingsEnum, int)", "offset": 8}, "line": {"number": 1137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yz69EEqQZdFKMk1kXzfCQQAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.action.support.nodes.BaseNodeRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 262}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2MiI3b_EzPrgd_k9fjnuewAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "DefaultClientConnectionReuseStrategy.java"}, "function": {"name": "boolean org.apache.http.impl.client.DefaultClientConnectionReuseStrategy.keepAlive(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext)", "offset": 4}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k-oYEuE0qNzcsmMdylxs5gAAAAAAAAEK"}} +{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.fs.UnixChannelFactory.open(int, sun.nio.fs.UnixPath, java.lang.String, sun.nio.fs.UnixChannelFactory$Flags, int)", "offset": 58}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "Thread.java"}, "function": {"name": "void java.lang.Thread.run()", "offset": 1}, "line": {"number": 748}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.StandardDirectoryReader.doOpenIfChanged()"}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IsTeQJDaM3QSF6qkor-wtgAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(io.netty.channel.ChannelHandlerContext, io.netty.handler.codec.CodecOutputList, int)", "offset": 1}, "line": {"number": 310}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k2YYEoG7eeueJEEJjixcOAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.common.bytes.ReleasableBytesReference org.elasticsearch.cluster.coordination.PublicationTransportHandler.access$600(org.elasticsearch.cluster.coordination.PublicationTransportHandler, long, org.elasticsearch.cluster.Diff, org.elasticsearch.cluster.node.DiscoveryNode)"}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CIJa2mPNm8b1wwJ_UCRwpAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Lucene90PostingsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.FieldsConsumer org.apache.lucene.codecs.lucene90.Lucene90PostingsFormat.fieldsConsumer(org.apache.lucene.index.SegmentWriteState)"}, "line": {"number": 407}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6raSAOzsPI4fmpzu-S1plAAAAAAAAADf"}} +{"Stackframe": {"file": {"name": "SortedSetDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedSetDocValuesWriter.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.DocValuesConsumer)", "offset": 30}, "line": {"number": 191}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Reyju0By9wxqZBnf2BDPsgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.DefaultChannelPipeline.write(java.lang.Object)"}, "line": {"number": 1010}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "egxYzGb2aYe2691ohXwNJgAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeSystemUser(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 421}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$3.onResponse(java.lang.Void)", "offset": 7}, "line": {"number": 404}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "It3O82Qt-f1-LUtaeKWOtgAAAAAAAACY"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.updateChildren()", "offset": 34}, "line": {"number": 221}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hGSV5zKrRFpCoM5XmwxNpAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "boolean java.util.concurrent.LinkedTransferQueue$Node.block()"}, "line": {"number": 470}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "To01uEbCvRGfEp8XuZ7L4gAAAAAAAACe"}} +{"Stackframe": {"file": {"name": "FsProbe.java"}, "function": {"name": "org.elasticsearch.monitor.fs.FsInfo org.elasticsearch.monitor.fs.FsProbe.stats(org.elasticsearch.monitor.fs.FsInfo)", "offset": 16}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rVJnJ5WgkAAuxcvebNsXPwAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "int io.netty.handler.ssl.SslHandler.unwrap(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, int)", "offset": 9}, "line": {"number": 1344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p4JTdeovgihpyswPHew6jAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "FilterClient.java"}, "function": {"name": "void org.elasticsearch.client.FilterClient.doExecute(org.elasticsearch.action.Action, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WRtY-lihH3Vcv4ui-X8hvwAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "ProgressInputStream.java"}, "function": {"name": "int com.amazonaws.event.ProgressInputStream.read(byte[], int, int)", "offset": 4}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NrGc1Zv4PKi24qpmzBRPXgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportSingleItemBulkWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportSingleItemBulkWriteAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o9I8XHop3y7uLb8wdADAN______AcFkI"}} +{"Stackframe": {"function": {"name": "__key.128173"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.maybeMerge(org.apache.lucene.index.MergePolicy, org.apache.lucene.index.MergeTrigger, int)", "offset": 1}, "line": {"number": 2287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nnCec0a2-ZcuYpnWUHHz2AAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "ParserSettingsImpl.scala"}, "function": {"name": "akka.http.impl.settings.ParserSettingsImpl akka.http.impl.settings.ParserSettingsImpl$.fromSubConfig(com.typesafe.config.Config, com.typesafe.config.Config)", "offset": 4}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Eq50LgqGqKjaa52J2nxgrwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$UnmodifiableCollection$1.hasNext()"}, "line": {"number": 1048}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ta-wbK0BNd9K2A470omx8wAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor$Worker.run()"}, "line": {"number": 642}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dhLkPVDaHJtx9aYILWA1HgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TemplateUtils.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.template.TemplateUtils.loadTemplate(java.lang.String, java.lang.String, java.lang.String)", "offset": 1}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJlhJ"}} +{"Stackframe": {"function": {"name": "tlb_flush_mmu"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T5MVi_BSLsnWRbdoA3QO6gAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "int org.apache.lucene.index.ReadersAndUpdates$MergedDocValues.nextDoc()", "offset": 6}, "line": {"number": 463}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIjM"}} +{"Stackframe": {"function": {"name": "ip_list_rcv"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "At2XjH9VGC3bb_7sv7ixNgAAAAAAAACg"}} +{"Stackframe": {"file": {"name": "TransportClusterStatsAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction.newResponseAsync(org.elasticsearch.tasks.Task, org.elasticsearch.action.admin.cluster.stats.ClusterStatsRequest, java.util.List, java.util.List, org.elasticsearch.action.ActionListener)", "offset": 11}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DRWeWid83QDDYtOiSqJEvAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.TransportService$$Lambda$4143+0x000000080187ab00.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VbCJF2qb-nr5O5yW6In1-AAAAAAAAADr"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 53}, "line": {"number": 476}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4IIlAJ_QWDs41ERNR4mO_wAAAAAAAAC0"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.snapshotFile(org.elasticsearch.repositories.SnapshotShardContext, org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshot$FileInfo)", "offset": 40}, "line": {"number": 3518}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E73KHKAXpFF--gEMhIXshwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ReduceOps.java"}, "function": {"name": "void java.util.stream.ReduceOps$3ReducingSink.begin(long)"}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-AtWccoZa-O4zqWFUd2OjQAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "Character.java"}, "function": {"name": "int java.lang.Character.codePointAt(char[], int, int)", "offset": 3}, "line": {"number": 8976}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABI"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.xcontent.support.AbstractXContentParser.readMapEntries(org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier, java.util.Map)", "offset": 5}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sYti6chh3H8KzXctZah7uwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "CPoolProxy.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.impl.conn.CPoolProxy.receiveResponseHeader()"}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ipf9vBk16l7hoPZLPzmugAAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$1$$Lambda$5351+0x00000008019fb398.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene80.IndexedDISI.advance(int)"}, "line": {"number": 379}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u1vab_bWHs22Af2BxU83HQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.SnapshotsInProgress$Entry$$Lambda$9083+0x00000008020d79d8.read(org.elasticsearch.common.io.stream.StreamInput)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5uGB4PbBFcS_c1Q_L9s5wgAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "ExpandSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.ExpandSearchPhase.onPhaseDone()"}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "19uHIkVsOWsXPhLw6Psn-gAAAAAAAABj"}} +{"Stackframe": {"file": {"name": "IdentityHashMap.java"}, "function": {"name": "java.lang.Object java.util.IdentityHashMap.remove(java.lang.Object)", "offset": 20}, "line": {"number": 539}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bC4xUO3cZ_wW8IEDAJ-BNgAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction.execute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 11}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tiFd8nRg2cPSJT6QKmttjQAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "OutputStreamIndexOutput.java"}, "function": {"name": "void org.apache.lucene.store.OutputStreamIndexOutput.close()", "offset": 9}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BLpe-z4Yd5pwaMKR_BsaGwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "IndexTemplateRegistry.java"}, "function": {"name": "void org.elasticsearch.xpack.core.template.IndexTemplateRegistry.addTemplatesIfMissing(org.elasticsearch.cluster.ClusterState)", "offset": 2}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VfxNwSXmcg4qLu1frTmMwQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.file.Path java.nio.file.Files.move(java.nio.file.Path, java.nio.file.Path, java.nio.file.CopyOption[])", "offset": 3}, "line": {"number": 1432}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nZYX4eDXJe7LJpXvPCTaIAAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "ZipFile.java"}, "function": {"name": "int java.util.zip.ZipFile$ZipFileInputStream.read(byte[], int, int)", "offset": 12}, "line": {"number": 938}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_4aMzO1ApJ19_lxGgZ-T0wAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "ShardId.java"}, "function": {"name": "void org.elasticsearch.index.shard.ShardId.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 3}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "boolean org.elasticsearch.search.query.QueryPhase.searchWithCollector(org.elasticsearch.search.internal.SearchContext, org.elasticsearch.search.internal.ContextIndexSearcher, org.apache.lucene.search.Query, java.util.LinkedList, boolean, boolean)", "offset": 14}, "line": {"number": 224}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9UhJq84DtT-3RCemrOsp_wAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "PackedInts.java"}, "function": {"name": "void org.apache.lucene.util.packed.PackedInts.copy(org.apache.lucene.util.packed.PackedInts$Reader, int, org.apache.lucene.util.packed.PackedInts$Mutable, int, int, long[])", "offset": 3}, "line": {"number": 1131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oQ244tw9hOZz82ezjc7AlQAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "InboundDecoder.java"}, "function": {"name": "int org.elasticsearch.transport.InboundDecoder.internalDecode(org.elasticsearch.common.bytes.ReleasableBytesReference, java.util.function.Consumer)", "offset": 14}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "K68quRzmwMwkh1BjI5vLeAAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "AbstractNioChannel.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.channel.nio.AbstractNioChannel.newDirectBuffer(io.netty.buffer.ByteBuf)", "offset": 9}, "line": {"number": 450}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zTCZVeGzGzBkicqWtCifcQAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "ContentPath.java"}, "function": {"name": "java.lang.String org.elasticsearch.index.mapper.ContentPath.pathAsText(java.lang.String)", "offset": 1}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6KSNndy85gBTgVQEjf0SaQAAAAAAAAPX"}} +{"Stackframe": {"file": {"name": "ClientHello.java"}, "function": {"name": "byte[] sun.security.ssl.ClientHello$ClientHelloKickstartProducer.produce(sun.security.ssl.ConnectionContext)", "offset": 249}, "line": {"number": 649}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jK78v_SBWXBF1ZebUCWqCAAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "SecurityContext.java"}, "function": {"name": "void org.elasticsearch.xpack.security.SecurityContext.executeAfterRewritingAuthentication(java.util.function.Consumer, org.elasticsearch.Version)", "offset": 3}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1xjbOWy3X4Fn5bAGN-E_rwAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterStateTaskExecutor$ClusterTasksResult org.elasticsearch.cluster.service.MasterService.executeTasks(org.elasticsearch.cluster.service.MasterService$TaskInputs, org.elasticsearch.cluster.ClusterState)", "offset": 1}, "line": {"number": 836}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4Dt4PWF698AixBVjMbbA6QAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "SearchResponseSections.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.action.search.SearchResponseSections.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)"}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u93Ukboxh3n8fpdAM9THpwAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "AuthorizationUtils.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationUtils$AsyncAuthorizer.authorize(org.elasticsearch.xpack.security.authz.AuthorizationService)", "offset": 3}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E7J_ZVS2fIyPaAMkyne11QAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap$EntryIterator.next()"}, "line": {"number": 1615}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Vx2H7p06nNerPKpNR75HGQAAAAAAAADb"}} +{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.awaitMatch(java.util.concurrent.LinkedTransferQueue$Node, java.util.concurrent.LinkedTransferQueue$Node, java.lang.Object, boolean, long)", "offset": 39}, "line": {"number": 676}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "com.typesafe.config.impl.AbstractConfigValue com.typesafe.config.impl.SimpleConfig.findOrNull(com.typesafe.config.impl.AbstractConfigObject, com.typesafe.config.impl.Path, com.typesafe.config.ConfigValueType, com.typesafe.config.impl.Path)", "offset": 3}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "56zV-Vh8goVypAgGZVVZlAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportAutoPutMappingAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.mapping.put.TransportAutoPutMappingAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 33}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bFNBCgHVi2ZK2yGNK4LXZgAAAAAAAACv"}} +{"Stackframe": {"file": {"name": "OutboundMessage.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.transport.OutboundMessage.serialize(org.elasticsearch.common.io.stream.RecyclerBytesStreamOutput)", "offset": 28}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fOvbXkq5emlxJGl5W6ErrAAAAAAAAADD"}} +{"Stackframe": {"file": {"name": "SSLConnectionSocketFactory.java"}, "function": {"name": "java.net.Socket org.apache.http.conn.ssl.SSLConnectionSocketFactory.connectSocket(int, java.net.Socket, org.apache.http.HttpHost, java.net.InetSocketAddress, java.net.InetSocketAddress, org.apache.http.protocol.HttpContext)", "offset": 29}, "line": {"number": 384}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vTC_vdAIqHnsn8FgkEndNAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ChannelInboundHandlerAdapter.java"}, "function": {"name": "void io.netty.channel.ChannelInboundHandlerAdapter.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)"}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y9uy0jT_olZW6YV4k5pWhwAAAAAAAAFD"}} +{"Stackframe": {"file": {"name": "MultiDocValues.java"}, "function": {"name": "void org.apache.lucene.index.MultiDocValues$OrdinalMap.(java.lang.Object, org.apache.lucene.index.TermsEnum[], org.apache.lucene.index.MultiDocValues$OrdinalMap$SegmentMap, float)", "offset": 49}, "line": {"number": 578}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "enhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.executeHelper()", "offset": 61}, "line": {"number": 1139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "INgxpCPdHeCvGEJOglBewwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.Iterator java.util.HashMap$Values.iterator()"}, "line": {"number": 1043}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gvuD6B77CDYBJxa-S1A8kQAAAAAAAAEO"}} +{"Stackframe": {"file": {"name": "IndexLifecycleService.java"}, "function": {"name": "void org.elasticsearch.xpack.ilm.IndexLifecycleService.triggerPolicies(org.elasticsearch.cluster.ClusterState, boolean)", "offset": 42}, "line": {"number": 343}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B68XzYJFVnny1no-xetM6QAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKeys()", "offset": 3}, "line": {"number": 578}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "joHdKmx5pRoeIkTwEIvJpAAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "SingleObjectCache.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.SingleObjectCache.getOrRefresh()", "offset": 4}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CAhXwSkcgu2DqzZtJNny6wAAAAAAAAGd"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.startCommit(org.apache.lucene.index.SegmentInfos)", "offset": 80}, "line": {"number": 5518}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UhjFWZQiZUbkhXOYOHdzcAAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeString(java.lang.String, byte[], int)", "offset": 3}, "line": {"number": 417}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y9uy0jT_olZW6YV4k5pWhwAAAAAAAADb"}} +{"Stackframe": {"file": {"name": "MultiDocValues.java"}, "function": {"name": "void org.apache.lucene.index.MultiDocValues$OrdinalMap.(java.lang.Object, org.apache.lucene.index.TermsEnum[], org.apache.lucene.index.MultiDocValues$OrdinalMap$SegmentMap, float)", "offset": 31}, "line": {"number": 560}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "to-yOKaFnQ9KJ44ncZwPLwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "FsService.java"}, "function": {"name": "org.elasticsearch.monitor.fs.FsInfo org.elasticsearch.monitor.fs.FsService$FsInfoCache.refresh()"}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler$1.doRun()"}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApQK-"}} +{"Stackframe": {"function": {"name": "strchr"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIYH"}} +{"Stackframe": {"function": {"name": "ip_local_deliver_finish"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R8EFgYOYgypNKPaboigIPwAAAAAAAANY"}} +{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction$BulkOperation.doRun()", "offset": 80}, "line": {"number": 359}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7Slkc3C9A3eZsO9dv0O2hwAAAAAAAABt"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap.putMapEntries(java.util.Map, boolean)", "offset": 16}, "line": {"number": 513}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zbjoTM6fVBg8CyNBFi4-kgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "DefaultHttpResponseParser.java"}, "function": {"name": "org.apache.http.HttpMessage org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(org.apache.http.io.SessionInputBuffer)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZIYBlfA_274kIGosmkH_rQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.index.cache.bitset.BitsetFilterCache$$Lambda$7758+0x00000008025d6030.load(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yjC5toyTYYvkrIN0ixwqTgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "void java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$UnmodifiableEntry.(java.util.Map$Entry)"}, "line": {"number": 1765}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qnR7SPBrCbnbJk8v7ooOnwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "DelegatingMethodAccessorImpl.java"}, "function": {"name": "java.lang.Object jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.lang.Object, java.lang.Object[])"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "awEyDEBpp1Uwi0v_8VpoZgAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "DataOutput.java"}, "function": {"name": "void org.apache.lucene.store.DataOutput.writeVInt(int)", "offset": 4}, "line": {"number": 203}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Mhk7twoFFvGSvyWsBJzr5QAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService$$Lambda$9093+0x00000008020d9700.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yTEFrClQdB3Qsv66pEjNUwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "TieredMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.TieredMergePolicy$SegmentByteSizeDescending.compare(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.SegmentCommitInfo)"}, "line": {"number": 248}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kchJhMI6YwGBd2XIo2Em8wAAAAAAAABp"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.maybeAuthorizeRunAs(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 20}, "line": {"number": 413}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OF2u4sKIhhHNYD9MW460yQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "Netty4TcpChannel.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4TcpChannel.sendMessage(org.elasticsearch.common.bytes.BytesReference, org.elasticsearch.action.ActionListener)", "offset": 14}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1dfKi8RKHCcTdGDCyD7noAAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "ExportBulk.java"}, "function": {"name": "void org.elasticsearch.xpack.monitoring.exporter.ExportBulk.add(java.util.Collection)", "offset": 1}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LxQohxPSbL1kceLvylO9SwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "boolean java.util.HashMap$HashIterator.hasNext()"}, "line": {"number": 1577}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m5rnlBM51oea-h9ZD0jXEQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "MessageToMessageCodec.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageCodec$2.decode(io.netty.channel.ChannelHandlerContext, java.lang.Object, java.util.List)"}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "22wpVvU361m0JbmO4bgOiQAAAAAAAABH"}} +{"Stackframe": {"file": {"name": "RemoteRecoveryTargetHandler.java"}, "function": {"name": "void org.elasticsearch.indices.recovery.RemoteRecoveryTargetHandler$1.tryAction(org.elasticsearch.action.ActionListener)", "offset": 8}, "line": {"number": 349}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YUqlosets6-rXKgChfDXoQAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "DefaultBHttpClientConnection.java"}, "function": {"name": "void org.apache.http.impl.DefaultBHttpClientConnection.sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest)", "offset": 7}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zQ8NOEhW_FMdxKX5ZKa-AQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$6053+0x0000000801c34220.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bxC2U9ct9MOP9GdG6riRpwAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "BoolQueryBuilder.java"}, "function": {"name": "org.apache.lucene.search.Query org.elasticsearch.index.query.BoolQueryBuilder.doToQuery(org.elasticsearch.index.query.SearchExecutionContext)", "offset": 3}, "line": {"number": 317}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "inLD7FTDiZ9QX8bC0I9L_QAAAAAAAABz"}} +{"Stackframe": {"file": {"name": "HttpRequestExecutor.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext)", "offset": 14}, "line": {"number": 279}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BY2rTx9iNIHoPLSaIk3jZQAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "HeaderGroup.java"}, "function": {"name": "org.apache.http.Header[] org.apache.http.message.HeaderGroup.getHeaders(java.lang.String)", "offset": 5}, "line": {"number": 181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cj1i9bDkXvg3vH52VRJiMAAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "MapperUtils.java"}, "function": {"name": "void org.elasticsearch.index.mapper.MapperUtils.collect(org.elasticsearch.index.mapper.Mapper, java.util.Collection, java.util.Collection)", "offset": 7}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T7Ugi353BwPylAwIPK3gzQAAAAAAAAI2"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "void org.elasticsearch.search.fetch.FetchPhase.execute(org.elasticsearch.search.internal.SearchContext)", "offset": 77}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "L89gnK14agcS6gC2h0zhpQAAAAAAAAFD"}} +{"Stackframe": {"file": {"name": "Coordinator.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.Coordinator.publish(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.action.ActionListener, org.elasticsearch.cluster.coordination.ClusterStatePublisher$AckListener)", "offset": 26}, "line": {"number": 1095}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eiEAvRyyg7Q8ghJd6qO4ZQAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "boolean io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)", "offset": 11}, "line": {"number": 469}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4YmRwNpBmxWxpK1Ie_ffrAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "StringCoding.java"}, "function": {"name": "java.lang.StringCoding$Result java.lang.StringCoding.decodeASCII(byte[], int, int)"}, "line": {"number": 535}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zq8tlu3O9tP1fJ8wW0TDFAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings$Builder org.elasticsearch.common.settings.Settings$Builder.put(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 1126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eUeg5OxKpjKGFioJhJ7FvAAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "MetadataCreateIndexService.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterState org.elasticsearch.cluster.metadata.MetadataCreateIndexService.applyCreateIndexWithTemporaryService(org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.admin.indices.create.CreateIndexClusterStateUpdateRequest, boolean, org.elasticsearch.cluster.metadata.IndexMetadata, org.elasticsearch.cluster.metadata.IndexMetadata, java.util.List, java.util.function.Function, java.util.List, java.util.function.BiConsumer)"}, "line": {"number": 451}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Jg3hqIDeJUhfv2IEfsf4DQAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "org.apache.lucene.document.Document org.elasticsearch.gateway.PersistedClusterStateService$Writer.makeDocument(java.lang.String, org.elasticsearch.xcontent.ToXContent, org.elasticsearch.gateway.PersistedClusterStateService$DocumentBuffer)", "offset": 11}, "line": {"number": 1033}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C2bcwNqql_gFwky6XpRggwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkRead(java.lang.String)"}, "line": {"number": 751}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wd5OENbdMI1yNv67AQKeGwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "HandledTransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.HandledTransportAction$TransportHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "epgIddEEaGC68JQ508kjFQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesFormat.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesConsumer org.apache.lucene.codecs.lucene80.Lucene80DocValuesFormat.fieldsConsumer(org.apache.lucene.index.SegmentWriteState)"}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Z18PJDdsrxyMOJeaQbeK7QAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext.lambda$newStoredContext$5(boolean, org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct, org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct)", "offset": 1}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "St7lFjY3zfwOi_rfHJtWoQAAAAAAAAB7"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Object, java.util.Set)", "offset": 19}, "line": {"number": 1094}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CYcvl_Frh_HsIh0rws0B8gAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "FilterIndexOutput.java"}, "function": {"name": "void org.elasticsearch.common.lucene.store.FilterIndexOutput.writeByte(byte)"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7EnnOhShMGZ9Te5BWwjtoAAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "void io.netty.channel.AbstractChannel$AbstractUnsafe.flush()", "offset": 8}, "line": {"number": 897}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pSE2xvOwhx9_R0gr7EwEHgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction$1.handleResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 198}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9AimbJ3zXR64PEjKxAEStwAAAAAAAACO"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult io.netty.handler.ssl.SslHandler.wrap(io.netty.buffer.ByteBufAllocator, javax.net.ssl.SSLEngine, io.netty.buffer.ByteBuf, io.netty.buffer.ByteBuf)", "offset": 33}, "line": {"number": 1023}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACG-k"}} +{"Stackframe": {"function": {"name": "native_flush_tlb_others"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCER"}} +{"Stackframe": {"function": {"name": "futex_wait_setup"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qv94DrtQsXldqyi1u95XpQAAAAAAAABz"}} +{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.lambda$executeRequest$3(org.elasticsearch.tasks.Task, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.action.ActionListener, org.elasticsearch.action.search.TransportSearchAction$SearchAsyncActionProvider, org.elasticsearch.action.search.SearchRequest)", "offset": 13}, "line": {"number": 288}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PdntB36p_DeKmNIFQmfwvQAAAAAAAACH"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "org.elasticsearch.index.mapper.Mapper org.elasticsearch.index.mapper.DocumentParser.getMapper(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, java.lang.String[])", "offset": 24}, "line": {"number": 959}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZBmcQL98TXLA7smZymDadQAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "org.elasticsearch.cluster.SnapshotsInProgress$ShardSnapshotStatus org.elasticsearch.cluster.SnapshotsInProgress$ShardSnapshotStatus.readFrom(org.elasticsearch.common.io.stream.StreamInput)", "offset": 11}, "line": {"number": 424}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4U_zL7awL15Zhtkek0gtnAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "DataOutput.java"}, "function": {"name": "void org.apache.lucene.store.DataOutput.writeLong(long)", "offset": 1}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D31e08MRiulVFEesC2oTTQAAAAAAAABx"}} +{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.executeSearch(org.elasticsearch.action.search.SearchTask, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.OriginalIndices, java.util.List, java.util.function.BiFunction, org.elasticsearch.cluster.ClusterState, java.util.Map, org.elasticsearch.action.ActionListener, org.elasticsearch.action.search.SearchResponse$Clusters, org.elasticsearch.action.search.SearchContextId, org.elasticsearch.action.search.TransportSearchAction$SearchAsyncActionProvider)", "offset": 17}, "line": {"number": 622}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BHSm8gJjsmlMLXYl4aUtOAAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.value(java.lang.String)", "offset": 3}, "line": {"number": 754}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qCAXb4nsA8MBowrcfqVWbwAAAAAAAABd"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.commitInternal(org.apache.lucene.index.MergePolicy)", "offset": 17}, "line": {"number": 3770}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pxjfa4kaGJHYYykON7KvRgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UTF8JsonGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.UTF8JsonGenerator.writeString(java.lang.String)"}, "line": {"number": 442}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1_Zkws_RiLQY31aI-pl7oAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.SnapshotsInProgress$Entry$$Lambda$7200+0x0000000801e72af0.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1_JgcNyL_PAchgZJ1eUBTQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "char java.lang.String.charAt(int)", "offset": 1}, "line": {"number": 1527}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sMxUjH933Dnrx5VGtrDpyAAAAAAAAABH"}} +{"Stackframe": {"file": {"name": "SessionOutputBufferImpl.java"}, "function": {"name": "void org.apache.http.impl.io.SessionOutputBufferImpl.write(byte[], int, int)", "offset": 17}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Rr8mF3o9czEU_lrcVazITQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$2.doRun()"}, "line": {"number": 224}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIL"}} +{"Stackframe": {"function": {"name": "do_syscall_64"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sO4szKNZnXyLfMP7gPsjpgAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "CompressionMode.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressionMode$4.decompress(org.apache.lucene.store.DataInput, int, int, int, org.apache.lucene.util.BytesRef)", "offset": 5}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H-li-VPX4V5GB-C8EGJQQwAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "MessageToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 21}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "b_ElB1I-v_CyZZ9WkymqkQAAAAAAAAB0"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.applyInternal(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.ActionFilterChain, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 21}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yHrZEOlsPQ3YiI0ndQv2SAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "org.elasticsearch.action.ActionFuture org.elasticsearch.client.support.AbstractClient.execute(org.elasticsearch.action.Action, org.elasticsearch.action.ActionRequest)", "offset": 1}, "line": {"number": 397}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0WwlJv4egC9_TYsNNy-2uAAAAAAAAAC2"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "java.lang.String org.elasticsearch.transport.TcpTransport.handleRequest(org.elasticsearch.transport.TcpChannel, java.lang.String, org.elasticsearch.common.io.stream.StreamInput, long, int, org.elasticsearch.Version, java.net.InetSocketAddress, byte)", "offset": 23}, "line": {"number": 1242}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "roTQ2x4u1u0ROVEifn0kaQAAAAAAAACH"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.commit(long, long)", "offset": 18}, "line": {"number": 794}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Zf0w4S_WIxaQJn4-TjKTOwAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "InferenceProcessorInfoExtractor.java"}, "function": {"name": "int org.elasticsearch.xpack.ml.utils.InferenceProcessorInfoExtractor.countInferenceProcessors(org.elasticsearch.cluster.ClusterState)", "offset": 9}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MKsZ8NESNn92qMVcVTgwjQAAAAAAAAFT"}} +{"Stackframe": {"file": {"name": "RootObjectMapper.java"}, "function": {"name": "boolean org.elasticsearch.index.mapper.RootObjectMapper$TypeParser.processField(org.elasticsearch.index.mapper.RootObjectMapper$Builder, java.lang.String, java.lang.Object, org.elasticsearch.index.mapper.MappingParserContext)", "offset": 41}, "line": {"number": 209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XfRb2c4-WFPcLcvPGsB0MQAAAAAAAAGK"}} +{"Stackframe": {"file": {"name": "HttpContentEncoder.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpContentEncoder.encode(io.netty.channel.ChannelHandlerContext, io.netty.handler.codec.http.HttpObject, java.util.List)", "offset": 82}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "olxHK9E9Kvo_BFcP7SNkxQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "java.lang.String[] org.apache.lucene.store.FilterDirectory.listAll()"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kQXfLSX2IREpCmXu1yYpsgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture$$Lambda$3151.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o9I8XHop3y7uLb8wdADAN______AbGQZ"}} +{"Stackframe": {"function": {"name": "__key.128173"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "v9o_sKfrYjdaj4uQ2RTaHgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.cluster.coordination.PublicationTransportHandler.access$200(org.elasticsearch.cluster.Diff, org.elasticsearch.Version)"}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASir_"}} +{"Stackframe": {"function": {"name": "aa_label_is_subset"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-r9PdXX1mVfrKM4cjx98VQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QFD262cMfH9Fkx0D-SBUcgAAAAAAAABh"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "void java.io.FilePermission.init(int)", "offset": 19}, "line": {"number": 203}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h_yTy4lGEB-M1QSoVC2ShgAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "FilterAggregatorFactory.java"}, "function": {"name": "void org.elasticsearch.search.aggregations.bucket.filter.FilterAggregatorFactory.(java.lang.String, org.elasticsearch.index.query.QueryBuilder, org.elasticsearch.search.aggregations.support.AggregationContext, org.elasticsearch.search.aggregations.AggregatorFactory, org.elasticsearch.search.aggregations.AggregatorFactories$Builder, java.util.Map)", "offset": 1}, "line": {"number": 34}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZIZSvi1UzeCNllnk1XyijAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "AuthorizationUtils.java"}, "function": {"name": "boolean org.elasticsearch.xpack.security.authz.AuthorizationUtils.shouldReplaceUserWithSystem(org.elasticsearch.common.util.concurrent.ThreadContext, java.lang.String)"}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "moug4ghdvV0L6kc1EBfG1gAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "long org.elasticsearch.core.internal.io.Streams.copy(java.io.InputStream, java.io.OutputStream)"}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0nBVkJrBQHU_wusVG6_3KQAAAAAAAAB9"}} +{"Stackframe": {"file": {"name": "GlobalOrdinalsStringTermsAggregator.java"}, "function": {"name": "void org.elasticsearch.search.aggregations.bucket.terms.GlobalOrdinalsStringTermsAggregator.(java.lang.String, org.elasticsearch.search.aggregations.AggregatorFactories, org.elasticsearch.search.aggregations.support.ValuesSource$Bytes$WithOrdinals, org.elasticsearch.search.aggregations.bucket.terms.Terms$Order, org.elasticsearch.search.DocValueFormat, org.elasticsearch.search.aggregations.bucket.terms.TermsAggregator$BucketCountThresholds, org.elasticsearch.search.aggregations.bucket.terms.support.IncludeExclude$OrdinalsFilter, org.elasticsearch.search.internal.SearchContext, org.elasticsearch.search.aggregations.Aggregator, boolean, org.elasticsearch.search.aggregations.Aggregator$SubAggCollectionMode, boolean, java.util.List, java.util.Map)", "offset": 9}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o-BIkkl-h7WSo_nEcXjOQQAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.read(byte[], int, int)", "offset": 11}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e7YYWaQTMh8P2PCVzA2a8gAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "boolean java.util.AbstractMap.containsKey(java.lang.Object)", "offset": 9}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-ozgSBsN7Ccx-RY-f_nG9QAAAAAAAAB-"}} +{"Stackframe": {"file": {"name": "MasterFaultDetection.java"}, "function": {"name": "void org.elasticsearch.discovery.zen.MasterFaultDetection$MasterPinger.run()", "offset": 15}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dGzQsD4ULDPyV5gT0mUzewAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "Exporters.java"}, "function": {"name": "org.elasticsearch.xpack.monitoring.exporter.ExportBulk org.elasticsearch.xpack.monitoring.exporter.Exporters.openBulk()", "offset": 8}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJwJM"}} +{"Stackframe": {"function": {"name": "remove_vm_area"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R8694xCVhTAWRd-apeUFDAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.startObject(java.lang.String)"}, "line": {"number": 333}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6BbzjQpBChJ3CEm94u7s3wAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "TransportSingleShardAction.java"}, "function": {"name": "void org.elasticsearch.action.support.single.shard.TransportSingleShardAction$ShardTransportHandler.messageReceived(org.elasticsearch.action.support.single.shard.SingleShardRequest, org.elasticsearch.transport.TransportChannel)", "offset": 4}, "line": {"number": 295}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MMx7y-wVUK2KQ-oXeX0wPAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SearcherManager.java"}, "function": {"name": "org.apache.lucene.search.IndexSearcher org.apache.lucene.search.SearcherManager.getSearcher(org.apache.lucene.search.SearcherFactory, org.apache.lucene.index.IndexReader, org.apache.lucene.index.IndexReader)", "offset": 3}, "line": {"number": 198}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_"}} +{"Stackframe": {"file": {"name": "ElasticsearchConcurrentMergeScheduler.java"}, "function": {"name": "void org.elasticsearch.index.engine.ElasticsearchConcurrentMergeScheduler.doMerge(org.apache.lucene.index.MergeScheduler$MergeSource, org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 22}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9zTS8BJo8yF8ShqN_mSp8AAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "java.nio.file.Path sun.nio.fs.UnixPath.getFileName()"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cQ6Qsfe6NvfD6UlZmix01AAAAAAAAABQ"}} +{"Stackframe": {"file": {"name": "AbstractNioByteChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read()", "offset": 15}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.elasticsearch.index.store.ByteSizeCachingDirectory.createOutput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAROdk"}} +{"Stackframe": {"function": {"name": "security_inode_getattr"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "un5wCq3YNRPidqAMtgmPSAAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$RefreshResult org.elasticsearch.index.engine.InternalEngine.refresh(java.lang.String, org.elasticsearch.index.engine.Engine$SearcherScope, boolean)", "offset": 13}, "line": {"number": 1860}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DYrBcnSnxKpDp2GRNDxXQAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "DataInput.java"}, "function": {"name": "int org.apache.lucene.store.DataInput.readVInt()"}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8w2ZGyVQ-aMnL_pA1hWbwgAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext$AbstractWriteTask.run()", "offset": 5}, "line": {"number": 1078}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RwsPBLsceWCwsIBnpjKdgAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$7858+0x00000008025e9d78.getAsync(org.elasticsearch.action.ActionListener)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2LzHjSgmLRTwZBUFU5tC3AAAAAAAAAIW"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "boolean org.apache.lucene.index.ReadersAndUpdates.writeFieldUpdates(org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos$FieldNumbers, long, org.apache.lucene.util.InfoStream)", "offset": 76}, "line": {"number": 628}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1_TZoRpWT4eGJlelAJFangAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "ResourceWatcherService.java"}, "function": {"name": "void org.elasticsearch.watcher.ResourceWatcherService$ResourceMonitor.run()", "offset": 2}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MpA-_yb_lGv178DTnH5RUAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "void java.io.FilePermission.(java.lang.String, java.lang.String)", "offset": 1}, "line": {"number": 277}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w9w8XUGzqm4xr4E1qM-rhQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "void java.util.stream.AbstractPipeline.copyInto(java.util.stream.Sink, java.util.Spliterator)", "offset": 4}, "line": {"number": 481}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6vLdbR-rUObkBHp1yQiB0AAAAAAAAACD"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler$PublicationContext.buildDiffAndSerializeStates()", "offset": 13}, "line": {"number": 290}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kgbfix2D2TfaYMD2TJSWJAAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$6476+0x0000000801c86e48.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1oBnNdsJQEj_XlDQgtQSnwAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.settings.Settings.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 2}, "line": {"number": 618}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OlG3pVqxe7ubhksaNvPHVgAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeCollection(java.util.Collection, org.elasticsearch.common.io.stream.Writeable$Writer)", "offset": 2}, "line": {"number": 1062}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w0R6xpOnzOUCU8VEb3MwxQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.internal.SearchContext org.elasticsearch.search.SearchService.createAndPutContext(org.elasticsearch.search.internal.ShardSearchRequest)"}, "line": {"number": 461}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "36qODdc5_sG38C3jmrtkhgAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator$$Lambda$6971+0x0000000801e9c000.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AAn_OLmzgN0q8Ywe9O03FgAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.decRef(org.apache.lucene.index.SegmentInfos)", "offset": 1}, "line": {"number": 629}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "b7OxXHSN-wfJ7WDtAWiuTQAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "int org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat$DeserializeMetaBlobInputStream.getAvailable()", "offset": 3}, "line": {"number": 304}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SI-THagm7WOCUtDdZGu7SwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "FollowersChecker.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.FollowersChecker$FollowerChecker.access$1700(org.elasticsearch.cluster.coordination.FollowersChecker$FollowerChecker)"}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Vx2H7p06nNerPKpNR75HGQAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.awaitMatch(java.util.concurrent.LinkedTransferQueue$Node, java.util.concurrent.LinkedTransferQueue$Node, java.lang.Object, boolean, long)", "offset": 19}, "line": {"number": 656}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMs6N"}} +{"Stackframe": {"function": {"name": "ep_scan_ready_list.constprop.20"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3yjtk_5JiUgc9hyftJPMGwAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "Lucene50PostingsReader.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene50.Lucene50PostingsReader$BlockPostingsEnum.nextDoc()", "offset": 4}, "line": {"number": 648}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YSiZZa16pQ0fMzZ8JTkGSQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "MessageDigest.java"}, "function": {"name": "void java.security.MessageDigest$Delegate.engineUpdate(byte[], int, int)"}, "line": {"number": 654}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aT-ah139K7J7PZ8E2ZKbIAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "BytesReferenceStreamInput.java"}, "function": {"name": "int org.elasticsearch.common.bytes.BytesReferenceStreamInput.read(byte[], int, int)"}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAENOq"}} +{"Stackframe": {"function": {"name": "kstat_irqs"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GGCEvN8t-grwQDiWlXbYwgAAAAAAAABC"}} +{"Stackframe": {"file": {"name": "OutputRecord.java"}, "function": {"name": "long sun.security.ssl.OutputRecord.encrypt(sun.security.ssl.SSLCipher$SSLWriteCipher, byte, java.nio.ByteBuffer, int, int, int, sun.security.ssl.ProtocolVersion)", "offset": 13}, "line": {"number": 336}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlw0"}} +{"Stackframe": {"function": {"name": "show_mountinfo"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2LzHjSgmLRTwZBUFU5tC3AAAAAAAAAD6"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "boolean org.apache.lucene.index.ReadersAndUpdates.writeFieldUpdates(org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos$FieldNumbers, long, org.apache.lucene.util.InfoStream)", "offset": 44}, "line": {"number": 596}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9J54Rq68TS7B5VvAGA76dQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "int io.netty.channel.nio.NioEventLoop.select(long)", "offset": 1}, "line": {"number": 810}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YQ_8e8jbfnaSxzTbLcpNZQAAAAAAAAFi"}} +{"Stackframe": {"file": {"name": "ExpandSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.ExpandSearchPhase.run()", "offset": 52}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TxmpRTdMPYZXVR4alkKtjgAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "AbstractCollection.java"}, "function": {"name": "boolean java.util.AbstractCollection.containsAll(java.util.Collection)", "offset": 1}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "poo-1v2aw5e3OKkq9Ls_WgAAAAAAAAGN"}} +{"Stackframe": {"file": {"name": "TimeseriesLifecycleType.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.TimeseriesLifecycleType.getOrderedActions(org.elasticsearch.xpack.core.ilm.Phase)", "offset": 16}, "line": {"number": 207}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OvuQT57UFe3tjOaheCA5KgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Object.java"}, "function": {"name": "java.lang.String java.lang.Object.toString()"}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RTchl6Vcm4Bc2NrejFGSagAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 5}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JEFRx205AMaHlwzWP0W_-gAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$3142.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HRZBzmi--pIW2SbSHQb5jgAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutionBuilderImpl.execute(com.amazonaws.http.HttpResponseHandler)", "offset": 7}, "line": {"number": 680}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1-zWJVTR5u1TlHfVLfs7BQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "JvmGcMonitorService.java"}, "function": {"name": "void org.elasticsearch.monitor.jvm.JvmGcMonitorService$JvmMonitor.run()"}, "line": {"number": 391}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyOq"}} +{"Stackframe": {"function": {"name": "audit_filter_rules.constprop.21"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l"}} +{"Stackframe": {"function": {"name": "filename_lookup"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTq0"}} +{"Stackframe": {"function": {"name": "dentry_path"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "56J_quP6E7ubMy0oFC4pVgAAAAAAAADY"}} +{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.lang.Object java.util.TreeMap.put(java.lang.Object, java.lang.Object, boolean)", "offset": 45}, "line": {"number": 828}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QqMFArUGE7c3aczTAAedSAAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "PackedLongValues.java"}, "function": {"name": "void org.apache.lucene.util.packed.PackedLongValues$Builder.pack()"}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UcMrTkRqTyiU1A-4TStXKgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "FileChannel.java"}, "function": {"name": "java.nio.channels.FileChannel java.nio.channels.FileChannel.open(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])", "offset": 1}, "line": {"number": 292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lnUCyqDyVJYAXu-upQeomAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ClientConnectionSettings.scala"}, "function": {"name": "java.lang.Object akka.http.scaladsl.settings.ClientConnectionSettings$.apply(akka.actor.ActorSystem)"}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABC"}} +{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient)", "offset": 5}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EFoOI6BMp-b-Y3eJPVq_QQAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "MessageToByteEncoder.java"}, "function": {"name": "void io.netty.handler.codec.MessageToByteEncoder.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 7}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "coLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "ConstructingObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.ConstructingObjectParser.apply(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)"}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lNbJGsljCsSa7_hADBMYjAAAAAAAAABq"}} +{"Stackframe": {"file": {"name": "SearchHits.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.search.SearchHits.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 8}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "q45w55rXvyar8CjaUKJyrAAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$doSnapshotShard$77(org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.apache.lucene.index.IndexCommit, org.elasticsearch.index.shard.ShardId, org.elasticsearch.snapshots.SnapshotId, java.util.List, boolean, org.elasticsearch.common.blobstore.BlobContainer, java.lang.Runnable, org.elasticsearch.repositories.ShardGeneration, org.elasticsearch.repositories.SnapshotShardContext, java.util.Collection)", "offset": 19}, "line": {"number": 2929}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l8-8MRFLE8av7SNHPQQJVgAAAAAAAABw"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrap(io.netty.channel.ChannelHandlerContext, boolean)", "offset": 22}, "line": {"number": 843}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FM3-t6elawMDBldwcnmgtwAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "FetchLookupFieldsPhase.java"}, "function": {"name": "java.util.List org.elasticsearch.action.search.FetchLookupFieldsPhase.groupLookupFieldsByClusterAlias(org.elasticsearch.search.internal.InternalSearchResponse)", "offset": 3}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BFI7c7JS1eVbUcz-CuyraAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.poll(long, java.util.concurrent.TimeUnit)"}, "line": {"number": 1374}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bCqOb88D5a1Y3_63cVROYAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$3153.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VthdIAkyIWxV-e9fI9rVBQAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 1}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlId_"}} +{"Stackframe": {"function": {"name": "ip_rcv"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WOLvJGkQUNLVCxofhieaBAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "AggregationContext.java"}, "function": {"name": "org.apache.lucene.search.Query org.elasticsearch.search.aggregations.support.AggregationContext$ProductionAggregationContext.buildQuery(org.elasticsearch.index.query.QueryBuilder)"}, "line": {"number": 403}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GX_xnOZbGU6onMekAp9M6QAAAAAAAABa"}} +{"Stackframe": {"file": {"name": "Netty4MessageChannelHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 7}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4kWCaNFLMV9D_w_Vhl3uMQAAAAAAAADQ"}} +{"Stackframe": {"file": {"name": "MSBRadixSorter.java"}, "function": {"name": "void org.apache.lucene.util.MSBRadixSorter.radixSort(int, int, int, int)", "offset": 33}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvQq"}} +{"Stackframe": {"function": {"name": "hrtimer_sleeper_start_expires"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hpS1QtdrBQjGg-LCbfqeSAAAAAAAAF9M"}} +{"Stackframe": {"function": {"name": "br_handle_frame"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7ubOsYlEqTZxYNoZCROO1wAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "Actor.scala"}, "function": {"name": "void akka.actor.Actor.aroundReceive$(akka.actor.Actor, scala.PartialFunction, java.lang.Object)"}, "line": {"number": 535}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT"}} +{"Stackframe": {"function": {"name": "wake_up_q"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sc4D-HUp7vlbJIxV4XTtIQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler$1.doRun()"}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YUwJS6kVpV4XvYu7ZD33UwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "MatchOps.java"}, "function": {"name": "java.lang.Object java.util.stream.MatchOps$MatchOp.evaluateSequential(java.util.stream.PipelineHelper, java.util.Spliterator)"}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EwUkTSZKehDeZ3ynAFaE0wAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ShardSearchRequest.java"}, "function": {"name": "void org.elasticsearch.search.internal.ShardSearchRequest.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 1}, "line": {"number": 248}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MCPvRzL0hLsMJ48442a8vgAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "SSLSocketInputRecord.java"}, "function": {"name": "int sun.security.ssl.SSLSocketInputRecord.readHeader()", "offset": 1}, "line": {"number": 472}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ovRPcszTde0VZh4hrqQUtwAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "void org.elasticsearch.search.query.QueryPhase.execute(org.elasticsearch.search.internal.SearchContext)", "offset": 11}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2wnY5LHpXWwzeDfG9W1LxgAAAAAAAADG"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeString(java.lang.String)", "offset": 24}, "line": {"number": 447}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "62NN0ll4PDIiCun_FlxehgAAAAAAAADk"}} +{"Stackframe": {"file": {"name": "TopHitsAggregator.java"}, "function": {"name": "org.elasticsearch.search.aggregations.InternalAggregation org.elasticsearch.search.aggregations.metrics.tophits.TopHitsAggregator.buildAggregation(long)", "offset": 22}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgCV"}} +{"Stackframe": {"function": {"name": "do_softirq.part.20"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WuJP2ZlrkWY4fYf76RE1-wAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "void org.elasticsearch.index.store.Store$StoreDirectory.deleteFile(java.lang.String)"}, "line": {"number": 704}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4ksqoSQaCDcXF2GHOzi7FwAAAAAAAAAv"}} +{"Stackframe": {"file": {"name": "SSLHandshake.java"}, "function": {"name": "void sun.security.ssl.SSLHandshake.kickstart(sun.security.ssl.HandshakeContext)", "offset": 18}, "line": {"number": 529}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile$$Lambda$1716.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Jn0UNoyB8RODf8CSewSSrwAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "NodeService.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.info.NodeInfo org.elasticsearch.node.NodeService.info(boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean)", "offset": 4}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tDMJQZ6YV9dqMIolgyhxdAAAAAAAAACN"}} +{"Stackframe": {"file": {"name": "NioSocketChannel.java"}, "function": {"name": "void io.netty.channel.socket.nio.NioSocketChannel.doWrite(io.netty.channel.ChannelOutboundBuffer)", "offset": 34}, "line": {"number": 411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9MN2fgYYfPHjYLcC665B_QAAAAAAAACT"}} +{"Stackframe": {"file": {"name": "PackedLongValues.java"}, "function": {"name": "void org.apache.lucene.util.packed.PackedLongValues$Builder.pack(long[], int, int, float)", "offset": 17}, "line": {"number": 285}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Iq0mlN2p-kwJDD_iNJOzpQAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "ExecutorUtils.java"}, "function": {"name": "void co.elastic.apm.agent.util.ExecutorUtils$2.run()", "offset": 6}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8j1DDzq35ky0hRladLMlAAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$finalizeSnapshot$45(org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.snapshots.SnapshotId)"}, "line": {"number": 1465}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o-YCkVIb1YKeUkrNTWvXyAAAAAAAAABP"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$7(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationResult)", "offset": 9}, "line": {"number": 447}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m7zGOMSqFaBnVhhzRowaWAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct.access$2100(org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct, java.util.Map)"}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kzf2S9k1qbr0BOhKsbsKTAAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "MessageToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 6}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s"}} +{"Stackframe": {"function": {"name": "__do_sys_newstat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nhhjya476W1WfBuGXQUi0QAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "org.elasticsearch.cluster.DiffableUtils$MapDiff org.elasticsearch.cluster.DiffableUtils.readImmutableOpenMapDiff(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)"}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M0BdGcfCFDkj9hzrRHcPqQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateAppliers(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder)"}, "line": {"number": 539}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QjcJgCUAsytsXGSmYCNuVgAAAAAAAADM"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 94}, "line": {"number": 629}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KU_l7oGL7N35bnBXHoHVpAAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.lambda$consumeToken$1(org.elasticsearch.xpack.core.security.authc.Realm, org.elasticsearch.xpack.core.security.authc.AuthenticationToken, java.util.concurrent.atomic.AtomicReference, java.util.concurrent.atomic.AtomicReference, long, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.authc.Authenticator$Context, java.util.Map, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 15}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eel_AF4MFS6VTogqEciizwAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeSystemUser(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 648}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OM9gozgq3V-c4gPwstZkSQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "java.lang.Object java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()"}, "line": {"number": 899}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZaQmU-IXyGvFS9G6a9D4BQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "void java.nio.file.Files.delete(java.nio.file.Path)"}, "line": {"number": 1146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IAf9e80wW0ROOv48VcVi-AAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$7235+0x000000080251dd80.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_osC856Rboo56_P8whHO-AAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "SSLSocketInputRecord.java"}, "function": {"name": "int sun.security.ssl.SSLSocketInputRecord.readHeader()", "offset": 1}, "line": {"number": 477}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j28kOyi7SuaCDi2YxjsqIQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$2.onResponse(java.lang.Object)"}, "line": {"number": 386}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yrynjr7wkKxyqWOPiuvTRwAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "ProtectionDomain.java"}, "function": {"name": "java.security.PermissionCollection java.security.ProtectionDomain$JavaSecurityAccessImpl$1.get(java.security.ProtectionDomain)"}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lqMTL_-yNkq8p4m30utXwgAAAAAAAABe"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport$NodeChannels.sendRequest(long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions)", "offset": 14}, "line": {"number": 343}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ymtcT7XngDCOtcgo8NmgJgAAAAAAAABa"}} +{"Stackframe": {"file": {"name": "Netty4MessageChannelHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 13}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz9G"}} +{"Stackframe": {"function": {"name": "__audit_syscall_exit"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4GC"}} +{"Stackframe": {"function": {"name": "netlink_dump"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimtb"}} +{"Stackframe": {"function": {"name": "sock_sendmsg"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qMbPVznwEx5ReH3mSJFkBwAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "MultiTermsEnum.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.apache.lucene.index.MultiTermsEnum.next()", "offset": 14}, "line": {"number": 301}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Yu_6L4HRShupVCJ8N-cmXQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "NodeClient.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.client.node.NodeClient.executeLocally(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iUM7HhCYw8WqPBVTethJVwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "UpdateHelper.java"}, "function": {"name": "org.elasticsearch.action.update.UpdateHelper$Result org.elasticsearch.action.update.UpdateHelper.prepare(org.elasticsearch.action.update.UpdateRequest, org.elasticsearch.index.shard.IndexShard, java.util.function.LongSupplier)"}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LHQIqPZNDAtBb5Urr3NFHgAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.maybeLookupRunAsUser(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 205}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SNXtf-Jqv_bI3ffaDV5u3AAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "Stream.java"}, "function": {"name": "java.util.stream.Stream java.util.stream.Stream.concat(java.util.stream.Stream, java.util.stream.Stream)", "offset": 6}, "line": {"number": 1619}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rRvi7nTwy9T2bV27jqhTVgAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "DslJsonSerializer.java"}, "function": {"name": "void co.elastic.apm.agent.report.serialize.DslJsonSerializer.serializeStackTraceElement(java.lang.StackTraceElement)", "offset": 4}, "line": {"number": 1013}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ABw"}} +{"Stackframe": {"function": {"name": "__softirqentry_text_start"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uMSsXF_yPGpSxUlSgDA0AwAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "StringLatin1.java"}, "function": {"name": "java.lang.String java.lang.StringLatin1.toLowerCase(java.lang.String, byte[], java.util.Locale)", "offset": 14}, "line": {"number": 443}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GVtE5azmnq7oQE07RxtqrwAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "SearcherManager.java"}, "function": {"name": "org.apache.lucene.search.IndexSearcher org.apache.lucene.search.SearcherManager.refreshIfNeeded(org.apache.lucene.search.IndexSearcher)", "offset": 2}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hw6jP6DYEftnZzIDQYA-bwAAAAAAAABi"}} +{"Stackframe": {"file": {"name": "DateFieldMapper.java"}, "function": {"name": "org.apache.lucene.search.Query org.elasticsearch.index.mapper.DateFieldMapper$DateFieldType.rangeQuery(java.lang.Object, java.lang.Object, boolean, boolean, org.elasticsearch.common.geo.ShapeRelation, java.time.ZoneId, org.elasticsearch.common.time.DateMathParser, org.elasticsearch.index.query.SearchExecutionContext)", "offset": 8}, "line": {"number": 450}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_F5LSDLIFKxMSmE4mnWHzgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.ingest.IngestService$$Lambda$5571+0x0000000801b1f8a0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PrNII2l46oclr0RXWTYMUAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "CleanerImpl.java"}, "function": {"name": "void jdk.internal.ref.CleanerImpl$PhantomCleanableRef.performCleanup()"}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FedFnYQW8bHf16nVrC3eNgAAAAAAAAE2"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 70}, "line": {"number": 338}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD7KI"}} +{"Stackframe": {"function": {"name": "mutex_spin_on_owner"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ojpv1HELhgp1kupkcCnqDQAAAAAAAADQ"}} +{"Stackframe": {"file": {"name": "Handler.java"}, "function": {"name": "void sun.net.www.protocol.jar.Handler.parseURL(java.net.URL, java.lang.String, int, int)", "offset": 38}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gvuD6B77CDYBJxa-S1A8kQAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "IndexLifecycleService.java"}, "function": {"name": "void org.elasticsearch.xpack.ilm.IndexLifecycleService.triggerPolicies(org.elasticsearch.cluster.ClusterState, boolean)", "offset": 17}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALyki"}} +{"Stackframe": {"function": {"name": "dput"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "java.lang.Throwable java.lang.Throwable.fillInStackTrace(int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ahPUgO5HrpkjK8o4_e1P2gAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.netty.channel.ChannelPromise)", "offset": 7}, "line": {"number": 816}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "54HjE2XSSY1b0Ccf-47sJAAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.UTF8StreamJsonParser._finishString2(char[], int)", "offset": 10}, "line": {"number": 2458}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Qh22cv3M-xNK0_IOuNdQuQAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader$SerializedDocument org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader.document(int)", "offset": 2}, "line": {"number": 573}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iYUxWHXTfn0bGmFccSkBmgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.nrtIsCurrent(org.apache.lucene.index.SegmentInfos)"}, "line": {"number": 5663}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KP7ul0MvWr6g2vIy7Z-XSgAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "StoredFieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.index.StoredFieldsConsumer.initStoredFieldsWriter()", "offset": 1}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qmhrzhROIxdFfT_O0ufQNgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkWrite(java.lang.String)"}, "line": {"number": 838}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACfXN"}} +{"Stackframe": {"function": {"name": "__x64_sys_wait4"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hpS1QtdrBQjGg-LCbfqeSAAAAAAAAFs7"}} +{"Stackframe": {"function": {"name": "br_handle_frame_finish"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GR2FEpkknq9K1pcz6UJg9wAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.performOnPrimary(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.update.UpdateHelper, java.util.function.LongSupplier, org.elasticsearch.action.bulk.MappingUpdatePerformer, java.util.function.Consumer, org.elasticsearch.action.ActionListener, org.elasticsearch.threadpool.ThreadPool, java.lang.String)", "offset": 73}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "A80fpNwLg5UyZGOl2HXL1wAAAAAAAACv"}} +{"Stackframe": {"file": {"name": "MetaDataMappingService.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterState org.elasticsearch.cluster.metadata.MetaDataMappingService$PutMappingExecutor.applyRequest(org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.admin.indices.mapping.put.PutMappingClusterStateUpdateRequest, java.util.Map)", "offset": 23}, "line": {"number": 267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mmckjE-MysbZhDPP6gNxewAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.acquirePrimaryOperationPermit(org.elasticsearch.action.ActionListener, java.lang.String, java.lang.Object, boolean)", "offset": 3}, "line": {"number": 3325}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN6ND"}} +{"Stackframe": {"function": {"name": "kernfs_sop_show_path"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rVnovIQDyvbeYDNhpsDvaAAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "LRUQueryCache.java"}, "function": {"name": "org.apache.lucene.search.DocIdSet org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight.cache(org.apache.lucene.index.LeafReaderContext)", "offset": 4}, "line": {"number": 708}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e9bWXgbQU55mRVKn1epp1wAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "BytesReferenceStreamInput.java"}, "function": {"name": "void org.elasticsearch.common.bytes.BytesReferenceStreamInput.ensureCanReadBytes(int)"}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zXvjOvDFEHH50WhZ8-7e_gAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "int io.netty.channel.nio.NioEventLoop.select(long)", "offset": 1}, "line": {"number": 879}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$1.onResponse(java.lang.Object)"}, "line": {"number": 59}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Uh6LcwID5aJukzbO3rioJwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$3134.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WNc1OyRdaTydSpAMWEH8RgAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "ESLZ4Compressor.java"}, "function": {"name": "int org.elasticsearch.lz4.ESLZ4Compressor.compress(byte[], int, int, byte[], int, int)", "offset": 4}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA9F"}} +{"Stackframe": {"function": {"name": "mangle_path"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0gz1mhmhTxHCVZG94cP1QgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ChannelActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.ChannelActionListener.onResponse(java.lang.Object)"}, "line": {"number": 20}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vz3TbuBnWyl9Ei5te-E_CAAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$CommitId org.elasticsearch.index.shard.IndexShard.flush(org.elasticsearch.action.admin.indices.flush.FlushRequest)", "offset": 10}, "line": {"number": 1420}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FWw0sO1gv9Ot9iWifmMKHgAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "org.elasticsearch.cluster.SnapshotsInProgress$Entry org.elasticsearch.snapshots.SnapshotsService$SnapshotShardsUpdateContext.applyToEntry(org.elasticsearch.cluster.SnapshotsInProgress$Entry, java.util.List)", "offset": 3}, "line": {"number": 3730}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ANUDzCguopTSw91qnI0ylAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "TaskTransportChannel.java"}, "function": {"name": "void org.elasticsearch.transport.TaskTransportChannel.sendResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "29ZzMrfJSl80B2Ozek1-kAAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.moveToNextPhase(org.elasticsearch.action.search.SearchPhaseController, org.elasticsearch.common.util.concurrent.AtomicArray, org.elasticsearch.action.search.SearchPhaseController$ReducedQueryPhase, org.elasticsearch.common.util.concurrent.AtomicArray)", "offset": 6}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "y_GIpaxCX5IFnS0F_BXM3wAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "java.lang.Object com.amazonaws.http.AmazonHttpClient$RequestExecutor.handleResponse(com.amazonaws.http.HttpResponse)", "offset": 8}, "line": {"number": 1692}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B20OugZuwBAeveso7e9HjAAAAAAAAACa"}} +{"Stackframe": {"file": {"name": "AWS4Signer.java"}, "function": {"name": "void com.amazonaws.auth.AWS4Signer.sign(com.amazonaws.SignableRequest, com.amazonaws.auth.AWSCredentials)", "offset": 33}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4JxgAcphLAEsoWC3fPoUUQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$1856.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0ipjt73KRiubZe41sxjB5gAAAAAAAAB0"}} +{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentParser$Token org.elasticsearch.common.xcontent.json.JsonXContentParser.convertToken(com.fasterxml.jackson.core.JsonToken)", "offset": 27}, "line": {"number": 233}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iSrhrjEfmkKNj8IX5IyH9QAAAAAAAAEe"}} +{"Stackframe": {"file": {"name": "Netty4HttpChannel.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpChannel.sendResponse(org.elasticsearch.rest.RestResponse)", "offset": 51}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vPUU5i5r5XThwPX6RJsZ7gAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "void org.elasticsearch.index.store.Store$StoreDirectory.deleteFile(java.lang.String)"}, "line": {"number": 719}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EUCCYl5Tlfw8BCUk5k6SqAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "org.elasticsearch.cluster.service.MasterService$TaskOutputs org.elasticsearch.cluster.service.MasterService.calculateTaskOutputs(org.elasticsearch.cluster.service.MasterService$TaskInputs, org.elasticsearch.cluster.ClusterState)"}, "line": {"number": 403}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TifPIvND7b7ICq3M7OVoFwAAAAAAAAIt"}} +{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.IndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 85}, "line": {"number": 326}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OgrnocamUAo62UJ-c4BU1gAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ChannelDuplexHandler.java"}, "function": {"name": "void io.netty.channel.ChannelDuplexHandler.flush(io.netty.channel.ChannelHandlerContext)"}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oiHXy47Qw5euydEoPUexRgAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "PrioritizedEsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.run()", "offset": 6}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xF5VGC2U_MH-71_OPOmawgAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "PendingReplicationActions.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.PendingReplicationActions.accept(org.elasticsearch.index.shard.ReplicationGroup)", "offset": 3}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$extractToken$9(java.util.function.Consumer, org.elasticsearch.xpack.security.authc.AuthenticationToken)"}, "line": {"number": 275}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4-UkdR6I5UCEqPmnkXWOJAAAAAAAAABN"}} +{"Stackframe": {"file": {"name": "SortedNumericDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedNumericDocValuesWriter.finishCurrentDoc()", "offset": 11}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RXtoxChZi6om4tFzbI5m2QAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap.getNode(int, java.lang.Object)", "offset": 3}, "line": {"number": 571}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oT5zFE_NFh5plqQsO4lpugAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "org.elasticsearch.search.fetch.FetchSubPhase$HitContext org.elasticsearch.search.fetch.FetchPhase.prepareNonNestedHitContext(boolean, org.elasticsearch.search.fetch.FetchPhase$Profiler, org.elasticsearch.index.fieldvisitor.LeafStoredFieldLoader, int, org.apache.lucene.index.LeafReaderContext, org.elasticsearch.index.mapper.SourceLoader$Leaf)", "offset": 2}, "line": {"number": 235}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5623+0x0000000801b2aad0.getAsync(org.elasticsearch.action.ActionListener)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LBEThMEoK9u7sS_APVlMMAAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.index.mapper.DateFieldMapper$DateFieldType$$Lambda$6416+0x0000000801cce028.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bVZI60QY4hlx9c6CnB6afgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.map(java.util.Map)"}, "line": {"number": 1043}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FobDs8AkrnBHoqx-DyiK1wAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "RetentionLeaseBackgroundSyncAction.java"}, "function": {"name": "void org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction.backgroundSync(org.elasticsearch.index.shard.ShardId, java.lang.String, long, org.elasticsearch.index.seqno.RetentionLeases)", "offset": 6}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BTobNAGTus4ntELtY3QWmAAAAAAAAADI"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.forceApply(org.apache.lucene.index.FrozenBufferedUpdates)", "offset": 48}, "line": {"number": 5630}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ge7iKc-ly3yPFEb2H2nz6wAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "HeaderGroup.java"}, "function": {"name": "org.apache.http.Header org.apache.http.message.HeaderGroup.getFirstHeader(java.lang.String)"}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xLOLXg5EKZgSVcI5Dw46ugAAAAAAAAC4"}} +{"Stackframe": {"file": {"name": "BufferedInputStream.java"}, "function": {"name": "void java.io.BufferedInputStream.fill()", "offset": 32}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3b73aK2YxmWJY2Of38z3nwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "PolicySpiFile.java"}, "function": {"name": "boolean sun.security.provider.PolicySpiFile.engineImplies(java.security.ProtectionDomain, java.security.Permission)"}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QpPozMwT9u3zC7nVdlyVMQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Option.scala"}, "function": {"name": "java.lang.Object scala.Option.getOrElse(scala.Function0)"}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5bahSRCbCjQ3f5d0bmxmHwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator$$Lambda$7976+0x000000080262b650.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vh95vnAekW2EEzTrB30qOwAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.executeOneFileSnapshot(org.elasticsearch.index.store.Store, org.elasticsearch.snapshots.SnapshotId, org.elasticsearch.repositories.IndexId, org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, java.util.concurrent.BlockingQueue, java.util.concurrent.Executor, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 2841}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ERRGf3Kdvc3u72prdGAg4wAAAAAAAAFa"}} +{"Stackframe": {"file": {"name": "Netty4HttpRequestHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpRequestHandler.channelRead0(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 80}, "line": {"number": 137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W3kTKpkHn84fzTFtfLoD0gAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "BlobStoreIndexShardSnapshot.java"}, "function": {"name": "void org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshot$FileInfo.toXContent(org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshot$FileInfo, org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 4}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oY4jcgq6jsNfD8MfXsTQfAAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateListeners(org.elasticsearch.cluster.ClusterChangedEvent)"}, "line": {"number": 494}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Xsky9cTDpKcm_kOUJgRO_wAAAAAAAAEK"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.handleIncomingPublishRequest(org.elasticsearch.transport.BytesTransportRequest)", "offset": 36}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Xezp9oJLq6Ve9ThWO7F4gQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UTF8JsonGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.UTF8JsonGenerator.writeString(java.lang.String)"}, "line": {"number": 494}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YhOjbxv03d1fLQxiBRGOhAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "PooledDirectByteBuf.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.PooledDirectByteBuf.setBytes(int, byte[], int, int)", "offset": 1}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3OXUprnwrCHvPb_pGSZRIAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$3130.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NAXh3zuU0dO2_vEc-9d1QQAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "Template.java"}, "function": {"name": "org.elasticsearch.common.compress.CompressedXContent org.elasticsearch.cluster.metadata.Template.lambda$static$2(org.elasticsearch.common.xcontent.XContentParser, java.lang.Void)"}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NglZAtsVMy0PR4D9Bo4v_AAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$2919.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Er5fUskqiqFkThPIapWesQAAAAAAAACP"}} +{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "void com.sun.crypto.provider.GaloisCounterMode.doLastBlock(byte[], int, int, byte[], int, boolean)", "offset": 30}, "line": {"number": 436}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JN8POKdFTVmcFhFa7YyOHwAAAAAAAACq"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 48}, "line": {"number": 601}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HQPonS5xAGkhY3iJmdbwHQAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.write(org.apache.lucene.util.BytesRef, org.apache.lucene.index.TermsEnum)"}, "line": {"number": 866}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hzcOme2bHOlnmg1x3z_FQQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 2}, "line": {"number": 502}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lxBbJT8CEpl1TogDqQt4QAAAAAAAAACT"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()", "offset": 27}, "line": {"number": 1054}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RA6fryXhwc6j3TqIqI_2kAAAAAAAAACb"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.handlePrimaryResult(org.elasticsearch.action.support.replication.ReplicationOperation$PrimaryResult)", "offset": 24}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HNOfCO9oXb8RC1H2oktECAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.cluster.coordination.LeaderChecker$$Lambda$4970+0x0000000801ffdf78.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EG5mg4adY6r6Hz0mgCZEKgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "int org.apache.lucene.index.SegmentMerger.mergeFields()"}, "line": {"number": 199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "avfO9wX8Y6wuHuPsqC9ogQAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "ReplicationTracker.java"}, "function": {"name": "void org.elasticsearch.index.seqno.ReplicationTracker.updateReplicationGroupAndNotify()", "offset": 1}, "line": {"number": 939}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OhwRwPlI-WXSbymgmwmRggAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.executeQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchTask)", "offset": 10}, "line": {"number": 267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KLDAZGCI4k6In3oIUIUWEwAAAAAAAABI"}} +{"Stackframe": {"file": {"name": "SortedSetDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedSetDocValuesWriter.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.DocValuesConsumer)", "offset": 10}, "line": {"number": 218}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jUG8QWsNu_4dltLC_LjyvAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "RestSearchAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction.lambda$prepareRequest$1(org.elasticsearch.action.search.SearchRequest, org.elasticsearch.rest.RestRequest, org.elasticsearch.client.node.NodeClient, java.util.function.IntConsumer, org.elasticsearch.common.xcontent.XContentParser)"}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SpuVyl1yybAmI0lABPU6JwAAAAAAAAEQ"}} +{"Stackframe": {"file": {"name": "PoolArena.java"}, "function": {"name": "void io.netty.buffer.PoolArena.allocate(io.netty.buffer.PoolThreadCache, io.netty.buffer.PooledByteBuf, int)", "offset": 51}, "line": {"number": 226}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qlujNL7db72ZwWHkSPq1iAAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "NodeService.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.node.NodeService.stats(org.elasticsearch.action.admin.indices.stats.CommonStatsFlags, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean)", "offset": 1}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "S4pDMZQIDu6mVxa95R8FGQAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$2.tryAdvance(java.util.function.Consumer)", "offset": 3}, "line": {"number": 4820}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlo7"}} +{"Stackframe": {"function": {"name": "show_mountinfo"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SpuVyl1yybAmI0lABPU6JwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "PoolArena.java"}, "function": {"name": "void io.netty.buffer.PoolArena.allocate(io.netty.buffer.PoolThreadCache, io.netty.buffer.PooledByteBuf, int)"}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OhsNNHZSFXnOxOfCjJd7_wAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$ContextRestoreResponseHandler.handleResponse(org.elasticsearch.transport.TransportResponse)", "offset": 4}, "line": {"number": 1367}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qBOSbIDR29V7eF9w5R3mkQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Id.java"}, "function": {"name": "void co.elastic.apm.agent.impl.transaction.Id.fromHexString(java.lang.String, int)"}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "voqjqV6_-EldPWpE4Bg5QQAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "StringLatin1.java"}, "function": {"name": "int java.lang.StringLatin1.hashCode(byte[])", "offset": 1}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ahMxWqP1a_8hG_qUbGypwwAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.scoreRange(org.apache.lucene.search.LeafCollector, org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.search.TwoPhaseIterator, org.apache.lucene.util.Bits, int, int)", "offset": 5}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ooXupY6tkqGKdv4Hb9iSvAAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "void java.lang.String.(byte[], int, int, java.nio.charset.Charset)", "offset": 4}, "line": {"number": 463}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RXtoxChZi6om4tFzbI5m2QAAAAAAAABe"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap.getNode(int, java.lang.Object)", "offset": 7}, "line": {"number": 575}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KMe4335ehl83ltXh61_B-QAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotsService$UpdateSnapshotStatusAction.masterOperation(org.elasticsearch.snapshots.UpdateIndexShardSnapshotStatusRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)"}, "line": {"number": 4124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tUugY2gAhpWf99wEorV4JgAAAAAAAABY"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.read(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 15}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rovdyrVTiLcrORXAjvCRXwAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "HttpContentEncoder.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpContentEncoder.encode(io.netty.buffer.ByteBuf, java.util.List)"}, "line": {"number": 336}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bOb86QTSjl0Tbgl6WGMPVwAAAAAAAADW"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken()", "offset": 52}, "line": {"number": 759}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zqhvogg4FMs_i3X25D79jgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.lambda$notifyListener$1(org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dMWAYhOd73lTCWigt-4ASQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "DiscoveryNodeRole.java"}, "function": {"name": "int org.elasticsearch.cluster.node.DiscoveryNodeRole$5.compareTo(java.lang.Object)"}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aU_7qz-4oBJRwT7L5f1odgAAAAAAAAIa"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.writeBlocks(int, int)", "offset": 88}, "line": {"number": 635}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "duSa7rLKjwnZa9hewarfUgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer$$Lambda$8687+0x0000000802083390.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1F1wIyxCFd03RCBtLTmW7wAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.wakeup(boolean)", "offset": 1}, "line": {"number": 719}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5wkvNkSkY_0J71UHAZQE1gAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "SecurityContext.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.SecurityContext.executeAsSystemUser(org.elasticsearch.TransportVersion, java.util.function.Consumer)"}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-0m6hBADt25_sY-zTDaOgwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.TransportService$$Lambda$4881+0x0000000801fe0c08.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7NbgxcudUSJnoypoAEAp8QAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "MultiLevelSkipListReader.java"}, "function": {"name": "boolean org.apache.lucene.codecs.MultiLevelSkipListReader.loadNextSkip(int)", "offset": 13}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pkqcXQWLIjtT71JtuIAr6AAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "java.lang.Object com.amazonaws.services.s3.AmazonS3Client.access$300(com.amazonaws.services.s3.AmazonS3Client, com.amazonaws.Request, com.amazonaws.http.HttpResponseHandler, java.lang.String, java.lang.String)"}, "line": {"number": 421}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yThBMv0_vHiduuJoI2EtCQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "EsExecutors.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.EsExecutors$DirectExecutorService.execute(java.lang.Runnable)"}, "line": {"number": 288}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WwLAq-OugYSy1Dj8k1-JewAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "org.apache.http.client.methods.HttpRequestBase com.amazonaws.http.AmazonHttpClient$RequestExecutor$ExecOneRequestParams.newApacheRequest(com.amazonaws.http.request.HttpRequestFactory, com.amazonaws.Request, com.amazonaws.http.settings.HttpClientSettings)"}, "line": {"number": 1946}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rfeHqCrgs6xi0gmdo24V4gAAAAAAAABO"}} +{"Stackframe": {"file": {"name": "AbstractQueuedSynchronizer.java"}, "function": {"name": "long java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(long)", "offset": 12}, "line": {"number": 2078}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "b95z1GhnNzkQcVnTAGVlWQAAAAAAAACo"}} +{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService.snapshot(org.elasticsearch.index.shard.ShardId, org.elasticsearch.snapshots.Snapshot, org.elasticsearch.repositories.IndexId, java.util.Map, org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.elasticsearch.Version, org.elasticsearch.action.ActionListener)", "offset": 19}, "line": {"number": 370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AnAOjAZd8DreOTLSozMbLwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "HeadersUtils.java"}, "function": {"name": "int io.netty.handler.codec.HeadersUtils$1.size()"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gEtqzxSW2T09YOfj4Wq1OQAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient.execute(com.amazonaws.Request, com.amazonaws.http.HttpResponseHandler, com.amazonaws.http.HttpResponseHandler, com.amazonaws.http.ExecutionContext)"}, "line": {"number": 524}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cSK3QkQEScwA7ISZYZcmKgAAAAAAAAFD"}} +{"Stackframe": {"file": {"name": "DefaultHttpClientConnectionOperator.java"}, "function": {"name": "void org.apache.http.impl.conn.DefaultHttpClientConnectionOperator.connect(org.apache.http.conn.ManagedHttpClientConnection, org.apache.http.HttpHost, java.net.InetSocketAddress, int, org.apache.http.config.SocketConfig, org.apache.http.protocol.HttpContext)", "offset": 36}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9ctgDiHk7GZNdHt7lzekYwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "NativeThreadSet.java"}, "function": {"name": "int sun.nio.ch.NativeThreadSet.add()"}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MnUsiqWoybkve-dS3xf9SQAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile.authorizeAsync(org.elasticsearch.xpack.security.authc.Authentication, org.elasticsearch.action.ActionListener, java.lang.String, org.elasticsearch.transport.TransportRequest)", "offset": 5}, "line": {"number": 210}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-DtPdcHZXD6lZ4B-5RvFAgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction$$Lambda$7774+0x00000008025da0a0.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ouSO2zeiSur1lZ3DXM0glQAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "HttpPipeliningHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.pipelining.HttpPipeliningHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 1}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vWxNCMnUr6is0HaIF2GPQgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.nextDoc()"}, "line": {"number": 240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "ForkJoinPool.java"}, "function": {"name": "void java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(java.util.concurrent.ForkJoinTask, java.util.concurrent.ForkJoinPool$WorkQueue, int)", "offset": 3}, "line": {"number": 1020}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iM8LSJ_0DrAH3j2_fhBWQwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "HashSet.java"}, "function": {"name": "boolean java.util.HashSet.add(java.lang.Object)"}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1C_GM0ni6_vEXN2fBv3HRQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Automatons.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.support.Automatons$1.test(java.lang.String)"}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAb7o"}} +{"Stackframe": {"function": {"name": "aufs_permission"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "L6IPi9cG-hWDQ-8_WE6FFQAAAAAAAABi"}} +{"Stackframe": {"file": {"name": "IndexTemplateRegistry.java"}, "function": {"name": "void org.elasticsearch.xpack.core.template.IndexTemplateRegistry.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 26}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyOx"}} +{"Stackframe": {"function": {"name": "audit_filter_rules.constprop.21"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C1S0u5i-I99o7AP-YW5LEQAAAAAAAABh"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.unknownValue(java.lang.Object, boolean)", "offset": 15}, "line": {"number": 824}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ll2e4oC_mg1s5sZsaCcVLgAAAAAAAACa"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObjectOrNested(org.elasticsearch.index.mapper.ParseContext, org.elasticsearch.index.mapper.ObjectMapper)", "offset": 31}, "line": {"number": 463}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8AFkU9EDwekeQG-iHB-52AAAAAAAAABX"}} +{"Stackframe": {"file": {"name": "RestClusterGetSettingsAction.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.rest.action.admin.cluster.RestClusterGetSettingsAction.renderResponse(org.elasticsearch.cluster.ClusterState, boolean, org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 12}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hwFOO2vIT-jh5CUGPjb6DgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "BufferedUpdatesStream.java"}, "function": {"name": "void org.apache.lucene.index.BufferedUpdatesStream$SegmentState.(org.apache.lucene.index.ReadersAndUpdates, org.apache.lucene.util.IOConsumer, org.apache.lucene.index.SegmentCommitInfo)", "offset": 2}, "line": {"number": 295}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rrf1rrkoNPa8s36xe9HxZAAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "ApacheHttpRequestFactory.java"}, "function": {"name": "void com.amazonaws.http.apache.request.impl.ApacheHttpRequestFactory.addRequestConfig(org.apache.http.client.methods.HttpRequestBase, com.amazonaws.Request, com.amazonaws.http.settings.HttpClientSettings)", "offset": 19}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mEXF25ng8ikrDug37Cew1wAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService$$Lambda$7678+0x0000000801ee2410.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gvF2yYYQgGwIfgcGSJAUHgAAAAAAAAB6"}} +{"Stackframe": {"file": {"name": "FileSystemProvider.java"}, "function": {"name": "java.io.OutputStream java.nio.file.spi.FileSystemProvider.newOutputStream(java.nio.file.Path, java.nio.file.OpenOption[])", "offset": 13}, "line": {"number": 434}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1dAR1DRu30HO0nOIbN0CKgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "FilterInputStream.java"}, "function": {"name": "int java.io.FilterInputStream.read(byte[])"}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "twD_eFnsb6PKOPqe4ScuPQAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Iterable, java.lang.Object, java.util.Set)", "offset": 5}, "line": {"number": 1084}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PvP5PvpOsOPL0EJUIdQXTQAAAAAAAABd"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService.submitStateUpdateTasks(java.lang.String, java.util.Map, org.elasticsearch.cluster.ClusterStateTaskConfig, org.elasticsearch.cluster.ClusterStateTaskExecutor)", "offset": 11}, "line": {"number": 787}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yQLW28sZ3rpLXAl8a-XdLgAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.extractToken(java.util.function.Consumer)", "offset": 17}, "line": {"number": 284}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "__e_ReExoac--V-RQeNXewAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "AbstractNamedDiffable.java"}, "function": {"name": "org.elasticsearch.cluster.NamedDiff org.elasticsearch.cluster.AbstractNamedDiffable.readDiffFrom(java.lang.Class, java.lang.String, org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "a0wWJ2rcNU0N0nF8s8CPfAAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.callDecode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 19}, "line": {"number": 441}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wcQ8sx0Hbh7lHQEqIQ-KgQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain$$Lambda$6969+0x0000000801db3af8.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hdFQ3BsvhBTsLQGlhj96MwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient, org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.rest.RestHandler)"}, "line": {"number": 240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2jxH2MnvxL5b2qj0b5JzIAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "RoutingTable.java"}, "function": {"name": "org.elasticsearch.cluster.Diff org.elasticsearch.cluster.routing.RoutingTable.diff(org.elasticsearch.cluster.routing.RoutingTable)"}, "line": {"number": 319}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qnkrTiN5YCts6ND7O0BX2QAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "AbstractNamedDiffable.java"}, "function": {"name": "void org.elasticsearch.cluster.AbstractNamedDiffable$CompleteNamedDiff.(java.lang.Class, java.lang.String, org.elasticsearch.common.io.stream.StreamInput)", "offset": 2}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D7HSXO_iqjqFKL1x1h0kQQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.decRefDeleter(org.apache.lucene.index.SegmentInfos)", "offset": 1}, "line": {"number": 5405}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C6CXqsc1a9CnazSBL1kFOQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "LRUQueryCache.java"}, "function": {"name": "org.apache.lucene.search.DocIdSet org.apache.lucene.search.LRUQueryCache.cacheImpl(org.apache.lucene.search.BulkScorer, int)", "offset": 3}, "line": {"number": 504}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuFZ"}} +{"Stackframe": {"function": {"name": "__x64_sys_epoll_ctl"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xwZcfN4LHw1qjCxK4B5WXgAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "int com.fasterxml.jackson.core.json.UTF8StreamJsonParser._skipColon()", "offset": 1}, "line": {"number": 3036}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EI2MlivQ_yGyq36LnLAGeQAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "LoggingHandler.java"}, "function": {"name": "void io.netty.handler.logging.LoggingHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 3}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "66svax_YSawIBEjWDOux4gAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "LZ4Compressor.java"}, "function": {"name": "int net.jpountz.lz4.LZ4Compressor.compress(byte[], int, int, byte[], int)"}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uy69Ip8uSWWD7uF8sFNmvgAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction.access$100(org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction, int, org.elasticsearch.action.support.nodes.BaseNodeResponse)"}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iCj0oXheYrq0AjmSVHYf2gAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.indices.IndicesService.lambda$cacheShardLevelResult$18(java.util.function.Consumer)", "offset": 2}, "line": {"number": 1210}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KGVSBMVyriI5T93UZw1WLgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 758}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x3IEgecNM_mSugRYX-4FsAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.dispatchedShardOperationOnPrimary(org.elasticsearch.action.support.replication.ReplicatedWriteRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IQAGt2O2wqlSa1Y0_Op2AAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController$ResourceHandlingHttpChannel.sendResponse(org.elasticsearch.rest.RestResponse)", "offset": 1}, "line": {"number": 497}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnZYv"}} +{"Stackframe": {"function": {"name": "inet6_dump_ifaddr"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "G40sSFrWJkNKANlwsg1UgAAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseValue(org.elasticsearch.index.mapper.ParseContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, org.elasticsearch.common.xcontent.XContentParser$Token, java.lang.String[])", "offset": 6}, "line": {"number": 692}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ec3cj7XacFxZrl8AIh2z-QAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.access(sun.nio.fs.UnixPath, int)", "offset": 2}, "line": {"number": 449}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7d3seGBxg838auGMbrqBQwAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory$FSIndexOutput.(org.apache.lucene.store.FSDirectory, java.lang.String, java.nio.file.OpenOption[])", "offset": 1}, "line": {"number": 413}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SjePYWwKalqPF7fBjhLglgAAAAAAAABe"}} +{"Stackframe": {"file": {"name": "TransportBroadcastByNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.onShardOperation(org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$NodeRequest, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionListener)", "offset": 39}, "line": {"number": 542}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MJ3ugml446ymUqbRHZqRSAAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "FieldsVisitor.java"}, "function": {"name": "void org.elasticsearch.index.fieldvisitor.FieldsVisitor.(boolean)", "offset": 3}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FH8EkDW7TkZM8UTvkf_KhgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.sync(org.elasticsearch.index.translog.Translog$Location, java.util.function.Consumer)", "offset": 1}, "line": {"number": 3754}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jOKHIn-OfmVASZP9y1NSfAAAAAAAAACH"}} +{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.run()", "offset": 6}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AAn_OLmzgN0q8Ywe9O03FgAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.decRef(org.apache.lucene.index.SegmentInfos)", "offset": 1}, "line": {"number": 629}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LY7tgvqAn-qe9CkDVBt8XQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress.(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZd"}} +{"Stackframe": {"function": {"name": "audit_filter_syscall.constprop.19"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EPkRJFILsKGYvAhwh_S9kQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "BufferedInputStream.java"}, "function": {"name": "int java.io.BufferedInputStream.read()", "offset": 1}, "line": {"number": 263}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LbKru3lAuHQryZO7imrlEAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "org.apache.lucene.util.BytesRef org.elasticsearch.search.aggregations.bucket.terms.GlobalOrdinalsStringTermsAggregator$$Lambda$2401.apply(long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8gCX4yiEJccsUYm2373XlQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "Netty4TcpChannel.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4TcpChannel.sendMessage(org.elasticsearch.common.bytes.BytesReference, org.elasticsearch.action.ActionListener)"}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2_I6fJF6BIBOXzL_ggufMgAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "AlgorithmDecomposer.java"}, "function": {"name": "java.util.Set sun.security.util.AlgorithmDecomposer.decompose(java.lang.String)", "offset": 4}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jnJ3V2aQT0q7HE8ApxI1-gAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "java.lang.Object com.carrotsearch.hppc.ObjectObjectHashMap$KeysIterator.fetch()"}, "line": {"number": 819}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IY3kOFBxddrJzoZrzargTAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "FileDescriptor.java"}, "function": {"name": "void java.io.FileDescriptor.close0()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NCnW31JAeE6fBCMV8tcmcAAAAAAAAABx"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService.maybeRefreshEngine()", "offset": 12}, "line": {"number": 690}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WiSL_btpndoHR-_C8YlAawAAAAAAAABU"}} +{"Stackframe": {"file": {"name": "Deflater.java"}, "function": {"name": "int java.util.zip.Deflater.deflate(byte[], int, int, int)", "offset": 11}, "line": {"number": 444}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJbif"}} +{"Stackframe": {"function": {"name": "copy_page_range"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$1714.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AbstractRunnable.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractRunnable.run()"}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Hr4PYZ-sL6e-tu-94q7YcgAAAAAAAAEX"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.parseMediumName2(int, int)", "offset": 35}, "line": {"number": 1811}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXa_"}} +{"Stackframe": {"function": {"name": "__alloc_file"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lP_2TC89YKD5hpxethArxgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Transaction.java"}, "function": {"name": "void co.elastic.apm.agent.impl.transaction.Transaction.(co.elastic.apm.agent.impl.ElasticApmTracer)", "offset": 58}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BSGYbOS21g5XOXq-oh30UwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "QuotaAwareFileSystemProvider.java"}, "function": {"name": "java.nio.file.DirectoryStream co.elastic.cloud.quotaawarefs.QuotaAwareFileSystemProvider.newDirectoryStream(java.nio.file.Path, java.nio.file.DirectoryStream$Filter)"}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7qz18bHgG-Zc_fVo9Dsh7AAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.OutboundMessage, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bsyDek069Ex-p_WmJk4qUwAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "MappingStats.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.stats.MappingStats org.elasticsearch.action.admin.cluster.stats.MappingStats.of(org.elasticsearch.cluster.metadata.Metadata, java.lang.Runnable)", "offset": 43}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0X3gxtaF6COySAPka5kw8AAAAAAAAABH"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.dispatchedShardOperationOnPrimary(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "feYj-gxH446kk14zhma-hAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "AbstractDelegateHttpsURLConnection.java"}, "function": {"name": "void sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect()", "offset": 2}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Qmnug1hjSOtLZN2VCZFd8QAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.BooleanWeight.scorer(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 381}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Gp8pW5B40BblKfSIWk6M6gAAAAAAAACN"}} +{"Stackframe": {"file": {"name": "ChannelOutputStream.java"}, "function": {"name": "void sun.nio.ch.ChannelOutputStream.write(byte[], int, int)", "offset": 19}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "beaGpNKpPxoBVynx9VseXQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "org.elasticsearch.common.io.stream.Writeable org.elasticsearch.common.io.stream.StreamInput.readOptionalWriteable(org.elasticsearch.common.io.stream.Writeable$Reader)", "offset": 1}, "line": {"number": 986}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7Qn6qGKODLOhflOBBPmWbwAAAAAAAAHI"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "boolean org.elasticsearch.action.bulk.TransportShardBulkAction.executeBulkItemRequest(org.elasticsearch.action.bulk.BulkPrimaryExecutionContext, org.elasticsearch.action.update.UpdateHelper, java.util.function.LongSupplier, org.elasticsearch.action.bulk.MappingUpdatePerformer, java.util.function.Consumer, org.elasticsearch.action.ActionListener)", "offset": 54}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0qwjk_eyc4_FkJ37kZ5mbgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "RandomAccessFile.java"}, "function": {"name": "void java.io.RandomAccessFile.seek0(long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LmvOcg0pOC8EpfUlMJwJ7wAAAAAAAABO"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 21}, "line": {"number": 786}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qz6N-6DM06uuF3n6UYF3qgAAAAAAAABQ"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "org.elasticsearch.gateway.PersistedClusterStateService$Writer$WriterStats org.elasticsearch.gateway.PersistedClusterStateService$Writer.updateMetadata(org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.cluster.metadata.Metadata)", "offset": 8}, "line": {"number": 668}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tYpn9fKKxL559MokXK09lwAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "api.py"}, "function": {"name": "run", "offset": 3}, "line": {"number": 203}, "source": {"type": 2}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TVM20KHeVfi3WiDttLaC-wAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "boolean org.elasticsearch.common.io.stream.StreamInput.readBoolean()"}, "line": {"number": 581}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjYS"}} +{"Stackframe": {"function": {"name": "lookup_fast"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "ClassLoader.java"}, "function": {"name": "java.net.URL java.lang.ClassLoader.getResource(java.lang.String)", "offset": 8}, "line": {"number": 1401}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AMk_trcRDqgWwE9O1EQdVAAAAAAAAABf"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)", "offset": 7}, "line": {"number": 582}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_6rkq2S7o8rMRQJ9AofzJAAAAAAAAAC-"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.bytes.BytesReference, boolean, org.elasticsearch.common.xcontent.XContentType)", "offset": 21}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7nF7nj13xN6jaEH9IrCZPgAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "AbstractNioByteChannel.java"}, "function": {"name": "java.lang.Object io.netty.channel.nio.AbstractNioByteChannel.filterOutboundMessage(java.lang.Object)", "offset": 6}, "line": {"number": 275}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KH5_QfKIKeUIlFImab-3OAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Collection.java"}, "function": {"name": "java.util.stream.Stream java.util.Collection.stream()"}, "line": {"number": 743}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EUaNNCJVOZv50VSG9pJB_QAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "void java.util.Collections$UnmodifiableCollection$1.(java.util.Collections$UnmodifiableCollection)", "offset": 1}, "line": {"number": 1051}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MvHykdws074DrQKhhSE29wAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelHandlerContext io.netty.channel.AbstractChannelHandlerContext.flush()", "offset": 3}, "line": {"number": 749}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CmMireDydutNBOY07iuvjAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "void org.elasticsearch.search.query.QueryPhase.preProcess(org.elasticsearch.search.internal.SearchContext)"}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xBGCEPBdnG6Mds1nJf4tcQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Netty4HttpRequestHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpRequestHandler.channelRead0(io.netty.channel.ChannelHandlerContext, java.lang.Object)"}, "line": {"number": 17}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CXAz1tIIc26xoKV7GpujkwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "IndexLifecycleRunner.java"}, "function": {"name": "java.lang.Long org.elasticsearch.xpack.ilm.IndexLifecycleRunner.calculateOriginationMillis(org.elasticsearch.cluster.metadata.IndexMetadata)"}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6dizidRtpqcGmpShAjzttQAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.ReadersAndUpdates.getReader(org.apache.lucene.store.IOContext)", "offset": 2}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sSDVmLRXn5j8cMEHakX25QAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler$$Lambda$5648+0x0000000801bb9ff8.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "y_zLcqsLm1pyxWcSerbeRAAAAAAAAABX"}} +{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "int sun.nio.ch.EPollSelectorImpl.doSelect(long)", "offset": 14}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "COr29gi0754ysq3SQxZfKwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AbstractHttpMessage.java"}, "function": {"name": "org.apache.http.Header org.apache.http.message.AbstractHttpMessage.getFirstHeader(java.lang.String)"}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I90CtZp_BZBH2tSRSUMrrgAAAAAAAACF"}} +{"Stackframe": {"file": {"name": "Deflater.java"}, "function": {"name": "int java.util.zip.Deflater.deflate(byte[], int, int, int)", "offset": 25}, "line": {"number": 582}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RDkaM95giz3S74FJcVQJoAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ClientScrollableHitSource.java"}, "function": {"name": "void org.elasticsearch.index.reindex.ClientScrollableHitSource$1.onResponse(org.elasticsearch.action.search.SearchResponse)"}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "39qs_rDAv1WDF_rk7l05uQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation$$Lambda$7481+0x0000000801f36d38.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "a_OIxG7FMGXAdgtXd0LibgAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "LockSupport.java"}, "function": {"name": "void java.util.concurrent.locks.LockSupport.parkNanos(long)", "offset": 4}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zl67i1kGanBQpTW7SuGX_QAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "ByteQuadsCanonicalizer.java"}, "function": {"name": "boolean com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._verifyLongName(int[], int, int)", "offset": 6}, "line": {"number": 728}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xn1WEw8JlmcUP5ReFMzZYwAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.tracing.apm.APMTracer$$Lambda$6898+0x00000008022d4a28.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HhNjFnMd70fZN07PFErnWAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "ElasticApmTracer.java"}, "function": {"name": "co.elastic.apm.agent.impl.transaction.Transaction co.elastic.apm.agent.impl.ElasticApmTracer.startChildTransaction(java.lang.Object, co.elastic.apm.agent.impl.transaction.TextHeaderGetter, java.lang.ClassLoader, long)"}, "line": {"number": 200}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMub"}} +{"Stackframe": {"function": {"name": "ip_finish_output"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0yqtrD3Cawk5Ww3YXL2KhwAAAAAAAACj"}} +{"Stackframe": {"file": {"name": "ByteQuadsCanonicalizer.java"}, "function": {"name": "int com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._findOffsetForAdd(int)", "offset": 46}, "line": {"number": 920}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DLCbvuPzV5FNep-fYYK5KAAAAAAAAACE"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()", "offset": 26}, "line": {"number": 1061}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yVj-DhlWsbRwk1ix0xTSnAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "java.lang.Object java.util.concurrent.ConcurrentHashMap.get(java.lang.Object)"}, "line": {"number": 936}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WwwSCNeqeQDkQY1ahZVL0wAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "org.elasticsearch.tasks.TaskId org.elasticsearch.action.support.replication.TransportReplicationAction$ConcreteShardRequest.getParentTask()"}, "line": {"number": 1150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WBDDHhcycxn7-c7ItUsJQwAAAAAAAACp"}} +{"Stackframe": {"file": {"name": "FieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.FieldMapper.parse(org.elasticsearch.index.mapper.DocumentParserContext)", "offset": 33}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DbSG9xbs7jnAEiHiVrKb1AAAAAAAAAB5"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.tryAllHandlers(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 24}, "line": {"number": 389}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NEA431VvZx5EvIda-awJrAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Iterator.java"}, "function": {"name": "void java.util.Iterator.forEachRemaining(java.util.function.Consumer)", "offset": 1}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dhLkPVDaHJtx9aYILWA1HgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "TemplateUtils.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.template.TemplateUtils.loadTemplate(java.lang.String, java.lang.String, java.lang.String)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GW-qDwCIkJ-9vywd7tDqUwAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "BuiltinClassLoader.java"}, "function": {"name": "java.net.URL jdk.internal.loader.BuiltinClassLoader.findResourceOnClassPath(java.lang.String)", "offset": 5}, "line": {"number": 540}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KWcc74zLQzIOeccSqcd1DgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "PendingDeletes.java"}, "function": {"name": "int org.apache.lucene.index.PendingDeletes.numDeletesToMerge(org.apache.lucene.index.MergePolicy, org.apache.lucene.util.IOSupplier)"}, "line": {"number": 238}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DDfUAG9Q-Cqwr5La19vRNwAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "ByteQuadsCanonicalizer.java"}, "function": {"name": "void com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._verifySharing()", "offset": 2}, "line": {"number": 863}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "t8dlkufpTdGrhGgvaHQahwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "void java.util.Arrays.sort(java.lang.Object[], int, int, java.util.Comparator)", "offset": 1}, "line": {"number": 1301}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-pRz955dmytzM_Z3JtL7_gAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction$$Lambda$8323+0x00000008022a6c18.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "neQ9aDSiXyM-ZtdfoiCRFAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$apply$0(org.elasticsearch.action.ActionListener, org.elasticsearch.action.ActionResponse)"}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "b2ckm-0wQN1Adu_SQOHiPwAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "FsDirectoryFactory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.elasticsearch.index.store.FsDirectoryFactory$HybridDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 10}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rxOa_vsr4vqTrJse-7ULTQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "AbstractMemorySegmentImpl.java"}, "function": {"name": "jdk.internal.foreign.AbstractMemorySegmentImpl jdk.internal.foreign.AbstractMemorySegmentImpl.asSlice(long, long)", "offset": 1}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZLdnJScMMbJz4xNn2ogw5AAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "MatchOps.java"}, "function": {"name": "java.lang.Boolean java.util.stream.MatchOps$MatchOp.evaluateSequential(java.util.stream.PipelineHelper, java.util.Spliterator)"}, "line": {"number": 230}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gnsPShiCKySXCTykfsS4FQAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "void java.util.stream.AbstractPipeline.close()", "offset": 6}, "line": {"number": 323}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Rw2pUsVoJZp3HkcB3nNMtAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.nio.channels.FileChannel sun.nio.fs.UnixChannelFactory.newFileChannel(sun.nio.fs.UnixPath, java.util.Set, int)"}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "f6f1SsspPHvrj_wSO0n7rQAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "SortedNumericDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedNumericDocValuesWriter.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.DocValuesConsumer)", "offset": 2}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SvWNy0Oo_G5x9VpZmBSSnQAAAAAAAACx"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.writeDocValues(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)", "offset": 21}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WNklusebG0tdR5ytKPlbkAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()"}, "line": {"number": 776}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2Tuo-C9u5ZQSFYDa7WjfzAAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.processDocument()", "offset": 13}, "line": {"number": 398}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uDm-CXd9SPWhP_WpkTKImwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ResourceLeakDetector.java"}, "function": {"name": "void io.netty.util.ResourceLeakDetector$Record.(io.netty.util.ResourceLeakDetector$Record)"}, "line": {"number": 603}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAB12y"}} +{"Stackframe": {"function": {"name": "xfs_vn_create"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YdHosvXns41-8YRbLcrtpgAAAAAAAAKf"}} +{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "boolean org.elasticsearch.search.query.QueryPhase.executeInternal(org.elasticsearch.search.internal.SearchContext)", "offset": 127}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "s88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$1.doRun()"}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vu1niHfy-hSLbNHl3l8G6gAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap$KeyIterator.next()"}, "line": {"number": 1607}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.xcontent.support.AbstractXContentParser.readMapEntries(org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier, java.util.Map, java.lang.String)"}, "line": {"number": 322}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VCFc951ifEF7yJkklJvwWAAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6077+0x0000000801c378b0.getAsync(org.elasticsearch.action.ActionListener)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KuRzKKOnkUoIqL23_UPvVAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext.writeTo(org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UwIqV7dvF4JsT_ZBHTmFYgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "org.elasticsearch.index.Index[] org.elasticsearch.cluster.metadata.IndexNameExpressionResolver.concreteIndices(org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$Context, java.lang.String[])"}, "line": {"number": 337}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iRdArD2BL-BvpLz4Pb_AYwAAAAAAAABI"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "java.lang.Object com.amazonaws.services.s3.AmazonS3Client.uploadObject(java.io.InputStream, java.io.File, com.amazonaws.services.s3.model.ObjectMetadata, com.amazonaws.event.ProgressListener, com.amazonaws.Request, com.amazonaws.services.s3.model.S3DataSource, boolean, boolean, com.amazonaws.services.s3.internal.UploadObjectStrategy, boolean)", "offset": 19}, "line": {"number": 1861}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlxrc"}} +{"Stackframe": {"function": {"name": "tcp_seq_next"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kuOLLmJKIrjOwpp2bYUQJgAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "ResultDeduplicator.java"}, "function": {"name": "void org.elasticsearch.action.ResultDeduplicator$CompositeListener.onResponse(java.lang.Object)", "offset": 5}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApUc4"}} +{"Stackframe": {"function": {"name": "vsnprintf"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AAnABuJtrWflPvotxCoPjQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "AccessControlContext.java"}, "function": {"name": "void java.security.AccessControlContext.checkPermission(java.security.Permission)"}, "line": {"number": 407}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes java.nio.file.Files.readAttributes(java.nio.file.Path, java.lang.Class, java.nio.file.LinkOption[])"}, "line": {"number": 1849}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fd4gbt6sr3NPZVQPXpwspQAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "Channels.java"}, "function": {"name": "void java.nio.channels.Channels$1.write(int)", "offset": 3}, "line": {"number": 152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YPFcZeD14PiXgdmeaRdcTwAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.tryWrite(java.io.FileDescriptor, byte[], int, int)", "offset": 4}, "line": {"number": 388}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w7HSilaT6ScQ9DqRu4RYLQAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.value(java.lang.Iterable)", "offset": 10}, "line": {"number": 898}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8NngJtVZgM_5w8hEjt1IaQAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "ArraySearchPhaseResults.java"}, "function": {"name": "void org.elasticsearch.action.search.ArraySearchPhaseResults.consumeResult(org.elasticsearch.search.SearchPhaseResult, java.lang.Runnable)", "offset": 2}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XhlVGmmxX5oIgUuiBewNuwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SettingsFilter.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.SettingsFilter.filter(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i2R-NzFTVFibpge5Dx_BBgAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "Lucene90BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.blocktree.Lucene90BlockTreeTermsWriter$TermsWriter.finish()", "offset": 11}, "line": {"number": 1105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6hnpYz-PMLwW_n2OxI4xYwAAAAAAAABe"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.finish()", "offset": 9}, "line": {"number": 454}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hpS1QtdrBQjGg-LCbfqeSAAAAAAAAFrc"}} +{"Stackframe": {"function": {"name": "br_handle_frame_finish"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WJJpq9A_dKE21YRpkoScFQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Channels.java"}, "function": {"name": "void java.nio.channels.Channels$1.close()"}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$null$0(org.elasticsearch.xpack.security.authc.UserToken)", "offset": 3}, "line": {"number": 218}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D89Lu4J4zlFkW1Lm9HDh6QAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.write(java.lang.Object, org.elasticsearch.common.blobstore.BlobContainer, java.lang.String, boolean)"}, "line": {"number": 329}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wO72Xe-Cg9u8b8qnaOMkOgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.xpack.core.ilm.Phase$$Lambda$5454+0x0000000801b01230.apply(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u6kUmTkhHEVvdfd3N0zHyQAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "NativePRNG.java"}, "function": {"name": "void sun.security.provider.NativePRNG$RandomIO.implNextBytes(byte[])", "offset": 10}, "line": {"number": 544}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3FuDUMlDvgG9GoiEZRKtkwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "BHttpConnectionBase.java"}, "function": {"name": "boolean org.apache.http.impl.BHttpConnectionBase.awaitInput(int)", "offset": 3}, "line": {"number": 352}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u3PdJ9uaY7J6wq8TpSw5VQAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "PooledByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.PooledByteBufAllocator.newDirectBuffer(int, int)", "offset": 5}, "line": {"number": 324}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "q1YchijpAoN9quqXsOpNXAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "QueryShardContext.java"}, "function": {"name": "org.elasticsearch.index.fielddata.IndexFieldData org.elasticsearch.index.query.QueryShardContext.getForField(org.elasticsearch.index.mapper.MappedFieldType)"}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Lu4BbYQNxvrnJvSur5jWAAAAAAAAAADx"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 24}, "line": {"number": 239}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LV1qJd4M55A4v0lGtbHYuQAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.internalSend(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.BytesReference, org.elasticsearch.transport.OutboundMessage, org.elasticsearch.action.ActionListener)", "offset": 6}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ql-uKAi1beGz8RyiqP5WDgAAAAAAAADJ"}} +{"Stackframe": {"file": {"name": "Integer.java"}, "function": {"name": "int java.lang.Integer.parseInt(java.lang.String, int)", "offset": 39}, "line": {"number": 580}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YfMcWwmYKFEdOMSXQpAcFQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "int org.apache.lucene.index.ReadersAndUpdates.numDeletesToMerge(org.apache.lucene.index.MergePolicy)"}, "line": {"number": 239}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7NLXRYAsb_z9eb6-ioJ6zAAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.lambda$innerRun$2(org.elasticsearch.action.search.SearchPhaseController$ReducedQueryPhase, boolean)"}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Nc9gj1rv2NerZVTmjxTx9AAAAAAAAACG"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.writeFromNativeBuffer(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 18}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HiZ-6KD6vJXlsPjO_4DSZgAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "BlobStoreIndexShardSnapshot.java"}, "function": {"name": "void org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshot$FileInfo.toXContent(org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshot$FileInfo, org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 2}, "line": {"number": 238}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "coGbgI5VX4tHafqQ7qCCXwAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.wakeup(boolean)", "offset": 1}, "line": {"number": 707}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kqALn-276gj3K_58lk3JpwAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.commitIndexWriter(org.apache.lucene.index.IndexWriter, org.elasticsearch.index.translog.Translog, java.lang.String)", "offset": 33}, "line": {"number": 2525}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MjSrWlLYBonpC2jkI8XqZQAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler$$Lambda$4544+0x0000000801832cf8.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlNsK"}} +{"Stackframe": {"function": {"name": "ip_local_out"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-0tvzLPWeBElB1zjJ37InwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.engine.InternalEngine.acquireIndexCommitRef(java.util.function.Supplier)", "offset": 3}, "line": {"number": 2204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApUjh"}} +{"Stackframe": {"function": {"name": "vsnprintf"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TM5vHmZRGlLyNtB_jDhdvQAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "QuotaAwareFileSystemProvider.java"}, "function": {"name": "java.nio.channels.FileChannel co.elastic.cloud.quotaawarefs.QuotaAwareFileSystemProvider.newFileChannel(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])"}, "line": {"number": 373}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "q6h8WxXFV1hXZzG4J6n18QAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "boolean java.nio.file.Files.exists(java.nio.file.Path, java.nio.file.LinkOption[])", "offset": 3}, "line": {"number": 2523}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Fg4NMOPkVMAzVy8T89petAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "BitsetFilterCache.java"}, "function": {"name": "void org.elasticsearch.index.cache.bitset.BitsetFilterCache$BitSetProducerWarmer.lambda$warmReader$1(org.apache.lucene.search.Query, org.apache.lucene.index.LeafReaderContext, org.elasticsearch.index.shard.IndexShard, java.util.concurrent.CountDownLatch)", "offset": 1}, "line": {"number": 281}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQL"}} +{"Stackframe": {"function": {"name": "audit_filter_rules.constprop.21"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WZoc9LDALgnb0WdOEBNL7gAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Settings.get(java.lang.String, java.lang.String)"}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pI3Jd4BkOvMo6mjauYfS1gAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.moveToNextPhase(org.elasticsearch.action.search.SearchPhaseController, org.elasticsearch.common.util.concurrent.AtomicArray, org.elasticsearch.action.search.SearchPhaseController$ReducedQueryPhase, org.elasticsearch.common.util.concurrent.AtomicArray)", "offset": 2}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MjW-al2LhfRAmoDOM921SgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "TransportSingleShardAction.java"}, "function": {"name": "void org.elasticsearch.action.support.single.shard.TransportSingleShardAction$AsyncSingleAction$2.handleResponse(org.elasticsearch.action.ActionResponse)"}, "line": {"number": 247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oD19bmvIeXt5AY08cDQa7gAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$1.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 14}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpY"}} +{"Stackframe": {"function": {"name": "__vfs_read"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.authorizeRequest(org.elasticsearch.xpack.security.authc.Authentication, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 20}, "line": {"number": 210}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6HagrPNegEb1JoaDvxlnywAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseNonDynamicArray(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, java.lang.String)", "offset": 5}, "line": {"number": 702}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rD7cM-A9XXlHFS-efShWpgAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$authenticateAsync$2(org.elasticsearch.xpack.security.authc.Authentication)", "offset": 3}, "line": {"number": 214}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAFJ"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 64}, "line": {"number": 569}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GnPhLFYgOQzRsCZS1-Gy-wAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput$$Lambda$9081+0x00000008020d75c8.write(org.elasticsearch.common.io.stream.StreamOutput, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_eROpl6E28RmJR5mQ58QhgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.Set java.util.HashMap.keySet()"}, "line": {"number": 912}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "t5ImPROd9wzf5BDFezVfygAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "RestClusterGetSettingsAction.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.rest.action.admin.cluster.RestClusterGetSettingsAction.access$000(org.elasticsearch.rest.action.admin.cluster.RestClusterGetSettingsAction, org.elasticsearch.cluster.ClusterState, boolean, org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "UnixFileAttributeViews.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes sun.nio.fs.UnixFileAttributeViews$Basic.readAttributes()", "offset": 3}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAir6d"}} +{"Stackframe": {"function": {"name": "skb_page_frag_refill"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZYJrmLEjznzm7GSiXKeulgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.mergeSortedNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.index.MergeState)"}, "line": {"number": 375}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rkRxFT_Hw_jUlcBT_NPUjAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "MergePolicy.java"}, "function": {"name": "long org.apache.lucene.index.MergePolicy.size(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.IndexWriter)"}, "line": {"number": 553}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VzxcNLeQrb3VpOQzfT9ZjwAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "FieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.FieldMapper.parse(org.elasticsearch.index.mapper.ParseContext)", "offset": 3}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "miUOwVRI4MuRY5ssS_ctgQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentParser$Token org.elasticsearch.common.xcontent.json.JsonXContentParser.currentToken()"}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HHPnc3y4NDPeB1XAopRksQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$6888+0x0000000801db0430.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H0h6lzNvofKorvD8mKU50gAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "PushPostingsWriterBase.java"}, "function": {"name": "org.apache.lucene.codecs.BlockTermState org.apache.lucene.codecs.PushPostingsWriterBase.writeTerm(org.apache.lucene.util.BytesRef, org.apache.lucene.index.TermsEnum, org.apache.lucene.util.FixedBitSet)", "offset": 7}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2uEt67j3DRok5P1YS1B80QAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "AbstractByteBuf.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.AbstractByteBuf.writeBytes(io.netty.buffer.ByteBuf, int, int)", "offset": 2}, "line": {"number": 1069}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0a23KvN2VLP0GcUAHobKkwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "long org.elasticsearch.index.mapper.DateFieldMapper$DateFieldType$$Lambda$6412+0x0000000801ccced8.getAsLong()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FedFnYQW8bHf16nVrC3eNgAAAAAAAAFw"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 75}, "line": {"number": 343}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2CGtnJ07OTAIG4qsGNuVkwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.cluster.node.DiscoveryNode$$Lambda$6874+0x000000080242ef08.write(org.elasticsearch.common.io.stream.StreamOutput, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XnVOjmJUI-Ij_AtInz21QAAAAAAAAABU"}} +{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "org.elasticsearch.threadpool.Scheduler$ScheduledCancellable org.elasticsearch.threadpool.ThreadPool.schedule(java.lang.Runnable, org.elasticsearch.core.TimeValue, java.lang.String)", "offset": 32}, "line": {"number": 464}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rEnON3ZlkGqwhN9n9GMtyQAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$authorizeIndexAction$4(org.elasticsearch.action.ActionListener, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, java.util.Map, org.elasticsearch.xpack.core.security.authz.ResolvedIndices)", "offset": 7}, "line": {"number": 378}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IaGOpXjXn5EHF-K9uwEUPQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FilterDirectoryReader.java"}, "function": {"name": "void org.apache.lucene.index.FilterDirectoryReader.doClose()"}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xiNRq7Ruj11jfgYHuwwWowAAAAAAAAIa"}} +{"Stackframe": {"file": {"name": "MapperService.java"}, "function": {"name": "java.util.Map org.elasticsearch.index.mapper.MapperService.internalMerge(org.elasticsearch.index.mapper.DocumentMapper, java.lang.String, java.util.List, org.elasticsearch.index.mapper.MapperService$MergeReason, boolean)", "offset": 52}, "line": {"number": 393}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.handleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 4}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jBeiHwwOyRIapBbs5J2OjgAAAAAAAAB4"}} +{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.onResponse(java.lang.Object)", "offset": 13}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BTDQHzxuOEAYM78jOAyAQAAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Result org.elasticsearch.action.bulk.TransportShardBulkAction.performOpOnReplica(org.elasticsearch.action.DocWriteResponse, org.elasticsearch.action.DocWriteRequest, org.elasticsearch.index.shard.IndexShard)", "offset": 14}, "line": {"number": 592}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIRA"}} +{"Stackframe": {"function": {"name": "ip_protocol_deliver_rcu"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VHW64ADdKWEeKDNfyNMi1wAAAAAAAACL"}} +{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.xcontent.ObjectParser.parse(org.elasticsearch.xcontent.XContentParser, java.lang.Object, java.lang.Object)", "offset": 21}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jFdJcMgaSFpzbEGK5Q4RcQAAAAAAAADl"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeBulkItems$19(org.elasticsearch.action.bulk.BulkShardRequest, java.util.Map, org.elasticsearch.xpack.security.audit.AuditTrail, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, java.util.Collection)", "offset": 56}, "line": {"number": 803}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FCDKDuwrtiBO1VhqKBNSawAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "DateTimeFormatter.java"}, "function": {"name": "java.lang.String org.joda.time.format.DateTimeFormatter.print(long)", "offset": 2}, "line": {"number": 690}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFzd"}} +{"Stackframe": {"function": {"name": "smp_call_function_many"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dswq7UFB-c5kE0TfryCD4gAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$1.onResponse(java.lang.Object)"}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "O_mHTPntGTw_EnF-rkI8XgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.s3.S3BlobContainer.lambda$writeBlob$1(long, java.lang.String, java.io.InputStream)", "offset": 1}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZMNLhB6JRntztnCFdMqTDwAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.executeBulk(org.elasticsearch.tasks.Task, org.elasticsearch.action.bulk.BulkRequest, long, org.elasticsearch.action.ActionListener, org.elasticsearch.common.util.concurrent.AtomicArray, java.util.Map)"}, "line": {"number": 474}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OtlZl4diRpDtcAsn79IxmgAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "void org.elasticsearch.search.internal.ContextIndexSearcher.search(java.util.List, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 1}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HVhQ434ZUWqRQ1_LQX_XpwAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "StreamSpliterators.java"}, "function": {"name": "boolean java.util.stream.StreamSpliterators$AbstractWrappingSpliterator.doAdvance()", "offset": 8}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEP"}} +{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.CommonStats.(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 38}, "line": {"number": 207}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8M1BLNGIf7nUxDe3LzOquQAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.util.stream.Sink java.util.stream.AbstractPipeline.wrapSink(java.util.stream.Sink)", "offset": 3}, "line": {"number": 522}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BclABPaTGPcTz5H4BnHdywAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "SdkTLSSocketFactory.java"}, "function": {"name": "java.net.Socket com.amazonaws.http.conn.ssl.SdkTLSSocketFactory.connectSocket(int, java.net.Socket, org.apache.http.HttpHost, java.net.InetSocketAddress, java.net.InetSocketAddress, org.apache.http.protocol.HttpContext)", "offset": 6}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Qp1ou8dsBjdX83hQaikvWAAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$10719+0x000000080297da28.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C_8b8QYLHmjQu9l_QeSByQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "com.amazonaws.services.s3.model.ObjectMetadata com.amazonaws.services.s3.AmazonS3Client$PutObjectStrategy.invokeServiceCall(com.amazonaws.Request)"}, "line": {"number": 6531}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Kx8l7dXRj3ShNeec-0AIJQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "RandomAccessFile.java"}, "function": {"name": "int java.io.RandomAccessFile.readBytes(byte[], int, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pMuceywkbX_kBQbNeyKYjAAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "ClusterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterService.lambda$publishAndApplyChanges$7(org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.ClusterStateListener)", "offset": 1}, "line": {"number": 777}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M0BdGcfCFDkj9hzrRHcPqQAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateAppliers(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder)", "offset": 1}, "line": {"number": 540}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gEM872jKqCuxRPvZH3-WoQAAAAAAAADY"}} +{"Stackframe": {"file": {"name": "SSLCipher.java"}, "function": {"name": "int sun.security.ssl.SSLCipher$T12GcmWriteCipherGenerator$GcmWriteCipher.encrypt(byte, java.nio.ByteBuffer)", "offset": 47}, "line": {"number": 1787}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7DLC5wtcLGlUJXp1Z_gmrwAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6894+0x0000000801db0ec8.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ewsJ-53AIru87e73lER0yAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ClientConfiguration.java"}, "function": {"name": "java.lang.String com.amazonaws.ClientConfiguration.getSystemProperty(java.lang.String)"}, "line": {"number": 637}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAAoVn"}} +{"Stackframe": {"function": {"name": "xfs_bmbt_disk_set_all"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 8}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PEbpT_8Xljn7u1j5oJzfHQAAAAAAAAEV"}} +{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.dataformat.smile.SmileParser._handleFieldName()", "offset": 44}, "line": {"number": 1333}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAilGm"}} +{"Stackframe": {"function": {"name": "sock_alloc"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Q2C16xnnLROoDwjN2vJmuQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "void org.apache.lucene.index.SegmentMerger.mergeDocValues(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.SegmentReadState)", "offset": 1}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EOhzOggf9JqhahPYi6f8_wAAAAAAAABC"}} +{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.xcontent.json.JsonXContentGenerator.close()", "offset": 12}, "line": {"number": 463}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RHxLaEMnlCvBO70F4Bq3fwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ClusterStateNodeUpdater.java"}, "function": {"name": "void org.elasticsearch.plugin.found.zookeeper.updaters.ClusterStateNodeUpdater.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)"}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4y1QLnOo_87Zcna0Yb8QdQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.util.stream.Stream java.util.Collections$UnmodifiableCollection.stream()"}, "line": {"number": 1106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "S5Qnu1ngkxm3zZ2kcSiESwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ByteSizeValue.java"}, "function": {"name": "long org.elasticsearch.common.unit.ByteSizeValue.getBytes()"}, "line": {"number": 123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8hquOE5UjuqbQKed-OMfiwAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "URLClassPath.java"}, "function": {"name": "java.net.URL jdk.internal.loader.URLClassPath.findResource(java.lang.String, boolean)", "offset": 1}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BLf2vQ7pSIJAS1WNVmuyJQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "RestSearchAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction.parseSearchRequest(org.elasticsearch.action.search.SearchRequest, org.elasticsearch.rest.RestRequest, org.elasticsearch.xcontent.XContentParser, org.elasticsearch.common.io.stream.NamedWriteableRegistry, java.util.function.IntConsumer)"}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sR5zhDl0Yr2_VOFyRVLr2QAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "java.lang.String java.lang.String.replace(java.lang.CharSequence, java.lang.CharSequence)"}, "line": {"number": 2239}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-ZUigVp6H-HqH1lR0smw4gAAAAAAAACq"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.applyIndexOperation(org.elasticsearch.index.engine.Engine, long, long, long, org.elasticsearch.index.VersionType, long, long, long, boolean, org.elasticsearch.index.engine.Engine$Operation$Origin, org.elasticsearch.index.mapper.SourceToParse)", "offset": 13}, "line": {"number": 832}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Sxgb26oKQwlt07if9woPTQAAAAAAACWp"}} +{"Stackframe": {"function": {"name": "br_nf_pre_routing"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL3g3"}} +{"Stackframe": {"function": {"name": "new_inode_pseudo"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YwdW3gX5WZ-203-ZtRSpdAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "void org.apache.lucene.index.ReadersAndUpdates.swapNewReaderWithLatestLiveDocs()"}, "line": {"number": 682}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKjw3"}} +{"Stackframe": {"function": {"name": "__kmalloc_track_caller"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5aCosL5sFCAbDkRqY-Vk6QAAAAAAAACA"}} +{"Stackframe": {"file": {"name": "BHttpConnectionBase.java"}, "function": {"name": "org.apache.http.HttpEntity org.apache.http.impl.BHttpConnectionBase.prepareInput(org.apache.http.HttpMessage)", "offset": 22}, "line": {"number": 240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "s2LTirMvOXiDsBun6I-UyQAAAAAAAACf"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.apply(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.support.ActionFilterChain)", "offset": 22}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ryiaiFPVyjm4XARK10gZ3QAAAAAAAAEL"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.rest.RestHandler, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 42}, "line": {"number": 274}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAl1AE"}} +{"Stackframe": {"function": {"name": "tcp_v4_rcv"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9tBq-irshkmth8o7ZIdyJQAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction.executeMasterOperation(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.master.MasterNodeRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p5ru2wuJ3sk-XG9kZ_YjVwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "int org.elasticsearch.search.fetch.subphase.MatchedQueriesFetchSubPhase$$Lambda$2198.compare(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7XBgGePzkwLX67jllStkPQAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.SingleThreadEventExecutor.execute(java.lang.Runnable)", "offset": 16}, "line": {"number": 753}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HFPQZoN2n5VkO5BMHQfrJgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.processEvents(boolean, boolean)"}, "line": {"number": 5034}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi7h6"}} +{"Stackframe": {"function": {"name": "skb_recv_datagram"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JS-WjNz0QulnqSlnIs8U0wAAAAAAAADS"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.updateShardState(org.elasticsearch.cluster.routing.ShardRouting, long, java.util.function.BiConsumer, long, java.util.Set, org.elasticsearch.cluster.routing.IndexShardRoutingTable)", "offset": 18}, "line": {"number": 484}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "O38ExJm6dTm9AiuCGNtIYQAAAAAAAAB9"}} +{"Stackframe": {"file": {"name": "Lucene50PostingsReader.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene50.Lucene50PostingsReader$BlockDocsEnum.advance(int)", "offset": 21}, "line": {"number": 421}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x72T8kxYZuozQaY_lcc1WQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$AuthorizationResultListener.onResponse(java.lang.Object)"}, "line": {"number": 931}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EYzjRFYzs1PS5SqhLPJ7TQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "boolean java.util.concurrent.LinkedTransferQueue.offer(java.lang.Object)"}, "line": {"number": 1213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rACFiisEDT-b6Twii8Yc6AAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.metadata.Template$$Lambda$2977+0x00000008013a2a08.parse(org.elasticsearch.xcontent.XContentParser, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1V8iUm4ymRrWn84wHbGE5wAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$6471+0x0000000801c86360.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZhtNJYoOwm655zArM3sIngAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()", "offset": 3}, "line": {"number": 921}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.fsync(java.nio.file.Path, boolean)", "offset": 10}, "line": {"number": 471}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vhMTgwXcJBbn9i99hn5MzAAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "Spliterator.java"}, "function": {"name": "long java.util.Spliterator.getExactSizeIfKnown()"}, "line": {"number": 408}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "76wxGzK61aMnsTPSzlLCrgAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.internalSend(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.BytesReference, org.elasticsearch.transport.OutboundMessage, org.elasticsearch.action.ActionListener)", "offset": 6}, "line": {"number": 203}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zKYR7j-DmhHwkALRUz3Z0gAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "DocValuesIndexFieldData.java"}, "function": {"name": "void org.elasticsearch.index.fielddata.plain.DocValuesIndexFieldData.(org.elasticsearch.index.Index, java.lang.String)", "offset": 3}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ahPUgO5HrpkjK8o4_e1P2gAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.netty.channel.ChannelPromise)", "offset": 5}, "line": {"number": 814}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2pe-vvUhcqWCQ2Ttp9ucQQAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext org.elasticsearch.common.util.concurrent.ThreadContext.stashContext()", "offset": 1}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YR_FSps0OAaHwOXXqmvF8gAAAAAAAAGA"}} +{"Stackframe": {"file": {"name": "NodesInfoResponse.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.action.admin.cluster.node.info.NodesInfoResponse.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 34}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wiT2hBI_xzd4wxnb9xk4TAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6901+0x0000000801db1f88.getAsync(org.elasticsearch.action.ActionListener)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nt0VAZdwKPtVfJRsjYGLLQAAAAAAAADb"}} +{"Stackframe": {"file": {"name": "SegmentDocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.index.SegmentDocValuesProducer.(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos, org.apache.lucene.index.FieldInfos, org.apache.lucene.index.SegmentDocValues)", "offset": 40}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cMXYJMRG12GUF62IrJS85QAAAAAAAACQ"}} +{"Stackframe": {"file": {"name": "Lucene90PostingsReader.java"}, "function": {"name": "org.apache.lucene.index.PostingsEnum org.apache.lucene.codecs.lucene90.Lucene90PostingsReader.postings(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.BlockTermState, org.apache.lucene.index.PostingsEnum, int)", "offset": 23}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ir4HFMHnQmh-eWJUABFqDQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService$AsyncRefreshTask.runInternal()"}, "line": {"number": 1049}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DPiwYCjZz_rDZ2kyScPDiwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DefaultHttpRequestWriter.java"}, "function": {"name": "void org.apache.http.impl.io.DefaultHttpRequestWriter.writeHeadLine(org.apache.http.HttpMessage)"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hI4WqiEJ_WlpDLkeI--cWgAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "BooleanQuery.java"}, "function": {"name": "boolean org.apache.lucene.search.BooleanQuery.equals(java.lang.Object)", "offset": 1}, "line": {"number": 428}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nXZoigYd2OufPwfiQoHMZgAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "AbstractAWSSigner.java"}, "function": {"name": "byte[] com.amazonaws.auth.AbstractAWSSigner.sign(byte[], byte[], com.amazonaws.auth.SigningAlgorithm)", "offset": 2}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h6Obzp5eyXgRpUblA-ofAQAAAAAAAAC9"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 40}, "line": {"number": 306}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAsTF"}} +{"Stackframe": {"function": {"name": "xen_smp_send_call_function_single_ipi"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NHPyipJQI7KfDzlpk9tK3wAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$8083+0x00000008026c0000.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bY0nITYYTRCo5XIvB0MFHAAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "ShardSearchRequest.java"}, "function": {"name": "void org.elasticsearch.search.internal.ShardSearchRequest.innerWriteTo(org.elasticsearch.common.io.stream.StreamOutput, boolean)", "offset": 9}, "line": {"number": 262}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cmbVhNLyn_i7RNmgiqLK9wAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.io.stream.StreamInput.readGenericValue()"}, "line": {"number": 495}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UAASD7dzTPnlhk6HeFZ3IwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "boolean org.elasticsearch.index.mapper.DocumentParser.isEmptyDoc(org.elasticsearch.index.mapper.RootObjectMapper, org.elasticsearch.xcontent.XContentParser)", "offset": 1}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cmbVhNLyn_i7RNmgiqLK9wAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.io.stream.StreamInput.readGenericValue()", "offset": 5}, "line": {"number": 500}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "V9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.close(java.lang.Iterable)", "offset": 4}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lWkQKFLf3s6H7tmeRjlAcAAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.metadata.MetadataCreateIndexService$$Lambda$9540+0x00000008021722f8.apply(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Zq"}} +{"Stackframe": {"function": {"name": "netlink_recvmsg"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "Spliterators.java"}, "function": {"name": "void java.util.Spliterators$ArraySpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 4}, "line": {"number": 948}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "01WA1i4lyjeuyXDzuIDSXwAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.json.JsonXContentGenerator.writeStartObject()", "offset": 6}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hpS1QtdrBQjGg-LCbfqeSAAAAAAAAA91"}} +{"Stackframe": {"function": {"name": "br_dev_xmit"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8ebb3ost-YWwZ9Gy9pOAhAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.BCrypt.encipher(int[], int)"}, "line": {"number": 490}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kUQWAMnv1TRPiRV23phECQAAAAAAAACM"}} +{"Stackframe": {"file": {"name": "UnixFileSystem.java"}, "function": {"name": "java.lang.String java.io.UnixFileSystem.canonicalize(java.lang.String)", "offset": 23}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u9i0wy0O38hO4Zw-9PYDFgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ConstructingObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.ConstructingObjectParser$Target.access$000(org.elasticsearch.common.xcontent.ConstructingObjectParser$Target)"}, "line": {"number": 396}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OBdJ094KTWSYvLD_Svy2DQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "DocumentFieldMappers.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentFieldMappers.put(java.util.Map, java.lang.String, org.apache.lucene.analysis.Analyzer, org.apache.lucene.analysis.Analyzer)", "offset": 3}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_C3zmgl0Bjr8nR0878NBsAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.common.util.concurrent.ThreadContext.readHeadersFromStream(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FvLEgO6EVwqVPblJ4ky7owAAAAAAAAEA"}} +{"Stackframe": {"file": {"name": "ExecutionService.java"}, "function": {"name": "org.elasticsearch.xpack.watcher.history.WatchRecord org.elasticsearch.xpack.watcher.execution.ExecutionService.execute(org.elasticsearch.xpack.watcher.execution.WatchExecutionContext)", "offset": 37}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2MiYfYCBqrvhILG9OTjmzgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "RetryListener.java"}, "function": {"name": "void org.elasticsearch.index.reindex.RetryListener.onResponse(java.lang.Object)"}, "line": {"number": 20}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h_QroixBMtZeI1zG0ozyLgAAAAAAAAAv"}} +{"Stackframe": {"file": {"name": "TieredMergePolicy.java"}, "function": {"name": "java.util.List org.apache.lucene.index.TieredMergePolicy.getSortedBySegmentSize(org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 3}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TXS-M7XDD4DedgFr7B7PEgAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "BytesStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.BytesStreamOutput.writeBytes(byte[], int, int)", "offset": 13}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "U2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun()", "offset": 5}, "line": {"number": 638}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C-I1jrEt6-fVr4MQt-S3FgAAAAAAAACe"}} +{"Stackframe": {"file": {"name": "StreamDecoder.java"}, "function": {"name": "int sun.nio.cs.StreamDecoder.lockedRead(char[], int, int)", "offset": 34}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k6L8sVEMOOa2vwEgI2H-PQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.field(java.lang.String, java.lang.String)", "offset": 4}, "line": {"number": 630}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B3q4S4Ckg_Xt-OI4yuAyoQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "SdkFilterInputStream.java"}, "function": {"name": "int com.amazonaws.internal.SdkFilterInputStream.read(byte[], int, int)", "offset": 1}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uof2oKCX86V-_cQCuGg7EwAAAAAAAGuT"}} +{"Stackframe": {"function": {"name": "ipv4_conntrack_in"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xiNRq7Ruj11jfgYHuwwWowAAAAAAAAIq"}} +{"Stackframe": {"file": {"name": "MapperService.java"}, "function": {"name": "java.util.Map org.elasticsearch.index.mapper.MapperService.internalMerge(org.elasticsearch.index.mapper.DocumentMapper, java.lang.String, java.util.List, org.elasticsearch.index.mapper.MapperService$MergeReason, boolean)", "offset": 53}, "line": {"number": 394}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dmm7_Hn3SrysHeUffmIe9AAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "IndexShardOperationPermits.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShardOperationPermits.acquire(org.elasticsearch.action.ActionListener, java.lang.String, boolean, java.lang.Object)", "offset": 5}, "line": {"number": 221}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "djagdXM_c9EROkycKgSbxgAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "SearchHits.java"}, "function": {"name": "void org.elasticsearch.search.SearchHits.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 5}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApRAM"}} +{"Stackframe": {"function": {"name": "number"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QSSOb0-tvuwiWAWKyDlIcwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Deflater.java"}, "function": {"name": "int java.util.zip.Deflater.deflateBytes(long, byte[], int, int, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALz_p"}} +{"Stackframe": {"function": {"name": "__d_lookup_rcu"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XLN55eJ2HplxP0Fb2YBmOQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "PipelineConfiguration.java"}, "function": {"name": "java.util.Map org.elasticsearch.ingest.PipelineConfiguration.getConfigAsMap()"}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MXYcd3n7LsWw7I27yRI03QAAAAAAAARr"}} +{"Stackframe": {"file": {"name": "ObjectName.java"}, "function": {"name": "void javax.management.ObjectName.construct(java.lang.String)", "offset": 241}, "line": {"number": 663}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "24n4ePzlVWsDesrOF5pV4gAAAAAAAAGs"}} +{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "int sun.security.ssl.SSLSocketImpl$AppInputStream.read(byte[], int, int)", "offset": 71}, "line": {"number": 1059}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "36oRMyUvgSK3WoVHEmkD5AAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory.fsync(java.lang.String)"}, "line": {"number": 331}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kkU17D-EC7UgmQ1ezfZJnwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "void org.elasticsearch.indices.IndicesService.deleteIndexStore(java.lang.String, org.elasticsearch.index.Index, org.elasticsearch.index.IndexSettings)"}, "line": {"number": 996}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YcJNXHy_STqTylSikTWNBwAAAAAAAABw"}} +{"Stackframe": {"file": {"name": "IntroSorter.java"}, "function": {"name": "void org.apache.lucene.util.IntroSorter.sort(int, int, int)", "offset": 23}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kM36S6dhzscRpMd_tais4QAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "long org.apache.lucene.search.Boolean2ScorerSupplier.cost()", "offset": 1}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GY5WEW77dofWJpcPe0twUgAAAAAAAADQ"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$authorizeIndexAction$3(org.elasticsearch.transport.TransportRequest, org.elasticsearch.xpack.core.security.authz.permission.Role, java.lang.String, org.elasticsearch.action.ActionListener, java.util.Map, org.elasticsearch.xpack.core.security.authz.ResolvedIndices)", "offset": 19}, "line": {"number": 386}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lH7EdNhUWMEu-Xw0OnFCsgAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "LRUQueryCache.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight.bulkScorer(org.apache.lucene.index.LeafReaderContext)", "offset": 12}, "line": {"number": 906}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "liBIaA3GgrvMjjdVQWjGiQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "CollectionUtil.java"}, "function": {"name": "int org.apache.lucene.util.CollectionUtil$ListIntroSorter.compare(int, int)"}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7TPQy1lIigGeJ-ojTqWNMgAAAAAAAAFP"}} +{"Stackframe": {"file": {"name": "PolicyStepsRegistry.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.Step org.elasticsearch.xpack.ilm.PolicyStepsRegistry.getStep(org.elasticsearch.cluster.metadata.IndexMetadata, org.elasticsearch.xpack.core.ilm.Step$StepKey)", "offset": 31}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASgxU"}} +{"Stackframe": {"function": {"name": "__aa_path_perm"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Nprc5IMxHetRKiP8LQeHeAAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.wakeup(boolean)", "offset": 1}, "line": {"number": 777}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lZTvs585vMzXjn3UHln0NQAAAAAAAAGi"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.engine.InternalEngine.index(org.elasticsearch.index.engine.Engine$Index)", "offset": 61}, "line": {"number": 954}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EAeWdOtQ4-I723aXPsAYbQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkWrite(java.lang.String)"}, "line": {"number": 979}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nXCb1JxZ0dz33zJkoeoA-QAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "DeflaterOutputStream.java"}, "function": {"name": "void java.util.zip.DeflaterOutputStream.deflate()"}, "line": {"number": 253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1dtimHb35RfEFCzsXx56LgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "FilterClient.java"}, "function": {"name": "void org.elasticsearch.client.internal.FilterClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eI9MUSpnSoMy-uDN6oCSMQAAAAAAAABe"}} +{"Stackframe": {"file": {"name": "SearchScrollAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchScrollAsyncAction$1.innerOnResponse(org.elasticsearch.search.SearchPhaseResult)", "offset": 6}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3slcba9RWlFACgQsilahdAAAAAAAAACN"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.authenticateWithCache(org.elasticsearch.xpack.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener)", "offset": 17}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vtOmTuUGvKYiQRK_O9kHuwAAAAAAAAGJ"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "long[] org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.writeValues(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 59}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y-xOiN3xIz7dDoZSQjwEygAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "FileChannel.java"}, "function": {"name": "java.nio.channels.FileChannel java.nio.channels.FileChannel.open(java.nio.file.Path, java.nio.file.OpenOption[])", "offset": 2}, "line": {"number": 335}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DVSkUfLwOzQuwgYi6TvurAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "AbstractCollection.java"}, "function": {"name": "boolean java.util.AbstractCollection.addAll(java.util.Collection)", "offset": 1}, "line": {"number": 335}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RpSDTug63es5x1j9yGrZyAAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "ChannelInputStream.java"}, "function": {"name": "int sun.nio.ch.ChannelInputStream.read()", "offset": 2}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wbXchxxT4Ky_qloYOdv6IwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "java.util.regex.Pattern java.util.regex.Pattern.compile(java.lang.String, int)"}, "line": {"number": 1054}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nd8ByWx0Um8uF6bezxKuxAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "java.nio.file.Path[] org.elasticsearch.watcher.FileWatcher$FileObserver.listFiles()"}, "line": {"number": 210}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aZM24L3D9yPtDjUQ3lJ1qAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction$$Lambda$4452+0x0000000801946510.apply(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZkPmPV7VCVD8EkLP0Gy3BwAAAAAAAAPS"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.snapshotShard(org.elasticsearch.repositories.SnapshotShardContext)", "offset": 155}, "line": {"number": 2796}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU7"}} +{"Stackframe": {"function": {"name": "try_to_wake_up"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hBUNaVxpxgiirSJwsy2IpAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "SortedSetDVOrdinalsIndexFieldData.java"}, "function": {"name": "org.elasticsearch.index.fielddata.IndexFieldData org.elasticsearch.index.fielddata.plain.SortedSetDVOrdinalsIndexFieldData.loadGlobal(org.apache.lucene.index.DirectoryReader)"}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kUJgVxIXgDBTomuPsxvCVwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "java.lang.Object java.util.AbstractMap.get(java.lang.Object)"}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dH_-XVY1o9Dh1CsvXltQLQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$authenticateAsync$2(org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 1}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WXXg2SS3W7AU90NqSnrfYQAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "RetryableAction.java"}, "function": {"name": "void org.elasticsearch.action.support.RetryableAction$RetryingListener.onResponse(java.lang.Object)", "offset": 2}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "69Ape6b0-GRsMkZddSM5EwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.DefaultChannelPipeline.writeAndFlush(java.lang.Object)"}, "line": {"number": 1032}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vDU7E1ww8G9noy7HUAb7kQAAAAAAAABa"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.writeIncrementalStateAndCommit(long, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)", "offset": 11}, "line": {"number": 777}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Hxz-uf3OTF7oGg94lksRIAAAAAAAAAHe"}} +{"Stackframe": {"file": {"name": "Lucene60PointsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene60.Lucene60PointsWriter.merge(org.apache.lucene.index.MergeState)", "offset": 73}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZQyHXm2PqJnrzI2fVGLZ8AAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain$$Lambda$7957+0x0000000802625d90.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "U_oZxhTm05Eok6Ih3UqoFwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.doHandleResponse(org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2mI3AZHeWLrt5pGOQcXwggAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Enum.java"}, "function": {"name": "int java.lang.Enum.compareTo(java.lang.Enum)"}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dNeX5fcNMGja1UEMRoE5DwAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "TransportGetSnapshotsAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.snapshots.get.TransportGetSnapshotsAction.lambda$getSingleRepoSnapshotInfo$5(org.elasticsearch.cluster.SnapshotsInProgress, java.lang.String, java.lang.String[], boolean, boolean, java.util.Map, java.util.List, org.elasticsearch.tasks.CancellableTask, org.elasticsearch.action.admin.cluster.snapshots.get.GetSnapshotsRequest$SortBy, org.elasticsearch.action.admin.cluster.snapshots.get.GetSnapshotsRequest$After, int, org.elasticsearch.search.sort.SortOrder, org.elasticsearch.action.ActionListener, org.elasticsearch.repositories.RepositoryData)"}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "g8uTn1yVw1EYmPA-d4Jf8QAAAAAAAAFt"}} +{"Stackframe": {"file": {"name": "SSLConnectionSocketFactory.java"}, "function": {"name": "java.net.Socket org.apache.http.conn.ssl.SSLConnectionSocketFactory.createLayeredSocket(java.net.Socket, java.lang.String, int, org.apache.http.protocol.HttpContext)", "offset": 43}, "line": {"number": 436}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEH"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 57}, "line": {"number": 562}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "Cache.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.cache.Cache.computeIfAbsent(java.lang.Object, org.elasticsearch.common.cache.CacheLoader)", "offset": 2}, "line": {"number": 370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l8-8MRFLE8av7SNHPQQJVgAAAAAAAABi"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrap(io.netty.channel.ChannelHandlerContext, boolean)", "offset": 19}, "line": {"number": 840}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Bxro6MzL0IEoov9fTT11owAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "boolean org.apache.lucene.search.ConjunctionDISI$ConjunctionTwoPhaseIterator.matches()", "offset": 1}, "line": {"number": 345}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "K68quRzmwMwkh1BjI5vLeAAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "AbstractNioChannel.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.channel.nio.AbstractNioChannel.newDirectBuffer(io.netty.buffer.ByteBuf)", "offset": 8}, "line": {"number": 449}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l4uo7ghG5cU3c8mQHH1y3gAAAAAAAAAv"}} +{"Stackframe": {"file": {"name": "TieredMergePolicy.java"}, "function": {"name": "java.util.List org.apache.lucene.index.TieredMergePolicy.getSortedBySegmentSize(org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 5}, "line": {"number": 300}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cUbYCLGaGbgTEEgF2M5aIAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 2}, "line": {"number": 317}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cGRDia95o64czGD3ETERlQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "void org.elasticsearch.tracing.apm.APMTracer.stopTrace(java.lang.String)"}, "line": {"number": 374}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZlzgaLTArYTAL6Kw3yPwigAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "FileDispatcherImpl.java"}, "function": {"name": "int sun.nio.ch.FileDispatcherImpl.read0(java.io.FileDescriptor, long, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMurZ"}} +{"Stackframe": {"function": {"name": "do_epoll_wait"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x7_78vHPaEs7GBgJ0fETJAAAAAAAAAB8"}} +{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.merge(org.apache.lucene.index.MergeState, org.apache.lucene.codecs.NormsProducer)", "offset": 20}, "line": {"number": 205}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6UVknviTZuHBZK9RlE_ImQAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "MessageToMessageEncoder.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageEncoder.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 7}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yQDYDWiyDEgJMgGvgsz9TQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Lucene54DocValuesProducer.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.apache.lucene.codecs.lucene54.Lucene54DocValuesProducer$CompressedBinaryDocValues$CompressedBinaryTermsEnum.next()"}, "line": {"number": 1355}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ceSN5BlMG0ARBYcsvYKxUgAAAAAAAAC9"}} +{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.index.SegmentMerger.merge()", "offset": 32}, "line": {"number": 137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0yh"}} +{"Stackframe": {"function": {"name": "schedule_hrtimeout_range_clock"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vmmGHZfQIaqoPwChIOzq-QAAAAAAAABw"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.store.IOContext, java.lang.String, org.apache.lucene.codecs.compressing.CompressionMode, int, int, int)", "offset": 14}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3v2TU8A01iCPuVWdiUVv8QAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext$WriteTask.run()", "offset": 4}, "line": {"number": 1247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XadgtJFQ10pxn_-sij7tlQAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "void java.util.stream.AbstractPipeline.copyInto(java.util.stream.Sink, java.util.Spliterator)", "offset": 5}, "line": {"number": 485}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACc-s"}} +{"Stackframe": {"function": {"name": "release_task"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZPYGpHSseJG9PRYoGLBfTAAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "ResourceLeakDetector.java"}, "function": {"name": "void io.netty.util.ResourceLeakDetector$DefaultResourceLeak.(java.lang.Object, java.lang.ref.ReferenceQueue, java.util.Set)", "offset": 10}, "line": {"number": 381}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iRiNb1KQ25fdOTdSi9TsbgAAAAAAAABk"}} +{"Stackframe": {"file": {"name": "URLStreamHandler.java"}, "function": {"name": "void java.net.URLStreamHandler.setURL(java.net.URL, java.lang.String, java.lang.String, int, java.lang.String, java.lang.String)", "offset": 17}, "line": {"number": 561}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dlfntofA5ohST-yRkUwXxAAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.dispatchedShardOperationOnPrimary(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qh9TLv54zIF_xG_9OSwpiAAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "org.elasticsearch.index.translog.TranslogStats org.elasticsearch.index.translog.Translog.stats()", "offset": 7}, "line": {"number": 923}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Q1HRbZMZV9Fx6KiIEQ_vIQAAAAAAAAEF"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "org.elasticsearch.cluster.SnapshotsInProgress$Entry org.elasticsearch.snapshots.SnapshotsService$SnapshotShardsUpdateContext$EntryContext.computeUpdatedEntry()", "offset": 28}, "line": {"number": 3781}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hF3EmCBIcJDJnmvcAiPs1gAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FilterDirectory.deleteFile(java.lang.String)"}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eOzzLIU2TSEN-nL8WNPcPQAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "IndexTemplateRegistry.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.template.IndexTemplateRegistry.componentTemplatesExist(org.elasticsearch.cluster.ClusterState, org.elasticsearch.xpack.core.template.IndexTemplateConfig)", "offset": 4}, "line": {"number": 345}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CyFPDZBEiXoheKAUx-Kq0wAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeString(java.lang.String)"}, "line": {"number": 422}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "U3zFVJqAk_6RIGxkrHaHegAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "SSLCipher.java"}, "function": {"name": "int sun.security.ssl.SSLCipher$T13GcmWriteCipherGenerator$GcmWriteCipher.encrypt(byte, java.nio.ByteBuffer)"}, "line": {"number": 2038}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hLSDzfljATRl53NLUpYdIQAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "java.nio.channels.Selector sun.nio.ch.EPollSelectorImpl.wakeup()", "offset": 3}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jBwquBL06pqJXOt8kphl0gAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.lambda$wrapPrimaryOperationPermitListener$25(org.elasticsearch.action.ActionListener, org.elasticsearch.core.Releasable)", "offset": 1}, "line": {"number": 3354}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R-jXMS6WanN9UyjIfsACEAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$TreeNode java.util.HashMap$TreeNode.getTreeNode(int, java.lang.Object)"}, "line": {"number": 2027}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-ETEXRY5mnNoeyaCh_V2BwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "CachedLookupKey.java"}, "function": {"name": "co.elastic.apm.agent.weakconcurrent.CachedLookupKey co.elastic.apm.agent.weakconcurrent.CachedLookupKey.withValue(java.lang.Object)", "offset": 1}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ks4MbYgXaKKBNMAO1163fgAAAAAAAABR"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 10}, "line": {"number": 265}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "okmPT337sGHG_wLuhlx-SAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "AbstractObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.AbstractObjectParser.lambda$declareObjectArrayOrNull$15(org.elasticsearch.common.xcontent.ContextParser, org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)"}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fqaDj1pN5-CyodNN44HbZQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.shard.IndexShard.acquireIndexCommitForSnapshot()", "offset": 3}, "line": {"number": 1519}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MJcsrhwAFXYIvzoys3GDvAAAAAAAAAGQ"}} +{"Stackframe": {"file": {"name": "HttpContentEncoder.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpContentEncoder.encode(io.netty.channel.ChannelHandlerContext, io.netty.handler.codec.http.HttpObject, java.util.List)", "offset": 82}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ElasticsearchReaderManager.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.engine.ElasticsearchReaderManager.refreshIfNeeded(java.lang.Object)"}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xme1OLUOxM6S5mWcBl9N_gAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "SourceLookup.java"}, "function": {"name": "org.elasticsearch.common.collect.Tuple org.elasticsearch.search.lookup.SourceLookup.sourceAsMapAndType(org.elasticsearch.common.bytes.BytesReference)"}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5zeDK3wcoFBVPEbB7Y83WQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ImmutableOpenMap.java"}, "function": {"name": "boolean org.elasticsearch.common.collect.ImmutableOpenMap$2.hasNext()"}, "line": {"number": 152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Xr0Bjm7D2iSXOh3jIYDRhwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "TransportRequestHandler.java"}, "function": {"name": "void org.elasticsearch.transport.TransportRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 30}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2gTjCRy7Rx9JPHXqIf8dMgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "Coordinator.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.Coordinator$5.onResponse(java.lang.Object)"}, "line": {"number": 1134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7sFJhOclnef6voRTImotVQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "CollectionUtil.java"}, "function": {"name": "void org.apache.lucene.util.CollectionUtil.timSort(java.util.List)", "offset": 2}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9BsFwV8tobvksYfuNpORcQAAAAAAAACF"}} +{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 36}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C9UVUqjRD64_RWyXHEtr7QAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.dataformat.smile.SmileParser._decodeShortAsciiValue(int)", "offset": 1}, "line": {"number": 2223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZBffCB8CVAEJ8Ac3Zx76PQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.Settings$Builder.build()"}, "line": {"number": 1204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "56J_quP6E7ubMy0oFC4pVgAAAAAAAACG"}} +{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.lang.Object java.util.TreeMap.put(java.lang.Object, java.lang.Object, boolean)", "offset": 31}, "line": {"number": 814}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DYR4nla6rR5CkjYgb2INPQAAAAAAAAC1"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.merge(org.apache.lucene.index.MergeState)", "offset": 21}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.applyInternal(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.ActionFilterChain, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 21}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lm0R1SzMMmNN-37Ki9fPBwAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$DirectResponseChannel.sendResponse(org.elasticsearch.transport.TransportResponse)", "offset": 6}, "line": {"number": 1529}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IqyODyKRDqBBdiCPAauRDgAAAAAAAADg"}} +{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "void org.apache.lucene.index.SegmentReader.(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.SegmentReader, org.apache.lucene.util.Bits, org.apache.lucene.util.Bits, int, boolean)", "offset": 23}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MsVxGJ_9ADjCLmkId1rUYwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler$$Lambda$4228+0x0000000801893430.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "viZ5ADYbm1GIbrnCgwc2VQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "LongPipeline.java"}, "function": {"name": "void java.util.stream.LongPipeline.forEach(java.util.function.LongConsumer)"}, "line": {"number": 445}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2kNP-fbSjTC_hm1jEY6s0QAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.addNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)"}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nB1aJ0RC5jjZQRrK59KJIwAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", "offset": 6}, "line": {"number": 1122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZisowJWVFJUnsVdUEJd3iAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AWS4Signer.java"}, "function": {"name": "boolean com.amazonaws.auth.AWS4Signer.shouldExcludeHeaderFromSigning(java.lang.String)"}, "line": {"number": 538}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ERQe6ysQs8a3Aewl2ODwbwAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "void java.lang.Throwable.()", "offset": 58}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1cR9qK0QuNs5_6L4oQWr5gAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "URLClassPath.java"}, "function": {"name": "java.net.URL jdk.internal.loader.URLClassPath.findResource(java.lang.String, boolean)", "offset": 1}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QmuUiH2NpjjGuqAquMZQQwAAAAAAAAG7"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotsService.finalizeSnapshotEntry(org.elasticsearch.snapshots.Snapshot, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.repositories.RepositoryData)", "offset": 57}, "line": {"number": 1949}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RfwCDAkybtrSMQru6GZd7AAAAAAAAADH"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 48}, "line": {"number": 415}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "un6cBO6D7gNVatBvdCHO5wAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "ClientConnectionManagerFactory.java"}, "function": {"name": "java.lang.Object com.amazonaws.http.conn.ClientConnectionManagerFactory$Handler.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])", "offset": 2}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lmdMMTHiYSG09aFSlb3EMgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser._parseName(int)"}, "line": {"number": 1700}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jDqV7C6QgofBLzMMpYRPRQAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "Lucene54DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene54.Lucene54DocValuesConsumer.addSortedSetField(org.apache.lucene.index.FieldInfo, java.lang.Iterable, java.lang.Iterable, java.lang.Iterable)", "offset": 6}, "line": {"number": 618}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JYgcp9Kzkx4e4hFu_rVhNQAAAAAAAACB"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.settings.Settings.getAsStructuredMap()", "offset": 7}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "y2325DY1ugdPcN9iudwKYQAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "org.apache.lucene.document.Document org.elasticsearch.gateway.PersistedClusterStateService$Writer.makeDocument(java.lang.String, org.elasticsearch.common.xcontent.ToXContent, org.elasticsearch.gateway.PersistedClusterStateService$DocumentBuffer)", "offset": 7}, "line": {"number": 851}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rcw4O6fPwcfa_O50COvY1wAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "MD5DigestCalculatingInputStream.java"}, "function": {"name": "int com.amazonaws.services.s3.internal.MD5DigestCalculatingInputStream.read(byte[], int, int)", "offset": 2}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UPXqeiDjsTt0fgWi6CFaqgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ElasticApmTracer.java"}, "function": {"name": "co.elastic.apm.agent.impl.transaction.Transaction co.elastic.apm.agent.impl.ElasticApmTracer.createTransaction()"}, "line": {"number": 254}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HfFlM3axnhO28EteQn-2WAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.IndexShardStats org.elasticsearch.indices.IndicesService.indexShardStats(org.elasticsearch.indices.IndicesService, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 9}, "line": {"number": 517}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ExpvcNX6rEhSTsF1Sr0dEAAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "void io.netty.channel.AbstractChannel$AbstractUnsafe.flush()", "offset": 8}, "line": {"number": 905}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Qdsa8CodEr3BBR20SawlOgAAAAAAAAIr"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "void org.apache.lucene.index.ReadersAndUpdates.handleDVUpdates(org.apache.lucene.index.FieldInfos, org.apache.lucene.store.Directory, org.apache.lucene.codecs.DocValuesFormat, org.apache.lucene.index.SegmentReader, java.util.Map, long, org.apache.lucene.util.InfoStream)", "offset": 124}, "line": {"number": 404}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qlBu--gn4lPakFOOUFVXUAAAAAAAAACD"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain$PerField.invert(int, org.apache.lucene.index.IndexableField, boolean)", "offset": 29}, "line": {"number": 924}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DUWYePMsNbo7HGAKMdOLTAAAAAAAAAB7"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 10}, "line": {"number": 637}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yZ0m5K0hyRADeQkG90vP8AAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter$EventQueue.processEventsInternal()", "offset": 4}, "line": {"number": 329}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WKOnV4dhtUKFY7wtM7-RyAAAAAAAAABR"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.updateDocs(org.apache.lucene.index.Term, java.util.List, org.apache.lucene.index.IndexWriter)", "offset": 8}, "line": {"number": 1440}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3EjttOooo8WfaORlLIDB5QAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.serialize(org.elasticsearch.common.xcontent.ToXContent, java.lang.String, boolean, java.io.OutputStream)", "offset": 22}, "line": {"number": 301}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALqeS"}} +{"Stackframe": {"function": {"name": "vfs_readlink"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nZBjsnB5E1LeQoJuhOhOIgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient.bulk(org.elasticsearch.action.bulk.BulkRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 492}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8tJujVK0pdTWlucWIQYskAAAAAAAAADW"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.indices.NodeIndicesStats org.elasticsearch.indices.IndicesService.stats(org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 28}, "line": {"number": 428}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N2N5ycBuBAS4G2YTZr-qWgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "CopyOnWriteHashMap.java"}, "function": {"name": "org.elasticsearch.common.collect.CopyOnWriteHashMap org.elasticsearch.common.collect.CopyOnWriteHashMap.copyOf(java.util.Map)", "offset": 6}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tTrmeASwaORVDoFVTvK_fQAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "java.util.Map org.elasticsearch.indices.IndicesService.statsByShard(org.elasticsearch.indices.IndicesService, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 5}, "line": {"number": 312}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mqZxgkeFxfHgS32BvLbCOQAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$11(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult)"}, "line": {"number": 450}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZXdWkChUCjmBhCYfjJANcwAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.List org.elasticsearch.xcontent.support.AbstractXContentParser.readListUnsafe(org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier)", "offset": 3}, "line": {"number": 370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA40"}} +{"Stackframe": {"function": {"name": "seq_vprintf"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Xsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.handleIncomingPublishRequest(org.elasticsearch.transport.BytesTransportRequest)", "offset": 49}, "line": {"number": 199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmMhq"}} +{"Stackframe": {"function": {"name": "snmp_get_cpu_field"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u5vAXtVp9d4wvRuocarrCAAAAAAAAABp"}} +{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel)", "offset": 9}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zLRHJmK7SuaCDIOsydGjpQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$2.onResponse(java.lang.Object)"}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "c7ozItwsYyYalXzAX94FLwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "CPoolProxy.java"}, "function": {"name": "void org.apache.http.impl.conn.CPoolProxy.sendRequestHeader(org.apache.http.HttpRequest)"}, "line": {"number": 147}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_vnxdlrLVdiyCEIVqNBMFAAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.OutboundMessage, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LIT1yWPiZ6DoKcWiTOxifgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "PrefixQuery.java"}, "function": {"name": "void org.apache.lucene.search.PrefixQuery.(org.apache.lucene.index.Term)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EacvdBDVwYleo41xBU-e_gAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublicationTransportHandler$PublicationContext org.elasticsearch.cluster.coordination.PublicationTransportHandler.newPublicationContext(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 5}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 2}, "line": {"number": 501}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Pe3ctc9W4J1u_ZCOerqNzAAAAAAAAACG"}} +{"Stackframe": {"file": {"name": "MetaDataMappingService.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterStateTaskExecutor$ClusterTasksResult org.elasticsearch.cluster.metadata.MetaDataMappingService$PutMappingExecutor.execute(org.elasticsearch.cluster.ClusterState, java.util.List)", "offset": 11}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rpC2HihAJEedhpNUsvhzNAAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "OsProbe.java"}, "function": {"name": "org.elasticsearch.monitor.os.OsStats org.elasticsearch.monitor.os.OsProbe.osStats()", "offset": 3}, "line": {"number": 896}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UqfyhZQ3fI9SbWWpJdPw5QAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "SignatureScheme.java"}, "function": {"name": "boolean sun.security.ssl.SignatureScheme.isPermitted(java.security.AlgorithmConstraints)"}, "line": {"number": 360}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GY5WEW77dofWJpcPe0twUgAAAAAAAADT"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$authorizeIndexAction$3(org.elasticsearch.transport.TransportRequest, org.elasticsearch.xpack.core.security.authz.permission.Role, java.lang.String, org.elasticsearch.action.ActionListener, java.util.Map, org.elasticsearch.xpack.core.security.authz.ResolvedIndices)", "offset": 19}, "line": {"number": 386}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i9tt-hJx8CwPn5dferao0gAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Matcher.java"}, "function": {"name": "java.lang.String java.util.regex.Matcher.replaceAll(java.lang.String)", "offset": 1}, "line": {"number": 1177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uixEkl-WfyMHq9fe86bwhwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "HttpContentEncoder.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpContentEncoder.decode(io.netty.channel.ChannelHandlerContext, io.netty.handler.codec.http.HttpRequest, java.util.List)", "offset": 1}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lfjVNXK_x0C4X5O62984zgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.bytes.BytesReference, boolean, org.elasticsearch.xcontent.XContentType)"}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "obMmZgFi2W7RFIHEWC1vHwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "boolean org.elasticsearch.monitor.os.OsProbe$$Lambda$3476+0x0000000801af35d0.test(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DvWhbkzH60wdCq3Z8oLdcQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "long java.nio.file.Files.size(java.nio.file.Path)"}, "line": {"number": 2332}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8RkMtvIkosYlu-LUf2ASlgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "AbstractBaseReindexRestHandler.java"}, "function": {"name": "org.elasticsearch.rest.BaseRestHandler$RestChannelConsumer org.elasticsearch.reindex.AbstractBaseReindexRestHandler.doPrepareRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.client.internal.node.NodeClient, boolean, boolean)"}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T442v3dhd5jP-9jNAtdrXgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor.access$400(org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor, org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportInterceptor$AsyncSender, boolean)"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2Kue-E0ocGjlBrYARCI6iAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase$1.doRun()"}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MvukotDYrkDBhTIXVp6gJQAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "PooledByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.PooledByteBufAllocator.newHeapBuffer(int, int)", "offset": 12}, "line": {"number": 346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tYnNSbSbqPfiGNhyW6TUtwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.access$1500(io.netty.channel.AbstractChannelHandlerContext)"}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XulYF1ifC1__BmobV2RtpgAAAAAAAABZ"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentHelper.writeRawField(java.lang.String, org.elasticsearch.common.bytes.BytesReference, org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 7}, "line": {"number": 412}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GXIKyZo2SzTBUV4rO1JZIwAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "OsProbe.java"}, "function": {"name": "java.lang.String org.elasticsearch.monitor.os.OsProbe.readSysFsCgroupMemoryUsageInBytes(java.lang.String)"}, "line": {"number": 569}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AZGriLcxLoYYv_Z-GwPFpwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "com.carrotsearch.hppc.cursors.ObjectCursor com.carrotsearch.hppc.ObjectObjectHashMap$ValuesIterator.fetch()"}, "line": {"number": 954}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RZ01NrWKTMDuXelOk2KnKQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.wrap(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)"}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mNKQ_cGBX-X-PxTw057WHwAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "ClusterService.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterStateTaskExecutor$ClusterTasksResult org.elasticsearch.cluster.service.ClusterService.executeTasks(org.elasticsearch.cluster.service.ClusterService$TaskInputs, long, org.elasticsearch.cluster.ClusterState)", "offset": 2}, "line": {"number": 634}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mqCo2mYwD2SnE5s-os9M7AAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "URLClassLoader.java"}, "function": {"name": "java.io.InputStream java.net.URLClassLoader.getResourceAsStream(java.lang.String)", "offset": 1}, "line": {"number": 290}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cqdSAx5Uej3ncVA_SUVjsQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "PhantomCleanable.java"}, "function": {"name": "void jdk.internal.ref.PhantomCleanable.clean()", "offset": 1}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "umqi48lo3pIGNbe4z8rhPwAAAAAAAAFX"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncPrimaryAction.runWithPrimaryShardReference(org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryShardReference)", "offset": 82}, "line": {"number": 508}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wmQufSV4x-hAvGcaiegjeQAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "void io.netty.util.concurrent.DefaultPromise.notifyListeners()", "offset": 7}, "line": {"number": 490}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qjaz-3R5MGuHG8xBpiPquAAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "SegmentDocValues.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesProducer org.apache.lucene.index.SegmentDocValues.getDocValuesProducer(long, org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos)", "offset": 4}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WHTE8ACR4NC-I-EUuyo1lgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "org.elasticsearch.index.store.StoreStats org.elasticsearch.index.store.Store.stats()", "offset": 1}, "line": {"number": 332}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk7GK"}} +{"Stackframe": {"function": {"name": "netlink_sendmsg"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFy0p"}} +{"Stackframe": {"function": {"name": "audit_filter_rules.constprop.21"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TQHHjILJSS1Y0hdQ8MODHQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.lang.Object java.util.TreeMap.get(java.lang.Object)"}, "line": {"number": 278}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GeL1ZljxMX5G17zFJggDEgAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "SystemIndexManager.java"}, "function": {"name": "boolean org.elasticsearch.indices.SystemIndexManager.lambda$clusterChanged$0(org.elasticsearch.cluster.ClusterState, org.elasticsearch.indices.SystemIndexDescriptor)"}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cu9Yv1X7I3mgklhHzVnlYwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.executePhase(org.elasticsearch.action.search.SearchPhase)"}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JYDhCBqV4GPq7uqp50dsDwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Lucene90CompoundFormat.java"}, "function": {"name": "org.apache.lucene.codecs.CompoundDirectory org.apache.lucene.codecs.lucene90.Lucene90CompoundFormat.getCompoundReader(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)"}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aHz0MiA36AOisyCfr3rHrwAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$7200+0x000000080244b7f0.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dV9F8Jrxp0fpwJiFvsmRngAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Booleans.java"}, "function": {"name": "boolean org.elasticsearch.core.Booleans.parseBoolean(java.lang.String, boolean)", "offset": 1}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEw"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.applyChanges(org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState, org.elasticsearch.common.StopWatch)", "offset": 26}, "line": {"number": 460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wwkq4tqrtOB1pcVDF192OAAAAAAAAAC8"}} +{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.sendSearchResponse(org.elasticsearch.search.internal.InternalSearchResponse, org.elasticsearch.common.util.concurrent.AtomicArray)", "offset": 18}, "line": {"number": 707}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAiyBw"}} +{"Stackframe": {"function": {"name": "__kmalloc_reserve.isra.62"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QRW1om0CtcYaE4B8xaBEggAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.consumeToken(org.elasticsearch.xpack.security.authc.AuthenticationToken)", "offset": 32}, "line": {"number": 326}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LLIx3z8GAHtBLc7C_miK_wAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.mapOrdered()"}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C2bcwNqql_gFwky6XpRggwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkRead(java.lang.String)"}, "line": {"number": 751}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "62ynkfCGgTRmv9n9OlbFKwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.eclipse.jetty.server.HttpChannel$$Lambda$3909.dispatch()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_twNRNI3JRk1p9Bs76G6wAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "ProcessService.java"}, "function": {"name": "org.elasticsearch.monitor.process.ProcessStats org.elasticsearch.monitor.process.ProcessService$ProcessStatsCache.refresh()"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IYyFbgqASogbSUNUuP6bUwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "CloseableHttpClient.java"}, "function": {"name": "org.apache.http.client.methods.CloseableHttpResponse org.apache.http.impl.client.CloseableHttpClient.execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.protocol.HttpContext)", "offset": 1}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YDFEddDuMKvn7SndDYkyywAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "DataInput.java"}, "function": {"name": "int org.apache.lucene.store.DataInput.readVInt()"}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "REOZDMGevKohDmxWFx6eeAAAAAAAAACa"}} +{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.lambda$consumeToken$0(org.elasticsearch.xpack.core.security.authc.Realm, org.elasticsearch.xpack.core.security.authc.AuthenticationToken, java.util.concurrent.atomic.AtomicReference, java.util.concurrent.atomic.AtomicReference, long, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.authc.Authenticator$Context, java.util.Map, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 15}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k_K9_UkGJ5doglspKH5JwQAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "void com.amazonaws.services.s3.AmazonS3Client.resolveRequestEndpoint(com.amazonaws.Request, java.lang.String, java.lang.String, java.net.URI)", "offset": 1}, "line": {"number": 4805}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "21t_1Z7lsKChfUyEIzwAtAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.nrtIsCurrent(org.apache.lucene.index.SegmentInfos)"}, "line": {"number": 4880}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fsJVTtbG_H0iDz3DtUpPWQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.engine.Engine.acquireIndexCommitForSnapshot()"}, "line": {"number": 1061}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I-hoNlwG8-_wfA4YYQAJLQAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "org.elasticsearch.index.translog.Checkpoint org.elasticsearch.index.translog.Translog.getLastSyncedCheckpoint()", "offset": 2}, "line": {"number": 648}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xLipvo50E1PefOOerYLZEgAAAAAAAAFe"}} +{"Stackframe": {"file": {"name": "NodesInfoResponse.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.action.admin.cluster.node.info.NodesInfoResponse.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 32}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "y1AAh4MxeTU-w8RAswWtTgAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ReroutePhase.performAction(org.elasticsearch.cluster.node.DiscoveryNode, java.lang.String, boolean, org.elasticsearch.transport.TransportRequest)"}, "line": {"number": 780}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NuF0Vjxg0AdDzEk0Ow848gAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "SSLSocketInputRecord.java"}, "function": {"name": "int sun.security.ssl.SSLSocketInputRecord.read(java.io.InputStream, byte[], int, int)"}, "line": {"number": 478}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "q05wRGTyKeDcDO2hxwf0fAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "org.elasticsearch.cluster.metadata.IndexMetadata org.elasticsearch.cluster.metadata.Metadata.index(java.lang.String)"}, "line": {"number": 706}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HmuH5pCGXma5ToZjJwiZHAAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "PolicyStepsRegistry.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.ilm.PolicyStepsRegistry.parseStepsFromPhase(java.lang.String, java.lang.String, java.lang.String)", "offset": 14}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "a-tnNgE_PVOj5VDWe-OZBgAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "ElasticApmTracer.java"}, "function": {"name": "co.elastic.apm.agent.impl.transaction.Transaction co.elastic.apm.agent.impl.ElasticApmTracer.startRootTransaction(co.elastic.apm.agent.impl.sampling.Sampler, long, java.lang.ClassLoader)", "offset": 3}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LUnFGHfMsV3itSEiBr_pdgAAAAAAAABC"}} +{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "long org.elasticsearch.index.translog.Translog.getMinReferencedGen()", "offset": 3}, "line": {"number": 1781}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x69oGDnn9-Q70zg0yENhkwAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", "offset": 6}, "line": {"number": 1130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GdVNw41pu6iR51uvTFxQGwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$writeAuthToContext$21(org.elasticsearch.xpack.core.security.authc.Authentication)"}, "line": {"number": 426}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_NrJ8Q-i9cRRxMzl4paxGAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "boolean sun.nio.fs.UnixNativeDispatcher.exists0(long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GfIe06eeNVYGpZGn4T9LBwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.close()"}, "line": {"number": 1036}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz3n"}} +{"Stackframe": {"function": {"name": "__audit_syscall_exit"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0sEy6f7bCm9vTJv8u3oghQAAAAAAAACZ"}} +{"Stackframe": {"file": {"name": "ReplicationTracker.java"}, "function": {"name": "void org.elasticsearch.index.seqno.ReplicationTracker.updateGlobalCheckpointForShard(java.lang.String, long)", "offset": 8}, "line": {"number": 1097}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz5F"}} +{"Stackframe": {"function": {"name": "__audit_syscall_exit"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5WRkp3UGiY89oONYWWfHqAAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.inboundMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage)", "offset": 7}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XfHacyr3VZQyavlI3uwP4gAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.merge(org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 14}, "line": {"number": 4680}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-dHUlT0ICmuSpM1wfLlVygAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ConcurrentHashMapLong.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.concurrent.ConcurrentHashMapLong.remove(long)"}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "awaK319bKiHtaKZV9KHt9QAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "StoredFieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.index.StoredFieldsConsumer.startDocument(int)", "offset": 1}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cGRDia95o64czGD3ETERlQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "void org.elasticsearch.tracing.apm.APMTracer.stopTrace(java.lang.String)"}, "line": {"number": 374}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "S3oYjBa3aRK5is2l8pi-3QAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Settings.convertMapsToArrays(java.util.Map)", "offset": 8}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oizCJSVq7QdncCMrYKiMEQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.io.stream.Streamable$$Lambda$2364.read(org.elasticsearch.common.io.stream.StreamInput)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0LGXmFocz46kL18OXWxszwAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "InflaterInputStream.java"}, "function": {"name": "int java.util.zip.InflaterInputStream.read(byte[], int, int)", "offset": 10}, "line": {"number": 152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z-hu6cNT1Ftqgnka76QdWAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.BooleanWeight.scorer(org.apache.lucene.index.LeafReaderContext)", "offset": 4}, "line": {"number": 348}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jyHYRKpoKiz_YdnlTFddHgAAAAAAAACY"}} +{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "long org.apache.lucene.index.DocumentsWriter.flushAllThreads()", "offset": 22}, "line": {"number": 656}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pn5qfmUJVVaxacBhAps3IQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "DirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.DirectoryReader.openIfChanged(org.apache.lucene.index.DirectoryReader)"}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uwIimYmRfOFHQGJdLBBUzQAAAAAAAAC6"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequestInternal(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 29}, "line": {"number": 903}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "V3A14FfSyi9f2bwkJhRsiAAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.FSDirectory.createOutput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 7}, "line": {"number": 220}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Fr_gvlXdWzWeQ3Po5KXNtAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$RunAfterActionListener.onResponse(java.lang.Object)"}, "line": {"number": 341}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "viLSJjc_mEpfBdxWbzQXxgAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "MappedMemorySegmentImpl.java"}, "function": {"name": "jdk.internal.foreign.MappedMemorySegmentImpl jdk.internal.foreign.MappedMemorySegmentImpl.asSlice(long, long)"}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bDgeT_c39mVd5IQfXugEbwAAAAAAAABR"}} +{"Stackframe": {"file": {"name": "TransportPutMappingAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.mapping.put.TransportPutMappingAction.performMappingUpdate(org.elasticsearch.index.Index[], org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.cluster.metadata.MetadataMappingService)", "offset": 15}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jJ1ozPLEubzrPTK_HIIAngAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FilterIndexOutput.java"}, "function": {"name": "void org.elasticsearch.common.lucene.store.FilterIndexOutput.close()"}, "line": {"number": 28}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9OsMzWnkgB8tZRuL3LJAqQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.deleteFile(java.lang.String)"}, "line": {"number": 723}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lJPXvfs9zQkNSoaonclVhwAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6062+0x0000000801c35510.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WF-P7AGULCZTVbmpPwe0eAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "FsService.java"}, "function": {"name": "org.elasticsearch.monitor.fs.FsInfo org.elasticsearch.monitor.fs.FsService.lambda$new$1(org.elasticsearch.monitor.fs.FsService$FsInfoCache)"}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "n6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ThreadExecutorMap.java"}, "function": {"name": "void io.netty.util.internal.ThreadExecutorMap$2.run()", "offset": 2}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UeUQgO6mk4v2Tf2h_dZ3VAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "MessageToMessageCodec.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageCodec$1.encode(io.netty.channel.ChannelHandlerContext, java.lang.Object, java.util.List)"}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EI2ZG0yDy6LJc1opjkWatgAAAAAAAABz"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 21}, "line": {"number": 457}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run()", "offset": 4}, "line": {"number": 569}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tVvvb6Z5DEr7tZFzbFRlggAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "void io.netty.channel.DefaultChannelPipeline$HeadContext.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 1291}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Q5kEKNMw4iZ0N1EWQiCywAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "SearchScrollAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchScrollAsyncAction$2.run()"}, "line": {"number": 235}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HqzMw8JwmflqRBGi8pnz0AAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$WritePrimaryResult.runPostReplicationActions(org.elasticsearch.action.ActionListener)", "offset": 18}, "line": {"number": 293}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Nxl4jhqb6WfNJXf20V8lwwAAAAAAAABN"}} +{"Stackframe": {"file": {"name": "BytesReferenceStreamInput.java"}, "function": {"name": "void org.elasticsearch.common.bytes.BytesReferenceStreamInput.readBytes(byte[], int, int)", "offset": 6}, "line": {"number": 209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore$$Lambda$7789+0x000000080257a338.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KYUKYe5FJokP-mDuLYX4tQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.put(java.lang.Object, java.lang.Object)"}, "line": {"number": 618}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-OmtEGD-FWeU3vRNXPLxogAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "ShardSnapshotTaskRunner.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ShardSnapshotTaskRunner$FileSnapshotTask.lambda$doRun$0()", "offset": 2}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JUO0r5_uLh9CRA_IPAbqJQAAAAAAAABz"}} +{"Stackframe": {"file": {"name": "ComparableTimSort.java"}, "function": {"name": "void java.util.ComparableTimSort.binarySort(java.lang.Object[], int, int, int)", "offset": 21}, "line": {"number": 266}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MIe94s1GJeusy6GT4zv_KgAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "CgroupUtil.java"}, "function": {"name": "java.lang.String jdk.internal.platform.CgroupUtil.readStringValue(jdk.internal.platform.CgroupSubsystemController, java.lang.String)", "offset": 4}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jH-Kh7eMoVAEa99gkdQ-YQAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.addSortedNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 3}, "line": {"number": 850}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4b6Y6AxjtjqP_pey1p_yKgAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.authenticate(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oms6Ttrfu1M4pZRKD0ZUGAAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "TermStates.java"}, "function": {"name": "org.apache.lucene.index.TermState org.apache.lucene.index.TermStates.get(org.apache.lucene.index.LeafReaderContext)", "offset": 4}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GUY8yORk3TZTSqSlBljzGQAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.Engine.refreshNeeded()", "offset": 8}, "line": {"number": 954}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u_5zCMK3PLNUfmu5e0wjpgAAAAAAAAB2"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction.newResponse(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.nodes.BaseNodesRequest, java.util.concurrent.atomic.AtomicReferenceArray, org.elasticsearch.action.ActionListener)", "offset": 18}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA6d"}} +{"Stackframe": {"function": {"name": "seq_printf"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D8h50WvRJdBg-tXDetFXDwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.BooleanWeight.scorer(org.apache.lucene.index.LeafReaderContext)", "offset": 4}, "line": {"number": 511}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NnQKPKleyML9wLwMX6jW-QAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "NodeEnvironment.java"}, "function": {"name": "java.nio.file.Path[] org.elasticsearch.env.NodeEnvironment.indexPaths(org.elasticsearch.index.Index)"}, "line": {"number": 916}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k1o6cGLS1FzksoHJvPKdFQAAAAAAAAEz"}} +{"Stackframe": {"file": {"name": "Lucene94FieldInfosFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene94.Lucene94FieldInfosFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.index.FieldInfos, org.apache.lucene.store.IOContext)", "offset": 39}, "line": {"number": 369}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACYn1"}} +{"Stackframe": {"function": {"name": "_do_fork"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w_rNNsza6yNRFkKCHuRo-gAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$6068+0x0000000801c361a0.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_6rkq2S7o8rMRQJ9AofzJAAAAAAAAACL"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.bytes.BytesReference, boolean, org.elasticsearch.common.xcontent.XContentType)", "offset": 14}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "06XZLHGlJyYuIL53b8SbBQAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "ReplicationTracker.java"}, "function": {"name": "void org.elasticsearch.index.seqno.ReplicationTracker.updateReplicationGroupAndNotify()", "offset": 3}, "line": {"number": 994}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hLSOXypyYB67cc97e5npKgAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "HealthCheckResource.java"}, "function": {"name": "void no.found.service.health.HealthCheckResource.get(javax.ws.rs.container.AsyncResponse)"}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zApz81YYlVV3vyuE_NIsRQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.refreshIfNeeded(java.lang.Object)"}, "line": {"number": 367}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kMyMVRZv_f_3AvbE1o-E-QAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentParser$Token org.elasticsearch.xcontent.provider.json.JsonXContentParser.nextToken()"}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain$$Lambda$6967+0x0000000801db3470.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAIU"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 58}, "line": {"number": 220}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CRotmmSr93EhxDv-kzDy3AAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "void org.elasticsearch.threadpool.ThreadPool$LoggingRunnable.run()"}, "line": {"number": 448}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SLkdwnAJDm_ftJbeTN6kiwAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "Exporters.java"}, "function": {"name": "void org.elasticsearch.xpack.monitoring.exporter.Exporters.export(java.util.Collection, org.elasticsearch.action.ActionListener)", "offset": 8}, "line": {"number": 198}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k_OXYkZFyzIVwSwT1Fur7gAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ByteBuffer.java"}, "function": {"name": "java.nio.ByteBuffer java.nio.ByteBuffer.allocateDirect(int)"}, "line": {"number": 311}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E66a7lKbkjXDy4kHrdweRwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "void org.elasticsearch.search.fetch.FetchPhase.loadStoredFields(org.elasticsearch.search.internal.SearchContext, org.apache.lucene.index.LeafReaderContext, org.elasticsearch.index.fieldvisitor.FieldsVisitor, int)", "offset": 2}, "line": {"number": 382}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 2}, "line": {"number": 507}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jDe_UcDCp3SrzQuo-TC0CAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Packed64SingleBlock.java"}, "function": {"name": "int org.apache.lucene.util.packed.Packed64SingleBlock.set(int, long[], int, int)"}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6JL9Zb5wYEadxJXUwBTXrgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "InboundDecoder.java"}, "function": {"name": "int org.elasticsearch.transport.InboundDecoder.decode(org.elasticsearch.common.bytes.ReleasableBytesReference, java.util.function.Consumer)", "offset": 2}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YmphFIfEjJk6BasmvKzADwAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "AESCipher.java"}, "function": {"name": "void com.sun.crypto.provider.AESCipher.engineInit(int, java.security.Key, java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom)", "offset": 2}, "line": {"number": 355}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8Vp7ROEVEbyUNILbxDH2JwAAAAAAAAE6"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$PendingBlock.compileIndex(java.util.List, org.apache.lucene.store.RAMOutputStream, org.apache.lucene.util.IntsRefBuilder)", "offset": 24}, "line": {"number": 457}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "c_qld6wd_isol7z5VbPyFAAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "SignatureAlgorithmsExtension.java"}, "function": {"name": "byte[] sun.security.ssl.SignatureAlgorithmsExtension$CHSignatureSchemesProducer.produce(sun.security.ssl.ConnectionContext, sun.security.ssl.SSLHandshake$HandshakeMessage)", "offset": 15}, "line": {"number": 191}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZyityGDpQJw1YigaXArSXwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Lucene90PointsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.PointsWriter org.apache.lucene.codecs.lucene90.Lucene90PointsFormat.fieldsWriter(org.apache.lucene.index.SegmentWriteState)"}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeWrite(java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 1}, "line": {"number": 730}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "980-iSS9S0F-vkRag1FHZwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "DataOutput.java"}, "function": {"name": "void org.apache.lucene.store.DataOutput.writeMapOfStrings(java.util.Map)"}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnZTD"}} +{"Stackframe": {"function": {"name": "inet6_dump_addr"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sO6_s1BlSyIDALZsU90OJAAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$7857+0x00000008025e9b58.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VFPngTpbGPWtyIvTsDMCwwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "LongValues.java"}, "function": {"name": "long org.apache.lucene.util.LongValues.get(int)"}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N7LIGw1erb09TPWj8M9ehwAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$1858.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "FilterMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.FilterMergePolicy.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.util.IOSupplier)"}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QShimh0tQga8QazMW6_qBAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "URLClassLoader.java"}, "function": {"name": "java.lang.Object java.net.URLClassLoader$2.run()"}, "line": {"number": 614}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YZBmumN7B74DCts0HLEQGQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run()"}, "line": {"number": 671}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "c60dpyQ-P1ogTrxufpFElwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "AbstractNioChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.flush0()", "offset": 1}, "line": {"number": 360}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GEiuUOI8r5HYB6MJ06RvdgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "SortedNumericDocValuesRangeQuery.java"}, "function": {"name": "boolean org.apache.lucene.document.SortedNumericDocValuesRangeQuery$1$1.matches()"}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dvtZA9fkCas7K9O6I6PTHQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.xcontent.XContentBuilder.lambda$static$14(org.elasticsearch.xcontent.XContentBuilder, java.lang.Object)"}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAEG"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 28}, "line": {"number": 190}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pHZ30TKAe6C6T34R7-7vMgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeVInt(int)", "offset": 1}, "line": {"number": 252}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbeH"}} +{"Stackframe": {"function": {"name": "vfs_getattr_nosec"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WHc6TeyRQEqs6LkNUiVKVQAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "PackedLongValues.java"}, "function": {"name": "long org.apache.lucene.util.packed.PackedLongValues.get(long)", "offset": 3}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C55o2NZ0tqgD3oJAMBv1vwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryShardReference.updateGlobalCheckpointForShard(java.lang.String, long)"}, "line": {"number": 1142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_p12Y0DOk4cFEn5gGz9psgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.lang.Object java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$UnmodifiableEntry.getKey()"}, "line": {"number": 1767}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mB85Af8LXB7vdQUnyF54IQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Lucene90CompoundReader.java"}, "function": {"name": "java.util.Map org.apache.lucene.codecs.lucene90.Lucene90CompoundReader.readEntries(byte[], org.apache.lucene.store.Directory, java.lang.String)", "offset": 2}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eXimxJw4055xWDImg8DzoQAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "SelectorImpl.java"}, "function": {"name": "int sun.nio.ch.SelectorImpl.lockAndDoSelect(java.util.function.Consumer, long)", "offset": 7}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSEe"}} +{"Stackframe": {"function": {"name": "do_fchmodat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZkLsycxKPf36jJRxnsYRXgAAAAAAAACp"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.support.AbstractXContentParser.readValueUnsafe(org.elasticsearch.common.xcontent.XContentParser$Token, org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier)", "offset": 8}, "line": {"number": 387}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LEf7xTPa92fa-lrUaMUkPQAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$2(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener, org.elasticsearch.common.util.concurrent.ListenableFuture, org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$CachedResult)", "offset": 4}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.lambda$executeQueryPhase$2(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)"}, "line": {"number": 416}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZxqTvfpq73FxW_Wvq4sJcgAAAAAAAABz"}} +{"Stackframe": {"file": {"name": "IndexAbstractionResolver.java"}, "function": {"name": "java.util.List org.elasticsearch.cluster.metadata.IndexAbstractionResolver.resolveIndexAbstractions(java.lang.Iterable, org.elasticsearch.action.support.IndicesOptions, org.elasticsearch.cluster.metadata.Metadata, java.util.function.Supplier, java.util.function.Predicate, boolean)", "offset": 18}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IEtETl463byzMJPLuRp-TAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeFlush()", "offset": 1}, "line": {"number": 768}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "v7NZn75ARbCs3HYY9Fl9agAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline$7$1.accept(java.lang.Object)"}, "line": {"number": 273}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6KCaUEMhs-L3W4srByFapwAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "RoleReferenceIntersection.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authz.store.RoleReferenceIntersection.lambda$buildRole$0(org.elasticsearch.action.ActionListener, java.util.Collection)", "offset": 6}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Qrw_bSROFZCKPRirqN5crwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ClusterService.java"}, "function": {"name": "org.elasticsearch.cluster.service.ClusterService$TaskOutputs org.elasticsearch.cluster.service.ClusterService.calculateTaskOutputs(org.elasticsearch.cluster.service.ClusterService$TaskInputs, org.elasticsearch.cluster.ClusterState, long)"}, "line": {"number": 612}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o-j45UNS6a4i2FH3VTZTCAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ReentrantLock.java"}, "function": {"name": "void java.util.concurrent.locks.ReentrantLock.unlock()"}, "line": {"number": 494}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "co4kdxqTWMp4ZBVBAoUGKQAAAAAAAABN"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lookForExistingAuthentication(java.util.function.Consumer)", "offset": 15}, "line": {"number": 425}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W8XJy2Hk37R95UDQ18YnzgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "void org.apache.lucene.search.ReferenceManager.maybeRefreshBlocking()", "offset": 5}, "line": {"number": 253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3slcba9RWlFACgQsilahdAAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.authenticateWithCache(org.elasticsearch.xpack.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener)", "offset": 6}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aaOskbwlxwF7eOPPRl2i5QAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.glassfish.jersey.server.model.internal.ResourceMethodInvocationHandlerFactory$$Lambda$2162.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-e35zu4XE19CYqGplKrAMQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "void java.nio.file.Files.delete(java.nio.file.Path)"}, "line": {"number": 1126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZGe78UTOen8Hu0p3Avi2EQAAAAAAAABH"}} +{"Stackframe": {"file": {"name": "SearchSourceBuilder.java"}, "function": {"name": "org.elasticsearch.search.builder.SearchSourceBuilder org.elasticsearch.search.builder.SearchSourceBuilder.rewrite(org.elasticsearch.index.query.QueryRewriteContext)", "offset": 5}, "line": {"number": 1053}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pqBRZ5qawZeLpdbbr6iQSgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "AbstractLogger.java"}, "function": {"name": "boolean org.apache.logging.log4j.spi.AbstractLogger.isTraceEnabled()"}, "line": {"number": 1553}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WETDtAYgv6Jkvw6xLkpLwQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction.masterOperation(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.master.MasterNodeRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)"}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1WDbb1SZcDFebMGD1NIFDgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.ChannelActionListener$$Lambda$7004+0x000000080245ea58.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zLx6iJ9ANFZvdAJHeiPhJwAAAAAAAAEb"}} +{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter.flush(boolean)", "offset": 28}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I3yeYI3jggKwXLfShIlMywAAAAAAAABU"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "java.util.Set org.apache.lucene.index.ReadersAndUpdates.writeFieldInfosGen(org.apache.lucene.index.FieldInfos, org.apache.lucene.store.Directory, org.apache.lucene.codecs.FieldInfosFormat)", "offset": 9}, "line": {"number": 499}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QgPoy2NvCHHBSCpV0FYoygAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.FSDirectory.createOutput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 5}, "line": {"number": 253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "S75DkUYHGa18F1kYhZ0XYwAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 6}, "line": {"number": 276}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jTElghZsdZy_HrHGbsWA3AAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Hasher.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authc.support.Hasher$1.verify(org.elasticsearch.common.settings.SecureString, char[])"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5hbYKj450LIcMxemzX-5PgAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.handler.ssl.SslHandler.allocate(io.netty.channel.ChannelHandlerContext, int)", "offset": 4}, "line": {"number": 2249}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p2mJj3XFBkqZFEJ0xs_CngAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor.lambda$sendRequestInner$1(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportInterceptor$AsyncSender, org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext)"}, "line": {"number": 218}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i2OZ9-P_pjOFSV36486xoQAAAAAAAAB7"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 10}, "line": {"number": 644}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8yw5xAkzQPNYncv2nxNJ2QAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "SdkHttpRequestExecutor.java"}, "function": {"name": "org.apache.http.HttpResponse com.amazonaws.http.protocol.SdkHttpRequestExecutor.doReceiveResponse(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext)", "offset": 7}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RP2XbDGKSs3POGz4S9bH-QAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "BytesReferenceStreamInput.java"}, "function": {"name": "int org.elasticsearch.common.bytes.BytesReferenceStreamInput.readVInt()"}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EZ_tTPZwHMJRtn6APK_0fQAAAAAAAABg"}} +{"Stackframe": {"file": {"name": "BlobStoreIndexShardSnapshot.java"}, "function": {"name": "org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshot$FileInfo org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshot$FileInfo.fromXContent(org.elasticsearch.common.xcontent.XContentParser)", "offset": 15}, "line": {"number": 278}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "trHlBrKqhPY4wIsFmpvpGwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 464}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "U3H23HCvByWmKhcnYcTRGgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "void java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet.lambda$entryConsumer$0(java.util.function.Consumer, java.util.Map$Entry)"}, "line": {"number": 1625}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "414vwxwFz0HV2Ku4dzYYowAAAAAAAABP"}} +{"Stackframe": {"file": {"name": "Lucene90CompoundFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90CompoundFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 8}, "line": {"number": 98}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xDECjxfRDF0SAcicHv7yIgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AbstractEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)"}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "041162MzEEtTnw12p7zr8QAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.value(java.lang.Object)"}, "line": {"number": 804}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DUWYePMsNbo7HGAKMdOLTAAAAAAAAACi"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 15}, "line": {"number": 642}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zmJjHr20VylgKdsUYkUDgAAAAAAAAADb"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.updatePendingMerges(org.apache.lucene.index.MergePolicy, org.apache.lucene.index.MergeTrigger, int)", "offset": 27}, "line": {"number": 2118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9lpztkfS1SN6AbyUgwU8QwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Socket.java"}, "function": {"name": "int java.net.Socket$SocketInputStream.read(byte[], int, int)"}, "line": {"number": 1025}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SFRCISZu0lOJaR5c2EWGzwAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$20.(org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer, org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$SortedEntry, org.apache.lucene.util.LongValues)"}, "line": {"number": 846}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FLWrcmu3MEG4xNl3eYs56AAAAAAAAADY"}} +{"Stackframe": {"file": {"name": "SSLCipher.java"}, "function": {"name": "int sun.security.ssl.SSLCipher$T13GcmWriteCipherGenerator$GcmWriteCipher.encrypt(byte, java.nio.ByteBuffer)", "offset": 44}, "line": {"number": 2079}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HrXUpqEQk4VDnpaZKgdbiAAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.fetch.ScrollQueryFetchSearchResult org.elasticsearch.search.SearchService.lambda$executeFetchPhase$6(org.elasticsearch.search.internal.LegacyReaderContext, org.elasticsearch.action.search.SearchShardTask, org.elasticsearch.search.internal.InternalScrollSearchRequest)", "offset": 8}, "line": {"number": 783}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P8sJVhEjBeXdxeG9vrpjWwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TransportSingleShardAction.java"}, "function": {"name": "void org.elasticsearch.action.support.single.shard.TransportSingleShardAction$ShardTransportHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel)"}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "ClientConnectionSettingsImpl.scala"}, "function": {"name": "java.lang.Object akka.http.impl.settings.ClientConnectionSettingsImpl$.fromSubConfig(com.typesafe.config.Config, com.typesafe.config.Config)"}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GfFTZ31mdFcLyIf5KCQV4AAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "SegmentCommitInfo.java"}, "function": {"name": "long org.apache.lucene.index.SegmentCommitInfo.sizeInBytes()", "offset": 3}, "line": {"number": 209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Arz1MMWCC2fkAl6FCL43rAAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "PushPostingsWriterBase.java"}, "function": {"name": "org.apache.lucene.codecs.BlockTermState org.apache.lucene.codecs.PushPostingsWriterBase.writeTerm(org.apache.lucene.util.BytesRef, org.apache.lucene.index.TermsEnum, org.apache.lucene.util.FixedBitSet, org.apache.lucene.codecs.NormsProducer)", "offset": 6}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "022QNFUijUCK_h0XfqYkWAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.IndexWriter$$Lambda$6352+0x0000000801cbe1c0.close()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "le9MVa54M5hz-4VDdEuCkgAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "EmbeddedChannel.java"}, "function": {"name": "boolean io.netty.channel.embedded.EmbeddedChannel.writeOutbound(java.lang.Object[])", "offset": 11}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALmwQ"}} +{"Stackframe": {"function": {"name": "path_openat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EFLmOwqVbKATrZgO15a3JgAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "AbstractByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.AbstractByteBufAllocator.toLeakAwareBuffer(io.netty.buffer.ByteBuf)", "offset": 2}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "b2OXcmTwoQJ0vQp6R4J3BAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "InputStreamDataInput.java"}, "function": {"name": "byte org.apache.lucene.store.InputStreamDataInput.readByte()"}, "line": {"number": 34}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "r1WV5a8pUgBtniWjRbB5kAAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.execute()", "offset": 11}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "85xU6UdOBVE-6wKT-DYa3QAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.xcontent.XContent, java.io.InputStream, boolean)", "offset": 1}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "y_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.apache.lucene.store.FilterDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Oazs1a6HL_fA3OaTTAYczgAAAAAAAABt"}} +{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "org.apache.lucene.index.SortedSetDocValues org.apache.lucene.codecs.DocValuesConsumer$7.getSortedSet(org.apache.lucene.index.FieldInfo)", "offset": 17}, "line": {"number": 875}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WYLRZt9i7H-NuOl3RpqEjQAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "StringLatin1.java"}, "function": {"name": "int java.lang.StringLatin1.hashCode(byte[])", "offset": 1}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL2aH"}} +{"Stackframe": {"function": {"name": "evict"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MrVvriJqF-HOpa8js-mFagAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.action.support.TransportAction.execute(org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 8}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PZcOHXTPoeBWhKU5F2mgGAAAAAAAAABm"}} +{"Stackframe": {"file": {"name": "QuerySearchResult.java"}, "function": {"name": "void org.elasticsearch.search.query.QuerySearchResult.writeToNoId(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 15}, "line": {"number": 306}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Kp3dhzge17FYhYBlquydUwAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction$$Lambda$5685+0x0000000801b236e0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4RMjMvBCxMjR_OY2K7clCwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DelegatingChannelPromiseNotifier.java"}, "function": {"name": "void io.netty.channel.DelegatingChannelPromiseNotifier.operationComplete(io.netty.util.concurrent.Future)"}, "line": {"number": 31}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Eu2eTQ_3gXX-hva2wFAN4AAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "ActorGraphInterpreter.scala"}, "function": {"name": "int akka.stream.impl.fusing.GraphInterpreterShell.processEvent(akka.stream.impl.fusing.ActorGraphInterpreter$BoundaryEvent, int)", "offset": 1}, "line": {"number": 625}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GqtKw4RB3R19EQhu6EuSBwAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateAppliers(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder, java.util.Collection)", "offset": 4}, "line": {"number": 538}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zw0wKeXSScV9zb0GbnSg3gAAAAAAAAE6"}} +{"Stackframe": {"file": {"name": "MapperService.java"}, "function": {"name": "java.util.Map org.elasticsearch.index.mapper.MapperService.internalMerge(java.util.Map, org.elasticsearch.index.mapper.MapperService$MergeReason, boolean)", "offset": 47}, "line": {"number": 336}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zuNMEnMlJFreMmugEW997QAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "QuotaAwareFileSystemProvider.java"}, "function": {"name": "void co.elastic.cloud.quotaawarefs.QuotaAwareFileSystemProvider.delete(java.nio.file.Path)"}, "line": {"number": 291}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1YwmAWjsK6oD1Qs8m4ZuaQAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "LockSupport.java"}, "function": {"name": "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)", "offset": 4}, "line": {"number": 181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tYpn9fKKxL559MokXK09lwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "api.py"}, "function": {"name": "run", "offset": 1}, "line": {"number": 201}, "source": {"type": 2}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NAXh3zuU0dO2_vEc-9d1QQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Template.java"}, "function": {"name": "org.elasticsearch.common.compress.CompressedXContent org.elasticsearch.cluster.metadata.Template.lambda$static$2(org.elasticsearch.common.xcontent.XContentParser, java.lang.Void)"}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$CachingAsyncSupplier.getAsync(org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 725}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EbDp5Ji3y8uTKzXL0h4-JQAAAAAAAABh"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 12}, "line": {"number": 308}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Pdx9X-Kll_jo88kvLOH1zgAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain$$Lambda$7960+0x0000000802626408.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BRLAuhUZI8WAZuId6zJOxAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "MetadataCreateIndexService.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterState org.elasticsearch.cluster.metadata.MetadataCreateIndexService.applyCreateIndexRequest(org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.admin.indices.create.CreateIndexClusterStateUpdateRequest, boolean)"}, "line": {"number": 420}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m3tIqGWDOzCH_q4z0bYhiAAAAAAAAABH"}} +{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.dataformat.smile.SmileParser.nextToken()", "offset": 14}, "line": {"number": 377}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WhniNSxw2pCUX_wLOZqcBQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "CachedKeyWeakConcurrentMap.java"}, "function": {"name": "co.elastic.apm.agent.weakconcurrent.CachedLookupKey co.elastic.apm.agent.collections.CachedKeyWeakConcurrentMap.getLookupKey(java.lang.Object)"}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV"}} +{"Stackframe": {"function": {"name": "vfs_statx"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "spUGqsCTGHPUynY6l3nRmwAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "AuthenticationContextSerializer.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authc.Authentication org.elasticsearch.xpack.core.security.authc.support.AuthenticationContextSerializer.readFromContext(org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 10}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F7ru3Zs91MFNETqlg3mNRQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "java.lang.Object java.util.concurrent.ConcurrentHashMap.putIfAbsent(java.lang.Object, java.lang.Object)"}, "line": {"number": 1541}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GY8FzW1zmT9O6Iy3KHcGZQAAAAAAAAEn"}} +{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode$GCMDecrypt.doFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 45}, "line": {"number": 1564}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_vmmzjY_F_p-gLT_Wctm7QAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "Log4jContextFactory.java"}, "function": {"name": "org.apache.logging.log4j.core.LoggerContext org.apache.logging.log4j.core.impl.Log4jContextFactory.getContext(java.lang.String, java.lang.ClassLoader, java.lang.Object, boolean, java.net.URI, java.lang.String)"}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_iDZMCcFI7BA-AS_7zsasAAAAAAAAACN"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.doExecute()", "offset": 19}, "line": {"number": 796}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Dfl7_VkgAlUBnXT98IPo0AAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()"}, "line": {"number": 750}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8oQ_ZJ3ImiZWOZcNHv_WYwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.implDelete(java.nio.file.Path, boolean)", "offset": 6}, "line": {"number": 232}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportShardRefreshAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction.shardOperationOnPrimary(org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU"}} +{"Stackframe": {"function": {"name": "new_sync_write"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MQClF0q6pfmgxLvEq3gXXAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "IndexLifecycleRunner.java"}, "function": {"name": "boolean org.elasticsearch.xpack.ilm.IndexLifecycleRunner.isReadyToTransitionToThisPhase(java.lang.String, org.elasticsearch.cluster.metadata.IndexMetadata, java.lang.String)"}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eY3PL1d7IX9V0G8GiWyB3AAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "org.elasticsearch.index.mapper.ParsedDocument org.elasticsearch.index.mapper.DocumentParser.parseDocument(org.elasticsearch.index.mapper.SourceToParse)", "offset": 8}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAPS7z"}} +{"Stackframe": {"function": {"name": "ext4_show_options"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P6WZ8beuV9qvYQN2_0rUbQAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction$AsyncSingleAction$2.doRun()"}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vMJZLefDDDN7jSsJGIx5fAAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.addSortedSetField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 5}, "line": {"number": 759}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KQLbwVQkKDdGennGDte8qAAAAAAAAACz"}} +{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "java.util.List org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$WildcardExpressionResolver.resolve(org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$Context, java.util.List)", "offset": 25}, "line": {"number": 916}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "J5rjZcSsg8hOL06iqa3UTwAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeFieldName(java.lang.String)", "offset": 7}, "line": {"number": 735}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E-QSo1XdHeCvAI8JR1eihwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.Iterator java.util.HashMap$Values.iterator()"}, "line": {"number": 967}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 7}, "line": {"number": 169}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "FilterDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.FilterDirectoryReader.doOpenIfChanged()"}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7dZbzLINeewhS7u7jNnbxwAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.lambda$getAuthenticatorConsumer$4(java.util.function.Consumer, org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.security.authc.Authenticator, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 7}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w_O3wtATzW6mpl2Tr754qwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$8240+0x0000000801fa69e8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Lwmd5uj6vHseO4T8UkiFBgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.addSortedSetField(org.apache.lucene.index.FieldInfo, java.lang.Iterable, java.lang.Iterable, java.lang.Iterable)"}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oIbcZroK0mbxpVqmuMaywgAAAAAAAABt"}} +{"Stackframe": {"file": {"name": "Rewriteable.java"}, "function": {"name": "void org.elasticsearch.index.query.Rewriteable.rewriteAndFetch(org.elasticsearch.index.query.Rewriteable, org.elasticsearch.index.query.QueryRewriteContext, org.elasticsearch.action.ActionListener, int)", "offset": 23}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AzxlhtMMySYrabepp4O8EgAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.executeRequest(org.elasticsearch.action.search.SearchTask, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.search.TransportSearchAction$SearchAsyncActionProvider, org.elasticsearch.action.ActionListener)", "offset": 110}, "line": {"number": 478}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nX5EwLqa4-7opgPxIg4PZAAAAAAAAABw"}} +{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "void io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()", "offset": 31}, "line": {"number": 931}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAB4yx"}} +{"Stackframe": {"function": {"name": "xfs_dir_ialloc"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7ar55a9FFsDYo35A0BIF8AAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object jdk.internal.loader.BuiltinClassLoader$$Lambda$289+0x0000000800d277b0.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3M56M_g_f1gYgGNi_mtl_gAAAAAAAAMg"}} +{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "java.util.SortedMap org.elasticsearch.cluster.metadata.Metadata$Builder.buildIndicesLookup()", "offset": 57}, "line": {"number": 1684}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Hnpr4tyJKNRRtr915IpCUAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ByteBuffer.java"}, "function": {"name": "void java.nio.ByteBuffer.(int, int, int, int, byte[], int, jdk.internal.access.foreign.MemorySegmentProxy)"}, "line": {"number": 288}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4GZfdSdo79rYS6pQyNIftAAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "BytesRefHash.java"}, "function": {"name": "int org.apache.lucene.util.BytesRefHash.add(org.apache.lucene.util.BytesRef)", "offset": 3}, "line": {"number": 273}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rCVGV1UD-54ghl-RDtUxawAAAAAAAAC-"}} +{"Stackframe": {"file": {"name": "ObjectMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.ObjectMapper.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params, org.elasticsearch.common.xcontent.ToXContent)", "offset": 29}, "line": {"number": 540}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yYF5YWbjTLokor9oKz_A5AAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "boolean java.util.concurrent.LinkedTransferQueue$Node.tryMatch(java.lang.Object, java.lang.Object)", "offset": 1}, "line": {"number": 448}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_btj02zrVOB5yHsjoNQahgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$6400+0x0000000801cc8000.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "r-2tuEtuee9_EPbCDQ5g3AAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "void io.netty.channel.AbstractChannel$AbstractUnsafe.write(java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 16}, "line": {"number": 881}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "10bGpCcFXCZdhBTB55YaIgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$static$3(java.lang.String, org.elasticsearch.common.xcontent.XContentParser)"}, "line": {"number": 293}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6hqOSwO_UyguGx3V9Hcf5AAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "User.java"}, "function": {"name": "void org.elasticsearch.xpack.security.user.User.writeTo(org.elasticsearch.xpack.security.user.User, org.elasticsearch.common.io.stream.StreamOutput)", "offset": 12}, "line": {"number": 237}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RoLIlcLUqj5vIEU93Jo_ggAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "FileRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.file.FileRealm.doAuthenticate(org.elasticsearch.xpack.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "81_eQIrwprmH1vsr5GxRYAAAAAAAAABH"}} +{"Stackframe": {"file": {"name": "EnumMap.java"}, "function": {"name": "boolean java.util.EnumMap.equals(java.util.EnumMap)", "offset": 8}, "line": {"number": 694}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EAeWdOtQ4-I723aXPsAYbQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkWrite(java.lang.String)"}, "line": {"number": 979}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "AuthorizationUtils.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationUtils$AsyncAuthorizer.maybeRun()", "offset": 2}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UiUoRYGdR-DlFb1nVPjgzQAAAAAAAACN"}} +{"Stackframe": {"file": {"name": "TranslogWriter.java"}, "function": {"name": "void org.elasticsearch.index.translog.TranslogWriter.writeAndReleaseOps(org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 20}, "line": {"number": 544}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w5DtxqVhoNPMfZH51ZbSdwAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes sun.nio.fs.UnixFileSystemProvider.readAttributes(java.nio.file.Path, java.lang.Class, java.nio.file.LinkOption[])", "offset": 8}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tIB1dxGnX0oRcLl9Hw7ZbAAAAAAAAABw"}} +{"Stackframe": {"file": {"name": "SocketChannelImpl.java"}, "function": {"name": "int sun.nio.ch.SocketChannelImpl.read(java.nio.ByteBuffer)", "offset": 19}, "line": {"number": 425}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dAeX1d421DMJ2cC6FX3tvwAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "ElasticApmTracer.java"}, "function": {"name": "co.elastic.apm.agent.impl.transaction.Transaction co.elastic.apm.agent.impl.ElasticApmTracer.startChildTransaction(java.lang.Object, co.elastic.apm.agent.impl.transaction.TextHeaderGetter, co.elastic.apm.agent.impl.sampling.Sampler, long, java.lang.ClassLoader)", "offset": 2}, "line": {"number": 209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Vwe_72Rv4VHVlHKolSYlNQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "MergePolicy.java"}, "function": {"name": "long org.apache.lucene.index.MergePolicy.size(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 1}, "line": {"number": 745}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZjA9xTUNBPFR9HhTt7X4owAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.util.List org.elasticsearch.discovery.DiscoveryModule$$Lambda$4191+0x000000080188caf0.getSeedAddresses(org.elasticsearch.discovery.SeedHostsProvider$HostsResolver)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALVGx"}} +{"Stackframe": {"function": {"name": "vfs_writev"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UoO0YIpM7l58QUfhpUAyIAAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "void org.elasticsearch.cluster.DiffableUtils$ImmutableOpenMapDiff.(org.elasticsearch.common.collect.ImmutableOpenMap, org.elasticsearch.common.collect.ImmutableOpenMap, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)", "offset": 3}, "line": {"number": 236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JqokGYujMWAw4siq0i868wAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "ConcurrentMergeScheduler.java"}, "function": {"name": "void org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread.run()", "offset": 4}, "line": {"number": 684}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C1S0u5i-I99o7AP-YW5LEQAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.unknownValue(java.lang.Object, boolean)", "offset": 6}, "line": {"number": 815}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-KaQJqCpvd-fD6hn3-xL4AAAAAAAAABF"}} +{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "void io.netty.util.concurrent.DefaultPromise.notifyListenersNow()", "offset": 13}, "line": {"number": 551}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WWjCfoHiLs6x77qSQOVJgQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "ApacheHttpRequestFactory.java"}, "function": {"name": "java.lang.Object com.amazonaws.http.apache.request.impl.ApacheHttpRequestFactory.create(com.amazonaws.Request, com.amazonaws.http.settings.HttpClientSettings)"}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jtEB8q7ZNk5LwicDPNbPVQAAAAAAAACE"}} +{"Stackframe": {"file": {"name": "Lucene90BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.blocktree.Lucene90BlockTreeTermsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 26}, "line": {"number": 370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nD7QKbPeresstocfBtl0cAAAAAAAAADY"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.executeOneRequest(com.amazonaws.http.AmazonHttpClient$RequestExecutor$ExecOneRequestParams)", "offset": 37}, "line": {"number": 1320}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XYpTsYMYf11MacGhc3gTbAAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "DirectConstructorHandleAccessor.java"}, "function": {"name": "java.lang.Object jdk.internal.reflect.DirectConstructorHandleAccessor.invokeImpl(java.lang.Object[])", "offset": 2}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_h880XQOq8mngzMZR-nPlwAAAAAAAABR"}} +{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "void org.elasticsearch.cluster.ClusterState$ClusterStateDiff.(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.node.DiscoveryNode)", "offset": 9}, "line": {"number": 778}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALhYF"}} +{"Stackframe": {"function": {"name": "path_put"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAACG6B"}} +{"Stackframe": {"function": {"name": "__xfs_trans_commit"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ms-x3fJ8QBk7y_Ax6kns5QAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$2.onResponse(java.lang.Void)"}, "line": {"number": 302}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LJuheAAsn3wtTorrVTYnTwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.StandardDirectoryReader.doOpenIfChanged()"}, "line": {"number": 345}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VmbQ13l3vaIwmAJ2MX2yEwAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "CopyOnWriteHashMap.java"}, "function": {"name": "org.elasticsearch.common.collect.CopyOnWriteHashMap$InnerNode org.elasticsearch.common.collect.CopyOnWriteHashMap$InnerNode.put(java.lang.Object, int, int, java.lang.Object, org.apache.lucene.util.mutable.MutableValueInt)", "offset": 6}, "line": {"number": 383}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1ShmBRgMAPQ8MSXYm8AamgAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "SearcherManager.java"}, "function": {"name": "boolean org.apache.lucene.search.SearcherManager.isSearcherCurrent()", "offset": 4}, "line": {"number": 184}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Uw8EG916-vV16x2yycdXOwAAAAAAAADv"}} +{"Stackframe": {"file": {"name": "TaskBatcher.java"}, "function": {"name": "void org.elasticsearch.cluster.service.TaskBatcher.runIfNotProcessed(org.elasticsearch.cluster.service.TaskBatcher$BatchedTask)", "offset": 24}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "J2FDONFObDGDV1DAwWRKnwAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "FileSystemUtils.java"}, "function": {"name": "java.nio.file.Path[] org.elasticsearch.common.io.FileSystemUtils.toArray(java.nio.file.DirectoryStream)"}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kZ21XW5-NvO1hiIXWDAOXAAAAAAAAAB7"}} +{"Stackframe": {"file": {"name": "PendingReplicationActions.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.PendingReplicationActions.acceptNewTrackedAllocationIds(java.util.Set)", "offset": 10}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjbU"}} +{"Stackframe": {"function": {"name": "lookup_fast"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M09XeJtIuzWFgRLBSCNdGwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ElasticsearchReaderManager.java"}, "function": {"name": "org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader org.elasticsearch.index.engine.ElasticsearchReaderManager.refreshIfNeeded(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zuM7pJu9A0MpIimFDHB6NwAAAAAAAADW"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncPrimaryAction.doRun()", "offset": 20}, "line": {"number": 339}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bLC-FuN9ZjxLXfQFZMkT3QAAAAAAAACV"}} +{"Stackframe": {"file": {"name": "NodeHash.java"}, "function": {"name": "long org.apache.lucene.util.fst.NodeHash.add(org.apache.lucene.util.fst.Builder, org.apache.lucene.util.fst.Builder$UnCompiledNode)", "offset": 14}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$6.doRun()"}, "line": {"number": 976}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lWZrBpi9jtlM7-59Gnsk1AAAAAAAAADK"}} +{"Stackframe": {"file": {"name": "TaskBatcher.java"}, "function": {"name": "void org.elasticsearch.cluster.service.TaskBatcher.runIfNotProcessed(org.elasticsearch.cluster.service.TaskBatcher$BatchedTask)", "offset": 19}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sqSPxzNVk-ZFlB_w0Mp5HwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "AbstractMessageWriter.java"}, "function": {"name": "void org.apache.http.impl.io.AbstractMessageWriter.write(org.apache.http.HttpMessage)", "offset": 1}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1s1_VifsV1Mzjd9P-8DEhgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object)"}, "line": {"number": 697}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p8ipwxPDk2OXbZVU57GDWgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.io.stream.StreamInput.readMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader)"}, "line": {"number": 620}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "y_zLcqsLm1pyxWcSerbeRAAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "int sun.nio.ch.EPollSelectorImpl.doSelect(long)", "offset": 5}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "q5-VNNWJnEe4GvJK3_qvJwAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser._parseName(int)", "offset": 5}, "line": {"number": 1676}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xPPAbGaaMBJnu4LeA3LnlgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ReservedRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.esnative.ReservedRealm.doAuthenticate(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nbywHu3vpvihSCOYyYZxJQAAAAAAAABf"}} +{"Stackframe": {"file": {"name": "SdkHttpUtils.java"}, "function": {"name": "java.lang.String com.amazonaws.util.SdkHttpUtils.appendUri(java.lang.String, java.lang.String, boolean)", "offset": 11}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.prepareCommit()", "offset": 1}, "line": {"number": 3293}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SJxVsEnpCDnlRh2uwKM1VwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "org.elasticsearch.index.store.StoreStats org.elasticsearch.index.store.Store$StoreStatsCache.refresh()"}, "line": {"number": 1391}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XInDcq5R6vIDaHfFB5nSkgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "IndexLifecycleService.java"}, "function": {"name": "void org.elasticsearch.xpack.ilm.IndexLifecycleService.triggerPolicies(org.elasticsearch.cluster.ClusterState, boolean)"}, "line": {"number": 373}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HyBeZYPY4-mSUOFMq2R5wwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.implWrite(byte[], int, int)", "offset": 1}, "line": {"number": 401}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Fnf9oAjiADN7m8uLBtW8oQAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.writeAuthToContext(org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 10}, "line": {"number": 435}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jiqmNc5cRiav2wA-qp0PAgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "IndexOrDocValuesQuery.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.apache.lucene.search.IndexOrDocValuesQuery$1.scorerSupplier(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k-oYEuE0qNzcsmMdylxs5gAAAAAAAAEX"}} +{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.fs.UnixChannelFactory.open(int, sun.nio.fs.UnixPath, java.lang.String, sun.nio.fs.UnixChannelFactory$Flags, int)", "offset": 60}, "line": {"number": 247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1Qc81cp4mNjTpfchkKvwqwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkDelete(java.lang.String)"}, "line": {"number": 1007}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vhnom3WOw0oZ6vmFp2wIgwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FsService.java"}, "function": {"name": "org.elasticsearch.monitor.fs.FsInfo org.elasticsearch.monitor.fs.FsService.stats()"}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Iuyjdtp-59Jsue2LDdIRvQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ShardId.java"}, "function": {"name": "boolean org.elasticsearch.index.shard.ShardId.equals(java.lang.Object)"}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qYA0yXrjfQUiViGsCwfP0gAAAAAAAADo"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken()", "offset": 54}, "line": {"number": 776}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LMU2X5HEvTgsWl_cTFeI6wAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObjectOrField(org.elasticsearch.index.mapper.ParseContext, org.elasticsearch.index.mapper.Mapper)", "offset": 1}, "line": {"number": 465}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h3WTBx-QeTdXBYE6dCwz6gAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.action.support.nodes.BaseNodeRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uX6id2FEnjIyJkjMZEmhqgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "DateTimeFormatter.java"}, "function": {"name": "void org.joda.time.format.DateTimeFormatter.printTo(java.lang.Appendable, long)"}, "line": {"number": 589}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kSpDtM4aoNKYBm9KH33NoQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SearchActionListener.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchActionListener.onResponse(java.lang.Object)"}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xWwq3BVQzbzp00-HYFOW_wAAAAAAAAB0"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.snapshotFile(org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshot$FileInfo, org.elasticsearch.repositories.IndexId, org.elasticsearch.index.shard.ShardId, org.elasticsearch.snapshots.SnapshotId, org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.elasticsearch.index.store.Store)", "offset": 31}, "line": {"number": 3493}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ5Qy"}} +{"Stackframe": {"function": {"name": "__alloc_pages_nodemask"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd"}} +{"Stackframe": {"file": {"name": "IndexTemplateRegistry.java"}, "function": {"name": "void org.elasticsearch.xpack.core.template.IndexTemplateRegistry.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 25}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EUtxuQstd0YETwGxTB_G5gAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "ShardGetService.java"}, "function": {"name": "org.elasticsearch.index.get.GetResult org.elasticsearch.index.get.ShardGetService.getForUpdate(java.lang.String, long, long)"}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uIi1QD2zJWMtve9XGY3UdwAAAAAAAACT"}} +{"Stackframe": {"file": {"name": "MigrateAction.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.MigrateAction.toSteps(org.elasticsearch.client.Client, java.lang.String, org.elasticsearch.xpack.core.ilm.Step$StepKey)", "offset": 24}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zXY2fMPD2q8JxxSeQ4an4AAAAAAAAADb"}} +{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.forwardFragments(org.elasticsearch.transport.TcpChannel, java.util.ArrayList)", "offset": 14}, "line": {"number": 147}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X-Oq0l1amW5EIGEj1JNmswAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "MultiTermsEnum.java"}, "function": {"name": "void org.apache.lucene.index.MultiTermsEnum.pullTop()", "offset": 1}, "line": {"number": 267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_OOeQuiXtvgynmE43QMbEAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "FileDispatcherImpl.java"}, "function": {"name": "int sun.nio.ch.FileDispatcherImpl.force0(java.io.FileDescriptor, boolean)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uPYKLmERl0-_DM7CKlbDjQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UTF8JsonGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.UTF8JsonGenerator.writeFieldName(java.lang.String)"}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALgLi"}} +{"Stackframe": {"function": {"name": "pipe_write"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cqDrFg2lVIlEaumPl_y8qQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ProtectionDomain.java"}, "function": {"name": "boolean java.security.ProtectionDomain.implies(java.security.Permission)"}, "line": {"number": 314}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-zd4u8XEdM0oic22GP-UKgAAAAAAAAC3"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequestInternal(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 26}, "line": {"number": 627}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Yzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "IndexLifecycleRunner.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.Step org.elasticsearch.xpack.ilm.IndexLifecycleRunner.getCurrentStep(org.elasticsearch.xpack.ilm.PolicyStepsRegistry, java.lang.String, org.elasticsearch.cluster.metadata.IndexMetadata)", "offset": 6}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService.maybeRefreshEngine(boolean)", "offset": 3}, "line": {"number": 880}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VQoK7BVzszXqPUi0cc2ufgAAAAAAAABC"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$1(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 15}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Oo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ElasticsearchReaderManager.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.engine.ElasticsearchReaderManager.refreshIfNeeded(java.lang.Object)"}, "line": {"number": 27}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAARNxe"}} +{"Stackframe": {"function": {"name": "security_capable"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QiFXaEzTwN7w_cqE4M3pQgAAAAAAAADl"}} +{"Stackframe": {"file": {"name": "MessageToMessageEncoder.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageEncoder.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 45}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk7IW"}} +{"Stackframe": {"function": {"name": "netlink_sendmsg"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MLsSNklcHZC5-JNzE_acJQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "ParserImpl.java"}, "function": {"name": "org.yaml.snakeyaml.events.Event org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce()"}, "line": {"number": 662}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4aWABwF73Np6FFZYc2m-kwAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "Spliterators.java"}, "function": {"name": "void java.util.Spliterators$IteratorSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 6}, "line": {"number": 1845}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ncSTizlv_pFu2fK48OzJugAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "RandomAccessFile.java"}, "function": {"name": "int java.io.RandomAccessFile.read(byte[], int, int)"}, "line": {"number": 404}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2Y82qsMY4rOT_z3xmOU0kgAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "Nodes.java"}, "function": {"name": "void java.util.stream.Nodes$FixedNodeBuilder.(long, java.util.function.IntFunction)"}, "line": {"number": 1199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lLlt0XIN2jdXfrgMm001LgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "IngestService.java"}, "function": {"name": "void org.elasticsearch.ingest.IngestService.lambda$applyClusterState$8(java.util.function.Consumer)"}, "line": {"number": 900}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFW5n"}} +{"Stackframe": {"function": {"name": "cgroup_show_path"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xw1yJAt7gWtIg5pKPvlbxgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "OsProbe.java"}, "function": {"name": "java.lang.String org.elasticsearch.monitor.os.OsProbe.readSingleLine(java.nio.file.Path)"}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dryhzi4jBxOyrBm3zOIcRgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "int[] java.util.Arrays.copyOf(int[], int)"}, "line": {"number": 3584}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pNCOyiVwjuXBJuAQYmyfWgAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.admin.cluster.RestGetSnapshotsAction$$Lambda$7234+0x0000000801e7e3f0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2oeSW9BMt2zZqP7i-3UsNAAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult io.netty.handler.ssl.SslHandler$SslEngineType$3.unwrap(io.netty.handler.ssl.SslHandler, io.netty.buffer.ByteBuf, int, io.netty.buffer.ByteBuf)", "offset": 3}, "line": {"number": 298}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TdvyEkBALxwDoycOnD-RjgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.updateChildren()"}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8X2C10RJDGqRqJtqFUpE6AAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "Invokers$Holder"}, "function": {"name": "java.lang.Object java.lang.invoke.Invokers$Holder.invokeExact_MT(java.lang.Object, java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gvuD6B77CDYBJxa-S1A8kQAAAAAAAABg"}} +{"Stackframe": {"file": {"name": "IndexLifecycleService.java"}, "function": {"name": "void org.elasticsearch.xpack.ilm.IndexLifecycleService.triggerPolicies(org.elasticsearch.cluster.ClusterState, boolean)", "offset": 19}, "line": {"number": 320}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OppFSDODTzgTHYJG_GWJMwAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.io.stream.StreamInput.readMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader, java.util.function.IntFunction)", "offset": 6}, "line": {"number": 653}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Jg7Tuh0IHpuumyzwN_F2xAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "RestActions.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestActions$NodesResponseRestListener.buildResponse(org.elasticsearch.action.support.nodes.BaseNodesResponse, org.elasticsearch.common.xcontent.XContentBuilder)"}, "line": {"number": 237}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "avU6NIsopUe3RLXmOLaJogAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "JarFileFactory.java"}, "function": {"name": "java.util.jar.JarFile sun.net.www.protocol.jar.JarFileFactory.getCachedJarFile(java.net.URL)", "offset": 10}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "45l-3EzV2pQer0tpzvWJuAAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$RunBeforeActionListener.onResponse(java.lang.Object)", "offset": 5}, "line": {"number": 387}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0vYUuo04uCIksGcEjg9Q4AAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "EsExecutors.java"}, "function": {"name": "boolean org.elasticsearch.common.util.concurrent.EsExecutors$ExecutorScalingQueue.offer(java.lang.Object)"}, "line": {"number": 321}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_wF9139OqoZQK8iwN7oJTAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "RestActionListener.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestActionListener.onResponse(java.lang.Object)", "offset": 1}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tOnLYqQcEe077mBYB3aqxAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "void org.elasticsearch.cluster.DiffableUtils$ImmutableOpenMapDiff.(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)"}, "line": {"number": 290}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EgnEAYVJO6evUZwnNI7NMgAAAAAAAAB0"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.applyInternal(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.ActionFilterChain, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 21}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApa94"}} +{"Stackframe": {"function": {"name": "memset_erms"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tfumpR3_DtTnCIOWDzKm-wAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService$$Lambda$10693+0x0000000802972b08.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zXf1O_8jknZjcKGu5cQjJQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "Netty4HttpRequestHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpRequestHandler.channelRead0(io.netty.channel.ChannelHandlerContext, org.elasticsearch.http.HttpPipelinedRequest)", "offset": 3}, "line": {"number": 31}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MEmB_ULI2WRWc6UOcg2R1AAAAAAAAADi"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.indices.NodeIndicesStats org.elasticsearch.indices.IndicesService.stats(boolean, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 31}, "line": {"number": 303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "axidElRbDvZZ7rQ8Ca4ceAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.tasks.TaskManager.register(java.lang.String, java.lang.String, org.elasticsearch.tasks.TaskAwareRequest)"}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASg1n"}} +{"Stackframe": {"function": {"name": "profile_path_perm.part.9"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HOno65fF9MNk7Hxtw-uPRAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "java.lang.Object java.util.concurrent.ConcurrentHashMap.putVal(java.lang.Object, java.lang.Object, boolean)"}, "line": {"number": 1011}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "13EjbA0IjpuaU_N8fi-CjwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "java.lang.Object com.amazonaws.services.s3.AmazonS3Client.invoke(com.amazonaws.Request, com.amazonaws.http.HttpResponseHandler, java.lang.String, java.lang.String)"}, "line": {"number": 5403}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1kXz6DG2a8E4RFJfEJClUwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "GlobalCheckpointSyncAction.java"}, "function": {"name": "void org.elasticsearch.index.seqno.GlobalCheckpointSyncAction.shardOperationOnPrimary(org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wjbq14SDWW6edot3m-YXMQAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator$$Lambda$6972+0x0000000801e9c228.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "csotpmL-bpzm5_5AqBwK6QAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor$Worker.run()"}, "line": {"number": 624}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TIiUQbNP_B2HH8y6arJUkwAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.doAuthenticateAndCache(org.elasticsearch.xpack.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener)"}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kwlUtuQNZ2cGuJOBjod69QAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "ConcurrentMergeScheduler.java"}, "function": {"name": "void org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread.run()", "offset": 4}, "line": {"number": 661}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bCBdTuDS0DbCDGTJHRgQHgAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "Lucene50CompoundFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene50.Lucene50CompoundFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 4}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rmSs41XtF0_135XyexZ4IQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Rewriteable.java"}, "function": {"name": "void org.elasticsearch.index.query.Rewriteable.rewriteAndFetch(org.elasticsearch.index.query.Rewriteable, org.elasticsearch.index.query.QueryRewriteContext, org.elasticsearch.action.ActionListener)"}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C0XtSv7dm7gUvHZSURjO4gAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.execute()", "offset": 18}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "q70nRV_P6WVXyRtYM6D75QAAAAAAAAMn"}} +{"Stackframe": {"file": {"name": "Lucene54DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene54.Lucene54DocValuesConsumer.addNumericField(org.apache.lucene.index.FieldInfo, java.lang.Iterable, org.apache.lucene.codecs.lucene54.Lucene54DocValuesConsumer$NumberType)", "offset": 125}, "line": {"number": 218}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IWb6KEDEet9GjRbj5wCi1gAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "void java.io.FilePermission.(java.lang.String, java.lang.String)", "offset": 1}, "line": {"number": 490}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Z41z-remt7jPNWprM_rymwAAAAAAAAOA"}} +{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "org.elasticsearch.cluster.metadata.Metadata org.elasticsearch.cluster.metadata.Metadata$Builder.build()", "offset": 78}, "line": {"number": 1606}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hcyqiQEWmR9-y-RezAvhPwAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "FileUserPasswdStore.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authc.AuthenticationResult org.elasticsearch.xpack.security.authc.file.FileUserPasswdStore.verifyPassword(java.lang.String, org.elasticsearch.common.settings.SecureString, java.util.function.Supplier)", "offset": 4}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "brHwMWIWqKKcmy2jXj1-xAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 2}, "line": {"number": 529}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "steQzbkmPDTg5m4DO0exwQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ByteSourceJsonBootstrapper.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonParser com.fasterxml.jackson.core.json.ByteSourceJsonBootstrapper.constructParser(int, com.fasterxml.jackson.core.ObjectCodec, com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer, com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer, int)"}, "line": {"number": 246}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Re_fJ3pwlQ_8bGbhEDwangAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Setting.get(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 328}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PlE8FXr5PelWy7FpXlhElAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "sun.nio.fs.UnixPath sun.nio.fs.UnixPath.normalize()"}, "line": {"number": 511}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-bdPLgVx58dzwkE7OjvI9QAAAAAAAAF5"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 73}, "line": {"number": 487}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LqdAyI5xfVPSOyY5dn7-yQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "OsProbe.java"}, "function": {"name": "java.lang.String org.elasticsearch.monitor.os.OsProbe.getCgroupMemoryUsageInBytes(java.lang.String)"}, "line": {"number": 556}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qo29mIfMk6g9kMPy8tsbogAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.roles(java.util.Set, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NIqjhtq1D0AkrNjRb27RUgAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "java.util.Set org.elasticsearch.cluster.metadata.IndexNameExpressionResolver.resolveExpressions(org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.support.IndicesOptions, boolean, java.lang.String[])", "offset": 11}, "line": {"number": 643}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "G1OnoGXN6zXJZoQUHRmxAwAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.applyIndexOperationOnPrimary(long, org.elasticsearch.index.VersionType, org.elasticsearch.index.mapper.SourceToParse, long, long, long, boolean)", "offset": 1}, "line": {"number": 888}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H8Al-WbstdAAVLcQB9SMjwAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "TermsHashPerField.java"}, "function": {"name": "void org.apache.lucene.index.TermsHashPerField.sortTerms()", "offset": 1}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SnuscF0tbXb_zlnank6kxwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Actor.scala"}, "function": {"name": "void akka.actor.Actor.aroundReceive(scala.PartialFunction, java.lang.Object)"}, "line": {"number": 537}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM"}} +{"Stackframe": {"function": {"name": "__x64_sys_epoll_ctl"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jT7FcBehNASUCT0wTP--hQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.file.DirectoryStream sun.nio.fs.UnixFileSystemProvider.newDirectoryStream(java.nio.file.Path, java.nio.file.DirectoryStream$Filter)", "offset": 1}, "line": {"number": 394}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p3Vuqvs7V5NILq509rAqPwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "Streamable.java"}, "function": {"name": "org.elasticsearch.common.io.stream.Streamable org.elasticsearch.common.io.stream.Streamable.lambda$newWriteableReader$0(java.util.function.Supplier, org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "S06qc2WWdjyLzzAdWuSUuwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.io.stream.StreamInput.readString()"}, "line": {"number": 428}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VIpKyJ4wSn-DKbqb5c24RwAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$7226+0x000000080251ca70.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "TaskTransportChannel.java"}, "function": {"name": "void org.elasticsearch.transport.TaskTransportChannel.sendResponse(org.elasticsearch.transport.TransportResponse)", "offset": 1}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5NWnM6h02FDc8HMOq87mSwAAAAAAAAB_"}} +{"Stackframe": {"file": {"name": "IndicesAndAliasesResolver.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authz.ResolvedIndices org.elasticsearch.xpack.security.authz.IndicesAndAliasesResolver.resolve(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizedIndices)", "offset": 14}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o-Nsru8vjcvvEGGkrUKozgAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ReroutePhase.performAction(org.elasticsearch.cluster.node.DiscoveryNode, java.lang.String, boolean, org.elasticsearch.transport.TransportRequest)"}, "line": {"number": 952}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "raW9aAtkVtkUuzUOoh_0wAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "void org.elasticsearch.threadpool.ThreadPool$1.run()", "offset": 2}, "line": {"number": 442}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aoz7JDP1wYMRhv-rSDBZjAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "java.lang.String[] org.apache.lucene.store.FSDirectory.listAll(java.nio.file.Path, java.util.Set)", "offset": 2}, "line": {"number": 215}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fZy1aBBzLZa2IvcsSbCGnAAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "org.elasticsearch.cluster.SnapshotsInProgress$Entry org.elasticsearch.cluster.SnapshotsInProgress$Entry.withShardStates(org.elasticsearch.common.collect.ImmutableOpenMap)", "offset": 17}, "line": {"number": 1183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WBMHCRX8lWXCL34L_UW5igAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncPrimaryAction$$Lambda$8963+0x00000008027f6980.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o9I8XHop3y7uLb8wdADAN______AbjGD"}} +{"Stackframe": {"function": {"name": "__key.128173"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Sxgb26oKQwlt07if9woPTQAAAAAAACOR"}} +{"Stackframe": {"function": {"name": "br_nf_pre_routing"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RJueobtGLNKjuDFxaSSPAQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Header.java"}, "function": {"name": "void org.elasticsearch.transport.Header.finishParsingHeader(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bcjqSMuxBT-dvJSjCv8ndQAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.runRequestInterceptors(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 571}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ToVtc2P50kV-QGj3la9_ZAAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.store.StoreStats org.elasticsearch.index.shard.IndexShard.storeStats()", "offset": 1}, "line": {"number": 1104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o9I8XHop3y7uLb8wdADAN______AcGy3"}} +{"Stackframe": {"function": {"name": "__key.128173"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUd51"}} +{"Stackframe": {"function": {"name": "_copy_from_iter_full"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bJn5SozxBbH0binHS94BnQAAAAAAAAB7"}} +{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.ActionListener)", "offset": 11}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jtEB8q7ZNk5LwicDPNbPVQAAAAAAAAB8"}} +{"Stackframe": {"file": {"name": "Lucene90BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.blocktree.Lucene90BlockTreeTermsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 23}, "line": {"number": 367}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Okx9I2dyRRofyvlGdVF32QAAAAAAAACU"}} +{"Stackframe": {"file": {"name": "HttpObjectDecoder.java"}, "function": {"name": "io.netty.handler.codec.http.HttpObjectDecoder$State io.netty.handler.codec.http.HttpObjectDecoder.readHeaders(io.netty.buffer.ByteBuf)", "offset": 23}, "line": {"number": 572}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LfAmUfJw7DcyxWMo40P24QAAAAAAAAB7"}} +{"Stackframe": {"file": {"name": "TimeseriesLifecycleType.java"}, "function": {"name": "void org.elasticsearch.xpack.core.ilm.TimeseriesLifecycleType.validate(java.util.Collection)", "offset": 35}, "line": {"number": 322}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdS5"}} +{"Stackframe": {"function": {"name": "apparmor_file_permission"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YfWVtOr-M3KdNymRhenToAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.cluster.metadata.Metadata.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)"}, "line": {"number": 939}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wZSJW6Fth_EOu811YuoCSAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "LeaderChecker.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.LeaderChecker.lambda$new$0(org.elasticsearch.cluster.coordination.LeaderChecker$LeaderCheckRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 1}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wz5q8JekpnYi0s7eTlcojgAAAAAAAACv"}} +{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile.lambda$inbound$3(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.action.ActionListener, org.elasticsearch.Version, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 25}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_zxyi-wgtH_Wz8ut-WKY9wAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Setting.innerGetRaw(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 546}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xvo_iOg09zSCFO6AJ5txSwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ResourceLeakDetector.java"}, "function": {"name": "void io.netty.util.ResourceLeakDetector$Record.(io.netty.util.ResourceLeakDetector$Record)"}, "line": {"number": 607}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EoFbrQxdzAWAToQcZb4i-gAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader$BlockState.reset(int)", "offset": 2}, "line": {"number": 394}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ECHV7woLui-LgJzJ_Db5wQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SourceLookup.java"}, "function": {"name": "java.lang.Object org.elasticsearch.search.lookup.SourceLookup.filter(org.elasticsearch.search.fetch.subphase.FetchSourceContext)"}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Arz1MMWCC2fkAl6FCL43rAAAAAAAAACL"}} +{"Stackframe": {"file": {"name": "PushPostingsWriterBase.java"}, "function": {"name": "org.apache.lucene.codecs.BlockTermState org.apache.lucene.codecs.PushPostingsWriterBase.writeTerm(org.apache.lucene.util.BytesRef, org.apache.lucene.index.TermsEnum, org.apache.lucene.util.FixedBitSet, org.apache.lucene.codecs.NormsProducer)", "offset": 25}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oAl3S1UdiCfcB1msAHRleQAAAAAAAADY"}} +{"Stackframe": {"file": {"name": "SSLCipher.java"}, "function": {"name": "int sun.security.ssl.SSLCipher$T13GcmWriteCipherGenerator$GcmWriteCipher.encrypt(byte, java.nio.ByteBuffer)", "offset": 44}, "line": {"number": 2124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oUmvbu27lKG-DWHnm0Y3zQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "S3MetadataResponseHandler.java"}, "function": {"name": "java.lang.Object com.amazonaws.services.s3.internal.S3MetadataResponseHandler.handle(com.amazonaws.http.HttpResponse)"}, "line": {"number": 25}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7kZxFgbuXnmF5RM9H_z_ggAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "FsDirectoryFactory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.elasticsearch.index.store.FsDirectoryFactory$HybridDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 10}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABx"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKey(java.nio.channels.SelectionKey, io.netty.channel.nio.AbstractNioChannel)", "offset": 45}, "line": {"number": 719}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WzcM34XPrxORvaGGXCAlPAAAAAAAAAEu"}} +{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.core.security.authc.support.BCrypt.hashpw(org.elasticsearch.common.settings.SecureString, java.lang.String)", "offset": 45}, "line": {"number": 1640}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "L9OdW1GzSEWVanMPfByr5wAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkRead(java.lang.String)"}, "line": {"number": 888}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E5r53-92up8rkLVW-WJnRgAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "SdkHttpRequestExecutor.java"}, "function": {"name": "org.apache.http.HttpResponse com.amazonaws.http.protocol.SdkHttpRequestExecutor.doSendRequest(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext)", "offset": 19}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAACNky"}} +{"Stackframe": {"function": {"name": "xfs_log_commit_cil"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0DUsXaqQM40fpzmPdRsv-gAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "Hasher.java"}, "function": {"name": "boolean org.elasticsearch.xpack.security.authc.support.Hasher$1.verify(org.elasticsearch.common.settings.SecureString, char[])", "offset": 4}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0YsnzQnMKXvFIy6EpgfjkAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "BaseRestHandler.java"}, "function": {"name": "void org.elasticsearch.rest.BaseRestHandler.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient)"}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SJoYqCaJveFFa7104DcQBwAAAAAAAABr"}} +{"Stackframe": {"file": {"name": "StringCoding.java"}, "function": {"name": "char[] java.lang.StringCoding.decode(java.nio.charset.Charset, byte[], int, int)", "offset": 16}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9ZmZ3UHgc9rMnxUTE02cRwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.elasticsearch.core.internal.io.IOUtils.deleteFilesIgnoringExceptions(java.nio.file.Path[])"}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4iaBbZIIwXRBOYMSVscz2wAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.lambda$executeQueryPhase$2(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)"}, "line": {"number": 495}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vDU7E1ww8G9noy7HUAb7kQAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.writeIncrementalStateAndCommit(long, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)", "offset": 10}, "line": {"number": 776}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2SoE78KyptyxN20Xr6w1sAAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.ReadersAndUpdates.createNewReaderWithLatestLiveDocs(org.apache.lucene.index.SegmentReader)", "offset": 8}, "line": {"number": 740}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALzey"}} +{"Stackframe": {"function": {"name": "shrink_dcache_parent"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6BfWdekjqfXKsC08sKjfGwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "AbstractQueuedSynchronizer.java"}, "function": {"name": "boolean java.util.concurrent.locks.AbstractQueuedSynchronizer.release(int)", "offset": 1}, "line": {"number": 1008}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "S1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.getRoles(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)"}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J"}} +{"Stackframe": {"function": {"name": "__x64_sys_bpf"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ojpv1HELhgp1kupkcCnqDQAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "Handler.java"}, "function": {"name": "void sun.net.www.protocol.jar.Handler.parseURL(java.net.URL, java.lang.String, int, int)", "offset": 16}, "line": {"number": 152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nm8Dfka9x9QwMLoLlLfziAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.index.seqno.GlobalCheckpointSyncAction$$Lambda$7664+0x0000000801f69df0.get()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "omA88yQfT91566xoyEY7sAAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "SingleObjectCache.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.SingleObjectCache.getOrRefresh()", "offset": 4}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-I0qeKDe1hMr58wzZHuN2wAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "HttpRequestExecutor.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.protocol.HttpRequestExecutor.doSendRequest(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext)", "offset": 23}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "a67hy6D4_aH__IrzfMid7wAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "PrioritizedEsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.runAndClean(java.lang.Runnable)"}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LfFK_IF6-0ZmYbxI38JwJgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.get(long)"}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TphZkORhkBDEbRDMofKltAAAAAAAAACh"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 30}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RAxlOZQDYMSIxYBoCiYSlQAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator$$Lambda$6975+0x0000000801e9c658.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fGeO8E0dKkjTaq21mlOYCAAAAAAAAABv"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "boolean org.elasticsearch.index.shard.IndexShard.scheduledRefresh()", "offset": 18}, "line": {"number": 3476}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VMp-DPdE7CyTgnB0G1ncJAAAAAAAAAMk"}} +{"Stackframe": {"file": {"name": "SegmentTermsEnum.java"}, "function": {"name": "boolean org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact(org.apache.lucene.util.BytesRef)", "offset": 189}, "line": {"number": 509}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fPhuraRD9JGtgVGUoQNF-QAAAAAAAAF1"}} +{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "java.util.Map org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.buildFieldsGroupMapping(java.lang.Iterable)", "offset": 48}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eLPEw3jnFkvsJ2aQiz21NAAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)", "offset": 12}, "line": {"number": 581}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5mFfstASu8Qeky6I-gL8pgAAAAAAAAEX"}} +{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.fs.UnixChannelFactory.open(int, sun.nio.fs.UnixPath, java.lang.String, sun.nio.fs.UnixChannelFactory$Flags, int)", "offset": 61}, "line": {"number": 248}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6n-a5-if7K0DVFLofVTUEgAAAAAAAABS"}} +{"Stackframe": {"file": {"name": "Netty4HttpPipeliningHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpPipeliningHandler.handlePipelinedRequest(io.netty.channel.ChannelHandlerContext, org.elasticsearch.http.netty4.Netty4HttpRequest)", "offset": 5}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AYiZX9-gMPfOnqPU6eor7AAAAAAAAABq"}} +{"Stackframe": {"file": {"name": "Packed64.java"}, "function": {"name": "int org.apache.lucene.util.packed.Packed64.set(int, long[], int, int)", "offset": 9}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "55GfxhHkj37-fwWSYe5ibwAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.util.TreeMap$Entry java.util.TreeMap.successor(java.util.TreeMap$Entry)", "offset": 5}, "line": {"number": 2154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yALGv9WBYn0Sf_aOrPIyZAAAAAAAAAEA"}} +{"Stackframe": {"file": {"name": "IndexAbstractionResolver.java"}, "function": {"name": "java.util.List org.elasticsearch.cluster.metadata.IndexAbstractionResolver.resolveIndexAbstractions(java.lang.Iterable, org.elasticsearch.action.support.IndicesOptions, org.elasticsearch.cluster.metadata.Metadata, java.util.Collection, boolean, boolean)", "offset": 44}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tgTcpaw1PHSeu1PntXA3fQAAAAAAAABt"}} +{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.onResponse(java.lang.Object)", "offset": 9}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EuiuEGuoH1DvPXwEkw2odgAAAAAAAAID"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.messageReceived(org.elasticsearch.common.bytes.BytesReference, java.lang.Object, java.lang.String, java.net.InetSocketAddress, int)", "offset": 54}, "line": {"number": 1411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JslOyX-wUGFxc5cwIg6Z3wAAAAAAAAB9"}} +{"Stackframe": {"file": {"name": "BufferedIndexInput.java"}, "function": {"name": "void org.apache.lucene.store.BufferedIndexInput.refill()", "offset": 15}, "line": {"number": 291}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2JGPZcEtg_q-wlZSN3iiVQAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeString(java.lang.String)", "offset": 7}, "line": {"number": 325}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0nkc682jKjwunCriWrMqFwAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "long org.elasticsearch.index.translog.Translog.earliestLastModifiedAge()", "offset": 2}, "line": {"number": 451}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ud19zrXkNLiaFIKsYgavQQAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.SingleThreadEventExecutor.execute(java.lang.Runnable, boolean)", "offset": 22}, "line": {"number": 857}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_jjpeyVI1Bq6Q8mMvc4G-AAAAAAAAALq"}} +{"Stackframe": {"file": {"name": "SearchSourceBuilder.java"}, "function": {"name": "void org.elasticsearch.search.builder.SearchSourceBuilder.parseXContent(org.elasticsearch.common.xcontent.XContentParser, boolean)", "offset": 62}, "line": {"number": 1204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "S8mRI7HHsV-o5SfBaSYVJgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.xpack.monitoring.exporter.local.LocalExporter$$Lambda$1808.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j5zlUQh7CKlo9dGRL_ZvEwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.map(java.util.Map, boolean, boolean)", "offset": 7}, "line": {"number": 882}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK"}} +{"Stackframe": {"function": {"name": "__vfs_read"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OIU72g2wQhgyLETe_w4R1gAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "GlobalOrdinalMapping.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.elasticsearch.index.fielddata.ordinals.GlobalOrdinalMapping.lookupOrd(long)"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1E7vLqgIEliy4P46okASEgAAAAAAAAEE"}} +{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.tasks.TaskManager.unregister(org.elasticsearch.tasks.Task)", "offset": 17}, "line": {"number": 295}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FJBAv_ZG17EaYJPkcMS1YQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "HashSet.java"}, "function": {"name": "void java.util.HashSet.(java.util.Collection)", "offset": 2}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yok_YL73Fh-9mpuyxhgjVQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "int org.elasticsearch.common.io.stream.StreamInput.readArraySize()"}, "line": {"number": 1331}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8weNsJh8wpgjhW51tVfckQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$3139.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Pd5OqqDz0t7_uFB84tFFYgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "URL.java"}, "function": {"name": "java.net.URLConnection java.net.URL.openConnection()"}, "line": {"number": 1126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ty6LTUlzeN2dWkQMKHPovwAAAAAAAARn"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.doSnapshotShard(org.elasticsearch.repositories.SnapshotShardContext)", "offset": 261}, "line": {"number": 2949}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VPOET4zqXZqUIvz8opqY5wAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler.lambda$messageReceived$0(java.lang.Thread, org.elasticsearch.common.util.concurrent.AbstractRunnable, java.lang.Void)", "offset": 13}, "line": {"number": 307}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AhPzx2h6vI74dTFnJRlejAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Index.java"}, "function": {"name": "void org.elasticsearch.index.Index.writeTo(org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NleCed7iD5lY9FUQABqcFQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.lang.Object java.util.TreeMap.put(java.lang.Object, java.lang.Object)"}, "line": {"number": 534}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eIKZHUnkOnlIeLcFKA7B_wAAAAAAAAD4"}} +{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.checkpoint(org.apache.lucene.index.SegmentInfos, boolean)", "offset": 30}, "line": {"number": 546}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7_lHm_qWPZrIwZW3YqTGiQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "Comparators.java"}, "function": {"name": "int java.util.Comparators$NaturalOrderComparator.compare(java.lang.Object, java.lang.Object)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sNyfg9ut6Z6dApATH4i0DAAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "java.nio.channels.Selector sun.nio.ch.EPollSelectorImpl.wakeup()", "offset": 2}, "line": {"number": 207}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MAnPFQF_2lHHD-22u4f9XwAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotsService.innerUpdateSnapshotState(org.elasticsearch.snapshots.SnapshotsService$ShardSnapshotUpdate, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 4029}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XPjGl4y4AzIaVJhnNQtghgAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "ResourceWatcherService.java"}, "function": {"name": "void org.elasticsearch.watcher.ResourceWatcherService$ResourceMonitor.run()", "offset": 2}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "b95z1GhnNzkQcVnTAGVlWQAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService.snapshot(org.elasticsearch.index.shard.ShardId, org.elasticsearch.snapshots.Snapshot, org.elasticsearch.repositories.IndexId, java.util.Map, org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.elasticsearch.Version, org.elasticsearch.action.ActionListener)", "offset": 18}, "line": {"number": 369}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zbo7bf58tjgYkkUoiIIz0gAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "SeedHostsResolver.java"}, "function": {"name": "void org.elasticsearch.discovery.SeedHostsResolver.resolveConfiguredHosts(java.util.function.Consumer)", "offset": 6}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0xjqN2eHOKsjzvKPeuH6xQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "EsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor.execute(java.lang.Runnable)", "offset": 2}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN1t"}} +{"Stackframe": {"function": {"name": "__netif_receive_skb_one_core"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jDWb-JzykmDZwFq_yGRkXQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "threading.py"}, "function": {"name": "_bootstrap", "offset": 14}, "line": {"number": 884}, "source": {"type": 2}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PRgslp-mhiA259jp7eDUDAAAAAAAAAB6"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$MetadataIndexWriter.prepareCommit(java.lang.String, long, long, org.elasticsearch.Version)", "offset": 10}, "line": {"number": 799}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iX1IbNXN4h_K1-Noo3W8IgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.lambda$writeMap$3(org.elasticsearch.common.io.stream.StreamOutput, org.elasticsearch.common.io.stream.Writeable)"}, "line": {"number": 638}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RVh-BV8B68GuWcVN8lq5vQAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "Netty4HttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpServerTransport.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel)", "offset": 2}, "line": {"number": 551}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YuSHtRaDv4Y92h1o2cvsAAAAAAAAAAC-"}} +{"Stackframe": {"file": {"name": "SearchHits.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.search.SearchHits.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 19}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "t6G_bJIj-tKHEKwW1lRxeQAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService.notifySuccessfulSnapshotShard(org.elasticsearch.snapshots.Snapshot, org.elasticsearch.index.shard.ShardId, org.elasticsearch.repositories.ShardSnapshotResult)", "offset": 2}, "line": {"number": 465}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wKq13sxbA1Q177k-e_lIpgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.decRef(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)"}, "line": {"number": 393}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Vr464Hci92DwulADwvd6QgAAAAAAAABZ"}} +{"Stackframe": {"file": {"name": "TransportIndicesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.ShardStats org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.lambda$shardOperation$0(org.elasticsearch.tasks.Task, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.action.admin.indices.stats.IndicesStatsRequest)", "offset": 8}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qAJPfj7zVy9vjSAISf6DmgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.ingest.IngestService$$Lambda$7039+0x000000080246a698.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sKSbqfkKPLUDx6XDG0OMRAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction$AsyncSingleAction$$Lambda$6499+0x0000000801cfdb88.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALQ7i"}} +{"Stackframe": {"function": {"name": "dentry_open"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wnPUmwWKPdDvWpg5ILGR7wAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "URI.java"}, "function": {"name": "void java.net.URI$Parser.checkChars(int, int, long, long, java.lang.String)"}, "line": {"number": 3135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jcDMxk2NyZo5xFCAVktuZgAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "TransportClusterHealthAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.health.TransportClusterHealthAction$3.onNewClusterState(org.elasticsearch.cluster.ClusterState)"}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "q44xf6HFj4nbephvvOr6vAAAAAAAAAA8"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeBulkItems$22(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationContext, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener, java.lang.String, java.util.Set)", "offset": 6}, "line": {"number": 819}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gg88UO8ISBxD9srla_udvwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "UnixDirectoryStream.java"}, "function": {"name": "boolean sun.nio.fs.UnixDirectoryStream$UnixDirectoryIterator.hasNext()", "offset": 1}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QjcJgCUAsytsXGSmYCNuVgAAAAAAAACu"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 77}, "line": {"number": 612}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cGV0DDfmSpIZxUAKnFlOoQAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "void org.apache.lucene.index.StandardDirectoryReader.lambda$doClose$1()", "offset": 2}, "line": {"number": 373}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z3imu7TppL2XUId5Y_cXQgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Searcher org.elasticsearch.index.engine.Engine.acquireSearcher(java.lang.String, org.elasticsearch.index.engine.Engine$SearcherScope)"}, "line": {"number": 699}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lOwp8THaapDjttPXb9E-AgAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer.executeSingleUpload(org.elasticsearch.repositories.s3.S3BlobStore, java.lang.String, java.io.InputStream, long)", "offset": 18}, "line": {"number": 487}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eBe2TV8VA2V7lLyhiCvcHgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "NodeClient.java"}, "function": {"name": "void org.elasticsearch.client.node.NodeClient.doExecute(org.elasticsearch.action.Action, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinDe"}} +{"Stackframe": {"function": {"name": "sock_read_iter"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "AggregationPhase.java"}, "function": {"name": "void org.elasticsearch.search.aggregations.AggregationPhase.preProcess(org.elasticsearch.search.internal.SearchContext)", "offset": 5}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rBjr-BSuheRW9kIELpoRjwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.onResponse(java.lang.Object)"}, "line": {"number": 620}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tknRVtdrp8TkRV3X6AJ-KgAAAAAAAAE6"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleRequest(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.Header, org.elasticsearch.transport.InboundMessage)", "offset": 58}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ciQsV4oUc5gYfL4dony27QAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "SortedSetDocValuesTermsEnum.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.apache.lucene.index.SortedSetDocValuesTermsEnum.next()", "offset": 4}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QCJaqzc5TAgQb6P0JIYhjgAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "DataInput.java"}, "function": {"name": "int org.apache.lucene.store.DataInput.readInt()", "offset": 1}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rGGpi5XzV2_kyQAwI16y3AAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "SecurityContext.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.SecurityContext.executeAsUser(org.elasticsearch.xpack.core.security.user.User, java.util.function.Consumer, org.elasticsearch.Version)", "offset": 3}, "line": {"number": 94}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wbl5MrbJc9wo3KaVmfjO6QAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Settings.convertMapsToArrays(java.util.Map)", "offset": 8}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0qd"}} +{"Stackframe": {"function": {"name": "do_nanosleep"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eOzzLIU2TSEN-nL8WNPcPQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "IndexTemplateRegistry.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.template.IndexTemplateRegistry.componentTemplatesExist(org.elasticsearch.cluster.ClusterState, org.elasticsearch.xpack.core.template.IndexTemplateConfig)"}, "line": {"number": 341}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "odAqfJHrL8b-RJ7OGeIBlwAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo)", "offset": 6}, "line": {"number": 5996}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dpQ3bcNFV5Y0XdediaTCQgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.acquirePrimaryOperationPermit(org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 1069}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5l-2W9KB4tO_4MUXJhjp9AAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "RestCancellableNodeClient.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestCancellableNodeClient$1.onResponse(org.elasticsearch.action.ActionResponse)", "offset": 2}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZQJJRs-ZdTHhVtPo6Pg4QwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$5.handleResponse(org.elasticsearch.transport.TransportResponse)", "offset": 1}, "line": {"number": 737}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5ALrzWtZVEMruVqZ-mdtEAAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "boolean com.fasterxml.jackson.dataformat.smile.SmileParser._loadMore()", "offset": 1}, "line": {"number": 248}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3G7WvpXqPGO04rbAV9CJtQAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "SecondaryAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator.authenticateAndAttachToContext(org.elasticsearch.rest.RestRequest, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.refresh(java.lang.String)"}, "line": {"number": 1662}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YDzq_bCLVO7c1YoEyaj2pwAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.handler.ssl.SslHandler.allocateOutNetBuf(io.netty.channel.ChannelHandlerContext, int, int)"}, "line": {"number": 2199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FcMB855_FWaZSswd2LZM3wAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard$$Lambda$7772+0x00000008025d9c40.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9TUICgSPSfd7KAYazEQhHwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext$AbstractWriteTask.write(io.netty.channel.AbstractChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 1104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T8onotV9lg89BkiEKBT7jQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ByteBufferIndexInput.java"}, "function": {"name": "void org.apache.lucene.store.ByteBufferIndexInput.readBytes(byte[], int, int)"}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.notifyListenerDirectly(org.elasticsearch.action.ActionListener)", "offset": 2}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BZDyipXP5bFEE55HWZ3NWQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Hasher.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authc.support.Hasher.access$100(org.elasticsearch.common.settings.SecureString, char[])"}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACWe0"}} +{"Stackframe": {"function": {"name": "dup_mm"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vd9LC3RKIJ02JZOksYIKNgAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "ScriptSettings.java"}, "function": {"name": "java.lang.String org.elasticsearch.script.ScriptSettings.lambda$languageSettings$1(java.util.Map, org.elasticsearch.script.ScriptType, java.lang.String, boolean, org.elasticsearch.common.settings.Settings)", "offset": 6}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YloDcqr0CPNgxE3d9TL7DgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$1715.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W71vQdVXkSshgzNQ0Gd6OwAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "ScrollQueryFetchSearchResult.java"}, "function": {"name": "void org.elasticsearch.search.fetch.ScrollQueryFetchSearchResult.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 2}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7FX7uGxw9-fYF5aeZ5deLgAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "BitsetFilterCache.java"}, "function": {"name": "org.apache.lucene.util.BitSet org.elasticsearch.index.cache.bitset.BitsetFilterCache.bitsetFromQuery(org.apache.lucene.search.Query, org.apache.lucene.index.LeafReaderContext)", "offset": 8}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SLTycpvJcvZvKONGc1TOvgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.access$000(org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator)"}, "line": {"number": 274}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8lANmDojqVgOU0q9P9_NtwAAAAAAAABx"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKey(java.nio.channels.SelectionKey, io.netty.channel.nio.AbstractNioChannel)", "offset": 45}, "line": {"number": 714}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8u6bNB3vDeHwxSO1sOhr4QAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap.(java.util.Map)", "offset": 2}, "line": {"number": 484}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e41sJjec4rf_ExOiWJDJ7wAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "DefaultBHttpClientConnection.java"}, "function": {"name": "void org.apache.http.impl.DefaultBHttpClientConnection.receiveResponseEntity(org.apache.http.HttpResponse)", "offset": 2}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Khjp27nxAL3YQI2ArL221wAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.findName(int[], int, int, int)", "offset": 4}, "line": {"number": 2276}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5R-yx7MYDZ-mt3l2_RLRhwAAAAAAAABF"}} +{"Stackframe": {"file": {"name": "Lucene54DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene54.Lucene54DocValuesProducer$CompressedBinaryDocValues$CompressedBinaryTermsEnum.readTerm(int)", "offset": 3}, "line": {"number": 1349}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZWVXkJ8qrKOhTkKXzBlP4wAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "FileSystemUtils.java"}, "function": {"name": "java.nio.file.Path[] org.elasticsearch.common.io.FileSystemUtils.files(java.nio.file.Path)"}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YYK1gCJKCzqZO5ZonhktYQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AbstractConnection.java"}, "function": {"name": "void org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded()"}, "line": {"number": 311}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9gB_5QnQSZFAhOLR4MwwxwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "TranslogWriter.java"}, "function": {"name": "void org.elasticsearch.index.translog.TranslogWriter.sync()"}, "line": {"number": 336}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OljKMbs7Sslvbk6h8kJ9yAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes java.nio.file.Files.readAttributes(java.nio.file.Path, java.lang.Class, java.nio.file.LinkOption[])"}, "line": {"number": 1737}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rCVGV1UD-54ghl-RDtUxawAAAAAAAAEN"}} +{"Stackframe": {"file": {"name": "ObjectMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.ObjectMapper.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params, org.elasticsearch.common.xcontent.ToXContent)", "offset": 43}, "line": {"number": 554}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qTmpafDJIlgvr5xGzkRbCAAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "boolean io.netty.channel.AbstractChannelHandlerContext.safeExecute(io.netty.util.concurrent.EventExecutor, java.lang.Runnable, io.netty.channel.ChannelPromise, java.lang.Object, boolean)", "offset": 3}, "line": {"number": 989}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I4bHbdqu4NiomiXC-qdndgAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "com.amazonaws.services.s3.model.PutObjectResult com.amazonaws.services.s3.AmazonS3Client.putObject(com.amazonaws.services.s3.model.PutObjectRequest)", "offset": 14}, "line": {"number": 1725}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rbwR-ACr3s5lHPzJRwgUNgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.io.stream.StreamInput.readString()"}, "line": {"number": 423}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "n3ZXM9sPxSI10_imjZ8XBgAAAAAAAADd"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.engine.InternalEngine.index(org.elasticsearch.index.engine.Engine$Index)", "offset": 47}, "line": {"number": 504}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-T7IHRbMB3V18hn5_9HApAAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "DocValuesIndexFieldData.java"}, "function": {"name": "org.elasticsearch.index.fielddata.IndexFieldData org.elasticsearch.index.fielddata.plain.DocValuesIndexFieldData$Builder.build(org.elasticsearch.index.IndexSettings, org.elasticsearch.index.mapper.MappedFieldType, org.elasticsearch.index.fielddata.IndexFieldDataCache, org.elasticsearch.indices.breaker.CircuitBreakerService, org.elasticsearch.index.mapper.MapperService)", "offset": 5}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY"}} +{"Stackframe": {"function": {"name": "__vfs_write"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3h3xcA1CjbBUsMTV4AM4_QAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Util.java"}, "function": {"name": "javax.management.ObjectName sun.management.Util.newObjectName(java.lang.String, java.lang.String)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cGBPCS3aPXXlmHmrx5RsEQAAAAAAAABv"}} +{"Stackframe": {"file": {"name": "JvmStats.java"}, "function": {"name": "org.elasticsearch.monitor.jvm.JvmStats org.elasticsearch.monitor.jvm.JvmStats.jvmStats()", "offset": 7}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "n5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel)", "offset": 6}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jfzj4dJoxc5ZGnFcpH3KNgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.lambda$static$13(org.elasticsearch.common.xcontent.XContentBuilder, java.lang.Object)"}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Nmvj-1JIFU5r1IdV1cgfBgAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer.writeMetadataBlob(java.lang.String, boolean, boolean, org.elasticsearch.core.CheckedConsumer)", "offset": 69}, "line": {"number": 211}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nH2PRDy3afrpHJb0PPWy4QAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "Lucene80NormsProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80NormsProducer.(org.apache.lucene.index.SegmentReadState, java.lang.String, java.lang.String, java.lang.String, java.lang.String)", "offset": 14}, "line": {"number": 59}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KU_GIij1U8sKrDqeuRiAqwAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "Cipher.java"}, "function": {"name": "void javax.crypto.Cipher.init(int, java.security.Key, java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom)", "offset": 5}, "line": {"number": 1444}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XmgLknRmXWrjNm14n69KUAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.forceFlush(io.netty.channel.ChannelHandlerContext)", "offset": 1}, "line": {"number": 2077}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "s4lxyv29UjBRbk4Egon88gAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "t7DkRGcQiDMfHx06PCzMpQAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.applyIndexOperationOnReplica(long, long, long, long, boolean, org.elasticsearch.index.mapper.SourceToParse)"}, "line": {"number": 911}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3X9PCd1tVPhzrMiwigfodgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Unsafe.java"}, "function": {"name": "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MM51VTv27UToLPXymIJTGwAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "Lucene90DocValuesFormat.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesProducer org.apache.lucene.codecs.lucene90.Lucene90DocValuesFormat.fieldsProducer(org.apache.lucene.index.SegmentReadState)"}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ymy97Qr8iciMaB8o0VZQhwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "ChannelEndPoint.java"}, "function": {"name": "void org.eclipse.jetty.io.ChannelEndPoint$1.run()"}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pIlQHYzUvHZx6w5Rtmyd8QAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.AbstractObjectParser$$Lambda$510+0x0000000800ecb720.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "c1Yo_OPgMzqB1GnTa4udVAAAAAAAAAEh"}} +{"Stackframe": {"file": {"name": "Lucene90BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.blocktree.Lucene90BlockTreeTermsWriter$PendingBlock.compileIndex(java.util.List, org.apache.lucene.store.ByteBuffersDataOutput, org.apache.lucene.util.IntsRefBuilder)", "offset": 29}, "line": {"number": 497}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzwO"}} +{"Stackframe": {"function": {"name": "__audit_syscall_entry"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "umQIucIioKjldscxi712SAAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.fsync(java.nio.file.Path, boolean)", "offset": 9}, "line": {"number": 465}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w_AjU4Xe1XDB3bYRcLPccAAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$4.handleResponse(org.elasticsearch.transport.TransportResponse)", "offset": 1}, "line": {"number": 847}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QNDqKDPWY6nq0qvBxhyKdwAAAAAAAABy"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.List org.elasticsearch.common.xcontent.support.AbstractXContentParser.readList(org.elasticsearch.common.xcontent.XContentParser, org.elasticsearch.common.xcontent.support.AbstractXContentParser$MapFactory)", "offset": 16}, "line": {"number": 376}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Cl1kgGCrmfrEoupeT-su1wAAAAAAAABm"}} +{"Stackframe": {"file": {"name": "FileSystemProvider.java"}, "function": {"name": "java.io.OutputStream java.nio.file.spi.FileSystemProvider.newOutputStream(java.nio.file.Path, java.nio.file.OpenOption[])", "offset": 13}, "line": {"number": 484}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "644cGNT2qB6lvzqttzEn0AAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "TemplateUtils.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.core.template.TemplateUtils.loadTemplate(java.lang.String, java.lang.String, java.lang.String, java.util.Map)", "offset": 1}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlr5"}} +{"Stackframe": {"function": {"name": "show_mountinfo"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Tz8DYqoyX8DiKxM8GfHLgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "BitSets.java"}, "function": {"name": "org.apache.lucene.util.BitSet org.elasticsearch.lucene.util.BitSets.of(org.apache.lucene.search.DocIdSetIterator, int)", "offset": 1}, "line": {"number": 25}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oW5GrCeliBHaZdW7u8HEBQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.transform.transforms.scheduling.TransformScheduler$$Lambda$3894+0x0000000801b98000.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rr9ydfUnJMumBkVuKO3DEQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "HttpContentEncoder.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpContentEncoder.encodeFullResponse(io.netty.handler.codec.http.HttpResponse, io.netty.handler.codec.http.HttpContent, java.util.List)", "offset": 1}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "inSkDcyNW8o9gzM3K44mhQAAAAAAAABX"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotsService$16.clusterStateProcessed(java.lang.String, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)", "offset": 12}, "line": {"number": 4041}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrkJ"}} +{"Stackframe": {"function": {"name": "htab_map_get_next_key"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4ifqwDK9i5UTSVsD019mPAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "NullSafeWeakConcurrentMap.java"}, "function": {"name": "java.lang.Object co.elastic.apm.agent.collections.NullSafeWeakConcurrentMap.get(java.lang.Object)", "offset": 5}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaZ"}} +{"Stackframe": {"function": {"name": "audit_filter_syscall.constprop.19"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Zxyf5INnJibBb8rT_yMcsAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.access$000(org.elasticsearch.cluster.service.ClusterApplierService, java.lang.String, java.util.function.Function, org.elasticsearch.action.ActionListener)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "40z8dDV5JS2lMhSzO_GcZQAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "org.elasticsearch.search.SearchHit org.elasticsearch.search.fetch.FetchPhase$1.nextDoc(int)", "offset": 3}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6ACqmKWSUegYVOk5FRj2_AAAAAAAAACH"}} +{"Stackframe": {"file": {"name": "ElasticsearchConcurrentMergeScheduler.java"}, "function": {"name": "void org.elasticsearch.index.engine.ElasticsearchConcurrentMergeScheduler.doMerge(org.apache.lucene.index.MergeScheduler$MergeSource, org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 17}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dJZnxxfSj1TBzD3FyyfeDQAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.write(org.apache.lucene.util.BytesRef, org.apache.lucene.index.TermsEnum, org.apache.lucene.codecs.NormsProducer)"}, "line": {"number": 907}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "s7QK80FVtYwQj3h1fpBcbwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Settings.get(java.lang.String)"}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8T1U1Mk0_z7jRWhB49ZqDAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "RestCancellableNodeClient.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestCancellableNodeClient$1.onResponse(java.lang.Object)"}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sWO8JE0tCt_to2b5Aa2uZAAAAAAAAAET"}} +{"Stackframe": {"file": {"name": "CoordinationState.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishResponse org.elasticsearch.cluster.coordination.CoordinationState.handlePublishRequest(org.elasticsearch.cluster.coordination.PublishRequest)", "offset": 22}, "line": {"number": 346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XKq9uwED2oR9Ctzag8AUbwAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler.lambda$messageReceived$0(java.lang.Thread, org.elasticsearch.common.util.concurrent.AbstractRunnable, java.lang.Void)", "offset": 13}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CaJPwmIWM0NDJVv8d07kjgAAAAAAAABu"}} +{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.common.IteratingActionListener.onResponse(java.lang.Object)", "offset": 12}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$6385+0x0000000801c853f0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HLbKAnj8e5CJ83_m8D1VbAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "TaskTransportChannel.java"}, "function": {"name": "org.elasticsearch.TransportVersion org.elasticsearch.transport.TaskTransportChannel.getVersion()"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B_P8uAe_X3hP--xhR0y-LQAAAAAAAADT"}} +{"Stackframe": {"file": {"name": "SSLCipher.java"}, "function": {"name": "sun.security.ssl.Plaintext sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.decrypt(byte, java.nio.ByteBuffer, byte[])", "offset": 33}, "line": {"number": 1659}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eigX7IF-N43DehUBMQgIJQAAAAAAAAB_"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap.putMapEntries(java.util.Map, boolean)", "offset": 13}, "line": {"number": 513}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TW4sUcfCxo4I664oFoA8CgAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "URI.java"}, "function": {"name": "int java.net.URI$Parser.parseHierarchical(int, int)", "offset": 5}, "line": {"number": 3211}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uqdblsLlo9aDgcTKrr02KQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "SimpleChannelInboundHandler.java"}, "function": {"name": "void io.netty.channel.SimpleChannelInboundHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 5}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FvsddNGxnOi8XVXGV8dYgQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "ForkJoinWorkerThread.java"}, "function": {"name": "void java.util.concurrent.ForkJoinWorkerThread.run()", "offset": 4}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T8V-m3VYkd9-YZkFXMvDaQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext org.elasticsearch.common.util.concurrent.ThreadContext.lambda$wrapRestorable$6(org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext)", "offset": 1}, "line": {"number": 266}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oCXlcImc-yf-85hxTZzoPgAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "ChannelOutputStream.java"}, "function": {"name": "void sun.nio.ch.ChannelOutputStream.write(byte[], int, int)", "offset": 11}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qmoolQ6IpH_Gm2-7fcL8fgAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.io.stream.StreamInput.readString()", "offset": 8}, "line": {"number": 352}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FoXVat7sZj9j2xFNUu7qqAAAAAAAAABg"}} +{"Stackframe": {"file": {"name": "TypeFieldMapper.java"}, "function": {"name": "org.apache.lucene.search.Query org.elasticsearch.index.mapper.TypeFieldMapper$TypesQuery.rewrite(org.apache.lucene.index.IndexReader)", "offset": 8}, "line": {"number": 265}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9ckyAkz0ynjkybc0aFl1wgAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "PendingReplicationActions.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.PendingReplicationActions.accept(org.elasticsearch.index.shard.ReplicationGroup)", "offset": 3}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dgWkppYlr-s8Z84eOTb42AAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "PoolArena.java"}, "function": {"name": "void io.netty.buffer.PoolArena.allocateHuge(io.netty.buffer.PooledByteBuf, int)"}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TRaadTHFaNtNdCF-LuRHKAAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "QueryFetchSearchResult.java"}, "function": {"name": "void org.elasticsearch.search.fetch.QueryFetchSearchResult.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 2}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "s1Tvc2InyAqwYOGzitnwSgAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$executeOneFileSnapshot$78(org.elasticsearch.index.store.Store, org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.elasticsearch.index.shard.ShardId, org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshot$FileInfo, org.elasticsearch.repositories.IndexId, org.elasticsearch.snapshots.SnapshotId, java.util.concurrent.BlockingQueue, java.util.concurrent.Executor, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 2845}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "StBzh-j_BbDJptb35K7wggAAAAAAAACW"}} +{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.deleteNewFiles(java.util.Collection)", "offset": 17}, "line": {"number": 693}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTrE"}} +{"Stackframe": {"function": {"name": "dentry_path"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Hku4pI6Lw7HktwK1VtZaBAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "SearchResponse.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.action.search.SearchResponse.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 1}, "line": {"number": 248}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eFt3HBfKL3js75TxQmmTYAAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap.(java.util.Map)", "offset": 2}, "line": {"number": 489}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SZIzrSBBPBO2zJj0aqaKggAAAAAAAAD_"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "com.amazonaws.services.s3.model.S3Object com.amazonaws.services.s3.AmazonS3Client.getObject(com.amazonaws.services.s3.model.GetObjectRequest)", "offset": 39}, "line": {"number": 1486}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hlKDzMS4nmygKgJXIbJdqgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.executeQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)", "offset": 2}, "line": {"number": 441}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gYBDnUBP0OXwyy31JxxPSQAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "SortedSetDocValuesWriter.java"}, "function": {"name": "org.apache.lucene.index.SortedSetDocValues org.apache.lucene.index.SortedSetDocValuesWriter$1.getSortedSet(org.apache.lucene.index.FieldInfo)", "offset": 4}, "line": {"number": 199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Edy7WlyFZta5S1JFk5yFhAAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrapAndFlush(io.netty.channel.ChannelHandlerContext)", "offset": 15}, "line": {"number": 801}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TdvXI4zqKCE8P5BMNmzICgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "void sun.nio.fs.UnixFileSystemProvider.move(java.nio.file.Path, java.nio.file.Path, java.nio.file.CopyOption[])"}, "line": {"number": 266}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1Mo8VSr4ExgPLu63UteaagAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "BytesRef.java"}, "function": {"name": "void org.apache.lucene.util.BytesRef.(java.lang.CharSequence)", "offset": 1}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YgsSLUYpiS9cWv6amzrEpAAAAAAAAABY"}} +{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 17}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W3kTKpkHn84fzTFtfLoD0gAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "BlobStoreIndexShardSnapshot.java"}, "function": {"name": "void org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshot$FileInfo.toXContent(org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshot$FileInfo, org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 2}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2MOoayvGW4k0HotkdD0WWwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "AbstractFileSystemProvider.java"}, "function": {"name": "void sun.nio.fs.AbstractFileSystemProvider.delete(java.nio.file.Path)"}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes sun.nio.fs.UnixFileSystemProvider.readAttributes(java.nio.file.Path, java.lang.Class, java.nio.file.LinkOption[])", "offset": 8}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Lm-i7mHlXTzn3dRUwPqsywAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.lang.Object java.util.Collections$UnmodifiableCollection$1.next()"}, "line": {"number": 1042}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I8IIyf6YX8Obq6OO40d5JwAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "MSBRadixSorter.java"}, "function": {"name": "void org.apache.lucene.util.MSBRadixSorter.sort(int, int, int, int)", "offset": 3}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gtDjK6yOxbQD4RswMjRVngAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$DirectResponseChannel.processResponse(org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 1549}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4PqH4j7efYkP_yazDFqQFwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.executePhase(org.elasticsearch.action.search.SearchPhase)"}, "line": {"number": 469}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EvmR5VG66Hin8yuowLafLwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "java.util.Set org.elasticsearch.cluster.metadata.IndexNameExpressionResolver.resolveExpressions(org.elasticsearch.cluster.ClusterState, java.lang.String[])"}, "line": {"number": 618}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HxVJAZIu3O0jFVqzh80-TAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "BufferedIndexInput.java"}, "function": {"name": "byte org.apache.lucene.store.BufferedIndexInput.readByte()", "offset": 1}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ahPUgO5HrpkjK8o4_e1P2gAAAAAAAABf"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.netty.channel.ChannelPromise)", "offset": 16}, "line": {"number": 825}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "81sQIr1-P7Y9e1lYkQD1WQAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "FileUserPasswdStore.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authc.AuthenticationResult org.elasticsearch.xpack.security.authc.file.FileUserPasswdStore.verifyPassword(java.lang.String, org.elasticsearch.common.settings.SecureString, java.util.function.Supplier)", "offset": 4}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "J6u6Y179J4dS1eDE4nIEEwAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "DefaultPlatformMBeanProvider.java"}, "function": {"name": "java.util.Map java.lang.management.DefaultPlatformMBeanProvider$6.nameToMBeanMap()", "offset": 7}, "line": {"number": 283}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z-hu6cNT1Ftqgnka76QdWAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.BooleanWeight.scorer(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R4O21YPz5WkGUKdaZ1xVrgAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "MultiTermsEnum.java"}, "function": {"name": "void org.apache.lucene.index.MultiTermsEnum.pushTop()", "offset": 2}, "line": {"number": 275}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XfHacyr3VZQyavlI3uwP4gAAAAAAAACw"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.merge(org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 38}, "line": {"number": 4704}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "S4zDz6o8BfSRZ_w35R0lvAAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "KeywordFieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.KeywordFieldMapper.parseCreateField(org.elasticsearch.index.mapper.ParseContext)", "offset": 7}, "line": {"number": 471}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FezK_dQe_u3GP8ThBnZQ8QAAAAAAAACE"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.writeFromNativeBuffer(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 18}, "line": {"number": 137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "S_GmAS-sCtPOI6egY6LXiwAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$4(org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationResult)", "offset": 1}, "line": {"number": 391}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cXlweJcTpRnUmFxwZ3wPIwAAAAAAAADH"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 57}, "line": {"number": 493}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "NodeClient.java"}, "function": {"name": "void org.elasticsearch.client.internal.node.NodeClient$SafelyWrappedActionListener.onResponse(java.lang.Object)"}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VbCJF2qb-nr5O5yW6In1-AAAAAAAAAB_"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 26}, "line": {"number": 449}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Pg1tQCxKG46c3Dl1FEcfWwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "AbstractByteBuf.java"}, "function": {"name": "int io.netty.buffer.AbstractByteBuf.forEachByteAsc0(int, int, io.netty.util.ByteProcessor)"}, "line": {"number": 1335}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$1844.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GXqdtKZs0jCPru_AD4bs_AAAAAAAAACi"}} +{"Stackframe": {"file": {"name": "FieldsIndexWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.FieldsIndexWriter.finish(int, long, org.apache.lucene.store.IndexOutput)", "offset": 17}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6iNgA9fR_bPjg3gsO7FxQgAAAAAAAADe"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.engine.InternalEngine.indexIntoLucene(org.elasticsearch.index.engine.Engine$Index, org.elasticsearch.index.engine.InternalEngine$IndexingStrategy)", "offset": 14}, "line": {"number": 1244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Tw2zfUzqDOVUFpeB7AoPoQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "MultiTermsEnum.java"}, "function": {"name": "boolean org.apache.lucene.index.MultiTermsEnum$TermMergeQueue.lessThan(org.apache.lucene.index.MultiTermsEnum$TermsEnumWithSlice, org.apache.lucene.index.MultiTermsEnum$TermsEnumWithSlice)"}, "line": {"number": 416}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC3"}} +{"Stackframe": {"file": {"name": "NativeFSLockFactory.java"}, "function": {"name": "void org.apache.lucene.store.NativeFSLockFactory$NativeFSLock.ensureValid()", "offset": 20}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "Thread.java"}, "function": {"name": "void java.lang.Thread.run()", "offset": 1}, "line": {"number": 829}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SNGuqrAhfEZlYr0oXxjYkAAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "java.util.Set org.elasticsearch.rest.RestController.getValidHandlerMethodSet(java.lang.String)", "offset": 5}, "line": {"number": 531}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XtpZqZJ-yh5E1XUhbpHwRAAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "SecurityContext.java"}, "function": {"name": "void org.elasticsearch.xpack.security.SecurityContext.setAuthentication(org.elasticsearch.xpack.security.authc.Authentication)"}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2Mo4vkt46Sn5tcChaxtCYAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "AbstractBytesReference.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.bytes.AbstractBytesReference.utf8ToString()"}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Pm8yvojd4enECfI_5pXoCAAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "PolicyFile.java"}, "function": {"name": "boolean sun.security.provider.PolicyFile.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 4}, "line": {"number": 1003}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gS4BqKHRLy9ywAJxtWFusQAAAAAAAAEv"}} +{"Stackframe": {"file": {"name": "SSLSocketOutputRecord.java"}, "function": {"name": "void sun.security.ssl.SSLSocketOutputRecord.deliver(byte[], int, int)", "offset": 57}, "line": {"number": 345}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qfQyalPHWGRK5DwAi-ocgwAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "LinkedBlockingQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedBlockingQueue.poll(long, java.util.concurrent.TimeUnit)", "offset": 10}, "line": {"number": 467}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mHLbruajf1ewhD5eRLIwPQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.elasticsearch.index.store.ByteSizeCachingDirectory.createOutput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "NodeService.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.node.NodeService.stats(org.elasticsearch.action.admin.indices.stats.CommonStatsFlags, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean)", "offset": 3}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ijeboCn6LOt0NOcmaRcGZAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "InboundDecoder.java"}, "function": {"name": "int org.elasticsearch.transport.InboundDecoder.decode(org.elasticsearch.common.bytes.ReleasableBytesReference, java.util.function.Consumer)", "offset": 2}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Qh22cv3M-xNK0_IOuNdQuQAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader$SerializedDocument org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader.document(int)", "offset": 5}, "line": {"number": 576}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ptEqv5fr0FJDmtj9B29VrwAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "AbstractByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.CompositeByteBuf io.netty.buffer.AbstractByteBufAllocator.compositeBuffer(int)", "offset": 3}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "19awHBrw5zOybAJS9IMTOAAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.buildIndicesAccessControl(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, java.util.Set, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 568}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iT1UG1iDpHN9Y-yGc9rOOAAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "ProcessProbe.java"}, "function": {"name": "long org.elasticsearch.monitor.process.ProcessProbe.getOpenFileDescriptorCount()", "offset": 4}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D-1h8rWAA4g1SDoGOMQIKAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$2.onResponse(java.lang.Void)"}, "line": {"number": 389}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "azI-mX3CgcWhg9AcjJjNnQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.fetch.QueryFetchSearchResult org.elasticsearch.search.SearchService.executeFetchPhase(org.elasticsearch.search.internal.SearchContext, org.elasticsearch.index.shard.SearchOperationListener, long)", "offset": 3}, "line": {"number": 303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3APbfJs5SvbH_F9r5lo_3wAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AbstractResourceWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.AbstractResourceWatcher.checkAndNotify()", "offset": 1}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Uyl96nbKrz6UOSXSc3iffwAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$4(java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.support.ActionFilterChain, org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 3}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1rwDX1bcX9Gmpr9ldm2_AgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "Loggers.java"}, "function": {"name": "org.apache.logging.log4j.Logger org.elasticsearch.common.logging.Loggers.getLogger(java.lang.Class)"}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TJNGpZ5zrxHIWzJGPowW7QAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.xcontent.support.AbstractXContentParser.mapOrdered()"}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ufChVIbvwepwktwbZS2mKAAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.UTF8StreamJsonParser._matchToken(java.lang.String, int)", "offset": 13}, "line": {"number": 2830}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RcLwtzOrbCJ2S4fnMoo41AAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "PendingReplicationActions.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.PendingReplicationActions.acceptNewTrackedAllocationIds(java.util.Set)"}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZioBr87aqxaevk5TMrW5bQAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "System.java"}, "function": {"name": "java.lang.String java.lang.System.getProperty(java.lang.String)", "offset": 3}, "line": {"number": 833}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FGycG9AEWPVJe5tbz77UPwAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.execute()", "offset": 5}, "line": {"number": 755}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RWZ9G1N69fMZnc8QMvYsrQAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$2(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener, org.elasticsearch.common.util.concurrent.ListenableFuture, org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$CachedResult)", "offset": 4}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jI8lk114wSweZoTkAumpAgAAAAAAAACl"}} +{"Stackframe": {"file": {"name": "TaskBatcher.java"}, "function": {"name": "void org.elasticsearch.cluster.service.TaskBatcher.runIfNotProcessed(org.elasticsearch.cluster.service.TaskBatcher$BatchedTask)", "offset": 19}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0Ws0TuC7P76blUs_eNtzJQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "OsService.java"}, "function": {"name": "java.lang.Object org.elasticsearch.monitor.os.OsService$OsStatsCache.refresh()"}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BYvTdSjRR3mRiJL5PtR_XgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "FileDispatcherImpl.java"}, "function": {"name": "int sun.nio.ch.FileDispatcherImpl.pread0(java.io.FileDescriptor, long, int, long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x0P1r7I-Fx8UT8KavfTMGgAAAAAAAABW"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateAppliers(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.common.StopWatch, java.util.Collection)", "offset": 3}, "line": {"number": 499}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mW2YX0W7f8kHZ9OF_UwxgwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.exists(java.nio.file.Path)", "offset": 1}, "line": {"number": 536}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Q_fTsiDQn3AwPFHRHJfE6QAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.lang.Object java.util.Collections$UnmodifiableMap.get(java.lang.Object)"}, "line": {"number": 1502}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BQSx00nZsCkojgxuZjNNTAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ObjectName.java"}, "function": {"name": "javax.management.ObjectName javax.management.ObjectName.getInstance(java.lang.String)"}, "line": {"number": 1296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iq5pqOpNVrXrvUr0VXwf8gAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.netty4.CopyBytesSocketChannel.writeToSocketChannel(java.nio.channels.SocketChannel, java.nio.ByteBuffer)"}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k9PYIfEvPxNMLJBZLTnCZAAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "ComponentTemplate.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.cluster.metadata.ComponentTemplate.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 1}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u2DScCPg-79KHpSdqd651AAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService.publish(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.MasterService$TaskOutputs, long)", "offset": 6}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Hy8-YFxh3xFG50wbJun6OAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation$$Lambda$8978+0x00000008027fce98.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CrlW_hPmVEABk0TgZmUnuQAAAAAAAAGj"}} +{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.executeNextPhase(org.elasticsearch.action.search.SearchPhase, org.elasticsearch.action.search.SearchPhase)", "offset": 40}, "line": {"number": 418}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4-lSY69fXDm_fOs77Q9KJgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.get(java.lang.Object)"}, "line": {"number": 564}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "horbSZX7gRU-EookBryCKQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "MappedMemorySegmentImpl.java"}, "function": {"name": "jdk.internal.foreign.AbstractMemorySegmentImpl jdk.internal.foreign.MappedMemorySegmentImpl.dup(long, long, boolean, java.lang.foreign.MemorySession)"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hihyMxl7F06KNlOC114rvQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermissionCollection.implies(java.security.Permission)"}, "line": {"number": 749}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gyCLaoZ33VoOuRW0bXNTvAAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "OutputStreamIndexOutput.java"}, "function": {"name": "void org.apache.lucene.store.OutputStreamIndexOutput.close()", "offset": 11}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kMZEZuHxDxqpcAEODQvXvgAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.lambda$dispatchedShardOperationOnPrimary$0(org.elasticsearch.index.mapper.Mapping, org.elasticsearch.index.shard.ShardId, java.lang.String, org.elasticsearch.action.ActionListener)", "offset": 2}, "line": {"number": 137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dEFLUy6UWCzseZ9ehRkI5wAAAAAAAABX"}} +{"Stackframe": {"file": {"name": "ConcurrentMergeScheduler.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.index.ConcurrentMergeScheduler$1.createOutput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 15}, "line": {"number": 290}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "TieredMergePolicy.java"}, "function": {"name": "org.apache.lucene.index.MergePolicy$MergeSpecification org.apache.lucene.index.TieredMergePolicy.findMerges(org.apache.lucene.index.MergeTrigger, org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 10}, "line": {"number": 323}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vS5pENec6C6ecYnUlpn6vQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.addDocument(java.lang.Iterable)"}, "line": {"number": 1316}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "f1r4EGNexS8q-R054rDNcgAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "Lucene50LiveDocsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene50.Lucene50LiveDocsFormat.writeLiveDocs(org.apache.lucene.util.Bits, org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.store.IOContext)", "offset": 3}, "line": {"number": 98}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WFBxAERZNClfuNDueoaytgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Policy.java"}, "function": {"name": "boolean java.security.Policy$PolicyDelegate.implies(java.security.ProtectionDomain, java.security.Permission)"}, "line": {"number": 801}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.decodeJdkCompatible(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf)", "offset": 37}, "line": {"number": 1267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "K243LNlU0fb7G86fNO9vSAAAAAAAAADC"}} +{"Stackframe": {"file": {"name": "ConstructingObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.ConstructingObjectParser$Target.finish()", "offset": 32}, "line": {"number": 503}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAACRmP"}} +{"Stackframe": {"function": {"name": "xfs_inode_item_format"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D24BMbxmwnEGvGJ3u0PiFAAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "CipherCore.java"}, "function": {"name": "int com.sun.crypto.provider.CipherCore.doFinal(byte[], int, int, byte[], int)", "offset": 6}, "line": {"number": 921}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mzAbd36tUL5KTnpUgWf1fAAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "QueryFetchSearchResult.java"}, "function": {"name": "void org.elasticsearch.search.fetch.QueryFetchSearchResult.readFrom(org.elasticsearch.common.io.stream.StreamInput)", "offset": 2}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "asG21jcJHcufHwCdBdTqTgAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "org.apache.lucene.search.DocIdSetIterator org.apache.lucene.search.ConjunctionDISI.intersectScorers(java.util.Collection)", "offset": 9}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wpX9QNm46mAVYH89IijR0gAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "AbstractExecutorService.java"}, "function": {"name": "java.util.concurrent.Future java.util.concurrent.AbstractExecutorService.submit(java.lang.Runnable)", "offset": 2}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Hc96ObSBA3uBF2h6vCqECQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService$AsyncRetentionLeaseSyncTask.runInternal()"}, "line": {"number": 1147}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7mqPc5ch4cFcQJn3b5WHKQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "FileDescriptor.java"}, "function": {"name": "void java.io.FileDescriptor.close()", "offset": 1}, "line": {"number": 297}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAALXd"}} +{"Stackframe": {"function": {"name": "vfsub_dentry_open"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAB6"}} +{"Stackframe": {"file": {"name": "NativeFSLockFactory.java"}, "function": {"name": "void org.apache.lucene.store.NativeFSLockFactory$NativeFSLock.ensureValid()", "offset": 13}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hzLOxaKxWQ8hHeWUK-EOLgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction$$Lambda$4451+0x0000000801946070.apply(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run()"}, "line": {"number": 565}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "U1KF65rnT5XtMlndoc_vRwAAAAAAAAE4"}} +{"Stackframe": {"file": {"name": "Coordinator.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.Coordinator.handlePublishRequest(org.elasticsearch.cluster.coordination.PublishRequest)", "offset": 46}, "line": {"number": 459}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wncP1Ilmzp79Ggff04BZsAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.lambda$handleResponse$1(org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 275}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore$$Lambda$7215+0x0000000802517b50.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QtMelJKn2GMpVgIdbCShVAAAAAAAAACK"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermission.impliesIgnoreMask(java.io.FilePermission)", "offset": 23}, "line": {"number": 612}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Q0R-0UiPoesAUrBscgAFvgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "FieldsVisitor.java"}, "function": {"name": "void org.elasticsearch.index.fieldvisitor.FieldsVisitor.stringField(org.apache.lucene.index.FieldInfo, byte[])"}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "s1njeZVdcSoHf9g_Vz1CYAAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$2.tryAdvance(java.util.function.Consumer)", "offset": 3}, "line": {"number": 4853}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w4vsAZyO7Ody8HS70pGWgwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.field(java.lang.String, org.elasticsearch.xcontent.ToXContent, org.elasticsearch.xcontent.ToXContent$Params)"}, "line": {"number": 963}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$1848.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "U8beN5YK_thkealMCeH3dwAAAAAAAABY"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 9}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o9I8XHop3y7uLb8wdADAN______AbGUX"}} +{"Stackframe": {"function": {"name": "__key.128173"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OTjdfdkd29yV8R0f82eKFQAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "FilterLeafReader.java"}, "function": {"name": "void org.apache.lucene.index.FilterLeafReader.document(int, org.apache.lucene.index.StoredFieldVisitor)", "offset": 1}, "line": {"number": 404}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z85XbOUhBsKh8nLXBMRv6gAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction.masterOperation(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.master.MasterNodeRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)"}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACf"}} +{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.merge(org.apache.lucene.index.MergeState)", "offset": 18}, "line": {"number": 147}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bQ60B2deUe5Z1LztjnvZQAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter$$Lambda$5567+0x0000000801b9c538.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eS9qs83Ev5DGIkgRm0VL-gAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter$$Lambda$1834.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qr5_62ELns70MeFfkAoJ6QAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.StandardDirectoryReader.doOpenFromWriter(org.apache.lucene.index.IndexCommit)", "offset": 8}, "line": {"number": 381}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "n0k5scYsn3wtTeokDa3YiwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.StandardDirectoryReader.doOpenIfChanged()"}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "A7QmOI08hPnJ_saXhSrmyQAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "ScannerImpl.java"}, "function": {"name": "void org.yaml.snakeyaml.scanner.ScannerImpl.unwindIndent(int)", "offset": 8}, "line": {"number": 611}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NYAMxXBrsuLnH1-AkQav5QAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Errors.java"}, "function": {"name": "java.lang.Object org.glassfish.jersey.internal.Errors.process(org.glassfish.jersey.internal.util.Producer, boolean)"}, "line": {"number": 274}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5m5J32z338iItYAy0IlfPgAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Collection org.elasticsearch.common.io.stream.StreamInput.readCollection(org.elasticsearch.common.io.stream.Writeable$Reader, java.util.function.IntFunction, java.util.Collection)", "offset": 6}, "line": {"number": 1254}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "r6Fg_DPZ96geKIjDaUl37wAAAAAAAACs"}} +{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.forwardFragments(org.elasticsearch.transport.TcpChannel, java.util.ArrayList)", "offset": 11}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AS0eDWg20YjC_s884Pp-RQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$DelegatingFailureActionListener.onResponse(java.lang.Object)"}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "n0UYwZH5py59Xu9gAaxkrwAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.runRequestInterceptors(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 597}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "FilterMergePolicy.java"}, "function": {"name": "org.apache.lucene.index.MergePolicy$MergeSpecification org.apache.lucene.index.FilterMergePolicy.findMerges(org.apache.lucene.index.MergeTrigger, org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)"}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fbT9eHA5tj6rUvxqpnewLAAAAAAAAAEH"}} +{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "short org.apache.lucene.codecs.lucene80.IndexedDISI.writeBitSet(org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.store.IndexOutput, byte)", "offset": 32}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wqvlCg8Z1l09-OL-AooUKQAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "Class.java"}, "function": {"name": "java.lang.Class java.lang.Class.forName(java.lang.String, boolean, java.lang.ClassLoader)", "offset": 14}, "line": {"number": 348}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pHWwhVF7xhaEDZT2L0KL1QAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(org.elasticsearch.rest.RestRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OVdrCM49mRUd7zQGZ_D_FgAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "CollectionUtil.java"}, "function": {"name": "void org.apache.lucene.util.CollectionUtil.timSort(java.util.List, java.util.Comparator)", "offset": 2}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mIhHJLRWLV08bvGOk_MaUQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.flush()", "offset": 1}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bZRwWM7SmFPsrzq-cg210QAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "ActionFilter.java"}, "function": {"name": "void org.elasticsearch.action.support.ActionFilter$Simple.apply(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.support.ActionFilterChain)", "offset": 1}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T1K4lgbOMjedSlAKmYVcbwAAAAAAAACJ"}} +{"Stackframe": {"file": {"name": "LZ4WithPresetDictCompressionMode.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.LZ4WithPresetDictCompressionMode$LZ4WithPresetDictCompressor.compress(org.apache.lucene.store.ByteBuffersDataInput, org.apache.lucene.store.DataOutput)", "offset": 16}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_ClvZwoaoNKYBkqe6z6XsQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SearchActionListener.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchActionListener.onResponse(java.lang.Object)"}, "line": {"number": 18}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.SingleThreadEventExecutor$4.run()", "offset": 8}, "line": {"number": 986}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Uplh6FQYqmDpNUAIFNEKQQAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.acquireReplicaOperationLock(long, org.elasticsearch.action.ActionListener, java.lang.String)", "offset": 8}, "line": {"number": 1675}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F-l3z806Z2whMxir9gnRcgAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.nrtIsCurrent(org.apache.lucene.index.SegmentInfos)", "offset": 4}, "line": {"number": 5247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iQFXlWBYeWLM55y23U7wowAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ObjectPoolFactory.java"}, "function": {"name": "co.elastic.apm.agent.impl.transaction.Transaction co.elastic.apm.agent.objectpool.ObjectPoolFactory$1.createInstance()"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "45C-Q8d2gQJCMIvUacUWRQAAAAAAAAHX"}} +{"Stackframe": {"file": {"name": "ReaderBasedJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.ReaderBasedJsonParser.nextToken()", "offset": 110}, "line": {"number": 772}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LvtElIo88ojEB4JNcfwHbAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.access$000(org.elasticsearch.cluster.service.ClusterApplierService, org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask)"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R-xgH7hZp1xr8GmZjCBF2wAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SnapshotShardContext.java"}, "function": {"name": "void org.elasticsearch.repositories.SnapshotShardContext.onResponse(org.elasticsearch.repositories.ShardSnapshotResult)"}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XoNqQsMeesgJkRR-qQrvugAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrapAndFlush(io.netty.channel.ChannelHandlerContext)", "offset": 11}, "line": {"number": 799}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EVkfIxaS__QB2o_fYjV3XgAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "void java.util.ArrayList.sort(java.util.Comparator)", "offset": 1}, "line": {"number": 1721}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WtdrATsjEqDZ5vTv6vPP0QAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "PendingReplicationActions.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.PendingReplicationActions.acceptNewTrackedAllocationIds(java.util.Set)"}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "y12uoeETtO1vfLZn6kOlKAAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "IndexShardOperationPermits.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShardOperationPermits.acquire(org.elasticsearch.action.ActionListener, java.lang.String, boolean, java.lang.Object)", "offset": 5}, "line": {"number": 199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xLq0T_v3SOpy-J-2Mug9hAAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "CollectionUtil.java"}, "function": {"name": "void org.apache.lucene.util.CollectionUtil.introSort(java.util.List, java.util.Comparator)", "offset": 2}, "line": {"number": 137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "q8k3aU7ENs4HYkLbkM_l4AAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "Errors.java"}, "function": {"name": "java.lang.Object org.glassfish.jersey.internal.Errors$1.call()"}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnY8H"}} +{"Stackframe": {"function": {"name": "in6_dump_addrs"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hP1JoS2wJAn52yNPmoly8gAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "ScrollQueryFetchSearchResult.java"}, "function": {"name": "void org.elasticsearch.search.fetch.ScrollQueryFetchSearchResult.readFrom(org.elasticsearch.common.io.stream.StreamInput)", "offset": 2}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H1WWa7drB-SqHp5xqZ3VMgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "FixedBitSet.java"}, "function": {"name": "int org.apache.lucene.util.FixedBitSet.cardinality()", "offset": 1}, "line": {"number": 191}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LDzxKitLXg1NPN9Jo9msaAAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.deleteFiles(java.util.Collection)", "offset": 15}, "line": {"number": 692}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2jOITD8MGbT1Ovw_xtzUAgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService$BaseAsyncTask.run()"}, "line": {"number": 743}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j11V69pVUElplWteimiv5wAAAAAAAAFa"}} +{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.executeSearch(org.elasticsearch.action.search.SearchTask, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.OriginalIndices, java.util.Map, java.util.List, java.util.function.BiFunction, org.elasticsearch.cluster.ClusterState, java.util.Map, org.elasticsearch.action.ActionListener, int)", "offset": 62}, "line": {"number": 319}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X11Ep3t2e5MnXIBtAoD8OQAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.ObjectParser.lambda$declareNamedObjects$13(org.elasticsearch.common.xcontent.ParseField, org.elasticsearch.common.xcontent.ObjectParser$NamedObjectParser, org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)", "offset": 8}, "line": {"number": 429}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CPQYI8AYgrtjAdxnWkE3nAAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "TemplateUtils.java"}, "function": {"name": "void org.elasticsearch.xpack.template.TemplateUtils.validate(org.elasticsearch.common.bytes.BytesReference)", "offset": 5}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "53oGJlY-AwKlFamwTi2tkwAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.applyIndexOperation(org.elasticsearch.index.engine.Engine, long, long, long, org.elasticsearch.index.VersionType, long, long, long, boolean, org.elasticsearch.index.engine.Engine$Operation$Origin, org.elasticsearch.index.mapper.SourceToParse)", "offset": 5}, "line": {"number": 969}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tGdjZjM6jJA23WbdtVpvAwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.util.Map$Entry java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$1.next()"}, "line": {"number": 1679}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pRTg5ZWEbp3JJIuMWP-nnQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.read(java.io.FileDescriptor, java.nio.ByteBuffer, long, sun.nio.ch.NativeDispatcher)"}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JKCpWialf-jSWEyybbivbgAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "PendingReplicationActions.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.PendingReplicationActions.accept(org.elasticsearch.index.shard.ReplicationGroup)", "offset": 3}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rLjBo_k19vor7LkQgiOErwAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "FreqProxTermsWriter.java"}, "function": {"name": "void org.apache.lucene.index.FreqProxTermsWriter.flush(java.util.Map, org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.NormsProducer)", "offset": 8}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBUR"}} +{"Stackframe": {"function": {"name": "hash_futex"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALUbj"}} +{"Stackframe": {"function": {"name": "rw_verify_area"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "06W-_gYsVxvlZRgxvL-PiAAAAAAAAAEO"}} +{"Stackframe": {"file": {"name": "Netty4MessageChannelHandler.java"}, "function": {"name": "boolean org.elasticsearch.transport.netty4.Netty4MessageChannelHandler.doFlush(io.netty.channel.ChannelHandlerContext)", "offset": 53}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGz"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.applyChanges(org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState, org.elasticsearch.common.StopWatch)", "offset": 39}, "line": {"number": 473}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hiE_KnpB1y_AkU-QUSuyPgAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$$Lambda$2915.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mjK-IG4-ETGScbFeIcowAgAAAAAAAABj"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.fetch.FetchSearchResult org.elasticsearch.search.SearchService.lambda$executeFetchPhase$7(org.elasticsearch.search.internal.ReaderContext, org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask, org.elasticsearch.search.fetch.ShardFetchRequest)", "offset": 10}, "line": {"number": 793}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nVrTRc3fHVfAm0SCrf0eOwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "void org.elasticsearch.xcontent.ObjectParser.lambda$declareField$8(java.util.function.BiConsumer, org.elasticsearch.xcontent.ContextParser, org.elasticsearch.xcontent.XContentParser, java.lang.Object, java.lang.Object)"}, "line": {"number": 424}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zBpAhvVgrCIr7SpQUiyvkgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.discovery.PeerFinder$$Lambda$4219+0x000000080188bc28.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SZIzrSBBPBO2zJj0aqaKggAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "com.amazonaws.services.s3.model.S3Object com.amazonaws.services.s3.AmazonS3Client.getObject(com.amazonaws.services.s3.model.GetObjectRequest)", "offset": 5}, "line": {"number": 1452}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Cw9403Es4AF2QsSD-8sRQAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "QueryFetchSearchResult.java"}, "function": {"name": "org.elasticsearch.search.fetch.QueryFetchSearchResult org.elasticsearch.search.fetch.QueryFetchSearchResult.readQueryFetchSearchResult(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fQUHd99OzHI_HeHyAmtcrAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "NativeBuffer.java"}, "function": {"name": "void sun.nio.fs.NativeBuffer.release()"}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nqbqMpFzSFtDNT-ZGF_nRQAAAAAAAACw"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$writeIndexGen$66(org.elasticsearch.action.StepListener, org.elasticsearch.Version, long, org.elasticsearch.action.ActionListener, java.util.function.Function, org.elasticsearch.repositories.RepositoryData)", "offset": 22}, "line": {"number": 2291}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Vru4hpAw_7_usxGosAlYKQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateAppliers(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.common.StopWatch)"}, "line": {"number": 489}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oz9GJ_qlf4pBIKy8mHtWYAAAAAAAAAEY"}} +{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.req(java.util.Collection, java.util.Collection, long)", "offset": 47}, "line": {"number": 210}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALnuK"}} +{"Stackframe": {"function": {"name": "path_openat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TBsi_uo6Ja6CX6zuoV3IjgAAAAAAAACn"}} +{"Stackframe": {"file": {"name": "CopyOnWriteHashMap.java"}, "function": {"name": "org.elasticsearch.common.collect.CopyOnWriteHashMap$InnerNode org.elasticsearch.common.collect.CopyOnWriteHashMap$InnerNode.putExisting(java.lang.Object, int, int, int, java.lang.Object, org.apache.lucene.util.mutable.MutableValueInt)", "offset": 17}, "line": {"number": 361}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mkLFSzwLd_GSc1FYqgqiCgAAAAAAAACt"}} +{"Stackframe": {"file": {"name": "Sorter.java"}, "function": {"name": "void org.apache.lucene.util.Sorter.mergeInPlace(int, int, int)", "offset": 28}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y_uBeAIr8RJYVxEQrPIP5gAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Executors.java"}, "function": {"name": "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()"}, "line": {"number": 511}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAARNl3"}} +{"Stackframe": {"function": {"name": "security_file_permission"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4pL5iWdAziHKM6VzojymqQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$3(java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.authc.Authentication)"}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Vyw5UB5t7K3M1sGJ5zvMhQAAAAAAAAEh"}} +{"Stackframe": {"file": {"name": "SearchHit.java"}, "function": {"name": "void org.elasticsearch.search.SearchHit.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 38}, "line": {"number": 964}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "09pLhX8Ysxadrvlyzhew7QAAAAAAAACm"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.parseLongName(int, int, int)", "offset": 22}, "line": {"number": 1838}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3rLZd5lPThQHbPceRXAomQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "MessageToMessageCodec.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageCodec.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FjooOB7UnLRNkyMXgznjWwAAAAAAAACS"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "org.elasticsearch.gateway.PersistedClusterStateService$Writer$WriterStats org.elasticsearch.gateway.PersistedClusterStateService$Writer.updateMetadata(org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.cluster.metadata.Metadata)", "offset": 13}, "line": {"number": 957}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F-UVz7qWVUzScRv1FhkbzQAAAAAAAABu"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 10}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtoK"}} +{"Stackframe": {"function": {"name": "get_signal"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fAabmYCVW4qdURc4XUxauwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ClientScrollableHitSource.java"}, "function": {"name": "void org.elasticsearch.index.reindex.ClientScrollableHitSource$1.onResponse(java.lang.Object)"}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "void org.apache.lucene.search.ReferenceManager.maybeRefreshBlocking()", "offset": 5}, "line": {"number": 253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CIJa2mPNm8b1wwJ_UCRwpAAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "Lucene90PostingsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.FieldsConsumer org.apache.lucene.codecs.lucene90.Lucene90PostingsFormat.fieldsConsumer(org.apache.lucene.index.SegmentWriteState)", "offset": 3}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4UIJHPt65c990zM1sh8JeAAAAAAAAAB0"}} +{"Stackframe": {"file": {"name": "OsProbe.java"}, "function": {"name": "boolean org.elasticsearch.monitor.os.OsProbe.areCgroupStatsAvailable()", "offset": 12}, "line": {"number": 621}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6euAcrRks5bLxxAuk2RtfgAAAAAAAACt"}} +{"Stackframe": {"file": {"name": "DocumentFieldMappers.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentFieldMappers.(java.util.Collection, org.apache.lucene.analysis.Analyzer, org.apache.lucene.analysis.Analyzer, org.apache.lucene.analysis.Analyzer)", "offset": 14}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5kQrz31-vtpLpHkSNl9lFwAAAAAAAAGV"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "org.elasticsearch.search.SearchHits org.elasticsearch.search.fetch.FetchPhase.buildSearchHits(org.elasticsearch.search.internal.SearchContext, org.elasticsearch.search.fetch.FetchPhase$Profiler)", "offset": 56}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CgxwKk_hyxbTrCflxCb0vQAAAAAAAAC8"}} +{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.innerRun()", "offset": 13}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "s5vAMHxpunKzmiohi4HBEQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "Netty4HttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpServerTransport.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel)", "offset": 2}, "line": {"number": 505}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wD7qCDk3lqH0hpTFDQk1YQAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readMapEntries(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier, java.util.Map)", "offset": 5}, "line": {"number": 316}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PqkKpz2WDphJH5ROhuDMyAAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "IndexId.java"}, "function": {"name": "void org.elasticsearch.repositories.IndexId.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 2}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LMhs_MdxnqcQW9tN9tUCJAAAAAAAAADe"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.engine.InternalEngine.indexIntoLucene(org.elasticsearch.index.engine.Engine$Index, org.elasticsearch.index.engine.InternalEngine$IndexingStrategy)", "offset": 14}, "line": {"number": 1123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RxkYl0oyBdU9th-HWQUOKAAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "PooledDirectByteBuf.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.PooledDirectByteBuf.setBytes(int, io.netty.buffer.ByteBuf, int, int)", "offset": 2}, "line": {"number": 324}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BOarHeuBiKfmB3q8GFkvwwAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "RoutingTable.java"}, "function": {"name": "void org.elasticsearch.cluster.routing.RoutingTable$RoutingTableDiff.(org.elasticsearch.cluster.routing.RoutingTable, org.elasticsearch.cluster.routing.RoutingTable)", "offset": 2}, "line": {"number": 355}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9kXaZX4H2Nqkl6JJyrwZnQAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "BigArrays.java"}, "function": {"name": "org.elasticsearch.common.util.ByteArray org.elasticsearch.common.util.BigArrays.grow(org.elasticsearch.common.util.ByteArray, long)", "offset": 4}, "line": {"number": 582}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XvjlCocy_0w3vV-gCdaE0gAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "void sun.nio.fs.UnixPath.checkDelete()", "offset": 2}, "line": {"number": 807}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VA03thXQjqr1qC10qNXy4QAAAAAAAADL"}} +{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "void sun.security.ssl.SSLSocketImpl$AppOutputStream.write(byte[], int, int)", "offset": 35}, "line": {"number": 1308}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w52v69QzC-f_wTnaeDz8vwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "TransportIndicesStatsAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation(org.elasticsearch.action.admin.indices.stats.IndicesStatsRequest, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionListener)"}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lnZVb7o3R97zPK7lBkueNwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, sun.nio.ch.NativeDispatcher)", "offset": 1}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HRnmOObX7UEhjneXDGbG8gAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "NamedWriteableAwareStreamInput.java"}, "function": {"name": "org.elasticsearch.common.io.stream.NamedWriteable org.elasticsearch.common.io.stream.NamedWriteableAwareStreamInput.readNamedWriteable(java.lang.Class, java.lang.String)", "offset": 1}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo)", "offset": 6}, "line": {"number": 5528}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vE2vZcZzpHNW8D_EbPqzqAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct.access$400(org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct, org.elasticsearch.common.io.stream.StreamOutput, java.util.Map)"}, "line": {"number": 352}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pSVcwHLkS-nxPYoJIIKFcQAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "Iterator.java"}, "function": {"name": "void java.util.Iterator.forEachRemaining(java.util.function.Consumer)", "offset": 2}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DVSkUfLwOzQuwgYi6TvurAAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "AbstractCollection.java"}, "function": {"name": "boolean java.util.AbstractCollection.addAll(java.util.Collection)", "offset": 1}, "line": {"number": 335}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z7em3gxFGrIrQEp2dvnPNwAAAAAAAAF8"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.forceApply(org.apache.lucene.index.FrozenBufferedUpdates)", "offset": 87}, "line": {"number": 6140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fngmakIlFuW-DPwlYWq95AAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "LRUQueryCache.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight.scorerSupplier(org.apache.lucene.index.LeafReaderContext)", "offset": 12}, "line": {"number": 739}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qk_n1ecQPsBsNva7iBiLPgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "boolean java.util.concurrent.LinkedTransferQueue.tryTransfer(java.lang.Object)"}, "line": {"number": 1321}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAARNmC"}} +{"Stackframe": {"function": {"name": "security_file_permission"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "scmKVHdEh9kSE1fqSoqaQwAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$4(org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationResult)", "offset": 1}, "line": {"number": 281}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rukD5963lGO3Ma9AI2LXWgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "void org.apache.lucene.store.LockValidatingDirectoryWrapper.deleteFile(java.lang.String)", "offset": 1}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7c7rgpFHY6rxkjCoiUY2PgAAAAAAAACW"}} +{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.consumeToken(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 103}, "line": {"number": 233}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6X-l4zSEzV-o-Qo3loG8-gAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "Bits.java"}, "function": {"name": "void java.nio.Bits.copyToArray(long, java.lang.Object, long, long, long)", "offset": 7}, "line": {"number": 835}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LQDSx6vga0zDZ5JbsP5kmgAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "ChannelOutboundBuffer.java"}, "function": {"name": "boolean io.netty.channel.ChannelOutboundBuffer.remove()", "offset": 15}, "line": {"number": 272}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcBE"}} +{"Stackframe": {"function": {"name": "__do_sys_newfstatat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wxf0OtqIcfKcZtbpDMZ1QgAAAAAAAABr"}} +{"Stackframe": {"file": {"name": "MainClientExec.java"}, "function": {"name": "void org.apache.http.impl.execchain.MainClientExec.establishRoute(org.apache.http.auth.AuthState, org.apache.http.HttpClientConnection, org.apache.http.conn.routing.HttpRoute, org.apache.http.HttpRequest, org.apache.http.client.protocol.HttpClientContext)", "offset": 11}, "line": {"number": 393}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gyCLaoZ33VoOuRW0bXNTvAAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "OutputStreamIndexOutput.java"}, "function": {"name": "void org.apache.lucene.store.OutputStreamIndexOutput.close()", "offset": 9}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W0KRKkGodsQWw5SQhLGc1AAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "FileChannel.java"}, "function": {"name": "java.nio.channels.FileChannel java.nio.channels.FileChannel.open(java.nio.file.Path, java.nio.file.OpenOption[])", "offset": 6}, "line": {"number": 345}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gLY08aWtgqicV-bC4OtakQAAAAAAAABe"}} +{"Stackframe": {"file": {"name": "ReaderBasedJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.ReaderBasedJsonParser._parseName()", "offset": 16}, "line": {"number": 1707}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjnjh"}} +{"Stackframe": {"function": {"name": "rtnl_fill_ifinfo"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lu3U19P1ddOrJLDu-spLOgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(org.elasticsearch.rest.RestRequest, boolean, org.elasticsearch.action.ActionListener)"}, "line": {"number": 152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", "offset": 20}, "line": {"number": 1136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J"}} +{"Stackframe": {"function": {"name": "__x64_sys_write"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwA8J"}} +{"Stackframe": {"function": {"name": "do_softirq_own_stack"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AAAAAAAAV4sAAAAAAAAAHSs8i6sJ9R6r"}} +{"Stackframe": {"function": {"name": "_new_array_nozero_Java"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ng4wCleBoQTspajWUco4NQAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.io.stream.StreamInput.readMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader, java.util.function.IntFunction)", "offset": 7}, "line": {"number": 636}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "crGKv6MsQDF8S96b_rOTQAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.lambda$write$0(org.elasticsearch.xcontent.ToXContent, java.lang.String, boolean, java.util.Map, java.io.OutputStream)"}, "line": {"number": 292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8PmjGm6M7d6JhKTXv_IxqQAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$$Lambda$4633+0x00000008018e7978.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "45C-Q8d2gQJCMIvUacUWRQAAAAAAAACW"}} +{"Stackframe": {"file": {"name": "ReaderBasedJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.ReaderBasedJsonParser.nextToken()", "offset": 45}, "line": {"number": 707}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0qy"}} +{"Stackframe": {"function": {"name": "do_nanosleep"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "O9GyViThnT0aREbt-Lp02gAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.index.query.BoolQueryBuilder$$Lambda$1469+0x0000000801189378.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcDw"}} +{"Stackframe": {"function": {"name": "__do_sys_newfstat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vXqYC-XpJb-U4sFbWG9yCQAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "FetchSearchResult.java"}, "function": {"name": "void org.elasticsearch.search.fetch.FetchSearchResult.readFrom(org.elasticsearch.common.io.stream.StreamInput)", "offset": 2}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LN7ynDYiGG43L8r_Igy7BgAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun()", "offset": 5}, "line": {"number": 759}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6AQbnCXT2eS3YkGv2EB2QQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Lucene50PostingsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene50.Lucene50PostingsReader.readVIntBlock(org.apache.lucene.store.IndexInput, int[], int[], int, boolean)"}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oTk3W7QV7_tttxuFij_F8AAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.lambda$acquireReplicaOperationPermit$29(java.lang.String, java.lang.Object, org.elasticsearch.action.ActionListener)"}, "line": {"number": 3497}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oJ4uhqaGJXAzxTc8vQCVYwAAAAAAAABd"}} +{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.deleteCommits()", "offset": 13}, "line": {"number": 382}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x8wKfSxfz0olWikyS-1x_gAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Lucene80NormsProducer.java"}, "function": {"name": "short org.apache.lucene.codecs.lucene80.Lucene80NormsProducer$1.readShort()"}, "line": {"number": 277}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dvC0kfSIuomMUVjjDpC6UgAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "Checkpoint.java"}, "function": {"name": "byte[] org.elasticsearch.index.translog.Checkpoint.createCheckpointBytes(java.nio.file.Path, org.elasticsearch.index.translog.Checkpoint)", "offset": 7}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NrikprALerrSkH1iKFm6zQAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, java.lang.Throwable)", "offset": 5}, "line": {"number": 382}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1oBnNdsJQEj_XlDQgtQSnwAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.settings.Settings.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 3}, "line": {"number": 619}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CXLTbG53pspcYMh-GoRUQQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "AbstractList.java"}, "function": {"name": "java.lang.Object java.util.AbstractList$ListItr.previous()"}, "line": {"number": 413}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOlg"}} +{"Stackframe": {"function": {"name": "inet_recvmsg"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3B2E3nnskNJUgYVRkMUbJAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "AbstractIndexOrdinalsFieldData.java"}, "function": {"name": "org.elasticsearch.index.fielddata.IndexFieldData org.elasticsearch.index.fielddata.plain.AbstractIndexOrdinalsFieldData.localGlobalDirect(org.apache.lucene.index.DirectoryReader)"}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wBS6oN6cYq-0LLiCMfm7jgAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "int java.lang.String.lastIndexOf(int, int)"}, "line": {"number": 1687}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$1838.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FU-LtuDYfkFJE48mcerINAAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaResult.runPostReplicaActions(org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 581}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedExceptionAction)", "offset": 3}, "line": {"number": 554}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4m-0zgTNuwngv66j7dc5XAAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.channels.FileChannel sun.nio.fs.UnixFileSystemProvider.newFileChannel(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])", "offset": 4}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYft"}} +{"Stackframe": {"function": {"name": "copy_user_enhanced_fast_string"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bn4I8fRVcZKaFCSiMCvwGAAAAAAAAABv"}} +{"Stackframe": {"file": {"name": "HttpsClient.java"}, "function": {"name": "sun.net.www.http.HttpClient sun.net.www.protocol.https.HttpsClient.New(javax.net.ssl.SSLSocketFactory, java.net.URL, javax.net.ssl.HostnameVerifier, java.net.Proxy, boolean, int, sun.net.www.protocol.http.HttpURLConnection)", "offset": 15}, "line": {"number": 333}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gif16EmVGvorhgyOj9vZjwAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$ContextRestoreResponseHandler.handleResponse(org.elasticsearch.transport.TransportResponse)", "offset": 4}, "line": {"number": 1093}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Qbijp1UqPhsSVBQ_97ZZSgAAAAAAAABj"}} +{"Stackframe": {"file": {"name": "NativeUsersStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.esnative.NativeUsersStore$1.onResponse(org.elasticsearch.action.get.GetResponse)", "offset": 7}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vY73uE8s0GjOVOtvrJEg7gAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "TransportNodesInfoAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.info.NodeInfo org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction.nodeOperation(org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction$NodeInfoRequest)", "offset": 1}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zpXAyp1QxqCx0Nj8RG5cPQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "RetentionLeaseBackgroundSyncAction.java"}, "function": {"name": "void org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction.shardOperationOnPrimary(org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H6yPOYEnXV1gkHCNY0CftwAAAAAAAACs"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter.(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.codecs.PostingsWriterBase, int, int)", "offset": 31}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlwr"}} +{"Stackframe": {"function": {"name": "show_mountinfo"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bwD-Zz3w7JYWW7ew0dW5KgAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "sun.security.ssl.Plaintext sun.security.ssl.SSLSocketImpl.decode(java.nio.ByteBuffer)", "offset": 4}, "line": {"number": 1503}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "agEVuhYnJj97aY8MKWJPtAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ClusterStateNodeUpdater.java"}, "function": {"name": "void org.elasticsearch.plugin.found.zookeeper.updaters.ClusterStateNodeUpdater.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)"}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_CTRBRzwj9_syNwY5rEXHAAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriterPerThread.sealFlushedSegment(org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 14}, "line": {"number": 546}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cVP-3jHAx-YcnahqMKs8awAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelHandlerContext io.netty.channel.AbstractChannelHandlerContext.flush()", "offset": 3}, "line": {"number": 728}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3DsLLpnzoGeqib2_MeXKdgAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.callDecode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 19}, "line": {"number": 428}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QeldwMhyIXcz6fpTQjPzwAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "IllegalArgumentException.java"}, "function": {"name": "void java.lang.IllegalArgumentException.(java.lang.String)"}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KYUKYe5FJokP-mDuLYX4tQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.put(java.lang.Object, java.lang.Object)"}, "line": {"number": 618}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W2orkSxhItalTCL1xwDk_AAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "ActionRunnable.java"}, "function": {"name": "void org.elasticsearch.action.ActionRunnable.lambda$supply$0(org.elasticsearch.common.CheckedSupplier, org.elasticsearch.action.ActionListener)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-oQ9VuCOQPeW_T8CGKqMgAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "SinglePackedOrdinals.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.elasticsearch.index.fielddata.ordinals.SinglePackedOrdinals$Docs.lookupOrd(int)"}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAYtbf"}} +{"Stackframe": {"function": {"name": "xen_evtchn_do_upcall"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eD_z17WIkKLZhJ8ty3JXzwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.seqno.RetentionLeaseSyncer$$Lambda$5090+0x00000008020c9058.backgroundSync(org.elasticsearch.index.shard.ShardId, java.lang.String, long, org.elasticsearch.index.seqno.RetentionLeases)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgPo"}} +{"Stackframe": {"function": {"name": "kmem_cache_alloc"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "f9jpILp06xYZNJYHocPeQQAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "JsonFactory.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonParser com.fasterxml.jackson.core.JsonFactory._createParser(java.io.InputStream, com.fasterxml.jackson.core.io.IOContext)"}, "line": {"number": 1481}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "krGbMu8JHiKkyENUYIKBywAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "Channels.java"}, "function": {"name": "void java.nio.channels.Channels$1.write(byte[], int, int)", "offset": 13}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7JN_tS6A_rP-FvBgm0sAlgAAAAAAAACh"}} +{"Stackframe": {"file": {"name": "IndexShardOperationPermits.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShardOperationPermits.acquire(org.elasticsearch.action.ActionListener, java.lang.String, boolean, java.lang.Object, java.lang.StackTraceElement[])", "offset": 43}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HZ0GBRVKni6SsJNHL5AkLgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "AbstractQueuedSynchronizer.java"}, "function": {"name": "long java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(long)"}, "line": {"number": 2108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_6rkq2S7o8rMRQJ9AofzJAAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.bytes.BytesReference, boolean, org.elasticsearch.common.xcontent.XContentType)", "offset": 7}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cnbwHIJ_wBXN7xrEJmE8vQAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.xcontent.support.AbstractXContentParser.readMapEntries(org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier, java.util.Map)", "offset": 3}, "line": {"number": 316}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2Tuo-C9u5ZQSFYDa7WjfzAAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.processDocument()", "offset": 18}, "line": {"number": 403}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bQTnNZNiSnxa6gsFMalX2wAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "api.py"}, "function": {"name": "dispatch_events", "offset": 1}, "line": {"number": 368}, "source": {"type": 2}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EzlTNMIGbx2ZiPDgwyoVKwAAAAAAAAHf"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$PendingBlock.compileIndex(java.util.List, org.apache.lucene.store.RAMOutputStream, org.apache.lucene.util.IntsRefBuilder)", "offset": 47}, "line": {"number": 454}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kYilhQw2ZemDagPwuRJQEwAAAAAAAACj"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotsService.endSnapshot(org.elasticsearch.cluster.SnapshotsInProgress$Entry, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.repositories.RepositoryData)", "offset": 20}, "line": {"number": 1846}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DGjrgDv5wYPfFINUB_hsHgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "org.apache.lucene.index.SortedDocValues org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer$2.getSorted(org.apache.lucene.index.FieldInfo)"}, "line": {"number": 894}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PLVE8euS4NkLxqn7lNTdsQAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$3.sendRequest(long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions)"}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UUKeWXdwi8f1Ogpgfk32jAAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "IndexShardRoutingTable.java"}, "function": {"name": "java.util.List org.elasticsearch.cluster.routing.IndexShardRoutingTable.shardsWithState(org.elasticsearch.cluster.routing.ShardRoutingState)", "offset": 4}, "line": {"number": 561}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m-6JEhiFmXqLZfGLnUoQcQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "OsService.java"}, "function": {"name": "org.elasticsearch.monitor.os.OsStats org.elasticsearch.monitor.os.OsService.stats()"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbgp"}} +{"Stackframe": {"function": {"name": "vfs_statx_fd"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WQoT5TvZ3eOmkl3OPEBMywAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.prepareCommit(long, long, org.elasticsearch.Version)", "offset": 3}, "line": {"number": 1175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Kl0qkbNQj3_YlT2V6V00bAAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "RoutingTable.java"}, "function": {"name": "java.util.List org.elasticsearch.cluster.routing.RoutingTable.shardsWithState(org.elasticsearch.cluster.routing.ShardRoutingState)", "offset": 2}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf"}} +{"Stackframe": {"function": {"name": "__d_lookup"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rBzmYlGYOYZti9GsU43JzAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "Scheduler.java"}, "function": {"name": "void org.elasticsearch.threadpool.Scheduler$ReschedulingRunnable.doRun()", "offset": 1}, "line": {"number": 203}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7OmS9SwYpCYbOPw4YxA-2QAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "RestSearchAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction.lambda$prepareRequest$2(org.elasticsearch.client.node.NodeClient, org.elasticsearch.rest.RestRequest, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.rest.RestChannel)", "offset": 1}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction)"}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "071PUSzMXlqHEVR0hWfW5gAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "FilterLeafCollector.java"}, "function": {"name": "void org.apache.lucene.search.FilterLeafCollector.collect(int)"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R8XqrHwsSbyUWtEys51FcwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.io.OutputStream java.nio.file.Files.newOutputStream(java.nio.file.Path, java.nio.file.OpenOption[])"}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.refresh(java.lang.String, org.elasticsearch.index.engine.Engine$SearcherScope, boolean)", "offset": 15}, "line": {"number": 1891}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nB7ASI-agyjwniBzr5SZ-QAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "RepeatableInputStreamRequestEntity.java"}, "function": {"name": "void com.amazonaws.http.RepeatableInputStreamRequestEntity.writeTo(java.io.OutputStream)", "offset": 3}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-0evKJDf6RH7Cjp24ibpGwAAAAAAAABm"}} +{"Stackframe": {"file": {"name": "DslJsonSerializer.java"}, "function": {"name": "void co.elastic.apm.agent.report.serialize.DslJsonSerializer.serializeSpan(co.elastic.apm.agent.impl.transaction.Span)", "offset": 12}, "line": {"number": 755}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hGSCrwWRBmtVELIFCWeAPQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "DynamicTemplate.java"}, "function": {"name": "java.util.Map org.elasticsearch.index.mapper.DynamicTemplate.mappingForName(java.lang.String, java.lang.String)"}, "line": {"number": 363}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgDQ"}} +{"Stackframe": {"function": {"name": "__local_bh_enable_ip"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAGJ"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 81}, "line": {"number": 366}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eXNbyOeLs46cBjJtPDHgqwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Matcher.java"}, "function": {"name": "boolean java.util.regex.Matcher.matches()"}, "line": {"number": 712}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yEZxG7KTD5m6EdvIqyvT2wAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "Buffer.java"}, "function": {"name": "void java.nio.Buffer.(int, int, int, int)", "offset": 17}, "line": {"number": 202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAABY"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 10}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I4bHbdqu4NiomiXC-qdndgAAAAAAAAFg"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "com.amazonaws.services.s3.model.PutObjectResult com.amazonaws.services.s3.AmazonS3Client.putObject(com.amazonaws.services.s3.model.PutObjectRequest)", "offset": 57}, "line": {"number": 1768}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IfYj4waw9fP9op8fikoTJgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.FilterDirectory.createOutput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8AZrxdf0DrAH3ZomHs5kIwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "HashSet.java"}, "function": {"name": "boolean java.util.HashSet.add(java.lang.Object)"}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjn7-"}} +{"Stackframe": {"function": {"name": "rtnl_fill_ifinfo"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UO6PAHCkEL7ymSs753dktQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$extractToken$9(java.util.function.Consumer, org.elasticsearch.xpack.core.security.authc.AuthenticationToken)"}, "line": {"number": 239}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "soiu5QRwZz7dtMbNLdCPuQAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.ReadersAndUpdates.getReader(org.apache.lucene.store.IOContext)", "offset": 2}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uaPqWrgrMtBr19nB0bwQ4AAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "long org.apache.lucene.store.FSDirectory.fileLength(java.lang.String)", "offset": 4}, "line": {"number": 243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GEq2R3OT579ZPRIW9oZppAAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.consumeToken(org.elasticsearch.xpack.core.security.authc.AuthenticationToken)", "offset": 47}, "line": {"number": 306}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "f_rIvCQMW5oayMPHCj4aUgAAAAAAAADZ"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "int java.io.FilePermission.containsPath(java.nio.file.Path, java.nio.file.Path)", "offset": 55}, "line": {"number": 757}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zgO9-qlGF96Qf8hviCOy7QAAAAAAAAD0"}} +{"Stackframe": {"file": {"name": "TransportClusterStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.stats.ClusterStatsNodeResponse org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction.nodeOperation(org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction$ClusterStatsNodeRequest, org.elasticsearch.tasks.Task)", "offset": 30}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "94c0iuzzyiq2admvir0-DQAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.execute(java.lang.Runnable)", "offset": 28}, "line": {"number": 1357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.action.ActionListener)", "offset": 8}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "89LXE30sIspbXWCSHRWXmQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeBytes(byte[], int)"}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VN1DUTj32XK1HLzEKrvMqwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "CopyOnWriteHashMap.java"}, "function": {"name": "org.elasticsearch.common.collect.CopyOnWriteHashMap$Node org.elasticsearch.common.collect.CopyOnWriteHashMap$InnerNode.put(java.lang.Object, int, int, java.lang.Object, org.apache.lucene.util.mutable.MutableValueInt)"}, "line": {"number": 239}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kQIfOKgH7suSILPob4uOXAAAAAAAAAFc"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$CommitId org.elasticsearch.index.engine.InternalEngine.flush(boolean, boolean)", "offset": 51}, "line": {"number": 2088}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NMpC60tGKaJ25O0qF-RzlQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.lambda$writeCollection$35(org.elasticsearch.common.io.stream.StreamOutput, org.elasticsearch.common.io.stream.Writeable)"}, "line": {"number": 1180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iNAD1p_Lv1OaSnyxKQf_NAAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "AbstractJavaResourceMethodDispatcher.java"}, "function": {"name": "java.lang.Object org.glassfish.jersey.server.model.internal.AbstractJavaResourceMethodDispatcher$1.run()", "offset": 4}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z8yDYNMJULt1ApZ8kqZamAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannel.writeAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 311}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "A2GQrX7Y_KjuqeK74HNFzwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.util.Iterator java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet.iterator()"}, "line": {"number": 1672}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dFuRXSangYgd0mdMqBWlpgAAAAAAAADq"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader$SerializedDocument org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader$BlockState.document(int)", "offset": 59}, "line": {"number": 560}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApzdt"}} +{"Stackframe": {"function": {"name": "down_write"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZkLsycxKPf36jJRxnsYRXgAAAAAAAACX"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.support.AbstractXContentParser.readValueUnsafe(org.elasticsearch.common.xcontent.XContentParser$Token, org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier)", "offset": 8}, "line": {"number": 387}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DVdugEHsHluwInzJiOmllwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.ClusterModule$$Lambda$2484+0x00000008012d74c8.read(org.elasticsearch.common.io.stream.StreamInput)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADf"}} +{"Stackframe": {"file": {"name": "BulkShardRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.BulkShardRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 37}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN6Mt"}} +{"Stackframe": {"function": {"name": "kernfs_sop_show_path"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RrfA9-2I1kQdkEBXFQVusgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "boolean io.netty.channel.AbstractChannelHandlerContext.safeExecute(io.netty.util.concurrent.EventExecutor, java.lang.Runnable, io.netty.channel.ChannelPromise, java.lang.Object)"}, "line": {"number": 1013}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUA3z"}} +{"Stackframe": {"function": {"name": "blkg_print_stat_bytes"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mu1DpnH8iZDzucrjLh5s6gAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ReleasableLock.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ReleasableLock.close()"}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh"}} +{"Stackframe": {"function": {"name": "path_openat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pboNPSluja75Bcicb918zwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "void org.elasticsearch.index.store.ByteSizeCachingDirectory$2.close()"}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6F8ddfkmmQueFOAbmfQw1wAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ResourceLeakDetector.java"}, "function": {"name": "io.netty.util.ResourceLeakTracker io.netty.util.ResourceLeakDetector.track(java.lang.Object)"}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryShardReference.perform(org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.action.ActionListener)", "offset": 8}, "line": {"number": 955}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_qkVJm0NxTF9ak3kQe9veQAAAAAAAABa"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.netty.channel.ChannelPromise)", "offset": 18}, "line": {"number": 790}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "le3dvr5GnvRtS1OdN5yIVwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "ForEachOps.java"}, "function": {"name": "java.lang.Void java.util.stream.ForEachOps$ForEachOp.evaluateSequential(java.util.stream.PipelineHelper, java.util.Spliterator)"}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3yZRDT05_hGvUj8jRvChFAAAAAAAAAIj"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "boolean org.apache.lucene.index.ReadersAndUpdates.writeFieldUpdates(org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos$FieldNumbers, long, org.apache.lucene.util.InfoStream)", "offset": 76}, "line": {"number": 581}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B4whtrfnaTSHGModLedLLwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService$AsyncRefreshTask.runInternal()"}, "line": {"number": 1043}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gT8nUPqqRrRw5ZClYoJx6gAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HbK35pQKizLIlGR5aUXSUwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.util.Set org.elasticsearch.common.settings.Settings$Builder.keys()"}, "line": {"number": 843}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m_ubSEEFnjI3s9WRdbfBdgAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "DeprecationLogger.java"}, "function": {"name": "void org.elasticsearch.common.logging.DeprecationLogger.(org.apache.logging.log4j.Logger)", "offset": 3}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6XSmObFSSfKQphH28GHZfAAAAAAAAALR"}} +{"Stackframe": {"file": {"name": "MainClientExec.java"}, "function": {"name": "org.apache.http.client.methods.CloseableHttpResponse org.apache.http.impl.execchain.MainClientExec.execute(org.apache.http.conn.routing.HttpRoute, org.apache.http.client.methods.HttpRequestWrapper, org.apache.http.client.protocol.HttpClientContext, org.apache.http.client.methods.HttpExecutionAware)", "offset": 117}, "line": {"number": 272}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XnbGnzFMKmvx6C5QQQuPcwAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "NodeHash.java"}, "function": {"name": "void org.apache.lucene.util.fst.NodeHash.rehash()", "offset": 7}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jnwpC-g9yl69bbXrtqzX-gAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$$Lambda$636+0x0000000800f7b7f8.close()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HQlS1PvyNkxRJDriMlVDNQAAAAAAAABR"}} +{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "void org.elasticsearch.cluster.ClusterState$ClusterStateDiff.(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.node.DiscoveryNode)", "offset": 9}, "line": {"number": 844}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QLdVHMdVsV-29W9Zq-QZAwAAAAAAAACV"}} +{"Stackframe": {"file": {"name": "ObjectMapper.java"}, "function": {"name": "org.elasticsearch.index.mapper.ObjectMapper org.elasticsearch.index.mapper.ObjectMapper$Builder.build(org.elasticsearch.index.mapper.Mapper$BuilderContext)", "offset": 13}, "line": {"number": 152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z_t7zXgMNJmUhO2ppFiaDQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SearcherManager.java"}, "function": {"name": "java.lang.Object org.apache.lucene.search.SearcherManager.refreshIfNeeded(java.lang.Object)"}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlsu"}} +{"Stackframe": {"function": {"name": "show_mountinfo"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4g3dadKJq-rh-Mlmi-1U5gAAAAAAAAKL"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.commitMerge(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergeState)", "offset": 115}, "line": {"number": 4299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EGqyFI4UBcYw0uODaUlP_QAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Executors.java"}, "function": {"name": "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()"}, "line": {"number": 539}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1ruy4PbG_H0iDhhqE1DumQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.engine.Engine.acquireIndexCommitForSnapshot()"}, "line": {"number": 1101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6WFIySpj11tQgowgDo--tgAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "PrioritizedEsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.run()", "offset": 6}, "line": {"number": 207}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k_ABxmqh7g9WH83U7CzhyQAAAAAAAACb"}} +{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.ObjectParser.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object, java.lang.Object)", "offset": 18}, "line": {"number": 275}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2NW6H5uyypIvakmcyoYnXAAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "ClientConfiguration.java"}, "function": {"name": "java.lang.String com.amazonaws.ClientConfiguration.getProxyHost()", "offset": 2}, "line": {"number": 729}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMWu"}} +{"Stackframe": {"function": {"name": "ip_finish_output2"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k9mnaRclHZhhpFF3LBU5TwAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "SortedDocValuesTermsEnum.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.apache.lucene.index.SortedDocValuesTermsEnum.next()", "offset": 1}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.maybeRefresh(java.lang.String)"}, "line": {"number": 1667}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UoO0YIpM7l58QUfhpUAyIAAAAAAAAADN"}} +{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "void org.elasticsearch.cluster.DiffableUtils$ImmutableOpenMapDiff.(org.elasticsearch.common.collect.ImmutableOpenMap, org.elasticsearch.common.collect.ImmutableOpenMap, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)", "offset": 15}, "line": {"number": 248}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ActionRunnable.java"}, "function": {"name": "void org.elasticsearch.action.ActionRunnable$2.accept(org.elasticsearch.action.ActionListener)"}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p9atTgirRjAnGD7yZRD-4gAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "OutputStreamStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.OutputStreamStreamOutput.writeByte(byte)"}, "line": {"number": 24}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iZB69y95UmqqnSAe20xlSAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ManagementFactory.java"}, "function": {"name": "java.util.stream.Stream java.lang.management.ManagementFactory.lambda$getPlatformMXBeans$3(java.lang.Class, sun.management.spi.PlatformMBeanProvider$PlatformComponent)"}, "line": {"number": 726}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABu"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKey(java.nio.channels.SelectionKey, io.netty.channel.nio.AbstractNioChannel)", "offset": 45}, "line": {"number": 788}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Vx2H7p06nNerPKpNR75HGQAAAAAAAAC4"}} +{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.awaitMatch(java.util.concurrent.LinkedTransferQueue$Node, java.util.concurrent.LinkedTransferQueue$Node, java.lang.Object, boolean, long)", "offset": 32}, "line": {"number": 669}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "32aud9zH9tAtdXTqknqjiQAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "Builder.java"}, "function": {"name": "org.apache.lucene.util.fst.Builder$CompiledNode org.apache.lucene.util.fst.Builder.compileNode(org.apache.lucene.util.fst.Builder$UnCompiledNode, int)", "offset": 6}, "line": {"number": 253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rQHoQu322PXTottWvRIsAQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.SegmentsStats org.elasticsearch.index.shard.IndexShard.segmentStats(boolean, boolean)"}, "line": {"number": 1127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hlKDzMS4nmygKgJXIbJdqgAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.executeQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)", "offset": 5}, "line": {"number": 444}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "44zqBPhw9bQW92teuaXd1AAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "java.lang.String sun.nio.fs.UnixPath.getPathForPermissionCheck()", "offset": 3}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8XyHXMQijJkNwu4Uf2gtWgAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeString(java.lang.String)", "offset": 27}, "line": {"number": 1025}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VxYMGyoTn_h64WP_gPGvigAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.UTF8StreamJsonParser._loadMoreGuaranteed()"}, "line": {"number": 2373}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "L-p6HuZa7IZQ5P3VbWlkuAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "EPollArrayWrapper.java"}, "function": {"name": "int sun.nio.ch.EPollArrayWrapper.epollWait(long, int, long, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "64C-3H5XSZ9YnnqOjes6bAAAAAAAAABd"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService.submitStateUpdateTasks(java.lang.String, java.util.Map, org.elasticsearch.cluster.ClusterStateTaskConfig, org.elasticsearch.cluster.ClusterStateTaskExecutor)", "offset": 12}, "line": {"number": 943}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_kZCXrU61VvgcGXGwSUUggAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "FsService.java"}, "function": {"name": "java.lang.Object org.elasticsearch.monitor.fs.FsService$FsInfoCache.refresh()"}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IB9QQU_Mapdn9O22PbyS1wAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "void org.apache.lucene.index.SegmentMerger.mergeWithLogging(org.apache.lucene.index.SegmentMerger$VoidMerger, org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.SegmentReadState, java.lang.String, int)", "offset": 4}, "line": {"number": 298}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F7XyzzqTBfJlAqzTHOBQZQAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "ConstructingObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ConstructingObjectParser$Target.constructorArg(int, java.lang.Object)", "offset": 3}, "line": {"number": 448}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KYcgZWdWl27hMIBlgVEqhwAAAAAAAACM"}} +{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "int sun.nio.ch.FileChannelImpl.write(java.nio.ByteBuffer)", "offset": 14}, "line": {"number": 288}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IYsF8T0nmW0EDmKEbhfC1AAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKey(java.nio.channels.SelectionKey, io.netty.channel.nio.AbstractNioChannel)", "offset": 46}, "line": {"number": 656}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VKeIi2MKWzeJ-DxWf1HkPQAAAAAAAACh"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrap(io.netty.channel.ChannelHandlerContext, boolean)", "offset": 35}, "line": {"number": 845}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-xeI6MIHiM8nZhd6ChS_mAAAAAAAAAEz"}} +{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.fs.UnixChannelFactory.open(int, sun.nio.fs.UnixPath, java.lang.String, sun.nio.fs.UnixChannelFactory$Flags, int)", "offset": 68}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4-i-5GVXRM0OiAC87vJmKAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "BitsetFilterCache.java"}, "function": {"name": "org.apache.lucene.util.BitSet org.elasticsearch.index.cache.bitset.BitsetFilterCache.access$000(org.elasticsearch.index.cache.bitset.BitsetFilterCache, org.apache.lucene.search.Query, org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "AggregatorFactory.java"}, "function": {"name": "org.elasticsearch.search.aggregations.Aggregator org.elasticsearch.search.aggregations.AggregatorFactory.create(org.elasticsearch.search.aggregations.Aggregator, boolean)"}, "line": {"number": 225}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmMhu"}} +{"Stackframe": {"function": {"name": "snmp_get_cpu_field"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz01"}} +{"Stackframe": {"function": {"name": "__audit_syscall_exit"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P_qKgj6OkmYBLfen5yPH6AAAAAAAAADl"}} +{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.createOrUpdateShards(org.elasticsearch.cluster.ClusterState)", "offset": 18}, "line": {"number": 544}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AEVGxGAg7MSUIahQ-slPHgAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "JsonFactory.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonParser com.fasterxml.jackson.core.JsonFactory.createParser(java.io.InputStream)", "offset": 1}, "line": {"number": 972}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4fqEtrPkCas7K68O72ViDQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.xcontent.XContentBuilder.lambda$static$14(org.elasticsearch.xcontent.XContentBuilder, java.lang.Object)"}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4d9zx7j7aak67AnnUI1JmAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "java.lang.Object io.netty.channel.DefaultChannelPipeline.touch(java.lang.Object, io.netty.channel.AbstractChannelHandlerContext)"}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SI19Hp-jykmwNUAUFhWoXgAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "HandlerWrapper.java"}, "function": {"name": "void org.eclipse.jetty.server.handler.HandlerWrapper.handle(java.lang.String, org.eclipse.jetty.server.Request, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)", "offset": 2}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MtYgtdi7SuaCFxSznO0CAQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$2.onResponse(java.lang.Object)"}, "line": {"number": 571}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YbNld3zpk2N0cA7cPFuWGAAAAAAAAAC4"}} +{"Stackframe": {"file": {"name": "BufferedInputStream.java"}, "function": {"name": "void java.io.BufferedInputStream.fill()", "offset": 32}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 2}, "line": {"number": 765}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yanW-NWn1yU-ZmISz8_K-wAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$RequestFilterChain.proceed(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HzhTBzOX7UakdM7pe7Y1uAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "PooledDirectByteBuf.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.PooledDirectByteBuf.setBytes(int, java.nio.ByteBuffer)", "offset": 1}, "line": {"number": 350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAACRYK"}} +{"Stackframe": {"function": {"name": "xfs_inode_item_format_data_fork.isra.8"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i7-zpevcRiI7M38R46iNUAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object no.found.http.HighLevelHttpClient$$Lambda$1362.apply()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TTvJ5_z-0po5hbnYEq-wrAAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.handleSuccessResponse(com.amazonaws.http.AmazonHttpClient$RequestExecutor$ExecOneRequestParams, org.apache.http.client.protocol.HttpClientContext, int)", "offset": 7}, "line": {"number": 1434}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Z5Gn_t_x_RsytJzOCAZhEQAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Object)", "offset": 2}, "line": {"number": 1023}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-TcRbQGxOxYw9x9ta5Q4zwAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.lambda$handleRequest$0(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.internal.node.NodeClient, org.elasticsearch.xpack.core.security.authc.support.SecondaryAuthentication)", "offset": 5}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Iaxtrhqw7QYaF83kiQkybgAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(io.netty.channel.AbstractChannelHandlerContext, java.lang.Object)", "offset": 3}, "line": {"number": 420}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "np7TeDSdz651gJRSLTp1TAAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "MonitoringTemplateUtils.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.monitoring.exporter.MonitoringTemplateUtils.loadTemplate(java.lang.String)", "offset": 1}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbUy"}} +{"Stackframe": {"function": {"name": "tcp_sendmsg_locked"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "U5KjUA8drTFRj_kkUnvTKAAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "InternalTopHits.java"}, "function": {"name": "void org.elasticsearch.search.aggregations.metrics.tophits.InternalTopHits.doWriteTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 3}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TTEheTJAVp7tNmEXHeTllwAAAAAAAABw"}} +{"Stackframe": {"file": {"name": "DocIdSetBuilder.java"}, "function": {"name": "org.apache.lucene.util.DocIdSetBuilder$Buffer org.apache.lucene.util.DocIdSetBuilder.concat(java.util.List)", "offset": 16}, "line": {"number": 314}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mUdULebVXxeJAT1WZsiwwgAAAAAAAADW"}} +{"Stackframe": {"file": {"name": "DlsFlsLicenseRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.DlsFlsLicenseRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 51}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "idAHvTfpCa_Lill3CvLIKwAAAAAAAAEC"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.messageReceived(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage, long)", "offset": 38}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6OJ3ReaIjuuKuCCqxofHxwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Hasher.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authc.support.Hasher.verifyHash(org.elasticsearch.common.settings.SecureString, char[])", "offset": 1}, "line": {"number": 478}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VjcbdnnQUMfgz1UYqKyDaQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "sun.nio.fs.UnixPath sun.nio.fs.UnixPath.getName(int)"}, "line": {"number": 301}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eX9iAJM3toZWX3uGKIS4WwAAAAAAAAEI"}} +{"Stackframe": {"file": {"name": "RoutingNodes.java"}, "function": {"name": "void org.elasticsearch.cluster.routing.RoutingNodes.(org.elasticsearch.cluster.ClusterState, boolean)", "offset": 36}, "line": {"number": 98}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "slf6t7FJIQoDjMJN42BVyAAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "TemplateUtils.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.core.template.TemplateUtils.loadTemplate(java.lang.String, java.lang.String, java.lang.String, java.util.Map)", "offset": 2}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FQVEqfdF3Gc5vOLVf8c4EAAAAAAAAAEp"}} +{"Stackframe": {"file": {"name": "Netty4MessageChannelHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler.doFlush(io.netty.channel.ChannelHandlerContext)", "offset": 52}, "line": {"number": 169}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorize(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 37}, "line": {"number": 250}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JoXZuMHmMmo6I15bv4Nz5AAAAAAAAACj"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap.putMapEntries(java.util.Map, boolean)", "offset": 20}, "line": {"number": 515}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IGwhMoYnMofyYEaJiOTDygAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "java.lang.String java.io.FilePermission$1.run()", "offset": 9}, "line": {"number": 215}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DCyFvnkzok7lK265t-00UQAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "IntroSorter.java"}, "function": {"name": "void org.apache.lucene.util.IntroSorter.sort(int, int)", "offset": 1}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GqShcrW-d9_GDzTagKIU9QAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "org.elasticsearch.cluster.Diff org.elasticsearch.cluster.ClusterState.readDiffFrom(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.node.DiscoveryNode)"}, "line": {"number": 686}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-7qKHNvuu4dQ-NSojX-1nAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "SortedSetSelector.java"}, "function": {"name": "int org.apache.lucene.search.SortedSetSelector$MinValue.nextDoc()"}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4Rje6Na2MFlheox6495qOgAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.settings.Settings.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 3}, "line": {"number": 673}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mHsoQaBy_jlH5-zItFSRsAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Checkpoint.java"}, "function": {"name": "void org.elasticsearch.index.translog.Checkpoint.write(java.nio.channels.FileChannel, java.nio.file.Path, org.elasticsearch.index.translog.Checkpoint)"}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QvNBQjR-WM_I8f_goMFl_gAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "HttpClient.scala"}, "function": {"name": "scala.concurrent.Future no.found.http.HighLevelHttpClient.httpRequest(akka.http.scaladsl.model.HttpRequest, akka.util.Timeout, no.found.http.HttpRequestOptions, scala.Option, akka.stream.Materializer, co.elastic.cloud.tracing.TraceContext)"}, "line": {"number": 257}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dT8pbQ7r1TmDVTIggVHLtwAAAAAAAAFw"}} +{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment org.apache.lucene.index.DocumentsWriterPerThread.flush()", "offset": 34}, "line": {"number": 444}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XbC-sB10O1tUEB_6J7s4XAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.common.bytes.ReleasableBytesReference org.elasticsearch.cluster.coordination.PublicationTransportHandler$PublicationContext.lambda$buildDiffAndSerializeStates$2(org.elasticsearch.common.util.LazyInitializable, org.elasticsearch.cluster.node.DiscoveryNode, org.elasticsearch.Version)"}, "line": {"number": 346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vNebmjSwemT2pcHYKHFrrAAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "java.lang.String org.elasticsearch.xcontent.provider.json.JsonXContentParser.text()", "offset": 3}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7VuKWRyOXWtTMY28mQZqtAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler.lambda$new$0(org.elasticsearch.transport.BytesTransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JE27ij9kev0kcTbJ4XEAFAAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "QuotaAwareFileSystemProvider.java"}, "function": {"name": "void co.elastic.cloud.quotaawarefs.QuotaAwareFileSystemProvider$3.(co.elastic.cloud.quotaawarefs.QuotaAwareFileSystemProvider, java.nio.file.Path, java.nio.file.DirectoryStream$Filter)", "offset": 1}, "line": {"number": 270}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ucY-hDA6B-WAclSR3dnjWAAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "byte[] org.elasticsearch.xpack.security.authc.support.BCrypt.crypt_raw(byte[], byte[], int, int[])", "offset": 12}, "line": {"number": 625}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NDooAL42lwdUmpc4-AfzaQAAAAAAAABr"}} +{"Stackframe": {"file": {"name": "AbstractIntakeApiHandler.java"}, "function": {"name": "java.net.HttpURLConnection co.elastic.apm.agent.report.AbstractIntakeApiHandler.startRequest(java.lang.String)", "offset": 16}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Cb8bspWernAxYZDCJqRNoAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline$2$1.begin(long)"}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb81"}} +{"Stackframe": {"function": {"name": "__x64_sys_newstat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9q1YQefVASlVSGjmEkRTVAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ManagementFactory.java"}, "function": {"name": "java.util.List java.lang.management.ManagementFactory.getPlatformMXBeans(java.lang.Class)"}, "line": {"number": 704}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8Wh-dNJMm135_FvZ6kzNGgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SearchModule.java"}, "function": {"name": "org.elasticsearch.index.query.QueryBuilder org.elasticsearch.search.SearchModule.lambda$registerBoolQuery$18(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)"}, "line": {"number": 981}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m2pQsanpFOaBzgnh--wYhAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "S3MetadataResponseHandler.java"}, "function": {"name": "com.amazonaws.AmazonWebServiceResponse com.amazonaws.services.s3.internal.S3MetadataResponseHandler.handle(com.amazonaws.http.HttpResponse)", "offset": 3}, "line": {"number": 34}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pxHkQ9M1dNDXsuZ3PuZiaQAAAAAAAACH"}} +{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.run()", "offset": 6}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApUQ3"}} +{"Stackframe": {"function": {"name": "pointer"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "ConstructingObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.ConstructingObjectParser.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)"}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lcQ_GZAXo1Tc_jJPboC4jQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.translog.TranslogStats org.elasticsearch.index.shard.IndexShard.translogStats()"}, "line": {"number": 1358}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OtQJTRi2v46TRWrjuB2rfAAAAAAAAADT"}} +{"Stackframe": {"file": {"name": "MetadataCreateIndexService.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterState org.elasticsearch.cluster.metadata.MetadataCreateIndexService.applyCreateIndexRequestWithV2Template(org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.admin.indices.create.CreateIndexClusterStateUpdateRequest, boolean, java.lang.String, java.util.function.BiConsumer)", "offset": 36}, "line": {"number": 634}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YqilTZwyrgCHxD7ZEdwnpAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ElasticsearchReaderManager.java"}, "function": {"name": "org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader org.elasticsearch.index.engine.ElasticsearchReaderManager.refreshIfNeeded(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)"}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QNlOUvE0ZxUnjZSRXtro_gAAAAAAAACj"}} +{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.innerRun()", "offset": 16}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "USV55yZg8dR921Rrum2migAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "byte[] sun.nio.fs.UnixNativeDispatcher.readdir(long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QbvBm5K9FvRcVX9RX9KOswAAAAAAAABe"}} +{"Stackframe": {"file": {"name": "threading.py"}, "function": {"name": "wait", "offset": 36}, "line": {"number": 299}, "source": {"type": 2}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "K1f6nnp5He4VLr7usCCM7gAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "void org.elasticsearch.index.store.ByteSizeCachingDirectory$2.close()"}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oSoGUxBn_MfT_4Ncm-yGtQAAAAAAAABa"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.writeIncrementalStateAndCommit(long, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)", "offset": 11}, "line": {"number": 912}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IHsYDz2NB6hyLlZKxrgCHwAAAAAAAACS"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorize(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 43}, "line": {"number": 302}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aGr-u5KsJw8ithwCPuSW-gAAAAAAAAC7"}} +{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "boolean org.elasticsearch.search.query.QueryPhase.searchWithCollector(org.elasticsearch.search.internal.SearchContext, org.elasticsearch.search.internal.ContextIndexSearcher, org.apache.lucene.search.Query, java.util.LinkedList, boolean, boolean)", "offset": 29}, "line": {"number": 270}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XYoHt3UROpdP-PTQpV__OQAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "AbstractAsyncTask.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractAsyncTask.run()", "offset": 8}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMs_k"}} +{"Stackframe": {"function": {"name": "ep_scan_ready_list.constprop.20"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "ForkJoinPool.java"}, "function": {"name": "void java.util.concurrent.ForkJoinPool.runWorker(java.util.concurrent.ForkJoinPool$WorkQueue)", "offset": 4}, "line": {"number": 1594}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fdOf3khW7cCeH2hLlOYT0AAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "UnixDirectoryStream.java"}, "function": {"name": "java.nio.file.Path sun.nio.fs.UnixDirectoryStream$UnixDirectoryIterator.readNextEntry()", "offset": 9}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFF86"}} +{"Stackframe": {"function": {"name": "on_each_cpu_cond_mask"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Hk3kLbfOPknxEv8_LIcXawAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelHandlerContext io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(java.lang.Object)"}, "line": {"number": 412}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "U8y7tkq3OrTv74Jpmv-rDQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "long org.elasticsearch.index.store.Store$StoreStatsCache.estimateSize(org.apache.lucene.store.Directory)", "offset": 1}, "line": {"number": 1399}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zv32OTyDwzKaaY5odVkMtAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "AbstractScopedSettings.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.AbstractScopedSettings.get(org.elasticsearch.common.settings.Setting)"}, "line": {"number": 733}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jckGVFRAvWURR3kz1QpfwQAAAAAAAABZ"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.index(org.elasticsearch.index.engine.Engine, org.elasticsearch.index.engine.Engine$Index)", "offset": 17}, "line": {"number": 1054}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hq6I_LYL4I-0sHu-9iU7vQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "CommitStats.java"}, "function": {"name": "void org.elasticsearch.index.engine.CommitStats.(org.apache.lucene.index.SegmentInfos)", "offset": 2}, "line": {"number": 33}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SWCN2gcp4LclJfURa_1mCwAAAAAAAABh"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncPrimaryAction.lambda$runWithPrimaryShardReference$3(org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryShardReference, org.elasticsearch.action.support.replication.ReplicationResponse)", "offset": 22}, "line": {"number": 494}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JmUwuALYuz7J8pWH7Gnx7AAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "boolean org.elasticsearch.index.shard.IndexShard.scheduledRefresh()", "offset": 2}, "line": {"number": 3894}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtE3"}} +{"Stackframe": {"function": {"name": "do_send_specific"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sWCnrMF0Arlnv58qX-TThwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "FileDescriptor.java"}, "function": {"name": "void java.io.FileDescriptor$1.close(java.io.FileDescriptor)"}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Q4jw5JHGkPC3MdanjDSu0gAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "SecurityContext.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.SecurityContext.executeAsUser(org.elasticsearch.xpack.core.security.user.User, java.util.function.Consumer, org.elasticsearch.Version)", "offset": 3}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMust"}} +{"Stackframe": {"function": {"name": "__x64_sys_epoll_wait"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tAHJgxpCGplfQad29NnOaAAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.search.fetch.FetchPhase$$Lambda$7583+0x0000000801f4d8f8.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JmyP7PdfC2skKKShHbUYvwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "void org.elasticsearch.index.store.ByteSizeCachingDirectory$2.writeByte(byte)"}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w0wAFsFQ52S37kAf5ci3AgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Operations.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.apache.lucene.util.automaton.Operations.getCommonSuffixBytesRef(org.apache.lucene.util.automaton.Automaton, int)"}, "line": {"number": 1147}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "18xvsyEMx_xP6380NXq5wwAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "RoleReference.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authz.store.RoleKey org.elasticsearch.xpack.core.security.authz.store.RoleReference$NamedRoleReference.id()", "offset": 3}, "line": {"number": 59}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Z5bymihzf4CQyWGMQZAZdQAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "UnixFileAttributes.java"}, "function": {"name": "sun.nio.fs.UnixFileAttributes sun.nio.fs.UnixFileAttributes.get(sun.nio.fs.UnixPath, boolean)", "offset": 4}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAioJZ"}} +{"Stackframe": {"function": {"name": "__x64_sys_socket"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "It3O82Qt-f1-LUtaeKWOtgAAAAAAAABi"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.updateChildren()", "offset": 18}, "line": {"number": 205}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gvccGM4k-q4cOxwbrd8DiwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "Netty4TcpChannel.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4TcpChannel.sendMessage(org.elasticsearch.common.bytes.BytesReference, org.elasticsearch.action.ActionListener)"}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h9p7zYE7UtrMJBfAGA4RZQAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "java.lang.String java.lang.String.toLowerCase(java.util.Locale)"}, "line": {"number": 3399}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B8GcDjZ97CTFJbinioRl3gAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.authenticate(org.elasticsearch.xpack.core.security.authc.AuthenticationToken, org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RvgpC2THNLDZ9bIizRZhbwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "SessionOutputBufferImpl.java"}, "function": {"name": "void org.apache.http.impl.io.SessionOutputBufferImpl.streamWrite(byte[], int, int)", "offset": 1}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5kI3iCVPIGpJyER_pIOiDAAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lookForExistingAuthentication(java.util.function.Consumer)", "offset": 15}, "line": {"number": 221}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdyj"}} +{"Stackframe": {"function": {"name": "apparmor_file_alloc_security"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nyMCPt5M-rbb158Tnrz3sgAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriterPerThread.sealFlushedSegment(org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 13}, "line": {"number": 457}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LaFl4epk0Q6S_D_8elQACwAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.(org.apache.lucene.index.SegmentWriteState, java.lang.String, java.lang.String, java.lang.String, java.lang.String)", "offset": 7}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorize(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 48}, "line": {"number": 232}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "BucketsAggregator.java"}, "function": {"name": "org.elasticsearch.search.aggregations.InternalAggregations org.elasticsearch.search.aggregations.bucket.BucketsAggregator.bucketAggregations(long)", "offset": 2}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zcjbCSOxeTCClWpD2cCw2AAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "int org.elasticsearch.common.io.Streams.readFully(java.io.InputStream, byte[], int, int)", "offset": 2}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "slf6t7FJIQoDjMJN42BVyAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "TemplateUtils.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.core.template.TemplateUtils.loadTemplate(java.lang.String, java.lang.String, java.lang.String, java.util.Map)"}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JZwkMgssyxwDeUwKf3-dwwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$NumericEntry org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer.readNumeric(org.apache.lucene.store.IndexInput)", "offset": 1}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QyWxgwf_XVR_0KnTIAmsrQAAAAAAAAB4"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "java.lang.String java.lang.String.replace(java.lang.CharSequence, java.lang.CharSequence)", "offset": 15}, "line": {"number": 2969}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QOOD1c7R67z8gbSz6sGkSwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "SearchHitField.java"}, "function": {"name": "void org.elasticsearch.search.SearchHitField.readFrom(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wyrs0b2Xeu1gDeFw9u_zswAAAAAAAAB0"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermissionCollection.implies(java.security.Permission)", "offset": 18}, "line": {"number": 1216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3r-tlbWKH7Bh4O96M6j3bgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "URLClassPath.java"}, "function": {"name": "jdk.internal.loader.Resource jdk.internal.loader.URLClassPath$JarLoader.getResource(java.lang.String, boolean)", "offset": 4}, "line": {"number": 932}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.refreshIfNeeded(java.lang.Object)"}, "line": {"number": 350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TY-BHg3kiwMpijAIqZbwIgAAAAAAAAAv"}} +{"Stackframe": {"file": {"name": "AbstractScopedSettings.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.AbstractScopedSettings.diff(org.elasticsearch.common.settings.Settings, org.elasticsearch.common.settings.Settings)", "offset": 2}, "line": {"number": 404}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fMKxLLA4Q_xaCv6rBjpL3AAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "TimSort.java"}, "function": {"name": "int java.util.TimSort.countRunAndMakeAscending(java.lang.Object[], int, int, java.util.Comparator)", "offset": 6}, "line": {"number": 355}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UTB2ADQFxXISnXcFBKNbeQAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeString(java.lang.String)", "offset": 27}, "line": {"number": 977}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nFec0jDdaqJcSPL265lPiAAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.handleIncomingRequest(org.elasticsearch.http.HttpRequest, org.elasticsearch.http.HttpChannel, java.lang.Exception)", "offset": 22}, "line": {"number": 407}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI"}} +{"Stackframe": {"function": {"name": "futex_wait_queue_me"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SdUzkeL9_v2VezVxWgWRqAAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.flush()", "offset": 9}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "frJcVQQvYZxinCGo-1mmtQAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "void org.elasticsearch.index.store.Store$StoreDirectory.deleteFile(java.lang.String, java.lang.String)", "offset": 1}, "line": {"number": 745}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M092UIYzWocIGc1tZUOHbgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AbstractCollection.java"}, "function": {"name": "java.lang.Object[] java.util.AbstractCollection.toArray()"}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kIxvJVB-JG5UQkLY58s6dQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "FieldInfos.java"}, "function": {"name": "void org.apache.lucene.index.FieldInfos$FieldNumbers.setIndexOptions(int, java.lang.String, org.apache.lucene.index.IndexOptions)"}, "line": {"number": 442}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RxrIezP-22ksZoeWEvsGOAAAAAAAAADb"}} +{"Stackframe": {"file": {"name": "SegmentDocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.index.SegmentDocValuesProducer.(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos, org.apache.lucene.index.FieldInfos, org.apache.lucene.index.SegmentDocValues)", "offset": 31}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6kCfjNdi4uCSLWXwLtfgOQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.startObject()"}, "line": {"number": 217}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Q5CO-RLiPN1LuvIBRrr64wAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.SegmentsStats org.elasticsearch.index.shard.IndexShard.segmentStats(boolean, boolean)"}, "line": {"number": 1344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YJtluB5982Y_RftN7vgBewAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "NativeThread.java"}, "function": {"name": "long sun.nio.ch.NativeThread.current()", "offset": 3}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BJDHz_v6MglYWRIxZBsdiQAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$consumeToken$11(org.elasticsearch.xpack.core.security.authc.Realm, org.elasticsearch.action.ActionListener, java.util.Map, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 5}, "line": {"number": 273}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAikn6"}} +{"Stackframe": {"function": {"name": "sock_alloc_file"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-JAdXc6ZieAkMq7GDln2EwAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.StandardDirectoryReader.doOpenIfChanged(org.apache.lucene.index.IndexCommit)", "offset": 5}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vdv7wcErbmkon-Nhq9YXuwAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.(org.apache.lucene.index.SegmentWriteState, java.lang.String, java.lang.String, java.lang.String, java.lang.String, org.apache.lucene.codecs.lucene80.Lucene80DocValuesFormat$Mode)", "offset": 9}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QKXbkKgbO161p-cpBhN6hwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "MessageToMessageCodec.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageCodec.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)"}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MRefKuQ15Y6eStqPQ3JqewAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "GHASH.java"}, "function": {"name": "int com.sun.crypto.provider.GHASH.doFinal(java.nio.ByteBuffer, int)", "offset": 11}, "line": {"number": 230}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "25iHP2_EzWmqN7aoEEouTQAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.executeLocalSearch(org.elasticsearch.tasks.Task, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.OriginalIndices, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener, org.elasticsearch.action.search.SearchContextId, org.elasticsearch.action.search.TransportSearchAction$SearchAsyncActionProvider)"}, "line": {"number": 494}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFydV"}} +{"Stackframe": {"function": {"name": "audit_filter_rules.constprop.21"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "V6VjwoFUmL-aJwJOJ7vFngAAAAAAAABN"}} +{"Stackframe": {"file": {"name": "MultiTermsEnum.java"}, "function": {"name": "int org.apache.lucene.index.MultiTermsEnum$TermMergeQueue.fillTop(org.apache.lucene.index.MultiTermsEnum$TermsEnumWithSlice[])", "offset": 13}, "line": {"number": 423}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vFOaMH-CkqySBUhK-p2A5AAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "int java.util.stream.Streams$ConcatSpliterator.characteristics()", "offset": 2}, "line": {"number": 755}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "klX8tI6RbguXhwa8P7ml8gAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$1.onResponse(java.lang.Void)", "offset": 3}, "line": {"number": 577}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oFsDQT5fo33-zFKmVhzmdQAAAAAAAACd"}} +{"Stackframe": {"file": {"name": "IntroSorter.java"}, "function": {"name": "void org.apache.lucene.util.IntroSorter.sort(int, int, int)", "offset": 30}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEB"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorize(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 39}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PmGWf7PSbL1kcaez2GPlxwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "boolean java.util.HashMap$HashIterator.hasNext()"}, "line": {"number": 1590}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RZ01NrWKTMDuXelOk2KnKQAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.wrap(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 15}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aqit6N7GhuOhGS3z35VIdgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "BytesStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.BytesStreamOutput.writeByte(byte)"}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ej1NIeH3mZLVu0Z6C4X58QAAAAAAAACg"}} +{"Stackframe": {"file": {"name": "FieldInfos.java"}, "function": {"name": "void org.apache.lucene.index.FieldInfos$FieldNumbers.verifyConsistent(java.lang.Integer, java.lang.String, org.apache.lucene.index.IndexOptions)", "offset": 6}, "line": {"number": 373}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HRhcb8RohRFf4CDhqwMgDQAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$3.onResponse(java.lang.Void)", "offset": 7}, "line": {"number": 590}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eYOPSEoq5FFmdpvYTsQ9xwAAAAAAAAHE"}} +{"Stackframe": {"file": {"name": "TransportClusterStateAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.state.TransportClusterStateAction.masterOperation(org.elasticsearch.action.admin.cluster.state.ClusterStateRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)", "offset": 55}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAPSc-"}} +{"Stackframe": {"function": {"name": "_ext4_show_options"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "J5LlnPpQupPs1Oay-H91PwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TaskBatcher.java"}, "function": {"name": "void org.elasticsearch.cluster.service.TaskBatcher$BatchedTask.run()"}, "line": {"number": 202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YNvLePk3bv25BUHN3KzEXQAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 9}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oOj3i3E-vhss83HoxQZA8wAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.esnative.NativeUsersStore$$Lambda$1920.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF"}} +{"Stackframe": {"function": {"name": "user_path_at_empty"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mFI6bnpBK3kAEbXHdNa8MAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient$IndicesAdmin.execute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 1303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JYe70J6f_R3-V5ur6gAZUAAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.merge(org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 12}, "line": {"number": 4361}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M0BY4RedXr5CJ3Eqdq8JKwAAAAAAAABv"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.common.bytes.ReleasableBytesReference org.elasticsearch.cluster.coordination.PublicationTransportHandler.serializeDiffClusterState(org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.Diff, org.elasticsearch.cluster.node.DiscoveryNode)", "offset": 19}, "line": {"number": 284}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9rD5odZJVMPFsyKAQ0JZdwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "EsExecutors.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.EsExecutors$DirectExecutorService.execute(java.lang.Runnable)"}, "line": {"number": 215}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rRpenI7GD9Sw_c3K81rvVQAAAAAAAAEg"}} +{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "java.util.Set org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$WildcardExpressionResolver.innerResolve(org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$Context, java.util.List, org.elasticsearch.action.support.IndicesOptions, org.elasticsearch.cluster.metadata.Metadata)", "offset": 48}, "line": {"number": 978}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fOjhF2CyWsBF_FgpY6hNTgAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.writePages(org.elasticsearch.xcontent.ToXContent, org.elasticsearch.gateway.PersistedClusterStateService$PageWriter)", "offset": 6}, "line": {"number": 1104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "IndicesRequestCache.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.indices.IndicesRequestCache.getOrCompute(org.elasticsearch.indices.IndicesRequestCache$CacheEntity, java.util.function.Supplier, org.apache.lucene.index.DirectoryReader, org.elasticsearch.common.bytes.BytesReference)", "offset": 2}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mvS9ZLmmrkF3RxnZo2YVwgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.handleCachedAuthentication(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.action.ActionListener)"}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eRhJRvHm727VHuGPDJpA3AAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "void co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.onEvent(java.lang.Object, long, boolean)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PeR7MGoLPIDRHDuohlqHugAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void com.amazonaws.http.conn.$Proxy29.connect(org.apache.http.HttpClientConnection, org.apache.http.conn.routing.HttpRoute, int, org.apache.http.protocol.HttpContext)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lJfPltGODmJePtyLCuHROAAAAAAAAAAv"}} +{"Stackframe": {"file": {"name": "URLClassPath.java"}, "function": {"name": "jdk.internal.loader.Resource jdk.internal.loader.URLClassPath$JarLoader.checkResource(java.lang.String, boolean, java.util.jar.JarEntry)", "offset": 7}, "line": {"number": 853}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ilROEXfY2pUH01XyVGW7lgAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "void co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.handleIntakeEvent(co.elastic.apm.agent.report.ReportingEvent, long, boolean)", "offset": 6}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iFkuHlkQPsBsMnUTpjsUKgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "boolean java.util.concurrent.LinkedTransferQueue.tryTransfer(java.lang.Object)"}, "line": {"number": 1241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3kqKIOk7SslvcfRGmqs1wAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes java.nio.file.Files.readAttributes(java.nio.file.Path, java.lang.Class, java.nio.file.LinkOption[])"}, "line": {"number": 1851}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "40ES46dU7pwVTIhZzOkjPwAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermissionCollection.implies(java.security.Permission)", "offset": 7}, "line": {"number": 1200}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WIBcfc0Y3RCgkq_eGTcaWQAAAAAAAADM"}} +{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "void org.elasticsearch.cluster.metadata.Metadata$Builder.toXContent(org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 24}, "line": {"number": 2013}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nK26UzXMr2iYvP4Hayn36wAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeBulkItems$20(java.util.Set, org.elasticsearch.action.ActionListener)"}, "line": {"number": 849}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6XSmObFSSfKQphH28GHZfAAAAAAAAABo"}} +{"Stackframe": {"file": {"name": "MainClientExec.java"}, "function": {"name": "org.apache.http.client.methods.CloseableHttpResponse org.apache.http.impl.execchain.MainClientExec.execute(org.apache.http.conn.routing.HttpRoute, org.apache.http.client.methods.HttpRequestWrapper, org.apache.http.client.protocol.HttpClientContext, org.apache.http.client.methods.HttpExecutionAware)", "offset": 21}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AAAAAAAAV4sAAAAAAAAAHXOBFFPSGeW_"}} +{"Stackframe": {"function": {"name": "_new_instance_Java"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Q2tfegLTLBs7h66pyWM3FwAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.lambda$static$11(org.elasticsearch.common.io.stream.StreamOutput, java.lang.Object)", "offset": 8}, "line": {"number": 568}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EsVgM4Munl1E9eHBVI5_DwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterStateTaskExecutor$ClusterTasksResult org.elasticsearch.snapshots.SnapshotsService.lambda$static$53(org.elasticsearch.cluster.ClusterState, java.util.List)", "offset": 2}, "line": {"number": 3662}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Lf4JMX1-MCAx0p2O2vbkfgAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "Authentication.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.security.authc.Authentication.encode()", "offset": 3}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tpYrdrzxLxKEo0lof5nOvwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter.finish(int)", "offset": 1}, "line": {"number": 478}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W5uvTPsHW27xuZpmNo_OkAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ImmutableOpenMap.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.collect.ImmutableOpenMap$Builder.put(java.lang.Object, java.lang.Object)"}, "line": {"number": 262}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mYO8eYShKNmyuBL3FXJB-gAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.repositories.blobstore.BlobStoreRepository.buildBlobStoreIndexShardSnapshots(java.util.Set, org.elasticsearch.common.blobstore.BlobContainer, java.lang.String)", "offset": 5}, "line": {"number": 3280}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6XSmObFSSfKQphH28GHZfAAAAAAAAALd"}} +{"Stackframe": {"file": {"name": "MainClientExec.java"}, "function": {"name": "org.apache.http.client.methods.CloseableHttpResponse org.apache.http.impl.execchain.MainClientExec.execute(org.apache.http.conn.routing.HttpRoute, org.apache.http.client.methods.HttpRequestWrapper, org.apache.http.client.protocol.HttpClientContext, org.apache.http.client.methods.HttpExecutionAware)", "offset": 120}, "line": {"number": 275}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wj5_TD0E9go0_JwMtB1C3QAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.ClusterModule$$Lambda$2289+0x000000080133a750.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ffH4BrIPq_Gg0Z8uCbD2yQAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "WeakConcurrentProviderImpl.java"}, "function": {"name": "void co.elastic.apm.agent.collections.WeakConcurrentProviderImpl.expungeStaleEntries()", "offset": 1}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJ"}} +{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile.inbound(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.action.ActionListener)", "offset": 33}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CzBMWmfY4oLBhPQiZQ9ugAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$DirectResponseChannel.sendResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 1123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zEK_5i4wFV1mMofkY5GUSQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "DiffableStringMap.java"}, "function": {"name": "java.util.Set org.elasticsearch.cluster.metadata.DiffableStringMap.entrySet()"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yanW-NWn1yU-ZmISz8_K-wAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$RequestFilterChain.proceed(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XYRTlu2htT1GlqMbNL36ywAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "org.elasticsearch.indices.SystemIndices$SystemIndexAccessLevel org.elasticsearch.cluster.metadata.IndexNameExpressionResolver.getSystemIndexAccessLevel()"}, "line": {"number": 892}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1emL8e1x5T-c3hj2quAYmwAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "MemorySegmentIndexInput.java"}, "function": {"name": "org.apache.lucene.store.MemorySegmentIndexInput org.apache.lucene.store.MemorySegmentIndexInput.slice(java.lang.String, long, long)", "offset": 14}, "line": {"number": 395}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T7Ugi353BwPylAwIPK3gzQAAAAAAAAHG"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "void org.elasticsearch.search.fetch.FetchPhase.execute(org.elasticsearch.search.internal.SearchContext)", "offset": 63}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4kgJPxDp_y70g-_9SJBKrwAAAAAAAABw"}} +{"Stackframe": {"file": {"name": "AsyncIOProcessor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AsyncIOProcessor.put(java.lang.Object, java.util.function.Consumer)", "offset": 28}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2WuDX_7V5y0Pc0pDkF5WNQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "EPoll.java"}, "function": {"name": "int sun.nio.ch.EPoll.wait(int, long, int, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mElwt1Dp4YSxqVbIbt9WBgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "BufferedChecksumIndexInput.java"}, "function": {"name": "void org.apache.lucene.store.BufferedChecksumIndexInput.close()"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-bdPLgVx58dzwkE7OjvI9QAAAAAAAACe"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 53}, "line": {"number": 467}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oG3DRiZKlMZ3sh3A8whkKQAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.search.suggest.completion.CompletionStats org.elasticsearch.index.shard.IndexShard.completionStats(java.lang.String[])", "offset": 2}, "line": {"number": 740}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Toc_6mTE7mzZcU4cdIY_aQAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "ClusterStateNodeUpdater.java"}, "function": {"name": "void org.elasticsearch.plugin.found.zookeeper.updaters.ClusterStateNodeUpdater.clusterChanged(org.elasticsearch.cluster.ClusterState)", "offset": 5}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EhnUEyLdMI1yNxJ5pv0IawAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "HandledTransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.HandledTransportAction$TransportHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j4w58zsaqOfxzn9j73toSwAAAAAAAAC7"}} +{"Stackframe": {"file": {"name": "NioSocketChannel.java"}, "function": {"name": "void io.netty.channel.socket.nio.NioSocketChannel.doWrite(io.netty.channel.ChannelOutboundBuffer)", "offset": 42}, "line": {"number": 432}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VAcs5JM676bIIEJRUL9kYQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesConsumer org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.getInstance(org.apache.lucene.index.FieldInfo)"}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UcVFTnPcRwLwEdnWw6ouGAAAAAAAAABk"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKey(java.nio.channels.SelectionKey, io.netty.channel.nio.AbstractNioChannel)", "offset": 40}, "line": {"number": 638}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T9jB4qnc_5xFsdcbo1_ZFQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.finishStoredFields()"}, "line": {"number": 463}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYK2"}} +{"Stackframe": {"function": {"name": "clear_page_erms"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlxhE"}} +{"Stackframe": {"function": {"name": "established_get_next"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KFGBFnajTppUPwKMAfWXvQAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "AbstractInterruptibleChannel.java"}, "function": {"name": "void java.nio.channels.spi.AbstractInterruptibleChannel.close()", "offset": 4}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cQ6Qsfe6NvfD6UlZmix01AAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "AbstractNioByteChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read()"}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ty6LTUlzeN2dWkQMKHPovwAAAAAAAANV"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.doSnapshotShard(org.elasticsearch.repositories.SnapshotShardContext)", "offset": 151}, "line": {"number": 2839}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tjEDIxS1EsZE2YemSuULDQAAAAAAAADc"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ReroutePhase.doRun()", "offset": 30}, "line": {"number": 688}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AAAAAAAAV4sAAAAAAAAAHbvnW3Y94J25"}} +{"Stackframe": {"function": {"name": "SafepointBlob"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Lu4BbYQNxvrnJvSur5jWAAAAAAAAAACq"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 16}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9LcbhYCkWtGyipSFqusBKQAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeMap(org.elasticsearch.common.collect.ImmutableOpenMap, org.elasticsearch.common.io.stream.Writeable$Writer, org.elasticsearch.common.io.stream.Writeable$Writer)", "offset": 3}, "line": {"number": 629}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0iD-cS1eIkEni9SNzthfngAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "RestGetSnapshotsAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.admin.cluster.RestGetSnapshotsAction.lambda$prepareRequest$0(org.elasticsearch.client.node.NodeClient, org.elasticsearch.rest.RestRequest, org.elasticsearch.action.admin.cluster.snapshots.get.GetSnapshotsRequest, org.elasticsearch.rest.RestChannel)", "offset": 1}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p6M7RL_7D-Wh7RG9qBPO-QAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "FieldMapper.java"}, "function": {"name": "int org.elasticsearch.index.mapper.FieldMapper$MultiFields$1.compare(org.elasticsearch.index.mapper.Mapper, org.elasticsearch.index.mapper.Mapper)"}, "line": {"number": 616}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.getRoles(org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)"}, "line": {"number": 191}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mW2YX0W7f8kHZ9OF_UwxgwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.exists(java.nio.file.Path)", "offset": 2}, "line": {"number": 537}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.refresh(java.lang.String)", "offset": 4}, "line": {"number": 1030}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "void org.elasticsearch.search.internal.ContextIndexSearcher.search(java.util.List, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 3}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$1846.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NAjnT1vveGWXoLNkwmxpQQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.json.JsonXContentGenerator.writeStringField(java.lang.String, java.lang.String)"}, "line": {"number": 266}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VfltgKq90uqCaKQjDIFzVQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "JsonGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.core.JsonGenerator.writeNullField(java.lang.String)"}, "line": {"number": 1531}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UzpT8KmlTneCrZW0Xa3m6AAAAAAAAAEg"}} +{"Stackframe": {"file": {"name": "DocumentMapperParser.java"}, "function": {"name": "org.elasticsearch.index.mapper.DocumentMapper org.elasticsearch.index.mapper.DocumentMapperParser.parse(java.lang.String, java.util.Map, java.lang.String)", "offset": 45}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMcD"}} +{"Stackframe": {"function": {"name": "ip_finish_output2"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "v98Nje6Ys-SL3vVkHXAt8wAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.ObjectParser$$Lambda$2347+0x0000000801342fb8.apply(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZT9893s0TSmaFPSQimvLOgAAAAAAAADl"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "void org.elasticsearch.indices.IndicesService.removeIndex(org.elasticsearch.index.Index, org.elasticsearch.indices.cluster.IndicesClusterStateService$AllocatedIndices$IndexRemovalReason, java.lang.String)", "offset": 25}, "line": {"number": 887}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "finhoQfoECf6Q4HPC08YkAAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "boolean io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)", "offset": 11}, "line": {"number": 470}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABY"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.lang.Object java.util.stream.AbstractPipeline.evaluate(java.util.stream.TerminalOp)", "offset": 7}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cXlweJcTpRnUmFxwZ3wPIwAAAAAAAAEJ"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 64}, "line": {"number": 500}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-4NirsgyEEPl7WtLpQu2SQAAAAAAAACG"}} +{"Stackframe": {"file": {"name": "EatWhatYouKill.java"}, "function": {"name": "void org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(boolean)", "offset": 31}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rvNKTIRRLAkjGV72wU2OkgAAAAAAAAFO"}} +{"Stackframe": {"file": {"name": "IndicesAndAliasesResolver.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authz.ResolvedIndices org.elasticsearch.xpack.security.authz.IndicesAndAliasesResolver.resolveIndicesAndAliases(java.lang.String, org.elasticsearch.action.IndicesRequest, org.elasticsearch.cluster.metadata.Metadata, java.util.Set)", "offset": 51}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Yd3m7to-rQ0lGj5ikS-dAwAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "StoredFieldLoader.java"}, "function": {"name": "java.util.List org.elasticsearch.index.fieldvisitor.StoredFieldLoader.fieldsToLoad(boolean, java.util.Set)", "offset": 7}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WgnWJF5xNWl_wwu7DvgTzQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ShardSnapshotTaskRunner$FileSnapshotTask$$Lambda$10733+0x000000080297f9d0.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i4D5xJNscGSiKO3_W_aYYwAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "org.elasticsearch.search.fetch.FetchSubPhase$HitContext org.elasticsearch.search.fetch.FetchPhase.prepareHitContext(org.elasticsearch.search.internal.SearchContext, org.elasticsearch.search.fetch.FetchPhase$Profiler, org.elasticsearch.search.LeafNestedDocuments, org.elasticsearch.index.fieldvisitor.FieldsVisitor, int, java.util.Map, org.apache.lucene.index.LeafReaderContext, org.elasticsearch.common.CheckedBiConsumer)", "offset": 1}, "line": {"number": 273}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "IndexSearcher.java"}, "function": {"name": "void org.apache.lucene.search.IndexSearcher.search(org.apache.lucene.search.Query, org.apache.lucene.search.Collector)", "offset": 1}, "line": {"number": 443}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uMFx2Fq4FWmDdC9qTh9OCwAAAAAAAAE0"}} +{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile.inbound(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.action.ActionListener)", "offset": 34}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y_F3wsW4jiujqo6Je7YffgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "MultiDocValues.java"}, "function": {"name": "int org.apache.lucene.index.MultiDocValues$OrdinalMap.getFirstSegmentNumber(long)"}, "line": {"number": 652}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SwknGjaLKG0Gph6rnFuRjwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "HashSet.java"}, "function": {"name": "java.util.Iterator java.util.HashSet.iterator()"}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7uo6HnEu95TqHvEix8e-NAAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "FileRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.file.FileRealm.doAuthenticate(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener)"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "r0viM1MkQFoluKwRuIJ7LwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.access$500(com.amazonaws.http.AmazonHttpClient$RequestExecutor)"}, "line": {"number": 715}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TVILalueBBKmusxvrzs61AAAAAAAAAFQ"}} +{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.tasks.TaskManager.register(java.lang.String, java.lang.String, org.elasticsearch.tasks.TaskAwareRequest, boolean)", "offset": 30}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "St7lFjY3zfwOi_rfHJtWoQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Object, java.util.Set)"}, "line": {"number": 1075}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJwQ-"}} +{"Stackframe": {"function": {"name": "__vunmap"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1oTFJJD8oE6SApFeuZctegAAAAAAAACK"}} +{"Stackframe": {"file": {"name": "MappingVisitor.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.stats.MappingVisitor.visitMapping(java.util.Map, java.lang.String, java.util.function.BiConsumer)", "offset": 11}, "line": {"number": 34}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PHkw6KCW6WHcDhD0gWZvxQAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.incomingRequest(org.elasticsearch.http.HttpRequest, org.elasticsearch.http.HttpChannel)", "offset": 3}, "line": {"number": 378}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8Elj1SjuDmCtQF4C1lj1DwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "PooledDirectByteBuf.java"}, "function": {"name": "java.nio.ByteBuffer io.netty.buffer.PooledDirectByteBuf.newInternalNioBuffer(java.lang.Object)"}, "line": {"number": 30}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "c8zFoGf2iwssgQlulfqQkAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "java.lang.Object[] java.util.stream.ReferencePipeline.toArray()"}, "line": {"number": 622}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eNbj51SwVufxZ4R3ztSduAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline$3$1.accept(java.lang.Object)"}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QtMelJKn2GMpVgIdbCShVAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermission.impliesIgnoreMask(java.io.FilePermission)"}, "line": {"number": 589}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eRQqY-uKn1zCanFBx5tpKgAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "Lucene90DocValuesFormat.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesConsumer org.apache.lucene.codecs.lucene90.Lucene90DocValuesFormat.fieldsConsumer(org.apache.lucene.index.SegmentWriteState)"}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UGAPUw2d5-4XxhgrPyPBigAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "int io.netty.channel.nio.NioEventLoop.select(long)", "offset": 5}, "line": {"number": 807}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "analpbZFBBB1VOs3P5WUhgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "SearchHitField.java"}, "function": {"name": "org.elasticsearch.search.SearchHitField org.elasticsearch.search.SearchHitField.readSearchHitField(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "t9mUJ2Mi-Tf4Kg7L-7UGQQAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.acquireReplicaOperationPermit(org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.action.ActionListener, long, long, long)"}, "line": {"number": 1084}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3xSivts4s-tBo1MMFQEENgAAAAAAAAAv"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.lambda$doAuthenticate$1(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 3}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AbstractRunnable.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractRunnable.run()"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1WwaSXc6MUqSl16CLws0XwAAAAAAAACe"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "int java.io.FilePermission.containsPath(java.nio.file.Path, java.nio.file.Path)", "offset": 43}, "line": {"number": 744}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JdCwn38kQFolt808Z0rZSwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.access$500(com.amazonaws.http.AmazonHttpClient$RequestExecutor)"}, "line": {"number": 698}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zjgMi0OYibUoh7tbcHBcrQAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "org.apache.lucene.index.SortedSetDocValues org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsReader.getSortedSet(org.apache.lucene.index.FieldInfo)", "offset": 1}, "line": {"number": 352}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XC6L15Kt514imYVx1Y69DQAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.value(java.lang.String)", "offset": 3}, "line": {"number": 667}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcFF"}} +{"Stackframe": {"function": {"name": "__x64_sys_newfstat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UEuQmz09BPcAbp-3Qq9EiQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService$TaskOutputs$$Lambda$7986+0x0000000801f37918.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I-x1LAFAVSv9J3myRVqiIwAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "HealthChecks.java"}, "function": {"name": "java.util.concurrent.CompletionStage no.found.service.health.HealthChecks.lambda$executeChecks$1(java.util.concurrent.Executor, java.util.Map$Entry)", "offset": 2}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kJCg5l0wTnKMeEYikbvwfwAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "void org.apache.lucene.search.ReferenceManager.doMaybeRefresh()", "offset": 6}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZD__m2aPUK59vfy2OzTc7QAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "NodesFaultDetection.java"}, "function": {"name": "void org.elasticsearch.discovery.zen.NodesFaultDetection$PingRequest.readFrom(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6BwAkRvxd04IN-6a_oJgBgAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "RetryableAction.java"}, "function": {"name": "void org.elasticsearch.action.support.RetryableAction.run()", "offset": 2}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uAJ7Ejp2OmtSJu2OeVEBYAAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.List org.elasticsearch.xcontent.support.AbstractXContentParser.readListUnsafe(org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier)", "offset": 3}, "line": {"number": 365}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Aipm0fjmoj6u2FCEnbw1dAAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "Lucene54DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene54.Lucene54DocValuesProducer$CompressedBinaryDocValues$CompressedBinaryTermsEnum.readHeader()", "offset": 1}, "line": {"number": 1306}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EbH1r4m4pobix__maqwQZAAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "MessageToMessageEncoder.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageEncoder.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 7}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6fJSMrZAuK4u6qtYNuA-RgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "MultiOrdinals.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.elasticsearch.index.fielddata.ordinals.MultiOrdinals$MultiDocs.lookupOrd(long)"}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 4}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T5Q31GDfksV6CJ4DGSPDfwAAAAAAAABU"}} +{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "java.util.concurrent.ConcurrentHashMap$Node java.util.concurrent.ConcurrentHashMap$Traverser.advance()", "offset": 9}, "line": {"number": 3367}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3uCPACWOBgKiHyWp2ia3YQAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.onResponse(org.elasticsearch.core.Releasable)", "offset": 2}, "line": {"number": 649}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m-i3pqvNoPRjOJ3b3sEiiwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "DocIDMerger.java"}, "function": {"name": "org.apache.lucene.index.DocIDMerger$Sub org.apache.lucene.index.DocIDMerger$SequentialDocIDMerger.next()"}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipGH"}} +{"Stackframe": {"function": {"name": "__x64_sys_recvfrom"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oCqIpaPRYCPPmXbYCUxXqwAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator$$Lambda$7962+0x0000000802626840.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fuEHn8q60FYe5JGUD_z4LgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "SearchExecutionContext.java"}, "function": {"name": "org.elasticsearch.index.query.ParsedQuery org.elasticsearch.index.query.SearchExecutionContext.toQuery(org.elasticsearch.index.query.QueryBuilder)"}, "line": {"number": 509}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAllGK"}} +{"Stackframe": {"function": {"name": "tcp_data_ready"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Sp9UjTJ6AKwagodjyx73jwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.xpack.core.ilm.PhaseExecutionInfo$$Lambda$7779+0x0000000801f10450.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ERC3TORIgU0YrmeCK0zHCgAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer()", "offset": 2}, "line": {"number": 2585}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pglWm0RMq3BU4u1P5KYMegAAAAAAAABq"}} +{"Stackframe": {"file": {"name": "SettingsFilter.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.SettingsFilter.filterSettings(java.lang.Iterable, org.elasticsearch.common.settings.Settings)", "offset": 11}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp11c"}} +{"Stackframe": {"function": {"name": "_raw_read_lock_bh"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAll9_"}} +{"Stackframe": {"function": {"name": "tcp_data_queue"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJWCo"}} +{"Stackframe": {"function": {"name": "__pte_alloc"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fhpDQNd5UmqqnR1Mw5dfLAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ManagementFactory.java"}, "function": {"name": "java.util.stream.Stream java.lang.management.ManagementFactory.lambda$getPlatformMXBeans$3(java.lang.Class, sun.management.spi.PlatformMBeanProvider$PlatformComponent)"}, "line": {"number": 729}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BHKlRH4kXxh81NmPptVLmwAAAAAAAACd"}} +{"Stackframe": {"file": {"name": "MultiTermsEnum.java"}, "function": {"name": "org.apache.lucene.index.PostingsEnum org.apache.lucene.index.MultiTermsEnum.postings(org.apache.lucene.index.PostingsEnum, int)", "offset": 21}, "line": {"number": 365}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ctx_9RVQASujUdCT9XDhwAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.s3.SocketAccess$$Lambda$6887+0x0000000801e01b58.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1kRkZENrD0C0zg-5j1NV2AAAAAAAAACf"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.tryAllHandlers(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 32}, "line": {"number": 532}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_tlTAmcGAHtBLcN6n5At5wAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.mapOrdered()"}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "void java.util.stream.AbstractPipeline.copyInto(java.util.stream.Sink, java.util.Spliterator)", "offset": 4}, "line": {"number": 509}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00D"}} +{"Stackframe": {"function": {"name": "schedule_hrtimeout_range_clock"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Qd2u0guBgJM1heDZ97a_eQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "int org.apache.lucene.codecs.DocValuesConsumer$5$1.nextDoc()"}, "line": {"number": 848}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wtgpZp9SPQlV85UePoIRQgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.loadAuthorizedIndices(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 2}, "line": {"number": 366}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIK4"}} +{"Stackframe": {"function": {"name": "ip_sublist_rcv"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kq-iqAfsI2XGc38wp7FIjAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.access$200(org.elasticsearch.action.support.replication.ReplicationOperation, org.elasticsearch.cluster.routing.ShardRouting, java.util.function.LongSupplier, java.util.function.LongSupplier)"}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RzeRYnYEGaLjOWmtUX4zlwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FollowersChecker.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.FollowersChecker$FollowerChecker$3.run()"}, "line": {"number": 403}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9kFU2LomHVw8wFCPVbeIxAAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "BytesStore.java"}, "function": {"name": "void org.apache.lucene.util.fst.BytesStore$2.(org.apache.lucene.util.fst.BytesStore)", "offset": 1}, "line": {"number": 449}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWy1"}} +{"Stackframe": {"function": {"name": "ksys_read"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0g23KMO5w_-owkeAZD-MsAAAAAAAAACb"}} +{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile.lambda$inbound$2(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.authc.Authentication)", "offset": 20}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JvScc-kAblhDe3HgLZgGAwAAAAAAAACN"}} +{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.CommonStats.(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 9}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MNT8L4auG-atyEVtUs402QAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeOptionalWriteable(org.elasticsearch.common.io.stream.Writeable)", "offset": 2}, "line": {"number": 972}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ahi10GzcXmlXnZKg3UIU8wAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.rawField(java.lang.String, java.io.InputStream)"}, "line": {"number": 1069}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALm5y"}} +{"Stackframe": {"function": {"name": "path_openat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tMlQRUcqMTg123vaMnWXIQAAAAAAAAFr"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService.runTasks(org.elasticsearch.cluster.service.MasterService$TaskInputs)", "offset": 60}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FhB955OLKEut8ODAZcajDgAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.callDecode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 19}, "line": {"number": 440}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YLpDdTG4cbSOh219-7CCowAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "LRUQueryCache.java"}, "function": {"name": "void org.apache.lucene.search.LRUQueryCache$1.collect(int)"}, "line": {"number": 520}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j9nrUn1ozBwNCW0cIRIfuAAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorize$1(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo)", "offset": 1}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GY5WEW77dofWJpcPe0twUgAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$authorizeIndexAction$3(org.elasticsearch.transport.TransportRequest, org.elasticsearch.xpack.core.security.authz.permission.Role, java.lang.String, org.elasticsearch.action.ActionListener, java.util.Map, org.elasticsearch.xpack.core.security.authz.ResolvedIndices)", "offset": 8}, "line": {"number": 375}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j9wdcHVIMBX64V9dKDLXoAAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "PrioritizedEsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.run()", "offset": 6}, "line": {"number": 225}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I48brEkgWPSZXqrqrHkPZQAAAAAAAACt"}} +{"Stackframe": {"file": {"name": "TranslogWriter.java"}, "function": {"name": "boolean org.elasticsearch.index.translog.TranslogWriter.syncUpTo(long)", "offset": 28}, "line": {"number": 481}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pNtpiTHrv5y9QgqWqBfS_QAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "EofSensorInputStream.java"}, "function": {"name": "int org.apache.http.conn.EofSensorInputStream.read(byte[], int, int)", "offset": 4}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWZU"}} +{"Stackframe": {"function": {"name": "__snmp6_fill_stats64.isra.49"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CMOLX12QynGJCu7CxyKH2AAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$1.onResponse(org.elasticsearch.action.ActionResponse)", "offset": 2}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tQjdsVMJULt1As7mbOCEqAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannel.writeAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$$Lambda$4315+0x0000000801928ab8.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gbCFQS2suYv46rP_aUsebAAAAAAAAAL_"}} +{"Stackframe": {"file": {"name": "FieldsIndexWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.FieldsIndexWriter.finish(int, long, org.apache.lucene.store.IndexOutput)", "offset": 61}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bjcUghqxVEyhK0JMryYfBwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.IndexWriter$$Lambda$7659+0x0000000802592dc8.close()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QuKBCI0MGQoEy6EB3hTY_QAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.apache.lucene.search.BooleanWeight.scorerSupplier(org.apache.lucene.index.LeafReaderContext)", "offset": 2}, "line": {"number": 533}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VgImNB_AseUMjfw9acwHDgAAAAAAAAEj"}} +{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.mergeSortedSetField(org.apache.lucene.index.FieldInfo, org.apache.lucene.index.MergeState)", "offset": 42}, "line": {"number": 801}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u_puopvsV1MzjtS2CqfR6gAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object)"}, "line": {"number": 704}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aYaXPq6Lv-HexLpgIGC1HgAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "HttpClient.java"}, "function": {"name": "boolean sun.net.www.http.HttpClient.available()", "offset": 10}, "line": {"number": 467}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ESPns7lbU8VZMyqWy_O6awAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Mapping.java"}, "function": {"name": "org.elasticsearch.index.mapper.MetadataFieldMapper org.elasticsearch.index.mapper.Mapping.getMetadataMapperByName(java.lang.String)"}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAACHUP"}} +{"Stackframe": {"function": {"name": "xfs_trans_commit"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YWaemXXt9iU7-uBEK9yL3wAAAAAAAAB7"}} +{"Stackframe": {"file": {"name": "Class.java"}, "function": {"name": "java.io.InputStream java.lang.Class.getResourceAsStream(java.lang.String)", "offset": 36}, "line": {"number": 2882}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ehQvtvBlK4IQ9UDydaS_ygAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "ConjunctionScorer.java"}, "function": {"name": "void org.apache.lucene.search.ConjunctionScorer.(org.apache.lucene.search.Weight, java.util.Collection, java.util.Collection)", "offset": 2}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dZyBLGHQLBVX6bhwOj9TowAAAAAAAACT"}} +{"Stackframe": {"file": {"name": "BitsetFilterCache.java"}, "function": {"name": "org.apache.lucene.util.BitSet org.elasticsearch.index.cache.bitset.BitsetFilterCache.getAndLoadIfNotPresent(org.apache.lucene.search.Query, org.apache.lucene.index.LeafReaderContext)", "offset": 25}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OcrWUHEqh-zll2_gAtcNYwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.stat(sun.nio.fs.UnixPath, sun.nio.fs.UnixFileAttributes)", "offset": 2}, "line": {"number": 286}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rVJnJ5WgkAAuxcvebNsXPwAAAAAAAACu"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "int io.netty.handler.ssl.SslHandler.unwrap(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, int)", "offset": 39}, "line": {"number": 1374}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vJ0-lPXRGh0CL0gINj6_jwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "InputStreamReader.java"}, "function": {"name": "int java.io.InputStreamReader.read(char[], int, int)"}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o9I8XHop3y7uLb8wdADAN______AcQHw"}} +{"Stackframe": {"function": {"name": "__key.128173"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0gS"}} +{"Stackframe": {"function": {"name": "schedule_timeout"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UKLoduJn5-YPXULy7Ukl9AAAAAAAAABu"}} +{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.score(org.apache.lucene.search.LeafCollector, org.apache.lucene.util.Bits, int, int)", "offset": 13}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rBwENpDATDst6L2Jv2MgnwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "org.elasticsearch.cluster.Diff org.elasticsearch.cluster.ClusterState.diff(org.elasticsearch.cluster.ClusterState)"}, "line": {"number": 682}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IwWSLDFKbE55JoXCKhV27wAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "boolean org.elasticsearch.xpack.security.authc.support.BCrypt.checkpw(org.elasticsearch.common.settings.SecureString, java.lang.String)"}, "line": {"number": 784}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3iGrgdANv3jMFelytBANiwAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "PlatformComponent.java"}, "function": {"name": "java.lang.management.PlatformComponent java.lang.management.PlatformComponent.getPlatformComponent(java.lang.Class)", "offset": 3}, "line": {"number": 462}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1vmWfRl7JvnIelrwmbOFDwAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 17}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlJy0"}} +{"Stackframe": {"function": {"name": "ip_forward"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5BDw-_iNJdvQnGiR4GTycQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction$1.handleResponse(org.elasticsearch.action.support.nodes.BaseNodeResponse)"}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VgImNB_AseUMjfw9acwHDgAAAAAAAAE3"}} +{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.mergeSortedSetField(org.apache.lucene.index.FieldInfo, org.apache.lucene.index.MergeState)", "offset": 45}, "line": {"number": 804}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Og9hsTiyb-tO6K1EZiROQwAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress$Entry.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 6}, "line": {"number": 1429}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UX0maaM_jFdAmFMbhLpaSgAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.updateDocuments(org.apache.lucene.index.DocumentsWriterDeleteQueue$Node, java.lang.Iterable)", "offset": 3}, "line": {"number": 1471}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "idtvmh4QN6gpCMGU1zaMHwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ChannelActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.ChannelActionListener.onResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 32}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QVg0XAOEbp3JKK1NFLqVYQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.read(java.io.FileDescriptor, java.nio.ByteBuffer, long, sun.nio.ch.NativeDispatcher)"}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uHXk96D_H0MjX0tAh6AHfQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.inboundMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage)"}, "line": {"number": 710}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ql5LFJIFzBtywZjp054QqQAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.SingleThreadEventExecutor.execute0(java.lang.Runnable)", "offset": 1}, "line": {"number": 827}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T3lk77LF4G-nQZW_WRBUXQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "SSLTransport.java"}, "function": {"name": "sun.security.ssl.Plaintext sun.security.ssl.SSLTransport.decode(sun.security.ssl.TransportContext, java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 1}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "O2hSFZZOeE5g1kTv31qAYwAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "LoggingHandler.java"}, "function": {"name": "void io.netty.handler.logging.LoggingHandler.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 3}, "line": {"number": 249}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mdk6GXreYf1FfT2SjVM7cgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "HttpsURLConnectionImpl.java"}, "function": {"name": "void sun.net.www.protocol.https.HttpsURLConnectionImpl.connect()"}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuFs"}} +{"Stackframe": {"function": {"name": "__x64_sys_epoll_ctl"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tknRVtdrp8TkRV3X6AJ-KgAAAAAAAAGx"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleRequest(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.Header, org.elasticsearch.transport.InboundMessage)", "offset": 78}, "line": {"number": 249}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JtZWm99a_rUaGtgjeQwOcQAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.FSDirectory.createTempOutput(java.lang.String, java.lang.String, org.apache.lucene.store.IOContext)", "offset": 8}, "line": {"number": 267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1XRKT-mIPqTEPPQJ1OQKUwAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "Provider.java"}, "function": {"name": "java.lang.Object java.security.Provider.newInstanceUtil(java.lang.Class, java.lang.Class, java.lang.Object)", "offset": 2}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FZzIgNzHRBST9tkBv-Hj5wAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "long org.apache.lucene.search.Boolean2ScorerSupplier.computeCost()", "offset": 1}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zvtGCZWh7Ji_VQTOB6BAGQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TrackingDirectoryWrapper.java"}, "function": {"name": "void org.apache.lucene.store.TrackingDirectoryWrapper.deleteFile(java.lang.String)"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XXrVdKXHfuwS1zlgIKNhBAAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "S3RequestEndpointResolver.java"}, "function": {"name": "boolean com.amazonaws.services.s3.internal.S3RequestEndpointResolver.isValidIpV4Address(java.lang.String)", "offset": 9}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUktl"}} +{"Stackframe": {"function": {"name": "string_escape_mem"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApUaF"}} +{"Stackframe": {"function": {"name": "vsnprintf"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Pi-02an-VcSObLNuz_uUNQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "PackedLongValues.java"}, "function": {"name": "org.apache.lucene.util.packed.PackedLongValues$Iterator org.apache.lucene.util.packed.PackedLongValues.iterator()"}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4ATwOy2xX5oIgSybARkoywAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SettingsFilter.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.SettingsFilter.filter(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bOb86QTSjl0Tbgl6WGMPVwAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken()", "offset": 9}, "line": {"number": 716}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmKgX"}} +{"Stackframe": {"function": {"name": "inet_dump_ifaddr"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "void java.lang.Throwable.(java.lang.String)", "offset": 72}, "line": {"number": 270}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XODh_PNTdI03DfbDbvh0RQAAAAAAAABf"}} +{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "java.nio.ByteBuffer sun.security.ssl.SSLSocketImpl.readApplicationRecord(java.nio.ByteBuffer)", "offset": 31}, "line": {"number": 1466}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "76oMN5gawXJbUdBHZW56vAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext$WriteAndFlushTask.write(io.netty.channel.AbstractChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 1136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aErKLCqrgChwG7C_tbQ7iAAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "ManagementFactory.java"}, "function": {"name": "java.util.List java.lang.management.ManagementFactory.getPlatformMXBeans(java.lang.Class)", "offset": 8}, "line": {"number": 730}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e7YYWaQTMh8P2PCVzA2a8gAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "boolean java.util.AbstractMap.containsKey(java.lang.Object)", "offset": 8}, "line": {"number": 152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2UxNT-C0z0jLu_9A1XqURAAAAAAAAABp"}} +{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel)", "offset": 9}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x_VmsqzHmBQ-UoDqCh-tEwAAAAAAAAC0"}} +{"Stackframe": {"file": {"name": "MetadataCreateIndexService.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterState org.elasticsearch.cluster.metadata.MetadataCreateIndexService.applyCreateIndexRequest(org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.admin.indices.create.CreateIndexClusterStateUpdateRequest, boolean, java.util.function.BiConsumer)", "offset": 38}, "line": {"number": 393}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M9t3sX7Z2Nj1mpARCDGcawAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "EsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor.execute(java.lang.Runnable)", "offset": 2}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aReweV4JbHI12xb-EDBioQAAAAAAAAB8"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport$NodeChannels.sendRequest(long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions)", "offset": 12}, "line": {"number": 288}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "125X0goavCApK-g1l1pkWwAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader.readField(org.apache.lucene.store.DataInput, org.apache.lucene.index.StoredFieldVisitor, org.apache.lucene.index.FieldInfo, int)", "offset": 3}, "line": {"number": 214}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ji8QGmnKHoMZnaBBpWbi6gAAAAAAAADd"}} +{"Stackframe": {"file": {"name": "IndexLifecycleRunner.java"}, "function": {"name": "void org.elasticsearch.xpack.ilm.IndexLifecycleRunner.runPolicyAfterStateChange(java.lang.String, org.elasticsearch.cluster.metadata.IndexMetadata)", "offset": 44}, "line": {"number": 373}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nY6Bz6koyx0B67n9HdjFUAAAAAAAAABf"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.netty.channel.ChannelPromise)", "offset": 16}, "line": {"number": 825}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XJOIidNeiRs9_ZATFdFs-QAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "long org.apache.lucene.index.DocumentsWriterPerThread.updateDocument(java.lang.Iterable, org.apache.lucene.analysis.Analyzer, org.apache.lucene.index.Term)", "offset": 18}, "line": {"number": 232}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlzoH"}} +{"Stackframe": {"function": {"name": "tcp_v4_do_rcv"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TBMkprEh01zslJl_qiQmuAAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "byte[] org.elasticsearch.xpack.core.security.authc.support.BCrypt.crypt_raw(byte[], byte[], int, int[])", "offset": 12}, "line": {"number": 626}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PX3E_b7jZQaK6SiJYskQ3QAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "SearchTransportService.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchTransportService$10.messageReceived(org.elasticsearch.search.internal.InternalScrollSearchRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 1}, "line": {"number": 388}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TV4I1RlvgDs3r9lTlz2IzwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$SetFromMap.add(java.lang.Object)"}, "line": {"number": 5461}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yg6hUybbKOuy2Th8HYOfDgAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "BlobContainer.java"}, "function": {"name": "void org.elasticsearch.common.blobstore.BlobContainer.writeBlob(java.lang.String, org.elasticsearch.common.bytes.BytesReference, boolean)"}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AHbgjE1mrEUxDWK3HkjL9AAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "FieldMapper.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.index.mapper.FieldMapper.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 2}, "line": {"number": 382}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Lf0FUqPPVEEZg315uAAX-wAAAAAAAABu"}} +{"Stackframe": {"file": {"name": "AbstractObjectParser.java"}, "function": {"name": "java.util.List org.elasticsearch.common.xcontent.AbstractObjectParser.parseArray(org.elasticsearch.common.xcontent.XContentParser, org.elasticsearch.common.xcontent.AbstractObjectParser$IOSupplier)", "offset": 10}, "line": {"number": 370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hgyJEhWPF-ECyVisTpyRpgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object java.util.stream.Collectors$$Lambda$265+0x0000000800d60938.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TLtXUcG2a8E4RDCF9AerkwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "GlobalCheckpointSyncAction.java"}, "function": {"name": "void org.elasticsearch.index.seqno.GlobalCheckpointSyncAction.shardOperationOnPrimary(org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IQlAGYw-CJC9_-zjOojrDwAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService.lambda$sendSnapshotShardUpdate$2(org.elasticsearch.snapshots.UpdateIndexShardSnapshotStatusRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 495}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1yqnDrIzkRqyHd0qKpno_wAAAAAAAAFi"}} +{"Stackframe": {"file": {"name": "ExpandSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.ExpandSearchPhase.run()", "offset": 49}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bJ2LIYrLvR6QAV8mApWRXQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct.putRequest(java.lang.String, java.lang.String)", "offset": 1}, "line": {"number": 396}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KGcnodwCdbO2RZIs7I3VDAAAAAAAAAEq"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleRequest(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.Header, org.elasticsearch.transport.InboundMessage)", "offset": 58}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0"}} +{"Stackframe": {"function": {"name": "__lock_text_start"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u4IYC5TN1ydgkWzSPfggOAAAAAAAAABS"}} +{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient)", "offset": 8}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VPYOHzahM8nW-lI6iDLCtgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$CachingAsyncSupplier.lambda$getAsync$0(org.elasticsearch.action.ActionListener, java.lang.Object)", "offset": 1}, "line": {"number": 727}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NyCXG_gHdZq1XHZ_0tEWXgAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "IndexRoutingTable.java"}, "function": {"name": "java.util.List org.elasticsearch.cluster.routing.IndexRoutingTable.shardsWithState(org.elasticsearch.cluster.routing.ShardRoutingState)", "offset": 2}, "line": {"number": 254}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "euorzfxzTbeugeUuUsL4JQAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.performOnReplica(org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.action.support.replication.ReplicationRequest, long, long, org.elasticsearch.action.support.replication.PendingReplicationActions)", "offset": 87}, "line": {"number": 301}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dfaJS679SMFHynOlhaT4GQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService$AsyncRefreshTask.runInternal()"}, "line": {"number": 832}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cYiYZLNw79YI2sv5ZzfISgAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.finishDocument()", "offset": 10}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QmIa47dF-WTkDSMX25OUNgAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.performOnPrimary(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.update.UpdateHelper, java.util.function.LongSupplier, org.elasticsearch.action.bulk.MappingUpdatePerformer, java.util.function.Consumer, org.elasticsearch.action.ActionListener, org.elasticsearch.threadpool.ThreadPool, java.lang.String, java.util.function.Consumer)", "offset": 77}, "line": {"number": 282}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "O-USt_tIZNq8cAKvmLvdIgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "int sun.nio.fs.UnixNativeDispatcher.open(sun.nio.fs.UnixPath, int, int)", "offset": 2}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "A-41ReHkKXTbwuqT5HLDpQAAAAAAAADN"}} +{"Stackframe": {"file": {"name": "OutboundMessage.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.transport.OutboundMessage.serialize(org.elasticsearch.common.io.stream.BytesStreamOutput)", "offset": 40}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xhOAoPbUvqtSdEcy7uoPXwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SelectorImpl.java"}, "function": {"name": "int sun.nio.ch.SelectorImpl.select()"}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RfdnW4S6ROnXL_ZnN4YboQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "TransportClusterHealthAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.health.TransportClusterHealthAction.masterOperation(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.master.MasterNodeRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)"}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5so_KVSXFMoe2CmzNIidzQAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "NodeService.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.info.NodeInfo org.elasticsearch.node.NodeService.info(boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean)", "offset": 1}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pcTDNUcLRtNIQuaGXrSGyQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "Util.java"}, "function": {"name": "javax.management.ObjectName sun.management.Util.newObjectName(java.lang.String)"}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Or3A_uFtf7YBOMVYzqReaQAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor.sendRequestInner(org.elasticsearch.transport.TransportInterceptor$AsyncSender, org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 4}, "line": {"number": 215}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eDq0W4O8__hpgO-kAgz9IAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "org.apache.lucene.document.Document org.elasticsearch.gateway.PersistedClusterStateService$Writer.makeGlobalMetadataDocument(org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.gateway.PersistedClusterStateService$DocumentBuffer)"}, "line": {"number": 1018}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "f5pCmW13zl5OWUDLG_ClrwAAAAAAAABN"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.executeQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)", "offset": 9}, "line": {"number": 635}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_77qZUb1XG2M2XPwW_4fagAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "DeflaterOutputStream.java"}, "function": {"name": "void java.util.zip.DeflaterOutputStream.close()", "offset": 1}, "line": {"number": 237}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ty6LTUlzeN2dWkQMKHPovwAAAAAAAACu"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.doSnapshotShard(org.elasticsearch.repositories.SnapshotShardContext)", "offset": 25}, "line": {"number": 2713}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SEAz2xfqrNiGYU5T_aIXXgAAAAAAAADw"}} +{"Stackframe": {"file": {"name": "ResizeRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.ResizeRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 39}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xVOmAk0hLEywDTna7YZ20QAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "Spliterators.java"}, "function": {"name": "boolean java.util.Spliterators$1Adapter.hasNext()", "offset": 1}, "line": {"number": 681}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "enCT2wT4vOCHFvMHhBSliQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService$AsyncRefreshTask.runInternal()"}, "line": {"number": 1012}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LlS_2xs10ssihc5Uh6NqzgAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "DataOutput.java"}, "function": {"name": "void org.apache.lucene.store.DataOutput.writeVInt(int)", "offset": 4}, "line": {"number": 191}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 738}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMln1"}} +{"Stackframe": {"function": {"name": "show_mountinfo"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcCd"}} +{"Stackframe": {"function": {"name": "__x64_sys_newfstatat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.authenticateAsync(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 27}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DB9sD0JA2GraAv0uQFBumwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(java.lang.Object)"}, "line": {"number": 831}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QCpTjDTKUp_pYKDMN885SQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "GCTR.java"}, "function": {"name": "void com.sun.crypto.provider.GCTR.(com.sun.crypto.provider.SymmetricCipher, byte[])"}, "line": {"number": 61}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh"}} +{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile.inbound(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.action.ActionListener)", "offset": 39}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "shNXixs-94AywpTuAMqgvAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.List org.elasticsearch.common.io.stream.StreamInput.readList(org.elasticsearch.common.io.stream.Writeable$Reader)"}, "line": {"number": 1204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAEh"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 31}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8PieNjC1veMxdb12gfHBLwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.seqno.SeqNoStats org.elasticsearch.index.shard.IndexShard.seqNoStats()"}, "line": {"number": 1283}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "c4tAsAimVlPgj7zIV9p01AAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Hasher.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authc.support.Hasher.verifyHash(org.elasticsearch.common.settings.SecureString, char[])", "offset": 1}, "line": {"number": 618}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CkV75JgYBXf-KhQ2Owuf9wAAAAAAAABw"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrap(io.netty.channel.ChannelHandlerContext, boolean)", "offset": 22}, "line": {"number": 829}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "com.typesafe.config.impl.AbstractConfigValue com.typesafe.config.impl.SimpleConfig.findKeyOrNull(com.typesafe.config.impl.AbstractConfigObject, java.lang.String, com.typesafe.config.ConfigValueType, com.typesafe.config.impl.Path)", "offset": 5}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xKz6OkGVzOf5KmhaoK3F7QAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.updateFailedShardsCache(org.elasticsearch.cluster.ClusterState)"}, "line": {"number": 241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EcvbPwVD2xiMdhU7CZwtHQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObjectOrField(org.elasticsearch.index.mapper.ParseContext, org.elasticsearch.index.mapper.Mapper)", "offset": 4}, "line": {"number": 553}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YDygzD4g32kYyEUwGvnhaAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Lucene54DocValuesProducer.java"}, "function": {"name": "long org.apache.lucene.codecs.lucene54.Lucene54DocValuesProducer$3.get(long)"}, "line": {"number": 513}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEuXf"}} +{"Stackframe": {"function": {"name": "hrtimer_active"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Io3TUEjg3VhqUZyexECqgAAAAAAAABC"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.refresh(java.lang.String)", "offset": 9}, "line": {"number": 632}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NB9Wtr18BllcC8telVa6ewAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "NativeThread.java"}, "function": {"name": "long sun.nio.ch.NativeThread.current()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nnN2-U_s8SdanlpQLAPXRAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "DefaultChannelPromise.java"}, "function": {"name": "boolean io.netty.channel.DefaultChannelPromise.trySuccess()"}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter$EventQueue.processEvents()", "offset": 2}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X3GdeQP-f7ta19Ve9HCXlgAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "boolean java.util.ArrayList.add(java.lang.Object)", "offset": 1}, "line": {"number": 467}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eyyzzsctNMm8Ix0F5BKrQwAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "void sun.nio.fs.UnixPath.checkRead()", "offset": 2}, "line": {"number": 795}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DjB9rnpR9s2OI-jlVfuXnAAAAAAAAADm"}} +{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.handleIncomingRequest(org.elasticsearch.http.HttpRequest, org.elasticsearch.http.HttpChannel, java.lang.Exception)", "offset": 73}, "line": {"number": 461}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o8_zIcJ_jqi5-Mstw26jrgAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "java.util.Map org.elasticsearch.cluster.SnapshotsInProgress.collectByRepo(org.elasticsearch.common.io.stream.StreamInput)", "offset": 6}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VwaGRjsI3iJyn8klEZc0AgAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "StreamSpliterators.java"}, "function": {"name": "boolean java.util.stream.StreamSpliterators$AbstractWrappingSpliterator.fillBuffer()", "offset": 1}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-1XqE2W4hU4x2_iRlb0aiQAAAAAAAAB5"}} +{"Stackframe": {"file": {"name": "Matcher.java"}, "function": {"name": "boolean java.util.regex.Matcher.search(int)", "offset": 12}, "line": {"number": 1728}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1fYA4NRvqEW8cCN5tNzvwgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "ElasticApmTracer.java"}, "function": {"name": "co.elastic.apm.agent.configuration.ServiceInfo co.elastic.apm.agent.impl.ElasticApmTracer.getServiceInfoForClassLoader(java.lang.ClassLoader)", "offset": 3}, "line": {"number": 866}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bA3qX86DKyPOkhqFKNfdIwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext.restore()"}, "line": {"number": 466}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCEy"}} +{"Stackframe": {"function": {"name": "seq_dentry"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "a1rORv6uw2uAWC1se05SoQAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.lambda$handleRequest$2(java.lang.String, org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 5}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5T8Yhyloa65D1snwfHUbjwAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "SyncedFlushService.java"}, "function": {"name": "void org.elasticsearch.indices.flush.SyncedFlushService$2.doRun()"}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "avfO9wX8Y6wuHuPsqC9ogQAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "ReplicationTracker.java"}, "function": {"name": "void org.elasticsearch.index.seqno.ReplicationTracker.updateReplicationGroupAndNotify()", "offset": 3}, "line": {"number": 941}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Qzn1A6CqCIZUpcbEC_VoFgAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.lambda$getAuthenticatorConsumer$5(boolean, org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.security.authc.Authenticator, org.elasticsearch.action.ActionListener)", "offset": 14}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5w4q2mErvPJM1j09ut3VHwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.deleteFile(java.lang.String)"}, "line": {"number": 705}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "904l_cPBaHo3Pqi6bokDcQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.acquirePrimaryOperationPermit(org.elasticsearch.action.ActionListener, java.lang.String, java.lang.Object)"}, "line": {"number": 3313}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RlK4jZbFueXylWP1GNjNSQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "SearchRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.SearchRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)"}, "line": {"number": 21}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M_3_jtmQdZcF_4BETyfPhAAAAAAAAACB"}} +{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "int sun.nio.ch.FileChannelImpl.readInternal(java.nio.ByteBuffer, long)", "offset": 10}, "line": {"number": 839}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "f_9fGUQaN970lob5Do-YiQAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "CompressedXContent.java"}, "function": {"name": "void org.elasticsearch.common.compress.CompressedXContent.(org.elasticsearch.common.bytes.BytesReference)", "offset": 7}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpAY"}} +{"Stackframe": {"function": {"name": "filename_lookup"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9sYnFbigFrf_-fozodwm9QAAAAAAAABx"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "int org.apache.lucene.index.DefaultIndexingChain.processField(int, org.apache.lucene.index.IndexableField, long, int)", "offset": 13}, "line": {"number": 527}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSGZ"}} +{"Stackframe": {"function": {"name": "__x64_sys_fchmodat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "48NTOm9REY9geqrnhLmtIQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "FilterIndexOutput.java"}, "function": {"name": "void org.elasticsearch.common.lucene.store.FilterIndexOutput.writeBytes(byte[], int, int)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "At2XjH9VGC3bb_7sv7ixNgAAAAAAAACJ"}} +{"Stackframe": {"file": {"name": "TransportClusterStatsAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction.newResponseAsync(org.elasticsearch.tasks.Task, org.elasticsearch.action.admin.cluster.stats.ClusterStatsRequest, java.util.List, java.util.List, org.elasticsearch.action.ActionListener)", "offset": 10}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3QWEH8eApmH_ruugOKv76AAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress.(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QMiTLH0MGx0uAE3snN1YTQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "ForEachOps.java"}, "function": {"name": "java.lang.Object java.util.stream.ForEachOps$ForEachOp$OfLong.evaluateSequential(java.util.stream.PipelineHelper, java.util.Spliterator)"}, "line": {"number": 209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport$RequestHandler.doRun()"}, "line": {"number": 1553}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5utt2dQ8HKrTepHdNpprxQAAAAAAAAFz"}} +{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.CommonStats org.elasticsearch.action.admin.indices.stats.CommonStats.getShardLevelStats(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 25}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9He8ZdMBAF9PS-5yut3VeAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "StackTraceElement.java"}, "function": {"name": "void java.lang.StackTraceElement.initStackTraceElements(java.lang.StackTraceElement[], java.lang.Object, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M_MfJrZLrX3P0R0dWrP49AAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "SecondaryAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator.lambda$authenticateAndAttachToContext$2(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.support.SecondaryAuthentication)", "offset": 3}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OQ4Xdczub94PyW-2NBrCFQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.IndexWriter$$Lambda$7657+0x0000000802591c60.process(org.apache.lucene.index.IndexWriter)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "n7DxyegwJYX-a6yw00GY5gAAAAAAAACh"}} +{"Stackframe": {"file": {"name": "IndexShardOperationPermits.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShardOperationPermits.acquire(org.elasticsearch.action.ActionListener, java.lang.String, boolean, java.lang.Object, java.lang.StackTraceElement[])", "offset": 44}, "line": {"number": 253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dfyPn-1RS1VLor4dYUh2WgAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "java.util.Set org.elasticsearch.xpack.security.authz.RBACEngine.lambda$resolveAuthorizedIndicesFromRole$11(java.util.function.Supplier, boolean, java.util.Map, org.elasticsearch.xpack.core.security.authz.permission.IndicesPermission$IsResourceAuthorizedPredicate)", "offset": 7}, "line": {"number": 864}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2KcE-UX_E6GAaCGq1Bz1yAAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "NodeHash.java"}, "function": {"name": "void org.apache.lucene.util.fst.NodeHash.addNew(long)", "offset": 4}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "FilterOutputStream.java"}, "function": {"name": "void java.io.FilterOutputStream.close()", "offset": 18}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uoQ2M4bRS4Qydql36um4PQAAAAAAAAAu"}} +{"Stackframe": {"file": {"name": "ChunkedBlobOutputStream.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChunkedBlobOutputStream.close()", "offset": 7}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tS_HFERyiZnZzL5HZnbArAAAAAAAAABr"}} +{"Stackframe": {"file": {"name": "TransportGetSnapshotsAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.snapshots.get.TransportGetSnapshotsAction.masterOperation(org.elasticsearch.tasks.Task, org.elasticsearch.action.admin.cluster.snapshots.get.GetSnapshotsRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)", "offset": 2}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5P9SwSLlS7AjqRDPaj6g-wAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8CGal5YjjmTZUgONcBCVkAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "S3RetryingInputStream.java"}, "function": {"name": "com.amazonaws.services.s3.model.S3Object org.elasticsearch.repositories.s3.S3RetryingInputStream.lambda$openStream$0(org.elasticsearch.repositories.s3.AmazonS3Reference, com.amazonaws.services.s3.model.GetObjectRequest)"}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkGO"}} +{"Stackframe": {"function": {"name": "walk_component"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ETEs_vJj_-q4WFpNiG_LRQAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$RequestFilterChain.proceed(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_b0cLZu7PqcamkkHFR0u6gAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "MultiBucketCollector.java"}, "function": {"name": "org.apache.lucene.search.LeafCollector org.elasticsearch.search.aggregations.MultiBucketCollector.getLeafCollector(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 31}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "J2vC-2Qs-dxljsuNDoDyLQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.common.xcontent.ChunkedToXContentHelper$$Lambda$6551+0x00000008023c5790.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimti"}} +{"Stackframe": {"function": {"name": "sock_sendmsg"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "b5D4G32aP0YH2ukb-bXGLgAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "AbstractCollection.java"}, "function": {"name": "boolean java.util.AbstractCollection.addAll(java.util.Collection)", "offset": 2}, "line": {"number": 338}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AfiXYbp-AtxXKRZ0LJwGNwAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct.putResponseHeaders(java.util.Map)", "offset": 4}, "line": {"number": 582}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WkWrFO-3w38ID826neafLQAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.moveToNextPhase(org.elasticsearch.action.search.SearchPhaseController, java.lang.String, org.elasticsearch.action.search.SearchPhaseController$ReducedQueryPhase, org.elasticsearch.common.util.concurrent.AtomicArray)", "offset": 2}, "line": {"number": 209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ATl9MX9GPHt1x18s0j00bQAAAAAAAACs"}} +{"Stackframe": {"file": {"name": "HttpObjectDecoder.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpObjectDecoder.decode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 31}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jahRFwRZ3rmbLG_V0pvPLwAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "int org.elasticsearch.core.Streams.readFully(java.io.InputStream, byte[], int, int)", "offset": 2}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LShh-9O-ab8ob4gfeH5zhQAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.StoredFieldsWriter org.apache.lucene.codecs.compressing.CompressingStoredFieldsFormat.fieldsWriter(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)"}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "t6tiVkK7y6LSWBLPYBcCawAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI$1.compare(org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.search.DocIdSetIterator)"}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mS8gXE26pQn8rBZ5C2O6qgAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "TransportMonitoringBulkAction.java"}, "function": {"name": "void org.elasticsearch.xpack.monitoring.action.TransportMonitoringBulkAction.doExecute(org.elasticsearch.xpack.monitoring.action.MonitoringBulkRequest, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6l3Q3lLwvaP7rhVtdi_RoAAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode$DecryptOp.doFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 1}, "line": {"number": 1811}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6IAXoYeI62bQppY-qjqJ0AAAAAAAAAD6"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.executeOneRequest(com.amazonaws.http.AmazonHttpClient$RequestExecutor$ExecOneRequestParams)", "offset": 39}, "line": {"number": 1304}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0e24YoBzYK_-A6P4vU02BQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.SnapshotsInProgress$Entry$$Lambda$7201+0x0000000801e72f78.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xRkFHepRLQFnp0xjaPT5XgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeBulkItems$21(org.elasticsearch.action.ActionListener, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult)"}, "line": {"number": 825}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SxO-0PVs-XzTJlP5O_VPJAAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateAppliers(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder, java.util.Collection)", "offset": 4}, "line": {"number": 553}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cemtT_LtuQxWV7j18_T0KgAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.writeAuthToContext(org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 20}, "line": {"number": 735}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "f_rIvCQMW5oayMPHCj4aUgAAAAAAAACe"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "int java.io.FilePermission.containsPath(java.nio.file.Path, java.nio.file.Path)", "offset": 43}, "line": {"number": 745}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eCBaa3YUH5XD1W7qhQoaWgAAAAAAAABC"}} +{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.json.JsonXContentGenerator.close()", "offset": 12}, "line": {"number": 462}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zp8e67bjPIRYLDS8ag-LKwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard$$Lambda$7560+0x0000000801ec3668.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Zy27xNCwe4jKCqsA2srxVwAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$9113+0x00000008020df600.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "q9NUQMc6iLPRwtCUCQA4JgAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation$3.tryAction(org.elasticsearch.action.ActionListener)"}, "line": {"number": 281}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_avzkz28Qok2WNYNUK8x_AAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaResult org.elasticsearch.action.bulk.TransportShardBulkAction.lambda$dispatchedShardOperationOnReplica$4(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard)"}, "line": {"number": 526}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oDr7MTq61H8yqR3sNnnIbgAAAAAAAACv"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeBulkItems$23(org.elasticsearch.action.bulk.BulkShardRequest, java.util.Map, java.util.Map, org.elasticsearch.xpack.security.audit.AuditTrail, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationContext, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.xpack.core.security.authz.ResolvedIndices)", "offset": 100}, "line": {"number": 838}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M-5SaQQW4M2ZK-t2dL_K0gAAAAAAAABf"}} +{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.implRead(byte[], int, int)", "offset": 11}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cTdMZI6aC0LqwU9s37q4qwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.StandardDirectoryReader$$Lambda$6339+0x0000000801cb2058.close()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_BzhwSJVnQNfmYfVTdNgsAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "java.lang.Throwable java.lang.Throwable.fillInStackTrace()", "offset": 2}, "line": {"number": 798}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m2JZKeSPCj8ZbtEvWgLs3gAAAAAAAABg"}} +{"Stackframe": {"file": {"name": "FollowersChecker.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.FollowersChecker$FollowerChecker.handleWakeUp()", "offset": 8}, "line": {"number": 300}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALU_V"}} +{"Stackframe": {"function": {"name": "do_iter_write"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3H6017qNLmhn4DKdcizx1QAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xcontent.ObjectParser$$Lambda$495+0x0000000800ebf448.parse(org.elasticsearch.xcontent.XContentParser, java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bIRC5woRCsPo9DPN_YuBtwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$8(org.elasticsearch.action.ActionListener, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.cluster.metadata.Metadata, java.util.Set)", "offset": 1}, "line": {"number": 429}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YegVEymiG8lw5t7wHfz6hwAAAAAAAAEm"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.io.stream.StreamInput.readString()", "offset": 58}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cqdSAx5Uej3ncVA_SUVjsQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "PhantomCleanable.java"}, "function": {"name": "void jdk.internal.ref.PhantomCleanable.clean()", "offset": 2}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$DelegatingFailureActionListener.onResponse(java.lang.Object)"}, "line": {"number": 217}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "brBTwpxsMrD0yGTfkZil9AAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$ContextRestoreResponseHandler.handleResponse(org.elasticsearch.transport.TransportResponse)", "offset": 1}, "line": {"number": 1070}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAilCU"}} +{"Stackframe": {"function": {"name": "sock_poll"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oMng7OrVjQmIrTztsgmIBgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "JarURLConnection.java"}, "function": {"name": "void sun.net.www.protocol.jar.JarURLConnection.(java.net.URL, sun.net.www.protocol.jar.Handler)"}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EmratRDxeKcrsZYT5P-e9gAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.runReroutePhase(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.action.ActionListener, boolean)"}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UxUrGKaPEq08l4l3816TpwAAAAAAAABe"}} +{"Stackframe": {"file": {"name": "InputStreamEntity.java"}, "function": {"name": "void org.apache.http.entity.InputStreamEntity.writeTo(java.io.OutputStream)", "offset": 18}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8oQ_ZJ3ImiZWOZcNHv_WYwAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.implDelete(java.nio.file.Path, boolean)", "offset": 10}, "line": {"number": 236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALX4g"}} +{"Stackframe": {"function": {"name": "fput_many"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QyqSuO4knQd2qtDeF-TNPgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.dispatchedShardOperationOnReplica(org.elasticsearch.action.support.replication.ReplicatedWriteRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eVW9lCqHxlTfD5Rt7tiZeQAAAAAAAACG"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.netty.channel.ChannelPromise)", "offset": 24}, "line": {"number": 972}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vbgAMp4MJN-LIAvT-yH7-gAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "URLClassPath.java"}, "function": {"name": "void jdk.internal.loader.URLClassPath.check(java.net.URL)", "offset": 6}, "line": {"number": 552}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hmcQZSO0MWvUeViJZfR2DwAAAAAAAAC7"}} +{"Stackframe": {"file": {"name": "Lucene90PointsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90PointsWriter.(org.apache.lucene.index.SegmentWriteState, int, double)", "offset": 38}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pyn-2AN_sBw7fWxvhZ_ovAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$6469+0x0000000801c85f00.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YZBmumN7B74DCts0HLEQGQAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run()", "offset": 2}, "line": {"number": 673}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "TransportNodesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation(org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction$NodeStatsRequest)", "offset": 1}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5cVfZbbHReUG0_VPu4ZnvgAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "BasicTokenIterator.java"}, "function": {"name": "void org.apache.http.message.BasicTokenIterator.(org.apache.http.HeaderIterator)", "offset": 2}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fO_gJBPd8E-RahoVIhDflgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AbstractEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)"}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NuqcOqANutL4nD8JjGfmlwAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "long org.elasticsearch.index.store.ByteSizeCachingDirectory.estimateSizeInBytes(org.apache.lucene.store.Directory)", "offset": 4}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AtdYY3_ZD2MDB5gcLHvc5AAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeGenericValue(java.lang.Object)", "offset": 1}, "line": {"number": 634}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5MIi91ywnBSPozvkoqn8TQAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "RestSearchAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction.lambda$prepareRequest$1(org.elasticsearch.client.node.NodeClient, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.rest.RestChannel)"}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uBwOWLxdrKmAGkggaU_IuwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.support.nodes.TransportNodesAction.nodeOperation(org.elasticsearch.action.support.nodes.BaseNodeRequest, org.elasticsearch.tasks.Task)"}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Jc21d-hh52rNRJ_kbSvEeQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.xcontent.provider.json.JsonXContentGenerator.writeString(java.lang.String)"}, "line": {"number": 361}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RVeQ4Cnit8ApY3-6Zv3w0wAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "void org.elasticsearch.tasks.TaskManager.registerCancellableTask(org.elasticsearch.tasks.Task, boolean)", "offset": 4}, "line": {"number": 240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PX96JdQqiw2lDikktsM3swAAAAAAAABx"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory.rename(java.lang.String, java.lang.String)", "offset": 9}, "line": {"number": 302}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOTp"}} +{"Stackframe": {"function": {"name": "netif_receive_skb_list_internal"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hIPSIc3LxfgC93-3l1xbUgAAAAAAAABg"}} +{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "int sun.nio.ch.EPollSelectorImpl.doSelect(java.util.function.Consumer, long)", "offset": 15}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlrk"}} +{"Stackframe": {"function": {"name": "show_mountinfo"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3zXCUNpYxjlSLDJ08OaDVAAAAAAAAACS"}} +{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction$BulkOperation.doRun()", "offset": 19}, "line": {"number": 498}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nI0fpl1cIQohqhO_ihgjhgAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "NativeUsersStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.esnative.NativeUsersStore.lambda$verifyPassword$9(org.elasticsearch.action.ActionListener, org.elasticsearch.common.settings.SecureString, org.elasticsearch.xpack.security.authc.esnative.UserAndPassword)", "offset": 2}, "line": {"number": 581}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBss"}} +{"Stackframe": {"function": {"name": "seq_read"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nY6Bz6koyx0B67n9HdjFUAAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.netty.channel.ChannelPromise)", "offset": 5}, "line": {"number": 814}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XQih0feiHcRhpLZTXruLcwAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.engine.InternalEngine.acquireLastIndexCommit(boolean)", "offset": 2}, "line": {"number": 2328}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.fsync(java.nio.file.Path, boolean)", "offset": 8}, "line": {"number": 469}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T4TCkO3eKtFhkAq0CD0MTQAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "AuthenticationContextSerializer.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authc.Authentication org.elasticsearch.xpack.core.security.authc.support.AuthenticationContextSerializer.deserializeHeaderAndPutInContext(java.lang.String, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 2}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mm7pA8Vo6frfLprU_GjPaQAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "FieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.FieldsConsumer.merge(org.apache.lucene.index.MergeState, org.apache.lucene.codecs.NormsProducer)", "offset": 18}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Q3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask.run()"}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tEh-T90uBvlQfHt8UOCI5QAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run()", "offset": 3}, "line": {"number": 304}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ONnGxKE-Oac3NFLO-8Lg0AAAAAAAAABz"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 21}, "line": {"number": 526}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALVMd"}} +{"Stackframe": {"function": {"name": "do_writev"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JzNd9DaLcJtE1FJX2lvlEQAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "boolean org.apache.lucene.search.ReferenceManager.maybeRefresh()", "offset": 6}, "line": {"number": 225}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Kg-p48Ob-pDaS5XUMw0BuQAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener.completeWith(org.elasticsearch.action.ActionListener, org.elasticsearch.common.CheckedSupplier)", "offset": 11}, "line": {"number": 447}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ev5ZvILr4tvntiwSPeUhSgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "long org.elasticsearch.core.internal.io.Streams.copy(java.io.InputStream, java.io.OutputStream, byte[], boolean)", "offset": 4}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.support.AbstractXContentParser.readValue(org.elasticsearch.common.xcontent.XContentParser, org.elasticsearch.common.xcontent.support.AbstractXContentParser$MapFactory, org.elasticsearch.common.xcontent.XContentParser$Token)", "offset": 9}, "line": {"number": 391}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HnZqFhRwGM-S-Ctqsl1OywAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "void org.apache.lucene.search.ConjunctionDISI.(java.util.List)", "offset": 5}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TdwLOY0C6NYFuVVgfM0c5wAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "SocketChannelImpl.java"}, "function": {"name": "int sun.nio.ch.SocketChannelImpl.read(java.nio.ByteBuffer)", "offset": 18}, "line": {"number": 417}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "clGseV0LGavUI1_g3b_OoAAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.lambda$getAuthenticatorConsumer$3(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.security.authc.Authenticator, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.authc.Authenticator$Result)", "offset": 3}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LUP5CamdRVXoxMmK_UVdcAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.write(byte[], int, int)"}, "line": {"number": 406}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "f-MXXixZXm3Q4r5zsKL8FAAAAAAAAABO"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.unknownValue(java.lang.Object, boolean)", "offset": 13}, "line": {"number": 818}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "ActorCell.scala"}, "function": {"name": "void akka.actor.ActorCell.receiveMessage(java.lang.Object)"}, "line": {"number": 579}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Q-u30OVC8ZOSspmVuVd8UgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard$$Lambda$7462+0x0000000801f2e820.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M1EMv-oV9MXHpzn1zjHC_gAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation$2.lambda$onResponse$0()"}, "line": {"number": 226}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1PhVGIcoQAgleHhVcpf27gAAAAAAAABC"}} +{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.CopyBytesSocketChannel.doReadBytes(io.netty.buffer.ByteBuf)", "offset": 8}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1E_qvHzn98zpIL2UDuiywQAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "PriorityQueue.java"}, "function": {"name": "void org.apache.lucene.util.PriorityQueue.downHeap(int)", "offset": 6}, "line": {"number": 293}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j_udAtrkc7geDBLkxjYQ2wAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "PlatformDependent.java"}, "function": {"name": "int io.netty.util.internal.PlatformDependent.hashCodeAscii(java.lang.CharSequence)"}, "line": {"number": 719}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "if-A_N21fy6ux02lu8iQvQAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 44}, "line": {"number": 764}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h_yTy4lGEB-M1QSoVC2ShgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "FilterAggregatorFactory.java"}, "function": {"name": "void org.elasticsearch.search.aggregations.bucket.filter.FilterAggregatorFactory.(java.lang.String, org.elasticsearch.index.query.QueryBuilder, org.elasticsearch.search.aggregations.support.AggregationContext, org.elasticsearch.search.aggregations.AggregatorFactory, org.elasticsearch.search.aggregations.AggregatorFactories$Builder, java.util.Map)"}, "line": {"number": 33}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8Z3LiIRoO3_eQJJIGwox3AAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "Lucene54DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene54.Lucene54DocValuesConsumer.addSortedNumericField(org.apache.lucene.index.FieldInfo, java.lang.Iterable, java.lang.Iterable)", "offset": 5}, "line": {"number": 589}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jK78v_SBWXBF1ZebUCWqCAAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "SecurityContext.java"}, "function": {"name": "void org.elasticsearch.xpack.security.SecurityContext.executeAfterRewritingAuthentication(java.util.function.Consumer, org.elasticsearch.Version)", "offset": 5}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1JFJglGYKFEdOODML6v_9QAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "int org.apache.lucene.index.ReadersAndUpdates.numDeletesToMerge(org.apache.lucene.index.MergePolicy)"}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mHJkS0RGvjKJIH_CXIlsPgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode.decryptFinal(byte[], int, int, byte[], int)"}, "line": {"number": 737}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GRkj9xWObIUC39vWGN57xgAAAAAAAABN"}} +{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "void org.elasticsearch.cluster.ClusterState$ClusterStateDiff.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 8}, "line": {"number": 792}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "f_rIvCQMW5oayMPHCj4aUgAAAAAAAACj"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "int java.io.FilePermission.containsPath(java.nio.file.Path, java.nio.file.Path)", "offset": 43}, "line": {"number": 745}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GiKdaO0NXWMcKAtg8WXWngAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Netty4MessageInboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageInboundHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)"}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1vmWfRl7JvnIelrwmbOFDwAAAAAAAAB2"}} +{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 31}, "line": {"number": 230}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "972OR6hUEsl-xpQeM92wPwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Errors.java"}, "function": {"name": "java.lang.Void org.glassfish.jersey.internal.Errors$1.call()"}, "line": {"number": 248}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gJam5798QKohw2f8Jm8keQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.shard.IndexShard.acquireIndexCommitForSnapshot()", "offset": 3}, "line": {"number": 1443}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZWVXkJ8qrKOhTkKXzBlP4wAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "FileSystemUtils.java"}, "function": {"name": "java.nio.file.Path[] org.elasticsearch.common.io.FileSystemUtils.files(java.nio.file.Path)", "offset": 1}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SXFZShc93P7Br4wzVi_TSwAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "java.util.Map org.elasticsearch.indices.IndicesService.statsByShard(org.elasticsearch.indices.IndicesService, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 5}, "line": {"number": 437}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p2Hio-B8ObTXxsljAjfG5wAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService.lambda$startNewSnapshots$1(java.util.List)"}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IKniS6Oltfo1ekuyyeYCXwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.store.Store$StoreStatsCache.refresh()"}, "line": {"number": 1378}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T2c5-p_HTAiWRFE2IbjI8QAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel)", "offset": 6}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OEu4PdM3AHloc1VSWOpgVAAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.ObjectParser.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)", "offset": 3}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.incomingRequest(org.elasticsearch.http.HttpRequest, org.elasticsearch.http.HttpChannel)", "offset": 3}, "line": {"number": 353}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hMqB3QsN4kPUoabYWOM36AAAAAAAAAB7"}} +{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.merge(org.apache.lucene.index.MergeState)", "offset": 12}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u39hB2o_bkkn64I33Zf2OAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "BufferedInputStream.java"}, "function": {"name": "int java.io.BufferedInputStream.read(byte[], int, int)"}, "line": {"number": 334}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "45C-Q8d2gQJCMIvUacUWRQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ReaderBasedJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.ReaderBasedJsonParser.nextToken()"}, "line": {"number": 662}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W2d7TJlcVgGSjrL7WWrrfwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "InternalSnapshotsInfoService.java"}, "function": {"name": "void org.elasticsearch.snapshots.InternalSnapshotsInfoService.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 1}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P0FJLI0T923ukToDeSeiIgAAAAAAAACG"}} +{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService.lambda$snapshot$3(org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.elasticsearch.index.shard.ShardId, org.elasticsearch.snapshots.Snapshot, org.elasticsearch.repositories.IndexId, org.elasticsearch.Version, long, org.elasticsearch.action.ActionListener)", "offset": 21}, "line": {"number": 371}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6l3fS_MW7bf80WICMybjsQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TransportNodesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation(org.elasticsearch.action.support.nodes.BaseNodeRequest)"}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5DLT1-7dtlWsYx9XrPzwBwAAAAAAAADM"}} +{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "void org.elasticsearch.index.translog.Translog.trimUnreferencedReaders()", "offset": 33}, "line": {"number": 1763}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l34EZ8xDHNxGTCOWJeXKigAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.netty4.CopyBytesSocketChannel.readFromSocketChannel(java.nio.channels.SocketChannel, java.nio.ByteBuffer)"}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p5Sj0Wa5Ym1vTB3JVfCaPwAAAAAAAAFR"}} +{"Stackframe": {"file": {"name": "OsProbe.java"}, "function": {"name": "org.elasticsearch.monitor.os.OsStats$Cgroup org.elasticsearch.monitor.os.OsProbe.getCgroup()", "offset": 61}, "line": {"number": 732}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hIPSIc3LxfgC93-3l1xbUgAAAAAAAAA8"}} +{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "int sun.nio.ch.EPollSelectorImpl.doSelect(java.util.function.Consumer, long)", "offset": 9}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aBp8nuGJmVEL586He3ssrwAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.sendResponse(org.elasticsearch.Version, java.util.Set, org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.TransportResponse, long, java.lang.String, boolean)"}, "line": {"number": 817}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nyQEDtNfXDm_fNpPXsT-3gAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.get(java.lang.Object)"}, "line": {"number": 558}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zQ7T2Ylu7sX9-4z8Wys1vwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "SSLEngineInputRecord.java"}, "function": {"name": "int sun.security.ssl.SSLEngineInputRecord.bytesInCompletePacket(java.nio.ByteBuffer[], int, int)"}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oKdk1KWFxihFv8webGVzvwAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Iterable, java.lang.Object, java.util.Set)", "offset": 5}, "line": {"number": 1048}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zC1z37qWlgbIB1dFpt4zjAAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(java.lang.Object)", "offset": 8}, "line": {"number": 440}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ju_uK8PGOFOVgw8-7MkseQAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotsService$UpdateSnapshotStatusAction.masterOperation(org.elasticsearch.snapshots.UpdateIndexShardSnapshotStatusRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)"}, "line": {"number": 4100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u39hB2o_bkkn64I33Zf2OAAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "BufferedInputStream.java"}, "function": {"name": "int java.io.BufferedInputStream.read(byte[], int, int)", "offset": 9}, "line": {"number": 343}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipDo"}} +{"Stackframe": {"function": {"name": "__sys_recvfrom"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8SpK-61-0PQXGtuYSbuPTwAAAAAAAABR"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.BufferedUpdatesStream$SegmentState[] org.apache.lucene.index.IndexWriter.openSegmentStates(java.util.List, java.util.Set, long)", "offset": 6}, "line": {"number": 6330}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X9SksosahO6WfATGPaH3cQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.shard.DocsStats org.elasticsearch.index.shard.IndexShard.docStats()", "offset": 1}, "line": {"number": 1060}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OIU72g2wQhgyLETe_w4R1gAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "GlobalOrdinalMapping.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.elasticsearch.index.fielddata.ordinals.GlobalOrdinalMapping.lookupOrd(long)"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FZcDTI2WOs3OMnDBC0zHmAAAAAAAAACH"}} +{"Stackframe": {"file": {"name": "ElasticsearchConcurrentMergeScheduler.java"}, "function": {"name": "void org.elasticsearch.index.engine.ElasticsearchConcurrentMergeScheduler.doMerge(org.apache.lucene.index.IndexWriter, org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 15}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "y_GIpaxCX5IFnS0F_BXM3wAAAAAAAACN"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "java.lang.Object com.amazonaws.http.AmazonHttpClient$RequestExecutor.handleResponse(com.amazonaws.http.HttpResponse)", "offset": 30}, "line": {"number": 1714}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "apg5i-nxkoOQjMlxB9g-swAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentParser$Token org.elasticsearch.common.xcontent.json.JsonXContentParser.nextToken()"}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "R43ZllDvnEdmnbtgRhdSeAAAAAAAAABW"}} +{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.onResponse(java.lang.Object)", "offset": 7}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lXmpkj0zpTSACRNmGcLZdgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.support.AbstractXContentParser.namedObject(java.lang.Class, java.lang.String, java.lang.Object)"}, "line": {"number": 398}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-q9yc6LqB9jJnwfxcnsPAQAAAAAAAABf"}} +{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "void java.util.ArrayList$ArrayListSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 12}, "line": {"number": 1625}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "v7CWLnfl4NBXfi5Ad25mLgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "GlobalCheckpointSyncAction.java"}, "function": {"name": "void org.elasticsearch.index.seqno.GlobalCheckpointSyncAction.shardOperationOnPrimary(org.elasticsearch.index.seqno.GlobalCheckpointSyncAction$Request, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YRKX0dkSQ9WRUwmgFWEsvAAAAAAAAAIp"}} +{"Stackframe": {"file": {"name": "DefaultSearchContext.java"}, "function": {"name": "void org.elasticsearch.search.DefaultSearchContext.preProcess(boolean)", "offset": 61}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dawGhH-93Zf3Xci2M9UlFQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 2}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6wPi2NOEKM9FkblNK9wEpQAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object jdk.internal.reflect.GeneratedMethodAccessor14.invoke(java.lang.Object, java.lang.Object[])"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Id-ripUWhn1V9drGRfOjGQAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "ReaderPool.java"}, "function": {"name": "boolean org.apache.lucene.index.ReaderPool.anyDocValuesChanges()", "offset": 5}, "line": {"number": 354}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "09HojiUg8nphKjecrAhDSAAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext.putHeader(java.lang.String, java.lang.String)"}, "line": {"number": 236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H-M-AAeStmxxhLg98P43KwAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "FutureTask.java"}, "function": {"name": "boolean java.util.concurrent.FutureTask.runAndReset()", "offset": 9}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QH4VYcH0-bM7E6PfVIY9ggAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.ml.utils.InferenceProcessorInfoExtractor$$Lambda$7040+0x00000008023de458.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UjZjHDsJddCCPswXJh9zOAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "org.elasticsearch.cluster.NamedDiff org.elasticsearch.cluster.SnapshotsInProgress.readDiffFrom(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uF_V7TH-mukdED5BHxc90gAAAAAAAAHc"}} +{"Stackframe": {"file": {"name": "Coordinator.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.Coordinator.handlePublishRequest(org.elasticsearch.cluster.coordination.PublishRequest)", "offset": 51}, "line": {"number": 437}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkQu"}} +{"Stackframe": {"function": {"name": "link_path_walk.part.33"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H5UzWn8gasz8z3Fz2sj1zQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.translog.TranslogStats org.elasticsearch.index.engine.InternalEngine.getTranslogStats()"}, "line": {"number": 601}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W0LWyqmlk7J6YZlqHKmPQgAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "InternalSnapshotsInfoService.java"}, "function": {"name": "java.util.Set org.elasticsearch.snapshots.InternalSnapshotsInfoService.listOfSnapshotShards(org.elasticsearch.cluster.ClusterState)", "offset": 1}, "line": {"number": 323}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zihU2tJAUMTE3AA4bF0R6gAAAAAAAACA"}} +{"Stackframe": {"file": {"name": "queue.py"}, "function": {"name": "get", "offset": 26}, "line": {"number": 173}, "source": {"type": 2}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-2jKAtgnT2KJwcbGIBrZTAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.close()"}, "line": {"number": 264}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oSV0vEfx2f4H442JtkKdLwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "SeedHostsResolver.java"}, "function": {"name": "org.elasticsearch.common.transport.TransportAddress[] org.elasticsearch.discovery.SeedHostsResolver.lambda$resolveHostsLists$0(org.elasticsearch.transport.TransportService, java.lang.String)"}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l7DXpY4Elz5IpCgudwPqcwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "ConstructingObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ConstructingObjectParser$Target.buildTarget()"}, "line": {"number": 509}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuqD"}} +{"Stackframe": {"function": {"name": "do_epoll_wait"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWx7"}} +{"Stackframe": {"function": {"name": "ksys_read"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWvZ"}} +{"Stackframe": {"function": {"name": "inet6_fill_link_af"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fGV_-oQbQFr-iji0-7e7egAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "XContentFactory.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentType org.elasticsearch.common.xcontent.XContentFactory.xContentType(java.io.InputStream)", "offset": 8}, "line": {"number": 235}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NZV2uadrciDU_AZcAz2jUQAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "FileChannel.java"}, "function": {"name": "java.nio.channels.FileChannel java.nio.channels.FileChannel.open(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])", "offset": 1}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PX3E_b7jZQaK6SiJYskQ3QAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "SearchTransportService.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchTransportService$10.messageReceived(org.elasticsearch.search.internal.InternalScrollSearchRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 387}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ev5ZvILr4tvntiwSPeUhSgAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "long org.elasticsearch.core.internal.io.Streams.copy(java.io.InputStream, java.io.OutputStream, byte[], boolean)", "offset": 5}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.apply(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.support.ActionFilterChain)", "offset": 31}, "line": {"number": 145}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0ZR"}} +{"Stackframe": {"function": {"name": "__d_lookup"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sUo4V5ggmQmDpXEq3uSXMQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.CopyBytesSocketChannel.writeToSocketChannel(java.nio.channels.SocketChannel, java.nio.ByteBuffer)"}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA9N"}} +{"Stackframe": {"function": {"name": "mangle_path"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eUEknoTlPZT0JPs_cYSwTwAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "int org.elasticsearch.search.fetch.FetchPhase.findRootDocumentIfNested(org.elasticsearch.search.internal.SearchContext, org.apache.lucene.index.LeafReaderContext, int)", "offset": 1}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cKy4091vDpDkV6BGrtBK2QAAAAAAAAKJ"}} +{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.cluster.ClusterState.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 74}, "line": {"number": 460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEe"}} +{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.CommonStats.(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 41}, "line": {"number": 210}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iit9TEPWxIcbSUSJseypHwAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 1}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALipZ"}} +{"Stackframe": {"function": {"name": "follow_managed"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GG1veltf8QsFPfu4LXPKfQAAAAAAAABw"}} +{"Stackframe": {"file": {"name": "StreamDecoder.java"}, "function": {"name": "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)", "offset": 18}, "line": {"number": 376}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "t4nV0UqksCicoYQITIw3KgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser._finishAndReturnString()"}, "line": {"number": 2445}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BdO63C4A6h8Anj1Ds4O63AAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "ZipFile.java"}, "function": {"name": "int java.util.zip.ZipFile$Source.readFullyAt(byte[], int, int, long)", "offset": 1}, "line": {"number": 1291}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbfV"}} +{"Stackframe": {"function": {"name": "vfs_getattr"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e9VBoOb6ap6y2iBqQXec9wAAAAAAAACZ"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.doAddSortedField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 20}, "line": {"number": 657}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6KM6RK-sq5wYpyjnMfBa7AAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "BufferedInputStream.java"}, "function": {"name": "int java.io.BufferedInputStream.read1(byte[], int, int)", "offset": 9}, "line": {"number": 284}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACM"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.runRequestInterceptors(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.action.ActionListener)", "offset": 17}, "line": {"number": 386}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "30BzHUomBZyo9OCrbwKZ7wAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.initIndexOptions(org.apache.lucene.index.FieldInfo, org.apache.lucene.index.IndexOptions)", "offset": 4}, "line": {"number": 798}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dFmZlDcuVgTgkPBtuxohZwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "TermsHashPerField.java"}, "function": {"name": "int org.apache.lucene.index.TermsHashPerField.compareTo(java.lang.Object)"}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xSMSLP0FCwY_wmCLQTamVgAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap$ValueSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 18}, "line": {"number": 1787}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vIt65Wo27njJcD5Xdpsh-QAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener.run(org.elasticsearch.action.ActionListener, org.elasticsearch.core.CheckedConsumer)"}, "line": {"number": 567}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o9I8XHop3y7uLb8wdADAN______AcFbJ"}} +{"Stackframe": {"function": {"name": "__key.128173"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QuKBCI0MGQoEy6EB3hTY_QAAAAAAAABz"}} +{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.apache.lucene.search.BooleanWeight.scorerSupplier(org.apache.lucene.index.LeafReaderContext)", "offset": 10}, "line": {"number": 541}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iqG2swMAij35AX8yLqs1mgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$DirectResponseChannel.processResponse(org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 1174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QoAoMOC_3YVfZSHESnd5XgAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "ClientConnectionRequestFactory.java"}, "function": {"name": "org.apache.http.conn.ConnectionRequest com.amazonaws.http.conn.ClientConnectionRequestFactory.wrap(org.apache.http.conn.ConnectionRequest)", "offset": 2}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8AFkU9EDwekeQG-iHB-52AAAAAAAAABa"}} +{"Stackframe": {"file": {"name": "RestClusterGetSettingsAction.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.rest.action.admin.cluster.RestClusterGetSettingsAction.renderResponse(org.elasticsearch.cluster.ClusterState, boolean, org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 12}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMOOP"}} +{"Stackframe": {"function": {"name": "get_dominating_id"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jgFie9OcTMpMeBzHaR2iBgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "java.lang.Object java.util.concurrent.ConcurrentHashMap.remove(java.lang.Object)"}, "line": {"number": 1102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$7207+0x0000000802516a90.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xAdnmGWjJXcKuwdszuwv6gAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "IngestService.java"}, "function": {"name": "void org.elasticsearch.ingest.IngestService.lambda$applyClusterState$11(java.util.function.Consumer)"}, "line": {"number": 1032}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TifPIvND7b7ICq3M7OVoFwAAAAAAAAEE"}} +{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.IndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 40}, "line": {"number": 281}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "g-yWjwHAW8AtauSolMfC7gAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ByteBuffer.java"}, "function": {"name": "void java.nio.ByteBuffer.(int, int, int, int)"}, "line": {"number": 289}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u1V8iRI-Vv8WMpAbApe_-gAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Packed64.java"}, "function": {"name": "long org.apache.lucene.util.packed.Packed64.get(int)"}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UdbowpynB4MR0QYase8FmAAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction$2.doRun()", "offset": 1}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H2QTzkKMf4VE2_HyfX9GywAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.updateDocuments(org.apache.lucene.index.Term, java.lang.Iterable)"}, "line": {"number": 1464}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hQ2OXkHYZRXh3_WLXzxSBAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "NodeClient.java"}, "function": {"name": "void org.elasticsearch.client.internal.node.NodeClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OMI6Q27dkZQjRDWwoDM78QAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "void java.security.AccessController.checkPermission(java.security.Permission)", "offset": 4}, "line": {"number": 1010}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "veyrOe2Ye9QKtQm85e4-1QAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.tryApply(org.apache.lucene.index.FrozenBufferedUpdates)", "offset": 2}, "line": {"number": 5569}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_DKhYKsY0BPKYoMYRAcMCAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 1}, "line": {"number": 801}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAilGr"}} +{"Stackframe": {"function": {"name": "sock_alloc"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X3vNLlXVyKftCeY5HzEuDAAAAAAAAAQg"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.mergeMiddle(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergePolicy)", "offset": 127}, "line": {"number": 4814}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YqGCdZ1cNEoHUUaGHzWSqQAAAAAAAABq"}} +{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.SoftDeletesRetentionMergePolicy.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.util.IOSupplier)", "offset": 8}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3gsDLXDLRJdnmH9et06JcgAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.flush(io.netty.channel.ChannelHandlerContext)", "offset": 11}, "line": {"number": 778}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZTYW2hueb8qo9sBuOsIdRgAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseArray(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, java.lang.String[])", "offset": 10}, "line": {"number": 652}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tL230chqNUuroXAS-gtapgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "FileChannel.java"}, "function": {"name": "java.nio.channels.FileChannel java.nio.channels.FileChannel.open(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])", "offset": 1}, "line": {"number": 304}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlrpu"}} +{"Stackframe": {"function": {"name": "tcp_write_xmit"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7Ri4HFWgKP29WX5jactbGQAAAAAAAACW"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObjectOrNested(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper)", "offset": 35}, "line": {"number": 477}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "a8XYoPW9pAQaMdeo2T4gfwAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "DirectByteBuffer.java"}, "function": {"name": "void java.nio.DirectByteBuffer.(int)", "offset": 13}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pBAXMFgFarqt_e84PodhnAAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "SSLEngine.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult javax.net.ssl.SSLEngine.wrap(java.nio.ByteBuffer[], java.nio.ByteBuffer)", "offset": 3}, "line": {"number": 564}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OVgeZs8BFzn2toyh_PIAtwAAAAAAAACD"}} +{"Stackframe": {"file": {"name": "GlobalOrdinalsBuilder.java"}, "function": {"name": "org.elasticsearch.index.fielddata.IndexOrdinalsFieldData org.elasticsearch.index.fielddata.ordinals.GlobalOrdinalsBuilder.build(org.apache.lucene.index.IndexReader, org.elasticsearch.index.fielddata.IndexOrdinalsFieldData, org.elasticsearch.index.IndexSettings, org.elasticsearch.indices.breaker.CircuitBreakerService, org.apache.logging.log4j.Logger, java.util.function.Function)", "offset": 9}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "void org.apache.lucene.store.LockValidatingDirectoryWrapper.sync(java.util.Collection)"}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Nuq4Zgqoz8A9du7YvN9dPgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AbstractQueryBuilder.java"}, "function": {"name": "org.elasticsearch.index.query.QueryBuilder org.elasticsearch.index.query.AbstractQueryBuilder.parseInnerQueryBuilder(org.elasticsearch.common.xcontent.XContentParser)"}, "line": {"number": 286}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3u8AEZ2OY4uk0289o_PdQAAAAAAAAABi"}} +{"Stackframe": {"file": {"name": "IndexTemplateRegistry.java"}, "function": {"name": "void org.elasticsearch.xpack.core.template.IndexTemplateRegistry.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 26}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fCahNjmPHeBO_-ZWbkUJdAAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "DateFieldMapper.java"}, "function": {"name": "org.apache.lucene.search.Query org.elasticsearch.index.mapper.DateFieldMapper$DateFieldType.dateRangeQuery(java.lang.Object, java.lang.Object, boolean, boolean, java.time.ZoneId, org.elasticsearch.common.time.DateMathParser, org.elasticsearch.index.query.SearchExecutionContext, org.elasticsearch.index.mapper.DateFieldMapper$Resolution, java.util.function.BiFunction)"}, "line": {"number": 475}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UUg1eX6XD3kMg9XTzAxNlgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "java.net.HttpURLConnection co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.startRequest(java.lang.String)"}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rGDifO1Mqf9Ue5AsCRkS-AAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", "offset": 2}, "line": {"number": 391}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qlujNL7db72ZwWHkSPq1iAAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "NodeService.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.node.NodeService.stats(org.elasticsearch.action.admin.indices.stats.CommonStatsFlags, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean)", "offset": 3}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KB0KS3hQ9ShgNXNnOutrBwAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "AWS4Signer.java"}, "function": {"name": "java.lang.String com.amazonaws.auth.AWS4Signer.createCanonicalRequest(com.amazonaws.SignableRequest, java.lang.String)", "offset": 12}, "line": {"number": 339}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1bYVLJaC5WBOgJdtA4ffZwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AbstractByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.AbstractByteBufAllocator.heapBuffer(int)"}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mjLQtJ48eGnLZP92405DLgAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "Index.java"}, "function": {"name": "void org.elasticsearch.index.Index.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 1}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qe1R8K3VcU7B6rka1SJepQAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "Class.java"}, "function": {"name": "java.lang.ClassLoader java.lang.Class.getClassLoader()", "offset": 5}, "line": {"number": 683}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cPBkl6UDB30IKOzG7NoYMQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "LockSupport.java"}, "function": {"name": "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)", "offset": 3}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HWZttOsFf_YSOazNjHUqCQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline.forEachOrdered(java.util.function.Consumer)"}, "line": {"number": 601}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KnKBdeWKnQ8CH5bzvx0i6AAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.writeAuthToContext(org.elasticsearch.xpack.security.authc.Authentication)", "offset": 10}, "line": {"number": 474}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UVkJt030Ch-A5dL0zS5tHgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "void org.elasticsearch.threadpool.ThreadPool$ThreadedRunnable.run()"}, "line": {"number": 621}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eGIFttVUQC7RMaD3wy21YAAAAAAAAAC3"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.innerAcquireReplicaOperationPermit(long, long, long, org.elasticsearch.action.ActionListener, boolean, java.util.function.Consumer)", "offset": 70}, "line": {"number": 3609}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X5MV3EQ58tGbWH0-6A54UAAAAAAAAAHi"}} +{"Stackframe": {"file": {"name": "SSLEngineOutputRecord.java"}, "function": {"name": "sun.security.ssl.Ciphertext sun.security.ssl.SSLEngineOutputRecord.encode(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer)", "offset": 92}, "line": {"number": 278}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WfJZEAMm0CLwrKwEGPQTbQAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.mergeSortedNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.index.MergeState, java.util.List, java.util.List)"}, "line": {"number": 470}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NRXMY0GwyqTEszErmO5JXwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "DslJsonSerializer.java"}, "function": {"name": "boolean co.elastic.apm.agent.report.serialize.DslJsonSerializer.isLibraryFrame(java.lang.String)"}, "line": {"number": 1030}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lxEacspMc1IEp-zb6FVFbgAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "EnumMap.java"}, "function": {"name": "boolean java.util.EnumMap.equals(java.lang.Object)", "offset": 3}, "line": {"number": 660}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RA6fryXhwc6j3TqIqI_2kAAAAAAAAACP"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.handlePrimaryResult(org.elasticsearch.action.support.replication.ReplicationOperation$PrimaryResult)", "offset": 22}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RBTRaju-ab8ob43Dp-qdJQAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.StoredFieldsWriter org.apache.lucene.codecs.compressing.CompressingStoredFieldsFormat.fieldsWriter(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)"}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ln3g55flaj9wqB_JKlFpEwAAAAAAAABX"}} +{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "boolean java.util.regex.Pattern$BnM.match(java.util.regex.Matcher, int, java.lang.CharSequence)", "offset": 13}, "line": {"number": 5532}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GZFjKcoKCeexf4u7Gxk8xgAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "org.elasticsearch.index.mapper.ParsedDocument org.elasticsearch.index.mapper.DocumentParser.parseDocument(org.elasticsearch.index.mapper.SourceToParse, org.elasticsearch.index.mapper.MappingLookup)", "offset": 14}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMS4k"}} +{"Stackframe": {"function": {"name": "prepend_name"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_XkMI8xGR94JL4lQtb9x_QAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "IndexSearcher.java"}, "function": {"name": "void org.apache.lucene.search.IndexSearcher.search(org.apache.lucene.search.Query, org.apache.lucene.search.Collector)", "offset": 1}, "line": {"number": 551}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EbDp5Ji3y8uTKzXL0h4-JQAAAAAAAACE"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 25}, "line": {"number": 321}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hTS7wT639rr8PZsTljSw4QAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "OperatingSystemImpl.java"}, "function": {"name": "long com.sun.management.internal.OperatingSystemImpl.getOpenFileDescriptorCount()"}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Gddyn5jf9gijjM2MMokVAwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object jdk.internal.loader.BuiltinClassLoader$$Lambda$281+0x0000000800d69750.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iXm2yUQTnZpOrE8ZNWS3KQAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.StandardDirectoryReader.doOpenFromWriter(org.apache.lucene.index.IndexCommit)", "offset": 8}, "line": {"number": 291}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QLdVHMdVsV-29W9Zq-QZAwAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "ObjectMapper.java"}, "function": {"name": "org.elasticsearch.index.mapper.ObjectMapper org.elasticsearch.index.mapper.ObjectMapper$Builder.build(org.elasticsearch.index.mapper.Mapper$BuilderContext)", "offset": 4}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ysgyXRf3M-vZ9sguVTGKVgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput$$Lambda$8548+0x0000000801fd51f8.write(org.elasticsearch.common.io.stream.StreamOutput, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-2FyBFi2FqtlQYQvq8OKCAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.util.Iterator java.util.Collections$UnmodifiableCollection.iterator()"}, "line": {"number": 1050}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS"}} +{"Stackframe": {"function": {"name": "syscall_trace_enter"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4LaXQPmDtW1RT5QYFvOroAAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "org.apache.lucene.search.Query org.elasticsearch.search.internal.ContextIndexSearcher.rewrite(org.apache.lucene.search.Query)", "offset": 5}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qRvG2N9iYeFyl-3xULRJEgAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "Collection.java"}, "function": {"name": "boolean java.util.Collection.removeIf(java.util.function.Predicate)", "offset": 4}, "line": {"number": 576}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m90x-IDkYTtkxx7JZAYrFAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "boolean io.netty.util.concurrent.DefaultPromise.setSuccess0(java.lang.Object)"}, "line": {"number": 604}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KxP4VGfqSBeNoj_DhcMuDQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "SystemIndexManager.java"}, "function": {"name": "boolean org.elasticsearch.indices.SystemIndexManager.checkIndexMappingUpToDate(org.elasticsearch.indices.SystemIndexDescriptor, org.elasticsearch.cluster.metadata.IndexMetadata)", "offset": 5}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rn6MTH_GcOdtJ7YxIeV5gwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.forceFlush(io.netty.channel.ChannelHandlerContext)", "offset": 1}, "line": {"number": 2138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P1rXbpjewie805zI0BHMvAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$1842.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KhlpQocDZlLZ7bMHRzeTQQAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport$NodeChannels.sendRequest(long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions)", "offset": 4}, "line": {"number": 442}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D0un3e6roKXsQKLScSJAOgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "JvmGcMonitorService.java"}, "function": {"name": "org.elasticsearch.monitor.jvm.JvmStats org.elasticsearch.monitor.jvm.JvmGcMonitorService$JvmMonitor.jvmStats()"}, "line": {"number": 482}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B3TkFubeMsUjXVlcESk9tgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncPrimaryAction$$Lambda$8956+0x00000008027eb370.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "n2S0SyZv0DZ6ex1YiCzcfAAAAAAAAABH"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$1.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 8}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W-qC1aJXVDjHMM0aSKA12wAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "int java.util.AbstractMap$SimpleImmutableEntry.hashCode()", "offset": 1}, "line": {"number": 862}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w39fXJ4iQHwJS1PAwVsn_QAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "BytesStore.java"}, "function": {"name": "void org.apache.lucene.util.fst.BytesStore.writeByte(byte)"}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GaCa3TNQYDvJOH1Myo-eeQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6090+0x0000000801c3d770.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DbSG9xbs7jnAEiHiVrKb1AAAAAAAAACG"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.tryAllHandlers(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 28}, "line": {"number": 393}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "so1d_4OoBGn25QD_tK0ZhwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ShardSearchRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.ShardSearchRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)"}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "trKFSvtlxO979VBLgP3FPAAAAAAAAACJ"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.commit(long, long, org.elasticsearch.Version)", "offset": 18}, "line": {"number": 956}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALMvJ"}} +{"Stackframe": {"function": {"name": "__check_object_size"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iDeUqi9fXDm_fNSrL17LBgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.get(java.lang.Object)"}, "line": {"number": 556}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "void java.util.stream.AbstractPipeline.copyInto(java.util.stream.Sink, java.util.Spliterator)", "offset": 3}, "line": {"number": 508}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQd"}} +{"Stackframe": {"function": {"name": "audit_filter_rules.constprop.21"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Slk7EKKi8JmNp7yELCNTwgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$lookForExistingAuthentication$4(java.util.function.Consumer, org.elasticsearch.xpack.core.security.authc.Authentication)"}, "line": {"number": 210}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nxv9fnyzQgRP5y-sCtMEGwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)"}, "line": {"number": 628}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_c66iRIhxEMceXexHDGFpwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "boolean io.netty.util.concurrent.DefaultPromise.trySuccess(java.lang.Object)"}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ElasticsearchReaderManager.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.engine.ElasticsearchReaderManager.refreshIfNeeded(java.lang.Object)"}, "line": {"number": 28}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1P3GTCQSFJPOIXZWIUu1PQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext$AbstractWriteTask.run()", "offset": 1}, "line": {"number": 1075}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAC1"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 19}, "line": {"number": 181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gzF4xa6TmHHVGj6D9s_y9QAAAAAAAADo"}} +{"Stackframe": {"file": {"name": "CipherSpi.java"}, "function": {"name": "int javax.crypto.CipherSpi.bufferCrypt(java.nio.ByteBuffer, java.nio.ByteBuffer, boolean)", "offset": 47}, "line": {"number": 799}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wj5v705AK3wrQkpP9C_wfwAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "RetryableAction.java"}, "function": {"name": "void org.elasticsearch.action.support.RetryableAction$RetryingListener.onResponse(java.lang.Object)", "offset": 2}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dkiK4vnxfZAz-Fk5gU0PLwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase$$Lambda$2201.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qYA0yXrjfQUiViGsCwfP0gAAAAAAAADK"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken()", "offset": 41}, "line": {"number": 763}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M-HSPvU6Ylpk6rULEsdDKwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "DirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.DirectoryReader.openIfChanged(org.apache.lucene.index.DirectoryReader)"}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8LspOA9OlhmqAtOfP68AWgAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "IndicesAndAliasesResolver.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authz.ResolvedIndices org.elasticsearch.xpack.security.authz.IndicesAndAliasesResolver.resolve(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.cluster.metadata.Metadata, java.util.Set)", "offset": 15}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "SocketAccess.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.SocketAccess.doPrivilegedVoid(java.lang.Runnable)", "offset": 1}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wwAbxT7HcBQT9Xf_gmx8-QAAAAAAAAJ_"}} +{"Stackframe": {"file": {"name": "SegmentTermsEnum.java"}, "function": {"name": "boolean org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact(org.apache.lucene.util.BytesRef)", "offset": 149}, "line": {"number": 471}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Lu4BbYQNxvrnJvSur5jWAAAAAAAAAAGS"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 42}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lBsFTWSf77aYVb9HHr9tcQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "long org.apache.lucene.store.FilterDirectory.fileLength(java.lang.String)"}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcoN"}} +{"Stackframe": {"function": {"name": "__x64_sys_readlinkat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iZ81fGBmbgk1lRiTm25tUwAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.resolveAuthorizationInfo(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "64C-3H5XSZ9YnnqOjes6bAAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService.submitStateUpdateTasks(java.lang.String, java.util.Map, org.elasticsearch.cluster.ClusterStateTaskConfig, org.elasticsearch.cluster.ClusterStateTaskExecutor)", "offset": 5}, "line": {"number": 936}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ztHnkwVOP9LxgkQsriQwqgAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeCollection(java.util.Collection, org.elasticsearch.common.io.stream.Writeable$Writer)", "offset": 2}, "line": {"number": 1199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "boolean org.elasticsearch.search.query.QueryPhase.searchWithCollector(org.elasticsearch.search.internal.SearchContext, org.elasticsearch.search.internal.ContextIndexSearcher, org.apache.lucene.search.Query, java.util.LinkedList, boolean, boolean)", "offset": 14}, "line": {"number": 332}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-YGhfj8szmBRV3kDwU9beQAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "AbstractByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.AbstractByteBufAllocator.directBuffer(int, int)", "offset": 4}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ieVPbh3z67ZFj7IGoqq7zgAAAAAAAACE"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()", "offset": 26}, "line": {"number": 1055}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qzl7uikfyhFsmptyftI77AAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.apache.lucene.search.BooleanWeight.bulkScorer(org.apache.lucene.index.LeafReaderContext)", "offset": 6}, "line": {"number": 375}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JmyGUxJRUCt6RqRL_j6LUwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.TransportService$$Lambda$2355.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6ByADceim30qM6J5Jexh2wAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.value(org.elasticsearch.xcontent.ToXContent, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 3}, "line": {"number": 974}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XQiZEoz1AYfl8TlT3_m5HwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.concurrent.ThreadContext$$Lambda$5277+0x0000000801a6a488.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WTJVejtNrfNtGl_SxUF-gQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorize$1(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo)", "offset": 1}, "line": {"number": 230}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5Dz1NwJhW8tUTolfpVyg2gAAAAAAAADh"}} +{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "int sun.nio.ch.EPollSelectorImpl.doSelect(java.util.function.Consumer, long)", "offset": 37}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OmCg7LeKFCxsCaIeFo50SAAAAAAAAAIs"}} +{"Stackframe": {"file": {"name": "IndexTemplateMetadata.java"}, "function": {"name": "void org.elasticsearch.cluster.metadata.IndexTemplateMetadata$Builder.toInnerXContent(org.elasticsearch.cluster.metadata.IndexTemplateMetadata, org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params, boolean)", "offset": 56}, "line": {"number": 441}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XOXf32QluuyS57Zqm_Q-ZgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "ESToParentBlockJoinQuery.java"}, "function": {"name": "org.apache.lucene.search.Weight org.elasticsearch.index.search.ESToParentBlockJoinQuery.createWeight(org.apache.lucene.search.IndexSearcher, org.apache.lucene.search.ScoreMode, float)"}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XBC_dL5MLcb_NW7BHUcUsAAAAAAAAACO"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap$EntrySpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 18}, "line": {"number": 1850}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8avgxC2nxsEclfIehydO-AAAAAAAAABo"}} +{"Stackframe": {"file": {"name": "TransportClusterHealthAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.health.ClusterHealthResponse org.elasticsearch.action.admin.cluster.health.TransportClusterHealthAction.clusterHealth(org.elasticsearch.action.admin.cluster.health.ClusterHealthRequest, org.elasticsearch.cluster.ClusterState, int, int, org.elasticsearch.common.unit.TimeValue)", "offset": 17}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FrHU_JjyrJStKddfAU06tAAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "java.lang.Runnable org.apache.lucene.util.bkd.BKDWriter.writeField(org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, java.lang.String, org.apache.lucene.codecs.MutablePointValues)", "offset": 1}, "line": {"number": 346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X9lpa9TN84k-aLBSFJ8EgQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "CheckedOutputStream.java"}, "function": {"name": "void java.util.zip.CheckedOutputStream.write(byte[], int, int)"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B6AxGKo-ySgqhq6sru3ZYwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.map(java.util.Map, boolean)", "offset": 7}, "line": {"number": 881}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VdRI4bQjguZE6PrIFD9m6QAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "NativePRNG.java"}, "function": {"name": "void sun.security.provider.NativePRNG.engineNextBytes(byte[])"}, "line": {"number": 220}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IiB8cBaeqjsuHSJhy6znXQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.apache.lucene.search.Weight.scorerSupplier(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mXqhLjgHXuxsTaw9_bY01QAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "URLClassLoader.java"}, "function": {"name": "java.net.URL java.net.URLClassLoader.findResource(java.lang.String)", "offset": 7}, "line": {"number": 633}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y_ur9VOSDEwVLljoZ7w15AAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AbstractByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.AbstractByteBufAllocator.directBuffer(int)"}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o6177iuGkV2SA7F3ufehBwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "void org.elasticsearch.common.settings.Setting.diff(org.elasticsearch.common.settings.Settings$Builder, org.elasticsearch.common.settings.Settings, org.elasticsearch.common.settings.Settings)"}, "line": {"number": 350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FD67YgaFeLuqBai5R0qQdQAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "ThreadLocal.java"}, "function": {"name": "java.lang.ThreadLocal$ThreadLocalMap$Entry java.lang.ThreadLocal$ThreadLocalMap.getEntry(java.lang.ThreadLocal)", "offset": 5}, "line": {"number": 439}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QjcJgCUAsytsXGSmYCNuVgAAAAAAAAJR"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 164}, "line": {"number": 699}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lnD3yopDvkzAiMrBeI7uYwAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "void org.apache.lucene.index.SegmentMerger.mergeTerms(org.apache.lucene.index.SegmentWriteState)", "offset": 1}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rG4zWNbzF43FlUaeZiWkVQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "LifecyclePolicy.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.LifecyclePolicy.toSteps(org.elasticsearch.client.Client, org.elasticsearch.license.XPackLicenseState)", "offset": 1}, "line": {"number": 218}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gfDtycqvk8dYSmcHzDcKGQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xcontent.XContentBuilder$$Lambda$58+0x0000000800c36e38.write(org.elasticsearch.xcontent.XContentBuilder, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QJL-SfxFsSlqFyMufqU3CAAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "IndexTemplateRegistry.java"}, "function": {"name": "void org.elasticsearch.xpack.core.template.IndexTemplateRegistry.addComposableTemplatesIfMissing(org.elasticsearch.cluster.ClusterState)", "offset": 6}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e9ofmivxAKQIQ6LGx5Xj3QAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequest(org.elasticsearch.cluster.node.DiscoveryNode, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 6}, "line": {"number": 797}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp"}} +{"Stackframe": {"function": {"name": "__x64_sys_read"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DJAMC8tUl4_oL0LoeNoUgQAAAAAAAACV"}} +{"Stackframe": {"file": {"name": "TransportBroadcastByNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived(org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$NodeRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 12}, "line": {"number": 442}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xp8UYWGnlqPX0wJIUXeFowAAAAAAAABu"}} +{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.IndexingChain.writeDocValues(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)", "offset": 21}, "line": {"number": 400}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TifPIvND7b7ICq3M7OVoFwAAAAAAAAG8"}} +{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.IndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 68}, "line": {"number": 309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aK7zvL-PqvTlxTrdlldaFAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext$AbstractWriteTask.write(io.netty.channel.AbstractChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 1089}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hssi35Rz-FIdn8Nd5FAnowAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6080+0x0000000801c3c260.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sPRIu4G_UqOumyaMlOEsUwAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", "offset": 20}, "line": {"number": 1128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_8mW4hWd4BOv7BBBIH1XlgAAAAAAAACF"}} +{"Stackframe": {"file": {"name": "BlobStoreIndexShardSnapshots.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 10}, "line": {"number": 246}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "s7VKGxcbaRsZOEk0pfn1eQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "EventFD.java"}, "function": {"name": "void sun.nio.ch.EventFD.reset()"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xojp5VBQ5xwqQiCbnXCnEQAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "DocumentMapperParser.java"}, "function": {"name": "org.elasticsearch.index.mapper.DocumentMapper org.elasticsearch.index.mapper.DocumentMapperParser.parse(java.lang.String, org.elasticsearch.common.compress.CompressedXContent, java.lang.String)", "offset": 2}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tAXHC2ex_sNH2I8CqIq8uwAAAAAAAAC_"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "org.elasticsearch.search.SearchHits org.elasticsearch.search.fetch.FetchPhase.buildSearchHits(org.elasticsearch.search.internal.SearchContext, org.elasticsearch.search.fetch.FetchPhase$Profiler)", "offset": 62}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.refreshIfNeeded(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)"}, "line": {"number": 358}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 54}, "line": {"number": 458}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k8MMKFpn5HdHbwhxcq_LHwAAAAAAAAET"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.runTask(org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask)", "offset": 42}, "line": {"number": 421}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D5lAQaLy9ATYrsXm9SsubAAAAAAAAACj"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesProducer.(org.apache.lucene.index.SegmentReadState, java.lang.String, java.lang.String, java.lang.String, java.lang.String)", "offset": 30}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wD7qCDk3lqH0hpTFDQk1YQAAAAAAAABR"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readMapEntries(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier, java.util.Map)", "offset": 6}, "line": {"number": 317}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8Rg9C7sld8ZdU0EvjvCPkgAAAAAAAAHn"}} +{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.doInternalExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.bulk.BulkRequest, java.lang.String, org.elasticsearch.action.ActionListener)", "offset": 74}, "line": {"number": 279}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dYhRx-e7CFQF89Cj2l7eOQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "int java.util.HashMap.hash(java.lang.Object)"}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rdBX62JmLvq7yePIa9GQ7wAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "ChunkedToXContent.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.common.xcontent.ChunkedToXContent$1.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 2}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yAXOf2kjh2kjTgPBmwWVtAAAAAAAAABX"}} +{"Stackframe": {"file": {"name": "RootObjectMapper.java"}, "function": {"name": "org.elasticsearch.index.mapper.RootObjectMapper$Builder org.elasticsearch.index.mapper.RootObjectMapper$TypeParser.parse(java.lang.String, java.util.Map, org.elasticsearch.index.mapper.MappingParserContext)", "offset": 7}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u7zifqDaDmZ-4eDh2NyxxQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter$$Lambda$6962+0x0000000801db27e8.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M68FpuSnAR3faZb2KAiD1wAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "Cipher.java"}, "function": {"name": "void javax.crypto.Cipher.init(int, java.security.Key, java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom)", "offset": 5}, "line": {"number": 1442}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GQBTbkHwVq-3ylCsjxkzKQAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$6120+0x0000000801c3f580.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "r9q6Sp77TFNIj0PxahNFPwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$7898+0x00000008025fcbf0.get()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vaZUIH7rCnsi1a_nVIdcmgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.sendResponse(org.elasticsearch.Version, java.lang.Object, org.elasticsearch.transport.TransportResponse, long, java.lang.String, org.elasticsearch.transport.TransportResponseOptions)"}, "line": {"number": 1178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RHCo9S6JLvJhQuHnIgHq_AAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "Hasher.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authc.support.Hasher.verifyBcryptHash(org.elasticsearch.common.settings.SecureString, char[])", "offset": 4}, "line": {"number": 695}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RZHHE_LN0EKL6oIilRIcrAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "BlobStoreIndexShardSnapshots.java"}, "function": {"name": "org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots.fromXContent(org.elasticsearch.common.xcontent.XContentParser)", "offset": 2}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rp3sprQtO8hOwekVupMQwgAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.flush(io.netty.channel.ChannelHandlerContext)", "offset": 15}, "line": {"number": 780}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4r9rFztoKz57cEDF-UrEngAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "Constructor.java"}, "function": {"name": "java.lang.Object java.lang.reflect.Constructor.newInstanceWithCaller(java.lang.Object[], boolean, java.lang.Class)", "offset": 11}, "line": {"number": 499}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "90UIqO2n6jPWAsY9C7Jk5wAAAAAAAAD2"}} +{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode$GCMEngine.doLastBlock(com.sun.crypto.provider.GaloisCounterMode$GCMOperation, java.nio.ByteBuffer, java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 49}, "line": {"number": 902}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z2Bohc5r8gi4Vp8vLyNMbAAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction$$Lambda$7450+0x0000000801f2c040.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACfRo"}} +{"Stackframe": {"function": {"name": "kernel_wait4"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD7KN"}} +{"Stackframe": {"function": {"name": "mutex_spin_on_owner"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7TS3qUr6WtMMfMRf5clAqgAAAAAAAACy"}} +{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "void org.elasticsearch.cluster.DiffableUtils$MapDiff.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 13}, "line": {"number": 505}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz87"}} +{"Stackframe": {"function": {"name": "__audit_syscall_exit"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(io.netty.channel.AbstractChannelHandlerContext, java.lang.Object)", "offset": 3}, "line": {"number": 348}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7BRmzswYOW_UKcdd8nQaagAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "FilteringGeneratorDelegate.java"}, "function": {"name": "void com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate.writeFieldName(java.lang.String)", "offset": 7}, "line": {"number": 265}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "raXCesASQpjJ6cB6kN-4ygAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.node.Node$$Lambda$5525+0x0000000801b099e0.publish(org.elasticsearch.cluster.ClusterStatePublicationEvent, org.elasticsearch.action.ActionListener, org.elasticsearch.cluster.coordination.ClusterStatePublisher$AckListener)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jUOioEgL9y6klFiTOk4p0AAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "TraceContext.scala"}, "function": {"name": "scala.concurrent.Future co.elastic.cloud.tracing.TraceContext$Noop$.withTypedSubContext(java.lang.String, java.lang.String, scala.Option, scala.Option, scala.Function1, scala.concurrent.ExecutionContext)"}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "g4Wrgl56pknsdoxjnBmq3QAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.engine.InternalEngine.acquireLastIndexCommit(boolean)", "offset": 2}, "line": {"number": 2096}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hNoyuGIC_f7bMKEKareyBAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TransportClusterHealthAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.health.ClusterHealthResponse org.elasticsearch.action.admin.cluster.health.TransportClusterHealthAction.access$500(org.elasticsearch.action.admin.cluster.health.TransportClusterHealthAction, org.elasticsearch.action.admin.cluster.health.ClusterHealthRequest, org.elasticsearch.cluster.ClusterState, int, boolean)"}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uQQ1PvFmxVdkBoNbbZIeSAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "RestActions.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestActions$NodesResponseRestListener.buildResponse(java.lang.Object, org.elasticsearch.common.xcontent.XContentBuilder)"}, "line": {"number": 225}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pkBGqhcKBroYcUtGIrc7fQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AbstractHttpMessage.java"}, "function": {"name": "org.apache.http.Header[] org.apache.http.message.AbstractHttpMessage.getHeaders(java.lang.String)"}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bJdqs0wVc1wfQSOq_E3BmAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "DateFieldMapper.java"}, "function": {"name": "long org.elasticsearch.index.mapper.DateFieldMapper$DateFieldType.parseToLong(java.lang.Object, boolean, java.time.ZoneId, org.elasticsearch.common.time.DateMathParser, java.util.function.LongSupplier, org.elasticsearch.index.mapper.DateFieldMapper$Resolution)"}, "line": {"number": 526}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zJ0UpIpUfpQRqbU4ca9CUQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ShardId.java"}, "function": {"name": "void org.elasticsearch.index.shard.ShardId.writeTo(org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GSIhvfd8NP-AkgZ44Vf-SAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$7073+0x0000000801e9ebf8.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rG4zWNbzF43FlUaeZiWkVQAAAAAAAAC5"}} +{"Stackframe": {"file": {"name": "LifecyclePolicy.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.LifecyclePolicy.toSteps(org.elasticsearch.client.Client, org.elasticsearch.license.XPackLicenseState)", "offset": 28}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XoQBAZDyQM5EalVK0DT7vwAAAAAAAABI"}} +{"Stackframe": {"file": {"name": "SSLEngineOutputRecord.java"}, "function": {"name": "sun.security.ssl.Ciphertext sun.security.ssl.SSLEngineOutputRecord.encode(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 16}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "12ng3IWdp2sjM8FNiOfO4AAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "RestUpdateByQueryAction.java"}, "function": {"name": "org.elasticsearch.rest.BaseRestHandler$RestChannelConsumer org.elasticsearch.reindex.RestUpdateByQueryAction.prepareRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.client.internal.node.NodeClient)"}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BFA4SysMtx9fo02P0NGNMQAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "ActorGraphInterpreter.scala"}, "function": {"name": "int akka.stream.impl.fusing.GraphInterpreterShell.runBatch(int)", "offset": 2}, "line": {"number": 650}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "A2vPxaVHXRf3HRGy2l0TqwAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "boolean java.util.regex.Pattern$Start.match(java.util.regex.Matcher, int, java.lang.CharSequence)", "offset": 6}, "line": {"number": 3620}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qMbPVznwEx5ReH3mSJFkBwAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "MultiTermsEnum.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.apache.lucene.index.MultiTermsEnum.next()", "offset": 18}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "a54vfeZiF-c1H2vDbjXg3wAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "JarFile.java"}, "function": {"name": "java.util.jar.JarEntry java.util.jar.JarFile.getJarEntry(java.lang.String)"}, "line": {"number": 473}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uZoHe-qh3SeYJemnk5OIewAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$7859+0x00000008025e9f88.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "d4qHdalKlYFqF-4zvAgorgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "AuthorizationUtils.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationUtils$AsyncAuthorizer.maybeRun()", "offset": 2}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AhC6Xj-K1vOC4yqhcS2tRAAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "void io.netty.channel.AbstractChannel$AbstractUnsafe.flush()", "offset": 8}, "line": {"number": 895}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aBDyfRrCxv0GQF3elQxZKgAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "S3RequestEndpointResolver.java"}, "function": {"name": "void com.amazonaws.services.s3.internal.S3RequestEndpointResolver.resolveRequestEndpoint(com.amazonaws.Request, java.lang.String)", "offset": 13}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWrK"}} +{"Stackframe": {"function": {"name": "inet6_fill_ifla6_attrs"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UGAPUw2d5-4XxhgrPyPBigAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "int io.netty.channel.nio.NioEventLoop.select(long)", "offset": 1}, "line": {"number": 803}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tKw1MOs57-P0NtuUhrlgBAAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "void java.util.TreeMap$ValueSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 11}, "line": {"number": 3218}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj"}} +{"Stackframe": {"function": {"name": "page_fault"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iT5yda9K-jxr01ayRGHOsgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.read(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)"}, "line": {"number": 283}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qzxXvZKl9cR-1XCNC1BjGQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$5598+0x0000000801ab0f88.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TVILalueBBKmusxvrzs61AAAAAAAAAEV"}} +{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.tasks.TaskManager.register(java.lang.String, java.lang.String, org.elasticsearch.tasks.TaskAwareRequest, boolean)", "offset": 25}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "V6fcE1EsjMYG4ctzhztDBgAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "CodecUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.CodecUtil.writeFooter(org.apache.lucene.store.IndexOutput)"}, "line": {"number": 409}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "IndicesFieldDataCache.java"}, "function": {"name": "org.apache.lucene.util.Accountable org.elasticsearch.indices.fielddata.cache.IndicesFieldDataCache$IndexFieldCache.lambda$load$1(org.apache.lucene.index.DirectoryReader, org.elasticsearch.index.fielddata.IndexFieldData$Global, org.elasticsearch.index.shard.ShardId, org.elasticsearch.indices.fielddata.cache.IndicesFieldDataCache$Key)", "offset": 2}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory.sync(java.util.Collection)", "offset": 3}, "line": {"number": 286}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X13qT-EIHpuumzsKroIGFAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "RestActions.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestActions$NodesResponseRestListener.buildResponse(org.elasticsearch.action.support.nodes.BaseNodesResponse, org.elasticsearch.common.xcontent.XContentBuilder)"}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gvQGUUGWUJbOOm8Vi63fqAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ObjectParser.lambda$declareField$9(java.util.function.BiConsumer, org.elasticsearch.common.xcontent.ContextParser, org.elasticsearch.common.xcontent.XContentParser, java.lang.Object, java.lang.Object)"}, "line": {"number": 374}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JuL_GrOughFFC8FPKzfp1gAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DelegatingConstructorAccessorImpl.java"}, "function": {"name": "java.lang.Object jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(java.lang.Object[])"}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0_phtM3pHaaGA2rtIita_gAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "TranslogWriter.java"}, "function": {"name": "void org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint(java.nio.channels.FileChannel, java.nio.file.Path, org.elasticsearch.index.translog.Checkpoint)"}, "line": {"number": 576}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B6AxGKo-ySgqhq6sru3ZYwAAAAAAAABO"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.map(java.util.Map, boolean)", "offset": 14}, "line": {"number": 888}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1cddjmaxpxvdigvHQVYiUgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "java.lang.String java.lang.String.valueOf(java.lang.Object)"}, "line": {"number": 4213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6IcKgNE2SHwXI30k_3NYuQAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "StringLatin1.java"}, "function": {"name": "int java.lang.StringLatin1.lastIndexOf(byte[], int, int)", "offset": 4}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6PDTyNLwDP2GCrVJoblLzgAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "IncludeExclude.java"}, "function": {"name": "org.apache.lucene.util.LongBitSet org.elasticsearch.search.aggregations.bucket.terms.support.IncludeExclude$PartitionedOrdinalsFilter.acceptedGlobalOrdinals(org.apache.lucene.index.RandomAccessOrds)", "offset": 4}, "line": {"number": 280}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "buggQyVhyi_Jg8jRb-Dk4gAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "long org.elasticsearch.index.translog.Translog.findEarliestLastModifiedAge(long, java.lang.Iterable, org.elasticsearch.index.translog.TranslogWriter)", "offset": 4}, "line": {"number": 465}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RYY2KsxSlCtOmORo2c20bQAAAAAAAACu"}} +{"Stackframe": {"file": {"name": "SSLEngineInputRecord.java"}, "function": {"name": "sun.security.ssl.Plaintext[] sun.security.ssl.SSLEngineInputRecord.decodeInputRecord(java.nio.ByteBuffer)", "offset": 35}, "line": {"number": 239}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VOTAjRbOztte8sAj2_6YtwAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "GetInstance.java"}, "function": {"name": "sun.security.jca.GetInstance$Instance sun.security.jca.GetInstance.getInstance(java.lang.String, java.lang.Class, java.lang.String)", "offset": 8}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "Mailbox.scala"}, "function": {"name": "boolean akka.dispatch.Mailbox.exec()"}, "line": {"number": 243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zyZpAtY8QHu127Ag2ZcL9AAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.lstat(sun.nio.fs.UnixPath, sun.nio.fs.UnixFileAttributes)", "offset": 2}, "line": {"number": 308}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Qx-pCy53U7YabuA5eb0fAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6317+0x0000000801c84b20.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zNcsGRHhxrtoMbOTGij46QAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.implFlush()"}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xyGE7Z7S41axzRSXDjnnxgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$3136.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kQbiOFHkLrfEZqNH1N5ssAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "NumberFormatException.java"}, "function": {"name": "void java.lang.NumberFormatException.(java.lang.String)"}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AD6q8JNXSicx23C7lYRhhwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "S3RetryingInputStream.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3RetryingInputStream.(org.elasticsearch.repositories.s3.S3BlobStore, java.lang.String)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAI9cQ"}} +{"Stackframe": {"function": {"name": "kvmalloc_node"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lbfK5xAhyyH63Gphusud1AAAAAAAAABo"}} +{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$AsyncAfterWriteAction.run()", "offset": 15}, "line": {"number": 455}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qX44wE4PaOHlvbveOqAZIAAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction.onOperation(int, org.elasticsearch.action.support.nodes.BaseNodeResponse)", "offset": 2}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Z8eDanRMy6l7sesw4dYkqQAAAAAAAACz"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$checkForApiKey$5(org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 18}, "line": {"number": 396}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IqULMo65wBpxMrZG82ozDwAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$authenticateAsync$0(org.elasticsearch.xpack.security.authc.UserToken)", "offset": 3}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6gfJzXw1oyUxocu6B990hgAAAAAAAABU"}} +{"Stackframe": {"file": {"name": "AggregatorFactories.java"}, "function": {"name": "org.elasticsearch.search.aggregations.AggregatorFactories org.elasticsearch.search.aggregations.AggregatorFactories$Builder.build(org.elasticsearch.search.aggregations.support.AggregationContext, org.elasticsearch.search.aggregations.AggregatorFactory)", "offset": 6}, "line": {"number": 345}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "L6zK1j3SbhClCg7g1r2ArwAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "boolean io.netty.channel.AbstractChannelHandlerContext.safeExecute(io.netty.util.concurrent.EventExecutor, java.lang.Runnable, io.netty.channel.ChannelPromise, java.lang.Object, boolean)", "offset": 3}, "line": {"number": 1165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAiyFW"}} +{"Stackframe": {"function": {"name": "__alloc_skb"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CivQS6jnSlhY0fTKds9DfQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.lambda$write$0(org.elasticsearch.common.xcontent.ToXContent, java.lang.String, boolean, java.io.OutputStream)"}, "line": {"number": 275}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cj5Iicnc1YHT-TWyg9rL5QAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "boolean io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)", "offset": 11}, "line": {"number": 403}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GY8FzW1zmT9O6Iy3KHcGZQAAAAAAAAEx"}} +{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode$GCMDecrypt.doFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 47}, "line": {"number": 1566}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N_pUSQ-9lnubUvA5GPAV8AAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.timedRead(java.io.FileDescriptor, byte[], int, int, long)", "offset": 7}, "line": {"number": 285}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nxv9fnyzQgRP5y-sCtMEGwAAAAAAAAB7"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 10}, "line": {"number": 638}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OHrN2X11En4TANmmvWeSsgAAAAAAAADv"}} +{"Stackframe": {"file": {"name": "BulkShardRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.BulkShardRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 31}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fMKxLLA4Q_xaCv6rBjpL3AAAAAAAAABt"}} +{"Stackframe": {"file": {"name": "TimSort.java"}, "function": {"name": "int java.util.TimSort.countRunAndMakeAscending(java.lang.Object[], int, int, java.util.Comparator)", "offset": 11}, "line": {"number": 360}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D8-jcVmofjDe3yWjz8JjyQAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "TimSorter.java"}, "function": {"name": "void org.apache.lucene.util.TimSorter.mergeAt(int)", "offset": 1}, "line": {"number": 169}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "988iKtFQoMdKrcaEMgPRLwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$BaseSortedDocValues.(org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer, org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$SortedEntry)", "offset": 2}, "line": {"number": 972}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "EnhancedConfig.scala"}, "function": {"name": "int akka.http.impl.util.EnhancedConfig$.getIntBytes$extension(com.typesafe.config.Config, java.lang.String)"}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rXAVE11Ryhs80ZE3uuTVVgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService.access$000(org.elasticsearch.cluster.service.MasterService, org.elasticsearch.cluster.service.MasterService$TaskInputs)"}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QUM3v4ew-jMVuKkpISsPEAAAAAAAAAGi"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.engine.InternalEngine.index(org.elasticsearch.index.engine.Engine$Index)", "offset": 74}, "line": {"number": 1051}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "BestBucketsDeferringCollector.java"}, "function": {"name": "org.elasticsearch.search.aggregations.InternalAggregation org.elasticsearch.search.aggregations.bucket.BestBucketsDeferringCollector$2.buildAggregation(long)", "offset": 7}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B0dgEMrPDFjx8i017hyU1wAAAAAAAABb"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.select(boolean)", "offset": 26}, "line": {"number": 765}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fwrSDgHrTXpAEmJ4bHy8MwAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "IndicesQueryCache.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.elasticsearch.indices.IndicesQueryCache$CachingWeightWrapper.bulkScorer(org.apache.lucene.index.LeafReaderContext)", "offset": 1}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "U2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABX"}} +{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "void org.elasticsearch.search.query.QueryPhase.execute(org.elasticsearch.search.internal.SearchContext)", "offset": 18}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Zc0Fl8AgEv3kvyq-GLd82QAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannel.writeAndFlush(java.lang.Object)"}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cPy2QFuGdjzuVBNv2-JtzQAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "Netty4MessageChannelHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler.flush(io.netty.channel.ChannelHandlerContext)", "offset": 3}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "peI4q4l4-jzxMAY6KnhlVgAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "AbstractMessageParser.java"}, "function": {"name": "org.apache.http.HttpMessage org.apache.http.impl.io.AbstractMessageParser.parse()", "offset": 4}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "s1Tvc2InyAqwYOGzitnwSgAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$executeOneFileSnapshot$78(org.elasticsearch.index.store.Store, org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.elasticsearch.index.shard.ShardId, org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshot$FileInfo, org.elasticsearch.repositories.IndexId, org.elasticsearch.snapshots.SnapshotId, java.util.concurrent.BlockingQueue, java.util.concurrent.Executor, org.elasticsearch.action.ActionListener)", "offset": 2}, "line": {"number": 2846}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3iwGD7XhJ7NFAOoUFDbFYAAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "BaseFuture.java"}, "function": {"name": "boolean org.elasticsearch.common.util.concurrent.BaseFuture.set(java.lang.Object)", "offset": 2}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$AuthorizationResultListener.onResponse(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationResult)", "offset": 12}, "line": {"number": 967}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JuD5cCArQ-CpayxbsHWDOgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "FilterLeafReader.java"}, "function": {"name": "boolean org.apache.lucene.index.FilterLeafReader$FilterTermsEnum.seekExact(org.apache.lucene.util.BytesRef)"}, "line": {"number": 184}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VwaGRjsI3iJyn8klEZc0AgAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "StreamSpliterators.java"}, "function": {"name": "boolean java.util.stream.StreamSpliterators$AbstractWrappingSpliterator.fillBuffer()", "offset": 5}, "line": {"number": 210}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKhf6"}} +{"Stackframe": {"function": {"name": "__kmalloc_node"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RSQAANunudn0hA4vXZNKMQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.support.XContentMapValues$$Lambda$2493.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aLOl6FCWtZ16Qk1Y0IIBGgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "RestResponseListener.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestResponseListener.processResponse(java.lang.Object)"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mnOX1WBV5CLziLmwu66WwQAAAAAAAAD_"}} +{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "java.nio.ByteBuffer com.sun.crypto.provider.GaloisCounterMode$GCMEngine.overlapDetection(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 66}, "line": {"number": 977}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eLf6mPNLMOgkAfsO77gC6AAAAAAAAAEF"}} +{"Stackframe": {"file": {"name": "FieldAndDocumentLevelSecurityRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.FieldAndDocumentLevelSecurityRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 31}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yse1ZG7dtWZV3NYY2Q_B9AAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.executeRequest(org.elasticsearch.tasks.Task, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.search.TransportSearchAction$SearchAsyncActionProvider, org.elasticsearch.action.ActionListener)", "offset": 58}, "line": {"number": 329}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-fOMs12YPQ6X2ykL_iFpxwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "HeapByteBuffer.java"}, "function": {"name": "void java.nio.HeapByteBuffer.(int, int, jdk.internal.access.foreign.MemorySegmentProxy)"}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X1XVXDc03N1sEPo0UxcrkgAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "void java.util.Arrays.sort(java.lang.Object[], int, int)", "offset": 4}, "line": {"number": 1107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7EAsiDF3uoTXazC89bRxpAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "DefaultBHttpClientConnection.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.impl.DefaultBHttpClientConnection.receiveResponseHeader()", "offset": 1}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-qvdwph0xh4SsklbVqtVDwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "RootObjectMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.RootObjectMapper.access$000(org.elasticsearch.index.mapper.MappingParserContext, org.elasticsearch.index.mapper.DynamicTemplate)"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xKygFT-Ukdgf1QJk7iE4OQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "int sun.nio.fs.UnixNativeDispatcher.dup(int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "980-iSS9S0F-vkRag1FHZwAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "DataOutput.java"}, "function": {"name": "void org.apache.lucene.store.DataOutput.writeMapOfStrings(java.util.Map)", "offset": 2}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yhF9CEzH60wdDBblzY1FcQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "long java.nio.file.Files.size(java.nio.file.Path)"}, "line": {"number": 2460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAisdM"}} +{"Stackframe": {"function": {"name": "sk_page_frag_refill"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rJx2L46bJZC9pWeYpH2aaAAAAAAAAABH"}} +{"Stackframe": {"file": {"name": "ScannerImpl.java"}, "function": {"name": "void org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens()", "offset": 10}, "line": {"number": 350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yEHCWGHOITM97v9CRD55HQAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "ClusterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterService$ClusterServiceTaskBatcher.run(java.lang.Object, java.util.List, java.lang.String)", "offset": 2}, "line": {"number": 263}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MLdMFGDeFJJvJRMDhyL8jwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BdO63C4A6h8Anj1Ds4O63AAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "ZipFile.java"}, "function": {"name": "int java.util.zip.ZipFile$Source.readFullyAt(byte[], int, int, long)", "offset": 5}, "line": {"number": 1295}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m-JqTOPsI6f7Ul_-cxfp2AAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$1.doRun()"}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CmepCKWJQWWrX7mRVq-c9QAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "ConcurrentMergeScheduler.java"}, "function": {"name": "void org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread.run()", "offset": 4}, "line": {"number": 700}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h5U_1XvNyeon9l2W-4YQpQAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$7673+0x0000000801ee1690.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mc5XjIkng3hgjSBfLrVghAAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$1.onResponse(java.lang.Void)", "offset": 3}, "line": {"number": 603}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XsKktcRkLp4u9hmAY2J0NgAAAAAAAACP"}} +{"Stackframe": {"file": {"name": "BuiltinClassLoader.java"}, "function": {"name": "java.net.URL jdk.internal.loader.BuiltinClassLoader.findResource(java.lang.String)", "offset": 38}, "line": {"number": 354}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "O_BiL2ROZsn4VXLfIMjl4AAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "InferenceProcessor.java"}, "function": {"name": "void org.elasticsearch.xpack.ml.inference.ingest.InferenceProcessor$Factory.accept(java.lang.Object)"}, "line": {"number": 191}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ObjectParser.parseValue(org.elasticsearch.common.xcontent.XContentParser, org.elasticsearch.common.xcontent.ObjectParser$FieldParser, java.lang.String, java.lang.Object, java.lang.Object)"}, "line": {"number": 517}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXis"}} +{"Stackframe": {"function": {"name": "alloc_file"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dDZdXDeINpZAnomtZ8xyMgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ByteArrayOutputStream.java"}, "function": {"name": "void java.io.ByteArrayOutputStream.write(byte[], int, int)"}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lNhTpFCI0o9j0xcLIuY3MgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "SSLSocketInputRecord.java"}, "function": {"name": "int sun.security.ssl.SSLSocketInputRecord.read(java.io.InputStream, byte[], int, int)"}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-I0qeKDe1hMr58wzZHuN2wAAAAAAAADf"}} +{"Stackframe": {"file": {"name": "HttpRequestExecutor.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.protocol.HttpRequestExecutor.doSendRequest(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext)", "offset": 42}, "line": {"number": 238}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Mj1fVO3bykQ8piLrLc5IFQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.unlink(sun.nio.fs.UnixPath)", "offset": 2}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAUgx"}} +{"Stackframe": {"function": {"name": "aufs_d_revalidate"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "84ZDrThTonFKfnYpmx4WIQAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.SingleThreadEventExecutor.execute(java.lang.Runnable)", "offset": 1}, "line": {"number": 818}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1p1bNbRiF-c1H0cYOfp-YwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "JarFile.java"}, "function": {"name": "java.util.jar.JarEntry java.util.jar.JarFile.getJarEntry(java.lang.String)"}, "line": {"number": 468}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gbCFQS2suYv46rP_aUsebAAAAAAAAABp"}} +{"Stackframe": {"file": {"name": "FieldsIndexWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.FieldsIndexWriter.finish(int, long, org.apache.lucene.store.IndexOutput)", "offset": 7}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ihprad0bkU-u2IU9StodIgAAAAAAAAEq"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.applyChanges(org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState, java.lang.String, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder)", "offset": 25}, "line": {"number": 497}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fcVS7ZCGAM2mDAe0gspxtwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory.privateDeleteFile(java.lang.String, boolean)"}, "line": {"number": 373}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL"}} +{"Stackframe": {"function": {"name": "entry_SYSCALL_64_after_hwframe"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hbRuRrRTUwPxI5LbvQW-TgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "com.amazonaws.Request com.amazonaws.services.s3.AmazonS3Client.createRequest(java.lang.String, java.lang.String, com.amazonaws.AmazonWebServiceRequest, com.amazonaws.http.HttpMethodName)"}, "line": {"number": 4672}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ap1UoP8UuWmfI5z-eXnooAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$1.onResponse(java.lang.Object)"}, "line": {"number": 597}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApF2r"}} +{"Stackframe": {"function": {"name": "cpumask_next"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nyMCPt5M-rbb158Tnrz3sgAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriterPerThread.sealFlushedSegment(org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 5}, "line": {"number": 449}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Z_WnWFmJraaLolV8hl2sigAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "LifecyclePolicyUtils.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.xpack.core.ilm.LifecyclePolicyUtils.load(java.lang.String)"}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fNBUTxafk7cWQGRCQErWrwAAAAAAAABi"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.updateChildren()", "offset": 18}, "line": {"number": 246}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UxUrGKaPEq08l4l3816TpwAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "InputStreamEntity.java"}, "function": {"name": "void org.apache.http.entity.InputStreamEntity.writeTo(java.io.OutputStream)", "offset": 14}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FzJF8qZ49M3tzNcHAYKOpwAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "URLClassLoader.java"}, "function": {"name": "java.io.InputStream java.net.URLClassLoader.getResourceAsStream(java.lang.String)", "offset": 7}, "line": {"number": 290}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vXrY6qUW8eDlJ5cS7LNEvwAAAAAAAACS"}} +{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer.(org.apache.lucene.index.SegmentReadState, java.lang.String, java.lang.String, java.lang.String, java.lang.String)", "offset": 35}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M_7vr1XfKLL1gxMHO-w50wAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "IndicesRequestCache.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.indices.IndicesRequestCache$Loader.load(org.elasticsearch.indices.IndicesRequestCache$Key)"}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8foNE8U2zWQjdq52zToPlAAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "TransportClusterInfoAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.info.TransportClusterInfoAction.masterOperation(org.elasticsearch.action.support.master.info.ClusterInfoRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "trKFSvtlxO979VBLgP3FPAAAAAAAAAAv"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.commit(long, long, org.elasticsearch.Version)", "offset": 3}, "line": {"number": 941}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0OmJpqDVlOVkXz83zBD8fwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "int org.elasticsearch.common.io.stream.StreamInput.readVIntSlow()"}, "line": {"number": 217}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NT8wQMcRiQYgsi7kcUkPTAAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.loadAuthorizedIndices(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 2}, "line": {"number": 471}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rYzqcY9OrSDd3tVReT2f7gAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "SortedSetDVOrdinalsIndexFieldData.java"}, "function": {"name": "org.elasticsearch.index.fielddata.IndexOrdinalsFieldData org.elasticsearch.index.fielddata.plain.SortedSetDVOrdinalsIndexFieldData.loadGlobal(org.apache.lucene.index.DirectoryReader)", "offset": 23}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcnH"}} +{"Stackframe": {"function": {"name": "do_readlinkat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7skvoqQ_JlmRN5w43B7kuQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.access$600(org.apache.lucene.index.IndexWriter, java.util.Collection)"}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALko9"}} +{"Stackframe": {"function": {"name": "path_lookupat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hw-KknQoqJJdtqzi9Ny59gAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "ByteBufStreamInput.java"}, "function": {"name": "byte org.elasticsearch.transport.netty4.ByteBufStreamInput.readByte()"}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z34wlKv1KXdMEfbsDogpYAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "ContentLengthOutputStream.java"}, "function": {"name": "void org.apache.http.impl.io.ContentLengthOutputStream.close()", "offset": 2}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ0CJ"}} +{"Stackframe": {"function": {"name": "prep_new_page"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HsCaQLZJVi-7tOt5z5xK6gAAAAAAAADd"}} +{"Stackframe": {"file": {"name": "ResizeRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.ResizeRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 53}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hYpB2gs86zTUdl1LmAGlfQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$9120+0x00000008020dd400.get()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4FMn0JjDEz3IGzvUs9jYxAAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "RandomAccessFile.java"}, "function": {"name": "void java.io.RandomAccessFile.seek(long)", "offset": 3}, "line": {"number": 589}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ub0yrV1DAC67s4TYqKh50AAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$handleIndexActionAuthorizationResult$15(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, java.lang.Void)"}, "line": {"number": 549}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.apache.lucene.store.FilterDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BnWw-Kwbk8U0kdCMhiF9pAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "SimpleRole.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authz.accesscontrol.IndicesAccessControl org.elasticsearch.xpack.core.security.authz.permission.SimpleRole.authorize(java.lang.String, java.util.Set, java.util.Map, org.elasticsearch.xpack.core.security.authz.permission.FieldPermissionsCache)"}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Bp5IGjJq5SY5vljplV9r5gAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction$AsyncSingleAction$$Lambda$6995+0x0000000801ea46d8.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wUZIVedHlYEif3XTrW4qUgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "LongPipeline.java"}, "function": {"name": "java.util.OptionalLong java.util.stream.LongPipeline.min()"}, "line": {"number": 461}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aaqkmaiW-eZjkbmF3yguOQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotsService$UpdateSnapshotStatusAction.masterOperation(org.elasticsearch.action.support.master.MasterNodeRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)"}, "line": {"number": 4094}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M2N-LLw_gbVN-r7m25mjxQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "NamedWriteableAwareStreamInput.java"}, "function": {"name": "org.elasticsearch.common.io.stream.NamedWriteable org.elasticsearch.common.io.stream.NamedWriteableAwareStreamInput.readNamedWriteable(java.lang.Class, java.lang.String)", "offset": 1}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YM_gl0OeNbTAtY8GRC8UVgAAAAAAAACb"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 29}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H3I9lsKeM021aDJgbYYYAwAAAAAAAABH"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateListener(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder, java.util.Collection)", "offset": 5}, "line": {"number": 573}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jqZlrbK2QVy2mdzZwH-X4AAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "PackedLongValues.java"}, "function": {"name": "void org.apache.lucene.util.packed.PackedLongValues$Builder.pack()"}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fe69QX5O_EOqLGiPEFzIuwAAAAAAAAGB"}} +{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.executeNextPhase(org.elasticsearch.action.search.SearchPhase, org.elasticsearch.action.search.SearchPhase)", "offset": 52}, "line": {"number": 463}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T1PZ-3rI8N9AUa6pdavoVQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "CgroupSubsystemController.java"}, "function": {"name": "long jdk.internal.platform.CgroupSubsystemController.getLongValue(jdk.internal.platform.CgroupSubsystemController, java.lang.String, java.util.function.Function, long)"}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BYItgZpVD2E3ydG9PJ9meAAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter$CommitPoint.(java.util.Collection, org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfos)", "offset": 6}, "line": {"number": 771}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4Nbh2qu5FSYDYvePocfslwAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", "offset": 6}, "line": {"number": 1116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_p4kJuFp1k7IBcujKZAxJgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "SearchResponseSections.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.action.search.SearchResponseSections.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)"}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lyvYbnLQSXL9gPpWhYMTZgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "HttpClient.scala"}, "function": {"name": "akka.http.scaladsl.settings.ClientConnectionSettings no.found.http.HighLevelHttpClient.$anonfun$streamingHttpRequest$5(no.found.http.HighLevelHttpClient)"}, "line": {"number": 204}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMukM"}} +{"Stackframe": {"function": {"name": "ep_poll"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GJrAa0MCsJhnK8VSmsr7hgAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "BufferedReader.java"}, "function": {"name": "java.lang.String java.io.BufferedReader.readLine()"}, "line": {"number": 437}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4J4WxzKvOwTg2PxoPnS9CQAAAAAAAAEJ"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.parseMediumName(int)", "offset": 35}, "line": {"number": 1768}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NREbP_6GqKjaa6YAIZKMLwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$UnmodifiableCollection$1.hasNext()"}, "line": {"number": 1053}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j1aaSI0_CmCcq1III7HOyQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.discovery.SeedHostsResolver$$Lambda$5265+0x0000000801a6c000.call()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACdyw"}} +{"Stackframe": {"function": {"name": "wait_consider_task"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hAHkihhV-QBviFisHj04vAAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "RestSearchAction.java"}, "function": {"name": "org.elasticsearch.rest.BaseRestHandler$RestChannelConsumer org.elasticsearch.rest.action.search.RestSearchAction.prepareRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.client.node.NodeClient)", "offset": 18}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjNJs"}} +{"Stackframe": {"function": {"name": "__netif_receive_skb_core"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZWStSXeNAGd_UvPJWPN72AAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "DefaultHttpRequestWriter.java"}, "function": {"name": "void org.apache.http.impl.io.DefaultHttpRequestWriter.writeHeadLine(org.apache.http.HttpRequest)"}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAVT6h"}} +{"Stackframe": {"function": {"name": "strncpy_from_user"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "q5W-ZFz3SsJgX44Cea7PngAAAAAAAADE"}} +{"Stackframe": {"file": {"name": "TraceContext.java"}, "function": {"name": "boolean co.elastic.apm.agent.impl.transaction.TraceContext.asChildOf(java.lang.String)", "offset": 26}, "line": {"number": 326}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EiFiDjtjvWXj4YGVaTJXOQAAAAAAAADj"}} +{"Stackframe": {"file": {"name": "SessionInputBufferImpl.java"}, "function": {"name": "int org.apache.http.impl.io.SessionInputBufferImpl.readLine(org.apache.http.util.CharArrayBuffer)", "offset": 39}, "line": {"number": 280}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YfPhlM7fpOuKzX3zIJxLMAAAAAAAAABQ"}} +{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.StandardDirectoryReader org.apache.lucene.index.StandardDirectoryReader.open(org.apache.lucene.index.IndexWriter, org.apache.lucene.util.IOFunction, org.apache.lucene.index.SegmentInfos, boolean, boolean)", "offset": 15}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_RUQ8702rsuOcfHHin3xeQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "int sun.nio.ch.FileChannelImpl.read(java.nio.ByteBuffer, long)"}, "line": {"number": 945}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m6DukRuoBGn25PtbhUDv5wAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ShardSearchRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.ShardSearchRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)"}, "line": {"number": 24}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ljU-LP57RlgNPZ2rSqp_EAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "java.lang.Object java.util.concurrent.ConcurrentHashMap.replaceNode(java.lang.Object, java.lang.Object, java.lang.Object)"}, "line": {"number": 1111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp15j"}} +{"Stackframe": {"function": {"name": "_raw_spin_lock"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Sqsat4GEGxHwIDQaCP0f5QAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.field(java.lang.String, java.lang.Object)"}, "line": {"number": 772}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kEq_ANJdk0a16aiphLqiOQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.apache.lucene.index.IndexWriter$$Lambda$7713+0x00000008025aa4a0.apply(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ztOqW-PzPXXgelwqIpykOgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeFlush()", "offset": 1}, "line": {"number": 742}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACF8b"}} +{"Stackframe": {"function": {"name": "pud_clear_huge"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ejjiJw6pliWwW6skXBi_SQAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$9101+0x00000008020daee0.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oOz1jSRZNClfuKPM_yWNFgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Policy.java"}, "function": {"name": "boolean java.security.Policy$PolicyDelegate.implies(java.security.ProtectionDomain, java.security.Permission)"}, "line": {"number": 817}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuZy"}} +{"Stackframe": {"function": {"name": "ep_poll"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PFj10tn7Q5v6DtY9a--2yAAAAAAAAADT"}} +{"Stackframe": {"file": {"name": "TimeBasedCheckpointProvider.java"}, "function": {"name": "void org.elasticsearch.xpack.transform.checkpoint.TimeBasedCheckpointProvider.sourceHasChanged(org.elasticsearch.xpack.core.transform.transforms.TransformCheckpoint, org.elasticsearch.action.ActionListener)", "offset": 19}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZUkxWiYAr4SyJxCC7bTxYgAAAAAAAACH"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.lambda$innerAcquireReplicaOperationPermit$31(long, long, long, org.elasticsearch.action.ActionListener, org.elasticsearch.core.Releasable)", "offset": 20}, "line": {"number": 3567}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jE-4Ja_8RAzuC-rb8IfgCgAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction$2.doRun()", "offset": 1}, "line": {"number": 181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LLIwCfmO3nPIw_1GozzfkgAAAAAAAAEM"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.parseEscapedName(int[], int, int, int, int)", "offset": 64}, "line": {"number": 1986}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UoX-ughXNd_AmddejeY_6gAAAAAAAAEY"}} +{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.req(java.util.Collection, java.util.Collection, long)", "offset": 42}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DDfUAG9Q-Cqwr5La19vRNwAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "ByteQuadsCanonicalizer.java"}, "function": {"name": "void com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._verifySharing()", "offset": 1}, "line": {"number": 862}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KvbcYFET00wCvETlglupVAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Netty4Transport.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4Transport.sendMessage(java.lang.Object, org.elasticsearch.common.bytes.BytesReference, org.elasticsearch.action.ActionListener)"}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dT5WZm8-ag4VFDZf0HaaMAAAAAAAAADo"}} +{"Stackframe": {"file": {"name": "Lucene60FieldInfosFormat.java"}, "function": {"name": "org.apache.lucene.index.FieldInfos org.apache.lucene.codecs.lucene60.Lucene60FieldInfosFormat.read(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.store.IOContext)", "offset": 34}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5wQ2l0nlEjbQlD2jl8xx7wAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "AnalysisRegistry.java"}, "function": {"name": "java.util.Map org.elasticsearch.index.analysis.AnalysisRegistry.buildTokenFilterFactories(org.elasticsearch.index.IndexSettings)", "offset": 9}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jcIWUSsiapCLfbB0_4IxDAAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "CountedCollector.java"}, "function": {"name": "void org.elasticsearch.action.search.CountedCollector.onResult(org.elasticsearch.search.SearchPhaseResult)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m2-tH33cq1FP2Q7Is62J0gAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$extractToken$13(java.util.function.Consumer, org.elasticsearch.xpack.core.security.authc.AuthenticationToken)"}, "line": {"number": 445}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VdQenHXtmVDmm8_NYRJBugAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.document.RestBulkAction$$Lambda$7064+0x0000000801eb8000.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CkQR8QMBE-NYVyq0-4RnLQAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.executeBulk(org.elasticsearch.tasks.Task, org.elasticsearch.action.bulk.BulkRequest, long, org.elasticsearch.action.ActionListener, java.lang.String, org.elasticsearch.common.util.concurrent.AtomicArray, java.util.Map)"}, "line": {"number": 770}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "74O8rb6r6chx3WMINhKDgQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "StreamOpFlag.java"}, "function": {"name": "int java.util.stream.StreamOpFlag.fromCharacteristics(java.util.Spliterator)"}, "line": {"number": 733}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACd"}} +{"Stackframe": {"file": {"name": "Netty4HttpRequestHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpRequestHandler.channelRead0(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 21}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6c0EnlLjrGzIpjA-TtNuJgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "MemoryPoolImpl.java"}, "function": {"name": "java.lang.management.MemoryUsage sun.management.MemoryPoolImpl.getPeakUsage0()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Mn0lhQNjNLc2TiLs5CI5twAAAAAAAABW"}} +{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.tasks.TaskManager.registerAndExecute(java.lang.String, org.elasticsearch.action.support.TransportAction, org.elasticsearch.action.ActionRequest, org.elasticsearch.transport.Transport$Connection, org.elasticsearch.action.ActionListener)", "offset": 14}, "line": {"number": 203}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BgEJc-XoGoJmCiFevuTBsgAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "Constructor.java"}, "function": {"name": "java.lang.Object java.lang.reflect.Constructor.newInstance(java.lang.Object[])", "offset": 1}, "line": {"number": 480}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnNGr"}} +{"Stackframe": {"function": {"name": "unix_destruct_scm"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZaLdh2m65raIV_JyagrUBQAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.fetch.ScrollQueryFetchSearchResult org.elasticsearch.search.SearchService.executeFetchPhase(org.elasticsearch.search.internal.InternalScrollSearchRequest, org.elasticsearch.action.search.SearchTask)", "offset": 17}, "line": {"number": 400}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GNh1_yXJg_PNE59rBU9I5AAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.merge(org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 17}, "line": {"number": 3931}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SHn4gmjKfYwZ2bQwnjaoXAAAAAAAAABN"}} +{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "void org.elasticsearch.cluster.ClusterState$ClusterStateDiff.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 8}, "line": {"number": 858}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HC0gC3BFwdNWsLtKomq2gQAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "FieldMapper.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.index.mapper.FieldMapper$MultiFields.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 3}, "line": {"number": 613}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gkppypvMO9S8VR3D3H8lzgAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "ApiKeyService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.ApiKeyService.authenticateWithApiKeyIfPresent(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.action.ActionListener)", "offset": 21}, "line": {"number": 422}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Q7k8aLNNTYo-KuQU3gt-4wAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "NativePRNG.java"}, "function": {"name": "void sun.security.provider.NativePRNG$RandomIO.readFully(java.io.InputStream, byte[])", "offset": 3}, "line": {"number": 424}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qdWawJbVNdMBrG9mDAPkpwAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "NodeClient.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.client.internal.node.NodeClient.executeLocally(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "btJR8uWrInrzn_sGkpIt3QAAAAAAAABN"}} +{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.lambda$consumeToken$5(org.elasticsearch.xpack.security.authc.Authenticator$Context, java.util.Map, org.elasticsearch.action.ActionListener, java.util.concurrent.atomic.AtomicReference, java.util.concurrent.atomic.AtomicReference, org.elasticsearch.xpack.core.security.user.User)", "offset": 6}, "line": {"number": 218}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgJ7"}} +{"Stackframe": {"function": {"name": "kmem_cache_alloc"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OsLUWl8iegUfkov5V9GtpAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$runRequestInterceptors$14(org.elasticsearch.xpack.security.authz.interceptor.RequestInterceptor, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.StepListener, java.lang.Void)"}, "line": {"number": 380}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnZDl"}} +{"Stackframe": {"function": {"name": "in6_dump_addrs"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HMo9CJkBJDT98ldAVMcaFwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer.lambda$executeSingleUpload$19(org.elasticsearch.repositories.s3.AmazonS3Reference, com.amazonaws.services.s3.model.PutObjectRequest)"}, "line": {"number": 490}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AUeWutpC-nNF3YBtlN2qyQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "OperatingSystemImpl.java"}, "function": {"name": "long com.sun.management.internal.OperatingSystemImpl.getTotalMemorySize()", "offset": 1}, "line": {"number": 254}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Nb1IdUv964LIky2A5_p47wAAAAAAAAEI"}} +{"Stackframe": {"file": {"name": "QuerySearchResult.java"}, "function": {"name": "void org.elasticsearch.search.query.QuerySearchResult.writeToNoId(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 58}, "line": {"number": 433}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Qxy7B7Nr9PFo52Y5q5lwVgAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.internal.SearchContext org.elasticsearch.search.SearchService.createContext(org.elasticsearch.search.internal.ReaderContext, org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask, boolean)", "offset": 6}, "line": {"number": 775}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "K9THlNmT2FNZygB0ST8aSgAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService$$Lambda$10692+0x00000008029728f0.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PlO3UlD8x552lb1CM2CULwAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryShardReference.perform(org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.action.ActionListener)", "offset": 8}, "line": {"number": 1153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTC4"}} +{"Stackframe": {"function": {"name": "do_iter_readv_writev"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UJNt6Wr7juWI2oGMxpHwHgAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.executeWithTimer()", "offset": 6}, "line": {"number": 781}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QkeEnlNsNxKs1un8gmKDpQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "CodecUtil.java"}, "function": {"name": "int org.apache.lucene.codecs.CodecUtil.checkHeader(org.apache.lucene.store.DataInput, java.lang.String, int, int)"}, "line": {"number": 184}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "IndexTemplateRegistry.java"}, "function": {"name": "void org.elasticsearch.xpack.core.template.IndexTemplateRegistry.addTemplatesIfMissing(org.elasticsearch.cluster.ClusterState)", "offset": 2}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PSDH1VHeBrDlmI_9T7LPRwAAAAAAAABO"}} +{"Stackframe": {"file": {"name": "MappedMultiFields.java"}, "function": {"name": "org.apache.lucene.index.PostingsEnum org.apache.lucene.index.MappedMultiFields$MappedMultiTermsEnum.postings(org.apache.lucene.index.PostingsEnum, int)", "offset": 11}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i_Iz97mxX5oIgVbqZMT-ewAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SettingsFilter.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.SettingsFilter.filter(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mVZC5ucQ9s0QMwQ6Cu6VqwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "AsyncIOProcessor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AsyncIOProcessor.drainAndProcessAndRelease(java.util.List)", "offset": 1}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FGgciwInAzIbYSMNIMKs5AAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator$$Lambda$7965+0x0000000802626c70.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NSIFqOzUSbaFNAJMWJr8AgAAAAAAAADy"}} +{"Stackframe": {"file": {"name": "FieldAndDocumentLevelSecurityRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.FieldAndDocumentLevelSecurityRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 28}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tG2KtxjrEKbGvy_Zisi6LwAAAAAAAABR"}} +{"Stackframe": {"file": {"name": "SegmentDocValues.java"}, "function": {"name": "org.apache.lucene.util.RefCount org.apache.lucene.index.SegmentDocValues.newDocValuesProducer(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.Directory, java.lang.Long, org.apache.lucene.index.FieldInfos)", "offset": 11}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dYxgL7CgR5AQJPxIbvTAXgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "FieldInfo.java"}, "function": {"name": "java.lang.String org.apache.lucene.index.FieldInfo.getAttribute(java.lang.String)"}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WlkJT2Virxt9w04SopK20wAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$3135.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_HewcgijIMPowgCu2JuUaAAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$8(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.xpack.security.audit.AuditTrail, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, org.elasticsearch.action.ActionListener)"}, "line": {"number": 290}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9bC20anEZ8kSwASdXXDkzAAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "FilterAggregator.java"}, "function": {"name": "org.elasticsearch.search.aggregations.LeafBucketCollector org.elasticsearch.search.aggregations.bucket.filter.FilterAggregator.getLeafCollector(org.apache.lucene.index.LeafReaderContext, org.elasticsearch.search.aggregations.LeafBucketCollector)"}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kUJgVxIXgDBTomuPsxvCVwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "java.lang.Object java.util.AbstractMap.get(java.lang.Object)"}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fGOA0JLmMg26rQH30fPUgwAAAAAAAACv"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 29}, "line": {"number": 297}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JrYoiC6AwYp7vAsr2PRw8AAAAAAAAABm"}} +{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "int sun.nio.ch.FileChannelImpl.read(java.nio.ByteBuffer, long)", "offset": 14}, "line": {"number": 800}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3yZRDT05_hGvUj8jRvChFAAAAAAAAAIW"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "boolean org.apache.lucene.index.ReadersAndUpdates.writeFieldUpdates(org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos$FieldNumbers, long, org.apache.lucene.util.InfoStream)", "offset": 74}, "line": {"number": 579}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8l21Wg-M8W7Bxi5-mLylDwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "void org.elasticsearch.common.io.Streams$FlushOnCloseOutputStream.writeByte(byte)"}, "line": {"number": 261}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_coc0yQmibHSYbczgpafrwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "int org.apache.lucene.codecs.DocValuesConsumer$3$1.nextDoc()"}, "line": {"number": 418}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gDav7mSa1H0kLuPzayJt0QAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "AbstractAsyncTask.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractAsyncTask.run()", "offset": 21}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mGc5SCx8bcB0yyOsBwmj6QAAAAAAAABw"}} +{"Stackframe": {"file": {"name": "OutputRecord.java"}, "function": {"name": "long sun.security.ssl.OutputRecord.t13Encrypt(sun.security.ssl.SSLCipher$SSLWriteCipher, byte, java.nio.ByteBuffer, int, int, int, sun.security.ssl.ProtocolVersion)", "offset": 21}, "line": {"number": 418}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "scEhYXFwf_JnNDVurc9l9AAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "void io.netty.channel.AbstractChannel$AbstractUnsafe.flush()", "offset": 8}, "line": {"number": 823}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5o0VuONZLOBJ9KxKrJVJCQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.coordination.PublicationTransportHandler$PublicationContext$$Lambda$8564+0x00000008027a5d70.apply(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vU9NOCw_rw2r2oDw6OtcLAAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.internalSendMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.BytesReference, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 760}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eAk7Sj5gS4SQJLCKXayQTgAAAAAAAABQ"}} +{"Stackframe": {"file": {"name": "AttributeSource.java"}, "function": {"name": "org.apache.lucene.util.Attribute org.apache.lucene.util.AttributeSource.addAttribute(java.lang.Class)", "offset": 8}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Jj6ja2Wbkf1_R1a9nVWcUAAAAAAAAAB-"}} +{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.CommonStats.(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 6}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-jPUB-Rd5LS45isiTdEjugAAAAAAAABQ"}} +{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "void org.elasticsearch.xcontent.ObjectParser.parseSub(org.elasticsearch.xcontent.XContentParser, org.elasticsearch.xcontent.ObjectParser$FieldParser, java.lang.String, java.lang.Object, java.lang.Object)", "offset": 3}, "line": {"number": 616}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HC0gC3BFwdNWsLtKomq2gQAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "FieldMapper.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.index.mapper.FieldMapper$MultiFields.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 2}, "line": {"number": 612}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jzKd71GO6LzGFqcyNBmKtQAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "BytesRefHash.java"}, "function": {"name": "int org.apache.lucene.util.BytesRefHash.findHash(org.apache.lucene.util.BytesRef)", "offset": 7}, "line": {"number": 348}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Y56DW_ZsCkojgmcTnRH0AAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ObjectName.java"}, "function": {"name": "javax.management.ObjectName javax.management.ObjectName.getInstance(java.lang.String)"}, "line": {"number": 1297}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mABShI7f7tic8wvc-ikJJAAAAAAAAABZ"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateListener(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.common.StopWatch, java.util.Collection)", "offset": 4}, "line": {"number": 515}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nTY5PVj9xOh25K27IM1v_QAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.search.CountedCollector$$Lambda$9163+0x00000008020ec100.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ngEDfMGa2k3LBps0tpgYRAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "ChannelOutboundBuffer.java"}, "function": {"name": "void io.netty.channel.ChannelOutboundBuffer.safeSuccess(io.netty.channel.ChannelPromise)"}, "line": {"number": 717}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bwad36dX9xAawW6mOkjl-AAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "WorkerBulkByScrollTaskState.java"}, "function": {"name": "void org.elasticsearch.index.reindex.WorkerBulkByScrollTaskState.delayPrepareBulkRequest(org.elasticsearch.threadpool.ThreadPool, long, int, org.elasticsearch.common.util.concurrent.AbstractRunnable)", "offset": 5}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC6gT"}} +{"Stackframe": {"function": {"name": "worker_thread"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JZHqgG3qJMfVMYvnOCqIRAAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "LockSupport.java"}, "function": {"name": "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)", "offset": 3}, "line": {"number": 215}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rko_YbcnDiBZxFuLrPp4EQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener.completeWith(org.elasticsearch.action.ActionListener, org.elasticsearch.common.CheckedSupplier)"}, "line": {"number": 434}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FZzIgNzHRBST9tkBv-Hj5wAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "long org.apache.lucene.search.Boolean2ScorerSupplier.computeCost()", "offset": 3}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mEefCgy0KUI5I66lcwP9KQAAAAAAAACT"}} +{"Stackframe": {"file": {"name": "PackedLongValues.java"}, "function": {"name": "void org.apache.lucene.util.packed.PackedLongValues$Builder.pack(long[], int, int, float)", "offset": 16}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wzZaceuyvwDXeTAM8IhEDwAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "RestCancellableNodeClient.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestCancellableNodeClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 2}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0ebnP1NzKFRR4og442rKwgAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "TemplateUtils.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.core.template.TemplateUtils.replaceVariable(java.lang.String, java.lang.String, java.lang.String)"}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Fyvqj99pkKDWLuJmqlMKOgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "PoolArena.java"}, "function": {"name": "io.netty.buffer.PooledByteBuf io.netty.buffer.PoolArena.allocate(io.netty.buffer.PoolThreadCache, int, int)", "offset": 1}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Tm69BHhvzhA-OK8e2Udw5AAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "org.elasticsearch.index.store.StoreStats org.elasticsearch.index.store.Store.stats(long, java.util.function.LongUnaryOperator)", "offset": 1}, "line": {"number": 359}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hpS1QtdrBQjGg-LCbfqeSAAAAAAAAD_u"}} +{"Stackframe": {"function": {"name": "br_forward"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NCpnvGv1--TWXcgs4ddcmQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "ReleasableBytesStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.ReleasableBytesStreamOutput.ensureCapacity(long)", "offset": 1}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vMKrZyiGBF1k3lROCgHb_AAAAAAAAACN"}} +{"Stackframe": {"file": {"name": "FieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.FieldsConsumer.merge(org.apache.lucene.index.MergeState)", "offset": 18}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mdtLbTGS2m1_yRWrZMRMMwAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "void org.elasticsearch.search.SearchService.parseSource(org.elasticsearch.search.DefaultSearchContext, org.elasticsearch.search.builder.SearchSourceBuilder, boolean)", "offset": 10}, "line": {"number": 947}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TozXD2NzMy0dEH0e02djYAAAAAAAAAEK"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesConsumer org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.getInstance(org.apache.lucene.index.FieldInfo, boolean)", "offset": 56}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BHK9bdXWYz8nIBlEo9-NywAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "Lucene50SkipReader.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene50.Lucene50SkipReader.readSkipData(int, org.apache.lucene.store.IndexInput)"}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Un7tl6r7EZew-IGpAD4kSwAAAAAAAAC3"}} +{"Stackframe": {"file": {"name": "NativeFSLockFactory.java"}, "function": {"name": "void org.apache.lucene.store.NativeFSLockFactory$NativeFSLock.ensureValid()", "offset": 20}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zkH-QAcWQraJt_RXBXUVJgAAAAAAAADU"}} +{"Stackframe": {"file": {"name": "ByteQuadsCanonicalizer.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.addName(java.lang.String, int[], int)", "offset": 33}, "line": {"number": 844}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EWzE-qlre-z5rqSoubbNBAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "void org.elasticsearch.indices.IndicesService.lambda$loadIntoContext$16(org.elasticsearch.search.query.QueryPhase, org.elasticsearch.search.internal.SearchContext, boolean[], org.elasticsearch.common.io.stream.StreamOutput)", "offset": 2}, "line": {"number": 1131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vHRVCSo82RUdl9uaS0HcGQAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$snapshotShard$77(org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.apache.lucene.index.IndexCommit, org.elasticsearch.index.shard.ShardId, org.elasticsearch.snapshots.SnapshotId, java.util.List, boolean, org.elasticsearch.common.blobstore.BlobContainer, java.lang.Runnable, org.elasticsearch.repositories.ShardGeneration, org.elasticsearch.repositories.SnapshotShardContext, java.util.Collection)", "offset": 19}, "line": {"number": 2887}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tZILhVK2ipxTDxAkV6lYYAAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "RetryableAction.java"}, "function": {"name": "void org.elasticsearch.action.support.RetryableAction$RetryingListener.onResponse(java.lang.Object)", "offset": 2}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3FmF0iegYInyRffZHSr8AwAAAAAAAAAv"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.flush(io.netty.channel.ChannelHandlerContext)", "offset": 15}, "line": {"number": 792}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "A-Zkt0Jp-hU0wTKYbf16gQAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.SingleThreadEventExecutor.execute(java.lang.Runnable, boolean)", "offset": 22}, "line": {"number": 849}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JYKWeVXd18GtPKr_b5YhEAAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "boolean java.util.stream.AbstractPipeline.copyIntoWithCancel(java.util.stream.Sink, java.util.Spliterator)", "offset": 6}, "line": {"number": 527}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk-pX"}} +{"Stackframe": {"function": {"name": "nf_hook_slow"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LpHTUiXklvttl2XctppO-QAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction$$Lambda$7777+0x00000008025da6e0.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DVSkUfLwOzQuwgYi6TvurAAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "AbstractCollection.java"}, "function": {"name": "boolean java.util.AbstractCollection.addAll(java.util.Collection)", "offset": 2}, "line": {"number": 336}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "un5wCq3YNRPidqAMtgmPSAAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$RefreshResult org.elasticsearch.index.engine.InternalEngine.refresh(java.lang.String, org.elasticsearch.index.engine.Engine$SearcherScope, boolean)", "offset": 16}, "line": {"number": 1863}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1KcuglkNBKBETK8L499nPQAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.StandardDirectoryReader.doOpenIfChanged(org.apache.lucene.index.IndexCommit)", "offset": 5}, "line": {"number": 266}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "b67zIsg6gj2XrJ7kGTti1wAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation$3.tryAction(org.elasticsearch.action.ActionListener)"}, "line": {"number": 282}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i8fCXa3mPVuoqg3-TWHbmQAAAAAAAAB7"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.executeQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)", "offset": 14}, "line": {"number": 629}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALt0Z"}} +{"Stackframe": {"function": {"name": "__x64_sys_getdents64"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LMJEJvDLl0LIozgoVKupJQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeOptionalWriteable(org.elasticsearch.common.io.stream.Writeable)", "offset": 2}, "line": {"number": 732}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EgHBAsdbxjOeM0iCxV59CgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "NettyAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf org.elasticsearch.transport.NettyAllocator$NoDirectBuffers.heapBuffer(int)"}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHT"}} +{"Stackframe": {"file": {"name": "GlobalOrdinalsStringTermsAggregator.java"}, "function": {"name": "org.elasticsearch.search.aggregations.InternalAggregation org.elasticsearch.search.aggregations.bucket.terms.GlobalOrdinalsStringTermsAggregator.buildAggregation(long)", "offset": 53}, "line": {"number": 239}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wd4LaEXdGxPRMFAASOrHpwAAAAAAAAEV"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "long sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer[], int, int, sun.nio.ch.NativeDispatcher)", "offset": 38}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wj1Uq6jbmSjrZUnAzTcg8wAAAAAAAAFM"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService.runTasks(org.elasticsearch.cluster.service.MasterService$TaskInputs)", "offset": 47}, "line": {"number": 239}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.getRole(org.elasticsearch.xpack.core.security.authc.Subject, org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QJ-JVADSuuonf59sOKCy_wAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.unwrap(java.nio.ByteBuffer, java.nio.ByteBuffer[], int, int)"}, "line": {"number": 482}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DLrWTvtAPDh4Uv4u2shragAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4$HighCompressionHashTable.()", "offset": 5}, "line": {"number": 310}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALx_h"}} +{"Stackframe": {"function": {"name": "__dentry_kill"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi7fl"}} +{"Stackframe": {"function": {"name": "__skb_recv_datagram"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CvC3lIC7E70AiCoZ7DVYSQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline$2$1.accept(java.lang.Object)"}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UbIORJBv2DkMjBVQPD_BbgAAAAAAAABj"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.lambda$onResponse$0(org.elasticsearch.core.Releasable, java.lang.Void)", "offset": 14}, "line": {"number": 667}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAABQH"}} +{"Stackframe": {"function": {"name": "xen_hypercall_event_channel_op"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "baJN9j1LYjOZdIwzw7PYdQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "FieldMapper.java"}, "function": {"name": "int org.elasticsearch.index.mapper.FieldMapper$MultiFields$1.compare(java.lang.Object, java.lang.Object)"}, "line": {"number": 613}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BSSHdcDrfxhJYR_pl8U8VgAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "GroupedActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.GroupedActionListener.onResponse(java.lang.Object)", "offset": 6}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dhIwhxmZI14YC_jXgEo-cAAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$1$$Lambda$2908.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAROzt"}} +{"Stackframe": {"function": {"name": "security_file_alloc"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x1wras1gluyTP-Y9Ht2HeQAAAAAAAACW"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "org.elasticsearch.action.support.replication.TransportWriteAction$WriteReplicaResult org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard)", "offset": 13}, "line": {"number": 384}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x7uWPHaqIhPznoWQPn4lBAAAAAAAAAC5"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequestInternal(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 25}, "line": {"number": 596}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FiIwFVQEYNMmoL4k9cth8gAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext org.elasticsearch.common.util.concurrent.ThreadContext.lambda$wrapRestorable$5(org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext)", "offset": 1}, "line": {"number": 253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAGC"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 42}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HjwmgDoyi_FLJh0vwPhLsQAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "void sun.nio.ch.NioSocketImpl.park(java.io.FileDescriptor, int, long)", "offset": 5}, "line": {"number": 181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oBLCWsbzuuTLoV95VXOSiwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "MemoryPoolImpl.java"}, "function": {"name": "javax.management.ObjectName sun.management.MemoryPoolImpl.getObjectName()"}, "line": {"number": 339}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nmuO2QqjrQIVZRr3ilzClwAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction$$Lambda$6551+0x0000000801d26a68.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JQ--Da8UMa_zKaKYpLYZrgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext$WriteAndFlushTask.write(io.netty.channel.AbstractChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 1151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "28lMZAEZuh7n6NDKQHV8WgAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "SettingsFilter.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.SettingsFilter.filterSettings(org.elasticsearch.common.xcontent.ToXContent$Params, org.elasticsearch.common.settings.Settings)", "offset": 3}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8wyHWaiozlb8fICne_VIJAAAAAAAAAEF"}} +{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress$Entry.(org.elasticsearch.snapshots.Snapshot, boolean, boolean, org.elasticsearch.cluster.SnapshotsInProgress$State, java.util.Map, java.util.List, java.util.List, long, long, org.elasticsearch.common.collect.ImmutableOpenMap, java.lang.String, java.util.Map, org.elasticsearch.Version, org.elasticsearch.snapshots.SnapshotId, org.elasticsearch.common.collect.ImmutableOpenMap)", "offset": 26}, "line": {"number": 799}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tgsunDQEllHLCodklZ3lYAAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "HttpClient.scala"}, "function": {"name": "scala.concurrent.Future no.found.http.HighLevelHttpClient.streamingHttpRequest(akka.http.scaladsl.model.HttpRequest, akka.util.Timeout, no.found.http.HttpRequestOptions, scala.Option, akka.stream.Materializer, co.elastic.cloud.tracing.TraceContext)", "offset": 187}, "line": {"number": 188}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3NXJCw7PINTEV_suvi1hjgAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "LoggingHandler.java"}, "function": {"name": "void io.netty.handler.logging.LoggingHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 3}, "line": {"number": 241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l13-SoPBw4bKW1S9hBZQ1AAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "CPoolProxy.java"}, "function": {"name": "boolean org.apache.http.impl.conn.CPoolProxy.isResponseAvailable(int)"}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "akHLSuC4R8vzlPIApTxuxAAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "AsyncIOProcessor.java"}, "function": {"name": "java.lang.Exception org.elasticsearch.common.util.concurrent.AsyncIOProcessor.processList(java.util.List)", "offset": 3}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oJZaXu4GMva6ioQRLjBA1AAAAAAAAACL"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.bytes.BytesReference, boolean, org.elasticsearch.xcontent.XContentType)", "offset": 15}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Executors.java"}, "function": {"name": "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()"}, "line": {"number": 515}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zR0NjJPPs8zyWwwQG_LNGQAAAAAAAACk"}} +{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.DocumentsWriter.doFlush(org.apache.lucene.index.DocumentsWriterPerThread)", "offset": 33}, "line": {"number": 476}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANyj0"}} +{"Stackframe": {"function": {"name": "proc_readfd"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CG83YkfBVZ2cNqvVE3cy7AAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "void io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)"}, "line": {"number": 1334}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SeSHb4DYVqNQaGYUHfay2QAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.map(java.util.Map, boolean, boolean)", "offset": 13}, "line": {"number": 977}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "t4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$MappedActionListener.onResponse(java.lang.Object)", "offset": 6}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALp37"}} +{"Stackframe": {"function": {"name": "do_unlinkat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KiXI7CN_kLfsIAVFu8pFgAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.coordination.Coordinator$$Lambda$4541+0x00000008018321a8.apply(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MlyHaLRJGNn2Vpy3WSPy_QAAAAAAAACh"}} +{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "void java.security.AccessController.checkPermission(java.security.Permission)", "offset": 30}, "line": {"number": 1068}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dHlNMp0ZILU0xdYijiy7JwAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.decPendingAndFinishIfNeeded()", "offset": 2}, "line": {"number": 317}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8AFkU9EDwekeQG-iHB-52AAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "RestClusterGetSettingsAction.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.rest.action.admin.cluster.RestClusterGetSettingsAction.renderResponse(org.elasticsearch.cluster.ClusterState, boolean, org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 3}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-AsoQW73iFI5fH1Iwzki_wAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Net.java"}, "function": {"name": "int sun.nio.ch.Net.poll(java.io.FileDescriptor, int, long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JDeoMDAF4zRp8m9fg1ttGQAAAAAAAACB"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.authenticateAsync(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 29}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KnPJBgaXoLmCiBa-S6LKKwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "long org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryShardReference.globalCheckpoint()"}, "line": {"number": 1173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sr7KmiDQn3AwPKwUE1w3aQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.lang.Object java.util.Collections$UnmodifiableMap.get(java.lang.Object)"}, "line": {"number": 1470}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(java.lang.Object)", "offset": 2}, "line": {"number": 379}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-FS5_yzfVdkwZq5k0RkbUgAAAAAAAACP"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.performOnReplica(org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.action.support.replication.ReplicationRequest, long, long, org.elasticsearch.action.support.replication.PendingReplicationActions)", "offset": 84}, "line": {"number": 300}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eIXWZsvBDOeWVV_btEAn7gAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "TieredMergePolicy.java"}, "function": {"name": "org.apache.lucene.index.MergePolicy$MergeSpecification org.apache.lucene.index.TieredMergePolicy.findMerges(org.apache.lucene.index.MergeTrigger, org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 10}, "line": {"number": 329}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1uTD4MIo_4nBzNJux2_5GAAAAAAAAAB7"}} +{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.bulk.BulkRequest, org.elasticsearch.action.ActionListener)", "offset": 16}, "line": {"number": 200}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKTe3"}} +{"Stackframe": {"function": {"name": "alloc_pages_vma"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Kn7ai6R2nHAWrTfNWdUdrgAAAAAAAABW"}} +{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "void org.apache.lucene.search.ReferenceManager.doMaybeRefresh()", "offset": 19}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M-q_yN6BkZgGVL7TrJEMggAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "Lucene84PostingsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.FieldsConsumer org.apache.lucene.codecs.lucene84.Lucene84PostingsFormat.fieldsConsumer(org.apache.lucene.index.SegmentWriteState)", "offset": 3}, "line": {"number": 423}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZB4dgn6zlvSqI5ZscpV7zgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "void java.util.stream.Streams$ConcatSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 1}, "line": {"number": 742}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP6"}} +{"Stackframe": {"function": {"name": "do_filp_open"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8ijKSIS-axMtZNAQCt9HjQAAAAAAAACt"}} +{"Stackframe": {"file": {"name": "GraphInterpreter.scala"}, "function": {"name": "int akka.stream.impl.fusing.GraphInterpreter.execute(int)", "offset": 72}, "line": {"number": 423}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ctmMOnzOFMQjuPFQFR1IjgAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "UnixDirectoryStream.java"}, "function": {"name": "java.nio.file.Path sun.nio.fs.UnixDirectoryStream$UnixDirectoryIterator.readNextEntry()", "offset": 9}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nbYrZ9E9afqt5Y1zXB3RyQAAAAAAAABF"}} +{"Stackframe": {"file": {"name": "ContentLengthInputStream.java"}, "function": {"name": "int org.apache.http.impl.io.ContentLengthInputStream.read(byte[], int, int)", "offset": 12}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "O36XiLG7HB6AoWRegcVfRAAAAAAAAABJ"}} +{"Stackframe": {"file": {"name": "DocIdSetBuilder.java"}, "function": {"name": "org.apache.lucene.search.DocIdSet org.apache.lucene.util.DocIdSetBuilder.build()", "offset": 5}, "line": {"number": 273}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFF5X"}} +{"Stackframe": {"function": {"name": "on_each_cpu_mask"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FGGSuaVpuuMHaXUzmpPEWQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "InferenceProcessorInfoExtractor.java"}, "function": {"name": "void org.elasticsearch.xpack.ml.utils.InferenceProcessorInfoExtractor.lambda$countInferenceProcessors$1(org.apache.lucene.util.Counter, java.lang.String, org.elasticsearch.ingest.PipelineConfiguration)"}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ca-b22O8l8GPetQx7dVJogAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "FieldUsageTrackingDirectoryReader.java"}, "function": {"name": "void org.elasticsearch.search.internal.FieldUsageTrackingDirectoryReader$FieldUsageTrackingLeafReader.document(int, org.apache.lucene.index.StoredFieldVisitor)", "offset": 1}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9Ym5EOeHQELXz-ZdoRUPYQAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "FieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.FieldMapper$MultiFields.parse(org.elasticsearch.index.mapper.FieldMapper, org.elasticsearch.index.mapper.DocumentParserContext)", "offset": 7}, "line": {"number": 519}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_0ox8C5Jmpi5jms1u089pQAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "SystemIndices.java"}, "function": {"name": "org.elasticsearch.indices.SystemIndices$SystemIndexAccessLevel org.elasticsearch.indices.SystemIndices.getSystemIndexAccessLevel(org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 3}, "line": {"number": 498}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KFGBFnajTppUPwKMAfWXvQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "AbstractInterruptibleChannel.java"}, "function": {"name": "void java.nio.channels.spi.AbstractInterruptibleChannel.close()"}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAsCt"}} +{"Stackframe": {"function": {"name": "__xen_send_IPI_mask"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i6ju_ii5mAgyzEKTCxdpRgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "IndexShardRoutingTable.java"}, "function": {"name": "java.util.Iterator org.elasticsearch.cluster.routing.IndexShardRoutingTable.iterator()"}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIdrE"}} +{"Stackframe": {"function": {"name": "delete_from_page_cache_batch"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gZgYcEFO3c95J0_kRNRWOgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "PrioritizedThrottledTaskRunner.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedThrottledTaskRunner$TaskWrapper.onResponse(org.elasticsearch.core.Releasable)", "offset": 1}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4yG9IdLfPOQJQp1BxdOq7wAAAAAAAACf"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.apply(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.support.ActionFilterChain)", "offset": 31}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z8YcS7kQQWoeBfgskdVBqQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter$$Lambda$6467+0x0000000801c85aa0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-yOKvc6ldOlbMsqUjidkjgAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "SegmentInfo.java"}, "function": {"name": "void org.apache.lucene.index.SegmentInfo.checkFileNames(java.util.Collection)", "offset": 3}, "line": {"number": 295}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MOgPAaY2At24Q0nLro4PXgAAAAAAAABa"}} +{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeFieldName(java.lang.String)", "offset": 25}, "line": {"number": 801}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sAAWQfLQxwCaRa_wfIeeewAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "FileInputStream.java"}, "function": {"name": "int java.io.FileInputStream.readBytes(byte[], int, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gSGP_ES8zBVTOvRrThL2MgAAAAAAAACA"}} +{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.updateShard(org.elasticsearch.cluster.node.DiscoveryNodes, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.indices.cluster.IndicesClusterStateService$Shard, org.elasticsearch.cluster.routing.RoutingTable, org.elasticsearch.cluster.ClusterState)", "offset": 14}, "line": {"number": 606}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qGEwlfUWed3z-vswPrK15QAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "LinkedHashMap.java"}, "function": {"name": "java.lang.Object java.util.LinkedHashMap.get(java.lang.Object)"}, "line": {"number": 441}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "68iZXv_8xxb53ICXrvQepAAAAAAAAAGh"}} +{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.writeRecord(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 83}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RJXjPkp22gaQo9vwY-85JAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.(org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter, org.apache.lucene.index.FieldInfo)", "offset": 359}, "line": {"number": 890}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i3MNoTROkegLoawWRXlDSwAAAAAAAABR"}} +{"Stackframe": {"file": {"name": "IndexTemplateMetadata.java"}, "function": {"name": "void org.elasticsearch.cluster.metadata.IndexTemplateMetadata$Builder.toInnerXContent(org.elasticsearch.cluster.metadata.IndexTemplateMetadata, org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params, boolean)", "offset": 11}, "line": {"number": 414}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XadgtJFQ10pxn_-sij7tlQAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "void java.util.stream.AbstractPipeline.copyInto(java.util.stream.Sink, java.util.Spliterator)", "offset": 8}, "line": {"number": 488}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fcwlJZe3vp7o1kWId0rqugAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.util.Set java.util.Collections$UnmodifiableMap.entrySet()", "offset": 1}, "line": {"number": 1497}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Yav7N1kdPMXfEfZ1xXIznAAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "boolean java.util.concurrent.LinkedTransferQueue$Node.tryMatch(java.lang.Object, java.lang.Object)", "offset": 1}, "line": {"number": 521}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SEvZDaGwmEW26Lw8EPS2qAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "DigestValidationInputStream.java"}, "function": {"name": "int com.amazonaws.services.s3.internal.DigestValidationInputStream.read(byte[], int, int)"}, "line": {"number": 59}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bxcZQU9NPH7Mji3IrHeYGQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.channels.SeekableByteChannel sun.nio.fs.UnixFileSystemProvider.newByteChannel(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])", "offset": 4}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lLSqJ_lK-jxr01mEXBTexgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.read(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)"}, "line": {"number": 282}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YpRFzwYvMLNVigDq-Ir6sgAAAAAAAAB2"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.pushTerm(org.apache.lucene.util.BytesRef)", "offset": 16}, "line": {"number": 947}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z2RK8OiMonW_o4pECFqoegAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.executeBulk(org.elasticsearch.tasks.Task, org.elasticsearch.action.bulk.BulkRequest, long, org.elasticsearch.action.ActionListener, org.elasticsearch.common.util.concurrent.AtomicArray, java.util.Map)"}, "line": {"number": 736}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M9eMrfE_Teezp8eocQnu9gAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "DocumentMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentMapper$Builder.(org.elasticsearch.index.mapper.RootObjectMapper$Builder, org.elasticsearch.index.mapper.MapperService)", "offset": 11}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3bGIzBFOyWIu1_VZfhniegAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.lambda$runUnderPrimaryPermit$28(java.lang.Runnable, org.elasticsearch.core.Releasable)", "offset": 1}, "line": {"number": 3400}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0co_9c4FDrTIH03EtdicvAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain$$Lambda$7955+0x0000000802625960.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sUC9X_MZJWkkjNG4uRsc4AAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "long org.apache.lucene.search.Boolean2ScorerSupplier$$Lambda$8261+0x000000080274ed18.applyAsLong(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sFs-DxXlXTzn3bVNvCe0KwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.lang.Object java.util.Collections$UnmodifiableCollection$1.next()"}, "line": {"number": 1049}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TOT6Kzt9cNfqtt7rfwzzSwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(org.elasticsearch.rest.RestRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ngVEDc25AG-mW2KUmcWd5wAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$5386+0x0000000801ab0440.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7TPQy1lIigGeJ-ojTqWNMgAAAAAAAABy"}} +{"Stackframe": {"file": {"name": "PolicyStepsRegistry.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.Step org.elasticsearch.xpack.ilm.PolicyStepsRegistry.getStep(org.elasticsearch.cluster.metadata.IndexMetadata, org.elasticsearch.xpack.core.ilm.Step$StepKey)", "offset": 13}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QQkcsVD4a4qVPR2FL821XQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "IndexSettings.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.IndexSettings.getValue(org.elasticsearch.common.settings.Setting)"}, "line": {"number": 1166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H9AklKJOULiu4T4frXL8vwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$5385+0x0000000801ab0208.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "int sun.nio.fs.UnixNativeDispatcher.open(sun.nio.fs.UnixPath, int, int)", "offset": 3}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rVaVDCkAMgbM8k1PcJk7MgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader.visitDocument(int, org.apache.lucene.index.StoredFieldVisitor)"}, "line": {"number": 678}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oXh6R7U5ycUuicuehRK8ogAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ClusterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterService.submitStateUpdateTask(java.lang.String, java.lang.Object, org.elasticsearch.cluster.ClusterStateTaskConfig, org.elasticsearch.cluster.ClusterStateTaskExecutor, org.elasticsearch.cluster.ClusterStateTaskListener)"}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OoSbzwyzFhV1hlFGUdDRowAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "FindOps.java"}, "function": {"name": "java.lang.Object java.util.stream.FindOps$FindOp.evaluateSequential(java.util.stream.PipelineHelper, java.util.Spliterator)"}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BtkSbKDt-bj97XdoNtyCHgAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "BlobStoreIndexShardSnapshots.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 2}, "line": {"number": 221}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cAnVCtwTUMiPtQhyaFTtfgAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "AbstractIndexOrdinalsFieldData.java"}, "function": {"name": "org.elasticsearch.index.fielddata.IndexOrdinalsFieldData org.elasticsearch.index.fielddata.plain.AbstractIndexOrdinalsFieldData.loadGlobal(org.apache.lucene.index.DirectoryReader)", "offset": 23}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w8GVRjAwPMFQC_D_wSJ9HQAAAAAAAACm"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "void java.io.FilePermission.init(int)", "offset": 34}, "line": {"number": 346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z03CQ7BmO5DWD5cAAhlTWwAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "AWS4Signer.java"}, "function": {"name": "java.lang.String com.amazonaws.auth.AWS4Signer.getCanonicalizedHeaderString(com.amazonaws.SignableRequest)", "offset": 1}, "line": {"number": 495}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gbCFQS2suYv46rP_aUsebAAAAAAAAABP"}} +{"Stackframe": {"file": {"name": "FieldsIndexWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.FieldsIndexWriter.finish(int, long, org.apache.lucene.store.IndexOutput)", "offset": 5}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uWFseGlS0yyGOASPvxDcIQAAAAAAAACg"}} +{"Stackframe": {"file": {"name": "SearchResponse.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.action.search.SearchResponse.innerToXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 24}, "line": {"number": 292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "n9pHjqEBxYX6b9EURk3zKQAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKeysPlain(java.util.Set)", "offset": 11}, "line": {"number": 689}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AScUco_T3pNsIefCSQ8FlQAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.lambda$handleRequest$0(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 1}, "line": {"number": 61}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NUmJ5QmloEgI0M4MXoldOgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TraceContext.java"}, "function": {"name": "boolean co.elastic.apm.agent.impl.transaction.TraceContext$4.asChildOf(co.elastic.apm.agent.impl.transaction.TraceContext, java.lang.Object, java.lang.Object)"}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w4rigzpgbjcuXg80-JfDQgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler$$Lambda$5314+0x0000000801a73b38.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_3UA2KM_aMQ78-eUXroJUQAAAAAAAACP"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler$PublicationContext.buildDiffAndSerializeStates()", "offset": 12}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rtJFGuFDWKgkQ_kOhDwLwgAAAAAAAADm"}} +{"Stackframe": {"file": {"name": "FreqProxTermsWriter.java"}, "function": {"name": "void org.apache.lucene.index.FreqProxTermsWriter.flush(java.util.Map, org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.NormsProducer)", "offset": 45}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kZ21XW5-NvO1hiIXWDAOXAAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "PendingReplicationActions.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.PendingReplicationActions.acceptNewTrackedAllocationIds(java.util.Set)", "offset": 1}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X3vNLlXVyKftCeY5HzEuDAAAAAAAAAbg"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.mergeMiddle(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergePolicy)", "offset": 228}, "line": {"number": 4915}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SbMKXn5JJ9PM2UcXpJwIrgAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "DateFieldMapper.java"}, "function": {"name": "org.elasticsearch.index.mapper.MappedFieldType$Relation org.elasticsearch.index.mapper.DateFieldMapper$DateFieldType.isFieldWithinQuery(org.apache.lucene.index.IndexReader, java.lang.Object, java.lang.Object, boolean, boolean, java.time.ZoneId, org.elasticsearch.common.time.DateMathParser, org.elasticsearch.index.query.QueryRewriteContext)", "offset": 8}, "line": {"number": 549}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.handleIndexActionAuthorizationResult(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener)", "offset": 43}, "line": {"number": 363}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ozR7rHeowembmV8tqrkzHQAAAAAAAAF_"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.startCommit(org.apache.lucene.index.SegmentInfos)", "offset": 55}, "line": {"number": 5086}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FiUXoHC2FqtlQUvF0X2byAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.util.Iterator java.util.Collections$UnmodifiableCollection.iterator()"}, "line": {"number": 1038}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EI2ZG0yDy6LJc1opjkWatgAAAAAAAAFJ"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 64}, "line": {"number": 500}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vJHhnplJkBvoZ2u3D8oqvgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ES87BloomFilterPostingsFormat.java"}, "function": {"name": "void org.elasticsearch.index.codec.bloomfilter.ES87BloomFilterPostingsFormat$FieldsGroup.writeTo(org.apache.lucene.store.IndexOutput, org.apache.lucene.index.FieldInfos)"}, "line": {"number": 262}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OIU72g2wQhgyLETe_w4R1gAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "GlobalOrdinalMapping.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.elasticsearch.index.fielddata.ordinals.GlobalOrdinalMapping.lookupOrd(long)", "offset": 1}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aBl1z_DR7_Hyrw2rxrDKMQAAAAAAAAFC"}} +{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.security.authc.support.BCrypt.hashpw(org.elasticsearch.common.settings.SecureString, java.lang.String)", "offset": 45}, "line": {"number": 703}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 275}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4fohDmA8RJ5q3qtNwImgpgAAAAAAAAED"}} +{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "org.apache.lucene.search.DocIdSetIterator org.apache.lucene.search.ConjunctionDISI.createConjunction(java.util.List, java.util.List)", "offset": 30}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z-8rxc9yywrVaZ7KMpiBhAAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "org.elasticsearch.cluster.DiffableUtils$MapDiff org.elasticsearch.cluster.DiffableUtils.diff(org.elasticsearch.common.collect.ImmutableOpenMap, org.elasticsearch.common.collect.ImmutableOpenMap, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)", "offset": 1}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zc4puyTIf2D2serBtFiuqQAAAAAAAABy"}} +{"Stackframe": {"file": {"name": "NIOFSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.NIOFSDirectory$NIOFSIndexInput.readInternal(java.nio.ByteBuffer)", "offset": 12}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j-VXt8KnrYS9nMeTJRcX6gAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 4}, "line": {"number": 408}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MAV03uVftX-j0VYOYLhjMAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "long com.typesafe.config.impl.SimpleConfig.getLong(java.lang.String)"}, "line": {"number": 240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-DPNVL1TcvLrgQ4V1LL_zwAAAAAAAAH4"}} +{"Stackframe": {"file": {"name": "URL.java"}, "function": {"name": "void java.net.URL.(java.net.URL, java.lang.String, java.net.URLStreamHandler)", "offset": 489}, "line": {"number": 701}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MWAuSOWD7Y0yaH37w1B-JAAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "TransportSingleItemBulkWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportSingleItemBulkWriteAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.replication.ReplicatedWriteRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ljpmjACwvo52D1nC2cyFxQAAAAAAAACD"}} +{"Stackframe": {"file": {"name": "GatewayMetaState.java"}, "function": {"name": "void org.elasticsearch.gateway.GatewayMetaState$LucenePersistedState.setLastAcceptedState(org.elasticsearch.cluster.ClusterState)", "offset": 11}, "line": {"number": 593}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GKGVPJe19U6y6pXU3LJ74AAAAAAAAABy"}} +{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.DocumentsWriter.doFlush(org.apache.lucene.index.DocumentsWriterPerThread)", "offset": 32}, "line": {"number": 539}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "msyVDQLKuoPoR7-pw8Y6TQAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "InitialSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.InitialSearchPhase.performPhaseOnShard(int, org.elasticsearch.action.search.SearchShardIterator, org.elasticsearch.cluster.routing.ShardRouting)", "offset": 5}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Kp-m6YXPN7JWDmz-Pu761gAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.write(org.elasticsearch.xcontent.ToXContent, org.elasticsearch.common.blobstore.BlobContainer, java.lang.String, boolean, java.util.Map)", "offset": 1}, "line": {"number": 292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GGCEvN8t-grwQDiWlXbYwgAAAAAAAABQ"}} +{"Stackframe": {"file": {"name": "OutputRecord.java"}, "function": {"name": "long sun.security.ssl.OutputRecord.encrypt(sun.security.ssl.SSLCipher$SSLWriteCipher, byte, java.nio.ByteBuffer, int, int, int, sun.security.ssl.ProtocolVersion)", "offset": 17}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gk079EBdEVh5ErpJ6XBaYwAAAAAAAABO"}} +{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesProducer org.apache.lucene.index.SegmentReader.initDocValuesProducer()", "offset": 10}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Qdsa8CodEr3BBR20SawlOgAAAAAAAAEu"}} +{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "void org.apache.lucene.index.ReadersAndUpdates.handleDVUpdates(org.apache.lucene.index.FieldInfos, org.apache.lucene.store.Directory, org.apache.lucene.codecs.DocValuesFormat, org.apache.lucene.index.SegmentReader, java.util.Map, long, org.apache.lucene.util.InfoStream)", "offset": 27}, "line": {"number": 307}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zkH-QAcWQraJt_RXBXUVJgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ByteQuadsCanonicalizer.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.addName(java.lang.String, int[], int)"}, "line": {"number": 811}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAABZdN"}} +{"Stackframe": {"function": {"name": "__xfs_setfilesize"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "avH6-iyYHlN_flagvaXwWwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "FilterLeafReader.java"}, "function": {"name": "void org.apache.lucene.index.FilterLeafReader.document(int, org.apache.lucene.index.StoredFieldVisitor)", "offset": 1}, "line": {"number": 411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ilROEXfY2pUH01XyVGW7lgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "void co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.handleIntakeEvent(co.elastic.apm.agent.report.ReportingEvent, long, boolean)", "offset": 3}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "S75DkUYHGa18F1kYhZ0XYwAAAAAAAACl"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 26}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "St7lFjY3zfwOi_rfHJtWoQAAAAAAAABz"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Object, java.util.Set)", "offset": 17}, "line": {"number": 1092}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ynHqfILVzOOqJs-5yJf4gwAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "void org.elasticsearch.search.SearchService.loadOrExecuteQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.search.internal.SearchContext)", "offset": 5}, "line": {"number": 470}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "REOZDMGevKohDmxWFx6eeAAAAAAAAAFG"}} +{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.lambda$consumeToken$0(org.elasticsearch.xpack.core.security.authc.Realm, org.elasticsearch.xpack.core.security.authc.AuthenticationToken, java.util.concurrent.atomic.AtomicReference, java.util.concurrent.atomic.AtomicReference, long, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.authc.Authenticator$Context, java.util.Map, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 43}, "line": {"number": 192}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oQArrDgqdYM5cNRCfb4bawAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TimeseriesLifecycleType.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.ilm.TimeseriesLifecycleType.shouldInjectMigrateStepForPhase(org.elasticsearch.xpack.core.ilm.Phase)"}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RPFiojmndeu_4nmb3OGehAAAAAAAAABP"}} +{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator.close()", "offset": 19}, "line": {"number": 1843}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QGXA8qfIkSPUIF1EOFsHVgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.json.JsonXContentGenerator.writeString(java.lang.String)"}, "line": {"number": 281}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PwR81tCEw_YLoJoW67EqfwAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "PriorityQueue.java"}, "function": {"name": "void org.apache.lucene.util.PriorityQueue.downHeap(int)", "offset": 11}, "line": {"number": 284}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YaC_rTr5WsI3HFN2LUobYQAAAAAAAABC"}} +{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "long org.apache.lucene.index.DocumentsWriter.updateDocument(java.lang.Iterable, org.apache.lucene.analysis.Analyzer, org.apache.lucene.index.Term)", "offset": 15}, "line": {"number": 478}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WBXdhz4cG7Z1nFWG7UChaQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readMap(org.elasticsearch.common.xcontent.XContentParser, org.elasticsearch.common.xcontent.support.AbstractXContentParser$MapFactory)", "offset": 1}, "line": {"number": 321}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "g97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$7.doRun()"}, "line": {"number": 912}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IIDbja4IvkQtGrP28QyvpAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "void org.elasticsearch.xcontent.ObjectParser.parseValue(org.elasticsearch.xcontent.XContentParser, org.elasticsearch.xcontent.ObjectParser$FieldParser, java.lang.String, java.lang.Object, java.lang.Object)"}, "line": {"number": 602}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "U8beN5YK_thkealMCeH3dwAAAAAAAAF_"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 40}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m2ILrEK1YmDxo9niRj31tgAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient.execute(com.amazonaws.Request, com.amazonaws.http.HttpResponseHandler, com.amazonaws.http.HttpResponseHandler, com.amazonaws.http.ExecutionContext, com.amazonaws.RequestConfig)", "offset": 10}, "line": {"number": 544}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NAXh3zuU0dO2_vEc-9d1QQAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "Template.java"}, "function": {"name": "org.elasticsearch.common.compress.CompressedXContent org.elasticsearch.cluster.metadata.Template.lambda$static$2(org.elasticsearch.common.xcontent.XContentParser, java.lang.Void)"}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cnr9SR5FRmT_ijDWUYwkxAAAAAAAAAA1"}} +{"Stackframe": {"file": {"name": "CopyOnWriteHashMap.java"}, "function": {"name": "org.elasticsearch.common.collect.CopyOnWriteHashMap org.elasticsearch.common.collect.CopyOnWriteHashMap.copyAndPut(java.lang.Object, java.lang.Object)", "offset": 8}, "line": {"number": 515}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "arW6Nk3z5oDWYASq236biQAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "NumberFormatException.java"}, "function": {"name": "java.lang.NumberFormatException java.lang.NumberFormatException.forInputString(java.lang.String, int)", "offset": 3}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KzN3qmW0XX0B0Z6AaJ0GvQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "RepositoryData.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.repositories.RepositoryData.snapshotsToXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.Version)"}, "line": {"number": 650}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "t7UTQ9GGQKtD8smsLz7rmQAAAAAAAABi"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.internal.SearchContext org.elasticsearch.search.SearchService.createContext(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.index.engine.Engine$Searcher)", "offset": 18}, "line": {"number": 497}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3UsZu7Ikzkl49bVnI1kPXAAAAAAAAAC0"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.sendRequestToChannel(org.elasticsearch.cluster.node.DiscoveryNode, org.elasticsearch.transport.TcpChannel, long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.Version, boolean, byte)", "offset": 27}, "line": {"number": 744}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Cm3FF_uDQeutHnQs3UGjlgAAAAAAAADA"}} +{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 36}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2YGkbnIdlKIhbsTbMV-kWAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.apache.lucene.search.Weight.bulkScorer(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "twD_eFnsb6PKOPqe4ScuPQAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Iterable, java.lang.Object, java.util.Set)", "offset": 4}, "line": {"number": 1083}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "79BEVcCyL_fEum44mqHrEgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "RetryListener.java"}, "function": {"name": "void org.elasticsearch.index.reindex.RetryListener.onResponse(org.elasticsearch.index.reindex.ScrollableHitSource$Response)"}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "q3v5zaXWWWfDTkVsFzBLnwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "Spliterators.java"}, "function": {"name": "long java.util.Spliterators$IteratorSpliterator.estimateSize()", "offset": 1}, "line": {"number": 1821}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CVegIjspc9VOluOpQVnKFgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.getInternal(long)"}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EuiuEGuoH1DvPXwEkw2odgAAAAAAAAGL"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.messageReceived(org.elasticsearch.common.bytes.BytesReference, java.lang.Object, java.lang.String, java.net.InetSocketAddress, int)", "offset": 36}, "line": {"number": 1393}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9UrT2S_M5-Qdj7wy3Ez_sQAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Setting.getRaw(org.elasticsearch.common.settings.Settings)", "offset": 1}, "line": {"number": 361}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GSBqXJuDk7t-zl7PgPREdwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "StringBuilder.java"}, "function": {"name": "java.lang.StringBuilder java.lang.StringBuilder.append(long)"}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ho9WujSzYljmN4932xjq9gAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$5(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener)"}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rOlNBVu_tgbnoZ0Ov--VbwAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "java.util.Collection org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$WildcardExpressionResolver.resolve(org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$Context, java.util.List)", "offset": 16}, "line": {"number": 1167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ALZXWtJb4WSKUn7Jnwu5oAAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.handleReplicaRequest(org.elasticsearch.action.support.replication.TransportReplicationAction$ConcreteReplicaRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 7}, "line": {"number": 598}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YfNkluooXQLYLBqsDwK2VwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase$1.doRun()"}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wgcYbSYqHtVeye0ArlzCXQAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "AbstractNioChannel.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.channel.nio.AbstractNioChannel.newDirectBuffer(io.netty.buffer.ByteBuf)", "offset": 8}, "line": {"number": 448}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o-fnJ6f2hlb0oiKytcljSgAAAAAAAACX"}} +{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.updateShard(org.elasticsearch.cluster.node.DiscoveryNodes, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.indices.cluster.IndicesClusterStateService$Shard, org.elasticsearch.cluster.routing.RoutingTable, org.elasticsearch.cluster.ClusterState)", "offset": 14}, "line": {"number": 614}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3He9Loj7AKn7Offsd35QVwAAAAAAAADc"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$1.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 51}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rJUdSzEY4nBcXSavXvuL4QAAAAAAAABl"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.authenticateWithCache(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xnshYjBCIPrEoLPbG8jHAAAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "FilterAggregationBuilder.java"}, "function": {"name": "org.elasticsearch.search.aggregations.AggregatorFactory org.elasticsearch.search.aggregations.bucket.filter.FilterAggregationBuilder.doBuild(org.elasticsearch.search.aggregations.support.AggregationContext, org.elasticsearch.search.aggregations.AggregatorFactory, org.elasticsearch.search.aggregations.AggregatorFactories$Builder)"}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sDa5rH62BuCxUb2HSFS-vwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction$$Lambda$8951+0x0000000802024d40.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ERCDx41eaqshzIEf6tpFyQAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "boolean org.apache.lucene.index.StandardDirectoryReader.isCurrent()", "offset": 12}, "line": {"number": 455}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zsKtZ6aGWTMnVvYa5n0o1wAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "CgroupV1Subsystem.java"}, "function": {"name": "long jdk.internal.platform.cgroupv1.CgroupV1Subsystem.getMemoryLimit()"}, "line": {"number": 310}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tX-1hgGXR0WV-6whS0MwZgAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "ActionRequestBuilder.java"}, "function": {"name": "void org.elasticsearch.action.ActionRequestBuilder.execute(org.elasticsearch.action.ActionListener)"}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "em8QMqpxX9eEmdxu2AmtFQAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.lambda$handleRequest$0(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient, org.elasticsearch.xpack.security.authc.Authentication)", "offset": 1}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Z7a-pgSw6Ke6rct32tdtzAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "org.elasticsearch.transport.TransportRequest org.elasticsearch.transport.RequestHandlerRegistry.newRequest(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlJ08"}} +{"Stackframe": {"function": {"name": "ip_forward"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3UIom3SXuFZET6ku9VTGIwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "SearchTransportService.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchTransportService$6.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Z5bymihzf4CQyWGMQZAZdQAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "UnixFileAttributes.java"}, "function": {"name": "sun.nio.fs.UnixFileAttributes sun.nio.fs.UnixFileAttributes.get(sun.nio.fs.UnixPath, boolean)", "offset": 2}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "npPhwY_ic31u1gmBHOrU7AAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$6561+0x0000000801cff360.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UO0qlBGpfjAWije7sM9KBgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "void org.elasticsearch.index.engine.Engine$Searcher.close()"}, "line": {"number": 1237}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IjHIXxb8IucXL3D2E9_ItgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "TieredMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.TieredMergePolicy$SegmentByteSizeDescending.compare(java.lang.Object, java.lang.Object)"}, "line": {"number": 238}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pOnEAAOSDEwVLqfi_6e3pAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AbstractByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.AbstractByteBufAllocator.directBuffer(int)"}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZhtNJYoOwm655zArM3sIngAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()", "offset": 7}, "line": {"number": 925}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HJqIGeZuYXQ1QAO7hC-CpgAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "org.elasticsearch.index.translog.TranslogStats org.elasticsearch.index.translog.Translog.stats()", "offset": 3}, "line": {"number": 838}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lyFV4GQ8nA5PvKIS4z4KZQAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "EPollArrayWrapper.java"}, "function": {"name": "int sun.nio.ch.EPollArrayWrapper.poll(long)", "offset": 1}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ECGxOh43abBH5lmW6GWEbwAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile$$Lambda$2917.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nPcpIVOjAbk4oUD0VpGGhQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "LifecyclePolicyUtils.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecyclePolicy org.elasticsearch.xpack.core.ilm.LifecyclePolicyUtils.loadPolicy(java.lang.String, java.lang.String, org.elasticsearch.common.xcontent.NamedXContentRegistry)"}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAio7-"}} +{"Stackframe": {"function": {"name": "__sys_sendto"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FiQMwA9XcchO9iDh-bURNQAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$resolveAuthorizationInfo$1(org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.permission.Role)", "offset": 5}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DB2VzjdOL-xaQLw1M8sZdgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "StreamOpFlag.java"}, "function": {"name": "int java.util.stream.StreamOpFlag.fromCharacteristics(java.util.Spliterator)"}, "line": {"number": 750}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "o-geYGgrLbIrmPLZ56VwRQAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.runUnderPrimaryPermit(java.lang.Runnable, java.util.function.Consumer, java.lang.String, java.lang.Object)", "offset": 7}, "line": {"number": 3403}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w_cxYz8MnUesAVA7XOw_bwAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "DocumentMapper.java"}, "function": {"name": "org.elasticsearch.index.mapper.DocumentMapper org.elasticsearch.index.mapper.DocumentMapper.merge(org.elasticsearch.index.mapper.Mapping, boolean)", "offset": 1}, "line": {"number": 321}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rVzWSpKLw4v6Aqz2OFQqGgAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "PackedLongValues.java"}, "function": {"name": "org.apache.lucene.util.packed.PackedLongValues$Builder org.apache.lucene.util.packed.PackedLongValues$Builder.add(long)", "offset": 9}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DmzDNS4H6Qipt2XX0FJmXAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService$Batcher.run(java.lang.Object, java.util.List, org.elasticsearch.cluster.service.BatchSummary)"}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DHsnAoMYJiyf1W11jJ-_lgAAAAAAAAA-"}} +{"Stackframe": {"file": {"name": "InboundDecoder.java"}, "function": {"name": "int org.elasticsearch.transport.InboundDecoder.internalDecode(org.elasticsearch.common.bytes.ReleasableBytesReference, java.util.function.Consumer)", "offset": 14}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_C6trZBp2P8AtO9t3P1dGgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "UnassignedInfo.java"}, "function": {"name": "int org.elasticsearch.cluster.routing.UnassignedInfo.getNumberOfDelayedUnassigned(org.elasticsearch.cluster.ClusterState)", "offset": 1}, "line": {"number": 368}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "O6HJ1TMqgt-9RhpNc2eLLQAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "AbstractBulkByQueryRestHandler.java"}, "function": {"name": "void org.elasticsearch.reindex.AbstractBulkByQueryRestHandler.parseInternalRequest(org.elasticsearch.index.reindex.AbstractBulkByScrollRequest, org.elasticsearch.rest.RestRequest, org.elasticsearch.common.io.stream.NamedWriteableRegistry, java.util.Map)", "offset": 5}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "La-ehX10FJ27ZPXj2dDNfAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.IndexService$$Lambda$2123.warm(org.elasticsearch.index.engine.Engine$Searcher)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GXOYg6bb4ZOeBtRiYbeUsAAAAAAAAAB1"}} +{"Stackframe": {"file": {"name": "StreamDecoder.java"}, "function": {"name": "int sun.nio.cs.StreamDecoder.readBytes()", "offset": 13}, "line": {"number": 333}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZkPmPV7VCVD8EkLP0Gy3BwAAAAAAAAOk"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.snapshotShard(org.elasticsearch.repositories.SnapshotShardContext)", "offset": 143}, "line": {"number": 2784}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Jw6J8qgr1pYHKUa0xZ1MdwAAAAAAAABZ"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.index(org.elasticsearch.index.engine.Engine, org.elasticsearch.index.engine.Engine$Index)", "offset": 10}, "line": {"number": 885}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "88-Z439dOdp5GpDKUJubowAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$1(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 15}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ee5ZDKMHiVCtP6qAhF9CEQAAAAAAAAGt"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.applyChanges(org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState, java.lang.String, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder)", "offset": 41}, "line": {"number": 519}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "etr0v-F_gZF8yXV_t-VgIQAAAAAAAAAv"}} +{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.CopyBytesSocketChannel.doReadBytes(io.netty.buffer.ByteBuf)", "offset": 5}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XVzCT3seArKHBKHcPbRoDgAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "ActionListenerResponseHandler.java"}, "function": {"name": "void org.elasticsearch.action.ActionListenerResponseHandler.(org.elasticsearch.action.ActionListener, org.elasticsearch.common.io.stream.Writeable$Reader, java.lang.String)", "offset": 2}, "line": {"number": 33}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBt1"}} +{"Stackframe": {"function": {"name": "futex_wake"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fXtbF06M7ZwcaaNlV0uiIgAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "org.apache.lucene.index.Terms org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsReader.terms(java.lang.String)", "offset": 1}, "line": {"number": 316}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Hp77QPk88xsYu9Hpoa4_oAAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$1.doRun()"}, "line": {"number": 250}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "d2whnvvDimthWEk7i700xQAAAAAAAADE"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.sendRequestToChannel(org.elasticsearch.cluster.node.DiscoveryNode, java.lang.Object, long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.Version, byte)", "offset": 30}, "line": {"number": 1124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-NZFd83SlAHE6JfE05boaAAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.read(java.lang.String, org.elasticsearch.common.blobstore.BlobContainer, java.lang.String, org.elasticsearch.xcontent.NamedXContentRegistry)", "offset": 2}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKeysPlain(java.util.Set)", "offset": 11}, "line": {"number": 620}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B-Oe_OuJ2Xvt27AtRop-VwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor.access$300(org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor, org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportInterceptor$AsyncSender, boolean)"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "J8ucvlAYlVV3voUZhd041QAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.refreshIfNeeded(java.lang.Object)"}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "r0doFhVTYWNnJ8dBbD2_tQAAAAAAAACj"}} +{"Stackframe": {"file": {"name": "ES87BloomFilterPostingsFormat.java"}, "function": {"name": "void org.elasticsearch.index.codec.bloomfilter.ES87BloomFilterPostingsFormat$FieldsWriter.close()", "offset": 16}, "line": {"number": 232}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OUBnNtl7FmMu_heLqI12zwAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "RequestScope.java"}, "function": {"name": "void org.glassfish.jersey.process.internal.RequestScope.runInScope(org.glassfish.jersey.process.internal.RequestContext, java.lang.Runnable)", "offset": 3}, "line": {"number": 265}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nHKyvd8kdc_8d3u5YjO8iQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "MappingMultiPostingsEnum.java"}, "function": {"name": "int org.apache.lucene.index.MappingMultiPostingsEnum.nextDoc()"}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lBhPzNfMytcCVU5EjR-p6wAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "SortedNumericDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedNumericDocValuesWriter.addValue(int, long)", "offset": 2}, "line": {"number": 61}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "L6IPi9cG-hWDQ-8_WE6FFQAAAAAAAABd"}} +{"Stackframe": {"file": {"name": "IndexTemplateRegistry.java"}, "function": {"name": "void org.elasticsearch.xpack.core.template.IndexTemplateRegistry.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 25}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Yzh7NPcZyMhtfRADtWdMlAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "IndexLifecycleRunner.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.Step org.elasticsearch.xpack.ilm.IndexLifecycleRunner.getCurrentStep(org.elasticsearch.xpack.ilm.PolicyStepsRegistry, java.lang.String, org.elasticsearch.cluster.metadata.IndexMetadata)"}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgJK"}} +{"Stackframe": {"function": {"name": "kmem_cache_alloc"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "q5-VNNWJnEe4GvJK3_qvJwAAAAAAAADF"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser._parseName(int)", "offset": 32}, "line": {"number": 1703}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qt_wQv8WVW9Nn0zPpw6ZYwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "TransportGetSnapshotsAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.snapshots.get.TransportGetSnapshotsAction.masterOperation(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.master.MasterNodeRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)"}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EWzE-qlre-z5rqSoubbNBAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "void org.elasticsearch.indices.IndicesService.lambda$loadIntoContext$16(org.elasticsearch.search.query.QueryPhase, org.elasticsearch.search.internal.SearchContext, boolean[], org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 1129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nHKyvd8kdc_8d3u5YjO8iQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "MappingMultiPostingsEnum.java"}, "function": {"name": "int org.apache.lucene.index.MappingMultiPostingsEnum.nextDoc()"}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8tuuWTUZUYmZJZRhv0SpoQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap.putAll(java.util.Map)"}, "line": {"number": 785}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hpS1QtdrBQjGg-LCbfqeSAAAAAAAAB3-"}} +{"Stackframe": {"function": {"name": "fdb_find_rcu"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DPiMQCkPw5sdCJLKXvan-gAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "RestSearchAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction.lambda$prepareRequest$1(org.elasticsearch.action.search.SearchRequest, org.elasticsearch.rest.RestRequest, org.elasticsearch.client.node.NodeClient, java.util.function.IntConsumer, org.elasticsearch.xcontent.XContentParser)"}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qGw7LCeT4PzmVMNx-OGD_wAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "RestGetIndicesAction.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.admin.indices.RestGetIndicesAction$1.buildResponse(java.lang.Object, org.elasticsearch.common.xcontent.XContentBuilder)"}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.authenticate(org.elasticsearch.xpack.core.security.authc.AuthenticationToken, org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Gx2C0odQpZHpEyUWgefNQAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.decRef(java.util.Collection)", "offset": 3}, "line": {"number": 645}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANr3F"}} +{"Stackframe": {"function": {"name": "proc_single_show"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GfimnLWELuplsZWy0ypDaAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.executeOneRequest(com.amazonaws.http.AmazonHttpClient$RequestExecutor$ExecOneRequestParams)", "offset": 58}, "line": {"number": 1323}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GiKdaO0NXWMcKAtg8WXWngAAAAAAAACO"}} +{"Stackframe": {"file": {"name": "Netty4MessageInboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageInboundHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 8}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2x9Jgge3yFGPJiCTMDFHSwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry.lambda$processMessageReceived$0(org.elasticsearch.tasks.Task)"}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dFuRXSangYgd0mdMqBWlpgAAAAAAAACz"}} +{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader$SerializedDocument org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader$BlockState.document(int)", "offset": 19}, "line": {"number": 520}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BE0p8q_mh7enzgEoPVJKBQAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "AbstractQueuedSynchronizer.java"}, "function": {"name": "void java.util.concurrent.locks.AbstractQueuedSynchronizer.signalNext(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node)", "offset": 2}, "line": {"number": 611}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k1o6cGLS1FzksoHJvPKdFQAAAAAAAAEp"}} +{"Stackframe": {"file": {"name": "Lucene94FieldInfosFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene94.Lucene94FieldInfosFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.index.FieldInfos, org.apache.lucene.store.IOContext)", "offset": 38}, "line": {"number": 368}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zNcsGRHhxrtoMbOTGij46QAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.implFlush()", "offset": 1}, "line": {"number": 252}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y1yo-8cTmG-L0M13S3Gv9QAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "PoolArena.java"}, "function": {"name": "io.netty.buffer.PoolChunk io.netty.buffer.PoolArena$DirectArena.newUnpooledChunk(int)", "offset": 2}, "line": {"number": 754}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MrLUPjD52Cb8CegNxh_R7gAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "boolean java.util.stream.ReferencePipeline.allMatch(java.util.function.Predicate)"}, "line": {"number": 637}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "60iALvVIT6xacnSmRvILXgAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.StandardDirectoryReader.doOpenIfChanged(org.apache.lucene.index.IndexCommit)", "offset": 5}, "line": {"number": 355}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OhwRwPlI-WXSbymgmwmRggAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.executeQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchTask)"}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1dA5ZTFv49e1b-rcMcpn3wAAAAAAAAH1"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ReroutePhase.doRun()", "offset": 81}, "line": {"number": 874}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "39Gbufo2_bMKjFgin1seqAAAAAAAAABz"}} +{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "void org.elasticsearch.search.fetch.FetchPhase.execute(org.elasticsearch.search.internal.SearchContext)", "offset": 18}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PBJfwt_BFzTkj9JYTd05YQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "NativeUsersStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.esnative.NativeUsersStore$1.onResponse(java.lang.Object)"}, "line": {"number": 190}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "90J0K9KRqjzo3OWaVDBuGAAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory$FSIndexOutput.(org.apache.lucene.store.FSDirectory, java.lang.String, java.nio.file.OpenOption[])", "offset": 4}, "line": {"number": 394}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mcUNtE1F4FFRdkwX2pHxOwAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "Hasher.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authc.support.Hasher.verifyBcryptHash(org.elasticsearch.common.settings.SecureString, char[])", "offset": 4}, "line": {"number": 542}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Xxw-Md0tF-Ko5-6PzeDzxAAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat$$Lambda$7671+0x0000000801ee1040.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8FITX_M8xZfe7i7TCZCgqgAAAAAAAABt"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport$NodeChannels.sendRequest(long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions)", "offset": 11}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Usg8tEaC4Aig3mytevfs_AAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.util.List java.nio.file.Files.readAllLines(java.nio.file.Path, java.nio.charset.Charset)"}, "line": {"number": 3411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q"}} +{"Stackframe": {"function": {"name": "StubRoutines (1)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gwheXdG5yFE9iYsKSBIzhgAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.master.MasterNodeRequest, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Z_WnWFmJraaLolV8hl2sigAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "LifecyclePolicyUtils.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.xpack.core.ilm.LifecyclePolicyUtils.load(java.lang.String)", "offset": 2}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j5zlUQh7CKlo9dGRL_ZvEwAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.map(java.util.Map, boolean, boolean)", "offset": 11}, "line": {"number": 886}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tGdjZjM6jJA23WbdtVpvAwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.util.Map$Entry java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$1.next()"}, "line": {"number": 1679}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NzJ_Z5A_H4TjZWzADQAilgAAAAAAAAxz"}} +{"Stackframe": {"function": {"name": "ipt_do_table"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LDzxKitLXg1NPN9Jo9msaAAAAAAAAACm"}} +{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.deleteFiles(java.util.Collection)", "offset": 22}, "line": {"number": 699}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Mmoo_suJilhWtf6a-tL1QAAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "CollectionUtil.java"}, "function": {"name": "void org.apache.lucene.util.CollectionUtil.introSort(java.util.List)", "offset": 2}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "St7lFjY3zfwOi_rfHJtWoQAAAAAAAABZ"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Object, java.util.Set)", "offset": 16}, "line": {"number": 1091}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ckdRYj6mGdEYJvYh_1v9CAAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.action.support.nodes.BaseNodeRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 3}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nKhcql1SQ7g-aNYXxz6k1AAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "ApacheHttpRequestFactory.java"}, "function": {"name": "org.apache.http.client.methods.HttpRequestBase com.amazonaws.http.apache.request.impl.ApacheHttpRequestFactory.create(com.amazonaws.Request, com.amazonaws.http.settings.HttpClientSettings)", "offset": 13}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fXtbF06M7ZwcaaNlV0uiIgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "org.apache.lucene.index.Terms org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsReader.terms(java.lang.String)"}, "line": {"number": 315}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NUHO_iNZCc-7_52gTmxhTQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.engine.CommitStats org.elasticsearch.index.engine.Engine.commitStats()"}, "line": {"number": 770}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZzjWAA6wDJtYRWOq7lbvsAAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeBytesReference(org.elasticsearch.common.bytes.BytesReference)", "offset": 5}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$MappedActionListener.onResponse(java.lang.Object)", "offset": 6}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i2HnQvZ0pKTd886GmsiskgAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "ES87BloomFilterPostingsFormat.java"}, "function": {"name": "void org.elasticsearch.index.codec.bloomfilter.ES87BloomFilterPostingsFormat$FieldsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)"}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "p9nmp_8ZlFctnK3mCeeJOwAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "org.apache.lucene.index.SortedSetDocValues org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer.getSortedSet(org.apache.lucene.index.FieldInfo)", "offset": 2}, "line": {"number": 1433}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ovRPcszTde0VZh4hrqQUtwAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "void org.elasticsearch.search.query.QueryPhase.execute(org.elasticsearch.search.internal.SearchContext)", "offset": 14}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bdcjH1IduvC01JhGXDULzgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "BufferedChecksumIndexInput.java"}, "function": {"name": "byte org.apache.lucene.store.BufferedChecksumIndexInput.readByte()"}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w_8HYglWw-0jqUUlUeMgagAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Setting.get(org.elasticsearch.common.settings.Settings, boolean)"}, "line": {"number": 467}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Z-CiexQVqL-aPBYv4uHXWAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, sun.nio.ch.NativeDispatcher)"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tLidJxRjGWRw8PC1hoYlVAAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "RoutingTable.java"}, "function": {"name": "java.util.List org.elasticsearch.cluster.routing.RoutingTable.shardsWithState(org.elasticsearch.cluster.routing.ShardRoutingState)", "offset": 1}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "575WKZsJOrf8RDDJpG_1WgAAAAAAAABh"}} +{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.CopyBytesSocketChannel.doWrite(io.netty.channel.ChannelOutboundBuffer)", "offset": 24}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$CachingAsyncSupplier$$Lambda$5637+0x0000000801b328c0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_Ngz1ncxudXrxSqiWBxoaAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher.doCheckAndNotify()"}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xcBT3w2BkkvHXiaA0-Mm3AAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Setting.getKey()"}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4AOC1otNYKhZE8ncURFrlgAAAAAAAABd"}} +{"Stackframe": {"file": {"name": "FieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.FieldMapper.doXContentBody(org.elasticsearch.common.xcontent.XContentBuilder, boolean, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 9}, "line": {"number": 397}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "woUlYx3qksknQ1csxYkVzAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "AbstractNioChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.flush0()", "offset": 3}, "line": {"number": 362}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WvWndmvcw3hRnlErDWwKiAAAAAAAAACo"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter.(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.codecs.PostingsWriterBase, int, int)", "offset": 31}, "line": {"number": 278}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1amBT3QOZUDimVzQ6SC8SwAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$8238+0x0000000801fa6580.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eWNjRgsRcBaxFFX7FRBoWwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "java.util.Optional java.util.stream.ReferencePipeline.findFirst()"}, "line": {"number": 647}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C11mlNviZZKqD4nehqjEfwAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "Buffer.java"}, "function": {"name": "void java.nio.Buffer.(int, int, int, int, jdk.internal.access.foreign.MemorySegmentProxy)", "offset": 37}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAA0X"}} +{"Stackframe": {"function": {"name": "aufs_read_lock"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB0"}} +{"Stackframe": {"file": {"name": "SettingsFilter.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.SettingsFilter.filterSettings(java.lang.Iterable, org.elasticsearch.common.settings.Settings)", "offset": 11}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H0TC0UQxoqJIVHdEdBPgvgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "void sun.nio.ch.EPollSelectorImpl.clearInterrupt()", "offset": 1}, "line": {"number": 263}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZVUm0BdPrxOejRxbp2Iq8AAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.wakeup(boolean)", "offset": 1}, "line": {"number": 853}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI"}} +{"Stackframe": {"function": {"name": "finish_task_switch"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZYjMvLm_P9KQzcbY_YvFhwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "void java.lang.String.(byte[], java.nio.charset.Charset)"}, "line": {"number": 578}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CzfvNB5CT8fN1XtUwo_8BQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "RestRequest.java"}, "function": {"name": "org.elasticsearch.rest.RestRequest org.elasticsearch.rest.RestRequest.request(org.elasticsearch.xcontent.XContentParserConfiguration, org.elasticsearch.http.HttpRequest, org.elasticsearch.http.HttpChannel)"}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eIKZHUnkOnlIeLcFKA7B_wAAAAAAAACc"}} +{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.checkpoint(org.apache.lucene.index.SegmentInfos, boolean)", "offset": 13}, "line": {"number": 529}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAASdf"}} +{"Stackframe": {"function": {"name": "di_write_lock"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zFzboqO8__hpgAhYabPN_AAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "org.apache.lucene.document.Document org.elasticsearch.gateway.PersistedClusterStateService$Writer.makeGlobalMetadataDocument(org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.gateway.PersistedClusterStateService$DocumentBuffer)"}, "line": {"number": 840}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u84jH0Fi4giPpR8JCVg2uQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "void java.util.Collections$UnmodifiableMap.forEach(java.util.function.BiConsumer)"}, "line": {"number": 1553}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_gOGrJK0UBjHT36EJGuOEwAAAAAAAACH"}} +{"Stackframe": {"file": {"name": "StreamDecoder.java"}, "function": {"name": "int sun.nio.cs.StreamDecoder.readBytes()", "offset": 14}, "line": {"number": 297}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YzN7F6tLZe6mM7H1OD-sRgAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "void sun.nio.fs.UnixPath.checkRead()", "offset": 2}, "line": {"number": 810}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0rUUbfqBe8gbtaGmyGEfXQAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "AbstractByteBuf.java"}, "function": {"name": "void io.netty.buffer.AbstractByteBuf.ensureWritable0(int)", "offset": 3}, "line": {"number": 290}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pUE7QAfzShdQtn3WGqiM7wAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "PointValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.PointValuesWriter.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.PointsWriter)", "offset": 131}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3Ry2LaRN3x17PfGmARPd7AAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "ManagementFactory.java"}, "function": {"name": "java.util.List java.lang.management.ManagementFactory.getPlatformMXBeans(java.lang.Class)", "offset": 8}, "line": {"number": 727}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ns0s4gEeS-3vBv2JTXoIUwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "void sun.security.ssl.SSLSocketImpl.startHandshake()"}, "line": {"number": 412}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oyOPCAIGwaEIvRtPGG_P1AAAAAAAAABO"}} +{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.getRoles(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 249}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iit9TEPWxIcbSUSJseypHwAAAAAAAACI"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 22}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fydIm0ZqbzbPhuUlJMDkgwAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "TransportAutoPutMappingAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.mapping.put.TransportAutoPutMappingAction.masterOperation(org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ziy0GwbDorFuNEuEb935dAAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "Lucene80NormsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.NormsConsumer org.apache.lucene.codecs.lucene80.Lucene80NormsFormat.normsConsumer(org.apache.lucene.index.SegmentWriteState)"}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-bfXtV49fhR0KNLHrhQhfQAAAAAAAAC9"}} +{"Stackframe": {"file": {"name": "BlobStoreIndexShardSnapshots.java"}, "function": {"name": "void org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots.(java.util.List)", "offset": 17}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1Az5XiB-HqkM2KIxBs7pHgAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrapAndFlush(io.netty.channel.ChannelHandlerContext)", "offset": 15}, "line": {"number": 815}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6F0_K3vb-3sEd5CAOKq0QgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "FieldInfos.java"}, "function": {"name": "org.apache.lucene.index.FieldInfo org.apache.lucene.index.FieldInfos$Builder.add(org.apache.lucene.index.FieldInfo)"}, "line": {"number": 559}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_fOhPrA482cdtwnWghjHQQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "URLClassLoader.java"}, "function": {"name": "java.net.URL java.net.URLClassLoader$2.run()"}, "line": {"number": 616}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApym-"}} +{"Stackframe": {"function": {"name": "mutex_lock"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C87NV7kL69jQPmyqDubIUAAAAAAAAAH_"}} +{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDWriter$OneDimensionBKDWriter.writeLeafBlock(int)", "offset": 41}, "line": {"number": 676}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9sCTWshQJF-MxcDqttIhrwAAAAAAAAB6"}} +{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient)", "offset": 8}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LPs_156ZCvr24zfpMGyutQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.Iterator java.util.HashMap$EntrySet.iterator()"}, "line": {"number": 1013}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H-li-VPX4V5GB-C8EGJQQwAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "MessageToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 6}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1xBvehWaFQefKkuHjb2hUwAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$CachingAsyncSupplier.getAsync(org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 1029}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gpbgHn7e4Kz5N3-pRcz_dAAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutionBuilderImpl.execute(com.amazonaws.http.HttpResponseHandler)", "offset": 7}, "line": {"number": 697}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "C17-3NlBpv2arbZiuXnRAQAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.innerParseObject(org.elasticsearch.index.mapper.ParseContext, org.elasticsearch.index.mapper.ObjectMapper, org.elasticsearch.common.xcontent.XContentParser, java.lang.String, org.elasticsearch.common.xcontent.XContentParser$Token)", "offset": 2}, "line": {"number": 383}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "V6VjwoFUmL-aJwJOJ7vFngAAAAAAAACA"}} +{"Stackframe": {"file": {"name": "MultiTermsEnum.java"}, "function": {"name": "int org.apache.lucene.index.MultiTermsEnum$TermMergeQueue.fillTop(org.apache.lucene.index.MultiTermsEnum$TermsEnumWithSlice[])", "offset": 19}, "line": {"number": 429}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.decode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 4}, "line": {"number": 1314}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MClpQyU6gpPESHOwt_xwcAAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "AbstractNamedDiffable.java"}, "function": {"name": "void org.elasticsearch.cluster.AbstractNamedDiffable$CompleteNamedDiff.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 3}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZhtNJYoOwm655zArM3sIngAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()", "offset": 5}, "line": {"number": 923}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mxr0kxn6yVavxgRwPiOz3QAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.xpack.core.ilm.LifecyclePolicy$$Lambda$5449+0x0000000801b004c8.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object, java.lang.String)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TQWUVBogE19YtGrM-YvAMgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.syncTranslog()"}, "line": {"number": 578}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DUWYePMsNbo7HGAKMdOLTAAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 1}, "line": {"number": 628}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DjPOvqtibdYyCC-LCEO7BQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "BasicLineFormatter.java"}, "function": {"name": "org.apache.http.util.CharArrayBuffer org.apache.http.message.BasicLineFormatter.formatRequestLine(org.apache.http.util.CharArrayBuffer, org.apache.http.RequestLine)", "offset": 2}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PJJRZpwO2yOVyjUgLVVt-QAAAAAAAACS"}} +{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter.inbound(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.action.ActionListener)", "offset": 32}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OpWxOyeZPbB0kZpPoCN3dgAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "DeflateCompressor.java"}, "function": {"name": "void org.elasticsearch.common.compress.DeflateCompressor$2.close()", "offset": 5}, "line": {"number": 202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KZ08Ruc2q8aQheuBirtfwwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "WeakMapCleaner.java"}, "function": {"name": "void co.elastic.apm.agent.collections.WeakMapCleaner.run()"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bYR0b7-vTQ0RKJD6ns3ClQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.inboundMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage)"}, "line": {"number": 743}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ekre_h4w6uLsxTrYKbKEJQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "UnixDirectoryStream.java"}, "function": {"name": "boolean sun.nio.fs.UnixDirectoryStream$UnixDirectoryIterator.hasNext()", "offset": 1}, "line": {"number": 198}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LFiOeIpjbAGuoHCaoCuGBQAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction$AsyncSingleAction.start()", "offset": 2}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WsBETJrPecSrGYvg781P3AAAAAAAAAO3"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.snapshotShard(org.elasticsearch.repositories.SnapshotShardContext)", "offset": 146}, "line": {"number": 2723}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y1I4HGusQaecXOnSGoRjFAAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.common.settings.Settings.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 3}, "line": {"number": 649}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFqnG"}} +{"Stackframe": {"function": {"name": "cpu_stopper_thread"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WAB0fvH6ioTO4VaJeYjuEAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "PeerFinder.java"}, "function": {"name": "boolean org.elasticsearch.discovery.PeerFinder.access$300(org.elasticsearch.discovery.PeerFinder)"}, "line": {"number": 59}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wum-bHlH6Liqs0d_H9hKSQAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "void org.elasticsearch.index.translog.Translog.deleteReaderFiles(org.elasticsearch.index.translog.TranslogReader)"}, "line": {"number": 1802}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "htvgcgAW24Rn4q34GnPYLQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.elasticsearch.search.internal.ContextIndexSearcher$1.bulkScorer(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Jj6ja2Wbkf1_R1a9nVWcUAAAAAAAAACJ"}} +{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.CommonStats.(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 9}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MOgPAaY2At24Q0nLro4PXgAAAAAAAADK"}} +{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeFieldName(java.lang.String)", "offset": 51}, "line": {"number": 827}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UT4r1woqEdacoKDuZFw-vgAAAAAAAADt"}} +{"Stackframe": {"file": {"name": "Netty4WriteThrottlingHandler.java"}, "function": {"name": "boolean org.elasticsearch.transport.netty4.Netty4WriteThrottlingHandler.doFlush(io.netty.channel.ChannelHandlerContext)", "offset": 33}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "K92zia0pzvb-AxQHNNmLHgAAAAAAAANS"}} +{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment org.apache.lucene.index.DocumentsWriterPerThread.flush(org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 131}, "line": {"number": 474}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JvlRd4Wn40C95D0SC2Hf0wAAAAAAAAGs"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.mergeMiddle(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergePolicy)", "offset": 81}, "line": {"number": 5140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CSQIcg5qzfHUGZiT4d9R6wAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "FileSystemUtils.java"}, "function": {"name": "java.nio.file.Path[] org.elasticsearch.common.io.FileSystemUtils.files(java.nio.file.Path)", "offset": 1}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rOIREZdzN7DNIjy06O3V9AAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService.snapshot(org.elasticsearch.index.shard.ShardId, org.elasticsearch.snapshots.Snapshot, org.elasticsearch.repositories.IndexId, org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.elasticsearch.Version, long, org.elasticsearch.action.ActionListener)"}, "line": {"number": 349}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "E9iltmxxnvYn82cyFFZ0KwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "void io.netty.util.concurrent.DefaultPromise.notifyListener0(io.netty.util.concurrent.Future, io.netty.util.concurrent.GenericFutureListener)"}, "line": {"number": 577}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z2VnMzkPQ5tcla-26h5_wAAAAAAAAACK"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object jdk.internal.reflect.GeneratedMethodAccessor19.invoke(java.lang.Object, java.lang.Object[])"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "r00hGoX0a3XDQ4RzIP7twwAAAAAAAAEC"}} +{"Stackframe": {"file": {"name": "Coordinator.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.Coordinator.publish(org.elasticsearch.cluster.ClusterStatePublicationEvent, org.elasticsearch.action.ActionListener, org.elasticsearch.cluster.coordination.ClusterStatePublisher$AckListener)", "offset": 41}, "line": {"number": 1456}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x8wKfSxfz0olWikyS-1x_gAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "Lucene80NormsProducer.java"}, "function": {"name": "short org.apache.lucene.codecs.lucene80.Lucene80NormsProducer$1.readShort()", "offset": 2}, "line": {"number": 279}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe"}} +{"Stackframe": {"function": {"name": "__x64_sys_futex"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uWcUG2bf_MgJpXpuAZivRAAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "TermsAggregatorFactory.java"}, "function": {"name": "org.elasticsearch.search.aggregations.Aggregator org.elasticsearch.search.aggregations.bucket.terms.TermsAggregatorFactory$ExecutionMode$3.create(java.lang.String, org.elasticsearch.search.aggregations.AggregatorFactories, org.elasticsearch.search.aggregations.support.ValuesSource, org.elasticsearch.search.aggregations.bucket.terms.Terms$Order, org.elasticsearch.search.DocValueFormat, org.elasticsearch.search.aggregations.bucket.terms.TermsAggregator$BucketCountThresholds, org.elasticsearch.search.aggregations.bucket.terms.support.IncludeExclude, org.elasticsearch.search.internal.SearchContext, org.elasticsearch.search.aggregations.Aggregator, org.elasticsearch.search.aggregations.Aggregator$SubAggCollectionMode, boolean, java.util.List, java.util.Map)", "offset": 1}, "line": {"number": 308}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PxG4kqBtC76qisSIA3IEOgAAAAAAAAB-"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser._finishAndReturnString()", "offset": 24}, "line": {"number": 2438}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAaNA"}} +{"Stackframe": {"function": {"name": "au_h_iptr"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LD6UzhZ_oYl4ljutvvYPEgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$lookForExistingAuthentication$8(java.util.function.Consumer, org.elasticsearch.xpack.core.security.authc.Authentication)"}, "line": {"number": 414}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oFsDQT5fo33-zFKmVhzmdQAAAAAAAAF6"}} +{"Stackframe": {"file": {"name": "IntroSorter.java"}, "function": {"name": "void org.apache.lucene.util.IntroSorter.sort(int, int, int)", "offset": 66}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2Gjxa8Lemwix5NrE6xBsvAAAAAAAAAA7"}} +{"Stackframe": {"file": {"name": "Method.java"}, "function": {"name": "java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[])", "offset": 10}, "line": {"number": 567}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uttUA2IAZoyKZAgCzy0iDQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.core.indexing.AsyncTwoPhaseIndexer$$Lambda$9316+0x000000080282f540.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "L_kEqub67pN0QW8_pJ6NGAAAAAAAAACQ"}} +{"Stackframe": {"file": {"name": "JdkZlibEncoder.java"}, "function": {"name": "void io.netty.handler.codec.compression.JdkZlibEncoder.encode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, io.netty.buffer.ByteBuf)", "offset": 37}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAARPAa"}} +{"Stackframe": {"function": {"name": "security_file_open"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w8GVRjAwPMFQC_D_wSJ9HQAAAAAAAACa"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "void java.io.FilePermission.init(int)", "offset": 32}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADS"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient, org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.rest.RestHandler)", "offset": 22}, "line": {"number": 262}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ctdB72KOjjDgY7ArIUKVnQAAAAAAAABw"}} +{"Stackframe": {"file": {"name": "StreamDecoder.java"}, "function": {"name": "int sun.nio.cs.StreamDecoder.implRead(char[], int, int)", "offset": 17}, "line": {"number": 339}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lQpa9axIEgKeHggrPSwR2AAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "URLClassPath.java"}, "function": {"name": "java.net.URL jdk.internal.loader.URLClassPath$JarLoader.findResource(java.lang.String, boolean)"}, "line": {"number": 942}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2nfk7kd46D_56_vyY72dCQAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "ClassLoaderContextSelector.java"}, "function": {"name": "org.apache.logging.log4j.core.LoggerContext org.apache.logging.log4j.core.selector.ClassLoaderContextSelector.getContext(java.lang.String, java.lang.ClassLoader, boolean, java.net.URI)", "offset": 11}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QE1C6oZLYffge09QUEmCwQAAAAAAAAC7"}} +{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 37}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pm5ZZT8tAonkuZs4iAYeNQAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Collection org.elasticsearch.common.io.stream.StreamInput.readCollection(org.elasticsearch.common.io.stream.Writeable$Reader, java.util.function.IntFunction, java.util.Collection)", "offset": 6}, "line": {"number": 1153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VFvoTC_1MXfHqnOeoSu9rAAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.handleResponse(java.net.InetSocketAddress, org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.transport.TransportResponseHandler)", "offset": 9}, "line": {"number": 1442}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7ptKTGTqqszfKDkDMhWl3gAAAAAAAADw"}} +{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.index.SegmentMerger.merge()", "offset": 20}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANyga"}} +{"Stackframe": {"function": {"name": "proc_readfd_common"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yDhpbqgW_DW17T8_Sh39QgAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.authenticateAsync()", "offset": 6}, "line": {"number": 333}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0Cdt9wyWxnG2B-xGXMO6owAAAAAAAABp"}} +{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.xfer(java.lang.Object, boolean, int, long)", "offset": 10}, "line": {"number": 605}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8nTT-Je437OkQHu_fYo0aQAAAAAAAACg"}} +{"Stackframe": {"file": {"name": "SearchResponse.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.action.search.SearchResponse.innerToXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 17}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BZ6M98E7_jhQ9w9aCijThQAAAAAAAABj"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.writeAuthToContext(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)", "offset": 14}, "line": {"number": 376}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iiLZnxbVRTQPtvWA0miuyAAAAAAAAAC8"}} +{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer.executeSingleUpload(org.elasticsearch.repositories.s3.S3BlobStore, java.lang.String, java.io.InputStream, long)", "offset": 18}, "line": {"number": 490}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qRvG2N9iYeFyl-3xULRJEgAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "Collection.java"}, "function": {"name": "boolean java.util.Collection.removeIf(java.util.function.Predicate)", "offset": 4}, "line": {"number": 576}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wShKKQbdgy2OaZjDOPTMUwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction$AsyncSingleAction.lambda$doStart$3(org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)"}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WLOUsm-IsQxvoTcefLktBQAAAAAAAABW"}} +{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "java.lang.Object java.util.stream.ReferencePipeline.collect(java.util.stream.Collector)", "offset": 8}, "line": {"number": 682}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun()", "offset": 2}, "line": {"number": 777}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qtxmuYYdQSJOiK5WcAGLhAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authc.Authentication org.elasticsearch.xpack.security.authc.AuthenticatorChain.lookForExistingAuthentication(org.elasticsearch.xpack.security.authc.Authenticator$Context)"}, "line": {"number": 238}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HQIcUxTS4b3fQz1smTvzngAAAAAAAAAr"}} +{"Stackframe": {"file": {"name": "FST.java"}, "function": {"name": "void org.apache.lucene.util.fst.FST.(org.apache.lucene.util.fst.FST$INPUT_TYPE, org.apache.lucene.util.fst.Outputs, int)", "offset": 256}, "line": {"number": 404}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "V6fcE1EsjMYG4ctzhztDBgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "CodecUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.CodecUtil.writeFooter(org.apache.lucene.store.IndexOutput)", "offset": 2}, "line": {"number": 411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WLR6tMYzOVwd-dC39zrHVgAAAAAAAACi"}} +{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.tasks.TaskManager.register(java.lang.String, java.lang.String, org.elasticsearch.tasks.TaskAwareRequest)", "offset": 14}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wtgpZp9SPQlV85UePoIRQgAAAAAAAAAZ"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.loadAuthorizedIndices(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 2}, "line": {"number": 366}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mWj5c0ESBFbOdqOPS0pc7wAAAAAAAABR"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorize(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 29}, "line": {"number": 242}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7At3N6jUaTq91gUXMCcsgwAAAAAAAAFD"}} +{"Stackframe": {"file": {"name": "AccessControlContext.java"}, "function": {"name": "void java.security.AccessControlContext.checkPermission(java.security.Permission)", "offset": 56}, "line": {"number": 450}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TPvt3mmZJbEjMZM8rsHZwwAAAAAAAABI"}} +{"Stackframe": {"file": {"name": "SSLEngineOutputRecord.java"}, "function": {"name": "sun.security.ssl.Ciphertext sun.security.ssl.SSLEngineOutputRecord.encode(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 16}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SJtbOKA-yUJNIv9tsaiOvQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "void org.elasticsearch.tasks.TaskManager$1.onResponse(java.lang.Object)"}, "line": {"number": 203}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pau0UQ1asIYgp7VJrYDBTQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriter$DeleteNewFilesEvent.process(org.apache.lucene.index.IndexWriter, boolean, boolean)"}, "line": {"number": 771}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService.maybeRefreshEngine(boolean)", "offset": 3}, "line": {"number": 917}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oSoGUxBn_MfT_4Ncm-yGtQAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.writeIncrementalStateAndCommit(long, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)", "offset": 10}, "line": {"number": 911}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H993ZydDem1gABEwmkxlggAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "LifecyclePolicyUtils.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecyclePolicy org.elasticsearch.xpack.core.ilm.LifecyclePolicyUtils.loadPolicy(java.lang.String, java.lang.String, org.elasticsearch.xcontent.NamedXContentRegistry)", "offset": 5}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZAmbxyNnMJsV4ZK87y2R2AAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "boolean org.elasticsearch.common.settings.Setting.exists(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 320}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y9uy0jT_olZW6YV4k5pWhwAAAAAAAAFL"}} +{"Stackframe": {"file": {"name": "MultiDocValues.java"}, "function": {"name": "void org.apache.lucene.index.MultiDocValues$OrdinalMap.(java.lang.Object, org.apache.lucene.index.TermsEnum[], org.apache.lucene.index.MultiDocValues$OrdinalMap$SegmentMap, float)", "offset": 50}, "line": {"number": 579}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Sjz2MvPusgDd7v_6YUXcPAAAAAAAAAC1"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.merge(org.apache.lucene.index.MergeState)", "offset": 21}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zH45M92-bkfWcFOT2TBI0wAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "FollowersChecker.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.FollowersChecker$FollowerCheckRequest.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 2}, "line": {"number": 459}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9RZkYL0fVSfLG-HsYblWBQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.decRefDeleter(org.apache.lucene.index.SegmentInfos)", "offset": 1}, "line": {"number": 5407}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X9nwrZYlme63pOWRN1rWbwAAAAAAAACm"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.merge(org.apache.lucene.index.MergeState)", "offset": 17}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "neO46ZFHIa7nQWw23tiwugAAAAAAAADj"}} +{"Stackframe": {"file": {"name": "BooleanQuery.java"}, "function": {"name": "org.apache.lucene.search.Query org.apache.lucene.search.BooleanQuery.rewrite(org.apache.lucene.index.IndexReader)", "offset": 35}, "line": {"number": 265}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fYAaYAgDJUWmUbqVG5AEPQAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "DefaultHeaders.java"}, "function": {"name": "io.netty.handler.codec.Headers io.netty.handler.codec.DefaultHeaders.add(java.lang.Object, java.lang.Object)", "offset": 2}, "line": {"number": 288}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2Ut7nq0iY4aNbbau12o0cQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "DirectByteBuffer.java"}, "function": {"name": "void java.nio.DirectByteBuffer.(sun.nio.ch.DirectBuffer, int, int, int, int, int)"}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AaEmQZ_EVX-F-lW3lvwCSAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Lucene54DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene54.Lucene54DocValuesConsumer.addNumericField(org.apache.lucene.index.FieldInfo, java.lang.Iterable)"}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gM-zvldT2mxZOhlxJvpRXwAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "ProtectionDomain.java"}, "function": {"name": "boolean java.security.ProtectionDomain.impliesWithAltFilePerm(java.security.Permission)", "offset": 2}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADqG"}} +{"Stackframe": {"function": {"name": "syscall_trace_enter"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nOwqeD6ZJtavy7VDpIbTlQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.CommitStats org.elasticsearch.index.shard.IndexShard.commitStats()"}, "line": {"number": 1068}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wxNyOGlepMHeJK72r3Nx1AAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService.access$400(org.elasticsearch.index.IndexService)"}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GPgne5T-0iZurfH30RkS3gAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter$IndexWriterMergeSource.merge(org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 1}, "line": {"number": 6432}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3kqb9iL-AByP8rRfsVhi_QAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.exists(java.nio.file.Path)", "offset": 1}, "line": {"number": 537}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Vyw5UB5t7K3M1sGJ5zvMhQAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "SearchHit.java"}, "function": {"name": "void org.elasticsearch.search.SearchHit.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 5}, "line": {"number": 931}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr"}} +{"Stackframe": {"function": {"name": "link_path_walk.part.33"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YM_gl0OeNbTAtY8GRC8UVgAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 5}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rhOD3KcAMFNOs9uaV69dxAAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.lambda$callClusterStateListeners$7(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.ClusterStateListener)", "offset": 1}, "line": {"number": 497}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xbqKJQZXOhWiw8eLSXIeiwAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService.lambda$newShardSnapshotTask$2(org.elasticsearch.index.shard.ShardId, org.elasticsearch.snapshots.Snapshot, org.elasticsearch.repositories.IndexId, org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.elasticsearch.Version, long)"}, "line": {"number": 276}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "n578KwIsKOJTDafL19o8GQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "AbstractQueryBuilder.java"}, "function": {"name": "org.elasticsearch.index.query.QueryBuilder org.elasticsearch.index.query.AbstractQueryBuilder.rewrite(org.elasticsearch.index.query.QueryRewriteContext)"}, "line": {"number": 275}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "b8Hh4l9luLQDA0--un99UgAAAAAAAACz"}} +{"Stackframe": {"file": {"name": "FetchSourceSubPhase.java"}, "function": {"name": "void org.elasticsearch.search.fetch.subphase.FetchSourceSubPhase.hitExecute(org.elasticsearch.search.internal.SearchContext, org.elasticsearch.search.fetch.FetchSubPhase$HitContext)", "offset": 21}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gJKCOQJCNUe5j61lhCTyewAAAAAAAATd"}} +{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "boolean org.elasticsearch.search.query.QueryPhase.execute(org.elasticsearch.search.internal.SearchContext, org.apache.lucene.search.IndexSearcher, java.util.function.Consumer)", "offset": 273}, "line": {"number": 421}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7p10TjlSnW-BHhdA3ldCNwAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "ResourceLeakDetector.java"}, "function": {"name": "io.netty.util.ResourceLeakDetector$DefaultResourceLeak io.netty.util.ResourceLeakDetector.track0(java.lang.Object)", "offset": 8}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gvuD6B77CDYBJxa-S1A8kQAAAAAAAABy"}} +{"Stackframe": {"file": {"name": "IndexLifecycleService.java"}, "function": {"name": "void org.elasticsearch.xpack.ilm.IndexLifecycleService.triggerPolicies(org.elasticsearch.cluster.ClusterState, boolean)", "offset": 21}, "line": {"number": 322}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZkLsycxKPf36jJRxnsYRXgAAAAAAAAB1"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.support.AbstractXContentParser.readValueUnsafe(org.elasticsearch.common.xcontent.XContentParser$Token, org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier)", "offset": 3}, "line": {"number": 382}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJloA"}} +{"Stackframe": {"function": {"name": "tlb_finish_mmu"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WZK18270JR2u9aieilAliAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "CipherCore.java"}, "function": {"name": "int com.sun.crypto.provider.CipherCore.fillOutputBuffer(byte[], int, byte[], int, int, byte[])"}, "line": {"number": 1059}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vc_2qIuahQ6DM3LWEJ9q5QAAAAAAAACE"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.writeFromNativeBuffer(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 18}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nZcAdwBOPPRQ2hQm4YWwWgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkWrite(java.lang.String)"}, "line": {"number": 842}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8vigD8rt-YtQEvk4ur7eYAAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer$1.onCompletion()", "offset": 1}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gFIaE5oowa2CED5FZTh2rQAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Index org.elasticsearch.index.shard.IndexShard.prepareIndex(org.elasticsearch.index.mapper.DocumentMapperForType, org.elasticsearch.index.mapper.SourceToParse, long, org.elasticsearch.index.VersionType, org.elasticsearch.index.engine.Engine$Operation$Origin, long, boolean)", "offset": 1}, "line": {"number": 530}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oz9GJ_qlf4pBIKy8mHtWYAAAAAAAAACL"}} +{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.req(java.util.Collection, java.util.Collection, long)", "offset": 33}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eLa88eGD5YHpas6x1G8apQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "FieldMapper.java"}, "function": {"name": "java.lang.String org.elasticsearch.index.mapper.FieldMapper.name()"}, "line": {"number": 265}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OcVENYdBUHkmXadCZbxMcQAAAAAAAABX"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$MetadataIndexWriter.prepareCommit(java.lang.String, long, long)", "offset": 6}, "line": {"number": 533}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Sd0ietlVHSd47AdPIVeCfAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannel.write(java.lang.Object)"}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D24BMbxmwnEGvGJ3u0PiFAAAAAAAAACQ"}} +{"Stackframe": {"file": {"name": "CipherCore.java"}, "function": {"name": "int com.sun.crypto.provider.CipherCore.doFinal(byte[], int, int, byte[], int)", "offset": 31}, "line": {"number": 946}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKeys()", "offset": 3}, "line": {"number": 498}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7b4mN3eRi5N3KF4ac_WmLwAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "Nodes.java"}, "function": {"name": "void java.util.stream.Nodes$ArrayNode.(long, java.util.function.IntFunction)", "offset": 3}, "line": {"number": 646}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2"}} +{"Stackframe": {"file": {"name": "ForkJoinPool.java"}, "function": {"name": "boolean java.util.concurrent.ForkJoinPool.scan(java.util.concurrent.ForkJoinPool$WorkQueue, int)", "offset": 14}, "line": {"number": 1656}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1CcuhJezHq64cCQVie7b_wAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor.sendWithUser(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportInterceptor$AsyncSender, boolean)", "offset": 8}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z5Ok5kVT2l3xrDDU1L9N8gAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.SegmentMerger$$Lambda$8043+0x000000080265c610.merge(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.SegmentReadState)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JKu4CuZaKLu1hUTJJBwZEwAAAAAAAABd"}} +{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "org.apache.lucene.search.Weight org.elasticsearch.search.internal.ContextIndexSearcher.createWeight(org.apache.lucene.search.Query, org.apache.lucene.search.ScoreMode, float)", "offset": 16}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QE1C6oZLYffge09QUEmCwQAAAAAAAADU"}} +{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 42}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "woXLgCudpu5Igw4bPyCZzAAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "ChannelOutboundBuffer.java"}, "function": {"name": "void io.netty.channel.ChannelOutboundBuffer.removeBytes(long)", "offset": 15}, "line": {"number": 352}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_ui1AAIySrYc7ZeYb73nFQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 2}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "void org.apache.lucene.index.SegmentMerger.mergeDocValues(org.apache.lucene.index.SegmentWriteState)", "offset": 1}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xiNRq7Ruj11jfgYHuwwWowAAAAAAAAHi"}} +{"Stackframe": {"file": {"name": "MapperService.java"}, "function": {"name": "java.util.Map org.elasticsearch.index.mapper.MapperService.internalMerge(org.elasticsearch.index.mapper.DocumentMapper, java.lang.String, java.util.List, org.elasticsearch.index.mapper.MapperService$MergeReason, boolean)", "offset": 43}, "line": {"number": 384}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan"}} +{"Stackframe": {"function": {"name": "lookup_fast"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene80.IndexedDISI.advance(int)", "offset": 5}, "line": {"number": 384}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "paeptaXHRDYD67F7ORC0twAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "org.elasticsearch.common.collect.ImmutableOpenMap org.elasticsearch.common.io.stream.StreamInput.readImmutableMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader)", "offset": 6}, "line": {"number": 710}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pAAKLdxZ4cGzshbciFKEswAAAAAAAAC8"}} +{"Stackframe": {"file": {"name": "RestNodesInfoAction.java"}, "function": {"name": "org.elasticsearch.rest.BaseRestHandler$RestChannelConsumer org.elasticsearch.rest.action.admin.cluster.RestNodesInfoAction.prepareRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.client.node.NodeClient)", "offset": 22}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gzv5ZcBM9qZL6-CtFKcz1wAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.s3.SocketAccess$$Lambda$10709+0x000000080270a838.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VydXcSmOqICsVxLpiPFyCAAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "long org.apache.lucene.index.DocumentsWriter.updateDocuments(java.lang.Iterable, org.apache.lucene.index.DocumentsWriterDeleteQueue$Node)", "offset": 12}, "line": {"number": 415}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gvLVFgOymHZYnYZ96vTtlgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ClusterStateUpdateTask.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterStateTaskExecutor$ClusterTasksResult org.elasticsearch.cluster.ClusterStateUpdateTask.execute(org.elasticsearch.cluster.ClusterState, java.util.List)"}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sRC-EYSM_wjZFQySXQa74wAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "StepListener.java"}, "function": {"name": "void org.elasticsearch.action.StepListener.addListener(org.elasticsearch.action.ActionListener)"}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "PendingDeletes.java"}, "function": {"name": "int org.apache.lucene.index.PendingDeletes.numDeletesToMerge(org.apache.lucene.index.MergePolicy, org.apache.lucene.util.IOSupplier)"}, "line": {"number": 235}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZrsFKuVxhHWhub-XEUbfgQAAAAAAAAAe"}} +{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run()", "offset": 4}, "line": {"number": 293}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ktm-nkDOWkX2ccJBYdY19QAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "void com.amazonaws.services.s3.AmazonS3Client.postProcessS3Object(com.amazonaws.services.s3.model.S3Object, boolean, com.amazonaws.event.ProgressListener)", "offset": 25}, "line": {"number": 1548}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "welCfthDONC1Bd77f0UwrAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "HttpClientSettings.java"}, "function": {"name": "boolean com.amazonaws.http.settings.HttpClientSettings.isProxyEnabled()"}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIjb"}} +{"Stackframe": {"function": {"name": "__seccomp_filter"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UqPeQ03nZ4m2CLoB308K-gAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer$$Lambda$10708+0x000000080270a628.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "void org.elasticsearch.search.SearchService.loadOrExecuteQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.search.internal.SearchContext)", "offset": 5}, "line": {"number": 458}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GWjujT1s7sRuQIwkyxwy1QAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$7899+0x00000008025fce00.get()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QVeLj_oPnEjl_jKTv8aQqAAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "LoggingHandler.java"}, "function": {"name": "void io.netty.handler.logging.LoggingHandler.flush(io.netty.channel.ChannelHandlerContext)", "offset": 3}, "line": {"number": 304}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Ze-lFYlAFG8CnInYlyzu1gAAAAAAAAEF"}} +{"Stackframe": {"file": {"name": "MapperService.java"}, "function": {"name": "org.elasticsearch.index.mapper.MapperService$Mappings org.elasticsearch.index.mapper.MapperService.parseMappings(java.util.Map, org.elasticsearch.index.mapper.MapperService$MergeReason)", "offset": 36}, "line": {"number": 503}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TajQRmOPdPxCSIVqxKN8mgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.coordination.PublicationTransportHandler$PublicationContext$1.get()"}, "line": {"number": 377}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H1CF2wbVsBq-RIFMCy7HhgAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.finishApply(org.apache.lucene.index.BufferedUpdatesStream$SegmentState[], boolean, java.util.Set)", "offset": 8}, "line": {"number": 6261}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3GraiHROJsQD8vNYdRBuYQAAAAAAAADy"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.indices.NodeIndicesStats org.elasticsearch.indices.IndicesService.stats(org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 15}, "line": {"number": 460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Owvv7Uv9Atb57QoKMPcHfQAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "Proxy.java"}, "function": {"name": "java.lang.Object java.lang.reflect.Proxy.newProxyInstance(java.lang.Class, java.lang.reflect.Constructor, java.lang.reflect.InvocationHandler)", "offset": 4}, "line": {"number": 1053}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Qu218hu8V1yV0zD3RGKZAwAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "void org.apache.lucene.store.LockValidatingDirectoryWrapper.rename(java.lang.String, java.lang.String)", "offset": 1}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fkbxUTZgljnk71ZMnqJnyAAAAAAAAAPF"}} +{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "long[] org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.writeValues(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer, boolean)", "offset": 139}, "line": {"number": 329}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FS55TSwq0w7KNb6oqdqsJwAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$RequestFilterChain.proceed(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_zxyi-wgtH_Wz8ut-WKY9wAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Setting.innerGetRaw(org.elasticsearch.common.settings.Settings)", "offset": 4}, "line": {"number": 550}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mS3MukICCdHTn2nKGwcjXAAAAAAAAACR"}} +{"Stackframe": {"file": {"name": "SSLExtensions.java"}, "function": {"name": "void sun.security.ssl.SSLExtensions.produce(sun.security.ssl.HandshakeContext, sun.security.ssl.SSLExtension[])", "offset": 19}, "line": {"number": 253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ltSnS2lg4bhkM5v8FCBLWQAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "com.carrotsearch.hppc.cursors.ObjectCursor com.carrotsearch.hppc.ObjectObjectHashMap$KeysIterator.fetch()", "offset": 2}, "line": {"number": 832}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "apkzePHSA8DsaWHTG2PzIwAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "CollectionUtil.java"}, "function": {"name": "void org.apache.lucene.util.CollectionUtil.introSort(java.util.List)", "offset": 2}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_o16MMgGIHtHHW6cqc3kcwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeWrite(java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 1}, "line": {"number": 709}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FuWxxcsr3tUR5NeFGer7vwAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.execute()", "offset": 18}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nIdh9JyDou_HWbuDWW9WJwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "Reference.java"}, "function": {"name": "void java.lang.ref.Reference.clear()"}, "line": {"number": 373}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Okx9I2dyRRofyvlGdVF32QAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "HttpObjectDecoder.java"}, "function": {"name": "io.netty.handler.codec.http.HttpObjectDecoder$State io.netty.handler.codec.http.HttpObjectDecoder.readHeaders(io.netty.buffer.ByteBuf)", "offset": 3}, "line": {"number": 552}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Tfv1CFdfGMugK5MvpkpsPAAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.writeAtomic(org.elasticsearch.common.blobstore.BlobContainer, java.lang.String, org.elasticsearch.core.CheckedConsumer, boolean)", "offset": 1}, "line": {"number": 2572}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aPSsQ8x5Ub2iNdzhtk5QFAAAAAAAAABt"}} +{"Stackframe": {"file": {"name": "ObjectMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.ObjectMapper.(java.lang.String, java.lang.String, boolean, org.elasticsearch.index.mapper.ObjectMapper$Nested, org.elasticsearch.index.mapper.ObjectMapper$Dynamic, java.lang.Boolean, java.util.Map, org.elasticsearch.common.settings.Settings)", "offset": 16}, "line": {"number": 337}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mLfjq87DJtmgQUOWZb8qsAAAAAAAAAHc"}} +{"Stackframe": {"file": {"name": "Coordinator.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.Coordinator.handlePublishRequest(org.elasticsearch.cluster.coordination.PublishRequest)", "offset": 38}, "line": {"number": 326}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlwjf"}} +{"Stackframe": {"function": {"name": "ip_queue_xmit"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P_o2pJ69sFtlULR3r8EJWgAAAAAAAAA5"}} +{"Stackframe": {"file": {"name": "EmbeddedChannel.java"}, "function": {"name": "boolean io.netty.channel.embedded.EmbeddedChannel.writeOutbound(java.lang.Object[])", "offset": 11}, "line": {"number": 392}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hT_GFd-d817AZqi9jIee6QAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$1.onResponse(org.elasticsearch.action.ActionResponse)", "offset": 1}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2t1JH7EuZ3aCD6UnM9f6UQAAAAAAAAHE"}} +{"Stackframe": {"file": {"name": "JvmStats.java"}, "function": {"name": "org.elasticsearch.monitor.jvm.JvmStats org.elasticsearch.monitor.jvm.JvmStats.jvmStats()", "offset": 42}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PCZtk4AIkgW9G69-tbcb4gAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "RetentionLeaseBackgroundSyncAction.java"}, "function": {"name": "void org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction.shardOperationOnReplica(org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction$Request, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-d8q0yrrshveMNVRtuEsEgAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.acquireReplicaOperationPermit(long, long, long, org.elasticsearch.action.ActionListener, java.lang.String, java.lang.Object)"}, "line": {"number": 3491}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3QxPrhcD9ugSQPryZKe81gAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.close()"}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD5P"}} +{"Stackframe": {"function": {"name": "exit_to_usermode_loop"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AAAAAAAAV4sAAAAAAAAAHWb_4j8Xam4z"}} +{"Stackframe": {"function": {"name": "_complete_monitor_locking_Java"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5gRif6Sjt0HHN5TwyiXUJwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "SocketDispatcher.java"}, "function": {"name": "int sun.nio.ch.SocketDispatcher.write(java.io.FileDescriptor, long, int)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAEx"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 75}, "line": {"number": 360}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ybzB9D1DmBNUwOV0iR5UtAAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "AbstractObjectPool.java"}, "function": {"name": "java.lang.Object co.elastic.apm.agent.objectpool.impl.AbstractObjectPool.createInstance()", "offset": 3}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "F-UVz7qWVUzScRv1FhkbzQAAAAAAAAJi"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 60}, "line": {"number": 278}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NDiNPs2SIuj4NddpL8knJAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "FileDispatcherImpl.java"}, "function": {"name": "int sun.nio.ch.FileDispatcherImpl.force(java.io.FileDescriptor, boolean)"}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tZaMdHxmjfXV5e8wiO0L_AAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "RestMonitoringBulkAction.java"}, "function": {"name": "void org.elasticsearch.xpack.monitoring.rest.action.RestMonitoringBulkAction.lambda$doPrepareRequest$0(org.elasticsearch.xpack.monitoring.action.MonitoringBulkRequestBuilder, org.elasticsearch.rest.RestChannel)"}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5XlE5KvRrfbNOpt-JVgrOAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Setting.getRaw(org.elasticsearch.common.settings.Settings)", "offset": 1}, "line": {"number": 535}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UzpT8KmlTneCrZW0Xa3m6AAAAAAAAABM"}} +{"Stackframe": {"file": {"name": "DocumentMapperParser.java"}, "function": {"name": "org.elasticsearch.index.mapper.DocumentMapper org.elasticsearch.index.mapper.DocumentMapperParser.parse(java.lang.String, java.util.Map, java.lang.String)", "offset": 15}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjMg0"}} +{"Stackframe": {"function": {"name": "__dev_queue_xmit"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "D8h50WvRJdBg-tXDetFXDwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.BooleanWeight.scorer(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 507}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iSUtuDFidZ_ArB9M-KYzuwAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.finish()", "offset": 10}, "line": {"number": 976}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RoLIlcLUqj5vIEU93Jo_ggAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "FileRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.file.FileRealm.doAuthenticate(org.elasticsearch.xpack.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B9zspJB6xk58idQOc2k5WQAAAAAAAAEJ"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.parseMediumName(int)", "offset": 35}, "line": {"number": 1797}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aDG3558gasz8z0RSX2ge7QAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.translog.TranslogStats org.elasticsearch.index.engine.InternalEngine.getTranslogStats()"}, "line": {"number": 585}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Cp-nNUtRpbAQiql5pm4_xwAAAAAAAABd"}} +{"Stackframe": {"file": {"name": "IndexLifecycleService.java"}, "function": {"name": "void org.elasticsearch.xpack.ilm.IndexLifecycleService.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 19}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "r204BOTVe60P3BYaQ9TcWgAAAAAAAACs"}} +{"Stackframe": {"file": {"name": "SocketChannelImpl.java"}, "function": {"name": "int sun.nio.ch.SocketChannelImpl.write(java.nio.ByteBuffer)", "offset": 13}, "line": {"number": 471}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N-_9EG7uxCaj5t6h7NDJwgAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "CopyOnWriteHashMap.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.collect.CopyOnWriteHashMap.get(java.lang.Object)", "offset": 3}, "line": {"number": 482}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AFcerkg-eI_i2lYMD8P3bAAAAAAAAABz"}} +{"Stackframe": {"file": {"name": "Netty4HttpPipeliningHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpPipeliningHandler.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 6}, "line": {"number": 59}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u5vAXtVp9d4wvRuocarrCAAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel)"}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Q0ZhGVGRXyXDgoFbVxRbBAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "java.nio.file.Path[] org.elasticsearch.watcher.FileWatcher$FileObserver.listFiles()"}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK"}} +{"Stackframe": {"function": {"name": "vtable chunks"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACe"}} +{"Stackframe": {"file": {"name": "Netty4MessageChannelHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 8}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$resolveAuthorizationInfo$0(org.elasticsearch.action.ActionListener, org.elasticsearch.core.Tuple)"}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "g8ia7_SjtnnoFsx8t6EVmgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "void java.util.Collections$2.forEachRemaining(java.util.function.Consumer)"}, "line": {"number": 4828}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M5dg018SyR5wq8ziifZ2mQAAAAAAAACD"}} +{"Stackframe": {"file": {"name": "GatewayMetaState.java"}, "function": {"name": "void org.elasticsearch.gateway.GatewayMetaState$LucenePersistedState.setLastAcceptedState(org.elasticsearch.cluster.ClusterState)", "offset": 11}, "line": {"number": 534}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Q-0CdzIUPjuUjymJjdFwdwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.elasticsearch.index.store.ByteSizeCachingDirectory.createTempOutput(java.lang.String, java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OWoia3OO91L6Q6k2Ypn2XgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "boolean java.nio.file.Files.exists(java.nio.file.Path, java.nio.file.LinkOption[])", "offset": 3}, "line": {"number": 2514}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6WzOxn3OKFhpMveMHAeqDAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.coordination.Coordinator$$Lambda$4225+0x00000008018924a8.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, java.lang.Throwable)", "offset": 5}, "line": {"number": 379}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OcvpACJQxltSlyM67qOSuAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "HttpContentEncoder.java"}, "function": {"name": "boolean io.netty.handler.codec.http.HttpContentEncoder.encodeContent(io.netty.handler.codec.http.HttpContent, java.util.List)", "offset": 2}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LBpgfKrDQ3BzHNu217B1mQAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.transport.TcpTransport.buildMessage(long, byte, org.elasticsearch.Version, org.elasticsearch.transport.TransportMessage, org.elasticsearch.common.io.stream.StreamOutput, org.elasticsearch.common.io.stream.ReleasableBytesStreamOutput)", "offset": 6}, "line": {"number": 1243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "s_5kioXYxGzY-kcJkrkH2gAAAAAAAAAt"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener.completeWith(org.elasticsearch.action.ActionListener, org.elasticsearch.common.CheckedSupplier)", "offset": 11}, "line": {"number": 510}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$5612+0x0000000801ab3298.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "oTNupbAZc4qBrZLU_h-fogAAAAAAAABY"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequest(org.elasticsearch.cluster.node.DiscoveryNode, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 12}, "line": {"number": 732}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hve4jX92AzYM2N-JeQNG2QAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer.writeBlob(java.lang.String, boolean, boolean, org.elasticsearch.core.CheckedConsumer)", "offset": 51}, "line": {"number": 191}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "u5BSm7q6egWp1CRhuqTyhgAAAAAAAAF3"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "org.elasticsearch.cluster.metadata.Metadata org.elasticsearch.snapshots.SnapshotsService.metadataForSnapshot(org.elasticsearch.cluster.SnapshotsInProgress$Entry, org.elasticsearch.cluster.metadata.Metadata)", "offset": 38}, "line": {"number": 1336}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IP-0ehyB4mH8RoHXfGwsRgAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase$$Lambda$6618+0x0000000801d76ca8.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pSIXlNYnJYwCILAJFTEzSwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TransportNodesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation(org.elasticsearch.action.support.nodes.BaseNodeRequest, org.elasticsearch.tasks.Task)"}, "line": {"number": 31}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dixHDYyEJIjpNVPvFY6R6QAAAAAAAAC1"}} +{"Stackframe": {"file": {"name": "MultiTermsEnum.java"}, "function": {"name": "org.apache.lucene.index.PostingsEnum org.apache.lucene.index.MultiTermsEnum.postings(org.apache.lucene.index.PostingsEnum, int)", "offset": 19}, "line": {"number": 359}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uz4QUsA93SK0g2TjTqCP9gAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile$$Lambda$5383+0x0000000801aa9208.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IHitom53T4ie1rkBiA8y6gAAAAAAAACy"}} +{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "void org.elasticsearch.cluster.DiffableUtils$MapDiff.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 13}, "line": {"number": 447}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_HosPUkm1pBrBKmzlvLxfAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.map()"}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uAPSket1RIeLt6v2inqVqwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ChannelActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.ChannelActionListener.lambda$onResponse$0(org.elasticsearch.transport.TransportResponse, org.elasticsearch.action.support.ChannelActionListener)"}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "67ZApSKF_tBH-bAhOXBNxAAAAAAAAAHe"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.startCommit(org.apache.lucene.index.SegmentInfos)", "offset": 70}, "line": {"number": 5099}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BPGrhEymdtYQNz2pzn2GeAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ChannelDuplexHandler.java"}, "function": {"name": "void io.netty.channel.ChannelDuplexHandler.flush(io.netty.channel.ChannelHandlerContext)"}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P4oX225NEq46guEgQcTvqAAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "SearchResponse.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.action.search.SearchResponse.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 1}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h9KApxIztAVSR1ja67Q3vQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "TransportIndicesStatsAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation(org.elasticsearch.action.admin.indices.stats.IndicesStatsRequest, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionListener)"}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "45tdflDdpQ8_sS3AcLhDvAAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "TransformScheduler.java"}, "function": {"name": "void org.elasticsearch.xpack.transform.transforms.scheduling.TransformScheduler.processScheduledTasks()", "offset": 8}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cPTHQ3hobU3S_WVNcs_o3QAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "CodecReader.java"}, "function": {"name": "long org.apache.lucene.index.CodecReader.ramBytesUsed()", "offset": 3}, "line": {"number": 303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "L9OdW1GzSEWVanMPfByr5wAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkRead(java.lang.String)"}, "line": {"number": 888}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JjiG_BroZFP40tpmv2LaAQAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "sun.security.ssl.Plaintext sun.security.ssl.SSLEngineImpl.decode(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)"}, "line": {"number": 736}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DbGTcOBcDc6PQvK_yBwTrwAAAAAAAADK"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.computeIfAbsent(java.lang.Object, java.util.function.Function)", "offset": 31}, "line": {"number": 1228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "G-RfLwuKKRlgO4Dk5t-MPQAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "Queries.java"}, "function": {"name": "org.apache.lucene.search.Query org.elasticsearch.common.lucene.search.Queries.newNestedFilter()"}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x8zvO9Lm8TmxXMHsFKQ8TwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.shard.IndexShard.acquireIndexCommitForSnapshot()", "offset": 3}, "line": {"number": 1260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3Cqr4IYWZNFEOAT7GHij5QAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$6486+0x0000000801cfe438.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_dVFF8yOMJrHrd13Z_YwqQAAAAAAAAER"}} +{"Stackframe": {"file": {"name": "GlobalOrdinalsStringTermsAggregator.java"}, "function": {"name": "org.elasticsearch.search.aggregations.InternalAggregation org.elasticsearch.search.aggregations.bucket.terms.GlobalOrdinalsStringTermsAggregator.buildAggregation(long)", "offset": 14}, "line": {"number": 200}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV"}} +{"Stackframe": {"function": {"name": "audit_filter_syscall.constprop.19"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kjX67_WPwwjOmve4ZUSb3AAAAAAAAAF8"}} +{"Stackframe": {"file": {"name": "HttpURLConnection.java"}, "function": {"name": "void sun.net.www.protocol.http.HttpURLConnection.plainConnect0()", "offset": 66}, "line": {"number": 1241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FeTq3grQxZLpQxyGC-4wQQAAAAAAAABF"}} +{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "void co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.onEvent(co.elastic.apm.agent.report.ReportingEvent, long, boolean)", "offset": 9}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "42z5TUZVQMx41Jhs9inuSgAAAAAAAAAq"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "int io.netty.handler.ssl.SslHandler.unwrap(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, int, int)", "offset": 9}, "line": {"number": 1372}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4X1D0bE8dXWnBHefwzL1KgAAAAAAAACM"}} +{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "int sun.nio.ch.FileChannelImpl.write(java.nio.ByteBuffer)", "offset": 14}, "line": {"number": 285}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PdntB36p_DeKmNIFQmfwvQAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "org.elasticsearch.index.mapper.Mapper org.elasticsearch.index.mapper.DocumentParser.getMapper(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, java.lang.String[])", "offset": 2}, "line": {"number": 937}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lBCEtJpnWxH9YJv8ASXFIAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.SingleThreadEventExecutor.execute(java.lang.Runnable)"}, "line": {"number": 817}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "snYWO52KOY41wuNB8sr7sAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "ChunkedBlobOutputStream.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChunkedBlobOutputStream.write(byte[], int, int)"}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iAgP1DBH7Z9OPzvK7kQabQAAAAAAAAA3"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.callDecode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 18}, "line": {"number": 468}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "B1lRvacwBBYy0dU8osocsQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FilterDirectoryReader.java"}, "function": {"name": "boolean org.apache.lucene.index.FilterDirectoryReader.isCurrent()"}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jwKpyuFrSzUTCbnZ9EFuiQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ClusterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterService.submitStateUpdateTasks(java.lang.String, java.util.Map, org.elasticsearch.cluster.ClusterStateTaskConfig, org.elasticsearch.cluster.ClusterStateTaskExecutor)"}, "line": {"number": 290}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MzoxeJdfOW5Uia5TsooNmQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncPrimaryAction$$Lambda$7472+0x0000000801f350d8.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4oDbmTWkgq5vmj9DqDhsSgAAAAAAAADt"}} +{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "java.util.Set org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$WildcardExpressionResolver.expand(org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$Context, org.elasticsearch.cluster.metadata.IndexMetadata$State, java.util.Map, java.lang.String, boolean)", "offset": 21}, "line": {"number": 1116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAADr"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 25}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "T8--SMHVGcooXsfsVElY-wAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "void java.util.Collections.sort(java.util.List, java.util.Comparator)"}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hvoLs_S85r0RS2Fhd-3zRQAAAAAAAABX"}} +{"Stackframe": {"file": {"name": "Builder.java"}, "function": {"name": "void org.apache.lucene.util.fst.Builder.(org.apache.lucene.util.fst.FST$INPUT_TYPE, int, int, boolean, boolean, int, org.apache.lucene.util.fst.Outputs, boolean, int)", "offset": 93}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DoHlZdzBUb9gYvYKOpEkpQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateListeners(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder)"}, "line": {"number": 545}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "V0dDfKfk8_0OrffeLu2lkwAAAAAAAAGI"}} +{"Stackframe": {"file": {"name": "OrdinalMap.java"}, "function": {"name": "void org.apache.lucene.index.OrdinalMap.(org.apache.lucene.index.IndexReader$CacheKey, org.apache.lucene.index.TermsEnum[], org.apache.lucene.index.OrdinalMap$SegmentMap, float)", "offset": 90}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y9uy0jT_olZW6YV4k5pWhwAAAAAAAACm"}} +{"Stackframe": {"file": {"name": "MultiDocValues.java"}, "function": {"name": "void org.apache.lucene.index.MultiDocValues$OrdinalMap.(java.lang.Object, org.apache.lucene.index.TermsEnum[], org.apache.lucene.index.MultiDocValues$OrdinalMap$SegmentMap, float)", "offset": 25}, "line": {"number": 554}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cw2Z8udT9L2DdqGSTwVYJAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "AuthorizationUtils.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationUtils$AsyncAuthorizer.setRunAsRoles(org.elasticsearch.xpack.core.security.authz.permission.Role)", "offset": 1}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N2l90EY7421Zg1g-1T_v1AAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "URL.java"}, "function": {"name": "void java.net.URL.(java.net.URL, java.lang.String)"}, "line": {"number": 568}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vceH6TiSzXN2gyvdQtYIIAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$3.sendRequest(long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions)"}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RcLwtzOrbCJ2S4fnMoo41AAAAAAAAAB7"}} +{"Stackframe": {"file": {"name": "PendingReplicationActions.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.PendingReplicationActions.acceptNewTrackedAllocationIds(java.util.Set)", "offset": 10}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4D4Asvstzj0kOaCsxyvrCwAAAAAAAAEK"}} +{"Stackframe": {"file": {"name": "SSLCipher.java"}, "function": {"name": "sun.security.ssl.Plaintext sun.security.ssl.SSLCipher$T13GcmReadCipherGenerator$GcmReadCipher.decrypt(byte, java.nio.ByteBuffer, byte[])", "offset": 44}, "line": {"number": 1933}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "ActorCell.scala"}, "function": {"name": "void akka.actor.ActorCell.invoke(akka.dispatch.Envelope)", "offset": 7}, "line": {"number": 547}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tP35slrlTA3DUHTsutItwgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "FilterMergePolicy.java"}, "function": {"name": "boolean org.apache.lucene.index.FilterMergePolicy.useCompoundFile(org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.MergePolicy$MergeContext)"}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "loNxquzuzn2Bq3kr01g2ngAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "StreamSpliterators.java"}, "function": {"name": "boolean java.util.stream.StreamSpliterators$WrappingSpliterator.tryAdvance(java.util.function.Consumer)", "offset": 1}, "line": {"number": 300}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mbtJBLFirmHoLdxa0M274QAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "TrackingDirectoryWrapper.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.TrackingDirectoryWrapper.createOutput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8PLzoB-u4hzDZ_WKIg8FxQAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.read(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 3}, "line": {"number": 233}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TtbYTVcLyuq7OagEpbpQ-wAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "TriggeredWatchStore.java"}, "function": {"name": "void org.elasticsearch.xpack.watcher.execution.TriggeredWatchStore.delete(org.elasticsearch.xpack.watcher.execution.Wid)", "offset": 3}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "afO-4k-CgwdZv49Ap83kBgAAAAAAAADS"}} +{"Stackframe": {"file": {"name": "Operations.java"}, "function": {"name": "org.apache.lucene.util.automaton.Automaton org.apache.lucene.util.automaton.Operations.determinize(org.apache.lucene.util.automaton.Automaton, int)", "offset": 41}, "line": {"number": 706}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fMXwmZZHoKY5ug0oBlnUxwAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "NIOFSDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.apache.lucene.store.NIOFSDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 3}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iNqwi4ZVhzOCSquNkw9jQQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "void java.util.Collections$UnmodifiableCollection$1.(java.util.Collections$UnmodifiableCollection)", "offset": 1}, "line": {"number": 1039}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WsBETJrPecSrGYvg781P3AAAAAAAAATR"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.snapshotShard(org.elasticsearch.repositories.SnapshotShardContext)", "offset": 237}, "line": {"number": 2814}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aiJNholFfohVF-0vnVFI8QAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "StoredFieldLoader.java"}, "function": {"name": "org.elasticsearch.index.fieldvisitor.StoredFieldLoader org.elasticsearch.index.fieldvisitor.StoredFieldLoader.create(boolean, java.util.Set)"}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "INabLzAQAM62JeaJIyCWDwAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter$$Lambda$6487+0x0000000801cfe660.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EdzyCQG3P71X3W8_ToHzcQAAAAAAAABY"}} +{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 19}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Jj6ja2Wbkf1_R1a9nVWcUAAAAAAAAAEp"}} +{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.CommonStats.(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 45}, "line": {"number": 202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMt_f"}} +{"Stackframe": {"function": {"name": "__x64_sys_epoll_ctl"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VY8isU5x9BO-Wo5ffXRMDwAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$ContextRestoreResponseHandler.handleResponse(org.elasticsearch.transport.TransportResponse)", "offset": 4}, "line": {"number": 1471}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kAK5h3GjJdDJlMjhyg-mfgAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "ApplicationHandler.java"}, "function": {"name": "void org.glassfish.jersey.server.ApplicationHandler.handle(org.glassfish.jersey.server.ContainerRequest)", "offset": 1}, "line": {"number": 684}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0"}} +{"Stackframe": {"file": {"name": "TransportNodesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation(org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction$NodeStatsRequest)", "offset": 2}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w2tPevxkIsQ5_AYdA12M_AAAAAAAAADx"}} +{"Stackframe": {"file": {"name": "ClusterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterService.runTasks(org.elasticsearch.cluster.service.ClusterService$TaskInputs)", "offset": 31}, "line": {"number": 587}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "A8Qhsp8jYj9bPQN6UkmXAAAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "void java.util.Arrays.sort(java.lang.Object[], java.util.Comparator)", "offset": 6}, "line": {"number": 1438}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBJj"}} +{"Stackframe": {"function": {"name": "futex_wait_queue_me"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "twASLq5QV6PtFM2KeIje5wAAAAAAAADM"}} +{"Stackframe": {"file": {"name": "DiscoveryNode.java"}, "function": {"name": "void org.elasticsearch.cluster.node.DiscoveryNode.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 16}, "line": {"number": 347}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "t5RNhmUkms0myDPI3-3ICQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TcpTransportChannel.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransportChannel.sendResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 61}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "76ZQdAl2euBIN6YcqNHYDQAAAAAAAACQ"}} +{"Stackframe": {"file": {"name": "TransportMasterNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.master.TransportMasterNodeAction$AsyncSingleAction.doStart(org.elasticsearch.cluster.ClusterState)", "offset": 33}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UnYc51PyOPYnuy2V8LJr8gAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "AWSRequestMetricsFullSupport.java"}, "function": {"name": "void com.amazonaws.util.AWSRequestMetricsFullSupport.addProperty(com.amazonaws.metrics.MetricType, java.lang.Object)"}, "line": {"number": 184}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fEKUJczxV0wWF5_qwXHZAQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.util.Set org.elasticsearch.common.settings.Settings.keySet()"}, "line": {"number": 708}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Gs0tfvIN9I1zwkPyuCYq4AAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.map(java.util.Map)", "offset": 6}, "line": {"number": 872}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "N-NwiwSTD5lS63VEsAdy5AAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "java.util.Iterator org.apache.lucene.codecs.DocValuesConsumer$10.iterator()"}, "line": {"number": 1013}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Exception.java"}, "function": {"name": "void java.lang.Exception.(java.lang.String)"}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dARkiftRl5NVojcjp193jAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator$$Lambda$6490+0x0000000801cfecf8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TJokhObG_7GMDQXtJjQRzgAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "TransportClusterStatsAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction$MetadataStatsCache.refresh(org.elasticsearch.cluster.metadata.Metadata, java.lang.Runnable, org.elasticsearch.action.ActionListener)"}, "line": {"number": 217}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M9mknNUv7hMcc_nUxX8nQwAAAAAAAAAh"}} +{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.index.SoftDeletesRetentionMergePolicy.getScorer(org.apache.lucene.search.Query, org.apache.lucene.index.CodecReader)", "offset": 3}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zRzuRhIAkf1N_VLE9pJH1gAAAAAAAAEV"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.MergePolicy$MergeSpecification org.apache.lucene.index.IndexWriter.updatePendingMerges(org.apache.lucene.index.MergePolicy, org.apache.lucene.index.MergeTrigger, int)", "offset": 45}, "line": {"number": 2349}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "i9268z8Bj-PuuuEgGqrp6QAAAAAAAAA8"}} +{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport$NodeChannels.sendRequest(long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions)", "offset": 4}, "line": {"number": 286}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KJ6ILPQkLRzsL_qCZRHYPAAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.refresh(java.lang.String)", "offset": 2}, "line": {"number": 909}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iS_hSEqT2yRZcvG-jikx2QAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "IngestService.java"}, "function": {"name": "void org.elasticsearch.ingest.IngestService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 9}, "line": {"number": 900}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eVGivIvclCl6AIXKUi_BZwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotsService.access$900(org.elasticsearch.snapshots.SnapshotsService, org.elasticsearch.cluster.SnapshotsInProgress$Entry, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.repositories.RepositoryData)"}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ8bZ"}} +{"Stackframe": {"function": {"name": "__x64_sys_madvise"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h-Z3fgEnHEUep9LySFKv_wAAAAAAAAAw"}} +{"Stackframe": {"file": {"name": "MultiTermsEnum.java"}, "function": {"name": "org.apache.lucene.util.BytesRef org.apache.lucene.index.MultiTermsEnum.next()", "offset": 14}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAK6uC"}} +{"Stackframe": {"function": {"name": "get_mem_cgroup_from_mm"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "414vwxwFz0HV2Ku4dzYYowAAAAAAAABU"}} +{"Stackframe": {"file": {"name": "Lucene90CompoundFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90CompoundFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 10}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qlujNL7db72ZwWHkSPq1iAAAAAAAAAB0"}} +{"Stackframe": {"file": {"name": "NodeService.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.node.NodeService.stats(org.elasticsearch.action.admin.indices.stats.CommonStatsFlags, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean)", "offset": 6}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iuglTU1ZiCYQ-BlYCftcbAAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.acquirePrimaryOperationPermit(org.elasticsearch.action.ActionListener, java.lang.String, java.lang.Object, boolean)", "offset": 3}, "line": {"number": 3409}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QSkoY5477iCGGkJLCg3twgAAAAAAAACL"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.decodeJdkCompatible(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf)", "offset": 37}, "line": {"number": 1203}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aC6hbJ6KdHLEjhCg9NYQHwAAAAAAAAEt"}} +{"Stackframe": {"file": {"name": "TaskBatcher.java"}, "function": {"name": "void org.elasticsearch.cluster.service.TaskBatcher.submitTasks(java.util.List, org.elasticsearch.core.TimeValue)", "offset": 41}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RXtoxChZi6om4tFzbI5m2QAAAAAAAACP"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap.getNode(int, java.lang.Object)", "offset": 12}, "line": {"number": 580}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dkL5PpvJ6DOYifdu5jPpNQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ReduceOps.java"}, "function": {"name": "void java.util.stream.ReduceOps$3ReducingSink.accept(java.lang.Object)"}, "line": {"number": 169}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LDeEdPdDzPRz2LdHTbcdewAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "int org.elasticsearch.common.io.stream.StreamInput.readVInt()"}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Cd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 25}, "line": {"number": 200}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CavekK73u-OfLwSzLyhvhAAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ChannelOutputStream.java"}, "function": {"name": "void sun.nio.ch.ChannelOutputStream.writeFullyImpl(java.nio.channels.WritableByteChannel, java.nio.ByteBuffer)", "offset": 1}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WsCQmTSDw0k0qcC-8oiYqgAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "int java.lang.String.hashCode()"}, "line": {"number": 2348}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "okBlt5oedmnS64oAufr-2wAAAAAAAACv"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.xcontent.support.AbstractXContentParser.readValueUnsafe(org.elasticsearch.xcontent.XContentParser$Token, org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier)", "offset": 14}, "line": {"number": 397}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Mi67eTmK5iEsm8KCuQ1K2QAAAAAAAAAf"}} +{"Stackframe": {"file": {"name": "Proxy.java"}, "function": {"name": "java.lang.Object java.lang.reflect.Proxy.newProxyInstance(java.lang.ClassLoader, java.lang.Class[], java.lang.reflect.InvocationHandler)", "offset": 12}, "line": {"number": 1039}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hpS1QtdrBQjGg-LCbfqeSAAAAAAAAFcz"}} +{"Stackframe": {"function": {"name": "br_netif_receive_skb"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JH99K21FKguMSo-z9QlQVAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "SnapshotsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotsService.access$4700(org.elasticsearch.snapshots.SnapshotsService, org.elasticsearch.snapshots.SnapshotsService$ShardSnapshotUpdate, org.elasticsearch.action.ActionListener)"}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pbU3Qdf_dnKtA7qk05wJcwAAAAAAAABu"}} +{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendLocalRequest(long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions)", "offset": 11}, "line": {"number": 1037}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PvkNrqlBZGfa7AFgtE4r5QAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "IndexAbstraction.java"}, "function": {"name": "boolean org.elasticsearch.cluster.metadata.IndexAbstraction$DataStream.isSystem()"}, "line": {"number": 451}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pGv-va4FOh2AYYkCjbquJQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "BulkOperationPacked.java"}, "function": {"name": "void org.apache.lucene.util.packed.BulkOperationPacked.encode(long[], int, long[], int, int)"}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AeMMNq3qkkktMneiq8NAsgAAAAAAAAB8"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "int com.fasterxml.jackson.core.json.UTF8StreamJsonParser._skipWS()", "offset": 19}, "line": {"number": 2891}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "of074LNFyb0WZDScNz1NWwAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObject(org.elasticsearch.index.mapper.ParseContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String)", "offset": 5}, "line": {"number": 484}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "k3HyWSdTGgne1xIId1mIvAAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter$EventQueue.processEventsInternal()", "offset": 3}, "line": {"number": 354}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "d-b4llxAUpelmPQqepDu8QAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ProcessService.java"}, "function": {"name": "java.lang.Object org.elasticsearch.monitor.process.ProcessService$ProcessStatsCache.refresh()"}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7NQKJ0eHP8J4hISaRMWwxQAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.xcontent.XContent, java.io.InputStream, boolean)", "offset": 2}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bjqwTnd-bxWdNS1Q-ESiOwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.CommonStats.add(org.elasticsearch.action.admin.indices.stats.CommonStats)"}, "line": {"number": 292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD4i"}} +{"Stackframe": {"function": {"name": "exit_to_usermode_loop"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5LM1UONk0pxINez5h5E_DAAAAAAAAABF"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$authorizeIndexAction$4(org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, java.util.Map, org.elasticsearch.xpack.core.security.authz.ResolvedIndices)", "offset": 7}, "line": {"number": 335}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTga"}} +{"Stackframe": {"function": {"name": "__d_path"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DVtYIioEzQbMnonclHMdUAAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "AbstractBytesReference.java"}, "function": {"name": "int org.elasticsearch.common.bytes.AbstractBytesReference.getInt(int)"}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j9mTsmxGfoQF9A4glGVy8AAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "LocalExporter.java"}, "function": {"name": "org.elasticsearch.xpack.monitoring.exporter.local.LocalBulk org.elasticsearch.xpack.monitoring.exporter.local.LocalExporter.openBulk()", "offset": 3}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "CfIO15i68EO1AMNsYlotCQAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "IndicesQueryCache.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.elasticsearch.indices.IndicesQueryCache$CachingWeightWrapper.scorerSupplier(org.apache.lucene.index.LeafReaderContext)", "offset": 1}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cn_0Dt8F1JGwazqn6MVOnAAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AbstractEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)"}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "U2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun()", "offset": 1}, "line": {"number": 634}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TyfyRXFTeqgLafdATMChEAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "S3AbortableInputStream.java"}, "function": {"name": "int com.amazonaws.services.s3.internal.S3AbortableInputStream.read(byte[], int, int)"}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Y3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.refresh(java.lang.String, org.elasticsearch.index.engine.Engine$SearcherScope, boolean)", "offset": 12}, "line": {"number": 1888}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bRKQfOYSaUm1OQVxnMmeSAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AsciiString.java"}, "function": {"name": "int io.netty.util.AsciiString$1.hashCode(java.lang.Object)"}, "line": {"number": 1354}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IUdDMKhPw4MmNQ9Fq7qCgQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ObjectName.java"}, "function": {"name": "void javax.management.ObjectName.(java.lang.String)", "offset": 1008}, "line": {"number": 1405}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cLj3iX2dJ32V3fV3D5cJrwAAAAAAAACA"}} +{"Stackframe": {"file": {"name": "URI.java"}, "function": {"name": "int java.net.URI$Parser.parseAuthority(int, int)", "offset": 26}, "line": {"number": 3269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UT1CLo52HplxPz6JwcoqCQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "PipelineConfiguration.java"}, "function": {"name": "java.util.Map org.elasticsearch.ingest.PipelineConfiguration.getConfigAsMap()"}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "x6-7WFAhTzQvsnUGZiSFsQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 2}, "line": {"number": 489}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TL3g2AvypQlrYJuyDrGudwAAAAAAAACo"}} +{"Stackframe": {"file": {"name": "AbstractSpan.java"}, "function": {"name": "void co.elastic.apm.agent.impl.transaction.AbstractSpan.(co.elastic.apm.agent.impl.ElasticApmTracer)", "offset": 160}, "line": {"number": 218}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKd_W"}} +{"Stackframe": {"function": {"name": "kmem_cache_free"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vqa2qJ2cwRBJMXL7-qTksgAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer.writeBlob(java.lang.String, boolean, boolean, org.elasticsearch.core.CheckedConsumer)", "offset": 72}, "line": {"number": 211}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "c5FnjIKIwlj5G_2yTSeORAAAAAAAAACn"}} +{"Stackframe": {"file": {"name": "AsyncTwoPhaseIndexer.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.indexing.AsyncTwoPhaseIndexer.maybeTriggerAsyncJob(long)", "offset": 23}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Pc_BexFq94TuMog9IsXVUwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$1.onResponse(java.lang.Object)"}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PVeXT5y9m4gxI4iElfX0iAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "void java.lang.String.(byte[], java.nio.charset.Charset)"}, "line": {"number": 515}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "kJKoeJFyHesAY0rD9olU2wAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "ParserImpl.java"}, "function": {"name": "org.yaml.snakeyaml.events.Event org.yaml.snakeyaml.parser.ParserImpl.peekEvent()", "offset": 2}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "06nqjE-VI9IYqWvJ2OibVQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer$$Lambda$6886+0x0000000801e01930.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aiYAeaOefGgb8Ek1UStS_gAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "StreamSupport.java"}, "function": {"name": "java.util.stream.Stream java.util.stream.StreamSupport.stream(java.util.Spliterator, boolean)", "offset": 2}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "l24TKPxY5vj1MuNBElA0bwAAAAAAAADK"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.computeIfAbsent(java.lang.Object, java.util.function.Function)", "offset": 31}, "line": {"number": 1220}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jjxn4cl8bBaRqPgS5F0n8gAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "int org.apache.lucene.codecs.compressing.LZ4.decompress(org.apache.lucene.store.DataInput, int, byte[], int)"}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.lambda$executeQueryPhase$2(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)"}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UEXC4NlghFpy0tbo2JE_ZQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "EnumMap.java"}, "function": {"name": "java.lang.Enum[] java.util.EnumMap.getKeyUniverse(java.lang.Class)", "offset": 1}, "line": {"number": 750}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qlBu--gn4lPakFOOUFVXUAAAAAAAAAKu"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain$PerField.invert(int, org.apache.lucene.index.IndexableField, boolean)", "offset": 79}, "line": {"number": 974}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mk3P52OFEqt1TZqklgylngAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "RuntimeException.java"}, "function": {"name": "void java.lang.RuntimeException.(java.lang.String)"}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene80.IndexedDISI.nextDoc()"}, "line": {"number": 459}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XgVcJKYEqhGaSbBYfKBXOwAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.s3.S3BlobContainer$$Lambda$6883+0x0000000800f53c98.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yHKRtrk4B3OfLIHnkHARmgAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor.sendWithUser(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportInterceptor$AsyncSender, boolean)", "offset": 8}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "30E-Hz7p1XPeKvXBRCtMFQAAAAAAAABS"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.performOnReplicas(org.elasticsearch.action.support.replication.ReplicationRequest, long, long, org.elasticsearch.index.shard.ReplicationGroup, org.elasticsearch.action.support.replication.PendingReplicationActions)", "offset": 6}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DHsnAoMYJiyf1W11jJ-_lgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "InboundDecoder.java"}, "function": {"name": "int org.elasticsearch.transport.InboundDecoder.internalDecode(org.elasticsearch.common.bytes.ReleasableBytesReference, java.util.function.Consumer)", "offset": 1}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "63DVRx-qMeOwKVLMGcrFlgAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeNamedWriteableList(java.util.List)", "offset": 2}, "line": {"number": 935}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo"}} +{"Stackframe": {"function": {"name": "walk_component"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aWccVudBBQC-rGrSZXIWwAAAAAAAAABb"}} +{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "void io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()", "offset": 28}, "line": {"number": 938}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UIi5ycXqqmfLS1eYAMvuZAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "org.elasticsearch.cluster.metadata.IndexMetadata org.elasticsearch.cluster.metadata.Metadata.index(org.elasticsearch.index.Index)"}, "line": {"number": 710}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7Usw01CrpzkfVMMyw5vCegAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain$$Lambda$6965+0x0000000801db3040.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Eq50LgqGqKjaa52J2nxgrwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$UnmodifiableCollection$1.hasNext()"}, "line": {"number": 1048}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UsmvCPPx2ySTElzzHPAmRQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "HttpContentEncoder.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpContentEncoder.encodeFullResponse(io.netty.handler.codec.http.HttpResponse, io.netty.handler.codec.http.HttpContent, java.util.List)", "offset": 1}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ObjectMapper.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.index.mapper.ObjectMapper.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)"}, "line": {"number": 506}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOBI"}} +{"Stackframe": {"function": {"name": "process_backlog"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zw0wKeXSScV9zb0GbnSg3gAAAAAAAAD4"}} +{"Stackframe": {"file": {"name": "MapperService.java"}, "function": {"name": "java.util.Map org.elasticsearch.index.mapper.MapperService.internalMerge(java.util.Map, org.elasticsearch.index.mapper.MapperService$MergeReason, boolean)", "offset": 40}, "line": {"number": 329}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QDbvOcjOvO39dDe2ob7E_wAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "org.elasticsearch.action.ActionFuture org.elasticsearch.client.support.AbstractClient.delete(org.elasticsearch.action.delete.DeleteRequest)"}, "line": {"number": 460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QQdm725dN4gfQaI1Q2V-1wAAAAAAAABW"}} +{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "void org.elasticsearch.cluster.DiffableUtils$MapDiff.(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)", "offset": 8}, "line": {"number": 448}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FedFnYQW8bHf16nVrC3eNgAAAAAAAAGo"}} +{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 102}, "line": {"number": 370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IdkGKdrrMvbrgpaqyJ-rigAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "DocumentMapper.java"}, "function": {"name": "org.elasticsearch.index.mapper.ParsedDocument org.elasticsearch.index.mapper.DocumentMapper.parse(org.elasticsearch.index.mapper.SourceToParse)"}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "z4wTvbjnVpC6Mwza8ndvzwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void java.util.stream.Collectors$$Lambda$22+0x800000039.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NZYCsa4yDkFMR_jCd7ikYwAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "BigByteArray.java"}, "function": {"name": "void org.elasticsearch.common.util.BigByteArray.resize(long)", "offset": 5}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FbQyH2luUdjXmVcHyvzWswAAAAAAAABq"}} +{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "java.util.Collection org.elasticsearch.cluster.metadata.IndexNameExpressionResolver.resolveExpressions(org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$Context, java.lang.String[])", "offset": 15}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FDzOaMgNZVfiW69qEuWEzQAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "WorkerBulkByScrollTaskState.java"}, "function": {"name": "void org.elasticsearch.index.reindex.WorkerBulkByScrollTaskState$DelayedPrepareBulkRequest.(org.elasticsearch.index.reindex.WorkerBulkByScrollTaskState, org.elasticsearch.threadpool.ThreadPool, float, org.elasticsearch.core.TimeValue, java.lang.Runnable)", "offset": 4}, "line": {"number": 252}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "uivmFtqkx0mSDLjpV5jf4gAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.store.ByteSizeCachingDirectory$1.refresh()"}, "line": {"number": 61}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bxC2U9ct9MOP9GdG6riRpwAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "BoolQueryBuilder.java"}, "function": {"name": "org.apache.lucene.search.Query org.elasticsearch.index.query.BoolQueryBuilder.doToQuery(org.elasticsearch.index.query.SearchExecutionContext)", "offset": 1}, "line": {"number": 315}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC3tR"}} +{"Stackframe": {"function": {"name": "wq_barrier_func"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X31knMc676bIIEUjaHa0MQAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesConsumer org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.getInstance(org.apache.lucene.index.FieldInfo)"}, "line": {"number": 162}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TaNUUQ8ZfJlbsPC7iaqLvwAAAAAAAABv"}} +{"Stackframe": {"file": {"name": "JvmStats.java"}, "function": {"name": "org.elasticsearch.monitor.jvm.JvmStats org.elasticsearch.monitor.jvm.JvmStats.jvmStats()", "offset": 7}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YcNF65AZE1_nTmaTA5AhDwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "AbstractTokenFilterFactory.java"}, "function": {"name": "void org.elasticsearch.index.analysis.AbstractTokenFilterFactory.(org.elasticsearch.index.IndexSettings, java.lang.String, org.elasticsearch.common.settings.Settings)"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8ucXOrXeHAcDUyhmau8MtAAAAAAAAAAi"}} +{"Stackframe": {"file": {"name": "BytesRef.java"}, "function": {"name": "int org.apache.lucene.util.BytesRef.compareTo(org.apache.lucene.util.BytesRef)"}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5X0zV-w-N_dQTgCxH2ipLgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "PositionTrackingOutputStreamStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.PositionTrackingOutputStreamStreamOutput.writeBytes(byte[], int, int)"}, "line": {"number": 30}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "krVEwLAU-wiMDzMAI3XZBgAAAAAAAABO"}} +{"Stackframe": {"file": {"name": "CombinedDeletionPolicy.java"}, "function": {"name": "org.apache.lucene.index.IndexCommit org.elasticsearch.index.engine.CombinedDeletionPolicy.acquireIndexCommit(boolean)", "offset": 3}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wD7qCDk3lqH0hpTFDQk1YQAAAAAAAABY"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readMapEntries(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier, java.util.Map)", "offset": 7}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-DPNVL1TcvLrgQ4V1LL_zwAAAAAAAAHX"}} +{"Stackframe": {"file": {"name": "URL.java"}, "function": {"name": "void java.net.URL.(java.net.URL, java.lang.String, java.net.URLStreamHandler)", "offset": 482}, "line": {"number": 694}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nxv9fnyzQgRP5y-sCtMEGwAAAAAAAAA4"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 3}, "line": {"number": 631}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MO5u4HKcW5-RczfdOQCIJAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient$IndicesAdmin.execute(org.elasticsearch.action.Action, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 1256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MkPOQzkxpTZfvC1z0rAMgAAAAAAAAACH"}} +{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.DocumentsWriter.doFlush(org.apache.lucene.index.DocumentsWriterPerThread)", "offset": 37}, "line": {"number": 493}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ef3xDRSbmqFL7ZNK76sYsgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "boolean org.elasticsearch.rest.RestController.handleNoHandlerFound(java.lang.String, org.elasticsearch.rest.RestRequest$Method, java.lang.String, org.elasticsearch.rest.RestChannel)"}, "line": {"number": 335}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-esrZcmh9SBGSSEFHAV1fQAAAAAAAABx"}} +{"Stackframe": {"file": {"name": "Lucene87StoredFieldsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.StoredFieldsWriter org.apache.lucene.codecs.lucene87.Lucene87StoredFieldsFormat.fieldsWriter(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 5}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADH17"}} +{"Stackframe": {"function": {"name": "smpboot_thread_fn"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GSexVx96EzZNehBIzgm7mQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "LogManager.java"}, "function": {"name": "org.apache.logging.log4j.Logger org.apache.logging.log4j.LogManager.getLogger(java.lang.String)"}, "line": {"number": 648}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "q7foCyXWFgPi02TtJD0XiQAAAAAAAACA"}} +{"Stackframe": {"file": {"name": "DatabaseNodeService.java"}, "function": {"name": "void org.elasticsearch.ingest.geoip.DatabaseNodeService.checkDatabases(org.elasticsearch.cluster.ClusterState)", "offset": 22}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cPknbPYx0jQL0_yL-rDiBQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "TransportClusterStatsAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction$MetadataStatsCache.refresh(java.lang.Object, java.lang.Runnable, org.elasticsearch.action.ActionListener)"}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aBDyfRrCxv0GQF3elQxZKgAAAAAAAABA"}} +{"Stackframe": {"file": {"name": "S3RequestEndpointResolver.java"}, "function": {"name": "void com.amazonaws.services.s3.internal.S3RequestEndpointResolver.resolveRequestEndpoint(com.amazonaws.Request, java.lang.String)", "offset": 12}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 57}, "line": {"number": 493}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjigE"}} +{"Stackframe": {"function": {"name": "rtnetlink_rcv"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MUGOz76uheRW_JUVWNsoVwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.onResponse(java.lang.Object)"}, "line": {"number": 491}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr9"}} +{"Stackframe": {"function": {"name": "vfs_read"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3xTOsdIVWsndoiimMJHU6QAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.deleteNewFiles(java.util.Collection)"}, "line": {"number": 4965}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKey(java.nio.channels.SelectionKey, io.netty.channel.nio.AbstractNioChannel)", "offset": 46}, "line": {"number": 644}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iPPUfu9aSOA4JmX0lgUXQgAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Socket.java"}, "function": {"name": "int java.net.Socket$SocketInputStream.read(byte[], int, int)"}, "line": {"number": 976}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sojwV5c2Sh1TPlO_pjbUPAAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "BytesStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.BytesStreamOutput.writeBytes(byte[], int, int)", "offset": 10}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LO0kqCJ5sLnPx_SwGJYFEQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.channels.SeekableByteChannel sun.nio.fs.UnixFileSystemProvider.newByteChannel(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])", "offset": 4}, "line": {"number": 217}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "c0OkgT3_p45M6FsCvH3WnQAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "ProtectionDomain.java"}, "function": {"name": "boolean java.security.ProtectionDomain.implies(java.security.Permission)", "offset": 7}, "line": {"number": 325}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aD5tQt3PTji3IEVewu1DRAAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile$$Lambda$5828+0x0000000801afad38.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QunNj1oMDkHtmA3AacNPUAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.file.attribute.FileTime java.nio.file.Files.getLastModifiedTime(java.nio.file.Path, java.nio.file.LinkOption[])"}, "line": {"number": 2400}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mVg5ImyOXWtTMPsPyAoJFAAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler.lambda$new$0(org.elasticsearch.transport.BytesTransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YYCEYr-7R2KSxbtsdGMQpgAAAAAAAACb"}} +{"Stackframe": {"file": {"name": "SettingsFilter.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.SettingsFilter.filterSettings(java.lang.Iterable, org.elasticsearch.common.settings.Settings)", "offset": 14}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "2RFqiy_TIF9Ivmg849R6KQAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.processDocument(int, java.lang.Iterable)", "offset": 13}, "line": {"number": 488}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "unfj3abv23fxUBMrQGI_kgAAAAAAAAAb"}} +{"Stackframe": {"file": {"name": "MapperService.java"}, "function": {"name": "void org.elasticsearch.index.mapper.MapperService.merge(java.lang.String, java.util.Map, org.elasticsearch.index.mapper.MapperService$MergeReason)", "offset": 1}, "line": {"number": 402}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Xh8yiimhm05HS0cF9hvvxgAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.xpack.core.ilm.Phase$$Lambda$5456+0x0000000801b01680.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object, java.lang.String)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fmVqFyGK_erbPbR830tm8gAAAAAAAAAP"}} +{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateAppliers(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder)", "offset": 1}, "line": {"number": 525}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAioGp"}} +{"Stackframe": {"function": {"name": "__sys_socket"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$3.onResponse(java.lang.Void)", "offset": 7}, "line": {"number": 317}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SSqMl2M69LixRhKTb53DrgAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "MultiTermsEnum.java"}, "function": {"name": "void org.apache.lucene.index.MultiTermsEnum.pushTop()", "offset": 6}, "line": {"number": 283}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HA3TD5377NJUVWpcrnF53AAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.doHandleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 11}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ORVIxASD4wCMIrAYPIVrNQAAAAAAAABO"}} +{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.action.bulk.TransportShardBulkAction.executeIndexRequestOnReplica(org.elasticsearch.action.index.IndexRequest, org.elasticsearch.index.shard.IndexShard)", "offset": 8}, "line": {"number": 441}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "hCPcN8cA6hQoNicBlBeaEwAAAAAAAABx"}} +{"Stackframe": {"file": {"name": "BytesRefHash.java"}, "function": {"name": "boolean org.apache.lucene.util.BytesRefHash.equals(int, org.apache.lucene.util.BytesRef)", "offset": 14}, "line": {"number": 202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ3Vz"}} +{"Stackframe": {"function": {"name": "get_page_from_freelist"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ANmrmrqqJv18GWh_5HHQlgAAAAAAAAAY"}} +{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeStringField(java.lang.String, java.lang.String)", "offset": 4}, "line": {"number": 534}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "H9qHSakbha_JIFnrzuJJjwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl$1.read(byte[], int, int)"}, "line": {"number": 789}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "M_mFoif4aI0PVePpgYbumwAAAAAAAABG"}} +{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "boolean java.util.regex.Pattern$BmpCharPropertyGreedy.match(java.util.regex.Matcher, int, java.lang.CharSequence)", "offset": 9}, "line": {"number": 4341}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YldLdAhiU1Ikhg1VTxvqJwAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$writeAuthToContext$26(org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 1}, "line": {"number": 717}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iNflYZm5k2AibHnU3j0oJQAAAAAAAAB4"}} +{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "org.apache.lucene.search.DocIdSetIterator org.apache.lucene.search.ConjunctionDISI.createConjunction(java.util.List, java.util.List)", "offset": 7}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7JKnO-2DZ3QohUT7jVsYGgAAAAAAAAA9"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.common.bytes.ReleasableBytesReference org.elasticsearch.cluster.coordination.PublicationTransportHandler.serializeDiffClusterState(long, org.elasticsearch.cluster.Diff, org.elasticsearch.cluster.node.DiscoveryNode)", "offset": 12}, "line": {"number": 313}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "65LvcIAVcOP6oYJJwrlEzQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$6978+0x0000000801e9cca0.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AsYLPOMVTEJOeDxuyLY7KQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.flushBuffer()", "offset": 1}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wAR4gk273_ooOZdD1tA5fgAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer.writeBlob(java.lang.String, java.io.InputStream, long, boolean)", "offset": 1}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1t24RQWJoO3BXaJLZVT8fwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "RoutingNodes.java"}, "function": {"name": "void org.elasticsearch.cluster.routing.RoutingNodes.(org.elasticsearch.cluster.ClusterState)"}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "GY8FzW1zmT9O6Iy3KHcGZQAAAAAAAAFJ"}} +{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode$GCMDecrypt.doFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 48}, "line": {"number": 1567}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Z5"}} +{"Stackframe": {"function": {"name": "__d_lookup"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cx_5Zli6ZQBZEsnw0z8RFAAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "HashSet.java"}, "function": {"name": "void java.util.HashSet.(java.util.Collection)", "offset": 2}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0I8cAvoTemt9EvN943sckAAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "InboundDecoder.java"}, "function": {"name": "int org.elasticsearch.transport.InboundDecoder.internalDecode(org.elasticsearch.common.bytes.ReleasableBytesReference, java.util.function.Consumer)", "offset": 14}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4Nbh2qu5FSYDYvePocfslwAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", "offset": 20}, "line": {"number": 1130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Wyrs0b2Xeu1gDeFw9u_zswAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermissionCollection.implies(java.security.Permission)", "offset": 9}, "line": {"number": 1207}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "etZUbLY9KmiycxAk1S_mZQAAAAAAAAAR"}} +{"Stackframe": {"file": {"name": "DefaultHeaders.java"}, "function": {"name": "io.netty.handler.codec.Headers io.netty.handler.codec.DefaultHeaders.addObject(java.lang.Object, java.lang.Object)"}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DzuJOrgdkQNI7sXISSmdawAAAAAAAACO"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult io.netty.handler.ssl.SslHandler.wrap(io.netty.buffer.ByteBufAllocator, javax.net.ssl.SSLEngine, io.netty.buffer.ByteBuf, io.netty.buffer.ByteBuf)", "offset": 33}, "line": {"number": 1071}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0YsnzQnMKXvFIy6EpgfjkAAAAAAAAACz"}} +{"Stackframe": {"file": {"name": "BaseRestHandler.java"}, "function": {"name": "void org.elasticsearch.rest.BaseRestHandler.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient)", "offset": 23}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Rxqe_zQBj7bxcQClfMPGZwAAAAAAAAAD"}} +{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authc.support.BCrypt.checkpw(org.elasticsearch.common.settings.SecureString, java.lang.String)"}, "line": {"number": 1725}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fYzXBFRgCMAAS8V11dxuxQAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "void org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction.onScrollResponse(org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction$ScrollConsumableHitsResponse)"}, "line": {"number": 333}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EDYyx-zRWlBHMYS8RkGZ2wAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction$$Lambda$6633+0x0000000801d38aa0.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NK6q-mYZhWe1E7afoKkwiQAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.doHandleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 11}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QKRyqWZIJ5_z0G07UwBzeAAAAAAAAABS"}} +{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient)", "offset": 8}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eMHmhq4sdClgEJFzlDVUfAAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.lambda$wrapPrimaryOperationPermitListener$23(org.elasticsearch.action.ActionListener, org.elasticsearch.core.Releasable)", "offset": 1}, "line": {"number": 3438}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "mA7AArQeycrrHCsrngX3LwAAAAAAAABq"}} +{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct.writeTo(org.elasticsearch.common.io.stream.StreamOutput, java.util.Map)", "offset": 10}, "line": {"number": 495}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "brZOaNtBfW3g0CERcv-l5wAAAAAAAABc"}} +{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator._addSeenName(java.lang.String)", "offset": 10}, "line": {"number": 2701}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "b_xouuKJL4pG8kohSeNIUwAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "ContentLengthOutputStream.java"}, "function": {"name": "void org.apache.http.impl.io.ContentLengthOutputStream.write(byte[], int, int)", "offset": 9}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NnsXqH-CVYMwVp_zbU78aQAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": "BaseTranslogReader.java"}, "function": {"name": "long org.elasticsearch.index.translog.BaseTranslogReader.getLastModifiedTime()"}, "line": {"number": 145}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZz"}} +{"Stackframe": {"function": {"name": "audit_filter_syscall.constprop.19"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xo8H4Xbu1dhktweO39ARgAAAAAAAAABJ"}} +{"Stackframe": {"file": {"name": "ChannelInputStream.java"}, "function": {"name": "int sun.nio.ch.ChannelInputStream.read(byte[], int, int)", "offset": 11}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vseJX0sppKrh3ZPWhmhGrwAAAAAAAAAT"}} +{"Stackframe": {"file": {"name": "URI.java"}, "function": {"name": "void java.net.URI.(java.lang.String)", "offset": 101}, "line": {"number": 623}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Z41z-remt7jPNWprM_rymwAAAAAAAAC6"}} +{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "org.elasticsearch.cluster.metadata.Metadata org.elasticsearch.cluster.metadata.Metadata$Builder.build()", "offset": 12}, "line": {"number": 1540}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6mdVzOhFO3Gajb4WIZeHQQAAAAAAAAAa"}} +{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "int org.elasticsearch.common.io.stream.StreamInput.readArraySize()", "offset": 10}, "line": {"number": 1232}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KzCI3jWrje1hFLAKEDhYkwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.IndexWriter$$Lambda$5244+0x0000000801a61c68.process(org.apache.lucene.index.IndexWriter)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3H8SZkHDTt4oKUFDNcPVpwAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.dataformat.smile.SmileParser._decodeShortAsciiValue(int)", "offset": 9}, "line": {"number": 2418}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "69oENs4LaleWvQ-u5QBLcQAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "OutputStreamIndexOutput.java"}, "function": {"name": "void org.apache.lucene.store.OutputStreamIndexOutput.writeBytes(byte[], int, int)"}, "line": {"number": 59}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5_Q-3e4J-GRZRTxLQzNfEwAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "int org.elasticsearch.index.shard.IndexShard.estimateNumberOfHistoryOperations(java.lang.String, org.elasticsearch.index.engine.Engine$HistorySource, long)"}, "line": {"number": 2446}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KjQa_c3gnNzjLoUEDA1kewAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.IndexWarmer$FieldDataWarmer$$Lambda$2498.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "Thread.java"}, "function": {"name": "void java.lang.Thread.run()", "offset": 1}, "line": {"number": 833}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAYEQ"}} +{"Stackframe": {"function": {"name": "do_open_dir"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e9VBoOb6ap6y2iBqQXec9wAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.doAddSortedField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)"}, "line": {"number": 637}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fEW2ISlTz6bBNQ3Y_nEaswAAAAAAAABD"}} +{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "org.apache.lucene.index.FieldInfos org.apache.lucene.index.SegmentReader.initFieldInfos()", "offset": 6}, "line": {"number": 190}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "t8gLMJFynbVKep3-JkD6nwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "SearchHit.java"}, "function": {"name": "boolean org.elasticsearch.search.SearchHit.hasLookupFields()"}, "line": {"number": 474}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5AZknqiNUIStFJoDanTfGQAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "SegmentTermsEnum.java"}, "function": {"name": "org.apache.lucene.codecs.blocktree.SegmentTermsEnumFrame org.apache.lucene.codecs.blocktree.SegmentTermsEnum.pushFrame(org.apache.lucene.util.fst.FST$Arc, org.apache.lucene.util.BytesRef, int)", "offset": 3}, "line": {"number": 241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1oBnNdsJQEj_XlDQgtQSnwAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.settings.Settings.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)"}, "line": {"number": 616}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALmo4"}} +{"Stackframe": {"function": {"name": "path_openat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sueTM-LYsBZU9Btl9NKTwAAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "long org.elasticsearch.index.store.ByteSizeCachingDirectory.estimateSizeInBytes()"}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "WNCoXdwpbJJTBiougAuCXgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AsciiString.java"}, "function": {"name": "int io.netty.util.AsciiString$1.hashCode(java.lang.CharSequence)"}, "line": {"number": 1357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qpODw8IkqtVkRR3pADrcYgAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "NativePRNG.java"}, "function": {"name": "void sun.security.provider.NativePRNG$RandomIO.access$400(sun.security.provider.NativePRNG$RandomIO, byte[])"}, "line": {"number": 331}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "w5etz-LhHL3UHmhPFsjQPgAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.ingest.geoip.DatabaseNodeService$$Lambda$3837+0x00000008013815f0.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JwOjBjWUyQXIH6dg-O-8CQAAAAAAAAAx"}} +{"Stackframe": {"file": {"name": "DeflateCompressor.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.common.compress.DeflateCompressor.compress(org.elasticsearch.common.bytes.BytesReference)", "offset": 5}, "line": {"number": 242}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5V0XDbONbs62WVlspWPPLQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase$$Lambda$7554+0x0000000802562000.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5QFyT9MlJsniU-mnKmwHBQAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublicationTransportHandler$PublicationContext org.elasticsearch.cluster.coordination.PublicationTransportHandler.newPublicationContext(org.elasticsearch.cluster.ClusterStatePublicationEvent)", "offset": 6}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmMhf"}} +{"Stackframe": {"function": {"name": "snmp_get_cpu_field"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OqpwupFnKCF_JGoASiI17AAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "io.opentelemetry.context.Context org.elasticsearch.tracing.apm.APMTracer.lambda$startTrace$2(java.lang.String, java.lang.String, org.elasticsearch.tracing.apm.APMTracer$APMServices, org.elasticsearch.common.util.concurrent.ThreadContext, java.util.Map, java.lang.String)"}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DUWYePMsNbo7HGAKMdOLTAAAAAAAAADb"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 12}, "line": {"number": 639}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "96ZwME41Vcm2b3c7GM_L0wAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "JarFile.java"}, "function": {"name": "java.util.zip.ZipEntry java.util.jar.JarFile.getEntry(java.lang.String)", "offset": 3}, "line": {"number": 514}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "AC6sIDdQuWlno6mhwaFiZwAAAAAAAADZ"}} +{"Stackframe": {"file": {"name": "Lucene60FieldInfosFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene60.Lucene60FieldInfosFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.index.FieldInfos, org.apache.lucene.store.IOContext)", "offset": 22}, "line": {"number": 292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xojp5VBQ5xwqQiCbnXCnEQAAAAAAAABJ"}} +{"Stackframe": {"file": {"name": "DocumentMapperParser.java"}, "function": {"name": "org.elasticsearch.index.mapper.DocumentMapper org.elasticsearch.index.mapper.DocumentMapperParser.parse(java.lang.String, org.elasticsearch.common.compress.CompressedXContent, java.lang.String)", "offset": 10}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "y5QhQTP0rb94lUCFmD8btwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.TransportService$$Lambda$4449+0x00000008018164e8.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FcHGeTZbDG8jQ9sbtbngcAAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.notifyListenerDirectly(org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3lzjvTOXt4zEfoCWYw8hkAAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "LifecyclePolicyUtils.java"}, "function": {"name": "void org.elasticsearch.xpack.core.ilm.LifecyclePolicyUtils.validate(org.elasticsearch.common.bytes.BytesReference)", "offset": 5}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANyLM"}} +{"Stackframe": {"function": {"name": "tid_fd_mode"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7RFhYe_NpS241I1rFVDmNAAAAAAAAADf"}} +{"Stackframe": {"file": {"name": "SortedSetDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedSetDocValuesWriter.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.DocValuesConsumer)", "offset": 30}, "line": {"number": 199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dbhXX9SOZZMT1BSVMajbhQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "AbstractQueryBuilder.java"}, "function": {"name": "org.apache.lucene.search.Query org.elasticsearch.index.query.AbstractQueryBuilder.toQuery(org.elasticsearch.index.query.SearchExecutionContext)"}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lQWNKvZdgmHySTzr2d4FnwAAAAAAAAAy"}} +{"Stackframe": {"file": {"name": "Spliterators.java"}, "function": {"name": "boolean java.util.Spliterators$IteratorSpliterator.tryAdvance(java.util.function.Consumer)", "offset": 5}, "line": {"number": 1811}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "FlEmrMapoRVqavpRHEspQQAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.decRef(java.lang.Object)"}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$3.onResponse(java.lang.Object)"}, "line": {"number": 394}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "9skm8w_4Kqz8U3CtvTydwwAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "Collectors.java"}, "function": {"name": "void java.util.stream.Collectors.lambda$toMap$58(java.util.function.Function, java.util.function.Function, java.util.function.BinaryOperator, java.util.Map, java.lang.Object)", "offset": 1}, "line": {"number": 1321}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5MjsJRNjcAcbzonrv2R8TgAAAAAAAAAc"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$7231+0x000000080251d720.accept(java.lang.Object, java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEuvp"}} +{"Stackframe": {"function": {"name": "hrtimer_try_to_cancel"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dLDFADnHQuXCgmPaFF59zQAAAAAAAAAz"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.repositories.blobstore.BlobStoreRepository.buildBlobStoreIndexShardSnapshots(java.util.Set, org.elasticsearch.common.blobstore.BlobContainer, org.elasticsearch.repositories.ShardGeneration)", "offset": 5}, "line": {"number": 3439}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAld1y"}} +{"Stackframe": {"function": {"name": "tcp_check_space"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "il81Lr-W5rr5XmSIKLZOpgAAAAAAAABO"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.xcontent.XContentBuilder.unknownValue(java.lang.Object, boolean)", "offset": 13}, "line": {"number": 939}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HnQCVBswBBYyz6PsND_HoQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "FilterDirectoryReader.java"}, "function": {"name": "boolean org.apache.lucene.index.FilterDirectoryReader.isCurrent()"}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gw-R6elvRCziXgbmYn0NGAAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "DocumentMapper.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.index.mapper.DocumentMapper.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)"}, "line": {"number": 339}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAJ6"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 69}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "h8e_oRm0b2Fu9XDLUcGCDwAAAAAAAAEI"}} +{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.rest.RestHandler, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 50}, "line": {"number": 402}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1LJLLPHZa7_J46rYsATDdAAAAAAAAABv"}} +{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "void org.elasticsearch.cluster.ClusterState$ClusterStateDiff.(org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)", "offset": 9}, "line": {"number": 765}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "rLjBo_k19vor7LkQgiOErwAAAAAAAAC8"}} +{"Stackframe": {"file": {"name": "FreqProxTermsWriter.java"}, "function": {"name": "void org.apache.lucene.index.FreqProxTermsWriter.flush(java.util.Map, org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.NormsProducer)", "offset": 39}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "fxp9PeiFOG2DGVnMmcG6lQAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "SegmentInfo.java"}, "function": {"name": "void org.apache.lucene.index.SegmentInfo.addFiles(java.util.Collection)"}, "line": {"number": 278}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PY94Ez-AShf7eTbyN8KgtwAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "IndexTemplateMetadata.java"}, "function": {"name": "void org.elasticsearch.cluster.metadata.IndexTemplateMetadata$Builder.toXContentWithTypes(org.elasticsearch.cluster.metadata.IndexTemplateMetadata, org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 1}, "line": {"number": 341}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dY3nB7xe3zg1QDQFswG3AwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "DelayedAllocationService.java"}, "function": {"name": "void org.elasticsearch.cluster.routing.DelayedAllocationService.scheduleIfNeeded(long, org.elasticsearch.cluster.ClusterState)", "offset": 1}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "PaUpsB-9YmjyzvUTmCWUJQAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.access$300(org.elasticsearch.action.support.replication.ReplicationOperation)"}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SZAt-g5Y9rkRhquz_kA7tQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$1.onResponse(org.elasticsearch.action.ActionResponse)", "offset": 2}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6himjS-PpAivu9i1Bhv6aAAAAAAAAACV"}} +{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.consumeToken(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 105}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "1TcD-cYA4xs7rqA_y0alsAAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseValue(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, org.elasticsearch.xcontent.XContentParser$Token, java.lang.String[])", "offset": 10}, "line": {"number": 739}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nqpcbOZtBdInQqe7yr3UKgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "void java.util.ArrayList.(java.util.Collection)", "offset": 1}, "line": {"number": 181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAACU"}} +{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 16}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Zr-QUGQ5d7tVx5lbmJB5XAAAAAAAAACO"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult io.netty.handler.ssl.SslHandler.wrap(io.netty.buffer.ByteBufAllocator, javax.net.ssl.SSLEngine, io.netty.buffer.ByteBuf, io.netty.buffer.ByteBuf)", "offset": 33}, "line": {"number": 1042}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "riMAXWHM1jJ-7YLA6KKUtgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "ReleasableBytesReference.java"}, "function": {"name": "int org.elasticsearch.common.bytes.ReleasableBytesReference.length()"}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EcvbPwVD2xiMdhU7CZwtHQAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObjectOrField(org.elasticsearch.index.mapper.ParseContext, org.elasticsearch.index.mapper.Mapper)", "offset": 1}, "line": {"number": 550}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "19uHIkVsOWsXPhLw6Psn-gAAAAAAAABN"}} +{"Stackframe": {"file": {"name": "IdentityHashMap.java"}, "function": {"name": "java.lang.Object java.util.IdentityHashMap.remove(java.lang.Object)", "offset": 14}, "line": {"number": 533}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Jj6ja2Wbkf1_R1a9nVWcUAAAAAAAAADt"}} +{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.CommonStats.(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 33}, "line": {"number": 190}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "KJRCrp8LKsI1BLEFrQHPiQAAAAAAAAEt"}} +{"Stackframe": {"file": {"name": "TaskBatcher.java"}, "function": {"name": "void org.elasticsearch.cluster.service.TaskBatcher.submitTasks(java.util.List, org.elasticsearch.core.TimeValue)", "offset": 30}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "I63RT_W0q_XUvwLmcrZgvQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "Authentication.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.Authentication.writeToContext(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.xpack.security.crypto.CryptoService, org.elasticsearch.common.settings.Settings, org.elasticsearch.Version, boolean)", "offset": 1}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tu6yRjvR9y5TsA8gfp3aWQAAAAAAAACM"}} +{"Stackframe": {"file": {"name": "PeerFinder.java"}, "function": {"name": "boolean org.elasticsearch.discovery.PeerFinder.handleWakeUp()", "offset": 14}, "line": {"number": 273}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "3sICbTD-_7s030K32xuInwAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "long org.elasticsearch.action.support.replication.ReplicationOperation$1$$Lambda$7494+0x0000000801f33340.getAsLong()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nKc55B3__dngRZpQx4dj-gAAAAAAAABE"}} +{"Stackframe": {"file": {"name": "PooledByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.PooledByteBufAllocator.newHeapBuffer(int, int)", "offset": 12}, "line": {"number": 385}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nt0VAZdwKPtVfJRsjYGLLQAAAAAAAABy"}} +{"Stackframe": {"file": {"name": "SegmentDocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.index.SegmentDocValuesProducer.(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos, org.apache.lucene.index.FieldInfos, org.apache.lucene.index.SegmentDocValues)", "offset": 31}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wEyqztK2yQuiOcOJhOx1cgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.ClusterModule$$Lambda$2483+0x00000008012d72c0.read(org.elasticsearch.common.io.stream.StreamInput)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tKRI47gaUATre6hVOVRyHwAAAAAAAABC"}} +{"Stackframe": {"file": {"name": "OutputRecord.java"}, "function": {"name": "long sun.security.ssl.OutputRecord.encrypt(sun.security.ssl.SSLCipher$SSLWriteCipher, byte, java.nio.ByteBuffer, int, int, int, sun.security.ssl.ProtocolVersion)", "offset": 13}, "line": {"number": 341}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-ZNzcIfRK431xz3NkzIyzQAAAAAAAAET"}} +{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.getRoles(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)", "offset": 36}, "line": {"number": 250}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "JAe5rrE74nLSd6CXDxWPkwAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "ClusterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterService.submitStateUpdateTask(java.lang.String, java.lang.Object, org.elasticsearch.cluster.ClusterStateTaskConfig, org.elasticsearch.cluster.ClusterStateTaskExecutor, org.elasticsearch.cluster.ClusterStateTaskListener)"}, "line": {"number": 252}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Jiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.writeIncrementalStateAndCommit(long, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)", "offset": 5}, "line": {"number": 627}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TdvyEkBALxwDoycOnD-RjgAAAAAAAACa"}} +{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.updateChildren()", "offset": 34}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "g5HeBvry4ntf4CELUL7EBgAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Object)", "offset": 2}, "line": {"number": 1059}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.MergePolicy$MergeSpecification org.apache.lucene.index.IndexWriter.updatePendingMerges(org.apache.lucene.index.MergePolicy, org.apache.lucene.index.MergeTrigger, int)", "offset": 33}, "line": {"number": 2334}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "W0z6xNHqHLcQrQ1Rr4ojGwAAAAAAAAAN"}} +{"Stackframe": {"file": {"name": "JarFileFactory.java"}, "function": {"name": "java.util.jar.JarFile sun.net.www.protocol.jar.JarFileFactory.get(java.net.URL, boolean)", "offset": 2}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvMr"}} +{"Stackframe": {"function": {"name": "hrtimer_start_range_ns"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "25mp98L6MrKhqE8ccc5QLgAAAAAAAACz"}} +{"Stackframe": {"file": {"name": "BaseRestHandler.java"}, "function": {"name": "void org.elasticsearch.rest.BaseRestHandler.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient)", "offset": 23}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_"}} +{"Stackframe": {"file": {"name": "AbstractNioByteChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read()", "offset": 22}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACYgf"}} +{"Stackframe": {"function": {"name": "copy_process"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "RuTViGJ9Pf477gXsTgiYyQAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "Unsafe.java"}, "function": {"name": "void jdk.internal.misc.Unsafe.park(boolean, long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "VKeIi2MKWzeJ-DxWf1HkPQAAAAAAAABn"}} +{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrap(io.netty.channel.ChannelHandlerContext, boolean)", "offset": 19}, "line": {"number": 829}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Pm8yvojd4enECfI_5pXoCAAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "PolicyFile.java"}, "function": {"name": "boolean sun.security.provider.PolicyFile.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 1}, "line": {"number": 1000}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cySQ7RN2xLk3L53sfsn4-QAAAAAAAAAM"}} +{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeString(java.lang.String)"}, "line": {"number": 401}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "PrioritizedEsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.runAndClean(java.lang.Runnable)"}, "line": {"number": 262}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pD64Y8dYs0KzJcRfejjvpQAAAAAAAAGx"}} +{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleRequest(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.Header, org.elasticsearch.transport.InboundMessage)", "offset": 48}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "leQWcig8dN9UqyvFYkHEUgAAAAAAAAAo"}} +{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.start()", "offset": 7}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HfFlM3axnhO28EteQn-2WAAAAAAAAABJ"}} +{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.IndexShardStats org.elasticsearch.indices.IndicesService.indexShardStats(org.elasticsearch.indices.IndicesService, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 24}, "line": {"number": 532}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EtxHFG8KdABeZEIBvg2-1AAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "IndexShardRoutingTable.java"}, "function": {"name": "java.util.List org.elasticsearch.cluster.routing.IndexShardRoutingTable.shardsWithState(org.elasticsearch.cluster.routing.ShardRoutingState)", "offset": 4}, "line": {"number": 649}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi0dj"}} +{"Stackframe": {"function": {"name": "skb_release_head_state"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eCd7pmEC4QoP7FQm1ikosgAAAAAAAAGV"}} +{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.handleIncomingPublishRequest(org.elasticsearch.transport.BytesTransportRequest)", "offset": 52}, "line": {"number": 225}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "619AixYrQOa22PQj1GrSdAAAAAAAAABi"}} +{"Stackframe": {"file": {"name": "threading.py"}, "function": {"name": "_bootstrap_inner", "offset": 15}, "line": {"number": 916}, "source": {"type": 2}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "NaY9cPrM2n8oUei5D2qWHQAAAAAAAABL"}} +{"Stackframe": {"file": {"name": "MessageToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 20}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5xth400yyE4MoVI14rYvVwAAAAAAAAGj"}} +{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.executeNextPhase(org.elasticsearch.action.search.SearchPhase, org.elasticsearch.action.search.SearchPhase)", "offset": 55}, "line": {"number": 448}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yH_ohM36PxcsspBj9HiisAAAAAAAAABU"}} +{"Stackframe": {"file": {"name": "ReaderPool.java"}, "function": {"name": "boolean org.apache.lucene.index.ReaderPool.writeAllDocValuesUpdates()", "offset": 8}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TpHBIFxy9wxqWeMb-8BF5gAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.DefaultChannelPipeline.write(java.lang.Object)"}, "line": {"number": 1056}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.addListener(org.elasticsearch.action.ActionListener)"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sCdW6ghslIPajpgsdfjVWAAAAAAAAAAS"}} +{"Stackframe": {"file": {"name": "ProcessingSequenceBarrier.java"}, "function": {"name": "long com.lmax.disruptor.ProcessingSequenceBarrier.waitFor(long)", "offset": 2}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zEf9qEa-MLzluKUM9knuogAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "void org.apache.lucene.search.Weight$DefaultBulkScorer.scoreAll(org.apache.lucene.search.LeafCollector, org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.search.TwoPhaseIterator, org.apache.lucene.util.Bits)", "offset": 1}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABV"}} +{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.merge(org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 12}, "line": {"number": 4363}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "j4w58zsaqOfxzn9j73toSwAAAAAAAABu"}} +{"Stackframe": {"file": {"name": "NioSocketChannel.java"}, "function": {"name": "void io.netty.channel.socket.nio.NioSocketChannel.doWrite(io.netty.channel.ChannelOutboundBuffer)", "offset": 27}, "line": {"number": 417}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAW"}} +{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "void java.util.stream.Streams$ConcatSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 2}, "line": {"number": 735}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ET3b1ONLpdNAXigq7mYtGgAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "MessageDigest.java"}, "function": {"name": "void java.security.MessageDigest.update(byte[], int, int)", "offset": 6}, "line": {"number": 349}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "P39cIawm-GXmvXDrjAf_kQAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.channels.SeekableByteChannel sun.nio.fs.UnixFileSystemProvider.newByteChannel(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])", "offset": 4}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Xpj042pbA1-TNsSIE33U5AAAAAAAAAAk"}} +{"Stackframe": {"file": {"name": "ProcessProbe.java"}, "function": {"name": "org.elasticsearch.monitor.process.ProcessStats org.elasticsearch.monitor.process.ProcessProbe.processStats()", "offset": 2}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jimseSpjBNWbZ4eHcfFIAwAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$1.lambda$sendRequest$0(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportInterceptor$AsyncSender, boolean, org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext)"}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iynY3Vpl2yeKIqRo2Ld9YAAAAAAAAAAn"}} +{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.write(byte[], int, int)", "offset": 9}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "DBri3jDzfaLbELrPGFmlSwAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "SSLAlgorithmDecomposer.java"}, "function": {"name": "java.util.Set sun.security.ssl.SSLAlgorithmDecomposer.decompose(java.lang.String)", "offset": 17}, "line": {"number": 276}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "iUZ41g2XM36qWOM6KfrqOAAAAAAAAAGX"}} +{"Stackframe": {"file": {"name": "IndexModule.java"}, "function": {"name": "org.elasticsearch.index.IndexService org.elasticsearch.index.IndexModule.newIndexService(org.elasticsearch.env.NodeEnvironment, org.elasticsearch.common.xcontent.NamedXContentRegistry, org.elasticsearch.index.IndexService$ShardStoreDeleter, org.elasticsearch.indices.breaker.CircuitBreakerService, org.elasticsearch.common.util.BigArrays, org.elasticsearch.threadpool.ThreadPool, org.elasticsearch.script.ScriptService, org.elasticsearch.cluster.service.ClusterService, org.elasticsearch.client.Client, org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.indices.mapper.MapperRegistry, org.elasticsearch.indices.fielddata.cache.IndicesFieldDataCache)", "offset": 33}, "line": {"number": 363}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "jsbK0fgMThSM97rCbn5hggAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "FlattenGraphTokenFilterFactory.java"}, "function": {"name": "void org.elasticsearch.index.analysis.FlattenGraphTokenFilterFactory.(org.elasticsearch.index.IndexSettings, org.elasticsearch.env.Environment, java.lang.String, org.elasticsearch.common.settings.Settings)"}, "line": {"number": 31}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wtkJSM2tzCJCUzMzkaaTDwAAAAAAAAAJ"}} +{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "void org.elasticsearch.tasks.TaskManager$1.onResponse(org.elasticsearch.action.ActionResponse)", "offset": 2}, "line": {"number": 209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "St7lFjY3zfwOi_rfHJtWoQAAAAAAAABg"}} +{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Object, java.util.Set)", "offset": 16}, "line": {"number": 1091}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "aM-T0CGo7q7lXKljNC-x7AAAAAAAAAAC"}} +{"Stackframe": {"file": {"name": "ESLoggerFactory.java"}, "function": {"name": "org.apache.logging.log4j.Logger org.elasticsearch.common.logging.ESLoggerFactory.getLogger(java.lang.Class)"}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nj7FjmsicnaXN4IhCf2qjgAAAAAAAAE1"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.UTF8StreamJsonParser._finishString2(char[], int)", "offset": 73}, "line": {"number": 2552}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_41T7VanDxOIrbJoojf8ZgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "SearchHit.java"}, "function": {"name": "org.elasticsearch.search.SearchHit org.elasticsearch.search.SearchHit.readSearchHit(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 854}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "TifPIvND7b7ICq3M7OVoFwAAAAAAAACU"}} +{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.IndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 24}, "line": {"number": 265}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "BMURaOSzSc-JrTjtJ2pZvAAAAAAAAAAH"}} +{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "long org.elasticsearch.index.engine.Engine.guardedRamBytesUsed(org.apache.lucene.util.Accountable)", "offset": 3}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "O-i40hQb92bY-JOhJrV2owAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.SingleThreadEventExecutor$5.run()", "offset": 8}, "line": {"number": 909}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "qD5R7oUvp1CMIoWxp8Tz_gAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "System.java"}, "function": {"name": "int java.lang.System.identityHashCode(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YsR9Kn-aHu4mo0d_CbQ-ngAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.executePhase(org.elasticsearch.action.search.SearchPhase)"}, "line": {"number": 454}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_DKhYKsY0BPKYoMYRAcMCAAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 2}, "line": {"number": 802}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "eP0KBVXjuFe0e0V-8WYorwAAAAAAAAAG"}} +{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.xcontent.json.JsonXContentGenerator.writeStringField(java.lang.String, java.lang.String)"}, "line": {"number": 266}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7ptKTGTqqszfKDkDMhWl3gAAAAAAAAFZ"}} +{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.index.SegmentMerger.merge()", "offset": 30}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "exPoPNcHskSU7YAtxLW1xgAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "EatWhatYouKill.java"}, "function": {"name": "void org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(java.lang.Runnable)"}, "line": {"number": 338}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAj"}} +{"Stackframe": {"file": {"name": "IdleStateHandler.java"}, "function": {"name": "void io.netty.handler.timeout.IdleStateHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 4}, "line": {"number": 286}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALmu4"}} +{"Stackframe": {"function": {"name": "path_openat"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "n1Y254wxpQ3hq_nYz9gRWgAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$2(java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.ActionResponse)", "offset": 1}, "line": {"number": 192}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MfPINX6BnJTkVzU90MYj2QAAAAAAAAAU"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.cache.bitset.BitsetFilterCache$BitSetProducerWarmer$$Lambda$7756+0x00000008025d5828.run()"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gk079EBdEVh5ErpJ6XBaYwAAAAAAAABi"}} +{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesProducer org.apache.lucene.index.SegmentReader.initDocValuesProducer()", "offset": 13}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "umQIucIioKjldscxi712SAAAAAAAAAA_"}} +{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.fsync(java.nio.file.Path, boolean)", "offset": 11}, "line": {"number": 467}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zyYGVRP_YB-nnwhjpkxemgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "InputStream.java"}, "function": {"name": "int java.io.InputStream.read(byte[])"}, "line": {"number": 218}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "XazxZiS7BpDG4pZ8c1xUmwAAAAAAAAAB"}} +{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "void java.nio.file.Files.lambda$asUncheckedRunnable$0(java.io.Closeable)"}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YUwJS6kVpV4XvYu7ZD33UwAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "MatchOps.java"}, "function": {"name": "java.lang.Object java.util.stream.MatchOps$MatchOp.evaluateSequential(java.util.stream.PipelineHelper, java.util.Spliterator)"}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "MeTqmkZsdvR2zsVZgPnDHAAAAAAAAAAs"}} +{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.maybeWriteIndexLatest(long)", "offset": 3}, "line": {"number": 2383}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7At3N6jUaTq91gUXMCcsgwAAAAAAAAHQ"}} +{"Stackframe": {"file": {"name": "AccessControlContext.java"}, "function": {"name": "void java.security.AccessControlContext.checkPermission(java.security.Permission)", "offset": 55}, "line": {"number": 449}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YX8RhXzR8HpQ5_xqrCNFGwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "FilterLeafReader.java"}, "function": {"name": "void org.apache.lucene.index.FilterLeafReader.document(int, org.apache.lucene.index.StoredFieldVisitor)", "offset": 1}, "line": {"number": 355}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "buaxzZBrb6WHETKUkwVYegAAAAAAAAAO"}} +{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.xcontent.json.JsonXContentParser.text()", "offset": 1}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "drfqIeIYaH75qJBezgpYRwAAAAAAAABB"}} +{"Stackframe": {"file": {"name": "Matcher.java"}, "function": {"name": "boolean java.util.regex.Matcher.find()", "offset": 14}, "line": {"number": 745}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "33KG7GCGOYJMsSjoSSkEJwAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.seqno.SeqNoStats org.elasticsearch.index.engine.InternalEngine.getSeqNoStats(long)"}, "line": {"number": 2742}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "laCVEYRJ1mj9jC4IMnu-nAAAAAAAAAAA"}} +{"Stackframe": {"file": {"name": "FixedBitSet.java"}, "function": {"name": "boolean org.apache.lucene.util.FixedBitSet.get(int)"}, "line": {"number": 225}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "dxSK3xE1ZB_w58ylB87r2QAAAAAAAAHG"}} +{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment org.apache.lucene.index.DocumentsWriterPerThread.flush(org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 50}, "line": {"number": 359}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "tA5QFhiwL0MKlmqWTTtnMgAAAAAAAAIL"}} +{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.addName(int[], int, int)", "offset": 98}, "line": {"number": 2356}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "0e441wfwXV0HkniBtm40vwAAAAAAAACI"}} +{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicasProxy.performOn(org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.action.support.replication.ReplicationRequest, long, long, long, org.elasticsearch.action.ActionListener)", "offset": 17}, "line": {"number": 1282}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Tq2A_ghNgr4Sgbd4ToSeBgAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "LRUQueryCache.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight.bulkScorer(org.apache.lucene.index.LeafReaderContext)", "offset": 12}, "line": {"number": 838}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YSP8Ib_W13QEw_Ivysg7FgAAAAAAAAFi"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.handleIndexActionAuthorizationResult(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener)", "offset": 48}, "line": {"number": 566}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wD7qCDk3lqH0hpTFDQk1YQAAAAAAAABI"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readMapEntries(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier, java.util.Map)", "offset": 5}, "line": {"number": 316}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "itNYDDux1CCzX0YHImZaewAAAAAAAABk"}} +{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.authenticateWithCache(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gWNEC7AlEWOiaeOn6tt3KwAAAAAAAAAd"}} +{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService$Batcher.run(java.lang.Object, java.util.List, java.lang.String)", "offset": 2}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "-VFQiUmEmxKLobEs13zdvQAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "DotExpandingXContentParser.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentParser$Token org.elasticsearch.index.mapper.DotExpandingXContentParser$WrappingParser.nextToken()"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "ZkLsycxKPf36jJRxnsYRXgAAAAAAAACv"}} +{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.support.AbstractXContentParser.readValueUnsafe(org.elasticsearch.common.xcontent.XContentParser$Token, org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier)", "offset": 10}, "line": {"number": 389}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "xy6LXnpeKuV7b6XhH-kLUgAAAAAAAAAE"}} +{"Stackframe": {"file": {"name": "OutputStreamIndexOutput.java"}, "function": {"name": "long org.apache.lucene.store.OutputStreamIndexOutput.getChecksum()"}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nxv9fnyzQgRP5y-sCtMEGwAAAAAAAAEg"}} +{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 35}, "line": {"number": 663}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "vOpiy5fr8DA14FJPMyQCRQAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "boolean org.apache.lucene.index.StandardDirectoryReader.isCurrent()", "offset": 12}, "line": {"number": 361}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gh5ZUK32QaLM1EoyY_BRswAAAAAAAADO"}} +{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsReader.(org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat, org.apache.lucene.index.SegmentReadState)", "offset": 40}, "line": {"number": 303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "_CTRBRzwj9_syNwY5rEXHAAAAAAAAAA0"}} +{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriterPerThread.sealFlushedSegment(org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 6}, "line": {"number": 538}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "cTSghm0iP6bYZfvjR-iYfgAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "SSLTransport.java"}, "function": {"name": "sun.security.ssl.Plaintext sun.security.ssl.SSLTransport.decode(sun.security.ssl.TransportContext, java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 3}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "m38Gzass7BaV99IOvdPsWgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.startStoredFields(int)"}, "line": {"number": 452}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "gNphDToOGt9PZTWSkkbjhQAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$$Lambda$6688+0x0000000802401fa8.accept(java.lang.Object)"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "EdzyCQG3P71X3W8_ToHzcQAAAAAAAAB2"}} +{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 31}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "6Zhf8TjHmWS5MsyfPyHLrwAAAAAAAAAI"}} +{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$643+0x0000000800f839a8.apply(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "wd-BAOg-0EmznotQi73lBAAAAAAAAAAQ"}} +{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "java.lang.String sun.nio.fs.UnixPath.toString()", "offset": 1}, "line": {"number": 788}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "br2--kP1CFOKTkt8v_v_UwAAAAAAAAA2"}} +{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKeysPlain(java.util.Set)", "offset": 11}, "line": {"number": 615}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "pmPXYMcSXBVkwYFWHrsHvQAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "Objects.java"}, "function": {"name": "boolean java.util.Objects.equals(java.lang.Object, java.lang.Object)"}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "sOsHghooPCgPd4-d0ojulAAAAAAAAAAm"}} +{"Stackframe": {"file": {"name": "ValuesSourceAggregatorFactory.java"}, "function": {"name": "org.elasticsearch.search.aggregations.Aggregator org.elasticsearch.search.aggregations.support.ValuesSourceAggregatorFactory.createInternal(org.elasticsearch.search.aggregations.Aggregator, boolean, java.util.List, java.util.Map)", "offset": 4}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "8RG5DT3fZ989s0GfMwYkZAAAAAAAAABK"}} +{"Stackframe": {"file": {"name": "SSLSocketInputRecord.java"}, "function": {"name": "sun.security.ssl.Plaintext[] sun.security.ssl.SSLSocketInputRecord.decode(java.nio.ByteBuffer[], int, int)", "offset": 26}, "line": {"number": 181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "e50UvngUOqkXgAE5gfHc5gAAAAAAAACd"}} +{"Stackframe": {"file": {"name": "Lucene84PostingsReader.java"}, "function": {"name": "org.apache.lucene.index.PostingsEnum org.apache.lucene.codecs.lucene84.Lucene84PostingsReader.postings(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.BlockTermState, org.apache.lucene.index.PostingsEnum, int)", "offset": 23}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "yXWFMIbkwU7jqv0ggmjvVAAAAAAAAABH"}} +{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$consumeToken$17(org.elasticsearch.xpack.core.security.authc.AuthenticationToken, long, java.util.Map, org.elasticsearch.xpack.core.security.authc.Realm, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 478}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "SsODsFdp0k4d_SSQAFmIUQAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext$WriteTask.run()", "offset": 4}, "line": {"number": 1071}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "Z9_UyIubYa9oU2-prK3THgAAAAAAAAAp"}} +{"Stackframe": {"file": {"name": "ZipFile.java"}, "function": {"name": "long java.util.zip.ZipFile$ZipFileInputStream.initDataOffset()", "offset": 3}, "line": {"number": 912}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "7CG5ZeeZHDD3stOYEiHqzAAAAAAAAAAX"}} +{"Stackframe": {"file": {"name": "GlobalCheckpointSyncAction.java"}, "function": {"name": "void org.elasticsearch.index.seqno.GlobalCheckpointSyncAction.maybeSyncTranslog(org.elasticsearch.index.shard.IndexShard)", "offset": 2}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "zfrc9GArcEMXOSddmdDIewAAAAAAAACw"}} +{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeBulkItems$23(org.elasticsearch.action.bulk.BulkShardRequest, java.util.Map, java.util.Map, org.elasticsearch.xpack.security.audit.AuditTrail, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationContext, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.xpack.core.security.authz.ResolvedIndices)", "offset": 103}, "line": {"number": 812}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YVcFEflggWCRxtIyAFnYrgAAAAAAAAAL"}} +{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.timedRead(java.io.FileDescriptor, byte[], int, int, long)", "offset": 1}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "YQC-zo420OhfkqInQzaDKgAAAAAAAAAg"}} +{"Stackframe": {"file": {"name": "ZipFile.java"}, "function": {"name": "void java.util.zip.ZipFile$ZipFileInflaterInputStream.fill()", "offset": 3}, "line": {"number": 445}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "HUauDoEUPNcl9bqvF0k8xQAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase$3.run()"}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "LsrK9E-EO_ynQk-yDhFFiQAAAAAAAAAV"}} +{"Stackframe": {"file": {"name": "LZ4WithPresetDictCompressionMode.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.LZ4WithPresetDictCompressionMode$LZ4WithPresetDictCompressor.doCompress(byte[], int, int, org.apache.lucene.store.DataOutput)", "offset": 1}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "QgdKCL0NweKlDrk1WZ03swAAAAAAAAAl"}} +{"Stackframe": {"file": {"name": "DataOutput.java"}, "function": {"name": "void org.apache.lucene.store.DataOutput.writeSignedVLong(long)", "offset": 4}, "line": {"number": 236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "lWh8CycjgiXzGt6izb4udAAAAAAAAAC0"}} +{"Stackframe": {"file": {"name": "StreamDecoder.java"}, "function": {"name": "int sun.nio.cs.StreamDecoder.read(char[], int, int)", "offset": 33}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "4XXTSxpcblY4XfsTMB8ZgQAAAAAAAAEb"}} +{"Stackframe": {"file": {"name": "SSLSocketOutputRecord.java"}, "function": {"name": "void sun.security.ssl.SSLSocketOutputRecord.deliver(byte[], int, int)", "offset": 53}, "line": {"number": 338}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "X_KArw2lYZFY-9kCvtv9JwAAAAAAAAA6"}} +{"Stackframe": {"file": {"name": "LRUQueryCache.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight.scorerSupplier(org.apache.lucene.index.LeafReaderContext)", "offset": 12}, "line": {"number": 727}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "OBvZip33DmPL1Xajd-nO2AAAAAAAAABT"}} +{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "java.util.Map org.elasticsearch.cluster.metadata.IndexNameExpressionResolver.resolveSearchRouting(org.elasticsearch.cluster.ClusterState, java.lang.String, java.lang.String[])", "offset": 4}, "line": {"number": 592}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAABZf1"}} +{"Stackframe": {"function": {"name": "xfs_setfilesize_ioend"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "v9C0ft_9MZr7wkOCRARUkwAAAAAAAAAK"}} +{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDWriter.access$900(org.apache.lucene.util.bkd.BKDWriter, org.apache.lucene.store.DataOutput, int[], int, int, java.util.function.IntFunction, int)"}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "5ClizBEH2YtrmYjg0ZZ1kgAAAAAAAAAF"}} +{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$RunAfterActionListener.onResponse(java.lang.Object)"}, "line": {"number": 339}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stackframes", "_id": "nJb6IY06KTWp6IJDHyYuGgAAAAAAAABs"}} +{"Stackframe": {"file": {"name": "TransportBroadcastByNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.onShardOperation(org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$NodeRequest, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionListener)", "offset": 25}, "line": {"number": 489}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "z1K4WqC6eykbHpG2pCP39Q"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCPFYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BQMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cMJxtfYAkLp7CyGCtIYWWA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAAB-5iAtVIILui-LgFNzk7nI4QAAAAAAAAAFTlb-NMKl40FjLIQMDGJfBQAAAAAAAAAXxme1OLUOxM6S5mWcBl9N_gAAAAAAAAAC8EydHzqUyrjotjG1DR1HjgAAAAAAAAADx7dNtL9l6yQnqIhb2iRkJQAAAAAAAABV85xU6UdOBVE-6wKT-DYa3QAAAAAAAAAcKlMLGpkm1pBrBLT79cviPAAAAAAAAAABzVZBdh_gmAiL5X6tN_0jKgAAAAAAAAAEWBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAABMQNDqKDPWY6nq0qvBxhyKdwAAAAAAAAByaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABRapg5i-nxkoOQjMlxB9g-swAAAAAAAAAFqYA0yXrjfQUiViGsCwfP0gAAAAAAAADolmdMMTHiYSG09aFSlb3EMgAAAAAAAADFB9zspJB6xk58idQOc2k5WQAAAAAAAAEJxa170c4ceuN7F4Z_jhJFyQAAAAAAAAEX7pXLIFt09fSjcQsRLxLYogAAAAAAAABfKhjp27nxAL3YQI2ArL221wAAAAAAAAAk4qZNxkVZi02_G1WdmsL0xwAAAAAAAAAA", "types": "CQNUBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XS_2yHHH56Gg_3eKY-7vNw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAABhRJXjPkp22gaQo9vwY-85JAAAAAAAAAAA", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "W17746IlG7LeSXQztGFWDQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAeasI8DDAjVJl721y2vxKHGSBegAAAAAAgwJS8DDAjVJl721y2vxKHGSBegAAAAAAefs78DDAjVJl721y2vxKHGSBegAAAAAAeXlX", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "X1hi8-3cWL65DMkAorIdIw"}} +{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kuVi0_akuSWTIatJohqMk3QAAAAAAxjenuVi0_akuSWTIatJohqMk3QAAAAAA6hF5uVi0_akuSWTIatJohqMk3QAAAAAA8W7LuVi0_akuSWTIatJohqMk3QAAAAAA8WyMuVi0_akuSWTIatJohqMk3QAAAAAA0bbFuVi0_akuSWTIatJohqMk3QAAAAAA0aoKuVi0_akuSWTIatJohqMk3QAAAAAA0dUSuVi0_akuSWTIatJohqMk3QAAAAAA6el3uVi0_akuSWTIatJohqMk3QAAAAAA0bzE", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9v4baFRxFkRsX202a1Jlyg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAXfyHZSkKN3zNxr0HYuO2pqe5hQAAAAAAXfCPZSkKN3zNxr0HYuO2pqe5hQAAAAAAUVVAZSkKN3zNxr0HYuO2pqe5hQAAAAAAXWsnZSkKN3zNxr0HYuO2pqe5hQAAAAAAXRBoZSkKN3zNxr0HYuO2pqe5hQAAAAAAVBHcZSkKN3zNxr0HYuO2pqe5hQAAAAAAf9wfZSkKN3zNxr0HYuO2pqe5hQAAAAAAf9dI", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "QpM8ux8n6ePRoM3jLITdXA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9ALUz5k14PsCcDvFyUC1kmlV3QAAAAAB9AoRz5k14PsCcDvFyUC1kmlV3QAAAAABFYCqz5k14PsCcDvFyUC1kmlV3QAAAAABFYVzz5k14PsCcDvFyUC1kmlV3QAAAAABFYmTz5k14PsCcDvFyUC1kmlV3QAAAAABFZFGz5k14PsCcDvFyUC1kmlV3QAAAAABGmU2", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6uN-YY_i1gvVmqACLDXQMw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuXwZZ3CKaS4aU08RhYA19y5ITQAAAAABttckZ3CKaS4aU08RhYA19y5ITQAAAAABtwT0Z3CKaS4aU08RhYA19y5ITQAAAAABtFpzZ3CKaS4aU08RhYA19y5ITQAAAAABtnwrZ3CKaS4aU08RhYA19y5ITQAAAAABudBy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BwMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FcBisk9MBJiEm5RcNYQgJQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsgobx9jqjuemtiUm8j-_s73zQAAAAAATTx9bx9jqjuemtiUm8j-_s73zQAAAAAAQE2Pbx9jqjuemtiUm8j-_s73zQAAAAAAQDPXbx9jqjuemtiUm8j-_s73zQAAAAAAlA2vbx9jqjuemtiUm8j-_s73zQAAAAAAlAxCbx9jqjuemtiUm8j-_s73zQAAAAAAlASrbx9jqjuemtiUm8j-_s73zQAAAAAANAse", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "u78B1-xu2_OtQQtsqfxtcg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjD5cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLmm9cEvvhuguaGYCmGWrnWRz1QAAAAACLkFQcEvvhuguaGYCmGWrnWRz1QAAAAACLqBXcEvvhuguaGYCmGWrnWRz1QAAAAACFSqI", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "oVuo4Odmf-MdkPEKxNJxdQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAA-X-Oq0l1amW5EIGEj1JNmswAAAAAAAAAeV6VjwoFUmL-aJwJOJ7vFngAAAAAAAABN", "types": "CQMWBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "os6daKfSvfffiF5ytCbQ-g"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyFRZ3CKaS4aU08RhYA19y5ITQAAAAABt32w", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WkwWsCOQ4jfAKbRLlzcQHg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAAwR4O21YPz5WkGUKdaZ1xVrgAAAAAAAAAayQDYDWiyDEgJMgGvgsz9TQAAAAAAAAA25R-yx7MYDZ-mt3l2_RLRhwAAAAAAAAAAAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CQMYBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wHJbulFJJ6_w_2DMN0h9Hw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSEYxe-SHgukLEpCkawSk1QWAAAAAAAFzhzYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHaMZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALX6y6tVKI4mSYDEJ-ABAIpYXcgAAAAAALX4g", "types": "CQMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RuqNusVlN7lwSvXsZmvISQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXzaF", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jWMuhjkmiPz4Jik5OH76Pw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxf3Z3CKaS4aU08RhYA19y5ITQAAAAAB0DJIZ3CKaS4aU08RhYA19y5ITQAAAAAB0Elt", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "B6rlwkctgouLw4CHSlkPIg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcoiHXy47Qw5euydEoPUexRgAAAAAAAAAga67hy6D4_aH__IrzfMid7wAAAAAAAAABrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZf4KmPLa6_uw8gRgiw9EUAAAAAAAAAE4ihprad0bkU-u2IU9StodIgAAAAAAAAEqfmVqFyGK_erbPbR830tm8gAAAAAAAAAPGqtKw4RB3R19EQhu6EuSBwAAAAAAAABEe7jcj9ca-ENh_em7UG8YrQAAAAAAAAAjpv2BnGF3DU5EF7_9vBhh5wAAAAAAAAAjqAJPfj7zVy9vjSAISf6DmgAAAAAAAAAIxAdnmGWjJXcKuwdszuwv6gAAAAAAAAAFO_BiL2ROZsn4VXLfIMjl4AAAAAAAAAAFPrVtf7vrjGGpVbEAol3b9QAAAAAAAAANZf0w4S_WIxaQJn4-TjKTOwAAAAAAAAApu84jH0Fi4giPpR8JCVg2uQAAAAAAAAAFeEsPvNGYH982Mv0mPexpzgAAAAAAAABKQH4VYcH0-bM7E6PfVIY9ggAAAAAAAAAMFGGSuaVpuuMHaXUzmpPEWQAAAAAAAAABUT1CLo52HplxPz6JwcoqCQAAAAAAAAAJlfjVNXK_x0C4X5O62984zgAAAAAAAAAFZbvmFtHvqv74jokq3XvBkgAAAAAAAACS2RfKfVPwyqKh_r9U1oFgUwAAAAAAAAAfTJNGpZ5zrxHIWzJGPowW7QAAAAAAAAAEJvETSNUFmQzhSgQRV87p_gAAAAAAAAAbe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACWZXdWkChUCjmBhCYfjJANcwAAAAAAAAA40s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAY-k1yErCu-jNwISnaM-KD7QAAAAAAAAAEKKv0NXm_ezj8s4xL2h0ukQAAAAAAAAABowyrXkB83AG3IYXAToFk1wAAAAAAAAAXXLF69uXjx__SMzPQ-aqv3gAAAAAAAAABkJKoeJFyHesAY0rD9olU2wAAAAAAAAATMLsSNklcHZC5-JNzE_acJQAAAAAAAAARdgy0_dQK7Uq2EhYPyJUaCwAAAAAAAAAIrJx2L46bJZC9pWeYpH2aaAAAAAAAAABHA7QmOI08hPnJ_saXhSrmyQAAAAAAAAAz_L-V6AKh04k4Gsn-ITaa0AAAAAAAAAAKX3GdeQP-f7ta19Ve9HCXlgAAAAAAAAAUrT6Wpj_D6biwR0z1hrGxmwAAAAAAAAAH515JXhvu-Tp0j9MvQAZtWgAAAAAAAAAHGg8yWTMBWgWQ1-9YJzEFhAAAAAAAAAAlJZAp-_m0--d0j2rImdy6sQAAAAAAAAAG8DDAjVJl721y2vxKHGSBegAAAAAA1E568DDAjVJl721y2vxKHGSBegAAAAAA1E1D8DDAjVJl721y2vxKHGSBegAAAAAAet3W", "types": "CAMzBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "sizNQvpwrsYG1iwjQh48UA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZuZrhTmryHY6BwcmGEp2Nw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSIeXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdB4", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "tlbfZampMMvwOvipHAfuvw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjXzz5k14PsCcDvFyUC1kmlV3QAAAAABGOHuz5k14PsCcDvFyUC1kmlV3QAAAAABGN3rz5k14PsCcDvFyUC1kmlV3QAAAAABGZEQz5k14PsCcDvFyUC1kmlV3QAAAAABGNSVz5k14PsCcDvFyUC1kmlV3QAAAAABGPJ9z5k14PsCcDvFyUC1kmlV3QAAAAABGTGnz5k14PsCcDvFyUC1kmlV3QAAAAABGTN1", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3whWAY5xh8GAsj0P7rCK5A"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA70RgYbC2fQjxygsXZf0s0DwAAAAAAAABPiAgP1DBH7Z9OPzvK7kQabQAAAAAAAAA3brHwMWIWqKKcmy2jXj1-xAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA70RgYbC2fQjxygsXZf0s0DwAAAAAAAADSW87P_sgUDxSTpL44g-B3sgAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAscUbYCLGaGbgTEEgF2M5aIAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfh8e_oRm0b2Fu9XDLUcGCDwAAAAAAAAEIFyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACAE1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsZQyHXm2PqJnrzI2fVGLZ8AAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWZQyHXm2PqJnrzI2fVGLZ8AAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWZQyHXm2PqJnrzI2fVGLZ8AAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWZQyHXm2PqJnrzI2fVGLZ8AAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAACS4b6Y6AxjtjqP_pey1p_yKgAAAAAAAAA46himjS-PpAivu9i1Bhv6aAAAAAAAAACVH0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsTswSZkOSFrZzpdMc4ENOMQAAAAAAAAAkuwSrGXrIlilHG9LeAbu8sgAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJFcHGeTZbDG8jQ9sbtbngcAAAAAAAAAAcs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFNHPyipJQI7KfDzlpk9tK3wAAAAAAAAAULEf7xTPa92fa-lrUaMUkPQAAAAAAAAA3-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAFE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFRKpieMMJVCw_q0ww3HrwCAAAAAAAAAAQVQoK7BVzszXqPUi0cc2ufgAAAAAAAABCE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFFGgciwInAzIbYSMNIMKs5AAAAAAAAAAoKU_l7oGL7N35bnBXHoHVpAAAAAAAAAB3R43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFoCqIpaPRYCPPmXbYCUxXqwAAAAAAAAAYbtJR8uWrInrzn_sGkpIt3QAAAAAAAABNE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFPdx9X-Kll_jo88kvLOH1zgAAAAAAAAAU7dZbzLINeewhS7u7jNnbxwAAAAAAAABBR43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3E5ablZjSwaw4LkNasKqxDQAAAAAAAAAF0co_9c4FDrTIH03EtdicvAAAAAAAAAAQ3xSivts4s-tBo1MMFQEENgAAAAAAAAAvfEf2U4TLcZ6jkTz3kXzr0AAAAAAAAAAkjNbJJD0szUDlnbhrWsIGkAAAAAAAAABE4ZG6-YGelmJ-HvYGGP11fAAAAAAAAABaAUF9qfndDpPVzyW0cm1sXgAAAAAAAAAYt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF79Vr1UCiWCHkL7FDARORzgAAAAAAAAAUuj5fRTSdGJxlX0gfzctOogAAAAAAAAA_3G7WvpXqPGO04rbAV9CJtQAAAAAAAAAlHr7DaUVBf6Mvou5VCDAFbQAAAAAAAAApE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF5bahSRCbCjQ3f5d0bmxmHwAAAAAAAAAMM_MfJrZLrX3P0R0dWrP49AAAAAAAAAALE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFPSWlcMAn8oAcpAmj2Wv1uwAAAAAAAAAU-TcRbQGxOxYw9x9ta5Q4zwAAAAAAAAAheufT8zCegZUSBK09BAzk9wAAAAAAAAAOlrNuGOqZ1W2gPcoSPK5FRwAAAAAAAAAD12ng3IWdp2sjM8FNiOfO4AAAAAAAAAAF8RkMtvIkosYlu-LUf2ASlgAAAAAAAAAIjuY93UXKVJbEQKc5k60p9wAAAAAAAAADN_jyWA7M6TwYIg6lYwMZzwAAAAAAAABhO6HJ1TMqgt-9RhpNc2eLLQAAAAAAAAAy84FX4Ibrkj4mG_iQy_xkVAAAAAAAAAAakGb2Tgcv7TAAnt4S5dlXcgAAAAAAAAAEJvETSNUFmQzhSgQRV87p_gAAAAAAAAAbe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAY-k1yErCu-jNwISnaM-KD7QAAAAAAAAAEFJbudZvNmbVnc0OPR39dIgAAAAAAAADTeQTk-J6y4I8N-SMXB7gKXwAAAAAAAADFoOxfz22MTLX1COavxYytHQAAAAAAAAD0AAAAAAAAV4sAAAAAAAAAHbvnW3Y94J258DDAjVJl721y2vxKHGSBegAAAAAA09Gb8DDAjVJl721y2vxKHGSBegAAAAAA09Ap8DDAjVJl721y2vxKHGSBegAAAAAA1DsP8DDAjVJl721y2vxKHGSBegAAAAAAgNq08DDAjVJl721y2vxKHGSBegAAAAAAgNmT8DDAjVJl721y2vxKHGSBegAAAAAA1GgH8DDAjVJl721y2vxKHGSBegAAAAAAX1jT", "types": "CAOIBQcD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "oafIGAFPzRwGNqlLpfTS0g"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2qOcEvvhuguaGYCmGWrnWRz1QAAAAACg0PkcEvvhuguaGYCmGWrnWRz1QAAAAACgxMzcEvvhuguaGYCmGWrnWRz1QAAAAACgt45cEvvhuguaGYCmGWrnWRz1QAAAAACEPcOcEvvhuguaGYCmGWrnWRz1QAAAAACEPh1", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Z_8-OcnbKRTWePRhYPa1qA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEPoG3DRiZKlMZ3sh3A8whkKQAAAAAAAAAZhbRa_Mv_nNX73QDH-O5j0QAAAAAAAABpfXtbF06M7ZwcaaNlV0uiIgAAAAAAAAAY0n7bnuaG-8sBjMSdabTn_gAAAAAAAAAXTQHHjILJSS1Y0hdQ8MODHQAAAAAAAAAChjAyoRprP-ATzdRzIqim_AAAAAAAAABP", "types": "CQMxBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "HDgxVgZHq5L-Wgfgl_YdRw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBbBcEvvhuguaGYCmGWrnWRz1QAAAAACOHLRcEvvhuguaGYCmGWrnWRz1QAAAAACFObNcEvvhuguaGYCmGWrnWRz1QAAAAACEM4XcEvvhuguaGYCmGWrnWRz1QAAAAACFxfr", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RkWfedJzAssL1nTDk2WiNw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcQxTPNhFsgl-8e8i61Q7phQAAAAAAAAAnwnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAEraW9aAtkVtkUuzUOoh_0wAAAAAAAAAAMrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVRzeRYnYEGaLjOWmtUX4zlwAAAAAAAAAEm2JZKeSPCj8ZbtEvWgLs3gAAAAAAAABgoTNupbAZc4qBrZLU_h-fogAAAAAAAABYLmvOcg0pOC8EpfUlMJwJ7wAAAAAAAABOoD19bmvIeXt5AY08cDQa7gAAAAAAAABTOr3A_uFtf7YBOMVYzqReaQAAAAAAAAAx5wkvNkSkY_0J71UHAZQE1gAAAAAAAAAGETOeqaIKM-TpplLP4iNFxgAAAAAAAAAwgNphDToOGt9PZTWSkkbjhQAAAAAAAAAgp2mJj3XFBkqZFEJ0xs_CngAAAAAAAAAdsTWJo6_vn8knb1fsiPDBcwAAAAAAAABT-0m6hBADt25_sY-zTDaOgwAAAAAAAAALuwIimYmRfOFHQGJdLBBUzQAAAAAAAAC6lqMTL_-yNkq8p4m30utXwgAAAAAAAABe4tuZpds1RwY_aRceEiCKwgAAAAAAAABkY9mQUdyp86jQhHqOid6GcwAAAAAAAABFbFNBCgHVi2ZK2yGNK4LXZgAAAAAAAACvzH45M92-bkfWcFOT2TBI0wAAAAAAAAASBwVeD9nkaf4MT5BmT8DTjQAAAAAAAABMOlG3pVqxe7ubhksaNvPHVgAAAAAAAAAm2CGtnJ07OTAIG4qsGNuVkwAAAAAAAAAFc6sNi_Eq6TRojSYoNgQCiAAAAAAAAAAFcySQ7RN2xLk3L53sfsn4-QAAAAAAAAAMUhjFWZQiZUbkhXOYOHdzcAAAAAAAAAAe1_JgcNyL_PAchgZJ1eUBTQAAAAAAAAAMJZ7XDmRGv-o1RsE1NP1PJAAAAAAAAAADVM-zYjHbw420CrRgZSSdCQAAAAAAAAAF", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yo9qkwTeVi6r3OgJvNCP1g"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQw7WOWZs79Wz210098loDzAAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARrSUSoohdnG6MdsfC9pID0QAAAAAAAAAGpY2MvdN80J-OPBSDYZs_8gAAAAAAAABSneOkLg7Birx-EWGBuoP5rgAAAAAAAAAaDjB9rnpR9s2OI-jlVfuXnAAAAAAAAADmNrikprALerrSkH1iKFm6zQAAAAAAAAAs_ui1AAIySrYc7ZeYb73nFQAAAAAAAAAMDbSG9xbs7jnAEiHiVrKb1AAAAAAAAACGHSSZPv-Jiv2fPLN9vFx42gAAAAAAAAELQKRyqWZIJ5_z0G07UwBzeAAAAAAAAABS3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAxJDeoMDAF4zRp8m9fg1ttGQAAAAAAAACBArHoFYyXVsZt6HAc7EjVzgAAAAAAAAA3u1A1mq4_NM3j2_15WwdIbwAAAAAAAACHp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAACjGw9H1l67yAnzlh8ZHG_VaQAAAAAAAAA47c7rgpFHY6rxkjCoiUY2PgAAAAAAAACWu1A1mq4_NM3j2_15WwdIbwAAAAAAAACH36qODdc5_sG38C3jmrtkhgAAAAAAAAAkuchUv6RRAwtUDrZKhO2h8QAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFtEy-A8lz0LlXhsYvqccKNAAAAAAAAAAURWZ9G1N69fMZnc8QMvYsrQAAAAAAAAA3-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAF0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFGSIhvfd8NP-AkgZ44Vf-SAAAAAAAAAAQ88-Z439dOdp5GpDKUJubowAAAAAAAAA_0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFRAxlOZQDYMSIxYBoCiYSlQAAAAAAAAAoREOZDMGevKohDmxWFx6eeAAAAAAAAACajBeiHwwOyRIapBbs5J2OjgAAAAAAAAB4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFwjbq14SDWW6edot3m-YXMQAAAAAAAAAcxMi3lfkibPU0NAhJ8DhGPgAAAAAAAABR0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFwcQ8sx0Hbh7lHQEqIQ-KgQAAAAAAAAAQclGseV0LGavUI1_g3b_OoAAAAAAAAAAwjBeiHwwOyRIapBbs5J2OjgAAAAAAAAB40LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF7Usw01CrpzkfVMMyw5vCegAAAAAAAAAQs7vZritmiKufeJDzCX_JRAAAAAAAAAARLHQIqPZNDAtBb5Urr3NFHgAAAAAAAAAu-Q25YN3mx81c5h9FyskSVQAAAAAAAAA-BZ6M98E7_jhQ9w9aCijThQAAAAAAAABjK4q5bjj7FsLI8bLo_hB_IAAAAAAAAAAY3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFu7zifqDaDmZ-4eDh2NyxxQAAAAAAAAAYXmcQ4_6bleDFvrRZ47Cq9wAAAAAAAAA73G7WvpXqPGO04rbAV9CJtQAAAAAAAAAl8ZRk8SyYMUcoYIl9aB0UjwAAAAAAAAAp0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdGrJ7brreNfhV4KADjvV8QAAAAAAAAAMM_MfJrZLrX3P0R0dWrP49AAAAAAAAAAL0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFGteHJRmtGt9tBprXMjfNSgAAAAAAAAAYDkUb3XtVJF4DvOzLdzKoEQAAAAAAAAAi25mp98L6MrKhqE8ccc5QLgAAAAAAAAADhAHkihhV-QBviFisHj04vAAAAAAAAAA4dvXvZeuLUdI7V9EmrQpkSQAAAAAAAAA9z2Bohc5r8gi4Vp8vLyNMbAAAAAAAAAAUDPiMQCkPw5sdCJLKXvan-gAAAAAAAAAJBLf2vQ7pSIJAS1WNVmuyJQAAAAAAAAALTeHsdsLU8lMl4hod-ZJtBwAAAAAAAAAA", "types": "CAOLBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OOH_o1fUWzmMBH2LWuNmNA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA7PmG8DDAjVJl721y2vxKHGSBegAAAAAA7PTV8DDAjVJl721y2vxKHGSBegAAAAAA7Opc8DDAjVJl721y2vxKHGSBegAAAAAA7MU48DDAjVJl721y2vxKHGSBegAAAAAAgPR98DDAjVJl721y2vxKHGSBegAAAAAAgN4a8DDAjVJl721y2vxKHGSBegAAAAAAgNmT8DDAjVJl721y2vxKHGSBegAAAAAA1GgH8DDAjVJl721y2vxKHGSBegAAAAAAX17W", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "G856X2brPaMvQKpMNNqIQg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnAydMRjIz1OdcUN0eWHfUfwAAAAAAAAAd4W76RwUjGcgIjQApiAJJHAAAAAAAAAAFgZgYcEFO3c95J0_kRNRWOgAAAAAAAAAGOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB42BUy3BbkpnttyuMqLirigAAAAAAAAANOmzVUgwY22EPoqShuZpT1wAAAAAAAAABmE1ci0y85Ym-Dqw-Q5t-OwAAAAAAAAAEWgnWJF5xNWl_wwu7DvgTzQAAAAAAAAAE-OmtEGD-FWeU3vRNXPLxogAAAAAAAAAd6PDnpLs5LIM9SpjUeSu5BwAAAAAAAAAM4IIlAJ_QWDs41ERNR4mO_wAAAAAAAAC0wAR4gk273_ooOZdD1tA5fgAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJSYSSbioufiMK4TqEn24uLgAAAAAAAAAdIETnUMLdTY0X_27KY2cD_AAAAAAAAAAQXfH1sbSxEuiQC9e5gcEKzQAAAAAAAAAWlOwp8THaapDjttPXb9E-AgAAAAAAAACRIiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdgzv5ZcBM9qZL6-CtFKcz1wAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAABUqPeQ03nZ4m2CLoB308K-gAAAAAAAAAIVhlTljsBJDT98mVay1CuwwAAAAAAAAAFMeupuj3mN3g2ScGhhzmNFQAAAAAAAAF4iRdArD2BL-BvpLz4Pb_AYwAAAAAAAABIC_8b8QYLHmjQu9l_QeSByQAAAAAAAAAUpkqcXQWLIjtT71JtuIAr6AAAAAAAAAAG13EjbA0IjpuaU_N8fi-CjwAAAAAAAAAHwmGhlkvWzfTghgQ1sZAecgAAAAAAAADX5EcD-U0cxRtdESeN-UEmcwAAAAAAAAATuezlLZVYMF9cbBEbxdsDcwAAAAAAAABIgpbgHn7e4Kz5N3-pRcz_dAAAAAAAAABLr0viM1MkQFoluKwRuIJ7LwAAAAAAAAABFGycG9AEWPVJe5tbz77UPwAAAAAAAAASUJNt6Wr7juWI2oGMxpHwHgAAAAAAAAAc-1qdgNrxzH--duaVR1QSFQAAAAAAAACVSyklCBn51Vp_g9q3KLAvZwAAAAAAAAGvnD7QKbPeresstocfBtl0cAAAAAAAAAGPN2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAZE5r53-92up8rkLVW-WJnRgAAAAAAAABs-I0qeKDe1hMr58wzZHuN2wAAAAAAAADfbLRnm0K2LnF8O3sUIvVtEQAAAAAAAAAFYUqlosets6-rXKgChfDXoQAAAAAAAAAfnB7ASI-agyjwniBzr5SZ-QAAAAAAAAAfUxUrGKaPEq08l4l3816TpwAAAAAAAABeb_xouuKJL4pG8kohSeNIUwAAAAAAAABBsMxUjH933Dnrx5VGtrDpyAAAAAAAAABHck_MxLBdFaeX0Pe9TGo2LgAAAAAAAAAWRvgpC2THNLDZ9bIizRZhbwAAAAAAAAAQVA03thXQjqr1qC10qNXy4QAAAAAAAADLgS4BqKHRLy9ywAJxtWFusQAAAAAAAAEvfr4XAR94bkvR_VkpMkjQxwAAAAAAAAAHTZYG0O3Fq7DAPgmVpgfjHQAAAAAAAAAHcIw1KjOVhLu6JfffmCME8wAAAAAAAAA0HyBeZYPY4-mSUOFMq2R5wwAAAAAAAAA6YPFcZeD14PiXgdmeaRdcTwAAAAAAAAA3qN4Vqjijt0HHN8TkXT1dVwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAHs6vQ7EacG6CR4rzcFaNFEsTQAAAAAAATMv", "types": "CANIBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-jq7GZtW9ARGurxAr-_A5A"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFTajQRmOPdPxCSIVqxKN8mgAAAAAAAAABq6xr0eveECf8Lijmxw8LoAAAAAAAAAAxKLdsSpMCKySKDdCQ2KiutQAAAAAAAAAIU1KF65rnT5XtMlndoc_vRwAAAAAAAAE4omklHAPZnqPNJHwVpvh2vQAAAAAAAACrqwPQ_i5WGexQYU8q8eVTyQAAAAAAAABzoSoGUxBn_MfT_4Ncm-yGtQAAAAAAAABaAl_h9gC68463XnWmby4-QgAAAAAAAAAJWQoT5TvZ3eOmkl3OPEBMywAAAAAAAAAuPRgslp-mhiA259jp7eDUDAAAAAAAAAB6P8KXk_YkMAioYhgO5xbnPwAAAAAAAAAGh9RTRJ-fMkhaBb0sHV1CqwAAAAAAAAMECAhXwSkcgu2DqzZtJNny6wAAAAAAAAGd5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAMzcfKpbpAZN9qkm-T9sCmgAAAAAAAAAAgnuqNPzkuzBZWgJDmOY2XwAAAAAAAAAALumQIucIioKjldscxi712SAAAAAAAAAA_EKWhQ1NGJOd2rM9L7jxkPwAAAAAAAABVNDiNPs2SIuj4NddpL8knJAAAAAAAAAAC_OOeQuiXtvgynmE43QMbEAAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAHzEvQ7EacG6CR4rzcFaNFEsTQAAAAAAATk7", "types": "CAMdBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dh2FW9xWWT13Dt2euwStXg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi3MZ3CKaS4aU08RhYA19y5ITQAAAAACDjuSZ3CKaS4aU08RhYA19y5ITQAAAAACDgkGZ3CKaS4aU08RhYA19y5ITQAAAAACDf9dZ3CKaS4aU08RhYA19y5ITQAAAAAB9MVsZ3CKaS4aU08RhYA19y5ITQAAAAAB2nnMZ3CKaS4aU08RhYA19y5ITQAAAAAB2re_", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "o_Ot9q_vHiqyt6z_tKWMiQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALO-i40hQb92bY-JOhJrV2owAAAAAAAAAs6l-EHm0OnthNsvyaQcuYhwAAAAAAAAA4B0dgEMrPDFjx8i017hyU1wAAAAAAAABbYF3FgsmtJ5bq5eUQFvPU3AAAAAAAAAAe1MY1Nuqea_D-u-FFo2a_-AAAAAAAAAAly_zLcqsLm1pyxWcSerbeRAAAAAAAAAAclyFV4GQ8nA5PvKIS4z4KZQAAAAAAAAASL-p6HuZa7IZQ5P3VbWlkuAAAAAAAAAAAYq1Ak9_WYtjiRUK6jyz9agAAAAAAAHdO0rNuxKNw6YxtKvsF6kS_jQAAAAAAD-aS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMust6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuZy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMs6N6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtKD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAilCP", "types": "CQMKBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JrK5310tC2Ccq3nsp0xrsQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2nRYxe-SHgukLEpCkawSk1QWAAAAAAABkHs", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XsYoQXgK0CmO8QoDPuIIxw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAAGkuWcUG2bf_MgJpXpuAZivRAAAAAAAAAAx0nBVkJrBQHU_wusVG6_3KQAAAAAAAAB96PDTyNLwDP2GCrVJoblLzgAAAAAAAABI", "types": "CQM4BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bzvMC220qgZqnmhkzFWIZw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADHmXqXT4fd_WKeR1cE-hlLelCQAAAAAADHmkkXT4fd_WKeR1cE-hlLelCQAAAAAADHm4cXT4fd_WKeR1cE-hlLelCQAAAAAADB6QhXT4fd_WKeR1cE-hlLelCQAAAAAADQm1kXT4fd_WKeR1cE-hlLelCQAAAAAADQnNrXT4fd_WKeR1cE-hlLelCQAAAAAADQjwNXT4fd_WKeR1cE-hlLelCQAAAAAADQjKNXT4fd_WKeR1cE-hlLelCQAAAAAADQjhKXT4fd_WKeR1cE-hlLelCQAAAAAADQiNWXT4fd_WKeR1cE-hlLelCQAAAAAADQS7TXT4fd_WKeR1cE-hlLelCQAAAAAADQSvdXT4fd_WKeR1cE-hlLelCQAAAAAADQcOEXT4fd_WKeR1cE-hlLelCQAAAAAADQUQa", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9JcNV7-9fkG4ACBbl21Xuw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHZCO", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "qPH4wGFBjmjYSqbbbmP5Nw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACB-bsZ3CKaS4aU08RhYA19y5ITQAAAAABwBkRZ3CKaS4aU08RhYA19y5ITQAAAAABuJHsZ3CKaS4aU08RhYA19y5ITQAAAAABuJNUZ3CKaS4aU08RhYA19y5ITQAAAAABuJTzZ3CKaS4aU08RhYA19y5ITQAAAAABtFpzZ3CKaS4aU08RhYA19y5ITQAAAAABtnwrZ3CKaS4aU08RhYA19y5ITQAAAAABudBy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBUR", "types": "CQMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "pIsUknmQepKheS5IPa00NA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHfZKXT4fd_WKeR1cE-hlLelCQAAAAAACy8_rXT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-hZXT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy_VqXT4fd_WKeR1cE-hlLelCQAAAAAACzAHwXT4fd_WKeR1cE-hlLelCQAAAAAACnlJEXT4fd_WKeR1cE-hlLelCQAAAAAACnlu5XT4fd_WKeR1cE-hlLelCQAAAAAACnl_3XT4fd_WKeR1cE-hlLelCQAAAAAACnzWEXT4fd_WKeR1cE-hlLelCQAAAAAACnotoXT4fd_WKeR1cE-hlLelCQAAAAAACilGXXT4fd_WKeR1cE-hlLelCQAAAAAACh58YXT4fd_WKeR1cE-hlLelCQAAAAAACgUmX", "types": "HAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yIzHpDn2HhXgUQuzrujsvg"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXDNgtQ4kMk_MBWrPUAFqVnYywAAAAABqaCzgtQ4kMk_MBWrPUAFqVnYywAAAAABqac1", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-EQWBEcgcR4lPpbe8saRAA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAL4d9zx7j7aak67AnnUI1JmAAAAAAAAAAJDliY6tssVncRZTUK_C4ajAAAAAAAAAAMAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMSBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UKvXfIweVZx_3gQ8hWsreQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfrbcEvvhuguaGYCmGWrnWRz1QAAAAACE_KG", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "AeE_qy_HRFl-vgIeAYTtbA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAACz-CA2HwYxn7uXuJvRLWceDgAAAAAAAAACo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABbw7HSilaT6ScQ9DqRu4RYLQAAAAAAAAA-o8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABbw7HSilaT6ScQ9DqRu4RYLQAAAAAAAAAdzk_PAPIluouMAlyxqI2lSwAAAAAAAAALSt7lFjY3zfwOi_rfHJtWoQAAAAAAAAB7YY6rmsokuP0BKno7mbtScAAAAAAAAAAF19uHIkVsOWsXPhLw6Psn-gAAAAAAAABj", "types": "CQNKBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OKik8O5tB2uhKVm3roNZsQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFTajQRmOPdPxCSIVqxKN8mgAAAAAAAAABq6xr0eveECf8Lijmxw8LoAAAAAAAAAAxKLdsSpMCKySKDdCQ2KiutQAAAAAAAAAIU1KF65rnT5XtMlndoc_vRwAAAAAAAAE4omklHAPZnqPNJHwVpvh2vQAAAAAAAACrqwPQ_i5WGexQYU8q8eVTyQAAAAAAAABzoSoGUxBn_MfT_4Ncm-yGtQAAAAAAAABaAl_h9gC68463XnWmby4-QgAAAAAAAAAJWQoT5TvZ3eOmkl3OPEBMywAAAAAAAAAuPRgslp-mhiA259jp7eDUDAAAAAAAAAB6P8KXk_YkMAioYhgO5xbnPwAAAAAAAAAGh9RTRJ-fMkhaBb0sHV1CqwAAAAAAAAMECAhXwSkcgu2DqzZtJNny6wAAAAAAAAGd5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAMzcfKpbpAZN9qkm-T9sCmgAAAAAAAAAAgnuqNPzkuzBZWgJDmOY2XwAAAAAAAAAALumQIucIioKjldscxi712SAAAAAAAAAA5f15ZZuvJposXWOcmbKQgxAAAAAAAAAAftL230chqNUuroXAS-gtapgAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBAZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMoavQ7EacG6CR4rzcFaNFEsTQAAAAAAATsz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSg76tVKI4mSYDEJ-ABAIpYXcgAAAAAALoLB6tVKI4mSYDEJ-ABAIpYXcgAAAAAALoE66tVKI4mSYDEJ-ABAIpYXcgAAAAAAVT5r6tVKI4mSYDEJ-ABAIpYXcgAAAAAALMvJ", "types": "CAMiBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3xRTmmUGRAUMAXusP6hWQw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB8_Hwz5k14PsCcDvFyUC1kmlV3QAAAAAB8_Xkz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiQ6z5k14PsCcDvFyUC1kmlV3QAAAAABHpn0z5k14PsCcDvFyUC1kmlV3QAAAAABHpp5z5k14PsCcDvFyUC1kmlV3QAAAAABHeJQz5k14PsCcDvFyUC1kmlV3QAAAAABHdQDz5k14PsCcDvFyUC1kmlV3QAAAAABHeGEz5k14PsCcDvFyUC1kmlV3QAAAAABG_LBz5k14PsCcDvFyUC1kmlV3QAAAAABHClvz5k14PsCcDvFyUC1kmlV3QAAAAABF93J", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bo5HP0vwnRoASCXAZGTlKg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFGWjujT1s7sRuQIwkyxwy1QAAAAAAAAAEr9q6Sp77TFNIj0PxahNFPwAAAAAAAAAM4iaBbZIIwXRBOYMSVscz2wAAAAAAAAADf5pCmW13zl5OWUDLG_ClrwAAAAAAAABNynHqfILVzOOqJs-5yJf4gwAAAAAAAAAeU2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-_XkMI8xGR94JL4lQtb9x_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAAthtvgcgAW24Rn4q34GnPYLQAAAAAAAAAFQNZzHGnqskrqlEo3XdkqqwAAAAAAAAATlH7EdNhUWMEu-Xw0OnFCsgAAAAAAAAA6PT8Qhq3pE7S7UQ5pBb6dmAAAAAAAAAAOpKLBb0_sPdt_IxvNqtQh6AAAAAAAAAACD8h50WvRJdBg-tXDetFXDwAAAAAAAAAQLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAAACkM36S6dhzscRpMd_tais4QAAAAAAAAANFZzIgNzHRBST9tkBv-Hj5wAAAAAAAAA1wUZIVedHlYEif3XTrW4qUgAAAAAAAAAGHVAzZrPoCZr5Mjxtu7E5bwAAAAAAAAAFnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYv0o-SuFa6Ydo5LzhQb4MjgAAAAAAAAAGkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAg7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAW-q9yc6LqB9jJnwfxcnsPAQAAAAAAAABfwbtJcWeJtbauPpFOHZDjTAAAAAAAAAAM756-4PT13Jk_CirPtg_SfQAAAAAAAAAEkM36S6dhzscRpMd_tais4QAAAAAAAAANFZzIgNzHRBST9tkBv-Hj5wAAAAAAAAA1wUZIVedHlYEif3XTrW4qUgAAAAAAAAAGHVAzZrPoCZr5Mjxtu7E5bwAAAAAAAAAFnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYv0o-SuFa6Ydo5LzhQb4MjgAAAAAAAAAGkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAg7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAW-q9yc6LqB9jJnwfxcnsPAQAAAAAAAABfwbtJcWeJtbauPpFOHZDjTAAAAAAAAAAM756-4PT13Jk_CirPtg_SfQAAAAAAAAAEkM36S6dhzscRpMd_tais4QAAAAAAAAANFZzIgNzHRBST9tkBv-Hj5wAAAAAAAAB4sR4qdLhnoIuT0SC7K04RWwAAAAAAAAAZviZ5ADYbm1GIbrnCgwc2VQAAAAAAAAAGnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYQMiTLH0MGx0uAE3snN1YTQAAAAAAAAADle3dvr5GnvRtS1OdN5yIVwAAAAAAAAADkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAg-q9yc6LqB9jJnwfxcnsPAQAAAAAAAABfwbtJcWeJtbauPpFOHZDjTAAAAAAAAAAMsUC9X_MZJWkkjNG4uRsc4AAAAAAAAAAEkM36S6dhzscRpMd_tais4QAAAAAAAAANFZzIgNzHRBST9tkBv-Hj5wAAAAAAAAA1wUZIVedHlYEif3XTrW4qUgAAAAAAAAAGHVAzZrPoCZr5Mjxtu7E5bwAAAAAAAAAFnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYv0o-SuFa6Ydo5LzhQb4MjgAAAAAAAAAGkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAg7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAW-q9yc6LqB9jJnwfxcnsPAQAAAAAAAABfwbtJcWeJtbauPpFOHZDjTAAAAAAAAAAM756-4PT13Jk_CirPtg_SfQAAAAAAAAAEkM36S6dhzscRpMd_tais4QAAAAAAAAANFZzIgNzHRBST9tkBv-Hj5wAAAAAAAAAoSNXtf-Jqv_bI3ffaDV5u3AAAAAAAAAA2aiYAeaOefGgb8Ek1UStS_gAAAAAAAAALDB2VzjdOL-xaQLw1M8sZdgAAAAAAAAABvFOaMH-CkqySBUhK-p2A5AAAAAAAAAALLnxtv0aoKpVidKfsnYen4QAAAAAAAAAA", "types": "CANTBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Z9auTnUtgCLPwKMpBB4I5A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mlNXT4fd_WKeR1cE-hlLelCQAAAAAAC-nbQXT4fd_WKeR1cE-hlLelCQAAAAAACmJaO", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UGDuq1XZODb02226cKaFdw"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp2HVF-fC6bGu1PSwJc2kzOgAAAAAACHAL2HVF-fC6bGu1PSwJc2kzOgAAAAAAHHBe2HVF-fC6bGu1PSwJc2kzOgAAAAAAHEJ82HVF-fC6bGu1PSwJc2kzOgAAAAAAHEEy2HVF-fC6bGu1PSwJc2kzOgAAAAAAJcMj2HVF-fC6bGu1PSwJc2kzOgAAAAAAEKYD2HVF-fC6bGu1PSwJc2kzOgAAAAAAEKFP2HVF-fC6bGu1PSwJc2kzOgAAAAAAEI2W2HVF-fC6bGu1PSwJc2kzOgAAAAAAEIU_2HVF-fC6bGu1PSwJc2kzOgAAAAAAEJbZ2HVF-fC6bGu1PSwJc2kzOgAAAAAAEI2W2HVF-fC6bGu1PSwJc2kzOgAAAAAAEIU_2HVF-fC6bGu1PSwJc2kzOgAAAAAAEJOH2HVF-fC6bGu1PSwJc2kzOgAAAAAAHSrO2HVF-fC6bGu1PSwJc2kzOgAAAAAAHSPM", "types": "VQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NgLUpYh7wqTvP5UPjb3lEw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mn2XT4fd_WKeR1cE-hlLelCQAAAAAAC-nUyXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FgMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "T2EnrjxsTdnnpLXEdoM0Hg"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiQ6z5k14PsCcDvFyUC1kmlV3QAAAAABHpn0z5k14PsCcDvFyUC1kmlV3QAAAAABHpp5z5k14PsCcDvFyUC1kmlV3QAAAAABHeIyz5k14PsCcDvFyUC1kmlV3QAAAAABHc_U", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7sw2pjFKONSht5r4eb5rJw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAADdMQClF0q6pfmgxLvEq3gXXAAAAAAAAAABCXAz1tIIc26xoKV7GpujkwAAAAAAAAABH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAFIkUJgVxIXgDBTomuPsxvCVwAAAAAAAAA1m140cnmnDMXwCTqH-lotHAAAAAAAAAAE", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hh888r27k0OnR6ZBdr_d_w"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66OFZ3CKaS4aU08RhYA19y5ITQAAAAAB610wZ3CKaS4aU08RhYA19y5ITQAAAAAB6u8TZ3CKaS4aU08RhYA19y5ITQAAAAAB429dZ3CKaS4aU08RhYA19y5ITQAAAAABw4LlZ3CKaS4aU08RhYA19y5ITQAAAAABw4CuZ3CKaS4aU08RhYA19y5ITQAAAAABw3M0Z3CKaS4aU08RhYA19y5ITQAAAAAB60oRZ3CKaS4aU08RhYA19y5ITQAAAAAB60d_Z3CKaS4aU08RhYA19y5ITQAAAAABx8qoZ3CKaS4aU08RhYA19y5ITQAAAAABx7tCZ3CKaS4aU08RhYA19y5ITQAAAAABx7RO", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "M-9VUFVpS9caukeGa-Cf9w"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAABAHHYxe-SHgukLEpCkawSk1QWAAAAAAAA-srYxe-SHgukLEpCkawSk1QWAAAAAAAANKmYxe-SHgukLEpCkawSk1QWAAAAAAAA0MVYxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQL", "types": "CAMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xh-hyCVzRByf2920YIxjrA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o9IXT4fd_WKeR1cE-hlLelCQAAAAAAC-pSEXT4fd_WKeR1cE-hlLelCQAAAAAACmJlTXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUTFXT4fd_WKeR1cE-hlLelCQAAAAAAChz7c", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ebUgTadpLb8gm1e8lsQWbw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABF0kYxe-SHgukLEpCkawSk1QWAAAAAAABF7IYxe-SHgukLEpCkawSk1QWAAAAAAABGF-Yxe-SHgukLEpCkawSk1QWAAAAAAAA1GkYxe-SHgukLEpCkawSk1QWAAAAAAABqfM", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "uWu41ZyoAHuWSbKYNQRsYg"}} +{"Stacktrace": {"frame": {"ids": "NH411-U9ZJbhx9KntPIOtAAAAAABbrD_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimti6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnKXQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAirCv6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "AQMOBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3BMMt8-EDfuJSb11EqVZGQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAAByH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAABJkUJgVxIXgDBTomuPsxvCVwAAAAAAAAA1m140cnmnDMXwCTqH-lotHAAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FtCoBCewy-2EZy7jCsvWPA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAA", "types": "CQMFBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DPmaEuSvgw_bYOsbepNixQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAABcQrw_bSROFZCKPRirqN5crwAAAAAAAAAEmNKQ_cGBX-X-PxTw057WHwAAAAAAAAAoPe3ctc9W4J1u_ZCOerqNzAAAAAAAAACGnZmkelHuL2rN_AY8H-OMEgAAAAAAAAAFgmjUzsxRLEujWJFPXkncMgAAAAAAAACLzw0wKeXSScV9zb0GbnSg3gAAAAAAAAD4xojp5VBQ5xwqQiCbnXCnEQAAAAAAAABJUzpT8KmlTneCrZW0Xa3m6AAAAAAAAAEgwELFL8jGCRMErF4_7iFL_AAAAAAAAABJGWaNS7Aannj1ZssQUxZReQAAAAAAAAGHgDRAAy1IwcF0IR_YOLzWjwAAAAAAAABEgw-R6elvRCziXgbmYn0NGAAAAAAAAAAGStdff30sTwwMW3207S4hcQAAAAAAAAAOrCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAENAHbgjE1mrEUxDWK3HkjL9AAAAAAAAAAXIIH8JfYmIZybsjMwsvSZmgAAAAAAAAAE4AOC1otNYKhZE8ncURFrlgAAAAAAAABdqcU64j9X3Y0wz1S1Xdh05AAAAAAAAAAA", "types": "CQMfBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wkNFgmgAHEeZwvM9ZbPDWg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuYNwZ3CKaS4aU08RhYA19y5ITQAAAAABt0COZ3CKaS4aU08RhYA19y5ITQAAAAABtwT0Z3CKaS4aU08RhYA19y5ITQAAAAABtFpzZ3CKaS4aU08RhYA19y5ITQAAAAABtnwrZ3CKaS4aU08RhYA19y5ITQAAAAABudBy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BwMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "v634lG8ScPFYcBIWkjNICQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAACz-CA2HwYxn7uXuJvRLWceDgAAAAAAAAACo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAAAKzk_PAPIluouMAlyxqI2lSwAAAAAAAAALSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAAB7YY6rmsokuP0BKno7mbtScAAAAAAAAAAF3jzoaxecTMpMeDCGDwy-RgAAAAAAAAAE", "types": "CQNEBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gUXMaRB9Rk_sq6bdsBOl_w"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFVXw", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wSbB6NvdX_S4sjuO5XbtUg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw2HtXT4fd_WKeR1cE-hlLelCQAAAAAACw1EEXT4fd_WKeR1cE-hlLelCQAAAAAACkHGIXT4fd_WKeR1cE-hlLelCQAAAAAACkMsNXT4fd_WKeR1cE-hlLelCQAAAAAACkIDEXT4fd_WKeR1cE-hlLelCQAAAAAACkHP8XT4fd_WKeR1cE-hlLelCQAAAAAACkHMYXT4fd_WKeR1cE-hlLelCQAAAAAACkHpEXT4fd_WKeR1cE-hlLelCQAAAAAACkHj_", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4E_lG1hn0ttWHrWqGlQaqw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADSZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABCAZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAGrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAuU-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABTHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAIiuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAWyQLW28sZ3rpLXAl8a-XdLgAAAAAAAABnWIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAIKCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAIQRW1om0CtcYaE4B8xaBEggAAAAAAAABGAZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYlCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAACNHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABuHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFP1rXbpjewie805zI0BHMvAAAAAAAAAAILN3NdhSYKxRbaqnM5W9FBwAAAAAAAABpR-HVaw3JZ2IsajBZdLbC8gAAAAAAAABKKnKBdeWKnQ8CH5bzvx0i6AAAAAAAAABK-QN0Lznzz3LjWKMZzZD5rwAAAAAAAAAIeEXFmSmLstwTaBBVp_eSTgAAAAAAAAAFHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFeS9qs83Ev5DGIkgRm0VL-gAAAAAAAAAUem8QMqpxX9eEmdxu2AmtFQAAAAAAAAAPTR0CnebfBTQ0MB6Lw8cZBAAAAAAAAABv8kz0sRC3Fb0ahbrci4PVAgAAAAAAAAAYGgYuOINmwLJxsjP-M2E9cQAAAAAAAAAXjIXiJ_3QIrjPxWXJm0vTUAAAAAAAAAAGbPdR4mcydIF6d5I7BNRoXQAAAAAAAAAHotkeOgHMDZdOlA7GywTS3gAAAAAAAAANeBe2TV8VA2V7lLyhiCvcHgAAAAAAAAAEclNKHmin0SttGhUDhj4qagAAAAAAAAAH68m2CwWM-Ledaj5WNl9lhAAAAAAAAAAqwMYFsNM0woNzFGwcp47vbgAAAAAAAABGEh0v14Wp9mB3u5tYha0hzQAAAAAAAAAmwSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFbhnM-182eA1jGyBQl8pMugAAAAAAAAAU4pL5iWdAziHKM6VzojymqQAAAAAAAAAGX8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0g4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAWMCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc5430MZlAMqI5SXd_yT5HRQAAAAAAAABcHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFN7LIGw1erb09TPWj8M9ehwAAAAAAAAAYwr21gCsicBxbZw2IJaNDDgAAAAAAAAAGEh0v14Wp9mB3u5tYha0hzQAAAAAAAABDwZ09eiIX1XgrymZWZ5BnrAAAAAAAAAAH7kiwTAFzycT-wgooymyU5QAAAAAAAAALLFiOeIpjbAGuoHCaoCuGBQAAAAAAAAA476ZQdAl2euBIN6YcqNHYDQAAAAAAAACQfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABP6WZ8beuV9qvYQN2_0rUbQAAAAAAAAAdWETDtAYgv6Jkvw6xLkpLwQAAAAAAAAAFzTg-1BaqPve5RYYrhWqKBgAAAAAAAAAHeYOPSEoq5FFmdpvYTsQ9xwAAAAAAAAHE2u2jPMdq36h9BOg_kllzLgAAAAAAAAAFajJdsnOIBpdo6hxvZuINSQAAAAAAAAAImSBnbtksrVvKstlIID71bwAAAAAAAAAUHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF4JxgAcphLAEsoWC3fPoUUQAAAAAAAAAMneQ9aDSiXyM-ZtdfoiCRFAAAAAAAAAAGXFsyX0Vq94TuMs7Bc44FAwAAAAAAAAAFhT_GFd-d817AZqi9jIee6QAAAAAAAAAUx8ERETcapIt78IXSEO8DRwAAAAAAAAACaLOl6FCWtZ16Qk1Y0IIBGgAAAAAAAAAG_CTrWCBcF1yntIOzlzRqGQAAAAAAAAAP1HXZZ713KyUPF_V7-YXiGAAAAAAAAAAG7qKsj4xn8s1AMSf99ASSjAAAAAAAAAAYt5ImPROd9wzf5BDFezVfygAAAAAAAAAG8AFkU9EDwekeQG-iHB-52AAAAAAAAABXTY-BHg3kiwMpijAIqZbwIgAAAAAAAAAvo6177iuGkV2SA7F3ufehBwAAAAAAAAACZAmbxyNnMJsV4ZK87y2R2AAAAAAAAAAFxcBT3w2BkkvHXiaA0-Mm3AAAAAAAAAAE", "types": "CQOiBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "aZs4jsKGhSOg3hYRAefOmg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAACEjtkcEvvhuguaGYCmGWrnWRz1QAAAAACEj7McEvvhuguaGYCmGWrnWRz1QAAAAACEkZscEvvhuguaGYCmGWrnWRz1QAAAAACEpGL", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "A37WFlc27IDax1__xu-KJA"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABFvIYxe-SHgukLEpCkawSk1QWAAAAAAAANUzYxe-SHgukLEpCkawSk1QWAAAAAAAANPkYxe-SHgukLEpCkawSk1QWAAAAAAAA0OOYxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RI-fDGVL6Ony9upvuhAbeA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmrvXT4fd_WKeR1cE-hlLelCQAAAAAACgbs0", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fbu62ZoIJ7ygVD1cBxwLFA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAAAtt2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAHIG1OnoGXN6zXJZoQUHRmxAwAAAAAAAAAxYEThj3UEuGl2wDiJSq9vSAAAAAAAAADmjckGVFRAvWURR3kz1QpfwQAAAAAAAABZQUM3v4ew-jMVuKkpISsPEAAAAAAAAAGi6iNgA9fR_bPjg3gsO7FxQgAAAAAAAADeWKOnV4dhtUKFY7wtM7-RyAAAAAAAAABRH2QTzkKMf4VE2_HyfX9GywAAAAAAAAAOUX0maaM_jFdAmFMbhLpaSgAAAAAAAAANVydXcSmOqICsVxLpiPFyCAAAAAAAAAAhxWXbvqcob2cyNB-_TJKbYQAAAAAAAABZ2RFqiy_TIF9Ivmg849R6KQAAAAAAAABA9sYnFbigFrf_-fozodwm9QAAAAAAAABxqlBu--gn4lPakFOOUFVXUAAAAAAAAACDC28fEz-7x-SIpNyW4Bp0FwAAAAAAAAAJwaGuiCnZHjaq2zEddS0PTAAAAAAAAAAEhi5_JyewpBCnAeIUIUefnQAAAAAAAAANsZ-zITk7o3FzWojUIf0L0wAAAAAAAABy-AtWccoZa-O4zqWFUd2OjQAAAAAAAAAaF2jodMGv8PK12gxqypqfdgAAAAAAAAAj", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7oirPXmDHUuITFlC6IEPLQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiF-kXT4fd_WKeR1cE-hlLelCQAAAAAAChWmoXT4fd_WKeR1cE-hlLelCQAAAAAAChz7b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_NQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaQ66tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZmt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKTe36tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ5Qy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ4C76tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ0CJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYK2", "types": "EwMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "VXd7vps3s3paQw7JLyXRiA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFlYu", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "POjLBRcetnRZI7sxLcuaIg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYChGc_KlbDChxhbLYz-xpPwAAAAAAAAALOmzVUgwY22EPoqShuZpT1wAAAAAAAAAByCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIFxUii1Qg0ODP7PNbShAMtgAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACXDgohratZUQwpKekym6X1AAAAAAAAAAEw6kzV8D69jasat-u2vkUCAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAB7mSpmTS_M_7gsQqQ-Ipk5OgAAAAAAAAAW39Gbufo2_bMKjFgin1seqAAAAAAAAABz5kQrz31-vtpLpHkSNl9lFwAAAAAAAAGVi4D5xJNscGSiKO3_W_aYYwAAAAAAAAAeaRrOrNITdHBtU0ooj817_wAAAAAAAABWJbUgkc8lBw5j0OD5NYjMWQAAAAAAAAAUtAHJgxpCGplfQad29NnOaAAAAAAAAAASYX8RhXzR8HpQ5_xqrCNFGwAAAAAAAAAKCa-b22O8l8GPetQx7dVJogAAAAAAAAAVYX8RhXzR8HpQ5_xqrCNFGwAAAAAAAAAKYX8RhXzR8HpQ5_xqrCNFGwAAAAAAAAAKniAUD34hYKPNQKGi6-iIXAAAAAAAAAALrVaVDCkAMgbM8k1PcJk7MgAAAAAAAAACywctG_sMzzXt8DhXRU3jGwAAAAAAAABADSzApI2QrzwHok_nBxUbCAAAAAAAAAEMzVl_JFLMBO6_XcJyl0ewxwAAAAAAAAAjV4a2SdmvejjWRd6P73Yk6wAAAAAAAACNDYrBcnSnxKpDp2GRNDxXQAAAAAAAAAABQN3Ei4y0jjQeG3JY3GoqzgAAAAAAAAALGLgvZduLXzxu8BO2Sf5iiAAAAAAAAACEzc4puyTIf2D2serBtFiuqQAAAAAAAAByqH9UPrg4huZ8XQq2XLmR-AAAAAAAAABmM_3_jtmQdZcF_4BETyfPhAAAAAAAAACBiT5yda9K-jxr01ayRGHOsgAAAAAAAAAK9YfSdWjTHtXOXD-P-YJ-oQAAAAAAAAAj", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fYcWIiOhl747dksEpAA-Ow"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFVZ1cEvvhuguaGYCmGWrnWRz1QAAAAACFWXmcEvvhuguaGYCmGWrnWRz1QAAAAACFWaA", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "I1Y9Ni9I5xwaBA-6EzPx9Q"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAY9Yx-v1soY3obBM9enH73ogAAAAAAAAAEhUTCUJp2TXU8cmsY31FJGAAAAAAAAAABHXMKVH0vYlc6MTlUxPh-OgAAAAAAAACpXpP7XQ-NdKuBv70dYM6FnQAAAAAAAAAMExOLHpMtDJgNCMVUQOkZYwAAAAAAAAAcpI3Jd4BkOvMo6mjauYfS1gAAAAAAAABACrlW_hPmVEABk0TgZmUnuQAAAAAAAAGjrXkHFJHXlVwu4t25QPtmYgAAAAAAAAABYQ_8e8jbfnaSxzTbLcpNZQAAAAAAAAFiDcQMgtZQLqwr_0Ox7dSTjAAAAAAAAAC85ClizBEH2YtrmYjg0ZZ1kgAAAAAAAAAFfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJWtYwpXZiYRFgEt1nxr5kLwAAAAAAAAAcj_szotBjFArpC5TNR-8gUQAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASPc_BexFq94TuMog9IsXVUwAAAAAAAAAFSZAt-g5Y9rkRhquz_kA7tQAAAAAAAAAg8T1U1Mk0_z7jRWhB49ZqDAAAAAAAAAAF5l-2W9KB4tO_4MUXJhjp9AAAAAAAAAAQ_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAAN7agwHperI1lpO6HjOmatbgAAAAAAAAAGsfKOGWw8x1l_9VhHo5GlhQAAAAAAAAAiHku4pI6Lw7HktwK1VtZaBAAAAAAAAAAI8nTT-Je437OkQHu_fYo0aQAAAAAAAACg_p4kJuFp1k7IBcujKZAxJgAAAAAAAAAGlNbJGsljCsSa7_hADBMYjAAAAAAAAABqk6L8sVEMOOa2vwEgI2H-PQAAAAAAAAAUNAjnT1vveGWXoLNkwmxpQQAAAAAAAAAGTehVpU4OSSIJc9O233JRogAAAAAAAAAA", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JVG5AAkGigYjBzrsDQpvDQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAACLHmuH5pCGXma5ToZjJwiZHAAAAAAAAABnS4DQ5gj04oVPTd_cZvriwQAAAAAAAAAFcoLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAACbEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAF45C-Q8d2gQJCMIvUacUWRQAAAAAAAACW", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MzVhQaF_xkZomLV8IvrG-w"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMust6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMurZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALX6y6tVKI4mSYDEJ-ABAIpYXcgAAAAAALX4g", "types": "CQMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "y2sC122UNoSmdbZIC3feRQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCPYxe-SHgukLEpCkawSk1QWAAAAAAABKcTYxe-SHgukLEpCkawSk1QWAAAAAAABJhz", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "03mWsYqppFddOnCKyEnBdA"}} +{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI7B_NxRB-tFVbAaTDiew0fwAAAAAAdyiE7B_NxRB-tFVbAaTDiew0fwAAAAABTOLj7B_NxRB-tFVbAaTDiew0fwAAAAAApa927B_NxRB-tFVbAaTDiew0fwAAAAAApZuD7B_NxRB-tFVbAaTDiew0fwAAAAAApVxh7B_NxRB-tFVbAaTDiew0fwAAAAAApVpW", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "E1AUluavEDFWSryJb3xLzw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QiRcEvvhuguaGYCmGWrnWRz1QAAAAAD-UKVcEvvhuguaGYCmGWrnWRz1QAAAAAD-VybcEvvhuguaGYCmGWrnWRz1QAAAAACH4WncEvvhuguaGYCmGWrnWRz1QAAAAACH_Y6cEvvhuguaGYCmGWrnWRz1QAAAAACH7zVcEvvhuguaGYCmGWrnWRz1QAAAAACH7RxcEvvhuguaGYCmGWrnWRz1QAAAAACEKlkcEvvhuguaGYCmGWrnWRz1QAAAAACEJbl", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FJfhaknPBtFc-5rp-LqD7w"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVEDYyx-zRWlBHMYS8RkGZ2wAAAAAAAAAEdymPrMwSHJkE00arRNB68AAAAAAAAAAUu_5zCMK3PLNUfmu5e0wjpgAAAAAAAAB2ac8L5UaM7hx6_7ogYUjJpQAAAAAAAAALAt2XjH9VGC3bb_7sv7ixNgAAAAAAAACJw4Cq1cfo2BosL5j6RghC2gAAAAAAAADfqVud9aAxlVfNdghSN8mVawAAAAAAAAARcPknbPYx0jQL0_yL-rDiBQAAAAAAAAAHTJokhObG_7GMDQXtJjQRzgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABNX2GurXP9eWlHwN0fLlalwAAAAAAAAAM5E3RifhwtkkbQvQxmdbzmwAAAAAAAAAGhzLOxaKxWQ8hHeWUK-EOLgAAAAAAAAAIbsyDek069Ex-p_WmJk4qUwAAAAAAAABmdRwl39wiwpK9-zrDh4fLcgAAAAAAAAABJIJ67u_XI4-jnSyBIeegBAAAAAAAAAAIeOXjDtmISDDtSL4dEzZt-wAAAAAAAAAD_6rkq2S7o8rMRQJ9AofzJAAAAAAAAAC-7NQKJ0eHP8J4hISaRMWwxQAAAAAAAAATLLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABYEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADhxwZcfN4LHw1qjCxK4B5WXgAAAAAAAAAP1QlYH0wyslTnvnZNFQkhKgAAAAAAAAAMGO1QDVqG-4CNnMRn2v_9VAAAAAAAAAAdu39hB2o_bkkn64I33Zf2OAAAAAAAAAAx6KM6RK-sq5wYpyjnMfBa7AAAAAAAAAAsxLOLXg5EKZgSVcI5Dw46ugAAAAAAAAC40LGXmFocz46kL18OXWxszwAAAAAAAAA1cuyNWlZFQkabnqdPXO_rXQAAAAAAAABNSlb8MNVKIFfE9HJqtN3BhwAAAAAAAAAAWpojVIMMfjg1gPX4CFe0BAAAAAAAAC1uHt2yyHtMhQP9uhMxLoNAEgAAAAAAAIuLHt2yyHtMhQP9uhMxLoNAEgAAAAAAAIB6", "types": "CAM0BQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5IGmcJX0Tm7Da7pyfAm0ow"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHpmIz5k14PsCcDvFyUC1kmlV3QAAAAABHpdEz5k14PsCcDvFyUC1kmlV3QAAAAABG5jvz5k14PsCcDvFyUC1kmlV3QAAAAABG_e9z5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "CwMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6-iOd23a790HEXq9WXifNw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_-Qx-pCy53U7YabuA5eb0fAAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAcpSIXlNYnJYwCILAJFTEzSwAAAAAAAAAGTyuf4RNGIxt-ueaCsLj22AAAAAAAAAAXvSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0qlujNL7db72ZwWHkSPq1iAAAAAAAAAAa8tJujVK0pdTWlucWIQYskAAAAAAAAADWSXFZShc93P7Br4wzVi_TSwAAAAAAAABGl8by2NZ7WjCFmKmn5LkVDAAAAAAAAABNJj6ja2Wbkf1_R1a9nVWcUAAAAAAAAAEpAIW-lPQXo1TdAE_hNw_PqQAAAAAAAAAEaDG3558gasz8z0RSX2ge7QAAAAAAAAAEHJqIGeZuYXQ1QAO7hC-CpgAAAAAAAAAwz3OVwE39ldWnCO3e3J2ChQAAAAAAAAAXvNIlRmFlIZi4eEeFbJkdJgAAAAAAAAA1LtwWMtOCVYMwVl8TS_MduQAAAAAAAAAIPxKXTV4MDkHtmEvOc2iKdAAAAAAAAAAFOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOEnRoHyZazasm_zTjL5tnOgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMfDpp6LgRqCGeGjs7cnnwItcAAAAAAADsp46tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkGO6tVKI4mSYDEJ-ABAIpYXcgAAAAAALyil6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUXpp", "types": "CANFBQIDDAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6CiTG5-LDOns23hoVPtyZg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAABCwrYxe-SHgukLEpCkawSk1QWAAAAAAABHEW", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TS6C_OqZhD7mkpwo4uvc2g"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHbaI-7FSPUFvGFUkGA6jlppywAAAAAAC0ivYwxnBMtVSfJhocgnI0WgmAAAAAAAJWhYYwxnBMtVSfJhocgnI0WgmAAAAAAAJUbsYwxnBMtVSfJhocgnI0WgmAAAAAAAF8f5YwxnBMtVSfJhocgnI0WgmAAAAAAAGCd9YwxnBMtVSfJhocgnI0WgmAAAAAAAGAG6xFA0V1dCXRoFBkiljWo8aAAAAAAAC5uDxFA0V1dCXRoFBkiljWo8aAAAAAAAC5qal5FZ1ntrBTGZUQPXJtfAlAAAAAAAADxYl5FZ1ntrBTGZUQPXJtfAlAAAAAAAAGpkl5FZ1ntrBTGZUQPXJtfAlAAAAAAAAT2jl5FZ1ntrBTGZUQPXJtfAlAAAAAAAAYjLl5FZ1ntrBTGZUQPXJtfAlAAAAAAAAYetl5FZ1ntrBTGZUQPXJtfAlAAAAAAAAZbjl5FZ1ntrBTGZUQPXJtfAlAAAAAAAAZF9l5FZ1ntrBTGZUQPXJtfAlAAAAAAAAVYk", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "S0AgGW17HLWhUTiG7kGXPA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjD5cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACHQtg", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gqOeBsFKwbfOrCtYQX86QA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eaUcEvvhuguaGYCmGWrnWRz1QAAAAAD_AtNcEvvhuguaGYCmGWrnWRz1QAAAAAD_CcdcEvvhuguaGYCmGWrnWRz1QAAAAACGImTcEvvhuguaGYCmGWrnWRz1QAAAAACGMNkcEvvhuguaGYCmGWrnWRz1QAAAAACGMuq", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yiPsNUAJlJs2hvho9bRRDw"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqY6EgtQ4kMk_MBWrPUAFqVnYywAAAAABqY-OgtQ4kMk_MBWrPUAFqVnYywAAAAABqaRxgtQ4kMk_MBWrPUAFqVnYywAAAAABqage", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Y5MAeJ_kAzIzPg9zSs4Gyg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2q2cEvvhuguaGYCmGWrnWRz1QAAAAACsg57cEvvhuguaGYCmGWrnWRz1QAAAAACVy2XcEvvhuguaGYCmGWrnWRz1QAAAAACWC1YcEvvhuguaGYCmGWrnWRz1QAAAAACPoUg", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UdRSAcper1TqxS3G0JEz7Q"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQ3NXJCw7PINTEV_suvi1hjgAAAAAAAAAnr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAABR3DsLLpnzoGeqib2_MeXKdgAAAAAAAAA6x6-7WFAhTzQvsnUGZiSFsQAAAAAAAAAJx0gi_Lu_MQxnxMW1-0ZQNQAAAAAAAAAEk_YfqtPanypbBh77mBMmrAAAAAAAAAATwPUvH7ZdMm81__UGWskM5wAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAACdJYgdZ6MFANs6aW-kJSCJAAAAAAAAAAYW19Tjw-jwIbyufOKZLiEmQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAA0aeAC4XpbxqxubqgoasMaQAAAAAAAT0gbx9jqjuemtiUm8j-_s73zQAAAAAAcXb6bx9jqjuemtiUm8j-_s73zQAAAAAAah2sbx9jqjuemtiUm8j-_s73zQAAAAAAahlKbx9jqjuemtiUm8j-_s73zQAAAAAAaics", "types": "CQMeBQUD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "l5lnFm-KBzcQaaoXt_d1Ng"}} +{"Stacktrace": {"frame": {"ids": "L68TrOZ9FjSDW38aILC82gAAAAAAAC8IL68TrOZ9FjSDW38aILC82gAAAAAAAFzlL68TrOZ9FjSDW38aILC82gAAAAAAAFb3L68TrOZ9FjSDW38aILC82gAAAAAAAETL", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "VCDiqC9ZhKuiMdA3qifFVw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMh29XT4fd_WKeR1cE-hlLelCQAAAAAAC-z7kXT4fd_WKeR1cE-hlLelCQAAAAAAC-1UKXT4fd_WKeR1cE-hlLelCQAAAAAAC-057XT4fd_WKeR1cE-hlLelCQAAAAAACi9wRXT4fd_WKeR1cE-hlLelCQAAAAAACjCBUXT4fd_WKeR1cE-hlLelCQAAAAAACi1U9XT4fd_WKeR1cE-hlLelCQAAAAAACiLJ9", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SvqeTdfGMLFLKIXsNnh8xw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAACLHmuH5pCGXma5ToZjJwiZHAAAAAAAAAD9rG4zWNbzF43FlUaeZiWkVQAAAAAAAADc", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kTZBV-McxW5nVoq0bfDnwQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_ecYcEvvhuguaGYCmGWrnWRz1QAAAAAD_C_kcEvvhuguaGYCmGWrnWRz1QAAAAACFSqRcEvvhuguaGYCmGWrnWRz1QAAAAACEMfH", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "o9rrwXJbM6W3KhAnab2hlg"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHba4rFFPORY8_4FvK9QaA3QUQAAAAAAGRIW4rFFPORY8_4FvK9QaA3QUQAAAAAAGRJh4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp4rFFPORY8_4FvK9QaA3QUQAAAAAAE8PoUJmIMEc6K8gJ39NHYaD0WwAAAAAAEPck6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "JgMCBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "u5bWoo_V68O30C1CzGAzEg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAQ2qk3SUFPdBYwVkFMX3ttpwAAAAAAAAAFsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAACbEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADNq5-VNNWJnEe4GvJK3_qvJwAAAAAAAADF4J4WxzKvOwTg2PxoPnS9CQAAAAAAAAEJHr4PYZ-sL6e-tu-94q7YcgAAAAAAAAEX09pLhX8Ysxadrvlyzhew7QAAAAAAAACm4CZPHF-aehJgVB8TpitL3wAAAAAAAAAztA5QFhiwL0MKlmqWTTtnMgAAAAAAAAILzkH-QAcWQraJt_RXBXUVJgAAAAAAAAABDDfUAG9Q-Cqwr5La19vRNwAAAAAAAAARdryhzi4jBxOyrBm3zOIcRgAAAAAAAAABAAAAAAAAV4sAAAAAAAAAHSs8i6sJ9R6rsTGLCNH21piOrMPoln5uBQAAAAAA0JUksTGLCNH21piOrMPoln5uBQAAAAAA0JQ2sTGLCNH21piOrMPoln5uBQAAAAAA76uCsTGLCNH21piOrMPoln5uBQAAAAAAXItIsTGLCNH21piOrMPoln5uBQAAAAAAf3me", "types": "CAMgBQUD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fCSYYdpth83NnFIQFK3tFQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFlBlz5k14PsCcDvFyUC1kmlV3QAAAAABFkQM", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-uPJRsxx3fYBKSMq8-8XzQ"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAABHaI47B_NxRB-tFVbAaTDiew0fwAAAAAAk_fu7B_NxRB-tFVbAaTDiew0fwAAAAAAk-PN7B_NxRB-tFVbAaTDiew0fwAAAAAAdwkH7B_NxRB-tFVbAaTDiew0fwAAAAAAaxda7B_NxRB-tFVbAaTDiew0fwAAAAAAaxKU7B_NxRB-tFVbAaTDiew0fwAAAAABTFDgqjB_amR59Lv13Nhle_NwbwAAAAAACb3xqjB_amR59Lv13Nhle_NwbwAAAAAAGLtB", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fNrC3cVS1zvFAJzXdUT00Q"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAABHaI47B_NxRB-tFVbAaTDiew0fwAAAAAAlkDG7B_NxRB-tFVbAaTDiew0fwAAAAAAuZGe7B_NxRB-tFVbAaTDiew0fwAAAAAAuXiA7B_NxRB-tFVbAaTDiew0fwAAAAAAuUwE7B_NxRB-tFVbAaTDiew0fwAAAAAAuUwE7B_NxRB-tFVbAaTDiew0fwAAAAAAuVfP7B_NxRB-tFVbAaTDiew0fwAAAAAAuXiA7B_NxRB-tFVbAaTDiew0fwAAAAAAuUwE7B_NxRB-tFVbAaTDiew0fwAAAAAAuVfP7B_NxRB-tFVbAaTDiew0fwAAAAAAuXiA7B_NxRB-tFVbAaTDiew0fwAAAAAAuUwE7B_NxRB-tFVbAaTDiew0fwAAAAAAuUzT7B_NxRB-tFVbAaTDiew0fwAAAAAAuYlQ7B_NxRB-tFVbAaTDiew0fwAAAAAAuXiA7B_NxRB-tFVbAaTDiew0fwAAAAAAuUwE7B_NxRB-tFVbAaTDiew0fwAAAAAAuT2U7B_NxRB-tFVbAaTDiew0fwAAAAAAuSD_", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "szVTwJO-zNujlDgZMbLwuQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qCmepCKWJQWWrX7mRVq-c9QAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_jdrai_0fDiGEvZJybTdZ_gAAAAAAAAACGPgne5T-0iZurfH30RkS3gAAAAAAAAAdXfHacyr3VZQyavlI3uwP4gAAAAAAAAA-JvlRd4Wn40C95D0SC2Hf0wAAAAAAAAGsceSN5BlMG0ARBYcsvYKxUgAAAAAAAAC9IB9QQU_Mapdn9O22PbyS1wAAAAAAAAAaz5Ok5kVT2l3xrDDU1L9N8gAAAAAAAAAGgdEtfESsDNl02I7JUxnTmAAAAAAAAABMx7_78vHPaEs7GBgJ0fETJAAAAAAAAAB8iH1rt2A0cDFvTr2IZcc8_wAAAAAAAACWjtEB8q7ZNk5LwicDPNbPVQAAAAAAAACEi2R-NzFTVFibpge5Dx_BBgAAAAAAAAAqZccN0t7i0EOtwJSEeQbbkQAAAAAAAAIFc1Yo_OPgMzqB1GnTa4udVAAAAAAAAAEhQBbvUVLpPH8FdglduYsmOwAAAAAAAAAsyFBJd9cdNdUZI2XG5UyXfQAAAAAAAACR0lZH7mbg6Z2T87nCQ5tLBwAAAAAAAAAr9kFU2LomHVw8wFCPVbeIxAAAAAAAAAAl", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YzmEvw4yzSVOrC1HjuT7DQ"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKTEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKu8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfdgtQ4kMk_MBWrPUAFqVnYywAAAAACJEnagtQ4kMk_MBWrPUAFqVnYywAAAAAB1YosgtQ4kMk_MBWrPUAFqVnYywAAAAAB1YgbgtQ4kMk_MBWrPUAFqVnYywAAAAAB1KskgtQ4kMk_MBWrPUAFqVnYywAAAAAB1LIGgtQ4kMk_MBWrPUAFqVnYywAAAAAB1IpYgtQ4kMk_MBWrPUAFqVnYywAAAAABvM6NgtQ4kMk_MBWrPUAFqVnYywAAAAABvOWIgtQ4kMk_MBWrPUAFqVnYywAAAAABr5vkgtQ4kMk_MBWrPUAFqVnYywAAAAABr74MgtQ4kMk_MBWrPUAFqVnYywAAAAABsAOPgtQ4kMk_MBWrPUAFqVnYywAAAAABsAop6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipGH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipDo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Zq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Cn6tVKI4mSYDEJ-ABAIpYXcgAAAAAAiyFW6tVKI4mSYDEJ-ABAIpYXcgAAAAAAiyBw6tVKI4mSYDEJ-ABAIpYXcgAAAAAApa94", "types": "GAMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ScogL9vmu0xz5zcs_TJYbg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNGXT4fd_WKeR1cE-hlLelCQAAAAAAC-uEIXT4fd_WKeR1cE-hlLelCQAAAAAAC-vdVXT4fd_WKeR1cE-hlLelCQAAAAAACi94WXT4fd_WKeR1cE-hlLelCQAAAAAACi98FXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwXQXT4fd_WKeR1cE-hlLelCQAAAAAACiKCvXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mx66nwdoDHoQx6oMK8HIdQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEeM2OILZain4HbmUZD_h9ouAAAAAAAAAAFbhZo2QRqgq-0DU0P-coC5wAAAAAAAABJcPTHQ3hobU3S_WVNcs_o3QAAAAAAAAAISoESWitTbygqCArOsyQ6ZAAAAAAAAABezJS1ch2PqqsLX8q5Wj0t7wAAAAAAAAAfxjSvau0yCC6WYo-obUFaEAAAAAAAAAABGv4-gnM04seHvi2rk7HAtwAAAAAAAAAp55GfxhHkj37-fwWSYe5ibwAAAAAAAAAe", "types": "CQMzBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "VwUylZN1Ciho38uTRm9iHg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAAwR4O21YPz5WkGUKdaZ1xVrgAAAAAAAAAayQDYDWiyDEgJMgGvgsz9TQAAAAAAAAA25R-yx7MYDZ-mt3l2_RLRhwAAAAAAAAAA", "types": "CQMXBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fz5MxEQE3535thZWvwej0A"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAAGkuWcUG2bf_MgJpXpuAZivRAAAAAAAAAAx0nBVkJrBQHU_wusVG6_3KQAAAAAAAAB96PDTyNLwDP2GCrVJoblLzgAAAAAAAABIciQsV4oUc5gYfL4dony27QAAAAAAAAAnOIU72g2wQhgyLETe_w4R1gAAAAAAAAAb6fJSMrZAuK4u6qtYNuA-RgAAAAAAAAAFNJGrW12l4VtfBBiRfaaqLQAAAAAAAAAhWHc6TeyRQEqs6LkNUiVKVQAAAAAAAAAzE7Si9KeNnLhexcT10oHiFQAAAAAAAAAX", "types": "CQM-BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gW3Qw94HVgEkWZo80m3bJw"}} +{"Stacktrace": {"frame": {"ids": "-FiXU0afkg-sRwubj2WiAwAAAAAAAKlJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG-FiXU0afkg-sRwubj2WiAwAAAAAAAKMr-FiXU0afkg-sRwubj2WiAwAAAAAAAmE0-FiXU0afkg-sRwubj2WiAwAAAAAAAlz6-FiXU0afkg-sRwubj2WiAwAAAAAAAla0Fuiq0RN8VMfwSLHsA6DzhAAAAAAAATq8-FiXU0afkg-sRwubj2WiAwAAAAAAAZtb-FiXU0afkg-sRwubj2WiAwAAAAAAAZf3-FiXU0afkg-sRwubj2WiAwAAAAAAAQ6L-FiXU0afkg-sRwubj2WiAwAAAAAAAfME-FiXU0afkg-sRwubj2WiAwAAAAAAAhwI-FiXU0afkg-sRwubj2WiAwAAAAAAAgaO", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "aNKJ1wpKsx20h3VcebwzJg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYChGc_KlbDChxhbLYz-xpPwAAAAAAAAALOmzVUgwY22EPoqShuZpT1wAAAAAAAAAByCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIFxUii1Qg0ODP7PNbShAMtgAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACXDgohratZUQwpKekym6X1AAAAAAAAAAEw6kzV8D69jasat-u2vkUCAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAqJzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAqdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAC7EyAyIi6MbvlkCdAdoJJykwAAAAAAAAABXkH8NDliPW9U7dMx7efo5wAAAAAAAABTAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DnsVFIlR8r83XyYb6bLHBA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAAGkuWcUG2bf_MgJpXpuAZivRAAAAAAAAAAx0nBVkJrBQHU_wusVG6_3KQAAAAAAAAB96PDTyNLwDP2GCrVJoblLzgAAAAAAAAAX", "types": "CQM4BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "pzrNDArCkOE6-i5e_YKIbg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAAAtt2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAHIG1OnoGXN6zXJZoQUHRmxAwAAAAAAAAAxYEThj3UEuGl2wDiJSq9vSAAAAAAAAADmjckGVFRAvWURR3kz1QpfwQAAAAAAAABZQUM3v4ew-jMVuKkpISsPEAAAAAAAAAGi6iNgA9fR_bPjg3gsO7FxQgAAAAAAAADeWKOnV4dhtUKFY7wtM7-RyAAAAAAAAABRH2QTzkKMf4VE2_HyfX9GywAAAAAAAAAOUX0maaM_jFdAmFMbhLpaSgAAAAAAAAANVydXcSmOqICsVxLpiPFyCAAAAAAAAAAhxWXbvqcob2cyNB-_TJKbYQAAAAAAAABZ2RFqiy_TIF9Ivmg849R6KQAAAAAAAABA9sYnFbigFrf_-fozodwm9QAAAAAAAABxqlBu--gn4lPakFOOUFVXUAAAAAAAAAKu4qy1OhHC2klcRs4XgL9D7QAAAAAAAAAb4GZfdSdo79rYS6pQyNIftAAAAAAAAAAejzKd71GO6LzGFqcyNBmKtQAAAAAAAABBhCPcN8cA6hQoNicBlBeaEwAAAAAAAABx15SXPQ5T2MJIiMIcJWeXiQAAAAAAAAAsuraIFXU9GqBqmWbTlxjVJAAAAAAAAABi", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4x7-v8sf2wkB19C1p2T6UA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFwcXT4fd_WKeR1cE-hlLelCQAAAAAACiINvXT4fd_WKeR1cE-hlLelCQAAAAAACiMJaXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnr", "types": "FAMDBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "uQuuWjHbJIHHTzQdgYrOvw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_WD1cEvvhuguaGYCmGWrnWRz1QAAAAACEKKx", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2CC6FclZGgiWgBtAlUI6fA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUog", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Eykjypfev8SxdzSs2SdS7w"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAKGFseY0uix2hxT0Di8k7-3AAAAAAAAAATslf6t7FJIQoDjMJN42BVyAAAAAAAAAABFg2KiEq3-QS_hoWS2OekUAAAAAAAAAAJ2Mo4vkt46Sn5tcChaxtCYAAAAAAAAAAA", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "QF3m18xsLOVy9Pau7_T9HA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATQDkJCt6xHk7D12ZqlrT-UAAAAAAAAAAHPX3E_b7jZQaK6SiJYskQ3QAAAAAAAAAJZaLdh2m65raIV_JyagrUBQAAAAAAAABnazI-mX3CgcWhg9AcjJjNnQAAAAAAAAART7Ugi353BwPylAwIPK3gzQAAAAAAAAHvdr7nJhzDAJ3KA627xZhFegAAAAAAAAAUE66a7lKbkjXDy4kHrdweRwAAAAAAAAALavH6-iyYHlN_flagvaXwWwAAAAAAAAAK5JuKxbkWPMw0EpITr8WSNAAAAAAAAAALCcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAAACQh22cv3M-xNK0_IOuNdQuQAAAAAAAABAdFuRXSangYgd0mdMqBWlpgAAAAAAAADqsO4szKNZnXyLfMP7gPsjpgAAAAAAAAA9jjxn4cl8bBaRqPgS5F0n8gAAAAAAAAD_AAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CQMwBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "m-tc9uLrvW5AtcifaiO7Sg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAAFLrVzWSpKLw4v6Aqz2OFQqGgAAAAAAAAA7QqMFArUGE7c3aczTAAedSAAAAAAAAAARpny64bxVlV3tBC1sODqZ9QAAAAAAAAA-PQucG8F-Yu3IYNQ_8vxwFQAAAAAAAAA9mEefCgy0KUI5I66lcwP9KQAAAAAAAACTRww-hja5KWn3UBihMGepiQAAAAAAAAEepGv-va4FOh2AYYkCjbquJQAAAAAAAAAA", "types": "CQMaBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "HtqQEgS5dAjy2dvKTnyLtA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JekcEvvhuguaGYCmGWrnWRz1QAAAAACEPhl", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zFpa6Apn2NYhFyhInGTwPQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi09Z3CKaS4aU08RhYA19y5ITQAAAAACDf4EZ3CKaS4aU08RhYA19y5ITQAAAAACDf8TZ3CKaS4aU08RhYA19y5ITQAAAAABxI7PZ3CKaS4aU08RhYA19y5ITQAAAAABwW6UZ3CKaS4aU08RhYA19y5ITQAAAAABwY_IZ3CKaS4aU08RhYA19y5ITQAAAAABwY0XZ3CKaS4aU08RhYA19y5ITQAAAAABwNSQZ3CKaS4aU08RhYA19y5ITQAAAAABwMmC", "types": "GwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Jtw3m9TbgS_Vd9LzvggK_Q"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSDBEgtQ4kMk_MBWrPUAFqVnYywAAAAACSBUVgtQ4kMk_MBWrPUAFqVnYywAAAAABrEoA", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "m0J5IPQkjfw9DuDn33ISzg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAA1OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADUR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAACe6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC80G6zvzFPytbRyfwuXWQcAAAAAAAAAABAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "AtXClYE-qGEHpuC-Jm5rtQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZxyf5INnJibBb8rT_yMcsAAAAAAAAAAEe6HlflPyKAlNlF7JPJCNJQAAAAAAAAFLEe5ZDKMHiVCtP6qAhF9CEQAAAAAAAAGtVyubPqZIpIsaGdq5yyQHTAAAAAAAAAAHH3I9lsKeM021aDJgbYYYAwAAAAAAAABHL6IPi9cG-hWDQ-8_WE6FFQAAAAAAAABdBLpe-z4Yd5pwaMKR_BsaGwAAAAAAAAAMQJL-SfxFsSlqFyMufqU3CAAAAAAAAABceOzzLIU2TSEN-nL8WNPcPQAAAAAAAAAKFOd9HiviZUDhaNiKk_owWwAAAAAAAAAT644cGNT2qB6lvzqttzEn0AAAAAAAAAASPgj_99rlVO9A9q1dsgzW5wAAAAAAAAAs0PDL1t8foukKrjOTMeznFwAAAAAAAAAc0YNPfOkv7TAAnafMtZqNkgAAAAAAAAAEdD4p9P31y_X_TwW0CA_rJwAAAAAAAAAUcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABYMgCpDbfqkuF0Au3Mi2jaeQAAAAAAAAAF45C-Q8d2gQJCMIvUacUWRQAAAAAAAACWgLY08aWtgqicV-bC4OtakQAAAAAAAABe", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TNHj5BNoVqP99omvUMlAZg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAAAaDLCbvuPzV5FNep-fYYK5KAAAAAAAAACEwdRZBOgt1iAFeehFpb20mAAAAAAAAAAJ0Cdt9wyWxnG2B-xGXMO6owAAAAAAAADYVx2H7p06nNerPKpNR75HGQAAAAAAAADbxIfNH7oj8c26gQcDKc66DwAAAAAAAAAURuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAA534SZSkKN3zNxr0HYuO2pqe5hQAAAAAAwmvL8NlMClggx8jaziUTJXlmWAAAAAAAAPew6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMKBQMDCQQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "a4VUXMxj-NprP9Bgxnf2-Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACguWEXT4fd_WKeR1cE-hlLelCQAAAAAACguzeXT4fd_WKeR1cE-hlLelCQAAAAAACgwVi", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Xk220Mi9zFcLeqpxwKjYgA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAA4uYJaHL8c7yuUg9zbiJgfXAAAAAAAAABbYF3FgsmtJ5bq5eUQFvPU3AAAAAAAAAAe1MY1Nuqea_D-u-FFo2a_-AAAAAAAAAAly_zLcqsLm1pyxWcSerbeRAAAAAAAAAAclyFV4GQ8nA5PvKIS4z4KZQAAAAAAAAASL-p6HuZa7IZQ5P3VbWlkuAAAAAAAAAAAYq1Ak9_WYtjiRUK6jyz9agAAAAAAAHdO0rNuxKNw6YxtKvsF6kS_jQAAAAAAD-aT", "types": "CQMKBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OR4vYLoqzlo7phFh3Qfx1A"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66IxZ3CKaS4aU08RhYA19y5ITQAAAAABx7EiZ3CKaS4aU08RhYA19y5ITQAAAAABtHkpZ3CKaS4aU08RhYA19y5ITQAAAAABtHDT", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XsjtsZW09ynLa8sPb7wXtw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAGvN0nOeOJdjggSFx_cpb47egAAAAAAAAAV4vwWTuaA5W0Uq7WSODTSAQAAAAAAAAAJfPhuraRD9JGtgVGUoQNF-QAAAAAAAAF1nnUdNj2uBRgH8hkAFjfx5gAAAAAAAABKbQ60B2deUe5Z1LztjnvZQAAAAAAAAAAMfQi-oLERzTztO_dqegJXlQAAAAAAAAADHiZp0zbTVQt0obvtwwP7XAAAAAAAAAAOEVkfIxaS__QB2o_fYjV3XgAAAAAAAAAPt8dlkufpTdGrhGgvaHQahwAAAAAAAAAHX1XVXDc03N1sEPo0UxcrkgAAAAAAAAAcHW4-asF9W20WAgPf6bG3rwAAAAAAAACGJUO0r5_uLh9CRA_IPAbqJQAAAAAAAABz", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nngybL9jLob9MFAj_5uE0w"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbHuXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCM6XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EnLPI1UZl5V9MlaC1_8N2A"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5obcEvvhuguaGYCmGWrnWRz1QAAAAACN4bHcEvvhuguaGYCmGWrnWRz1QAAAAACF8G-cEvvhuguaGYCmGWrnWRz1QAAAAACF8Wp", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DyPPnFWG2US7PQm_sSslSA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuWodZ3CKaS4aU08RhYA19y5ITQAAAAABtg2Y", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "p4gMSQxsFIJzmUMc91-Cgg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAeasI8DDAjVJl721y2vxKHGSBegAAAAAAgwJS8DDAjVJl721y2vxKHGSBegAAAAAAefoQ8DDAjVJl721y2vxKHGSBegAAAAAAecuJ", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "HB8yIfTc4JLXTsHtjPAdOw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA70RgYbC2fQjxygsXZf0s0DwAAAAAAAABPiAgP1DBH7Z9OPzvK7kQabQAAAAAAAAA3brHwMWIWqKKcmy2jXj1-xAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAAAA", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "l_BdWsCefFCMBHxXtyw_Iw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAQ2qk3SUFPdBYwVkFMX3ttpwAAAAAAAAAFsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAACbEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADNq5-VNNWJnEe4GvJK3_qvJwAAAAAAAADF4J4WxzKvOwTg2PxoPnS9CQAAAAAAAAEJHr4PYZ-sL6e-tu-94q7YcgAAAAAAAAEX09pLhX8Ysxadrvlyzhew7QAAAAAAAACm4CZPHF-aehJgVB8TpitL3wAAAAAAAAAztA5QFhiwL0MKlmqWTTtnMgAAAAAAAAILzkH-QAcWQraJt_RXBXUVJgAAAAAAAADU0yqtrD3Cawk5Ww3YXL2KhwAAAAAAAACjAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "J7vTb8unea8libzIPYw9Fg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANfzLzWZQgzth4yv0Aw0PoLgAAAAAAAAAl1pEcO9CYkxI799CldX3uowAAAAAAAABSeRhJRvHm727VHuGPDJpA3AAAAAAAAAAIFeTq3grQxZLpQxyGC-4wQQAAAAAAAABF9F2a_yzWrSmXRu6SZEKaiwAAAAAAAABdilROEXfY2pUH01XyVGW7lgAAAAAAAAAl8RcHlq9cItc9ubcDW2AKXgAAAAAAAAA6dFvXeiu0bJwgpB4R6tiKPQAAAAAAAAAS-0evKJDf6RH7Cjp24ibpGwAAAAAAAABpX65gV3sxJNzXSi1CGKTRgAAAAAAAAAAXlmEDdo47Bm7dynPLqUx_fAAAAAAAAABerRvi7nTwy9T2bV27jqhTVgAAAAAAAAAzNRXMY0GwyqTEszErmO5JXwAAAAAAAAAONREbP_6GqKjaa6YAIZKMLwAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "x9C_YZAzS-4rXIoUYRYXHw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnAydMRjIz1OdcUN0eWHfUfwAAAAAAAAAd4W76RwUjGcgIjQApiAJJHAAAAAAAAAAFgZgYcEFO3c95J0_kRNRWOgAAAAAAAAAGOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB42BUy3BbkpnttyuMqLirigAAAAAAAAANOmzVUgwY22EPoqShuZpT1wAAAAAAAAABmE1ci0y85Ym-Dqw-Q5t-OwAAAAAAAAAEWgnWJF5xNWl_wwu7DvgTzQAAAAAAAAAE-OmtEGD-FWeU3vRNXPLxogAAAAAAAAAd6PDnpLs5LIM9SpjUeSu5BwAAAAAAAAAM4IIlAJ_QWDs41ERNR4mO_wAAAAAAAAC0wAR4gk273_ooOZdD1tA5fgAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJSYSSbioufiMK4TqEn24uLgAAAAAAAAAdIETnUMLdTY0X_27KY2cD_AAAAAAAAAAQXfH1sbSxEuiQC9e5gcEKzQAAAAAAAAAWlOwp8THaapDjttPXb9E-AgAAAAAAAACRIiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdgzv5ZcBM9qZL6-CtFKcz1wAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAABUqPeQ03nZ4m2CLoB308K-gAAAAAAAAAIVhlTljsBJDT98mVay1CuwwAAAAAAAAAFMeupuj3mN3g2ScGhhzmNFQAAAAAAAAF4iRdArD2BL-BvpLz4Pb_AYwAAAAAAAABIC_8b8QYLHmjQu9l_QeSByQAAAAAAAAAUpkqcXQWLIjtT71JtuIAr6AAAAAAAAAAG13EjbA0IjpuaU_N8fi-CjwAAAAAAAAAHwmGhlkvWzfTghgQ1sZAecgAAAAAAAADX5EcD-U0cxRtdESeN-UEmcwAAAAAAAAATuezlLZVYMF9cbBEbxdsDcwAAAAAAAABIgpbgHn7e4Kz5N3-pRcz_dAAAAAAAAABLr0viM1MkQFoluKwRuIJ7LwAAAAAAAAABFGycG9AEWPVJe5tbz77UPwAAAAAAAAASUJNt6Wr7juWI2oGMxpHwHgAAAAAAAAAc-1qdgNrxzH--duaVR1QSFQAAAAAAAACVSyklCBn51Vp_g9q3KLAvZwAAAAAAAAGvnD7QKbPeresstocfBtl0cAAAAAAAAAGPN2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAZE5r53-92up8rkLVW-WJnRgAAAAAAAABs-I0qeKDe1hMr58wzZHuN2wAAAAAAAADfbLRnm0K2LnF8O3sUIvVtEQAAAAAAAAAFYUqlosets6-rXKgChfDXoQAAAAAAAAAfnB7ASI-agyjwniBzr5SZ-QAAAAAAAAAfUxUrGKaPEq08l4l3816TpwAAAAAAAABeb_xouuKJL4pG8kohSeNIUwAAAAAAAABBsMxUjH933Dnrx5VGtrDpyAAAAAAAAABHck_MxLBdFaeX0Pe9TGo2LgAAAAAAAAAWRvgpC2THNLDZ9bIizRZhbwAAAAAAAAAQVA03thXQjqr1qC10qNXy4QAAAAAAAADLgS4BqKHRLy9ywAJxtWFusQAAAAAAAAEvfr4XAR94bkvR_VkpMkjQxwAAAAAAAAAHTZYG0O3Fq7DAPgmVpgfjHQAAAAAAAAAHcIw1KjOVhLu6JfffmCME8wAAAAAAAAA0HyBeZYPY4-mSUOFMq2R5wwAAAAAAAAAED1dWKQQj2nxvN71HvJgtbgAAAAAAAAAMYJtluB5982Y_RftN7vgBewAAAAAAAAANAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CANIBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7WlTuI6gm_CZb1xJOqgXbg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAABH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAEGe7YYWaQTMh8P2PCVzA2a8gAAAAAAAAAwm140cnmnDMXwCTqH-lotHAAAAAAAAAAE", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PKH_u6ChhJxckDGOO_zGyA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAAFPeWNjRgsRcBaxFFX7FRBoWwAAAAAAAAAFnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYOoSbzwyzFhV1hlFGUdDRowAAAAAAAAAOdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAxU0eTKdsDxlOsU56i41jsOgAAAAAAAAAYCb8bspWernAxYZDCJqRNoAAAAAAAAAAHAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zI2aRfMoHaH-gZiEq7cj9w"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFxkXT4fd_WKeR1cE-hlLelCQAAAAAACiJIkXT4fd_WKeR1cE-hlLelCQAAAAAACiM0oXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAio9n6tVKI4mSYDEJ-ABAIpYXcgAAAAAAio7-6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimti6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk7GK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk63z6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjigE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk7XQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjjMP6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk5gH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Ei6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjh746tVKI4mSYDEJ-ABAIpYXcgAAAAAAmKgX", "types": "FAMOBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "v3y2d04fapj4iPzxIwbZQw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAKGFseY0uix2hxT0Di8k7-3AAAAAAAAAATslf6t7FJIQoDjMJN42BVyAAAAAAAAAABFg2KiEq3-QS_hoWS2OekUAAAAAAAAAADWt0sf_JgSqOTKaBcf1zgawAAAAAAAAB7FzJF8qZ49M3tzNcHAYKOpwAAAAAAAAAXLo1bd7PttsuTzFjX2oW5lgAAAAAAAAAB4dIwNpyNQOyQPjDgfjNvLgAAAAAAAAATW0z6xNHqHLcQrQ1Rr4ojGwAAAAAAAAANavU6NIsopUe3RLXmOLaJogAAAAAAAABBBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADUR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAADj", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ddRcEglUHvRB0GTY5px_1g"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDAIcEvvhuguaGYCmGWrnWRz1QAAAAACuEFvcEvvhuguaGYCmGWrnWRz1QAAAAACuGfdcEvvhuguaGYCmGWrnWRz1QAAAAACuFZccEvvhuguaGYCmGWrnWRz1QAAAAACO_PxcEvvhuguaGYCmGWrnWRz1QAAAAACO_CkcEvvhuguaGYCmGWrnWRz1QAAAAACGyUrcEvvhuguaGYCmGWrnWRz1QAAAAACGJD2cEvvhuguaGYCmGWrnWRz1QAAAAACGMuq", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GrCH0ACfAmAYkhQ0Nhdi9A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDq5XT4fd_WKeR1cE-hlLelCQAAAAAACxEYmXT4fd_WKeR1cE-hlLelCQAAAAAACxEtqXT4fd_WKeR1cE-hlLelCQAAAAAACi94WXT4fd_WKeR1cE-hlLelCQAAAAAACi98FXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwXQXT4fd_WKeR1cE-hlLelCQAAAAAACiKCvXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2X4gRc-KO6bRKT6359Af-g"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA70RgYbC2fQjxygsXZf0s0DwAAAAAAAABPiAgP1DBH7Z9OPzvK7kQabQAAAAAAAAA3brHwMWIWqKKcmy2jXj1-xAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADXgFPyL3qH7XvAMbrBvAuRfwAAAAAAAADbtEnA5bbecd5HgfHANQcYvAAAAAAAAAAMRzjbtVKcKAJORTMSkyG2eQAAAAAAAAAGvpboNfauwLs6xQ0xkHOOWgAAAAAAAAAtO6091ZB5jV9xKR7I7_uzYgAAAAAAAABdKGcnodwCdbO2RZIs7I3VDAAAAAAAAAG7u5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAAA7qtxmuYYdQSJOiK5WcAGLhAAAAAAAAAAIspUGqsCTGHPUynY6l3nRmwAAAAAAAAA9T4TCkO3eKtFhkAq0CD0MTQAAAAAAAAAaCeCTWGhzZ22dKgkK2rmozgAAAAAAAAAcTYW1TxsFYROrTysD5UpvkQAAAAAAAABF29AZF_seMl3LWsBL1xLs0AAAAAAAAAAwbeaGpNKpPxoBVynx9VseXQAAAAAAAAAJC9V4PTTZs-PQQpDxqxp5GgAAAAAAAAAB3dU8SaBBaVcGwyJDZQ1quAAAAAAAAAALT1r4-vp84Xtr8X-Kc_0sagAAAAAAAAAKpm5ZZT8tAonkuZs4iAYeNQAAAAAAAAAo_ktOOcW9JUFV28eqG98lGgAAAAAAAAAA", "types": "CAM7BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "pNtMkp20SCCEh-TxrA7W_A"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDAIcEvvhuguaGYCmGWrnWRz1QAAAAACuEFvcEvvhuguaGYCmGWrnWRz1QAAAAACuGfdcEvvhuguaGYCmGWrnWRz1QAAAAACuFXkcEvvhuguaGYCmGWrnWRz1QAAAAACPJ_pcEvvhuguaGYCmGWrnWRz1QAAAAACPIUqcEvvhuguaGYCmGWrnWRz1QAAAAACO-hHcEvvhuguaGYCmGWrnWRz1QAAAAACOh_EcEvvhuguaGYCmGWrnWRz1QAAAAACG1HucEvvhuguaGYCmGWrnWRz1QAAAAACG1dPcEvvhuguaGYCmGWrnWRz1QAAAAACGLyScEvvhuguaGYCmGWrnWRz1QAAAAACGMuq", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "HMdmoo5Eyynmz0zom3NzAA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LMJ", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "u0ruNDKoo243OCd9NgEnWw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7zyXT4fd_WKeR1cE-hlLelCQAAAAAAC-8B3XT4fd_WKeR1cE-hlLelCQAAAAAAC-ykpXT4fd_WKeR1cE-hlLelCQAAAAAACp71EXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCM6XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcCd6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcBE6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjgtIG5EpvTeHopVC9IqkA_kSgAAAAAAAUSKIG5EpvTeHopVC9IqkA_kSgAAAAAAAA0XIG5EpvTeHopVC9IqkA_kSgAAAAAAASdO6tVKI4mSYDEJ-ABAIpYXcgAAAAAApzdt", "types": "EwMPBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nm8JRHH7gW7nGjrzSQMYmw"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHba4rFFPORY8_4FvK9QaA3QUQAAAAAAGRIW4rFFPORY8_4FvK9QaA3QUQAAAAAAGRJh4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5lP4rFFPORY8_4FvK9QaA3QUQAAAAAAELlj4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAADiYq4rFFPORY8_4FvK9QaA3QUQAAAAAAE8oY4rFFPORY8_4FvK9QaA3QUQAAAAAAEMM0", "types": "KgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cFy_pCXF1g2GQo7EjKg3Jw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAByH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAA9e7YYWaQTMh8P2PCVzA2a8gAAAAAAAAAwm140cnmnDMXwCTqH-lotHAAAAAAAAAAEm140cnmnDMXwCTqH-lotHAAAAAAAAAAELxQohxPSbL1kceLvylO9SwAAAAAAAAAA", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fDk3AkTxLyCpW9cxedW9KQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFJmXT4fd_WKeR1cE-hlLelCQAAAAAACxFRZXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "BGIHiDpY1YP5dvRehgwWHw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbqc", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "K-THxjZuQKxctVUQ0u4oQA"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8z", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "otm-oQ4xgoufZ3gANAunUw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQ3NXJCw7PINTEV_suvi1hjgAAAAAAAAAnr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAABR3DsLLpnzoGeqib2_MeXKdgAAAAAAAAAY0D5QIcqYfSjF8Y2Aggw1CgAAAAAAAAANIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQymtcT7XngDCOtcgo8NmgJgAAAAAAAABaEuiuEGuoH1DvPXwEkw2odgAAAAAAAAGLMEhCGFUvnR-s79TodsgBdAAAAAAAAADefHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAAB4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATEhnUEyLdMI1yNxJ5pv0IawAAAAAAAAAHWvBX7aqogcS_sYCA-tA5IQAAAAAAAAAQwMYFsNM0woNzFGwcp47vbgAAAAAAAABGEh0v14Wp9mB3u5tYha0hzQAAAAAAAAAmwSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFbhnM-182eA1jGyBQl8pMugAAAAAAAAAU4pL5iWdAziHKM6VzojymqQAAAAAAAAAGX8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0g4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAWMCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc5430MZlAMqI5SXd_yT5HRQAAAAAAAABcHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFN7LIGw1erb09TPWj8M9ehwAAAAAAAAAYwr21gCsicBxbZw2IJaNDDgAAAAAAAAAGEh0v14Wp9mB3u5tYha0hzQAAAAAAAABDwZ09eiIX1XgrymZWZ5BnrAAAAAAAAAAH7kiwTAFzycT-wgooymyU5QAAAAAAAAALLFiOeIpjbAGuoHCaoCuGBQAAAAAAAAA476ZQdAl2euBIN6YcqNHYDQAAAAAAAACQfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABP6WZ8beuV9qvYQN2_0rUbQAAAAAAAAAdRfdnW4S6ROnXL_ZnN4YboQAAAAAAAAAJ-xAh5Z-SxGsLYmmPrAbYUQAAAAAAAACPv3mwO6LH2DaLxjpGkTBbYgAAAAAAAADVjcDMxk2NyZo5xFCAVktuZgAAAAAAAAAShNoyuGIC_f7bMKEKareyBAAAAAAAAAAGN8Io9c4at6yq-2fiioy4tgAAAAAAAAAY8avgxC2nxsEclfIehydO-AAAAAAAAABo_C6trZBp2P8AtO9t3P1dGgAAAAAAAAAJKl0qkbNQj3_YlT2V6V00bAAAAAAAAAAl7DAWJ2oagx2bmaj9AXRbbgAAAAAAAAAlUUKeWXdwi8f1Ogpgfk32jAAAAAAAAAAVi6ju_ii5mAgyzEKTCxdpRgAAAAAAAAAEFiUXoHC2FqtlQUvF0X2byAAAAAAAAAAFiNqwi4ZVhzOCSquNkw9jQQAAAAAAAAARFiUXoHC2FqtlQUvF0X2byAAAAAAAAAAFiNqwi4ZVhzOCSquNkw9jQQAAAAAAAAAREF3J2R77dXygxhwXIoXXUwAAAAAAAAAAAAAAAAAAV4sAAAAAAAAAHXOBFFPSGeW_bx9jqjuemtiUm8j-_s73zQAAAAAAm-ze", "types": "CQNyBQED"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lZMN6zaybe8fUdjpnJuRZw"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHsJJgtQ4kMk_MBWrPUAFqVnYywAAAAADHsO9gtQ4kMk_MBWrPUAFqVnYywAAAAADIfGLgtQ4kMk_MBWrPUAFqVnYywAAAAADIhGEgtQ4kMk_MBWrPUAFqVnYywAAAAADIfwEgtQ4kMk_MBWrPUAFqVnYywAAAAABw8FPgtQ4kMk_MBWrPUAFqVnYywAAAAABw8LzgtQ4kMk_MBWrPUAFqVnYywAAAAABsw8kgtQ4kMk_MBWrPUAFqVnYywAAAAABszEagtQ4kMk_MBWrPUAFqVnYywAAAAABr84EgtQ4kMk_MBWrPUAFqVnYywAAAAABsAoq", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kim3yi5rHyvzz2f3NyxFrg"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHba4rFFPORY8_4FvK9QaA3QUQAAAAAAGRIW4rFFPORY8_4FvK9QaA3QUQAAAAAAGRJh4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAADz2b", "types": "JAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "T-Nfuo0WceZ91fjrIGZgow"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChGUEXT4fd_WKeR1cE-hlLelCQAAAAAAChFAsXT4fd_WKeR1cE-hlLelCQAAAAAACgS3mXT4fd_WKeR1cE-hlLelCQAAAAAACg6fVXT4fd_WKeR1cE-hlLelCQAAAAAACh1Di6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "CAMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5G6r00YkRaeb154FqmaEpw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAABCwrYxe-SHgukLEpCkawSk1QWAAAAAAABHD4Yxe-SHgukLEpCkawSk1QWAAAAAAABqiA", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KjIFdeuijOwfOO1paOAuWg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmsRXT4fd_WKeR1cE-hlLelCQAAAAAACgnEd", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xTQIKBEh5woXPXzDxLDJ5w"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAADiYq4rFFPORY8_4FvK9QaA3QUQAAAAAAEk5J4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jw4rFFPORY8_4FvK9QaA3QUQAAAAAAEG334rFFPORY8_4FvK9QaA3QUQAAAAAAEtB74rFFPORY8_4FvK9QaA3QUQAAAAAAEtmG4rFFPORY8_4FvK9QaA3QUQAAAAAAFVkC4rFFPORY8_4FvK9QaA3QUQAAAAAADl1g4rFFPORY8_4FvK9QaA3QUQAAAAAAEtNy4rFFPORY8_4FvK9QaA3QUQAAAAAABPXw", "types": "UAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "CFLHaMsQiwz2_9tfK6Jz_A"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAKSfUOLPncvmUbspPEBmYXMAAAAAAAAAAGjiOROD0tmELw9GVQYUYO2AAAAAAAAAAFt5RNhmUkms0myDPI3-3ICQAAAAAAAAAFexlLI1uBpP8VBaUqNRf9DQAAAAAAAAAWvaZUIH7rCnsi1a_nVIdcmgAAAAAAAAALDg0i2lYRLQUln2hBXrJbCwAAAAAAAABnKuRzKKOnkUoIqL23_UPvVAAAAAAAAAAMvE2vZcZzpHNW8D_EbPqzqAAAAAAAAAADmA7AArQeycrrHCsrngX3LwAAAAAAAABq2JGPZcEtg_q-wlZSN3iiVQAAAAAAAAAuJ7EMgIdtNxSVC_-TGyYQ3AAAAAAAAAAf", "types": "CQMuBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OiUIbEMSSdSoHLjhM6BVYw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAABcQrw_bSROFZCKPRirqN5crwAAAAAAAAAEmNKQ_cGBX-X-PxTw057WHwAAAAAAAAAogvLVFgOymHZYnYZ96vTtlgAAAAAAAAACZcARz7-qKEoplrucM2GwSAAAAAAAAATZImGvHBpzgeZWAcXSV5I00AAAAAAAAACMPxORMJeLnvYkd7o_ejUPcQAAAAAAAADpiUZ41g2XM36qWOM6KfrqOAAAAAAAAAGXla-ABesqjo5PfHY2Zk-hLgAAAAAAAAA9xVLEHRTMTIDPZshBDYiEZgAAAAAAAAAO5wQ2l0nlEjbQlD2jl8xx7wAAAAAAAABL2LPBWkpKhgTDwrjs_LVOmwAAAAAAAAHrjPBgPvk00-cPTcAR_mq_6gAAAAAAAAAJjsbK0fgMThSM97rCbn5hggAAAAAAAAAFYcNF65AZE1_nTmaTA5AhDwAAAAAAAAACz8p7JeF0PBmR0rYu5TgGbQAAAAAAAAAkm_ubSEEFnjI3s9WRdbfBdgAAAAAAAAArsR5zhDl0Yr2_VOFyRVLr2QAAAAAAAAAIwbXchxxT4Ky_qloYOdv6IwAAAAAAAAAGb5fzxGCEoC6tvmMetgycEQAAAAAAAAA-lRUzx9K_j-Phy_nSUNsKfQAAAAAAAAEB38c3vPeCplShkhWG6NDtqgAAAAAAAAAA", "types": "CQMgBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UqVgdEQmtz4BvVb-b_N-Uw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDLZcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnZ", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bUd_4UNvKl_Qr8lsRn-AxA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAADxyaNpzFvIPtiJi3LwjMyZHgAAAAAAAAGMUZ2NFNzh7BT3C3hRjMF2fAAAAAAAAAAMZB4dgn6zlvSqI5ZscpV7zgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1HYZxCzuz6LEXaDimozBLlgAAAAAAAAAQpMuceywkbX_kBQbNeyKYjAAAAAAAAAAWRHxLaEMnlCvBO70F4Bq3fwAAAAAAAAAFnisgr1RUcTVhb-d_TidN8AAAAAAAAAAugTkKo96ASvMgXyPTt69aMQAAAAAAAAN6Gs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAAAKzk_PAPIluouMAlyxqI2lSwAAAAAAAAALSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABGTV4I1RlvgDs3r9lTlz2IzwAAAAAAAAAIBWfrX2QdlPT8mMtH-6pvmQAAAAAAAABG", "types": "CQM_BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TTj0itlL9Oi4rCTAoQtluw"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKTEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKu8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfdgtQ4kMk_MBWrPUAFqVnYywAAAAACJEnagtQ4kMk_MBWrPUAFqVnYywAAAAAB1YosgtQ4kMk_MBWrPUAFqVnYywAAAAAB1YgbgtQ4kMk_MBWrPUAFqVnYywAAAAAB1KskgtQ4kMk_MBWrPUAFqVnYywAAAAAB1LIGgtQ4kMk_MBWrPUAFqVnYywAAAAAB1IpYgtQ4kMk_MBWrPUAFqVnYywAAAAABvM6NgtQ4kMk_MBWrPUAFqVnYywAAAAABvOWIgtQ4kMk_MBWrPUAFqVnYywAAAAABr5yPgtQ4kMk_MBWrPUAFqVnYywAAAAABr6IkgtQ4kMk_MBWrPUAFqVnYywAAAAABrKcpgtQ4kMk_MBWrPUAFqVnYywAAAAABqINSgtQ4kMk_MBWrPUAFqVnYywAAAAABqQg7", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "i27z4TxZ8219irmfqUB6Ew"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADSZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABCAZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAGrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAuU-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABTHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAIiuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAWyQLW28sZ3rpLXAl8a-XdLgAAAAAAAABnWIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAIKCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAIQRW1om0CtcYaE4B8xaBEggAAAAAAAABGAZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYlCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAACNHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABuHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFP1rXbpjewie805zI0BHMvAAAAAAAAAAILN3NdhSYKxRbaqnM5W9FBwAAAAAAAABpR-HVaw3JZ2IsajBZdLbC8gAAAAAAAABKKnKBdeWKnQ8CH5bzvx0i6AAAAAAAAABK-QN0Lznzz3LjWKMZzZD5rwAAAAAAAAAIeEXFmSmLstwTaBBVp_eSTgAAAAAAAAAFHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFeS9qs83Ev5DGIkgRm0VL-gAAAAAAAAAUem8QMqpxX9eEmdxu2AmtFQAAAAAAAAAPTR0CnebfBTQ0MB6Lw8cZBAAAAAAAAABv8kz0sRC3Fb0ahbrci4PVAgAAAAAAAAAYGgYuOINmwLJxsjP-M2E9cQAAAAAAAAAXjIXiJ_3QIrjPxWXJm0vTUAAAAAAAAAAGbPdR4mcydIF6d5I7BNRoXQAAAAAAAAAHotkeOgHMDZdOlA7GywTS3gAAAAAAAAANeBe2TV8VA2V7lLyhiCvcHgAAAAAAAAAEclNKHmin0SttGhUDhj4qagAAAAAAAAAH68m2CwWM-Ledaj5WNl9lhAAAAAAAAAAqwMYFsNM0woNzFGwcp47vbgAAAAAAAABGEh0v14Wp9mB3u5tYha0hzQAAAAAAAAAmwSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFbhnM-182eA1jGyBQl8pMugAAAAAAAAAU4pL5iWdAziHKM6VzojymqQAAAAAAAAAGX8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0g4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAWMCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc5430MZlAMqI5SXd_yT5HRQAAAAAAAABcHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFN7LIGw1erb09TPWj8M9ehwAAAAAAAAAYwr21gCsicBxbZw2IJaNDDgAAAAAAAAAGEh0v14Wp9mB3u5tYha0hzQAAAAAAAABDwZ09eiIX1XgrymZWZ5BnrAAAAAAAAAAH7kiwTAFzycT-wgooymyU5QAAAAAAAAALLFiOeIpjbAGuoHCaoCuGBQAAAAAAAAA476ZQdAl2euBIN6YcqNHYDQAAAAAAAACQfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABP6WZ8beuV9qvYQN2_0rUbQAAAAAAAAAdWETDtAYgv6Jkvw6xLkpLwQAAAAAAAAAFzTg-1BaqPve5RYYrhWqKBgAAAAAAAAAHeYOPSEoq5FFmdpvYTsQ9xwAAAAAAAAHE2u2jPMdq36h9BOg_kllzLgAAAAAAAAAFajJdsnOIBpdo6hxvZuINSQAAAAAAAAAImSBnbtksrVvKstlIID71bwAAAAAAAAAUHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF4JxgAcphLAEsoWC3fPoUUQAAAAAAAAAMneQ9aDSiXyM-ZtdfoiCRFAAAAAAAAAAGXFsyX0Vq94TuMs7Bc44FAwAAAAAAAAAFhT_GFd-d817AZqi9jIee6QAAAAAAAAAUx8ERETcapIt78IXSEO8DRwAAAAAAAAACaLOl6FCWtZ16Qk1Y0IIBGgAAAAAAAAAG_CTrWCBcF1yntIOzlzRqGQAAAAAAAAAP1HXZZ713KyUPF_V7-YXiGAAAAAAAAAAG7qKsj4xn8s1AMSf99ASSjAAAAAAAAAAYt5ImPROd9wzf5BDFezVfygAAAAAAAAAG8AFkU9EDwekeQG-iHB-52AAAAAAAAABXTY-BHg3kiwMpijAIqZbwIgAAAAAAAAAvo6177iuGkV2SA7F3ufehBwAAAAAAAAAP9UrT2S_M5-Qdj7wy3Ez_sQAAAAAAAAAPZIcfvDe31w9pismrAmm0JwAAAAAAAAAgESDsaq0zLYAinhbn7iz71QAAAAAAAABXRe_fJ3pwlQ_8bGbhEDwangAAAAAAAAAC9UrT2S_M5-Qdj7wy3Ez_sQAAAAAAAAAP0Oqv_TDkuwLFb16GYwq7BgAAAAAAAAAUvd9LC3RKIJ02JZOksYIKNgAAAAAAAAA1Re_fJ3pwlQ_8bGbhEDwangAAAAAAAAAC9UrT2S_M5-Qdj7wy3Ez_sQAAAAAAAAACdB4PTvxusL-njRQbYYX1BgAAAAAAAAAixw8wDk6TpJf9Gwydbb4rogAAAAAAAAAQ1uqT2g7Au-K7vA_ApCg22AAAAAAAAAB80LDAxE6DYP0OTdLijzG8qgAAAAAAAAAO0Y5Y3h6UQzgvM7WuW977JgAAAAAAAAAE1WFWJQ-5eNvfc5VEhr7whQAAAAAAAAAzyGmqavuo_87Zcq8eO-zFJQAAAAAAAAAEaU3BPDaIKeUIlhsZawDOqAAAAAAAAAAHaiYAeaOefGgb8Ek1UStS_gAAAAAAAAAL74O8rb6r6chx3WMINhKDgQAAAAAAAAAB3zeYgqKoKpViatmGLneDpQAAAAAAAAAA", "types": "CQO0BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WvJZCAg7gVxCX3Q5TFv4Ng"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAnEGqyFI4UBcYw0uODaUlP_QAAAAAAAAAEo7sR_pIbiVV_Z8TfMWbBfAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALVhUIBMnDjpGauL-PhicCqgAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl_plqR4x5xi_qOVu9JWCxQAAAAAAAAAEYNvLePk3bv25BUHN3KzEXQAAAAAAAAChMo8MRZcTTA5MSH5mIc8c7wAAAAAAAAABnd8ByWx0Um8uF6bezxKuxAAAAAAAAAAEZWVXkJ8qrKOhTkKXzBlP4wAAAAAAAAAGQiTo58FObDGDVxhW5ylvXwAAAAAAAAAPBFGjgFTdK1xnfs0xj5apUwAAAAAAAAAEP9BGxoNfJ5xFs47cHe23_gAAAAAAAABKLG1iCWXc581Ya7-aKQE_xgAAAAAAAAAgkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAg4aWABwF73Np6FFZYc2m-kwAAAAAAAAA0pSVcwHLkS-nxPYoJIIKFcQAAAAAAAAAGEkre_h4w6uLsxTrYKbKEJQAAAAAAAAAQctmMOnzOFMQjuPFQFR1IjgAAAAAAAAA0USV55yZg8dR921Rrum2migAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAOB2634wiWh6F21tPpXr0Zz3mgAAAAAADeOk634wiWh6F21tPpXr0Zz3mgAAAAAADeLr", "types": "CAMdBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "j5gau05UjWmU9RAZhEt0lg"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACe-XXgtQ4kMk_MBWrPUAFqVnYywAAAAABxp4WgtQ4kMk_MBWrPUAFqVnYywAAAAABxXQ9gtQ4kMk_MBWrPUAFqVnYywAAAAABxXzEgtQ4kMk_MBWrPUAFqVnYywAAAAABxZkkgtQ4kMk_MBWrPUAFqVnYywAAAAABxX2lgtQ4kMk_MBWrPUAFqVnYywAAAAABxbA3gtQ4kMk_MBWrPUAFqVnYywAAAAABrODPgtQ4kMk_MBWrPUAFqVnYywAAAAABqID8", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "x4_NnlccyBffpCakKmYgfg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVP4GdI6f6aagjBxBAKz-KIgAAAAAAAAAMqd26ee2y8slhneyPRIcQAgAAAAAAAADEwKREEYJF8V2B2guAeJRSCwAAAAAAAACoWsBETJrPecSrGYvg781P3AAAAAAAAAO3655cFkYo375T8NGzpy-aFwAAAAAAAAAXhve4jX92AzYM2N-JeQNG2QAAAAAAAAApXxw-Md0tF-Ko5-6PzeDzxAAAAAAAAAAUCivQS6jnSlhY0fTKds9DfQAAAAAAAAAG3EjttOooo8WfaORlLIDB5QAAAAAAAABnBtkSbKDt-bj97XdoNtyCHgAAAAAAAAA2HiZ-6KD6vJXlsPjO_4DSZgAAAAAAAAAak6L8sVEMOOa2vwEgI2H-PQAAAAAAAAAUNAjnT1vveGWXoLNkwmxpQQAAAAAAAAAGANmrmrqqJv18GWh_5HHQlgAAAAAAAAATJ5rjZcSsg8hOL06iqa3UTwAAAAAAAAAZThkKQ-mbqxbswQXS_1D96gAAAAAAAABx", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0Dcaa0AWiOWQP0Cpiv1ncQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAAB-5iAtVIILui-LgFNzk7nI4QAAAAAAAAAFTlb-NMKl40FjLIQMDGJfBQAAAAAAAAAXxme1OLUOxM6S5mWcBl9N_gAAAAAAAAAC8EydHzqUyrjotjG1DR1HjgAAAAAAAAADx7dNtL9l6yQnqIhb2iRkJQAAAAAAAABV85xU6UdOBVE-6wKT-DYa3QAAAAAAAAAcKlMLGpkm1pBrBLT79cviPAAAAAAAAAABzVZBdh_gmAiL5X6tN_0jKgAAAAAAAAAEWBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAABMQNDqKDPWY6nq0qvBxhyKdwAAAAAAAAByaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAARvxRz972AIxuNYE4eDQCpVgAAAAAAAAAO1_TQy4bzrYXq1nfuss_o_wAAAAAAAAAXt4nV0UqksCicoYQITIw3KgAAAAAAAAAAAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CQNPBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0JiH8rdTNJ3-XAj6Q3BkqA"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAABGnAD", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bm57SdIz8Jpy7Q9n7ej9mw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAAA_rYYxe-SHgukLEpCkawSk1QWAAAAAAABAUU", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "X6b-9jZFuboLrqv-KCQf4g"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIBHkZBcmNHMjIQUGuyLAiYwAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACTXTxOwy8uhdU1jeoZU7T8QAAAAAAAAAE_btj02zrVOB5yHsjoNQahgAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAAAPzkX_ZZVUPja3uHE0dMvPaQAAAAAAAAAp_b0cLZu7PqcamkkHFR0u6gAAAAAAAAACZF4Ah1MmkuF8Sdd7c3MVOAAAAAAAAAApBCRsSn7mjeP9Qqw10U_ACAAAAAAAAAAKZF4Ah1MmkuF8Sdd7c3MVOAAAAAAAAAApBCRsSn7mjeP9Qqw10U_ACAAAAAAAAAAR9bC20anEZ8kSwASdXXDkzAAAAAAAAAAUE412ubC6vIkVnhrQF2Kv0QAAAAAAAAATX_KArw2lYZFY-9kCvtv9JwAAAAAAAAA6jiqmNc5cRiav2wA-qp0PAgAAAAAAAAAA", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "u2xwTd8RgJ0w5WVh3yO7rg"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAABHaFY7B_NxRB-tFVbAaTDiew0fwAAAAAA3dEi7B_NxRB-tFVbAaTDiew0fwAAAAAAl8Rv7B_NxRB-tFVbAaTDiew0fwAAAAAAl6ms7B_NxRB-tFVbAaTDiew0fwAAAAAAl5Wc7B_NxRB-tFVbAaTDiew0fwAAAAABipd37B_NxRB-tFVbAaTDiew0fwAAAAABipOz7B_NxRB-tFVbAaTDiew0fwAAAAABioUV7B_NxRB-tFVbAaTDiew0fwAAAAABnoMH7B_NxRB-tFVbAaTDiew0fwAAAAABnn4R", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iqCgR9hvEpggddLXHhRtwA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7RXT4fd_WKeR1cE-hlLelCQAAAAAAC-pHvXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwvdXT4fd_WKeR1cE-hlLelCQAAAAAACiwyFXT4fd_WKeR1cE-hlLelCQAAAAAACivEEXT4fd_WKeR1cE-hlLelCQAAAAAACiu5W", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bVkSYYrL3sh5uXtIk1Wqpg"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgJxz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFle2z5k14PsCcDvFyUC1kmlV3QAAAAABFZRO", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PNEVIYDb3Tl2Jt3vwOlVBg"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9Dg2z5k14PsCcDvFyUC1kmlV3QAAAAABJiP4z5k14PsCcDvFyUC1kmlV3QAAAAABJiIRz5k14PsCcDvFyUC1kmlV3QAAAAABJLl1z5k14PsCcDvFyUC1kmlV3QAAAAABHmTSz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWxb6tVKI4mSYDEJ-ABAIpYXcgAAAAAALX6y6tVKI4mSYDEJ-ABAIpYXcgAAAAAALX4g", "types": "CgMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_bJEnTtbOe0IZcVirgheKA"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHbaI-7FSPUFvGFUkGA6jlppywAAAAAAC0ivYwxnBMtVSfJhocgnI0WgmAAAAAAAJWhYYwxnBMtVSfJhocgnI0WgmAAAAAAAJUbsYwxnBMtVSfJhocgnI0WgmAAAAAAAF8f5YwxnBMtVSfJhocgnI0WgmAAAAAAAGCd9YwxnBMtVSfJhocgnI0WgmAAAAAAAGAG6xFA0V1dCXRoFBkiljWo8aAAAAAAAC5uDxFA0V1dCXRoFBkiljWo8aAAAAAAAC5qal5FZ1ntrBTGZUQPXJtfAlAAAAAAAADxYl5FZ1ntrBTGZUQPXJtfAlAAAAAAAAGpkl5FZ1ntrBTGZUQPXJtfAlAAAAAAAAT2jl5FZ1ntrBTGZUQPXJtfAlAAAAAAAAYjLl5FZ1ntrBTGZUQPXJtfAlAAAAAAAAYcBl5FZ1ntrBTGZUQPXJtfAlAAAAAAAAXeC", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wodfI0Qjs3NXAooq-q8Ykg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjBHcEvvhuguaGYCmGWrnWRz1QAAAAACL00C", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cxhTQ5av-rm2EqR9mYi1wg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2q2cEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETd1", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZrFu8Dq5jTIDd4Pao74GVw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAABH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAIUe7YYWaQTMh8P2PCVzA2a8gAAAAAAAABE_p12Y0DOk4cFEn5gGz9psgAAAAAAAAAE_p12Y0DOk4cFEn5gGz9psgAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OUTGLO3n62eM8U_HdeR5nQ"}} +{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimtb6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOK46tVKI4mSYDEJ-ABAIpYXcgAAAAAAlcA76tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbdH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlWJ36tVKI4mSYDEJ-ABAIpYXcgAAAAAAlsoG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlrpu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlqKz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlwjf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlN5a6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlNsK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlOPs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMub6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMqa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMWu6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgDv6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgCV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwA8J6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOBI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN1t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjNJshpS1QtdrBQjGg-LCbfqeSAAAAAAAAF9MSxgb26oKQwlt07if9woPTQAAAAAAACORSxgb26oKQwlt07if9woPTQAAAAAAAB5cSxgb26oKQwlt07if9woPTQAAAAAAABLvhpS1QtdrBQjGg-LCbfqeSAAAAAAAAFrchpS1QtdrBQjGg-LCbfqeSAAAAAAAAFjZhpS1QtdrBQjGg-LCbfqeSAAAAAAAAFcz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN6I6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN216tVKI4mSYDEJ-ABAIpYXcgAAAAAAlId_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk-pXSxgb26oKQwlt07if9woPTQAAAAAAAALo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlH3T6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlJy06tVKI4mSYDEJ-ABAIpYXcgAAAAAAlJj26tVKI4mSYDEJ-ABAIpYXcgAAAAAAlOPs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMub6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMP_", "types": "MwQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fKedWCj67XGj9qcnQ7OTzA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKTEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKu8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfdgtQ4kMk_MBWrPUAFqVnYywAAAAACJEnagtQ4kMk_MBWrPUAFqVnYywAAAAAB1YosgtQ4kMk_MBWrPUAFqVnYywAAAAAB1YgbgtQ4kMk_MBWrPUAFqVnYywAAAAAB1KskgtQ4kMk_MBWrPUAFqVnYywAAAAAB1LIGgtQ4kMk_MBWrPUAFqVnYywAAAAAB1IpYgtQ4kMk_MBWrPUAFqVnYywAAAAABvM6NgtQ4kMk_MBWrPUAFqVnYywAAAAABvOYFgtQ4kMk_MBWrPUAFqVnYywAAAAABr6IkgtQ4kMk_MBWrPUAFqVnYywAAAAABrKKu", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "T_TlYqz_7B9a-y_GWM7_sA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgMS", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "moUaNPTeG--sbOPLkvb-kg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7zyXT4fd_WKeR1cE-hlLelCQAAAAAAC-8B3XT4fd_WKeR1cE-hlLelCQAAAAAAC-yjEXT4fd_WKeR1cE-hlLelCQAAAAAAC-057XT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "txZXHAJurNaMIlI0kux2YA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmqd", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Lzwa4kKclF71ykHbLDtsRw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATMsVxGJ_9ADjCLmkId1rUYwAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABV6WzOxn3OKFhpMveMHAeqDAAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAproTQ2x4u1u0ROVEifn0kaQAAAAAAAAAtOcVENYdBUHkmXadCZbxMcQAAAAAAAABX7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAMEozR7rHeowembmV8tqrkzHQAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5W0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMTbeJ7BYIhIN72fM2Cz8k8m9QAAAAAAASDV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmo46tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf", "types": "CAM1BQIDCAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EJ3gaYjYo6bxhCS7DTzSRg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIshq-irvfX-gF1mgvoEZeYQAAAAAAAAAos1Tvc2InyAqwYOGzitnwSgAAAAAAAAAS88w1fh0F81IStbAbdJdsKwAAAAAAAAB0wAR4gk273_ooOZdD1tA5fgAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdXgVcJKYEqhGaSbBYfKBXOwAAAAAAAAAQXfH1sbSxEuiQC9e5gcEKzQAAAAAAAAAW1w2R0Z8nd4XHXpj3W-TC0gAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdctx_9RVQASujUdCT9XDhwAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAAB06nqjE-VI9IYqWvJ2OibVQAAAAAAAAAI8Lr1AwdmXjQ6E8sJ1LQOsQAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAADCB20OugZuwBAeveso7e9HjAAAAAAAAACaMWL6u1rwSyPKKa74FLbYBgAAAAAAAAAOnXZoigYd2OufPwfiQoHMZgAAAAAAAAAaTPMG217WBYb76UxoaEjdpwAAAAAAAAAbQS_lAdb7VsN_QJ5pyFRlHgAAAAAAAAAZN7zwNYLSEE1UJ2LdT3SexQAAAAAAAAA-CNBX4p645M_2FKSVjVlopAAAAAAAAAAkBCPSKqpuiK-cY00UoGsZhwAAAAAAAAAH", "types": "CAMvBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Bevuk9ubDyZB3ndA51uInA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVFKmuDb9OiAlOmhNzpFQWMgAAAAAAAAAFUw8EG916-vV16x2yycdXOwAAAAAAAADvK0flqZKMYgGhD375agfmDQAAAAAAAAAdrXAVE11Ryhs80ZE3uuTVVgAAAAAAAAACWj1Uq6jbmSjrZUnAzTcg8wAAAAAAAAFMu2DScCPg-79KHpSdqd651AAAAAAAAAArM9DGG7E9GfEUAiHeOdyIiQAAAAAAAAAR97Zy-DfeoR5C-A8AXtDSdgAAAAAAAAALz6tWuney7g-Y4N5qVR1EmAAAAAAAAAAuUEuQmz09BPcAbp-3Qq9EiQAAAAAAAAAMq4o-L61GbPXCZrDHmIkjUAAAAAAAAAAKQhgKoY7YGPuzgknqN_IlIwAAAAAAAAAVinSkDcyNW8o9gzM3K44mhQAAAAAAAABXeVGivIvclCl6AIXKUi_BZwAAAAAAAAAEkYilhQw2ZemDagPwuRJQEwAAAAAAAACjG29Eq8FQTzrJ3tmwKUGa-AAAAAAAAAB-Hv4qsTbjF5vdy7Ua2f84lAAAAAAAAAAizuU2nZWYk_lR7WzzP_HMIwAAAAAAAAAMUGhPK0oju7EvvwLchugW7QAAAAAAAAACkuOLLmJKIrjOwpp2bYUQJgAAAAAAAAAdb0RGeGy0UFdJ7sS77zZqFQAAAAAAAAAmAwlvi9BQCHUWjIysk-DIYAAAAAAAAAAF-x4xsB-yJ_WKOC_-ysDNoQAAAAAAAAANWSv_GvqwNCJW0gL3eEOBtwAAAAAAAAAEQmuUiH2NpjjGuqAquMZQQwAAAAAAAAG70mM_z6Wv3d5Hlet7vNYQBAAAAAAAAAAGsRC-EYSM_wjZFQySXQa74wAAAAAAAAAFTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFxufRTVMCyNgp_yFmnSCnyQAAAAAAAAAs3tEO5jfS8bPOQLKbFrM9TgAAAAAAAAADu5BSm7q6egWp1CRhuqTyhgAAAAAAAAF3Z41z-remt7jPNWprM_rymwAAAAAAAAC61S9eFAopKcZX-VnW9ChdWAAAAAAAAAAD", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RDtpI2toyxzROuKtNgFscw"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYpqL9Bd3XIiGWasJdN8trI5tgAAAAAAA1YsL9Bd3XIiGWasJdN8trI5tgAAAAAAA1LtL9Bd3XIiGWasJdN8trI5tgAAAAAAAzRg", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Bpc8eToJHZimyCogMpwGRw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChy6gXT4fd_WKeR1cE-hlLelCQAAAAAAFRYL03aS07d9PG4lc4UzuBbVWzQAAAAAADE19rtOWfs-RaxXWHIPyRB9RAAAAAAAAAGDArtOWfs-RaxXWHIPyRB9RAAAAAAAAAFu-3aS07d9PG4lc4UzuBbVWzQAAAAAAB5ec3aS07d9PG4lc4UzuBbVWzQAAAAAABvzT3aS07d9PG4lc4UzuBbVWzQAAAAAAB88h3aS07d9PG4lc4UzuBbVWzQAAAAAAB71T3aS07d9PG4lc4UzuBbVWzQAAAAAAB6mW3aS07d9PG4lc4UzuBbVWzQAAAAAADvtA", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ri8THh1H50J0zvIysOPcMg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlpa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN6ND6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFW5E", "types": "FAMLBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LTDYxmtmuczz9esgISVWJQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEgwXT4fd_WKeR1cE-hlLelCQAAAAAAEOCRKXT4fd_WKeR1cE-hlLelCQAAAAAAC-kNvXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipGH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipDo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Zq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Eio9I8XHop3y7uLb8wdADAN______AcFkIo9I8XHop3y7uLb8wdADAN______AcFbJo9I8XHop3y7uLb8wdADAN______AcQHwo9I8XHop3y7uLb8wdADAN______AcGy3", "types": "DAMLBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TnDNY4eYwHax81bZ5EmWCw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMGBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cVmuRDduIoHFumAGZYig6g"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAABQ1PhVGIcoQAgleHhVcpf27gAAAAAAAABCO437KvS3RFmTLYSV2BANPgAAAAAAAAAH0rUUbfqBe8gbtaGmyGEfXQAAAAAAAAASAPU-k0FhSNYXtxt-lyLANwAAAAAAAAAH", "types": "CAMNBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wTaZSRJ4Q9tkq0cKzmYCPg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAABkGu2so7XtpGUr5L4B1Car9QAAAAAAAAABSm0xkBmU0d55bIWjfcYmtAAAAAAAAABbj4w58zsaqOfxzn9j73toSwAAAAAAAAC7pLk3eEBAQ6mOObR4PSHT3AAAAAAAAADEWd4LaEXdGxPRMFAASOrHpwAAAAAAAAEVeOiDFFx8fEa1T0wux9bfqAAAAAAAAAAECNq6Kt4mWkOk16Nvp19k6AAAAAAAAAAAYq1Ak9_WYtjiRUK6jyz9agAAAAAAAICg0rNuxKNw6YxtKvsF6kS_jQAAAAAAD0-P6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALVN76tVKI4mSYDEJ-ABAIpYXcgAAAAAALVMd6tVKI4mSYDEJ-ABAIpYXcgAAAAAALVGx6tVKI4mSYDEJ-ABAIpYXcgAAAAAALU_V6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTC46tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimtb6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOK46tVKI4mSYDEJ-ABAIpYXcgAAAAAAlcA76tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbUy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAisdM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAir6d6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKQhJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ5Qy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ3Vz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ0CJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYK2", "types": "CQMOBQIDEwQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PFzGLySsfgDPspp8JOhd8w"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzScEvvhuguaGYCmGWrnWRz1QAAAAACE_-qcEvvhuguaGYCmGWrnWRz1QAAAAACE_ic", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Lda3BzAcdULVzpDBXq2_xA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbrkZ3CKaS4aU08RhYA19y5ITQAAAAABtb7K", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "a0TwkNounoaKRIVZRpQyIQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAAAtt2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAHIG1OnoGXN6zXJZoQUHRmxAwAAAAAAAAAxYEThj3UEuGl2wDiJSq9vSAAAAAAAAADmjckGVFRAvWURR3kz1QpfwQAAAAAAAABZQUM3v4ew-jMVuKkpISsPEAAAAAAAAAGi6iNgA9fR_bPjg3gsO7FxQgAAAAAAAADeWKOnV4dhtUKFY7wtM7-RyAAAAAAAAABRH2QTzkKMf4VE2_HyfX9GywAAAAAAAAAOUX0maaM_jFdAmFMbhLpaSgAAAAAAAAANVydXcSmOqICsVxLpiPFyCAAAAAAAAAAhxWXbvqcob2cyNB-_TJKbYQAAAAAAAABZ2RFqiy_TIF9Ivmg849R6KQAAAAAAAABA9sYnFbigFrf_-fozodwm9QAAAAAAAAGELVJktE5O_eKuQzS_qlhvqQAAAAAAAABK30BzHUomBZyo9OCrbwKZ7wAAAAAAAAAokIxvJVB-JG5UQkLY58s6dQAAAAAAAAAHej1NIeH3mZLVu0Z6C4X58QAAAAAAAACgiDeUqi9fXDm_fNSrL17LBgAAAAAAAAACnzw4AVNutfhHt7T-gQii5AAAAAAAAAAXXpviWYO7CFQF88r_qvK5hQAAAAAAAAAJMnYM9B90Ha_6l2oFXip8PgAAAAAAAAAbvoqjqV6_-EldPWpE4Bg5QQAAAAAAAAAl", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gI_am1fwTx9YAJzEsSed9w"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABLN7ynDYiGG43L8r_Igy7BgAAAAAAAAAc7uksKfxFONj3nEtg73WagwAAAAAAAAAMT2c5-p_HTAiWRFE2IbjI8QAAAAAAAAA7h6Obzp5eyXgRpUblA-ofAQAAAAAAAAC9uMFx2Fq4FWmDdC9qTh9OCwAAAAAAAAE0KcjVoO3dzCmC3PrWs_ohHgAAAAAAAAAJjfWZKcvJcvZvI74FMiyrAgAAAAAAAAAB0hcFUvwWZfQvp2KtSe1TEQAAAAAAAAAH5kI3iCVPIGpJyER_pIOiDAAAAAAAAABK_t41Zgn8MiPpsE2ExccvfwAAAAAAAAAISlk7EKKi8JmNp7yELCNTwgAAAAAAAAACNglZAtsVMy0PR4D9Bo4v_AAAAAAAAAAIdH_-XVY1o9Dh1CsvXltQLQAAAAAAAAAJlL02ENMn9TDqCnir50TaAgAAAAAAAAAFECGxOh43abBH5lmW6GWEbwAAAAAAAAAcWz5q8JekpnYi0s7eTlcojgAAAAAAAACvu93Ukboxh3n8fpdAM9THpwAAAAAAAACRcw2Z8udT9L2DdqGSTwVYJAAAAAAAAAAGd4qHdalKlYFqF-4zvAgorgAAAAAAAAAWA40VS-0F5gGiCT87AV4zFgAAAAAAAAAciQVo4-YPSPQT8lzVnTciPgAAAAAAAAARlL02ENMn9TDqCnir50TaAgAAAAAAAAAFhiE_KnpB1y_AkU-QUSuyPgAAAAAAAAAQXKq9uwED2oR9Ctzag8AUbwAAAAAAAAAlJmbV-AH56XNUdA5-wxAqIAAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABHp77QPk88xsYu9Hpoa4_oAAAAAAAAAATwQRLh0_1mVfrLTkzs1izhQAAAAAAAAAHh3WTBx-QeTdXBYE6dCwz6gAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJVyiEhRfD3cpMAUdxvE6uLQAAAAAAAAA6iqG2swMAij35AX8yLqs1mgAAAAAAAAACgif16EmVGvorhgyOj9vZjwAAAAAAAAAggr6Podewhx9_Rz-1pSpjLgAAAAAAAAAFMVr_CbGNEnYyymXVtC8noAAAAAAAAAAJLczqS6cuSWWD7v2xnXFx3gAAAAAAAAADqX44wE4PaOHlvbveOqAZIAAAAAAAAAAb05XKwzdpS7Kd0uKbnrxHMgAAAAAAAAAzVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASIwwbyqFq94TuMsCm_P7YEwAAAAAAAAAFG7bHBS7Fdu6ai7jmhfwpdwAAAAAAAAAUx8ERETcapIt78IXSEO8DRwAAAAAAAAACaLOl6FCWtZ16Qk1Y0IIBGgAAAAAAAAAGHey8fifUJOv2rbW7np0VDwAAAAAAAAANuQQ1PvFmxVdkBoNbbZIeSAAAAAAAAAAGX13qT-EIHpuumzsKroIGFAAAAAAAAAALId6rxbbnETrinnhjeUmMTgAAAAAAAAAfYR_FSps0OAaHwOXXqmvF8gAAAAAAAAGA4Rje6Na2MFlheox6495qOgAAAAAAAABKnr3XAEOEGxHwIAnKpVTJ_QAAAAAAAAAG041162MzEEtTnw12p7zr8QAAAAAAAAADC1S0u5i-I99o7AP-YW5LEQAAAAAAAABNB6AxGKo-ySgqhq6sru3ZYwAAAAAAAABOC1S0u5i-I99o7AP-YW5LEQAAAAAAAABNB6AxGKo-ySgqhq6sru3ZYwAAAAAAAABOC1S0u5i-I99o7AP-YW5LEQAAAAAAAABhZXgikkpw19cSXy4ymPbmNQAAAAAAAABFC1S0u5i-I99o7AP-YW5LEQAAAAAAAAAhVC0ia-TWHUXgHjt_xdSPsQAAAAAAAAACjfzj4dJoxc5ZGnFcpH3KNgAAAAAAAAAF4URotnESy3Ld2Rr6S5TljAAAAAAAAAAOQGXA8qfIkSPUIF1EOFsHVgAAAAAAAAAFpxjfa4kaGJHYYykON7KvRgAAAAAAAAAA", "types": "CQNEBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1Rrpv2uctOUa08FxzIUTRQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAABcQrw_bSROFZCKPRirqN5crwAAAAAAAAAEmNKQ_cGBX-X-PxTw057WHwAAAAAAAAAoPe3ctc9W4J1u_ZCOerqNzAAAAAAAAACUA80fpNwLg5UyZGOl2HXL1wAAAAAAAAH26rsVEZ9sKsa4Vh8IikWAbwAAAAAAAAAJzw0wKeXSScV9zb0GbnSg3gAAAAAAAAE6xiNRq7Ruj11jfgYHuwwWowAAAAAAAAHiw_cxYz8MnUesAVA7XOw_bwAAAAAAAAATGWaNS7Aannj1ZssQUxZReQAAAAAAAAGHgDRAAy1IwcF0IR_YOLzWjwAAAAAAAABEgw-R6elvRCziXgbmYn0NGAAAAAAAAAAGStdff30sTwwMW3207S4hcQAAAAAAAAAOrCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAENAHbgjE1mrEUxDWK3HkjL9AAAAAAAAAAXMgCiOnnGW7RnGD1RtS_HwgAAAAAAAAAE4AOC1otNYKhZE8ncURFrlgAAAAAAAAF5HC0gC3BFwdNWsLtKomq2gQAAAAAAAAAA", "types": "CQMqBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ct4KVN2OGy2QmyBrSGNd3Q"}} +{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kSHpn8pwAHiX47J0IzMtXvwAAAAAAE8PJSHpn8pwAHiX47J0IzMtXvwAAAAAAE789SHpn8pwAHiX47J0IzMtXvwAAAAAAFznbSHpn8pwAHiX47J0IzMtXvwAAAAAAFzRSSHpn8pwAHiX47J0IzMtXvwAAAAAACWKhSHpn8pwAHiX47J0IzMtXvwAAAAAAFE6t", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zMyb7cX8I6ObuUKiX5YshA"}} +{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI7B_NxRB-tFVbAaTDiew0fwAAAAAAdyiE7B_NxRB-tFVbAaTDiew0fwAAAAABTOLj7B_NxRB-tFVbAaTDiew0fwAAAAAApa927B_NxRB-tFVbAaTDiew0fwAAAAAApXQD7B_NxRB-tFVbAaTDiew0fwAAAAAApVYL", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0QVqdJlbcVihyYkynU5WiA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcoiHXy47Qw5euydEoPUexRgAAAAAAAAAga67hy6D4_aH__IrzfMid7wAAAAAAAAABrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVFpc8lrhPQ4yUW2cihur-4QAAAAAAAAAFjI8lk114wSweZoTkAumpAgAAAAAAAAClDmzDNS4H6Qipt2XX0FJmXAAAAAAAAAAK-s3_zUsOzzNu4k-nEJzJkAAAAAAAAAEjI1o0TW3AMtnA-slp2SbrnAAAAAAAAAEePVc6RpxG1qL5zo_yzS9QWwAAAAAAAAASr00hGoX0a3XDQ4RzIP7twwAAAAAAAAEC86NiCqpvI1l5OJX-NxLKWAAAAAAAAAAN_3UA2KM_aMQ78-eUXroJUQAAAAAAAACPDbGTcOBcDc6PQvK_yBwTrwAAAAAAAADK5o0VuONZLOBJ9KxKrJVJCQAAAAAAAAAQXbC-sB10O1tUEB_6J7s4XAAAAAAAAAAQM0BY4RedXr5CJ3Eqdq8JKwAAAAAAAABvT5rdW6hQxkRw8R0h0I6dhAAAAAAAAAAEJlj-_pvqSdlHmJAw2MF6mwAAAAAAAAArSdUzkeL9_v2VezVxWgWRqAAAAAAAAAAPzNcsGRHhxrtoMbOTGij46QAAAAAAAAAI3oR3jcJ5b9zgoO0Wjaw3AQAAAAAAAAAiI90CtZp_BZBH2tSRSUMrrgAAAAAAAACFkpBi8LFR3RTjSJqFuljOuQAAAAAAAAAAhrCIM-i5cm0sSd-oVTZrsgAAAAAAACZBwEIfl0pGBuepuUcTwdKc2gAAAAAAAFtjwEIfl0pGBuepuUcTwdKc2gAAAAAAAEPnwEIfl0pGBuepuUcTwdKc2gAAAAAAAPgdwEIfl0pGBuepuUcTwdKc2gAAAAAAAOvGwEIfl0pGBuepuUcTwdKc2gAAAAAAAOgy", "types": "CAMbBQYD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wKjqi9Ka_oEDiU0pmy3_-w"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATtrHlBrKqhPY4wIsFmpvpGwAAAAAAAAAHfqX01Q_XnrWTMFwMltCSzQAAAAAAAAAcr6OQqChD9ydemA0TTpv7WwAAAAAAAAAByBhEFtyRRCvGIybyDtzQDwAAAAAAAABSUplh6FQYqmDpNUAIFNEKQQAAAAAAAABDiO1mMPtAsXsWYZtGrgAdjwAAAAAAAACoMUGOz76uheRW_JUVWNsoVwAAAAAAAAAFGBhILDYlssyThkp8tHozyQAAAAAAAAAMlN083j_rdg2B1dvviOhFMgAAAAAAAAAGx1wras1gluyTP-Y9Ht2HeQAAAAAAAACWORVIxASD4wCMIrAYPIVrNQAAAAAAAABOwzziaDDsT_hLVgnhYSGujgAAAAAAAAAXgFIaE5oowa2CED5FZTh2rQAAAAAAAAAKXrI7v8DrMvbrhWXwZwCmlgAAAAAAAAAFeY3PL1d7IX9V0G8GiWyB3AAAAAAAAABDIa0MXyNtEXFHubDSaKDv9wAAAAAAAABLdl8CmVsiorem5CvNnWQ45QAAAAAAAAC0C17-3NlBpv2arbZiuXnRAQAAAAAAAAATof074LNFyb0WZDScNz1NWwAAAAAAAAAmLMU2X5HEvTgsWl_cTFeI6wAAAAAAAAANdl8CmVsiorem5CvNnWQ45QAAAAAAAAC0C17-3NlBpv2arbZiuXnRAQAAAAAAAAATof074LNFyb0WZDScNz1NWwAAAAAAAAAmLMU2X5HEvTgsWl_cTFeI6wAAAAAAAAANdl8CmVsiorem5CvNnWQ45QAAAAAAAAC0C17-3NlBpv2arbZiuXnRAQAAAAAAAAATof074LNFyb0WZDScNz1NWwAAAAAAAAAmLMU2X5HEvTgsWl_cTFeI6wAAAAAAAAANdl8CmVsiorem5CvNnWQ45QAAAAAAAAC0C17-3NlBpv2arbZiuXnRAQAAAAAAAAA-zTCZVeGzGzBkicqWtCifcQAAAAAAAAAr", "types": "CQNABQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OUQo5-1DEmMawSabebh9Ng"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2q2cEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETeKcEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEWMJ", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "prUUkVp69zV1mzgyUI_BhA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAAAPWLR6tMYzOVwd-dC39zrHVgAAAAAAAACiWwwSCNeqeQDkQY1ahZVL0wAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMLBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OO6h3jpx_OeMWFoqtHtGsQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAENUY6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcED6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb6B6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYft", "types": "AQMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "rEjKfwi1CMkEKg9Zur-QZg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA-V5bsTGLCNH21piOrMPoln5uBQAAAAAAciyYsTGLCNH21piOrMPoln5uBQAAAAAAciUasTGLCNH21piOrMPoln5uBQAAAAAAeEuKsTGLCNH21piOrMPoln5uBQAAAAAAeMVA", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GXNTn72ecLm64IgFcvS3tw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABYM-q_yN6BkZgGVL7TrJEMggAAAAAAAAAZH6yPOYEnXV1gkHCNY0CftwAAAAAAAACsmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAB6C7K-us0mqSTOC05nudRrpwAAAAAAAABnGf_lEMENHnxizeBtMQocRwAAAAAAAAABsYYc1wpJMhBB0VxP9JiigwAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAHLNpp6LgRqCGeGjs7cnnwItcAAAAAAADsrX", "types": "CAO5BQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xSWbkr7KGN5XffKImzIn5g"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgb9rcEvvhuguaGYCmGWrnWRz1QAAAAADgcaEcEvvhuguaGYCmGWrnWRz1QAAAAADgcoOcEvvhuguaGYCmGWrnWRz1QAAAAAChhuXcEvvhuguaGYCmGWrnWRz1QAAAAACFSpx", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kUYKNSX4GPJ3SuIfrag9pQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChF4kXT4fd_WKeR1cE-hlLelCQAAAAAACg6UL", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "oh4yHktp64UCFk2gPVKr6Q"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAAA_rYYxe-SHgukLEpCkawSk1QWAAAAAAABAZw", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Xpw2GyTSbvWFp3Ih0k20Jw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsftbx9jqjuemtiUm8j-_s73zQAAAAAAXsYybx9jqjuemtiUm8j-_s73zQAAAAAAozaMbx9jqjuemtiUm8j-_s73zQAAAAAAlJwu", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xJ1RDbDqnEVXUDn6zZGvJw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV5BZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbrkZ3CKaS4aU08RhYA19y5ITQAAAAABtb7K", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9Uey1A5J1-R-pjj8BJadLA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAC1itTcEvvhuguaGYCmGWrnWRz1QAAAAAC1hwkcEvvhuguaGYCmGWrnWRz1QAAAAAC1h8ncEvvhuguaGYCmGWrnWRz1QAAAAACIYppcEvvhuguaGYCmGWrnWRz1QAAAAAC1jF1cEvvhuguaGYCmGWrnWRz1QAAAAAC1hndcEvvhuguaGYCmGWrnWRz1QAAAAACGvIkcEvvhuguaGYCmGWrnWRz1QAAAAACGnmbcEvvhuguaGYCmGWrnWRz1QAAAAACGpoocEvvhuguaGYCmGWrnWRz1QAAAAACGsF2cEvvhuguaGYCmGWrnWRz1QAAAAACGKd7cEvvhuguaGYCmGWrnWRz1QAAAAACGMs7", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "i9ooibYAKsAu87Iou-AftQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6xbk6AMXATcqSh5_w-yOEgAAAAAAAAAFbCyjGhoQ-llBpE9jO3P0_AAAAAAAAACgl6qjEZsxpyV10ZQK3YpvIwAAAAAAAACNJgmaT4hGItQStPxlJGEPUAAAAAAAAAAEWHTE8ACR4NC-I-EUuyo1lgAAAAAAAAAIjoHdKmx5pRoeIkTwEIvJpAAAAAAAAAAcIKniS6Oltfo1ekuyyeYCXwAAAAAAAAABSJxVsEnpCDnlRh2uwKM1VwAAAAAAAAAIU8y7tkq3OrTv74Jpmv-rDQAAAAAAAAAkWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFuaPqWrgrMtBr19nB0bwQ4AAAAAAAAAA7DvWhbkzH60wdCq3Z8oLdcQAAAAAAAAAHOljKMbs7Sslvbk6h8kJ9yAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfw5DtxqVhoNPMfZH51ZbSdwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEeyyzzsctNMm8Ix0F5BKrQwAAAAAAAAANL9OdW1GzSEWVanMPfByr5wAAAAAAAAALrx1IYyt_N65Gocl6CDiGDAAAAAAAAAAB75MTQgFwHrOqmJ603qSRDgAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAAcVHbbx9jqjuemtiUm8j-_s73zQAAAAAAWIYK", "types": "CQM7BQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KxkXbAPId9L6ej0qROOBNg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_VyQcEvvhuguaGYCmGWrnWRz1QAAAAACETX8", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KPA1EdDHV9tsyKVmtamT-A"}} +{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI7B_NxRB-tFVbAaTDiew0fwAAAAAAdyiE7B_NxRB-tFVbAaTDiew0fwAAAAABTOLj7B_NxRB-tFVbAaTDiew0fwAAAAAApa927B_NxRB-tFVbAaTDiew0fwAAAAAApXAh7B_NxRB-tFVbAaTDiew0fwAAAAAApVa47B_NxRB-tFVbAaTDiew0fwAAAAAApVPk", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_XnuSOJ6sLm8vinUv3DUGQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgbs0cEvvhuguaGYCmGWrnWRz1QAAAAACIV3kcEvvhuguaGYCmGWrnWRz1QAAAAACFObNcEvvhuguaGYCmGWrnWRz1QAAAAACEMPH", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "qtisN9waCSYumv1f7kFdRA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV5BZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbrkZ3CKaS4aU08RhYA19y5ITQAAAAABtb68", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gcHIgmc1VPaLqFdit4y-Mg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmm1", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SWnMQRi9b6sdpiIXZr2J-g"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDo5XT4fd_WKeR1cE-hlLelCQAAAAAACxD6XXT4fd_WKeR1cE-hlLelCQAAAAAACxClIXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "eTnAPrtbI0UPiiHhSjr1IQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q6ocEvvhuguaGYCmGWrnWRz1QAAAAAD-Smv", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZgvGCOCx48ZK2oWf8bG-Ow"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7-XT4fd_WKeR1cE-hlLelCQAAAAAAC-pEOXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALka76tVKI4mSYDEJ-ABAIpYXcgAAAAAALiQnIG5EpvTeHopVC9IqkA_kSgAAAAAAAb7oIG5EpvTeHopVC9IqkA_kSgAAAAAAAAp26tVKI4mSYDEJ-ABAIpYXcgAAAAAApz47", "types": "FAMLBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Wm3BPPr3QSQFqdes_N00ww"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIBHkZBcmNHMjIQUGuyLAiYwAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACTXTxOwy8uhdU1jeoZU7T8QAAAAAAAAAE_btj02zrVOB5yHsjoNQahgAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAUJKu4CuZaKLu1hUTJJBwZEwAAAAAAAABd9mGmNPajVnDGFBu5a15MIAAAAAAAAAAKaDryPCSTXpxFYpA-G4_AlwAAAAAAAAAMVMij9qz2nHE69MEZpME2cgAAAAAAAAAJJKu4CuZaKLu1hUTJJBwZEwAAAAAAAABd9mGmNPajVnDGFBu5a15MIAAAAAAAAAAKXOXf32QluuyS57Zqm_Q-ZgAAAAAAAAAHXgmM-An4WEa_cvbAz9u_mQAAAAAAAABJ", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9Kursr-ojha3h05WShrLBg"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AcCz5k14PsCcDvFyUC1kmlV3QAAAAABGL-zz5k14PsCcDvFyUC1kmlV3QAAAAABFRGt", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FQSuBOEerdpkcCEsvdl1Yg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf-K", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nD85insZMOUq_FlHy7KJrg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LJvcEvvhuguaGYCmGWrnWRz1QAAAAACIVgccEvvhuguaGYCmGWrnWRz1QAAAAACIVIZ", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lV971tLwMevoQHfu6FbioQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAAFLrVzWSpKLw4v6Aqz2OFQqGgAAAAAAAAA7QqMFArUGE7c3aczTAAedSAAAAAAAAAARpny64bxVlV3tBC1sODqZ9QAAAAAAAAA-PQucG8F-Yu3IYNQ_8vxwFQAAAAAAAAA9mEefCgy0KUI5I66lcwP9KQAAAAAAAACTRww-hja5KWn3UBihMGepiQAAAAAAAAEepGv-va4FOh2AYYkCjbquJQAAAAAAAAAr", "types": "CQMaBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6g5IBth2t5hFUJ29aDZIqg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlPqcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgne", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "P6hw_Ym4WY7GDNK1P28gCA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF9MFz5k14PsCcDvFyUC1kmlV3QAAAAABF9E6z5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF8RLz5k14PsCcDvFyUC1kmlV3QAAAAABFPXAz5k14PsCcDvFyUC1kmlV3QAAAAABGkxG", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "D64BENZwj0LErl1Umv3YHw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSIeXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdM2", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-iLOmSM0bOvxtv9W5h6VXQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7RXT4fd_WKeR1cE-hlLelCQAAAAAAC-pCkXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi94WXT4fd_WKeR1cE-hlLelCQAAAAAACi98FXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwWtXT4fd_WKeR1cE-hlLelCQAAAAAAChsdpXT4fd_WKeR1cE-hlLelCQAAAAAACh1LY", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mDM1aTnXUGk__uYqVeZ4jg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADSZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABCAZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAGrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAuU-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABTHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAIiuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAWyQLW28sZ3rpLXAl8a-XdLgAAAAAAAABnWIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAIKCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAIQRW1om0CtcYaE4B8xaBEggAAAAAAAABGAZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYlCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYRoLIlcLUqj5vIEU93Jo_ggAAAAAAAAA1HiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAACNHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABuHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFP1rXbpjewie805zI0BHMvAAAAAAAAAAILN3NdhSYKxRbaqnM5W9FBwAAAAAAAABpR-HVaw3JZ2IsajBZdLbC8gAAAAAAAABKKnKBdeWKnQ8CH5bzvx0i6AAAAAAAAABK-QN0Lznzz3LjWKMZzZD5rwAAAAAAAAAIeEXFmSmLstwTaBBVp_eSTgAAAAAAAAAFHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFeS9qs83Ev5DGIkgRm0VL-gAAAAAAAAAUem8QMqpxX9eEmdxu2AmtFQAAAAAAAAAPTR0CnebfBTQ0MB6Lw8cZBAAAAAAAAABvN155AC9KQhoTagHpiv5nrgAAAAAAAAAM5MIi91ywnBSPozvkoqn8TQAAAAAAAAAKTd0Ns3o3xskfXfM4g2iVNAAAAAAAAAAGotkeOgHMDZdOlA7GywTS3gAAAAAAAAANeBe2TV8VA2V7lLyhiCvcHgAAAAAAAAAEclNKHmin0SttGhUDhj4qagAAAAAAAAAH68m2CwWM-Ledaj5WNl9lhAAAAAAAAAAqwMYFsNM0woNzFGwcp47vbgAAAAAAAABGEh0v14Wp9mB3u5tYha0hzQAAAAAAAAAmwSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFbhnM-182eA1jGyBQl8pMugAAAAAAAAAU4pL5iWdAziHKM6VzojymqQAAAAAAAAAGX8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0g4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAWMCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc5430MZlAMqI5SXd_yT5HRQAAAAAAAABcHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFN7LIGw1erb09TPWj8M9ehwAAAAAAAAAYwr21gCsicBxbZw2IJaNDDgAAAAAAAAAGEh0v14Wp9mB3u5tYha0hzQAAAAAAAABDcptZwQ29UjBRbf8J6p9ncgAAAAAAAAAHbJn5SozxBbH0binHS94BnQAAAAAAAAB7j11V69pVUElplWteimiv5wAAAAAAAAFaleQWcig8dN9UqyvFYkHEUgAAAAAAAAAocu9Yv1X7I3mgklhHzVnlYwAAAAAAAAABJrDz31YXmFGmOb787RQvsAAAAAAAAACgmsyVDQLKuoPoR7-pw8Y6TQAAAAAAAABANbmk5t8I_9NxUYnE2nMqGQAAAAAAAAAaTfA03yzrHeIQP4enYtoe1gAAAAAAAABzzEpSbjOtmfVAT3a6xWND_gAAAAAAAAALwbOiLYqCcWwpRHbVJhaTTgAAAAAAAAAYDpfPH-P4iHE8WKdUsFaI6AAAAAAAAAALyaDDp4ajuHZJEd39avMrXQAAAAAAAAEmjK78v_SBWXBF1ZebUCWqCAAAAAAAAAA-AC193D4pyhWuZ3IlH4DcEgAAAAAAAAAgjHGplk-5lyW-HjmXkIdflQAAAAAAAAAjGFyqbEms7vfI45E-4bpX6AAAAAAAAAAKqfCyjEvZmP5eBivFcIMKBAAAAAAAAAAdvlCPx-o5L3rGjIY2JuUHlQAAAAAAAAALx7uWPHaqIhPznoWQPn4lBAAAAAAAAAC5KhlpQocDZlLZ7bMHRzeTQQAAAAAAAAA4P45sZexBCIMi_FH_5MLiHAAAAAAAAAAOd2whnvvDimthWEk7i700xQAAAAAAAADEiN3C5173bfl4YBtV1f8buwAAAAAAAAAEKvbcYFET00wCvETlglupVAAAAAAAAAAH1Uhaaq-KCySIEBwLdwJOrQAAAAAAAAAFZc0Fl8AgEv3kvyq-GLd82QAAAAAAAAAF69Ape6b0-GRsMkZddSM5EwAAAAAAAAAFDB9sD0JA2GraAv0uQFBumwAAAAAAAAAG02k8lTPTUqykbeCXCr9k_AAAAAAAAAAinY6Bz6koyx0B67n9HdjFUAAAAAAAAABfQkTHiGv7YcEhiVyTUJfj3gAAAAAAAAAC7XBgGePzkwLX67jllStkPQAAAAAAAABMcoGbgI5VX4tHafqQ7qCCXwAAAAAAAAAUsNyfg9ut6Z6dApATH4i0DAAAAAAAAAASh8QiaabflgCjYmifUSAc5wAAAAAAAAAEoEroAMNNQ8CbyJb3fKpwIgAAAAAAAAAAYq1Ak9_WYtjiRUK6jyz9agAAAAAAAHZiFr4KuuAdcuLzUhqxYoXsLwAAAAAAAPNM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAALgLi6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CQO5BQIDCwQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9UeR8byKX2vZOFjGKyo1sQ"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYr1L9Bd3XIiGWasJdN8trI5tgAAAAAAA2QPL9Bd3XIiGWasJdN8trI5tgAAAAAAAzhBL9Bd3XIiGWasJdN8trI5tgAAAAAAAzayL9Bd3XIiGWasJdN8trI5tgAAAAAAAKWhL9Bd3XIiGWasJdN8trI5tgAAAAAAAq7bL9Bd3XIiGWasJdN8trI5tgAAAAAABckC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BwMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "CQZMmwgNlqYp7kxz6XHs1A"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcYfNkluooXQLYLBqsDwK2VwAAAAAAAAAENQk8Tm52TXU8cldaOVcGKAAAAAAAAAABCgxwKk_hyxbTrCflxCb0vQAAAAAAAAC8dkiK4vnxfZAz-Fk5gU0PLwAAAAAAAAAQ_QDKE9rwKJOqV48Ig3tZ1wAAAAAAAAAWWkWrFO-3w38ID826neafLQAAAAAAAABA9RLReftQjqEbCrOzjF5TiwAAAAAAAACacu9Yv1X7I3mgklhHzVnlYwAAAAAAAAABXAg238VPx7h3EjuW7EjQkwAAAAAAAAFV9RLReftQjqEbCrOzjF5TiwAAAAAAAACacu9Yv1X7I3mgklhHzVnlYwAAAAAAAAABHUauDoEUPNcl9bqvF0k8xQAAAAAAAAAVCZzzpWShlteDQnB55hliSwAAAAAAAAAFdJNFFjunvzyH-JOoGfM9DQAAAAAAAAAFmSBnbtksrVvKstlIID71bwAAAAAAAAAUHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF4JxgAcphLAEsoWC3fPoUUQAAAAAAAAAMneQ9aDSiXyM-ZtdfoiCRFAAAAAAAAAAGXFsyX0Vq94TuMs7Bc44FAwAAAAAAAAAFhT_GFd-d817AZqi9jIee6QAAAAAAAAALju-nyM9Fw6BsW2f0t2JLpgAAAAAAAAAh-dHUlT0ICmuSpM1wfLlVygAAAAAAAAAI3jzoaxecTMpMeDCGDwy-RgAAAAAAAAAEREjw0fMyi7uCOYeOdQhKUAAAAAAAAAD2", "types": "CQMeBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Gmv4Y95ml9oJsJjRZdZlsA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAAAD", "types": "CQMuBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nCPoDiBMg8TKKTfgTIZEyQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATtrHlBrKqhPY4wIsFmpvpGwAAAAAAAAAHfqX01Q_XnrWTMFwMltCSzQAAAAAAAAAcr6OQqChD9ydemA0TTpv7WwAAAAAAAAAByBhEFtyRRCvGIybyDtzQDwAAAAAAAABSUplh6FQYqmDpNUAIFNEKQQAAAAAAAABDiO1mMPtAsXsWYZtGrgAdjwAAAAAAAACoMUGOz76uheRW_JUVWNsoVwAAAAAAAAAFGBhILDYlssyThkp8tHozyQAAAAAAAAAMlN083j_rdg2B1dvviOhFMgAAAAAAAAAGx1wras1gluyTP-Y9Ht2HeQAAAAAAAACWORVIxASD4wCMIrAYPIVrNQAAAAAAAACVqZY0RfBvPvNV6NUJtoKH8AAAAAAAAAAN5LiiYvRk2tAe8r0a1hyONQAAAAAAAAA_n3ZXM9sPxSI10_imjZ8XBgAAAAAAAADdL8d7ZrNDNNkKQuLYAtJHoAAAAAAAAACVD_SFoBfOPuB9mtXdOIQrvgAAAAAAAAAevS5pENec6C6ecYnUlpn6vQAAAAAAAAAD2m4VqGfi_IE6FL0pSfE_-wAAAAAAAAAQYaC_rTr5WsI3HFN2LUobYQAAAAAAAABCXJOIidNeiRs9_ZATFdFs-QAAAAAAAABB2Tuo-C9u5ZQSFYDa7WjfzAAAAAAAAAAdl0o_mr3onqzQhpZerRGtWAAAAAAAAAAFxR9z1wQG4rHRUc-6hGmCnQAAAAAAAAAXcP7knzpeaRcHnYFC5O8YoQAAAAAAAAAjZBiGD584czs37vexEv-WgQAAAAAAAABxRBTRaju-ab8ob43Dp-qdJQAAAAAAAAAfvmmGHZfQIaqoPwChIOzq-QAAAAAAAABwmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAANRFjLCSKw9fP9oqeV0WzvFgAAAAAAAAAGwcWRy9o8aBuBPSZu3QixfgAAAAAAAAAGQgPoy2NvCHHBSCpV0FYoygAAAAAAAAAZABUSIyp6z6jka7vrSENSfQAAAAAAAAAT7d3seGBxg838auGMbrqBQwAAAAAAAAA3dZ7JiawsSbyUWtx7EnYO0wAAAAAAAAAGgvF2yYYQgGwIfgcGSJAUHgAAAAAAAAB6Uf1tpnHSTgQXg9RKIrvZYQAAAAAAAAAKbxcZQU9NPH7Mji3IrHeYGQAAAAAAAAAURw2pUsVoJZp3HkcB3nNMtAAAAAAAAAAFf8VYhNP4CdjxG54sGwOztQAAAAAAAABo-xeI6MIHiM8nZhd6ChS_mAAAAAAAAAEJEAeWdOtQ4-I723aXPsAYbQAAAAAAAAAIMpA-_yb_lGv178DTnH5RUAAAAAAAAAAKQFD262cMfH9Fkx0D-SBUcgAAAAAAAABhk-Vn8s9qtj7D3BSWLIWnXAAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAActFrbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qeGt3fpd8fb-33IEga_JxmgAAAAAAAAABIGwhMoYnMofyYEaJiOTDygAAAAAAAABndVXLQszZHgabMaRgrKn91QAAAAAAAAAbkUQWAMnv1TRPiRV23phECQAAAAAAAACM4oROntQ4zAdpf6wKcORUhAAAAAAAAAAA0aeAC4XpbxqxubqgoasMaQAAAAAAAWFk0aeAC4XpbxqxubqgoasMaQAAAAAAAW3P0rNuxKNw6YxtKvsF6kS_jQAAAAAABGiX0rNuxKNw6YxtKvsF6kS_jQAAAAAADu1l", "types": "CQNOBQIDBgUEAw"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "eSDjNZzmE89aAtj56rJKEg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZBNctXlyqBr-0kZdjpDJr0AAAAAAAAABYQBE1k946VwHy-LGygYESpwAAAAAAAAAkWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAg-q9yc6LqB9jJnwfxcnsPAQAAAAAAAABfCvC3lIC7E70AiCoZ7DVYSQAAAAAAAAAIAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7rjZ7hTVSpTbRt5xYa240Q"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAAKk_PL9Bd3XIiGWasJdN8trI5tgAAAAAAKiuEL9Bd3XIiGWasJdN8trI5tgAAAAAAKi83L9Bd3XIiGWasJdN8trI5tgAAAAAAKgETL9Bd3XIiGWasJdN8trI5tgAAAAAAML0EL9Bd3XIiGWasJdN8trI5tgAAAAAANJ8gL9Bd3XIiGWasJdN8trI5tgAAAAAALH2nL9Bd3XIiGWasJdN8trI5tgAAAAAALKIlL9Bd3XIiGWasJdN8trI5tgAAAAAALH_ZL9Bd3XIiGWasJdN8trI5tgAAAAAADRxaL9Bd3XIiGWasJdN8trI5tgAAAAAAB9-KL9Bd3XIiGWasJdN8trI5tgAAAAAACA5A", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8sHt7LZlQ0liSOpTVZhGAg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZxyf5INnJibBb8rT_yMcsAAAAAAAAAAEe6HlflPyKAlNlF7JPJCNJQAAAAAAAAFLEe5ZDKMHiVCtP6qAhF9CEQAAAAAAAAEqM0BdGcfCFDkj9hzrRHcPqQAAAAAAAAAPSxO-0PVs-XzTJlP5O_VPJAAAAAAAAABEiS_hSEqT2yRZcvG-jikx2QAAAAAAAAAjpv2BnGF3DU5EF7_9vBhh5wAAAAAAAAAj2WFW5n_XxRma7D1UP5oRKAAAAAAAAAAIlLlt0XIN2jdXfrgMm001LgAAAAAAAAAFw5etz-LhHL3UHmhPFsjQPgAAAAAAAAAIq7foCyXWFgPi02TtJD0XiQAAAAAAAACAU0AZMa4zRqgmaTLFaFBIIwAAAAAAAAAGnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYPWtIWZkUUG3HKpZ_gvZdFgAAAAAAAAADle3dvr5GnvRtS1OdN5yIVwAAAAAAAAADkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAgwkAS81DnJIPI3jCVPnJ-eAAAAAAAAAANXBC_dL5MLcb_NW7BHUcUsAAAAAAAAACOMkNMV6YsN8vqkVrdv-R--gAAAAAAAAAIU3H23HCvByWmKhcnYcTRGgAAAAAAAAAJCvC3lIC7E70AiCoZ7DVYSQAAAAAAAAAVjCF-L0oa1cz1koEOd3XDdQAAAAAAAAAFBJ_g-jSj1e8zPXdoO0aPvgAAAAAAAAAIBSJ5hdjHKaXygIliq5aHKwAAAAAAAAA9pmPXYMcSXBVkwYFWHrsHvQAAAAAAAAAL", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hLNd2TCmh3-IMKclCV4PDw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o9IXT4fd_WKeR1cE-hlLelCQAAAAAAC-pN7XT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FQMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "AUNmNv0i4w5YnQPHlQey4w"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBNB", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mDXCeTd_eRt1BQxPfDdwOg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LH5cEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEMc0", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "qfTmBimUEntZFf3uqyP5ew"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJLcpgtQ4kMk_MBWrPUAFqVnYywAAAAACI3BdgtQ4kMk_MBWrPUAFqVnYywAAAAACI5nSgtQ4kMk_MBWrPUAFqVnYywAAAAABv9EEgtQ4kMk_MBWrPUAFqVnYywAAAAABsv09gtQ4kMk_MBWrPUAFqVnYywAAAAABskOEgtQ4kMk_MBWrPUAFqVnYywAAAAABr-YMgtQ4kMk_MBWrPUAFqVnYywAAAAABsAm66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlqJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCIE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA9F6tVKI4mSYDEJ-ABAIpYXcgAAAAAApQK3", "types": "EAMMBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "M3TLkod4MtIDVAdTRCLeig"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZxyf5INnJibBb8rT_yMcsAAAAAAAAAAEe6HlflPyKAlNlF7JPJCNJQAAAAAAAAFLEe5ZDKMHiVCtP6qAhF9CEQAAAAAAAAGtVyubPqZIpIsaGdq5yyQHTAAAAAAAAAAHH3I9lsKeM021aDJgbYYYAwAAAAAAAABHL6IPi9cG-hWDQ-8_WE6FFQAAAAAAAABdBLpe-z4Yd5pwaMKR_BsaGwAAAAAAAAAMQJL-SfxFsSlqFyMufqU3CAAAAAAAAABceOzzLIU2TSEN-nL8WNPcPQAAAAAAAAAQzcDe-AWheYxyPE1J1pvsUwAAAAAAAAAFAUK9d8NUT-13gC6FtlSmKAAAAAAAAAAQVHW64ADdKWEeKDNfyNMi1wAAAAAAAAEV-jPUB-Rd5LS45isiTdEjugAAAAAAAABQIIDbja4IvkQtGrP28QyvpAAAAAAAAAAJ3H6017qNLmhn4DKdcizx1QAAAAAAAAALnVrTRc3fHVfAm0SCrf0eOwAAAAAAAAAGAUK9d8NUT-13gC6FtlSmKAAAAAAAAAAQVHW64ADdKWEeKDNfyNMi1wAAAAAAAAEV-jPUB-Rd5LS45isiTdEjugAAAAAAAABQIIDbja4IvkQtGrP28QyvpAAAAAAAAAAJ3H6017qNLmhn4DKdcizx1QAAAAAAAAALnVrTRc3fHVfAm0SCrf0eOwAAAAAAAAAGrACFiisEDT-b6Twii8Yc6AAAAAAAAAAF2ZLt6QSDm53uXJtEjRk5cQAAAAAAAABLFEdkdGoY4hlyAih8cHpaLgAAAAAAAAAESeSHb4DYVqNQaGYUHfay2QAAAAAAAABVGGHOuWs-kNsU0GtQ48oWGgAAAAAAAABOSeSHb4DYVqNQaGYUHfay2QAAAAAAAABVGGHOuWs-kNsU0GtQ48oWGgAAAAAAAABOSeSHb4DYVqNQaGYUHfay2QAAAAAAAABVGGHOuWs-kNsU0GtQ48oWGgAAAAAAAABOSeSHb4DYVqNQaGYUHfay2QAAAAAAAABIvb4ztJy7kQUuiz66b5BPNgAAAAAAAAAJ4G0_XUxOHYuEKQMP-FkGHwAAAAAAAAAFMvbPSvnNdxwES7PLV-EUDwAAAAAAAAAA", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-OuU_jt8sQ20eSWAqWt71g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAqovRPcszTde0VZh4hrqQUtwAAAAAAAABBgJKCOQJCNUe5j61lhCTyewAAAAAAAATdBzHaaplfCkGFxXmJVqCJAgAAAAAAAAARkLG20VFMtAeL120q9dFk-QAAAAAAAAAhR9d-4EOoAQqhB1QW7ZwT_wAAAAAAAABJstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGfDqNreXUioiFDFwNREuqLgAAAAAAAAAsCasUHBASz8HLDmgbus_pogAAAAAAAAANUKLoduJn5-YPXULy7Ukl9AAAAAAAAABuahMxWqP1a_8hG_qUbGypwwAAAAAAAAAdAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CQMwBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "twLQSGHRRNfqbcH24UR0Ig"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA70RgYbC2fQjxygsXZf0s0DwAAAAAAAABPiAgP1DBH7Z9OPzvK7kQabQAAAAAAAAA3brHwMWIWqKKcmy2jXj1-xAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADXgFPyL3qH7XvAMbrBvAuRfwAAAAAAAADbtEnA5bbecd5HgfHANQcYvAAAAAAAAAAMRzjbtVKcKAJORTMSkyG2eQAAAAAAAAAGvpboNfauwLs6xQ0xkHOOWgAAAAAAAAAtO6091ZB5jV9xKR7I7_uzYgAAAAAAAABdKGcnodwCdbO2RZIs7I3VDAAAAAAAAAG7u5vAXtVp9d4wvRuocarrCAAAAAAAAAAPaxidElRbDvZZ7rQ8Ca4ceAAAAAAAAAAFTVILalueBBKmusxvrzs61AAAAAAAAAFQ-ewB6MfVuUB7Vi_jcn5d-AAAAAAAAAAvsZ7DuqUIOGepxIijYq8VswAAAAAAAABsy3V4Wh9j61CfcWNgvt1uPgAAAAAAAABz-i9B3-JNdczGS_XZOzEMqwAAAAAAAAAcOqpwupFnKCF_JGoASiI17AAAAAAAAAAN0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdxn1WEw8JlmcUP5ReFMzZYwAAAAAAAAAYTpjjgqBU-O7RfxeFvF0xSgAAAAAAAAA3rdit7Kpe5k_2Pr8SUDMjsQAAAAAAAAADL5j21l_lgSbj7tDtmImORwAAAAAAAABkB9B5e8V6cjFPIRCy3TgKPAAAAAAAAAAGhnFmKbq4bPMUr6dKfnAuCAAAAAAAAAAGKYUKYe5FJokP-mDuLYX4tQAAAAAAAAAJi2OZ9-P_pjOFSV36486xoQAAAAAAAAAUvFHpuMfxurJGYl7N87FnEAAAAAAAAAAA", "types": "CAM9BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GpM3-TGe7t3m0_qGifCD9A"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN4uu", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fWB1pGsmIM_jfobk9T4fjA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADSZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABCAZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAGrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAuU-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABTHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAIiuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAWyQLW28sZ3rpLXAl8a-XdLgAAAAAAAABnWIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAIKCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAIQRW1om0CtcYaE4B8xaBEggAAAAAAAABGAZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYlCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAACNHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABuHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFP1rXbpjewie805zI0BHMvAAAAAAAAAAILN3NdhSYKxRbaqnM5W9FBwAAAAAAAABpR-HVaw3JZ2IsajBZdLbC8gAAAAAAAABKKnKBdeWKnQ8CH5bzvx0i6AAAAAAAAABK-QN0Lznzz3LjWKMZzZD5rwAAAAAAAAAIeEXFmSmLstwTaBBVp_eSTgAAAAAAAAAFHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFeS9qs83Ev5DGIkgRm0VL-gAAAAAAAAAUem8QMqpxX9eEmdxu2AmtFQAAAAAAAAAPTR0CnebfBTQ0MB6Lw8cZBAAAAAAAAABvgYxqkqlVp6_U5mFkfV4jIAAAAAAAAAAMtZaMdHxmjfXV5e8wiO0L_AAAAAAAAAAKtX-1hgGXR0WV-6whS0MwZgAAAAAAAAARotkeOgHMDZdOlA7GywTS3gAAAAAAAAANeBe2TV8VA2V7lLyhiCvcHgAAAAAAAAAEclNKHmin0SttGhUDhj4qagAAAAAAAAAH68m2CwWM-Ledaj5WNl9lhAAAAAAAAAAqwMYFsNM0woNzFGwcp47vbgAAAAAAAABGEh0v14Wp9mB3u5tYha0hzQAAAAAAAAAmwSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFbhnM-182eA1jGyBQl8pMugAAAAAAAAAU4pL5iWdAziHKM6VzojymqQAAAAAAAAAGX8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0g4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAWMCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc5430MZlAMqI5SXd_yT5HRQAAAAAAAABcHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFN7LIGw1erb09TPWj8M9ehwAAAAAAAAAYwr21gCsicBxbZw2IJaNDDgAAAAAAAAAGEh0v14Wp9mB3u5tYha0hzQAAAAAAAABDSLFvE_cP2SyjsekmrBc9LQAAAAAAAAADpuQkFDz8_jnH98S3xQfURAAAAAAAAAAGmS8gXE26pQn8rBZ5C2O6qgAAAAAAAAAilUab7RI6M1kcYmpom65WngAAAAAAAAAT1B7iWINM55ii7YHBwT_BfQAAAAAAAAAaSLkdwnAJDm_ftJbeTN6kiwAAAAAAAABB1dfKi8RKHCcTdGDCyD7noAAAAAAAAAAPIduqSoeBKMJ1d1pipuvwGAAAAAAAAAAj1dfKi8RKHCcTdGDCyD7noAAAAAAAAAAP_RXItxjZY1fxMf77PZ043AAAAAAAAABKDt1F-FuYYu7f950c2kh4-wAAAAAAAAAXFCDKDuwrtiBO1VhqKBNSawAAAAAAAAAUuX6id2FEnjIyJkjMZEmhqgAAAAAAAAAEKexVB1e9PNIcjT5PXtDCTAAAAAAAAABU5FhUc-ysJtthqcIVmgASTQAAAAAAAAA7goak5Y9ISXuErAxp-dfksgAAAAAAAAAPX0lArM8Um0i6Jb2IPyUDBwAAAAAAAAAA", "types": "CQOVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "QgLqFhOqhxBM1zdfXvUm1Q"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5uu", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mduFZHSqWmcFAnBXnITtBA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABFPp_z5k14PsCcDvFyUC1kmlV3QAAAAABFxkzz5k14PsCcDvFyUC1kmlV3QAAAAABGnUi6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCOK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEuzk6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEuvp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEuXc", "types": "AwMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-vNIUcH_pVq3rXT_PTR3xw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAAB1Rt6zauIajYCS35l66QRKCQAAAAAAAAAqE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFVIpKyJ4wSn-DKbqb5c24RwAAAAAAAAAco-YCkVIb1YKeUkrNTWvXyAAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4HIIjrBY7gA03CnEjMAD7QgAAAAAAAAAMBY5YV5xXx7ZBlABDbJ23mAAAAAAAAAAMcNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAAT5P9SwSLlS7AjqRDPaj6g-wAAAAAAAAAHyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADv9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABDHfFlM3axnhO28EteQn-2WAAAAAAAAABJ5utt2dQ8HKrTepHdNpprxQAAAAAAAAFzlcQ_GZAXo1Tc_jJPboC4jQAAAAAAAAAEH5UzWn8gasz8z3Fz2sj1zQAAAAAAAAAEqh9TLv54zIF_xG_9OSwpiAAAAAAAAAA00nkc682jKjwunCriWrMqFwAAAAAAAAAXbuggQyVhyi_Jg8jRb-Dk4gAAAAAAAAA1NnsXqH-CVYMwVp_zbU78aQAAAAAAAAAIQunNj1oMDkHtmA3AacNPUAAAAAAAAAAFx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAA8DDAjVJl721y2vxKHGSBegAAAAAAltV5", "types": "CANPBQED"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bv7KuJFIr0dHhLc5vDTivg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAdLJM8DDAjVJl721y2vxKHGSBegAAAAAAdFIV8DDAjVJl721y2vxKHGSBegAAAAAAdDbu8DDAjVJl721y2vxKHGSBegAAAAAAdJzb", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "w2vSdMp2FpCKcQc-Sfv4Hg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eaUcEvvhuguaGYCmGWrnWRz1QAAAAAD_AtNcEvvhuguaGYCmGWrnWRz1QAAAAAD_ChZcEvvhuguaGYCmGWrnWRz1QAAAAAD_BYkcEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEVyz", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "J9IXv_Dgbw208zqBl9KIig"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAAAZAgLqjB_amR59Lv13Nhle_NwbwAAAAAAAkCC7B_NxRB-tFVbAaTDiew0fwAAAAAAbNKr7B_NxRB-tFVbAaTDiew0fwAAAAAAdIfl7B_NxRB-tFVbAaTDiew0fwAAAAAAZDl07B_NxRB-tFVbAaTDiew0fwAAAAABFNNn7B_NxRB-tFVbAaTDiew0fwAAAAABFUxY7B_NxRB-tFVbAaTDiew0fwAAAAAAaLKU7B_NxRB-tFVbAaTDiew0fwAAAAAAaK9a7B_NxRB-tFVbAaTDiew0fwAAAAAAjxM07B_NxRB-tFVbAaTDiew0fwAAAAAAp08b7B_NxRB-tFVbAaTDiew0fwAAAAAAptXu7B_NxRB-tFVbAaTDiew0fwAAAAAAqsI97B_NxRB-tFVbAaTDiew0fwAAAAAAqpK_7B_NxRB-tFVbAaTDiew0fwAAAAAAqojf7B_NxRB-tFVbAaTDiew0fwAAAAAAqZ7E7B_NxRB-tFVbAaTDiew0fwAAAAAAsY6Q", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0zahREvpGsNoW6K7WjuwwA"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHba4rFFPORY8_4FvK9QaA3QUQAAAAAAGRIW4rFFPORY8_4FvK9QaA3QUQAAAAAAGRJh4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp4rFFPORY8_4FvK9QaA3QUQAAAAAAFP5HUJmIMEc6K8gJ39NHYaD0WwAAAAAAB_NwUJmIMEc6K8gJ39NHYaD0WwAAAAAACLd6UJmIMEc6K8gJ39NHYaD0WwAAAAAAGOmQ", "types": "KAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Gr_H85XinNcu7ohea8Ev2g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAACNJgmaT4hGItQStPxlJGEPUAAAAAAAAAAEWHTE8ACR4NC-I-EUuyo1lgAAAAAAAAAIjoHdKmx5pRoeIkTwEIvJpAAAAAAAAAAcIKniS6Oltfo1ekuyyeYCXwAAAAAAAAABSJxVsEnpCDnlRh2uwKM1VwAAAAAAAAAIU8y7tkq3OrTv74Jpmv-rDQAAAAAAAAADolxHK9E9Kvo_BFcP7SNkxQAAAAAAAAAEolxHK9E9Kvo_BFcP7SNkxQAAAAAAAAAEqy0et5QaTY5taodjxWkq4gAAAAAAAAAMaoz7JDP1wYMRhv-rSDBZjAAAAAAAAAAJvzF2pi1WQpPJ5LtMBp-0XgAAAAAAAAAIBSGYbOS21g5XOXq-oh30UwAAAAAAAAAHJE27ij9kev0kcTbJ4XEAFAAAAAAAAAAmjT7FcBehNASUCT0wTP--hQAAAAAAAAAGeyyzzsctNMm8Ix0F5BKrQwAAAAAAAAANL9OdW1GzSEWVanMPfByr5wAAAAAAAAALrx1IYyt_N65Gocl6CDiGDAAAAAAAAAAB75MTQgFwHrOqmJ603qSRDgAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAAcVF4bx9jqjuemtiUm8j-_s73zQAAAAAAcw0tbx9jqjuemtiUm8j-_s73zQAAAAAASDAGbx9jqjuemtiUm8j-_s73zQAAAAAAYdi6", "types": "CQM-BQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3IBPv6_iL-yVtBeXaQHMRw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAfCc18DDAjVJl721y2vxKHGSBegAAAAAAfCT68DDAjVJl721y2vxKHGSBegAAAAAAeZ2z8DDAjVJl721y2vxKHGSBegAAAAAAektF", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "CwmDE10uD1eMoImp-GVrEw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAADxz_WaY2pXtLyni7L_8jKtBgAAAAAAAAAPEIpTc6zorXqtTjOVazk4HwAAAAAAAABogbCFQS2suYv46rP_aUsebAAAAAAAAAL_zvtGCZWh7Ji_VQTOB6BAGQAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAMvPUU5i5r5XThwPX6RJsZ7gAAAAAAAAAE21OviUyRbmnxs6uitnTC3wAAAAAAAAAP3R6peF1IdwfQqmb119dyMQAAAAAAAAAFjRPUUEtO9tA38nKSenaVfwAAAAAAAAAC3R6peF1IdwfQqmb119dyMQAAAAAAAAAFMDjyE5AlqASoc6cxfe5K2wAAAAAAAAAwmxRwXt-8CQt60ehjLjpoTwAAAAAAAAAKZaQmU-IXyGvFS9G6a9D4BQAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAAD8oQ_ZJ3ImiZWOZcNHv_WYwAAAAAAAAAGGq5m7YsN9AxAFbfEdlTTPwAAAAAAAAAK44zqBPhw9bQW92teuaXd1AAAAAAAAAATwd-BAOg-0EmznotQi73lBAAAAAAAAAAQ_SYQoPxIook4uiOmDZql5wAAAAAAAAAIZYjMvLm_P9KQzcbY_YvFhwAAAAAAAAAGinEc9_3SInxrxMPUsGkjqwAAAAAAAAAf2oqM6SzR82V7WWu8G-cC8QAAAAAAAAAn4YmRwNpBmxWxpK1Ie_ffrAAAAAAAAAADbSqWaYKtavFZqjY4T_025wAAAAAAAAAQFD67YgaFeLuqBai5R0qQdQAAAAAAAAAm", "types": "CAM3BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "aPbM0hO6AOwxvIGYUBCUKQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAAAA", "types": "CAMIBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mUUjSkXYtF4rtngUWjmeUQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYCMh__DRjYW6WKuSO4E-9UAAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFaD5tQt3PTji3IEVewu1DRAAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATKKq9hFu_HcVwkAnnzs7gcwAAAAAAAAAHDJAMC8tUl4_oL0LoeNoUgQAAAAAAAACVSjePYWwKalqPF7fBjhLglgAAAAAAAABeOVbzts78rozw73k3kwZElwAAAAAAAAAJw52v69QzC-f_wTnaeDz8vwAAAAAAAAALKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABf5okn6LIO72fwnskoiRwJAAAAAAAAAAQVr464Hci92DwulADwvd6QgAAAAAAAABZJvScc-kAblhDe3HgLZgGAwAAAAAAAACNatxNg2wB0yTwBdq5mQELkAAAAAAAAABVTm69BHhvzhA-OK8e2Udw5AAAAAAAAAAIhRsRUw78WKiucrogpgXANwAAAAAAAAAHsueTM-LYsBZU9Btl9NKTwAAAAAAAAAAEomA88yQfT91566xoyEY7sAAAAAAAAAAcuivmFtqkx0mSDLjpV5jf4gAAAAAAAAABRK8a3DzcZMuwoK9TpGXQTwAAAAAAAAA3hDeNHR-uaDqXexxBeqdlYwAAAAAAAAABNuqcOqANutL4nD8JjGfmlwAAAAAAAAAkOD88rfBmy4BfCXerLT5e5QAAAAAAAAA7lIoxgWzH60wdDIe5gejCgQAAAAAAAAAI3kqKIOk7SslvcfRGmqs1wAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAChAAnABuJtrWflPvotxCoPjQAAAAAAAAAA", "types": "CAMzBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "w35COD7jsOBT9GDBrzNokA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAACceDtEsbyqaPA8nODsaXH2CwAAAAAAAAAjdb7h5t6lXZ_2CL1N4DXU6AAAAAAAAAAOcAnVCtwTUMiPtQhyaFTtfgAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAU3B2E3nnskNJUgYVRkMUbJAAAAAAAAAACHwm3pNPC4Wa3xFabNuzwcgAAAAAAAAAROVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAAwR4O21YPz5WkGUKdaZ1xVrgAAAAAAAAAak9mnaRclHZhhpFF3LBU5TwAAAAAAAAASAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CQNGBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LYyAwk-p8w31-4oPfcqkXA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATQDkJCt6xHk7D12ZqlrT-UAAAAAAAAAAHPX3E_b7jZQaK6SiJYskQ3QAAAAAAAAAJZaLdh2m65raIV_JyagrUBQAAAAAAAABnazI-mX3CgcWhg9AcjJjNnQAAAAAAAAART7Ugi353BwPylAwIPK3gzQAAAAAAAAHvdr7nJhzDAJ3KA627xZhFegAAAAAAAAAUE66a7lKbkjXDy4kHrdweRwAAAAAAAAALavH6-iyYHlN_flagvaXwWwAAAAAAAAAK5JuKxbkWPMw0EpITr8WSNAAAAAAAAAALCcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAAACQh22cv3M-xNK0_IOuNdQuQAAAAAAAABAdFuRXSangYgd0mdMqBWlpgAAAAAAAADqsO4szKNZnXyLfMP7gPsjpgAAAAAAAAA9jjxn4cl8bBaRqPgS5F0n8gAAAAAAAABEp9UR3btTZUo1MztbkeIkOQAAAAAAAAALZICRnstTjqeSOkLK1jp-HwAAAAAAAAAJ34fB7qb3OTOSVWKcGDOtPgAAAAAAAABl6X-l4zSEzV-o-Qo3loG8-gAAAAAAAABAAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CQM0BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gU5lkuog4teZPWuyQj4toA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABiUDU1_CPvfFPVWUEWglidAAAAAAAAAAAoWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1eNbj51SwVufxZ4R3ztSduAAAAAAAAAAMRLw4AzQ1twQD4Yf1dhVtogAAAAAAAAAICEhlVwLkGcF6wPQ9FYzYUQAAAAAAAAAFEqtQxEspQTRRSSWWTkm-NgAAAAAAAAAJnPcpIVOjAbk4oUD0VpGGhQAAAAAAAAAjPQ7bqNWiBKX3an-wfD_BAAAAAAAAAAAFcoLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJ5gDnmh9w-dLR4BjuTxdXiQAAAAAAAAATKmi3IV_5C6YkqCwr-5OCjQAAAAAAAAAtv98Nje6Ys-SL3vVkHXAt8wAAAAAAAAANX11Ep3t2e5MnXIBtAoD8OQAAAAAAAABAmxr0kxn6yVavxgRwPiOz3QAAAAAAAAAG3ZGnbBP662Xz656-BL63fAAAAAAAAAACy_Kb_1plOC7673Fl1U32vQAAAAAAAAAFcoLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAAYEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAF45C-Q8d2gQJCMIvUacUWRQAAAAAAAAHX", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ibDj5ZZUt6AS37OrshiJdA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYCMh__DRjYW6WKuSO4E-9UAAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFaD5tQt3PTji3IEVewu1DRAAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFw_rNNsza6yNRFkKCHuRo-gAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFlJPXvfs9zQkNSoaonclVhwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAB2GBJ1zKS_b9jP7AxB92tjCQAAAAAAAAAo0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF8XTAfUAP46Th8rm1oSYfsgAAAAAAAAAcFDp23rE1CceEicB2tyC3EgAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_LVimiel0B4F-AHEis4ToAgAAAAAAAAAMS_GmAS-sCtPOI6egY6LXiwAAAAAAAAAPbSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT-r9PdXX1mVfrKM4cjx98VQAAAAAAAAAHckdRYj6mGdEYJvYh_1v9CAAAAAAAAAAYANUDzCguopTSw91qnI0ylAAAAAAAAAAOlm0R1SzMMmNN-37Ki9fPBwAAAAAAAAA6gtDjK6yOxbQD4RswMjRVngAAAAAAAAACVY8isU5x9BO-Wo5ffXRMDwAAAAAAAAASdGVCghYZ4HWUSmxadLJ4TQAAAAAAAAAIT8V-m3VYkd9-YZkFXMvDaQAAAAAAAAAHzaw8NcOC1xUcyZZoD0CI1AAAAAAAAAABe4gRr7pHlbk5g_m4oMCLjwAAAAAAAAAQZ18PJDdsrxyMOJeaQbeK7QAAAAAAAAAhBrvx5pqqFaBnVfPIEkqCGAAAAAAAAAACAfiXYbp-AtxXKRZ0LJwGNwAAAAAAAAAl8u6bNB3vDeHwxSO1sOhr4QAAAAAAAAANJoXZuMHmMmo6I15bv4Nz5AAAAAAAAACj", "types": "CAM6BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "BVI7-9Shiru48UhVo2eoyg"}} +{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBAu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAYtbf6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgVN6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ABw", "types": "BAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fodpQnlx_a2XgcQZ7xijjQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGgeDz5k14PsCcDvFyUC1kmlV3QAAAAABFr3Wz5k14PsCcDvFyUC1kmlV3QAAAAABFpxkz5k14PsCcDvFyUC1kmlV3QAAAAABFc6fz5k14PsCcDvFyUC1kmlV3QAAAAABGnT3", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "D0btI8J3q8CjKMGLeUsKig"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmLc", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zGL0B9VberxW4FezGa6l7g"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCYyXT4fd_WKeR1cE-hlLelCQAAAAAAEOC7XXT4fd_WKeR1cE-hlLelCQAAAAAACwzdWXT4fd_WKeR1cE-hlLelCQAAAAAACwt8NXT4fd_WKeR1cE-hlLelCQAAAAAAChWnJXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdUd", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "u2u6ApbEqH4fCGK4_Nj0-Q"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXUptYxe-SHgukLEpCkawSk1QWAAAAAABXVjkYxe-SHgukLEpCkawSk1QWAAAAAABXVBsYxe-SHgukLEpCkawSk1QWAAAAAABXZL0Yxe-SHgukLEpCkawSk1QWAAAAAABV3AkYxe-SHgukLEpCkawSk1QWAAAAAABV1ydYxe-SHgukLEpCkawSk1QWAAAAAABV6clYxe-SHgukLEpCkawSk1QWAAAAAAAFzcMYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2kGYxe-SHgukLEpCkawSk1QWAAAAAAABkE8Yxe-SHgukLEpCkawSk1QWAAAAAAABCG-", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yeQfSUI4_BczpbW4QdVcSw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAFJfinhoQfoECf6Q4HPC08YkAAAAAAAAAAqcn_0Dt8F1JGwazqn6MVOnAAAAAAAAAABDnuglYjSP_yHnOeoUpC43wAAAAAAAAAB3v2TU8A01iCPuVWdiUVv8QAAAAAAAAApL-_tQCaPRoXtazKap89hsgAAAAAAAAAOZhtNJYoOwm655zArM3sIngAAAAAAAAAmYgvoZ6DleZJd_ACRhoNarAAAAAAAAAACUT4r1woqEdacoKDuZFw-vgAAAAAAAADtUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAmQVeLj_oPnEjl_jKTv8aQqAAAAAAAAAAlUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAxrp3sprQtO8hOwekVupMQwgAAAAAAAAA0XoNqQsMeesgJkRR-qQrvugAAAAAAAAAzrn6MTH_GcOdtJ7YxIeV5gwAAAAAAAAAHUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAUnQRJ3xr79n3cY6qS99IffwAAAAAAAAAEAhC6Xj-K1vOC4yqhcS2tRAAAAAAAAAATopFI2iPPQrSoKgHSzuYsiwAAAAAAAAAInX5EwLqa4-7opgPxIg4PZAAAAAAAAABw575WKZsJOrf8RDDJpG_1WgAAAAAAAABhiq5pqOpNVrXrvUr0VXwf8gAAAAAAAAACbVXxpnmgIbO0K4TjtY7pDAAAAAAAAAArZ-CiexQVqL-aPBYv4uHXWAAAAAAAAAAIiit9TEPWxIcbSUSJseypHwAAAAAAAAASvc_2qIuahQ6DM3LWEJ9q5QAAAAAAAACEqN4Vqjijt0HHN8TkXT1dVwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAHs6vQ7EacG6CR4rzcFaNFEsTQAAAAAAATMv", "types": "CAMmBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "AQgiOwCxuS5ewG4b0XgbGQ"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAALU4NL9Bd3XIiGWasJdN8trI5tgAAAAAABq2xL9Bd3XIiGWasJdN8trI5tgAAAAAABq9BL9Bd3XIiGWasJdN8trI5tgAAAAAADO-AL9Bd3XIiGWasJdN8trI5tgAAAAAADHTjL9Bd3XIiGWasJdN8trI5tgAAAAAAB-zZL9Bd3XIiGWasJdN8trI5tgAAAAAACA5A", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "tQjVSdrygbcOkkQOq1dlzA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7-XT4fd_WKeR1cE-hlLelCQAAAAAAC-pGEXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FwMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MOn_jA1RJOEOCR_EdpmQSQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHZB2XT4fd_WKeR1cE-hlLelCQAAAAAADHZLEXT4fd_WKeR1cE-hlLelCQAAAAAACzD3sXT4fd_WKeR1cE-hlLelCQAAAAAACgaSQ", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8OjYmgPHSo-kKUxmUT3cBw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAAFLrVzWSpKLw4v6Aqz2OFQqGgAAAAAAAAA7QqMFArUGE7c3aczTAAedSAAAAAAAAAARpny64bxVlV3tBC1sODqZ9QAAAAAAAAA-PQucG8F-Yu3IYNQ_8vxwFQAAAAAAAAA9mEefCgy0KUI5I66lcwP9KQAAAAAAAACT", "types": "CQMYBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gxzjL_p8qDzzo6NpgcG50A"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHh-EgtQ4kMk_MBWrPUAFqVnYywAAAAACIsVKgtQ4kMk_MBWrPUAFqVnYywAAAAACIsMZgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4V0gtQ4kMk_MBWrPUAFqVnYywAAAAACG1wbgtQ4kMk_MBWrPUAFqVnYywAAAAABqJoK", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bGp_k0dgNQaJzNCJfp_KVQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxf3Z3CKaS4aU08RhYA19y5ITQAAAAAB0DI8", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "p8OUZgbA7NiB4oqts39unw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAAB1Rt6zauIajYCS35l66QRKCQAAAAAAAAAqE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFVIpKyJ4wSn-DKbqb5c24RwAAAAAAAAAco-YCkVIb1YKeUkrNTWvXyAAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4HIIjrBY7gA03CnEjMAD7QgAAAAAAAAAMBY5YV5xXx7ZBlABDbJ23mAAAAAAAAAAMcNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAAT5P9SwSLlS7AjqRDPaj6g-wAAAAAAAAAHyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAsm-6JEhiFmXqLZfGLnUoQcQAAAAAAAAAEomA88yQfT91566xoyEY7sAAAAAAAAAAc0Ws0TuC7P76blUs_eNtzJQAAAAAAAAABLeNDhekdw-sjNwsp6sqctgAAAAAAAAAHrpC2HihAJEedhpNUsvhzNAAAAAAAAAA3o3sxp4JlXj_WO36SyKuarAAAAAAAAAAFp5Sj0Wa5Ym1vTB3JVfCaPwAAAAAAAAFRLqdAyI5xfVPSOyY5dn7-yQAAAAAAAAACGXIKyZo2SzTBUV4rO1JZIwAAAAAAAAAUxw1yJAt7gWtIg5pKPvlbxgAAAAAAAAABE0u1MLNFEnCqJENombcfnQAAAAAAAAAEUsg8tEaC4Aig3mytevfs_AAAAAAAAAACtRQ_cRKzj3WFAvcrLLqjdwAAAAAAAAAO2klY3p2jr0ajN24nSnnxAwAAAAAAAAAG02a72hUoYtag5F7mkr084QAAAAAAAABUSFbeRqnS7DIbUgl7U9gcRQAAAAAAAAAgYJe5yWcckJxkEukmP7AjawAAAAAAAAAHP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEKC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAA8DDAjVJl721y2vxKHGSBegAAAAAAltVe8DDAjVJl721y2vxKHGSBegAAAAAAX17W", "types": "CANUBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Jk1zGZ6FJdgGFQYufgY7ow"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAAAyxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEPoG3DRiZKlMZ3sh3A8whkKQAAAAAAAAAy8_3LGlNMADWVmY7MNYKbGgAAAAAAAABKLm-i7mHlXTzn3dRUwPqsywAAAAAAAAAE", "types": "CQMuBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xWmeNR7dylwIcGrpJYPZLg"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKDEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKI8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfdgtQ4kMk_MBWrPUAFqVnYywAAAAACJEnagtQ4kMk_MBWrPUAFqVnYywAAAAAB1YosgtQ4kMk_MBWrPUAFqVnYywAAAAAB1YgbgtQ4kMk_MBWrPUAFqVnYywAAAAAB1KtOgtQ4kMk_MBWrPUAFqVnYywAAAAAB1LUKgtQ4kMk_MBWrPUAFqVnYywAAAAAB1MMmgtQ4kMk_MBWrPUAFqVnYywAAAAAB1MUZgtQ4kMk_MBWrPUAFqVnYywAAAAABsxRRgtQ4kMk_MBWrPUAFqVnYywAAAAABs1n0gtQ4kMk_MBWrPUAFqVnYywAAAAABso19gtQ4kMk_MBWrPUAFqVnYywAAAAABr-v8gtQ4kMk_MBWrPUAFqVnYywAAAAABsAm7", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LwTkCYtB7pieMiq8O7t-mA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAACNJgmaT4hGItQStPxlJGEPUAAAAAAAAAAEWHTE8ACR4NC-I-EUuyo1lgAAAAAAAAAIjoHdKmx5pRoeIkTwEIvJpAAAAAAAAAAcIKniS6Oltfo1ekuyyeYCXwAAAAAAAAABSJxVsEnpCDnlRh2uwKM1VwAAAAAAAAAIU8y7tkq3OrTv74Jpmv-rDQAAAAAAAAAkWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFuaPqWrgrMtBr19nB0bwQ4AAAAAAAAAA7DvWhbkzH60wdCq3Z8oLdcQAAAAAAAAAHOljKMbs7Sslvbk6h8kJ9yAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfw5DtxqVhoNPMfZH51ZbSdwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEeyyzzsctNMm8Ix0F5BKrQwAAAAAAAAANL9OdW1GzSEWVanMPfByr5wAAAAAAAAAIMpA-_yb_lGv178DTnH5RUAAAAAAAAAAKQFD262cMfH9Fkx0D-SBUcgAAAAAAAABhk-Vn8s9qtj7D3BSWLIWnXAAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAActFrbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qeGt3fpd8fb-33IEga_JxmgAAAAAAAAABIGwhMoYnMofyYEaJiOTDygAAAAAAAABndVXLQszZHgabMaRgrKn91QAAAAAAAAAbkUQWAMnv1TRPiRV23phECQAAAAAAAACM4oROntQ4zAdpf6wKcORUhAAAAAAAAAAA0aeAC4XpbxqxubqgoasMaQAAAAAAAWFz0aeAC4XpbxqxubqgoasMaQAAAAAAAcHUbx9jqjuemtiUm8j-_s73zQAAAAAAbdwybx9jqjuemtiUm8j-_s73zQAAAAAAbV2abx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qKWsyRlbmkWc0VsXrJ16gBQAAAAAAAAAG2xWh6mlB5HrLIvnbGMdVXQAAAAAAAAAfSKShXX_SoB-XI6Mg7eraKAAAAAAAAAAA", "types": "CQM_BQIDBgUFAwQF"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LM0kXAQjnh-obheyahWo1A"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp2HVF-fC6bGu1PSwJc2kzOgAAAAAACHAL2HVF-fC6bGu1PSwJc2kzOgAAAAAAHHBe2HVF-fC6bGu1PSwJc2kzOgAAAAAAHEJ82HVF-fC6bGu1PSwJc2kzOgAAAAAAHEFt2HVF-fC6bGu1PSwJc2kzOgAAAAAAHILc2HVF-fC6bGu1PSwJc2kzOgAAAAAAHICy2HVF-fC6bGu1PSwJc2kzOgAAAAAAHBg1UJmIMEc6K8gJ39NHYaD0WwAAAAAABCWFUJmIMEc6K8gJ39NHYaD0WwAAAAAAGOtF", "types": "TwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "M5Lgm-b6FZmqpjTbbABZ4g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAqovRPcszTde0VZh4hrqQUtwAAAAAAAABBgJKCOQJCNUe5j61lhCTyewAAAAAAAATdBzHaaplfCkGFxXmJVqCJAgAAAAAAAAARkLG20VFMtAeL120q9dFk-QAAAAAAAAAhR9d-4EOoAQqhB1QW7ZwT_wAAAAAAAABJstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGfDqNreXUioiFDFwNREuqLgAAAAAAAAAsCasUHBASz8HLDmgbus_pogAAAAAAAAANUKLoduJn5-YPXULy7Ukl9AAAAAAAAABuahMxWqP1a_8hG_qUbGypwwAAAAAAAAAd071PUSzMXlqHEVR0hWfW5gAAAAAAAAAA", "types": "CQMwBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "uXijUrvGMjzOETEmDJNAig"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAAGkuWcUG2bf_MgJpXpuAZivRAAAAAAAAAAx0nBVkJrBQHU_wusVG6_3KQAAAAAAAAB96PDTyNLwDP2GCrVJoblLzgAAAAAAAABIciQsV4oUc5gYfL4dony27QAAAAAAAAAnAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CQM6BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "aam1NrL__vqO8zn7CbunXg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATQDkJCt6xHk7D12ZqlrT-UAAAAAAAAAAHPX3E_b7jZQaK6SiJYskQ3QAAAAAAAAAJZaLdh2m65raIV_JyagrUBQAAAAAAAABnazI-mX3CgcWhg9AcjJjNnQAAAAAAAAART7Ugi353BwPylAwIPK3gzQAAAAAAAAHvdr7nJhzDAJ3KA627xZhFegAAAAAAAAAUE66a7lKbkjXDy4kHrdweRwAAAAAAAAALavH6-iyYHlN_flagvaXwWwAAAAAAAAAK5JuKxbkWPMw0EpITr8WSNAAAAAAAAAALCcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAAACQh22cv3M-xNK0_IOuNdQuQAAAAAAAABAdFuRXSangYgd0mdMqBWlpgAAAAAAAACzsO4szKNZnXyLfMP7gPsjpgAAAAAAAAA9jjxn4cl8bBaRqPgS5F0n8gAAAAAAAAD_AAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CQMwBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LTIY6jjU_NkQSO1vbzAR1Q"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABazfcz5k14PsCcDvFyUC1kmlV3QAAAAABaQGnz5k14PsCcDvFyUC1kmlV3QAAAAABaPrYz5k14PsCcDvFyUC1kmlV3QAAAAABFO_Ez5k14PsCcDvFyUC1kmlV3QAAAAABFNoz", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "pN4BRIiZAPBLooN037OYVA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADSZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABCAZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAGrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAuU-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABTHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAIiuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAWyQLW28sZ3rpLXAl8a-XdLgAAAAAAAABnWIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAIKCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAIQRW1om0CtcYaE4B8xaBEggAAAAAAAABGAZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYlCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAACNHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABuHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFP1rXbpjewie805zI0BHMvAAAAAAAAAAILN3NdhSYKxRbaqnM5W9FBwAAAAAAAABpR-HVaw3JZ2IsajBZdLbC8gAAAAAAAABKKnKBdeWKnQ8CH5bzvx0i6AAAAAAAAABK-QN0Lznzz3LjWKMZzZD5rwAAAAAAAAAIeEXFmSmLstwTaBBVp_eSTgAAAAAAAAAFHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFeS9qs83Ev5DGIkgRm0VL-gAAAAAAAAAUem8QMqpxX9eEmdxu2AmtFQAAAAAAAAAPTR0CnebfBTQ0MB6Lw8cZBAAAAAAAAABvgYxqkqlVp6_U5mFkfV4jIAAAAAAAAAAMtZaMdHxmjfXV5e8wiO0L_AAAAAAAAAAKtX-1hgGXR0WV-6whS0MwZgAAAAAAAAARotkeOgHMDZdOlA7GywTS3gAAAAAAAAANeBe2TV8VA2V7lLyhiCvcHgAAAAAAAAAEclNKHmin0SttGhUDhj4qagAAAAAAAAAH68m2CwWM-Ledaj5WNl9lhAAAAAAAAAAqwMYFsNM0woNzFGwcp47vbgAAAAAAAABGEh0v14Wp9mB3u5tYha0hzQAAAAAAAAAmwSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFbhnM-182eA1jGyBQl8pMugAAAAAAAAAU4pL5iWdAziHKM6VzojymqQAAAAAAAAAGX8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0g4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAWMCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc5430MZlAMqI5SXd_yT5HRQAAAAAAAABcHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFN7LIGw1erb09TPWj8M9ehwAAAAAAAAAYwr21gCsicBxbZw2IJaNDDgAAAAAAAAAGEh0v14Wp9mB3u5tYha0hzQAAAAAAAABDSLFvE_cP2SyjsekmrBc9LQAAAAAAAAADpuQkFDz8_jnH98S3xQfURAAAAAAAAAAGmS8gXE26pQn8rBZ5C2O6qgAAAAAAAAAilUab7RI6M1kcYmpom65WngAAAAAAAAAT1B7iWINM55ii7YHBwT_BfQAAAAAAAAAaSLkdwnAJDm_ftJbeTN6kiwAAAAAAAAAudGzQsD4ULDPyV5gT0mUzewAAAAAAAAA_v5dA57HXZ1996swqeLZdUQAAAAAAAAABj9mTsmxGfoQF9A4glGVy8AAAAAAAAAAYQ6BTqglgEur1JnwgYj4wmAAAAAAAAABMLX5DD-dM1kj7Y11eHErxNgAAAAAAAABWtHw2EICMhh3_licSMXsQIgAAAAAAAABY6Zj-Lw9a6Ydo4gb-eMkgLgAAAAAAAAAGG99T3qcZC8_AxTO5xN8aUwAAAAAAAAANw9w8XUGzqm4xr4E1qM-rhQAAAAAAAAAgwoaSXtApD-PrSWDZ_aE3VwAAAAAAAAA0NEA431VvZx5EvIda-awJrAAAAAAAAAAVdkL5PpvJ6DOYifdu5jPpNQAAAAAAAAAJVcy8PuJ6UoNqzGrL87c0RgAAAAAAAAAR9skm8w_4Kqz8U3CtvTydwwAAAAAAAAAMS8mRI7HHsV-o5SfBaSYVJgAAAAAAAAAEmQBmof6SRRPAHT_GwQNzBAAAAAAAAAAEnp7TeDSdz651gJRSLTp1TAAAAAAAAAAXdhLkPVDaHJtx9aYILWA1HgAAAAAAAAABCX7Q7rsBeXI37-8OOBP_XgAAAAAAAAAWuWSjn1AIf1Wt8HOEQkzjgAAAAAAAAAAHA0Tl0kLgX3hdE-5qIk9RVgAAAAAAAAAkdDZdXDeINpZAnomtZ8xyMgAAAAAAAAAA", "types": "CQOgBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JcyJuDPZFiebFGdlrICJDw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmq3", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "IFXCxQ_42YlxZPfirhTMSg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAABi__VMh3MgmTJp7v_qMbssAAAAAAAAAA1qwd0u0yf77aYVcTrTir5kQAAAAAAAAAFqwd0u0yf77aYVcTrTir5kQAAAAAAAAAFOD88rfBmy4BfCXerLT5e5QAAAAAAAAA7yhF9CEzH60wdDBblzY1FcQAAAAAAAAAIOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOEnRoHyZazasm_zTjL5tnOgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMfWClmtm3Gj4Mb2mUsOYrmYagAAAAAAALmbsTGLCNH21piOrMPoln5uBQAAAAAAj0nSsTGLCNH21piOrMPoln5uBQAAAAAAkIkO", "types": "CAMxBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UEgXiWzog7ofJh1wmSUNAA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN4uA", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ysz4kNxpLozIWUTYSKcN7A"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGg5Nz5k14PsCcDvFyUC1kmlV3QAAAAABFqo1z5k14PsCcDvFyUC1kmlV3QAAAAABFrCXz5k14PsCcDvFyUC1kmlV3QAAAAABFiXjz5k14PsCcDvFyUC1kmlV3QAAAAABFiEP", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MMY925EAMI9AP1h0laQBfg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnAydMRjIz1OdcUN0eWHfUfwAAAAAAAAAd4W76RwUjGcgIjQApiAJJHAAAAAAAAAAFgZgYcEFO3c95J0_kRNRWOgAAAAAAAAAGOmzVUgwY22EPoqShuZpT1wAAAAAAAAABTB_J6DUBBlvmBbXJoevIsQAAAAAAAAAL-iXDKA3YC-uP6gBDyblJbwAAAAAAAAAIty6LTUlzeN2dWkQMKHPovwAAAAAAAANVL-koTtrYcgwtJX4JNCtNUgAAAAAAAAAZNmvj-1JIFU5r1IdV1cgfBgAAAAAAAAAy7hPDIBH8MLHxsotS8sE9kgAAAAAAAAAYQzrbsOA4ABi_SVkKBvATrgAAAAAAAAAIg3pCi59qPBWaSfqiWTmFLwAAAAAAAAB-_8mW4hWd4BOv7BBBIH1XlgAAAAAAAACFNREbP_6GqKjaa6YAIZKMLwAAAAAAAAAE", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0WMo-65XcyOKtSWppCr-Lg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbsE", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "w_HZOvClvI2HsBbJfNU-EA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALO-i40hQb92bY-JOhJrV2owAAAAAAAAAs6l-EHm0OnthNsvyaQcuYhwAAAAAAAACN6lZUkN3dGRNTlylh0Rs1AgAAAAAAAAAWF_PHkNHp1cM7FmVp9OVy9AAAAAAAAAA2IYsF8T0nmW0EDmKEbhfC1AAAAAAAAAB3ZNIMXBN7NKTXUfXb93okMgAAAAAAAACfVdwrqP2He6NLNQ9LuEAacQAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQecGPZMO_Ar5A3oFGzfPKKAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQfGOA0JLmMg26rQH30fPUgwAAAAAAAABRa0wWJ2rcNU0N0nF8s8CPfAAAAAAAAAA6hzcOme2bHOlnmg1x3z_FQQAAAAAAAAAJOFvli6IQdK5-vtR_oE3g3gAAAAAAAAAKQSkoY5477iCGGkJLCg3twgAAAAAAAACLifinGpNZEDb24abZy_zLXQAAAAAAAAIgr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQ3NXJCw7PINTEV_suvi1hjgAAAAAAAAAnr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQfGOA0JLmMg26rQH30fPUgwAAAAAAAACvW6zbfG-pUtsdP3JjLENKRQAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQGX_xnOZbGU6onMekAp9M6QAAAAAAAABasmBhnYHgATZAzavAZlHv_AAAAAAAAAAj6LUTkRV9uS8zSBd0cY3xRAAAAAAAAAFv0WwlJv4egC9_TYsNNy-2uAAAAAAAAAC2Z7a-pgSw6Ke6rct32tdtzAAAAAAAAAAFoizCJSVq7QdncCMrYKiMEQAAAAAAAAAFp3Vuqvs7V5NILq509rAqPwAAAAAAAAAMZD__m2aPUK59vfy2OzTc7QAAAAAAAAAL3K41TRtENmkBYdKW59LkhwAAAAAAAACIBdKSwoL-cf8qYgQQe-cA-gAAAAAAAAA3", "types": "CQMrBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mjiWiZDRt2iNaC0mkXYaXg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAQ2qk3SUFPdBYwVkFMX3ttpwAAAAAAAAAFsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJnsN5oeLyhaU3rc_4TQfhXgAAAAAAAAALgvQGUUGWUJbOOm8Vi63fqAAAAAAAAAAGpIlQHYzUvHZx6w5Rtmyd8QAAAAAAAAAGQUT-nNY12PdX-wWYy6XdlgAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJnsN5oeLyhaU3rc_4TQfhXgAAAAAAAAALgvQGUUGWUJbOOm8Vi63fqAAAAAAAAAAGpIlQHYzUvHZx6w5Rtmyd8QAAAAAAAAAGQUT-nNY12PdX-wWYy6XdlgAAAAAAAAADm61OiFi7ipeTEQpdgB4G8gAAAAAAAAAFNAXh3zuU0dO2_vEc-9d1QQAAAAAAAAANSTqKraHdt8yd9UD4ZkdTcAAAAAAAAAAEj5zlUQh7CKlo9dGRL_ZvEwAAAAAAAABVf-MXXixZXm3Q4r5zsKL8FAAAAAAAAABOj5zlUQh7CKlo9dGRL_ZvEwAAAAAAAABVf-MXXixZXm3Q4r5zsKL8FAAAAAAAAABOj5zlUQh7CKlo9dGRL_ZvEwAAAAAAAABVf-MXXixZXm3Q4r5zsKL8FAAAAAAAAABOj5zlUQh7CKlo9dGRL_ZvEwAAAAAAAABVf-MXXixZXm3Q4r5zsKL8FAAAAAAAAABOj5zlUQh7CKlo9dGRL_ZvEwAAAAAAAABVf-MXXixZXm3Q4r5zsKL8FAAAAAAAAABOj5zlUQh7CKlo9dGRL_ZvEwAAAAAAAABVf-MXXixZXm3Q4r5zsKL8FAAAAAAAAABOj5zlUQh7CKlo9dGRL_ZvEwAAAAAAAABVf-MXXixZXm3Q4r5zsKL8FAAAAAAAAABOj5zlUQh7CKlo9dGRL_ZvEwAAAAAAAABVf-MXXixZXm3Q4r5zsKL8FAAAAAAAAABOj5zlUQh7CKlo9dGRL_ZvEwAAAAAAAABVf-MXXixZXm3Q4r5zsKL8FAAAAAAAAABOj5zlUQh7CKlo9dGRL_ZvEwAAAAAAAABVf-MXXixZXm3Q4r5zsKL8FAAAAAAAAABOj5zlUQh7CKlo9dGRL_ZvEwAAAAAAAAAW", "types": "CAM6BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "B5zce_f4N45Itu5RhOF9CQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEger", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "pdnAKjnu-StfNjKlk_DDQA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQw7WOWZs79Wz210098loDzAAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARrSUSoohdnG6MdsfC9pID0QAAAAAAAAAGpY2MvdN80J-OPBSDYZs_8gAAAAAAAABSneOkLg7Birx-EWGBuoP5rgAAAAAAAAAaDjB9rnpR9s2OI-jlVfuXnAAAAAAAAADmNrikprALerrSkH1iKFm6zQAAAAAAAAAs_ui1AAIySrYc7ZeYb73nFQAAAAAAAAAMDbSG9xbs7jnAEiHiVrKb1AAAAAAAAACGHSSZPv-Jiv2fPLN9vFx42gAAAAAAAAELQKRyqWZIJ5_z0G07UwBzeAAAAAAAAABS3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAxJDeoMDAF4zRp8m9fg1ttGQAAAAAAAACBArHoFYyXVsZt6HAc7EjVzgAAAAAAAAA3u1A1mq4_NM3j2_15WwdIbwAAAAAAAACHp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAACjGw9H1l67yAnzlh8ZHG_VaQAAAAAAAAA47c7rgpFHY6rxkjCoiUY2PgAAAAAAAACWu1A1mq4_NM3j2_15WwdIbwAAAAAAAACH36qODdc5_sG38C3jmrtkhgAAAAAAAAAkuchUv6RRAwtUDrZKhO2h8QAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAACXxPPAbGaaMBJnu4LeA3LnlgAAAAAAAAAL0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF65LvcIAVcOP6oYJJwrlEzQAAAAAAAAAUYkF0CuSz_Qqwl0qctgLHtAAAAAAAAACU0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFRAxlOZQDYMSIxYBoCiYSlQAAAAAAAAAoREOZDMGevKohDmxWFx6eeAAAAAAAAAFGjBeiHwwOyRIapBbs5J2OjgAAAAAAAABX36qODdc5_sG38C3jmrtkhgAAAAAAAAAkuchUv6RRAwtUDrZKhO2h8QAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFtEy-A8lz0LlXhsYvqccKNAAAAAAAAAAURWZ9G1N69fMZnc8QMvYsrQAAAAAAAAA3-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAF0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFGSIhvfd8NP-AkgZ44Vf-SAAAAAAAAAAQ88-Z439dOdp5GpDKUJubowAAAAAAAAA_0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFRAxlOZQDYMSIxYBoCiYSlQAAAAAAAAAoREOZDMGevKohDmxWFx6eeAAAAAAAAACajBeiHwwOyRIapBbs5J2OjgAAAAAAAAB4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFwjbq14SDWW6edot3m-YXMQAAAAAAAAAcxMi3lfkibPU0NAhJ8DhGPgAAAAAAAABR0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFwcQ8sx0Hbh7lHQEqIQ-KgQAAAAAAAAAQclGseV0LGavUI1_g3b_OoAAAAAAAAAAwjBeiHwwOyRIapBbs5J2OjgAAAAAAAAB40LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF7Usw01CrpzkfVMMyw5vCegAAAAAAAAAQs7vZritmiKufeJDzCX_JRAAAAAAAAAARLHQIqPZNDAtBb5Urr3NFHgAAAAAAAAAu-Q25YN3mx81c5h9FyskSVQAAAAAAAAA-BZ6M98E7_jhQ9w9aCijThQAAAAAAAABjK4q5bjj7FsLI8bLo_hB_IAAAAAAAAAAY3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFu7zifqDaDmZ-4eDh2NyxxQAAAAAAAAAYXmcQ4_6bleDFvrRZ47Cq9wAAAAAAAAA73G7WvpXqPGO04rbAV9CJtQAAAAAAAAAl8ZRk8SyYMUcoYIl9aB0UjwAAAAAAAAAp0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdGrJ7brreNfhV4KADjvV8QAAAAAAAAAMM_MfJrZLrX3P0R0dWrP49AAAAAAAAAAL0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFGteHJRmtGt9tBprXMjfNSgAAAAAAAAAYDkUb3XtVJF4DvOzLdzKoEQAAAAAAAAAi25mp98L6MrKhqE8ccc5QLgAAAAAAAACz1BtLvHTF43nwpZc72vczMQAAAAAAAAAQ8UqGTNx_lSKM0JhywBi_yQAAAAAAAAAc1fE-A15-sG5pm2Nv6tb9vgAAAAAAAAANev0SJ_PFdgv9NYHa9effJgAAAAAAAAA0syuAMg3RShupVDY63eHfbQAAAAAAAAAHMrVvriJqF-HOpa8js-mFagAAAAAAAAA3bC4xUO3cZ_wW8IEDAJ-BNgAAAAAAAABGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAm4yG9IdLfPOQJQp1BxdOq7wAAAAAAAACfEgnEAYVJO6evUZwnNI7NMgAAAAAAAAB05zxpGeZtVFjxV00AgHRxwAAAAAAAAAA6JDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFzQ8NOEhW_FMdxKX5ZKa-AQAAAAAAAAAgUyl96nbKrz6UOSXSc3iffwAAAAAAAABDmWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFw_rNNsza6yNRFkKCHuRo-gAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFlJPXvfs9zQkNSoaonclVhwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAFwWdP0jKvbSW-F3IXqFZzXpQAAAAAAAAA5VCFc951ifEF7yJkklJvwWAAAAAAAAAApvX-mC67g6JXGX3gq3Q5XWAAAAAAAAAA-WdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFGaCa3TNQYDvJOH1Myo-eeQAAAAAAAAAYbIRC5woRCsPo9DPN_YuBtwAAAAAAAAAL8LspOA9OlhmqAtOfP68AWgAAAAAAAACRrvNKTIRRLAkjGV72wU2OkgAAAAAAAAFOyALGv9WBYn0Sf_aOrPIyZAAAAAAAAAEANREbP_6GqKjaa6YAIZKMLwAAAAAAAAAE", "types": "CAO-BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SlatH5JV2_pteXorVCCWUQ"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKTEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKu8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfdgtQ4kMk_MBWrPUAFqVnYywAAAAACJEnagtQ4kMk_MBWrPUAFqVnYywAAAAAB1YosgtQ4kMk_MBWrPUAFqVnYywAAAAAB1YgbgtQ4kMk_MBWrPUAFqVnYywAAAAAB1KtOgtQ4kMk_MBWrPUAFqVnYywAAAAAB1LUKgtQ4kMk_MBWrPUAFqVnYywAAAAAB1MNsgtQ4kMk_MBWrPUAFqVnYywAAAAAB1NCpgtQ4kMk_MBWrPUAFqVnYywAAAAABw8FPgtQ4kMk_MBWrPUAFqVnYywAAAAABw8LzgtQ4kMk_MBWrPUAFqVnYywAAAAABsw8kgtQ4kMk_MBWrPUAFqVnYywAAAAABszHvgtQ4kMk_MBWrPUAFqVnYywAAAAABszAUgtQ4kMk_MBWrPUAFqVnYywAAAAABqUB-", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "v56E4DBax-mq-ATGnWVSQg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATQDkJCt6xHk7D12ZqlrT-UAAAAAAAAAAHPX3E_b7jZQaK6SiJYskQ3QAAAAAAAAAJZaLdh2m65raIV_JyagrUBQAAAAAAAABnazI-mX3CgcWhg9AcjJjNnQAAAAAAAAART7Ugi353BwPylAwIPK3gzQAAAAAAAAHvdr7nJhzDAJ3KA627xZhFegAAAAAAAAAUE66a7lKbkjXDy4kHrdweRwAAAAAAAAALavH6-iyYHlN_flagvaXwWwAAAAAAAAAK5JuKxbkWPMw0EpITr8WSNAAAAAAAAAALCcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAACV125X0goavCApK-g1l1pkWwAAAAAAAAA0AAAAAAAAV4sAAAAAAAAAHYXuSio4gqgnbx9jqjuemtiUm8j-_s73zQAAAAAAm-l0bx9jqjuemtiUm8j-_s73zQAAAAAAqQi0", "types": "CQMtBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_zRG8Zm-TV-OEPw995JtBA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABg1Usz5k14PsCcDvFyUC1kmlV3QAAAAACFH_-z5k14PsCcDvFyUC1kmlV3QAAAAABhZDXz5k14PsCcDvFyUC1kmlV3QAAAAABmR0Xz5k14PsCcDvFyUC1kmlV3QAAAAABmO84z5k14PsCcDvFyUC1kmlV3QAAAAABRi-uz5k14PsCcDvFyUC1kmlV3QAAAAABRi7Sz5k14PsCcDvFyUC1kmlV3QAAAAABRjHTz5k14PsCcDvFyUC1kmlV3QAAAAABRjLbz5k14PsCcDvFyUC1kmlV3QAAAAABRjxA", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zOfB1-xphCJVIYuRjDwDGw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAAX3IqZSkKN3zNxr0HYuO2pqe5hQAAAAAAdnyHZSkKN3zNxr0HYuO2pqe5hQAAAAAAdnxkZSkKN3zNxr0HYuO2pqe5hQAAAAAAdU3GZSkKN3zNxr0HYuO2pqe5hQAAAAAAb-pwZSkKN3zNxr0HYuO2pqe5hQAAAAAAdU9MZSkKN3zNxr0HYuO2pqe5hQAAAAAAbhOE", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bE0kL6kSsxQ0BcAkS0-TnQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFJmXT4fd_WKeR1cE-hlLelCQAAAAAACxFTwXT4fd_WKeR1cE-hlLelCQAAAAAACxFlNXT4fd_WKeR1cE-hlLelCQAAAAAACxFzkXT4fd_WKeR1cE-hlLelCQAAAAAACvPQOXT4fd_WKeR1cE-hlLelCQAAAAAACvHJRXT4fd_WKeR1cE-hlLelCQAAAAAACvEikXT4fd_WKeR1cE-hlLelCQAAAAAACvDvz", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "VCO7Byieb2Qt6FRTCFSOxg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAAA_xNYxe-SHgukLEpCkawSk1QWAAAAAAAAM8Z", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LPl0UGKc6NMMmzEc5_ZAiw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYChGc_KlbDChxhbLYz-xpPwAAAAAAAAALOmzVUgwY22EPoqShuZpT1wAAAAAAAAAByCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIFxUii1Qg0ODP7PNbShAMtgAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACXDgohratZUQwpKekym6X1AAAAAAAAAAEhYpB2gs86zTUdl1LmAGlfQAAAAAAAAAUmjK-IG4-ETGScbFeIcowAgAAAAAAAABj39Gbufo2_bMKjFgin1seqAAAAAAAAABz5kQrz31-vtpLpHkSNl9lFwAAAAAAAAG9w0e12mQXLU6z_nU7sQyVgAAAAAAAAABBTEeNHsvM_HbT0J1Ha9ikXQAAAAAAAAA8ECHV7woLui-LgJzJ_Db5wQAAAAAAAAAFSVbN9lR22448Ba__VWnVkQAAAAAAAAAXWNCauDs9dY-5HAHHBWp9KwAAAAAAAAACnxBVaHmISDDtSUWBhVotmwAAAAAAAAADoJZaXu4GMva6ioQRLjBA1AAAAAAAAACLZPQwbuCECd-hRvtNHzeV5wAAAAAAAAAi0YNPfOkv7TAAnafMtZqNkgAAAAAAAAAEdD4p9P31y_X_TwW0CA_rJwAAAAAAAAAUcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACvuAJ7Ejp2OmtSJu2OeVEBYAAAAAAAAAA4okBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACvuAJ7Ejp2OmtSJu2OeVEBYAAAAAAAAAA4okBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAAA6rDU1slesp8jXrjLdtmA2BAAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EtCgzXvWZL2OAx_jvmlLOg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAA1OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADUR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAAC-6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC80G6zvzFPytbRyfwuXWQcAAAAAAAAAAB", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PDntH_7UfcrtrYRTUFZNSQ"}} +{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI7B_NxRB-tFVbAaTDiew0fwAAAAAAdyiE7B_NxRB-tFVbAaTDiew0fwAAAAABTOLj7B_NxRB-tFVbAaTDiew0fwAAAAAAsihp7B_NxRB-tFVbAaTDiew0fwAAAAAAsiAS7B_NxRB-tFVbAaTDiew0fwAAAAAAshDj", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "uiBLaHBhyxDqu_NZ4TO82w"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8VxXT4fd_WKeR1cE-hlLelCQAAAAAACxC9RXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsZ_", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "u8aJEohVcGlIauanSfDd1w"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAAByH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAJ6e7YYWaQTMh8P2PCVzA2a8gAAAAAAAAAwm140cnmnDMXwCTqH-lotHAAAAAAAAAAEm140cnmnDMXwCTqH-lotHAAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JgkBYxltk__zzss14Jo1Sw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgJxz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFlg0z5k14PsCcDvFyUC1kmlV3QAAAAABFlwM", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "T2e3X1O-saOJJg68yQrzDA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAQgtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAH59i-wMdSlFTE9FP7ALC-fwAAAAAAAABPJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAABqM9mknNUv7hMcc_nUxX8nQwAAAAAAAAAhz-hu6cNT1Ftqgnka76QdWAAAAAAAAAAQEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAABBUoX-ughXNd_AmddejeY_6gAAAAAAAAEYoFGe-5CpzjeMGGyplwFhtAAAAAAAAAAfasG21jcJHcufHwCdBdTqTgAAAAAAAABLiNflYZm5k2AibHnU3j0oJQAAAAAAAAB4wUZIVedHlYEif3XTrW4qUgAAAAAAAAAGHVAzZrPoCZr5Mjxtu7E5bwAAAAAAAAAFnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAmN2WIrknGnRR-faq8Y0RYogAAAAAAAAAA", "types": "CAMmBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6sgQRQYUvthb_mx0SZlpMw"}} +{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwAIU6tVKI4mSYDEJ-ABAIpYXcgAAAAAADAxg6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC6gT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC6Xu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJwYU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJwQ-6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJwJM6tVKI4mSYDEJ-ABAIpYXcgAAAAAACF8b", "types": "CAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UaaR3AJv5ndnRjLQjP1UQA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVJ5LlnPpQupPs1Oay-H91PwAAAAAAAAAFlWZrBpi9jtlM7-59Gnsk1AAAAAAAAADKgWNEC7AlEWOiaeOn6tt3KwAAAAAAAAAdTZeXKeFIsAFVFzECyphbeQAAAAAAAAACtMlQRUcqMTg123vaMnWXIQAAAAAAAABZEUCCYl5Tlfw8BCUk5k6SqAAAAAAAAAAD1xjbOWy3X4Fn5bAGN-E_rwAAAAAAAAAn-moASSZTgRJvmZb7ddZg5QAAAAAAAAACEsVgM4Munl1E9eHBVI5_DwAAAAAAAAAQQmcT1EKH8NJh27zC1hMnYAAAAAAAAACUFWw0sO1gv9Ot9iWifmMKHgAAAAAAAAAfQ1HRbZMZV9Fx6KiIEQ_vIQAAAAAAAAEFfZy1aBBzLZa2IvcsSbCGnAAAAAAAAABEuUANklE7zdWCsUEELcyV6wAAAAAAAAA1mXpni8pjVSIFQGWEOuaZmgAAAAAAAAAc8wyHWaiozlb8fICne_VIJAAAAAAAAAEFzdNMqH5FJokP-kpdb9WNRQAAAAAAAAAJYMf1vN4Xj82X8azesbKqWQAAAAAAAAAA", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "45c-vEn-WBFXDhGB8cTsZQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_-Qx-pCy53U7YabuA5eb0fAAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAcpSIXlNYnJYwCILAJFTEzSwAAAAAAAAAGTyuf4RNGIxt-ueaCsLj22AAAAAAAAAAXvSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0qlujNL7db72ZwWHkSPq1iAAAAAAAAAAa8tJujVK0pdTWlucWIQYskAAAAAAAAADWSXFZShc93P7Br4wzVi_TSwAAAAAAAABGl8by2NZ7WjCFmKmn5LkVDAAAAAAAAABNJj6ja2Wbkf1_R1a9nVWcUAAAAAAAAACJToVtc2P50kV-QGj3la9_ZAAAAAAAAAAP1S9eFAopKcZX-VnW9ChdWAAAAAAAAAADw_8HYglWw-0jqUUlUeMgagAAAAAAAAAC5XlE5KvRrfbNOpt-JVgrOAAAAAAAAAAH_zxyi-wgtH_Wz8ut-WKY9wAAAAAAAAA_WZoc9LDALgnb0WdOEBNL7gAAAAAAAAACs7QK80FVtYwQj3h1fpBcbwAAAAAAAAAFsr7KmiDQn3AwPKwUE1w3aQAAAAAAAAAFISo198vJQrYNdynfqzotagAAAAAAAAACSU7fNzMC3NazhQDT5xGXYgAAAAAAAABI", "types": "CANBBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3vt8oTjSVhChgy2VdDHcdQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHRdXT4fd_WKeR1cE-hlLelCQAAAAAAChG6kXT4fd_WKeR1cE-hlLelCQAAAAAAChFbZXT4fd_WKeR1cE-hlLelCQAAAAAAChFLIXT4fd_WKeR1cE-hlLelCQAAAAAACgSzoXT4fd_WKeR1cE-hlLelCQAAAAAACg6i1XT4fd_WKeR1cE-hlLelCQAAAAAACh1Di6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CQMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZA8T93hlv8fxrEeTbP6iUA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgne", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MbGULjnhE82gLrY6PAHv5w"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVEDYyx-zRWlBHMYS8RkGZ2wAAAAAAAAAEdymPrMwSHJkE00arRNB68AAAAAAAAAAUu_5zCMK3PLNUfmu5e0wjpgAAAAAAAAB2ac8L5UaM7hx6_7ogYUjJpQAAAAAAAAALAt2XjH9VGC3bb_7sv7ixNgAAAAAAAACgw4Cq1cfo2BosL5j6RghC2gAAAAAAAADfqVud9aAxlVfNdghSN8mVawAAAAAAAAARcPknbPYx0jQL0_yL-rDiBQAAAAAAAAAHTJokhObG_7GMDQXtJjQRzgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABNX2GurXP9eWlHwN0fLlalwAAAAAAAAAM5E3RifhwtkkbQvQxmdbzmwAAAAAAAAAGaZM24L3D9yPtDjUQ3lJ1qAAAAAAAAAAIjorj45TI-Qd-VAwU3oeBogAAAAAAAACW8Jw1TVPLmPNxJZ-iu1UbtQAAAAAAAAAE1oTFJJD8oE6SApFeuZctegAAAAAAAACK1oTFJJD8oE6SApFeuZctegAAAAAAAACK1oTFJJD8oE6SApFeuZctegAAAAAAAAA-qGEwlfUWed3z-vswPrK15QAAAAAAAAACeLPEw3jnFkvsJ2aQiz21NAAAAAAAAABfR-jXMS6WanN9UyjIfsACEAAAAAAAAAAE", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EpCL-2gY1tPrrT7oJTlBOQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA7PmG8DDAjVJl721y2vxKHGSBegAAAAAA7PTV8DDAjVJl721y2vxKHGSBegAAAAAA7Opc8DDAjVJl721y2vxKHGSBegAAAAAA7MU48DDAjVJl721y2vxKHGSBegAAAAAAgPR98DDAjVJl721y2vxKHGSBegAAAAAAgN4a8DDAjVJl721y2vxKHGSBegAAAAAAgNmT8DDAjVJl721y2vxKHGSBegAAAAAA1GgH8DDAjVJl721y2vxKHGSBegAAAAAAX1iO8DDAjVJl721y2vxKHGSBegAAAAAAwerP", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6waIIi9StjlrYFV-4ogIHw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAADxz_WaY2pXtLyni7L_8jKtBgAAAAAAAAAPEIpTc6zorXqtTjOVazk4HwAAAAAAAABogbCFQS2suYv46rP_aUsebAAAAAAAAABP1oyY5_H1XDxnqxtQutVBSwAAAAAAAAAE7LziU26eINk4gGAzQhjzRAAAAAAAAAAhpboNPSluja75Bcicb918zwAAAAAAAAABjJ1ozPLEubzrPTK_HIIAngAAAAAAAAAEgyCLaoZ33VoOuRW0bXNTvAAAAAAAAAAUmIhHJLRWLV08bvGOk_MaUQAAAAAAAAABAsYLPOMVTEJOeDxuyLY7KQAAAAAAAAAUX9lpa9TN84k-aLBSFJ8EgQAAAAAAAAAHMkmisheVP0DaTeF1Tgq6BwAAAAAAAAAVkrGbMu8JHiKkyENUYIKBywAAAAAAAABnhCDtT-9vDXD-e8HuC9915wAAAAAAAAA4GP9DcZgvFsVU-FrimfbKfQAAAAAAAAAJ4X1D0bE8dXWnBHefwzL1KgAAAAAAAACMuC86pFXXnBLCj6eRRljPDwAAAAAAAACENc9gj1rv2NerZVTmjxTx9AAAAAAAAACGnQWGdRxvqVjwlLmQWH1PhwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAHCKeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARhH", "types": "CAPDBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "asNkporasNO5DdA_RQAM7A"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHba4rFFPORY8_4FvK9QaA3QUQAAAAAAGRIW4rFFPORY8_4FvK9QaA3QUQAAAAAAGRJh4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp4rFFPORY8_4FvK9QaA3QUQAAAAAAGQ1q4rFFPORY8_4FvK9QaA3QUQAAAAAAGIbz", "types": "JwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Efv60mODqA2uHWbZqxNPAA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyFRZ3CKaS4aU08RhYA19y5ITQAAAAABtxDw", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FShgEj64z4UUGMcsLm2t8A"}} +{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACindAJ6GSZQSmfOBquczb-SF8bAAAAAAD_Q5tJ6GSZQSmfOBquczb-SF8bAAAAAAC-gV0J6GSZQSmfOBquczb-SF8bAAAAAAC-dlSJ6GSZQSmfOBquczb-SF8bAAAAAACrKuZJ6GSZQSmfOBquczb-SF8bAAAAAACrKxzJ6GSZQSmfOBquczb-SF8bAAAAAACrK2zJ6GSZQSmfOBquczb-SF8bAAAAAACjxwkJ6GSZQSmfOBquczb-SF8bAAAAAACjzy6J6GSZQSmfOBquczb-SF8bAAAAAACi9sEJ6GSZQSmfOBquczb-SF8bAAAAAACjBep6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmkK6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXfZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXbg", "types": "CwMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9FJI5HKsAIDyEIpw9F77Pg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAABQ0tEAP3x_JoFH6wNaGZk0agAAAAAAAAAsl34EZ8xDHNxGTCOWJeXKigAAAAAAAAACtIB1dxGnX0oRcLl9Hw7ZbAAAAAAAAABwmZ6pM0OEbp3JJIi6QUyNsQAAAAAAAAAItUugY2gAhpWf99wEorV4JgAAAAAAAAAjwf9mrqZKrjw_yhc1kSPntQAAAAAAAACE0uQfhygt3iA5h-6EqK0MPAAAAAAAAAAEJYb5JOqnMPOCcF7fd5apugAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAALTqvQ7EacG6CR4rzcFaNFEsTQAAAAAAATPM", "types": "CAMRBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vNGPqYP9tZ8bsYSlvSprlw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACG0NyZ3CKaS4aU08RhYA19y5ITQAAAAACGyQeZ3CKaS4aU08RhYA19y5ITQAAAAABu4NjZ3CKaS4aU08RhYA19y5ITQAAAAABu4QoZ3CKaS4aU08RhYA19y5ITQAAAAABu5DrZ3CKaS4aU08RhYA19y5ITQAAAAABu4zL", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dTRgS4ElTqFJ6sYDG_1Elg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADAYnk6E9ReVsUsstHFtTIiXQAAAAAAAAAyfT0k69QoWDcgSGG9DEbGKQAAAAAAAABU3yZRDT05_hGvUj8jRvChFAAAAAAAAAOxYwdW3gX5WZ-203-ZtRSpdAAAAAAAAAAGLyZJMdHx6B3ILhnNOrY3PgAAAAAAAABM8VQNjJHt4dBRU5VSN3KkiQAAAAAAAAEKgk079EBdEVh5ErpJ6XBaYwAAAAAAAABORxrIezP-22ksZoeWEvsGOAAAAAAAAADbV1AAAJZxfA577guD2Mmh4AAAAAAAAAAhd3kpVhLsdwM004-RCJ5KgwAAAAAAAABRqWBohVpV0WLBgoRPY3ha5QAAAAAAAAAGgh5ZUK32QaLM1EoyY_BRswAAAAAAAADO5ocKe_xZhLoIMKsqpwD-EgAAAAAAAAAND5lAQaLy9ATYrsXm9SsubAAAAAAAAAE_y_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGb2ckm-0wQN1Adu_SQOHiPwAAAAAAAAAY0v3fw3R6M9K5pBw9frSxowAAAAAAAAAfW0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAEKhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAABJWFBxAERZNClfuNDueoaytgAAAAAAAAAGFw4N_DGYxmWJY3G6VlrCLwAAAAAAAAAG", "types": "CAM7BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5y_M8aAQ_Z7onmYxHZZPLA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc5-Qz5k14PsCcDvFyUC1kmlV3QAAAAABcnaEz5k14PsCcDvFyUC1kmlV3QAAAAABakyHz5k14PsCcDvFyUC1kmlV3QAAAAABajaOz5k14PsCcDvFyUC1kmlV3QAAAAABHYbMz5k14PsCcDvFyUC1kmlV3QAAAAABHYD7z5k14PsCcDvFyUC1kmlV3QAAAAABHM0yz5k14PsCcDvFyUC1kmlV3QAAAAABGTfsz5k14PsCcDvFyUC1kmlV3QAAAAABGTlUz5k14PsCcDvFyUC1kmlV3QAAAAABGTrzz5k14PsCcDvFyUC1kmlV3QAAAAABFPfDz5k14PsCcDvFyUC1kmlV3QAAAAABFxl7z5k14PsCcDvFyUC1kmlV3QAAAAABGnUi6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "DgMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "d1Eu3zr2gx6pm4W-05HVBA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAdLJM8DDAjVJl721y2vxKHGSBegAAAAAAdFID8DDAjVJl721y2vxKHGSBegAAAAAAdJ0N8DDAjVJl721y2vxKHGSBegAAAAAAcipo", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RrulaTp6_1p2LeP1W9cKzg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmHc96ObSBA3uBF2h6vCqECQAAAAAAAAAEhuTO9r9yWJ6J0VGaFeZs5gAAAAAAAAAJAeJHJ79tk0TVcKmpj6rE2wAAAAAAAACfo-geYGgrLbIrmPLZ56VwRQAAAAAAAAA3904l_cPBaHo3Pqi6bokDcQAAAAAAAAAFmmckjE-MysbZhDPP6gNxewAAAAAAAAAydmm7_Hn3SrysHeUffmIe9AAAAAAAAAAfaxxtk6GnkoiqRXb69JxcoAAAAAAAAACge4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJOdkuTNpXjsFc7WV5c_bgKAAAAAAAAAAMjBwquBL06pqJXOt8kphl0gAAAAAAAAAME5ablZjSwaw4LkNasKqxDQAAAAAAAAAFIi8vGTKR_hj8fN-xuppngwAAAAAAAAAI3bGIzBFOyWIu1_VZfhniegAAAAAAAAAD_YLxou54StNacGQBpLgASwAAAAAAAAAI-xGaToLkGkY7B0CjGV1OZgAAAAAAAAAC0wOjB5IuI4nHBVGCfg41awAAAAAAAAAEBkwDPTHLhIovyT2lUxnnJQAAAAAAAABKUnphKVh-9QACDNWSmmV53AAAAAAAAAAJeD_z17WIkKLZhJ8ty3JXzwAAAAAAAAAJFobDs8AkrnBHoqx-DyiK1wAAAAAAAAAuNdx1OiBmHCbTOxIkK1dupgAAAAAAAAAKaxidElRbDvZZ7rQ8Ca4ceAAAAAAAAAAFTVILalueBBKmusxvrzs61AAAAAAAAAFQ-ewB6MfVuUB7Vi_jcn5d-AAAAAAAAAAvsZ7DuqUIOGepxIijYq8VswAAAAAAAABsy3V4Wh9j61CfcWNgvt1uPgAAAAAAAABz-i9B3-JNdczGS_XZOzEMqwAAAAAAAAAcOqpwupFnKCF_JGoASiI17AAAAAAAAAAN0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdxn1WEw8JlmcUP5ReFMzZYwAAAAAAAAAYTpjjgqBU-O7RfxeFvF0xSgAAAAAAAAA80Og38EZo1V7Xaj5UHUpXuQAAAAAAAABiUpp5VWkbyXiZhnZAzBafhAAAAAAAAAAHa-tnNgE_PVOj5VDWe-OZBgAAAAAAAAAeuOzixkp7ZlAvNxTEUEAtwwAAAAAAAAA51fYA4NRvqEW8cCN5tNzvwgAAAAAAAAAK4ifqwDK9i5UTSVsD019mPAAAAAAAAAALipL4zf-M1T0VsH07_OL0tQAAAAAAAAAOcnUFYX3c9XPINCca7EXauwAAAAAAAAACWhniNSxw2pCUX_wLOZqcBQAAAAAAAAABIZGUOrgjbqfmbQ1HlCskBgAAAAAAAAAM-ETEXRY5mnNoeyaCh_V2BwAAAAAAAAAHqD5R7oUvp1CMIoWxp8Tz_gAAAAAAAAAA8DDAjVJl721y2vxKHGSBegAAAAAAlVgg", "types": "CAMzBQED"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0LkVxQAa6pU0RqhwVjYI7Q"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAACLHmuH5pCGXma5ToZjJwiZHAAAAAAAAAD9rG4zWNbzF43FlUaeZiWkVQAAAAAAAAAQXnjBlJcnxcvhBZn6AsXK5AAAAAAAAACsoQArrDgqdYM5cNRCfb4bawAAAAAAAAAGnyQEDtNfXDm_fNpPXsT-3gAAAAAAAAACeLPEw3jnFkvsJ2aQiz21NAAAAAAAAACR", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "i0YGLUH3jSc3EqUN0sndYQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABF0kYxe-SHgukLEpCkawSk1QWAAAAAAABF7IYxe-SHgukLEpCkawSk1QWAAAAAAABGF-Yxe-SHgukLEpCkawSk1QWAAAAAAAA1GkYxe-SHgukLEpCkawSk1QWAAAAAAABqfH", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "tpfKAB3ce62OhmOmHASsvg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADHmXqXT4fd_WKeR1cE-hlLelCQAAAAAADHmkkXT4fd_WKeR1cE-hlLelCQAAAAAADHm4cXT4fd_WKeR1cE-hlLelCQAAAAAADB6QhXT4fd_WKeR1cE-hlLelCQAAAAAADQm0EXT4fd_WKeR1cE-hlLelCQAAAAAADQmurXT4fd_WKeR1cE-hlLelCQAAAAAAC0u6GXT4fd_WKeR1cE-hlLelCQAAAAAAC0yjyXT4fd_WKeR1cE-hlLelCQAAAAAAC0yEqXT4fd_WKeR1cE-hlLelCQAAAAAAC0yQGXT4fd_WKeR1cE-hlLelCQAAAAAACq9XQXT4fd_WKeR1cE-hlLelCQAAAAAACrw0YXT4fd_WKeR1cE-hlLelCQAAAAAACq_Y3XT4fd_WKeR1cE-hlLelCQAAAAAACrEaEXT4fd_WKeR1cE-hlLelCQAAAAAACrHKvXT4fd_WKeR1cE-hlLelCQAAAAAACpxsFXT4fd_WKeR1cE-hlLelCQAAAAAACpxP0XT4fd_WKeR1cE-hlLelCQAAAAAACpxCHXT4fd_WKeR1cE-hlLelCQAAAAAACp0JQXT4fd_WKeR1cE-hlLelCQAAAAAACpz60XT4fd_WKeR1cE-hlLelCQAAAAAACm_d4XT4fd_WKeR1cE-hlLelCQAAAAAACnLWRXT4fd_WKeR1cE-hlLelCQAAAAAACnNKkXT4fd_WKeR1cE-hlLelCQAAAAAACnGpB", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "p6toiAoGuISzHgo2mVbosg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAByH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAAHe7YYWaQTMh8P2PCVzA2a8gAAAAAAAAABzEK_5i4wFV1mMofkY5GUSQAAAAAAAAAE", "types": "CAMTBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "uFfy6tMD89kRdnXjUB9Exw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChy6gXT4fd_WKeR1cE-hlLelCQAAAAAAFRYL03aS07d9PG4lc4UzuBbVWzQAAAAAADE19rtOWfs-RaxXWHIPyRB9RAAAAAAAAAGEo3aS07d9PG4lc4UzuBbVWzQAAAAAABuKH3aS07d9PG4lc4UzuBbVWzQAAAAAAB7Hf3aS07d9PG4lc4UzuBbVWzQAAAAAAB84B3aS07d9PG4lc4UzuBbVWzQAAAAAAD5BX", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WEHPkqhUHSa6PStjpEGbog"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_WGO", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iAaZYeT4FhJtkt8tMhB4bA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAeOSm8DDAjVJl721y2vxKHGSBegAAAAAAy5N78DDAjVJl721y2vxKHGSBegAAAAAAxZln8DDAjVJl721y2vxKHGSBegAAAAAAX9zG8DDAjVJl721y2vxKHGSBegAAAAAAX9wD", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "rlHZ4F86_IkUTEldGdKkxg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYF2SRNVvpG70uKYyVRryv4AAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH_gteXZinNF7SSsZfg8slZgAAAAAAAABHF44Y-ELdVzbmYJDBLoV7lgAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABUdbowpynB4MR0QYase8FmAAAAAAAAAAt7Qn6qGKODLOhflOBBPmWbwAAAAAAAAHIxYUK_AZApuCfUvl6Cnon_QAAAAAAAAAx-ZUigVp6H-HqH1lR0smw4gAAAAAAAADmJw6J8qgr1pYHKUa0xZ1MdwAAAAAAAABZlZTvs585vMzXjn3UHln0NQAAAAAAAAGiLMhs_MdxnqcQW9tN9tUCJAAAAAAAAADeXjyaLTQPNDwnxeTIUaoLqAAAAAAAAAA9LZh34Qe9WZt7ydt6m_9sHgAAAAAAAAAxUX0maaM_jFdAmFMbhLpaSgAAAAAAAAANVydXcSmOqICsVxLpiPFyCAAAAAAAAAAhxWXbvqcob2cyNB-_TJKbYQAAAAAAAABZBvE20tx_aKDX9k1QBsUKsgAAAAAAAAAY1LCxlgD3_e4Ym8K1UlEBRQAAAAAAAAAFawaK319bKiHtaKZV9KHt9QAAAAAAAAAXKP7ul0MvWr6g2vIy7Z-XSgAAAAAAAAAa-esrZcmh9SBGSSEFHAV1fQAAAAAAAABxLShh-9O-ab8ob4gfeH5zhQAAAAAAAAAfN1PQDu1Ay8cMXPJ8jF7fCAAAAAAAAAD6-pQ7u4Ee6imT9PbqfC5keAAAAAAAAABK2OWtsBQW6DA4kXJxcJcc7QAAAAAAAAAHjXA44eQDJB4STkgNORi52AAAAAAAAAAHjXA44eQDJB4STkgNORi52AAAAAAAAAAHQ-0CdzIUPjuUjymJjdFwdwAAAAAAAAAFjXA44eQDJB4STkgNORi52AAAAAAAAAAHJtZWm99a_rUaGtgjeQwOcQAAAAAAAAA-5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3Ge0L0SwsSbyUWsXqVMbKswAAAAAAAAAGDXStuM9FGoRVIzn6iyb_SQAAAAAAAABmLO0kqCJ5sLnPx_SwGJYFEQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMTbeJ7BYIhIN72fM2Cz8k8m9QAAAAAAASDW", "types": "CAMuBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nE2W3QU8Q_gSxcGmy1L07w"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB81EOz5k14PsCcDvFyUC1kmlV3QAAAAAB81h7z5k14PsCcDvFyUC1kmlV3QAAAAABIKcyz5k14PsCcDvFyUC1kmlV3QAAAAABILB0", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "sPqqmDZLLGF6_pzrJ1s5lA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyEzZ3CKaS4aU08RhYA19y5ITQAAAAABtxy2Z3CKaS4aU08RhYA19y5ITQAAAAABtwT0Z3CKaS4aU08RhYA19y5ITQAAAAABtFpzZ3CKaS4aU08RhYA19y5ITQAAAAABtnwrZ3CKaS4aU08RhYA19y5ITQAAAAABudBy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "aZ5a5uABVj3-LJ7f05RUMw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFVZC", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8TaAaAbO2kYoYXz8lQOzyg"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGgeDz5k14PsCcDvFyUC1kmlV3QAAAAABFr3Wz5k14PsCcDvFyUC1kmlV3QAAAAABFpxkz5k14PsCcDvFyUC1kmlV3QAAAAABFc6fz5k14PsCcDvFyUC1kmlV3QAAAAABGnT26tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ8bZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ75B6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ7gC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJloA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJlhJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAACHEw6tVKI4mSYDEJ-ABAIpYXcgAAAAAACG-k6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFF866tVKI4mSYDEJ-ABAIpYXcgAAAAAAFF5X6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFzd6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFgX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFbO6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAsTF6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAsCt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAABQH", "types": "BQMRBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_9EUaNCl3IuE7tIxwFYMuQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc5-Qz5k14PsCcDvFyUC1kmlV3QAAAAABcnaEz5k14PsCcDvFyUC1kmlV3QAAAAABakmCz5k14PsCcDvFyUC1kmlV3QAAAAABaBsyz5k14PsCcDvFyUC1kmlV3QAAAAABaBLIz5k14PsCcDvFyUC1kmlV3QAAAAABHZsIz5k14PsCcDvFyUC1kmlV3QAAAAABKB57z5k14PsCcDvFyUC1kmlV3QAAAAABLLQZz5k14PsCcDvFyUC1kmlV3QAAAAABK3KAz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTih6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinDe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnJ0g6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnJsR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi08L6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi0ex6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi0dj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnNGr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAit8t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnI8b6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "DQMUBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "VNUy9Kl8PZqeMvwb9TiUaw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETRC", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UD2V5eCNLXgLkaPYiOqqqA"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAAA_rYYxe-SHgukLEpCkawSk1QWAAAAAAABAVG", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YkDswwGDcRcULSbyMQBvSw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADB0YTZ3CKaS4aU08RhYA19y5ITQAAAAADA21XZ3CKaS4aU08RhYA19y5ITQAAAAADAz_nZ3CKaS4aU08RhYA19y5ITQAAAAADA1XyZ3CKaS4aU08RhYA19y5ITQAAAAAB0K6GZ3CKaS4aU08RhYA19y5ITQAAAAABxI7PZ3CKaS4aU08RhYA19y5ITQAAAAABwW6UZ3CKaS4aU08RhYA19y5ITQAAAAABwY6gZ3CKaS4aU08RhYA19y5ITQAAAAABvy98Z3CKaS4aU08RhYA19y5ITQAAAAABv3V56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmkK6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXfZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXa_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgJ7", "types": "CwMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XSKFxKaBoSQ47sJlFE7ZDg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN5Dp", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JR6E07WvNgJwpTlm8l-rDw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXUptYxe-SHgukLEpCkawSk1QWAAAAAABXVjkYxe-SHgukLEpCkawSk1QWAAAAAABXVBsYxe-SHgukLEpCkawSk1QWAAAAAABXZL0Yxe-SHgukLEpCkawSk1QWAAAAAABV3AkYxe-SHgukLEpCkawSk1QWAAAAAABV1uZYxe-SHgukLEpCkawSk1QWAAAAAABV59PYxe-SHgukLEpCkawSk1QWAAAAAAAFzcMYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyOq", "types": "DgMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "meCjbo7HVKiASc4lT5GHWA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAABcQrw_bSROFZCKPRirqN5crwAAAAAAAAAEmNKQ_cGBX-X-PxTw057WHwAAAAAAAAAoPe3ctc9W4J1u_ZCOerqNzAAAAAAAAACGnZmkelHuL2rN_AY8H-OMEgAAAAAAAAAFgmjUzsxRLEujWJFPXkncMgAAAAAAAACLzw0wKeXSScV9zb0GbnSg3gAAAAAAAAD4xojp5VBQ5xwqQiCbnXCnEQAAAAAAAABJUzpT8KmlTneCrZW0Xa3m6AAAAAAAAAEgwELFL8jGCRMErF4_7iFL_AAAAAAAAABJGWaNS7Aannj1ZssQUxZReQAAAAAAAADM6euAcrRks5bLxxAuk2RtfgAAAAAAAAC6QMctDnxPPYtUnhB_5ZvHdgAAAAAAAAAJN2N5ycBuBAS4G2YTZr-qWgAAAAAAAAAWsImjAGxEOCfJp0uCTUesZwAAAAAAAAAHWg3NMwFQjkpTmdqB4Do_BAAAAAAAAAAw", "types": "CQMaBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xQF0-oJ8JdkDt-6rMsRLlQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc5-Qz5k14PsCcDvFyUC1kmlV3QAAAAABcnaEz5k14PsCcDvFyUC1kmlV3QAAAAABakmCz5k14PsCcDvFyUC1kmlV3QAAAAABaBsyz5k14PsCcDvFyUC1kmlV3QAAAAABaBLIz5k14PsCcDvFyUC1kmlV3QAAAAABHZsIz5k14PsCcDvFyUC1kmlV3QAAAAABKB57z5k14PsCcDvFyUC1kmlV3QAAAAABLLQZz5k14PsCcDvFyUC1kmlV3QAAAAABK3KAz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkw", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6epEt039prWDA1mKzr3j4g"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHba4rFFPORY8_4FvK9QaA3QUQAAAAAAGRIW4rFFPORY8_4FvK9QaA3QUQAAAAAAGRJh4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp4rFFPORY8_4FvK9QaA3QUQAAAAAAE8Qr4rFFPORY8_4FvK9QaA3QUQAAAAAAE8j34rFFPORY8_4FvK9QaA3QUQAAAAAAE8kwUJmIMEc6K8gJ39NHYaD0WwAAAAAACdpuUJmIMEc6K8gJ39NHYaD0WwAAAAAACdtHUJmIMEc6K8gJ39NHYaD0WwAAAAAAAybk", "types": "KgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "w3xnKikVInZNF5EAfNPcog"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LMXcEvvhuguaGYCmGWrnWRz1QAAAAACETdScEvvhuguaGYCmGWrnWRz1QAAAAACETxWcEvvhuguaGYCmGWrnWRz1QAAAAACET9icEvvhuguaGYCmGWrnWRz1QAAAAACFt8a", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "g26zKQT7gg8BeuF77xo4zw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVFKmuDb9OiAlOmhNzpFQWMgAAAAAAAAAFUw8EG916-vV16x2yycdXOwAAAAAAAADvK0flqZKMYgGhD375agfmDQAAAAAAAAAdrXAVE11Ryhs80ZE3uuTVVgAAAAAAAAACWj1Uq6jbmSjrZUnAzTcg8wAAAAAAAAFMu2DScCPg-79KHpSdqd651AAAAAAAAAAdt1rjy3Ck_TErVMhv-psy8AAAAAAAAAAHL89gnK14agcS6gC2h0zhpQAAAAAAAAFDEacvdBDVwYleo41xBU-e_gAAAAAAAAAL6vLdbR-rUObkBHp1yQiB0AAAAAAAAACDv9o_sKfrYjdaj4uQ2RTaHgAAAAAAAAACA81KQnIActlJrUuE6mKR2QAAAAAAAAAlGRkj9xWObIUC39vWGN57xgAAAAAAAABNIHitom53T4ie1rkBiA8y6gAAAAAAAACyLTb9asUQOMhlb43-O2hRvAAAAAAAAAACMClpQyU6gpPESHOwt_xwcAAAAAAAAAAoC6MkBEHFDeIGZnIrO2EiSQAAAAAAAAAFKSV5zpqX5uS8pJ0jF65uTgAAAAAAAAACNcpE6adeOVCfvBx4qpjhtwAAAAAAAAAHztHnkwVOP9LxgkQsriQwqgAAAAAAAAAmw8WZ7knoCa_QO4bWg-OEuAAAAAAAAAAFNMpC60tGKaJ25O0qF-RzlQAAAAAAAAACE-v8FNfqQYHt5vFsJHPNCQAAAAAAAAA9Pw0lwfQZQc0MOiG5MIrhJAAAAAAAAAAM9LcbhYCkWtGyipSFqusBKQAAAAAAAAArysgyXRf3M-vZ9sguVTGKVgAAAAAAAAAFfgcQtYXN4h_K1-CWi7-E3gAAAAAAAAACtFnTI0KlLYyCsvALAFvbSwAAAAAAAAAFAhPzx2h6vI74dTFnJRlejAAAAAAAAAAFCyFPDZBEiXoheKAUx-Kq0wAAAAAAAADGq0kPH1osD2SS18yYjsejKAAAAAAAAAAE5vMyVxaxXbqzsaKVqZzo9wAAAAAAAAAHiynY3Vpl2yeKIqRo2Ld9YAAAAAAAAAAnAsYLPOMVTEJOeDxuyLY7KQAAAAAAAAAUvTiT6RQHSjUNEBuIvfofKgAAAAAAAABRer7IYYpYGm8FuaYV6j9_KgAAAAAAAAAOok4zrk1T3mBLtObzPQcS-QAAAAAAAAAFdLwWk1CGjdl0nWT4XrDcdgAAAAAAAACSkpBi8LFR3RTjSJqFuljOuQAAAAAAAAAAWpojVIMMfjg1gPX4CFe0BAAAAAAAACU8Ht2yyHtMhQP9uhMxLoNAEgAAAAAAAFO7Ht2yyHtMhQP9uhMxLoNAEgAAAAAAAEkU", "types": "CAMuBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FegCmMNlTYxTi6BZY4sf2Q"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlPqcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgMz", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vG5qkEuqusPem8LUs14viA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmss", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KtSO89M9VCytWeOA_oiQpA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA70RgYbC2fQjxygsXZf0s0DwAAAAAAAABPiAgP1DBH7Z9OPzvK7kQabQAAAAAAAAA3brHwMWIWqKKcmy2jXj1-xAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA70RgYbC2fQjxygsXZf0s0DwAAAAAAAADSW87P_sgUDxSTpL44g-B3sgAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAAwCzfvNB5CT8fN1XtUwo_8BQAAAAAAAAAG-ohc9ArPlivHYzVPr7FWAwAAAAAAAAAY", "types": "CAM1BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "d5t035vLHEEj1-NawauH3Q"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETT2cEvvhuguaGYCmGWrnWRz1QAAAAACEP-qcEvvhuguaGYCmGWrnWRz1QAAAAACEOMYcEvvhuguaGYCmGWrnWRz1QAAAAACENOEcEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEV20", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SrafhsgxIK0tYHDI3k0sYg"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF9Y7z5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF78Kz5k14PsCcDvFyUC1kmlV3QAAAAABFxdxz5k14PsCcDvFyUC1kmlV3QAAAAABGnbQ", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RY6CR2GX63ecIZk12OBekA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFJmXT4fd_WKeR1cE-hlLelCQAAAAAACxFTwXT4fd_WKeR1cE-hlLelCQAAAAAACxFdzXT4fd_WKeR1cE-hlLelCQAAAAAACkl0i", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zEIksK3cfonq6bczdcfCPw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAABcQrw_bSROFZCKPRirqN5crwAAAAAAAAAEmNKQ_cGBX-X-PxTw057WHwAAAAAAAAAoPe3ctc9W4J1u_ZCOerqNzAAAAAAAAACUA80fpNwLg5UyZGOl2HXL1wAAAAAAAACvw_cxYz8MnUesAVA7XOw_bwAAAAAAAAATGWaNS7Aannj1ZssQUxZReQAAAAAAAADM6euAcrRks5bLxxAuk2RtfgAAAAAAAAC6QMctDnxPPYtUnhB_5ZvHdgAAAAAAAAAJN2N5ycBuBAS4G2YTZr-qWgAAAAAAAAAWsImjAGxEOCfJp0uCTUesZwAAAAAAAAAHWg3NMwFQjkpTmdqB4Do_BAAAAAAAAAAscnr9SR5FRmT_ijDWUYwkxAAAAAAAAAA1VmbQ13l3vaIwmAJ2MX2yEwAAAAAAAAApTBsi_uo6Ja6CX6zuoV3IjgAAAAAAAABTVN1DUTj32XK1HLzEKrvMqwAAAAAAAAAIVmbQ13l3vaIwmAJ2MX2yEwAAAAAAAAApTBsi_uo6Ja6CX6zuoV3IjgAAAAAAAACnVN1DUTj32XK1HLzEKrvMqwAAAAAAAAAIVmbQ13l3vaIwmAJ2MX2yEwAAAAAAAAApTBsi_uo6Ja6CX6zuoV3IjgAAAAAAAABTVN1DUTj32XK1HLzEKrvMqwAAAAAAAAAIVmbQ13l3vaIwmAJ2MX2yEwAAAAAAAAApTBsi_uo6Ja6CX6zuoV3IjgAAAAAAAABTVN1DUTj32XK1HLzEKrvMqwAAAAAAAAAI", "types": "CQMjBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SHfyhSnEb1p1IWRrszMVNg"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXDNgtQ4kMk_MBWrPUAFqVnYywAAAAABqaJ-gtQ4kMk_MBWrPUAFqVnYywAAAAABqYJkgtQ4kMk_MBWrPUAFqVnYywAAAAABqYXkgtQ4kMk_MBWrPUAFqVnYywAAAAABqZbZgtQ4kMk_MBWrPUAFqVnYywAAAAABrYZugtQ4kMk_MBWrPUAFqVnYywAAAAABqZxkgtQ4kMk_MBWrPUAFqVnYywAAAAABqZzq", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ENd0ZQPQhCBrVRTzVrRlTg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAQ2qk3SUFPdBYwVkFMX3ttpwAAAAAAAAAFsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJnsN5oeLyhaU3rc_4TQfhXgAAAAAAAAALgvQGUUGWUJbOOm8Vi63fqAAAAAAAAAAGpIlQHYzUvHZx6w5Rtmyd8QAAAAAAAAAGQUT-nNY12PdX-wWYy6XdlgAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJnsN5oeLyhaU3rc_4TQfhXgAAAAAAAAALgvQGUUGWUJbOOm8Vi63fqAAAAAAAAAAGpIlQHYzUvHZx6w5Rtmyd8QAAAAAAAAAGQUT-nNY12PdX-wWYy6XdlgAAAAAAAAADm61OiFi7ipeTEQpdgB4G8gAAAAAAAAAFNAXh3zuU0dO2_vEc-9d1QQAAAAAAAAATkqJ4VqDE70cb2cN5KIkXQQAAAAAAAAAPf_9fGUQaN970lob5Do-YiQAAAAAAAAAoJwOjBjWUyQXIH6dg-O-8CQAAAAAAAAAx_77qZUb1XG2M2XPwW_4fagAAAAAAAAAIy7jdQXuqmZbueYJpOXUh2wAAAAAAAAAcer7IYYpYGm8FuaYV6j9_KgAAAAAAAAAOok4zrk1T3mBLtObzPQcS-QAAAAAAAAAFdLwWk1CGjdl0nWT4XrDcdgAAAAAAAACSkpBi8LFR3RTjSJqFuljOuQAAAAAAAAAAWpojVIMMfjg1gPX4CFe0BAAAAAAAACU8Ht2yyHtMhQP9uhMxLoNAEgAAAAAAAFO7Ht2yyHtMhQP9uhMxLoNAEgAAAAAAAEu_Ht2yyHtMhQP9uhMxLoNAEgAAAAAAAM0rHt2yyHtMhQP9uhMxLoNAEgAAAAAAALw1", "types": "CAMtBQUD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Q0ENIP1KEnFtYZ61TVJgFA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACu-VgZWZvvoe_9HhGDZJCzLgAAAAAAAAAO7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAFk3HyWSdTGgne1xIId1mIvAAAAAAAAAAz4hfXqIriRq-rW-iKKuDGxQAAAAAAAAAJhyDoVUWwwXEvgB5sKTLeXQAAAAAAAAACHDR9S3uHHXddIiGMGd1LPwAAAAAAAAAJBTobNAGTus4ntELtY3QWmAAAAAAAAADIrp7bgp_IDPpzNiZYGVm1vQAAAAAAAABRceAXg6TZDkdNFtcE_O4vaQAAAAAAAAAO6dizidRtpqcGmpShAjzttQAAAAAAAAAVXzWVAFfWPkx_-5DzBgosgQAAAAAAAADagk079EBdEVh5ErpJ6XBaYwAAAAAAAABiV1AAAJZxfA577guD2Mmh4AAAAAAAAAAhd3kpVhLsdwM004-RCJ5KgwAAAAAAAABRqWBohVpV0WLBgoRPY3ha5QAAAAAAAAAGgh5ZUK32QaLM1EoyY_BRswAAAAAAAABmdYxgL7CgR5AQJPxIbvTAXgAAAAAAAAAFQ_fTsiDQn3AwPFHRHJfE6QAAAAAAAAAFISo198vJQrYNdynfqzotagAAAAAAAAACSU7fNzMC3NazhQDT5xGXYgAAAAAAAABI", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "T9eGzwsiFziCB5AQ4Q7t4w"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAnEGqyFI4UBcYw0uODaUlP_QAAAAAAAAAEUVkJt030Ch-A5dL0zS5tHgAAAAAAAAAI0xjqN2eHOKsjzvKPeuH6xQAAAAAAAAAI94c0iuzzyiq2admvir0-DQAAAAAAAAA9z_ZeRXCxHeNXTu6DB2OR1gAAAAAAAAACiFkuHlkQPsBsMnUTpjsUKgAAAAAAAAAF0Cdt9wyWxnG2B-xGXMO6owAAAAAAAABpyYF5YWbjTLokor9oKz_A5AAAAAAAAAANDYw6-LyNoVsQdM43hcJCegAAAAAAAAAI3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAA52Uf8NlMClggx8jaziUTJXlmWAAAAAAAAQEs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMQBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "HJxkp_0dYxVVXMM8lFTP_w"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIZy27xNCwe4jKCqsA2srxVwAAAAAAAAAoLZeO9S9IXnalwT9Nl3ihfQAAAAAAAAASxWwq3BVQzbzp00-HYFOW_wAAAAAAAAB094QsDIL7bUk7Oxas7lNqGAAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJSYSSbioufiMK4TqEn24uLgAAAAAAAAAdXL_fwLkYkxkYcfgosK-fdQAAAAAAAAAQO_mHTPntGTw_EnF-rkI8XgAAAAAAAAAWiiLZnxbVRTQPtvWA0miuyAAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdfJIr5vQAn81_ytZBhz6xpAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAABduSa7rLKjwnZa9hewarfUgAAAAAAAAAIHMo9CJkBJDT98ldAVMcaFwAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAn8yw5xAkzQPNYncv2nxNJ2QAAAAAAAAAninLD7FTDiZ9QX8bC0I9L_QAAAAAAAAApsYti6chh3H8KzXctZah7uwAAAAAAAAAE7EAsiDF3uoTXazC89bRxpAAAAAAAAAAIpeI4q4l4-jzxMAY6KnhlVgAAAAAAAAAmzbjoTM6fVBg8CyNBFi4-kgAAAAAAAAACwi6IGN8qc6k-a5Oge6MluAAAAAAAAAAQEiFiDjtjvWXj4YGVaTJXOQAAAAAAAADjHAPuRG_LRRYFUeA5sYpd1gAAAAAAAABEs4zVuFE809K66EfKcw5rKwAAAAAAAAAQ24n4ePzlVWsDesrOF5pV4gAAAAAAAAGsOM3cBlLfFnVP_GH9Bls5ZQAAAAAAAABYbwD-Zz3w7JYWW7ew0dW5KgAAAAAAAAAmT3lk77LF4G-nQZW_WRBUXQAAAAAAAAAH8RG5DT3fZ989s0GfMwYkZAAAAAAAAABKkxK1qXTyCT9ACujXNEXtGQAAAAAAAAEuB_P8uAe_X3hP--xhR0y-LQAAAAAAAADTGIy5Mg_ksRG2OUR8ttDU2wAAAAAAAABA5VZIXKdThz-hZwdLu0KVfwAAAAAAAAAKGY8FzW1zmT9O6Iy3KHcGZQAAAAAAAAFJ90UIqO2n6jPWAsY9C7Jk5wAAAAAAAAD26l3Q3lLwvaP7rhVtdi_RoAAAAAAAAAAOMRefKuQ15Y6eStqPQ3JqewAAAAAAAAAtMAeNVf9VknVgzLcDuw060QAAAAAAAAAA", "types": "CANGBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jzM3_RaSHWvB0wG3aA8SGA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAnEGqyFI4UBcYw0uODaUlP_QAAAAAAAAAEo7sR_pIbiVV_Z8TfMWbBfAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALVhUIBMnDjpGauL-PhicCqgAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl_plqR4x5xi_qOVu9JWCxQAAAAAAAAAEYNvLePk3bv25BUHN3KzEXQAAAAAAAAChMo8MRZcTTA5MSH5mIc8c7wAAAAAAAABiYNvLePk3bv25BUHN3KzEXQAAAAAAAAA73kqKIOk7SslvcfRGmqs1wAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAChAAnABuJtrWflPvotxCoPjQAAAAAAAAFDgM-zvldT2mxZOhlxJvpRXwAAAAAAAAAXc0OkgT3_p45M6FsCvH3WnQAAAAAAAAAVBrUFbWJQXA38LKOgrDwJigAAAAAAAADvR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAW40ES46dU7pwVTIhZzOkjPwAAAAAAAABV_bWrQJSE9QDRqMSbes6HHAAAAAAAAACK1WwaSXc6MUqSl16CLws0XwAAAAAAAACe6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAACVjcbdnnQUMfgz1UYqKyDaQAAAAAAAAABmSJ6fSPuHzsY_PJcgbXOQAAAAAAAAACX", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "QMxWy-HLDdixOY7zgrqBCQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABSEZzz5k14PsCcDvFyUC1kmlV3QAAAAABFRZ5z5k14PsCcDvFyUC1kmlV3QAAAAABFRFb", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Vb2Ub8_PPY1F2LjTMHRlGQ"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACe-XXgtQ4kMk_MBWrPUAFqVnYywAAAAABxp0XgtQ4kMk_MBWrPUAFqVnYywAAAAABxqC6gtQ4kMk_MBWrPUAFqVnYywAAAAABxqS-gtQ4kMk_MBWrPUAFqVnYywAAAAAB7rchgtQ4kMk_MBWrPUAFqVnYywAAAAAB7bTkgtQ4kMk_MBWrPUAFqVnYywAAAAAB7bYbgtQ4kMk_MBWrPUAFqVnYywAAAAAB6BOtgtQ4kMk_MBWrPUAFqVnYywAAAAAB6BDngtQ4kMk_MBWrPUAFqVnYywAAAAAB6BZkgtQ4kMk_MBWrPUAFqVnYywAAAAABv60OgtQ4kMk_MBWrPUAFqVnYywAAAAABv6CigtQ4kMk_MBWrPUAFqVnYywAAAAAB7m6tgtQ4kMk_MBWrPUAFqVnYywAAAAABvd0kgtQ4kMk_MBWrPUAFqVnYywAAAAABvJaIgtQ4kMk_MBWrPUAFqVnYywAAAAABskOEgtQ4kMk_MBWrPUAFqVnYywAAAAABr-YMgtQ4kMk_MBWrPUAFqVnYywAAAAABsAm66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWrX6tVKI4mSYDEJ-ABAIpYXcgAAAAAALUbi6tVKI4mSYDEJ-ABAIpYXcgAAAAAARNmC6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdS56tVKI4mSYDEJ-ABAIpYXcgAAAAAASdLN6tVKI4mSYDEJ-ABAIpYXcgAAAAAASir_", "types": "EwMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mUyE_suvnt8oYk97Ie-0dw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAGx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABW1vmWfRl7JvnIelrwmbOFDwAAAAAAAAB2P_qKgj6OkmYBLfen5yPH6AAAAAAAAADlitfZdu4NdI0YJrHcgeE-TwAAAAAAAACXJS-WjNz0QulnqSlnIs8U0wAAAAAAAADS7Ormen3KBfy8FXv7OmF-kAAAAAAAAAHyavfO9wX8Y6wuHuPsqC9ogQAAAAAAAAAW6qtI5rBZUCPwlvUdhEAyyQAAAAAAAABwWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAAJ8M1BLNGIf7nUxDe3LzOquQAAAAAAAAAX", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DgYVN34ZcCDpb_8g_OO-zQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlr56tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA6d6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA406tVKI4mSYDEJ-ABAIpYXcgAAAAAApUaF6tVKI4mSYDEJ-ABAIpYXcgAAAAAApRAM", "types": "FAMNBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nsfGreQ-AJXhxxIOSpjP4w"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnsc4D-HUp7vlbJIxV4XTtIQAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAACSeel_AF4MFS6VTogqEciizwAAAAAAAAA4cNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAATOxxKBS9Al6yHytdJFJ36vwAAAAAAAAAKALZXWtJb4WSKUn7Jnwu5oAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB89HR02MeEsszdbWonSYgpgAAAAAAAABwt9mUJ2Mi-Tf4Kg7L-7UGQQAAAAAAAAAN-d8q0yrrshveMNVRtuEsEgAAAAAAAAASeGIFttVUQC7RMaD3wy21YAAAAAAAAAC3kMuo0JXogl3x5AQTaHy4yAAAAAAAAAAQoTk3W7QV7_tttxuFij_F8AAAAAAAAAAIdmm7_Hn3SrysHeUffmIe9AAAAAAAAAAfaxxtk6GnkoiqRXb69JxcoAAAAAAAAACge4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJFcMB855_FWaZSswd2LZM3wAAAAAAAAAYZUkxWiYAr4SyJxCC7bTxYgAAAAAAAACHrBjr-BSuheRW9kIELpoRjwAAAAAAAAAF3uCPACWOBgKiHyWp2ia3YQAAAAAAAAA9xAhlVWErYnSgk5BtC2imuwAAAAAAAAAHPCZtk4AIkgW9G69-tbcb4gAAAAAAAAAIs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-DtPdcHZXD6lZ4B-5RvFAgAAAAAAAAAM00eisXGmqWCNhkkhQAtLcAAAAAAAAAASFU-LtuDYfkFJE48mcerINAAAAAAAAAAWE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFLpHTUiXklvttl2XctppO-QAAAAAAAAAMUbIORJBv2DkMjBVQPD_BbgAAAAAAAABjAUF9qfndDpPVzyW0cm1sXgAAAAAAAAAY0gz1mhmhTxHCVZG94cP1QgAAAAAAAAAF5AlGpMeJ43kub-4_w-C8rgAAAAAAAAAHvIt65Wo27njJcD5Xdpsh-QAAAAAAAAAC1WDbb1SZcDFebMGD1NIFDgAAAAAAAAAIuAPSket1RIeLt6v2inqVqwAAAAAAAAAFANUDzCguopTSw91qnI0ylAAAAAAAAAAO-kwQ5tzIMTia7ESgS4_wzAAAAAAAAAAdjzN7oGzjO6fv1s92-BFCeQAAAAAAAAAyY9mQUdyp86jQhHqOid6GcwAAAAAAAACW76wxGzK61aMnsTPSzlLCrgAAAAAAAABA8gCX4yiEJccsUYm2373XlQAAAAAAAAAQz8yDYNMJULt1ApZ8kqZamAAAAAAAAAAGMMAujfe9xzktoHyDqw_cGgAAAAAAAAAGWY2_M7eCNrhZsLoJqmwFKwAAAAAAAAAEeVW9lCqHxlTfD5Rt7tiZeQAAAAAAAACGL6zK1j3SbhClCg7g1r2ArwAAAAAAAAAZlBCEtJpnWxH9YJv8ASXFIAAAAAAAAAACQl5LFJIFzBtywZjp054QqQAAAAAAAAAeud19zrXkNLiaFIKsYgavQQAAAAAAAABBZVUm0BdPrxOejRxbp2Iq8AAAAAAAAAAZhLSDzfljATRl53NLUpYdIQAAAAAAAAAS1t7fQsJNgmiW7cyVgRgDbAAAAAAAAAAEFmQpCEOKh0tQsiSVjTAfogAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAHY0vQ7EacG6CR4rzcFaNFEsTQAAAAAAATMu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMxXI", "types": "CANIBQIDBwQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6Ka-3JlTgkm2OGJ6k1gw6A"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAABH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAC1e7YYWaQTMh8P2PCVzA2a8gAAAAAAAAA5gpzmfljwMvF6axjuntzBmAAAAAAAAAABtGdjZjM6jJA23WbdtVpvAwAAAAAAAAAIgpzmfljwMvF6axjuntzBmAAAAAAAAAAA", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-KS0u49xolpP7NNNTq5cCw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAC0XP_Z3CKaS4aU08RhYA19y5ITQAAAAADBlVKZ3CKaS4aU08RhYA19y5ITQAAAAADAqPIZ3CKaS4aU08RhYA19y5ITQAAAAAC12lqZ3CKaS4aU08RhYA19y5ITQAAAAAC14oVZ3CKaS4aU08RhYA19y5ITQAAAAAC14daZ3CKaS4aU08RhYA19y5ITQAAAAACsn_sZ3CKaS4aU08RhYA19y5ITQAAAAACsuuEZ3CKaS4aU08RhYA19y5ITQAAAAACnQugZ3CKaS4aU08RhYA19y5ITQAAAAACIAqaZ3CKaS4aU08RhYA19y5ITQAAAAACtAiPZ3CKaS4aU08RhYA19y5ITQAAAAACsxfDZ3CKaS4aU08RhYA19y5ITQAAAAACIA38Z3CKaS4aU08RhYA19y5ITQAAAAACIecEZ3CKaS4aU08RhYA19y5ITQAAAAACIdftZ3CKaS4aU08RhYA19y5ITQAAAAACInZnZ3CKaS4aU08RhYA19y5ITQAAAAACIfPuZ3CKaS4aU08RhYA19y5ITQAAAAACIPbwZ3CKaS4aU08RhYA19y5ITQAAAAACHNUFZ3CKaS4aU08RhYA19y5ITQAAAAACHM88Z3CKaS4aU08RhYA19y5ITQAAAAACneMKZ3CKaS4aU08RhYA19y5ITQAAAAACnbPtZ3CKaS4aU08RhYA19y5ITQAAAAACEY-vZ3CKaS4aU08RhYA19y5ITQAAAAABuccd", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1RB76pKLkn3TAPBKzo-tTg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQEI2MlivQ_yGyq36LnLAGeQAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQOUV_Man7LKpLI_xXeAvtgAAAAAAAAACeM1U5MRplArg1qeEAEk5MlAAAAAAAAAAYNK6q-mYZhWe1E7afoKkwiQAAAAAAAADYr6Fg_DPZ96geKIjDaUl37wAAAAAAAACsPYNQGka54-Rn86JqyO8oZgAAAAAAAAAMuHXk96D_H0MjX0tAh6AHfQAAAAAAAAAGBQgPvwiw9NNbOJgDcqi8DAAAAAAAAAAtD8SuOAHHuRsEe9MWrwApVgAAAAAAAAEC8lbOW9-D9FVTLW-mPAz8XgAAAAAAAAB3U_oZxhTm05Eok6Ih3UqoFwAAAAAAAAAC3w5xyA8SskdHEEGy4TbDIwAAAAAAAAASXQiZEoz1AYfl8TlT3_m5HwAAAAAAAAAIFiIwFVQEYNMmoL4k9cth8gAAAAAAAAAHbA3qX86DKyPOkhqFKNfdIwAAAAAAAAABjnwpC-g9yl69bbXrtqzX-gAAAAAAAAAQ7Elz6xgAevwUpvFunHR27wAAAAAAAAAhm7zGOMSqFaBnVhhzRowaWAAAAAAAAAACGOPzq0h4Pslwnjs2CP5J9gAAAAAAAACDWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAg7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMg8ia7_SjtnnoFsx8t6EVmgAAAAAAAAACS4pDMZQIDu6mVxa95R8FGQAAAAAAAAAddkL5PpvJ6DOYifdu5jPpNQAAAAAAAAAJAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAM9BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "osH9-1iIvzwlKI94aiTz3g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALp_Ns50uuE6TGp-NWwcnKMAAAAAAAAAB3qfQyalPHWGRK5DwAi-ocgwAAAAAAAAA-rfeHqCrgs6xi0gmdo24V4gAAAAAAAABOJZHqgG3qJMfVMYvnOCqIRAAAAAAAAAAU9oCrznC_hRK-NHF3gez-FgAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAAqgZEbx9jqjuemtiUm8j-_s73zQAAAAAAkoNqbx9jqjuemtiUm8j-_s73zQAAAAAApwHB", "types": "CQMHBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XMhsYNE-yg1lhTR9Ih4O1g"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAABH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAA9e7YYWaQTMh8P2PCVzA2a8gAAAAAAAAAwm140cnmnDMXwCTqH-lotHAAAAAAAAAAEm140cnmnDMXwCTqH-lotHAAAAAAAAAAA", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PSo77erAlkE9Bu2Gej-2RA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQ3NXJCw7PINTEV_suvi1hjgAAAAAAAAAnr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAABR3DsLLpnzoGeqib2_MeXKdgAAAAAAAAAY0D5QIcqYfSjF8Y2Aggw1CgAAAAAAAAANIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQymtcT7XngDCOtcgo8NmgJgAAAAAAAABaEuiuEGuoH1DvPXwEkw2odgAAAAAAAAIDVFvoTC_1MXfHqnOeoSu9rAAAAAAAAAAYhP1JoS2wJAn52yNPmoly8gAAAAAAAAAQCw9403Es4AF2QsSD-8sRQAAAAAAAAAAKmzAbd36tUL5KTnpUgWf1fAAAAAAAAAAP40MpjoVP8Hl-BKuvUaGZ2AAAAAAAAAAKvXqYC-XpJb-U4sFbWG9yCQAAAAAAAAAPD6cli4-gg2k7zlaMjhN3BgAAAAAAAAAKllu2gdnj2j-vMGA_Gh1y9wAAAAAAAAA8_41T7VanDxOIrbJoojf8ZgAAAAAAAAAK3aj9s-NGFcA7Bdb3tQvjIQAAAAAAAACUanalpbZFBBB1VOs3P5WUhgAAAAAAAAAKQOOD1c7R67z8gbSz6sGkSwAAAAAAAAAJ", "types": "CQMoBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xaB1q_B0lnzAxJyENbbG1A"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFle2z5k14PsCcDvFyUC1kmlV3QAAAAABFZdq", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6LpjlQ5x3C5y0GS9aUsntg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMust6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuoD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00i6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00D6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CQMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "k2877jaRcY_Xwxl90RYOAA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuXwZZ3CKaS4aU08RhYA19y5ITQAAAAABttckZ3CKaS4aU08RhYA19y5ITQAAAAABtwT0Z3CKaS4aU08RhYA19y5ITQAAAAABtFpzZ3CKaS4aU08RhYA19y5ITQAAAAABtnwrZ3CKaS4aU08RhYA19y5ITQAAAAABudBy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFLf", "types": "BwMCBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KhjLtyZgZE42WLwpSsMFNA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAACUcj5Iicnc1YHT-TWyg9rL5QAAAAAAAAAffO_gJBPd8E-RahoVIhDflgAAAAAAAAAB8w2ZGyVQ-aMnL_pA1hWbwgAAAAAAAAAy76oMN5gawXJbUdBHZW56vAAAAAAAAAAEaK7zvL-PqvTlxTrdlldaFAAAAAAAAAADsimybevA8DW5tgv6lrGi5AAAAAAAAAADuDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKcG5W-PDYduXZ1DZFU5bdYwAAAAAAAAAfX8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtnY6Bz6koyx0B67n9HdjFUAAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKO2hSFZZOeE5g1kTv31qAYwAAAAAAAAAoX8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtnY6Bz6koyx0B67n9HdjFUAAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKtVvvb6Z5DEr7tZFzbFRlggAAAAAAAAAGNdurIec2eVknw5UWeyAGhAAAAAAAAAAg_OURcYkX0iBxmyshrTvm6gAAAAAAAAAXK68quRzmwMwkh1BjI5vLeAAAAAAAAAAhY_ur9VOSDEwVLljoZ7w15AAAAAAAAAAEQXvaGnSY0e9Ndzfl5fNy7QAAAAAAAAAVu3PdJ9uaY7J6wq8TpSw5VQAAAAAAAAAbFyvqj99pkKDWLuJmqlMKOgAAAAAAAAAMSpuVyl1yybAmI0lABPU6JwAAAAAAAAExdgWkppYlr-s8Z84eOTb42AAAAAAAAAACY1yo-8cTmG-L0M13S3Gv9QAAAAAAAAANrO2U8bCEOPtVR0fJrGRR8wAAAAAAAAAOk_OXYkZFyzIVwSwT1Fur7gAAAAAAAAAFa8XYoPW9pAQaMdeo2T4gfwAAAAAAAABM30LKpoivW5ehYDbXlKRqvgAAAAAAAAAG8AK2DMaPRPJBJPIbAxg5BQAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAAqd6J0rNuxKNw6YxtKvsF6kS_jQAAAAAACMlv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_LS", "types": "CQMmBQIDAwQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NnEd2rdWIzQh3lzvczhnrg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmrvXT4fd_WKeR1cE-hlLelCQAAAAAACgbrN", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZIeFqlfxiST4dOSyrN_rAA"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHba4rFFPORY8_4FvK9QaA3QUQAAAAAAGRIW4rFFPORY8_4FvK9QaA3QUQAAAAAAGRJh4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD6E74rFFPORY8_4FvK9QaA3QUQAAAAAAGKcU4rFFPORY8_4FvK9QaA3QUQAAAAAAB0vz4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp4rFFPORY8_4FvK9QaA3QUQAAAAAAHLTokTH7nPbx-X9xSr9wWSQ4oQAAAAAAAGHskTH7nPbx-X9xSr9wWSQ4oQAAAAAAAE-XkTH7nPbx-X9xSr9wWSQ4oQAAAAAAADBQ", "types": "KQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "16M6oxTVsLMHhLUk75IsNQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnAydMRjIz1OdcUN0eWHfUfwAAAAAAAAAd4W76RwUjGcgIjQApiAJJHAAAAAAAAAAFgZgYcEFO3c95J0_kRNRWOgAAAAAAAAAGOmzVUgwY22EPoqShuZpT1wAAAAAAAAABTB_J6DUBBlvmBbXJoevIsQAAAAAAAAAL-iXDKA3YC-uP6gBDyblJbwAAAAAAAAAIty6LTUlzeN2dWkQMKHPovwAAAAAAAARnzyaCXIaYasENrpmi3j3qmQAAAAAAAAARfRzclogVikoGj9ila0Zr-AAAAAAAAAAC3iwGD7XhJ7NFAOoUFDbFYAAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABgFcHGeTZbDG8jQ9sbtbngcAAAAAAAAAAcs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFQp1ou8dsBjdX83hQaikvWAAAAAAAAAAwq45w55rXvyar8CjaUKJyrAAAAAAAAABsL-koTtrYcgwtJX4JNCtNUgAAAAAAAAAZNmvj-1JIFU5r1IdV1cgfBgAAAAAAAAAy7hPDIBH8MLHxsotS8sE9kgAAAAAAAAAYQzrbsOA4ABi_SVkKBvATrgAAAAAAAAAIg3pCi59qPBWaSfqiWTmFLwAAAAAAAACRIpvwX_fblQb3SBOaR6FXdQAAAAAAAAAEiBROdefyYqo_oyuWWpBVogAAAAAAAABCUzBLcYsYZ48ySlpYqqKUBAAAAAAAAABPvqs9jnSjNyh-nZ4ZqxUaIgAAAAAAAAAh4UCPpue6CVok_lbZI08fLQAAAAAAAAASbY3RtTMNEnhvgonzWleY4wAAAAAAAAATvTiT6RQHSjUNEBuIvfofKgAAAAAAAABRk-iHhugN07psoCA3oD8uAgAAAAAAAAAOJDnO1OdT3mBLtMfsODhVKQAAAAAAAAAFI90CtZp_BZBH2tSRSUMrrgAAAAAAAACFkpBi8LFR3RTjSJqFuljOuQAAAAAAAAAAhrCIM-i5cm0sSd-oVTZrsgAAAAAAACZBwEIfl0pGBuepuUcTwdKc2gAAAAAAAFtjwEIfl0pGBuepuUcTwdKc2gAAAAAAAEEQ", "types": "CAMmBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iM_vU2BABjoXLNhFxWYIng"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZxyf5INnJibBb8rT_yMcsAAAAAAAAAAEe6HlflPyKAlNlF7JPJCNJQAAAAAAAAFLEe5ZDKMHiVCtP6qAhF9CEQAAAAAAAAGtVyubPqZIpIsaGdq5yyQHTAAAAAAAAAAHH3I9lsKeM021aDJgbYYYAwAAAAAAAABHL6IPi9cG-hWDQ-8_WE6FFQAAAAAAAABi4_IQF_LxnGyk2lDca0XOLwAAAAAAAAAoWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYv0o-SuFa6Ydo5LzhQb4MjgAAAAAAAAAGkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAgwPMn-SWi7gfHNn2n10TVWQAAAAAAAAACs1njeZVdcSoHf9g_Vz1CYAAAAAAAAAAdeNbj51SwVufxZ4R3ztSduAAAAAAAAAAMLbDXQXQlDNAPNuTWnAgwZAAAAAAAAAAIsF5y1rzkGcF6wVyaguE8oQAAAAAAAAAFillcsETYyGChWwTauJoFaAAAAAAAAAAJH993ZydDem1gABEwmkxlggAAAAAAAAAG3lzjvTOXt4zEfoCWYw8hkAAAAAAAAAAXoJZaXu4GMva6ioQRLjBA1AAAAAAAAACLZPQwbuCECd-hRvtNHzeV5wAAAAAAAAAK0h29bG9GloE7lpAkXsQGDwAAAAAAAAAVAEVGxGAg7MSUIahQ-slPHgAAAAAAAAAPf9jpILp06xYZNJYHocPeQQAAAAAAAAAdsteQzbkmPDTg5m4DO0exwQAAAAAAAAAA", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lLJNdfcqSFacx8nxW6RHKA"}} +{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACindAJ6GSZQSmfOBquczb-SF8bAAAAAADBJDZJ6GSZQSmfOBquczb-SF8bAAAAAADBJWdJ6GSZQSmfOBquczb-SF8bAAAAAAC-R4IJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-QNEJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-OvtJ6GSZQSmfOBquczb-SF8bAAAAAADBMpJJ6GSZQSmfOBquczb-SF8bAAAAAADA3s9J6GSZQSmfOBquczb-SF8bAAAAAADA6SyJ6GSZQSmfOBquczb-SF8bAAAAAACm-XkJ6GSZQSmfOBquczb-SF8bAAAAAACjwo9J6GSZQSmfOBquczb-SF8bAAAAAACjlCEJ6GSZQSmfOBquczb-SF8bAAAAAACi_DsJ6GSZQSmfOBquczb-SF8bAAAAAACjBc66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlwr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCEy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTrE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMS9a6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMS4k", "types": "EAMNBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "AFTenYAnZSkIfRTCULtOBA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAGvN0nOeOJdjggSFx_cpb47egAAAAAAAAAV4vwWTuaA5W0Uq7WSODTSAQAAAAAAAAB8mm7pA8Vo6frfLprU_GjPaQAAAAAAAACREbDp5Ji3y8uTKzXL0h4-JQAAAAAAAABhRJXjPkp22gaQo9vwY-85JAAAAAAAAAB1DLrWTvtAPDh4Uv4u2shragAAAAAAAAAWKB4O6teQl5VhWOOWlMIubQAAAAAAAAAR", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0O6bTv4W_0K39-2C9Dvx5w"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAAqadyH-5f8qL7d_nwuPRSZEwAAAAAAAAApZC4caaBbQcOc2WclRiklUwAAAAAAAAAMQJ-JVADSuuonf59sOKCy_wAAAAAAAAAPbYxYe2jgm-ZVQ1wIKl60VgAAAAAAAAA10rDJMn8VgPYie4Xyg6PSTgAAAAAAAAKaJjiG_BroZFP40tpmv2LaAQAAAAAAAAANcTSghm0iP6bYZfvjR-iYfgAAAAAAAAAKwACdzqsbVZZ7-w9w4aA61AAAAAAAAAAbXQCUoVCvFjlXEr6e8K8moQAAAAAAAABXefTBmpxxTjoAafV3eDofAQAAAAAAAACu_9_-8qGjh9aou0FeZrQLMgAAAAAAAADTf8AX8nZ-lp_iU67C5ubGNwAAAAAAAABAkiQ7KxPYNd0HZxuM62vmnwAAAAAAAAAgjVVHMYu0P2OEHJFmfTZ5eQAAAAAAAAAEgzF4xa6TmHHVGj6D9s_y9QAAAAAAAADoi32deQLexkVpk6b1igaeZgAAAAAAAAALD24BMbxmwnEGvGJ3u0PiFAAAAAAAAACQWZK18270JR2u9aieilAliAAAAAAAAAAIvw2FT3151oizPmalmfG1PwAAAAAAAACmmHJkS0RGvjKJIH_CXIlsPgAAAAAAAAC0Er5fUskqiqFkThPIapWesQAAAAAAAACPrAbRn9ZtwHgAlMdysbgKgQAAAAAAAAAAAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "IBEKsb7vBcjUCW1wEZutzw"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACJH25gtQ4kMk_MBWrPUAFqVnYywAAAAACJIJ9gtQ4kMk_MBWrPUAFqVnYywAAAAACF1GIgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKDEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKI8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfdgtQ4kMk_MBWrPUAFqVnYywAAAAACJEnagtQ4kMk_MBWrPUAFqVnYywAAAAAB1YosgtQ4kMk_MBWrPUAFqVnYywAAAAAB1YgbgtQ4kMk_MBWrPUAFqVnYywAAAAAB1KskgtQ4kMk_MBWrPUAFqVnYywAAAAAB1LIGgtQ4kMk_MBWrPUAFqVnYywAAAAAB1IpYgtQ4kMk_MBWrPUAFqVnYywAAAAABvM6NgtQ4kMk_MBWrPUAFqVnYywAAAAABvOWIgtQ4kMk_MBWrPUAFqVnYywAAAAABr54N", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KTWnX7JoxcA7QKVh21Eg-Q"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qCmepCKWJQWWrX7mRVq-c9QAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_jdrai_0fDiGEvZJybTdZ_gAAAAAAAAACGPgne5T-0iZurfH30RkS3gAAAAAAAAAdXfHacyr3VZQyavlI3uwP4gAAAAAAAAA-JvlRd4Wn40C95D0SC2Hf0wAAAAAAAAGsceSN5BlMG0ARBYcsvYKxUgAAAAAAAADZIB9QQU_Mapdn9O22PbyS1wAAAAAAAAAajr5f3E7C6V_PhtqAGuNvDQAAAAAAAAAGQ2C16xnnLROoDwjN2vJmuQAAAAAAAAARSjz2MvPusgDd7v_6YUXcPAAAAAAAAAC1J4eQqgwFH8hGziiVTbtiYwAAAAAAAACOMbaOnaCMmj3Z2Dka8DRidwAAAAAAAAEnT93qUW7twBf0xQlQpFHQIgAAAAAAAAAkV0dDfKfk8_0OrffeLu2lkwAAAAAAAAGIAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "aw_ehqsFzKvXDeAxyd_JnQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qCmepCKWJQWWrX7mRVq-c9QAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_jdrai_0fDiGEvZJybTdZ_gAAAAAAAAACGPgne5T-0iZurfH30RkS3gAAAAAAAAAdXfHacyr3VZQyavlI3uwP4gAAAAAAAAA-JvlRd4Wn40C95D0SC2Hf0wAAAAAAAAGsceSN5BlMG0ARBYcsvYKxUgAAAAAAAADZIB9QQU_Mapdn9O22PbyS1wAAAAAAAAAajr5f3E7C6V_PhtqAGuNvDQAAAAAAAAAGQ2C16xnnLROoDwjN2vJmuQAAAAAAAAARSjz2MvPusgDd7v_6YUXcPAAAAAAAAAC1J4eQqgwFH8hGziiVTbtiYwAAAAAAAACOMbaOnaCMmj3Z2Dka8DRidwAAAAAAAAE7vMJZLefDDDN7jSsJGIx5fAAAAAAAAAAxpz26RZIIszjYMjtzkRg4ogAAAAAAAAAMfkbxUTZgljnk71ZMnqJnyAAAAAAAAAPFAAJDI44qiLmfDctbzFRobQAAAAAAAAAFu2WVw07zPKE8tjDW7uq3_AAAAAAAAAAFOazs1a6HL_fA3OaTTAYczgAAAAAAAABtzjgMi0OYibUoh7tbcHBcrQAAAAAAAAAbp9nmp_8ZlFctnK3mCeeJOwAAAAAAAAAd20Vh0LR2s2ItTGiFG7p9YAAAAAAAAABpSFRCISZu0lOJaR5c2EWGzwAAAAAAAAAN988iKtFQoMdKrcaEMgPRLwAAAAAAAAAQB3E8rhZygkGfEw_Q4JDkwgAAAAAAAAAW-KR_9gWV9AG0Xu1KPjVnowAAAAAAAABYxRRpstX06zlN2uNvmCHGyAAAAAAAAAAF1emL8e1x5T-c3hj2quAYmwAAAAAAAAA3T7mjAHfoZj3YbHDiOoSTCgAAAAAAAABvUEgwC5cQurWgmCJ0lemLqQAAAAAAAAADviLSJjc_mEpfBdxWbzQXxgAAAAAAAAADrxOa_vsr4vqTrJse-7ULTQAAAAAAAAAJ_4C4BIdUdgn-KAnGS1BzAAAAAAAAAAALhorbSZX7gRU-EookBryCKQAAAAAAAAAA", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vXeu5VMN7k9w3jzIueSyxg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAADdMQClF0q6pfmgxLvEq3gXXAAAAAAAAAABCXAz1tIIc26xoKV7GpujkwAAAAAAAAABH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAABJ", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vLxXjVzfAkGaJOOqJpJWGA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFxkXT4fd_WKeR1cE-hlLelCQAAAAAACiJIkXT4fd_WKeR1cE-hlLelCQAAAAAACiM0oXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAio9n6tVKI4mSYDEJ-ABAIpYXcgAAAAAAio7-6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimti6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk7GK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk63z6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjigE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk7XQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjjMP6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk5gH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Ei6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjh746tVKI4mSYDEJ-ABAIpYXcgAAAAAAmKgj", "types": "FAMOBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "w_4nl45MasB3RlOBrLRGiw"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp2HVF-fC6bGu1PSwJc2kzOgAAAAAACHAL2HVF-fC6bGu1PSwJc2kzOgAAAAAAHHBe2HVF-fC6bGu1PSwJc2kzOgAAAAAAHEJ82HVF-fC6bGu1PSwJc2kzOgAAAAAAHEEy2HVF-fC6bGu1PSwJc2kzOgAAAAAAJcMj2HVF-fC6bGu1PSwJc2kzOgAAAAAAEKYD2HVF-fC6bGu1PSwJc2kzOgAAAAAAEKFP2HVF-fC6bGu1PSwJc2kzOgAAAAAAEI2W2HVF-fC6bGu1PSwJc2kzOgAAAAAAEIU_2HVF-fC6bGu1PSwJc2kzOgAAAAAAEJbZ2HVF-fC6bGu1PSwJc2kzOgAAAAAAEI2W2HVF-fC6bGu1PSwJc2kzOgAAAAAAEIU_2HVF-fC6bGu1PSwJc2kzOgAAAAAAEJc62HVF-fC6bGu1PSwJc2kzOgAAAAAAHS5s2HVF-fC6bGu1PSwJc2kzOgAAAAAAHS1p2HVF-fC6bGu1PSwJc2kzOgAAAAAAE3fo2HVF-fC6bGu1PSwJc2kzOgAAAAAAE2lm2HVF-fC6bGu1PSwJc2kzOgAAAAAAE60w2HVF-fC6bGu1PSwJc2kzOgAAAAAAFDJ_2HVF-fC6bGu1PSwJc2kzOgAAAAAAEdrN2HVF-fC6bGu1PSwJc2kzOgAAAAAAEdqR2HVF-fC6bGu1PSwJc2kzOgAAAAAAEdVx2HVF-fC6bGu1PSwJc2kzOgAAAAAAEcNG2HVF-fC6bGu1PSwJc2kzOgAAAAAAGIktUJmIMEc6K8gJ39NHYaD0WwAAAAAACXKsUJmIMEc6K8gJ39NHYaD0WwAAAAAACUgB", "types": "YAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vhf8NzidyahhcdRrhV2tZg"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAAA5hML9Bd3XIiGWasJdN8trI5tgAAAAAAA5hML9Bd3XIiGWasJdN8trI5tgAAAAAABcNs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ1", "types": "AwMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "pE6-YODgFyP3rrWsQdeunQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbHuXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCM6XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcCd6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcBE6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Z56tVKI4mSYDEJ-ABAIpYXcgAAAAAAp15j", "types": "EgMNBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gxtIUXB5kh3fPTZzm9NBqA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw14eXT4fd_WKeR1cE-hlLelCQAAAAAACkSIeXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUN2", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "i3VVbQEF8y09CAolsSQBvg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbY0Yxe-SHgukLEpCkawSk1QWAAAAAAAFznNYxe-SHgukLEpCkawSk1QWAAAAAAAFzx5Yxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHafM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrkJ", "types": "CwMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FRkDvQWqQRhUdPA0TX2j9g"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAJH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAABYe7YYWaQTMh8P2PCVzA2a8gAAAAAAAABE_p12Y0DOk4cFEn5gGz9psgAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EsWqvlXH-xzaqMmVPGdL-A"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXUptYxe-SHgukLEpCkawSk1QWAAAAAABXVmVYxe-SHgukLEpCkawSk1QWAAAAAABXVP5Yxe-SHgukLEpCkawSk1QWAAAAAABVzhCYxe-SHgukLEpCkawSk1QWAAAAAABV6zkYxe-SHgukLEpCkawSk1QWAAAAAAAFzhzYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2kGYxe-SHgukLEpCkawSk1QWAAAAAAABkE8Yxe-SHgukLEpCkawSk1QWAAAAAAABCJG", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zzM_y3dcuVSUG4quX8gLOg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAAGkuWcUG2bf_MgJpXpuAZivRAAAAAAAAAAx0nBVkJrBQHU_wusVG6_3KQAAAAAAAAB96PDTyNLwDP2GCrVJoblLzgAAAAAAAABIciQsV4oUc5gYfL4dony27QAAAAAAAAAnOIU72g2wQhgyLETe_w4R1gAAAAAAAAAbsm3enN7dM6tCy3LCfPjrvgAAAAAAAAAG-oQ9VuCOQPeW_T8CGKqMgAAAAAAAAAAGNJGrW12l4VtfBBiRfaaqLQAAAAAAAAAhWHc6TeyRQEqs6LkNUiVKVQAAAAAAAAAzE7Si9KeNnLhexcT10oHiFQAAAAAAAAAXu1V8iRI-Vv8WMpAbApe_-gAAAAAAAAAA", "types": "CQNABQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "410bN33n-_z_JAkwLTBxCA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABSE9Oz5k14PsCcDvFyUC1kmlV3QAAAAABSFH3z5k14PsCcDvFyUC1kmlV3QAAAAABKDKg", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "l8dMyIgFlKWEMYc0z_PTTw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-uTvXT4fd_WKeR1cE-hlLelCQAAAAAAC-xG9XT4fd_WKeR1cE-hlLelCQAAAAAACp71EXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCM6XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jRNDhOqXBGS54cSkvIu2Fg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFx3XT4fd_WKeR1cE-hlLelCQAAAAAACiHvpXT4fd_WKeR1cE-hlLelCQAAAAAACiMqkXT4fd_WKeR1cE-hlLelCQAAAAAACiNLV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "FAMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6V7s4PsI459YFMwlUSPwxg"}} +{"Stacktrace": {"frame": {"ids": "SHpn8pwAHiX47J0IzMtXvwAAAAAAAn5k3aS07d9PG4lc4UzuBbVWzQAAAAAAAiVUSHpn8pwAHiX47J0IzMtXvwAAAAAAAmibSHpn8pwAHiX47J0IzMtXvwAAAAAAE8PJSHpn8pwAHiX47J0IzMtXvwAAAAAAE774SHpn8pwAHiX47J0IzMtXvwAAAAAAApaS3aS07d9PG4lc4UzuBbVWzQAAAAAAD_Di6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ8", "types": "BwMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "R_HaHETxWktGeCRqpOJ8dA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyn-Z3CKaS4aU08RhYA19y5ITQAAAAABzzZNZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz0HTZ3CKaS4aU08RhYA19y5ITQAAAAABzy3vZ3CKaS4aU08RhYA19y5ITQAAAAABvB6I", "types": "HgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "CZ96dERRqph9zG2AZecUpQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQJvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACeySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAYh-mcFcSefWaXpPLGLAmk8gAAAAAAAABsijeboCn6LOt0NOcmaRcGZAAAAAAAAAAH0I8cAvoTemt9EvN943sckAAAAAAAAAA_gh3_dq-X3ps5hlW-NYikEwAAAAAAAABcHYCPABbHg3v8ZSX1NQW6ywAAAAAAAAAC_C3zmgl0Bjr8nR0878NBsAAAAAAAAAALdhiUmvfDk2OXbcgaknkEMgAAAAAAAAAIOppFSDODTzgTHYJG_GWJMwAAAAAAAAAo_etALA28oEWqh2qGb97M7QAAAAAAAAABrbwR-ACr3s5lHPzJRwgUNgAAAAAAAAAByok_YL73Fh-9mpuyxhgjVQAAAAAAAAABRP2XbDGKSs3POGz4S9bH-QAAAAAAAAAA", "types": "CAMvBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YhEbH2FG5ivdqyvHHtwFZg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVuttUA2IAZoyKZAgCzy0iDQAAAAAAAAAIpokhquvW9ooLc3LbDvwZ4AAAAAAAAAARXasdzsgYzXeaIf1qB6YHcQAAAAAAAADmPFj10tn7Q5v6DtY9a--2yAAAAAAAAADTXQF-stwqMiArQgxmCuIBPQAAAAAAAABICdiM_N4hdaPvSJwq3P6azwAAAAAAAAAENtCGtgNOSKjf89hTQ9pKCgAAAAAAAAAM1dtimHb35RfEFCzsXx56LgAAAAAAAAAHCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAEhQ2OXkHYZRXh3_WLXzxSBAAAAAAAAAAEqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYMn0lhQNjNLc2TiLs5CI5twAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFdciEg2zVAoapt7MT0cXoNwAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAADrAotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAGJ1xBvehWaFQefKkuHjb2hUwAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJFcHGeTZbDG8jQ9sbtbngcAAAAAAAAAAcs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFIAf9e80wW0ROOv48VcVi-AAAAAAAAAAcGY5WEW77dofWJpcPe0twUgAAAAAAAABEkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4pVlUGQpw_Cq0LEtbbly5dAAAAAAAAAAkN1WyTlGFxfHgSyYQ3aeHDQAAAAAAAAAOYSP8Ib_W13QEw_Ivysg7FgAAAAAAAAFyn0UYwZH5py59Xu9gAaxkrwAAAAAAAABAm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl5iN7OCAj-2IgmFqLvCWrTwAAAAAAAAESap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlJdvIaoH8miVW9zaDiDOZJwAAAAAAAADSap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlhW8OwmmxjJYCeXfLTZy__QAAAAAAAAFLap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlw4mT2NPQOW-Mg0N_xZsuzAAAAAAAAADgap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlRlK4jZbFueXylWP1GNjNSQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlL_sAxM5NHsnYQp22GwDx8gAAAAAAAABwap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAye4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJsVRH8uyfnyQixTABDkZaEgAAAAAAAAAkoIYS8oKywxk33PzxrExveAAAAAAAAAAZETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASETEs_vJj_-q4WFpNiG_LRQAAAAAAAABDs4lxyv29UjBRbk4Egon88gAAAAAAAAAHrV1JNblxRI5fLicyinWLbQAAAAAAAAANAzxlhtMMySYrabepp4O8EgAAAAAAAABMrmSs41XtF0_135XyexZ4IQAAAAAAAAAEoIbcZroK0mbxpVqmuMaywgAAAAAAAABtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFhext5Np4MklqKjuB1rw5igAAAAAAAAAYxo4rC3y2CcS6B7wZyQHREAAAAAAAAAB3hThLzOSIQizmnJjoY5cDqwAAAAAAAAAfY-QS5npSPxf1yPUr9712ewAAAAAAAAB4Jxqv5kTB0kxVBdEhPkU4GAAAAAAAAAAVN3m7ttZ3oTXaEB1cOsBlRQAAAAAAAAAvUwIqV7dvF4JsT_ZBHTmFYgAAAAAAAAACFbQyH2luUdjXmVcHyvzWswAAAAAAAABqrOlNBVu_tgbnoZ0Ov--VbwAAAAAAAACRHWZttOsFf_YSOazNjHUqCQAAAAAAAAAGnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYPWtIWZkUUG3HKpZ_gvZdFgAAAAAAAAADle3dvr5GnvRtS1OdN5yIVwAAAAAAAAADkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAgtKw1MOs57-P0NtuUhrlgBAAAAAAAAABT", "types": "CAN8BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "sTe2gaKXR2tzI1Uih3fzkw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV_OYxe-SHgukLEpCkawSk1QWAAAAAABXc-2Yxe-SHgukLEpCkawSk1QWAAAAAABXVue", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ftj5tTSDXhH--t9L_E7Q_g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qkwlUtuQNZ2cGuJOBjod69QAAAAAAAAAfFZcDTI2WOs3OMnDBC0zHmAAAAAAAAACHLh1LDdjDW07X-POqmR5FOgAAAAAAAAACGNh1_yXJg_PNE59rBU9I5AAAAAAAAABVn8yyz5vynZOoIo8vPU8CuQAAAAAAAAMJ7ptKTGTqqszfKDkDMhWl3gAAAAAAAAArEG5mg4adY6r6Hz0mgCZEKgAAAAAAAAAWZBiGD584czs37vexEv-WgQAAAAAAAABxRBTRaju-ab8ob43Dp-qdJQAAAAAAAAAfvmmGHZfQIaqoPwChIOzq-QAAAAAAAABwmbtJBLFirmHoLdxa0M274QAAAAAAAAAGYj3NB309iqozWSOQATrWBgAAAAAAAAB5h6SWrdSzXfBtMfWpEhL_SQAAAAAAAAAEUn7tl6r7EZew-IGpAD4kSwAAAAAAAAC3OljKMbs7Sslvbk6h8kJ9yAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfw5DtxqVhoNPMfZH51ZbSdwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOOcrWUHEqh-zll2_gAtcNYwAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAYq1Ak9_WYtjiRUK6jyz9agAAAAAAAMp30rNuxKNw6YxtKvsF6kS_jQAAAAAADuzE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpEy6tVKI4mSYDEJ-ABAIpYXcgAAAAAALoEa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgJK", "types": "CQMXBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jQaA9RtWSTb7-brMOswc9A"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAGx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABW1vmWfRl7JvnIelrwmbOFDwAAAAAAAAB2P_qKgj6OkmYBLfen5yPH6AAAAAAAAADlitfZdu4NdI0YJrHcgeE-TwAAAAAAAACXJS-WjNz0QulnqSlnIs8U0wAAAAAAAADS7Ormen3KBfy8FXv7OmF-kAAAAAAAAAHyavfO9wX8Y6wuHuPsqC9ogQAAAAAAAAAkZuSiv65WwcAu_jfpG6ANPQAAAAAAAAAFxF5VGC2U_MH-71_OPOmawgAAAAAAAAAZRcLwtzOrbCJ2S4fnMoo41AAAAAAAAAB7FS1bL4hzYgOQRasRTmaMCwAAAAAAAAARjYKah-GaJpbI-jAwYcFi1QAAAAAAAAAIbu6t-WTb-nsfb-QwFBEV_QAAAAAAAAA9D0rVr9r2i8CRuvzOSp3RnAAAAAAAAAACqk_n1ecQPsBsNva7iBiLPgAAAAAAAAAFpE_XF-eq0tBl0fP7Y7zrSwAAAAAAAABpYav7N1kdPMXfEfZ1xXIznAAAAAAAAAANDYw6-LyNoVsQdM43hcJCegAAAAAAAAAI3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAA8c5fsTGLCNH21piOrMPoln5uBQAAAAAA70Gg", "types": "CAMfBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FceHTBJkHyJnfppIQCRv7Q"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp2HVF-fC6bGu1PSwJc2kzOgAAAAAACHAL2HVF-fC6bGu1PSwJc2kzOgAAAAAAHHBe2HVF-fC6bGu1PSwJc2kzOgAAAAAAHEJ82HVF-fC6bGu1PSwJc2kzOgAAAAAAHEEy2HVF-fC6bGu1PSwJc2kzOgAAAAAAJcMj2HVF-fC6bGu1PSwJc2kzOgAAAAAAEKYD2HVF-fC6bGu1PSwJc2kzOgAAAAAAEKFP2HVF-fC6bGu1PSwJc2kzOgAAAAAAEI2W2HVF-fC6bGu1PSwJc2kzOgAAAAAAEIU_2HVF-fC6bGu1PSwJc2kzOgAAAAAAEJbZ2HVF-fC6bGu1PSwJc2kzOgAAAAAAEI2W2HVF-fC6bGu1PSwJc2kzOgAAAAAAEIU_2HVF-fC6bGu1PSwJc2kzOgAAAAAAEJOH2HVF-fC6bGu1PSwJc2kzOgAAAAAAHSrO2HVF-fC6bGu1PSwJc2kzOgAAAAAAHSUr2HVF-fC6bGu1PSwJc2kzOgAAAAAAEKza2HVF-fC6bGu1PSwJc2kzOgAAAAAAELNf2HVF-fC6bGu1PSwJc2kzOgAAAAAAEK5l2HVF-fC6bGu1PSwJc2kzOgAAAAAAEE29", "types": "WQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NSag8-crkz-hfM8qQnbPjQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDLZcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETUX", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YRjXw8eHDiMZ04izgnYhOg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADSZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABCAZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAGrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAuU-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABTHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAIiuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAWyQLW28sZ3rpLXAl8a-XdLgAAAAAAAABnWIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAIKCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAIQRW1om0CtcYaE4B8xaBEggAAAAAAAABGAZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYlCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYRoLIlcLUqj5vIEU93Jo_ggAAAAAAAAA1HiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAACNHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABuHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFP1rXbpjewie805zI0BHMvAAAAAAAAAAILN3NdhSYKxRbaqnM5W9FBwAAAAAAAABpR-HVaw3JZ2IsajBZdLbC8gAAAAAAAABKKnKBdeWKnQ8CH5bzvx0i6AAAAAAAAAA6I63RT_W0q_XUvwLmcrZgvQAAAAAAAAAGLf4JMX1-MCAx0p2O2vbkfgAAAAAAAAAa655NLQCwT2lThms9b7SeGwAAAAAAAAAF6hqOSwO_UyguGx3V9Hcf5AAAAAAAAABVlzJoiXUGaltqdWh-iTQ4TQAAAAAAAAAanu8xfvDC28qhuFrvR_OkPwAAAAAAAAACAtdYY3_ZD2MDB5gcLHvc5AAAAAAAAABk89ev44cPu__kE-arZOqAIAAAAAAAAAACQ2tfegLTLBs7h66pyWM3FwAAAAAAAAArebgd4CLY_KjuqzrbLSi7zwAAAAAAAAAFn---EOWUd46LLyh1l27lHwAAAAAAAAARLPs_156ZCvr24zfpMGyutQAAAAAAAAAA", "types": "CQN6BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LQJGzirOgUlGaUBORlg_Wg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAC527EcEvvhuguaGYCmGWrnWRz1QAAAAACFJFE", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "58Z3TvR_36nik6ZHAY87vw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAACLHmuH5pCGXma5ToZjJwiZHAAAAAAAAABnS4DQ5gj04oVPTd_cZvriwQAAAAAAAAAFcoLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJnsN5oeLyhaU3rc_4TQfhXgAAAAAAAAALgvQGUUGWUJbOOm8Vi63fqAAAAAAAAAAGpIlQHYzUvHZx6w5Rtmyd8QAAAAAAAAAGQUT-nNY12PdX-wWYy6XdlgAAAAAAAAADSp9UjTJ6AKwagodjyx73jwAAAAAAAAAFy_Kb_1plOC7673Fl1U32vQAAAAAAAAAFcoLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJ5gDnmh9w-dLR4BjuTxdXiQAAAAAAAAATKmi3IV_5C6YkqCwr-5OCjQAAAAAAAAAtv98Nje6Ys-SL3vVkHXAt8wAAAAAAAAANX11Ep3t2e5MnXIBtAoD8OQAAAAAAAABAXh8yiimhm05HS0cF9hvvxgAAAAAAAAAG3snKxK1kYMyCD8yp6NPsUAAAAAAAAAAFlXmpkj0zpTSACRNmGcLZdgAAAAAAAAAIhWO0Ej8QxAN8OGdadeUgHAAAAAAAAADaAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "agY1HwGqzbbYSgz0edbUzw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGiBJz5k14PsCcDvFyUC1kmlV3QAAAAABF4HEz5k14PsCcDvFyUC1kmlV3QAAAAABF6-Uz5k14PsCcDvFyUC1kmlV3QAAAAABFPfDz5k14PsCcDvFyUC1kmlV3QAAAAABFxl7z5k14PsCcDvFyUC1kmlV3QAAAAABGnUi6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BwMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DQz3gvERMDOJGhbluo5aOg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAn2Kue-E0ocGjlBrYARCI6iAAAAAAAAAAEQNlOUvE0ZxUnjZSRXtro_gAAAAAAAACj5V0XDbONbs62WVlspWPPLQAAAAAAAAAM7NLXRYAsb_z9eb6-ioJ6zAAAAAAAAAAYxyC-vyzgsDe_VuNG-DhfIQAAAAAAAAA9fe69QX5O_EOqLGiPEFzIuwAAAAAAAAGB4PqH4j7efYkP_yazDFqQFwAAAAAAAAABOzFeuLNSMVWvCPrgnxwbuAAAAAAAAAFW5uGB4PbBFcS_c1Q_L9s5wgAAAAAAAAARfe69QX5O_EOqLGiPEFzIuwAAAAAAAAGB4PqH4j7efYkP_yazDFqQFwAAAAAAAAABvBoVUlhIFzzElOeQU4CcwgAAAAAAAAAEFM3-t6elawMDBldwcnmgtwAAAAAAAAA4t8gLMJFynbVKep3-JkD6nwAAAAAAAAAJ4y1QLnOo_87Zcna0Yb8QdQAAAAAAAAAEKH5_QfKIKeUIlFImab-3OAAAAAAAAAAA", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "pF_VPuayrQaA_-gMev7asQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADSZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABCAZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAGrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAuU-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABTHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAIiuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAWyQLW28sZ3rpLXAl8a-XdLgAAAAAAAABnWIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAIKCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAIQRW1om0CtcYaE4B8xaBEggAAAAAAAABGAZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYlCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAACNHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABuHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFP1rXbpjewie805zI0BHMvAAAAAAAAAAILN3NdhSYKxRbaqnM5W9FBwAAAAAAAABpR-HVaw3JZ2IsajBZdLbC8gAAAAAAAABKKnKBdeWKnQ8CH5bzvx0i6AAAAAAAAABK-QN0Lznzz3LjWKMZzZD5rwAAAAAAAAAIeEXFmSmLstwTaBBVp_eSTgAAAAAAAAAFHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFeS9qs83Ev5DGIkgRm0VL-gAAAAAAAAAUem8QMqpxX9eEmdxu2AmtFQAAAAAAAAAPTR0CnebfBTQ0MB6Lw8cZBAAAAAAAAABvgYxqkqlVp6_U5mFkfV4jIAAAAAAAAAAMtZaMdHxmjfXV5e8wiO0L_AAAAAAAAAAKtX-1hgGXR0WV-6whS0MwZgAAAAAAAAARotkeOgHMDZdOlA7GywTS3gAAAAAAAAANeBe2TV8VA2V7lLyhiCvcHgAAAAAAAAAEclNKHmin0SttGhUDhj4qagAAAAAAAAAH68m2CwWM-Ledaj5WNl9lhAAAAAAAAAAqwMYFsNM0woNzFGwcp47vbgAAAAAAAABGEh0v14Wp9mB3u5tYha0hzQAAAAAAAAAmwSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFbhnM-182eA1jGyBQl8pMugAAAAAAAAAU4pL5iWdAziHKM6VzojymqQAAAAAAAAAGX8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0g4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAWMCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc5430MZlAMqI5SXd_yT5HRQAAAAAAAABcHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFN7LIGw1erb09TPWj8M9ehwAAAAAAAAAYwr21gCsicBxbZw2IJaNDDgAAAAAAAAAGEh0v14Wp9mB3u5tYha0hzQAAAAAAAABDSLFvE_cP2SyjsekmrBc9LQAAAAAAAAADpuQkFDz8_jnH98S3xQfURAAAAAAAAAAGmS8gXE26pQn8rBZ5C2O6qgAAAAAAAAAilUab7RI6M1kcYmpom65WngAAAAAAAAAT1B7iWINM55ii7YHBwT_BfQAAAAAAAAAaSLkdwnAJDm_ftJbeTN6kiwAAAAAAAAAudGzQsD4ULDPyV5gT0mUzewAAAAAAAAA_v5dA57HXZ1996swqeLZdUQAAAAAAAAABj9mTsmxGfoQF9A4glGVy8AAAAAAAAAAYQ6BTqglgEur1JnwgYj4wmAAAAAAAAABMLX5DD-dM1kj7Y11eHErxNgAAAAAAAABWtHw2EICMhh3_licSMXsQIgAAAAAAAABY6Zj-Lw9a6Ydo4gb-eMkgLgAAAAAAAAAGG99T3qcZC8_AxTO5xN8aUwAAAAAAAAANw9w8XUGzqm4xr4E1qM-rhQAAAAAAAAAgwoaSXtApD-PrSWDZ_aE3VwAAAAAAAAA0NEA431VvZx5EvIda-awJrAAAAAAAAAAVdkL5PpvJ6DOYifdu5jPpNQAAAAAAAAAJVcy8PuJ6UoNqzGrL87c0RgAAAAAAAAAR9skm8w_4Kqz8U3CtvTydwwAAAAAAAAAMS8mRI7HHsV-o5SfBaSYVJgAAAAAAAAAEmQBmof6SRRPAHT_GwQNzBAAAAAAAAAAEnp7TeDSdz651gJRSLTp1TAAAAAAAAAAXdhLkPVDaHJtx9aYILWA1HgAAAAAAAAAGCPQYI8AYgrtjAdxnWkE3nAAAAAAAAAAXx7dNtL9l6yQnqIhb2iRkJQAAAAAAAABV85xU6UdOBVE-6wKT-DYa3QAAAAAAAAAcKlMLGpkm1pBrBLT79cviPAAAAAAAAAABzVZBdh_gmAiL5X6tN_0jKgAAAAAAAAAEWBXdhz4cG7Z1nFWG7UChaQAAAAAAAABRapg5i-nxkoOQjMlxB9g-swAAAAAAAAAFqYA0yXrjfQUiViGsCwfP0gAAAAAAAADKAeMMNq3qkkktMneiq8NAsgAAAAAAAAB8", "types": "CQOlBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "rNUfXAhSNYKhBYrPXiejqA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAAwR4O21YPz5WkGUKdaZ1xVrgAAAAAAAAAayQDYDWiyDEgJMgGvgsz9TQAAAAAAAAAA", "types": "CQMWBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ccuRE7rvGbylFOE2-Vdm-g"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEge1", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mtfZcNhTc9a7pQKB2TUjiw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnAydMRjIz1OdcUN0eWHfUfwAAAAAAAAAd4W76RwUjGcgIjQApiAJJHAAAAAAAAAAFgZgYcEFO3c95J0_kRNRWOgAAAAAAAAAGOmzVUgwY22EPoqShuZpT1wAAAAAAAAABTB_J6DUBBlvmBbXJoevIsQAAAAAAAAAL-iXDKA3YC-uP6gBDyblJbwAAAAAAAAAIty6LTUlzeN2dWkQMKHPovwAAAAAAAANVL-koTtrYcgwtJX4JNCtNUgAAAAAAAAAZNmvj-1JIFU5r1IdV1cgfBgAAAAAAAAAy7hPDIBH8MLHxsotS8sE9kgAAAAAAAAAYQzrbsOA4ABi_SVkKBvATrgAAAAAAAAAIg3pCi59qPBWaSfqiWTmFLwAAAAAAAAB-_8mW4hWd4BOv7BBBIH1XlgAAAAAAAABsR8694xCVhTAWRd-apeUFDAAAAAAAAAAC-tSbHlR91dVpvAdxUOkCnAAAAAAAAAAJOCBJ3b0yd0m46kgQppcopwAAAAAAAAAFSyH3A-L8GuYowpuZ08nsBwAAAAAAAAATMOgPAaY2At24Q0nLro4PXgAAAAAAAADKbrZOaNtBfW3g0CERcv-l5wAAAAAAAABcWsCQmTSDw0k0qcC-8oiYqgAAAAAAAAAA", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kw-upPyzSMkC3tPk4w7KCw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcQxTPNhFsgl-8e8i61Q7phQAAAAAAAAAnwnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAEraW9aAtkVtkUuzUOoh_0wAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAn5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALCqHdoNRupr5ud0SEqGGzcgAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAF_Ngz1ncxudXrxSqiWBxoaAAAAAAAAAAETphZkORhkBDEbRDMofKltAAAAAAAAAChfNBUTxafk7cWQGRCQErWrwAAAAAAAABiTphZkORhkBDEbRDMofKltAAAAAAAAAA7x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAChAAnABuJtrWflPvotxCoPjQAAAAAAAAFDgM-zvldT2mxZOhlxJvpRXwAAAAAAAAAXc0OkgT3_p45M6FsCvH3WnQAAAAAAAAAV9BsFwV8tobvksYfuNpORcQAAAAAAAACFR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAW40ES46dU7pwVTIhZzOkjPwAAAAAAAABV_bWrQJSE9QDRqMSbes6HHAAAAAAAAACK1WwaSXc6MUqSl16CLws0XwAAAAAAAACe6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAACVjcbdnnQUMfgz1UYqKyDaQAAAAAAAAABmSJ6fSPuHzsY_PJcgbXOQAAAAAAAAACX", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "uWeWSSxu5sqKRlZaY4eAfA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQ3NXJCw7PINTEV_suvi1hjgAAAAAAAAAnr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAABR3DsLLpnzoGeqib2_MeXKdgAAAAAAAAAY0D5QIcqYfSjF8Y2Aggw1CgAAAAAAAAANIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQymtcT7XngDCOtcgo8NmgJgAAAAAAAABaEuiuEGuoH1DvPXwEkw2odgAAAAAAAAIDVFvoTC_1MXfHqnOeoSu9rAAAAAAAAAAYmzAbd36tUL5KTnpUgWf1fAAAAAAAAAAP40MpjoVP8Hl-BKuvUaGZ2AAAAAAAAAAKvXqYC-XpJb-U4sFbWG9yCQAAAAAAAAAPD6cli4-gg2k7zlaMjhN3BgAAAAAAAAAKllu2gdnj2j-vMGA_Gh1y9wAAAAAAAAA8_41T7VanDxOIrbJoojf8ZgAAAAAAAAAK3aj9s-NGFcA7Bdb3tQvjIQAAAAAAAACUanalpbZFBBB1VOs3P5WUhgAAAAAAAAAKQOOD1c7R67z8gbSz6sGkSwAAAAAAAAAlcmbVhNLyn_i7RNmgiqLK9wAAAAAAAAB3qmoolQ6IpH_Gm2-7fcL8fgAAAAAAAAA3z0hdy73gJuxMxMUBOMHWTQAAAAAAAAAEhw-KknQoqJJdtqzi9Ny59gAAAAAAAAAA", "types": "CQMqBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "J3fgyfQdG3GNnC2oPsxhXA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDLZcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETeKcEvvhuguaGYCmGWrnWRz1QAAAAACEM4XcEvvhuguaGYCmGWrnWRz1QAAAAACFxZ9", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YdHIbTKwJH70a0848UqZOA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wrIXT4fd_WKeR1cE-hlLelCQAAAAAACkR-sXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdCc", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0twwhU3HmT2kic7WpxygEA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmsRXT4fd_WKeR1cE-hlLelCQAAAAAACgm-g", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JvgA8fjy9UV2sjVnj7k7Ag"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATMsVxGJ_9ADjCLmkId1rUYwAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABV6WzOxn3OKFhpMveMHAeqDAAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAproTQ2x4u1u0ROVEifn0kaQAAAAAAAAAtOcVENYdBUHkmXadCZbxMcQAAAAAAAABX7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAMEozR7rHeowembmV8tqrkzHQAAAAAAAAF_5_zddmyO37Dam1L6ekM5pgAAAAAAAAAXIpdJ0jKEIlGYoFbGaUItnwAAAAAAAAA25f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC3OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAAI1OssVXIbkn5BQi4tGKSa8AAAAAAAAAAKw8GVRjAwPMFQC_D_wSJ9HQAAAAAAAACm9zTS8BJo8yF8ShqN_mSp8AAAAAAAAAABMvIuHY42s0KcV-itoSXYpwAAAAAAAAABrzUIpq900aeM1bcZXA4bwwAAAAAAAACXAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAM5BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "IS3h9TbD3pnH8ulT-D1YfQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV7hZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtboy", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "U3tuNsCfRtithEbU3D4zXQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAAAUm5rnlBM51oea-h9ZD0jXEQAAAAAAAAAHRIYqG8R7SOQv287DSnsK9QAAAAAAAAAHuixEkl-WfyMHq9fe86bwhwAAAAAAAAAQAnAOjAZd8DreOTLSozMbLwAAAAAAAAAE", "types": "CAM0BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-k7aCJZCelwDj5FONxW39w"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFnL5cEvvhuguaGYCmGWrnWRz1QAAAAACE6u7cEvvhuguaGYCmGWrnWRz1QAAAAACE9yHcEvvhuguaGYCmGWrnWRz1QAAAAACE9eTcEvvhuguaGYCmGWrnWRz1QAAAAACELBkcEvvhuguaGYCmGWrnWRz1QAAAAACEyqbcEvvhuguaGYCmGWrnWRz1QAAAAACFyki6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "c1BBf8_D0Zq_e4sWgAdTEw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChGI0XT4fd_WKeR1cE-hlLelCQAAAAAACg6T7XT4fd_WKeR1cE-hlLelCQAAAAAACh1L_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuZy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMs_k6tVKI4mSYDEJ-ABAIpYXcgAAAAAApym-6tVKI4mSYDEJ-ABAIpYXcgAAAAAApymC6tVKI4mSYDEJ-ABAIpYXcgAAAAAApyVc6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD7KI", "types": "BgMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YIgx2415PKFymIoK27fv3A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmrQ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "htaIGrI3ifWmBEapZg99QQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABdKzcz5k14PsCcDvFyUC1kmlV3QAAAAACFH_-z5k14PsCcDvFyUC1kmlV3QAAAAABdc9nz5k14PsCcDvFyUC1kmlV3QAAAAABke5Xz5k14PsCcDvFyUC1kmlV3QAAAAABkdp1z5k14PsCcDvFyUC1kmlV3QAAAAABkemuz5k14PsCcDvFyUC1kmlV3QAAAAABRyDZz5k14PsCcDvFyUC1kmlV3QAAAAABkgSsz5k14PsCcDvFyUC1kmlV3QAAAAABkfWjz5k14PsCcDvFyUC1kmlV3QAAAAABSO2cz5k14PsCcDvFyUC1kmlV3QAAAAABSN_kz5k14PsCcDvFyUC1kmlV3QAAAAABSmpsz5k14PsCcDvFyUC1kmlV3QAAAAABSP7-z5k14PsCcDvFyUC1kmlV3QAAAAABRsCfz5k14PsCcDvFyUC1kmlV3QAAAAABSpEzz5k14PsCcDvFyUC1kmlV3QAAAAABGP0Pz5k14PsCcDvFyUC1kmlV3QAAAAABGmjp", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4othc15Si8rzSZKd5fXnCg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDAIcEvvhuguaGYCmGWrnWRz1QAAAAACuEFvcEvvhuguaGYCmGWrnWRz1QAAAAACuGfdcEvvhuguaGYCmGWrnWRz1QAAAAACuFZccEvvhuguaGYCmGWrnWRz1QAAAAACO_JQcEvvhuguaGYCmGWrnWRz1QAAAAACOoWccEvvhuguaGYCmGWrnWRz1QAAAAACNjn4cEvvhuguaGYCmGWrnWRz1QAAAAACGNmX", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FsL-ii7oDUAdlIp6HIiCBw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsftbx9jqjuemtiUm8j-_s73zQAAAAAAXsVwbx9jqjuemtiUm8j-_s73zQAAAAAApykkbx9jqjuemtiUm8j-_s73zQAAAAAApxqgbx9jqjuemtiUm8j-_s73zQAAAAAAWS4Rbx9jqjuemtiUm8j-_s73zQAAAAAAkZW6bx9jqjuemtiUm8j-_s73zQAAAAAAlJzVbx9jqjuemtiUm8j-_s73zQAAAAAAlGdWbx9jqjuemtiUm8j-_s73zQAAAAAAZUrJ", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UVrrjBvSFCo69oeflIjlwA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAADbAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CQMUBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mrZRk6LFrzBHs2s8qGEBLA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETeKcEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEVzp", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZARRyTs-pxJfGWyxfdSvhg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgnZ", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Lpd2r6uDTGAMsnv0qxe5ug"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmrvXT4fd_WKeR1cE-hlLelCQAAAAAACgbqz", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yUWsnzO4k76J_1XcjaT6nw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvU6cEvvhuguaGYCmGWrnWRz1QAAAAACLroTcEvvhuguaGYCmGWrnWRz1QAAAAACLsWTcEvvhuguaGYCmGWrnWRz1QAAAAACLsmncEvvhuguaGYCmGWrnWRz1QAAAAACL74lcEvvhuguaGYCmGWrnWRz1QAAAAACLvgWcEvvhuguaGYCmGWrnWRz1QAAAAACHktg", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZwazY7gzuMQj2_W8d6dlyw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--RVXT4fd_WKeR1cE-hlLelCQAAAAAAC-7XmXT4fd_WKeR1cE-hlLelCQAAAAAAC-zdsXT4fd_WKeR1cE-hlLelCQAAAAAAC-1HEXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSg76tVKI4mSYDEJ-ABAIpYXcgAAAAAALoLB6tVKI4mSYDEJ-ABAIpYXcgAAAAAALoE66tVKI4mSYDEJ-ABAIpYXcgAAAAAAVT6h", "types": "EQMHBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "b0tSKpedfEEoZID2cYjOVA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7-XT4fd_WKeR1cE-hlLelCQAAAAAAC-pCkXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FwMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "scKMoVIbbsXT0ePI0cAHEA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--RVXT4fd_WKeR1cE-hlLelCQAAAAAAC-7XmXT4fd_WKeR1cE-hlLelCQAAAAAAC-z7kXT4fd_WKeR1cE-hlLelCQAAAAAAC-1UKXT4fd_WKeR1cE-hlLelCQAAAAAAC-057XT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_DhzR6dvflvRHRcqtd7GFw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAJiAC6sIDdQuWlno6mhwaFiZwAAAAAAAADZ980-iSS9S0F-vkRag1FHZwAAAAAAAAAzXo7g-Y5QcR1vwA7ORZK_pAAAAAAAAAAF1Mo8VSr4ExgPLu63UteaagAAAAAAAAAc7KiGB3QuQ0TSydl142kv4gAAAAAAAAAFDJrVAhIsrM7D63maCxrMRwAAAAAAAAAA", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OiEKttNfeIlKzJGA5z-ZNg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADMb6rO_tpQt622H0nBBuO6SAAAAAAAAABQYdYAjZUSmfoWBbGkU49nnwAAAAAAAAAQQnopTe1pxTR1kVhVN4qn2QAAAAAAAAAjrUHBgSz_SQE-q7C0lnDupQAAAAAAAABM8VQNjJHt4dBRU5VSN3KkiQAAAAAAAAECfEW2ISlTz6bBNQ3Y_nEaswAAAAAAAABDdT5WZm8-ag4VFDZf0HaaMAAAAAAAAADorBhH0j2VK5-SoJFag65jhQAAAAAAAAA-198FZCTxq16d0UJlhg9MrgAAAAAAAAABDYrBcnSnxKpDp2GRNDxXQAAAAAAAAAABsekohEm28rHxpRudfXENQgAAAAAAAAAEQN3Ei4y0jjQeG3JY3GoqzgAAAAAAAAALGLgvZduLXzxu8BO2Sf5iiAAAAAAAAACEzc4puyTIf2D2serBtFiuqQAAAAAAAAByJrYoiC6AwYp7vAsr2PRw8AAAAAAAAABmiRknTmYoSeArhtkADiL7_AAAAAAAAACB8PLzoB-u4hzDZ_WKIg8FxQAAAAAAAABUYNG5rLJWIsjMTCOpoQz9TwAAAAAAAABshFR94sc2fPjalZlQgZv1dAAAAAAAAAAGBYvTdSjRR3mRiJL5PtR_XgAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAG_ueJ7BYIhIN72fM2Cz8k8m9QAAAAAAASIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADqG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzwO", "types": "CAO_BQIDBAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "oq7a6jSEaR4vQ3Zoerkv8Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSK0", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5euzUarpbN3mYb5wNSo6tw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2qOcEvvhuguaGYCmGWrnWRz1QAAAAACg0PkcEvvhuguaGYCmGWrnWRz1QAAAAACgxMzcEvvhuguaGYCmGWrnWRz1QAAAAACgt6PcEvvhuguaGYCmGWrnWRz1QAAAAACgePncEvvhuguaGYCmGWrnWRz1QAAAAACXxtMcEvvhuguaGYCmGWrnWRz1QAAAAACXzeEcEvvhuguaGYCmGWrnWRz1QAAAAACETAK", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-gkJK_XEykMz5nAT-MZbUg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnAydMRjIz1OdcUN0eWHfUfwAAAAAAAAAd4W76RwUjGcgIjQApiAJJHAAAAAAAAAAFgZgYcEFO3c95J0_kRNRWOgAAAAAAAAAGOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB42BUy3BbkpnttyuMqLirigAAAAAAAAANOmzVUgwY22EPoqShuZpT1wAAAAAAAAABmE1ci0y85Ym-Dqw-Q5t-OwAAAAAAAAAEWgnWJF5xNWl_wwu7DvgTzQAAAAAAAAAE-OmtEGD-FWeU3vRNXPLxogAAAAAAAAAd6PDnpLs5LIM9SpjUeSu5BwAAAAAAAAAM4IIlAJ_QWDs41ERNR4mO_wAAAAAAAAC0wAR4gk273_ooOZdD1tA5fgAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJSYSSbioufiMK4TqEn24uLgAAAAAAAAAdIETnUMLdTY0X_27KY2cD_AAAAAAAAAAQXfH1sbSxEuiQC9e5gcEKzQAAAAAAAAAWlOwp8THaapDjttPXb9E-AgAAAAAAAACRIiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdgzv5ZcBM9qZL6-CtFKcz1wAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAABUqPeQ03nZ4m2CLoB308K-gAAAAAAAAAIVhlTljsBJDT98mVay1CuwwAAAAAAAAAFMeupuj3mN3g2ScGhhzmNFQAAAAAAAAF4iRdArD2BL-BvpLz4Pb_AYwAAAAAAAABIC_8b8QYLHmjQu9l_QeSByQAAAAAAAAAUpkqcXQWLIjtT71JtuIAr6AAAAAAAAAAG13EjbA0IjpuaU_N8fi-CjwAAAAAAAAAHwmGhlkvWzfTghgQ1sZAecgAAAAAAAADX5EcD-U0cxRtdESeN-UEmcwAAAAAAAAATuezlLZVYMF9cbBEbxdsDcwAAAAAAAABIgpbgHn7e4Kz5N3-pRcz_dAAAAAAAAABLr0viM1MkQFoluKwRuIJ7LwAAAAAAAAABFGycG9AEWPVJe5tbz77UPwAAAAAAAAASUJNt6Wr7juWI2oGMxpHwHgAAAAAAAAAc-1qdgNrxzH--duaVR1QSFQAAAAAAAACVSyklCBn51Vp_g9q3KLAvZwAAAAAAAAGvnD7QKbPeresstocfBtl0cAAAAAAAAADYB20OugZuwBAeveso7e9HjAAAAAAAAAB7KB0KS3hQ9ShgNXNnOutrBwAAAAAAAABMz03CQ7BmO5DWD5cAAhlTWwAAAAAAAABLZisowJWVFJUnsVdUEJd3iAAAAAAAAAAEhNYG08OlyRCGuQPJ1oSEcgAAAAAAAAAEh9p7zYE7UtrMJBfAGA4RZQAAAAAAAAANuMSsXF_yPGpSxUlSgDA0AwAAAAAAAABA6bY2TIbWMnM_5a8NvB1PNAAAAAAAAAAA", "types": "CAM2BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UaGO0adJ6fx1kLHqf5qy7Q"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVMhk7twoFFvGSvyWsBJzr5QAAAAAAAAAMS-bF0OQ5zu714NI9jV1-DQAAAAAAAADEb95z1GhnNzkQcVnTAGVlWQAAAAAAAACoZkPmPV7VCVD8EkLP0Gy3BwAAAAAAAAT9Vrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAAC3iwGD7XhJ7NFAOoUFDbFYAAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFejjiJw6pliWwW6skXBi_SQAAAAAAAAAwvHRVCSo82RUdl9uaS0HcGQAAAAAAAABsKp-m6YXPN7JWDmz-Pu761gAAAAAAAAAZvqa2qJ2cwRBJMXL7-qTksgAAAAAAAAA-uoQ2M4bRS4Qydql36um4PQAAAAAAAAAu8vigD8rt-YtQEvk4ur7eYAAAAAAAAAAcyg6hUybbKOuy2Th8HYOfDgAAAAAAAAAQ94QsDIL7bUk7Oxas7lNqGAAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJSYSSbioufiMK4TqEn24uLgAAAAAAAAAdXL_fwLkYkxkYcfgosK-fdQAAAAAAAAAQO_mHTPntGTw_EnF-rkI8XgAAAAAAAAAWiiLZnxbVRTQPtvWA0miuyAAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdfJIr5vQAn81_ytZBhz6xpAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAABduSa7rLKjwnZa9hewarfUgAAAAAAAAAIHMo9CJkBJDT98ldAVMcaFwAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAZifuzCpl1zo6zLw_paxkEdQAAAAAAAABs-I0qeKDe1hMr58wzZHuN2wAAAAAAAAAuc7ozItwsYyYalXzAX94FLwAAAAAAAAAFxBpLrGZNr5AfSV-nBH12VwAAAAAAAAAQsqSPxzNVk-ZFlB_w0Mp5HwAAAAAAAAAJDPiwYCjZz_rDZ2kyScPDiwAAAAAAAAAFZWStSXeNAGd_UvPJWPN72AAAAAAAAAAODjPOvqtibdYyCC-LCEO7BQAAAAAAAAAQrdBSAs46J2u7qmGAwcl72gAAAAAAAABPsRXhqddpmnoFsWkC5mTZFQAAAAAAAAAA", "types": "CANFBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5Y5-o0gkUhbrP54-KmzBRg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFWS1", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cBtic5L873Cu1LhCvzk3zg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAABcQrw_bSROFZCKPRirqN5crwAAAAAAAAAEmNKQ_cGBX-X-PxTw057WHwAAAAAAAAAoPe3ctc9W4J1u_ZCOerqNzAAAAAAAAACUA80fpNwLg5UyZGOl2HXL1wAAAAAAAAH26rsVEZ9sKsa4Vh8IikWAbwAAAAAAAAAJzw0wKeXSScV9zb0GbnSg3gAAAAAAAAE6xiNRq7Ruj11jfgYHuwwWowAAAAAAAAHiw_cxYz8MnUesAVA7XOw_bwAAAAAAAAATGWaNS7Aannj1ZssQUxZReQAAAAAAAAGHgDRAAy1IwcF0IR_YOLzWjwAAAAAAAABEgw-R6elvRCziXgbmYn0NGAAAAAAAAAAGStdff30sTwwMW3207S4hcQAAAAAAAAAOrCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAENAHbgjE1mrEUxDWK3HkjL9AAAAAAAAAAFs2i4LP9eVmd_xE1tnFauogAAAAAAAAAF6kCfjNdi4uCSLWXwLtfgOQAAAAAAAAAE01WA1i4lyjeuyXDzuIDSXwAAAAAAAAATGhn_nSPcLUHN_pt9H7ZErQAAAAAAAAAD", "types": "CQMnBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "49ypE05vMmaEKO9rDQTgug"}} +{"Stacktrace": {"frame": {"ids": "c6lwtZBG2BzNKGtSyzLrTAAAAAAABCWpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGc6lwtZBG2BzNKGtSyzLrTAAAAAAABBZWc6lwtZBG2BzNKGtSyzLrTAAAAAAABWSbc6lwtZBG2BzNKGtSyzLrTAAAAAAABO1vc6lwtZBG2BzNKGtSyzLrTAAAAAAACbDSc6lwtZBG2BzNKGtSyzLrTAAAAAAABFjdam-Z0RfUVY0oYK5VXRDk9wAAAAAADKVLam-Z0RfUVY0oYK5VXRDk9wAAAAAADKAFam-Z0RfUVY0oYK5VXRDk9wAAAAAADHogam-Z0RfUVY0oYK5VXRDk9wAAAAAADz5Mam-Z0RfUVY0oYK5VXRDk9wAAAAAAC-0Pam-Z0RfUVY0oYK5VXRDk9wAAAAAAC-tI", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dgU6NNtL9bFRK0l0DnvxRw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYhpdrA0BwX9k4wpq28cpa-QAAAAAAAAAOWAB0fvH6ioTO4VaJeYjuEAAAAAAAAAABtu6yRjvR9y5TsA8gfp3aWQAAAAAAAACMzbo7bf58tjgYkkUoiIIz0gAAAAAAAAA5jYKah-GaJpbI-jAwYcFi1QAAAAAAAAAIbu6t-WTb-nsfb-QwFBEV_QAAAAAAAAA9D0rVr9r2i8CRuvzOSp3RnAAAAAAAAAACqk_n1ecQPsBsNva7iBiLPgAAAAAAAAAFpE_XF-eq0tBl0fP7Y7zrSwAAAAAAAABpYav7N1kdPMXfEfZ1xXIznAAAAAAAAAANDYw6-LyNoVsQdM43hcJCegAAAAAAAAAI3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAA8c6UeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAOjL", "types": "CAMSBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_4Avcg9eMxD8hzGqOSHm6A"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAAAyxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAACNJgmaT4hGItQStPxlJGEPUAAAAAAAAAAEWHTE8ACR4NC-I-EUuyo1lgAAAAAAAAAIjoHdKmx5pRoeIkTwEIvJpAAAAAAAAAAcIKniS6Oltfo1ekuyyeYCXwAAAAAAAAABSJxVsEnpCDnlRh2uwKM1VwAAAAAAAAAIU8y7tkq3OrTv74Jpmv-rDQAAAAAAAAAkWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFuaPqWrgrMtBr19nB0bwQ4AAAAAAAAAA7DvWhbkzH60wdCq3Z8oLdcQAAAAAAAAAHOljKMbs7Sslvbk6h8kJ9yAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfw5DtxqVhoNPMfZH51ZbSdwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEeyyzzsctNMm8Ix0F5BKrQwAAAAAAAAANL9OdW1GzSEWVanMPfByr5wAAAAAAAAAIMpA-_yb_lGv178DTnH5RUAAAAAAAAAAKQFD262cMfH9Fkx0D-SBUcgAAAAAAAABhk-Vn8s9qtj7D3BSWLIWnXAAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAActFrbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qeGt3fpd8fb-33IEga_JxmgAAAAAAAAABIGwhMoYnMofyYEaJiOTDygAAAAAAAABndVXLQszZHgabMaRgrKn91QAAAAAAAAAbkUQWAMnv1TRPiRV23phECQAAAAAAAACM4oROntQ4zAdpf6wKcORUhAAAAAAAAAAA0aeAC4XpbxqxubqgoasMaQAAAAAAAWFk0aeAC4XpbxqxubqgoasMaQAAAAAAAW3P0rNuxKNw6YxtKvsF6kS_jQAAAAAABGiX0rNuxKNw6YxtKvsF6kS_jQAAAAAADu1l", "types": "CQM_BQIDBgUEAw"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9yk8T4T4bor4dgDKsooCzw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATMsVxGJ_9ADjCLmkId1rUYwAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABV6WzOxn3OKFhpMveMHAeqDAAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAproTQ2x4u1u0ROVEifn0kaQAAAAAAAACHhQj1w50CfP8YweEdnC-JyAAAAAAAAAAEr8runDm4rOcHO76XR-D7jAAAAAAAAAAMqCAXb4nsA8MBowrcfqVWbwAAAAAAAACCbem31qqzjUFpI7bh8w8-nQAAAAAAAACjeIKZHUnkOnlIeLcFKA7B_wAAAAAAAADKoJ4uhqaGJXAzxTc8vQCVYwAAAAAAAABdNCAjj9ga_oZwZ7NBAV35jQAAAAAAAABgLDzxKitLXg1NPN9Jo9msaAAAAAAAAAB35w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC3OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyKk", "types": "CAM5BQED"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "L7mGCOr6hDmWUKkK2ILung"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXUptYxe-SHgukLEpCkawSk1QWAAAAAABXVgSYxe-SHgukLEpCkawSk1QWAAAAAAAjDS8Yxe-SHgukLEpCkawSk1QWAAAAAAAjDe0Yxe-SHgukLEpCkawSk1QWAAAAAAADcJkYxe-SHgukLEpCkawSk1QWAAAAAAADd4aYxe-SHgukLEpCkawSk1QWAAAAAAACzjTYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHR", "types": "CwMCBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Le3KXBpRasLvB5LgZia5gg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o8vXT4fd_WKeR1cE-hlLelCQAAAAAAC-pGEXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi94WXT4fd_WKeR1cE-hlLelCQAAAAAACi98FXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwWtXT4fd_WKeR1cE-hlLelCQAAAAAAChsdpXT4fd_WKeR1cE-hlLelCQAAAAAACh1LY", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KCq0s-HiFvVRWrBt4DnM6g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAqovRPcszTde0VZh4hrqQUtwAAAAAAAABBgJKCOQJCNUe5j61lhCTyewAAAAAAAATdBzHaaplfCkGFxXmJVqCJAgAAAAAAAAARkLG20VFMtAeL120q9dFk-QAAAAAAAAAhR9d-4EOoAQqhB1QW7ZwT_wAAAAAAAABJstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGfDqNreXUioiFDFwNREuqLgAAAAAAAAAsCasUHBASz8HLDmgbus_pogAAAAAAAAANUKLoduJn5-YPXULy7Ukl9AAAAAAAAABuahMxWqP1a_8hG_qUbGypwwAAAAAAAAAjXwAhZSmmzOw18_-H38te0AAAAAAAAAAA", "types": "CQMwBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5Q--2f75Hs2GuIge1bpuQw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgFZ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "buaxIa9twIg6BvMTZMOZOw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o6kXT4fd_WKeR1cE-hlLelCQAAAAAAC-pGEXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "FAMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bVBJt7S3jXOW3OLJONm2dw"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrkykgtQ4kMk_MBWrPUAFqVnYywAAAAABq7bsgtQ4kMk_MBWrPUAFqVnYywAAAAABq7GYgtQ4kMk_MBWrPUAFqVnYywAAAAABq6JkgtQ4kMk_MBWrPUAFqVnYywAAAAABq42MgtQ4kMk_MBWrPUAFqVnYywAAAAABqGtGgtQ4kMk_MBWrPUAFqVnYywAAAAABquU1gtQ4kMk_MBWrPUAFqVnYywAAAAABro5C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCIa", "types": "CAMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FTAhytTD-54lkJE_7OpM2g"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmtJ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SDwcXkiHM8A0NOMuSkTSFQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATQDkJCt6xHk7D12ZqlrT-UAAAAAAAAAAHPX3E_b7jZQaK6SiJYskQ3QAAAAAAAAAJZaLdh2m65raIV_JyagrUBQAAAAAAAABnazI-mX3CgcWhg9AcjJjNnQAAAAAAAAART7Ugi353BwPylAwIPK3gzQAAAAAAAAJoQOd1XvqsUrgvrUhi_EhnRAAAAAAAAAAbA8Qhsp8jYj9bPQN6UkmXAAAAAAAAAAAh7XuwAERz4-wOtMHIT2RfpgAAAAAAAABpfMKxLLA4Q_xaCv6rBjpL3AAAAAAAAABtp5ru2wuJ3sk-XG9kZ_YjVwAAAAAAAAAA", "types": "CQMrBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6LMgC_pj236jbZulsolnmw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABty-9Z3CKaS4aU08RhYA19y5ITQAAAAABtFpzZ3CKaS4aU08RhYA19y5ITQAAAAABtnwrZ3CKaS4aU08RhYA19y5ITQAAAAABudBy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BQMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vKRD_W5Xif7zQiyDcfzS1A"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp4rFFPORY8_4FvK9QaA3QUQAAAAAAE8PoUJmIMEc6K8gJ39NHYaD0WwAAAAAAEPck6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Z56tVKI4mSYDEJ-ABAIpYXcgAAAAAAp15j", "types": "MAMNBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "IfCePpDTKZ8xQbRzsJ4WLA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlu66tVKI4mSYDEJ-ABAIpYXcgAAAAAAI2OH", "types": "FAMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gx5rwCcLYn9O9vuZ_cwAtg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN5QGcEvvhuguaGYCmGWrnWRz1QAAAAACN_Wl", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0RMZYBAHOGeayUG0AI76hw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATMsVxGJ_9ADjCLmkId1rUYwAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABV6WzOxn3OKFhpMveMHAeqDAAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAproTQ2x4u1u0ROVEifn0kaQAAAAAAAAAtOcVENYdBUHkmXadCZbxMcQAAAAAAAABX7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAMEozR7rHeowembmV8tqrkzHQAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAADAKFGBFnajTppUPwKMAfWXvQAAAAAAAAAXfjtW9vtmDWgO1Pk6zjyUWAAAAAAAAACOcqdSAx5Uej3ncVA_SUVjsQAAAAAAAAAMPrNII2l46oclr0RXWTYMUAAAAAAAAAAEINf3qrj40tfRq5N_0-qbsgAAAAAAAAAHsWCnrMF0Arlnv58qX-TThwAAAAAAAAAB7mqPc5ch4cFcQJn3b5WHKQAAAAAAAAAFIY3kOFBxddrJzoZrzargTAAAAAAAAAAADHMn6ZZcNA6-RmrkDCI6igAAAAAAAV_3eJ7BYIhIN72fM2Cz8k8m9QAAAAAAARl3", "types": "CAM1BQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lsQi5I89N3DlyjuVtE5TKw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAER", "types": "CQMyBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MZkz3916MYFEBfheTUXaYA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QiRcEvvhuguaGYCmGWrnWRz1QAAAAAD-UKVcEvvhuguaGYCmGWrnWRz1QAAAAAD-VybcEvvhuguaGYCmGWrnWRz1QAAAAACH4WncEvvhuguaGYCmGWrnWRz1QAAAAACH_Y7", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JF-bEOX20dA6FrlaQoCfyQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADA3-aZ3CKaS4aU08RhYA19y5ITQAAAAADA3RQZ3CKaS4aU08RhYA19y5ITQAAAAACQxvsZ3CKaS4aU08RhYA19y5ITQAAAAACQxqMZ3CKaS4aU08RhYA19y5ITQAAAAAB_vLNZ3CKaS4aU08RhYA19y5ITQAAAAABwYmfZ3CKaS4aU08RhYA19y5ITQAAAAABv08_Z3CKaS4aU08RhYA19y5ITQAAAAABv3V6", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZVKEoR298hTyfJ4X6CfkgQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADAYnk6E9ReVsUsstHFtTIiXQAAAAAAAAAyfT0k69QoWDcgSGG9DEbGKQAAAAAAAABU3yZRDT05_hGvUj8jRvChFAAAAAAAAAIWQdsa8CodEr3BBR20SawlOgAAAAAAAAII2kNP-fbSjTC_hm1jEY6s0QAAAAAAAAACVAcs5JM676bIIEJRUL9kYQAAAAAAAAAD-mAMSaO8HC1n82ENmkUabwAAAAAAAAEcepgIddEEaGC68JQ508kjFQAAAAAAAAARvdv7wcErbmkon-Nhq9YXuwAAAAAAAABBmbtJBLFirmHoLdxa0M274QAAAAAAAAAGmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC3OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOEnRoHyZazasm_zTjL5tnOgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMfDpp6LgRqCGeGjs7cnnwItcAAAAAAADsp5", "types": "CAO_BQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LTmHo33H8lgM3A5DkgF4hg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAFJfinhoQfoECf6Q4HPC08YkAAAAAAAAAAqcn_0Dt8F1JGwazqn6MVOnAAAAAAAAAABDnuglYjSP_yHnOeoUpC43wAAAAAAAAAB3v2TU8A01iCPuVWdiUVv8QAAAAAAAAApL-_tQCaPRoXtazKap89hsgAAAAAAAAAOZhtNJYoOwm655zArM3sIngAAAAAAAAAmYgvoZ6DleZJd_ACRhoNarAAAAAAAAAACUT4r1woqEdacoKDuZFw-vgAAAAAAAADtUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAmQVeLj_oPnEjl_jKTv8aQqAAAAAAAAAAlUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAxrp3sprQtO8hOwekVupMQwgAAAAAAAAA0XoNqQsMeesgJkRR-qQrvugAAAAAAAAAzrn6MTH_GcOdtJ7YxIeV5gwAAAAAAAAAHUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAUnQRJ3xr79n3cY6qS99IffwAAAAAAAAAEAhC6Xj-K1vOC4yqhcS2tRAAAAAAAAAATopFI2iPPQrSoKgHSzuYsiwAAAAAAAAAInX5EwLqa4-7opgPxIg4PZAAAAAAAAABw575WKZsJOrf8RDDJpG_1WgAAAAAAAABhiq5pqOpNVrXrvUr0VXwf8gAAAAAAAAACbVXxpnmgIbO0K4TjtY7pDAAAAAAAAAArZ-CiexQVqL-aPBYv4uHXWAAAAAAAAAAIiit9TEPWxIcbSUSJseypHwAAAAAAAAASvc_2qIuahQ6DM3LWEJ9q5QAAAAAAAACEqN4Vqjijt0HHN8TkXT1dVwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAHs6vQ7EacG6CR4rzcFaNFEsTQAAAAAAATMu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADqG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzzZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFrZg", "types": "CAMmBQIDBQQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Cry2aWSQXge0LDz67p7UEA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCYyXT4fd_WKeR1cE-hlLelCQAAAAAAEOC7XXT4fd_WKeR1cE-hlLelCQAAAAAACwzj1XT4fd_WKeR1cE-hlLelCQAAAAAAChWQK", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EBIz_-mHvJb-jtxFCd1J3g"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMh29XT4fd_WKeR1cE-hlLelCQAAAAAAC-zdsXT4fd_WKeR1cE-hlLelCQAAAAAAC-1HEXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "tUqIS11DapMr3pZUA0k7Xw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7zyXT4fd_WKeR1cE-hlLelCQAAAAAAC-8B3XT4fd_WKeR1cE-hlLelCQAAAAAAC-ykpXT4fd_WKeR1cE-hlLelCQAAAAAACp71EXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCM6XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcCd6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcBE6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkBo", "types": "EwMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xr5_7cZmTFZ-q0xsVeI5iw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-uTvXT4fd_WKeR1cE-hlLelCQAAAAAAC-w3NXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALm6B6tVKI4mSYDEJ-ABAIpYXcgAAAAAAF0Ia", "types": "EAMHBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7i10_kdG8m16X7lau6FAtg"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp4rFFPORY8_4FvK9QaA3QUQAAAAAAE8PoUJmIMEc6K8gJ39NHYaD0WwAAAAAAEPcl", "types": "MQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0pVn3RaIbpVhn8RviFIpJg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBVs", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_F4YhR7CPtPMyIx-kmC0Hg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o8vXT4fd_WKeR1cE-hlLelCQAAAAAAC-pEOXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "BE7h2K77yw97C_Kaq6i4Wg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFdkIcEvvhuguaGYCmGWrnWRz1QAAAAACFWIHcEvvhuguaGYCmGWrnWRz1QAAAAACFVZ1cEvvhuguaGYCmGWrnWRz1QAAAAACFWWR", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PZ1hPxVMcA6Axh2Z0vehHA"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp2HVF-fC6bGu1PSwJc2kzOgAAAAAACHAL2HVF-fC6bGu1PSwJc2kzOgAAAAAAHHBe2HVF-fC6bGu1PSwJc2kzOgAAAAAAHEJ82HVF-fC6bGu1PSwJc2kzOgAAAAAAHEEy2HVF-fC6bGu1PSwJc2kzOgAAAAAAJcMj2HVF-fC6bGu1PSwJc2kzOgAAAAAAEKYD2HVF-fC6bGu1PSwJc2kzOgAAAAAAEKFP2HVF-fC6bGu1PSwJc2kzOgAAAAAAEI2W2HVF-fC6bGu1PSwJc2kzOgAAAAAAEIU_2HVF-fC6bGu1PSwJc2kzOgAAAAAAEJbZ2HVF-fC6bGu1PSwJc2kzOgAAAAAAEI2g", "types": "UQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iCKcb0WeFv7cYGfg5qDFaQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSID", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cJ9JggUwtbxQCAJye8Yvtg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVEDYyx-zRWlBHMYS8RkGZ2wAAAAAAAAAEdymPrMwSHJkE00arRNB68AAAAAAAAAAUu_5zCMK3PLNUfmu5e0wjpgAAAAAAAAB2ac8L5UaM7hx6_7ogYUjJpQAAAAAAAAALAt2XjH9VGC3bb_7sv7ixNgAAAAAAAACgw4Cq1cfo2BosL5j6RghC2gAAAAAAAADfqVud9aAxlVfNdghSN8mVawAAAAAAAAARcPknbPYx0jQL0_yL-rDiBQAAAAAAAAAHTJokhObG_7GMDQXtJjQRzgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABNX2GurXP9eWlHwN0fLlalwAAAAAAAAAM5E3RifhwtkkbQvQxmdbzmwAAAAAAAAAGaZM24L3D9yPtDjUQ3lJ1qAAAAAAAAAAIjorj45TI-Qd-VAwU3oeBogAAAAAAAACKdRwl39wiwpK9-zrDh4fLcgAAAAAAAAABJIJ67u_XI4-jnSyBIeegBAAAAAAAAAAIeOXjDtmISDDtSL4dEzZt-wAAAAAAAAAD_6rkq2S7o8rMRQJ9AofzJAAAAAAAAAC-7NQKJ0eHP8J4hISaRMWwxQAAAAAAAAATLLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABRiQ3-U2pFJokP-jlw4Yr9FQAAAAAAAAAJnxv9fnyzQgRP5y-sCtMEGwAAAAAAAAA4xNgBHgNqPNx9KViH_BIZBQAAAAAAAAAA", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jxKs4T5jsTKw_TwgxJuX1A"}} +{"Stacktrace": {"frame": {"ids": "jDWb-JzykmDZwFq_yGRkXQAAAAAAAAAG619AixYrQOa22PQj1GrSdAAAAAAAAABitYpn9fKKxL559MokXK09lwAAAAAAAAAYbQTnNZNiSnxa6gsFMalX2wAAAAAAAAAKzihU2tJAUMTE3AA4bF0R6gAAAAAAAACAQbvBm5K9FvRcVX9RX9KOswAAAAAAAABe_x4aKgh_XJ5-w5YMGr9j7gAAAAAAFSFO_x4aKgh_XJ5-w5YMGr9j7gAAAAAADmfm_x4aKgh_XJ5-w5YMGr9j7gAAAAAAGIkZ_x4aKgh_XJ5-w5YMGr9j7gAAAAAAGG5-tQgAmBJBgPLrkikSPRsmtgAAAAAAAN6ktQgAmBJBgPLrkikSPRsmtgAAAAAAAN4GtQgAmBJBgPLrkikSPRsmtgAAAAAAAN0v", "types": "BgEHAw"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2sfPTNURTcvYQ5zdjMYJlw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABBgJKCOQJCNUe5j61lhCTyewAAAAAAAATdBzHaaplfCkGFxXmJVqCJAgAAAAAAAAARkLG20VFMtAeL120q9dFk-QAAAAAAAAAhR9d-4EOoAQqhB1QW7ZwT_wAAAAAAAABJstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGfDqNreXUioiFDFwNREuqLgAAAAAAAAAsUKLoduJn5-YPXULy7Ukl9AAAAAAAAABuahMxWqP1a_8hG_qUbGypwwAAAAAAAABbvWxNCMnUr6is0HaIF2GPQgAAAAAAAAAIx8IZY0dEvsXx9GTB6nqKhQAAAAAAAABTAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CQM7BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_6kR-USWGgxhjhlJfdSewQ"}} +{"Stacktrace": {"frame": {"ids": "3mYYqsL3RyZ4MT4Z8-by-gAAAAAABsfA3mYYqsL3RyZ4MT4Z8-by-gAAAAAAA5oV3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHRcE3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHP6w3mYYqsL3RyZ4MT4Z8-by-gAAAAAAGTSU3mYYqsL3RyZ4MT4Z8-by-gAAAAAAGSdh3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHRJR3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHRTx3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHHZF3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHK-o3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHLol3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHMEG3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHAlY3mYYqsL3RyZ4MT4Z8-by-gAAAAAAG7Jb3mYYqsL3RyZ4MT4Z8-by-gAAAAAAG4qu3mYYqsL3RyZ4MT4Z8-by-gAAAAAAG3qU", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EZ2YsSTqh3amiqmt5jrW4A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgms-", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hJtVhWAglQ_RhmTssDgfmg"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJM4EgtQ4kMk_MBWrPUAFqVnYywAAAAACJNBcgtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfLgtQ4kMk_MBWrPUAFqVnYywAAAAACJGkVgtQ4kMk_MBWrPUAFqVnYywAAAAACJDqmgtQ4kMk_MBWrPUAFqVnYywAAAAACI8jEgtQ4kMk_MBWrPUAFqVnYywAAAAACI97qgtQ4kMk_MBWrPUAFqVnYywAAAAACI9ongtQ4kMk_MBWrPUAFqVnYywAAAAACI99kgtQ4kMk_MBWrPUAFqVnYywAAAAABuFXMgtQ4kMk_MBWrPUAFqVnYywAAAAABrKGxgtQ4kMk_MBWrPUAFqVnYywAAAAABqINSgtQ4kMk_MBWrPUAFqVnYywAAAAABqQ3g", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2E7wIsuQRTOhAo16QgNd4g"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAGx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABW1vmWfRl7JvnIelrwmbOFDwAAAAAAAAB2P_qKgj6OkmYBLfen5yPH6AAAAAAAAADlitfZdu4NdI0YJrHcgeE-TwAAAAAAAACXJS-WjNz0QulnqSlnIs8U0wAAAAAAAADS7Ormen3KBfy8FXv7OmF-kAAAAAAAAACkqRvG2N9iYeFyl-3xULRJEgAAAAAAAAAexEhHwPkzqPTZe7BAGzwjIwAAAAAAAAAA", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dhoLohkKaxq47PiJIksXfA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LMXcEvvhuguaGYCmGWrnWRz1QAAAAACETRw", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WAFvqnn46-Sd9KpZ8BBrgQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAXfyHZSkKN3zNxr0HYuO2pqe5hQAAAAAAXfCPZSkKN3zNxr0HYuO2pqe5hQAAAAAAUVVAZSkKN3zNxr0HYuO2pqe5hQAAAAAAXWPkZSkKN3zNxr0HYuO2pqe5hQAAAAAAUWgKZSkKN3zNxr0HYuO2pqe5hQAAAAAAxEuTZSkKN3zNxr0HYuO2pqe5hQAAAAAAxBn0ZSkKN3zNxr0HYuO2pqe5hQAAAAAAxBXHZSkKN3zNxr0HYuO2pqe5hQAAAAAAad_XZSkKN3zNxr0HYuO2pqe5hQAAAAAAUWgKZSkKN3zNxr0HYuO2pqe5hQAAAAAAxEuTZSkKN3zNxr0HYuO2pqe5hQAAAAAAxBn0ZSkKN3zNxr0HYuO2pqe5hQAAAAAAxBXHZSkKN3zNxr0HYuO2pqe5hQAAAAAAad_XZSkKN3zNxr0HYuO2pqe5hQAAAAAAUYNYZSkKN3zNxr0HYuO2pqe5hQAAAAAAUWgKZSkKN3zNxr0HYuO2pqe5hQAAAAAAxEuTZSkKN3zNxr0HYuO2pqe5hQAAAAAAxBn0ZSkKN3zNxr0HYuO2pqe5hQAAAAAAxBXHZSkKN3zNxr0HYuO2pqe5hQAAAAAAad99ZSkKN3zNxr0HYuO2pqe5hQAAAAAAac8xZSkKN3zNxr0HYuO2pqe5hQAAAAAAXR4BZSkKN3zNxr0HYuO2pqe5hQAAAAAAqIekZSkKN3zNxr0HYuO2pqe5hQAAAAAAUV_I", "types": "HQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "tdzUvs7W0lBn5RMuHgCBGA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACglEkXT4fd_WKeR1cE-hlLelCQAAAAAACglIuXT4fd_WKeR1cE-hlLelCQAAAAAACgmcRXT4fd_WKeR1cE-hlLelCQAAAAAACgmqd", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WUKaUQgCBn15ct1ssGqVIQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfZrsFKuVxhHWhub-XEUbfgQAAAAAAAAAeUu5glQJyFgpEjTQ_UpnTpgAAAAAAAAAB4XL-_3HqKL4a-N25S_4rwwAAAAAAAAAqY_uBeAIr8RJYVxEQrPIP5gAAAAAAAAAECRotmmSr93EhxDv-kzDy3AAAAAAAAAAE_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABoaAqnvBf39hEMknB1ptAAgAAAAAAAAALVZ92wJHz4QeIc3nyf1htQgAAAAAAAAAe3APbfJs5SvbH_F9r5lo_3wAAAAAAAAAFfnFonGQxpm_e6wtqJ2HwRwAAAAAAAAAEYM_gl0OeNbTAtY8GRC8UVgAAAAAAAACbTdvyEkBALxwDoycOnD-RjgAAAAAAAACa", "types": "CQMQBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YfaF6apd--i6ujBLpl-HyA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKTEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKu8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfLgtQ4kMk_MBWrPUAFqVnYywAAAAACJGrEgtQ4kMk_MBWrPUAFqVnYywAAAAACJD-0gtQ4kMk_MBWrPUAFqVnYywAAAAACI8w1gtQ4kMk_MBWrPUAFqVnYywAAAAACI9ukgtQ4kMk_MBWrPUAFqVnYywAAAAABsxQJgtQ4kMk_MBWrPUAFqVnYywAAAAABsw8kgtQ4kMk_MBWrPUAFqVnYywAAAAABszHvgtQ4kMk_MBWrPUAFqVnYywAAAAABsy-ygtQ4kMk_MBWrPUAFqVnYywAAAAABsj1FgtQ4kMk_MBWrPUAFqVnYywAAAAABsirMgtQ4kMk_MBWrPUAFqVnYywAAAAABrgOSgtQ4kMk_MBWrPUAFqVnYywAAAAABrpA36tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "GAMCBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DjJN3an5jxseyPPs3KrbIA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxf3Z3CKaS4aU08RhYA19y5ITQAAAAAB0DI5", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YISGDv7YxY--0wpSk3PHUg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABt2kuZ3CKaS4aU08RhYA19y5ITQAAAAABt2kuZ3CKaS4aU08RhYA19y5ITQAAAAABucrc6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvyz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvo_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0qd6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvMr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "AwMHBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "IsqdVnLNhl2x75Zl1gQDqw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbY0Yxe-SHgukLEpCkawSk1QWAAAAAAAFznNYxe-SHgukLEpCkawSk1QWAAAAAAAFzx5Yxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHafM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrkG", "types": "CwMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "sbR7lCy6JyKqp_hUdL_qEg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAQ2qk3SUFPdBYwVkFMX3ttpwAAAAAAAAAFsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJnsN5oeLyhaU3rc_4TQfhXgAAAAAAAAALgvQGUUGWUJbOOm8Vi63fqAAAAAAAAAAGpIlQHYzUvHZx6w5Rtmyd8QAAAAAAAAAGQUT-nNY12PdX-wWYy6XdlgAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJnsN5oeLyhaU3rc_4TQfhXgAAAAAAAAALgvQGUUGWUJbOOm8Vi63fqAAAAAAAAAAGpIlQHYzUvHZx6w5Rtmyd8QAAAAAAAAAGQUT-nNY12PdX-wWYy6XdlgAAAAAAAAADm61OiFi7ipeTEQpdgB4G8gAAAAAAAAAFNAXh3zuU0dO2_vEc-9d1QQAAAAAAAAAILLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACXEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAI0ipjt73KRiubZe41sxjB5gAAAAAAAAB0", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lRDV2TQEiHRFJlrJA08r3w"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHba4rFFPORY8_4FvK9QaA3QUQAAAAAAGRIW4rFFPORY8_4FvK9QaA3QUQAAAAAAGRJh4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp4rFFPORY8_4FvK9QaA3QUQAAAAAAFP7q4rFFPORY8_4FvK9QaA3QUQAAAAAAFQFuUJmIMEc6K8gJ39NHYaD0WwAAAAAAEQHH", "types": "JwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "87CHyrTQMBEvvzlb8FihBQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eQZcEvvhuguaGYCmGWrnWRz1QAAAAADhDQtcEvvhuguaGYCmGWrnWRz1QAAAAADhDjacEvvhuguaGYCmGWrnWRz1QAAAAACFJba", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mEioHVO0PZSJQhY89CZf5g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAAB-5iAtVIILui-LgFNzk7nI4QAAAAAAAAAFTlb-NMKl40FjLIQMDGJfBQAAAAAAAAAXxme1OLUOxM6S5mWcBl9N_gAAAAAAAAAC8EydHzqUyrjotjG1DR1HjgAAAAAAAAADx7dNtL9l6yQnqIhb2iRkJQAAAAAAAABV85xU6UdOBVE-6wKT-DYa3QAAAAAAAAAcKlMLGpkm1pBrBLT79cviPAAAAAAAAAABzVZBdh_gmAiL5X6tN_0jKgAAAAAAAAAEWBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAABMQNDqKDPWY6nq0qvBxhyKdwAAAAAAAAByaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABKwl0U5vJFJokP-keLWBjMkQAAAAAAAAAJDUWYePMsNbo7HGAKMdOLTAAAAAAAAADb", "types": "CQNMBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "tk9nnPSRs0UXmOv0kC-f_w"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOUgtQ4kMk_MBWrPUAFqVnYywAAAAADHoh5gtQ4kMk_MBWrPUAFqVnYywAAAAADHaog", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "qPD_FES-msqkj5vsf9kYfg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmrvXT4fd_WKeR1cE-hlLelCQAAAAAACgbrN", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_Hr7CeItvPy8I5LyzxNJdA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAACceDtEsbyqaPA8nODsaXH2CwAAAAAAAAAjdb7h5t6lXZ_2CL1N4DXU6AAAAAAAAAAOcAnVCtwTUMiPtQhyaFTtfgAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAU3B2E3nnskNJUgYVRkMUbJAAAAAAAAAACHwm3pNPC4Wa3xFabNuzwcgAAAAAAAAAROVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAAFDrVzWSpKLw4v6Aqz2OFQqGgAAAAAAAAA7QqMFArUGE7c3aczTAAedSAAAAAAAAAARmEefCgy0KUI5I66lcwP9KQAAAAAAAACTRww-hja5KWn3UBihMGepiQAAAAAAAAEepGv-va4FOh2AYYkCjbquJQAAAAAAAAAA", "types": "CQNHBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JrDIqkQs4xl133KqfzmLUg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAByH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAABYe7YYWaQTMh8P2PCVzA2a8gAAAAAAAAABzEK_5i4wFV1mMofkY5GUSQAAAAAAAAAEfcwlJZe3vp7o1kWId0rqugAAAAAAAAAA", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "r4-dv23e6cK3wf70GAFR-A"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAAByH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAEhe7YYWaQTMh8P2PCVzA2a8gAAAAAAAAAwm140cnmnDMXwCTqH-lotHAAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KfhNvGqZ99UsOiA-zG-94g"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFVZ1cEvvhuguaGYCmGWrnWRz1QAAAAACFWZp", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "P3ialIWlnxijlxjtEz_ZOw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBOm", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jzvOiTGOu9bQjTbKf8x4AA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDLZcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACEPVZ", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "41wmIH9jwMlMrZWTpeKHUA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAEWwtUXT4fd_WKeR1cE-hlLelCQAAAAAAEWwzbXT4fd_WKeR1cE-hlLelCQAAAAAAEWw9ZXT4fd_WKeR1cE-hlLelCQAAAAAACnxaWXT4fd_WKeR1cE-hlLelCQAAAAAACney9XT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhjWXT4fd_WKeR1cE-hlLelCQAAAAAACjs1kXT4fd_WKeR1cE-hlLelCQAAAAAAChrznXT4fd_WKeR1cE-hlLelCQAAAAAACgaXEXT4fd_WKeR1cE-hlLelCQAAAAAACgXTYXT4fd_WKeR1cE-hlLelCQAAAAAACgVqNXT4fd_WKeR1cE-hlLelCQAAAAAACgUoxXT4fd_WKeR1cE-hlLelCQAAAAAACgUet", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "HU2--exZrcQBziKXZNla2g"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t3YXT4fd_WKeR1cE-hlLelCQAAAAAAC-wI9XT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuFZ", "types": "FgMDBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fS08xi1u9SSHyC0GsODkdQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfZrsFKuVxhHWhub-XEUbfgQAAAAAAAAAeUu5glQJyFgpEjTQ_UpnTpgAAAAAAAAAB4XL-_3HqKL4a-N25S_4rwwAAAAAAAAAqY_uBeAIr8RJYVxEQrPIP5gAAAAAAAAAECRotmmSr93EhxDv-kzDy3AAAAAAAAAAE-ozgSBsN7Ccx-RY-f_nG9QAAAAAAAAB-SqPIz2A75z1oeJL2DG66JwAAAAAAAAAQ7Hie1WP0q1mBRY33SmWBmQAAAAAAAAALC95QcIcnPLRLOVCNpL2R7wAAAAAAAABlrGGpi5XzV2_kyQAwI16y3AAAAAAAAAAcdhIwhxmZI14YC_jXgEo-cAAAAAAAAAAkA_kWoNW8jw3N93m_5CwHgwAAAAAAAAAlT442v3dhd5jP-9jNAtdrXgAAAAAAAAAMyHKRtrk4B3OfLIHnkHARmgAAAAAAAAA9JmyGUxJRUCt6RqRL_j6LUwAAAAAAAAAL-zd4u8XEdM0oic22GP-UKgAAAAAAAAC3i9268z8Bj-PuuuEgGqrp6QAAAAAAAAA8KYuxvLtkpRjySBFghaqyHAAAAAAAAAAQ3UsZu7Ikzkl49bVnI1kPXAAAAAAAAAC0vU9NOCw_rw2r2oDw6OtcLAAAAAAAAAArOF2u4sKIhhHNYD9MW460yQAAAAAAAAAcF8tqHJqW0foQIdn2VBvKQAAAAAAAAAAA", "types": "CQMaBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FFcUwrs4ffbYcHn46JPyzA"}} +{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI7B_NxRB-tFVbAaTDiew0fwAAAAAAdyiE7B_NxRB-tFVbAaTDiew0fwAAAAABTOLj7B_NxRB-tFVbAaTDiew0fwAAAAAApa927B_NxRB-tFVbAaTDiew0fwAAAAAApWel", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "uvoysDyH_175syenG8Ak5Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vNqXT4fd_WKeR1cE-hlLelCQAAAAAAC-ob5XT4fd_WKeR1cE-hlLelCQAAAAAAC-onkXT4fd_WKeR1cE-hlLelCQAAAAAAC-jxYXT4fd_WKeR1cE-hlLelCQAAAAAAC-jrX", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jq5yVOLbQGxYbXZnP5I7zg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAnEGqyFI4UBcYw0uODaUlP_QAAAAAAAAAEo7sR_pIbiVV_Z8TfMWbBfAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALOKXE0TsqEsNxLqr0g-oK6QAAAAAAAAABx3cFmRipcZyDdJFPRQEWSwAAAAAAAAAQrMNYV5KroKXsOMeuZv5hxgAAAAAAAAAATaNUUQ8ZfJlbsPC7iaqLvwAAAAAAAABv4tQB4iVnNlUP_drXIryOCAAAAAAAAAACaErKLCqrgChwG7C_tbQ7iAAAAAAAAAAwWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYv0o-SuFa6Ydo5LzhQb4MjgAAAAAAAAAGkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAg6dOf_roibFbI4CWjV9e8PwAAAAAAAACRv7NZn75ARbCs3HYY9Fl9agAAAAAAAAAI-DwmZfEc-uYyG5RZ3S3rrQAAAAAAAAAIfhpDQNd5UmqqnR1Mw5dfLAAAAAAAAAACvcmbteT9Zn8Dn3HK9hT_jwAAAAAAAAAaJ6u6Y179J4dS1eDE4nIEEwAAAAAAAABAoBLCWsbzuuTLoV95VXOSiwAAAAAAAAAG3h3xcA1CjbBUsMTV4AM4_QAAAAAAAAAH8RS1Nly7R5USaUVxZKBsKQAAAAAAAAAB-Y56DW_ZsCkojgmcTnRH0AAAAAAAAAAFDg9EjRff17PWRNomsbjntQAAAAAAAAALTlm2yos2yNMmUywsA990NAAAAAAAAARrEl8e1KDnRSx78JGf4h_r2gAAAAAAAAD0P85-ZHhT2OrY2C13tzUCcgAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAkHU6ZSkKN3zNxr0HYuO2pqe5hQAAAAAA2SbwZSkKN3zNxr0HYuO2pqe5hQAAAAAA2SMD", "types": "CAMkBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0QFvxLHZI3B4zBf4hq4f3A"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXEEgtQ4kMk_MBWrPUAFqVnYywAAAAABqaJ-gtQ4kMk_MBWrPUAFqVnYywAAAAABqYSWgtQ4kMk_MBWrPUAFqVnYywAAAAABqYbkgtQ4kMk_MBWrPUAFqVnYywAAAAABqaXXgtQ4kMk_MBWrPUAFqVnYywAAAAABqPfP", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9sbwpQX6fTfKAsfiRQoSUQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAADxz_WaY2pXtLyni7L_8jKtBgAAAAAAAAAPEIpTc6zorXqtTjOVazk4HwAAAAAAAABogbCFQS2suYv46rP_aUsebAAAAAAAAAHWzvtGCZWh7Ji_VQTOB6BAGQAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAMxDXeTINsutWQ3L9FCGjV5QAAAAAAAAAEfrJcVQQvYZxinCGo-1mmtQAAAAAAAAAP3R6peF1IdwfQqmb119dyMQAAAAAAAAAFjRPUUEtO9tA38nKSenaVfwAAAAAAAAAC3R6peF1IdwfQqmb119dyMQAAAAAAAAAFMDjyE5AlqASoc6cxfe5K2wAAAAAAAAAwmxRwXt-8CQt60ehjLjpoTwAAAAAAAAAKl_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAADUM3h48-oBMi00mRAqhB4IAAAAAAAAAAjMj1fVO3bykQ8piLrLc5IFQAAAAAAAAAJp3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAOKE634wiWh6F21tPpXr0Zz3mgAAAAAAEP0L", "types": "CAMvBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OJALMmMPOa0K6lBeNZ-7mw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVJ5LlnPpQupPs1Oay-H91PwAAAAAAAAAFlWZrBpi9jtlM7-59Gnsk1AAAAAAAAADKgWNEC7AlEWOiaeOn6tt3KwAAAAAAAAAdTZeXKeFIsAFVFzECyphbeQAAAAAAAAACtMlQRUcqMTg123vaMnWXIQAAAAAAAAFrmSA4n3hfHoHO_l078KYe-gAAAAAAAAAbraXCesASQpjJ6cB6kN-4ygAAAAAAAAAH-BXBCyVdFs10x2OcVoAoKQAAAAAAAAFP5QFyT9MlJsniU-mnKmwHBQAAAAAAAAAN4pMgUWm4rtyPJPkF4YsFtwAAAAAAAAB7l24TKPxY5vj1MuNBElA0bwAAAAAAAADKFydu_jIEUCOQMYYMzhWUPQAAAAAAAAAQZU_AKrN0O1tUEGDaSRobyAAAAAAAAAATk2YYEoG7eeueJEEJjixcOAAAAAAAAAAF7JKnO-2DZ3QohUT7jVsYGgAAAAAAAAA9SHn4gmjKfYwZ2bQwnjaoXAAAAAAAAABN7TS3qUr6WtMMfMRf5clAqgAAAAAAAACy4LcEXAQVP4PCo9VxhEKuZQAAAAAAAAACMClpQyU6gpPESHOwt_xwcAAAAAAAAAAoqQLoAUeVsmFsa4Dsof41dAAAAAAAAAAlOg9hsTiyb-tO6K1EZiROQwAAAAAAAAA9N6GQLYcZVTMZFVsClXmzKQAAAAAAAAAM9F2sPFUdWnrciDjWRDA8VgAAAAAAAAArGnPhLFYgOQzRsCZS1-Gy-wAAAAAAAAAFiX1IbNXN4h_K1-Noo3W8IgAAAAAAAAACgOUif1gfr_8m0lfQOck_cQAAAAAAAAAFAhPzx2h6vI74dTFnJRlejAAAAAAAAAAF2wnY5LHpXWwzeDfG9W1LxgAAAAAAAADG89LXE30sIspbXWCSHRWXmQAAAAAAAAAE5X0zV-w-N_dQTgCxH2ipLgAAAAAAAAAE5vMyVxaxXbqzsaKVqZzo9wAAAAAAAAAHiynY3Vpl2yeKIqRo2Ld9YAAAAAAAAAAnAsYLPOMVTEJOeDxuyLY7KQAAAAAAAAAUvTiT6RQHSjUNEBuIvfofKgAAAAAAAABRnXCb1JxZ0dz33zJkoeoA-QAAAAAAAAAOJDnO1OdT3mBLtMfsODhVKQAAAAAAAAAFI90CtZp_BZBH2tSRSUMrrgAAAAAAAACFkpBi8LFR3RTjSJqFuljOuQAAAAAAAAAAGXH6S9Nv2Lf0omTz4cH4RAAAAAAAAClRfhsEKXDuxJ-jIJrZpdRuSAAAAAAAAFtjfhsEKXDuxJ-jIJrZpdRuSAAAAAAAAEGT", "types": "CAMtBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FVCO-2DSmdo5cwb6xs2XPQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAAwR4O21YPz5WkGUKdaZ1xVrgAAAAAAAAAaAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CQMWBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Jf-LsQId6C24_rKGVJ_m6g"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN4w-", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6RlqbJ-JTbDdtDvKzkJO-g"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFc1t", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Pj-CYSIMORjAXF08J9Y0Cg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAAAaDLCbvuPzV5FNep-fYYK5KAAAAAAAAACEwdRZBOgt1iAFeehFpb20mAAAAAAAAAAJ0Cdt9wyWxnG2B-xGXMO6owAAAAAAAADYVx2H7p06nNerPKpNR75HGQAAAAAAAADbxIfNH7oj8c26gQcDKc66DwAAAAAAAAAURuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAA534SZSkKN3zNxr0HYuO2pqe5hQAAAAAAwmt48NlMClggx8jaziUTJXlmWAAAAAAAALKP", "types": "CAMKBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DBbldGwmSSBNJib6rcxL2g"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHiCEgtQ4kMk_MBWrPUAFqVnYywAAAAADHiVygtQ4kMk_MBWrPUAFqVnYywAAAAADHdkwgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4V0gtQ4kMk_MBWrPUAFqVnYywAAAAACG15LgtQ4kMk_MBWrPUAFqVnYywAAAAACG2UHgtQ4kMk_MBWrPUAFqVnYywAAAAACG2ZKgtQ4kMk_MBWrPUAFqVnYywAAAAACG2xogtQ4kMk_MBWrPUAFqVnYywAAAAACG1ykgtQ4kMk_MBWrPUAFqVnYywAAAAABqKFN", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dKhGTzhAT-8xVuVa7hSZGg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmqx", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "709jvaBVClQ_fHPobLQWbA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY5T8Yhyloa65D1snwfHUbjwAAAAAAAAAXvz3TbuBnWyl9Ei5te-E_CAAAAAAAAAAmkQIfOKgH7suSILPob4uOXAAAAAAAAAEjwTSbu1Pr78mJrU1RTg5RYgAAAAAAAAAkr8runDm4rOcHO76XR-D7jAAAAAAAAAAMqCAXb4nsA8MBowrcfqVWbwAAAAAAAABd2cxgkaQz6jHA-zT7PPZDvwAAAAAAAACzjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAABGH8Al-WbstdAAVLcQB9SMjwAAAAAAAAAau0qxTrkiZSat46G0GdrgmAAAAAAAAAATlv5p_7PvmAcAMuvPOHN84wAAAAAAAAALI8IIyf6YX8Obq6OO40d5JwAAAAAAAAAf4kWCaNFLMV9D_w_Vhl3uMQAAAAAAAABU4kWCaNFLMV9D_w_Vhl3uMQAAAAAAAADQI8IIyf6YX8Obq6OO40d5JwAAAAAAAAAf4kWCaNFLMV9D_w_Vhl3uMQAAAAAAAAAsSf4UiN34U8G1c8haVk1h3AAAAAAAAABC", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4aXf_UcuTWGl7wE937kCMQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAABcQrw_bSROFZCKPRirqN5crwAAAAAAAAAEmNKQ_cGBX-X-PxTw057WHwAAAAAAAAAoPe3ctc9W4J1u_ZCOerqNzAAAAAAAAACGnZmkelHuL2rN_AY8H-OMEgAAAAAAAAAFgmjUzsxRLEujWJFPXkncMgAAAAAAAACLzw0wKeXSScV9zb0GbnSg3gAAAAAAAAD4xojp5VBQ5xwqQiCbnXCnEQAAAAAAAABJUzpT8KmlTneCrZW0Xa3m6AAAAAAAAABMM9eMrfE_Teezp8eocQnu9gAAAAAAAAA4QLdVHMdVsV-29W9Zq-QZAwAAAAAAAAA00IgBJXkhHjjN4lbBooaULQAAAAAAAAACQLdVHMdVsV-29W9Zq-QZAwAAAAAAAAA00IgBJXkhHjjN4lbBooaULQAAAAAAAAACQLdVHMdVsV-29W9Zq-QZAwAAAAAAAAA00IgBJXkhHjjN4lbBooaULQAAAAAAAAACQLdVHMdVsV-29W9Zq-QZAwAAAAAAAAA00IgBJXkhHjjN4lbBooaULQAAAAAAAAACQLdVHMdVsV-29W9Zq-QZAwAAAAAAAAA00IgBJXkhHjjN4lbBooaULQAAAAAAAAACQLdVHMdVsV-29W9Zq-QZAwAAAAAAAACV68WyKd9kixq8a0DuxdFRfgAAAAAAAAARaPSsQ8x5Ub2iNdzhtk5QFAAAAAAAAAAazeGr_IH7JnnAgNEsYk5-cAAAAAAAAAAEeDYErd7QwzAMWeqUh1lyAQAAAAAAAAACoJ7RxaFVtYwQjzTDRX18rwAAAAAAAAAFaiJGDUDQn3AwPNk1jr1dCQAAAAAAAAAFTQHHjILJSS1Y0hdQ8MODHQAAAAAAAAAChjAyoRprP-ATzdRzIqim_AAAAAAAAABP", "types": "CQMnBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "groLCJHfCqtzXI7Qhmsv_Q"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAAByH3Nam0N9mRIAZOe993J4YQAAAAAAAAAYe7YYWaQTMh8P2PCVzA2a8gAAAAAAAABE_p12Y0DOk4cFEn5gGz9psgAAAAAAAAAE", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0PD_9Kt7GRM8ROsCkbenrA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAACLHmuH5pCGXma5ToZjJwiZHAAAAAAAAAC2iQ3-U2pFJokP-jlw4Yr9FQAAAAAAAAAJnxv9fnyzQgRP5y-sCtMEGwAAAAAAAAAA", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cdPXuSrcc-e7Xc6Ft_0zLA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAQ2qk3SUFPdBYwVkFMX3ttpwAAAAAAAAAFsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJnsN5oeLyhaU3rc_4TQfhXgAAAAAAAAALgvQGUUGWUJbOOm8Vi63fqAAAAAAAAAAGpIlQHYzUvHZx6w5Rtmyd8QAAAAAAAAAGQUT-nNY12PdX-wWYy6XdlgAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJnsN5oeLyhaU3rc_4TQfhXgAAAAAAAAALgvQGUUGWUJbOOm8Vi63fqAAAAAAAAAAGpIlQHYzUvHZx6w5Rtmyd8QAAAAAAAAAGQUT-nNY12PdX-wWYy6XdlgAAAAAAAAADm61OiFi7ipeTEQpdgB4G8gAAAAAAAAAFNAXh3zuU0dO2_vEc-9d1QQAAAAAAAAANSTqKraHdt8yd9UD4ZkdTcAAAAAAAAAAEj5zlUQh7CKlo9dGRL_ZvEwAAAAAAAAAOg5HeBvry4ntf4CELUL7EBgAAAAAAAAAVtwD_eFnsb6PKOPqe4ScuPQAAAAAAAAA5twD_eFnsb6PKOPqe4ScuPQAAAAAAAAA5twD_eFnsb6PKOPqe4ScuPQAAAAAAAAA5twD_eFnsb6PKOPqe4ScuPQAAAAAAAAA5twD_eFnsb6PKOPqe4ScuPQAAAAAAAAA5twD_eFnsb6PKOPqe4ScuPQAAAAAAAAA5twD_eFnsb6PKOPqe4ScuPQAAAAAAAAAq", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mPGghmgrDHP1rcsSECHRTQ"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAAKk_PL9Bd3XIiGWasJdN8trI5tgAAAAAAKiuEL9Bd3XIiGWasJdN8trI5tgAAAAAAKi83L9Bd3XIiGWasJdN8trI5tgAAAAAAKgETL9Bd3XIiGWasJdN8trI5tgAAAAAAMLrkL9Bd3XIiGWasJdN8trI5tgAAAAAANJrPL9Bd3XIiGWasJdN8trI5tgAAAAAALIWXL9Bd3XIiGWasJdN8trI5tgAAAAAALJiFL9Bd3XIiGWasJdN8trI5tgAAAAAALIw-L9Bd3XIiGWasJdN8trI5tgAAAAAALQmLL9Bd3XIiGWasJdN8trI5tgAAAAAALRipL9Bd3XIiGWasJdN8trI5tgAAAAAAKpvrL9Bd3XIiGWasJdN8trI5tgAAAAAAKqngL9Bd3XIiGWasJdN8trI5tgAAAAAADQMCL9Bd3XIiGWasJdN8trI5tgAAAAAADRlmL9Bd3XIiGWasJdN8trI5tgAAAAAADRYrL9Bd3XIiGWasJdN8trI5tgAAAAAAAMQXL9Bd3XIiGWasJdN8trI5tgAAAAAAALvg", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "42l0GjzGJUnr2atPhaQbjw"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp2HVF-fC6bGu1PSwJc2kzOgAAAAAACHAL2HVF-fC6bGu1PSwJc2kzOgAAAAAAHHBe2HVF-fC6bGu1PSwJc2kzOgAAAAAAHEJ82HVF-fC6bGu1PSwJc2kzOgAAAAAAHEEy2HVF-fC6bGu1PSwJc2kzOgAAAAAAJcMj2HVF-fC6bGu1PSwJc2kzOgAAAAAAEKYD2HVF-fC6bGu1PSwJc2kzOgAAAAAAEKFP2HVF-fC6bGu1PSwJc2kzOgAAAAAAEI2W2HVF-fC6bGu1PSwJc2kzOgAAAAAAEIU_2HVF-fC6bGu1PSwJc2kzOgAAAAAAEJbZ2HVF-fC6bGu1PSwJc2kzOgAAAAAAEI2W2HVF-fC6bGu1PSwJc2kzOgAAAAAAEIU_2HVF-fC6bGu1PSwJc2kzOgAAAAAAEJOH2HVF-fC6bGu1PSwJc2kzOgAAAAAAHShl2HVF-fC6bGu1PSwJc2kzOgAAAAAAEKBL2HVF-fC6bGu1PSwJc2kzOgAAAAAAEI2W2HVF-fC6bGu1PSwJc2kzOgAAAAAAEIPm2HVF-fC6bGu1PSwJc2kzOgAAAAAAEI2W2HVF-fC6bGu1PSwJc2kzOgAAAAAAEIen2HVF-fC6bGu1PSwJc2kzOgAAAAAAEI2W2HVF-fC6bGu1PSwJc2kzOgAAAAAAEIU_2HVF-fC6bGu1PSwJc2kzOgAAAAAAEJon2HVF-fC6bGu1PSwJc2kzOgAAAAAAEHGk", "types": "XQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "IQq1JK2G9xiQPt83Q51OKg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHfZKXT4fd_WKeR1cE-hlLelCQAAAAAACy8_rXT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-hZXT4fd_WKeR1cE-hlLelCQAAAAAACy9SHXT4fd_WKeR1cE-hlLelCQAAAAAACgaWJXT4fd_WKeR1cE-hlLelCQAAAAAACgUTFXT4fd_WKeR1cE-hlLelCQAAAAAAChz7k6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_NQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaQ66tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZmt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKTe36tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ5Qy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ4C76tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ0CJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYK2", "types": "FQMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vUd7LUOlEzT1w32bH1zYbw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zFwamFTlz7hC5kbQ7mVixg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAACceDtEsbyqaPA8nODsaXH2CwAAAAAAAAAjdb7h5t6lXZ_2CL1N4DXU6AAAAAAAAAAOcAnVCtwTUMiPtQhyaFTtfgAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAU3B2E3nnskNJUgYVRkMUbJAAAAAAAAAACHwm3pNPC4Wa3xFabNuzwcgAAAAAAAAAROVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAAwR4O21YPz5WkGUKdaZ1xVrgAAAAAAAAA2pnx0xwNPdcZ32kceiz_BpQAAAAAAAAACPwR81tCEw_YLoJoW67EqfwAAAAAAAAB3", "types": "CQNGBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LBxVuiVVD4GLWbZZeutgXg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAACz-CA2HwYxn7uXuJvRLWceDgAAAAAAAAACo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAAAKzk_PAPIluouMAlyxqI2lSwAAAAAAAAALSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAAAA", "types": "CQNABQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "qAcbgsr0X5NLkv_zThT8rg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCYyXT4fd_WKeR1cE-hlLelCQAAAAAAEOC7XXT4fd_WKeR1cE-hlLelCQAAAAAACwzdbXT4fd_WKeR1cE-hlLelCQAAAAAACwXETXT4fd_WKeR1cE-hlLelCQAAAAAACipi9XT4fd_WKeR1cE-hlLelCQAAAAAACipFEXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyde", "types": "EQMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Pf0O000DjUY4tHzEEx9PhQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFVZ1cEvvhuguaGYCmGWrnWRz1QAAAAACFWVa", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "QOPhdTjHfn2kEhGrtCRUcA"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp2HVF-fC6bGu1PSwJc2kzOgAAAAAACHAL2HVF-fC6bGu1PSwJc2kzOgAAAAAAHHBe2HVF-fC6bGu1PSwJc2kzOgAAAAAAHEJ82HVF-fC6bGu1PSwJc2kzOgAAAAAAHEEy2HVF-fC6bGu1PSwJc2kzOgAAAAAAJcBk2HVF-fC6bGu1PSwJc2kzOgAAAAAAGakI", "types": "TAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2ZbS1IKLswPXFG5ZyWePtg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vCpXT4fd_WKeR1cE-hlLelCQAAAAAAC-n73XT4fd_WKeR1cE-hlLelCQAAAAAAC-oREXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LY", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "l3L_ebDL0ZOLUst0GsrMiQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACfZYJrmLEjznzm7GSiXKeulgAAAAAAAAAMjH-Kh7eMoVAEa99gkdQ-YQAAAAAAAAAWvtOmTuUGvKYiQRK_O9kHuwAAAAAAAANh_qijKAoIrj192_UIiHcBhwAAAAAAAABj_coc0yQmibHSYbczgpafrwAAAAAAAAAFm-i3pqvNoPRjOJ3b3sEiiwAAAAAAAAAEs9MntjdT5XiNr-rHeRcTvQAAAAAAAAABdJ2sHJS_vHp5BLfliwHuTQAAAAAAAAAEi_JW0SMBS0hXEJxPvmBaaAAAAAAAAAAEHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAHX_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAgkM19RKDjtUYg_445-nhKCQAAAAAAAAAUx8wKfSxfz0olWikyS-1x_gAAAAAAAAAb", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RT76Wy4E7w3R6MwMto44Tw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAC1On5Z3CKaS4aU08RhYA19y5ITQAAAAAC1-PAZ3CKaS4aU08RhYA19y5ITQAAAAAC1-v-Z3CKaS4aU08RhYA19y5ITQAAAAABwbWyZ3CKaS4aU08RhYA19y5ITQAAAAABwZK8Z3CKaS4aU08RhYA19y5ITQAAAAABvwEw", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UL4wClyozacv4jOW1_IMFg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAACceDtEsbyqaPA8nODsaXH2CwAAAAAAAAAjdb7h5t6lXZ_2CL1N4DXU6AAAAAAAAAAOcAnVCtwTUMiPtQhyaFTtfgAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAU3B2E3nnskNJUgYVRkMUbJAAAAAAAAAACHwm3pNPC4Wa3xFabNuzwcgAAAAAAAAAROVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAAwR4O21YPz5WkGUKdaZ1xVrgAAAAAAAAAak9mnaRclHZhhpFF3LBU5TwAAAAAAAAAm-oQ9VuCOQPeW_T8CGKqMgAAAAAAAAAAGNJGrW12l4VtfBBiRfaaqLQAAAAAAAAAhWHc6TeyRQEqs6LkNUiVKVQAAAAAAAAAzE7Si9KeNnLhexcT10oHiFQAAAAAAAAAX", "types": "CQNJBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "U_9ojT7eeTDev-ZVdw6XKA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAABzzXvjOvDFEHH50WhZ8-7e_gAAAAAAAAAMxhOAoPbUvqtSdEcy7uoPXwAAAAAAAAAFeXimxJw4055xWDImg8DzoQAAAAAAAAAq5Dz1NwJhW8tUTolfpVyg2gAAAAAAAADhGmYMrqcymh2Li0OrBJcg8AAAAAAAAABtD2YgRHuWqhQ-ZOYMf9DAFQAAAAAAAABpiM8LSJ_0DrAH3j2_fhBWQwAAAAAAAAAIKYUKYe5FJokP-mDuLYX4tQAAAAAAAAAJi2OZ9-P_pjOFSV36486xoQAAAAAAAAB7", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "M2lZwCQQvCZZ928HBtbMFQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAFJfinhoQfoECf6Q4HPC08YkAAAAAAAAAAqcn_0Dt8F1JGwazqn6MVOnAAAAAAAAAABDnuglYjSP_yHnOeoUpC43wAAAAAAAAAB3v2TU8A01iCPuVWdiUVv8QAAAAAAAAApL-_tQCaPRoXtazKap89hsgAAAAAAAAAOZhtNJYoOwm655zArM3sIngAAAAAAAAAmYgvoZ6DleZJd_ACRhoNarAAAAAAAAAACUT4r1woqEdacoKDuZFw-vgAAAAAAAADtUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAmQVeLj_oPnEjl_jKTv8aQqAAAAAAAAAAlUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAxrp3sprQtO8hOwekVupMQwgAAAAAAAAA0XoNqQsMeesgJkRR-qQrvugAAAAAAAAAuWNSWOp_4Iqt56ZuW1XrPJwAAAAAAAABnwwh143L4mTM-msioEjaOPQAAAAAAAACOpBAXMFgFarqt_e84PodhnAAAAAAAAAAUtIoSY_1vT_j29F717EmR3AAAAAAAAAAPRZ01NrWKTMDuXelOk2KnKQAAAAAAAAA168iZXv_8xxb53ICXrvQepAAAAAAAAAGhCR_orhXYgPjlsF3bAh1bcAAAAAAAAAAQXoQBAZDyQM5EalVK0DT7vwAAAAAAAABIHHvO0O_M7qxq_PkVq5p74wAAAAAAAAHmtKRI47gaUATre6hVOVRyHwAAAAAAAABCmGc5SCx8bcB0yyOsBwmj6QAAAAAAAABwoAl3S1UdiCfcB1msAHRleQAAAAAAAADYZgROkWlvV9ujJA-aNSGhMwAAAAAAAABA5VZIXKdThz-hZwdLu0KVfwAAAAAAAAAKyzF6hkXAWj2zsycLYYGV0AAAAAAAAAD7hVikmGjXzRnSmmMyJkgF7QAAAAAAAAAA", "types": "CAMmBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "QSrekVp3Aqc_-844xrh8BQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgb3scEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxjVcEvvhuguaGYCmGWrnWRz1QAAAAACEN9J", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hzufBopUmVOahF8dluG49Q"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACRuzKgtQ4kMk_MBWrPUAFqVnYywAAAAACRvAEgtQ4kMk_MBWrPUAFqVnYywAAAAACRvT8gtQ4kMk_MBWrPUAFqVnYywAAAAACMCnBgtQ4kMk_MBWrPUAFqVnYywAAAAACbQAkgtQ4kMk_MBWrPUAFqVnYywAAAAACbQYrgtQ4kMk_MBWrPUAFqVnYywAAAAACbM7NgtQ4kMk_MBWrPUAFqVnYywAAAAACbMVNgtQ4kMk_MBWrPUAFqVnYywAAAAACbMpGgtQ4kMk_MBWrPUAFqVnYywAAAAACbO04gtQ4kMk_MBWrPUAFqVnYywAAAAACRlPUgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4WlgtQ4kMk_MBWrPUAFqVnYywAAAAACG2jCgtQ4kMk_MBWrPUAFqVnYywAAAAACG2ppgtQ4kMk_MBWrPUAFqVnYywAAAAACG3XcgtQ4kMk_MBWrPUAFqVnYywAAAAACGyc9gtQ4kMk_MBWrPUAFqVnYywAAAAACGvukgtQ4kMk_MBWrPUAFqVnYywAAAAACGx3EgtQ4kMk_MBWrPUAFqVnYywAAAAACGvukgtQ4kMk_MBWrPUAFqVnYywAAAAACGx3EgtQ4kMk_MBWrPUAFqVnYywAAAAACGvukgtQ4kMk_MBWrPUAFqVnYywAAAAACGx3EgtQ4kMk_MBWrPUAFqVnYywAAAAACGvukgtQ4kMk_MBWrPUAFqVnYywAAAAACGx3EgtQ4kMk_MBWrPUAFqVnYywAAAAACGvukgtQ4kMk_MBWrPUAFqVnYywAAAAACGx3EgtQ4kMk_MBWrPUAFqVnYywAAAAACGvukgtQ4kMk_MBWrPUAFqVnYywAAAAACGx3EgtQ4kMk_MBWrPUAFqVnYywAAAAACGvukgtQ4kMk_MBWrPUAFqVnYywAAAAACGx2V", "types": "IAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "qoVNc9mYtN0tTHaFUhrbZg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrpJcEvvhuguaGYCmGWrnWRz1QAAAAACEOE7cEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEMu1", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Y4kaKxJi1BAJ4hu7KqO3vA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsrmdcEvvhuguaGYCmGWrnWRz1QAAAAACsr_ccEvvhuguaGYCmGWrnWRz1QAAAAACEKC5cEvvhuguaGYCmGWrnWRz1QAAAAACEMme", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "pmPfyylK5ZSwvmJMbfWD6g"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAASThG33AeFzjAN_ipcLLd1KwAAAAAAAAA66F0_K3vb-3sEd5CAOKq0QgAAAAAAAAAF1Hl4c2ZSJL2yCzY8yWfLCgAAAAAAAAAyuYzYTGLU4u_wBpWSds1IVQAAAAAAAABSVRveQjGO8lwrNUZEmH77BwAAAAAAAACJiQ3-U2pFJokP-jlw4Yr9FQAAAAAAAAAJ", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "c2cShwXB6kWnqKAhzu4c2g"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZxyf5INnJibBb8rT_yMcsAAAAAAAAAAEe6HlflPyKAlNlF7JPJCNJQAAAAAAAAFLEe5ZDKMHiVCtP6qAhF9CEQAAAAAAAAGtVyubPqZIpIsaGdq5yyQHTAAAAAAAAAAHH3I9lsKeM021aDJgbYYYAwAAAAAAAABHL6IPi9cG-hWDQ-8_WE6FFQAAAAAAAABdBLpe-z4Yd5pwaMKR_BsaGwAAAAAAAAAMQJL-SfxFsSlqFyMufqU3CAAAAAAAAABceOzzLIU2TSEN-nL8WNPcPQAAAAAAAAAQzcDe-AWheYxyPE1J1pvsUwAAAAAAAAAFAUK9d8NUT-13gC6FtlSmKAAAAAAAAAAQVHW64ADdKWEeKDNfyNMi1wAAAAAAAAEV-jPUB-Rd5LS45isiTdEjugAAAAAAAABQIIDbja4IvkQtGrP28QyvpAAAAAAAAAAJ3H6017qNLmhn4DKdcizx1QAAAAAAAAALnVrTRc3fHVfAm0SCrf0eOwAAAAAAAAAGAUK9d8NUT-13gC6FtlSmKAAAAAAAAAAQVHW64ADdKWEeKDNfyNMi1wAAAAAAAAEV-jPUB-Rd5LS45isiTdEjugAAAAAAAABQIIDbja4IvkQtGrP28QyvpAAAAAAAAAAJ3H6017qNLmhn4DKdcizx1QAAAAAAAAALnVrTRc3fHVfAm0SCrf0eOwAAAAAAAAAGrACFiisEDT-b6Twii8Yc6AAAAAAAAAAF2ZLt6QSDm53uXJtEjRk5cQAAAAAAAABLFEdkdGoY4hlyAih8cHpaLgAAAAAAAAAESeSHb4DYVqNQaGYUHfay2QAAAAAAAABVGGHOuWs-kNsU0GtQ48oWGgAAAAAAAABOSeSHb4DYVqNQaGYUHfay2QAAAAAAAABVGGHOuWs-kNsU0GtQ48oWGgAAAAAAAABOSeSHb4DYVqNQaGYUHfay2QAAAAAAAABVGGHOuWs-kNsU0GtQ48oWGgAAAAAAAAAhgfDtycqvk8dYSmcHzDcKGQAAAAAAAAACdvtZA9fkCas7K9O6I6PTHQAAAAAAAAAFXC6L15Kt514imYVx1Y69DQAAAAAAAAAOpw39aHPM6ZVCFZXiDRezsgAAAAAAAAAFXezp9oJLq6Ve9ThWO7F4gQAAAAAAAAAA", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ggpnP179y3OOCr0xd25vKQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxGI7XT4fd_WKeR1cE-hlLelCQAAAAAACxGRzXT4fd_WKeR1cE-hlLelCQAAAAAACxGYOXT4fd_WKeR1cE-hlLelCQAAAAAACvPQOXT4fd_WKeR1cE-hlLelCQAAAAAACvHJRXT4fd_WKeR1cE-hlLelCQAAAAAACvDNq", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "I0SF85fInDyZrP-7z-UR5Q"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVuttUA2IAZoyKZAgCzy0iDQAAAAAAAAAIpokhquvW9ooLc3LbDvwZ4AAAAAAAAAARXasdzsgYzXeaIf1qB6YHcQAAAAAAAADmPFj10tn7Q5v6DtY9a--2yAAAAAAAAADTXQF-stwqMiArQgxmCuIBPQAAAAAAAABICdiM_N4hdaPvSJwq3P6azwAAAAAAAAAENtCGtgNOSKjf89hTQ9pKCgAAAAAAAAAM1dtimHb35RfEFCzsXx56LgAAAAAAAAAHCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAEhQ2OXkHYZRXh3_WLXzxSBAAAAAAAAAAEqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYMn0lhQNjNLc2TiLs5CI5twAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFdciEg2zVAoapt7MT0cXoNwAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAADrAotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAGJ1xBvehWaFQefKkuHjb2hUwAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJFcHGeTZbDG8jQ9sbtbngcAAAAAAAAAAcs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFIAf9e80wW0ROOv48VcVi-AAAAAAAAAAcGY5WEW77dofWJpcPe0twUgAAAAAAAABEkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4pVlUGQpw_Cq0LEtbbly5dAAAAAAAAAAkN1WyTlGFxfHgSyYQ3aeHDQAAAAAAAAAOYSP8Ib_W13QEw_Ivysg7FgAAAAAAAAFyn0UYwZH5py59Xu9gAaxkrwAAAAAAAABAm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl5iN7OCAj-2IgmFqLvCWrTwAAAAAAAAESap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlJdvIaoH8miVW9zaDiDOZJwAAAAAAAADSap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlhW8OwmmxjJYCeXfLTZy__QAAAAAAAAFLap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlw4mT2NPQOW-Mg0N_xZsuzAAAAAAAAADgap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlRlK4jZbFueXylWP1GNjNSQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlL_sAxM5NHsnYQp22GwDx8gAAAAAAAABwap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAye4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJsVRH8uyfnyQixTABDkZaEgAAAAAAAAAkoIYS8oKywxk33PzxrExveAAAAAAAAAAZETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASETEs_vJj_-q4WFpNiG_LRQAAAAAAAABDs4lxyv29UjBRbk4Egon88gAAAAAAAAAHrV1JNblxRI5fLicyinWLbQAAAAAAAAANAzxlhtMMySYrabepp4O8EgAAAAAAAABMrmSs41XtF0_135XyexZ4IQAAAAAAAAAEoIbcZroK0mbxpVqmuMaywgAAAAAAAAAG41OrzWvK6lbOz1-ffS5eNAAAAAAAAAACBdRp2_G2D_8XBU2CKdGO6gAAAAAAAAAOZGe78UTOen8Hu0p3Avi2EQAAAAAAAABHn578KwIsKOJTDafL19o8GQAAAAAAAAACAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CANwBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "brsCVrBbnkBSSlL8IvWUew"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t3YXT4fd_WKeR1cE-hlLelCQAAAAAAC-wI9XT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_VkXT4fd_WKeR1cE-hlLelCQAAAAAACgUmmXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgc2U", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "X6LF29qeuW-SFBwoJhTnAQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmrvXT4fd_WKeR1cE-hlLelCQAAAAAACgbtC", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "b7p0ctDc0Lo9ZQ-Z1yf35Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCYyXT4fd_WKeR1cE-hlLelCQAAAAAAEOC7XXT4fd_WKeR1cE-hlLelCQAAAAAACwznGXT4fd_WKeR1cE-hlLelCQAAAAAACwztK", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "O7vHLJCZ_lbAVkrm4A_Fwg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz01", "types": "CQMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "um0F7pJ4JjWiEKxrt7WuOQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIBHkZBcmNHMjIQUGuyLAiYwAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACTXTxOwy8uhdU1jeoZU7T8QAAAAAAAAAE_btj02zrVOB5yHsjoNQahgAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAWQxy7B7Nr9PFo52Y5q5lwVgAAAAAAAAAtmdtLbTGS2m1_yRWrZMRMMwAAAAAAAABDfuEHn8q60FYe5JGUD_z4LgAAAAAAAAAI_m0BaB7Njen0iXAlXXyURwAAAAAAAAAU3V1Tx_6BXumlpLFbwNqGtAAAAAAAAAAII4XCZmzAbOlEjitOFAEUSwAAAAAAAAACdbhXX9SOZZMT1BSVMajbhQAAAAAAAAACbxC2U9ct9MOP9GdG6riRpwAAAAAAAAARYHfGBRgNKeVxiy8hLQet7QAAAAAAAAAhdbhXX9SOZZMT1BSVMajbhQAAAAAAAAACbxC2U9ct9MOP9GdG6riRpwAAAAAAAAARYHfGBRgNKeVxiy8hLQet7QAAAAAAAAAhdbhXX9SOZZMT1BSVMajbhQAAAAAAAAACbxC2U9ct9MOP9GdG6riRpwAAAAAAAAApYHfGBRgNKeVxiy8hLQet7QAAAAAAAAAhdbhXX9SOZZMT1BSVMajbhQAAAAAAAAACbxC2U9ct9MOP9GdG6riRpwAAAAAAAAARYHfGBRgNKeVxiy8hLQet7QAAAAAAAAAhdbhXX9SOZZMT1BSVMajbhQAAAAAAAAACQmO1C8276OYdXp97CXS3VgAAAAAAAAB3hw6jP6DYEftnZzIDQYA-bwAAAAAAAABifCahNjmPHeBO_-ZWbkUJdAAAAAAAAAATJTsyAcrLrEZPJGcLGjMJIQAAAAAAAAAOLBEThMEoK9u7sS_APVlMMAAAAAAAAAAk3R5WdMy-PzbXDBwRtogT5gAAAAAAAABe3k0zXk7dxW89N_3czY0RZAAAAAAAAAAA", "types": "CAMnBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OScqsQkf146vVs8sTxoPBg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYChGc_KlbDChxhbLYz-xpPwAAAAAAAAALOmzVUgwY22EPoqShuZpT1wAAAAAAAAAByCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIFxUii1Qg0ODP7PNbShAMtgAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACXDgohratZUQwpKekym6X1AAAAAAAAAAEhYpB2gs86zTUdl1LmAGlfQAAAAAAAAAUmjK-IG4-ETGScbFeIcowAgAAAAAAAABj39Gbufo2_bMKjFgin1seqAAAAAAAAABz5kQrz31-vtpLpHkSNl9lFwAAAAAAAAG9w0e12mQXLU6z_nU7sQyVgAAAAAAAAABBTEeNHsvM_HbT0J1Ha9ikXQAAAAAAAAA8ECHV7woLui-LgJzJ_Db5wQAAAAAAAAAFSVbN9lR22448Ba__VWnVkQAAAAAAAAAXWNCauDs9dY-5HAHHBWp9KwAAAAAAAAACnxBVaHmISDDtSUWBhVotmwAAAAAAAAADoJZaXu4GMva6ioQRLjBA1AAAAAAAAACLZPQwbuCECd-hRvtNHzeV5wAAAAAAAAAi0YNPfOkv7TAAnafMtZqNkgAAAAAAAAAEdD4p9P31y_X_TwW0CA_rJwAAAAAAAAAUcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACvuAJ7Ejp2OmtSJu2OeVEBYAAAAAAAAAA4okBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABYMgCpDbfqkuF0Au3Mi2jaeQAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADNq5-VNNWJnEe4GvJK3_qvJwAAAAAAAADF4J4WxzKvOwTg2PxoPnS9CQAAAAAAAAEJHr4PYZ-sL6e-tu-94q7YcgAAAAAAAAEX09pLhX8Ysxadrvlyzhew7QAAAAAAAACm4CZPHF-aehJgVB8TpitL3wAAAAAAAAAk", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ThZy4U6L2fitmoMYc1TvCA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgbukcEvvhuguaGYCmGWrnWRz1QAAAAACXxyncEvvhuguaGYCmGWrnWRz1QAAAAACETWr", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hNaLAj6XzTM6FnNZFoA8PQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAABvZKLj_deYRtPDewbXBnoroAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAwy86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAANS_CTRBRzwj9_syNwY5rEXHAAAAAAAAAB3nZ_TLoQXzn9RYaGn5N0v4wAAAAAAAAA2414vwxwFz0HV2Ku4dzYYowAAAAAAAABPlF0402c3xDTaGy1WpLy7vwAAAAAAAACHmElwt1Dp4YSxqVbIbt9WBgAAAAAAAAAElMhfA8E2jb3TCQnQMEboyAAAAAAAAAALKFGBFnajTppUPwKMAfWXvQAAAAAAAAAXeFaXX7H_gmfoLAN8WX-xDQAAAAAAAACOcqdSAx5Uej3ncVA_SUVjsQAAAAAAAAAMPrNII2l46oclr0RXWTYMUAAAAAAAAAAE93KKtPDSfPMvEhxj9OzJ1gAAAAAAAAAHsWCnrMF0Arlnv58qX-TThwAAAAAAAAAB7mqPc5ch4cFcQJn3b5WHKQAAAAAAAAAFIY3kOFBxddrJzoZrzargTAAAAAAAAAAAQlc5cqX0MBEMLoVTH5TCOAAAAAAAAXgw", "types": "CAMqBQED"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "S5e4O7lBx37gz0fcZIzqtw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChksK", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1S82rIl8qMc5ca8_oVmBxA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAdLJM8DDAjVJl721y2vxKHGSBegAAAAAAdFID8DDAjVJl721y2vxKHGSBegAAAAAAdJ0N8DDAjVJl721y2vxKHGSBegAAAAAAckfA", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3mOJ_bZHbI9BCSH7EmMPpQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVP4GdI6f6aagjBxBAKz-KIgAAAAAAAAAMqd26ee2y8slhneyPRIcQAgAAAAAAAADEwKREEYJF8V2B2guAeJRSCwAAAAAAAACoWsBETJrPecSrGYvg781P3AAAAAAAAATRVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFh5U_1XvNyeon9l2W-4YQpQAAAAAAAAAsABic3l15LWzfxEDtDgq1DQAAAAAAAABd655cFkYo375T8NGzpy-aFwAAAAAAAAAXhve4jX92AzYM2N-JeQNG2QAAAAAAAAApXxw-Md0tF-Ko5-6PzeDzxAAAAAAAAAAUCivQS6jnSlhY0fTKds9DfQAAAAAAAAAG3EjttOooo8WfaORlLIDB5QAAAAAAAAB6GfIe06eeNVYGpZGn4T9LBwAAAAAAAAAEeCBaa3YUH5XD1W7qhQoaWgAAAAAAAABCRPFiojmndeu_4nmb3OGehAAAAAAAAABqOpWxOyeZPbB0kZpPoCN3dgAAAAAAAAAOJlj-_pvqSdlHmJAw2MF6mwAAAAAAAAArmIhHJLRWLV08bvGOk_MaUQAAAAAAAAAIOOfgbFUyyyBf7NiIDQweHAAAAAAAAAAidLwWk1CGjdl0nWT4XrDcdgAAAAAAAACSkpBi8LFR3RTjSJqFuljOuQAAAAAAAAAAWpojVIMMfjg1gPX4CFe0BAAAAAAAACU8Ht2yyHtMhQP9uhMxLoNAEgAAAAAAAFO7Ht2yyHtMhQP9uhMxLoNAEgAAAAAAAEtmHt2yyHtMhQP9uhMxLoNAEgAAAAAAAMz7Ht2yyHtMhQP9uhMxLoNAEgAAAAAAALgDHt2yyHtMhQP9uhMxLoNAEgAAAAAAALVA", "types": "CAMgBQYD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_Bpu6sk-wSCuBeOPMU3UfA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMabPXT4fd_WKeR1cE-hlLelCQAAAAAAEMasIXT4fd_WKeR1cE-hlLelCQAAAAAAEMceTXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAANp-d6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBo56tVKI4mSYDEJ-ABAIpYXcgAAAAAAlxrc6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlxhE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlxcj", "types": "EQMLBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "pbDDnOl7mpHBzobc65EPtw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--hXXT4fd_WKeR1cE-hlLelCQAAAAAAC-9YXXT4fd_WKeR1cE-hlLelCQAAAAAAC-i2cXT4fd_WKeR1cE-hlLelCQAAAAAAC-iiEXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LY", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bSTMPTAp2IvGdLqbSdMiRQ"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJM4EgtQ4kMk_MBWrPUAFqVnYywAAAAACJNBcgtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfLgtQ4kMk_MBWrPUAFqVnYywAAAAACJGrEgtQ4kMk_MBWrPUAFqVnYywAAAAACJECEgtQ4kMk_MBWrPUAFqVnYywAAAAACI85wgtQ4kMk_MBWrPUAFqVnYywAAAAACI9ukgtQ4kMk_MBWrPUAFqVnYywAAAAABsxWagtQ4kMk_MBWrPUAFqVnYywAAAAABsv09gtQ4kMk_MBWrPUAFqVnYywAAAAABskOEgtQ4kMk_MBWrPUAFqVnYywAAAAABr-YMgtQ4kMk_MBWrPUAFqVnYywAAAAABsAm7", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kXmrwjMmwWaVC_ReuC4ACw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_W56cEvvhuguaGYCmGWrnWRz1QAAAAAD-XSK", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Ch9aKMSaNgTSD6tnnggptg"}} +{"Stacktrace": {"frame": {"ids": "c6lwtZBG2BzNKGtSyzLrTAAAAAAABCWpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGc6lwtZBG2BzNKGtSyzLrTAAAAAAABBZWc6lwtZBG2BzNKGtSyzLrTAAAAAAABWVUam-Z0RfUVY0oYK5VXRDk9wAAAAAABeu4am-Z0RfUVY0oYK5VXRDk9wAAAAAABeopam-Z0RfUVY0oYK5VXRDk9wAAAAAABeePc6lwtZBG2BzNKGtSyzLrTAAAAAAACN4sc6lwtZBG2BzNKGtSyzLrTAAAAAAACNX3c6lwtZBG2BzNKGtSyzLrTAAAAAAAB8gPam-Z0RfUVY0oYK5VXRDk9wAAAAAACi24am-Z0RfUVY0oYK5VXRDk9wAAAAAACizSam-Z0RfUVY0oYK5VXRDk9wAAAAAAA3tw", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jugbV3zZUNUFdWf4_ZIyzA"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHba4rFFPORY8_4FvK9QaA3QUQAAAAAAGRIW4rFFPORY8_4FvK9QaA3QUQAAAAAAGRJh4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp4rFFPORY8_4FvK9QaA3QUQAAAAAAFP5HUJmIMEc6K8gJ39NHYaD0WwAAAAAAB_NwUJmIMEc6K8gJ39NHYaD0WwAAAAAACLdjUJmIMEc6K8gJ39NHYaD0WwAAAAAACOMoUJmIMEc6K8gJ39NHYaD0WwAAAAAAB-EOUJmIMEc6K8gJ39NHYaD0WwAAAAAAEPdz", "types": "KgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "arVmURC-PhwXXHbNdhWNkw"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKTEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKu8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfdgtQ4kMk_MBWrPUAFqVnYywAAAAACJEnagtQ4kMk_MBWrPUAFqVnYywAAAAAB1YosgtQ4kMk_MBWrPUAFqVnYywAAAAAB1YgbgtQ4kMk_MBWrPUAFqVnYywAAAAAB1KskgtQ4kMk_MBWrPUAFqVnYywAAAAAB1LIGgtQ4kMk_MBWrPUAFqVnYywAAAAAB1IpYgtQ4kMk_MBWrPUAFqVnYywAAAAABvM6NgtQ4kMk_MBWrPUAFqVnYywAAAAABvOWIgtQ4kMk_MBWrPUAFqVnYywAAAAABr5vkgtQ4kMk_MBWrPUAFqVnYywAAAAABr74MgtQ4kMk_MBWrPUAFqVnYywAAAAABsAOPgtQ4kMk_MBWrPUAFqVnYywAAAAABsAoq", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "i6rXY5g33CZQwJKT42mfOA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADIP8hgtQ4kMk_MBWrPUAFqVnYywAAAAADIPcCgtQ4kMk_MBWrPUAFqVnYywAAAAADINb3gtQ4kMk_MBWrPUAFqVnYywAAAAADIOB8gtQ4kMk_MBWrPUAFqVnYywAAAAADIORzgtQ4kMk_MBWrPUAFqVnYywAAAAADIj9mgtQ4kMk_MBWrPUAFqVnYywAAAAADIkqNgtQ4kMk_MBWrPUAFqVnYywAAAAABrE9Y", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "y6Ek-APmesaFeQOrOWBNcw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAKGFseY0uix2hxT0Di8k7-3AAAAAAAAAATslf6t7FJIQoDjMJN42BVyAAAAAAAAAABFg2KiEq3-QS_hoWS2OekUAAAAAAAAAADWt0sf_JgSqOTKaBcf1zgawAAAAAAAAB7FzJF8qZ49M3tzNcHAYKOpwAAAAAAAAAHcx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAARcx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAARcx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAAjXsKktcRkLp4u9hmAY2J0NgAAAAAAAACPeZDLzxoM-uAmR0oUiILRRwAAAAAAAAAgF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdGddyn5jf9gijjM2MMokVAwAAAAAAAAAICbaXrSWy6QpifdaKY580cQAAAAAAAAAG8hquOE5UjuqbQKed-OMfiwAAAAAAAAARWNHUiu4BFqRVmqF_mtCsFQAAAAAAAAAD3r-tlbWKH7Bh4O96M6j3bgAAAAAAAAAW1p1bNbRiF-c1H0cYOfp-YwAAAAAAAAACd42kcgsfWYVSrmwZHQBrmgAAAAAAAAAfsvTLBaq-js4dv9XNweS7QgAAAAAAAAAA", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9CvogPnKVfmAfQ3JOywbDg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAAwR4O21YPz5WkGUKdaZ1xVrgAAAAAAAAAayQDYDWiyDEgJMgGvgsz9TQAAAAAAAAA25R-yx7MYDZ-mt3l2_RLRhwAAAAAAAABFp9UR3btTZUo1MztbkeIkOQAAAAAAAAALZICRnstTjqeSOkLK1jp-HwAAAAAAAAAJ34fB7qb3OTOSVWKcGDOtPgAAAAAAAABl6X-l4zSEzV-o-Qo3loG8-gAAAAAAAABAAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CQMcBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "na0sHIn8j5m7z-gUWECZgw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qkwlUtuQNZ2cGuJOBjod69QAAAAAAAAAfFZcDTI2WOs3OMnDBC0zHmAAAAAAAAACHLh1LDdjDW07X-POqmR5FOgAAAAAAAAACGNh1_yXJg_PNE59rBU9I5AAAAAAAAABVn8yyz5vynZOoIo8vPU8CuQAAAAAAAAMJ7ptKTGTqqszfKDkDMhWl3gAAAAAAAADwlnD3yopDvkzAiMrBeI7uYwAAAAAAAAAThMqB3QsN4kPUoabYWOM36AAAAAAAAAB7vMKrZyiGBF1k3lROCgHb_AAAAAAAAACN0EOWuO-1I_jw1WEaYJ3N4QAAAAAAAAB4HQPonS5xAGkhY3iJmdbwHQAAAAAAAAANH0h6lzNvofKorvD8mKU50gAAAAAAAAAznHKyvd8kdc_8d3u5YjO8iQAAAAAAAAAF6K_-Y3cBMb_UtiT-qSh5dQAAAAAAAAANLV9G5ZxtEfojbVKjeQ9ZFAAAAAAAAAAE3yjtk_5JiUgc9hyftJPMGwAAAAAAAAAe1sRL8dzXntfZDPvtrM5MsgAAAAAAAACA6AQbnCXT2eS3YkGv2EB2QQAAAAAAAAAA", "types": "CQMTBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "H0qoQEMjjWZpnEfjZNkCrg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACOVgImNB_AseUMjfw9acwHDgAAAAAAAAE3LL2AmHorGMGLHFvQ3KWNRAAAAAAAAABye9VBoOb6ap6y2iBqQXec9wAAAAAAAACZfbT9eHA5tj6rUvxqpnewLAAAAAAAAADW-7qKHNvuu4dQ-NSojX-1nAAAAAAAAAAEQd2u0guBgJM1heDZ97a_eQAAAAAAAAAFm-i3pqvNoPRjOJ3b3sEiiwAAAAAAAAAEs9MntjdT5XiNr-rHeRcTvQAAAAAAAAAB", "types": "CAMTBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2lZJ-kLvc40hzTjbbuKY0w"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgFS", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "m-TLw09aGRdgf9CDh0PTQg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIZy27xNCwe4jKCqsA2srxVwAAAAAAAAAoLZeO9S9IXnalwT9Nl3ihfQAAAAAAAAASxWwq3BVQzbzp00-HYFOW_wAAAAAAAAB094QsDIL7bUk7Oxas7lNqGAAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJSYSSbioufiMK4TqEn24uLgAAAAAAAAAdXL_fwLkYkxkYcfgosK-fdQAAAAAAAAAQO_mHTPntGTw_EnF-rkI8XgAAAAAAAAAWiiLZnxbVRTQPtvWA0miuyAAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdfJIr5vQAn81_ytZBhz6xpAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAABduSa7rLKjwnZa9hewarfUgAAAAAAAAAIHMo9CJkBJDT98ldAVMcaFwAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAABo7CHWfexiCsBkFNUGKAEZBQAAAAAAAAAUun6cBO6D7gNVatBvdCHO5wAAAAAAAAAYQoAoMOC_3YVfZSHESnd5XgAAAAAAAAAfMi67eTmK5iEsm8KCuQ1K2QAAAAAAAAAfOwvv7Uv9Atb57QoKMPcHfQAAAAAAAAAVl1u0IFDookuutA2Rr8oiCQAAAAAAAAAeny-uPBreW2lvZbJRdHUc3wAAAAAAAAApey48KottxpUVWqD_C991oQAAAAAAAABEXYpTsYMYf11MacGhc3gTbAAAAAAAAAA58X2C10RJDGqRqJtqFUpE6AAAAAAAAAATIXlzZhpzADPtw1r86oHKcgAAAAAAAAAA", "types": "CAM4BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Vf8KgBBtHJH4x3GXNPL5LA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAAAd2oeSW9BMt2zZqP7i-3UsNAAAAAAAAAArZC4caaBbQcOc2WclRiklUwAAAAAAAAAMQJ-JVADSuuonf59sOKCy_wAAAAAAAAAPbYxYe2jgm-ZVQ1wIKl60VgAAAAAAAAA1B_TZlmg-i-MShObdqiYcyAAAAAAAAAFEzQ7T2Ylu7sX9-4z8Wys1vwAAAAAAAAAE", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "feiuP8u0H7n0s-U8-9B6Ig"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAAAdgzYxe-SHgukLEpCkawSk1QWAAAAAAAAhCTYxe-SHgukLEpCkawSk1QWAAAAAAAAhhxYxe-SHgukLEpCkawSk1QWAAAAAAAAhz5", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iC1eAzHeybST_8s2en8k-A"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAAB-5iAtVIILui-LgFNzk7nI4QAAAAAAAAAFTlb-NMKl40FjLIQMDGJfBQAAAAAAAAAXxme1OLUOxM6S5mWcBl9N_gAAAAAAAAAC8EydHzqUyrjotjG1DR1HjgAAAAAAAAADx7dNtL9l6yQnqIhb2iRkJQAAAAAAAABV85xU6UdOBVE-6wKT-DYa3QAAAAAAAAAcKlMLGpkm1pBrBLT79cviPAAAAAAAAAABzVZBdh_gmAiL5X6tN_0jKgAAAAAAAAAEWBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAABMQNDqKDPWY6nq0qvBxhyKdwAAAAAAAAByaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABRapg5i-nxkoOQjMlxB9g-swAAAAAAAAAF", "types": "CQNPBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "eGK7xCE0q6I8iYxZSFEHTA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAGx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABW1vmWfRl7JvnIelrwmbOFDwAAAAAAAABTxKz6OkGVzOf5KmhaoK3F7QAAAAAAAAABaTMNVHETyzaTiTA3xRl8fgAAAAAAAAAS1t24RQWJoO3BXaJLZVT8fwAAAAAAAAADeX9iAJM3toZWX3uGKIS4WwAAAAAAAAJarUm6eKXC2r517lo4-7MF6wAAAAAAAACKfNhSD70xDQrz7J48eeJThwAAAAAAAAA5E-UV4Q5gHz5xBV_lbP0MMgAAAAAAAADZ", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4npFclYrTYk5F8lP7-xbUA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAACuK1pXT4fd_WKeR1cE-hlLelCQAAAAAACuK5PXT4fd_WKeR1cE-hlLelCQAAAAAACuMW-XT4fd_WKeR1cE-hlLelCQAAAAAACuJG5XT4fd_WKeR1cE-hlLelCQAAAAAADT_eSXT4fd_WKeR1cE-hlLelCQAAAAAAClJ4kXT4fd_WKeR1cE-hlLelCQAAAAAAClKZVXT4fd_WKeR1cE-hlLelCQAAAAAAClLfRXT4fd_WKeR1cE-hlLelCQAAAAAAClL4TXT4fd_WKeR1cE-hlLelCQAAAAAACl9FFXT4fd_WKeR1cE-hlLelCQAAAAAACl8SrXT4fd_WKeR1cE-hlLelCQAAAAAAClxnRXT4fd_WKeR1cE-hlLelCQAAAAAAClyAzXT4fd_WKeR1cE-hlLelCQAAAAAAClXt6XT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LY", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "buVgMA22PwlzKtTsw_vecg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAABNdtBXhZ-luS3XxwtqeSJndgAAAAAAAAAKKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAAt0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF39qs_rDAv1WDF_rk7l05uQAAAAAAAAAIyFWUxFEmttx69t1SIwsMmwAAAAAAAACbHqzMw8JwmflqRBGi8pnz0AAAAAAAAAA3lbfK5xAhyyH63Gphusud1AAAAAAAAABoFH8EkDW7TkZM8UTvkf_KhgAAAAAAAAAK4kgJPxDp_y70g-_9SJBKrwAAAAAAAABwmVZC5ucQ9s0QMwQ6Cu6VqwAAAAAAAAALakHLSuC4R8vzlPIApTxuxAAAAAAAAAANydGLSNwrZw-nu2sK1xpAIwAAAAAAAAAc4m9mTW_zDlDiftTb5WLt5wAAAAAAAAAOO7ZJXgGLbjYmpQSVNhIhagAAAAAAAAAV5DLT1-7dtlWsYx9XrPzwBwAAAAAAAAAcLUnFGHfMsV3itSEiBr_pdgAAAAAAAABCYLZ4zK7cwy3rua-7G2ar4AAAAAAAAAA9", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0ysjD2KEV11Q-X20IVM68Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiF_vXT4fd_WKeR1cE-hlLelCQAAAAAACiGWEXT4fd_WKeR1cE-hlLelCQAAAAAAChWnJXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgcn6", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "l6bHYtW3gLMsVCmazSwafg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADSZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABCAZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAGrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAuU-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABTHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAIiuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAWyQLW28sZ3rpLXAl8a-XdLgAAAAAAAABnWIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAIKCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAIQRW1om0CtcYaE4B8xaBEggAAAAAAAABGAZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYlCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYRoLIlcLUqj5vIEU93Jo_ggAAAAAAAAAM9vvlObj6sj2v9DQG_1E_-wAAAAAAAAAa0DUsXaqQM40fpzmPdRsv-gAAAAAAAAAWIwWSLDFKbE55JoXCKhV27wAAAAAAAAADaBl1z_DR7_Hyrw2rxrDKMQAAAAAAAAFCucY-hDA6B-WAclSR3dnjWAAAAAAAAABLl23LqRBCxbwmYYhWIs5QbQAAAAAAAAB68ebb3ost-YWwZ9Gy9pOAhAAAAAAAAAAA", "types": "CQNeBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Ajvgr8YYecNRW2djHSe6jA"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBOeYxe-SHgukLEpCkawSk1QWAAAAAABWB4EYxe-SHgukLEpCkawSk1QWAAAAAABV_2nYxe-SHgukLEpCkawSk1QWAAAAAAACqAF", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "AbeQrTtXehXZ01-sVir0dQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZxyf5INnJibBb8rT_yMcsAAAAAAAAAAEe6HlflPyKAlNlF7JPJCNJQAAAAAAAAFLEe5ZDKMHiVCtP6qAhF9CEQAAAAAAAAGtVyubPqZIpIsaGdq5yyQHTAAAAAAAAAAHH3I9lsKeM021aDJgbYYYAwAAAAAAAABHL6IPi9cG-hWDQ-8_WE6FFQAAAAAAAABdBLpe-z4Yd5pwaMKR_BsaGwAAAAAAAAAMQJL-SfxFsSlqFyMufqU3CAAAAAAAAABceOzzLIU2TSEN-nL8WNPcPQAAAAAAAAAKFOd9HiviZUDhaNiKk_owWwAAAAAAAAAT644cGNT2qB6lvzqttzEn0AAAAAAAAAABcb9IQeq3-QS_hpwjlphK0AAAAAAAAAADYWaemXXt9iU7-uBEK9yL3wAAAAAAAAB7mqCo2mYwD2SnE5s-os9M7AAAAAAAAAAHKb-BUhTmEy25n_HMPR0FvwAAAAAAAAAjmXqhLjgHXuxsTaw9_bY01QAAAAAAAAAZI6P0_IKCAh0onrKVnGKjqAAAAAAAAAAFu9GeMWftGvMQfzDDA51wmAAAAAAAAAAYnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAkRE1ZSkKN3zNxr0HYuO2pqe5hQAAAAAAhCeg", "types": "CAMdBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "k3i0bZyqIMrBeswWiG5zuw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7r0XT4fd_WKeR1cE-hlLelCQAAAAAAC-0MuXT4fd_WKeR1cE-hlLelCQAAAAAAC-1HEXT4fd_WKeR1cE-hlLelCQAAAAAACi9wRXT4fd_WKeR1cE-hlLelCQAAAAAACjCBUXT4fd_WKeR1cE-hlLelCQAAAAAACi1U9XT4fd_WKeR1cE-hlLelCQAAAAAACiLJ8XT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "u9NrxEAkXivbGcF2O2ACQA"}} +{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kSHpn8pwAHiX47J0IzMtXvwAAAAAAE8PJSHpn8pwAHiX47J0IzMtXvwAAAAAAE789SHpn8pwAHiX47J0IzMtXvwAAAAAAFznbSHpn8pwAHiX47J0IzMtXvwAAAAAAFzFySHpn8pwAHiX47J0IzMtXvwAAAAAAEsAqSHpn8pwAHiX47J0IzMtXvwAAAAAACetdSHpn8pwAHiX47J0IzMtXvwAAAAAACbaISHpn8pwAHiX47J0IzMtXvwAAAAAAGQeMtQgAmBJBgPLrkikSPRsmtgAAAAAAAOo86tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaZ", "types": "CwMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WB1iR1vMQZ8gF_ktwZj6sA"}} +{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBAu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAYtbf6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgVN6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnvcgIdU-uvJLoO1WrtsV2P8gAAAAAAAFcq", "types": "BgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RCEPIWqcsJ7aGREZKQWc-Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDo5XT4fd_WKeR1cE-hlLelCQAAAAAACxD6XXT4fd_WKeR1cE-hlLelCQAAAAAACxClIXT4fd_WKeR1cE-hlLelCQAAAAAACi94WXT4fd_WKeR1cE-hlLelCQAAAAAACi98FXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwXQXT4fd_WKeR1cE-hlLelCQAAAAAACiKCvXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "57alq8shv_PO5tRW-bCjkg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiF_vXT4fd_WKeR1cE-hlLelCQAAAAAACiGWEXT4fd_WKeR1cE-hlLelCQAAAAAAChWnJXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgcn6", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Mpp_665E1c21xBCwipgVFA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAAGkuWcUG2bf_MgJpXpuAZivRAAAAAAAAAAx0nBVkJrBQHU_wusVG6_3KQAAAAAAAAB96PDTyNLwDP2GCrVJoblLzgAAAAAAAABIciQsV4oUc5gYfL4dony27QAAAAAAAAAnOIU72g2wQhgyLETe_w4R1gAAAAAAAAAOY_F3wsW4jiujqo6Je7YffgAAAAAAAAAJWHc6TeyRQEqs6LkNUiVKVQAAAAAAAAAzqeBE7mdKgcIgzAsX_goa7wAAAAAAAAAHAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CQM-BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2ZpjYqKFeza_P-0E6-9HQQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgne", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "o1IV1KtEnO9QgXXJ_2WZhA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vNqXT4fd_WKeR1cE-hlLelCQAAAAAAC-odPXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FgMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "aiVO0Ls10cuvtAaPP1Ar1A"}} +{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACilSEJ6GSZQSmfOBquczb-SF8bAAAAAACh72sJ6GSZQSmfOBquczb-SF8bAAAAAACh7hYJ6GSZQSmfOBquczb-SF8bAAAAAACh6ZUJ6GSZQSmfOBquczb-SF8bAAAAAAChuabJ6GSZQSmfOBquczb-SF8bAAAAAACiphA", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LLuCWf1qUsk7q-MfF5NsCQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAByH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAAukUJgVxIXgDBTomuPsxvCVwAAAAAAAABJ_p12Y0DOk4cFEn5gGz9psgAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "N7Kmf5Kd7TIB0G4JiPG7WQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAACLHmuH5pCGXma5ToZjJwiZHAAAAAAAAAD9rG4zWNbzF43FlUaeZiWkVQAAAAAAAADEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "z3mjY4F-APZLM0cY5ypBfQ"}} +{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACindAJ6GSZQSmfOBquczb-SF8bAAAAAAD_Q5tJ6GSZQSmfOBquczb-SF8bAAAAAAC-gV0J6GSZQSmfOBquczb-SF8bAAAAAAC-dlSJ6GSZQSmfOBquczb-SF8bAAAAAACrKxzJ6GSZQSmfOBquczb-SF8bAAAAAACrK2zJ6GSZQSmfOBquczb-SF8bAAAAAACjxwkJ6GSZQSmfOBquczb-SF8bAAAAAACjz2PJ6GSZQSmfOBquczb-SF8bAAAAAACjztSJ6GSZQSmfOBquczb-SF8bAAAAAACjkpFJ6GSZQSmfOBquczb-SF8bAAAAAACjjfMJ6GSZQSmfOBquczb-SF8bAAAAAACigtyJ6GSZQSmfOBquczb-SF8bAAAAAACipgX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "DQMCBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "sYfRZVNbwtdDZNrhqBw5fg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSKj", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cFtvAtXlucoXx3v_5BHAKQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA70RgYbC2fQjxygsXZf0s0DwAAAAAAAABPiAgP1DBH7Z9OPzvK7kQabQAAAAAAAAA3brHwMWIWqKKcmy2jXj1-xAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAABs6JL9Zb5wYEadxJXUwBTXrgAAAAAAAAAHDHsnAoMYJiyf1W11jJ-_lgAAAAAAAAAI1bop6BtJ2-QbHt1_vwb9pQAAAAAAAAAOemtnMy3iySqrF6v2pitJkQAAAAAAAACfEH6veLqK7EPfdYG7XzXWOQAAAAAAAAAaDVtYIioEzQbMnonclHMdUAAAAAAAAAACeRljlBhZopdiZAys9KOsTAAAAAAAAAAA", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4iIp1XpTkN0gp_0KOZ9YXQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAAB-5iAtVIILui-LgFNzk7nI4QAAAAAAAAAFTlb-NMKl40FjLIQMDGJfBQAAAAAAAAAXxme1OLUOxM6S5mWcBl9N_gAAAAAAAAAC8EydHzqUyrjotjG1DR1HjgAAAAAAAAADx7dNtL9l6yQnqIhb2iRkJQAAAAAAAABV85xU6UdOBVE-6wKT-DYa3QAAAAAAAAAcKlMLGpkm1pBrBLT79cviPAAAAAAAAAABzVZBdh_gmAiL5X6tN_0jKgAAAAAAAAAEWBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAABMQNDqKDPWY6nq0qvBxhyKdwAAAAAAAABy", "types": "CQNGBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "J7IyZV3ZsWdsRB-OpXmMeg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAACSHLbKAnj8e5CJ83_m8D1VbAAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMMBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kGaKyx04V90ppp1jAoxQgA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipGH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipDo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Zq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Ei6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjoZw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjnS26tVKI4mSYDEJ-ABAIpYXcgAAAAAAVPWS6tVKI4mSYDEJ-ABAIpYXcgAAAAAApawn", "types": "FAMLBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WxcGXwfcqKNpMKE8zhEFLQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAABNdtBXhZ-luS3XxwtqeSJndgAAAAAAAAAKKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAAt0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF39qs_rDAv1WDF_rk7l05uQAAAAAAAAAIyFWUxFEmttx69t1SIwsMmwAAAAAAAACPZWFss6ZxFzhbt0Csr3RjvQAAAAAAAABSeuorzfxzTbeugeUuUsL4JQAAAAAAAAB3gGmahx-heT-ng3OOXwJzzQAAAAAAAAAhyThBMv0_vHiduuJoI2EtCQAAAAAAAAABOmzVUgwY22EPoqShuZpT1wAAAAAAAAABnGz5zemXBq52gl3823VamQAAAAAAAAAeb67zIsg6gj2XrJ7kGTti1wAAAAAAAAAf0e441wfwXV0HkniBtm40vwAAAAAAAACIe9ofmivxAKQIQ6LGx5Xj3QAAAAAAAAAft50PCqH5T4d6gM3drpxvmwAAAAAAAABD3He9Loj7AKn7Offsd35QVwAAAAAAAADcB-Oe_OuJ2Xvt27AtRop-VwAAAAAAAAAM1CcuhJezHq64cCQVie7b_wAAAAAAAAA9y5QhQTP0rb94lUCFmD8btwAAAAAAAAAL9AWYxiUgpg8BGREZwy8hfAAAAAAAAACvaReweV4JbHI12xb-EDBioQAAAAAAAAB80OI-JWcbihL86mmEQDV04QAAAAAAAACT_vnxdlrLVdiyCEIVqNBMFAAAAAAAAAAiA-41ReHkKXTbwuqT5HLDpQAAAAAAAADNT5rdW6hQxkRw8R0h0I6dhAAAAAAAAAAEajfTkAEoNMj425lCUBZBEwAAAAAAAAAIerKDHYSDTnqDmMOW6Hy0GQAAAAAAAAAF6f4gG0tA9vAOwVrj6dlJ0wAAAAAAAAAc66svax_YSawIBEjWDOux4gAAAAAAAAAOWNc1OyRdaTydSpAMWEH8RgAAAAAAAAAlIRUNDuXpLKKMxZ9pgQ-ihgAAAAAAAAEtUq-HaSaqgAOt3llTC3jRJwAAAAAAAAAG6gx5j99QwRXWvrkyBMUOQwAAAAAAAAAsuraIFXU9GqBqmWbTlxjVJAAAAAAAAABi", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ojvRdtV05FCfJSfO56kH9A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWCZXT4fd_WKeR1cE-hlLelCQAAAAAACi5DEXT4fd_WKeR1cE-hlLelCQAAAAAACi58cXT4fd_WKeR1cE-hlLelCQAAAAAAChaNvXT4fd_WKeR1cE-hlLelCQAAAAAACgULb", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "J6jWZvvVcvb8g3MeES3S-A"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAACLHmuH5pCGXma5ToZjJwiZHAAAAAAAAAD9rG4zWNbzF43FlUaeZiWkVQAAAAAAAACBpoo-1v2aw5e3OKkq9Ls_WgAAAAAAAAGNWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1eNbj51SwVufxZ4R3ztSduAAAAAAAAAARCvC3lIC7E70AiCoZ7DVYSQAAAAAAAAAVAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "v4I2JWrGUfBNr1h7Qt_viQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mlNXT4fd_WKeR1cE-hlLelCQAAAAAAC-nUyXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_Y9XT4fd_WKeR1cE-hlLelCQAAAAAACiFHoXT4fd_WKeR1cE-hlLelCQAAAAAACiKQzXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "v_MRiqmr_7QtlbkX0nZcPA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAENV6", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "za80CuxN6vjf7klqVj-zCw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHZB2XT4fd_WKeR1cE-hlLelCQAAAAAADHZLnXT4fd_WKeR1cE-hlLelCQAAAAAACzCjLXT4fd_WKeR1cE-hlLelCQAAAAAACzD3sXT4fd_WKeR1cE-hlLelCQAAAAAACgaGBXT4fd_WKeR1cE-hlLelCQAAAAAAChwIA", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4VLcatrmtkpRKC6Z8ESAGQ"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAABFtPK", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "HJO4ml5Wnty3ovHfoaOHdQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADSZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABCAZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAGrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAuU-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABTHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAIiuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAWyQLW28sZ3rpLXAl8a-XdLgAAAAAAAABnWIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAIKCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAIQRW1om0CtcYaE4B8xaBEggAAAAAAAABGAZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYlCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAACNHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABuHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFP1rXbpjewie805zI0BHMvAAAAAAAAAAILN3NdhSYKxRbaqnM5W9FBwAAAAAAAABpR-HVaw3JZ2IsajBZdLbC8gAAAAAAAABKKnKBdeWKnQ8CH5bzvx0i6AAAAAAAAAA6I63RT_W0q_XUvwLmcrZgvQAAAAAAAAAGLf4JMX1-MCAx0p2O2vbkfgAAAAAAAAAa655NLQCwT2lThms9b7SeGwAAAAAAAAAF6hqOSwO_UyguGx3V9Hcf5AAAAAAAAABVlzJoiXUGaltqdWh-iTQ4TQAAAAAAAAAanu8xfvDC28qhuFrvR_OkPwAAAAAAAAACAtdYY3_ZD2MDB5gcLHvc5AAAAAAAAAAG8l21Wg-M8W7Bxi5-mLylDwAAAAAAAAAFaqit6N7GhuOhGS3z35VIdgAAAAAAAAAINCpnvGv1--TWXcgs4ddcmQAAAAAAAAAH", "types": "CQNoBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "R3TJa-RfHMrAqkxUB4NpsA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAA4", "types": "CQMEBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Mnd31Vnx6i_r5WV2hM5bDg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCYyXT4fd_WKeR1cE-hlLelCQAAAAAAEOC56XT4fd_WKeR1cE-hlLelCQAAAAAACwsaKXT4fd_WKeR1cE-hlLelCQAAAAAACjBzzXT4fd_WKeR1cE-hlLelCQAAAAAACjCG3XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9id7nFkcklBOakIetBYt8g"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIZy27xNCwe4jKCqsA2srxVwAAAAAAAAAoLZeO9S9IXnalwT9Nl3ihfQAAAAAAAAASxWwq3BVQzbzp00-HYFOW_wAAAAAAAAB094QsDIL7bUk7Oxas7lNqGAAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJSYSSbioufiMK4TqEn24uLgAAAAAAAAAdXL_fwLkYkxkYcfgosK-fdQAAAAAAAAAQO_mHTPntGTw_EnF-rkI8XgAAAAAAAAAWiiLZnxbVRTQPtvWA0miuyAAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdfJIr5vQAn81_ytZBhz6xpAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAABduSa7rLKjwnZa9hewarfUgAAAAAAAAAIHMo9CJkBJDT98ldAVMcaFwAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAZifuzCpl1zo6zLw_paxkEdQAAAAAAAABs-I0qeKDe1hMr58wzZHuN2wAAAAAAAADfbLRnm0K2LnF8O3sUIvVtEQAAAAAAAAAFYUqlosets6-rXKgChfDXoQAAAAAAAAAfnB7ASI-agyjwniBzr5SZ-QAAAAAAAAAfUxUrGKaPEq08l4l3816TpwAAAAAAAABLB3q4S4Ckg_Xt-OI4yuAyoQAAAAAAAAALWRtY-lihH3Vcv4ui-X8hvwAAAAAAAAAUB3q4S4Ckg_Xt-OI4yuAyoQAAAAAAAAALrcw4O6fPwcfa_O50COvY1wAAAAAAAAAXET3b1ONLpdNAXigq7mYtGgAAAAAAAAAkYSiZZa16pQ0fMzZ8JTkGSQAAAAAAAAAHx7TDQwwLG-Lx987UVQ_9uwAAAAAAAABzAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAM8BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8DNGva4bOAAqZhiyIuesBw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADSZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABCAZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAGrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAuU-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABTHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAIiuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAWyQLW28sZ3rpLXAl8a-XdLgAAAAAAAABnWIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAIKCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAIQRW1om0CtcYaE4B8xaBEggAAAAAAAABGAZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYlCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAACNHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABuHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFP1rXbpjewie805zI0BHMvAAAAAAAAAAILN3NdhSYKxRbaqnM5W9FBwAAAAAAAABpR-HVaw3JZ2IsajBZdLbC8gAAAAAAAABKKnKBdeWKnQ8CH5bzvx0i6AAAAAAAAABK-QN0Lznzz3LjWKMZzZD5rwAAAAAAAAAIeEXFmSmLstwTaBBVp_eSTgAAAAAAAAAFHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFeS9qs83Ev5DGIkgRm0VL-gAAAAAAAAAUem8QMqpxX9eEmdxu2AmtFQAAAAAAAAAPTR0CnebfBTQ0MB6Lw8cZBAAAAAAAAABvkNYFghz3UdICunQ0hZrtDgAAAAAAAAAY2JdqJqt8BMgPWVhHXGXHjQAAAAAAAAAY_LK6vQmkJV2KER5Y7ub6NwAAAAAAAAAGMO5u4HKcW5-RczfdOQCIJAAAAAAAAAAHotkeOgHMDZdOlA7GywTS3gAAAAAAAAANeBe2TV8VA2V7lLyhiCvcHgAAAAAAAAAEclNKHmin0SttGhUDhj4qagAAAAAAAAAH68m2CwWM-Ledaj5WNl9lhAAAAAAAAAAqwMYFsNM0woNzFGwcp47vbgAAAAAAAABGEh0v14Wp9mB3u5tYha0hzQAAAAAAAAAmwSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFbhnM-182eA1jGyBQl8pMugAAAAAAAAAU4pL5iWdAziHKM6VzojymqQAAAAAAAAAGX8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0g4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAWMCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc5430MZlAMqI5SXd_yT5HRQAAAAAAAABcHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFN7LIGw1erb09TPWj8M9ehwAAAAAAAAAYwr21gCsicBxbZw2IJaNDDgAAAAAAAAAGEh0v14Wp9mB3u5tYha0hzQAAAAAAAABDwZ09eiIX1XgrymZWZ5BnrAAAAAAAAAAH7kiwTAFzycT-wgooymyU5QAAAAAAAAALLFiOeIpjbAGuoHCaoCuGBQAAAAAAAAA476ZQdAl2euBIN6YcqNHYDQAAAAAAAACQfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABP6WZ8beuV9qvYQN2_0rUbQAAAAAAAAAdWETDtAYgv6Jkvw6xLkpLwQAAAAAAAAAFlFttW9DSKwbJ3RVBuwGD_QAAAAAAAAAH8foNE8U2zWQjdq52zToPlAAAAAAAAAARp-6FGk_K6StmGvAWftOUzQAAAAAAAAAJGawXE6WUmGWmhx0zlzThjwAAAAAAAAEg2u2jPMdq36h9BOg_kllzLgAAAAAAAAAFajJdsnOIBpdo6hxvZuINSQAAAAAAAAAImSBnbtksrVvKstlIID71bwAAAAAAAAAUHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF4JxgAcphLAEsoWC3fPoUUQAAAAAAAAAMneQ9aDSiXyM-ZtdfoiCRFAAAAAAAAAAGXFsyX0Vq94TuMs7Bc44FAwAAAAAAAAAFhT_GFd-d817AZqi9jIee6QAAAAAAAAAUx8ERETcapIt78IXSEO8DRwAAAAAAAAACaLOl6FCWtZ16Qk1Y0IIBGgAAAAAAAAAG_CTrWCBcF1yntIOzlzRqGQAAAAAAAAAPqGw7LCeT4PzmVMNx-OGD_wAAAAAAAAAG5n7LLsQnp8wzVSA9RUpYdgAAAAAAAACOI22ioUnOc8vGYs191M9aFgAAAAAAAAAtVRatagfaZstKq9MrghPCigAAAAAAAAAJ7ThQQHp1G_6RWzt6Guj7FwAAAAAAAAAF", "types": "CQOhBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "VFYhhz8sqnqMXy2BXfzYxA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB8_Hwz5k14PsCcDvFyUC1kmlV3QAAAAAB8_Xkz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiP4z5k14PsCcDvFyUC1kmlV3QAAAAABJiIRz5k14PsCcDvFyUC1kmlV3QAAAAABJLl1z5k14PsCcDvFyUC1kmlV3QAAAAABHmTSz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "DAMCBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TgSI8jE9l-bwlyoj1VrEjw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAKGFseY0uix2hxT0Di8k7-3AAAAAAAAAATslf6t7FJIQoDjMJN42BVyAAAAAAAAAABFg2KiEq3-QS_hoWS2OekUAAAAAAAAAAG58SSP1Jorf8j_W_ngTyDbgAAAAAAAAAKmoug4ghdvV0L6kc1EBfG1gAAAAAAAAAMEv5ZvILr4tvntiwSPeUhSgAAAAAAAAAI1dAR1DRu30HO0nOIbN0CKgAAAAAAAAAFGMI3PZtY4pqLz85PHavuaAAAAAAAAAAH0LGXmFocz46kL18OXWxszwAAAAAAAABkYQC-zo420OhfkqInQzaDKgAAAAAAAAAgnZYX4eDXJe7LJpXvPCTaIAAAAAAAAAAQZ9_UyIubYa9oU2-prK3THgAAAAAAAAApBdO63C4A6h8Anj1Ds4O63AAAAAAAAAAr2O82_08jyA2A5hrIvRAWzgAAAAAAAAANncSTizlv_pFu2fK48OzJugAAAAAAAAAEKx8l7dXRj3ShNeec-0AIJQAAAAAAAAAADHMn6ZZcNA6-RmrkDCI6igAAAAAAAVfiDHMn6ZZcNA6-RmrkDCI6igAAAAAAAWBneJ7BYIhIN72fM2Cz8k8m9QAAAAAAARjk", "types": "CAMhBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yU87pg-Ch2E9K6GDZMg_og"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlo76tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA6d6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA406tVKI4mSYDEJ-ABAIpYXcgAAAAAApawn", "types": "FAMMBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9kU5bmjQFjFC5AVmJ7BijQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABiUDU1_CPvfFPVWUEWglidAAAAAAAAAAAoWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1eNbj51SwVufxZ4R3ztSduAAAAAAAAAAMRLw4AzQ1twQD4Yf1dhVtogAAAAAAAAAICEhlVwLkGcF6wPQ9FYzYUQAAAAAAAAAFEqtQxEspQTRRSSWWTkm-NgAAAAAAAAAJnPcpIVOjAbk4oUD0VpGGhQAAAAAAAAAjPQ7bqNWiBKX3an-wfD_BAAAAAAAAAAAFcoLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJ5gDnmh9w-dLR4BjuTxdXiQAAAAAAAAATKmi3IV_5C6YkqCwr-5OCjQAAAAAAAAAtv98Nje6Ys-SL3vVkHXAt8wAAAAAAAAANX11Ep3t2e5MnXIBtAoD8OQAAAAAAAABAmxr0kxn6yVavxgRwPiOz3QAAAAAAAAAG3ZGnbBP662Xz656-BL63fAAAAAAAAAACy_Kb_1plOC7673Fl1U32vQAAAAAAAAAFcoLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAWu9i0wy0O38hO4Zw-9PYDFgAAAAAAAAABK243LNlU0fb7G86fNO9vSAAAAAAAAADCl7DXpY4Elz5IpCgudwPqcwAAAAAAAAAQwO72Xe-Cg9u8b8qnaOMkOgAAAAAAAAAIDRFJdePdVhpMBVu08qX2qgAAAAAAAAAhWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAZE73KHKAXpFF--gEMhIXshwAAAAAAAAAFhgyJEhWPF-ECyVisTpyRpgAAAAAAAAAA", "types": "CAM1BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cABoYY6pcOeW0BnpKHvYbQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsftbx9jqjuemtiUm8j-_s73zQAAAAAAXsVwbx9jqjuemtiUm8j-_s73zQAAAAAApykkbx9jqjuemtiUm8j-_s73zQAAAAAApxqgbx9jqjuemtiUm8j-_s73zQAAAAAAWS4Rbx9jqjuemtiUm8j-_s73zQAAAAAAkZW6bx9jqjuemtiUm8j-_s73zQAAAAAAlJzVbx9jqjuemtiUm8j-_s73zQAAAAAAlGdWbx9jqjuemtiUm8j-_s73zQAAAAAAkEeKbx9jqjuemtiUm8j-_s73zQAAAAAAZYt6bx9jqjuemtiUm8j-_s73zQAAAAAAlInI", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iO9pN0VwPsPcNWSrcOEYxA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjD5cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLl-ZcEvvhuguaGYCmGWrnWRz1QAAAAACHhtbcEvvhuguaGYCmGWrnWRz1QAAAAACFpPEcEvvhuguaGYCmGWrnWRz1QAAAAACEPATcEvvhuguaGYCmGWrnWRz1QAAAAACEQGkcEvvhuguaGYCmGWrnWRz1QAAAAACEQXhcEvvhuguaGYCmGWrnWRz1QAAAAACFt7L", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NKv5LvHHHjB40AO3gBBcEQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBOeYxe-SHgukLEpCkawSk1QWAAAAAABWB4EYxe-SHgukLEpCkawSk1QWAAAAAABWAAB", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "V2Dpjk54kTdcC--1CueUKQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBOeYxe-SHgukLEpCkawSk1QWAAAAAABWB4EYxe-SHgukLEpCkawSk1QWAAAAAABV_9XYxe-SHgukLEpCkawSk1QWAAAAAABWAKuYxe-SHgukLEpCkawSk1QWAAAAAAABPIb", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-7DvnP1mizQYw8mIIpgbMg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABiUDU1_CPvfFPVWUEWglidAAAAAAAAAAAoWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1eNbj51SwVufxZ4R3ztSduAAAAAAAAAAMRLw4AzQ1twQD4Yf1dhVtogAAAAAAAAAICEhlVwLkGcF6wPQ9FYzYUQAAAAAAAAAFEqtQxEspQTRRSSWWTkm-NgAAAAAAAAAJnPcpIVOjAbk4oUD0VpGGhQAAAAAAAAABZ_WnWFmJraaLolV8hl2sigAAAAAAAAADWt0sf_JgSqOTKaBcf1zgawAAAAAAAAB7FzJF8qZ49M3tzNcHAYKOpwAAAAAAAAAHcx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAAjYKoBBl0G_e9oE7cFaZfzDAAAAAAAAAAZjPboacU0YKXwkYKndASIHgAAAAAAAAAFvbgAMp4MJN-LIAvT-yH7-gAAAAAAAAAYBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyFr", "types": "CAMkBQED"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "J9LNQqc3lXDIZom0g0QDQA"}} +{"Stacktrace": {"frame": {"ids": "bx9jqjuemtiUm8j-_s73zQAAAAAAgAJQ", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "IFVYTGtbQbLahSu7x5SFWw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADSZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABCAZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAGrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAuU-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABTHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAIiuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAWyQLW28sZ3rpLXAl8a-XdLgAAAAAAAABnWIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAIKCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAIQRW1om0CtcYaE4B8xaBEggAAAAAAAABGAZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYlCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAACNHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABuHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFP1rXbpjewie805zI0BHMvAAAAAAAAAAILN3NdhSYKxRbaqnM5W9FBwAAAAAAAABpR-HVaw3JZ2IsajBZdLbC8gAAAAAAAABKKnKBdeWKnQ8CH5bzvx0i6AAAAAAAAABK-QN0Lznzz3LjWKMZzZD5rwAAAAAAAAAIeEXFmSmLstwTaBBVp_eSTgAAAAAAAAAFHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFeS9qs83Ev5DGIkgRm0VL-gAAAAAAAAAUem8QMqpxX9eEmdxu2AmtFQAAAAAAAAAPTR0CnebfBTQ0MB6Lw8cZBAAAAAAAAABv8kz0sRC3Fb0ahbrci4PVAgAAAAAAAAAYGgYuOINmwLJxsjP-M2E9cQAAAAAAAAAXjIXiJ_3QIrjPxWXJm0vTUAAAAAAAAAAGbPdR4mcydIF6d5I7BNRoXQAAAAAAAAAHotkeOgHMDZdOlA7GywTS3gAAAAAAAAANeBe2TV8VA2V7lLyhiCvcHgAAAAAAAAAEclNKHmin0SttGhUDhj4qagAAAAAAAAAH68m2CwWM-Ledaj5WNl9lhAAAAAAAAAAqwMYFsNM0woNzFGwcp47vbgAAAAAAAABGEh0v14Wp9mB3u5tYha0hzQAAAAAAAAAmwSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFbhnM-182eA1jGyBQl8pMugAAAAAAAAAU4pL5iWdAziHKM6VzojymqQAAAAAAAAAGX8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0g4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAWMCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc5430MZlAMqI5SXd_yT5HRQAAAAAAAABcHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFN7LIGw1erb09TPWj8M9ehwAAAAAAAAAYwr21gCsicBxbZw2IJaNDDgAAAAAAAAAGEh0v14Wp9mB3u5tYha0hzQAAAAAAAABDwZ09eiIX1XgrymZWZ5BnrAAAAAAAAAAH7kiwTAFzycT-wgooymyU5QAAAAAAAAALLFiOeIpjbAGuoHCaoCuGBQAAAAAAAAA476ZQdAl2euBIN6YcqNHYDQAAAAAAAACQfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABP6WZ8beuV9qvYQN2_0rUbQAAAAAAAAAdWETDtAYgv6Jkvw6xLkpLwQAAAAAAAAAFzTg-1BaqPve5RYYrhWqKBgAAAAAAAAAHeYOPSEoq5FFmdpvYTsQ9xwAAAAAAAAHE2u2jPMdq36h9BOg_kllzLgAAAAAAAAAFajJdsnOIBpdo6hxvZuINSQAAAAAAAAAImSBnbtksrVvKstlIID71bwAAAAAAAAAUHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF4JxgAcphLAEsoWC3fPoUUQAAAAAAAAAMneQ9aDSiXyM-ZtdfoiCRFAAAAAAAAAAGXFsyX0Vq94TuMs7Bc44FAwAAAAAAAAAFhT_GFd-d817AZqi9jIee6QAAAAAAAAAUx8ERETcapIt78IXSEO8DRwAAAAAAAAACaLOl6FCWtZ16Qk1Y0IIBGgAAAAAAAAAG_CTrWCBcF1yntIOzlzRqGQAAAAAAAAAP1HXZZ713KyUPF_V7-YXiGAAAAAAAAAAG7qKsj4xn8s1AMSf99ASSjAAAAAAAAAAYt5ImPROd9wzf5BDFezVfygAAAAAAAAAG8AFkU9EDwekeQG-iHB-52AAAAAAAAABai_Iz97mxX5oIgVbqZMT-ewAAAAAAAAAFYYCEYr-7R2KSxbtsdGMQpgAAAAAAAACbWu0A4-y-hJFjTGYZh91yogAAAAAAAAAbXTzyt_7oaEFXC9VgfSHzxQAAAAAAAAAA", "types": "CQOiBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JtQKfZmqQ34RWgXZ6RR9WQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAAeOWoia3OO91L6Q6k2Ypn2XgAAAAAAAAAW4LWodyiv9Hy4HicwczMhQwAAAAAAAAAGYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADJWFBxAERZNClfuNDueoaytgAAAAAAAAAGFw4N_DGYxmWJY3G6VlrCLwAAAAAAAAAGK4GtFsHu3sEiObk5SkQ6NgAAAAAAAAAZR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAAB0", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DTv1zAKsMig_RbmQr3hEEA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETWd", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4vy5M6nowLFGuHYXyww9Pw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUoZ", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XuKwddzJMYQ3zNTaC_ZL7Q"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY5T8Yhyloa65D1snwfHUbjwAAAAAAAAAXvz3TbuBnWyl9Ei5te-E_CAAAAAAAAAAmkQIfOKgH7suSILPob4uOXAAAAAAAAAEjwTSbu1Pr78mJrU1RTg5RYgAAAAAAAAAkr8runDm4rOcHO76XR-D7jAAAAAAAAAAMqCAXb4nsA8MBowrcfqVWbwAAAAAAAABd2cxgkaQz6jHA-zT7PPZDvwAAAAAAAACzjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAAB8dJZnxxfSj1TBzD3FyyfeDQAAAAAAAAB0YpRFzwYvMLNVigDq-Ir6sgAAAAAAAAB2AAahb89jp2nXTHxX6vfDVgAAAAAAAAIaEzlTNMIGbx2ZiPDgwyoVKwAAAAAAAAHfGDhslQHiuyW0iTpWT3GOHwAAAAAAAAAJXIkoVhPN9nGWJltNSKuTxQAAAAAAAAFN32aud9zH9tAtdXTqknqjiQAAAAAAAABGbLC-FuN9ZjxLXfQFZMkT3QAAAAAAAACVXnbGnzFMKmvx6C5QQQuPcwAAAAAAAABL2KcE-UX_E6GAaCGq1Bz1yAAAAAAAAAAh4vumsXLFX3u2H9rleESgvQAAAAAAAAA1Bf-yRJvH4QpulLhf_rmUcgAAAAAAAAACHLm7NAzTeipEOn9w_dC-wAAAAAAAAABJV2scYnOfxIMJlGAZyHanJwAAAAAAAAB49UhJq84DtT-3RCemrOsp_wAAAAAAAAAt7keqI88wllc3F2Zm_7E7bQAAAAAAAAEeOYnj1PBgc_QiC0SFcADBpQAAAAAAAAAA", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hBUFyIS6_MPCOWu-5CqrBA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2qOcEvvhuguaGYCmGWrnWRz1QAAAAACg0JEcEvvhuguaGYCmGWrnWRz1QAAAAACguwTcEvvhuguaGYCmGWrnWRz1QAAAAACgePncEvvhuguaGYCmGWrnWRz1QAAAAACXxtMcEvvhuguaGYCmGWrnWRz1QAAAAACXzeEcEvvhuguaGYCmGWrnWRz1QAAAAACETCC", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ocxmluiIN-Xsi0P91U1v0g"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAABNdtBXhZ-luS3XxwtqeSJndgAAAAAAAAAKKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAAt0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF39qs_rDAv1WDF_rk7l05uQAAAAAAAAAIyFWUxFEmttx69t1SIwsMmwAAAAAAAACbHqzMw8JwmflqRBGi8pnz0AAAAAAAAAA3lbfK5xAhyyH63Gphusud1AAAAAAAAABoFH8EkDW7TkZM8UTvkf_KhgAAAAAAAAAK4kgJPxDp_y70g-_9SJBKrwAAAAAAAABwmVZC5ucQ9s0QMwQ6Cu6VqwAAAAAAAAALakHLSuC4R8vzlPIApTxuxAAAAAAAAAANydGLSNwrZw-nu2sK1xpAIwAAAAAAAAAc4m9mTW_zDlDiftTb5WLt5wAAAAAAAAAOO7ZJXgGLbjYmpQSVNhIhagAAAAAAAAAV5DLT1-7dtlWsYx9XrPzwBwAAAAAAAAAcLUnFGHfMsV3itSEiBr_pdgAAAAAAAAAu6Sl034LNupVWS0LGAM7CqgAAAAAAAAAPe5dlQQg88ZLOKiNAZin85gAAAAAAAAAoNnsXqH-CVYMwVp_zbU78aQAAAAAAAAAIK_1eR84MDkHtmAgcOm681AAAAAAAAAAF3kqKIOk7SslvcfRGmqs1wAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOEnRoHyZazasm_zTjL5tnOgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAANUz634wiWh6F21tPpXr0Zz3mgAAAAAAENTq", "types": "CAMnBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "QQogzpQy7c17cSSq2v2Okg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfRu", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hF4M4trNat0Ifnh6asg1Yw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIZy27xNCwe4jKCqsA2srxVwAAAAAAAAAoLZeO9S9IXnalwT9Nl3ihfQAAAAAAAAASxWwq3BVQzbzp00-HYFOW_wAAAAAAAAB094QsDIL7bUk7Oxas7lNqGAAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJSYSSbioufiMK4TqEn24uLgAAAAAAAAAdXL_fwLkYkxkYcfgosK-fdQAAAAAAAAAQO_mHTPntGTw_EnF-rkI8XgAAAAAAAAAWiiLZnxbVRTQPtvWA0miuyAAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdfJIr5vQAn81_ytZBhz6xpAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAABduSa7rLKjwnZa9hewarfUgAAAAAAAAAIHMo9CJkBJDT98ldAVMcaFwAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAD6WwLAq-OugYSy1Dj8k1-JewAAAAAAAAAEWWjCfoHiLs6x77qSQOVJgQAAAAAAAAADnKhcql1SQ7g-aNYXxz6k1AAAAAAAAAAqnbywHu3vpvihSCOYyYZxJQAAAAAAAABfQyWxgwf_XVR_0KnTIAmsrQAAAAAAAAB4", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TCokfe5PpOM9eDSE9LSRhQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAACETP1", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SY3hZxRMVbU_LhR_fsRb_w"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB8_Hwz5k14PsCcDvFyUC1kmlV3QAAAAAB8_Xkz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiP4z5k14PsCcDvFyUC1kmlV3QAAAAABJiIRz5k14PsCcDvFyUC1kmlV3QAAAAABJLl1z5k14PsCcDvFyUC1kmlV3QAAAAABHmTSz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkw", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "M_BoisNtawBssLhhN71DhQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAHvdr7nJhzDAJ3KA627xZhFegAAAAAAAAAUE66a7lKbkjXDy4kHrdweRwAAAAAAAAALavH6-iyYHlN_flagvaXwWwAAAAAAAAAK5JuKxbkWPMw0EpITr8WSNAAAAAAAAAALCcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAACV125X0goavCApK-g1l1pkWwAAAAAAAABkQ0R-0UiPoesAUrBscgAFvgAAAAAAAAAIPVeXT5y9m4gxI4iElfX0iAAAAAAAAAAGooXupY6tkqGKdv4Hb9iSvAAAAAAAAAAfSJoYqCaJveFFa7104DcQBwAAAAAAAABr", "types": "CQNABQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_M4wr6gtwGGYiPzlJzz32A"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAGvN0nOeOJdjggSFx_cpb47egAAAAAAAAAV4vwWTuaA5W0Uq7WSODTSAQAAAAAAAAB8mm7pA8Vo6frfLprU_GjPaQAAAAAAAACREbDp5Ji3y8uTKzXL0h4-JQAAAAAAAAB8dJZnxxfSj1TBzD3FyyfeDQAAAAAAAAAOArz1MMWCC2fkAl6FCL43rAAAAAAAAABQnHKyvd8kdc_8d3u5YjO8iQAAAAAAAAAA", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XoQikJ7lSV9HsNJAH4LTgA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABF5arz5k14PsCcDvFyUC1kmlV3QAAAAABF6-Uz5k14PsCcDvFyUC1kmlV3QAAAAABFPfDz5k14PsCcDvFyUC1kmlV3QAAAAABFxl7z5k14PsCcDvFyUC1kmlV3QAAAAABGnUi6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BQMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NzgebI0nzVnR1pYzslViEA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmsS", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0zW9pXo6mj0PNWCWCag9Fw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAAEJm5p8puApNHgdtwb3aFhxPAAAAAAAAAApxDECjxfRDF0SAcicHv7yIgAAAAAAAAABSsODsFdp0k4d_SSQAFmIUQAAAAAAAAApzzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIcPy2QFuGdjzuVBNv2-JtzQAAAAAAAAA5FQVEqfdF3Gc5vOLVf8c4EAAAAAAAAAEpcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIiaYGOKrCYzeQFPvSFK3LGwAAAAAAAAAlcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAI3FmF0iegYInyRffZHSr8AwAAAAAAAAAv1Az5XiB-HqkM2KIxBs7pHgAAAAAAAAAzXmgLknRmXWrjNm14n69KUAAAAAAAAAAGcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAInQRJ3xr79n3cY6qS99IffwAAAAAAAAAE7EnnOhShMGZ9Te5BWwjtoAAAAAAAAAATopFI2iPPQrSoKgHSzuYsiwAAAAAAAAAIytmnDvqR2kv8bcodWBOqIQAAAAAAAABnKKci4M_8u3lv7Ydwxf31oQAAAAAAAABhsUo4V5ggmQmDpXEq3uSXMQAAAAAAAAACABipyEawAgbPQx-X36vFuQAAAAAAAAAnzwiX7AgVqL-aPC-SuEi6CAAAAAAAAAAH", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zagslR6kwxJJ6S1R1ldJRw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHwQXT4fd_WKeR1cE-hlLelCQAAAAAAChHp-XT4fd_WKeR1cE-hlLelCQAAAAAACgSwc", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xlxLGJkU6ON08qReHvd9-Q"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABtaElZ3CKaS4aU08RhYA19y5ITQAAAAABtbWwZ3CKaS4aU08RhYA19y5ITQAAAAABtbrkZ3CKaS4aU08RhYA19y5ITQAAAAABtb7K", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-Hl7_Gtrks_pDu2K34uNnA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAACLHmuH5pCGXma5ToZjJwiZHAAAAAAAAABnS4DQ5gj04oVPTd_cZvriwQAAAAAAAAAFcoLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJnsN5oeLyhaU3rc_4TQfhXgAAAAAAAAALgvQGUUGWUJbOOm8Vi63fqAAAAAAAAAAGpIlQHYzUvHZx6w5Rtmyd8QAAAAAAAAAGQUT-nNY12PdX-wWYy6XdlgAAAAAAAAADSp9UjTJ6AKwagodjyx73jwAAAAAAAAAFy_Kb_1plOC7673Fl1U32vQAAAAAAAAAFcoLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAACbEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAF45C-Q8d2gQJCMIvUacUWRQAAAAAAAAAA", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fu791ouBDme_fg0-1PmCHg"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABdKvkz5k14PsCcDvFyUC1kmlV3QAAAAABc6vYz5k14PsCcDvFyUC1kmlV3QAAAAABFO12z5k14PsCcDvFyUC1kmlV3QAAAAABFN3F", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TThSaCEKhOK4rSjzgjO5yA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfZrsFKuVxhHWhub-XEUbfgQAAAAAAAAAeUu5glQJyFgpEjTQ_UpnTpgAAAAAAAAAB4XL-_3HqKL4a-N25S_4rwwAAAAAAAAAqY_uBeAIr8RJYVxEQrPIP5gAAAAAAAAAECRotmmSr93EhxDv-kzDy3AAAAAAAAAAE_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABoaAqnvBf39hEMknB1ptAAgAAAAAAAAALVZ92wJHz4QeIc3nyf1htQgAAAAAAAAAe3APbfJs5SvbH_F9r5lo_3wAAAAAAAAAFfnFonGQxpm_e6wtqJ2HwRwAAAAAAAAAEYM_gl0OeNbTAtY8GRC8UVgAAAAAAAACbTdvyEkBALxwDoycOnD-RjgAAAAAAAAABQ0ZhGVGRXyXDgoFbVxRbBAAAAAAAAAAECSQIcg5qzfHUGZiT4d9R6wAAAAAAAAAGJ2FDONFObDGDV1DAwWRKnwAAAAAAAAAPm4AoWu9JzAMUZrCsBO9JagAAAAAAAAAEP9BGxoNfJ5xFs47cHe23_gAAAAAAAABK8d37I3z4luvj6nh9MTu4AAAAAAAAAAAgG99T3qcZC8_AxTO5xN8aUwAAAAAAAAANw9w8XUGzqm4xr4E1qM-rhQAAAAAAAAAgwoaSXtApD-PrSWDZ_aE3VwAAAAAAAAA0NEA431VvZx5EvIda-awJrAAAAAAAAAAGxVOmAk0hLEywDTna7YZ20QAAAAAAAAAMloNxquzuzn2Bq3kr01g2ngAAAAAAAAAGHVhQ434ZUWqRQ1_LQX_XpwAAAAAAAAAwVwaGRjsI3iJyn8klEZc0AgAAAAAAAAAcD0ofxcgGz_JIo1VPr4gbYQAAAAAAAAAEMo0G3Ryin3OSJJlsa04N6wAAAAAAAAAIlQWNKvZdgmHySTzr2d4FnwAAAAAAAAAygg88UO8ISBxD9srla_udvwAAAAAAAAAQfdOf3khW7cCeH2hLlOYT0AAAAAAAAAA0USV55yZg8dR921Rrum2migAAAAAAAAAAYq1Ak9_WYtjiRUK6jyz9agAAAAAAAMcz0rNuxKNw6YxtKvsF6kS_jQAAAAAADA9l0rNuxKNw6YxtKvsF6kS_jQAAAAAADBJV0rNuxKNw6YxtKvsF6kS_jQAAAAAACMfW", "types": "CQMkBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gGULehZ_DIB09JwTIeY5QA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAb2jOITD8MGbT1Ovw_xtzUAgAAAAAAAAABdfaJS679SMFHynOlhaT4GQAAAAAAAAAEwxNyOGlepMHeJK72r3Nx1AAAAAAAAAABNCnW31JAeE6fBCMV8tcmcAAAAAAAAABx-Io3TUEjg3VhqUZyexECqgAAAAAAAABCKJ6ILPQkLRzsL_qCZRHYPAAAAAAAAAASW8XJy2Hk37R95UDQ18YnzgAAAAAAAAAOOdhNFK09ypq7bYC30OEbwQAAAAAAAAAWz_t7zXgMNJmUhO2ppFiaDQAAAAAAAAAFGVtE5azmnq7oQE07RxtqrwAAAAAAAABBMMx7y-wVUK2KQ-oXeX0wPAAAAAAAAAAFyJnMziB_3pl6nUaBEI6cWgAAAAAAAABgLa-ehX10FJ27ZPXj2dDNfAAAAAAAAAAJ0Si9ua-OAmPMKLEbBoEhPQAAAAAAAAAXmL4_fiGL19dS8gCIwMyo6AAAAAAAAABu02Y8Ail7HWaHase9K4My8wAAAAAAAABSijqaYqwrn000ejmETNv3vAAAAAAAAAAA", "types": "CQMWBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7eLFKMaE8osGBh7ebPqCVg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAAEJm5p8puApNHgdtwb3aFhxPAAAAAAAAAApxDECjxfRDF0SAcicHv7yIgAAAAAAAAABSsODsFdp0k4d_SSQAFmIUQAAAAAAAAApzzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIcPy2QFuGdjzuVBNv2-JtzQAAAAAAAAA5FQVEqfdF3Gc5vOLVf8c4EAAAAAAAAAEpcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIiaYGOKrCYzeQFPvSFK3LGwAAAAAAAAAlcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAI3FmF0iegYInyRffZHSr8AwAAAAAAAAAv1Az5XiB-HqkM2KIxBs7pHgAAAAAAAAAul8-8MRFLE8av7SNHPQQJVgAAAAAAAABwDzuJOrgdkQNI7sXISSmdawAAAAAAAACOpBAXMFgFarqt_e84PodhnAAAAAAAAAAUtIoSY_1vT_j29F717EmR3AAAAAAAAAAPRZ01NrWKTMDuXelOk2KnKQAAAAAAAAA1c-e-WU3-IJt_PPAtxrYO8wAAAAAAAAGVtS3W-juTeGevwds4OwWo-AAAAAAAAAATTPvt3mmZJbEjMZM8rsHZwwAAAAAAAABIX5MV3EQ58tGbWH0-6A54UAAAAAAAAAHiGGCEvN8t-grwQDiWlXbYwgAAAAAAAABCbnXqUjxAcj-_pCBkj3VY6gAAAAAAAABwFLWrcmu3MEG4xNl3eYs56AAAAAAAAADYf8AX8nZ-lp_iU67C5ubGNwAAAAAAAABAkiQ7KxPYNd0HZxuM62vmnwAAAAAAAAAgjVVHMYu0P2OEHJFmfTZ5eQAAAAAAAAAEgzF4xa6TmHHVGj6D9s_y9QAAAAAAAADoi32deQLexkVpk6b1igaeZgAAAAAAAAALD24BMbxmwnEGvGJ3u0PiFAAAAAAAAACQWZK18270JR2u9aieilAliAAAAAAAAAAIvw2FT3151oizPmalmfG1PwAAAAAAAAC5B_ImP3FPXINLaYvJmiGo_QAAAAAAAABNEr5fUskqiqFkThPIapWesQAAAAAAAACPAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "X2e2lPNtTN4TSFGTl1nCqQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChlYsXT4fd_WKeR1cE-hlLelCQAAAAAAChdvPXT4fd_WKeR1cE-hlLelCQAAAAAAChdEY", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "38N-Nz5djScZwwbB2NxXDg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHfZKXT4fd_WKeR1cE-hlLelCQAAAAAACy8_rXT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-hZXT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-hZXT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-hZXT4fd_WKeR1cE-hlLelCQAAAAAACy9I6", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Q51JvKXLQhd1r7lQdyRWLg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66OFZ3CKaS4aU08RhYA19y5ITQAAAAAB610wZ3CKaS4aU08RhYA19y5ITQAAAAAB6vFgZ3CKaS4aU08RhYA19y5ITQAAAAABxhffZ3CKaS4aU08RhYA19y5ITQAAAAABxhwaZ3CKaS4aU08RhYA19y5ITQAAAAABxi3zZ3CKaS4aU08RhYA19y5ITQAAAAABxf-m", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Fsw2Qk8r-PvXb5NKVMogVg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAACNJgmaT4hGItQStPxlJGEPUAAAAAAAAAAEWHTE8ACR4NC-I-EUuyo1lgAAAAAAAAAIjoHdKmx5pRoeIkTwEIvJpAAAAAAAAAAcIKniS6Oltfo1ekuyyeYCXwAAAAAAAAABSJxVsEnpCDnlRh2uwKM1VwAAAAAAAAAIU8y7tkq3OrTv74Jpmv-rDQAAAAAAAAAkWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFuaPqWrgrMtBr19nB0bwQ4AAAAAAAAAA7DvWhbkzH60wdCq3Z8oLdcQAAAAAAAAAHOljKMbs7Sslvbk6h8kJ9yAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfw5DtxqVhoNPMfZH51ZbSdwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOOcrWUHEqh-zll2_gAtcNYwAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAYq1Ak9_WYtjiRUK6jyz9agAAAAAAAMp30rNuxKNw6YxtKvsF6kS_jQAAAAAADuzE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Z56tVKI4mSYDEJ-ABAIpYXcgAAAAAAp15j", "types": "CQM9BQIDDQQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "p-WKRQjqC4ydJVOfzTrRtQ"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHba4rFFPORY8_4FvK9QaA3QUQAAAAAAGRIW4rFFPORY8_4FvK9QaA3QUQAAAAAAGRJh4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp4rFFPORY8_4FvK9QaA3QUQAAAAAAFwQQ4rFFPORY8_4FvK9QaA3QUQAAAAAADiYq4rFFPORY8_4FvK9QaA3QUQAAAAAAFwkrUJmIMEc6K8gJ39NHYaD0WwAAAAAAEPdz", "types": "KAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "BfHf4fN1YDNeqJL546UXVg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmqi", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9bqdsZ9OwQlJspL0__RGkw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw1x4XT4fd_WKeR1cE-hlLelCQAAAAAACwXETXT4fd_WKeR1cE-hlLelCQAAAAAACipi9XT4fd_WKeR1cE-hlLelCQAAAAAACipFEXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAANp-d6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBiZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN0Cm6tVKI4mSYDEJ-ABAIpYXcgAAAAAAENPt6tVKI4mSYDEJ-ABAIpYXcgAAAAAApF2r", "types": "FAMLBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mG3uazcAGCpfIp0QMrP4Gw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAADxyaNpzFvIPtiJi3LwjMyZHgAAAAAAAAGMUZ2NFNzh7BT3C3hRjMF2fAAAAAAAAAAMZB4dgn6zlvSqI5ZscpV7zgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1HYZxCzuz6LEXaDimozBLlgAAAAAAAAAQpMuceywkbX_kBQbNeyKYjAAAAAAAAAAWRHxLaEMnlCvBO70F4Bq3fwAAAAAAAAAFnisgr1RUcTVhb-d_TidN8AAAAAAAAAAugTkKo96ASvMgXyPTt69aMQAAAAAAAAN6Gs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAAAKzk_PAPIluouMAlyxqI2lSwAAAAAAAAALSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAAB7YY6rmsokuP0BKno7mbtScAAAAAAAAAAF3jzoaxecTMpMeDCGDwy-RgAAAAAAAAAE", "types": "CQMzBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ReBSsFsGGDaBt690LaHypg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAA4uYJaHL8c7yuUg9zbiJgfXAAAAAAAAABbYF3FgsmtJ5bq5eUQFvPU3AAAAAAAAAAe1MY1Nuqea_D-u-FFo2a_-AAAAAAAAAAly_zLcqsLm1pyxWcSerbeRAAAAAAAAAAclyFV4GQ8nA5PvKIS4z4KZQAAAAAAAAASL-p6HuZa7IZQ5P3VbWlkuAAAAAAAAAAAYq1Ak9_WYtjiRUK6jyz9agAAAAAAAHdO0rNuxKNw6YxtKvsF6kS_jQAAAAAAD-aS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMust6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuoD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00i6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0yh6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CQMKBQIDCgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RT-nlBYMVTTUwYUUUMhb4A"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYCMh__DRjYW6WKuSO4E-9UAAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFaD5tQt3PTji3IEVewu1DRAAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT8PmjGm6M7d6JhKTXv_IxqQAAAAAAAAAKc6zhheBld8wEBO7TlhnPcgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB6ZyDu8REFKLpyM-Kdz5OhAAAAAAAAADW3TPttQJEnBLdbxWIzlHkewAAAAAAAAALiuglTU1ZiCYQ-BlYCftcbAAAAAAAAABAy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJQ-u30OVC8ZOSspmVuVd8UgAAAAAAAAAMeMHmhq4sdClgEJFzlDVUfAAAAAAAAAAM0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFMzoxeJdfOW5Uia5TsooNmQAAAAAAAAAMpmiRP16sLzHMk4sQotP67AAAAAAAAAAOumqi48lo3pIGNbe4z8rhPwAAAAAAAAFXC0XtSv7dm7gUvHZSURjO4gAAAAAAAABnPlO3UlD8x552lb1CM2CULwAAAAAAAAA2TLtXUcG2a8E4RDCF9AerkwAAAAAAAAAHv7CWLnfl4NBXfi5Ad25mLgAAAAAAAAAJKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABnm8Dfka9x9QwMLoLlLfziAAAAAAAAAAM_Xrfw0A11GLpx_3z7clkYQAAAAAAAAAC7CG5ZeeZHDD3stOYEiHqzAAAAAAAAAAXHraciiRO31pdWLKXJjfvFwAAAAAAAAAITQWUVBogE19YtGrM-YvAMgAAAAAAAAAEpHVBvSKqV5pNmUpMq3vEugAAAAAAAAAW9gB_5QnQSZFAhOLR4MwwxwAAAAAAAAAEI48brEkgWPSZXqrqrHkPZQAAAAAAAAC60_phtM3pHaaGA2rtIita_gAAAAAAAAADmHsoQaBy_jlH5-zItFSRsAAAAAAAAAAOmedSjTisT_c6UDMJcEb40wAAAAAAAABQNDiNPs2SIuj4NddpL8knJAAAAAAAAAAC_OOeQuiXtvgynmE43QMbEAAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAITa", "types": "CAM3BQED"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gbm0BnsYQfm1H2YS-j5tDg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHNzXT4fd_WKeR1cE-hlLelCQAAAAAACgoL0", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2Ql87_XD7x_m3wC-TEuRLw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAnEGqyFI4UBcYw0uODaUlP_QAAAAAAAAAEo7sR_pIbiVV_Z8TfMWbBfAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALVhUIBMnDjpGauL-PhicCqgAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl_plqR4x5xi_qOVu9JWCxQAAAAAAAAAEYNvLePk3bv25BUHN3KzEXQAAAAAAAAChMo8MRZcTTA5MSH5mIc8c7wAAAAAAAABiYNvLePk3bv25BUHN3KzEXQAAAAAAAAAkq6h8WxXFV1hXZzG4J6n18QAAAAAAAAAWmW2YX0W7f8kHZ9OF_UwxgwAAAAAAAAAKf7zfB261PmeVR0CVV6m2gAAAAAAAAAAJ_NrJ8Q-i9cRRxMzl4paxGAAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAOdj634wiWh6F21tPpXr0Zz3mgAAAAAAEOFr", "types": "CAMVBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-5E-VwOnNYpYxgG8FB6iWg"}} +{"Stacktrace": {"frame": {"ids": "2iSc_7W6mQyfzHA8XRDUrwAAAAAAMJS92iSc_7W6mQyfzHA8XRDUrwAAAAAAeB7Y2iSc_7W6mQyfzHA8XRDUrwAAAAAAdGxJ2iSc_7W6mQyfzHA8XRDUrwAAAAAAdJkN2iSc_7W6mQyfzHA8XRDUrwAAAAAAdIuf2iSc_7W6mQyfzHA8XRDUrwAAAAAAeMBU2iSc_7W6mQyfzHA8XRDUrwAAAAAAd-2z2iSc_7W6mQyfzHA8XRDUrwAAAAAAeJnX2iSc_7W6mQyfzHA8XRDUrwAAAAAAb4aK2iSc_7W6mQyfzHA8XRDUrwAAAAAAb4Ss2iSc_7W6mQyfzHA8XRDUrwAAAAAAb4-D2iSc_7W6mQyfzHA8XRDUrwAAAAAAcRve2iSc_7W6mQyfzHA8XRDUrwAAAAAAUk4q2iSc_7W6mQyfzHA8XRDUrwAAAAAATCdz2iSc_7W6mQyfzHA8XRDUrwAAAAAATDG82iSc_7W6mQyfzHA8XRDUrwAAAAAATDcT2iSc_7W6mQyfzHA8XRDUrwAAAAAATR0l2iSc_7W6mQyfzHA8XRDUrwAAAAAATHOS2iSc_7W6mQyfzHA8XRDUrwAAAAAATRsg2iSc_7W6mQyfzHA8XRDUrwAAAAAATF732iSc_7W6mQyfzHA8XRDUrwAAAAAATR0l2iSc_7W6mQyfzHA8XRDUrwAAAAAATHOS2iSc_7W6mQyfzHA8XRDUrwAAAAAATRsg2iSc_7W6mQyfzHA8XRDUrwAAAAAATF732iSc_7W6mQyfzHA8XRDUrwAAAAAATR0l2iSc_7W6mQyfzHA8XRDUrwAAAAAATHOS2iSc_7W6mQyfzHA8XRDUrwAAAAAATRsg2iSc_7W6mQyfzHA8XRDUrwAAAAAATF732iSc_7W6mQyfzHA8XRDUrwAAAAAATRwl2iSc_7W6mQyfzHA8XRDUrwAAAAAATG4g2iSc_7W6mQyfzHA8XRDUrwAAAAAATRyl2iSc_7W6mQyfzHA8XRDUrwAAAAAATHG32iSc_7W6mQyfzHA8XRDUrwAAAAAATR0l2iSc_7W6mQyfzHA8XRDUrwAAAAAATHOS2iSc_7W6mQyfzHA8XRDUrwAAAAAATRsg2iSc_7W6mQyfzHA8XRDUrwAAAAAATGAX", "types": "JAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7HEwHvlICgH83lADayNlSQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtboT", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kBSgpn7ZjmiglyBaasyctQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF9Y7z5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF78Kz5k14PsCcDvFyUC1kmlV3QAAAAABFxdxz5k14PsCcDvFyUC1kmlV3QAAAAABGnbP6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "BgMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "A0lqFeDgoUgkAVlvNGnR1g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAAAyxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAACNJgmaT4hGItQStPxlJGEPUAAAAAAAAAAEWHTE8ACR4NC-I-EUuyo1lgAAAAAAAAAIjoHdKmx5pRoeIkTwEIvJpAAAAAAAAAAcIKniS6Oltfo1ekuyyeYCXwAAAAAAAAABSJxVsEnpCDnlRh2uwKM1VwAAAAAAAAAIU8y7tkq3OrTv74Jpmv-rDQAAAAAAAAAkWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFuaPqWrgrMtBr19nB0bwQ4AAAAAAAAAA7DvWhbkzH60wdCq3Z8oLdcQAAAAAAAAAHOljKMbs7Sslvbk6h8kJ9yAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfw5DtxqVhoNPMfZH51ZbSdwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOOcrWUHEqh-zll2_gAtcNYwAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAYq1Ak9_WYtjiRUK6jyz9agAAAAAAAMp30rNuxKNw6YxtKvsF6kS_jQAAAAAADuzE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaZ", "types": "CQM9BQIDBQQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NKIT-6sz8Rcrv5dQo1Svfw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxe", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "svuOXkVD7f696L1kXWuSEg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAAcYyddXeaYdXtH-rqw_mxACQAAAAAAAAAFWa2KSPungNJV4Kgnh4ALTgAAAAAAAAARAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMLBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YfsTjmPD9kLqRjMUMi6JuQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVMhk7twoFFvGSvyWsBJzr5QAAAAAAAAAMS-bF0OQ5zu714NI9jV1-DQAAAAAAAADEb95z1GhnNzkQcVnTAGVlWQAAAAAAAAB3fqaDj1pN5-CyodNN44HbZQAAAAAAAAAQc1uIuH7G_H0iDn31aPif-QAAAAAAAAAIysmsm8HVpt4jndQdHwl9VQAAAAAAAAABPbXXr1ohgiKjdKmG8bXqXAAAAAAAAAACXQih0feiHcRhpLZTXruLcwAAAAAAAAATkQIfOKgH7suSILPob4uOXAAAAAAAAAEjwTSbu1Pr78mJrU1RTg5RYgAAAAAAAAAkr8runDm4rOcHO76XR-D7jAAAAAAAAAAMqCAXb4nsA8MBowrcfqVWbwAAAAAAAABd2cxgkaQz6jHA-zT7PPZDvwAAAAAAAACzjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAABu1IhEUKf_PDCxfheapNhvQQAAAAAAAACIGS-BM31ayIfhOMl6o8fHjwAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GP5kPAoo7FZsJJhy9ioFLw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyn-Z3CKaS4aU08RhYA19y5ITQAAAAABzzZNZ3CKaS4aU08RhYA19y5ITQAAAAABzyrfZ3CKaS4aU08RhYA19y5ITQAAAAABz4cvZ3CKaS4aU08RhYA19y5ITQAAAAABz6Vm", "types": "HwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "CA_wEwOu92Pr6owyUiFytg"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABazfcz5k14PsCcDvFyUC1kmlV3QAAAAABaQLqz5k14PsCcDvFyUC1kmlV3QAAAAABauKFz5k14PsCcDvFyUC1kmlV3QAAAAABLLaZz5k14PsCcDvFyUC1kmlV3QAAAAABK3dwz5k14PsCcDvFyUC1kmlV3QAAAAABHfOyz5k14PsCcDvFyUC1kmlV3QAAAAABHAaLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkw", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "CoU2VwCQTWREAWHLrF1NIQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADHmXqXT4fd_WKeR1cE-hlLelCQAAAAAADHmkkXT4fd_WKeR1cE-hlLelCQAAAAAADHm4cXT4fd_WKeR1cE-hlLelCQAAAAAADB6QhXT4fd_WKeR1cE-hlLelCQAAAAAADQm1kXT4fd_WKeR1cE-hlLelCQAAAAAADQnNrXT4fd_WKeR1cE-hlLelCQAAAAAADQjwNXT4fd_WKeR1cE-hlLelCQAAAAAADQjKNXT4fd_WKeR1cE-hlLelCQAAAAAADQjhKXT4fd_WKeR1cE-hlLelCQAAAAAADQiNWXT4fd_WKeR1cE-hlLelCQAAAAAADQS7TXT4fd_WKeR1cE-hlLelCQAAAAAADQSvdXT4fd_WKeR1cE-hlLelCQAAAAAADQcMRXT4fd_WKeR1cE-hlLelCQAAAAAADQUQE", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TQmI4XMpMDMshV6f5WJ0VQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vNqXT4fd_WKeR1cE-hlLelCQAAAAAAC-odPXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJje6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIjB", "types": "EwMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "msqQCDo8QBUf7AXIVm-gMQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADMb6rO_tpQt622H0nBBuO6SAAAAAAAAABQSu5A3ytRNpUaqJtDPFtJoAAAAAAAAAAQQnopTe1pxTR1kVhVN4qn2QAAAAAAAAAjrUHBgSz_SQE-q7C0lnDupQAAAAAAAAAJ6dizidRtpqcGmpShAjzttQAAAAAAAAAVXzWVAFfWPkx_-5DzBgosgQAAAAAAAABhtzBcwDe6SUq4Jkyew2O5egAAAAAAAACSdT5WZm8-ag4VFDZf0HaaMAAAAAAAAADo56J_quP6E7ubMy0oFC4pVgAAAAAAAADYudTo70AymJSY5V7NrMKeuQAAAAAAAAAj", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RRSBTG8alx0CWHE1k2AQIw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBbBcEvvhuguaGYCmGWrnWRz1QAAAAACOHQQcEvvhuguaGYCmGWrnWRz1QAAAAACFOlIcEvvhuguaGYCmGWrnWRz1QAAAAACEM5TcEvvhuguaGYCmGWrnWRz1QAAAAACEMRMcEvvhuguaGYCmGWrnWRz1QAAAAACEXUEcEvvhuguaGYCmGWrnWRz1QAAAAACEXtkcEvvhuguaGYCmGWrnWRz1QAAAAACEX3bcEvvhuguaGYCmGWrnWRz1QAAAAACEm00cEvvhuguaGYCmGWrnWRz1QAAAAACFxcc", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "y6F1nvvdpHb9hSW-EieYIA"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHba4rFFPORY8_4FvK9QaA3QUQAAAAAAGRIW4rFFPORY8_4FvK9QaA3QUQAAAAAAGRJh4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp4rFFPORY8_4FvK9QaA3QUQAAAAAAFwQQ4rFFPORY8_4FvK9QaA3QUQAAAAAADiYq4rFFPORY8_4FvK9QaA3QUQAAAAAAFwkrUJmIMEc6K8gJ39NHYaD0WwAAAAAAEPdy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcDw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbgp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbfA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAROdk6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdbc6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdaQ", "types": "KAMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "26pPt3W8xfk2EoAHTjVslw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAdLJM8DDAjVJl721y2vxKHGSBegAAAAAAdFID8DDAjVJl721y2vxKHGSBegAAAAAAdJ0N8DDAjVJl721y2vxKHGSBegAAAAAAckeD", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6Xg78Qz1bRNiXPGMI1FW4A"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf_a", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zdYgWAubqWFz0RieUZ7cAg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qkwlUtuQNZ2cGuJOBjod69QAAAAAAAAAfFZcDTI2WOs3OMnDBC0zHmAAAAAAAAACHLh1LDdjDW07X-POqmR5FOgAAAAAAAAACGNh1_yXJg_PNE59rBU9I5AAAAAAAAABVn8yyz5vynZOoIo8vPU8CuQAAAAAAAAMJ7ptKTGTqqszfKDkDMhWl3gAAAAAAAADwlnD3yopDvkzAiMrBeI7uYwAAAAAAAAAThMqB3QsN4kPUoabYWOM36AAAAAAAAAB7vMKrZyiGBF1k3lROCgHb_AAAAAAAAACN0EOWuO-1I_jw1WEaYJ3N4QAAAAAAAACAL-TqhtRJEZh9BowyUbSUxgAAAAAAAAAqaU_7qz-4oBJRwT7L5f1odgAAAAAAAAIa8Vp7ROEVEbyUNILbxDH2JwAAAAAAAAE6px0hV-6ryQEPvsqFbgeWxAAAAAAAAAAA", "types": "CQMPBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NOnGh3gxK7KVO42qzDOWUw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AFUz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHphgz5k14PsCcDvFyUC1kmlV3QAAAAABG-csz5k14PsCcDvFyUC1kmlV3QAAAAABHCmp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0ZR", "types": "BwMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4BjV2rYL8aZZ9wWVP_iBZA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxf3Z3CKaS4aU08RhYA19y5ITQAAAAAB0D41", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YHlz2_RUb_dJDnbIGfEi0Q"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABBAkYxe-SHgukLEpCkawSk1QWAAAAAAABAvkYxe-SHgukLEpCkawSk1QWAAAAAAAA_IZYxe-SHgukLEpCkawSk1QWAAAAAAAA-3HYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CQMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "rWzS_3AchqOC3pek4V9wnA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQEI2MlivQ_yGyq36LnLAGeQAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQOUV_Man7LKpLI_xXeAvtgAAAAAAAAACeM1U5MRplArg1qeEAEk5MlAAAAAAAAAAYNK6q-mYZhWe1E7afoKkwiQAAAAAAAADYr6Fg_DPZ96geKIjDaUl37wAAAAAAAACsPYNQGka54-Rn86JqyO8oZgAAAAAAAAAMuHXk96D_H0MjX0tAh6AHfQAAAAAAAAAGBQgPvwiw9NNbOJgDcqi8DAAAAAAAAAAtD8SuOAHHuRsEe9MWrwApVgAAAAAAAAEC8lbOW9-D9FVTLW-mPAz8XgAAAAAAAAB3U_oZxhTm05Eok6Ih3UqoFwAAAAAAAAAC3w5xyA8SskdHEEGy4TbDIwAAAAAAAAAgZQJJRs-ZdTHhVtPo6Pg4QwAAAAAAAAAOAmq1Q_OWnEFyfJsbIWLjHgAAAAAAAAAFWXXg2SS3W7AU90NqSnrfYQAAAAAAAAAevvrucdq7XDjtQT3GX21jQwAAAAAAAAAFHpc9fcwdAtL-q9U_IYdFuQAAAAAAAAAwPaUpsB-9YmjyzvUTmCWUJQAAAAAAAAABdHlNMp0ZILU0xdYijiy7JwAAAAAAAABA53F48CLbttkBCL1_nvNwfwAAAAAAAABe3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAadswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9G7qgzWR4HB2bQAmHxPhaQAAAAAAAAAMRf28uus4XCT1MYMuboj79gAAAAAAAABs45l-3EzV2pQer0tpzvWJuAAAAAAAAAAY_-XUdumhTxHCVZ0GQJxIggAAAAAAAAAFidtvmh4QN6gpCMGU1zaMHwAAAAAAAAAFANUDzCguopTSw91qnI0ylAAAAAAAAAAOKoZCqsyM0sKzmLSHhW2LPgAAAAAAAAA6qgT1G94i7OMCDzibJAJ1dgAAAAAAAAAC3w5xyA8SskdHEEGy4TbDIwAAAAAAAAASXQiZEoz1AYfl8TlT3_m5HwAAAAAAAAAIFiIwFVQEYNMmoL4k9cth8gAAAAAAAAAHbA3qX86DKyPOkhqFKNfdIwAAAAAAAAABjnwpC-g9yl69bbXrtqzX-gAAAAAAAAAQ7Elz6xgAevwUpvFunHR27wAAAAAAAAAhm7zGOMSqFaBnVhhzRowaWAAAAAAAAAACGOPzq0h4Pslwnjs2CP5J9gAAAAAAAACDWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAZAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CANMBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "oH3_96UX1vEzFR-eQzNz5A"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAABHaFY7B_NxRB-tFVbAaTDiew0fwAAAAAAs3ai7B_NxRB-tFVbAaTDiew0fwAAAAAAsy3m7B_NxRB-tFVbAaTDiew0fwAAAAAAyw637B_NxRB-tFVbAaTDiew0fwAAAAAAyxEy7B_NxRB-tFVbAaTDiew0fwAAAAAAyuri7B_NxRB-tFVbAaTDiew0fwAAAAAAoOEO7B_NxRB-tFVbAaTDiew0fwAAAAAAoNy77B_NxRB-tFVbAaTDiew0fwAAAAAAvAWs", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MTIJ3vTYM-LphU0AUVDFgg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATMsVxGJ_9ADjCLmkId1rUYwAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAEKGqShcrW-d9_GDzTagKIU9QAAAAAAAAAG_h880XQOq8mngzMZR-nPlwAAAAAAAABR9iEsaZI76W1WejkwhmTFwQAAAAAAAAAHC64NVLkkZ7RW349y9srs0gAAAAAAAAAEH7o77ANtSaWU3Ypp865GJwAAAAAAAABW_93WPbrUDW14kcLWmrpKPQAAAAAAAAAG12nEeMsH00wjguIyHXaYDwAAAAAAAAAEHRnmOObX7UEhjneXDGbG8gAAAAAAAAAMWdf_fGMEPXcmaZUprOUqQwAAAAAAAAABzKHS4hsJddCCPPI3lqHKuAAAAAAAAAAF__e_ReExoac--V-RQeNXewAAAAAAAAAHqnkrTiN5YCts6ND7O0BX2QAAAAAAAAAPHRnmOObX7UEhjneXDGbG8gAAAAAAAAAMWj5_TD0E9go0_JwMtB1C3QAAAAAAAAAF3QWEH8eApmH_ruugOKv76AAAAAAAAAAHshNXixs-94AywpTuAMqgvAAAAAAAAAAK5m5J32z338iItYAy0IlfPgAAAAAAAAAopGnFHfBK3F-I6STArMJjqQAAAAAAAAABqsOdwnOfdpGhy1Ny492aAwAAAAAAAAAGbfWTJUKYANwcIsCQIfxvLQAAAAAAAAAC1rHoPMq-mpf_DwJrvHqYAwAAAAAAAABVPqkKpz2WDphJH5ROhuDMyAAAAAAAAAAOYegVEymiG8lw5t7wHfz6hwAAAAAAAAEmTl_Iodjc0LWexYa5MoBoHAAAAAAAAAAHY3ftK9mWklQQE1dRC8tbhwAAAAAAAAATzcjbCSOxeTCClWpD2cCw2AAAAAAAAAATu39hB2o_bkkn64I33Zf2OAAAAAAAAAAx6KM6RK-sq5wYpyjnMfBa7AAAAAAAAAAsxLOLXg5EKZgSVcI5Dw46ugAAAAAAAAC40LGXmFocz46kL18OXWxszwAAAAAAAAA1cuyNWlZFQkabnqdPXO_rXQAAAAAAAABNSlb8MNVKIFfE9HJqtN3BhwAAAAAAAAAAWpojVIMMfjg1gPX4CFe0BAAAAAAAAC1uHt2yyHtMhQP9uhMxLoNAEgAAAAAAAIuLHt2yyHtMhQP9uhMxLoNAEgAAAAAAAH75", "types": "CAM-BQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9x681JN1h3SqDZwU_3b_Tg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAP4nyMCPt5M-rbb158Tnrz3sgAAAAAAAAA0i__VMh3MgmTJp7v_qMbssAAAAAAAAAAOtW1ONDyoCZkpOb4VQBh9egAAAAAAAAALcx_5Zli6ZQBZEsnw0z8RFAAAAAAAAAAjDVSkUfLwOzQuwgYi6TvurAAAAAAAAAATsFs-DxXlXTzn3bVNvCe0KwAAAAAAAAAEvu1niHfy-hSLbNHl3l8G6gAAAAAAAAABGPK7pyl3RjtyKa9WtooOGgAAAAAAAABf", "types": "CAO2BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cA_Jm_35NEFACdYbyTgseg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEPoG3DRiZKlMZ3sh3A8whkKQAAAAAAAAAy8_3LGlNMADWVmY7MNYKbGgAAAAAAAABKLm-i7mHlXTzn3dRUwPqsywAAAAAAAAAE", "types": "CQMuBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "p7ozn-FzI6f3HgZkeIvlFQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVP4GdI6f6aagjBxBAKz-KIgAAAAAAAAAMqd26ee2y8slhneyPRIcQAgAAAAAAAADEwKREEYJF8V2B2guAeJRSCwAAAAAAAACoWsBETJrPecSrGYvg781P3AAAAAAAAAC4mYO8eYShKNmyuBL3FXJB-gAAAAAAAAAwbcm3REG58b46CBv8_xMfuwAAAAAAAAAKxhbJyq2dXJOtFwl6fNdtPwAAAAAAAAANAD6q8JNXSicx23C7lYRhhwAAAAAAAAAHT-7yVwNuXXP4l85wV1xmqgAAAAAAAABgWP24-sIZ9ujXLXhCrx5dnQAAAAAAAACquVBW3qATYlP-aD6h0fuyUwAAAAAAAAAEF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdPT4VaUhFLgQWjMovkqo-tQAAAAAAAAAI8CGal5YjjmTZUgONcBCVkAAAAAAAAAAFSZIzrSBBPBO2zJj0aqaKggAAAAAAAAD_AOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAAG2Wxf0OtqIcfKcZtbpDMZ1QgAAAAAAAABrPeR7MGoLPIDRHDuohlqHugAAAAAAAAAgun6cBO6D7gNVatBvdCHO5wAAAAAAAAAG2Gjxa8Lemwix5NrE6xBsvAAAAAAAAAA7qnR7SPBrCbnbJk8v7ooOnwAAAAAAAAAGz2VnMzkPQ5tcla-26h5_wAAAAAAAAACKEYGjlLJCu-Vl57yx-_7_hwAAAAAAAABccSK3QkQEScwA7ISZYZcmKgAAAAAAAAFDBclABPaTGPcTz5H4BnHdywAAAAAAAABBfOvbXkq5emlxJGl5W6ErrAAAAAAAAADDg8uTn1yVw1EYmPA-d4Jf8QAAAAAAAAFtNs0s4gEeS-3vBv2JTXoIUwAAAAAAAAACB1Fik48UGCbX7UauOrd97AAAAAAAAABsCYmmifTlP7qDv4TsTU1LUAAAAAAAAAC65vShGsOt6DdWOsue-DtpXgAAAAAAAAAJ4ksqoSQaCDcXF2GHOzi7FwAAAAAAAAAv6KSNndy85gBTgVQEjf0SaQAAAAAAAAPXmS3MukICCdHTn2nKGwcjXAAAAAAAAACR3CtdmmzWFDHgyMsAZ5xuPAAAAAAAAAANc_qld6wd_isol7z5VbPyFAAAAAAAAAA_eXbGsW5csMSDC-cNf7pLNAAAAAAAAAC3UqfyhZQ3fI9SbWWpJdPw5QAAAAAAAAAJYX6jd4K2CK6gVQH6DsXh-AAAAAAAAAA9xzVp1246WQXER1towTGTRQAAAAAAAAAgqEBUjzYNkS1ejSIGCCvPLQAAAAAAAABWDBri3jDzfaLbELrPGFmlSwAAAAAAAAA_2_I6fJF6BIBOXzL_ggufMgAAAAAAAAAUkTuJwdWOQ890OtJgEybsewAAAAAAAAA69IhHfuWJrOs11474cWFSIwAAAAAAAAADapAnlvLPH-oOxbShKb24TAAAAAAAAAAfdrfqIeIYaH75qJBezgpYRwAAAAAAAABB-1XqE2W4hU4x2_iRlb0aiQAAAAAAAAB5A2vPxaVHXRf3HRGy2l0TqwAAAAAAAAAsxO_doWsVfTOu6EOTZQnX8AAAAAAAAAAyxlb09pg_CNqer4pEvxIDdgAAAAAAAABab1GECJUSnH_79vWkuc6clwAAAAAAAAAcqG8i5jaDrGhTyGtmlMlG_QAAAAAAAAAA", "types": "CANLBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9STLAbDjf2YYtiy7fNtNKg"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAAAvLFL9Bd3XIiGWasJdN8trI5tgAAAAAANPmbL9Bd3XIiGWasJdN8trI5tgAAAAAANQHDL9Bd3XIiGWasJdN8trI5tgAAAAAANQm6L9Bd3XIiGWasJdN8trI5tgAAAAAANHY_L9Bd3XIiGWasJdN8trI5tgAAAAAANIBjL9Bd3XIiGWasJdN8trI5tgAAAAAAKSvgL9Bd3XIiGWasJdN8trI5tgAAAAAAKTYqL9Bd3XIiGWasJdN8trI5tgAAAAAACA656tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAACfXN6tVKI4mSYDEJ-ABAIpYXcgAAAAAACfVP6tVKI4mSYDEJ-ABAIpYXcgAAAAAACfRo6tVKI4mSYDEJ-ABAIpYXcgAAAAAACd4N6tVKI4mSYDEJ-ABAIpYXcgAAAAAACdyw6tVKI4mSYDEJ-ABAIpYXcgAAAAAACc-s6tVKI4mSYDEJ-ABAIpYXcgAAAAAANvHp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALzio6tVKI4mSYDEJ-ABAIpYXcgAAAAAALzey6tVKI4mSYDEJ-ABAIpYXcgAAAAAALzVz6tVKI4mSYDEJ-ABAIpYXcgAAAAAALx_h6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD8cD", "types": "CQMOBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0d9YQ-e0NkV6D_CllKADtQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgb9rcEvvhuguaGYCmGWrnWRz1QAAAAADgcaEcEvvhuguaGYCmGWrnWRz1QAAAAADgcoOcEvvhuguaGYCmGWrnWRz1QAAAAAChhyUcEvvhuguaGYCmGWrnWRz1QAAAAACETQ8cEvvhuguaGYCmGWrnWRz1QAAAAACFt9B", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1ZAtayYjqyl53MjK4l-zrQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADIFVJXT4fd_WKeR1cE-hlLelCQAAAAAADIFloXT4fd_WKeR1cE-hlLelCQAAAAAAC8IRrXT4fd_WKeR1cE-hlLelCQAAAAAAC8GpCXT4fd_WKeR1cE-hlLelCQAAAAAAC8GhEXT4fd_WKeR1cE-hlLelCQAAAAAAC8GpCXT4fd_WKeR1cE-hlLelCQAAAAAAC8FDtXT4fd_WKeR1cE-hlLelCQAAAAAAC_CAEXT4fd_WKeR1cE-hlLelCQAAAAAAC_Cb8XT4fd_WKeR1cE-hlLelCQAAAAAAC_B7cXT4fd_WKeR1cE-hlLelCQAAAAAAC--MdXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFzEXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgURkXT4fd_WKeR1cE-hlLelCQAAAAAACgT3kXT4fd_WKeR1cE-hlLelCQAAAAAACgeSRXT4fd_WKeR1cE-hlLelCQAAAAAACge8X", "types": "GgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "rXS9SIc4nfA61CMQTgLywQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChGI0XT4fd_WKeR1cE-hlLelCQAAAAAACg6XUXT4fd_WKeR1cE-hlLelCQAAAAAACh0pT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJje6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIjb", "types": "BgMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KYXNBFEaST9joFwbh1TNtA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChkrD", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0pfL-5C-WWqs0UipIUkkAg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAABhRJXjPkp22gaQo9vwY-85JAAAAAAAAAAA", "types": "CAOzBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Kot75liUTwO7WGfa9_JnHQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAABVUGAPUw2d5-4XxhgrPyPBigAAAAAAAAAMxhOAoPbUvqtSdEcy7uoPXwAAAAAAAAAFeXimxJw4055xWDImg8DzoQAAAAAAAAAqhIPSIc3LxfgC93-3l1xbUgAAAAAAAAA8", "types": "CAMJBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Rw85YbAcZ4tfCh25CQ5QcA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQJvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACeySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAYh-mcFcSefWaXpPLGLAmk8gAAAAAAAADYzXY2fMPD2q8JxxSeQ4an4AAAAAAAAADbsSDVmLRXn5j8cMEHakX25QAAAAAAAAAMbYR0b7-vTQ0RKJD6ns3ClQAAAAAAAAAG5WRkp3UGiY89oONYWWfHqAAAAAAAAAAtidAHvTfpCa_Lill3CvLIKwAAAAAAAAECw3qTM6Aby-qZXMm0XUnzgwAAAAAAAAB3_Mj0l5QoylIkj8uQiHBbSgAAAAAAAAACVY8isU5x9BO-Wo5ffXRMDwAAAAAAAAAgw_AjU4Xe1XDB3bYRcLPccAAAAAAAAAAO2qSm8YWxCseLd4fv21CSvQAAAAAAAAACAmq1Q_OWnEFyfJsbIWLjHgAAAAAAAAAF_ClvZwoaoNKYBkqe6z6XsQAAAAAAAAAF_Bdmm0vBbIMO55dmTHq0vQAAAAAAAAAPRoEXpF3R2NyeWrYDiUWi2AAAAAAAAAAF-9csDmO37G4aOEY7rEoDVQAAAAAAAAAqjcIWUSsiapCLfbB0_4IxDAAAAAAAAAAL8NngJtVZgM_5w8hEjt1IaQAAAAAAAABEnTY5PVj9xOh25K27IM1v_QAAAAAAAAAEOwxhJ9aS9l8Am41KVUEKowAAAAAAAAAoIP-0ehyB4mH8RoHXfGwsRgAAAAAAAAAMPnh4OBolKLQEKxwc_nQpPgAAAAAAAAAc29ZzMrfJSl80B2Ozek1-kAAAAAAAAABA5xth400yyE4MoVI14rYvVwAAAAAAAAGjYsR9Kn-aHu4mo0d_CbQ-ngAAAAAAAAAB1yqnDrIzkRqyHd0qKpno_wAAAAAAAAFiWwkq4tqrtOB1pcVDF192OAAAAAAAAAC8Fr_gvlXdWzWeQ3Po5KXNtAAAAAAAAAAFAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJGQBTbkHwVq-3ylCsjxkzKQAAAAAAAAAcn1Y254wxpQ3hq_nYz9gRWgAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRW7C8N1q94TuMskdRCHbYwAAAAAAAAAFCMOLX12QynGJCu7CxyKH2AAAAAAAAAAg8T1U1Mk0_z7jRWhB49ZqDAAAAAAAAAAF5l-2W9KB4tO_4MUXJhjp9AAAAAAAAAAQ_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANrm7qvZUZlKLe_NANuZbHtAAAAAAAAAAGY3R8SvzC_aAE7qgJvT7cmQAAAAAAAAAiuJ92AJuIye4-5NDP89wkuQAAAAAAAAAIuWFseGlS0yyGOASPvxDcIQAAAAAAAACg4Dt4PWF698AixBVjMbbA6QAAAAAAAAAGYuSHtRaDv4Y92h1o2cvsAAAAAAAAAAC-2xbMKGUKsExE5SEi9o0YIwAAAAAAAAAIotDVL_fyRUOGDSbdwqUYNAAAAAAAAAFNXulYF1ifC1__BmobV2RtpgAAAAAAAABZahi10GzcXmlXnZKg3UIU8wAAAAAAAAAGmVTx8S_hff78C60ouuBUUAAAAAAAAAAomqWA7SS-uPGD-_Z3zWEpkgAAAAAAAABqmoug4ghdvV0L6kc1EBfG1gAAAAAAAAAMEv5ZvILr4tvntiwSPeUhSgAAAAAAAAAXXdG0dvGZNE9EiogDM70KjQAAAAAAAAAEiO8S4ZDXPufD6TNmOY29JAAAAAAAAAAHTXS-M7XDD4DedgFr7B7PEgAAAAAAAABTPWYGELIW3SqFoRNmW7QBAgAAAAAAAAB3AAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CANdBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4EB1ol6WjzbeyxUJ2VSnqg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAAA65FYxe-SHgukLEpCkawSk1QWAAAAAAAA8D0Yxe-SHgukLEpCkawSk1QWAAAAAAAA_IZYxe-SHgukLEpCkawSk1QWAAAAAAAA-3HYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEMf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD5P6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAwsz6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtoK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIUme", "types": "CAMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Pu5PKkDnNMy8ShJ_zDgVIg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-9R0XT4fd_WKeR1cE-hlLelCQAAAAAAC-xp-XT4fd_WKeR1cE-hlLelCQAAAAAAC-tNEXT4fd_WKeR1cE-hlLelCQAAAAAAC-hiKXT4fd_WKeR1cE-hlLelCQAAAAAAC-hZZXT4fd_WKeR1cE-hlLelCQAAAAAAC8k6-XT4fd_WKeR1cE-hlLelCQAAAAAAC8tjlXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8suKXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8sfIXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8suKXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8sfIXT4fd_WKeR1cE-hlLelCQAAAAAAC8qveXT4fd_WKeR1cE-hlLelCQAAAAAAC8qy8XT4fd_WKeR1cE-hlLelCQAAAAAAC-jAwXT4fd_WKeR1cE-hlLelCQAAAAAAC8eopXT4fd_WKeR1cE-hlLelCQAAAAAAC8xKHXT4fd_WKeR1cE-hlLelCQAAAAAAC9ZmEXT4fd_WKeR1cE-hlLelCQAAAAAACgab1", "types": "IgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RCrec6lavTAbosp4f6WrlQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAdLJM8DDAjVJl721y2vxKHGSBegAAAAAAdFIV8DDAjVJl721y2vxKHGSBegAAAAAAdDbu8DDAjVJl721y2vxKHGSBegAAAAAAdJzz8DDAjVJl721y2vxKHGSBegAAAAAAdHlS", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "uZ2h5TgkQGTbTnmFCWbIaQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAABhRJXjPkp22gaQo9vwY-85JAAAAAAAAAB1DLrWTvtAPDh4Uv4u2shragAAAAAAAAAMAAAAAAAAV4sAAAAAAAAAHYXuSio4gqgnsTGLCNH21piOrMPoln5uBQAAAAAA0IqysTGLCNH21piOrMPoln5uBQAAAAAA8TcnsTGLCNH21piOrMPoln5uBQAAAAAAuW6PsTGLCNH21piOrMPoln5uBQAAAAAAuWDYpp6LgRqCGeGjs7cnnwItcAAAAAAAFgpR", "types": "CAMkBQUD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0XNfczd--T_llqNCpWNAsQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAdLJM8DDAjVJl721y2vxKHGSBegAAAAAAdFIV8DDAjVJl721y2vxKHGSBegAAAAAAdDbu8DDAjVJl721y2vxKHGSBegAAAAAAdJ0N8DDAjVJl721y2vxKHGSBegAAAAAAcikg", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Cv-Mak1VlpmhEVyP9U96rg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAABvZKLj_deYRtPDewbXBnoroAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAwy86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAAFYTifPIvND7b7ICq3M7OVoFwAAAAAAAAG8rtJFGuFDWKgkQ_kOhDwLwgAAAAAAAADcmvWNLiibNh2jmnrh-j3LtgAAAAAAAABYCIJa2mPNm8b1wwJ_UCRwpAAAAAAAAAAZQzMU8x58pu8LAFTJ6bQCOwAAAAAAAACnd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsK06i4sR69nVCcg3FbwNeuwAAAAAAAAAT90J0K9KRqjzo3OWaVDBuGAAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBAZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMoavQ7EacG6CR4rzcFaNFEsTQAAAAAAATs0", "types": "CAMxBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WRhjSBabbAxDosOCs999nw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB81E7z5k14PsCcDvFyUC1kmlV3QAAAAABHpn0z5k14PsCcDvFyUC1kmlV3QAAAAABHpp5z5k14PsCcDvFyUC1kmlV3QAAAAABHeJQz5k14PsCcDvFyUC1kmlV3QAAAAABHdQDz5k14PsCcDvFyUC1kmlV3QAAAAABHeHZz5k14PsCcDvFyUC1kmlV3QAAAAABFwLgz5k14PsCcDvFyUC1kmlV3QAAAAABGnan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMt_f", "types": "CgMCBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MEKItYA1QzwQVTSMuQGy0Q"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZB4", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1hGtGBtbN7mytA5A1xIing"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSIeXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdTE", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FJy0IC1EylQCTSSSBZutsQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQEI2MlivQ_yGyq36LnLAGeQAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQOUV_Man7LKpLI_xXeAvtgAAAAAAAAACeM1U5MRplArg1qeEAEk5MlAAAAAAAAAAYNK6q-mYZhWe1E7afoKkwiQAAAAAAAADYr6Fg_DPZ96geKIjDaUl37wAAAAAAAACsw4rigzpgbjcuXg80-JfDQgAAAAAAAAAMuHXk96D_H0MjX0tAh6AHfQAAAAAAAAAGBQgPvwiw9NNbOJgDcqi8DAAAAAAAAAAtD8SuOAHHuRsEe9MWrwApVgAAAAAAAABUpD64Y8dYs0KzJcRfejjvpQAAAAAAAAE6DAUA7GSw6Ke6rbTnHSbHTAAAAAAAAAAFzBpAhvVgrCIr7SpQUiyvkgAAAAAAAAAFBQ3-gSiDHtjBWMvWMYG6qgAAAAAAAAALYF5GymQJP4kloPPjSqFh6AAAAAAAAACiYegVEymiG8lw5t7wHfz6hwAAAAAAAAEmTl_Iodjc0LWexYa5MoBoHAAAAAAAAAAHNxl4jhqb6WfNJXf20V8lwwAAAAAAAABNaT-ah139K7J7PZ8E2ZKbIAAAAAAAAAAElzaQ7rnM1jJ-7X0cuTYcVgAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAM0BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9kK-JoyEZKUK1QXgB_8kdw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAb2NV1_P-7MD9EV4IU3PPFPgAAAAAAAAAIFvLEgO6EVwqVPblJ4ky7owAAAAAAAAEATtbYTVcLyuq7OagEpbpQ-wAAAAAAAAA4S6rhF6QuVR-vQCbeLGEjfwAAAAAAAAAMQDbvOcjOvO39dDe2ob7E_wAAAAAAAAAFyHrZEOlsPQ3YiI0ndQv2SAAAAAAAAAAIotkeOgHMDZdOlA7GywTS3gAAAAAAAAAN5snd27jMDyCzCgMymsEVngAAAAAAAAA9p4JTdeovgihpyswPHew6jAAAAAAAAAAHotkeOgHMDZdOlA7GywTS3gAAAAAAAAANeBe2TV8VA2V7lLyhiCvcHgAAAAAAAAAEclNKHmin0SttGhUDhj4qagAAAAAAAAAH68m2CwWM-Ledaj5WNl9lhAAAAAAAAAAqwMYFsNM0woNzFGwcp47vbgAAAAAAAABGEh0v14Wp9mB3u5tYha0hzQAAAAAAAAAmwSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFbhnM-182eA1jGyBQl8pMugAAAAAAAAAU4pL5iWdAziHKM6VzojymqQAAAAAAAAAGX8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0g4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAWMCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc5430MZlAMqI5SXd_yT5HRQAAAAAAAABcHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFN7LIGw1erb09TPWj8M9ehwAAAAAAAAAYwr21gCsicBxbZw2IJaNDDgAAAAAAAAAGEh0v14Wp9mB3u5tYha0hzQAAAAAAAABDNrGc1Zv4PKi24qpmzBRPXgAAAAAAAAAHMWAuSOWD7Y0yaH37w1B-JAAAAAAAAAAOwMYFsNM0woNzFGwcp47vbgAAAAAAAABGEh0v14Wp9mB3u5tYha0hzQAAAAAAAAAmwSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFbhnM-182eA1jGyBQl8pMugAAAAAAAAAU4pL5iWdAziHKM6VzojymqQAAAAAAAAAGX8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0g4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAWMCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc5430MZlAMqI5SXd_yT5HRQAAAAAAAABcHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFN7LIGw1erb09TPWj8M9ehwAAAAAAAAAYwr21gCsicBxbZw2IJaNDDgAAAAAAAAAGEh0v14Wp9mB3u5tYha0hzQAAAAAAAABDxgR1nDKqRrRw5aGR8MbuygAAAAAAAAAH_oxIlHmzNVD2Qt3Pm_FyKQAAAAAAAADoZMNLhB6JRntztnCFdMqTDwAAAAAAAAARr6OQqChD9ydemA0TTpv7WwAAAAAAAAABR8EFgYOYgypNKPaboigIPwAAAAAAAANY68m2CwWM-Ledaj5WNl9lhAAAAAAAAAAqwMYFsNM0woNzFGwcp47vbgAAAAAAAABGEh0v14Wp9mB3u5tYha0hzQAAAAAAAAAmwSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFbhnM-182eA1jGyBQl8pMugAAAAAAAAAU4pL5iWdAziHKM6VzojymqQAAAAAAAAAGX8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0g4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAWMCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc5430MZlAMqI5SXd_yT5HRQAAAAAAAABcHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFN7LIGw1erb09TPWj8M9ehwAAAAAAAAAYwr21gCsicBxbZw2IJaNDDgAAAAAAAAAGEh0v14Wp9mB3u5tYha0hzQAAAAAAAABDGfimnLWELuplsZWy0ypDaAAAAAAAAAAHxlxlqYNZokkB3BLAyO89ygAAAAAAAAAOr6OQqChD9ydemA0TTpv7WwAAAAAAAAABtjEDIxS1EsZE2YemSuULDQAAAAAAAADc9EBKc87P9754FpEI-1iJ5QAAAAAAAADMy1AAh4MxeTU-w8RAswWtTgAAAAAAAAAeMT-d8HUP7sCTrw90PJ0t7AAAAAAAAAAQDpfPH-P4iHE8WKdUsFaI6AAAAAAAAAALyaDDp4ajuHZJEd39avMrXQAAAAAAAAEmjK78v_SBWXBF1ZebUCWqCAAAAAAAAAA5XtpZqZJ-yh5E1XUhbpHwRAAAAAAAAAAVI63RT_W0q_XUvwLmcrZgvQAAAAAAAAAs09HojiUg8nphKjecrAhDSAAAAAAAAAANmGFonAOfO9RTIvyjMIlDYAAAAAAAAAADbJ2LIYrLvR6QAV8mApWRXQAAAAAAAAAQiXaoDIhlEPfbXJEFUAhiKQAAAAAAAAADwsiwpURe2IZjbmwCkcK3NwAAAAAAAAAJDUWYePMsNbo7HGAKMdOLTAAAAAAAAACi", "types": "CQN3BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3k_lgbAOw9MU1pd_YSgnZA"}} +{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBAu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAYtbf6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgVN6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOBI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN216tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIer6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlH3T6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIYH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIRA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAl1AE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlzoH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlmsw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAll9_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAllGK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAirCv6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "FgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SFn-AE4FVjnPbzGVfeaMqA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmq-", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "N51twwQ-uvjl9L3xxzZX0Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHX31XT4fd_WKeR1cE-hlLelCQAAAAAACoA7IXT4fd_WKeR1cE-hlLelCQAAAAAACgUmmXT4fd_WKeR1cE-hlLelCQAAAAAACgUTFXT4fd_WKeR1cE-hlLelCQAAAAAAChz-q", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "imcz-zqt-oMhcL0qLCk8qA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABBgJKCOQJCNUe5j61lhCTyewAAAAAAAATdBzHaaplfCkGFxXmJVqCJAgAAAAAAAAARkLG20VFMtAeL120q9dFk-QAAAAAAAAAhR9d-4EOoAQqhB1QW7ZwT_wAAAAAAAAAzo12usDa-ccgM9QQ_AEcx1QAAAAAAAAAFSMW9zCbquMJpN4-ovsWRRgAAAAAAAAATf4RFO4opMHbfDHsMuk104wAAAAAAAACfqzl7uikfyhFsmptyftI77AAAAAAAAAAOWMhHaOTktxi97U0bj2R8pgAAAAAAAAACQmnug1hjSOtLZN2VCZFd8QAAAAAAAAAC2Vq7hlSQLB1KnkU2m2cuSQAAAAAAAAB6IMTQbn27-V62k7p4E0iU3AAAAAAAAAATeLZcmkguwR8Cgi2RzPcV7gAAAAAAAACf2Vq7hlSQLB1KnkU2m2cuSQAAAAAAAAB6IMTQbn27-V62k7p4E0iU3AAAAAAAAAATeLZcmkguwR8Cgi2RzPcV7gAAAAAAAACDrVnovIQDyvbeYDNhpsDvaAAAAAAAAAAdC6CXqsc1a9CnazSBL1kFOQAAAAAAAAAQY_0PlmgodfGN6ilNuwSgmAAAAAAAAAAYstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGUKLoduJn5-YPXULy7Ukl9AAAAAAAAAAqzEf9qEa-MLzluKUM9knuogAAAAAAAAAjYLpDdTG4cbSOh219-7CCowAAAAAAAAAA", "types": "CQNHBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "c7VLnPrfa3Wwjmd8BayeWg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZthzncPMjH_Hp8wlnC889jAAAAAAAAAASdY3nB7xe3zg1QDQFswG3AwAAAAAAAAAGm-C5-w8EcuN6p-eKsCUxUQAAAAAAAAAVtLidJxRjGWRw8PC1hoYlVAAAAAAAAAAO5zeDK3wcoFBVPEbB7Y83WQAAAAAAAAAEhQvt9SGcnRC8tVEB_Tur9QAAAAAAAAAOmxNhetCUxYQZQBlbqXLWtAAAAAAAAAABAZGriLcxLoYYv_Z-GwPFpwAAAAAAAABc", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wQIwclgSqKb144G75yYx4w"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgLJ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "goNIrfII85QQIfgfQ648gw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAALzbjhk7iO4zKDe_CtTcO5FQAAAAAAAAABw3TshcZYurjm6c72duqqcwAAAAAAAAAQA9VwK6SroKXsQKAAWW8wJgAAAAAAAAAAcGBPCS3aPXXlmHmrx5RsEQAAAAAAAACnH-oIPm6rn2UvnPt58L-yLgAAAAAAAAAB6c0EnlLjrGzIpjA-TtNuJgAAAAAAAAAAQRLEHBaKoaTG7nEoPkKciQAAAAAAACMYsTGLCNH21piOrMPoln5uBQAAAAAAt8CRsTGLCNH21piOrMPoln5uBQAAAAAAu1ptsTGLCNH21piOrMPoln5uBQAAAAAAhl6lsTGLCNH21piOrMPoln5uBQAAAAAAhl2_sTGLCNH21piOrMPoln5uBQAAAAAAfphA", "types": "CAMRBQYD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0GUbMBQAjjeuwvfDjff_jA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADHmXqXT4fd_WKeR1cE-hlLelCQAAAAAADHmkkXT4fd_WKeR1cE-hlLelCQAAAAAADHm4cXT4fd_WKeR1cE-hlLelCQAAAAAADB6QhXT4fd_WKeR1cE-hlLelCQAAAAAADQm1kXT4fd_WKeR1cE-hlLelCQAAAAAADQnNrXT4fd_WKeR1cE-hlLelCQAAAAAADQjwNXT4fd_WKeR1cE-hlLelCQAAAAAADQjKkXT4fd_WKeR1cE-hlLelCQAAAAAADQiVsXT4fd_WKeR1cE-hlLelCQAAAAAADQTj9XT4fd_WKeR1cE-hlLelCQAAAAAADQSvdXT4fd_WKeR1cE-hlLelCQAAAAAADQcNY", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vZxXRva_k9rxktoXW3i7Sw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAAB-5iAtVIILui-LgFNzk7nI4QAAAAAAAAAFTlb-NMKl40FjLIQMDGJfBQAAAAAAAAAXxme1OLUOxM6S5mWcBl9N_gAAAAAAAAAC8EydHzqUyrjotjG1DR1HjgAAAAAAAAADx7dNtL9l6yQnqIhb2iRkJQAAAAAAAABV85xU6UdOBVE-6wKT-DYa3QAAAAAAAAAcKlMLGpkm1pBrBLT79cviPAAAAAAAAAABzVZBdh_gmAiL5X6tN_0jKgAAAAAAAAAEWBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAABMQNDqKDPWY6nq0qvBxhyKdwAAAAAAAAByaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABKwl0U5vJFJokP-keLWBjMkQAAAAAAAAAJDUWYePMsNbo7HGAKMdOLTAAAAAAAAACi", "types": "CQNMBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "imiOXA4JwpWO0duCac7VDA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALO-i40hQb92bY-JOhJrV2owAAAAAAAAAs6l-EHm0OnthNsvyaQcuYhwAAAAAAAACN6lZUkN3dGRNTlylh0Rs1AgAAAAAAAAAWF_PHkNHp1cM7FmVp9OVy9AAAAAAAAAA2IYsF8T0nmW0EDmKEbhfC1AAAAAAAAAB3ZNIMXBN7NKTXUfXb93okMgAAAAAAAACfVdwrqP2He6NLNQ9LuEAacQAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQecGPZMO_Ar5A3oFGzfPKKAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQfGOA0JLmMg26rQH30fPUgwAAAAAAAABRa0wWJ2rcNU0N0nF8s8CPfAAAAAAAAAA6hzcOme2bHOlnmg1x3z_FQQAAAAAAAAAJOFvli6IQdK5-vtR_oE3g3gAAAAAAAAAKQSkoY5477iCGGkJLCg3twgAAAAAAAACLifinGpNZEDb24abZy_zLXQAAAAAAAAIgr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQ3NXJCw7PINTEV_suvi1hjgAAAAAAAAAnr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQfGOA0JLmMg26rQH30fPUgwAAAAAAAACvW6zbfG-pUtsdP3JjLENKRQAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQGX_xnOZbGU6onMekAp9M6QAAAAAAAABasmBhnYHgATZAzavAZlHv_AAAAAAAAAAj6LUTkRV9uS8zSBd0cY3xRAAAAAAAAAFv0WwlJv4egC9_TYsNNy-2uAAAAAAAAADsJmbV-AH56XNUdA5-wxAqIAAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABtrUzCYGjKe3UUnWzzQXqEwAAAAAAAAAMT2c5-p_HTAiWRFE2IbjI8QAAAAAAAAA7h6Obzp5eyXgRpUblA-ofAQAAAAAAAAC9uMFx2Fq4FWmDdC9qTh9OCwAAAAAAAAE0KcjVoO3dzCmC3PrWs_ohHgAAAAAAAAAJjfWZKcvJcvZvI74FMiyrAgAAAAAAAAAB0hcFUvwWZfQvp2KtSe1TEQAAAAAAAAAH5kI3iCVPIGpJyER_pIOiDAAAAAAAAABK_t41Zgn8MiPpsE2ExccvfwAAAAAAAAAISlk7EKKi8JmNp7yELCNTwgAAAAAAAAACNglZAtsVMy0PR4D9Bo4v_AAAAAAAAAAIdH_-XVY1o9Dh1CsvXltQLQAAAAAAAAAJlL02ENMn9TDqCnir50TaAgAAAAAAAAAFECGxOh43abBH5lmW6GWEbwAAAAAAAAAcWz5q8JekpnYi0s7eTlcojgAAAAAAAACvu93Ukboxh3n8fpdAM9THpwAAAAAAAAAycw2Z8udT9L2DdqGSTwVYJAAAAAAAAAAGd4qHdalKlYFqF-4zvAgorgAAAAAAAAAWA40VS-0F5gGiCT87AV4zFgAAAAAAAAAciQVo4-YPSPQT8lzVnTciPgAAAAAAAAARlL02ENMn9TDqCnir50TaAgAAAAAAAAAFhiE_KnpB1y_AkU-QUSuyPgAAAAAAAAAQXKq9uwED2oR9Ctzag8AUbwAAAAAAAAAlJmbV-AH56XNUdA5-wxAqIAAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABHp77QPk88xsYu9Hpoa4_oAAAAAAAAAATXr0Bjm7D2iSXOh3jIYDRhwAAAAAAAAADxpGNjXh9ZlEtOeiCM1OO0wAAAAAAAAAGZUFLMa3qOUxE9ODiWTLKvQAAAAAAAACZB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJhowoCkte-ATgwNzSYhc3bwAAAAAAAAAdaBp8nuGJmVEL586He3ssrwAAAAAAAAANZpYDXfs7r7CQqXsxWm2X2QAAAAAAAACJvU9NOCw_rw2r2oDw6OtcLAAAAAAAAAArOF2u4sKIhhHNYD9MW460yQAAAAAAAAAg5rjyz2cJULt1ApwgwhK6XAAAAAAAAAAGkjL3LVO9xzkttD37vWQ9qgAAAAAAAAAG02k8lTPTUqykbeCXCr9k_AAAAAAAAAAiahPUgO5HrpkjK8o4_e1P2gAAAAAAAAAs_DKhYKsY0BPKYoMYRAcMCAAAAAAAAAAOWNklusebG0tdR5ytKPlbkAAAAAAAAAAIBPGrhEymdtYQNz2pzn2GeAAAAAAAAAABMvHykdws074DrQKhhSE29wAAAAAAAAAUIEtETl463byzMJPLuRp-TAAAAAAAAAAIWNklusebG0tdR5ytKPlbkAAAAAAAAAAIWXc0Ul2uIu2AvsVIqd0TXQAAAAAAAAAlMvHykdws074DrQKhhSE29wAAAAAAAAAUIEtETl463byzMJPLuRp-TAAAAAAAAAAIWNklusebG0tdR5ytKPlbkAAAAAAAAAAI3gsDLXDLRJdnmH9et06JcgAAAAAAAAAnEdy7WlyFZta5S1JFk5yFhAAAAAAAAAAuCkV75JgYBXf-KhQ2Owuf9wAAAAAAAAEfPWXRgbcW8lEByvjyzU_gWgAAAAAAAAAiX8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtahPUgO5HrpkjK8o4_e1P2gAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKin5v2wJ7XyoS8p4d3X2VHgAAAAAAAAAGr-2tuEtuee9_EPbCDQ5g3AAAAAAAAAAg7nF7nj13xN6jaEH9IrCZPgAAAAAAAAAXwgcYbSYqHtVeye0ArlzCXQAAAAAAAAAhpOnEAAOSDEwVLqfi_6e3pAAAAAAAAAAE-YGhfj8szmBRV3kDwU9beQAAAAAAAAAVu3PdJ9uaY7J6wq8TpSw5VQAAAAAAAABAEFLmOwqVbKATrZgO15a3JgAAAAAAAAAo6F8ddfkmmQueFOAbmfQw1wAAAAAAAAACDKAduOJj0_IU6QK7Duf7kQAAAAAAAAA4svY6S8i7kOKyMF4wzyUc1AAAAAAAAAAzuDm-CXd9SPWhP_WpkTKImwAAAAAAAAABKS1zErlzm4f4HFs44XqqaQAAAAAAAAAYW19Tjw-jwIbyufOKZLiEmQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAA0aeAC4XpbxqxubqgoasMaQAAAAAAAT0gbx9jqjuemtiUm8j-_s73zQAAAAAAcXb6bx9jqjuemtiUm8j-_s73zQAAAAAAah2sbx9jqjuemtiUm8j-_s73zQAAAAAAahkn", "types": "CQNvBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hkSGwVOwB9xKbRbsDt24eg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFdkIcEvvhuguaGYCmGWrnWRz1QAAAAACFWIHcEvvhuguaGYCmGWrnWRz1QAAAAACFVa9", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "sffBX94zlLN7tMr0m-fNdw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMln1", "types": "FAMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "P0zu1s4JzPjPDd_Vd7cn6Q"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAACz-CA2HwYxn7uXuJvRLWceDgAAAAAAAAACo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAAAKzk_PAPIluouMAlyxqI2lSwAAAAAAAAALSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAAB7YY6rmsokuP0BKno7mbtScAAAAAAAAAAF19uHIkVsOWsXPhLw6Psn-gAAAAAAAABj", "types": "CQNGBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KMPITO_o3WTOeBDf92OR3g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAA-X-Oq0l1amW5EIGEj1JNmswAAAAAAAAAeV6VjwoFUmL-aJwJOJ7vFngAAAAAAAACA", "types": "CQMWBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "y0d3HUkER9oSacdroMqHbw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsftbx9jqjuemtiUm8j-_s73zQAAAAAAXsVwbx9jqjuemtiUm8j-_s73zQAAAAAApykkbx9jqjuemtiUm8j-_s73zQAAAAAApxqgbx9jqjuemtiUm8j-_s73zQAAAAAAWS4Rbx9jqjuemtiUm8j-_s73zQAAAAAAkZW6bx9jqjuemtiUm8j-_s73zQAAAAAAlJzVbx9jqjuemtiUm8j-_s73zQAAAAAAlGak", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8giK6mKV7HDPF-jB4e6ajg"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiP4z5k14PsCcDvFyUC1kmlV3QAAAAABJiIRz5k14PsCcDvFyUC1kmlV3QAAAAABJLl1z5k14PsCcDvFyUC1kmlV3QAAAAABHmTSz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkw", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wK2wKo3xjabSPyNZCyGl9Q"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF88yz5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF78Kz5k14PsCcDvFyUC1kmlV3QAAAAABFxdxz5k14PsCcDvFyUC1kmlV3QAAAAABGnbP6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz4-6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFw2-", "types": "BgMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "QYWBj9Lnpq81U6emfMtEHw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAATo2Vqo1n4TLgDJq9tPgwAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARxBGCEPBdnG6Mds1nJf4tcQAAAAAAAAAGzXf1O_8jknZjcKGu5cQjJQAAAAAAAAAgPHkw6KCW6WHcDhD0gWZvxQAAAAAAAAAXqjkbzJCs46utKAIQU_ZjYgAAAAAAAADmaG38C7AQR-wEDFFefkRnfgAAAAAAAAAsdawGhH-93Zf3Xci2M9UlFQAAAAAAAAAMPhHweSUk-rcHLCvi4mySwgAAAAAAAAEsryiaiFPVyjm4XARK10gZ3QAAAAAAAAELu4IYC5TN1ydgkWzSPfggOAAAAAAAAABSTOT6Kzt9cNfqtt7rfwzzSwAAAAAAAAAElu3U19P1ddOrJLDu-spLOgAAAAAAAAAHSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAiHAV7Zh5H5JQPHONsGvZ0PAAAAAAAAABXWb65uaTCBYe2MCZtuMHkqAAAAAAAAAAWdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFpyn-2AN_sBw7fWxvhZ_ovAAAAAAAAAAIZLVm2Yq3JzpECVJuRqNdawAAAAAAAAAQrs-7smSxpcCpQ4EcnQyDfwAAAAAAAAAdgkppypvMO9S8VR3D3H8lzgAAAAAAAABEdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF1V8iUm4ymRrWn84wHbGE5wAAAAAAAAAIZ8eDanRMy6l7sesw4dYkqQAAAAAAAACzkTJVCBjDfmFAPRrGLStltQAAAAAAAACPd1HUDx--zqw--O9SJhCTGgAAAAAAAAAIm2-tH33cq1FP2Q7Is62J0gAAAAAAAAACUvL0y1JUslNFPdxuHL61jgAAAAAAAAAIQ1b7jdbtxavHFLXq_nCrrgAAAAAAAACKpxHkQ9M1dNDXsuZ3PuZiaQAAAAAAAACHkgbfix2D2TfaYMD2TJSWJAAAAAAAAAAYyXWFMIbkwU7jqv0ggmjvVAAAAAAAAABHVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAApOzkHkS17HRu8c3H4oJbrdwAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFnpPhwY_ic31u1gmBHOrU7AAAAAAAAAAU0cZiHBBWN2vYtEyCZ5X5wgAAAAAAAAA3pzTcRcencDxd0mEO6HA0bAAAAAAAAAAFdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFA_f9j659izgXSTlh6Tab-QAAAAAAAAAQLrT96WuiUXgKg4BgtAP98wAAAAAAAAA_dswq7UFB-c5kE0TfryCD4gAAAAAAAAAFpjc1-JTccEPjdmvL7IyGRgAAAAAAAAActLWCyKrEBYGzX2N5W13-8QAAAAAAAACnHs84X9WR2gx5bBItVVyJWAAAAAAAAAB4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFYqSD5Hl57zxJljwXyAsavwAAAAAAAAAMn-IlVo5-jcMpxFIQmT8ZXQAAAAAAAAADXNiEFVfexcwhuzJE2wFqSQAAAAAAAACouB_3Gzwjvj1RjZpSgTL9mwAAAAAAAABHcemtT_LtuQxWV7j18_T0KgAAAAAAAABE3Cqr4IYWZNFEOAT7GHij5QAAAAAAAAAIYldLdAhiU1Ikhg1VTxvqJwAAAAAAAAAVdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFz8YcS7kQQWoeBfgskdVBqQAAAAAAAAAYa1rORv6uw2uAWC1se05SoQAAAAAAAAA7ReecyGgWWJgzc543tXNeIAAAAAAAAAAlskGfd5BDAMA1fbyY3ykq7wAAAAAAAAApdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFdARkiftRl5NVojcjp193jAAAAAAAAAAMBFzsvc2FJJqJ7MOfSIYcgwAAAAAAAAALdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINabLzAQAM62JeaJIyCWDwAAAAAAAAAYSVYBVG1fCfTODpNzLfPxlQAAAAAAAAAi0YsnzQnMKXvFIy6EpgfjkAAAAAAAAACzDaA4Pzfwu9odhU8DzKcUaQAAAAAAAAAQ7OmS9SwYpCYbOPw4YxA-2QAAAAAAAAAcE2NlszEGRXNxKeW09blqBAAAAAAAAAANwzZaceuyvwDXeTAM8IhEDwAAAAAAAAA0Yu_6L4HRShupVCJ8N-cmXQAAAAAAAAAH9PmXvHucczCVlI0S70oJBQAAAAAAAAA3tiJNC5TRsJ2Po6yB9hj7ugAAAAAAAABGyanW-NWn1yU-ZmISz8_K-wAAAAAAAAAms2LTirMvOXiDsBun6I-UyQAAAAAAAACfb_ElB1I-v_CyZZ9WkymqkQAAAAAAAAB0isA5sAubGPm1mkHKsussQgAAAAAAAAAQSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFqzxXvZKl9cR-1XCNC1BjGQAAAAAAAAAg3ir-1yKStl3nukZF4xyXAQAAAAAAAABAC-NMw9vE7-rFK10EWQYO_wAAAAAAAAAho8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAFNqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrlJe-BzIZP-Nx264rMiErQAAAAAAAAAcgtX88AmaTOI_01lUU2TraAAAAAAAAAAo1J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJPeJFTdbz8JGDuMv22vt3yAAAAAAAAAAkfiNry6aywxk33PR7ZSinSAAAAAAAAAAZyanW-NWn1yU-ZmISz8_K-wAAAAAAAAAmbZRwWM7SmFPsrzq-cg210QAAAAAAAAASyanW-NWn1yU-ZmISz8_K-wAAAAAAAABDbsQjgCW9UjBRbj0X9EX2MgAAAAAAAAAHEmp83XV0ORPGC9VjSudbcAAAAAAAAAAKyse1ZG7dtWZV3NYY2Q_B9AAAAAAAAABMdn1QdHTtENizBvfQq0rJpgAAAAAAAAAEiTk3U2-62NFOFRUZ1dKBrwAAAAAAAABtdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFKp3dhzge17FYhYBlquydUwAAAAAAAAAYqv94DrtQsXldqyi1u95XpQAAAAAAAABz25iHP2_EzWmqN7aoEEouTQAAAAAAAAAfD31e08MRiulVFEesC2oTTQAAAAAAAABxOBvZip33DmPL1Xajd-nO2AAAAAAAAABTKQLbwVQkKDdGennGDte8qAAAAAAAAACzrRpenI7GD9Sw_c3K81rvVQAAAAAAAAEg4oDbmTWkgq5vmj9DqDhsSgAAAAAAAADtAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAP_BRcF"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "aSNtQdIIqZU_wYxiTx2dhg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYCMh__DRjYW6WKuSO4E-9UAAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFaD5tQt3PTji3IEVewu1DRAAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATMjSrWlLYBonpC2jkI8XqZQAAAAAAAAAKmVg5ImyOXWtTMPsPyAoJFAAAAAAAAAADeCd7pmEC4QoP7FQm1ikosgAAAAAAAAGVws0N6fTgPArljYYAC403MwAAAAAAAABVKiXI7CN_kLfsIAVFu8pFgAAAAAAAAAAIuF_V7TH-mukdED5BHxc90gAAAAAAAAHcC_0aTeR6JBYKeG8Yqz7OGgAAAAAAAAETljpmjACwvo52D1nC2cyFxQAAAAAAAACDvDU7E1ww8G9noy7HUAb7kQAAAAAAAABatrKFSvtlxO979VBLgP3FPAAAAAAAAACJGgMrYdv_iHmlFuq9BK0A5QAAAAAAAAAEr8runDm4rOcHO76XR-D7jAAAAAAAAAAMqCAXb4nsA8MBowrcfqVWbwAAAAAAAACCbem31qqzjUFpI7bh8w8-nQAAAAAAAABmOfSN4qpvICe5qZwj_0pPhAAAAAAAAAAwQu218hu8V1yV0zD3RGKZAwAAAAAAAAANPX96JdQqiw2lDikktsM3swAAAAAAAABxVfxNwSXmcg4qLu1frTmMwQAAAAAAAAARTdvXI4zqKCE8P5BMNmzICgAAAAAAAAAJyLktZTzdimRjC_BTBG8XkQAAAAAAAAAgxFXqeYvu4HepayMSpjUTRQAAAAAAAAASj2qwrZpsRV8fAzY6mxm9VgAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAON3634wiWh6F21tPpXr0Zz3mgAAAAAABi67", "types": "CAMsBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "pgCk94hEld6tri9k3zTI7A"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LJvcEvvhuguaGYCmGWrnWRz1QAAAAACIVgEcEvvhuguaGYCmGWrnWRz1QAAAAACIVYrcEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEM4G", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Govv8eCqUZ8iYrKnS5Zj8A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmqX", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nArRvnXOOBjM2AHWa8PuVw"}} +{"Stacktrace": {"frame": {"ids": "NH411-U9ZJbhx9KntPIOtAAAAAABaTsf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "AQMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LkipsJR8SNb7CmTHmkEkWA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfZrsFKuVxhHWhub-XEUbfgQAAAAAAAAAeUu5glQJyFgpEjTQ_UpnTpgAAAAAAAAAB4XL-_3HqKL4a-N25S_4rwwAAAAAAAAAqY_uBeAIr8RJYVxEQrPIP5gAAAAAAAAAECCZSkfBMRh3g8xxOIUYV7AAAAAAAAAAEr6OQqChD9ydemA0TTpv7WwAAAAAAAAABi5PY1S9sARw8LzFxg-t1XgAAAAAAAAAL1-zWJVTR5u1TlHfVLfs7BQAAAAAAAAABqPX7c9qFPVztIYzdyCPgWQAAAAAAAAAQD0un3e6roKXsQKLScSJAOgAAAAAAAAAA2t1JH7EuZ3aCD6UnM9f6UQAAAAAAAAHE9q1YQefVASlVSGjmEkRTVAAAAAAAAAAB3iGrgdANv3jMFelytBANiwAAAAAAAAAaTd5FN6j36M4I5XfTsjp8NwAAAAAAAAAKwqvlCg8Z1l09-OL-AooUKQAAAAAAAAAxHQSUABK0mO8Kp3EUnYqw4gAAAAAAAAAA0aeAC4XpbxqxubqgoasMaQAAAAAAAOI9bx9jqjuemtiUm8j-_s73zQAAAAAAbk_dbx9jqjuemtiUm8j-_s73zQAAAAAAaY0y", "types": "CQMUBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UeTA6tEPDeMGzDj5UUu2OQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAb2jOITD8MGbT1Ovw_xtzUAgAAAAAAAAABdfaJS679SMFHynOlhaT4GQAAAAAAAAAEwxNyOGlepMHeJK72r3Nx1AAAAAAAAAABNCnW31JAeE6fBCMV8tcmcAAAAAAAAABx-Io3TUEjg3VhqUZyexECqgAAAAAAAABCKJ6ILPQkLRzsL_qCZRHYPAAAAAAAAAASW8XJy2Hk37R95UDQ18YnzgAAAAAAAAAOOdhNFK09ypq7bYC30OEbwQAAAAAAAAAWz_t7zXgMNJmUhO2ppFiaDQAAAAAAAAAFGVtE5azmnq7oQE07RxtqrwAAAAAAAAAxM-HSPvU6Ylpk6rULEsdDKwAAAAAAAAABwcwS_jKe-J8ZEpRM7gaB2wAAAAAAAAAFn0k5scYsn3wtTeokDa3YiwAAAAAAAAAF1KcuglkNBKBETK8L499nPQAAAAAAAAANiXm2yUQTnZpOrE8ZNWS3KQAAAAAAAAAm-bdPLgVx58dzwkE7OjvI9QAAAAAAAABSCja8VfWo4RLA9wiLOJNheQAAAAAAAACYGKGVPJe19U6y6pXU3LJ74AAAAAAAAABydT8pbQ7r1TmDVTIggVHLtwAAAAAAAAFwU8beN5YK_thkealMCeH3dwAAAAAAAABYSvWNy0Oo_G5x9VpZmBSSnQAAAAAAAACxBLMUDhisoSsAbWA78zGk0QAAAAAAAAB-Lwmd5uj6vHseO4T8UkiFBgAAAAAAAAAKjDqV7C6QgofBLzMMpYRPRQAAAAAAAAAxvd6KL86yS07n57xmk89KxQAAAAAAAAAfq70nRV_P6WVXyRtYM6D75QAAAAAAAAQsN-NwiwSTD5lS63VEsAdy5AAAAAAAAAAEo5YfkD43MSN2LFcekR9lVQAAAAAAAAAA", "types": "CQMhBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jy45k_7VEg7Hdo0VsawlrQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAAAtt2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAHIG1OnoGXN6zXJZoQUHRmxAwAAAAAAAAAxYEThj3UEuGl2wDiJSq9vSAAAAAAAAADmjckGVFRAvWURR3kz1QpfwQAAAAAAAABZQUM3v4ew-jMVuKkpISsPEAAAAAAAAAGi6iNgA9fR_bPjg3gsO7FxQgAAAAAAAADeWKOnV4dhtUKFY7wtM7-RyAAAAAAAAABRH2QTzkKMf4VE2_HyfX9GywAAAAAAAAAOUX0maaM_jFdAmFMbhLpaSgAAAAAAAAANVydXcSmOqICsVxLpiPFyCAAAAAAAAAAhxWXbvqcob2cyNB-_TJKbYQAAAAAAAABZ2RFqiy_TIF9Ivmg849R6KQAAAAAAAAAYm38Gzass7BaV99IOvdPsWgAAAAAAAAAFawaK319bKiHtaKZV9KHt9QAAAAAAAAAXKP7ul0MvWr6g2vIy7Z-XSgAAAAAAAAAa-esrZcmh9SBGSSEFHAV1fQAAAAAAAABxLShh-9O-ab8ob4gfeH5zhQAAAAAAAAAfN1PQDu1Ay8cMXPJ8jF7fCAAAAAAAAABrmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAANIfYj4waw9fP9op8fikoTJgAAAAAAAAAGmHLbruajf1ewhD5eRLIwPQAAAAAAAAAEIfYj4waw9fP9op8fikoTJgAAAAAAAAAGu80wzeYkSnSlt8hhdfSXpgAAAAAAAAAsaMdAw5F6bqw1nsXGt00a9AAAAAAAAAAT5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3R8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAANJa8NlMClggx8jaziUTJXlmWAAAAAAAATrU", "types": "CAMuBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "R2mRXLOBUloGPbvJF9B2CA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgms-", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yrePrrfPvgQuAdwhOk5H3A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlsu6tVKI4mSYDEJ-ABAIpYXcgAAAAAApawn", "types": "FAMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Aw8ZJfoeDNAIdQeY6NtTIg"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACe-XXgtQ4kMk_MBWrPUAFqVnYywAAAAABxp4WgtQ4kMk_MBWrPUAFqVnYywAAAAABxXQ9gtQ4kMk_MBWrPUAFqVnYywAAAAABxXzEgtQ4kMk_MBWrPUAFqVnYywAAAAABxZkkgtQ4kMk_MBWrPUAFqVnYywAAAAABxX2lgtQ4kMk_MBWrPUAFqVnYywAAAAABxbA3gtQ4kMk_MBWrPUAFqVnYywAAAAABrODogtQ4kMk_MBWrPUAFqVnYywAAAAABrn-A", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3v8U1mpKDHrnwYgVqKH7yg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAdLJM8DDAjVJl721y2vxKHGSBegAAAAAAdFIV8DDAjVJl721y2vxKHGSBegAAAAAAdDbu8DDAjVJl721y2vxKHGSBegAAAAAAdJ0N8DDAjVJl721y2vxKHGSBegAAAAAAcilh", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kD-zL7DTf-ubUCRJLnR4sA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-wCEXT4fd_WKeR1cE-hlLelCQAAAAAACkR-sXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUEu", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hPoy_NF5OSgwwL5UAOzu5g"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAAAZAgLqjB_amR59Lv13Nhle_NwbwAAAAAAAkCC7B_NxRB-tFVbAaTDiew0fwAAAAAAbNKr7B_NxRB-tFVbAaTDiew0fwAAAAAAdIfl7B_NxRB-tFVbAaTDiew0fwAAAAAAZDl07B_NxRB-tFVbAaTDiew0fwAAAAABFNNX7B_NxRB-tFVbAaTDiew0fwAAAAABFfEz7B_NxRB-tFVbAaTDiew0fwAAAAABFMoF7B_NxRB-tFVbAaTDiew0fwAAAAAAd1yG7B_NxRB-tFVbAaTDiew0fwAAAAAAdyaj7B_NxRB-tFVbAaTDiew0fwAAAAAAmf4a7B_NxRB-tFVbAaTDiew0fwAAAAAAqt7_7B_NxRB-tFVbAaTDiew0fwAAAAAAqxJP7B_NxRB-tFVbAaTDiew0fwAAAAAAqwzN7B_NxRB-tFVbAaTDiew0fwAAAAAArYed7B_NxRB-tFVbAaTDiew0fwAAAAAArNfB", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "r-p7M-kKC5zkDCGGaQTwtg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAAAaieVPbh3z67ZFj7IGoqq7zgAAAAAAAACEBFI7c7JS1eVbUcz-CuyraAAAAAAAAAAJpE_XF-eq0tBl0fP7Y7zrSwAAAAAAAADY8uVqqmQs2krZT40-iqFC3AAAAAAAAAC8xIfNH7oj8c26gQcDKc66DwAAAAAAAAAURuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAA8ix3sTGLCNH21piOrMPoln5uBQAAAAAAxhJeeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAObn6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCOK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEuzk6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEuvp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEuXf", "types": "CAMKBQMDCAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Vxj2to8RjvKhrnX0_mismA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnm-JqTOPsI6f7Ul_-cxfp2AAAAAAAAAAQx3IEgecNM_mSugRYX-4FsAAAAAAAAAAHdlfntofA5ohST-yRkUwXxAAAAAAAAABLQmIa47dF-WTkDSMX25OUNgAAAAAAAAAXOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB8NNZPX4WzZU8wwEhaddYdwAAAAAAAAAtv8jasp6reY29DfYcp4RGRAAAAAAAAAFIlitBJTEf-RvW8Ez2lNF1CQAAAAAAAAAx53oGJlY-AwKlFamwTi2tkwAAAAAAAABEzw9xCOPfBJjbhlvP6HG9ewAAAAAAAABD1XS2aFbrMvbrgkTeGP6LGgAAAAAAAAAJUokG84asYjWnHhDlmgOwzwAAAAAAAAA_6TJAAN6nl4b6IOLJXsSfmwAAAAAAAAAFUAASD7dzTPnlhk6HeFZ3IwAAAAAAAAAI-VFQiUmEmxKLobEs13zdvQAAAAAAAAAEkMyMVRZv_f_3AvbE1o-E-QAAAAAAAAAEDRh-aVmDZx3L8a5NK1VAdwAAAAAAAADNeQTk-J6y4I8N-SMXB7gKXwAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "g0TcViARYA_NarblNdiqUQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmqQ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4EsMXZIT-kuLqYwkUnHWrw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAKGFseY0uix2hxT0Di8k7-3AAAAAAAAAATslf6t7FJIQoDjMJN42BVyAAAAAAAAAABFg2KiEq3-QS_hoWS2OekUAAAAAAAAAADWt0sf_JgSqOTKaBcf1zgawAAAAAAAAB7FzJF8qZ49M3tzNcHAYKOpwAAAAAAAAAHcx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAARcx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAARcx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAAjXsKktcRkLp4u9hmAY2J0NgAAAAAAAACPeZDLzxoM-uAmR0oUiILRRwAAAAAAAAAgF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdGddyn5jf9gijjM2MMokVAwAAAAAAAAAICbaXrSWy6QpifdaKY580cQAAAAAAAAAG8hquOE5UjuqbQKed-OMfiwAAAAAAAAARWNHUiu4BFqRVmqF_mtCsFQAAAAAAAAAD3r-tlbWKH7Bh4O96M6j3bgAAAAAAAAAW1p1bNbRiF-c1H0cYOfp-YwAAAAAAAAACd42kcgsfWYVSrmwZHQBrmgAAAAAAAAAU", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TFbCcre0xjwuvxM8Q2TGcg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgJ1", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Mlkt_2gWpqQMBMgRmp7_2A"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACtxSwcEvvhuguaGYCmGWrnWRz1QAAAAACtxRecEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxjVcEvvhuguaGYCmGWrnWRz1QAAAAACEN8ucEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEWKo", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "E9ZNTntOOl_IYSLbsHzSyw"}} +{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kuVi0_akuSWTIatJohqMk3QAAAAAAxjenuVi0_akuSWTIatJohqMk3QAAAAAA6hF5uVi0_akuSWTIatJohqMk3QAAAAAA6k4huVi0_akuSWTIatJohqMk3QAAAAAAl_pguVi0_akuSWTIatJohqMk3QAAAAAAjX5_uVi0_akuSWTIatJohqMk3QAAAAAAjZ80AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApygiinZb-VL-5X6K63nWolQAAAAAAAAAFsPRIu4G_UqOumyaMlOEsUwAAAAAAAAAalxBbJT8CEpl1TogDqQt4QAAAAAAAAACTOM9gozgq3V-c4gPwstZkSQAAAAAAAAABF0PU7bQ8aSr5vRj-z9gSNQAAAAAAAAB8HZ0GBRVKni6SsJNHL5AkLgAAAAAAAAAA", "types": "CAMJBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "tDngfOgaFY4W8H9Wf9EwzA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFdkIcEvvhuguaGYCmGWrnWRz1QAAAAACFWIHcEvvhuguaGYCmGWrnWRz1QAAAAACFVZ1cEvvhuguaGYCmGWrnWRz1QAAAAACFWVy", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hhTQvJNxtR2eGzrU16lmJQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAHvdr7nJhzDAJ3KA627xZhFegAAAAAAAAAUE66a7lKbkjXDy4kHrdweRwAAAAAAAAALavH6-iyYHlN_flagvaXwWwAAAAAAAAAK5JuKxbkWPMw0EpITr8WSNAAAAAAAAAALCcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAAACQh22cv3M-xNK0_IOuNdQuQAAAAAAAABAdFuRXSangYgd0mdMqBWlpgAAAAAAAADqsO4szKNZnXyLfMP7gPsjpgAAAAAAAAA9jjxn4cl8bBaRqPgS5F0n8gAAAAAAAAD_", "types": "CQM_BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RGTQGLgwsiAj99vgKnT4NQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbPkXT4fd_WKeR1cE-hlLelCQAAAAAACi_9XXT4fd_WKeR1cE-hlLelCQAAAAAACiJjoXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcoN6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcnH6tVKI4mSYDEJ-ABAIpYXcgAAAAAALqeS6tVKI4mSYDEJ-ABAIpYXcgAAAAAANs3-6tVKI4mSYDEJ-ABAIpYXcgAAAAAALMl1", "types": "DwMHBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fFW4hYJ0SQeKKNYH-nfcDA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmre", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8XEHZtS_mTKkPthIjGj2nQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFu1XT4fd_WKeR1cE-hlLelCQAAAAAACiGo2XT4fd_WKeR1cE-hlLelCQAAAAAACiMiTXT4fd_WKeR1cE-hlLelCQAAAAAACiNLV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAioJZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAioGp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAilrf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAilGm", "types": "FAMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vdcmSxLY5tAW_HVGwJhfVA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATQDkJCt6xHk7D12ZqlrT-UAAAAAAAAAAHPX3E_b7jZQaK6SiJYskQ3QAAAAAAAAAJZaLdh2m65raIV_JyagrUBQAAAAAAAABnazI-mX3CgcWhg9AcjJjNnQAAAAAAAAART7Ugi353BwPylAwIPK3gzQAAAAAAAAHvdr7nJhzDAJ3KA627xZhFegAAAAAAAAAUE66a7lKbkjXDy4kHrdweRwAAAAAAAAALavH6-iyYHlN_flagvaXwWwAAAAAAAAAK5JuKxbkWPMw0EpITr8WSNAAAAAAAAAALCcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAAACQh22cv3M-xNK0_IOuNdQuQAAAAAAAABAdFuRXSangYgd0mdMqBWlpgAAAAAAAADqsO4szKNZnXyLfMP7gPsjpgAAAAAAAAA9jjxn4cl8bBaRqPgS5F0n8gAAAAAAAAAA", "types": "CQMvBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "C5p5Jd86H7LCTBlMpo49Yg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABBFSYxe-SHgukLEpCkawSk1QWAAAAAAAA_b6Yxe-SHgukLEpCkawSk1QWAAAAAAAA8l4", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UWYay9e3HyKHpRcyjCQLLQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JctcEvvhuguaGYCmGWrnWRz1QAAAAACEOCTcEvvhuguaGYCmGWrnWRz1QAAAAACEOMYcEvvhuguaGYCmGWrnWRz1QAAAAACENOEcEvvhuguaGYCmGWrnWRz1QAAAAACEM1p", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YNPBcMWTpCi16H8JR8e5-A"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfZrsFKuVxhHWhub-XEUbfgQAAAAAAAAAeUu5glQJyFgpEjTQ_UpnTpgAAAAAAAAAB4XL-_3HqKL4a-N25S_4rwwAAAAAAAAAqY_uBeAIr8RJYVxEQrPIP5gAAAAAAAAAECCZSkfBMRh3g8xxOIUYV7AAAAAAAAAAEr6OQqChD9ydemA0TTpv7WwAAAAAAAAABi5PY1S9sARw8LzFxg-t1XgAAAAAAAAALXPjGl4y4AzIaVJhnNQtghgAAAAAAAAAe3APbfJs5SvbH_F9r5lo_3wAAAAAAAAAFfnFonGQxpm_e6wtqJ2HwRwAAAAAAAAAEYM_gl0OeNbTAtY8GRC8UVgAAAAAAAACbTdvyEkBALxwDoycOnD-RjgAAAAAAAABkYM_gl0OeNbTAtY8GRC8UVgAAAAAAAAAeqM8yXDH25TuvyXbygEZfxAAAAAAAAAAQRq9zkaF6sUD5FfpUB-KQEwAAAAAAAAAJaddzwDQ6pDMdsj-b9ffhFgAAAAAAAADKEc3cj7XacFxZrl8AIh2z-QAAAAAAAAAKWft0IPWpEm0-yVfU_de9-wAAAAAAAAAAYq1Ak9_WYtjiRUK6jyz9agAAAAAAANXx0rNuxKNw6YxtKvsF6kS_jQAAAAAADvPn", "types": "CQMWBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7wlHqM6Sb0POC8ceQA6lMA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAAB-5iAtVIILui-LgFNzk7nI4QAAAAAAAAAIRSQAANunudn0hA4vXZNKMQAAAAAAAAAQAGwBzN2wVQI2rKP42JhPfAAAAAAAAAAG", "types": "CQM6BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "B467-tM_xsgT__3ZvcZpXQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChlYsXT4fd_WKeR1cE-hlLelCQAAAAAAChdvPXT4fd_WKeR1cE-hlLelCQAAAAAAChdE3", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EIn-w9Sic3yyxoOC90W4TQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAAAd2oeSW9BMt2zZqP7i-3UsNAAAAAAAAAArZC4caaBbQcOc2WclRiklUwAAAAAAAAAMQJ-JVADSuuonf59sOKCy_wAAAAAAAAAPbYxYe2jgm-ZVQ1wIKl60VgAAAAAAAAA1B_TZlmg-i-MShObdqiYcyAAAAAAAAAK9JjiG_BroZFP40tpmv2LaAQAAAAAAAAANT3lk77LF4G-nQZW_WRBUXQAAAAAAAAAH_8CkmXN7rMP1z1mWZ4cysQAAAAAAAAAbvB5-VFNxmRTipezH9t4OWQAAAAAAAABXRYY2KsxSlCtOmORo2c20bQAAAAAAAACu4D4Asvstzj0kOaCsxyvrCwAAAAAAAAEKGIy5Mg_ksRG2OUR8ttDU2wAAAAAAAABA5VZIXKdThz-hZwdLu0KVfwAAAAAAAAAKGY8FzW1zmT9O6Iy3KHcGZQAAAAAAAAF7QCpTjDTKUp_pYKDMN885SQAAAAAAAAACe15HzVmatJ9a2i6gkWlZ3AAAAAAAAAACcBtf2-e1bkY-X8ucCf27zgAAAAAAAAALQ70GyAvg9GVN1H3biOBfEAAAAAAAAAAA", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "HYV7fbbT0nK1xRneWZNmrA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnm-JqTOPsI6f7Ul_-cxfp2AAAAAAAAAAQx3IEgecNM_mSugRYX-4FsAAAAAAAAAAHdlfntofA5ohST-yRkUwXxAAAAAAAAABLQmIa47dF-WTkDSMX25OUNgAAAAAAAAAXOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB8NNZPX4WzZU8wwEhaddYdwAAAAAAAAAtv8jasp6reY29DfYcp4RGRAAAAAAAAAAkiUM7HhCYw8WqPBVTethJVwAAAAAAAAAQEUtxuQstd0YETwGxTB_G5gAAAAAAAAAZoR6ICTVNNCMS_uU8l3S0qQAAAAAAAAAcXSIOV1ohkclYqqYakcDyYQAAAAAAAABpQFmkHrTe4rYuSaotjLlfzgAAAAAAAACc_0-4l_O5OSPUrCE3hq6HrwAAAAAAAABAaiJNholFfohVF-0vnVFI8QAAAAAAAAACYd3m7to-rQ0lGj5ikS-dAwAAAAAAAAA6Jykms_cRxKkshvpgqtA2ZQAAAAAAAAAEc8zFoGf2iwssgQlulfqQkAAAAAAAAAAGBFGjgFTdK1xnfs0xj5apUwAAAAAAAAAEP9BGxoNfJ5xFs47cHe23_gAAAAAAAABKLG1iCWXc581Ya7-aKQE_xgAAAAAAAAAXI5_zKrcNIkC32oVURsAb6gAAAAAAAAACC8mYvLHQlltOsj0Fh-JO2gAAAAAAAAAU2Y82qsMY4rOT_z3xmOU0kgAAAAAAAAAD7b4mN3eRi5N3KF4ac_WmLwAAAAAAAAAa", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yCBJRpYjYKO3ecqYeuUP3g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6xbk6AMXATcqSh5_w-yOEgAAAAAAAAAFbCyjGhoQ-llBpE9jO3P0_AAAAAAAAACgl6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEPoG3DRiZKlMZ3sh3A8whkKQAAAAAAAAAy8_3LGlNMADWVmY7MNYKbGgAAAAAAAABYfXtbF06M7ZwcaaNlV0uiIgAAAAAAAAAFTQHHjILJSS1Y0hdQ8MODHQAAAAAAAAAChjAyoRprP-ATzdRzIqim_AAAAAAAAABP", "types": "CQMsBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KcOiTTTgvYGRMXlpLOi98w"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABF0kYxe-SHgukLEpCkawSk1QWAAAAAAABF7IYxe-SHgukLEpCkawSk1QWAAAAAAABGF-Yxe-SHgukLEpCkawSk1QWAAAAAAAA1HOYxe-SHgukLEpCkawSk1QWAAAAAAABqf2", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cYDl9ousQbgfYxygX2lM2w"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATQDkJCt6xHk7D12ZqlrT-UAAAAAAAAAAHPX3E_b7jZQaK6SiJYskQ3QAAAAAAAAAJZaLdh2m65raIV_JyagrUBQAAAAAAAABnazI-mX3CgcWhg9AcjJjNnQAAAAAAAAART7Ugi353BwPylAwIPK3gzQAAAAAAAAHvdr7nJhzDAJ3KA627xZhFegAAAAAAAAAUE66a7lKbkjXDy4kHrdweRwAAAAAAAAALavH6-iyYHlN_flagvaXwWwAAAAAAAAAK5JuKxbkWPMw0EpITr8WSNAAAAAAAAAALCcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAACV125X0goavCApK-g1l1pkWwAAAAAAAAA-YYzk7c32FriCyY7m0aSg5gAAAAAAAABMYcsRqxbGzFlPociNmelgWAAAAAAAAABhsO4szKNZnXyLfMP7gPsjpgAAAAAAAAA9jjxn4cl8bBaRqPgS5F0n8gAAAAAAAABEp9UR3btTZUo1MztbkeIkOQAAAAAAAAALZICRnstTjqeSOkLK1jp-HwAAAAAAAAAJ34fB7qb3OTOSVWKcGDOtPgAAAAAAAABl6X-l4zSEzV-o-Qo3loG8-gAAAAAAAABA", "types": "CQM0BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-kv1BoDC1-yq-sDIUSVHvA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmsRXT4fd_WKeR1cE-hlLelCQAAAAAACgnCR", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8666tagpDMUwLxpcys84Tw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAABCxaYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZz", "types": "BgMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "qc_gZ3OIm7yHC9uh3bLU5A"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANfzLzWZQgzth4yv0Aw0PoLgAAAAAAAAAl1pEcO9CYkxI799CldX3uowAAAAAAAABSeRhJRvHm727VHuGPDJpA3AAAAAAAAAAIFeTq3grQxZLpQxyGC-4wQQAAAAAAAABF9F2a_yzWrSmXRu6SZEKaiwAAAAAAAABdilROEXfY2pUH01XyVGW7lgAAAAAAAAAl8RcHlq9cItc9ubcDW2AKXgAAAAAAAAA6dFvXeiu0bJwgpB4R6tiKPQAAAAAAAAAS-0evKJDf6RH7Cjp24ibpGwAAAAAAAABmLqB_qzGaa6qKbfDAuZn5vgAAAAAAAAABCh4Y3JM3fz5yMRs1YmQqPQAAAAAAAAAhMPiqnRkhTKv0m8ZZu0GUPQAAAAAAAAAf9He8ZdMBAF9PS-5yut3VeAAAAAAAAAAA8DDAjVJl721y2vxKHGSBegAAAAAAlUtn8DDAjVJl721y2vxKHGSBegAAAAAAiXCL8DDAjVJl721y2vxKHGSBegAAAAAAiLZh8DDAjVJl721y2vxKHGSBegAAAAAAVFnY", "types": "CAMPBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zuTgZQZK3GvhoHKyYp4b7Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "FAMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MuLfBRC46YX5NpEuQP08Iw"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAAKk_PL9Bd3XIiGWasJdN8trI5tgAAAAAAKiuEL9Bd3XIiGWasJdN8trI5tgAAAAAAKi83L9Bd3XIiGWasJdN8trI5tgAAAAAAKgETL9Bd3XIiGWasJdN8trI5tgAAAAAAMLrkL9Bd3XIiGWasJdN8trI5tgAAAAAANJrPL9Bd3XIiGWasJdN8trI5tgAAAAAALIWXL9Bd3XIiGWasJdN8trI5tgAAAAAALJiFL9Bd3XIiGWasJdN8trI5tgAAAAAALIjeL9Bd3XIiGWasJdN8trI5tgAAAAAAKx99L9Bd3XIiGWasJdN8trI5tgAAAAAANHhmL9Bd3XIiGWasJdN8trI5tgAAAAAAFBmsL9Bd3XIiGWasJdN8trI5tgAAAAAAFA7rL9Bd3XIiGWasJdN8trI5tgAAAAAADQMCL9Bd3XIiGWasJdN8trI5tgAAAAAADRlmL9Bd3XIiGWasJdN8trI5tgAAAAAADRa1L9Bd3XIiGWasJdN8trI5tgAAAAAADG7eL9Bd3XIiGWasJdN8trI5tgAAAAAADGNQL9Bd3XIiGWasJdN8trI5tgAAAAAAApdPL9Bd3XIiGWasJdN8trI5tgAAAAAAAqtpL9Bd3XIiGWasJdN8trI5tgAAAAAABcqI", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6vxSTu0a6CRx7nzjWGXvow"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADB0YTZ3CKaS4aU08RhYA19y5ITQAAAAADA21XZ3CKaS4aU08RhYA19y5ITQAAAAADA0KdZ3CKaS4aU08RhYA19y5ITQAAAAAC11pyZ3CKaS4aU08RhYA19y5ITQAAAAACsrl-Z3CKaS4aU08RhYA19y5ITQAAAAACsuTxZ3CKaS4aU08RhYA19y5ITQAAAAACsuuEZ3CKaS4aU08RhYA19y5ITQAAAAACnQugZ3CKaS4aU08RhYA19y5ITQAAAAACIAqaZ3CKaS4aU08RhYA19y5ITQAAAAACtAiPZ3CKaS4aU08RhYA19y5ITQAAAAACsxfDZ3CKaS4aU08RhYA19y5ITQAAAAACIA1aZ3CKaS4aU08RhYA19y5ITQAAAAACIbXxZ3CKaS4aU08RhYA19y5ITQAAAAABtHkpZ3CKaS4aU08RhYA19y5ITQAAAAABtHLPZ3CKaS4aU08RhYA19y5ITQAAAAABtRJI", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jjrwqUs45FILhdhuWXt03A"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAi46VYxe-SHgukLEpCkawSk1QWAAAAAAAi5BcYxe-SHgukLEpCkawSk1QWAAAAAAAi1O1Yxe-SHgukLEpCkawSk1QWAAAAAAAiyatYxe-SHgukLEpCkawSk1QWAAAAAAAapsiYxe-SHgukLEpCkawSk1QWAAAAAAAi4LQYxe-SHgukLEpCkawSk1QWAAAAAAAapynYxe-SHgukLEpCkawSk1QWAAAAAAAbIkVYxe-SHgukLEpCkawSk1QWAAAAAAAbORuYxe-SHgukLEpCkawSk1QWAAAAAAAa4MoYxe-SHgukLEpCkawSk1QWAAAAAAAbg23Yxe-SHgukLEpCkawSk1QWAAAAAAAFBLGYxe-SHgukLEpCkawSk1QWAAAAAAAEs6VYxe-SHgukLEpCkawSk1QWAAAAAAAErgkYxe-SHgukLEpCkawSk1QWAAAAAAAEq_V", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "eP9q_fLIb3pZLTYs8SQrKw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNGXT4fd_WKeR1cE-hlLelCQAAAAAAC-uBqXT4fd_WKeR1cE-hlLelCQAAAAAACi94WXT4fd_WKeR1cE-hlLelCQAAAAAACi98FXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwXQXT4fd_WKeR1cE-hlLelCQAAAAAACiKCvXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_n9dn1tcT4GqEd-xBF48aQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qCmepCKWJQWWrX7mRVq-c9QAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_jdrai_0fDiGEvZJybTdZ_gAAAAAAAAACGPgne5T-0iZurfH30RkS3gAAAAAAAAAdXfHacyr3VZQyavlI3uwP4gAAAAAAAAA-JvlRd4Wn40C95D0SC2Hf0wAAAAAAAAGsceSN5BlMG0ARBYcsvYKxUgAAAAAAAAC9IB9QQU_Mapdn9O22PbyS1wAAAAAAAAAaz5Ok5kVT2l3xrDDU1L9N8gAAAAAAAAAGgdEtfESsDNl02I7JUxnTmAAAAAAAAABMx7_78vHPaEs7GBgJ0fETJAAAAAAAAAB8iH1rt2A0cDFvTr2IZcc8_wAAAAAAAACWjtEB8q7ZNk5LwicDPNbPVQAAAAAAAAB8_20iQw_1BgBh9m8HkEpgSwAAAAAAAAAOMHOHZ9dur_p0OUPsIclbdwAAAAAAAAAratIdAKYLgBKZMlaW-Dl3CAAAAAAAAABOBHKlRH4kXxh81NmPptVLmwAAAAAAAACdETOJ-3ScyIWVpISjqClk8AAAAAAAAAA2cMXYJMRG12GUF62IrJS85QAAAAAAAACQu1ok5Oy22VA1gVmC1frmBwAAAAAAAAA-2mI3AZHeWLrt5pGOQcXwggAAAAAAAAAA", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8Sls7YkmKFCSaOsvoUg1dg"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXDNgtQ4kMk_MBWrPUAFqVnYywAAAAABqaCzgtQ4kMk_MBWrPUAFqVnYywAAAAABqafj", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "T7vncmW-T6vSHVWR57tdyw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA7PmG8DDAjVJl721y2vxKHGSBegAAAAAA7PTV8DDAjVJl721y2vxKHGSBegAAAAAA7Opc8DDAjVJl721y2vxKHGSBegAAAAAA7MU48DDAjVJl721y2vxKHGSBegAAAAAAgPR98DDAjVJl721y2vxKHGSBegAAAAAAgN4a8DDAjVJl721y2vxKHGSBegAAAAAAgNmT8DDAjVJl721y2vxKHGSBegAAAAAA1GgH8DDAjVJl721y2vxKHGSBegAAAAAAX1ZP", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gAG1HMhOOlK-azE89-mC-A"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHpmIz5k14PsCcDvFyUC1kmlV3QAAAAABHpbXz5k14PsCcDvFyUC1kmlV3QAAAAABHeDgz5k14PsCcDvFyUC1kmlV3QAAAAABHdVCz5k14PsCcDvFyUC1kmlV3QAAAAABFwHxz5k14PsCcDvFyUC1kmlV3QAAAAABFxYLz5k14PsCcDvFyUC1kmlV3QAAAAABGnan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "DQMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Lqqlo7A9sqWXpD9r2hwvHg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABF0kYxe-SHgukLEpCkawSk1QWAAAAAAABF7IYxe-SHgukLEpCkawSk1QWAAAAAAABGF-Yxe-SHgukLEpCkawSk1QWAAAAAAAA1HOYxe-SHgukLEpCkawSk1QWAAAAAAABqf16tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "CAMCBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UVFR6xJxlY15kAwEzaclvA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXEEgtQ4kMk_MBWrPUAFqVnYywAAAAABqaCzgtQ4kMk_MBWrPUAFqVnYywAAAAABqPfJ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JB3ORSitt3sUmXyL3b5z9Q"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETdScEvvhuguaGYCmGWrnWRz1QAAAAACETwkcEvvhuguaGYCmGWrnWRz1QAAAAACEUBMcEvvhuguaGYCmGWrnWRz1QAAAAACEURmcEvvhuguaGYCmGWrnWRz1QAAAAACFxcc", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lnnrocGqYOi4n8uKvO-lBA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAACUcj5Iicnc1YHT-TWyg9rL5QAAAAAAAAAffO_gJBPd8E-RahoVIhDflgAAAAAAAAAB8w2ZGyVQ-aMnL_pA1hWbwgAAAAAAAAAy76oMN5gawXJbUdBHZW56vAAAAAAAAAAEaK7zvL-PqvTlxTrdlldaFAAAAAAAAAADsimybevA8DW5tgv6lrGi5AAAAAAAAAADuDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKcG5W-PDYduXZ1DZFU5bdYwAAAAAAAAAfX8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtnY6Bz6koyx0B67n9HdjFUAAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKO2hSFZZOeE5g1kTv31qAYwAAAAAAAAAoX8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtnY6Bz6koyx0B67n9HdjFUAAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKtVvvb6Z5DEr7tZFzbFRlggAAAAAAAAAGNdurIec2eVknw5UWeyAGhAAAAAAAAAAg_OURcYkX0iBxmyshrTvm6gAAAAAAAAAXK68quRzmwMwkh1BjI5vLeAAAAAAAAAAw2uEt67j3DRok5P1YS1B80QAAAAAAAAASRxkYl0oyBdU9th-HWQUOKAAAAAAAAABZHzhTBzOX7UakdM7pe7Y1uAAAAAAAAAAKDXeLC1cDPFA8RqPCoQVOPAAAAAAAAAAP8Elj1SjuDmCtQF4C1lj1DwAAAAAAAAAF2Xty6HwzbNvbrg9wHlGVxAAAAAAAAAAB7rhErXkPi9cws8rEi9vJcwAAAAAAAAAW2Ut7nq0iY4aNbbau12o0cQAAAAAAAAAHA7XOdSnQ9slI9gE1iFi_qgAAAAAAAAAGg-yWjwHAW8AtauSolMfC7gAAAAAAAAAIP-EiwvkkF9nbQhabEyjyCAAAAAAAAAAGyEZxG7KTD5m6EdvIqyvT2wAAAAAAAAA9", "types": "CQMmBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EU6gMIOruv4LBXeewjMptw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAP4nyMCPt5M-rbb158Tnrz3sgAAAAAAAAE1f1r4EGNexS8q-R054rDNcgAAAAAAAAAembtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAANIfYj4waw9fP9op8fikoTJgAAAAAAAAAGmHLbruajf1ewhD5eRLIwPQAAAAAAAAAEIfYj4waw9fP9op8fikoTJgAAAAAAAAAGu80wzeYkSnSlt8hhdfSXpgAAAAAAAAAsaMdAw5F6bqw1nsXGt00a9AAAAAAAAAAT5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3R8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAANJa8NlMClggx8jaziUTJXlmWAAAAAAAATrU", "types": "CAMvBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "v6Zd4rrrKmUTWtNl83vt_A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWIIXT4fd_WKeR1cE-hlLelCQAAAAAACqVVkXT4fd_WKeR1cE-hlLelCQAAAAAACqVk2", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_m5_XF6jp71sVPU0N0_5sQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV5BZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtboL", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KPMeKbA7XSVzTtIqW5z5Jw"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACe-XXgtQ4kMk_MBWrPUAFqVnYywAAAAABxp4WgtQ4kMk_MBWrPUAFqVnYywAAAAABxXQ9gtQ4kMk_MBWrPUAFqVnYywAAAAABxXzEgtQ4kMk_MBWrPUAFqVnYywAAAAABxZkkgtQ4kMk_MBWrPUAFqVnYywAAAAABxXzEgtQ4kMk_MBWrPUAFqVnYywAAAAABxZkkgtQ4kMk_MBWrPUAFqVnYywAAAAABxXzEgtQ4kMk_MBWrPUAFqVnYywAAAAABxaBWgtQ4kMk_MBWrPUAFqVnYywAAAAABtgMVgtQ4kMk_MBWrPUAFqVnYywAAAAABtjBO", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xFQ8ZHsEh4N52gpu0__MRA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXDNgtQ4kMk_MBWrPUAFqVnYywAAAAABqaCzgtQ4kMk_MBWrPUAFqVnYywAAAAABqagI", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fqlDalQnR0z4CfFMV3Mv9Q"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlZUcEvvhuguaGYCmGWrnWRz1QAAAAACEea2cEvvhuguaGYCmGWrnWRz1QAAAAACEf3-cEvvhuguaGYCmGWrnWRz1QAAAAACEgKO", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Vubqa9zhg40xLxVg96ejAg"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHba4rFFPORY8_4FvK9QaA3QUQAAAAAAGRIW4rFFPORY8_4FvK9QaA3QUQAAAAAAGRJh4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp4rFFPORY8_4FvK9QaA3QUQAAAAAAFP8j4rFFPORY8_4FvK9QaA3QUQAAAAAAFQF8UJmIMEc6K8gJ39NHYaD0WwAAAAAAB_ajUJmIMEc6K8gJ39NHYaD0WwAAAAAACK-IUJmIMEc6K8gJ39NHYaD0WwAAAAAAEQHG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "KQMCBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0umU1L_QLm_FOFwcDc3Pdg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlPqcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUjA", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vzyVw9-CnV8kDbp00nDLdQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUjA", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-Hi1xqW7gnqMR0vJ_jyI7w"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlqJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCIE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA8y", "types": "FAMLBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iIQDVtFWyOixic2-vG4WNw"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHsJJgtQ4kMk_MBWrPUAFqVnYywAAAAADHsO9gtQ4kMk_MBWrPUAFqVnYywAAAAADIfGLgtQ4kMk_MBWrPUAFqVnYywAAAAADIhWkgtQ4kMk_MBWrPUAFqVnYywAAAAADIkydgtQ4kMk_MBWrPUAFqVnYywAAAAAB8RDlgtQ4kMk_MBWrPUAFqVnYywAAAAAB8EfkgtQ4kMk_MBWrPUAFqVnYywAAAAAB8F2-", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Q0yF-eZ1POeSXtlQfaAmiA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAqovRPcszTde0VZh4hrqQUtwAAAAAAAABBgJKCOQJCNUe5j61lhCTyewAAAAAAAATdBzHaaplfCkGFxXmJVqCJAgAAAAAAAAARkLG20VFMtAeL120q9dFk-QAAAAAAAAAhR9d-4EOoAQqhB1QW7ZwT_wAAAAAAAABJstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGfDqNreXUioiFDFwNREuqLgAAAAAAAAAsCasUHBASz8HLDmgbus_pogAAAAAAAAANUKLoduJn5-YPXULy7Ukl9AAAAAAAAABuahMxWqP1a_8hG_qUbGypwwAAAAAAAAAj", "types": "CQMvBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nwg53akFiAKZJpHiqCwAbQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACHFv8Z3CKaS4aU08RhYA19y5ITQAAAAACGkIKZ3CKaS4aU08RhYA19y5ITQAAAAACHBnFZ3CKaS4aU08RhYA19y5ITQAAAAABzIEpZ3CKaS4aU08RhYA19y5ITQAAAAAByyXAZ3CKaS4aU08RhYA19y5ITQAAAAABwOdiZ3CKaS4aU08RhYA19y5ITQAAAAABv1M7Z3CKaS4aU08RhYA19y5ITQAAAAABv3UA", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Sy9U-PZ9ZdU-DFhAHqPUlg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wtlXT4fd_WKeR1cE-hlLelCQAAAAAACgafX", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "V_rbL0bmkMzq5098K2y4vA"}} +{"Stacktrace": {"frame": {"ids": "AAAAAAAAV4sAAAAAAAAAHXOBFFPSGeW_", "types": "AQU"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "D_C6SDv9aVBnhKkxsGPJUw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAACUcj5Iicnc1YHT-TWyg9rL5QAAAAAAAAAffO_gJBPd8E-RahoVIhDflgAAAAAAAAAB8w2ZGyVQ-aMnL_pA1hWbwgAAAAAAAAAy76oMN5gawXJbUdBHZW56vAAAAAAAAAAEaK7zvL-PqvTlxTrdlldaFAAAAAAAAAADsimybevA8DW5tgv6lrGi5AAAAAAAAAADuDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKcG5W-PDYduXZ1DZFU5bdYwAAAAAAAAAfX8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtnY6Bz6koyx0B67n9HdjFUAAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKO2hSFZZOeE5g1kTv31qAYwAAAAAAAAAoX8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtnY6Bz6koyx0B67n9HdjFUAAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKtVvvb6Z5DEr7tZFzbFRlggAAAAAAAAAGNdurIec2eVknw5UWeyAGhAAAAAAAAAAg_OURcYkX0iBxmyshrTvm6gAAAAAAAAAXK68quRzmwMwkh1BjI5vLeAAAAAAAAAAw2uEt67j3DRok5P1YS1B80QAAAAAAAAASRxkYl0oyBdU9th-HWQUOKAAAAAAAAAAhYhOjbxv03d1fLQxiBRGOhAAAAAAAAAALDXeLC1cDPFA8RqPCoQVOPAAAAAAAAAAP8Elj1SjuDmCtQF4C1lj1DwAAAAAAAAAF2Xty6HwzbNvbrg9wHlGVxAAAAAAAAAAB7rhErXkPi9cws8rEi9vJcwAAAAAAAAAW2Ut7nq0iY4aNbbau12o0cQAAAAAAAAAHA7XOdSnQ9slI9gE1iFi_qgAAAAAAAAAGg-yWjwHAW8AtauSolMfC7gAAAAAAAAAIP-EiwvkkF9nbQhabEyjyCAAAAAAAAAAGyEZxG7KTD5m6EdvIqyvT2wAAAAAAAAA9AAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CQMnBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "tMhMWp-rgrdCO6E0QnPlSA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHfZKXT4fd_WKeR1cE-hlLelCQAAAAAACy8_rXT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9GNXT4fd_WKeR1cE-hlLelCQAAAAAACgVfk", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iJo4ez4PuCIPz3LMt8or7Q"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADSZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABCAZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAGrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAuU-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABTHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAIiuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAWyQLW28sZ3rpLXAl8a-XdLgAAAAAAAABnWIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAIKCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAIQRW1om0CtcYaE4B8xaBEggAAAAAAAABGAZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYlCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAACNHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABuHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFP1rXbpjewie805zI0BHMvAAAAAAAAAAILN3NdhSYKxRbaqnM5W9FBwAAAAAAAABpR-HVaw3JZ2IsajBZdLbC8gAAAAAAAABKKnKBdeWKnQ8CH5bzvx0i6AAAAAAAAABK-QN0Lznzz3LjWKMZzZD5rwAAAAAAAAAIeEXFmSmLstwTaBBVp_eSTgAAAAAAAAAFHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFeS9qs83Ev5DGIkgRm0VL-gAAAAAAAAAUem8QMqpxX9eEmdxu2AmtFQAAAAAAAAAPTR0CnebfBTQ0MB6Lw8cZBAAAAAAAAABvgYxqkqlVp6_U5mFkfV4jIAAAAAAAAAAMtZaMdHxmjfXV5e8wiO0L_AAAAAAAAAAKtX-1hgGXR0WV-6whS0MwZgAAAAAAAAARotkeOgHMDZdOlA7GywTS3gAAAAAAAAANeBe2TV8VA2V7lLyhiCvcHgAAAAAAAAAEclNKHmin0SttGhUDhj4qagAAAAAAAAAH68m2CwWM-Ledaj5WNl9lhAAAAAAAAAAqwMYFsNM0woNzFGwcp47vbgAAAAAAAABGEh0v14Wp9mB3u5tYha0hzQAAAAAAAAAmwSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFbhnM-182eA1jGyBQl8pMugAAAAAAAAAU4pL5iWdAziHKM6VzojymqQAAAAAAAAAGX8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0g4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAWMCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc5430MZlAMqI5SXd_yT5HRQAAAAAAAABcHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFN7LIGw1erb09TPWj8M9ehwAAAAAAAAAYwr21gCsicBxbZw2IJaNDDgAAAAAAAAAGEh0v14Wp9mB3u5tYha0hzQAAAAAAAABDSLFvE_cP2SyjsekmrBc9LQAAAAAAAAADpuQkFDz8_jnH98S3xQfURAAAAAAAAAAGmS8gXE26pQn8rBZ5C2O6qgAAAAAAAAAilUab7RI6M1kcYmpom65WngAAAAAAAAAT1B7iWINM55ii7YHBwT_BfQAAAAAAAAAaSLkdwnAJDm_ftJbeTN6kiwAAAAAAAAAudGzQsD4ULDPyV5gT0mUzewAAAAAAAAA_v5dA57HXZ1996swqeLZdUQAAAAAAAAABj9mTsmxGfoQF9A4glGVy8AAAAAAAAAAYQ6BTqglgEur1JnwgYj4wmAAAAAAAAABMLX5DD-dM1kj7Y11eHErxNgAAAAAAAABWtHw2EICMhh3_licSMXsQIgAAAAAAAABY6Zj-Lw9a6Ydo4gb-eMkgLgAAAAAAAAAGG99T3qcZC8_AxTO5xN8aUwAAAAAAAAANw9w8XUGzqm4xr4E1qM-rhQAAAAAAAAAgwoaSXtApD-PrSWDZ_aE3VwAAAAAAAAA0NEA431VvZx5EvIda-awJrAAAAAAAAAAVdkL5PpvJ6DOYifdu5jPpNQAAAAAAAAAJVcy8PuJ6UoNqzGrL87c0RgAAAAAAAAAR9skm8w_4Kqz8U3CtvTydwwAAAAAAAAAMS8mRI7HHsV-o5SfBaSYVJgAAAAAAAAAEmQBmof6SRRPAHT_GwQNzBAAAAAAAAAAEnp7TeDSdz651gJRSLTp1TAAAAAAAAAAXdhLkPVDaHJtx9aYILWA1HgAAAAAAAAAGCPQYI8AYgrtjAdxnWkE3nAAAAAAAAAAXx7dNtL9l6yQnqIhb2iRkJQAAAAAAAABV85xU6UdOBVE-6wKT-DYa3QAAAAAAAAAcKlMLGpkm1pBrBLT79cviPAAAAAAAAAABzVZBdh_gmAiL5X6tN_0jKgAAAAAAAAAEWBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAAAhapg5i-nxkoOQjMlxB9g-swAAAAAAAAAFqYA0yXrjfQUiViGsCwfP0gAAAAAAAADolmdMMTHiYSG09aFSlb3EMgAAAAAAAAAA", "types": "CQO5BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "d22iTQah1Eml5msUtvJFFw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYCMh__DRjYW6WKuSO4E-9UAAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFaD5tQt3PTji3IEVewu1DRAAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATMjSrWlLYBonpC2jkI8XqZQAAAAAAAAAKmVg5ImyOXWtTMPsPyAoJFAAAAAAAAAADeCd7pmEC4QoP7FQm1ikosgAAAAAAAAGVws0N6fTgPArljYYAC403MwAAAAAAAABVKiXI7CN_kLfsIAVFu8pFgAAAAAAAAAAIuF_V7TH-mukdED5BHxc90gAAAAAAAAHcC_0aTeR6JBYKeG8Yqz7OGgAAAAAAAAETljpmjACwvo52D1nC2cyFxQAAAAAAAACDvDU7E1ww8G9noy7HUAb7kQAAAAAAAABG4b4Plbf2oPTboMVQZt3neAAAAAAAAABQeDq0W4O8__hpgO-kAgz9IAAAAAAAAAAGJg3hqIDeJUhfv2IEfsf4DQAAAAAAAAA7hyYs1X0lg50NltvYtvEQGQAAAAAAAAADWIBcfc0Y3RCgkq_eGTcaWQAAAAAAAADMxlIo9s6lv-3rTTrZtnrDmQAAAAAAAAANi3MNoTROkegLoawWRXlDSwAAAAAAAABRY1I4HGusQaecXOnSGoRjFAAAAAAAAABLwJjZ6rOmNJJmblBzmKA7yQAAAAAAAAAGOWLIonXH0dbba490g9mt5gAAAAAAAAADGGHOuWs-kNsU0GtQ48oWGgAAAAAAAABOSeSHb4DYVqNQaGYUHfay2QAAAAAAAAApPmGWf7PSbL1kcaez2GPlxwAAAAAAAAAA", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iv8vybju0c0Tu5zAjfgpGA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAeasI8DDAjVJl721y2vxKHGSBegAAAAAAgwJS8DDAjVJl721y2vxKHGSBegAAAAAAefoQ8DDAjVJl721y2vxKHGSBegAAAAAAecrm", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "A4EhEuhS8IiFn7yF92241g"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJM4EgtQ4kMk_MBWrPUAFqVnYywAAAAACJNBcgtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfdgtQ4kMk_MBWrPUAFqVnYywAAAAACJEnagtQ4kMk_MBWrPUAFqVnYywAAAAAB1YosgtQ4kMk_MBWrPUAFqVnYywAAAAAB1YgbgtQ4kMk_MBWrPUAFqVnYywAAAAAB1Kj3gtQ4kMk_MBWrPUAFqVnYywAAAAAB0834gtQ4kMk_MBWrPUAFqVnYywAAAAAB0fpTgtQ4kMk_MBWrPUAFqVnYywAAAAABsdD9gtQ4kMk_MBWrPUAFqVnYywAAAAABscmEgtQ4kMk_MBWrPUAFqVnYywAAAAABsv09gtQ4kMk_MBWrPUAFqVnYywAAAAABskOEgtQ4kMk_MBWrPUAFqVnYywAAAAABr-YMgtQ4kMk_MBWrPUAFqVnYywAAAAABsAm66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAANp-d6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBiZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN0Cm6tVKI4mSYDEJ-ABAIpYXcgAAAAAAENPt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAENOq", "types": "GAMLBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OGEhf4PSLILOkwEIjiOVMw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIZy27xNCwe4jKCqsA2srxVwAAAAAAAAAoLZeO9S9IXnalwT9Nl3ihfQAAAAAAAAASxWwq3BVQzbzp00-HYFOW_wAAAAAAAAB094QsDIL7bUk7Oxas7lNqGAAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJSYSSbioufiMK4TqEn24uLgAAAAAAAAAdXL_fwLkYkxkYcfgosK-fdQAAAAAAAAAQO_mHTPntGTw_EnF-rkI8XgAAAAAAAAAWiiLZnxbVRTQPtvWA0miuyAAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdfJIr5vQAn81_ytZBhz6xpAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAABduSa7rLKjwnZa9hewarfUgAAAAAAAAAIHMo9CJkBJDT98ldAVMcaFwAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAJMTTvJ5_z-0po5hbnYEq-wrAAAAAAAAAAwy_GIpaxCX5IFnS0F_BXM3wAAAAAAAAAYVEVSaDZsnx1_EI9pECvQKAAAAAAAAAAOxitMwS4ViC61BCy_8U7u2AAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAChAAnABuJtrWflPvotxCoPjQAAAAAAAAFDgM-zvldT2mxZOhlxJvpRXwAAAAAAAAAXc0OkgT3_p45M6FsCvH3WnQAAAAAAAAAVBrUFbWJQXA38LKOgrDwJigAAAAAAAABJoOz1jSRZNClfuKPM_yWNFgAAAAAAAAAG3b73aK2YxmWJY2Of38z3nwAAAAAAAAAGPm8yvojd4enECfI_5pXoCAAAAAAAAAAKyrynjr7wkKxyqWOPiuvTRwAAAAAAAAAc4BHyios_sf5mi1p4OqQ41gAAAAAAAAAMb0EZjrjz491rqJx3vSRDfAAAAAAAAAAA", "types": "CAM3BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "HMURvypdMffNAprvPS6zpw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vCpXT4fd_WKeR1cE-hlLelCQAAAAAAC-n8QXT4fd_WKeR1cE-hlLelCQAAAAAAC-oXkXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmkK6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXfZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXa_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgPo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgHX", "types": "FAMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cSZTax9ffr-YAd3FYSW_LA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2qOcEvvhuguaGYCmGWrnWRz1QAAAAACgz-EcEvvhuguaGYCmGWrnWRz1QAAAAACgs1TcEvvhuguaGYCmGWrnWRz1QAAAAACgt45cEvvhuguaGYCmGWrnWRz1QAAAAACEPVx", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "x-aoAzh936JaX4mmRnYe0Q"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAJH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAACUe7YYWaQTMh8P2PCVzA2a8gAAAAAAAAAwm140cnmnDMXwCTqH-lotHAAAAAAAAAAEm140cnmnDMXwCTqH-lotHAAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dqSbVx6m1QzCICB8ZYQDbQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAABvZKLj_deYRtPDewbXBnoroAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAwy86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAADA0Bmu_hqLQc2qW5yo4O6HQQAAAAAAAAAyyH_ohM36PxcsspBj9HiisAAAAAAAAABU2LzHjSgmLRTwZBUFU5tC3AAAAAAAAAD6pOUGa4nlXTzn3bJ7pH2ySwAAAAAAAAAECRQRzguK_v5o3bXGHtMLfwAAAAAAAAAA", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "29avLvyd03U-9hPxg1Hb1A"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVP4GdI6f6aagjBxBAKz-KIgAAAAAAAAAMqd26ee2y8slhneyPRIcQAgAAAAAAAADEwKREEYJF8V2B2guAeJRSCwAAAAAAAACoWsBETJrPecSrGYvg781P3AAAAAAAAAO3655cFkYo375T8NGzpy-aFwAAAAAAAAAXhve4jX92AzYM2N-JeQNG2QAAAAAAAAA1uoQ2M4bRS4Qydql36um4PQAAAAAAAAAu8Zl1Hn34Qq3KbfhSotUixQAAAAAAAAAcyg6hUybbKOuy2Th8HYOfDgAAAAAAAAAQwAR4gk273_ooOZdD1tA5fgAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdXgVcJKYEqhGaSbBYfKBXOwAAAAAAAAAQXfH1sbSxEuiQC9e5gcEKzQAAAAAAAAAW1w2R0Z8nd4XHXpj3W-TC0gAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdctx_9RVQASujUdCT9XDhwAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAAB06nqjE-VI9IYqWvJ2OibVQAAAAAAAAAI8Lr1AwdmXjQ6E8sJ1LQOsQAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAn8yw5xAkzQPNYncv2nxNJ2QAAAAAAAAAninLD7FTDiZ9QX8bC0I9L_QAAAAAAAABzaiLfZKl2jCog6I24zCqBbQAAAAAAAAAFe41sJjec4rf_ExOiWJDJ7wAAAAAAAAAN5aCosL5sFCAbDkRqY-Vk6QAAAAAAAACACOr29gi0754ysq3SQxZfKwAAAAAAAAAFGe7iKc-ly3yPFEb2H2nz6wAAAAAAAAAA", "types": "CAM5BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "c9Wp-y5_7FybvVa662QrHQ"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKDEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKI8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfLgtQ4kMk_MBWrPUAFqVnYywAAAAACJG0XgtQ4kMk_MBWrPUAFqVnYywAAAAACJFrXgtQ4kMk_MBWrPUAFqVnYywAAAAACItpcgtQ4kMk_MBWrPUAFqVnYywAAAAACItVEgtQ4kMk_MBWrPUAFqVnYywAAAAABsxQJgtQ4kMk_MBWrPUAFqVnYywAAAAABsw8kgtQ4kMk_MBWrPUAFqVnYywAAAAABszHvgtQ4kMk_MBWrPUAFqVnYywAAAAABsy-ygtQ4kMk_MBWrPUAFqVnYywAAAAABsj1FgtQ4kMk_MBWrPUAFqVnYywAAAAABsirMgtQ4kMk_MBWrPUAFqVnYywAAAAABrgOSgtQ4kMk_MBWrPUAFqVnYywAAAAABrpA36tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "GAMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6V_gKNpX0-x6mxgUbCPfnQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAABWkxlPGvmJaixHgVVGYdR3ZAAAAAAAAAAU0YvYYZqpoRVqaulkjga7JQAAAAAAAAAF6sBKtqBatbzPgogd7p8IQgAAAAAAAAABPp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6IaGOpXjXn5EHF-K9uwEUPQAAAAAAAAAErU2gYsZPORRvUmAaUHS0ngAAAAAAAAAIPp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6TsD0RrBnIgAER8sz4r-hTwAAAAAAAAA4Cn7hlCJwY0Tl2g_95dXhhgAAAAAAAAAEcGV0DDfmSpIZxUAKnFlOoQAAAAAAAAAPD7HSXO_iqjqFKL1x1h0kQQAAAAAAAAAJAAn_OLmzgN0q8Ywe9O03FgAAAAAAAAAYUepoRzuMTBR-jFpLlu_fPgAAAAAAAAA0tW1ONDyoCZkpOb4VQBh9egAAAAAAAAALcx_5Zli6ZQBZEsnw0z8RFAAAAAAAAAAjDVSkUfLwOzQuwgYi6TvurAAAAAAAAAATpOUGa4nlXTzn3bJ7pH2ySwAAAAAAAAAE5SdE72_y-hSLbJxOG9tFVgAAAAAAAAAB3aPBW84m5dZlrwJguOb7UwAAAAAAAABf", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zF2NlkT_Dii5WetCUbH8EQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATQDkJCt6xHk7D12ZqlrT-UAAAAAAAAAAHPX3E_b7jZQaK6SiJYskQ3QAAAAAAAAAJZaLdh2m65raIV_JyagrUBQAAAAAAAABnazI-mX3CgcWhg9AcjJjNnQAAAAAAAAART7Ugi353BwPylAwIPK3gzQAAAAAAAAHvdr7nJhzDAJ3KA627xZhFegAAAAAAAAAUE66a7lKbkjXDy4kHrdweRwAAAAAAAAALavH6-iyYHlN_flagvaXwWwAAAAAAAAAK5JuKxbkWPMw0EpITr8WSNAAAAAAAAAALCcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAACV125X0goavCApK-g1l1pkWwAAAAAAAAA-YYzk7c32FriCyY7m0aSg5gAAAAAAAABMYcsRqxbGzFlPociNmelgWAAAAAAAAABhsO4szKNZnXyLfMP7gPsjpgAAAAAAAAA9jjxn4cl8bBaRqPgS5F0n8gAAAAAAAAD_", "types": "CQMwBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lFTuFSg1FTGTRF99CmOmyQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVP4GdI6f6aagjBxBAKz-KIgAAAAAAAAAMqd26ee2y8slhneyPRIcQAgAAAAAAAADEwKREEYJF8V2B2guAeJRSCwAAAAAAAACoWsBETJrPecSrGYvg781P3AAAAAAAAAC4mYO8eYShKNmyuBL3FXJB-gAAAAAAAAAwbcm3REG58b46CBv8_xMfuwAAAAAAAAAXv0TRkfoB0GMPf0piB0g1_wAAAAAAAABS6Zhf8TjHmWS5MsyfPyHLrwAAAAAAAAAI10bGpCcFXCZdhBTB55YaIgAAAAAAAAABRZHHE_LN0EKL6oIilRIcrAAAAAAAAACIEZ_tTPZwHMJRtn6APK_0fQAAAAAAAABgbuaxzZBrb6WHETKUkwVYegAAAAAAAAAOp7qKIzzn4w0j5_vK-B0EmwAAAAAAAAAmC9UVUqjRD64_RWyXHEtr7QAAAAAAAAAPaDyBXusCSgxGJvBxfJIWPwAAAAAAAACIu39hB2o_bkkn64I33Zf2OAAAAAAAAAAx6KM6RK-sq5wYpyjnMfBa7AAAAAAAAAAsxLOLXg5EKZgSVcI5Dw46ugAAAAAAAAC4AAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "J1VoCLgIXD5i7Xe2jDaJwA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxf3Z3CKaS4aU08RhYA19y5ITQAAAAAB0EeF", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "rFs-0q-mW95c43NFrT9uBA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbpmZ3CKaS4aU08RhYA19y5ITQAAAAABtPlJ", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KgRaz5rqouUTP5q-SUKRqA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAAAtt2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAHIG1OnoGXN6zXJZoQUHRmxAwAAAAAAAAAxYEThj3UEuGl2wDiJSq9vSAAAAAAAAACqZou-EwmpdzrcXx7eij10xwAAAAAAAABPIdkGKdrrMvbrgpaqyJ-rigAAAAAAAAAJUpqzzk59PbxypyRs4QkNMAAAAAAAAABTN1R-9DGIZrDXK9x_wnFgtgAAAAAAAABD7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAAB3ZTYW2hueb8qo9sBuOsIdRgAAAAAAAAAn6HagrPNegEb1JoaDvxlnywAAAAAAAAAp5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAAB3ZTYW2hueb8qo9sBuOsIdRgAAAAAAAAAn6HagrPNegEb1JoaDvxlnywAAAAAAAAAp5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAADT1TcD-cYA4xs7rqA_y0alsAAAAAAAAABM3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAgWBDDHhcycxn7-c7ItUsJQwAAAAAAAACp9Ym5EOeHQELXz-ZdoRUPYQAAAAAAAAAm-2FyBFi2FqtlQYQvq8OKCAAAAAAAAAAFEUaNNCJVOZv50VSG9pJB_QAAAAAAAAARINgxpCPdHeCvGEJOglBewwAAAAAAAAAA", "types": "CAMwBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XC5SywLBeX1PQ5gC8i2e8A"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgeg", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jdgB-PQx3akdszRCWY1b1A"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcoiHXy47Qw5euydEoPUexRgAAAAAAAAAga67hy6D4_aH__IrzfMid7wAAAAAAAAABrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZf4KmPLa6_uw8gRgiw9EUAAAAAAAAAE4ihprad0bkU-u2IU9StodIgAAAAAAAAEqfmVqFyGK_erbPbR830tm8gAAAAAAAAAPGqtKw4RB3R19EQhu6EuSBwAAAAAAAABEe7jcj9ca-ENh_em7UG8YrQAAAAAAAAAjpv2BnGF3DU5EF7_9vBhh5wAAAAAAAAAjqAJPfj7zVy9vjSAISf6DmgAAAAAAAAAIxAdnmGWjJXcKuwdszuwv6gAAAAAAAAAFO_BiL2ROZsn4VXLfIMjl4AAAAAAAAAAFPrVtf7vrjGGpVbEAol3b9QAAAAAAAAANZf0w4S_WIxaQJn4-TjKTOwAAAAAAAAApu84jH0Fi4giPpR8JCVg2uQAAAAAAAAAFeEsPvNGYH982Mv0mPexpzgAAAAAAAABKQH4VYcH0-bM7E6PfVIY9ggAAAAAAAAAMFGGSuaVpuuMHaXUzmpPEWQAAAAAAAAABUT1CLo52HplxPz6JwcoqCQAAAAAAAAAJlfjVNXK_x0C4X5O62984zgAAAAAAAAAFZbvmFtHvqv74jokq3XvBkgAAAAAAAACS2RfKfVPwyqKh_r9U1oFgUwAAAAAAAAAfTJNGpZ5zrxHIWzJGPowW7QAAAAAAAAAA", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "eNBv1KFKUgpPuqklH5wVdw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN4yg", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8vBDLL9ajILo3cRdIxo__g"}} +{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimtb6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOK46tVKI4mSYDEJ-ABAIpYXcgAAAAAAlcA76tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbdH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlWJ36tVKI4mSYDEJ-ABAIpYXcgAAAAAAlsoG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlrpu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlqKz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlwjf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlN5a6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlNsK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlOPs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMub6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMqa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMWu6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgDv6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgCV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwA8J6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOBI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN1t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjNJshpS1QtdrBQjGg-LCbfqeSAAAAAAAAF9MSxgb26oKQwlt07if9woPTQAAAAAAACORSxgb26oKQwlt07if9woPTQAAAAAAAB5cSxgb26oKQwlt07if9woPTQAAAAAAABLvhpS1QtdrBQjGg-LCbfqeSAAAAAAAAFrchpS1QtdrBQjGg-LCbfqeSAAAAAAAAFjZhpS1QtdrBQjGg-LCbfqeSAAAAAAAAFcz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN6I6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN216tVKI4mSYDEJ-ABAIpYXcgAAAAAAlId_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk-pXSxgb26oKQwlt07if9woPTQAAAAAAAALo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlH3T6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlJ086tVKI4mSYDEJ-ABAIpYXcgAAAAAAk-pX8JkSH12WhA-WQr2yainO7AAAAAAAAABeNzJ_Z5A_H4TjZWzADQAilgAAAAAAAAxz", "types": "MgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-DFHMOpLDZQgcK9se4qShA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVJ5LlnPpQupPs1Oay-H91PwAAAAAAAAAFlWZrBpi9jtlM7-59Gnsk1AAAAAAAAADKgWNEC7AlEWOiaeOn6tt3KwAAAAAAAAAdTZeXKeFIsAFVFzECyphbeQAAAAAAAAACtMlQRUcqMTg123vaMnWXIQAAAAAAAABZEUCCYl5Tlfw8BCUk5k6SqAAAAAAAAAAD1xjbOWy3X4Fn5bAGN-E_rwAAAAAAAAAnn6T8b92zQJPvdUVCdVoNdAAAAAAAAAACPa7d6e1HpoCr7lfaOA_9VAAAAAAAAAHbBRLAuhUZI8WAZuId6zJOxAAAAAAAAAAFx_VmsqzHmBQ-UoDqCh-tEwAAAAAAAAC0OtQJTRi2v46TRWrjuB2rfAAAAAAAAADTeUeg5OxKpjKGFioJhJ7FvAAAAAAAAAAbvRvuI9QPYw-gBmLoCCciSwAAAAAAAABPlWkQKFLf3s6H7tmeRjlAcAAAAAAAAAAs2cAnwi6XhCW3Nwdpcay_dwAAAAAAAAAFsA51xjk_b2HNViwO0q0xrAAAAAAAAAB4unfj3abv23fxUBMrQGI_kgAAAAAAAAAb_F7IJYgvtDq5pEjUn4ybdQAAAAAAAAADZe-lFYlAFG8CnInYlyzu1gAAAAAAAAEFpFQLco1pJFMLg-Vzz3y8ZgAAAAAAAACLyAXOf2kjh2kjTgPBmwWVtAAAAAAAAABXMKsZ8NESNn92qMVcVTgwjQAAAAAAAAFT-qvdwph0xh4SsklbVqtVDwAAAAAAAAACh4ygMADaHcq2Tj0JPsaeGgAAAAAAAADPfsSq5sroB-tGgeWogK4rbQAAAAAAAAAbhGSCrwWRBmtVELIFCWeAPQAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAgn-HZSkKN3zNxr0HYuO2pqe5hQAAAAAAgn4hZSkKN3zNxr0HYuO2pqe5hQAAAAAAXC5JZSkKN3zNxr0HYuO2pqe5hQAAAAAAXBuDZSkKN3zNxr0HYuO2pqe5hQAAAAAAXd_rZSkKN3zNxr0HYuO2pqe5hQAAAAAAXd6TZSkKN3zNxr0HYuO2pqe5hQAAAAAAXdKWZSkKN3zNxr0HYuO2pqe5hQAAAAAAXhtxZSkKN3zNxr0HYuO2pqe5hQAAAAAAj39TZSkKN3zNxr0HYuO2pqe5hQAAAAAAwOx2", "types": "CAMiBQoD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "C-lJpxXT861Scb4vCoKH8A"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXUptYxe-SHgukLEpCkawSk1QWAAAAAABXVjkYxe-SHgukLEpCkawSk1QWAAAAAABXVBsYxe-SHgukLEpCkawSk1QWAAAAAABXZL0Yxe-SHgukLEpCkawSk1QWAAAAAABV3AkYxe-SHgukLEpCkawSk1QWAAAAAABV1ydYxe-SHgukLEpCkawSk1QWAAAAAABV6clYxe-SHgukLEpCkawSk1QWAAAAAAAFzcMYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaO", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wRnZ-FC28vuMm8VeN_8m6Q"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQJvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACeySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAYh-mcFcSefWaXpPLGLAmk8gAAAAAAAABsijeboCn6LOt0NOcmaRcGZAAAAAAAAAAH0I8cAvoTemt9EvN943sckAAAAAAAAAA_gh3_dq-X3ps5hlW-NYikEwAAAAAAAABcHYCPABbHg3v8ZSX1NQW6ywAAAAAAAAAC_C3zmgl0Bjr8nR0878NBsAAAAAAAAAALdhiUmvfDk2OXbcgaknkEMgAAAAAAAAAIOppFSDODTzgTHYJG_GWJMwAAAAAAAAAo_etALA28oEWqh2qGb97M7QAAAAAAAAABrbwR-ACr3s5lHPzJRwgUNgAAAAAAAAEmwW06ySXKbT--KZOlG5kgCQAAAAAAAABN1rUG_FMFENPLm_LxQvhypQAAAAAAAAAEriMAXWHM1jJ-7YLA6KKUtgAAAAAAAAAEYlO0NgYBRfcb2MwaU6PEpgAAAAAAAAAA", "types": "CAMxBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1VWsxO3jFJmEihuGjZ6n5Q"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVuttUA2IAZoyKZAgCzy0iDQAAAAAAAAAIpokhquvW9ooLc3LbDvwZ4AAAAAAAAAARXasdzsgYzXeaIf1qB6YHcQAAAAAAAADmPFj10tn7Q5v6DtY9a--2yAAAAAAAAADTXQF-stwqMiArQgxmCuIBPQAAAAAAAABICdiM_N4hdaPvSJwq3P6azwAAAAAAAAAENtCGtgNOSKjf89hTQ9pKCgAAAAAAAAAM1dtimHb35RfEFCzsXx56LgAAAAAAAAAHCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAEhQ2OXkHYZRXh3_WLXzxSBAAAAAAAAAAEqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYMn0lhQNjNLc2TiLs5CI5twAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFdciEg2zVAoapt7MT0cXoNwAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAAB_m-qUpm5qFpCV1J_pprJuHwAAAAAAAAAEqV6Z4BTScShgShhYYQCpIwAAAAAAAAAF1C_GM0ni6_vEXN2fBv3HRQAAAAAAAAAF7exNcAD3DCXLAozqoZf9bQAAAAAAAAA7laCVEYRJ1mj9jC4IMnu-nAAAAAAAAAAA", "types": "CAM6BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UjcwmQF4p5_9XdWwQfdqxA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAABQ1PhVGIcoQAgleHhVcpf27gAAAAAAAAAvyBWSGqiiI_VOVi3uSjsniwAAAAAAAAACTdwLOY0C6NYFuVVgfM0c5wAAAAAAAABsQVg0XAOEbp3JKK1NFLqVYQAAAAAAAAAH8PLzoB-u4hzDZ_WKIg8FxQAAAAAAAAAhYNG5rLJWIsjMTCOpoQz9TwAAAAAAAACG0uQfhygt3iA5h-6EqK0MPAAAAAAAAAAEJYb5JOqnMPOCcF7fd5apugAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAK7KeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARjk", "types": "CAMRBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iAyna-aTAn1PsVqMhzzlmg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgKO", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "eokW3Zt2rGR7hPkbVLGwZw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAAAtt2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAHIG1OnoGXN6zXJZoQUHRmxAwAAAAAAAAAxYEThj3UEuGl2wDiJSq9vSAAAAAAAAACqZou-EwmpdzrcXx7eij10xwAAAAAAAABPIdkGKdrrMvbrgpaqyJ-rigAAAAAAAAAJUpqzzk59PbxypyRs4QkNMAAAAAAAAABTN1R-9DGIZrDXK9x_wnFgtgAAAAAAAABD7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAAB3ZTYW2hueb8qo9sBuOsIdRgAAAAAAAAAn6HagrPNegEb1JoaDvxlnywAAAAAAAAAp5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAADT1TcD-cYA4xs7rqA_y0alsAAAAAAAAAA_To5h_VPG74jZVr_rPWhSXwAAAAAAAAAEPdntB36p_DeKmNIFQmfwvQAAAAAAAACHp8XgQrU2BcPpUS47TUHGtwAAAAAAAAAFN-_9EG7uxCaj5t6h7NDJwgAAAAAAAAAPMnYM9B90Ha_6l2oFXip8PgAAAAAAAAAbvoqjqV6_-EldPWpE4Bg5QQAAAAAAAAAl", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "VmY6eirFLUrEMyqbS18HAQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAH2pe-vvUhcqWCQ2Ttp9ucQQAAAAAAAAANrZfJBEypdS4uOTEOkE706AAAAAAAAAARXgaFzHgWL9yv-6z5r4WLpgAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHXOBFFPSGeW_bx9jqjuemtiUm8j-_s73zQAAAAAAm-4fbx9jqjuemtiUm8j-_s73zQAAAAAASFbw", "types": "CQMKBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jbMRQf0fAADQ6-2j3Rarmg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFpibx9jqjuemtiUm8j-_s73zQAAAAAAlGp2bx9jqjuemtiUm8j-_s73zQAAAAAAlGdWbx9jqjuemtiUm8j-_s73zQAAAAAAkEeKbx9jqjuemtiUm8j-_s73zQAAAAAAZYta", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "V-jOQZ4DQhARmhR_HcsbzA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHwQXT4fd_WKeR1cE-hlLelCQAAAAAAChHqEXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChF4kXT4fd_WKeR1cE-hlLelCQAAAAAACg6T7XT4fd_WKeR1cE-hlLelCQAAAAAACh1L_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuqD", "types": "BwMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "i8Ul8ghl04_uXUpsSI_CWg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o6kXT4fd_WKeR1cE-hlLelCQAAAAAAC-pHvXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_Y9XT4fd_WKeR1cE-hlLelCQAAAAAACiFHoXT4fd_WKeR1cE-hlLelCQAAAAAACiKQzXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LGYpyUrO9zCBbf8c-CYMqQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVFKmuDb9OiAlOmhNzpFQWMgAAAAAAAAAFUw8EG916-vV16x2yycdXOwAAAAAAAADvK0flqZKMYgGhD375agfmDQAAAAAAAAAdrXAVE11Ryhs80ZE3uuTVVgAAAAAAAAACWj1Uq6jbmSjrZUnAzTcg8wAAAAAAAAFMu2DScCPg-79KHpSdqd651AAAAAAAAAAdt1rjy3Ck_TErVMhv-psy8AAAAAAAAAAHL89gnK14agcS6gC2h0zhpQAAAAAAAAFDEacvdBDVwYleo41xBU-e_gAAAAAAAAAL6vLdbR-rUObkBHp1yQiB0AAAAAAAAACDv9o_sKfrYjdaj4uQ2RTaHgAAAAAAAAACA81KQnIActlJrUuE6mKR2QAAAAAAAAAlGRkj9xWObIUC39vWGN57xgAAAAAAAABNIHitom53T4ie1rkBiA8y6gAAAAAAAACyLTb9asUQOMhlb43-O2hRvAAAAAAAAAACMClpQyU6gpPESHOwt_xwcAAAAAAAAAAoC6MkBEHFDeIGZnIrO2EiSQAAAAAAAAAFKSV5zpqX5uS8pJ0jF65uTgAAAAAAAAACNcpE6adeOVCfvBx4qpjhtwAAAAAAAAAHztHnkwVOP9LxgkQsriQwqgAAAAAAAAAmw8WZ7knoCa_QO4bWg-OEuAAAAAAAAAAFNMpC60tGKaJ25O0qF-RzlQAAAAAAAAACE-v8FNfqQYHt5vFsJHPNCQAAAAAAAAA9Pw0lwfQZQc0MOiG5MIrhJAAAAAAAAAAM9LcbhYCkWtGyipSFqusBKQAAAAAAAAA31DMLps0Phwo-rlcCw6stdQAAAAAAAAAFN4_m1vnrP1MXWCUw2cXf5wAAAAAAAAACVupuAC5J4NWIL7kdvuzpSAAAAAAAAAAFuqz36MZf1ln0xVwpZ_tNhgAAAAAAAAATCyFPDZBEiXoheKAUx-Kq0wAAAAAAAAAUpHZ30TKAe6C6T34R7-7vMgAAAAAAAAAMp9atTgirRjAnGD7yZRD-4gAAAAAAAAAFfd4gbt6sr3NPZVQPXpwspQAAAAAAAAAbO3oKk3BCpEPlmMiRGXV40wAAAAAAAAAF", "types": "CAMpBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dLA7nA7hBfEYzANTryn9Yw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAAESrVzWSpKLw4v6Aqz2OFQqGgAAAAAAAAA7QqMFArUGE7c3aczTAAedSAAAAAAAAAARpny64bxVlV3tBC1sODqZ9QAAAAAAAAA-PQucG8F-Yu3IYNQ_8vxwFQAAAAAAAAA9mEefCgy0KUI5I66lcwP9KQAAAAAAAACTjDe_UcDCp3SrzQuo-TC0CAAAAAAAAAAA", "types": "CQMZBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "eE41AUFVYZ7SWM-cMo2uGA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGBROz5k14PsCcDvFyUC1kmlV3QAAAAABGBROz5k14PsCcDvFyUC1kmlV3QAAAAABGm-N", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "oX6ZfNYgLGXsgfXoNGxxiw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7zyXT4fd_WKeR1cE-hlLelCQAAAAAAC-8B3XT4fd_WKeR1cE-hlLelCQAAAAAAC-ykpXT4fd_WKeR1cE-hlLelCQAAAAAACp71EXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi5iPXT4fd_WKeR1cE-hlLelCQAAAAAACi09JXT4fd_WKeR1cE-hlLelCQAAAAAACiKcMXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iMbyDQoVJg27eBII-z_6nw"}} +{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBAu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAYtbf6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgVN6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOBI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN216tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIer6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlH3T6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIYH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIRA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAl1AE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlzoH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlmsw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAll9_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAllGK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAirCv6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "FgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "qSGUIJ9pg8er8yDjtpY1lA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACtxSwcEvvhuguaGYCmGWrnWRz1QAAAAACtxRecEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETXx", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "15Mi87EWZutJB4cK0PXpjw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADSZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABCAZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAGrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAuU-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABTHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAIiuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAWyQLW28sZ3rpLXAl8a-XdLgAAAAAAAABnWIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAIKCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAIQRW1om0CtcYaE4B8xaBEggAAAAAAAABGAZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYlCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYRoLIlcLUqj5vIEU93Jo_ggAAAAAAAAAM9vvlObj6sj2v9DQG_1E_-wAAAAAAAAAa0DUsXaqQM40fpzmPdRsv-gAAAAAAAAAWIwWSLDFKbE55JoXCKhV27wAAAAAAAAADaBl1z_DR7_Hyrw2rxrDKMQAAAAAAAAFCucY-hDA6B-WAclSR3dnjWAAAAAAAAABGl23LqRBCxbwmYYhWIs5QbQAAAAAAAAB68ebb3ost-YWwZ9Gy9pOAhAAAAAAAAAAA", "types": "CQNeBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jL-YoCP6m-foEcRVmjKhJA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAAB1Rt6zauIajYCS35l66QRKCQAAAAAAAAAqE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFVIpKyJ4wSn-DKbqb5c24RwAAAAAAAAAco-YCkVIb1YKeUkrNTWvXyAAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4HIIjrBY7gA03CnEjMAD7QgAAAAAAAAAMBY5YV5xXx7ZBlABDbJ23mAAAAAAAAAAMcNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAAT5P9SwSLlS7AjqRDPaj6g-wAAAAAAAAAHyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADy4yrZLxokljeohMojKnS6HgAAAAAAAACHbjqwTnd-bxWdNS1Q-ESiOwAAAAAAAAAA", "types": "CAM-BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YU9bkeMVvGuf-oZRVaL0SA"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAABHaI47B_NxRB-tFVbAaTDiew0fwAAAAAAk_fu7B_NxRB-tFVbAaTDiew0fwAAAAAAk-PN7B_NxRB-tFVbAaTDiew0fwAAAAAAfrb67B_NxRB-tFVbAaTDiew0fwAAAAAAfshW7B_NxRB-tFVbAaTDiew0fwAAAAABFafjvQ7EacG6CR4rzcFaNFEsTQAAAAAAATWb", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2AQqVFFd7iTt8VAf4mqs2Q"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-Jf6cEvvhuguaGYCmGWrnWRz1QAAAAACETYkcEvvhuguaGYCmGWrnWRz1QAAAAACEN7TcEvvhuguaGYCmGWrnWRz1QAAAAACEMpA", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XJLcK8jkZLug-hYNjFZn4w"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA70RgYbC2fQjxygsXZf0s0DwAAAAAAAABPiAgP1DBH7Z9OPzvK7kQabQAAAAAAAAA3brHwMWIWqKKcmy2jXj1-xAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADXgFPyL3qH7XvAMbrBvAuRfwAAAAAAAADbtEnA5bbecd5HgfHANQcYvAAAAAAAAAAMRzjbtVKcKAJORTMSkyG2eQAAAAAAAAAGvpboNfauwLs6xQ0xkHOOWgAAAAAAAAAtO6091ZB5jV9xKR7I7_uzYgAAAAAAAABdKGcnodwCdbO2RZIs7I3VDAAAAAAAAAG7u5vAXtVp9d4wvRuocarrCAAAAAAAAAAPaxidElRbDvZZ7rQ8Ca4ceAAAAAAAAAAFTVILalueBBKmusxvrzs61AAAAAAAAAEVRVeQ4Cnit8ApY3-6Zv3w0wAAAAAAAAAm-ewB6MfVuUB7Vi_jcn5d-AAAAAAAAAAvsZ7DuqUIOGepxIijYq8VswAAAAAAAABsy3V4Wh9j61CfcWNgvt1uPgAAAAAAAABz-i9B3-JNdczGS_XZOzEMqwAAAAAAAAAcOqpwupFnKCF_JGoASiI17AAAAAAAAAAN0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdxn1WEw8JlmcUP5ReFMzZYwAAAAAAAAAYTpjjgqBU-O7RfxeFvF0xSgAAAAAAAAA80Og38EZo1V7Xaj5UHUpXuQAAAAAAAABFHhNjFnMd70fZN07PFErnWAAAAAAAAAAKdAeX1d421DMJ2cC6FX3tvwAAAAAAAAAWW4fRUywM1R6k-YZN0urJjAAAAAAAAAAHNUmJ5QmloEgI0M4MXoldOgAAAAAAAAAHii3DfKc87aEj3ekkrQzbAwAAAAAAAAAfq5W-ZFz3SsJgX44Cea7PngAAAAAAAADEqBOSbIDR29V7eF9w5R3mkQAAAAAAAAAG4LZyz0ky4KZRxU-ycOOQygAAAAAAAABN", "types": "CANABQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vIgNMIYNO50uX0uwG_2roQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQw7WOWZs79Wz210098loDzAAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARrSUSoohdnG6MdsfC9pID0QAAAAAAAAAGpY2MvdN80J-OPBSDYZs_8gAAAAAAAABSneOkLg7Birx-EWGBuoP5rgAAAAAAAAAaDjB9rnpR9s2OI-jlVfuXnAAAAAAAAADmNrikprALerrSkH1iKFm6zQAAAAAAAAAs_ui1AAIySrYc7ZeYb73nFQAAAAAAAAAMDbSG9xbs7jnAEiHiVrKb1AAAAAAAAACGHSSZPv-Jiv2fPLN9vFx42gAAAAAAAAELQKRyqWZIJ5_z0G07UwBzeAAAAAAAAABS3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAxJDeoMDAF4zRp8m9fg1ttGQAAAAAAAACBArHoFYyXVsZt6HAc7EjVzgAAAAAAAAA3u1A1mq4_NM3j2_15WwdIbwAAAAAAAACHp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAACjGw9H1l67yAnzlh8ZHG_VaQAAAAAAAAA47c7rgpFHY6rxkjCoiUY2PgAAAAAAAACWu1A1mq4_NM3j2_15WwdIbwAAAAAAAACH36qODdc5_sG38C3jmrtkhgAAAAAAAAAkuchUv6RRAwtUDrZKhO2h8QAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAACX7uo6HnEu95TqHvEix8e-NAAAAAAAAAAT81sQIr1-P7Y9e1lYkQD1WQAAAAAAAAAbc4tAsAimVlPgj7zIV9p01AAAAAAAAAAIC0WKYZJsdZy_HtDNc5i0jAAAAAAAAAACBZDyipXP5bFEE55HWZ3NWQAAAAAAAAACRHCo9S6JLvJhQuHnIgHq_AAAAAAAAAAURxqe_zQBj7bxcQClfMPGZwAAAAAAAAADWzcM34XPrxORvaGGXCAlPAAAAAAAAAEuDsmnB-99lpR3jSBsZQO0JQAAAAAAAABGgkQuFSIA2UC_9Mknn8WGYQAAAAAAAAB6h8ulXQ0PqCWi8WjndyD3QAAAAAAAAAAA", "types": "CANnBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "O60pT0bfrT1F8AW0u7ZPDA"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAi46VYxe-SHgukLEpCkawSk1QWAAAAAAAi5BcYxe-SHgukLEpCkawSk1QWAAAAAAAi1O1Yxe-SHgukLEpCkawSk1QWAAAAAAAiyatYxe-SHgukLEpCkawSk1QWAAAAAAAapsiYxe-SHgukLEpCkawSk1QWAAAAAAAi4LQYxe-SHgukLEpCkawSk1QWAAAAAAAapynYxe-SHgukLEpCkawSk1QWAAAAAAAbIkVYxe-SHgukLEpCkawSk1QWAAAAAAAbORuYxe-SHgukLEpCkawSk1QWAAAAAAAa4MoYxe-SHgukLEpCkawSk1QWAAAAAAAbg23Yxe-SHgukLEpCkawSk1QWAAAAAAAFBLGYxe-SHgukLEpCkawSk1QWAAAAAAAEs6VYxe-SHgukLEpCkawSk1QWAAAAAAAErgkYxe-SHgukLEpCkawSk1QWAAAAAAAEq_K", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RQslAigzLFVQBMcm2HyODA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz0l9Z3CKaS4aU08RhYA19y5ITQAAAAABvXE7Z3CKaS4aU08RhYA19y5ITQAAAAABvYwEZ3CKaS4aU08RhYA19y5ITQAAAAABvMhs", "types": "HwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vozRSLCjLToa8YixKSyrJw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADUVK3XT4fd_WKeR1cE-hlLelCQAAAAAACnxaWXT4fd_WKeR1cE-hlLelCQAAAAAACney9XT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhjWXT4fd_WKeR1cE-hlLelCQAAAAAACjs1kXT4fd_WKeR1cE-hlLelCQAAAAAAChrznXT4fd_WKeR1cE-hlLelCQAAAAAACgaYEXT4fd_WKeR1cE-hlLelCQAAAAAACga0-", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kA717wmtrauoztRQsgG4PQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vCpXT4fd_WKeR1cE-hlLelCQAAAAAAC-n8QXT4fd_WKeR1cE-hlLelCQAAAAAAC-oY5XT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "sZS1XfsAKfkUIk_B3D46EA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AFUz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHpmIz5k14PsCcDvFyUC1kmlV3QAAAAABHpbXz5k14PsCcDvFyUC1kmlV3QAAAAABHeDgz5k14PsCcDvFyUC1kmlV3QAAAAABHdVCz5k14PsCcDvFyUC1kmlV3QAAAAABFwHxz5k14PsCcDvFyUC1kmlV3QAAAAABFxYLz5k14PsCcDvFyUC1kmlV3QAAAAABGnan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuKD6tVKI4mSYDEJ-ABAIpYXcgAAAAAApym-6tVKI4mSYDEJ-ABAIpYXcgAAAAAApymC6tVKI4mSYDEJ-ABAIpYXcgAAAAAApyVc6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD7KN", "types": "CwMHBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nQIvPcT5PaZ24bBySxZzSw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAACEcaxcEvvhuguaGYCmGWrnWRz1QAAAAACEbZ0cEvvhuguaGYCmGWrnWRz1QAAAAACEbspcEvvhuguaGYCmGWrnWRz1QAAAAACEtkYcEvvhuguaGYCmGWrnWRz1QAAAAACEtmGcEvvhuguaGYCmGWrnWRz1QAAAAACEtOp", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zsq7iNke2jT6FItAd8xpxw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AWXz5k14PsCcDvFyUC1kmlV3QAAAAABIF24z5k14PsCcDvFyUC1kmlV3QAAAAABH_M7z5k14PsCcDvFyUC1kmlV3QAAAAABGL09z5k14PsCcDvFyUC1kmlV3QAAAAABFRI3z5k14PsCcDvFyUC1kmlV3QAAAAABGmcm", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8YVd3iBnxN-_dthgW3tB2w"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA7PmG8DDAjVJl721y2vxKHGSBegAAAAAA7PTV8DDAjVJl721y2vxKHGSBegAAAAAA7Opc8DDAjVJl721y2vxKHGSBegAAAAAA7MU48DDAjVJl721y2vxKHGSBegAAAAAAgPR98DDAjVJl721y2vxKHGSBegAAAAAAgN4a8DDAjVJl721y2vxKHGSBegAAAAAAgNmT8DDAjVJl721y2vxKHGSBegAAAAAA1GZh8DDAjVJl721y2vxKHGSBegAAAAAAcJV6", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GsivEyBL3ZXrqbvo2gdd8g"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZthzncPMjH_Hp8wlnC889jAAAAAAAAAASdY3nB7xe3zg1QDQFswG3AwAAAAAAAAAGm-C5-w8EcuN6p-eKsCUxUQAAAAAAAAAVtLidJxRjGWRw8PC1hoYlVAAAAAAAAAAlNyCXG_gHdZq1XHZ_0tEWXgAAAAAAAAAlEtxHFG8KdABeZEIBvg2-1AAAAAAAAAAjsFs-DxXlXTzn3bVNvCe0KwAAAAAAAAAE", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YADyz6khXeObYiZDVs-8Kg"}} +{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kuVi0_akuSWTIatJohqMk3QAAAAAAxjenuVi0_akuSWTIatJohqMk3QAAAAAA6hF5uVi0_akuSWTIatJohqMk3QAAAAAA6k4huVi0_akuSWTIatJohqMk3QAAAAAAl_pguVi0_akuSWTIatJohqMk3QAAAAAAjX5_uVi0_akuSWTIatJohqMk3QAAAAAAjZ80AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApfzLzWZQgzth4yv0Aw0PoLgAAAAAAAAAl1pEcO9CYkxI799CldX3uowAAAAAAAAARsCdW6ghslIPajpgsdfjVWAAAAAAAAAAS3HYeSFaP4bm-Z2NSJub6sAAAAAAAAAAY4io8TQpKnhHcoJs_H_nFpQAAAAAAAAAcWUsgmXBmEYsZWCQlmPqU4wAAAAAAAAALRuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAuVi0_akuSWTIatJohqMk3QAAAAAA7VMfuVi0_akuSWTIatJohqMk3QAAAAAA7P5l", "types": "CAMKBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1W4XpLZvb9OZD33GXR-9mQ"}} +{"Stacktrace": {"frame": {"ids": "c6lwtZBG2BzNKGtSyzLrTAAAAAAABCWpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGc6lwtZBG2BzNKGtSyzLrTAAAAAAABBZWc6lwtZBG2BzNKGtSyzLrTAAAAAAABWVUam-Z0RfUVY0oYK5VXRDk9wAAAAAABeu4am-Z0RfUVY0oYK5VXRDk9wAAAAAABeopam-Z0RfUVY0oYK5VXRDk9wAAAAAABeePc6lwtZBG2BzNKGtSyzLrTAAAAAAACN4sc6lwtZBG2BzNKGtSyzLrTAAAAAAACNT-c6lwtZBG2BzNKGtSyzLrTAAAAAAADWESam-Z0RfUVY0oYK5VXRDk9wAAAAAABOEFam-Z0RfUVY0oYK5VXRDk9wAAAAAAFEJoam-Z0RfUVY0oYK5VXRDk9wAAAAAAFDWwam-Z0RfUVY0oYK5VXRDk9wAAAAAAFC_kam-Z0RfUVY0oYK5VXRDk9wAAAAAADkHgam-Z0RfUVY0oYK5VXRDk9wAAAAAACSke", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-OlSGZ5KQwt77e_6D1fU8A"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN4zF", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "H549HD7yAZrxeCqWJvncLg"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHba4rFFPORY8_4FvK9QaA3QUQAAAAAAGRIW4rFFPORY8_4FvK9QaA3QUQAAAAAAGRJh4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp4rFFPORY8_4FvK9QaA3QUQAAAAAAFP8z4rFFPORY8_4FvK9QaA3QUQAAAAAADgyHUJmIMEc6K8gJ39NHYaD0WwAAAAAACY-6UJmIMEc6K8gJ39NHYaD0WwAAAAAACVlkUJmIMEc6K8gJ39NHYaD0WwAAAAAACUYx", "types": "KQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wtz8tLQcs5niwDYcEkJzeQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAQ2qk3SUFPdBYwVkFMX3ttpwAAAAAAAAAFsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJnsN5oeLyhaU3rc_4TQfhXgAAAAAAAAALgvQGUUGWUJbOOm8Vi63fqAAAAAAAAAAGpIlQHYzUvHZx6w5Rtmyd8QAAAAAAAAAGQUT-nNY12PdX-wWYy6XdlgAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJnsN5oeLyhaU3rc_4TQfhXgAAAAAAAAALgvQGUUGWUJbOOm8Vi63fqAAAAAAAAAAGpIlQHYzUvHZx6w5Rtmyd8QAAAAAAAAAGQUT-nNY12PdX-wWYy6XdlgAAAAAAAAADm61OiFi7ipeTEQpdgB4G8gAAAAAAAAAFNAXh3zuU0dO2_vEc-9d1QQAAAAAAAAANSTqKraHdt8yd9UD4ZkdTcAAAAAAAAAAEj5zlUQh7CKlo9dGRL_ZvEwAAAAAAAAAWfRMkFndiE_cl9dIgufgNmQAAAAAAAAAEVpdzCqONOyPWNGtdEBJe9wAAAAAAAAAT", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Fix2NzP6ylR64nRJe1XifQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATQDkJCt6xHk7D12ZqlrT-UAAAAAAAAAAHPX3E_b7jZQaK6SiJYskQ3QAAAAAAAAAJZaLdh2m65raIV_JyagrUBQAAAAAAAABnazI-mX3CgcWhg9AcjJjNnQAAAAAAAAART7Ugi353BwPylAwIPK3gzQAAAAAAAAHvdr7nJhzDAJ3KA627xZhFegAAAAAAAAAUE66a7lKbkjXDy4kHrdweRwAAAAAAAAALavH6-iyYHlN_flagvaXwWwAAAAAAAAAK5JuKxbkWPMw0EpITr8WSNAAAAAAAAAALCcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAAACQh22cv3M-xNK0_IOuNdQuQAAAAAAAABAdFuRXSangYgd0mdMqBWlpgAAAAAAAADqsO4szKNZnXyLfMP7gPsjpgAAAAAAAAA9jjxn4cl8bBaRqPgS5F0n8gAAAAAAAABEp9UR3btTZUo1MztbkeIkOQAAAAAAAAALZICRnstTjqeSOkLK1jp-HwAAAAAAAAAJ34fB7qb3OTOSVWKcGDOtPgAAAAAAAABl6X-l4zSEzV-o-Qo3loG8-gAAAAAAAABA", "types": "CQMzBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OzS1Me61aQgrNm_5q5gG_w"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADK74KZ3CKaS4aU08RhYA19y5ITQAAAAADK60-Z3CKaS4aU08RhYA19y5ITQAAAAAB0Hr7Z3CKaS4aU08RhYA19y5ITQAAAAABz7D8Z3CKaS4aU08RhYA19y5ITQAAAAABz7ZTZ3CKaS4aU08RhYA19y5ITQAAAAAB0J2gZ3CKaS4aU08RhYA19y5ITQAAAAABz943Z3CKaS4aU08RhYA19y5ITQAAAAAB0J2gZ3CKaS4aU08RhYA19y5ITQAAAAABz943Z3CKaS4aU08RhYA19y5ITQAAAAAB0J4lZ3CKaS4aU08RhYA19y5ITQAAAAABz-GAZ3CKaS4aU08RhYA19y5ITQAAAAABvRehZ3CKaS4aU08RhYA19y5ITQAAAAABvR4rZ3CKaS4aU08RhYA19y5ITQAAAAABtO3I", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "syiikeoV8HsQ11iug6Szrg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipGH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipDo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Zq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Ei6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjh5v", "types": "FAMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Agnft5pwv37Rr2YjnFgSCA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADSZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABCAZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAGrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAuU-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABTHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAIiuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAWyQLW28sZ3rpLXAl8a-XdLgAAAAAAAABnWIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAIKCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAIQRW1om0CtcYaE4B8xaBEggAAAAAAAABGAZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYlCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAACNHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABuHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFP1rXbpjewie805zI0BHMvAAAAAAAAAAILN3NdhSYKxRbaqnM5W9FBwAAAAAAAABpR-HVaw3JZ2IsajBZdLbC8gAAAAAAAABKKnKBdeWKnQ8CH5bzvx0i6AAAAAAAAABK-QN0Lznzz3LjWKMZzZD5rwAAAAAAAAAIeEXFmSmLstwTaBBVp_eSTgAAAAAAAAAFHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFeS9qs83Ev5DGIkgRm0VL-gAAAAAAAAAUem8QMqpxX9eEmdxu2AmtFQAAAAAAAAAPTR0CnebfBTQ0MB6Lw8cZBAAAAAAAAABvN155AC9KQhoTagHpiv5nrgAAAAAAAAAM5MIi91ywnBSPozvkoqn8TQAAAAAAAAAKTd0Ns3o3xskfXfM4g2iVNAAAAAAAAAAGotkeOgHMDZdOlA7GywTS3gAAAAAAAAANeBe2TV8VA2V7lLyhiCvcHgAAAAAAAAAEclNKHmin0SttGhUDhj4qagAAAAAAAAAH68m2CwWM-Ledaj5WNl9lhAAAAAAAAAAqwMYFsNM0woNzFGwcp47vbgAAAAAAAABGEh0v14Wp9mB3u5tYha0hzQAAAAAAAAAmwSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFbhnM-182eA1jGyBQl8pMugAAAAAAAAAU4pL5iWdAziHKM6VzojymqQAAAAAAAAAGX8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0g4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAWMCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc5430MZlAMqI5SXd_yT5HRQAAAAAAAABRTzjtq4EDG4TD9HdN8PuouwAAAAAAAAAG0hO7monEF-RsjLZl9HnnagAAAAAAAAARCh6Kr8U7ie4VuVYxsoYs0AAAAAAAAAALiDeUqi9fXDm_fNSrL17LBgAAAAAAAAAGRXtoxChZi6om4tFzbI5m2QAAAAAAAABe", "types": "CQOFBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hSK5YME25rlOxWM9QDKfOA"}} +{"Stacktrace": {"frame": {"ids": "c4mWQO6Pvl8zD3U38ut_9gAAAAAAACRlsYulZmcgr-wVjGncTZYDFwAAAAAAAY7YsYulZmcgr-wVjGncTZYDFwAAAAAAAQ5YsYulZmcgr-wVjGncTZYDFwAAAAAAATMdsYulZmcgr-wVjGncTZYDFwAAAAAAARZPsYulZmcgr-wVjGncTZYDFwAAAAAAARZhsYulZmcgr-wVjGncTZYDFwAAAAAAARY7", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_gSF5q7r1647uLbZILJYkQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXUptYxe-SHgukLEpCkawSk1QWAAAAAABXVjkYxe-SHgukLEpCkawSk1QWAAAAAABXVBsYxe-SHgukLEpCkawSk1QWAAAAAABXZL0Yxe-SHgukLEpCkawSk1QWAAAAAABV3AkYxe-SHgukLEpCkawSk1QWAAAAAABV1uZYxe-SHgukLEpCkawSk1QWAAAAAABV59PYxe-SHgukLEpCkawSk1QWAAAAAAAFzcMYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZp", "types": "DgMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "B5EdnpHaN6u42aLLYRQ2hQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAAEJm5p8puApNHgdtwb3aFhxPAAAAAAAAAApxDECjxfRDF0SAcicHv7yIgAAAAAAAAABSsODsFdp0k4d_SSQAFmIUQAAAAAAAAApzzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIcPy2QFuGdjzuVBNv2-JtzQAAAAAAAAA5FQVEqfdF3Gc5vOLVf8c4EAAAAAAAAAEpcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIiaYGOKrCYzeQFPvSFK3LGwAAAAAAAAAlcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAI3FmF0iegYInyRffZHSr8AwAAAAAAAAAv1Az5XiB-HqkM2KIxBs7pHgAAAAAAAAAul8-8MRFLE8av7SNHPQQJVgAAAAAAAABiYDzq_bCLVO7c1YoEyaj2pwAAAAAAAAANoow_X2y8CguzT6l5exV_aAAAAAAAAAANEgHBAsdbxjOeM0iCxV59CgAAAAAAAAAF1bYVLJaC5WBOgJdtA4ffZwAAAAAAAAAEBemXd-G6RDOwTOuPV3xpUwAAAAAAAAAVMvukotDYrkDBhTIXVp6gJQAAAAAAAABEsTm2NJa4oF2xjv4OCkRO2AAAAAAAAAAoakq4mF0mmQueFMEUlSNLxwAAAAAAAAAC5pJbc4ld-dqU0cbENH5UewAAAAAAAAA4vfQyY8YDfkSdAL5L2iEyeAAAAAAAAAAzxvo_iOg09zSCFO6AJ5txSwAAAAAAAAABERQe6ysQs8a3Aewl2ODwbwAAAAAAAAAY_BzhwSJVnQNfmYfVTdNgsAAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAADHMn6ZZcNA6-RmrkDCI6igAAAAAAASnQsTGLCNH21piOrMPoln5uBQAAAAAAki40sTGLCNH21piOrMPoln5uBQAAAAAAh0YSsTGLCNH21piOrMPoln5uBQAAAAAAhz4rsTGLCNH21piOrMPoln5uBQAAAAAA76uCsTGLCNH21piOrMPoln5uBQAAAAAAXItIsTGLCNH21piOrMPoln5uBQAAAAAAf3mJ", "types": "CAMkBQcD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gEu8zGSgCLnMsvKySIUTuw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7vEXT4fd_WKeR1cE-hlLelCQAAAAAAC-0SQXT4fd_WKeR1cE-hlLelCQAAAAAAC-1HEXT4fd_WKeR1cE-hlLelCQAAAAAACi94WXT4fd_WKeR1cE-hlLelCQAAAAAACi98FXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwXQXT4fd_WKeR1cE-hlLelCQAAAAAACiKCvXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Bg13tQoAawk44svPY1yTZA"}} +{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI7B_NxRB-tFVbAaTDiew0fwAAAAAAdyiE7B_NxRB-tFVbAaTDiew0fwAAAAABTOLj7B_NxRB-tFVbAaTDiew0fwAAAAAAsihp7B_NxRB-tFVbAaTDiew0fwAAAAAAsiAS7B_NxRB-tFVbAaTDiew0fwAAAAAAshDx", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FZ8OhM0nh2LwgSsIwO9-rg"}} +{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACindAJ6GSZQSmfOBquczb-SF8bAAAAAADBJDZJ6GSZQSmfOBquczb-SF8bAAAAAADBJWdJ6GSZQSmfOBquczb-SF8bAAAAAAC-R4IJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-QNEJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-OvtJ6GSZQSmfOBquczb-SF8bAAAAAADBOEkJ6GSZQSmfOBquczb-SF8bAAAAAADBON8J6GSZQSmfOBquczb-SF8bAAAAAADBLa8J6GSZQSmfOBquczb-SF8bAAAAAADBHrrJ6GSZQSmfOBquczb-SF8bAAAAAADBH3kJ6GSZQSmfOBquczb-SF8bAAAAAADBFTSJ6GSZQSmfOBquczb-SF8bAAAAAADBFhXJ6GSZQSmfOBquczb-SF8bAAAAAADA8ZpJ6GSZQSmfOBquczb-SF8bAAAAAACqw7PJ6GSZQSmfOBquczb-SF8bAAAAAACjZa-J6GSZQSmfOBquczb-SF8bAAAAAACjbykJ6GSZQSmfOBquczb-SF8bAAAAAACjbIQJ6GSZQSmfOBquczb-SF8bAAAAAACqw_QJ6GSZQSmfOBquczb-SF8bAAAAAACg8tK", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gWZieSymYI-RQt59eFJ4Sw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAABCxaYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BgMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FfU3KGa4jQE4GKP8Psa9ng"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgb9rcEvvhuguaGYCmGWrnWRz1QAAAAADgcaEcEvvhuguaGYCmGWrnWRz1QAAAAADgcoOcEvvhuguaGYCmGWrnWRz1QAAAAAChhtkcEvvhuguaGYCmGWrnWRz1QAAAAACKFbIcEvvhuguaGYCmGWrnWRz1QAAAAACGugycEvvhuguaGYCmGWrnWRz1QAAAAACGmwdcEvvhuguaGYCmGWrnWRz1QAAAAACGpoocEvvhuguaGYCmGWrnWRz1QAAAAACGsDNcEvvhuguaGYCmGWrnWRz1QAAAAACGKP7cEvvhuguaGYCmGWrnWRz1QAAAAACGMs66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBiZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAANr3F6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFdKO", "types": "EwMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TzdqvfQSI4yM_t1ELTqYFA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw13SXT4fd_WKeR1cE-hlLelCQAAAAAACmJZ-XT4fd_WKeR1cE-hlLelCQAAAAAACmKMLXT4fd_WKeR1cE-hlLelCQAAAAAACgJIQ", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1hJUVJmc90yZ1ifhHbLXeg"}} +{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACindAJ6GSZQSmfOBquczb-SF8bAAAAAADBJDZJ6GSZQSmfOBquczb-SF8bAAAAAADBJWdJ6GSZQSmfOBquczb-SF8bAAAAAAC-R4IJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-QNEJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-OvtJ6GSZQSmfOBquczb-SF8bAAAAAADBLPkJ6GSZQSmfOBquczb-SF8bAAAAAADBLVcJ6GSZQSmfOBquczb-SF8bAAAAAADBLa8J6GSZQSmfOBquczb-SF8bAAAAAADBHr9J6GSZQSmfOBquczb-SF8bAAAAAADBFz6J6GSZQSmfOBquczb-SF8bAAAAAACy7ZMJ6GSZQSmfOBquczb-SF8bAAAAAACy7Q7J6GSZQSmfOBquczb-SF8bAAAAAACytWOJ6GSZQSmfOBquczb-SF8bAAAAAACyt9KJ6GSZQSmfOBquczb-SF8bAAAAAACyu2sJ6GSZQSmfOBquczb-SF8bAAAAAACyvrrJ6GSZQSmfOBquczb-SF8bAAAAAACrKwPJ6GSZQSmfOBquczb-SF8bAAAAAACrK2zJ6GSZQSmfOBquczb-SF8bAAAAAACjxwkJ6GSZQSmfOBquczb-SF8bAAAAAACjzy6J6GSZQSmfOBquczb-SF8bAAAAAACi9sEJ6GSZQSmfOBquczb-SF8bAAAAAACjBeq", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_3VCRU55rE61ngmy6nUu0g"}} +{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACindAJ6GSZQSmfOBquczb-SF8bAAAAAADBJDZJ6GSZQSmfOBquczb-SF8bAAAAAADBJWdJ6GSZQSmfOBquczb-SF8bAAAAAAC-R4IJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-QNEJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-OvtJ6GSZQSmfOBquczb-SF8bAAAAAADBLPkJ6GSZQSmfOBquczb-SF8bAAAAAADBLVcJ6GSZQSmfOBquczb-SF8bAAAAAADBLa8J6GSZQSmfOBquczb-SF8bAAAAAADBHrrJ6GSZQSmfOBquczb-SF8bAAAAAADBHw1J6GSZQSmfOBquczb-SF8bAAAAAADBE3GJ6GSZQSmfOBquczb-SF8bAAAAAADA9oEJ6GSZQSmfOBquczb-SF8bAAAAAACopMA", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZMD1_jjyAZz1AnKCdHkpdg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAJH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAEGe7YYWaQTMh8P2PCVzA2a8gAAAAAAAAAA", "types": "CAMTBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DAT2RXhw6iy54wqZ5o2XbQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAATo2Vqo1n4TLgDJq9tPgwAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARxBGCEPBdnG6Mds1nJf4tcQAAAAAAAAAGzXf1O_8jknZjcKGu5cQjJQAAAAAAAAAgPHkw6KCW6WHcDhD0gWZvxQAAAAAAAAAXqjkbzJCs46utKAIQU_ZjYgAAAAAAAADmaG38C7AQR-wEDFFefkRnfgAAAAAAAAAsdawGhH-93Zf3Xci2M9UlFQAAAAAAAAAMPhHweSUk-rcHLCvi4mySwgAAAAAAAAEsryiaiFPVyjm4XARK10gZ3QAAAAAAAAELu4IYC5TN1ydgkWzSPfggOAAAAAAAAABSTOT6Kzt9cNfqtt7rfwzzSwAAAAAAAAAElu3U19P1ddOrJLDu-spLOgAAAAAAAAAHSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAiHAV7Zh5H5JQPHONsGvZ0PAAAAAAAAABXWb65uaTCBYe2MCZtuMHkqAAAAAAAAAAWdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFpyn-2AN_sBw7fWxvhZ_ovAAAAAAAAAAIZLVm2Yq3JzpECVJuRqNdawAAAAAAAAAQrs-7smSxpcCpQ4EcnQyDfwAAAAAAAAAdgkppypvMO9S8VR3D3H8lzgAAAAAAAABEdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF1V8iUm4ymRrWn84wHbGE5wAAAAAAAAAIZ8eDanRMy6l7sesw4dYkqQAAAAAAAACzkTJVCBjDfmFAPRrGLStltQAAAAAAAACPd1HUDx--zqw--O9SJhCTGgAAAAAAAAAIm2-tH33cq1FP2Q7Is62J0gAAAAAAAAACUvL0y1JUslNFPdxuHL61jgAAAAAAAAAIQ1b7jdbtxavHFLXq_nCrrgAAAAAAAACKpxHkQ9M1dNDXsuZ3PuZiaQAAAAAAAACHkgbfix2D2TfaYMD2TJSWJAAAAAAAAAAYyXWFMIbkwU7jqv0ggmjvVAAAAAAAAABHVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAApOzkHkS17HRu8c3H4oJbrdwAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFnpPhwY_ic31u1gmBHOrU7AAAAAAAAAAU0cZiHBBWN2vYtEyCZ5X5wgAAAAAAAAA3pzTcRcencDxd0mEO6HA0bAAAAAAAAAAFdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFA_f9j659izgXSTlh6Tab-QAAAAAAAAAQLrT96WuiUXgKg4BgtAP98wAAAAAAAAA_dswq7UFB-c5kE0TfryCD4gAAAAAAAAAFpjc1-JTccEPjdmvL7IyGRgAAAAAAAAActLWCyKrEBYGzX2N5W13-8QAAAAAAAACnHs84X9WR2gx5bBItVVyJWAAAAAAAAAB4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFYqSD5Hl57zxJljwXyAsavwAAAAAAAAAMn-IlVo5-jcMpxFIQmT8ZXQAAAAAAAAADXNiEFVfexcwhuzJE2wFqSQAAAAAAAACouB_3Gzwjvj1RjZpSgTL9mwAAAAAAAABHcemtT_LtuQxWV7j18_T0KgAAAAAAAABE3Cqr4IYWZNFEOAT7GHij5QAAAAAAAAAIYldLdAhiU1Ikhg1VTxvqJwAAAAAAAAAVdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFz8YcS7kQQWoeBfgskdVBqQAAAAAAAAAYa1rORv6uw2uAWC1se05SoQAAAAAAAAA7ReecyGgWWJgzc543tXNeIAAAAAAAAAAlskGfd5BDAMA1fbyY3ykq7wAAAAAAAAApdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFdARkiftRl5NVojcjp193jAAAAAAAAAAMBFzsvc2FJJqJ7MOfSIYcgwAAAAAAAAALdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINabLzAQAM62JeaJIyCWDwAAAAAAAAAYSVYBVG1fCfTODpNzLfPxlQAAAAAAAAAi0YsnzQnMKXvFIy6EpgfjkAAAAAAAAAADRpytFVQWXXRAk8QQZ7KiCQAAAAAAAAA4SsLxTgHFbTYmQH4wK_CEdgAAAAAAAAA9nmuO2QqjrQIVZRr3ilzClwAAAAAAAAAUjUG8QWsNu_4dltLC_LjyvAAAAAAAAAAJvvfzMfPudZT7dL091tNenwAAAAAAAAAr_jjpeyVI1Bq6Q8mMvc4G-AAAAAAAAALqNuq4Zgqoz8A9du7YvN9dPgAAAAAAAAAFEcqKjJFNWzWaobcaIUelIwAAAAAAAADFlXmpkj0zpTSACRNmGcLZdgAAAAAAAAAIhWO0Ej8QxAN8OGdadeUgHAAAAAAAAADa3GVgd7461M2Ew-ktlhyjlAAAAAAAAAAC8Wh-dNJMm135_FvZ6kzNGgAAAAAAAAAFyIwqYS0mEOsOOFPEeyqyswAAAAAAAABCOEu4PdM3AHloc1VSWOpgVAAAAAAAAAAek_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAACJdXbg8BIrgqcyz9Q7l7InFAAAAAAAAAA7X_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJnsN5oeLyhaU3rc_4TQfhXgAAAAAAAAALgvQGUUGWUJbOOm8Vi63fqAAAAAAAAAAGp_BQ7Yb3OD8awPcwxbgm8QAAAAAAAAAG4fOsfY8_kA5tjsgDGGtxCgAAAAAAAAAZLf0FUqPPVEEZg315uAAX-wAAAAAAAABu241uNZPD0pUSm0tjjx8oWgAAAAAAAAAMokmPT337sGHG_wLuhlx-SAAAAAAAAAADO9GyViThnT0aREbt-Lp02gAAAAAAAAAF9dSiAVf4JMZUU7oBgAZVBwAAAAAAAAACEcqKjJFNWzWaobcaIUelIwAAAAAAAADFlXmpkj0zpTSACRNmGcLZdgAAAAAAAAAIhWO0Ej8QxAN8OGdadeUgHAAAAAAAAABQsr7KmiDQn3AwPKwUE1w3aQAAAAAAAAAFnyQEDtNfXDm_fNpPXsT-3gAAAAAAAAACeLPEw3jnFkvsJ2aQiz21NAAAAAAAAAAXdYhRx-e7CFQF89Cj2l7eOQAAAAAAAAAJvc-j1E8HSTKofoqXgmmEFQAAAAAAAAAbWYLRZt9i7H-NuOl3RpqEjQAAAAAAAAAl", "types": "CAOoBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xjggtUmqz00R3af_p6u37A"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABm1KYxe-SHgukLEpCkawSk1QWAAAAAAABRc5Yxe-SHgukLEpCkawSk1QWAAAAAAABBkUYxe-SHgukLEpCkawSk1QWAAAAAAABBWeYxe-SHgukLEpCkawSk1QWAAAAAAAA8li", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8MUpEWViKbPjp_Cls_rSig"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAAGkuWcUG2bf_MgJpXpuAZivRAAAAAAAAAAx0nBVkJrBQHU_wusVG6_3KQAAAAAAAAB96PDTyNLwDP2GCrVJoblLzgAAAAAAAABIciQsV4oUc5gYfL4dony27QAAAAAAAAAn", "types": "CQM5BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "21yhTyFYdhk_uY8yPTzDuA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAEWwtUXT4fd_WKeR1cE-hlLelCQAAAAAAEWwzbXT4fd_WKeR1cE-hlLelCQAAAAAAEWw6tXT4fd_WKeR1cE-hlLelCQAAAAAADURwGXT4fd_WKeR1cE-hlLelCQAAAAAADUoFSXT4fd_WKeR1cE-hlLelCQAAAAAADUoYHXT4fd_WKeR1cE-hlLelCQAAAAAACsuHUXT4fd_WKeR1cE-hlLelCQAAAAAACsrzaXT4fd_WKeR1cE-hlLelCQAAAAAACssRXXT4fd_WKeR1cE-hlLelCQAAAAAACttHYXT4fd_WKeR1cE-hlLelCQAAAAAACuFvIXT4fd_WKeR1cE-hlLelCQAAAAAACuRsyXT4fd_WKeR1cE-hlLelCQAAAAAACuI-M", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xRhapVs8DimQtljSm9PXHw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAAA65FYxe-SHgukLEpCkawSk1QWAAAAAAAA8D0Yxe-SHgukLEpCkawSk1QWAAAAAAAA_IZYxe-SHgukLEpCkawSk1QWAAAAAAAA-3HYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DGw_2OEeuELDD0KkqG3p7Q"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAHvdr7nJhzDAJ3KA627xZhFegAAAAAAAAAUE66a7lKbkjXDy4kHrdweRwAAAAAAAAALavH6-iyYHlN_flagvaXwWwAAAAAAAAAK5JuKxbkWPMw0EpITr8WSNAAAAAAAAAALCcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAAACQh22cv3M-xNK0_IOuNdQuQAAAAAAAABAdFuRXSangYgd0mdMqBWlpgAAAAAAAADqsO4szKNZnXyLfMP7gPsjpgAAAAAAAAA9jjxn4cl8bBaRqPgS5F0n8gAAAAAAAAAA", "types": "CQM_BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EgN5jlPsElCbrLLn3JHyyg"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXDNgtQ4kMk_MBWrPUAFqVnYywAAAAABqaCzgtQ4kMk_MBWrPUAFqVnYywAAAAABqahxgtQ4kMk_MBWrPUAFqVnYywAAAAABqa18", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "VVA1mMm7McHUqkqp0Z4iUg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAACgg6FXT4fd_WKeR1cE-hlLelCQAAAAAACgrPkXT4fd_WKeR1cE-hlLelCQAAAAAACgrXo", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mQ3IrIwduPQA6-1ZdEttIw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIBHkZBcmNHMjIQUGuyLAiYwAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAAH_-XUdumhTxHCVZ0GQJxIggAAAAAAAAAFidtvmh4QN6gpCMGU1zaMHwAAAAAAAAAFANUDzCguopTSw91qnI0ylAAAAAAAAAAOfZ1SoGSE80OZ2t9ks5kZMwAAAAAAAAAhEVqCqcMqZlQ0w1_HMPbgrgAAAAAAAABN7qz18bHgG-Zc_fVo9Dsh7AAAAAAAAAAiLDdYUFmfmBXmyn1AQ_9arwAAAAAAAAC8ob8euj5VS7ygs-H5kZoYDQAAAAAAAAAFNAg59bv61LPPiYi05gl2kwAAAAAAAAAmNb1IdUv964LIky2A5_p47wAAAAAAAAEIMNT8L4auG-atyEVtUs402QAAAAAAAAALEwUkTSZKehDeZ3ynAFaE0wAAAAAAAAAIbY0nITYYTRCo5XIvB0MFHAAAAAAAAABBMNT8L4auG-atyEVtUs402QAAAAAAAAALGo4CBISLnucBIZD1h6lqAwAAAAAAAAB-pHZ30TKAe6C6T34R7-7vMgAAAAAAAABDTXS-M7XDD4DedgFr7B7PEgAAAAAAAAAA", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "s4c75Pyv4cZXMPWM012gbA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-wCEXT4fd_WKeR1cE-hlLelCQAAAAAACkR-sXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgURkXT4fd_WKeR1cE-hlLelCQAAAAAACgT3kXT4fd_WKeR1cE-hlLelCQAAAAAACgeSRXT4fd_WKeR1cE-hlLelCQAAAAAACge8X", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lQ5a90yyfu3YQ53fwCbEUg"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABdKzcz5k14PsCcDvFyUC1kmlV3QAAAAACFH_-z5k14PsCcDvFyUC1kmlV3QAAAAABdc9nz5k14PsCcDvFyUC1kmlV3QAAAAABke5Xz5k14PsCcDvFyUC1kmlV3QAAAAABkdp1z5k14PsCcDvFyUC1kmlV3QAAAAABkemuz5k14PsCcDvFyUC1kmlV3QAAAAABRyDZz5k14PsCcDvFyUC1kmlV3QAAAAABkgSsz5k14PsCcDvFyUC1kmlV3QAAAAABkfWjz5k14PsCcDvFyUC1kmlV3QAAAAABSO2cz5k14PsCcDvFyUC1kmlV3QAAAAABSN_kz5k14PsCcDvFyUC1kmlV3QAAAAABSmpsz5k14PsCcDvFyUC1kmlV3QAAAAABSP7-z5k14PsCcDvFyUC1kmlV3QAAAAABRsCg", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8Pukzn1v9frZ4L8yQWTluw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV_OYxe-SHgukLEpCkawSk1QWAAAAAABXc-2Yxe-SHgukLEpCkawSk1QWAAAAAABXVusYxe-SHgukLEpCkawSk1QWAAAAAAAAIakYxe-SHgukLEpCkawSk1QWAAAAAAAAHYg", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "AwPeMADeDnDZzAn2ChgTiQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAABQ0tEAP3x_JoFH6wNaGZk0agAAAAAAAAAsl34EZ8xDHNxGTCOWJeXKigAAAAAAAAACtIB1dxGnX0oRcLl9Hw7ZbAAAAAAAAABwmZ6pM0OEbp3JJIi6QUyNsQAAAAAAAAAItUugY2gAhpWf99wEorV4JgAAAAAAAAAjwf9mrqZKrjw_yhc1kSPntQAAAAAAAACE0uQfhygt3iA5h-6EqK0MPAAAAAAAAAAEJYb5JOqnMPOCcF7fd5apugAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAALTqvQ7EacG6CR4rzcFaNFEsTQAAAAAAATOA", "types": "CAMRBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4Qwrvn05v6ZDRlg-EeY-HA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACRuzKgtQ4kMk_MBWrPUAFqVnYywAAAAACRvAEgtQ4kMk_MBWrPUAFqVnYywAAAAACRvT8gtQ4kMk_MBWrPUAFqVnYywAAAAACMCnBgtQ4kMk_MBWrPUAFqVnYywAAAAACbQAkgtQ4kMk_MBWrPUAFqVnYywAAAAACbQYrgtQ4kMk_MBWrPUAFqVnYywAAAAACbM7NgtQ4kMk_MBWrPUAFqVnYywAAAAACbMVkgtQ4kMk_MBWrPUAFqVnYywAAAAACbLgsgtQ4kMk_MBWrPUAFqVnYywAAAAACa8u9gtQ4kMk_MBWrPUAFqVnYywAAAAACa76dgtQ4kMk_MBWrPUAFqVnYywAAAAACbFMpgtQ4kMk_MBWrPUAFqVnYywAAAAABrKGxgtQ4kMk_MBWrPUAFqVnYywAAAAABqISEgtQ4kMk_MBWrPUAFqVnYywAAAAABqIZcgtQ4kMk_MBWrPUAFqVnYywAAAAABrnxA", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NQwMw8B1NJ93shL-Vs0fBQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVuttUA2IAZoyKZAgCzy0iDQAAAAAAAAAIpokhquvW9ooLc3LbDvwZ4AAAAAAAAAARXasdzsgYzXeaIf1qB6YHcQAAAAAAAADmPFj10tn7Q5v6DtY9a--2yAAAAAAAAADTXQF-stwqMiArQgxmCuIBPQAAAAAAAABICdiM_N4hdaPvSJwq3P6azwAAAAAAAAAENtCGtgNOSKjf89hTQ9pKCgAAAAAAAAAM1dtimHb35RfEFCzsXx56LgAAAAAAAAAHCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAEhQ2OXkHYZRXh3_WLXzxSBAAAAAAAAAAEqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYMn0lhQNjNLc2TiLs5CI5twAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAAA7qtxmuYYdQSJOiK5WcAGLhAAAAAAAAAAIspUGqsCTGHPUynY6l3nRmwAAAAAAAAA9T4TCkO3eKtFhkAq0CD0MTQAAAAAAAAAaCeCTWGhzZ22dKgkK2rmozgAAAAAAAAAcTYW1TxsFYROrTysD5UpvkQAAAAAAAABF29AZF_seMl3LWsBL1xLs0AAAAAAAAAAwbeaGpNKpPxoBVynx9VseXQAAAAAAAAAJC9V4PTTZs-PQQpDxqxp5GgAAAAAAAAAB3dU8SaBBaVcGwyJDZQ1quAAAAAAAAAALT1r4-vp84Xtr8X-Kc_0sagAAAAAAAAAKpm5ZZT8tAonkuZs4iAYeNQAAAAAAAAAtX3GdeQP-f7ta19Ve9HCXlgAAAAAAAAAUrT6Wpj_D6biwR0z1hrGxmwAAAAAAAAAO", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-Utw-vJHSG_liQEQfgGM7w"}} +{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACilSEJ6GSZQSmfOBquczb-SF8bAAAAAACh8g4J6GSZQSmfOBquczb-SF8bAAAAAACh7hYJ6GSZQSmfOBquczb-SF8bAAAAAACh6kkJ6GSZQSmfOBquczb-SF8bAAAAAACh5RMJ6GSZQSmfOBquczb-SF8bAAAAAAChG--", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "orUySAvojSOkm2fKgml1Mg"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYr1L9Bd3XIiGWasJdN8trI5tgAAAAAABX3eL9Bd3XIiGWasJdN8trI5tgAAAAAAA3ClL9Bd3XIiGWasJdN8trI5tgAAAAAABQ9VL9Bd3XIiGWasJdN8trI5tgAAAAAABJug", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ybmwwcaZ07U3EwvY5bz3qg"}} +{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kuVi0_akuSWTIatJohqMk3QAAAAAAxjenuVi0_akuSWTIatJohqMk3QAAAAAA6hF5uVi0_akuSWTIatJohqMk3QAAAAAA6amquVi0_akuSWTIatJohqMk3QAAAAAAwXfY", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "P7bpp1DLVW1DnKVBzlcXJA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vCpXT4fd_WKeR1cE-hlLelCQAAAAAAC-n73XT4fd_WKeR1cE-hlLelCQAAAAAAC-oTyXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWy16tVKI4mSYDEJ-ABAIpYXcgAAAAAAL5fR6tVKI4mSYDEJ-ABAIpYXcgAAAAAApyNL", "types": "FAMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "BhJgQDxmkKJzBGmmGPAG0A"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV5BZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtboG", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "oCgVqp-MVWv4_Q1oOdryMQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAACUcj5Iicnc1YHT-TWyg9rL5QAAAAAAAAAffO_gJBPd8E-RahoVIhDflgAAAAAAAAAB8w2ZGyVQ-aMnL_pA1hWbwgAAAAAAAAAy76oMN5gawXJbUdBHZW56vAAAAAAAAAAEaK7zvL-PqvTlxTrdlldaFAAAAAAAAAADsimybevA8DW5tgv6lrGi5AAAAAAAAAADuDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKPzdDQa2X1btcuJ3DV1Tv8AAAAAAAAAB_X8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtnY6Bz6koyx0B67n9HdjFUAAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAK3rLZd5lPThQHbPceRXAomQAAAAAAAAAHQiFXaEzTwN7w_cqE4M3pQgAAAAAAAACFX8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtnY6Bz6koyx0B67n9HdjFUAAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKQiFXaEzTwN7w_cqE4M3pQgAAAAAAAADlX8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtnY6Bz6koyx0B67n9HdjFUAAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKtVvvb6Z5DEr7tZFzbFRlggAAAAAAAAAGNdurIec2eVknw5UWeyAGhAAAAAAAAAAg_OURcYkX0iBxmyshrTvm6gAAAAAAAAAXK68quRzmwMwkh1BjI5vLeAAAAAAAAAAhY_ur9VOSDEwVLljoZ7w15AAAAAAAAAAEQXvaGnSY0e9Ndzfl5fNy7QAAAAAAAAAVu3PdJ9uaY7J6wq8TpSw5VQAAAAAAAAAbFyvqj99pkKDWLuJmqlMKOgAAAAAAAAAMSpuVyl1yybAmI0lABPU6JwAAAAAAAAEQbKvyYhI0uByw7mLji6yQIwAAAAAAAABTQ30RZfWFP56RmjbSYkP0SwAAAAAAAAAOrO2U8bCEOPtVR0fJrGRR8wAAAAAAAAAOk_OXYkZFyzIVwSwT1Fur7gAAAAAAAAAFa8XYoPW9pAQaMdeo2T4gfwAAAAAAAABM30LKpoivW5ehYDbXlKRqvgAAAAAAAAAG8AK2DMaPRPJBJPIbAxg5BQAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAAqd6Jbx9jqjuemtiUm8j-_s73zQAAAAAAT8YE", "types": "CQMsBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8u8CjRLgzjZJS4eb9PBqzA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAAAyxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAACNJgmaT4hGItQStPxlJGEPUAAAAAAAAAAEWHTE8ACR4NC-I-EUuyo1lgAAAAAAAAAIjoHdKmx5pRoeIkTwEIvJpAAAAAAAAAAcIKniS6Oltfo1ekuyyeYCXwAAAAAAAAABSJxVsEnpCDnlRh2uwKM1VwAAAAAAAAAIU8y7tkq3OrTv74Jpmv-rDQAAAAAAAAAkWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFuaPqWrgrMtBr19nB0bwQ4AAAAAAAAAA7DvWhbkzH60wdCq3Z8oLdcQAAAAAAAAAHOljKMbs7Sslvbk6h8kJ9yAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfw5DtxqVhoNPMfZH51ZbSdwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEeyyzzsctNMm8Ix0F5BKrQwAAAAAAAAANL9OdW1GzSEWVanMPfByr5wAAAAAAAAAIMpA-_yb_lGv178DTnH5RUAAAAAAAAAAKQFD262cMfH9Fkx0D-SBUcgAAAAAAAABhk-Vn8s9qtj7D3BSWLIWnXAAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAActFrbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qeGt3fpd8fb-33IEga_JxmgAAAAAAAAABIGwhMoYnMofyYEaJiOTDygAAAAAAAABndVXLQszZHgabMaRgrKn91QAAAAAAAAAbkUQWAMnv1TRPiRV23phECQAAAAAAAACM4oROntQ4zAdpf6wKcORUhAAAAAAAAAAA0aeAC4XpbxqxubqgoasMaQAAAAAAAWFk0aeAC4XpbxqxubqgoasMaQAAAAAAAW3P0rNuxKNw6YxtKvsF6kS_jQAAAAAABGiX0rNuxKNw6YxtKvsF6kS_jQAAAAAADu1k6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb_l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb-c6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpAY6tVKI4mSYDEJ-ABAIpYXcgAAAAAAF0Ia", "types": "CQM_BQIDBgUEAwgE"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DYzhVpKjZS7RL_ti--DyeA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SWXURIvhiV1ltnadwuzdpw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAGx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABW1vmWfRl7JvnIelrwmbOFDwAAAAAAAAB2P_qKgj6OkmYBLfen5yPH6AAAAAAAAADlitfZdu4NdI0YJrHcgeE-TwAAAAAAAACXJS-WjNz0QulnqSlnIs8U0wAAAAAAAADS7Ormen3KBfy8FXv7OmF-kAAAAAAAAACJWLOUsm-IsQxvoTcefLktBQAAAAAAAABjtO6JpVZeu0abSD0xpUFNBgAAAAAAAAAF", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0Uf0J3MmR1rXcBrp3qhMmA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQJvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACeySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAYh-mcFcSefWaXpPLGLAmk8gAAAAAAAADYzXY2fMPD2q8JxxSeQ4an4AAAAAAAAADbsSDVmLRXn5j8cMEHakX25QAAAAAAAAAMbYR0b7-vTQ0RKJD6ns3ClQAAAAAAAAAG5WRkp3UGiY89oONYWWfHqAAAAAAAAAAtidAHvTfpCa_Lill3CvLIKwAAAAAAAAECw3qTM6Aby-qZXMm0XUnzgwAAAAAAAAB3_Mj0l5QoylIkj8uQiHBbSgAAAAAAAAACVY8isU5x9BO-Wo5ffXRMDwAAAAAAAAAgw_AjU4Xe1XDB3bYRcLPccAAAAAAAAAAOAmq1Q_OWnEFyfJsbIWLjHgAAAAAAAAAFWj5v705AK3wrQkpP9C_wfwAAAAAAAAAeDzZ0dEa7XDjtQVGFBWf08wAAAAAAAAAFSSGGC14VYxcFAL3lGtENzQAAAAAAAAApkq-iqAfsI2XGc38wp7FIjAAAAAAAAAAEMktHTZ1kYQIosVfruXQEgAAAAAAAAAAi3sICbTD-_7s030K32xuInwAAAAAAAAAEKnPJBgaXoLmCiBa-S6LKKwAAAAAAAAAEKRCS3oa0phXRyOSzHy3iAAAAAAAAAAAEXDxGh_Brs7A1yOGKt9vDgAAAAAAAAAAE-YmpZ5jMdGGZ61q6AMB5BgAAAAAAAAABI-hoNlwG8-_wfA4YYQAJLQAAAAAAAAAVmu1DpnH8iZDzucrjLh5s6gAAAAAAAAAE", "types": "CAM6BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jphq2mADJdPqQSMJRmqCfw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbQ5Yxe-SHgukLEpCkawSk1QWAAAAAAAFznNYxe-SHgukLEpCkawSk1QWAAAAAAAFzx5Yxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHafM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrkG", "types": "CwMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Ml3glErZ-ktsF5LNe_im2g"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxjVcEvvhuguaGYCmGWrnWRz1QAAAAACEN8ucEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEMc_", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "aDmfAmT07s3C9E8zzE3cJQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzScEvvhuguaGYCmGWrnWRz1QAAAAACE_-qcEvvhuguaGYCmGWrnWRz1QAAAAACE_n2cEvvhuguaGYCmGWrnWRz1QAAAAACE-w0", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9h5PW1s0EEHtLJmRKgof9Q"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcoiHXy47Qw5euydEoPUexRgAAAAAAAAAga67hy6D4_aH__IrzfMid7wAAAAAAAAABrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZf4KmPLa6_uw8gRgiw9EUAAAAAAAAAE4ihprad0bkU-u2IU9StodIgAAAAAAAAEqfmVqFyGK_erbPbR830tm8gAAAAAAAAAPGqtKw4RB3R19EQhu6EuSBwAAAAAAAABEe7jcj9ca-ENh_em7UG8YrQAAAAAAAAAjpv2BnGF3DU5EF7_9vBhh5wAAAAAAAAAjqAJPfj7zVy9vjSAISf6DmgAAAAAAAAAIxAdnmGWjJXcKuwdszuwv6gAAAAAAAAAFO_BiL2ROZsn4VXLfIMjl4AAAAAAAAAAFPrVtf7vrjGGpVbEAol3b9QAAAAAAAAANZf0w4S_WIxaQJn4-TjKTOwAAAAAAAAApu84jH0Fi4giPpR8JCVg2uQAAAAAAAAAFeEsPvNGYH982Mv0mPexpzgAAAAAAAABKQH4VYcH0-bM7E6PfVIY9ggAAAAAAAAAMFGGSuaVpuuMHaXUzmpPEWQAAAAAAAAABUT1CLo52HplxPz6JwcoqCQAAAAAAAAAJlfjVNXK_x0C4X5O62984zgAAAAAAAAAFZbvmFtHvqv74jokq3XvBkgAAAAAAAACS2RfKfVPwyqKh_r9U1oFgUwAAAAAAAAAfTJNGpZ5zrxHIWzJGPowW7QAAAAAAAAAEJvETSNUFmQzhSgQRV87p_gAAAAAAAAAbe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACWZXdWkChUCjmBhCYfjJANcwAAAAAAAAA40s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAABZvNebmjSwemT2pcHYKHFrrAAAAAAAAAAS0l6kg1DOc87uEKp4jfqgpwAAAAAAAAAm3H8SZkHDTt4oKUFDNcPVpwAAAAAAAAAx", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KS1N91hvcJHrA9nDriwgFQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChy6gXT4fd_WKeR1cE-hlLelCQAAAAAAFRYL03aS07d9PG4lc4UzuBbVWzQAAAAAADE19rtOWfs-RaxXWHIPyRB9RAAAAAAAAAGFS3aS07d9PG4lc4UzuBbVWzQAAAAAABuyj3aS07d9PG4lc4UzuBbVWzQAAAAAAB7ly3aS07d9PG4lc4UzuBbVWzQAAAAAADvkA", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ktzYn_vjXNgMuyJlOX5pHg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBXK", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "x4wbbfFtWwxR0we5p2mRqA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAABvZKLj_deYRtPDewbXBnoroAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAwy86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAAFYTifPIvND7b7ICq3M7OVoFwAAAAAAAAItk1o6cGLS1FzksoHJvPKdFQAAAAAAAAEzK1f6nnp5He4VLr7usCCM7gAAAAAAAAABjJ1ozPLEubzrPTK_HIIAngAAAAAAAAAEtiFd8nRg2cPSJT6QKmttjQAAAAAAAAASSdUzkeL9_v2VezVxWgWRqAAAAAAAAAAuzNcsGRHhxrtoMbOTGij46QAAAAAAAAAB7IBmDOSH_dR0MHQWs_TXjQAAAAAAAAAUX9lpa9TN84k-aLBSFJ8EgQAAAAAAAAAHUbN9iJkCyKUEAH9roSlHpwAAAAAAAAAVGp8pW5B40BblKfSIWk6M6gAAAAAAAACNa38j856FxIPiwroWnutPzgAAAAAAAAAMrRD3IAWNeA4GPRh7roh_BAAAAAAAAACRagZiqOTeFJJvJSEd_bICHwAAAAAAAAAKiit9TEPWxIcbSUSJseypHwAAAAAAAACIvc_2qIuahQ6DM3LWEJ9q5QAAAAAAAACEnQWGdRxvqVjwlLmQWH1PhwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAHs6vQ7EacG6CR4rzcFaNFEsTQAAAAAAATMu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "CAMuBQIDBQQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "tyB-SVqui9azJXAO4c3K3g"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKDEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKI8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfdgtQ4kMk_MBWrPUAFqVnYywAAAAACJEnagtQ4kMk_MBWrPUAFqVnYywAAAAAB1YosgtQ4kMk_MBWrPUAFqVnYywAAAAAB1YgbgtQ4kMk_MBWrPUAFqVnYywAAAAAB1KskgtQ4kMk_MBWrPUAFqVnYywAAAAAB1LIGgtQ4kMk_MBWrPUAFqVnYywAAAAAB1IpYgtQ4kMk_MBWrPUAFqVnYywAAAAABvM6NgtQ4kMk_MBWrPUAFqVnYywAAAAABvOWIgtQ4kMk_MBWrPUAFqVnYywAAAAABr5hVgtQ4kMk_MBWrPUAFqVnYywAAAAABr6bWgtQ4kMk_MBWrPUAFqVnYywAAAAABsABTgtQ4kMk_MBWrPUAFqVnYywAAAAABsAqV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAioJZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAioHU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAikn66tVKI4mSYDEJ-ABAIpYXcgAAAAAALXoU6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXis6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXfZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXbg", "types": "GAMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bIr_UN9A_aOvoztdXgbenw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAADrAotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAExkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4pVlUGQpw_Cq0LEtbbly5dAAAAAAAAAAkN1WyTlGFxfHgSyYQ3aeHDQAAAAAAAAAOYSP8Ib_W13QEw_Ivysg7FgAAAAAAAAFyn0UYwZH5py59Xu9gAaxkrwAAAAAAAABAm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl5iN7OCAj-2IgmFqLvCWrTwAAAAAAAAESap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlJdvIaoH8miVW9zaDiDOZJwAAAAAAAADSap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlhW8OwmmxjJYCeXfLTZy__QAAAAAAAAFLap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlw4mT2NPQOW-Mg0N_xZsuzAAAAAAAAADgap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlRlK4jZbFueXylWP1GNjNSQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlL_sAxM5NHsnYQp22GwDx8gAAAAAAAABwap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAycNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAATPOaf2meILyNtXlyuau5zHwAAAAAAAAAKc6zhheBld8wEBO7TlhnPcgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB82g1SAYpsFtnBogFl0v0GAAAAAAAAADJdpQ3bcNFV5Y0XdediaTCQgAAAAAAAAALmmckjE-MysbZhDPP6gNxewAAAAAAAAAydmm7_Hn3SrysHeUffmIe9AAAAAAAAAAfaxxtk6GnkoiqRXb69JxcoAAAAAAAAACge4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJOdkuTNpXjsFc7WV5c_bgKAAAAAAAAAAMjBwquBL06pqJXOt8kphl0gAAAAAAAAAME5ablZjSwaw4LkNasKqxDQAAAAAAAAAFB3TkFubeMsUjXVlcESk9tgAAAAAAAAAMpmiRP16sLzHMk4sQotP67AAAAAAAAAAOqeHIgzzOczGD0wBwOrHP2QAAAAAAAAFJFuWxxcsr3tUR5NeFGer7vwAAAAAAAABnMWMRq4GUysNDjxb07DjPAwAAAAAAAAA3jsLLxIAhtu1IcuCmLP4yNgAAAAAAAAAH4T44kzE9JU_n4pRF5j5FFwAAAAAAAAAYSq4yJYXB5hEMp7oPtTmUiQAAAAAAAAAimSKMuTauUB6AvF_x3SDLhAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAlNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAANS_CTRBRzwj9_syNwY5rEXHAAAAAAAAAB3nZ_TLoQXzn9RYaGn5N0v4wAAAAAAAAA2414vwxwFz0HV2Ku4dzYYowAAAAAAAABUV6fcE1EsjMYG4ctzhztDBgAAAAAAAAADEeBm2vPFcnytFzkGIYZfFAAAAAAAAAAeJmyP7PdfC2skKKShHbUYvwAAAAAAAAAA", "types": "CAN-BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "E2fsFui4vZG4XlP5k6KlOg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAABcQrw_bSROFZCKPRirqN5crwAAAAAAAAAEmNKQ_cGBX-X-PxTw057WHwAAAAAAAAAoPe3ctc9W4J1u_ZCOerqNzAAAAAAAAACUA80fpNwLg5UyZGOl2HXL1wAAAAAAAAH26rsVEZ9sKsa4Vh8IikWAbwAAAAAAAAAJzw0wKeXSScV9zb0GbnSg3gAAAAAAAAE6xiNRq7Ruj11jfgYHuwwWowAAAAAAAAIacj1i9bDkXvg3vH52VRJiMAAAAAAAAABOcj1i9bDkXvg3vH52VRJiMAAAAAAAAABOcj1i9bDkXvg3vH52VRJiMAAAAAAAAAA3xVOmAk0hLEywDTna7YZ20QAAAAAAAAAMloNxquzuzn2Bq3kr01g2ngAAAAAAAAAGHVhQ434ZUWqRQ1_LQX_XpwAAAAAAAAAwVwaGRjsI3iJyn8klEZc0AgAAAAAAAAAxN2WIrknGnRR-faq8Y0RYogAAAAAAAAAA", "types": "CQMaBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Kj-T6bDuFCA1H7u6tv3Q7w"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--hXXT4fd_WKeR1cE-hlLelCQAAAAAAC-9YXXT4fd_WKeR1cE-hlLelCQAAAAAAC-i2cXT4fd_WKeR1cE-hlLelCQAAAAAAC-iiEXT4fd_WKeR1cE-hlLelCQAAAAAACi9wRXT4fd_WKeR1cE-hlLelCQAAAAAACjCBUXT4fd_WKeR1cE-hlLelCQAAAAAACi1U9XT4fd_WKeR1cE-hlLelCQAAAAAACiLJ8XT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "41Co6gQES-zPyJMYsPlSWA"}} +{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kuVi0_akuSWTIatJohqMk3QAAAAAAxjenuVi0_akuSWTIatJohqMk3QAAAAAA6hF5uVi0_akuSWTIatJohqMk3QAAAAAA6k4huVi0_akuSWTIatJohqMk3QAAAAAAl_pguVi0_akuSWTIatJohqMk3QAAAAAAjX5_uVi0_akuSWTIatJohqMk3QAAAAAAjZ80AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApfzLzWZQgzth4yv0Aw0PoLgAAAAAAAAAl1pEcO9CYkxI799CldX3uowAAAAAAAAARsCdW6ghslIPajpgsdfjVWAAAAAAAAAAS3HYeSFaP4bm-Z2NSJub6sAAAAAAAAAAY4io8TQpKnhHcoJs_H_nFpQAAAAAAAAAcWUsgmXBmEYsZWCQlmPqU4wAAAAAAAAALRuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAuVi0_akuSWTIatJohqMk3QAAAAAA7VLbuVi0_akuSWTIatJohqMk3QAAAAAAxt-TuVi0_akuSWTIatJohqMk3QAAAAAAxqpu3aS07d9PG4lc4UzuBbVWzQAAAAAAEUos1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAmB1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAbA", "types": "CAMKBQYD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RM52I8qJK_HFvsZhTonctg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXUptYxe-SHgukLEpCkawSk1QWAAAAAABXVjkYxe-SHgukLEpCkawSk1QWAAAAAABXVBsYxe-SHgukLEpCkawSk1QWAAAAAABXZL0Yxe-SHgukLEpCkawSk1QWAAAAAABV3AkYxe-SHgukLEpCkawSk1QWAAAAAABV1uZYxe-SHgukLEpCkawSk1QWAAAAAABV59PYxe-SHgukLEpCkawSk1QWAAAAAAAFzcMYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaO", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3w47mZnOBc0zbLvmW3VIKg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANfzLzWZQgzth4yv0Aw0PoLgAAAAAAAAAl1pEcO9CYkxI799CldX3uowAAAAAAAABSeRhJRvHm727VHuGPDJpA3AAAAAAAAAAIFeTq3grQxZLpQxyGC-4wQQAAAAAAAABF9F2a_yzWrSmXRu6SZEKaiwAAAAAAAABdilROEXfY2pUH01XyVGW7lgAAAAAAAAAWUUg1eX6XD3kMg9XTzAxNlgAAAAAAAAACNDooAL42lwdUmpc4-AfzaQAAAAAAAABrmdk6GXreYf1FfT2SjVM7cgAAAAAAAAAEfeYj-gxH446kk14zhma-hAAAAAAAAAAJXnoSB634C4csFM2aSGubHwAAAAAAAABNkjX67_WPwwjOmve4ZUSb3AAAAAAAAAF85Ri24JfQ3hOfAMeWMo31rAAAAAAAAAANbn4I8fRVcZKaFCSiMCvwGAAAAAAAAABvaYaXPq6Lv-HexLpgIGC1HgAAAAAAAAAo5h1fxxJ6EO-OnrqL_BatiwAAAAAAAAAP2bocF2PaQb-4x21c82XN2wAAAAAAAAAMYbNld3zpk2N0cA7cPFuWGAAAAAAAAAC4kwGfYhr1GsPl-q9KOVF6bQAAAAAAAAGsWHt2sjXXBXmxk_WhY3xuqQAAAAAAAAAW7eP3POMzJHenXrvglsJksAAAAAAAAAAB_osC856Rboo56_P8whHO-AAAAAAAAAAflNhTpFCI0o9j0xcLIuY3MgAAAAAAAAAE9lpztkfS1SN6AbyUgwU8QwAAAAAAAAAHH9qHSakbha_JIFnrzuJJjwAAAAAAAAAHo-BIkkl-h7WSo_nEcXjOQQAAAAAAAAA2M-5SaQQW4M2ZK-t2dL_K0gAAAAAAAABfYVcFEflggWCRxtIyAFnYrgAAAAAAAABK1c7wfSzTBWNtKP8vA7BBsAAAAAAAAAAt0uQfhygt3iA5h-6EqK0MPAAAAAAAAAAEJYb5JOqnMPOCcF7fd5apugAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAALTqvQ7EacG6CR4rzcFaNFEsTQAAAAAAATPL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWrX6tVKI4mSYDEJ-ABAIpYXcgAAAAAALUbj", "types": "CAMhBQIDBgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "I1f2qioCd15br-zV3bETow"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAn5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALoW5GrCeliBHaZdW7u8HEBQAAAAAAAAAE45tdflDdpQ8_sS3AcLhDvAAAAAAAAACk45tdflDdpQ8_sS3AcLhDvAAAAAAAAAAx0JcseVtS-XRULdaKsDczLgAAAAAAAAA5aq6JBsIgl6kcLVLMnZY__gAAAAAAAAD0eXzE17y_6L8nwmbQOjs63AAAAAAAAAByc5FnjIKIwlj5G_2yTSeORAAAAAAAAACnM9t3sX7Z2Nj1mpARCDGcawAAAAAAAAAIwcw67NCnOLTYutynHBvqowAAAAAAAAA90vYUuo04uCIksGcEjg9Q4AAAAAAAAAACiFkuHlkQPsBsMnUTpjsUKgAAAAAAAAAF0Cdt9wyWxnG2B-xGXMO6owAAAAAAAABpyYF5YWbjTLokor9oKz_A5AAAAAAAAAAN1YwmAWjsK6oD1Qs8m4ZuaQAAAAAAAAAW3X9PCd1tVPhzrMiwigfodgAAAAAAAAAA8DDAjVJl721y2vxKHGSBegAAAAAA5zKzvQ7EacG6CR4rzcFaNFEsTQAAAAAAAQGM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMWBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3iJdbBEEHj_LHj-Eg69qrg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFxkXT4fd_WKeR1cE-hlLelCQAAAAAACiJIkXT4fd_WKeR1cE-hlLelCQAAAAAACiM0oXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAio9n6tVKI4mSYDEJ-ABAIpYXcgAAAAAAio7-6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimti6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk7GK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk63z6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjigE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk7XQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjjMP6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk5gH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4GC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAiyGG", "types": "FAMNBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ytEKvd8EK0rbaJ8oYypnYw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHX31XT4fd_WKeR1cE-hlLelCQAAAAAACgUmG", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gRonKLEvh1yZCOX3WmfJGA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAACceDtEsbyqaPA8nODsaXH2CwAAAAAAAAAjdb7h5t6lXZ_2CL1N4DXU6AAAAAAAAAAOcAnVCtwTUMiPtQhyaFTtfgAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAU3B2E3nnskNJUgYVRkMUbJAAAAAAAAAACHwm3pNPC4Wa3xFabNuzwcgAAAAAAAAAROVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAAw", "types": "CQNDBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "t6Jyl6ams8foz3V3MhHk9g"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAABWkxlPGvmJaixHgVVGYdR3ZAAAAAAAAAAUFlEmrMapoRVqavpRHEspQQAAAAAAAAAFwKq13sxbA1Q177k-e_lIpgAAAAAAAAABPp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6IaGOpXjXn5EHF-K9uwEUPQAAAAAAAAAErU2gYsZPORRvUmAaUHS0ngAAAAAAAAAIPp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6TsD0RrBnIgAER8sz4r-hTwAAAAAAAAA4cTdMZI6aC0LqwU9s37q4qwAAAAAAAAAEcGV0DDfmSpIZxUAKnFlOoQAAAAAAAAAP9RZkYL0fVSfLG-HsYblWBQAAAAAAAAAJAAn_OLmzgN0q8Ywe9O03FgAAAAAAAAAbNCAjj9ga_oZwZ7NBAV35jQAAAAAAAABgLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAMvPUU5i5r5XThwPX6RJsZ7gAAAAAAAAAE21OviUyRbmnxs6uitnTC3wAAAAAAAAAP3R6peF1IdwfQqmb119dyMQAAAAAAAAAFjRPUUEtO9tA38nKSenaVfwAAAAAAAAAC3R6peF1IdwfQqmb119dyMQAAAAAAAAAFMDjyE5AlqASoc6cxfe5K2wAAAAAAAAAwmxRwXt-8CQt60ehjLjpoTwAAAAAAAAAKZaQmU-IXyGvFS9G6a9D4BQAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAAD8oQ_ZJ3ImiZWOZcNHv_WYwAAAAAAAAAOZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAWzyZpAtY8QHu127Ag2ZcL9AAAAAAAAAAOfQUHd99OzHI_HeHyAmtcrAAAAAAAAAABlcdDbZ1ycQTgFv_SpDoCWAAAAAAAAAADbSqWaYKtavFZqjY4T_025wAAAAAAAAAQFD67YgaFeLuqBai5R0qQdQAAAAAAAAAm", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "AmusQ2BbqvYO2k_O_i41gw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYChGc_KlbDChxhbLYz-xpPwAAAAAAAAALOmzVUgwY22EPoqShuZpT1wAAAAAAAAAByCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIFxUii1Qg0ODP7PNbShAMtgAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACXDgohratZUQwpKekym6X1AAAAAAAAAAEhYpB2gs86zTUdl1LmAGlfQAAAAAAAAAUmjK-IG4-ETGScbFeIcowAgAAAAAAAABj39Gbufo2_bMKjFgin1seqAAAAAAAAABz5kQrz31-vtpLpHkSNl9lFwAAAAAAAAG9w0e12mQXLU6z_nU7sQyVgAAAAAAAAABBTEeNHsvM_HbT0J1Ha9ikXQAAAAAAAAA8ECHV7woLui-LgJzJ_Db5wQAAAAAAAAAFSVbN9lR22448Ba__VWnVkQAAAAAAAAAXWNCauDs9dY-5HAHHBWp9KwAAAAAAAAACnxBVaHmISDDtSUWBhVotmwAAAAAAAAADoJZaXu4GMva6ioQRLjBA1AAAAAAAAACLZPQwbuCECd-hRvtNHzeV5wAAAAAAAAAi0YNPfOkv7TAAnafMtZqNkgAAAAAAAAAEdD4p9P31y_X_TwW0CA_rJwAAAAAAAAAUcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACvuAJ7Ejp2OmtSJu2OeVEBYAAAAAAAAAA4okBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACvuAJ7Ejp2OmtSJu2OeVEBYAAAAAAAAAA4okBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACpcnbwHIJ_wBXN7xrEJmE8vQAAAAAAAABIokBlt5oedmnS64oAufr-2wAAAAAAAACXMgCpDbfqkuF0Au3Mi2jaeQAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADWifN9r0wurhPb3dG8PudTpAAAAAAAAAASywRpFKHnyqIdEibpvZWLtAAAAAAAAAAC_jcNhXlm_4ESbJ83f0qd9AAAAAAAAABq", "types": "CAM1BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Ctl6ha_BM-ShLptZgtFCfQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAABvZKLj_deYRtPDewbXBnoroAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAwy86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAAFYTifPIvND7b7ICq3M7OVoFwAAAAAAAAEEuIpQ1uRexMdnpWaro5896wAAAAAAAAALtpYrdrzxLxKEo0lof5nOvwAAAAAAAABTGXqdtKZs0jCPru_AD4bs_AAAAAAAAACi4ExmIEmG5cbeqkrcSlhsEAAAAAAAAAAH12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG7kZxFgbuXnmF5RM9H_z_ggAAAAAAAAAefMXwmZZHoKY5ug0oBlnUxwAAAAAAAAAff15ZZuvJposXWOcmbKQgxAAAAAAAAAAftL230chqNUuroXAS-gtapgAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEKC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAA8DDAjVJl721y2vxKHGSBegAAAAAAltVe8DDAjVJl721y2vxKHGSBegAAAAAAX1qz", "types": "CAMxBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FHjKHGEwTh_OSeyQnbjIGg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmrvXT4fd_WKeR1cE-hlLelCQAAAAAACgbqz", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "VIKRNYe8GVsCLsV0sfiW0w"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAByH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAABJkUJgVxIXgDBTomuPsxvCVwAAAAAAAAABzEK_5i4wFV1mMofkY5GUSQAAAAAAAAAEfcwlJZe3vp7o1kWId0rqugAAAAAAAAAQ", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5TnmC_EtR1egr-VwVq9IYw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDAIcEvvhuguaGYCmGWrnWRz1QAAAAACuEFvcEvvhuguaGYCmGWrnWRz1QAAAAACuGfdcEvvhuguaGYCmGWrnWRz1QAAAAACuFZccEvvhuguaGYCmGWrnWRz1QAAAAACO_OecEvvhuguaGYCmGWrnWRz1QAAAAACOiXVcEvvhuguaGYCmGWrnWRz1QAAAAACNjqHcEvvhuguaGYCmGWrnWRz1QAAAAACLMXkcEvvhuguaGYCmGWrnWRz1QAAAAACIHr6cEvvhuguaGYCmGWrnWRz1QAAAAACF-UEcEvvhuguaGYCmGWrnWRz1QAAAAACGugycEvvhuguaGYCmGWrnWRz1QAAAAACGmwdcEvvhuguaGYCmGWrnWRz1QAAAAACGpoocEvvhuguaGYCmGWrnWRz1QAAAAACGsDNcEvvhuguaGYCmGWrnWRz1QAAAAACGKP7cEvvhuguaGYCmGWrnWRz1QAAAAACGMs66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAANsQP6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJzyg6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKQhJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ5Qy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ4C76tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ0CJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYK2", "types": "GQMNBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZErdmOuEza_O26oDg3OsUw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAByH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAABJkUJgVxIXgDBTomuPsxvCVwAAAAAAAAAEA2GQrX7Y_KjuqeK74HNFzwAAAAAAAAAFadwgcL-TZ_xxbrmGnweaWQAAAAAAAAARA2GQrX7Y_KjuqeK74HNFzwAAAAAAAAAFadwgcL-TZ_xxbrmGnweaWQAAAAAAAAARJwvzxGCZCvr20cP2ebvBVQAAAAAAAAAA", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Jz9mvzTNLIpVk-2AGCSUvw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABazfcz5k14PsCcDvFyUC1kmlV3QAAAAABaQM8z5k14PsCcDvFyUC1kmlV3QAAAAABaR1fz5k14PsCcDvFyUC1kmlV3QAAAAABaQikz5k14PsCcDvFyUC1kmlV3QAAAAABaQ8M", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5pTNwxxfBlsIS-4EpZQNyQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVEDYyx-zRWlBHMYS8RkGZ2wAAAAAAAAAEdymPrMwSHJkE00arRNB68AAAAAAAAAAUu_5zCMK3PLNUfmu5e0wjpgAAAAAAAAB2ac8L5UaM7hx6_7ogYUjJpQAAAAAAAAALAt2XjH9VGC3bb_7sv7ixNgAAAAAAAACJw4Cq1cfo2BosL5j6RghC2gAAAAAAAADfqVud9aAxlVfNdghSN8mVawAAAAAAAAARcPknbPYx0jQL0_yL-rDiBQAAAAAAAAAHTJokhObG_7GMDQXtJjQRzgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABNX2GurXP9eWlHwN0fLlalwAAAAAAAAAM5E3RifhwtkkbQvQxmdbzmwAAAAAAAAAGhzLOxaKxWQ8hHeWUK-EOLgAAAAAAAAAIbsyDek069Ex-p_WmJk4qUwAAAAAAAABy8Jw1TVPLmPNxJZ-iu1UbtQAAAAAAAAAE1oTFJJD8oE6SApFeuZctegAAAAAAAACK1oTFJJD8oE6SApFeuZctegAAAAAAAACK1oTFJJD8oE6SApFeuZctegAAAAAAAAA-qGEwlfUWed3z-vswPrK15QAAAAAAAAACeLPEw3jnFkvsJ2aQiz21NAAAAAAAAACR", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jmJj_1BnViyZrfHd_98iaA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_V7OcEvvhuguaGYCmGWrnWRz1QAAAAAD_ZR4", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "BBKNI3Uum2tvcePLaUHnIw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEar", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5JBqloLOxGy2RdP76Z_BnQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAHGeUEknoTlPZT0JPs_cYSwTwAAAAAAAAAOQTjf5Ta2BqWKmmdF_ECRlgAAAAAAAAAUG-RfLwuKKRlgO4Dk5t-MPQAAAAAAAAAWLIT1yWPiZ6DoKcWiTOxifgAAAAAAAAAMWe8y-sSERHR4cZ5ibo5NRgAAAAAAAAAdN_nPCm3TGYOGbXHM3T3DGAAAAAAAAAFJw0wAFsFQ52S37kAf5ci3AgAAAAAAAAAFafO-4k-CgwdZv49Ap83kBgAAAAAAAADS", "types": "CQM-BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "aizX5lOG3wp3s40GxSmH_g"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbzqZ3CKaS4aU08RhYA19y5ITQAAAAADKUQHZ3CKaS4aU08RhYA19y5ITQAAAAADBkjYZ3CKaS4aU08RhYA19y5ITQAAAAAC0W26Z3CKaS4aU08RhYA19y5ITQAAAAACB-CgZ3CKaS4aU08RhYA19y5ITQAAAAABs_bEZ3CKaS4aU08RhYA19y5ITQAAAAABtHLPZ3CKaS4aU08RhYA19y5ITQAAAAABtRLO", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gh-da9g2A6Yj_mC9OD5Juw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYCMh__DRjYW6WKuSO4E-9UAAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFaD5tQt3PTji3IEVewu1DRAAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATMjSrWlLYBonpC2jkI8XqZQAAAAAAAAAKmVg5ImyOXWtTMPsPyAoJFAAAAAAAAAADeCd7pmEC4QoP7FQm1ikosgAAAAAAAAEKQO3p3TG-d9_GDkJGiXDItQAAAAAAAAAGHQlS1PvyNkxRJDriMlVDNQAAAAAAAABRnhhjya476W1WfBuGXQUi0QAAAAAAAAAHtOnLYqQcEe077mBYB3aqxAAAAAAAAAAEQQdm725dN4gfQaI1Q2V-1wAAAAAAAABW_93WPbrUDW14kcLWmrpKPQAAAAAAAAAG12nEeMsH00wjguIyHXaYDwAAAAAAAAAEM2N-LLw_gbVN-r7m25mjxQAAAAAAAAAMDVdugEHsHluwInzJiOmllwAAAAAAAAABUjZjHDsJddCCPswXJh9zOAAAAAAAAAAF__e_ReExoac--V-RQeNXewAAAAAAAAAHqnkrTiN5YCts6ND7O0BX2QAAAAAAAAAPM2N-LLw_gbVN-r7m25mjxQAAAAAAAAAMwEyqztK2yQuiOcOJhOx1cgAAAAAAAAAFLY7tgvqAn-qe9CkDVBt8XQAAAAAAAAACo8_zIcJ_jqi5-Mstw26jrgAAAAAAAAAdxkve8TpR3957l1VqIfu39gAAAAAAAAAB8IycasHuDpn892i9ex9phAAAAAAAAAB7F5qoecjRJHP5R2VRMq1xIQAAAAAAAAAgu1vab_bWHs22Af2BxU83HQAAAAAAAAAF_4aMzO1ApJ19_lxGgZ-T0wAAAAAAAAAagV8FQ6Q2R91R0ux-TEduiAAAAAAAAAAL8gQCh08pqdyg0DB5wkr7SwAAAAAAAAAEMnYM9B90Ha_6l2oFXip8PgAAAAAAAAAbvoqjqV6_-EldPWpE4Bg5QQAAAAAAAAAl", "types": "CAMyBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "uT9OC4sMxo7gbhe0Tvg8fQ"}} +{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kuVi0_akuSWTIatJohqMk3QAAAAAAxjenuVi0_akuSWTIatJohqMk3QAAAAAA6hF5uVi0_akuSWTIatJohqMk3QAAAAAA8W7LuVi0_akuSWTIatJohqMk3QAAAAAA8WkguVi0_akuSWTIatJohqMk3QAAAAAA0bOouVi0_akuSWTIatJohqMk3QAAAAAA0Xr7uVi0_akuSWTIatJohqMk3QAAAAAArR29uVi0_akuSWTIatJohqMk3QAAAAAArB2OuVi0_akuSWTIatJohqMk3QAAAAAAmDkuuVi0_akuSWTIatJohqMk3QAAAAAAmDh1uVi0_akuSWTIatJohqMk3QAAAAAAxrCD3aS07d9PG4lc4UzuBbVWzQAAAAAAEV_03aS07d9PG4lc4UzuBbVWzQAAAAAABNTW3aS07d9PG4lc4UzuBbVWzQAAAAAABOvX", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mBHnD6gIqOzMoRSdrePxJg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAACNJgmaT4hGItQStPxlJGEPUAAAAAAAAAAEWHTE8ACR4NC-I-EUuyo1lgAAAAAAAAAIjoHdKmx5pRoeIkTwEIvJpAAAAAAAAAAcIKniS6Oltfo1ekuyyeYCXwAAAAAAAAABSJxVsEnpCDnlRh2uwKM1VwAAAAAAAAAIU8y7tkq3OrTv74Jpmv-rDQAAAAAAAAAkWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFuaPqWrgrMtBr19nB0bwQ4AAAAAAAAAA7DvWhbkzH60wdCq3Z8oLdcQAAAAAAAAAHOljKMbs7Sslvbk6h8kJ9yAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfw5DtxqVhoNPMfZH51ZbSdwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEeyyzzsctNMm8Ix0F5BKrQwAAAAAAAAANL9OdW1GzSEWVanMPfByr5wAAAAAAAAALrx1IYyt_N65Gocl6CDiGDAAAAAAAAAAB75MTQgFwHrOqmJ603qSRDgAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAAcVIc", "types": "CQM_BQED"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LlYzfaShM3xC3r8aP013CQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHpmIz5k14PsCcDvFyUC1kmlV3QAAAAABHpdEz5k14PsCcDvFyUC1kmlV3QAAAAABG5iSz5k14PsCcDvFyUC1kmlV3QAAAAABG_e9z5k14PsCcDvFyUC1kmlV3QAAAAABHCkEz5k14PsCcDvFyUC1kmlV3QAAAAABF9nlz5k14PsCcDvFyUC1kmlV3QAAAAABF9eo", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "42vxTpc6aK--wPoeImN5mQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIBHkZBcmNHMjIQUGuyLAiYwAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACTXTxOwy8uhdU1jeoZU7T8QAAAAAAAAAE_btj02zrVOB5yHsjoNQahgAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAAAzr8jPkIagwkcKu3VFH_5eFQAAAAAAAAAFfwrSDgHrTXpAEmJ4bHy8MwAAAAAAAAATTq2A_ghNgr4Sgbd4ToSeBgAAAAAAAAA6OVKwi55Br_WT9fxVyQu6PgAAAAAAAAAe2YGkbnIdlKIhbsTbMV-kWAAAAAAAAAACz-hu6cNT1Ftqgnka76QdWAAAAAAAAAAC8RQyRW_fqLsoJLvr6Yk7xQAAAAAAAABzE412ubC6vIkVnhrQF2Kv0QAAAAAAAAATX_KArw2lYZFY-9kCvtv9JwAAAAAAAAA6IiB8cBaeqjsuHSJhy6znXQAAAAAAAAACemnA4GIO594kGgGOGkqRhgAAAAAAAAA7u4vqxWKlKO7QUS6KhfhZ-wAAAAAAAABMoms6Ttrfu1M4pZRKD0ZUGAAAAAAAAABDWRcdI0lls5vzaErIK0sorwAAAAAAAAAaJuD5cCArQ-CpayxbsHWDOgAAAAAAAAAFVMp-DPdE7CyTgnB0G1ncJAAAAAAAAAMk9y6T0XjNIrAyHZHcTXEkswAAAAAAAAGt", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "s7czAoKydvBg4f9OkGzNLw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2q3", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zCymryvp2j8z8Oy2zlcnlw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV5BZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbrkZ3CKaS4aU08RhYA19y5ITQAAAAABtb4M", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "L_vMTFYQ8NEKBmN0gUNvSQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAEWwtUXT4fd_WKeR1cE-hlLelCQAAAAAAEWwzbXT4fd_WKeR1cE-hlLelCQAAAAAAEWw9ZXT4fd_WKeR1cE-hlLelCQAAAAAACnxaWXT4fd_WKeR1cE-hlLelCQAAAAAACney9XT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfV9XT4fd_WKeR1cE-hlLelCQAAAAAACngKlXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACngwbXT4fd_WKeR1cE-hlLelCQAAAAAACnfQq", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ngAaMeciDXsShUdZwj5b6A"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQ3NXJCw7PINTEV_suvi1hjgAAAAAAAAAnr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAABR3DsLLpnzoGeqib2_MeXKdgAAAAAAAAAY0D5QIcqYfSjF8Y2Aggw1CgAAAAAAAAANIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQymtcT7XngDCOtcgo8NmgJgAAAAAAAABaEuiuEGuoH1DvPXwEkw2odgAAAAAAAAGLMEhCGFUvnR-s79TodsgBdAAAAAAAAADefHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAAB4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAAAyxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT1B59VY_DkwRaBnYLL8PJHgAAAAAAAAAD8YqqCdmkiYhp8MhNYHa7HwAAAAAAAAAGDjdOEEgRNl2srRXl5Oz1UgAAAAAAAADmSfUOLPncvmUbspPEBmYXMAAAAAAAAAAGjiOROD0tmELw9GVQYUYO2AAAAAAAAAAFt5RNhmUkms0myDPI3-3ICQAAAAAAAAAFexlLI1uBpP8VBaUqNRf9DQAAAAAAAAAWvaZUIH7rCnsi1a_nVIdcmgAAAAAAAAALDg0i2lYRLQUln2hBXrJbCwAAAAAAAACkiN3C5173bfl4YBtV1f8buwAAAAAAAAAEKvbcYFET00wCvETlglupVAAAAAAAAAAH1Uhaaq-KCySIEBwLdwJOrQAAAAAAAAAFZc0Fl8AgEv3kvyq-GLd82QAAAAAAAAAF69Ape6b0-GRsMkZddSM5EwAAAAAAAAAFDB9sD0JA2GraAv0uQFBumwAAAAAAAAAG02k8lTPTUqykbeCXCr9k_AAAAAAAAAAinY6Bz6koyx0B67n9HdjFUAAAAAAAAAAs_DKhYKsY0BPKYoMYRAcMCAAAAAAAAAAOWNklusebG0tdR5ytKPlbkAAAAAAAAAAIBPGrhEymdtYQNz2pzn2GeAAAAAAAAAABDP6PZKAs07323BH7JdjoywAAAAAAAAAUIEtETl463byzMJPLuRp-TAAAAAAAAAAIWNklusebG0tdR5ytKPlbkAAAAAAAAAAIWXc0Ul2uIu2AvsVIqd0TXQAAAAAAAAAlDP6PZKAs07323BH7JdjoywAAAAAAAAAUIEtETl463byzMJPLuRp-TAAAAAAAAAAIWNklusebG0tdR5ytKPlbkAAAAAAAAAAI46cRp9b6CxM3JVl8H47a-wAAAAAAAAAEscEhYXFwf_JnNDVurc9l9AAAAAAAAAATwoUlYx3qksknQ1csxYkVzAAAAAAAAAAJSm0xkBmU0d55bIWjfcYmtAAAAAAAAABbj4w58zsaqOfxzn9j73toSwAAAAAAAABur204BOTVe60P3BYaQ9TcWgAAAAAAAACslnZVb7o3R97zPK7lBkueNwAAAAAAAAAMd-0bMtRUTimogqLX77QywwAAAAAAAABy5gRif6Sjt0HHN5TwyiXUJwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAYq1Ak9_WYtjiRUK6jyz9agAAAAAAAIFRFr4KuuAdcuLzUhqxYoXsLwAAAAAAAPNN", "types": "CQNjBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2DuSHZWTGJK66zap7_0lGQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-wCEXT4fd_WKeR1cE-hlLelCQAAAAAACkR-RXT4fd_WKeR1cE-hlLelCQAAAAAACkRUPXT4fd_WKeR1cE-hlLelCQAAAAAACgIqt", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hyslIhEYrdCY7Y2kR4LC4Q"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB8088z5k14PsCcDvFyUC1kmlV3QAAAAAB821Wz5k14PsCcDvFyUC1kmlV3QAAAAABKEElz5k14PsCcDvFyUC1kmlV3QAAAAABHmTSz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkw", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hE2efI20UHUcIoyiDQ_1qQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN6L_", "types": "FAMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yBuR5zC7F0DVUI87hPntYQ"}} +{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACilUFJ6GSZQSmfOBquczb-SF8bAAAAAACh1elJ6GSZQSmfOBquczb-SF8bAAAAAACh2o0J6GSZQSmfOBquczb-SF8bAAAAAACh5r5J6GSZQSmfOBquczb-SF8bAAAAAACh5boJ6GSZQSmfOBquczb-SF8bAAAAAAChG7oJ6GSZQSmfOBquczb-SF8bAAAAAAChupVJ6GSZQSmfOBquczb-SF8bAAAAAACipYi6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "V4Mni4vG0SrvFqEET7JXkw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFGWjujT1s7sRuQIwkyxwy1QAAAAAAAAAEtcc3nGvWGKhavpq5QMPrpwAAAAAAAAAQHrXUpqEQk4VDnpaZKgdbiAAAAAAAAAA9U2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-_XkMI8xGR94JL4lQtb9x_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAAthtvgcgAW24Rn4q34GnPYLQAAAAAAAAAFQNZzHGnqskrqlEo3XdkqqwAAAAAAAAATlH7EdNhUWMEu-Xw0OnFCsgAAAAAAAAA6PT8Qhq3pE7S7UQ5pBb6dmAAAAAAAAAAOpKLBb0_sPdt_IxvNqtQh6AAAAAAAAAACD8h50WvRJdBg-tXDetFXDwAAAAAAAAAQLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAABBoz9GJ_qlf4pBIKy8mHtWYAAAAAAAAAEYehQvtvBlK4IQ9UDydaS_ygAAAAAAAAAf6ugXrbvpCgFOZbv3dKa6swAAAAAAAABL4fohDmA8RJ5q3qtNwImgpgAAAAAAAAEDHnZqFhRwGM-S-Ctqsl1OywAAAAAAAAAlvHxswwRQXic3ko_486ipYwAAAAAAAAAhDJjb-hiaxSF7RAV6Z3IfnQAAAAAAAAAahbkYCZ39Eje7isZhzZhyHgAAAAAAAABELMhxKV9KGc8nN9e8jIZ_dQAAAAAAAAAYMQ3uW5IsAOX4HA-PQV68YwAAAAAAAAAJt6tiVkK7y6LSWBLPYBcCawAAAAAAAAAF", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kB4a4KTXh5IMJo-TCA1eEA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAACz-CA2HwYxn7uXuJvRLWceDgAAAAAAAAACo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABbw7HSilaT6ScQ9DqRu4RYLQAAAAAAAAA-o8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAAAKzk_PAPIluouMAlyxqI2lSwAAAAAAAAALSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAAB7YY6rmsokuP0BKno7mbtScAAAAAAAAAAF19uHIkVsOWsXPhLw6Psn-gAAAAAAAABNjHJRblj4MnsFMdCKOybNAQAAAAAAAABn", "types": "CQNMBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lOrPOhwAdGMUyqGKuk1vCg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBOeYxe-SHgukLEpCkawSk1QWAAAAAABWB4EYxe-SHgukLEpCkawSk1QWAAAAAABV_3NYxe-SHgukLEpCkawSk1QWAAAAAAABusg", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PvwkEQrDgdPHZLanFez_0Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t3YXT4fd_WKeR1cE-hlLelCQAAAAAAC-wI0XT4fd_WKeR1cE-hlLelCQAAAAAACqYdEXT4fd_WKeR1cE-hlLelCQAAAAAACkSgPXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUGU", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "09j8gq-qKKCmdYB2xM1fkA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATQDkJCt6xHk7D12ZqlrT-UAAAAAAAAAAHPX3E_b7jZQaK6SiJYskQ3QAAAAAAAAAJZaLdh2m65raIV_JyagrUBQAAAAAAAABnazI-mX3CgcWhg9AcjJjNnQAAAAAAAAART7Ugi353BwPylAwIPK3gzQAAAAAAAAHvdr7nJhzDAJ3KA627xZhFegAAAAAAAAAUE66a7lKbkjXDy4kHrdweRwAAAAAAAAALavH6-iyYHlN_flagvaXwWwAAAAAAAAAK5JuKxbkWPMw0EpITr8WSNAAAAAAAAAALCcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAACV125X0goavCApK-g1l1pkWwAAAAAAAAAA", "types": "CQMsBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xTvvRHUaPoDdRNt9HJAxjA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAb2jOITD8MGbT1Ovw_xtzUAgAAAAAAAAABdfaJS679SMFHynOlhaT4GQAAAAAAAAAEwxNyOGlepMHeJK72r3Nx1AAAAAAAAAABNCnW31JAeE6fBCMV8tcmcAAAAAAAAABx-Io3TUEjg3VhqUZyexECqgAAAAAAAABCKJ6ILPQkLRzsL_qCZRHYPAAAAAAAAAASW8XJy2Hk37R95UDQ18YnzgAAAAAAAAAOOdhNFK09ypq7bYC30OEbwQAAAAAAAAAWz_t7zXgMNJmUhO2ppFiaDQAAAAAAAAAFGVtE5azmnq7oQE07RxtqrwAAAAAAAAAxM-HSPvU6Ylpk6rULEsdDKwAAAAAAAAABwcwS_jKe-J8ZEpRM7gaB2wAAAAAAAAAFn0k5scYsn3wtTeokDa3YiwAAAAAAAAAF1KcuglkNBKBETK8L499nPQAAAAAAAAANiXm2yUQTnZpOrE8ZNWS3KQAAAAAAAAAm-bdPLgVx58dzwkE7OjvI9QAAAAAAAAF5iYtUXbZ1cPtxIQ5iXlqsJAAAAAAAAAAJzmJjHr20VylgKdsUYkUDgAAAAAAAAADbCSTFmAwO5vU5_W27M98DswAAAAAAAAAHF1HF75RYzjvrvu68iKDxPAAAAAAAAABYT8--SMHVGcooXsfsVElY-wAAAAAAAAACU5jbbbC88jUa-8dlGUKWMgAAAAAAAAAS1uyqX7gDw_vBe3Aou2wnuwAAAAAAAAAr7XuwAERz4-wOtMHIT2RfpgAAAAAAAAA8fMKxLLA4Q_xaCv6rBjpL3AAAAAAAAABtIjHIXxb8IucXL3D2E9_ItgAAAAAAAAAJyTEFrClQdB3Qsv66pEjNUwAAAAAAAAAJrkRxFT_Hw_jUlcBT_NPUjAAAAAAAAAABGfFTZ31mdFcLyIf5KCQV4AAAAAAAAAA1WsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFuaPqWrgrMtBr19nB0bwQ4AAAAAAAAAA7DvWhbkzH60wdCq3Z8oLdcQAAAAAAAAAHOljKMbs7Sslvbk6h8kJ9yAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfw5DtxqVhoNPMfZH51ZbSdwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEeyyzzsctNMm8Ix0F5BKrQwAAAAAAAAANL9OdW1GzSEWVanMPfByr5wAAAAAAAAALrx1IYyt_N65Gocl6CDiGDAAAAAAAAAAB75MTQgFwHrOqmJ603qSRDgAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAAcVHbbx9jqjuemtiUm8j-_s73zQAAAAAAWIYK", "types": "CQMwBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Q9HZvluGVeiW38is5m-oLQ"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJM4EgtQ4kMk_MBWrPUAFqVnYywAAAAACJNBcgtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfdgtQ4kMk_MBWrPUAFqVnYywAAAAACJEoxgtQ4kMk_MBWrPUAFqVnYywAAAAAB1KAtgtQ4kMk_MBWrPUAFqVnYywAAAAAB1L4EgtQ4kMk_MBWrPUAFqVnYywAAAAAB1Q1jgtQ4kMk_MBWrPUAFqVnYywAAAAAB1L9FgtQ4kMk_MBWrPUAFqVnYywAAAAAB1Q_EgtQ4kMk_MBWrPUAFqVnYywAAAAABuLmmgtQ4kMk_MBWrPUAFqVnYywAAAAABrKGxgtQ4kMk_MBWrPUAFqVnYywAAAAABqINSgtQ4kMk_MBWrPUAFqVnYywAAAAABqQ3Y", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XQeY0u1F2xnHmZQvstPXhA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWIIXT4fd_WKeR1cE-hlLelCQAAAAAACqVVkXT4fd_WKeR1cE-hlLelCQAAAAAACqVkK", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "79kYT9YweA6MRDhgEUmzgA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAABcQrw_bSROFZCKPRirqN5crwAAAAAAAAAEmNKQ_cGBX-X-PxTw057WHwAAAAAAAAAoPe3ctc9W4J1u_ZCOerqNzAAAAAAAAACUA80fpNwLg5UyZGOl2HXL1wAAAAAAAACvw_cxYz8MnUesAVA7XOw_bwAAAAAAAAATGWaNS7Aannj1ZssQUxZReQAAAAAAAADM6euAcrRks5bLxxAuk2RtfgAAAAAAAAC6QMctDnxPPYtUnhB_5ZvHdgAAAAAAAAAJN2N5ycBuBAS4G2YTZr-qWgAAAAAAAAAWsImjAGxEOCfJp0uCTUesZwAAAAAAAAAHWg3NMwFQjkpTmdqB4Do_BAAAAAAAAAAscnr9SR5FRmT_ijDWUYwkxAAAAAAAAAA1VmbQ13l3vaIwmAJ2MX2yEwAAAAAAAAApTBsi_uo6Ja6CX6zuoV3IjgAAAAAAAABTVN1DUTj32XK1HLzEKrvMqwAAAAAAAAAIVmbQ13l3vaIwmAJ2MX2yEwAAAAAAAAApTBsi_uo6Ja6CX6zuoV3IjgAAAAAAAABTVN1DUTj32XK1HLzEKrvMqwAAAAAAAAAIAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CQMeBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vivqmbOAKqoGY8t_YC1z2A"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_ecYcEvvhuguaGYCmGWrnWRz1QAAAAAD_DAGcEvvhuguaGYCmGWrnWRz1QAAAAAD-KImcEvvhuguaGYCmGWrnWRz1QAAAAAD-Ke5", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JnSKFHek1VX4hQrcBvK6Ug"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFleC", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SnrnvQoDfswWva5evHB2IQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA7PmX8DDAjVJl721y2vxKHGSBegAAAAAA7O4-vQ7EacG6CR4rzcFaNFEsTQAAAAAAAQSY6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BwMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TZXiSxQTQpQch8zeigYG_Q"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAx1WldWE0hyfvqjPz-ty_czQAAAAAAAABZfl80KEygC0q2Noyd1zAXYAAAAAAAAABUhlv_ksAXxTQ2GTBcbRb2JwAAAAAAAAAy4pQmnbdVKlEPbRd3rB3jwgAAAAAAAAAUl0hCUDJE9WA5zrDYnTjz6wAAAAAAAAAFEjqVtFve0NBSahnBSZ385QAAAAAAAAACasfjD62HMHzrp-TIN-8V-gAAAAAAAABOcAhyClD7-cFHqhNdc9T23AAAAAAAAAAw", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Doe5Pg2weXLqIXwvr_cG2w"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChkN8XT4fd_WKeR1cE-hlLelCQAAAAAAChdmzXT4fd_WKeR1cE-hlLelCQAAAAAAChdCoXT4fd_WKeR1cE-hlLelCQAAAAAAChd3F", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "O5lLlWeDVPBzxcQgxCRocQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFxkXT4fd_WKeR1cE-hlLelCQAAAAAACiJIkXT4fd_WKeR1cE-hlLelCQAAAAAACiM0oXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gsxP-BJ04BEy6kq6iDl0sg"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAABHaFY7B_NxRB-tFVbAaTDiew0fwAAAAAA3rk17B_NxRB-tFVbAaTDiew0fwAAAAAA3pgp7B_NxRB-tFVbAaTDiew0fwAAAAAA3pfM", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MYLOPIqya-9hbxMvVtHtEw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVJ5LlnPpQupPs1Oay-H91PwAAAAAAAAAFlWZrBpi9jtlM7-59Gnsk1AAAAAAAAADKgWNEC7AlEWOiaeOn6tt3KwAAAAAAAAAdTZeXKeFIsAFVFzECyphbeQAAAAAAAAACtMlQRUcqMTg123vaMnWXIQAAAAAAAABZEUCCYl5Tlfw8BCUk5k6SqAAAAAAAAAAD1xjbOWy3X4Fn5bAGN-E_rwAAAAAAAAAn-moASSZTgRJvmZb7ddZg5QAAAAAAAAACEsVgM4Munl1E9eHBVI5_DwAAAAAAAAAQQmcT1EKH8NJh27zC1hMnYAAAAAAAAACUFWw0sO1gv9Ot9iWifmMKHgAAAAAAAAAfQ1HRbZMZV9Fx6KiIEQ_vIQAAAAAAAACBiUVHn5RyVPHY25u4XrRpdgAAAAAAAACToFGSj80HW27xumhO-X7bOAAAAAAAAAAG", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "W2lHKIZaQkTw7zk52w5a1g"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mW4XT4fd_WKeR1cE-hlLelCQAAAAAAC-nbQXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN9jw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBiZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN9Em6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFUvu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUA3z6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUA0s", "types": "FAMMBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iKq1so1oRdQrNuV0NoX8eg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgKr", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jJFQhyyI67HMRTa7_xT6Hg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWIIXT4fd_WKeR1cE-hlLelCQAAAAAACqVVkXT4fd_WKeR1cE-hlLelCQAAAAAACqVcG", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "IkFQJGP6hdklKpjmMwHWFw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAAeOWoia3OO91L6Q6k2Ypn2XgAAAAAAAAAW4LWodyiv9Hy4HicwczMhQwAAAAAAAAAGYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADJWFBxAERZNClfuNDueoaytgAAAAAAAAAGFw4N_DGYxmWJY3G6VlrCLwAAAAAAAAAGK4GtFsHu3sEiObk5SkQ6NgAAAAAAAAAZR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAAAA", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PpIAnxzKbHPvsJfDNYGz0A"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAi46VYxe-SHgukLEpCkawSk1QWAAAAAAAi5BcYxe-SHgukLEpCkawSk1QWAAAAAAAASPO", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "K83sxCaQdi1aUMB4CY2c2w"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF88yz5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF780z5k14PsCcDvFyUC1kmlV3QAAAAABF64Dz5k14PsCcDvFyUC1kmlV3QAAAAABFPjyz5k14PsCcDvFyUC1kmlV3QAAAAABFxi1z5k14PsCcDvFyUC1kmlV3QAAAAABGnUj", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-uWpV-IdjmcpFys8aRIW4g"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjXzz5k14PsCcDvFyUC1kmlV3QAAAAABGOHuz5k14PsCcDvFyUC1kmlV3QAAAAABGN3rz5k14PsCcDvFyUC1kmlV3QAAAAABGZW7z5k14PsCcDvFyUC1kmlV3QAAAAABGTAQz5k14PsCcDvFyUC1kmlV3QAAAAABGSfP", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "P0E89cwPlA1_ZPxptth3hA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAADxyaNpzFvIPtiJi3LwjMyZHgAAAAAAAAGMUZ2NFNzh7BT3C3hRjMF2fAAAAAAAAAAMZB4dgn6zlvSqI5ZscpV7zgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1HYZxCzuz6LEXaDimozBLlgAAAAAAAAAQpMuceywkbX_kBQbNeyKYjAAAAAAAAAAWRHxLaEMnlCvBO70F4Bq3fwAAAAAAAAAFnisgr1RUcTVhb-d_TidN8AAAAAAAAAAugTkKo96ASvMgXyPTt69aMQAAAAAAAAN6Gs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAAAKzk_PAPIluouMAlyxqI2lSwAAAAAAAAALSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABGTV4I1RlvgDs3r9lTlz2IzwAAAAAAAAAIBWfrX2QdlPT8mMtH-6pvmQAAAAAAAABG", "types": "CQM3BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0GK16zsxEbKxVJCi8hvSQA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfoP", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1meHLmJUyOvIGQ1FajHiSA"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAAAZAgLqjB_amR59Lv13Nhle_NwbwAAAAAAAkCC7B_NxRB-tFVbAaTDiew0fwAAAAAAbNKr7B_NxRB-tFVbAaTDiew0fwAAAAAAdIfl7B_NxRB-tFVbAaTDiew0fwAAAAAAZDl07B_NxRB-tFVbAaTDiew0fwAAAAABFNNn7B_NxRB-tFVbAaTDiew0fwAAAAABFUxY7B_NxRB-tFVbAaTDiew0fwAAAAAAaLKU7B_NxRB-tFVbAaTDiew0fwAAAAAAaK9a7B_NxRB-tFVbAaTDiew0fwAAAAAAjxM07B_NxRB-tFVbAaTDiew0fwAAAAAAp08b7B_NxRB-tFVbAaTDiew0fwAAAAAAptXu7B_NxRB-tFVbAaTDiew0fwAAAAAAqsI97B_NxRB-tFVbAaTDiew0fwAAAAAAqpK_7B_NxRB-tFVbAaTDiew0fwAAAAAAqojf7B_NxRB-tFVbAaTDiew0fwAAAAAAqZ7E7B_NxRB-tFVbAaTDiew0fwAAAAAAsZGC7B_NxRB-tFVbAaTDiew0fwAAAAABTYHi7B_NxRB-tFVbAaTDiew0fwAAAAABTYF17B_NxRB-tFVbAaTDiew0fwAAAAAAsX_v7B_NxRB-tFVbAaTDiew0fwAAAAAAsX6u7B_NxRB-tFVbAaTDiew0fwAAAAAAsW9Y7B_NxRB-tFVbAaTDiew0fwAAAAAAsTf37B_NxRB-tFVbAaTDiew0fwAAAAAAsS6o7B_NxRB-tFVbAaTDiew0fwAAAAAAsNuY7B_NxRB-tFVbAaTDiew0fwAAAAAAq9VP7B_NxRB-tFVbAaTDiew0fwAAAAAAqH9Q6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_NQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaQ66tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZmt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKTe36tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ5Qy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ4C76tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ0CJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYK2", "types": "GwMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "575uGCE05OvDArhDhbVA9w"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbkcEvvhuguaGYCmGWrnWRz1QAAAAAD-LkkcEvvhuguaGYCmGWrnWRz1QAAAAAD-MUkcEvvhuguaGYCmGWrnWRz1QAAAAAD-NiacEvvhuguaGYCmGWrnWRz1QAAAAAD-OCr", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "b8UPnaUnsvBkW1Qnyq0aWw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q6ocEvvhuguaGYCmGWrnWRz1QAAAAAD-SYkcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN4tN", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PHisV5yyeBTxepMxNGfrxg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAFJeiEAvRyyg7Q8ghJd6qO4ZQAAAAAAAAApxDECjxfRDF0SAcicHv7yIgAAAAAAAAABSsODsFdp0k4d_SSQAFmIUQAAAAAAAAApzzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIGTDz5BEJ5HMljeo0WMABIQAAAAAAAAAg06W-_gYsVxvlZRgxvL-PiAAAAAAAAAEOcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIQVeLj_oPnEjl_jKTv8aQqAAAAAAAAAAlcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIMgnzgTUwSrjft9SA3YZTtAAAAAAAAAA0pTQwlw111ksRO8rVWFQy5wAAAAAAAAAuVKeIi2MKWzeJ-DxWf1HkPQAAAAAAAABnZr-QUGQ5d7tVx5lbmJB5XAAAAAAAAACOpBAXMFgFarqt_e84PodhnAAAAAAAAAAUtIoSY_1vT_j29F717EmR3AAAAAAAAAAPRZ01NrWKTMDuXelOk2KnKQAAAAAAAAA168iZXv_8xxb53ICXrvQepAAAAAAAAAGhCR_orhXYgPjlsF3bAh1bcAAAAAAAAAAQXoQBAZDyQM5EalVK0DT7vwAAAAAAAABIHHvO0O_M7qxq_PkVq5p74wAAAAAAAAHmtKRI47gaUATre6hVOVRyHwAAAAAAAABCmGc5SCx8bcB0yyOsBwmj6QAAAAAAAABwU3zFVJqAk_6RIGxkrHaHegAAAAAAAAAA", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MIISvnstjgGN5Nr1tBRmNA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWC4XT4fd_WKeR1cE-hlLelCQAAAAAACil8SXT4fd_WKeR1cE-hlLelCQAAAAAACil2oXT4fd_WKeR1cE-hlLelCQAAAAAACil3RXT4fd_WKeR1cE-hlLelCQAAAAAACil5wXT4fd_WKeR1cE-hlLelCQAAAAAACilOQXT4fd_WKeR1cE-hlLelCQAAAAAACioakXT4fd_WKeR1cE-hlLelCQAAAAAACgIed", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0ggKMKTRw8RVS24IWFyjrQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADSZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABCAZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAGrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAuU-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABTHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAIiuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAWyQLW28sZ3rpLXAl8a-XdLgAAAAAAAABnWIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAIKCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAIQRW1om0CtcYaE4B8xaBEggAAAAAAAABGAZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYlCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAACNHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABuHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFP1rXbpjewie805zI0BHMvAAAAAAAAAAILN3NdhSYKxRbaqnM5W9FBwAAAAAAAABpR-HVaw3JZ2IsajBZdLbC8gAAAAAAAABKKnKBdeWKnQ8CH5bzvx0i6AAAAAAAAABK-QN0Lznzz3LjWKMZzZD5rwAAAAAAAAAIeEXFmSmLstwTaBBVp_eSTgAAAAAAAAAFHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFeS9qs83Ev5DGIkgRm0VL-gAAAAAAAAAUem8QMqpxX9eEmdxu2AmtFQAAAAAAAAAPTR0CnebfBTQ0MB6Lw8cZBAAAAAAAAABv8kz0sRC3Fb0ahbrci4PVAgAAAAAAAAAYGgYuOINmwLJxsjP-M2E9cQAAAAAAAAAXjIXiJ_3QIrjPxWXJm0vTUAAAAAAAAAAGbPdR4mcydIF6d5I7BNRoXQAAAAAAAAAHotkeOgHMDZdOlA7GywTS3gAAAAAAAAANeBe2TV8VA2V7lLyhiCvcHgAAAAAAAAAEclNKHmin0SttGhUDhj4qagAAAAAAAAAH68m2CwWM-Ledaj5WNl9lhAAAAAAAAAAqwMYFsNM0woNzFGwcp47vbgAAAAAAAABGEh0v14Wp9mB3u5tYha0hzQAAAAAAAAAmwSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFbhnM-182eA1jGyBQl8pMugAAAAAAAAAU4pL5iWdAziHKM6VzojymqQAAAAAAAAAGX8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0g4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAWMCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc5430MZlAMqI5SXd_yT5HRQAAAAAAAABcHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFN7LIGw1erb09TPWj8M9ehwAAAAAAAAAYwr21gCsicBxbZw2IJaNDDgAAAAAAAAAGEh0v14Wp9mB3u5tYha0hzQAAAAAAAABDwZ09eiIX1XgrymZWZ5BnrAAAAAAAAAAH7kiwTAFzycT-wgooymyU5QAAAAAAAAALLFiOeIpjbAGuoHCaoCuGBQAAAAAAAAA476ZQdAl2euBIN6YcqNHYDQAAAAAAAACQfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABP6WZ8beuV9qvYQN2_0rUbQAAAAAAAAAdWETDtAYgv6Jkvw6xLkpLwQAAAAAAAAAFzTg-1BaqPve5RYYrhWqKBgAAAAAAAAAHeYOPSEoq5FFmdpvYTsQ9xwAAAAAAAAHE2u2jPMdq36h9BOg_kllzLgAAAAAAAAAFajJdsnOIBpdo6hxvZuINSQAAAAAAAAAImSBnbtksrVvKstlIID71bwAAAAAAAAAUHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF4JxgAcphLAEsoWC3fPoUUQAAAAAAAAAMneQ9aDSiXyM-ZtdfoiCRFAAAAAAAAAAGXFsyX0Vq94TuMs7Bc44FAwAAAAAAAAAFhT_GFd-d817AZqi9jIee6QAAAAAAAAAUx8ERETcapIt78IXSEO8DRwAAAAAAAAACaLOl6FCWtZ16Qk1Y0IIBGgAAAAAAAAAG_CTrWCBcF1yntIOzlzRqGQAAAAAAAAAP1HXZZ713KyUPF_V7-YXiGAAAAAAAAAAG7qKsj4xn8s1AMSf99ASSjAAAAAAAAAAYt5ImPROd9wzf5BDFezVfygAAAAAAAAAG8AFkU9EDwekeQG-iHB-52AAAAAAAAABg1oBnNdsJQEj_XlDQgtQSnwAAAAAAAAATJYgcp9Kzkx4e4hFu_rVhNQAAAAAAAACBS3oYjBa3aRK5is2l8pi-3QAAAAAAAAB7S3oYjBa3aRK5is2l8pi-3QAAAAAAAAB7S3oYjBa3aRK5is2l8pi-3QAAAAAAAABAGPPIIhc9JBDF0bex-RCt3wAAAAAAAAADql-uKAi1beGz8RyiqP5WDgAAAAAAAADJ_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAACdJYgdZ6MFANs6aW-kJSCJAAAAAAAAAAYW19Tjw-jwIbyufOKZLiEmQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAA0aeAC4XpbxqxubqgoasMaQAAAAAAAT0gbx9jqjuemtiUm8j-_s73zQAAAAAAcXb6bx9jqjuemtiUm8j-_s73zQAAAAAAah2sbx9jqjuemtiUm8j-_s73zQAAAAAAahjK", "types": "CQOtBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zmESUw1Zei1kvjzl1SZNaQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_-Qx-pCy53U7YabuA5eb0fAAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAcpSIXlNYnJYwCILAJFTEzSwAAAAAAAAAGTyuf4RNGIxt-ueaCsLj22AAAAAAAAAAXvSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0qlujNL7db72ZwWHkSPq1iAAAAAAAAAAa8tJujVK0pdTWlucWIQYskAAAAAAAAADWSXFZShc93P7Br4wzVi_TSwAAAAAAAABGl8by2NZ7WjCFmKmn5LkVDAAAAAAAAABNJj6ja2Wbkf1_R1a9nVWcUAAAAAAAAAB-X9SksosahO6WfATGPaH3cQAAAAAAAAAInrhN620EAJ_Aof0ETZ3WHAAAAAAAAAAPQJvjLM8_Am-8HBcCjdeQvwAAAAAAAABYi__VMh3MgmTJp7v_qMbssAAAAAAAAAA1qwd0u0yf77aYVcTrTir5kQAAAAAAAAAFqwd0u0yf77aYVcTrTir5kQAAAAAAAAAFOD88rfBmy4BfCXerLT5e5QAAAAAAAAA7yhF9CEzH60wdDBblzY1FcQAAAAAAAAAIOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyFr", "types": "CANIBQED"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ITFOaJ_FpHZdMgfR0-CNtQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADAYnk6E9ReVsUsstHFtTIiXQAAAAAAAAAyfT0k69QoWDcgSGG9DEbGKQAAAAAAAABU3yZRDT05_hGvUj8jRvChFAAAAAAAAAIWQdsa8CodEr3BBR20SawlOgAAAAAAAAEu", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JPDqwE5vdIl3FS7GtvUXqQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAACSeel_AF4MFS6VTogqEciizwAAAAAAAAA4cNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAATPOaf2meILyNtXlyuau5zHwAAAAAAAAAKc6zhheBld8wEBO7TlhnPcgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB82g1SAYpsFtnBogFl0v0GAAAAAAAAADJdpQ3bcNFV5Y0XdediaTCQgAAAAAAAAALmmckjE-MysbZhDPP6gNxewAAAAAAAAAydmm7_Hn3SrysHeUffmIe9AAAAAAAAAAfaxxtk6GnkoiqRXb69JxcoAAAAAAAAACge4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJOdkuTNpXjsFc7WV5c_bgKAAAAAAAAAAMjBwquBL06pqJXOt8kphl0gAAAAAAAAAME5ablZjSwaw4LkNasKqxDQAAAAAAAAAFB3TkFubeMsUjXVlcESk9tgAAAAAAAAAMpmiRP16sLzHMk4sQotP67AAAAAAAAAAOqeHIgzzOczGD0wBwOrHP2QAAAAAAAAFJFuWxxcsr3tUR5NeFGer7vwAAAAAAAABnMWMRq4GUysNDjxb07DjPAwAAAAAAAAA31kXz6DG2a8E4RFJfEJClUwAAAAAAAAAHXmhyO4LlwHvRxhPCl5OZlwAAAAAAAAAIs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFHy8-YFxh3xFG50wbJun6OAAAAAAAAAAIRA6fryXhwc6j3TqIqI_2kAAAAAAAAAAUpqBRZ5qawZeLpdbbr6iQSgAAAAAAAAAH", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JCP0BVGlLm-Oh6Gj12DwBQ"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrkykgtQ4kMk_MBWrPUAFqVnYywAAAAABq7bsgtQ4kMk_MBWrPUAFqVnYywAAAAABq7GYgtQ4kMk_MBWrPUAFqVnYywAAAAABq6JkgtQ4kMk_MBWrPUAFqVnYywAAAAABq42MgtQ4kMk_MBWrPUAFqVnYywAAAAABqGse", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iN2Ofk3zy12fitGiXI1OjA"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAABGf3V", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5cWlSE7anvatrAiKNJ_2hA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYRr8mF3o9czEU_lrcVazITQAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAHVRV3OqaPHH0CL0c13xlvAwAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAAB3cy7MJJaHXkqSAQ460kolwAAAAAAAAAI_avzkz28Qok2WNYNUK8x_AAAAAAAAAACHRX5ZF5fIW1GKCXf3a6CmwAAAAAAAACtBTDQHzxuOEAYM78jOAyAQAAAAAAAAAB3t7DkRGcQiDMfHx06PCzMpQAAAAAAAAAXYEThj3UEuGl2wDiJSq9vSAAAAAAAAACqZou-EwmpdzrcXx7eij10xwAAAAAAAABPIdkGKdrrMvbrgpaqyJ-rigAAAAAAAAAJUpqzzk59PbxypyRs4QkNMAAAAAAAAABTN1R-9DGIZrDXK9x_wnFgtgAAAAAAAABD7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAAB3ZTYW2hueb8qo9sBuOsIdRgAAAAAAAAAn6HagrPNegEb1JoaDvxlnywAAAAAAAAAp5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAAB3ZTYW2hueb8qo9sBuOsIdRgAAAAAAAAAn6HagrPNegEb1JoaDvxlnywAAAAAAAAAp5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAADT1TcD-cYA4xs7rqA_y0alsAAAAAAAAAA_To5h_VPG74jZVr_rPWhSXwAAAAAAAAAEPdntB36p_DeKmNIFQmfwvQAAAAAAAAAF", "types": "CAM1BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8Zn6UdZZHr0P1-htNGE9Yw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFdeq", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "d1zd7H86hsAjrfeP9cX4-Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mbdXT4fd_WKeR1cE-hlLelCQAAAAAAC-nUyXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "22n-1zke9Bc_2bdxfUIJoA"}} +{"Stacktrace": {"frame": {"ids": "NH411-U9ZJbhx9KntPIOtAAAAAABaTsg", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_M0mETQ7RVSJpiioBm3h5Q"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfZrsFKuVxhHWhub-XEUbfgQAAAAAAAAAeUu5glQJyFgpEjTQ_UpnTpgAAAAAAAAAB4XL-_3HqKL4a-N25S_4rwwAAAAAAAAAqY_uBeAIr8RJYVxEQrPIP5gAAAAAAAAAECRotmmSr93EhxDv-kzDy3AAAAAAAAAAE_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABoaAqnvBf39hEMknB1ptAAgAAAAAAAAALVZ92wJHz4QeIc3nyf1htQgAAAAAAAAAe3APbfJs5SvbH_F9r5lo_3wAAAAAAAAAFfnFonGQxpm_e6wtqJ2HwRwAAAAAAAAAEYM_gl0OeNbTAtY8GRC8UVgAAAAAAAACbTdvyEkBALxwDoycOnD-RjgAAAAAAAABkYM_gl0OeNbTAtY8GRC8UVgAAAAAAAAA1OljKMbs7Sslvbk6h8kJ9yAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfw5DtxqVhoNPMfZH51ZbSdwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEeyyzzsctNMm8Ix0F5BKrQwAAAAAAAAANL9OdW1GzSEWVanMPfByr5wAAAAAAAAALrx1IYyt_N65Gocl6CDiGDAAAAAAAAAAB75MTQgFwHrOqmJ603qSRDgAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDld19avkWqL3IrjwADqpyvwAAAAAAAAAVCm3FF_uDQeutHnQs3UGjlgAAAAAAAADAbACwSC3MlpPvpZ_EqjrI5AAAAAAAAAAahihyMxl7F06KNlOC114rvQAAAAAAAAAA", "types": "CQMfBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dy3N-GVUyIaD6G8I5WnkEA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADHmXqXT4fd_WKeR1cE-hlLelCQAAAAAADHmkkXT4fd_WKeR1cE-hlLelCQAAAAAADHm4cXT4fd_WKeR1cE-hlLelCQAAAAAADB6QhXT4fd_WKeR1cE-hlLelCQAAAAAADQm1kXT4fd_WKeR1cE-hlLelCQAAAAAADQnNrXT4fd_WKeR1cE-hlLelCQAAAAAADQjwNXT4fd_WKeR1cE-hlLelCQAAAAAADQjKNXT4fd_WKeR1cE-hlLelCQAAAAAADQjeGXT4fd_WKeR1cE-hlLelCQAAAAAADQlp4XT4fd_WKeR1cE-hlLelCQAAAAAADHcz0XT4fd_WKeR1cE-hlLelCQAAAAAAC8k6-XT4fd_WKeR1cE-hlLelCQAAAAAAC8tjlXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8skcXT4fd_WKeR1cE-hlLelCQAAAAAAC8np9XT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nBuXT4fd_WKeR1cE-hlLelCQAAAAAAC8nBuXT4fd_WKeR1cE-hlLelCQAAAAAAChznw", "types": "HgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gcJpb2vXiNBsuY11aHVplg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATQDkJCt6xHk7D12ZqlrT-UAAAAAAAAAAHPX3E_b7jZQaK6SiJYskQ3QAAAAAAAAAJZaLdh2m65raIV_JyagrUBQAAAAAAAABnazI-mX3CgcWhg9AcjJjNnQAAAAAAAAART7Ugi353BwPylAwIPK3gzQAAAAAAAAHvdr7nJhzDAJ3KA627xZhFegAAAAAAAAAUE66a7lKbkjXDy4kHrdweRwAAAAAAAAALavH6-iyYHlN_flagvaXwWwAAAAAAAAAK5JuKxbkWPMw0EpITr8WSNAAAAAAAAAALCcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAACV125X0goavCApK-g1l1pkWwAAAAAAAAA-YYzk7c32FriCyY7m0aSg5gAAAAAAAABMYcsRqxbGzFlPociNmelgWAAAAAAAAABhsO4szKNZnXyLfMP7gPsjpgAAAAAAAAA9jjxn4cl8bBaRqPgS5F0n8gAAAAAAAABEp9UR3btTZUo1MztbkeIkOQAAAAAAAAALZICRnstTjqeSOkLK1jp-HwAAAAAAAAAJ34fB7qb3OTOSVWKcGDOtPgAAAAAAAABl6X-l4zSEzV-o-Qo3loG8-gAAAAAAAABA", "types": "CQM0BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "veOIAFRxCa22CxifEZaQKw"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHba4rFFPORY8_4FvK9QaA3QUQAAAAAAGRIW4rFFPORY8_4FvK9QaA3QUQAAAAAAGRJh4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp4rFFPORY8_4FvK9QaA3QUQAAAAAAFM5DUJmIMEc6K8gJ39NHYaD0WwAAAAAADfkiUJmIMEc6K8gJ39NHYaD0WwAAAAAADf1Y", "types": "JwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4lnkvegfTiAdDK0pj2nYXw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsgobx9jqjuemtiUm8j-_s73zQAAAAAATTx9bx9jqjuemtiUm8j-_s73zQAAAAAAQE2Pbx9jqjuemtiUm8j-_s73zQAAAAAAQDPXbx9jqjuemtiUm8j-_s73zQAAAAAAlA2vbx9jqjuemtiUm8j-_s73zQAAAAAAlAxkbx9jqjuemtiUm8j-_s73zQAAAAAAQE_Kbx9jqjuemtiUm8j-_s73zQAAAAAAnqoybx9jqjuemtiUm8j-_s73zQAAAAAAnquObx9jqjuemtiUm8j-_s73zQAAAAAASVt_bx9jqjuemtiUm8j-_s73zQAAAAAASVX7bx9jqjuemtiUm8j-_s73zQAAAAAAZUFCbx9jqjuemtiUm8j-_s73zQAAAAAAlKBmbx9jqjuemtiUm8j-_s73zQAAAAAAlGffbx9jqjuemtiUm8j-_s73zQAAAAAAkErdbx9jqjuemtiUm8j-_s73zQAAAAAAZYt6bx9jqjuemtiUm8j-_s73zQAAAAAAlIRB", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vNVkZ8wxrLlgCSBCwJDDkg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAAAA", "types": "CAMJBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_q__A1DtslztwI8Prcjb0Q"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFdkIcEvvhuguaGYCmGWrnWRz1QAAAAACFWIHcEvvhuguaGYCmGWrnWRz1QAAAAACFVZ1cEvvhuguaGYCmGWrnWRz1QAAAAACFWU-", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "rkmP4tDn8QrR2_LXoPYpKw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2qOcEvvhuguaGYCmGWrnWRz1QAAAAACg0PkcEvvhuguaGYCmGWrnWRz1QAAAAACgxMzcEvvhuguaGYCmGWrnWRz1QAAAAACgt6PcEvvhuguaGYCmGWrnWRz1QAAAAACgeR6cEvvhuguaGYCmGWrnWRz1QAAAAACEAcU", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "VV_S6GktcnF630eBifKr2A"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAADrAotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAExkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4pVlUGQpw_Cq0LEtbbly5dAAAAAAAAAAkN1WyTlGFxfHgSyYQ3aeHDQAAAAAAAAAOYSP8Ib_W13QEw_Ivysg7FgAAAAAAAAFyn0UYwZH5py59Xu9gAaxkrwAAAAAAAABAm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl5iN7OCAj-2IgmFqLvCWrTwAAAAAAAAESap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlJdvIaoH8miVW9zaDiDOZJwAAAAAAAADSap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlhW8OwmmxjJYCeXfLTZy__QAAAAAAAAFLap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlw4mT2NPQOW-Mg0N_xZsuzAAAAAAAAADgap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlRlK4jZbFueXylWP1GNjNSQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlL_sAxM5NHsnYQp22GwDx8gAAAAAAAABwap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAycNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAATPOaf2meILyNtXlyuau5zHwAAAAAAAAAKc6zhheBld8wEBO7TlhnPcgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB82g1SAYpsFtnBogFl0v0GAAAAAAAAADJdpQ3bcNFV5Y0XdediaTCQgAAAAAAAAALmmckjE-MysbZhDPP6gNxewAAAAAAAAAydmm7_Hn3SrysHeUffmIe9AAAAAAAAAAfaxxtk6GnkoiqRXb69JxcoAAAAAAAAACge4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJOdkuTNpXjsFc7WV5c_bgKAAAAAAAAAAMjBwquBL06pqJXOt8kphl0gAAAAAAAAAME5ablZjSwaw4LkNasKqxDQAAAAAAAAAFB3TkFubeMsUjXVlcESk9tgAAAAAAAAAMpmiRP16sLzHMk4sQotP67AAAAAAAAAAOqeHIgzzOczGD0wBwOrHP2QAAAAAAAAFJFuWxxcsr3tUR5NeFGer7vwAAAAAAAABnMWMRq4GUysNDjxb07DjPAwAAAAAAAAA3jsLLxIAhtu1IcuCmLP4yNgAAAAAAAAAH4T44kzE9JU_n4pRF5j5FFwAAAAAAAAAYSq4yJYXB5hEMp7oPtTmUiQAAAAAAAAAimSKMuTauUB6AvF_x3SDLhAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAlNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAANS_CTRBRzwj9_syNwY5rEXHAAAAAAAAAB3nZ_TLoQXzn9RYaGn5N0v4wAAAAAAAAA2414vwxwFz0HV2Ku4dzYYowAAAAAAAABPlF0402c3xDTaGy1WpLy7vwAAAAAAAACHmElwt1Dp4YSxqVbIbt9WBgAAAAAAAAAElMhfA8E2jb3TCQnQMEboyAAAAAAAAAALKFGBFnajTppUPwKMAfWXvQAAAAAAAAAA", "types": "CAN_BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xV5Nf0I7DK3vta7fk0KbtA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJLjwgtQ4kMk_MBWrPUAFqVnYywAAAAACJLokgtQ4kMk_MBWrPUAFqVnYywAAAAACI3krgtQ4kMk_MBWrPUAFqVnYywAAAAACI4XKgtQ4kMk_MBWrPUAFqVnYywAAAAACIxlZgtQ4kMk_MBWrPUAFqVnYywAAAAACIxsYgtQ4kMk_MBWrPUAFqVnYywAAAAABsw8kgtQ4kMk_MBWrPUAFqVnYywAAAAABszEagtQ4kMk_MBWrPUAFqVnYywAAAAABr84EgtQ4kMk_MBWrPUAFqVnYywAAAAABsAop6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf", "types": "EgMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "uoopGdRXF7YsQ5mpcE9ccQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o9IXT4fd_WKeR1cE-hlLelCQAAAAAAC-pN7XT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_Y9XT4fd_WKeR1cE-hlLelCQAAAAAACiFIoXT4fd_WKeR1cE-hlLelCQAAAAAACiKQzXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJje6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIj8", "types": "FAMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fGpYIWgG6iM380xUK3zO5A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWBTXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmu46tVKI4mSYDEJ-ABAIpYXcgAAAAAALSUu6tVKI4mSYDEJ-ABAIpYXcgAAAAAALQw-IG5EpvTeHopVC9IqkA_kSgAAAAAAAYPwIG5EpvTeHopVC9IqkA_kSgAAAAAAAVthIG5EpvTeHopVC9IqkA_kSgAAAAAAAYEQIG5EpvTeHopVC9IqkA_kSgAAAAAAAVmGIG5EpvTeHopVC9IqkA_kSgAAAAAAALXd6tVKI4mSYDEJ-ABAIpYXcgAAAAAALQ7i6tVKI4mSYDEJ-ABAIpYXcgAAAAAALQsy6tVKI4mSYDEJ-ABAIpYXcgAAAAAARPAa6tVKI4mSYDEJ-ABAIpYXcgAAAAAASepa6tVKI4mSYDEJ-ABAIpYXcgAAAAAASg5x6tVKI4mSYDEJ-ABAIpYXcgAAAAAASg1n6tVKI4mSYDEJ-ABAIpYXcgAAAAAASgxU6tVKI4mSYDEJ-ABAIpYXcgAAAAAASgiP6tVKI4mSYDEJ-ABAIpYXcgAAAAAASSMw", "types": "FQMWBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "i2LRaEQbaFjppfKBRlcmXg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFdkIcEvvhuguaGYCmGWrnWRz1QAAAAACFWIHcEvvhuguaGYCmGWrnWRz1QAAAAACFVZx", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kWecWBu1LfclB8J1flsEoA"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcXvYxe-SHgukLEpCkawSk1QWAAAAAAAAUHWYxe-SHgukLEpCkawSk1QWAAAAAAAAD9g", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5DHoz0134Gnm4TqZyhV4mA"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAAA65FYxe-SHgukLEpCkawSk1QWAAAAAAAA8D0Yxe-SHgukLEpCkawSk1QWAAAAAAAA_IZYxe-SHgukLEpCkawSk1QWAAAAAAAA-3HYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQL", "types": "CAMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wzVhadaUK8xV2GgSkf93CA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATMsVxGJ_9ADjCLmkId1rUYwAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAE7fiqNEC4hTNfpjbFJ8zPtkAAAAAAAAAAFfFtXuenTBEiIanE9ZLS9KQAAAAAAAACHzpP80T6FdaTGeY1BUSMu-AAAAAAAAAAFi8qUzmADhGx9PMH8RJ_tdAAAAAAAAACPZ41z-remt7jPNWprM_rymwAAAAAAAAC61S9eFAopKcZX-VnW9ChdWAAAAAAAAAADw_8HYglWw-0jqUUlUeMgagAAAAAAAAAC5XlE5KvRrfbNOpt-JVgrOAAAAAAAAAAH_zxyi-wgtH_Wz8ut-WKY9wAAAAAAAAA_WZoc9LDALgnb0WdOEBNL7gAAAAAAAAACs7QK80FVtYwQj3h1fpBcbwAAAAAAAAAFsr7KmiDQn3AwPKwUE1w3aQAAAAAAAAAFISo198vJQrYNdynfqzotagAAAAAAAAACSU7fNzMC3NazhQDT5xGXYgAAAAAAAABI", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "whjQnYnkC1qOzcD5V7FwRg"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4694rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4694rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAES4m4rFFPORY8_4FvK9QaA3QUQAAAAAADXrRUJmIMEc6K8gJ39NHYaD0WwAAAAAACXKsUJmIMEc6K8gJ39NHYaD0WwAAAAAACU9i", "types": "YQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mSPyuvsRaq2-6g33wYn5vQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vNqXT4fd_WKeR1cE-hlLelCQAAAAAAC-ob5XT4fd_WKeR1cE-hlLelCQAAAAAAC-oi4XT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LY", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iqlNhgFRloPVdjhCzw2Jcw"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHbaI-7FSPUFvGFUkGA6jlppywAAAAAAC0ivYwxnBMtVSfJhocgnI0WgmAAAAAAAJWhYYwxnBMtVSfJhocgnI0WgmAAAAAAAJUbsYwxnBMtVSfJhocgnI0WgmAAAAAAAF8f5YwxnBMtVSfJhocgnI0WgmAAAAAAAGCd9YwxnBMtVSfJhocgnI0WgmAAAAAAAGAG6xFA0V1dCXRoFBkiljWo8aAAAAAAAC5uDxFA0V1dCXRoFBkiljWo8aAAAAAAAC5qal5FZ1ntrBTGZUQPXJtfAlAAAAAAAADxYl5FZ1ntrBTGZUQPXJtfAlAAAAAAAAGpkl5FZ1ntrBTGZUQPXJtfAlAAAAAAAAT2jl5FZ1ntrBTGZUQPXJtfAlAAAAAAAAYjLl5FZ1ntrBTGZUQPXJtfAlAAAAAAAAYetl5FZ1ntrBTGZUQPXJtfAlAAAAAAAAZHnl5FZ1ntrBTGZUQPXJtfAlAAAAAAAAUjXl5FZ1ntrBTGZUQPXJtfAlAAAAAAAAVL8", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RHHKSTY1jwvhqHbdgf290w"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw2HtXT4fd_WKeR1cE-hlLelCQAAAAAACw1EEXT4fd_WKeR1cE-hlLelCQAAAAAACkHGIXT4fd_WKeR1cE-hlLelCQAAAAAACkMuNXT4fd_WKeR1cE-hlLelCQAAAAAACkLvxXT4fd_WKeR1cE-hlLelCQAAAAAACkJwJXT4fd_WKeR1cE-hlLelCQAAAAAACkIOZ", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "X6cjQDPHncRV2XEnR81qhw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAATo2Vqo1n4TLgDJq9tPgwAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARxBGCEPBdnG6Mds1nJf4tcQAAAAAAAAAGzXf1O_8jknZjcKGu5cQjJQAAAAAAAAAgPHkw6KCW6WHcDhD0gWZvxQAAAAAAAAAXqjkbzJCs46utKAIQU_ZjYgAAAAAAAADmaG38C7AQR-wEDFFefkRnfgAAAAAAAAAsdawGhH-93Zf3Xci2M9UlFQAAAAAAAAAMPhHweSUk-rcHLCvi4mySwgAAAAAAAAEf6DR1g1ntOxmr30J0BBvOfAAAAAAAAAACtr8slt8HY3Wuyaey7A19YAAAAAAAAAAuDVSkUfLwOzQuwgYi6TvurAAAAAAAAAAdBvLbND_0DrAH3Z_KTjqNwwAAAAAAAAAIiQ3-U2pFJokP-jlw4Yr9FQAAAAAAAAAJnxv9fnyzQgRP5y-sCtMEGwAAAAAAAAAA", "types": "CANJBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xk4yAe0khSy8_a2SOV9bRg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAAAyxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEPoG3DRiZKlMZ3sh3A8whkKQAAAAAAAAAZhbRa_Mv_nNX73QDH-O5j0QAAAAAAAABbLm-i7mHlXTzn3dRUwPqsywAAAAAAAAAE", "types": "CQMuBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "B3_F9VazCTuNY89XIkhbmg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACujkfqsU9w34yk0ipcsxq5HgAAAAAAAAAO7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAFk3HyWSdTGgne1xIId1mIvAAAAAAAAAAzKzCI3jWrje1hFLAKEDhYkwAAAAAAAAAJhyDoVUWwwXEvgB5sKTLeXQAAAAAAAAACveyrOe2Ye9QKtQm85e4-1QAAAAAAAAAJKc3Qpigh43lyCXxKBVsfZQAAAAAAAADIDvxORZxoFkDRuJT-GJ72RwAAAAAAAAAA", "types": "CAOzBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DBzMLG78Q9TObQDPGaahLQ"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHba4rFFPORY8_4FvK9QaA3QUQAAAAAAGRIW4rFFPORY8_4FvK9QaA3QUQAAAAAAGRJh4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Lt4rFFPORY8_4FvK9QaA3QUQAAAAAABSmV4rFFPORY8_4FvK9QaA3QUQAAAAAADNZJ", "types": "GgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GZSVExRUmQVSrwabIIQ9bQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbN5XT4fd_WKeR1cE-hlLelCQAAAAAACgT-A", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Su83jhjLPwV0cqJbphC9gg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAABAHHYxe-SHgukLEpCkawSk1QWAAAAAAAA-srYxe-SHgukLEpCkawSk1QWAAAAAAAANKmYxe-SHgukLEpCkawSk1QWAAAAAAAA0MVYxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xMx3Cq_a3YmMx1DUph5FSA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATQDkJCt6xHk7D12ZqlrT-UAAAAAAAAAAHPX3E_b7jZQaK6SiJYskQ3QAAAAAAAAARSfUOLPncvmUbspPEBmYXMAAAAAAAAAAGjiOROD0tmELw9GVQYUYO2AAAAAAAAAAFt5RNhmUkms0myDPI3-3ICQAAAAAAAAAFexlLI1uBpP8VBaUqNRf9DQAAAAAAAAAWvaZUIH7rCnsi1a_nVIdcmgAAAAAAAAALDg0i2lYRLQUln2hBXrJbCwAAAAAAAAB7LBpgfKrDQ3BzHNu217B1mQAAAAAAAAA_W71vQdVXkSshgzNQ0Gd6OwAAAAAAAAASTRaadTHFaNtNdCF-LuRHKAAAAAAAAAAStU5StqeZvwdKSMyM5nPlIwAAAAAAAAASdjagdXM_c9EROkycKgSbxgAAAAAAAAA7Vyw5UB5t7K3M1sGJ5zvMhQAAAAAAAAAtZzjWAA6wDJtYRWOq7lbvsAAAAAAAAAAU7WnwRMuT5uBVEeQvchhCRAAAAAAAAAAdLUP5CamdRVXoxMmK_UVdcAAAAAAAAAAEx_AviyjXcqJjS67hCSKerAAAAAAAAAAHVb9Nboq4yl2G4leT-jYdRgAAAAAAAABENCpnvGv1--TWXcgs4ddcmQAAAAAAAAAHAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CQM2BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_2EjEMFvvc3zr5RhEP50Gg"}} +{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI7B_NxRB-tFVbAaTDiew0fwAAAAAAdyiE7B_NxRB-tFVbAaTDiew0fwAAAAABTOLj7B_NxRB-tFVbAaTDiew0fwAAAAAApa927B_NxRB-tFVbAaTDiew0fwAAAAAApWhZ", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nrWC-qc5axy4sfEcyAbH_A"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbkcEvvhuguaGYCmGWrnWRz1QAAAAAD-LXecEvvhuguaGYCmGWrnWRz1QAAAAAD-M6LcEvvhuguaGYCmGWrnWRz1QAAAAACNFBbcEvvhuguaGYCmGWrnWRz1QAAAAACH4XKcEvvhuguaGYCmGWrnWRz1QAAAAACFSqRcEvvhuguaGYCmGWrnWRz1QAAAAACEMdS", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TRUnK-WWANtupdruMNoGhA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbHuXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCMNXT4fd_WKeR1cE-hlLelCQAAAAAACgUmmXT4fd_WKeR1cE-hlLelCQAAAAAACgUcq", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Pa7HT4RqowcItE6L730stw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAAB-5iAtVIILui-LgFNzk7nI4QAAAAAAAAAFTlb-NMKl40FjLIQMDGJfBQAAAAAAAAAXxme1OLUOxM6S5mWcBl9N_gAAAAAAAAAC8EydHzqUyrjotjG1DR1HjgAAAAAAAAADx7dNtL9l6yQnqIhb2iRkJQAAAAAAAABV85xU6UdOBVE-6wKT-DYa3QAAAAAAAAAcKlMLGpkm1pBrBLT79cviPAAAAAAAAAABzVZBdh_gmAiL5X6tN_0jKgAAAAAAAAAEWBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAABMQNDqKDPWY6nq0qvBxhyKdwAAAAAAAAAoapg5i-nxkoOQjMlxB9g-swAAAAAAAAAF", "types": "CQNHBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XQ5Vd_P1t4lptAjc-gELxw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LH5cEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEMoA", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JPBfprFcYI4CIhppjQEU8Q"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAdLJM8DDAjVJl721y2vxKHGSBegAAAAAAdFID8DDAjVJl721y2vxKHGSBegAAAAAAdJ0N8DDAjVJl721y2vxKHGSBegAAAAAAcioK", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_x2q29NOiLMSNpbpC-oaGA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABSE9Oz5k14PsCcDvFyUC1kmlV3QAAAAABSFH3z5k14PsCcDvFyUC1kmlV3QAAAAABSDYYz5k14PsCcDvFyUC1kmlV3QAAAAABKDMWz5k14PsCcDvFyUC1kmlV3QAAAAABLLaZz5k14PsCcDvFyUC1kmlV3QAAAAABK3dwz5k14PsCcDvFyUC1kmlV3QAAAAABHfOyz5k14PsCcDvFyUC1kmlV3QAAAAABHAaLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimti6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnKXQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAirCv6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CgMOBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ioxFgkVObv-I5g84RTGSSg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAABCxaYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBt1", "types": "BgMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "74DxzMOdA9t1FvsZG48A5g"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAHGUZERbZIQjSg87ouQDqW1NgAAAAAAAAANfxp9PeiFOG2DGVnMmcG6lQAAAAAAAAAC-yOKvc6ldOlbMsqUjidkjgAAAAAAAAAseXNbyOeLs46cBjJtPDHgqwAAAAAAAAAGj37J4jfSErVvEBjrFNgGZwAAAAAAAAB5xbB2JzUL5kKb9-epbYeC7gAAAAAAAAAkM_mFoif4aI0PVePpgYbumwAAAAAAAABGxO_doWsVfTOu6EOTZQnX8AAAAAAAAAAyb1GECJUSnH_79vWkuc6clwAAAAAAAAAcxbB2JzUL5kKb9-epbYeC7gAAAAAAAAAkZmLYrdZRRL-TXWg182qKJAAAAAAAAABxU6oUxAKdgFsLxgCW62GbLAAAAAAAAABGKV1fAWClOoINijqAgbPmTwAAAAAAAAAA", "types": "CAO7BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cRYD0SSDuXf-81wyn4CqFg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQw7WOWZs79Wz210098loDzAAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARrSUSoohdnG6MdsfC9pID0QAAAAAAAAAGpY2MvdN80J-OPBSDYZs_8gAAAAAAAABSneOkLg7Birx-EWGBuoP5rgAAAAAAAAAaDjB9rnpR9s2OI-jlVfuXnAAAAAAAAADmNrikprALerrSkH1iKFm6zQAAAAAAAAAs_ui1AAIySrYc7ZeYb73nFQAAAAAAAAAMDbSG9xbs7jnAEiHiVrKb1AAAAAAAAACGHSSZPv-Jiv2fPLN9vFx42gAAAAAAAAELQKRyqWZIJ5_z0G07UwBzeAAAAAAAAABS3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAxJDeoMDAF4zRp8m9fg1ttGQAAAAAAAACBArHoFYyXVsZt6HAc7EjVzgAAAAAAAAA3u1A1mq4_NM3j2_15WwdIbwAAAAAAAACHp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAACjGw9H1l67yAnzlh8ZHG_VaQAAAAAAAAA47c7rgpFHY6rxkjCoiUY2PgAAAAAAAACWu1A1mq4_NM3j2_15WwdIbwAAAAAAAACH36qODdc5_sG38C3jmrtkhgAAAAAAAAAkuchUv6RRAwtUDrZKhO2h8QAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFtEy-A8lz0LlXhsYvqccKNAAAAAAAAAAURWZ9G1N69fMZnc8QMvYsrQAAAAAAAAA3-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAF0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFGSIhvfd8NP-AkgZ44Vf-SAAAAAAAAAAQ88-Z439dOdp5GpDKUJubowAAAAAAAAA_0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFRAxlOZQDYMSIxYBoCiYSlQAAAAAAAAAoREOZDMGevKohDmxWFx6eeAAAAAAAAACajBeiHwwOyRIapBbs5J2OjgAAAAAAAAB4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFwjbq14SDWW6edot3m-YXMQAAAAAAAAAcxMi3lfkibPU0NAhJ8DhGPgAAAAAAAABR0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFwcQ8sx0Hbh7lHQEqIQ-KgQAAAAAAAAAQclGseV0LGavUI1_g3b_OoAAAAAAAAAAwjBeiHwwOyRIapBbs5J2OjgAAAAAAAAB40LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF7Usw01CrpzkfVMMyw5vCegAAAAAAAAAQs7vZritmiKufeJDzCX_JRAAAAAAAAAARLHQIqPZNDAtBb5Urr3NFHgAAAAAAAAAu-Q25YN3mx81c5h9FyskSVQAAAAAAAAA-BZ6M98E7_jhQ9w9aCijThQAAAAAAAABjK4q5bjj7FsLI8bLo_hB_IAAAAAAAAAAY3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFu7zifqDaDmZ-4eDh2NyxxQAAAAAAAAAYXmcQ4_6bleDFvrRZ47Cq9wAAAAAAAAA73G7WvpXqPGO04rbAV9CJtQAAAAAAAAAl8ZRk8SyYMUcoYIl9aB0UjwAAAAAAAAAp0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdGrJ7brreNfhV4KADjvV8QAAAAAAAAAMM_MfJrZLrX3P0R0dWrP49AAAAAAAAAAL0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFGteHJRmtGt9tBprXMjfNSgAAAAAAAAAYDkUb3XtVJF4DvOzLdzKoEQAAAAAAAAAi25mp98L6MrKhqE8ccc5QLgAAAAAAAACzVdQenHXtmVDmm8_NYRJBugAAAAAAAAAMm-b1Zgjt4v-saeL7kAv5lwAAAAAAAAAKnZBjsnB5E1LeQoJuhOhOIgAAAAAAAAAG1fE-A15-sG5pm2Nv6tb9vgAAAAAAAAANJKjf0pZHg3dzwDeAqfO16AAAAAAAAAAEsyuAMg3RShupVDY63eHfbQAAAAAAAAAHMrVvriJqF-HOpa8js-mFagAAAAAAAAA3bC4xUO3cZ_wW8IEDAJ-BNgAAAAAAAABGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAm4yG9IdLfPOQJQp1BxdOq7wAAAAAAAACfEgnEAYVJO6evUZwnNI7NMgAAAAAAAAB05zxpGeZtVFjxV00AgHRxwAAAAAAAAAA6JDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFzQ8NOEhW_FMdxKX5ZKa-AQAAAAAAAAAgUyl96nbKrz6UOSXSc3iffwAAAAAAAABDmWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFw_rNNsza6yNRFkKCHuRo-gAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFlJPXvfs9zQkNSoaonclVhwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAAnkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_hssi35Rz-FIdn8Nd5FAnowAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABA-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAyAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJz7yF4xFIRpq25tmzB5TjNgAAAAAAAAAkr9OA6z6ywxk33MG1uly6aAAAAAAAAAAZFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASFS55TSwq0w7KNb6oqdqsJwAAAAAAAABDgT8nUPqqRrRw5ZClYoJx6gAAAAAAAAAH1uTD4MIo_4nBzNJux2_5GAAAAAAAAAB7OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB8fD8MYf3rRLn0p51wgRpQgAAAAAAAAAU8Rg9C7sld8ZdU0EvjvCPkgAAAAAAAAHnz2RK8OiMonW_o4pECFqoegAAAAAAAAAROmzVUgwY22EPoqShuZpT1wAAAAAAAAAB3zXCUNpYxjlSLDJ08OaDVAAAAAAAAACSmCVS1Rzc9wTd3abY2wEkkwAAAAAAAAA2erIxMNVFTJW9h2xdYC1vVwAAAAAAAABB3AY8MNUz0wDPTGwFdp088QAAAAAAAAAzXYRTlu2htT1GlqMbNL36ywAAAAAAAAAI_0ox8C5Jmpi5jms1u089pQAAAAAAAAASdV9F8Jrxp0fpwJiFvsmRngAAAAAAAAAIarxA1QBozmn6abFSxPuNegAAAAAAAAAA", "types": "CAPZBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4RDD13AGJv2QRFllRjefVg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAALQdTHQesbASt6Y5f1ZiVhFQAAAAAAAAAE_eROpl6E28RmJR5mQ58QhgAAAAAAAAAA", "types": "CAMJBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YJf-sPi9NXmrPeT2tTjMTg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAFJeiEAvRyyg7Q8ghJd6qO4ZQAAAAAAAAApxDECjxfRDF0SAcicHv7yIgAAAAAAAAABSsODsFdp0k4d_SSQAFmIUQAAAAAAAAApzzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIGTDz5BEJ5HMljeo0WMABIQAAAAAAAAAg06W-_gYsVxvlZRgxvL-PiAAAAAAAAAEOcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIQVeLj_oPnEjl_jKTv8aQqAAAAAAAAAAlcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIMgnzgTUwSrjft9SA3YZTtAAAAAAAAAA0pTQwlw111ksRO8rVWFQy5wAAAAAAAAAuVKeIi2MKWzeJ-DxWf1HkPQAAAAAAAAChvf7QtfK9pdGvwA-FZkTf9QAAAAAAAAAE_qkVJm0NxTF9ak3kQe9veQAAAAAAAABl_o16MMgGIHtHHW6cqc3kcwAAAAAAAAAKdz3i4bkkYsjT-e-OYyoK1AAAAAAAAAAKN8EaJBp59RHZ5cTYR_Dm5gAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8JXazZeFHK5-UCd969i2Ug"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi09Z3CKaS4aU08RhYA19y5ITQAAAAACDf4EZ3CKaS4aU08RhYA19y5ITQAAAAACDf9dZ3CKaS4aU08RhYA19y5ITQAAAAAB9MVsZ3CKaS4aU08RhYA19y5ITQAAAAAB2nnMZ3CKaS4aU08RhYA19y5ITQAAAAAB2qwD", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5hQDQXVFSWhod-irdUh5cg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCYyXT4fd_WKeR1cE-hlLelCQAAAAAAEOC7XXT4fd_WKeR1cE-hlLelCQAAAAAACwzdbXT4fd_WKeR1cE-hlLelCQAAAAAACwXETXT4fd_WKeR1cE-hlLelCQAAAAAACipi9XT4fd_WKeR1cE-hlLelCQAAAAAACipFEXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBiZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAANr3F6tVKI4mSYDEJ-ABAIpYXcgAAAAAANyAN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFoMX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA6d6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA406tVKI4mSYDEJ-ABAIpYXcgAAAAAApUjh6tVKI4mSYDEJ-ABAIpYXcgAAAAAApUQ36tVKI4mSYDEJ-ABAIpYXcgAAAAAApTh-6tVKI4mSYDEJ-ABAIpYXcgAAAAAApQ28", "types": "EQMQBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UHjRGCGnN_IYn4fU42UENg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnT_CbuFH2T-k0d1BucuCrUAAAAAAAAAAUP7t3blDxeYi07Hv420EtQAAAAAAAAAGDCkQR8QMBE-NYVyq0-4RnLQAAAAAAAAATOmzVUgwY22EPoqShuZpT1wAAAAAAAAABpM4H5PkiAZh48znXOMyymwAAAAAAAAL5qdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYMn0lhQNjNLc2TiLs5CI5twAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFdciEg2zVAoapt7MT0cXoNwAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAADrAotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAGJ1xBvehWaFQefKkuHjb2hUwAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJFcHGeTZbDG8jQ9sbtbngcAAAAAAAAAAcs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFIAf9e80wW0ROOv48VcVi-AAAAAAAAAAcGY5WEW77dofWJpcPe0twUgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4pVlUGQpw_Cq0LEtbbly5dAAAAAAAAAAkN1WyTlGFxfHgSyYQ3aeHDQAAAAAAAAAOYSP8Ib_W13QEw_Ivysg7FgAAAAAAAAFijMdC0iDbsCJHoOmxD683QwAAAAAAAABc1xBvehWaFQefKkuHjb2hUwAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJFcHGeTZbDG8jQ9sbtbngcAAAAAAAAAAcs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF6RxlcSCbdZsay0LZL6BomwAAAAAAAAA4oDr7MTq61H8yqR3sNnnIbgAAAAAAAACveEsPvNGYH982Mv0mPexpzgAAAAAAAABKsO6_s1BlSyIDALZsU90OJAAAAAAAAAAg4D0fbc_pdXE-9wAhBiPZKgAAAAAAAABAAotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAGJRwsPBLsceWCwsIBnpjKdgAAAAAAAAAAFnK26UzXMr2iYvP4Hayn36wAAAAAAAAATE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFIAf9e80wW0ROOv48VcVi-AAAAAAAAAAcGY5WEW77dofWJpcPe0twUgAAAAAAAADTE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFuZoHe-qh3SeYJemnk5OIewAAAAAAAAAMk1mE9uRRLQFnqDwlSGynLgAAAAAAAAAKkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFtDenB2ykH_eGrlIxAUJwHAAAAAAAAAAkHPMCfkOJRiUT5Qc3SSjArwAAAAAAAADPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFeVTpZJdYNChcW539BKWJ3wAAAAAAAAAU_oKA7slDAC67s5XFNub3EAAAAAAAAAAIn0UYwZH5py59Xu9gAaxkrwAAAAAAAABAm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl5iN7OCAj-2IgmFqLvCWrTwAAAAAAAAESap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlJdvIaoH8miVW9zaDiDOZJwAAAAAAAADSap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlhW8OwmmxjJYCeXfLTZy__QAAAAAAAAFLap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlw4mT2NPQOW-Mg0N_xZsuzAAAAAAAAADgap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlRlK4jZbFueXylWP1GNjNSQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlL_sAxM5NHsnYQp22GwDx8gAAAAAAAABwap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAye4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJsVRH8uyfnyQixTABDkZaEgAAAAAAAAAkoIYS8oKywxk33PzxrExveAAAAAAAAAAZETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASETEs_vJj_-q4WFpNiG_LRQAAAAAAAABDgSCcDWmELuplsa8VqJDXWAAAAAAAAAAHj_DalQzm9M9lsrdxKoLeDwAAAAAAAAAcEmratRDxeKcrsZYT5P-e9gAAAAAAAAAQOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB1dA5ZTFv49e1b-rcMcpn3wAAAAAAAAH18-MMxslGaTYHxfHF1qfQfgAAAAAAAABvo-Nsru8vjcvvEGGkrUKozgAAAAAAAAAeoTNupbAZc4qBrZLU_h-fogAAAAAAAABYLmvOcg0pOC8EpfUlMJwJ7wAAAAAAAABOoD19bmvIeXt5AY08cDQa7gAAAAAAAABTOr3A_uFtf7YBOMVYzqReaQAAAAAAAAB03v-z5nFE6uqyuNzzhpgGUwAAAAAAAAAIspUGqsCTGHPUynY6l3nRmwAAAAAAAAA9", "types": "CAONBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EQIYYwQ0WnOTQBNUCA4zhA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAACuK1pXT4fd_WKeR1cE-hlLelCQAAAAAACuK5PXT4fd_WKeR1cE-hlLelCQAAAAAACuMW-XT4fd_WKeR1cE-hlLelCQAAAAAACuJG5XT4fd_WKeR1cE-hlLelCQAAAAAADT_eSXT4fd_WKeR1cE-hlLelCQAAAAAAClJ4kXT4fd_WKeR1cE-hlLelCQAAAAAAClKZVXT4fd_WKeR1cE-hlLelCQAAAAAAClLfRXT4fd_WKeR1cE-hlLelCQAAAAAAClL4TXT4fd_WKeR1cE-hlLelCQAAAAAACl9FFXT4fd_WKeR1cE-hlLelCQAAAAAACl8SrXT4fd_WKeR1cE-hlLelCQAAAAAAClxnRXT4fd_WKeR1cE-hlLelCQAAAAAAClyAzXT4fd_WKeR1cE-hlLelCQAAAAAAClXWjXT4fd_WKeR1cE-hlLelCQAAAAAACiIPvXT4fd_WKeR1cE-hlLelCQAAAAAACiMNaXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FkpFsu7aCd7Qw08Jy5aPoA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAABcQrw_bSROFZCKPRirqN5crwAAAAAAAAAEmNKQ_cGBX-X-PxTw057WHwAAAAAAAAAoPe3ctc9W4J1u_ZCOerqNzAAAAAAAAACGnZmkelHuL2rN_AY8H-OMEgAAAAAAAAAFgmjUzsxRLEujWJFPXkncMgAAAAAAAACLzw0wKeXSScV9zb0GbnSg3gAAAAAAAAE6xiNRq7Ruj11jfgYHuwwWowAAAAAAAAIqqQno9-_wyhcIA1C-x4nIXAAAAAAAAAEmxBTi6zq6LxTMAqb38KRrfgAAAAAAAAACXpviWYO7CFQF88r_qvK5hQAAAAAAAAAJ", "types": "CQMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0n0wDYacvgyJbPpg0CkiqA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYCMh__DRjYW6WKuSO4E-9UAAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFaD5tQt3PTji3IEVewu1DRAAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATMjSrWlLYBonpC2jkI8XqZQAAAAAAAAAKmVg5ImyOXWtTMPsPyAoJFAAAAAAAAAADeCd7pmEC4QoP7FQm1ikosgAAAAAAAAGVws0N6fTgPArljYYAC403MwAAAAAAAABVKiXI7CN_kLfsIAVFu8pFgAAAAAAAAAAIuF_V7TH-mukdED5BHxc90gAAAAAAAAHcC_0aTeR6JBYKeG8Yqz7OGgAAAAAAAAETljpmjACwvo52D1nC2cyFxQAAAAAAAACDvDU7E1ww8G9noy7HUAb7kQAAAAAAAABatrKFSvtlxO979VBLgP3FPAAAAAAAAAAvgs-Dp-bkHGP2EKd53eqOEgAAAAAAAAB-7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAME67ZApSKF_tBH-bAhOXBNxAAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAABBmedSjTisT_c6UDMJcEb40wAAAAAAAABQNDiNPs2SIuj4NddpL8knJAAAAAAAAAAC_OOeQuiXtvgynmE43QMbEAAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAITk8NlMClggx8jaziUTJXlmWAAAAAAAATjb", "types": "CAMrBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Vy2a6fjBfjrwGpS9HVG-Kg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQJvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACeySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAYh-mcFcSefWaXpPLGLAmk8gAAAAAAAADYzXY2fMPD2q8JxxSeQ4an4AAAAAAAAADbsSDVmLRXn5j8cMEHakX25QAAAAAAAAAMbYR0b7-vTQ0RKJD6ns3ClQAAAAAAAAAG5WRkp3UGiY89oONYWWfHqAAAAAAAAAAtidAHvTfpCa_Lill3CvLIKwAAAAAAAABUtknRVtdrp8TkRV3X6AJ-KgAAAAAAAAGx2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFaD5tQt3PTji3IEVewu1DRAAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7j28kOyi7SuaCDi2YxjsqIQAAAAAAAAAFD-1h8rWAA4g1SDoGOMQIKAAAAAAAAAAEOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATbbwmv37dMI1yN-YGmVVIuwAAAAAAAAAHJgZRyAOoiDw-UUT43F6zfAAAAAAAAAAWbC4xUO3cZ_wW8IEDAJ-BNgAAAAAAAABGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAm4yG9IdLfPOQJQp1BxdOq7wAAAAAAAACfEgnEAYVJO6evUZwnNI7NMgAAAAAAAAB05zxpGeZtVFjxV00AgHRxwAAAAAAAAAA6JDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFzQ8NOEhW_FMdxKX5ZKa-AQAAAAAAAAAgUyl96nbKrz6UOSXSc3iffwAAAAAAAABDmWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7AS0eDWg20YjC_s884Pp-RQAAAAAAAAAJz7yF4xFIRpq25tmzB5TjNgAAAAAAAAAkr9OA6z6ywxk33MG1uly6aAAAAAAAAAAZFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASFS55TSwq0w7KNb6oqdqsJwAAAAAAAABDqrDOC_oX1XgrymCyOCSMzAAAAAAAAAAHgwheXdG5yFE9iYsKSBIzhgAAAAAAAAA_QIgnFhV-k7x98pPix58j8wAAAAAAAACiyThBMv0_vHiduuJoI2EtCQAAAAAAAAABOmzVUgwY22EPoqShuZpT1wAAAAAAAAAByCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIBp5IGjJq5SY5vljplV9r5gAAAAAAAAAMSqN7slLdgy2OaneYiiWHQwAAAAAAAAAO6lY285-SV83-nAIgYbFimwAAAAAAAAAGiOrzBCYQs1BopsXJA6o-yQAAAAAAAAAhaHQiNWkf6kHxebx5TYaGhgAAAAAAAAAFaaqkmaiW-eZjkbmF3yguOQAAAAAAAAAHKMe4335ehl83ltXh61_B-QAAAAAAAAAiW2EZxMJf3malwIBSLiHzvwAAAAAAAAADMAnPFQF_2lHHD-22u4f9XwAAAAAAAAAnoXh6R7U5ycUuicuehRK8ogAAAAAAAAALjwKpyuFrSzUTCbnZ9EFuiQAAAAAAAAAJ64C-3H5XSZ9YnnqOjes6bAAAAAAAAABdaC6hbJ6KdHLEjhCg9NYQHwAAAAAAAAEt0xjqN2eHOKsjzvKPeuH6xQAAAAAAAAAI94c0iuzzyiq2admvir0-DQAAAAAAAAA9z_ZeRXCxHeNXTu6DB2OR1gAAAAAAAAACiFkuHlkQPsBsMnUTpjsUKgAAAAAAAAAF", "types": "CANkBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "CaBZMOvKJOCk0Y5gTuUWyw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADB0YTZ3CKaS4aU08RhYA19y5ITQAAAAADA21XZ3CKaS4aU08RhYA19y5ITQAAAAADAz4DZ3CKaS4aU08RhYA19y5ITQAAAAACsr6sZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyn-Z3CKaS4aU08RhYA19y5ITQAAAAABzzZNZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1dK", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GEa_dhde-sUv8ucfkON8KQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBV2", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "62pvoopCxqQWexPJwxWRKw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEYl66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "AQMCBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ayUT0DO-jC_Mh--DNMewkg"}} +{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACindAJ6GSZQSmfOBquczb-SF8bAAAAAADBJDZJ6GSZQSmfOBquczb-SF8bAAAAAADBJWdJ6GSZQSmfOBquczb-SF8bAAAAAAC-R4IJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-QNEJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-OvtJ6GSZQSmfOBquczb-SF8bAAAAAADBLPkJ6GSZQSmfOBquczb-SF8bAAAAAADBLVcJ6GSZQSmfOBquczb-SF8bAAAAAADBLa8J6GSZQSmfOBquczb-SF8bAAAAAADBHr9J6GSZQSmfOBquczb-SF8bAAAAAADBFz6J6GSZQSmfOBquczb-SF8bAAAAAACy7ZMJ6GSZQSmfOBquczb-SF8bAAAAAACy7Q7J6GSZQSmfOBquczb-SF8bAAAAAACytM3J6GSZQSmfOBquczb-SF8bAAAAAACyfX4J6GSZQSmfOBquczb-SF8bAAAAAACx_0TJ6GSZQSmfOBquczb-SF8bAAAAAACjd2dJ6GSZQSmfOBquczb-SF8bAAAAAACjdYkJ6GSZQSmfOBquczb-SF8bAAAAAACjwo9J6GSZQSmfOBquczb-SF8bAAAAAACjlCEJ6GSZQSmfOBquczb-SF8bAAAAAACi_DsJ6GSZQSmfOBquczb-SF8bAAAAAACjBc66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaZ", "types": "GAMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "X8BPxjq5G6hlAhfapGVCSA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAP4nyMCPt5M-rbb158Tnrz3sgAAAAAAAAB3wFolLawtZ8KIPHu9VlFy3wAAAAAAAAA2bCBdTuDS0DbCDGTJHRgQHgAAAAAAAACK68Kd2F2G5cbeqk2uYg-UgAAAAAAAAAAHy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGb2ckm-0wQN1Adu_SQOHiPwAAAAAAAAAY0v3fw3R6M9K5pBw9frSxowAAAAAAAAAfW0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMTbeJ7BYIhIN72fM2Cz8k8m9QAAAAAAASDV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkQu6tVKI4mSYDEJ-ABAIpYXcgAAAAAALiQnIG5EpvTeHopVC9IqkA_kSgAAAAAAAcFf", "types": "CAMwBQIDCQQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-jCT_DocD2AmpR0D2mkSYg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABLN7ynDYiGG43L8r_Igy7BgAAAAAAAAAc7uksKfxFONj3nEtg73WagwAAAAAAAAAMT2c5-p_HTAiWRFE2IbjI8QAAAAAAAAA7h6Obzp5eyXgRpUblA-ofAQAAAAAAAAC9uMFx2Fq4FWmDdC9qTh9OCwAAAAAAAAE0KcjVoO3dzCmC3PrWs_ohHgAAAAAAAAAJjfWZKcvJcvZvI74FMiyrAgAAAAAAAAAB0hcFUvwWZfQvp2KtSe1TEQAAAAAAAAAH5kI3iCVPIGpJyER_pIOiDAAAAAAAAABK_t41Zgn8MiPpsE2ExccvfwAAAAAAAAAISlk7EKKi8JmNp7yELCNTwgAAAAAAAAACNglZAtsVMy0PR4D9Bo4v_AAAAAAAAAAIdH_-XVY1o9Dh1CsvXltQLQAAAAAAAAAJlL02ENMn9TDqCnir50TaAgAAAAAAAAAFECGxOh43abBH5lmW6GWEbwAAAAAAAAAcWz5q8JekpnYi0s7eTlcojgAAAAAAAACvu93Ukboxh3n8fpdAM9THpwAAAAAAAACRcw2Z8udT9L2DdqGSTwVYJAAAAAAAAAAGd4qHdalKlYFqF-4zvAgorgAAAAAAAAAWA40VS-0F5gGiCT87AV4zFgAAAAAAAAAciQVo4-YPSPQT8lzVnTciPgAAAAAAAAARlL02ENMn9TDqCnir50TaAgAAAAAAAAAFhiE_KnpB1y_AkU-QUSuyPgAAAAAAAAAQXKq9uwED2oR9Ctzag8AUbwAAAAAAAAAlJmbV-AH56XNUdA5-wxAqIAAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABHp77QPk88xsYu9Hpoa4_oAAAAAAAAAATwQRLh0_1mVfrLTkzs1izhQAAAAAAAAAHh3WTBx-QeTdXBYE6dCwz6gAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJVyiEhRfD3cpMAUdxvE6uLQAAAAAAAAA6iqG2swMAij35AX8yLqs1mgAAAAAAAAACgif16EmVGvorhgyOj9vZjwAAAAAAAAAggr6Podewhx9_Rz-1pSpjLgAAAAAAAAAFMVr_CbGNEnYyymXVtC8noAAAAAAAAAAJLczqS6cuSWWD7v2xnXFx3gAAAAAAAAADqX44wE4PaOHlvbveOqAZIAAAAAAAAAAb05XKwzdpS7Kd0uKbnrxHMgAAAAAAAAAzVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASIwwbyqFq94TuMsCm_P7YEwAAAAAAAAAFG7bHBS7Fdu6ai7jmhfwpdwAAAAAAAAAUx8ERETcapIt78IXSEO8DRwAAAAAAAAACaLOl6FCWtZ16Qk1Y0IIBGgAAAAAAAAAJIQAGt2O2wqlSa1Y0_Op2AAAAAAAAAAAJiSrhrjEfmkKNj8IX5IyH9QAAAAAAAAEe5rjyz2cJULt1ApwgwhK6XAAAAAAAAAAGkjL3LVO9xzkttD37vWQ9qgAAAAAAAAAG02k8lTPTUqykbeCXCr9k_AAAAAAAAAAiahPUgO5HrpkjK8o4_e1P2gAAAAAAAABfRrfA9-2I1kQdkEBXFQVusgAAAAAAAAACiGdBKMVY5TdyDSj849t27QAAAAAAAABR1F1wIyxCFd03RCBtLTmW7wAAAAAAAAAUsNyfg9ut6Z6dApATH4i0DAAAAAAAAAASh8QiaabflgCjYmifUSAc5wAAAAAAAAAEoEroAMNNQ8CbyJb3fKpwIgAAAAAAAAAAYq1Ak9_WYtjiRUK6jyz9agAAAAAAAHZiFr4KuuAdcuLzUhqxYoXsLwAAAAAAAPNM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAALgLi6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CQM8BQIDCwQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "pKq4i700hPpldKZt8IoC4Q"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAAAaieVPbh3z67ZFj7IGoqq7zgAAAAAAAACTOM9gozgq3V-c4gPwstZkSQAAAAAAAAABF0PU7bQ8aSr5vRj-z9gSNQAAAAAAAAB8_aLNQj4NizwmYCt1Iy9dBQAAAAAAAAB1xIfNH7oj8c26gQcDKc66DwAAAAAAAAAURuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAA8ix3sTGLCNH21piOrMPoln5uBQAAAAAAxhJeeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAObn6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ1", "types": "CAMKBQMDBQQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GtJdhqX9xCV5VGVrQo5CNQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnChGc_KlbDChxhbLYz-xpPwAAAAAAAAALOmzVUgwY22EPoqShuZpT1wAAAAAAAAABrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAK0gz1mhmhTxHCVZG94cP1QgAAAAAAAAAF5AlGpMeJ43kub-4_w-C8rgAAAAAAAAAHvIt65Wo27njJcD5Xdpsh-QAAAAAAAAAC1WDbb1SZcDFebMGD1NIFDgAAAAAAAAAIuAPSket1RIeLt6v2inqVqwAAAAAAAAAFANUDzCguopTSw91qnI0ylAAAAAAAAAAEkRzLpzeNznNKCk7oxweCJQAAAAAAAAAI2x9Jgge3yFGPJiCTMDFHSwAAAAAAAAAF1E7vLqgIEliy4P46okASEgAAAAAAAABVcGRDia95o64czGD3ETERlQAAAAAAAAAA", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OOceu0IxWVevDBws5ShG5Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHX31XT4fd_WKeR1cE-hlLelCQAAAAAACoA6yXT4fd_WKeR1cE-hlLelCQAAAAAACkAGLXT4fd_WKeR1cE-hlLelCQAAAAAAChaNvXT4fd_WKeR1cE-hlLelCQAAAAAACgUQT", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hAcCJcL5OlDgcGDAjn8X9A"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnAydMRjIz1OdcUN0eWHfUfwAAAAAAAAAd4W76RwUjGcgIjQApiAJJHAAAAAAAAAAFgZgYcEFO3c95J0_kRNRWOgAAAAAAAAAGOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB42BUy3BbkpnttyuMqLirigAAAAAAAAANOmzVUgwY22EPoqShuZpT1wAAAAAAAAABmE1ci0y85Ym-Dqw-Q5t-OwAAAAAAAAAEWgnWJF5xNWl_wwu7DvgTzQAAAAAAAAAE-OmtEGD-FWeU3vRNXPLxogAAAAAAAAAd6PDnpLs5LIM9SpjUeSu5BwAAAAAAAAAM4IIlAJ_QWDs41ERNR4mO_wAAAAAAAAC0wAR4gk273_ooOZdD1tA5fgAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJSYSSbioufiMK4TqEn24uLgAAAAAAAAAdIETnUMLdTY0X_27KY2cD_AAAAAAAAAAQXfH1sbSxEuiQC9e5gcEKzQAAAAAAAAAWlOwp8THaapDjttPXb9E-AgAAAAAAAACRIiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdgzv5ZcBM9qZL6-CtFKcz1wAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAABUqPeQ03nZ4m2CLoB308K-gAAAAAAAAAIVhlTljsBJDT98mVay1CuwwAAAAAAAAAFMeupuj3mN3g2ScGhhzmNFQAAAAAAAAF4iRdArD2BL-BvpLz4Pb_AYwAAAAAAAABIC_8b8QYLHmjQu9l_QeSByQAAAAAAAAAUpkqcXQWLIjtT71JtuIAr6AAAAAAAAAAG13EjbA0IjpuaU_N8fi-CjwAAAAAAAAAHwmGhlkvWzfTghgQ1sZAecgAAAAAAAADX5EcD-U0cxRtdESeN-UEmcwAAAAAAAAATuezlLZVYMF9cbBEbxdsDcwAAAAAAAABIgpbgHn7e4Kz5N3-pRcz_dAAAAAAAAABLr0viM1MkQFoluKwRuIJ7LwAAAAAAAAABFGycG9AEWPVJe5tbz77UPwAAAAAAAAASUJNt6Wr7juWI2oGMxpHwHgAAAAAAAAAc-1qdgNrxzH--duaVR1QSFQAAAAAAAACVSyklCBn51Vp_g9q3KLAvZwAAAAAAAAGvnD7QKbPeresstocfBtl0cAAAAAAAAAGPN2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALd2MiI3b_EzPrgd_k9fjnuewAAAAAAAAAu5cVfZbbHReUG0_VPu4ZnvgAAAAAAAAAUo5ekWirNltCbuL3RdYOs8AAAAAAAAAAZ-tADPF5o26h8OuVwJec-JwAAAAAAAAAW", "types": "CAM4BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zKndlJnTB4GWd_wWRBBaPA"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp2HVF-fC6bGu1PSwJc2kzOgAAAAAACHAL2HVF-fC6bGu1PSwJc2kzOgAAAAAAHHBe2HVF-fC6bGu1PSwJc2kzOgAAAAAAHEJ82HVF-fC6bGu1PSwJc2kzOgAAAAAAHEEy2HVF-fC6bGu1PSwJc2kzOgAAAAAAJcMj2HVF-fC6bGu1PSwJc2kzOgAAAAAAEKYD2HVF-fC6bGu1PSwJc2kzOgAAAAAAEKFP2HVF-fC6bGu1PSwJc2kzOgAAAAAAEI2W2HVF-fC6bGu1PSwJc2kzOgAAAAAAEIU_2HVF-fC6bGu1PSwJc2kzOgAAAAAAEJbZ2HVF-fC6bGu1PSwJc2kzOgAAAAAAEI2W2HVF-fC6bGu1PSwJc2kzOgAAAAAAEIU_2HVF-fC6bGu1PSwJc2kzOgAAAAAAEJc62HVF-fC6bGu1PSwJc2kzOgAAAAAAHS5s2HVF-fC6bGu1PSwJc2kzOgAAAAAAHS1p2HVF-fC6bGu1PSwJc2kzOgAAAAAAE3fo2HVF-fC6bGu1PSwJc2kzOgAAAAAAE2lm2HVF-fC6bGu1PSwJc2kzOgAAAAAAE60w2HVF-fC6bGu1PSwJc2kzOgAAAAAAFDHz2HVF-fC6bGu1PSwJc2kzOgAAAAAAEd2A2HVF-fC6bGu1PSwJc2kzOgAAAAAAEb9X2HVF-fC6bGu1PSwJc2kzOgAAAAAAEbjZ", "types": "XAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fMerBmdQ5SEVMKnQRqQ66Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7r0XT4fd_WKeR1cE-hlLelCQAAAAAAC-0MuXT4fd_WKeR1cE-hlLelCQAAAAAAC-1HEXT4fd_WKeR1cE-hlLelCQAAAAAACi94_", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "sMu3Az0KqCo2Eyzj4F1TlA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChGKtXT4fd_WKeR1cE-hlLelCQAAAAAACgSwc", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ngcCNB63nqo3inUXQQ6WGA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAAW9wONEswsASRmLn53bq8pOwAAAAAAAAAxZiy0GwbDorFuNEuEb935dAAAAAAAAAANnP5Trt-dKjuqAt-_lVvSZAAAAAAAAAAjmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAANIfYj4waw9fP9op8fikoTJgAAAAAAAAAGmHLbruajf1ewhD5eRLIwPQAAAAAAAAAEIfYj4waw9fP9op8fikoTJgAAAAAAAAAGu80wzeYkSnSlt8hhdfSXpgAAAAAAAAAsaMdAw5F6bqw1nsXGt00a9AAAAAAAAAAT5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3R8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAANJa8NlMClggx8jaziUTJXlmWAAAAAAAATrT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmwQ", "types": "CAMxBQIDBgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Zo-0ahuX1XcweGrTuXchFQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDLZcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETT2cEvvhuguaGYCmGWrnWRz1QAAAAACEP-qcEvvhuguaGYCmGWrnWRz1QAAAAACEOMYcEvvhuguaGYCmGWrnWRz1QAAAAACENOEcEvvhuguaGYCmGWrnWRz1QAAAAACEMlw", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jWNXniVLSOlQNJgApEy6fA"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAABHaI47B_NxRB-tFVbAaTDiew0fwAAAAAAlkDG7B_NxRB-tFVbAaTDiew0fwAAAAAAuZGe7B_NxRB-tFVbAaTDiew0fwAAAAAAuXiA7B_NxRB-tFVbAaTDiew0fwAAAAAAuUwE7B_NxRB-tFVbAaTDiew0fwAAAAAAuUwE7B_NxRB-tFVbAaTDiew0fwAAAAAAuTIW7B_NxRB-tFVbAaTDiew0fwAAAAAAuWHW7B_NxRB-tFVbAaTDiew0fwAAAAAAyLXZ7B_NxRB-tFVbAaTDiew0fwAAAAAAyJ9a7B_NxRB-tFVbAaTDiew0fwAAAAAAyJ337B_NxRB-tFVbAaTDiew0fwAAAAAAyJK-7B_NxRB-tFVbAaTDiew0fwAAAAAAyJKi", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ibfhubna49sFyP27FXEsMg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBOeYxe-SHgukLEpCkawSk1QWAAAAAABWB4EYxe-SHgukLEpCkawSk1QWAAAAAABV_9XYxe-SHgukLEpCkawSk1QWAAAAAABWAIEYxe-SHgukLEpCkawSk1QWAAAAAAACqAK", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kZUMDJ0NP_gqht7ozwPNrg"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGg5Nz5k14PsCcDvFyUC1kmlV3QAAAAABFqm6z5k14PsCcDvFyUC1kmlV3QAAAAABFPVk", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "QHnHxTKeHarXj9y6s2mHeA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmN6", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FMkhyUSqaqT6qtLpswSR3A"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyn-Z3CKaS4aU08RhYA19y5ITQAAAAABzzZNZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyrfZ3CKaS4aU08RhYA19y5ITQAAAAABz5LsZ3CKaS4aU08RhYA19y5ITQAAAAABwFB2Z3CKaS4aU08RhYA19y5ITQAAAAABuFVgZ3CKaS4aU08RhYA19y5ITQAAAAABtG24", "types": "IQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "CdIveqlX741rRKqxrLHOWQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAAAtt2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAHIG1OnoGXN6zXJZoQUHRmxAwAAAAAAAAAxYEThj3UEuGl2wDiJSq9vSAAAAAAAAACqZou-EwmpdzrcXx7eij10xwAAAAAAAABPIdkGKdrrMvbrgpaqyJ-rigAAAAAAAAAJUpqzzk59PbxypyRs4QkNMAAAAAAAAABTN1R-9DGIZrDXK9x_wnFgtgAAAAAAAABD7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAAB3ZTYW2hueb8qo9sBuOsIdRgAAAAAAAAAn6HagrPNegEb1JoaDvxlnywAAAAAAAAAp5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAADXMgCpDbfqkuF0Au3Mi2jaeQAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADWifN9r0wurhPb3dG8PudTpAAAAAAAAAASywRpFKHnyqIdEibpvZWLtAAAAAAAAAAA", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SidK5t453tuGAMfasCOdQQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAPx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABWdRMG3BjNfH2se-egabnU-QAAAAAAAAAjpv2BnGF3DU5EF7_9vBhh5wAAAAAAAAAj_F5LSDLIFKxMSmE4mnWHzgAAAAAAAAAIQ5prAre2OuRCakrlnLYmSwAAAAAAAAAFpu-N4aBOZsn4VU4z7Imv8AAAAAAAAAAF9ZcPzi6i1uzjxExCGCn20AAAAAAAAAANlqnkRSi2l38NtuG1By7gSwAAAAAAAABFXLN55eJ2HplxP0Fb2YBmOQAAAAAAAAAJ_6rkq2S7o8rMRQJ9AofzJAAAAAAAAACLjwkBY0s-EHDmaMTnMHI2lgAAAAAAAAAYLLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACvqKrM4v33j8Ui9JyIz2QXDgAAAAAAAAA4ZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABYEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAFm3tIqGWDOzCH_q4z0bYhiAAAAAAAAAAzPEbpT_8Xljn7u1j5oJzfHQAAAAAAAAFsifN9r0wurhPb3dG8PudTpAAAAAAAAAASywRpFKHnyqIdEibpvZWLtAAAAAAAAAAC_jcNhXlm_4ESbJ83f0qd9AAAAAAAAABnBvLbND_0DrAH3Z_KTjqNwwAAAAAAAAAIiQ3-U2pFJokP-jlw4Yr9FQAAAAAAAAAJnxv9fnyzQgRP5y-sCtMEGwAAAAAAAAEgE-UV4Q5gHz5xBV_lbP0MMgAAAAAAAAEy", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XknhFZBXH0hH7qwf4yKWqA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEUiA", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "aIuj3UFpTYwKllsd7272GQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBSz", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ecD_mOI8q4Cja1MdFgpfKw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsftbx9jqjuemtiUm8j-_s73zQAAAAAAXsVwbx9jqjuemtiUm8j-_s73zQAAAAAApykkbx9jqjuemtiUm8j-_s73zQAAAAAApxqgbx9jqjuemtiUm8j-_s73zQAAAAAAaQUObx9jqjuemtiUm8j-_s73zQAAAAAAjuiFbx9jqjuemtiUm8j-_s73zQAAAAAAmrY0bx9jqjuemtiUm8j-_s73zQAAAAAAL95e", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EVIFfwgdZj5Sv-6zyEIoRg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAACgg6FXT4fd_WKeR1cE-hlLelCQAAAAAACgrPkXT4fd_WKeR1cE-hlLelCQAAAAAACgrXcXT4fd_WKeR1cE-hlLelCQAAAAAACgq8WXT4fd_WKeR1cE-hlLelCQAAAAAACg4Jq", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0o2kk_kHA6J1PYlTFPM3RA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFlg0z5k14PsCcDvFyUC1kmlV3QAAAAABFlwM", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "c_tET_0OC_GKzFyzhalhSQ"}} +{"Stacktrace": {"frame": {"ids": "Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAMxk6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFE1i6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFDLh6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "AQMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Jog5rnmK6T5_oGh4Qshxcw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAABvZKLj_deYRtPDewbXBnoroAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAwy86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAAFYTifPIvND7b7ICq3M7OVoFwAAAAAAAAG8rtJFGuFDWKgkQ_kOhDwLwgAAAAAAAADcmvWNLiibNh2jmnrh-j3LtgAAAAAAAABui2HnQvZ0pKTd886GmsiskgAAAAAAAAADStb7SO-i1ysmwO8Lu0fgRQAAAAAAAADaCIJa2mPNm8b1wwJ_UCRwpAAAAAAAAAAZQzMU8x58pu8LAFTJ6bQCOwAAAAAAAABnd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAA8DDAjVJl721y2vxKHGSBegAAAAAAltTJ8DDAjVJl721y2vxKHGSBegAAAAAAX3Hh8DDAjVJl721y2vxKHGSBegAAAAAA5TNP8DDAjVJl721y2vxKHGSBegAAAAAAXASA", "types": "CAMvBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "qnJu-cgYKb__w7BJUfq0pw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB874Lz5k14PsCcDvFyUC1kmlV3QAAAAAB88UPz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHpmIz5k14PsCcDvFyUC1kmlV3QAAAAABHpbXz5k14PsCcDvFyUC1kmlV3QAAAAABHeDgz5k14PsCcDvFyUC1kmlV3QAAAAABHdVD", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UA2bJN7NBwZPLtYp95Tv8g"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsri8cEvvhuguaGYCmGWrnWRz1QAAAAAC1cZccEvvhuguaGYCmGWrnWRz1QAAAAAC1cdkcEvvhuguaGYCmGWrnWRz1QAAAAAC1gbJcEvvhuguaGYCmGWrnWRz1QAAAAACkkPncEvvhuguaGYCmGWrnWRz1QAAAAACktJ6cEvvhuguaGYCmGWrnWRz1QAAAAACl9LZcEvvhuguaGYCmGWrnWRz1QAAAAACl9PpcEvvhuguaGYCmGWrnWRz1QAAAAACl9UkcEvvhuguaGYCmGWrnWRz1QAAAAACl8_ZcEvvhuguaGYCmGWrnWRz1QAAAAACknIkcEvvhuguaGYCmGWrnWRz1QAAAAACkkRqcEvvhuguaGYCmGWrnWRz1QAAAAACkmcQcEvvhuguaGYCmGWrnWRz1QAAAAACkkRqcEvvhuguaGYCmGWrnWRz1QAAAAACkmcQcEvvhuguaGYCmGWrnWRz1QAAAAACkkGkcEvvhuguaGYCmGWrnWRz1QAAAAACEOYTcEvvhuguaGYCmGWrnWRz1QAAAAACEBMXcEvvhuguaGYCmGWrnWRz1QAAAAACEBrh", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gfFpjA37RmD2yNdNSpq-Ew"}} +{"Stacktrace": {"frame": {"ids": "EM1xxPB-70RIIw82DzybBgAAAAAAAL7ZUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGEM1xxPB-70RIIw82DzybBgAAAAAAALgNam-Z0RfUVY0oYK5VXRDk9wAAAAAABe36am-Z0RfUVY0oYK5VXRDk9wAAAAAABeu4am-Z0RfUVY0oYK5VXRDk9wAAAAAABeopam-Z0RfUVY0oYK5VXRDk9wAAAAAABeePEM1xxPB-70RIIw82DzybBgAAAAAAAs5PEM1xxPB-70RIIw82DzybBgAAAAAAAZkZam-Z0RfUVY0oYK5VXRDk9wAAAAAACRE0UJmIMEc6K8gJ39NHYaD0WwAAAAAAEiet", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dOIMHL9CWKMrBAKtwKwBGA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSJ7", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "BH5bAWAGW7P6C3ONF8Dn_g"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACOVgImNB_AseUMjfw9acwHDgAAAAAAAAEjHVH5DriP2pa77x1ZoXUG7AAAAAAAAAAk9OzUb7JNYeSMrBmReN9TLAAAAAAAAAEw3ktdpK4jZYOeGOMnKE591QAAAAAAAAAFqbE663jMUK0zZ7ijkl_AugAAAAAAAAB_tSoQcDVRjSU4uYcP1lWNWQAAAAAAAAC7T8onotV9lg89BkiEKBT7jQAAAAAAAAALjj4EO_grm_cOEklAp23b9QAAAAAAAAAJvAJHjqNGr3CUZ2XaU7rPiQAAAAAAAAAnZb4pGe2cTLCA76HvxkNMNwAAAAAAAAA7YqT3WwhcvvvGwqhq_677_AAAAAAAAAAMAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "e0O8X9eAL4BpJRLkqPPdsQ"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAAAKg9L9Bd3XIiGWasJdN8trI5tgAAAAAAAq6TL9Bd3XIiGWasJdN8trI5tgAAAAAABckC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "AwMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "tlE9sCDAlzZZrdyWLdj4Ww"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEge1", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "871NTow5Z00sy62U0HfiHg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmtO", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "uWoxl8Ng7kbwfwj2W7U9XA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjXzz5k14PsCcDvFyUC1kmlV3QAAAAABGOHuz5k14PsCcDvFyUC1kmlV3QAAAAABGN0Mz5k14PsCcDvFyUC1kmlV3QAAAAABGNmNz5k14PsCcDvFyUC1kmlV3QAAAAABGX7Iz5k14PsCcDvFyUC1kmlV3QAAAAABGNbV", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0ueg-nEwDfGvoNm5J5xvUw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiF-kXT4fd_WKeR1cE-hlLelCQAAAAAAChWmLXT4fd_WKeR1cE-hlLelCQAAAAAACgUOc", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "R4BvGvXkjCLRnrdiI_A8qQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAAEJm5p8puApNHgdtwb3aFhxPAAAAAAAAAApxDECjxfRDF0SAcicHv7yIgAAAAAAAAABSsODsFdp0k4d_SSQAFmIUQAAAAAAAAApzzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIcPy2QFuGdjzuVBNv2-JtzQAAAAAAAAA5FQVEqfdF3Gc5vOLVf8c4EAAAAAAAAAEpcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIiaYGOKrCYzeQFPvSFK3LGwAAAAAAAAAlcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAI3FmF0iegYInyRffZHSr8AwAAAAAAAAAv1Az5XiB-HqkM2KIxBs7pHgAAAAAAAAAzXmgLknRmXWrjNm14n69KUAAAAAAAAAAGcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAInQRJ3xr79n3cY6qS99IffwAAAAAAAAAE7EnnOhShMGZ9Te5BWwjtoAAAAAAAAAATopFI2iPPQrSoKgHSzuYsiwAAAAAAAAAIytmnDvqR2kv8bcodWBOqIQAAAAAAAABnKKci4M_8u3lv7Ydwxf31oQAAAAAAAABhsUo4V5ggmQmDpXEq3uSXMQAAAAAAAAACABipyEawAgbPQx-X36vFuQAAAAAAAAAnzwiX7AgVqL-aPC-SuEi6CAAAAAAAAAAHuC86pFXXnBLCj6eRRljPDwAAAAAAAAAQNc9gj1rv2NerZVTmjxTx9AAAAAAAAACGqN4Vqjijt0HHN8TkXT1dVwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAHCKeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARhH", "types": "CAMlBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "sTBxctfZyjL7MDyWD25UbQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADB0YTZ3CKaS4aU08RhYA19y5ITQAAAAADA21XZ3CKaS4aU08RhYA19y5ITQAAAAADAz4DZ3CKaS4aU08RhYA19y5ITQAAAAACsr6sZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyn-Z3CKaS4aU08RhYA19y5ITQAAAAABzzZNZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABz3C0", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TyPvb67X2QKa-JckQs7uaw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw1x4XT4fd_WKeR1cE-hlLelCQAAAAAACwXCPXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FQMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "pc1CY99fyq22J_NkRA7yrA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipGH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipDo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Zq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Ei6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjoZw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjnjh6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjiEf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjD-Po9I8XHop3y7uLb8wdADAN______AbGUXo9I8XHop3y7uLb8wdADAN______AbGQZ", "types": "FAMNBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nXgGLlKDQCNZ9DDAVm_tzw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA70RgYbC2fQjxygsXZf0s0DwAAAAAAAABPiAgP1DBH7Z9OPzvK7kQabQAAAAAAAAA3brHwMWIWqKKcmy2jXj1-xAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADXgFPyL3qH7XvAMbrBvAuRfwAAAAAAAADbtEnA5bbecd5HgfHANQcYvAAAAAAAAAAMRzjbtVKcKAJORTMSkyG2eQAAAAAAAAAGvpboNfauwLs6xQ0xkHOOWgAAAAAAAAAtO6091ZB5jV9xKR7I7_uzYgAAAAAAAAENVP2iu3D_L8M5jxqo2fKWYAAAAAAAAAAhqmQpaCXwQ_DuGH3g4fme8gAAAAAAAACROhsNNHZSFXnOxOfCjJd7_wAAAAAAAAAgAmq1Q_OWnEFyfJsbIWLjHgAAAAAAAAAFtZILhVK2ipxTDxAkV6lYYAAAAAAAAAAeSIWLB-q7XDjtQV-fe_Xm4wAAAAAAAAAFcbkwHPYF70VsNmLVqI_lxwAAAAAAAAAv1LWZJ-lujpfxLmSgW40IUAAAAAAAAAA2Nq-HYNBtSIE_8ynEeqGhFgAAAAAAAAAEM1EMv-oV9MXHpzn1zjHC_gAAAAAAAAAEr7JXAcCwImWiXtuB_xZxrgAAAAAAAAAs6hnpYz-PMLwW_n2OxI4xYwAAAAAAAABet4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFWBMHCRX8lWXCL34L_UW5igAAAAAAAAAMSWCN2gcp4LclJfURa_1mCwAAAAAAAABhAUF9qfndDpPVzyW0cm1sXgAAAAAAAAAY0gz1mhmhTxHCVZG94cP1QgAAAAAAAAAF5AlGpMeJ43kub-4_w-C8rgAAAAAAAAAHvIt65Wo27njJcD5Xdpsh-QAAAAAAAAAC1WDbb1SZcDFebMGD1NIFDgAAAAAAAAAIuAPSket1RIeLt6v2inqVqwAAAAAAAAAFANUDzCguopTSw91qnI0ylAAAAAAAAAAEkRzLpzeNznNKCk7oxweCJQAAAAAAAAAI2x9Jgge3yFGPJiCTMDFHSwAAAAAAAAAF1E7vLqgIEliy4P46okASEgAAAAAAAAEEcGRDia95o64czGD3ETERlQAAAAAAAAAFjgFie9OcTMpMeBzHaR2iBgAAAAAAAAAEljU-LP57RlgNPZ2rSqp_EAAAAAAAAAABWsCQmTSDw0k0qcC-8oiYqgAAAAAAAAAA", "types": "CANHBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zeLqMJxxpT2jsR6Xt4zqGQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbPkXT4fd_WKeR1cE-hlLelCQAAAAAACi_9XXT4fd_WKeR1cE-hlLelCQAAAAAACiJjoXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "67zkXT7kJq28ZrcWkggawQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlw0", "types": "FAMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "VW2DzidLUTHtdiNaTOU8GA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAAqadyH-5f8qL7d_nwuPRSZEwAAAAAAAAApZC4caaBbQcOc2WclRiklUwAAAAAAAAAMQJ-JVADSuuonf59sOKCy_wAAAAAAAAAA", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "qW4np8gUc9rtXbps9-9CWw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAGx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABW1vmWfRl7JvnIelrwmbOFDwAAAAAAAABd3KV0rpkE2E6w6XxWj_IWXAAAAAAAAACUUIi5ycXqqmfLS1eYAMvuZAAAAAAAAAAFq05wRGTyKeDcDO2hxwf0fAAAAAAAAAAF7Gg3ynNracz03llaovpNygAAAAAAAAAF", "types": "CAMSBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "G-0PF80NWvHlwwAy42bKIA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAATo2Vqo1n4TLgDJq9tPgwAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARxBGCEPBdnG6Mds1nJf4tcQAAAAAAAAAGzXf1O_8jknZjcKGu5cQjJQAAAAAAAAAgPHkw6KCW6WHcDhD0gWZvxQAAAAAAAAAXqjkbzJCs46utKAIQU_ZjYgAAAAAAAADmaG38C7AQR-wEDFFefkRnfgAAAAAAAAAsdawGhH-93Zf3Xci2M9UlFQAAAAAAAAAMPhHweSUk-rcHLCvi4mySwgAAAAAAAAEsryiaiFPVyjm4XARK10gZ3QAAAAAAAAELu4IYC5TN1ydgkWzSPfggOAAAAAAAAABSTOT6Kzt9cNfqtt7rfwzzSwAAAAAAAAAElu3U19P1ddOrJLDu-spLOgAAAAAAAAAHSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAiHAV7Zh5H5JQPHONsGvZ0PAAAAAAAAABXWb65uaTCBYe2MCZtuMHkqAAAAAAAAAAWdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFpyn-2AN_sBw7fWxvhZ_ovAAAAAAAAAAIZLVm2Yq3JzpECVJuRqNdawAAAAAAAAAQrs-7smSxpcCpQ4EcnQyDfwAAAAAAAAAdgkppypvMO9S8VR3D3H8lzgAAAAAAAABEdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF1V8iUm4ymRrWn84wHbGE5wAAAAAAAAAIZ8eDanRMy6l7sesw4dYkqQAAAAAAAACzkTJVCBjDfmFAPRrGLStltQAAAAAAAACPd1HUDx--zqw--O9SJhCTGgAAAAAAAAAIm2-tH33cq1FP2Q7Is62J0gAAAAAAAAACUvL0y1JUslNFPdxuHL61jgAAAAAAAAAIQ1b7jdbtxavHFLXq_nCrrgAAAAAAAACKpxHkQ9M1dNDXsuZ3PuZiaQAAAAAAAACHkgbfix2D2TfaYMD2TJSWJAAAAAAAAAAYyXWFMIbkwU7jqv0ggmjvVAAAAAAAAABHVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAApOzkHkS17HRu8c3H4oJbrdwAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFnpPhwY_ic31u1gmBHOrU7AAAAAAAAAAU0cZiHBBWN2vYtEyCZ5X5wgAAAAAAAAA3pzTcRcencDxd0mEO6HA0bAAAAAAAAAAFdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFA_f9j659izgXSTlh6Tab-QAAAAAAAAAQLrT96WuiUXgKg4BgtAP98wAAAAAAAAA_dswq7UFB-c5kE0TfryCD4gAAAAAAAAAFpjc1-JTccEPjdmvL7IyGRgAAAAAAAAActLWCyKrEBYGzX2N5W13-8QAAAAAAAACnHs84X9WR2gx5bBItVVyJWAAAAAAAAAB4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFYqSD5Hl57zxJljwXyAsavwAAAAAAAAAMn-IlVo5-jcMpxFIQmT8ZXQAAAAAAAAADXNiEFVfexcwhuzJE2wFqSQAAAAAAAACouB_3Gzwjvj1RjZpSgTL9mwAAAAAAAABHcemtT_LtuQxWV7j18_T0KgAAAAAAAABE3Cqr4IYWZNFEOAT7GHij5QAAAAAAAAAIYldLdAhiU1Ikhg1VTxvqJwAAAAAAAAAVdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFz8YcS7kQQWoeBfgskdVBqQAAAAAAAAAYa1rORv6uw2uAWC1se05SoQAAAAAAAAA7ReecyGgWWJgzc543tXNeIAAAAAAAAAAlskGfd5BDAMA1fbyY3ykq7wAAAAAAAAApdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFdARkiftRl5NVojcjp193jAAAAAAAAAAMBFzsvc2FJJqJ7MOfSIYcgwAAAAAAAAALdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINabLzAQAM62JeaJIyCWDwAAAAAAAAAYSVYBVG1fCfTODpNzLfPxlQAAAAAAAAAi0YsnzQnMKXvFIy6EpgfjkAAAAAAAAACzpNCOyiVwjuXBJuAQYmyfWgAAAAAAAAAQ0iD-cS1eIkEni9SNzthfngAAAAAAAAAdYGWVVbrNUpdnBpF_fR4SdwAAAAAAAAAGOn3v6Dv2rwT8WclZhpQ9IgAAAAAAAAAHE2NlszEGRXNxKeW09blqBAAAAAAAAAANwzZaceuyvwDXeTAM8IhEDwAAAAAAAAA0Yu_6L4HRShupVCJ8N-cmXQAAAAAAAAAH9PmXvHucczCVlI0S70oJBQAAAAAAAAA3tiJNC5TRsJ2Po6yB9hj7ugAAAAAAAABGyanW-NWn1yU-ZmISz8_K-wAAAAAAAAAms2LTirMvOXiDsBun6I-UyQAAAAAAAACfb_ElB1I-v_CyZZ9WkymqkQAAAAAAAAB0isA5sAubGPm1mkHKsussQgAAAAAAAAAQSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFqzxXvZKl9cR-1XCNC1BjGQAAAAAAAAAg3ir-1yKStl3nukZF4xyXAQAAAAAAAABAC-NMw9vE7-rFK10EWQYO_wAAAAAAAAAho8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_-Qx-pCy53U7YabuA5eb0fAAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJPeJFTdbz8JGDuMv22vt3yAAAAAAAAAAkfiNry6aywxk33PR7ZSinSAAAAAAAAAAZyanW-NWn1yU-ZmISz8_K-wAAAAAAAAAmbZRwWM7SmFPsrzq-cg210QAAAAAAAAASyanW-NWn1yU-ZmISz8_K-wAAAAAAAABD2Ims6MoX1Xgrymv6lvzgDAAAAAAAAAAH04jbaimoCFtwGn506T5lyQAAAAAAAAA_RJS3mfuj1SlbMar-vOH9CAAAAAAAAACi9rD5odZJVMPFsyKAQ0JZdwAAAAAAAAABOmzVUgwY22EPoqShuZpT1wAAAAAAAAAByCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIsKSbqfkKPLUDx6XDG0OMRAAAAAAAAAAMwShKKQbdgy2OaZjDOPTMUwAAAAAAAAAO5M-fyJXzZzW8DvCgOZZ3FAAAAAAAAAAG9tBq-irshkmth8o7ZIdyJQAAAAAAAAAhqt_wQv8WVW9Nn0zPpw6ZYwAAAAAAAAAJtS_HFERyiZnZzL5HZnbArAAAAAAAAABr2SsSTdYmCfm-g39jtVjCvwAAAAAAAACTBJf_YwgHp7Yg-TjdIMYP_AAAAAAAAAC00mM_z6Wv3d5Hlet7vNYQBAAAAAAAAAAGsRC-EYSM_wjZFQySXQa74wAAAAAAAAAFTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFLI7hHy8LyfIAUwZcB8iKFwAAAAAAAAA8dNeX5fcNMGja1UEMRoE5DwAAAAAAAAAaNZgS_masnJN3AvEMpCeN1QAAAAAAAAH83LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAaZ6-SBdAVlrtQxIkO1BQIbAAAAAAAAAAFBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABG3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAaZ6-SBdAVlrtQxIkO1BQIbAAAAAAAAAAFfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJWtYwpXZiYRFgEt1nxr5kLwAAAAAAAAAcj_szotBjFArpC5TNR-8gUQAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASPc_BexFq94TuMog9IsXVUwAAAAAAAAAFSZAt-g5Y9rkRhquz_kA7tQAAAAAAAAAg8T1U1Mk0_z7jRWhB49ZqDAAAAAAAAAAF5l-2W9KB4tO_4MUXJhjp9AAAAAAAAAAQ_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAJfpCTa2Wfr3Ii1CHPbLs62AAAAAAAAAAJZlAa-8GOzk2cNYWa7bT2wQAAAAAAAAEZNhsvdrVhO142ZMTjcR-obwAAAAAAAAANtQjdsVMJULt1As7mbOCEqAAAAAAAAAAGMMAujfe9xzktoHyDqw_cGgAAAAAAAAAGKGVSBMVyriI5T93UZw1WLgAAAAAAAAAE_qkVJm0NxTF9ak3kQe9veQAAAAAAAABazzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIOgrnocamUAo62UJ-c4BU1gAAAAAAAAABcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAI3FmF0iegYInyRffZHSr8AwAAAAAAAAAv1Az5XiB-HqkM2KIxBs7pHgAAAAAAAAAzXmgLknRmXWrjNm14n69KUAAAAAAAAAAGcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAInQRJ3xr79n3cY6qS99IffwAAAAAAAAAE7EnnOhShMGZ9Te5BWwjtoAAAAAAAAAATopFI2iPPQrSoKgHSzuYsiwAAAAAAAAAIytmnDvqR2kv8bcodWBOqIQAAAAAAAABnKKci4M_8u3lv7Ydwxf31oQAAAAAAAABhsUo4V5ggmQmDpXEq3uSXMQAAAAAAAAACABipyEawAgbPQx-X36vFuQAAAAAAAAAnzwiX7AgVqL-aPC-SuEi6CAAAAAAAAAAHAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAP4BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "V0FscKR06PIQDFIotfIKkQ"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrkykgtQ4kMk_MBWrPUAFqVnYywAAAAABq7bsgtQ4kMk_MBWrPUAFqVnYywAAAAABq7GYgtQ4kMk_MBWrPUAFqVnYywAAAAABq6JkgtQ4kMk_MBWrPUAFqVnYywAAAAABq42MgtQ4kMk_MBWrPUAFqVnYywAAAAABqGtGgtQ4kMk_MBWrPUAFqVnYywAAAAABquU1gtQ4kMk_MBWrPUAFqVnYywAAAAABro5C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cqW9xWRuxaMM9GXDdvExfQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABiUDU1_CPvfFPVWUEWglidAAAAAAAAAAAoWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1eNbj51SwVufxZ4R3ztSduAAAAAAAAAAMRLw4AzQ1twQD4Yf1dhVtogAAAAAAAAAICEhlVwLkGcF6wPQ9FYzYUQAAAAAAAAAFEqtQxEspQTRRSSWWTkm-NgAAAAAAAAAJnPcpIVOjAbk4oUD0VpGGhQAAAAAAAAABZ_WnWFmJraaLolV8hl2sigAAAAAAAAARmoug4ghdvV0L6kc1EBfG1gAAAAAAAAAMEv5ZvILr4tvntiwSPeUhSgAAAAAAAAAI1dAR1DRu30HO0nOIbN0CKgAAAAAAAAAFGMI3PZtY4pqLz85PHavuaAAAAAAAAAAH0LGXmFocz46kL18OXWxszwAAAAAAAABkYQC-zo420OhfkqInQzaDKgAAAAAAAAAgnZYX4eDXJe7LJpXvPCTaIAAAAAAAAABM5cqp6ABMm5Addf0FgPKQIQAAAAAAAAAYncSTizlv_pFu2fK48OzJugAAAAAAAAAEKx8l7dXRj3ShNeec-0AIJQAAAAAAAAAADHMn6ZZcNA6-RmrkDCI6igAAAAAAAVfiDHMn6ZZcNA6-RmrkDCI6igAAAAAAAWBneJ7BYIhIN72fM2Cz8k8m9QAAAAAAARjk", "types": "CAMlBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "A9Ir5iH3kK5U00HEUoEd1w"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAAAtt2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAHIG1OnoGXN6zXJZoQUHRmxAwAAAAAAAAAxYEThj3UEuGl2wDiJSq9vSAAAAAAAAACqZou-EwmpdzrcXx7eij10xwAAAAAAAABPIdkGKdrrMvbrgpaqyJ-rigAAAAAAAAAJUpqzzk59PbxypyRs4QkNMAAAAAAAAABTN1R-9DGIZrDXK9x_wnFgtgAAAAAAAABD7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAAB3ZTYW2hueb8qo9sBuOsIdRgAAAAAAAAAn6HagrPNegEb1JoaDvxlnywAAAAAAAAAp5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAAB3ZTYW2hueb8qo9sBuOsIdRgAAAAAAAAAn6HagrPNegEb1JoaDvxlnywAAAAAAAAAp5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAADXMgCpDbfqkuF0Au3Mi2jaeQAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADNq5-VNNWJnEe4GvJK3_qvJwAAAAAAAADF4J4WxzKvOwTg2PxoPnS9CQAAAAAAAAEJHr4PYZ-sL6e-tu-94q7YcgAAAAAAAAEX09pLhX8Ysxadrvlyzhew7QAAAAAAAAAA", "types": "CAM3BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JWJHnXkfutLim5-WdEj40Q"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_ecYcEvvhuguaGYCmGWrnWRz1QAAAAAD_C_kcEvvhuguaGYCmGWrnWRz1QAAAAACFSqRcEvvhuguaGYCmGWrnWRz1QAAAAACEM0Y", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RFLu11z3TNPa75y9d_ZSXQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChlYsXT4fd_WKeR1cE-hlLelCQAAAAAAChdvPXT4fd_WKeR1cE-hlLelCQAAAAAAChc-EXT4fd_WKeR1cE-hlLelCQAAAAAAChcau", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LXztxA__HEtNSZCEs61QIQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIshq-irvfX-gF1mgvoEZeYQAAAAAAAAAos1Tvc2InyAqwYOGzitnwSgAAAAAAAAAivh95vnAekW2EEzTrB30qOwAAAAAAAAAeZ6-SBdAVlrtQxIkO1BQIbAAAAAAAAAAFBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFh5U_1XvNyeon9l2W-4YQpQAAAAAAAAAsABic3l15LWzfxEDtDgq1DQAAAAAAAABd655cFkYo375T8NGzpy-aFwAAAAAAAAAXhve4jX92AzYM2N-JeQNG2QAAAAAAAAA1uoQ2M4bRS4Qydql36um4PQAAAAAAAAAu8Zl1Hn34Qq3KbfhSotUixQAAAAAAAAAcyg6hUybbKOuy2Th8HYOfDgAAAAAAAAAQwAR4gk273_ooOZdD1tA5fgAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdXgVcJKYEqhGaSbBYfKBXOwAAAAAAAAAQXfH1sbSxEuiQC9e5gcEKzQAAAAAAAAAW1w2R0Z8nd4XHXpj3W-TC0gAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdctx_9RVQASujUdCT9XDhwAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAAB06nqjE-VI9IYqWvJ2OibVQAAAAAAAAAI8Lr1AwdmXjQ6E8sJ1LQOsQAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAZifuzCpl1zo6zLw_paxkEdQAAAAAAAABs-I0qeKDe1hMr58wzZHuN2wAAAAAAAABsl13-SoPBw4bKW1S9hBZQ1AAAAAAAAAAFQQ-UobY6DFPGcpuf-3bTQAAAAAAAAAAG3FuDUMlDvgG9GoiEZRKtkwAAAAAAAAAOvBQwZ05l4giD114gt0KIBQAAAAAAAAAZHAPuRG_LRRYFUeA5sYpd1gAAAAAAAABEs4zVuFE809K66EfKcw5rKwAAAAAAAAAQYvScvdM6KJZLJ6guypJyfAAAAAAAAAGsXODh_PNTdI03DfbDbvh0RQAAAAAAAAAWJyvX4de4kP3zAAP_GoR7XwAAAAAAAAABMCPvRzL0hLsMJ48442a8vgAAAAAAAAAfNuF0Vjxg0AdDzEk0Ow848gAAAAAAAAAEiPPUfu9aSOA4JmX0lgUXQgAAAAAAAAAHrTxaKzkbha_JID224cs5EwAAAAAAAAAHr2p-9d0QpDfcdk32QsPfVQAAAAAAAAA2h9JxRYZ-Y8EVIiI8sDoSGAAAAAAAAABVN_pUSQ-9lnubUvA5GPAV8AAAAAAAAABBHjwmgDoyi_FLJh0vwPhLsQAAAAAAAAAb-AsoQW73iFI5fH1Iwzki_wAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAKnRpp6LgRqCGeGjs7cnnwItcAAAAAAADxpB", "types": "CANSBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WI00fQbxRwJuj8sF5Tzd2g"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAnEGqyFI4UBcYw0uODaUlP_QAAAAAAAAAEo7sR_pIbiVV_Z8TfMWbBfAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALVhUIBMnDjpGauL-PhicCqgAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl_plqR4x5xi_qOVu9JWCxQAAAAAAAAAEYNvLePk3bv25BUHN3KzEXQAAAAAAAAChMo8MRZcTTA5MSH5mIc8c7wAAAAAAAABiYNvLePk3bv25BUHN3KzEXQAAAAAAAAAkq6h8WxXFV1hXZzG4J6n18QAAAAAAAAAWmW2YX0W7f8kHZ9OF_UwxgwAAAAAAAAAGLE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAChAAnABuJtrWflPvotxCoPjQAAAAAAAAFDgM-zvldT2mxZOhlxJvpRXwAAAAAAAAAXc0OkgT3_p45M6FsCvH3WnQAAAAAAAAAVBrUFbWJQXA38LKOgrDwJigAAAAAAAADvR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAW40ES46dU7pwVTIhZzOkjPwAAAAAAAAAjJka4_scu9xr1JKUZQmFbgQAAAAAAAAAegfz1ToZobLt1aklyZQg9bAAAAAAAAAAId__-FJDRZlyO8YWNJRXoCgAAAAAAAAAQT5Q31GDfksV6CJ4DGSPDfwAAAAAAAABU", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3BMUu4iAPcjnLzSizH0l2A"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZFDZ3CKaS4aU08RhYA19y5ITQAAAAABuDoeZ3CKaS4aU08RhYA19y5ITQAAAAABuDYbZ3CKaS4aU08RhYA19y5ITQAAAAABuOzgZ3CKaS4aU08RhYA19y5ITQAAAAABuC37", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0qXynUHKB0uj6o5ggMEZJw"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAABHaFY7B_NxRB-tFVbAaTDiew0fwAAAAAAs3CN7B_NxRB-tFVbAaTDiew0fwAAAAAAs22W7B_NxRB-tFVbAaTDiew0fwAAAAAAszCS7B_NxRB-tFVbAaTDiew0fwAAAAAAsym57B_NxRB-tFVbAaTDiew0fwAAAAAAsnXe7B_NxRB-tFVbAaTDiew0fwAAAAAAp4i-7B_NxRB-tFVbAaTDiew0fwAAAAAAptbR", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "s5Kktz8Nmqj2dhyMqgHigQ"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXEEgtQ4kMk_MBWrPUAFqVnYywAAAAABqaCzgtQ4kMk_MBWrPUAFqVnYywAAAAABqagr", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Las4OgqTRbuEV37-qgK_lA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYCMh__DRjYW6WKuSO4E-9UAAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFaD5tQt3PTji3IEVewu1DRAAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATMjSrWlLYBonpC2jkI8XqZQAAAAAAAAAKmVg5ImyOXWtTMPsPyAoJFAAAAAAAAAADeCd7pmEC4QoP7FQm1ikosgAAAAAAAAA7TVM20KHeVfi3WiDttLaC-wAAAAAAAAAC0x-UDWXgJuxMxIbzLxwzzQAAAAAAAAAEm6GbdumwIZ5HutRKgvHDQAAAAAAAAAAEEPkRJFILsKGYvAhwh_S9kQAAAAAAAAAMxLOLXg5EKZgSVcI5Dw46ugAAAAAAAAC4TTYsykzwRWGC2DP0T69z7QAAAAAAAAAl2mls36J-19MRabNbSCaaCwAAAAAAAABASlb8MNVKIFfE9HJqtN3BhwAAAAAAAAAAGXH6S9Nv2Lf0omTz4cH4RAAAAAAAADIkfhsEKXDuxJ-jIJrZpdRuSAAAAAAAAKGdfhsEKXDuxJ-jIJrZpdRuSAAAAAAAAI9n", "types": "CAMhBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TlYJWGnBS9-rQro1JWkfVg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmqD", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "t1xfFBeH5Fl1K12J5A31pQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCveXT4fd_WKeR1cE-hlLelCQAAAAAAEODDqXT4fd_WKeR1cE-hlLelCQAAAAAACwtaJXT4fd_WKeR1cE-hlLelCQAAAAAACi_9XXT4fd_WKeR1cE-hlLelCQAAAAAACiJjoXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PVGyZ-hcrKKgRdjqX66tZA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAHvdr7nJhzDAJ3KA627xZhFegAAAAAAAAAUE66a7lKbkjXDy4kHrdweRwAAAAAAAAALavH6-iyYHlN_flagvaXwWwAAAAAAAAAK5JuKxbkWPMw0EpITr8WSNAAAAAAAAAALCcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAAACQh22cv3M-xNK0_IOuNdQuQAAAAAAAAAfEoFbrQxdzAWAToQcZb4i-gAAAAAAAAAEeSDVI8fOAZv0e5U1CWeTYAAAAAAAAAAA", "types": "CQM-BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Akrp9yIrXr_ryMAZNM70fQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAP4nyMCPt5M-rbb158Tnrz3sgAAAAAAAAB3DSeW5vniUG6RwPchwmi1uQAAAAAAAAA2bCBdTuDS0DbCDGTJHRgQHgAAAAAAAACK68Kd2F2G5cbeqk2uYg-UgAAAAAAAAAAHy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGcvKtJGgNPYlj-CA3c92J7wAAAAAAAAAY0v3fw3R6M9K5pBw9frSxowAAAAAAAAAfEXm1hlIrQc2WIKO4W87lDAAAAAAAAAAfDm9DG4ZqDn_4bGJnyMFN4AAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEKC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAkQviZSkKN3zNxr0HYuO2pqe5hQAAAAAAoo3u", "types": "CAMyBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fuQU1xXehuPaV3dvFr19Ww"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAABcQrw_bSROFZCKPRirqN5crwAAAAAAAAAEmNKQ_cGBX-X-PxTw057WHwAAAAAAAAAoPe3ctc9W4J1u_ZCOerqNzAAAAAAAAACGnZmkelHuL2rN_AY8H-OMEgAAAAAAAAAFgmjUzsxRLEujWJFPXkncMgAAAAAAAACLzw0wKeXSScV9zb0GbnSg3gAAAAAAAAD4xojp5VBQ5xwqQiCbnXCnEQAAAAAAAABJUzpT8KmlTneCrZW0Xa3m6AAAAAAAAAEgwELFL8jGCRMErF4_7iFL_AAAAAAAAABJGWaNS7Aannj1ZssQUxZReQAAAAAAAADM6euAcrRks5bLxxAuk2RtfgAAAAAAAABKeLa88eGD5YHpas6x1G8apQAAAAAAAAABijqaYqwrn000ejmETNv3vAAAAAAAAAAA", "types": "CQMYBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "78g2NV3y5XhUtCz2lybgzw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABFvIYxe-SHgukLEpCkawSk1QWAAAAAAAANUzYxe-SHgukLEpCkawSk1QWAAAAAAAANPkYxe-SHgukLEpCkawSk1QWAAAAAAAA0OOYxe-SHgukLEpCkawSk1QWAAAAAAABq0H", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TSDielWbTpTMTTrXP_2Ocw"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXDNgtQ4kMk_MBWrPUAFqVnYywAAAAABqaJ-gtQ4kMk_MBWrPUAFqVnYywAAAAABqYJkgtQ4kMk_MBWrPUAFqVnYywAAAAABqYXkgtQ4kMk_MBWrPUAFqVnYywAAAAABqZbZgtQ4kMk_MBWrPUAFqVnYywAAAAABrX65", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Gb-XavvnF8N6aNRB03ZHSA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAACLHmuH5pCGXma5ToZjJwiZHAAAAAAAAAD9rG4zWNbzF43FlUaeZiWkVQAAAAAAAAC5M43VZw3emUYxEGolzsc4cQAAAAAAAAAESxBEkZVEzrql9ThYOxK2HwAAAAAAAAAA", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ROx3_noWEM4PMqEgmejD5g"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYpqL9Bd3XIiGWasJdN8trI5tgAAAAAAA1YsL9Bd3XIiGWasJdN8trI5tgAAAAAAA1LtL9Bd3XIiGWasJdN8trI5tgAAAAAAA0YUL9Bd3XIiGWasJdN8trI5tgAAAAAAAqzPL9Bd3XIiGWasJdN8trI5tgAAAAAABcqv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "BgMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "A7VJJLLjTUy6Yc_w9sUC9g"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXDNgtQ4kMk_MBWrPUAFqVnYywAAAAABqaJ-gtQ4kMk_MBWrPUAFqVnYywAAAAABqYQWgtQ4kMk_MBWrPUAFqVnYywAAAAABqYbkgtQ4kMk_MBWrPUAFqVnYywAAAAABqaXXgtQ4kMk_MBWrPUAFqVnYywAAAAABqPiX", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kEFPe4Uplkug1J6skqOdoQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsgobx9jqjuemtiUm8j-_s73zQAAAAAATTx9bx9jqjuemtiUm8j-_s73zQAAAAAAQE2Pbx9jqjuemtiUm8j-_s73zQAAAAAAQDPXbx9jqjuemtiUm8j-_s73zQAAAAAAlA2vbx9jqjuemtiUm8j-_s73zQAAAAAAlAxkbx9jqjuemtiUm8j-_s73zQAAAAAAQE4r", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2C74qCVGzZTHngBDop625g"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvU6cEvvhuguaGYCmGWrnWRz1QAAAAACLroTcEvvhuguaGYCmGWrnWRz1QAAAAACLsWTcEvvhuguaGYCmGWrnWRz1QAAAAACLsmncEvvhuguaGYCmGWrnWRz1QAAAAACL74lcEvvhuguaGYCmGWrnWRz1QAAAAACLvbWcEvvhuguaGYCmGWrnWRz1QAAAAACHvVycEvvhuguaGYCmGWrnWRz1QAAAAACHyB1cEvvhuguaGYCmGWrnWRz1QAAAAACHxSTcEvvhuguaGYCmGWrnWRz1QAAAAACL7GOcEvvhuguaGYCmGWrnWRz1QAAAAACEAK8", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zQindYwMtv8QD8UZS8rDBQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyFRZ3CKaS4aU08RhYA19y5ITQAAAAABtxRqZ3CKaS4aU08RhYA19y5ITQAAAAABtnohZ3CKaS4aU08RhYA19y5ITQAAAAABudIg", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "QtONVQ7ixoD2XEX10A1hkQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAABz9J54Rq68TS7B5VvAGA76dQAAAAAAAAAMxhOAoPbUvqtSdEcy7uoPXwAAAAAAAAAFeXimxJw4055xWDImg8DzoQAAAAAAAAAqbKlVw9gLE4jRKTChgrEglAAAAAAAAADModI-mpJC6OJmTYf_rv8B7gAAAAAAAAB-H0TC0UQxoqJIVHdEdBPgvgAAAAAAAAALs7VKGxcbaRsZOEk0pfn1eQAAAAAAAAAEjcM_4Dl2NGfu-G-e5pBI8wAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAI2Z8NlMClggx8jaziUTJXlmWAAAAAAAATNs", "types": "CAMNBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6DXCxqKZhOH-ZWLtn6Ak8A"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAAAtt2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAHIG1OnoGXN6zXJZoQUHRmxAwAAAAAAAAAxYEThj3UEuGl2wDiJSq9vSAAAAAAAAACqZou-EwmpdzrcXx7eij10xwAAAAAAAABPIdkGKdrrMvbrgpaqyJ-rigAAAAAAAAAJUpqzzk59PbxypyRs4QkNMAAAAAAAAABTN1R-9DGIZrDXK9x_wnFgtgAAAAAAAABD7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAAB3ZTYW2hueb8qo9sBuOsIdRgAAAAAAAAAn6HagrPNegEb1JoaDvxlnywAAAAAAAAAp5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACaAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMnBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZV3_FaAdqzPCe6bEG_jy3g"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChkZ7", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_MILyLDKZ0Ax7h48jWwftQ"}} +{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACindAJ6GSZQSmfOBquczb-SF8bAAAAAAD_Q5tJ6GSZQSmfOBquczb-SF8bAAAAAAC-gV0J6GSZQSmfOBquczb-SF8bAAAAAAC-dlSJ6GSZQSmfOBquczb-SF8bAAAAAACrKuZJ6GSZQSmfOBquczb-SF8bAAAAAACrKxzJ6GSZQSmfOBquczb-SF8bAAAAAACrK2zJ6GSZQSmfOBquczb-SF8bAAAAAACjxwkJ6GSZQSmfOBquczb-SF8bAAAAAACjzy6J6GSZQSmfOBquczb-SF8bAAAAAACi9sEJ6GSZQSmfOBquczb-SF8bAAAAAACjBeq", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Ha9i-u7s9fKx1HFoDNO0Kw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAACX3y", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "k0HH6HkmrO3PjuCrN5xpqQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAAAaI0QtQ3x5Qtt-qibQRB-qEAAAAAAAAACTcGonFmCxGC0dUZ5gEg0KQgAAAAAAAAAF0Cdt9wyWxnG2B-xGXMO6owAAAAAAAADYVx2H7p06nNerPKpNR75HGQAAAAAAAAC4MVBEVPIg9jpvUF6dYB6UegAAAAAAAAAgGXtNt3Bw_FnzVg6vpA0KtgAAAAAAAAAWhGSV5zKrRFpCoM5XmwxNpAAAAAAAAAAH_56OZ5ZdGG3mX9wz1zNHYgAAAAAAAAAURuTViGJ9Pf477gXsTgiYyQAAAAAAAAAA", "types": "CAMNBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZaFV67YbSi9BrxRc2eGM3Q"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHsJJgtQ4kMk_MBWrPUAFqVnYywAAAAADHsO9gtQ4kMk_MBWrPUAFqVnYywAAAAADIfUS", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "miNhVmEwOpuSyQhZlQHD2w"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAABNdtBXhZ-luS3XxwtqeSJndgAAAAAAAAAKKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAAt0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF39qs_rDAv1WDF_rk7l05uQAAAAAAAAAIyFWUxFEmttx69t1SIwsMmwAAAAAAAACbHqzMw8JwmflqRBGi8pnz0AAAAAAAAAA3lbfK5xAhyyH63Gphusud1AAAAAAAAABoFH8EkDW7TkZM8UTvkf_KhgAAAAAAAAAK4kgJPxDp_y70g-_9SJBKrwAAAAAAAABwmVZC5ucQ9s0QMwQ6Cu6VqwAAAAAAAAALakHLSuC4R8vzlPIApTxuxAAAAAAAAAANydGLSNwrZw-nu2sK1xpAIwAAAAAAAAAc4m9mTW_zDlDiftTb5WLt5wAAAAAAAAAF6M6LrYsHqAc6auZXIZFiuQAAAAAAAAAbl-sBEPXDA8ztd_41Qie1FgAAAAAAAAApI48brEkgWPSZXqrqrHkPZQAAAAAAAACtmedSjTisT_c6UDMJcEb40wAAAAAAAABQNDiNPs2SIuj4NddpL8knJAAAAAAAAAAC_OOeQuiXtvgynmE43QMbEAAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAISu634wiWh6F21tPpXr0Zz3mgAAAAAAEVK7", "types": "CAMfBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xtwAyBfQvkWcf13H8ZLvag"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o8vXT4fd_WKeR1cE-hlLelCQAAAAAAC-pEOXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_V1XT4fd_WKeR1cE-hlLelCQAAAAAACgUmmXT4fd_WKeR1cE-hlLelCQAAAAAACgUOX", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "aQ-skLm7MBaPqK2HhT2HGg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADAYnk6E9ReVsUsstHFtTIiXQAAAAAAAAAyfT0k69QoWDcgSGG9DEbGKQAAAAAAAABU3yZRDT05_hGvUj8jRvChFAAAAAAAAAIWQdsa8CodEr3BBR20SawlOgAAAAAAAAIr3QxPrhcD9ugSQPryZKe81gAAAAAAAAAJ7LziU26eINk4gGAzQhjzRAAAAAAAAAAhPJTlw6VeTaTK6Ugh88lHIwAAAAAAAAAEsPO63moZmQeRDFosCGHfhQAAAAAAAAA-1oyY5_H1XDxnqxtQutVBSwAAAAAAAAAE7LziU26eINk4gGAzQhjzRAAAAAAAAAAhpboNPSluja75Bcicb918zwAAAAAAAAABjJ1ozPLEubzrPTK_HIIAngAAAAAAAAAEgyCLaoZ33VoOuRW0bXNTvAAAAAAAAAAwJlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2WJJpq9A_dKE21YRpkoScFQAAAAAAAAAEKFGBFnajTppUPwKMAfWXvQAAAAAAAAAXfjtW9vtmDWgO1Pk6zjyUWAAAAAAAAACOcqdSAx5Uej3ncVA_SUVjsQAAAAAAAAAMPrNII2l46oclr0RXWTYMUAAAAAAAAAAEINf3qrj40tfRq5N_0-qbsgAAAAAAAAAHsWCnrMF0Arlnv58qX-TThwAAAAAAAAAB7mqPc5ch4cFcQJn3b5WHKQAAAAAAAAAFIY3kOFBxddrJzoZrzargTAAAAAAAAAAADHMn6ZZcNA6-RmrkDCI6igAAAAAAAV_3eJ7BYIhIN72fM2Cz8k8m9QAAAAAAARl3", "types": "CAMzBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OZaCa2Xs6TJOHcgNOIJQAQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxfCZ3CKaS4aU08RhYA19y5ITQAAAAABtHkpZ3CKaS4aU08RhYA19y5ITQAAAAABtHLPZ3CKaS4aU08RhYA19y5ITQAAAAABtRO9", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3SaSc7Qb_pTpCQGjWi08LQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACHFv8Z3CKaS4aU08RhYA19y5ITQAAAAACGkIKZ3CKaS4aU08RhYA19y5ITQAAAAACHBnFZ3CKaS4aU08RhYA19y5ITQAAAAABzIEpZ3CKaS4aU08RhYA19y5ITQAAAAAByyXAZ3CKaS4aU08RhYA19y5ITQAAAAABwOdiZ3CKaS4aU08RhYA19y5ITQAAAAABv1M7Z3CKaS4aU08RhYA19y5ITQAAAAABv3T_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimti6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnKXQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAirCv6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CQMOBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "eq0KhK0DXa1YeNyRQw_UUw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtboV", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "eZXeywFX-mVgZVes42SXyw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAACEiSUtuDFidZ_ArB9M-KYzuwAAAAAAAAAqAAahb89jp2nXTHxX6vfDVgAAAAAAAAIaEzlTNMIGbx2ZiPDgwyoVKwAAAAAAAAE4hvoLs_S85r0RS2Fhd-3zRQAAAAAAAABXHQIcUxTS4b3fQz1smTvzngAAAAAAAAArw39fXJ4iQHwJS1PAwVsn_QAAAAAAAAAA", "types": "CAMnBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "H1yy82oouV-ENepJEK15HQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o8vXT4fd_WKeR1cE-hlLelCQAAAAAAC-pEOXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYz", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_tHnBNzSyqzZjLju1VghBA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCYyXT4fd_WKeR1cE-hlLelCQAAAAAAEOC7XXT4fd_WKeR1cE-hlLelCQAAAAAACwzj1XT4fd_WKeR1cE-hlLelCQAAAAAACkSAW", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "rPoP8nTU3L_pP77a9tVx-Q"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQJvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACeySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAYh-mcFcSefWaXpPLGLAmk8gAAAAAAAADYzXY2fMPD2q8JxxSeQ4an4AAAAAAAAADbsSDVmLRXn5j8cMEHakX25QAAAAAAAAAMbYR0b7-vTQ0RKJD6ns3ClQAAAAAAAAAG5WRkp3UGiY89oONYWWfHqAAAAAAAAAAtidAHvTfpCa_Lill3CvLIKwAAAAAAAABUtknRVtdrp8TkRV3X6AJ-KgAAAAAAAAE69RiRfbyw6Ke6ra9C7bpO7AAAAAAAAAAFw4iPcCvnDaOeCsCucOk6-gAAAAAAAAAFpsq3d9VHFR3Z9OJwAkcAPAAAAAAAAAAL5vj2qWMYXopIAHMeOOhgxAAAAAAAAAGCk_s_ITRPELxw2Zk2jzGG8wAAAAAAAAAINleCed7iD5lY9FUQABqcFQAAAAAAAAAE56J_quP6E7ubMy0oFC4pVgAAAAAAAACGdMWAYhOd73lTCWigt-4ASQAAAAAAAAAA", "types": "CAMyBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "L4Jc0QYQPl5oqQHZgM_rKQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_-Qx-pCy53U7YabuA5eb0fAAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAcpSIXlNYnJYwCILAJFTEzSwAAAAAAAAAGTyuf4RNGIxt-ueaCsLj22AAAAAAAAAAXvSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0qlujNL7db72ZwWHkSPq1iAAAAAAAAAAa8tJujVK0pdTWlucWIQYskAAAAAAAAADWSXFZShc93P7Br4wzVi_TSwAAAAAAAABGl8by2NZ7WjCFmKmn5LkVDAAAAAAAAABNJj6ja2Wbkf1_R1a9nVWcUAAAAAAAAAB-X9SksosahO6WfATGPaH3cQAAAAAAAAAInrhN620EAJ_Aof0ETZ3WHAAAAAAAAAAPQJvjLM8_Am-8HBcCjdeQvwAAAAAAAABYi__VMh3MgmTJp7v_qMbssAAAAAAAAAA1qwd0u0yf77aYVcTrTir5kQAAAAAAAAAFqwd0u0yf77aYVcTrTir5kQAAAAAAAAAFOD88rfBmy4BfCXerLT5e5QAAAAAAAAA7yhF9CEzH60wdDBblzY1FcQAAAAAAAAAIOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyI0sTGLCNH21piOrMPoln5uBQAAAAAAb4wHsTGLCNH21piOrMPoln5uBQAAAAAAb5WAsTGLCNH21piOrMPoln5uBQAAAAAAXItIsTGLCNH21piOrMPoln5uBQAAAAAAf3nV", "types": "CANIBQUD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jvcjy4lv5fuvEvSUFv75vA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABiUDU1_CPvfFPVWUEWglidAAAAAAAAAAAoWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1eNbj51SwVufxZ4R3ztSduAAAAAAAAAAMRLw4AzQ1twQD4Yf1dhVtogAAAAAAAAAICEhlVwLkGcF6wPQ9FYzYUQAAAAAAAAAFEqtQxEspQTRRSSWWTkm-NgAAAAAAAAAJnPcpIVOjAbk4oUD0VpGGhQAAAAAAAAABZ_WnWFmJraaLolV8hl2sigAAAAAAAAADWt0sf_JgSqOTKaBcf1zgawAAAAAAAAB7FzJF8qZ49M3tzNcHAYKOpwAAAAAAAAAHcx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAAjYKoBBl0G_e9oE7cFaZfzDAAAAAAAAAANrGDifO1Mqf9Ue5AsCRkS-AAAAAAAAAAN2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdQShimh0tQga8QazMW6_qBAAAAAAAAAAB_fOhPrA482cdtwnWghjHQQAAAAAAAAAM8hquOE5UjuqbQKed-OMfiwAAAAAAAAARWNHUiu4BFqRVmqF_mtCsFQAAAAAAAAAD3r-tlbWKH7Bh4O96M6j3bgAAAAAAAAAilJfPltGODmJePtyLCuHROAAAAAAAAAAvvbgAMp4MJN-LIAvT-yH7-gAAAAAAAAAYBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADUR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAAB0", "types": "CAMwBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ALG1PVLBUi45jyZ4vBoHwQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACg5IEXT4fd_WKeR1cE-hlLelCQAAAAAACg5QO", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "glHGP2Q0gjZKetKu4g86MQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV_OYxe-SHgukLEpCkawSk1QWAAAAAABXc-2Yxe-SHgukLEpCkawSk1QWAAAAAABXVusYxe-SHgukLEpCkawSk1QWAAAAAAAAIakYxe-SHgukLEpCkawSk1QWAAAAAAAAHUkYxe-SHgukLEpCkawSk1QWAAAAAAAAHap", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "96Gpre1S8-BX3-iSwjuJ3w"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFWWM", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MjnEjnYGv-U9rs4P9zuGNA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxGI7XT4fd_WKeR1cE-hlLelCQAAAAAACxGPnXT4fd_WKeR1cE-hlLelCQAAAAAACi9wRXT4fd_WKeR1cE-hlLelCQAAAAAACjCBUXT4fd_WKeR1cE-hlLelCQAAAAAACi1U9XT4fd_WKeR1cE-hlLelCQAAAAAACiLJ8XT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "seEJBjI353Jgq3ilVgUOcw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA70RgYbC2fQjxygsXZf0s0DwAAAAAAAABPiAgP1DBH7Z9OPzvK7kQabQAAAAAAAAA3brHwMWIWqKKcmy2jXj1-xAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAABs6JL9Zb5wYEadxJXUwBTXrgAAAAAAAAAHDHsnAoMYJiyf1W11jJ-_lgAAAAAAAAA-DTUauL5DuTHOhH20MbQ0aQAAAAAAAABcRJueobtGLNKjuDFxaSSPAQAAAAAAAAACzNauVubvid-JWDwk7qANbgAAAAAAAAALp8ipwxPDk2OXbZVU57GDWgAAAAAAAAAINg4wCleBoQTspajWUco4NQAAAAAAAAAxBD-QSmQP8xD9tmGVKfoJ8AAAAAAAAAABS06qc2WWdjyLzzAdWuSUuwAAAAAAAAGz", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bZ5KGLHdU9j4VxTqgQfhhg"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF88yz5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF78Kz5k14PsCcDvFyUC1kmlV3QAAAAABFxdxz5k14PsCcDvFyUC1kmlV3QAAAAABGnbP6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuoD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00i6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00D6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "BgMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0WERHU6g08URhHuc5ReoIQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN-", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_OL1506gLc6iOGLX-Qw-uQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAADxyaNpzFvIPtiJi3LwjMyZHgAAAAAAAAGMUZ2NFNzh7BT3C3hRjMF2fAAAAAAAAAAMZB4dgn6zlvSqI5ZscpV7zgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1HYZxCzuz6LEXaDimozBLlgAAAAAAAAAQpMuceywkbX_kBQbNeyKYjAAAAAAAAAAWRHxLaEMnlCvBO70F4Bq3fwAAAAAAAAAFnisgr1RUcTVhb-d_TidN8AAAAAAAAAAugTkKo96ASvMgXyPTt69aMQAAAAAAAAN6Gs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAAAKzk_PAPIluouMAlyxqI2lSwAAAAAAAAALSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABg", "types": "CQMnBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "v87WOGP5rvv292j0hZyBpQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAACz-CA2HwYxn7uXuJvRLWceDgAAAAAAAAACo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABbw7HSilaT6ScQ9DqRu4RYLQAAAAAAAAA-o8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAAA7VRatagfaZstKq9MrghPCigAAAAAAAAAJ7ThQQHp1G_6RWzt6Guj7FwAAAAAAAAAFuPYKLmERl0-_DM7CKlbDjQAAAAAAAAAA", "types": "CQNFBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xG-J8jMWseGdOU1sdRBQdA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAABvZKLj_deYRtPDewbXBnoroAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAwy86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAAFYTifPIvND7b7ICq3M7OVoFwAAAAAAAAG8rtJFGuFDWKgkQ_kOhDwLwgAAAAAAAACUMmoo_suJilhWtf6a-tL1QAAAAAAAAAAROUbgbjykZCfB9WwnVI9DPQAAAAAAAAAY98crfAiSKlCUGPoKQd7HZwAAAAAAAAATYcJNXHy_STqTylSikTWNBwAAAAAAAABwspKgho_5MzCgmqSnvn5kAAAAAAAAAAAMliBIaA3GgrvMjjdVQWjGiQAAAAAAAAAY7_lHm_qWPZrIwZW3YqTGiQAAAAAAAAAJye_yqgGWVAuuc8LeRI2VUQAAAAAAAAACdFmZlDcuVgTgkPBtuxohZwAAAAAAAAAA", "types": "CAMnBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JEHpDorQ3X69mmPVtKXDMw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABco3Wz5k14PsCcDvFyUC1kmlV3QAAAAABcoCKz5k14PsCcDvFyUC1kmlV3QAAAAABcikjz5k14PsCcDvFyUC1kmlV3QAAAAABa6BHz5k14PsCcDvFyUC1kmlV3QAAAAABa5k1z5k14PsCcDvFyUC1kmlV3QAAAAABdNVfz5k14PsCcDvFyUC1kmlV3QAAAAABGL09z5k14PsCcDvFyUC1kmlV3QAAAAABFRJ0z5k14PsCcDvFyUC1kmlV3QAAAAABFQkoz5k14PsCcDvFyUC1kmlV3QAAAAABFcFGz5k14PsCcDvFyUC1kmlV3QAAAAABFcavz5k14PsCcDvFyUC1kmlV3QAAAAABFcuMz5k14PsCcDvFyUC1kmlV3QAAAAABFq1rz5k14PsCcDvFyUC1kmlV3QAAAAABGmZB", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Q19jKleC5BO5fbKgnRBk8g"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV5BZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbyl", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Fjb8QpKgHV426fXezrFZOA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcoiHXy47Qw5euydEoPUexRgAAAAAAAAAga67hy6D4_aH__IrzfMid7wAAAAAAAAABrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZf4KmPLa6_uw8gRgiw9EUAAAAAAAAAE4ihprad0bkU-u2IU9StodIgAAAAAAAAFXDoHlZdzBUb9gYvYKOpEkpQAAAAAAAAAGbjQybHdPZPsvcVS9w00EngAAAAAAAABEJHv-WxN-6ew3HWVylhRcvwAAAAAAAACDXInDcq5R6vIDaHfFB5nSkgAAAAAAAAAGo4xE6tnek8DDKVBCgUY23gAAAAAAAAAFS_ErxVtracz03jHdVwTbqgAAAAAAAAAF0WHxvAaEQdTf5grBjCUuBgAAAAAAAABS", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dvV0frbzzIMo5IEep2DrYw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAABvZKLj_deYRtPDewbXBnoroAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAwy86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAANS_CTRBRzwj9_syNwY5rEXHAAAAAAAAAB3nZ_TLoQXzn9RYaGn5N0v4wAAAAAAAAA2414vwxwFz0HV2Ku4dzYYowAAAAAAAABPlF0402c3xDTaGy1WpLy7vwAAAAAAAACHmElwt1Dp4YSxqVbIbt9WBgAAAAAAAAAEGLDSd1ISNevOKzSmDgruJwAAAAAAAAAgpGS8OUXSiLWiH5S3vFML0QAAAAAAAAABhTCcyJ3soXig5DBwawFWwgAAAAAAAAAfa5zoVUaYg3Rkw0lFMZBibAAAAAAAAAACDDx8Tabgis3a0xF6j6Br1AAAAAAAAAAA8DDAjVJl721y2vxKHGSBegAAAAAA1GJR8DDAjVJl721y2vxKHGSBegAAAAAAgMwk8DDAjVJl721y2vxKHGSBegAAAAAA7PiS8DDAjVJl721y2vxKHGSBegAAAAAA7PIgvQ7EacG6CR4rzcFaNFEsTQAAAAAAAQSY6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMmBQUDCAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bVUsqm-nV6BS0DAFr15CVw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAXfyHZSkKN3zNxr0HYuO2pqe5hQAAAAAAXfCPZSkKN3zNxr0HYuO2pqe5hQAAAAAAUVVAZSkKN3zNxr0HYuO2pqe5hQAAAAAAXWsnZSkKN3zNxr0HYuO2pqe5hQAAAAAAXRBoZSkKN3zNxr0HYuO2pqe5hQAAAAAAVAvuZSkKN3zNxr0HYuO2pqe5hQAAAAAAWg5o", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "BI8QzmO7HqlLwK_VwmtkDg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAE1nz2D_enJEI7s5XIn5TJ-QAAAAAAAAAEbSqWaYKtavFZqjY4T_025wAAAAAAAAAQFD67YgaFeLuqBai5R0qQdQAAAAAAAAAm", "types": "CAMIBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "veXBb1E1biajExFAXEtxkQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAdLJM8DDAjVJl721y2vxKHGSBegAAAAAAdFID8DDAjVJl721y2vxKHGSBegAAAAAAdJyD", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fILKiQ-NDjmhhDtBXrtN1Q"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATMsVxGJ_9ADjCLmkId1rUYwAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAEKGqShcrW-d9_GDzTagKIU9QAAAAAAAAAG_h880XQOq8mngzMZR-nPlwAAAAAAAABR9iEsaZI76W1WejkwhmTFwQAAAAAAAAAHC64NVLkkZ7RW349y9srs0gAAAAAAAAAEH7o77ANtSaWU3Ypp865GJwAAAAAAAABW_93WPbrUDW14kcLWmrpKPQAAAAAAAAAG12nEeMsH00wjguIyHXaYDwAAAAAAAAAEHRnmOObX7UEhjneXDGbG8gAAAAAAAAAMWdf_fGMEPXcmaZUprOUqQwAAAAAAAAABzKHS4hsJddCCPPI3lqHKuAAAAAAAAAAF__e_ReExoac--V-RQeNXewAAAAAAAAAHqnkrTiN5YCts6ND7O0BX2QAAAAAAAAAPHRnmOObX7UEhjneXDGbG8gAAAAAAAAAMWj5_TD0E9go0_JwMtB1C3QAAAAAAAAAF3QWEH8eApmH_ruugOKv76AAAAAAAAAAHshNXixs-94AywpTuAMqgvAAAAAAAAAAK5m5J32z338iItYAy0IlfPgAAAAAAAAAopGnFHfBK3F-I6STArMJjqQAAAAAAAAABqsOdwnOfdpGhy1Ny492aAwAAAAAAAAAGbfWTJUKYANwcIsCQIfxvLQAAAAAAAAAC1rHoPMq-mpf_DwJrvHqYAwAAAAAAAABVPqkKpz2WDphJH5ROhuDMyAAAAAAAAAAOYegVEymiG8lw5t7wHfz6hwAAAAAAAAEmTl_Iodjc0LWexYa5MoBoHAAAAAAAAAAHY3ftK9mWklQQE1dRC8tbhwAAAAAAAAATzcjbCSOxeTCClWpD2cCw2AAAAAAAAAATu39hB2o_bkkn64I33Zf2OAAAAAAAAAAx6KM6RK-sq5wYpyjnMfBa7AAAAAAAAAAsxLOLXg5EKZgSVcI5Dw46ugAAAAAAAAC40LGXmFocz46kL18OXWxszwAAAAAAAAA1cuyNWlZFQkabnqdPXO_rXQAAAAAAAABNSlb8MNVKIFfE9HJqtN3BhwAAAAAAAAAAWpojVIMMfjg1gPX4CFe0BAAAAAAAAC1uHt2yyHtMhQP9uhMxLoNAEgAAAAAAAIuLHt2yyHtMhQP9uhMxLoNAEgAAAAAAAIB6", "types": "CAM-BQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "L32M8nUjWcB8ZD-GBoywbA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF9Y7z5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF8OEz5k14PsCcDvFyUC1kmlV3QAAAAABFxdxz5k14PsCcDvFyUC1kmlV3QAAAAABGnbQ", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wY3E_gKFS1ZJ4uURbE_CuA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAAB1Rt6zauIajYCS35l66QRKCQAAAAAAAAAqE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFVIpKyJ4wSn-DKbqb5c24RwAAAAAAAAAco-YCkVIb1YKeUkrNTWvXyAAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4HIIjrBY7gA03CnEjMAD7QgAAAAAAAAAMBY5YV5xXx7ZBlABDbJ23mAAAAAAAAAAMcNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAAT5P9SwSLlS7AjqRDPaj6g-wAAAAAAAAAHyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAsm-6JEhiFmXqLZfGLnUoQcQAAAAAAAAAEomA88yQfT91566xoyEY7sAAAAAAAAAAc0Ws0TuC7P76blUs_eNtzJQAAAAAAAAABLeNDhekdw-sjNwsp6sqctgAAAAAAAAAHrpC2HihAJEedhpNUsvhzNAAAAAAAAAAU7kWfJ8nFzR4uYy0sz1PD_QAAAAAAAAAdM7mUtUMKeSbKl86LPQ4FpgAAAAAAAABmztzf3j-L67aAIY5BvXSolgAAAAAAAAAXG2n_GX3QviffvfY7aSFilgAAAAAAAAAp8X2C10RJDGqRqJtqFUpE6AAAAAAAAAATkHofji4pS4HiCyyAcPZ84AAAAAAAAAAmLXCqd0sDg5Z1XmxKMTzH2wAAAAAAAAAVwAswvS18vVVd6M7ubmG8QAAAAAAAAAABAUeWutpC-nNF3YBtlN2qyQAAAAAAAAALGHVg4DCslZzmAI9ykvrGBAAAAAAAAAAEzsKtZ6aGWTMnVvYa5n0o1wAAAAAAAAAHJ5GIi-GNKOMWg90kwwIJaQAAAAAAAAAKT1PZ-3rI8N9AUa6pdavoVQAAAAAAAAACDlkkGc4FXw0csMPvt9170AAAAAAAAAAIMIe94s1GJeusy6GT4zv_KgAAAAAAAAARGJrAa0MCsJhnK8VSmsr7hgAAAAAAAAAD9XlwsBj4VNVlqaRQ8nE0vwAAAAAAAAAaxPyjeTIJnG9fHl2tahzA6gAAAAAAAAAs0JFePiIGG-AreW0ofMty1AAAAAAAAACREK_62InRGh0CLx240pMRPwAAAAAAAAAHoXDDSz_OfNZuiQsqIGyUPAAAAAAAAAAeC-I1jrEt6-fVr4MQt-S3FgAAAAAAAACeGG1veltf8QsFPfu4LXPKfQAAAAAAAABwGXOYg6bb4ZOeBtRiYbeUsAAAAAAAAAB1wRa4VkbKWWg5BAVuyBhN4AAAAAAAAABJKJs-T6FVV1KxfNtTA1gU6AAAAAAAAABA1Oc4N1dQ1k7rPv-ec5lPNgAAAAAAAACRlLSqJ_lK-jxr01mEXBTexgAAAAAAAAAKtUugY2gAhpWf99wEorV4JgAAAAAAAABYwf9mrqZKrjw_yhc1kSPntQAAAAAAAACEm9ieovFwf2R2wYPTPe0oHAAAAAAAAAAEZlzgaLTArYTAL6Kw3yPwigAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAHpKvQ7EacG6CR4rzcFaNFEsTQAAAAAAATPM", "types": "CANgBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9s3h3ys1xkj1UYVqdYC8ug"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN8", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8mkrzoK-o0LQFCcarO5Q_A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7-XT4fd_WKeR1cE-hlLelCQAAAAAAC-pCkXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_Y9XT4fd_WKeR1cE-hlLelCQAAAAAACiFHoXT4fd_WKeR1cE-hlLelCQAAAAAACiKQzXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJjeo9I8XHop3y7uLb8wdADAN______AbjYq", "types": "FgMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "BzoHR5e-WyaDOLcp2Z_ZNQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAA1OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADJWFBxAERZNClfuNDueoaytgAAAAAAAAAGFw4N_DGYxmWJY3G6VlrCLwAAAAAAAAAGK4GtFsHu3sEiObk5SkQ6NgAAAAAAAAAZR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAADj", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wohyMdwMAerXFVqTACJFyQ"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXDNgtQ4kMk_MBWrPUAFqVnYywAAAAABqaCzgtQ4kMk_MBWrPUAFqVnYywAAAAABqahxgtQ4kMk_MBWrPUAFqVnYywAAAAABqa1u", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cnfVvs_A3k1-m1CA0ruWaw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSIeXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdUd", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xd6N1dgLUiQ6uI8diQqbyw"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKDEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKI8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfdgtQ4kMk_MBWrPUAFqVnYywAAAAACJEnagtQ4kMk_MBWrPUAFqVnYywAAAAAB1YosgtQ4kMk_MBWrPUAFqVnYywAAAAAB1YgbgtQ4kMk_MBWrPUAFqVnYywAAAAAB1Kj3gtQ4kMk_MBWrPUAFqVnYywAAAAAB09KEgtQ4kMk_MBWrPUAFqVnYywAAAAAB08oYgtQ4kMk_MBWrPUAFqVnYywAAAAABt6eogtQ4kMk_MBWrPUAFqVnYywAAAAABuAGtgtQ4kMk_MBWrPUAFqVnYywAAAAABt-UkgtQ4kMk_MBWrPUAFqVnYywAAAAABt85EgtQ4kMk_MBWrPUAFqVnYywAAAAABt8P3gtQ4kMk_MBWrPUAFqVnYywAAAAABt7nF", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZQu4pKifTxhqaBd8ZvnVQA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAA1OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADUR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAACjFzRiu7WoiAEZKSMqwfwi8wAAAAAAAAAQGaTWB84HBLHkoSJAOUFJ2gAAAAAAAABV", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "D8BnVNVQ_cUz3jRXniJtNg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAGx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABW1vmWfRl7JvnIelrwmbOFDwAAAAAAAABTxKz6OkGVzOf5KmhaoK3F7QAAAAAAAAABaTMNVHETyzaTiTA3xRl8fgAAAAAAAAAS1t24RQWJoO3BXaJLZVT8fwAAAAAAAAADeX9iAJM3toZWX3uGKIS4WwAAAAAAAAEIEq50LgqGqKjaa52J2nxgrwAAAAAAAAAEEq50LgqGqKjaa52J2nxgrwAAAAAAAAAA", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZkdSiPfKIHhfSeq6Qzpm3w"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAABu1IhEUKf_PDCxfheapNhvQQAAAAAAAACI7RFhYe_NpS241I1rFVDmNAAAAAAAAADfyLcvbV13CtkdfmXNFFed3QAAAAAAAAAHLL2AmHorGMGLHFvQ3KWNRAAAAAAAAABye9VBoOb6ap6y2iBqQXec9wAAAAAAAADn4U_zL7awL15Zhtkek0gtnAAAAAAAAAAMMjtyswsr5RSXvAnPmILipAAAAAAAAAAev7GKAWxeXNZbjk8Dw8GzZgAAAAAAAAAA", "types": "CAMmBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TYr4hkQ-Ogu0SkdSS5DbZw"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAABGm5g", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "s7fLjmESQgzutRqqKhKAIg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChBOFXT4fd_WKeR1cE-hlLelCQAAAAAAChCYUXT4fd_WKeR1cE-hlLelCQAAAAAAChFbZXT4fd_WKeR1cE-hlLelCQAAAAAAChFLIXT4fd_WKeR1cE-hlLelCQAAAAAACgSzoXT4fd_WKeR1cE-hlLelCQAAAAAACg6i1XT4fd_WKeR1cE-hlLelCQAAAAAACh1Di6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3vVnQBR0KSAbKxg9h0tlTw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAABNdtBXhZ-luS3XxwtqeSJndgAAAAAAAAAKKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAAt0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF39qs_rDAv1WDF_rk7l05uQAAAAAAAAAIyFWUxFEmttx69t1SIwsMmwAAAAAAAACbHqzMw8JwmflqRBGi8pnz0AAAAAAAAAA3lbfK5xAhyyH63Gphusud1AAAAAAAAABoFH8EkDW7TkZM8UTvkf_KhgAAAAAAAAAK4kgJPxDp_y70g-_9SJBKrwAAAAAAAABwmVZC5ucQ9s0QMwQ6Cu6VqwAAAAAAAAALakHLSuC4R8vzlPIApTxuxAAAAAAAAAANydGLSNwrZw-nu2sK1xpAIwAAAAAAAAAc4m9mTW_zDlDiftTb5WLt5wAAAAAAAAAF6M6LrYsHqAc6auZXIZFiuQAAAAAAAAAbl-sBEPXDA8ztd_41Qie1FgAAAAAAAAApI48brEkgWPSZXqrqrHkPZQAAAAAAAABvUiUoRYGdR-DlFb1nVPjgzQAAAAAAAACN0FX-pXK8X9ZHvq5PeuRa6gAAAAAAAAAMKYcgZWdWl27hMIBlgVEqhwAAAAAAAACMMLdMFGDeFJJvJRMDhyL8jwAAAAAAAAAKVthdIAkyIWxV-e9fI9rVBQAAAAAAAAASFezK_dQe_u3GP8ThBnZQ8QAAAAAAAACEnQWGdRxvqVjwlLmQWH1PhwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAINa8NlMClggx8jaziUTJXlmWAAAAAAAATLP", "types": "CAMkBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "a9RoNb_CP_QBiNsaf40rTw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22V", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-xmbfr5P2W9uCZFUF6Si-g"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t3YXT4fd_WKeR1cE-hlLelCQAAAAAAC-wRNXT4fd_WKeR1cE-hlLelCQAAAAAAC-wTlXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwWtXT4fd_WKeR1cE-hlLelCQAAAAAAChsdpXT4fd_WKeR1cE-hlLelCQAAAAAACh1LY", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4ZzGXzdUE94DgCIvdx6jaw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-9R0XT4fd_WKeR1cE-hlLelCQAAAAAAC-xp-XT4fd_WKeR1cE-hlLelCQAAAAAAC-tNEXT4fd_WKeR1cE-hlLelCQAAAAAAC-hiKXT4fd_WKeR1cE-hlLelCQAAAAAAC-hZZXT4fd_WKeR1cE-hlLelCQAAAAAAC8k6-XT4fd_WKeR1cE-hlLelCQAAAAAAC8tjlXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8suKXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8sfIXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8sfIXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8suKXT4fd_WKeR1cE-hlLelCQAAAAAAC8rvaXT4fd_WKeR1cE-hlLelCQAAAAAAC8fTsXT4fd_WKeR1cE-hlLelCQAAAAAAC8wkPXT4fd_WKeR1cE-hlLelCQAAAAAAC9ZykXT4fd_WKeR1cE-hlLelCQAAAAAAC9rh1", "types": "IAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bJFKSObEVSXRB1JkRZrzNA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_-Qx-pCy53U7YabuA5eb0fAAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAck_IuQ3Tj-0pB21HCi5bPIAAAAAAAAAAGzgO9-qlGF96Qf8hviCOy7QAAAAAAAABmsFs-DxXlXTzn3bVNvCe0KwAAAAAAAAAE", "types": "CAMyBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ApduzXDNHCBTEfxGmtNslg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAAGkuWcUG2bf_MgJpXpuAZivRAAAAAAAAAAx0nBVkJrBQHU_wusVG6_3KQAAAAAAAAB96PDTyNLwDP2GCrVJoblLzgAAAAAAAABIciQsV4oUc5gYfL4dony27QAAAAAAAAAnOIU72g2wQhgyLETe_w4R1gAAAAAAAAAOY_F3wsW4jiujqo6Je7YffgAAAAAAAAAJWHc6TeyRQEqs6LkNUiVKVQAAAAAAAAAzqeBE7mdKgcIgzAsX_goa7wAAAAAAAAAHu1V8iRI-Vv8WMpAbApe_-gAAAAAAAAAA", "types": "CQM-BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-iH4Fx2HT0jdErUZopaXuQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R01XT4fd_WKeR1cE-hlLelCQAAAAAAEW3XPXT4fd_WKeR1cE-hlLelCQAAAAAAEW35GXT4fd_WKeR1cE-hlLelCQAAAAAAD9Tr0XT4fd_WKeR1cE-hlLelCQAAAAAAD9EBnXT4fd_WKeR1cE-hlLelCQAAAAAAD9Ej0XT4fd_WKeR1cE-hlLelCQAAAAAACzCmkXT4fd_WKeR1cE-hlLelCQAAAAAACgaDg", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LD8p9DqgIt3JWaWxlSBsig"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAABvZKLj_deYRtPDewbXBnoroAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAwy86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAAFYTifPIvND7b7ICq3M7OVoFwAAAAAAAAG8rtJFGuFDWKgkQ_kOhDwLwgAAAAAAAADmiwbRYlInQnO_voJhCywEagAAAAAAAAAEV9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAhr0doFhVTYWNnJ8dBbD2_tQAAAAAAAACjvJHhnplJkBvoZ2u3D8oqvgAAAAAAAAAIoKJuZuFh3gEYUCcmgv5xjQAAAAAAAAAOawEyDEBpp1Uwi0v_8VpoZgAAAAAAAAAfJmyP7PdfC2skKKShHbUYvwAAAAAAAAACCYcvl_Frh_HsIh0rws0B8gAAAAAAAAAFSo3FGd7WJjIO_5ktfF2gpQAAAAAAAAAFk4vCwNOIBWpsT80Dtnw9LAAAAAAAAAAX3zmrnv5FPKfZo6XTe3MvDwAAAAAAAAAEo-j45UNS6a4i2FH3VTZTCAAAAAAAAAAF6BfWdekjqfXKsC08sKjfGwAAAAAAAAAMBE0p8q_mh7enzgEoPVJKBQAAAAAAAAAe", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zH4yGVxY1imrUBjFhnKcAQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mikXT4fd_WKeR1cE-hlLelCQAAAAAAC-nmeXT4fd_WKeR1cE-hlLelCQAAAAAAC-nplXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwXQXT4fd_WKeR1cE-hlLelCQAAAAAACiKCvXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9tmmarxWYY1GiFt6cfwD0g"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlZUcEvvhuguaGYCmGWrnWRz1QAAAAACEea2cEvvhuguaGYCmGWrnWRz1QAAAAACEf3-cEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgnQ", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "aIP58eUu8m0tIq0h1T4SIQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATQDkJCt6xHk7D12ZqlrT-UAAAAAAAAAAHPX3E_b7jZQaK6SiJYskQ3QAAAAAAAAAJZaLdh2m65raIV_JyagrUBQAAAAAAAABnazI-mX3CgcWhg9AcjJjNnQAAAAAAAAART7Ugi353BwPylAwIPK3gzQAAAAAAAAHGeUEknoTlPZT0JPs_cYSwTwAAAAAAAAAVL8sWYOpDqlyTZ6yAf0Lh2QAAAAAAAAAJ4-i-5GVXRM0OiAC87vJmKAAAAAAAAAADDEXun7CQm6bEfyZWvzwPOQAAAAAAAAByMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAAOsGGIttrx5Ue0y4BE91jU_QAAAAAAAAAU_2ZUhccHf_aMDB4EGvtrrAAAAAAAAAAUiDeUqi9fXDm_fNSrL17LBgAAAAAAAAAGRXtoxChZi6om4tFzbI5m2QAAAAAAAAA7hI4WqiEJ_WlpDLkeI--cWgAAAAAAAAAUAHDWiqg2PdozODqc3QF78QAAAAAAAAAelxEacspMc1IEp-zb6FVFbgAAAAAAAAAT81_eQIrwprmH1vsr5GxRYAAAAAAAAABHJ-sAAPBB1HnX3Yvmh7CNVgAAAAAAAAAmTxmpRTdMPYZXVR4alkKtjgAAAAAAAAAZj1RL_HrqcYG8xQUBJflv_wAAAAAAAAAFxBTi6zq6LxTMAqb38KRrfgAAAAAAAAAGRXtoxChZi6om4tFzbI5m2QAAAAAAAABeNLTICG6WanN9VF8OrxDPvAAAAAAAAAAS", "types": "CQM5BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Lh2vQV-fpzIBt9URkjqr7A"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgKx", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "g3Z5T6U1p7j8VO4hmi8uSQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAbg4g3dadKJq-rh-Mlmi-1U5gAAAAAAAAKL022QNFUijUCK_h0XfqYkWAAAAAAAAAAE449MNg-Y_ftqVzjxrtZ_gwAAAAAAAAANeIKZHUnkOnlIeLcFKA7B_wAAAAAAAAD4UepoRzuMTBR-jFpLlu_fPgAAAAAAAAA3DVSkUfLwOzQuwgYi6TvurAAAAAAAAAADSwknGjaLKG0Gph6rnFuRjwAAAAAAAAAHAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MEXbJrTVN5WYO_wNiUqdIA"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAAA_rYYxe-SHgukLEpCkawSk1QWAAAAAAABAWQ", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Eg0GTWgq3Q3VcNiwVlR_Mg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA70RgYbC2fQjxygsXZf0s0DwAAAAAAAABPiAgP1DBH7Z9OPzvK7kQabQAAAAAAAAA3brHwMWIWqKKcmy2jXj1-xAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADXgFPyL3qH7XvAMbrBvAuRfwAAAAAAAADbtEnA5bbecd5HgfHANQcYvAAAAAAAAAAMRzjbtVKcKAJORTMSkyG2eQAAAAAAAAAGvpboNfauwLs6xQ0xkHOOWgAAAAAAAAAtO6091ZB5jV9xKR7I7_uzYgAAAAAAAABdKGcnodwCdbO2RZIs7I3VDAAAAAAAAAEqfqMuFCyw6Ke6rdEcCkNIrAAAAAAAAAAFjohm0WRz57B_39YZlSM0UgAAAAAAAAAF1SZ-vHLuOgv6pXYOBmUrygAAAAAAAAALryXkoj4-FLTKQHGPNi1F9QAAAAAAAAAA", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GWf0s51SG7d0t9NkDgO_uQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnsc4D-HUp7vlbJIxV4XTtIQAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAAB1Rt6zauIajYCS35l66QRKCQAAAAAAAAAqE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFVIpKyJ4wSn-DKbqb5c24RwAAAAAAAAAco-YCkVIb1YKeUkrNTWvXyAAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4HIIjrBY7gA03CnEjMAD7QgAAAAAAAAAMBY5YV5xXx7ZBlABDbJ23mAAAAAAAAAAMcNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAAT5P9SwSLlS7AjqRDPaj6g-wAAAAAAAAAHamhiroi9lH-AuCvUISnaLwAAAAAAAAAGQoETQaJh4hk1PJNhgxG6YQAAAAAAAACeJn0UNoyB8RODf8CSewSSrwAAAAAAAAAd4ATwOy2xX5oIgSybARkoywAAAAAAAAAFk0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB0qRvG2N9iYeFyl-3xULRJEgAAAAAAAAAZ", "types": "CAM-BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "x-OEmPIsqxCREyUxoFN7EQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQ3NXJCw7PINTEV_suvi1hjgAAAAAAAAAnr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAABR3DsLLpnzoGeqib2_MeXKdgAAAAAAAAAY0D5QIcqYfSjF8Y2Aggw1CgAAAAAAAAANIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQymtcT7XngDCOtcgo8NmgJgAAAAAAAABaEuiuEGuoH1DvPXwEkw2odgAAAAAAAAIDVFvoTC_1MXfHqnOeoSu9rAAAAAAAAAAYhP1JoS2wJAn52yNPmoly8gAAAAAAAAAQCw9403Es4AF2QsSD-8sRQAAAAAAAAAAKmzAbd36tUL5KTnpUgWf1fAAAAAAAAAAP40MpjoVP8Hl-BKuvUaGZ2AAAAAAAAAAKvXqYC-XpJb-U4sFbWG9yCQAAAAAAAAAPD6cli4-gg2k7zlaMjhN3BgAAAAAAAAAKllu2gdnj2j-vMGA_Gh1y9wAAAAAAAAA8_41T7VanDxOIrbJoojf8ZgAAAAAAAAAK3aj9s-NGFcA7Bdb3tQvjIQAAAAAAAACUanalpbZFBBB1VOs3P5WUhgAAAAAAAAAKQOOD1c7R67z8gbSz6sGkSwAAAAAAAAAlcmbVhNLyn_i7RNmgiqLK9wAAAAAAAAABz0hdy73gJuxMxMUBOMHWTQAAAAAAAAAE", "types": "CQMqBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Oz8xNW_mjFW_W0orY0HFYQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWCZXT4fd_WKeR1cE-hlLelCQAAAAAACi5DEXT4fd_WKeR1cE-hlLelCQAAAAAACi5qp", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "me7W5n7rjuJ_rjBZlcyt7A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlo76tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA6d6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA406tVKI4mSYDEJ-ABAIpYXcgAAAAAApUc4", "types": "FAMMBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zsujCD9VadX69Z5UbuZTkg"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABFPp_z5k14PsCcDvFyUC1kmlV3QAAAAABFxk0", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mKzwFx0glHZhbdarRs_chA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVP4GdI6f6aagjBxBAKz-KIgAAAAAAAAAMqd26ee2y8slhneyPRIcQAgAAAAAAAADEwKREEYJF8V2B2guAeJRSCwAAAAAAAACoWsBETJrPecSrGYvg781P3AAAAAAAAAC4mYO8eYShKNmyuBL3FXJB-gAAAAAAAAAwbcm3REG58b46CBv8_xMfuwAAAAAAAAAXv0TRkfoB0GMPf0piB0g1_wAAAAAAAABS6Zhf8TjHmWS5MsyfPyHLrwAAAAAAAAAI10bGpCcFXCZdhBTB55YaIgAAAAAAAAABRZHHE_LN0EKL6oIilRIcrAAAAAAAAAAMEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAFm3tIqGWDOzCH_q4z0bYhiAAAAAAAAABH5ALrzWtZVEMruVqZ-mdtEAAAAAAAAAAVu39hB2o_bkkn64I33Zf2OAAAAAAAAAAx6KM6RK-sq5wYpyjnMfBa7AAAAAAAAAAn0LGXmFocz46kL18OXWxszwAAAAAAAAA1cuyNWlZFQkabnqdPXO_rXQAAAAAAAABNSlb8MNVKIFfE9HJqtN3BhwAAAAAAAAAAWpojVIMMfjg1gPX4CFe0BAAAAAAAAC1uHt2yyHtMhQP9uhMxLoNAEgAAAAAAAKS4Ht2yyHtMhQP9uhMxLoNAEgAAAAAAALLP", "types": "CAMXBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_YzsXQ2u0qjWRAhYK1z-RA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAA1OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADUR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAAC-6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC80G6zvzFPytbRyfwuXWQcAAAAAAAAAAB", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RK5QOedYDJN8YhVo9FJwjA"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAABAHHYxe-SHgukLEpCkawSk1QWAAAAAAAA-srYxe-SHgukLEpCkawSk1QWAAAAAAAANKmYxe-SHgukLEpCkawSk1QWAAAAAAAA0MVYxe-SHgukLEpCkawSk1QWAAAAAAABq0D", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UMsTpqgIIeXVCMAnyD79_w"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LJvcEvvhuguaGYCmGWrnWRz1QAAAAACIVgEcEvvhuguaGYCmGWrnWRz1QAAAAACIVZT", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wQr5VhhWJVsk_42IdK8tlg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi3MZ3CKaS4aU08RhYA19y5ITQAAAAACDjuSZ3CKaS4aU08RhYA19y5ITQAAAAACDgkGZ3CKaS4aU08RhYA19y5ITQAAAAACDf9dZ3CKaS4aU08RhYA19y5ITQAAAAAB9MVsZ3CKaS4aU08RhYA19y5ITQAAAAAB2nnMZ3CKaS4aU08RhYA19y5ITQAAAAAB2rbP", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hgd1f1L_CW7sRmHb0warYg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAAeOWoia3OO91L6Q6k2Ypn2XgAAAAAAAAAW4LWodyiv9Hy4HicwczMhQwAAAAAAAAAGYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADUR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWQtMelJKn2GMpVgIdbCShVAAAAAAAAACK", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wyALAqqulHx7Ajay9j0LWg"}} +{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kvzkGS_4tXNYOGWeEMTHsfwAAAAAAAOTtvzkGS_4tXNYOGWeEMTHsfwAAAAAAAMrANvEDT4zSZcnoSuXBl2lV4gAAAAAABFFz", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Fp3JKxC8Kg-FrE8ZKU_2DQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAAA_rYYxe-SHgukLEpCkawSk1QWAAAAAAABAXEYxe-SHgukLEpCkawSk1QWAAAAAAABBHB", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZndsICGWbrD6J4BVHqQM7g"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyFRZ3CKaS4aU08RhYA19y5ITQAAAAABtxSUZ3CKaS4aU08RhYA19y5ITQAAAAABtwNjZ3CKaS4aU08RhYA19y5ITQAAAAABtFuiZ3CKaS4aU08RhYA19y5ITQAAAAABtntlZ3CKaS4aU08RhYA19y5ITQAAAAABudBy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "v4HwB1_clgx5rwBnfLqd1g"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHX0kXT4fd_WKeR1cE-hlLelCQAAAAAAC8CS1XT4fd_WKeR1cE-hlLelCQAAAAAACzCUrXT4fd_WKeR1cE-hlLelCQAAAAAACzD4PXT4fd_WKeR1cE-hlLelCQAAAAAACkRnqXT4fd_WKeR1cE-hlLelCQAAAAAACgJEl", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zqEaDpKRyJAOpyXtzl9UkQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlPqcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgKr", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SKXdzrkJkDYNKCa1HrNclg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbnj", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nmIx6kUsvWkiJwjLxLculQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbpmZ3CKaS4aU08RhYA19y5ITQAAAAABtPlX", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "s8Wfl925vhnqB7X1lx9SAA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxk0cEvvhuguaGYCmGWrnWRz1QAAAAACEPp4", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8S3xYS2HNOX3YbvsQit97g"}} +{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kuVi0_akuSWTIatJohqMk3QAAAAAAxjenuVi0_akuSWTIatJohqMk3QAAAAAA6hF5uVi0_akuSWTIatJohqMk3QAAAAAA6k4huVi0_akuSWTIatJohqMk3QAAAAAAl_pguVi0_akuSWTIatJohqMk3QAAAAAAjX5_uVi0_akuSWTIatJohqMk3QAAAAAAjZ80AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPBxI5O-imEgV3N9x_K1cpQwAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAITQJwJt0-vl6QQoIDFyT9WgAAAAAAAAAmi8xLrghLCR3CLFjtylOjjAAAAAAAAAAkEu2eTQ_3gXX-hva2wFAN4AAAAAAAAAAHm_vFRi2fRRTLPHNf1t7ZcQAAAAAAAABJBFA4SysMtx9fo02P0NGNMQAAAAAAAAAa8ijKSIS-axMtZNAQCt9HjQAAAAAAAACtisG4XFXxe-F-cnbJLaRjfQAAAAAAAAAWHFnb_IVy4MjK7Vjuq2DN6gAAAAAAAAAagnnlFaM6NR6_UU1aEYXcowAAAAAAAAAA", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "g2Ydsd-ql78qo4jbzJGd9A"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATMsVxGJ_9ADjCLmkId1rUYwAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABV6WzOxn3OKFhpMveMHAeqDAAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAdqz6N-6DM06uuF3n6UYF3qgAAAAAAAABQzFzboqO8__hpgAhYabPN_AAAAAAAAAAGy2325DY1ugdPcN9iudwKYQAAAAAAAAA7YfWVtOr-M3KdNymRhenToAAAAAAAAAADIAnIcQ3bOqZLIYVOjvKR0wAAAAAAAADSPY94Ez-AShf7eTbyN8KgtwAAAAAAAAANOmCg7LeKFCxsCaIeFo50SAAAAAAAAAIsSTqKraHdt8yd9UD4ZkdTcAAAAAAAAAAEj5zlUQh7CKlo9dGRL_ZvEwAAAAAAAABVf-MXXixZXm3Q4r5zsKL8FAAAAAAAAABOj5zlUQh7CKlo9dGRL_ZvEwAAAAAAAABVf-MXXixZXm3Q4r5zsKL8FAAAAAAAAABOj5zlUQh7CKlo9dGRL_ZvEwAAAAAAAABVf-MXXixZXm3Q4r5zsKL8FAAAAAAAAABOj5zlUQh7CKlo9dGRL_ZvEwAAAAAAAABVf-MXXixZXm3Q4r5zsKL8FAAAAAAAAABOj5zlUQh7CKlo9dGRL_ZvEwAAAAAAAAAW", "types": "CAM1BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "u6TuzdhCBmlpTfpFCgOLVw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT1B59VY_DkwRaBnYLL8PJHgAAAAAAAAADP8sJVhEjBeXdxeG9vrpjWwAAAAAAAAAG6BbzjQpBChJ3CEm94u7s3wAAAAAAAAAxSfUOLPncvmUbspPEBmYXMAAAAAAAAAAGjiOROD0tmELw9GVQYUYO2AAAAAAAAAAFCzBMWmfY4oLBhPQiZQ9ugAAAAAAAAAAF6mWHIvKcVS0RX9PbNqiFMwAAAAAAAAA6TlFug72sGY9jn74bRoRbagAAAAAAAAACbrBTwpxsMrD0yGTfkZil9AAAAAAAAAAUbrBTwpxsMrD0yGTfkZil9AAAAAAAAAAUD7h1Gv1Mp4lGv-01tQoxdQAAAAAAAAAFMjW-al2LhfRAmoDOM921SgAAAAAAAAAImSBnbtksrVvKstlIID71bwAAAAAAAAAUHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF4JxgAcphLAEsoWC3fPoUUQAAAAAAAAAMneQ9aDSiXyM-ZtdfoiCRFAAAAAAAAAAGXFsyX0Vq94TuMs7Bc44FAwAAAAAAAAAFhT_GFd-d817AZqi9jIee6QAAAAAAAAAUmSBnbtksrVvKstlIID71bwAAAAAAAAAUPBJfwt_BFzTkj9JYTd05YQAAAAAAAAAFQbijp1UqPhsSVBQ_97ZZSgAAAAAAAABjHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFoOj3i3E-vhss83HoxQZA8wAAAAAAAAAQnI0fpl1cIQohqhO_ihgjhgAAAAAAAAAe0DUsXaqQM40fpzmPdRsv-gAAAAAAAAAWIwWSLDFKbE55JoXCKhV27wAAAAAAAAADaBl1z_DR7_Hyrw2rxrDKMQAAAAAAAAFCucY-hDA6B-WAclSR3dnjWAAAAAAAAABGl23LqRBCxbwmYYhWIs5QbQAAAAAAAAB68ebb3ost-YWwZ9Gy9pOAhAAAAAAAAAAA", "types": "CQM_BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "26eMbIowZ7RFzGdD2uFyMw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAABCxaYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0D", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "b-paALXMHtQzSYfN1_LIQg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAABWkxlPGvmJaixHgVVGYdR3ZAAAAAAAAAAUFlEmrMapoRVqavpRHEspQQAAAAAAAAAFwKq13sxbA1Q177k-e_lIpgAAAAAAAAABPp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6IaGOpXjXn5EHF-K9uwEUPQAAAAAAAAAErU2gYsZPORRvUmAaUHS0ngAAAAAAAAAIPp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6TsD0RrBnIgAER8sz4r-hTwAAAAAAAAA4cTdMZI6aC0LqwU9s37q4qwAAAAAAAAAEcGV0DDfmSpIZxUAKnFlOoQAAAAAAAAAP9RZkYL0fVSfLG-HsYblWBQAAAAAAAAAJAAn_OLmzgN0q8Ywe9O03FgAAAAAAAAAbNCAjj9ga_oZwZ7NBAV35jQAAAAAAAABgLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAMvPUU5i5r5XThwPX6RJsZ7gAAAAAAAAAE21OviUyRbmnxs6uitnTC3wAAAAAAAAAP3R6peF1IdwfQqmb119dyMQAAAAAAAAAFjRPUUEtO9tA38nKSenaVfwAAAAAAAAAC3R6peF1IdwfQqmb119dyMQAAAAAAAAAFMDjyE5AlqASoc6cxfe5K2wAAAAAAAAAwmxRwXt-8CQt60ehjLjpoTwAAAAAAAAAKZaQmU-IXyGvFS9G6a9D4BQAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAAD8oQ_ZJ3ImiZWOZcNHv_WYwAAAAAAAAAOZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAWzyZpAtY8QHu127Ag2ZcL9AAAAAAAAAAKLqiOes3kysZtBc8totbsBAAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMjjpp6LgRqCGeGjs7cnnwItcAAAAAAADssp", "types": "CAMrBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "O36pv4qXMtag3G-S2wH0Fg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAAAd2oeSW9BMt2zZqP7i-3UsNAAAAAAAAAArZC4caaBbQcOc2WclRiklUwAAAAAAAAAMQJ-JVADSuuonf59sOKCy_wAAAAAAAAAPbYxYe2jgm-ZVQ1wIKl60VgAAAAAAAAA1B_TZlmg-i-MShObdqiYcyAAAAAAAAAK9JjiG_BroZFP40tpmv2LaAQAAAAAAAAANT3lk77LF4G-nQZW_WRBUXQAAAAAAAAAH_8CkmXN7rMP1z1mWZ4cysQAAAAAAAAAbvB5-VFNxmRTipezH9t4OWQAAAAAAAABXRYY2KsxSlCtOmORo2c20bQAAAAAAAACu4D4Asvstzj0kOaCsxyvrCwAAAAAAAAEKGIy5Mg_ksRG2OUR8ttDU2wAAAAAAAABA5VZIXKdThz-hZwdLu0KVfwAAAAAAAAAKGY8FzW1zmT9O6Iy3KHcGZQAAAAAAAAExCBEprBuB4AK7YgJytOvjqwAAAAAAAAAVl5ZkyrayZACzWiFbND1wdwAAAAAAAAAIAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMnBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Y4jL0stzMTYWFXUGclJXSw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAABcQrw_bSROFZCKPRirqN5crwAAAAAAAAAEmNKQ_cGBX-X-PxTw057WHwAAAAAAAAAoPe3ctc9W4J1u_ZCOerqNzAAAAAAAAACGnZmkelHuL2rN_AY8H-OMEgAAAAAAAAAFgmjUzsxRLEujWJFPXkncMgAAAAAAAACLzw0wKeXSScV9zb0GbnSg3gAAAAAAAAD4xojp5VBQ5xwqQiCbnXCnEQAAAAAAAAAPx7dNtL9l6yQnqIhb2iRkJQAAAAAAAABV85xU6UdOBVE-6wKT-DYa3QAAAAAAAAAT_tlTAmcGAHtBLcN6n5At5wAAAAAAAAABzREyrkkSTH9SXYVy_-sKAwAAAAAAAAAEWBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAAAImiUOwVRI4MuRY5ssS_ctgQAAAAAAAAAFi5hCmtAbdsA6NCXhfCcKOgAAAAAAAAAA", "types": "CQMzBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6G3yOrfgWU-MmHK-bx7pRg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsftbx9jqjuemtiUm8j-_s73zQAAAAAAXsVwbx9jqjuemtiUm8j-_s73zQAAAAAApykkbx9jqjuemtiUm8j-_s73zQAAAAAApxqgbx9jqjuemtiUm8j-_s73zQAAAAAAaQUObx9jqjuemtiUm8j-_s73zQAAAAAAjuiFbx9jqjuemtiUm8j-_s73zQAAAAAAmrY0bx9jqjuemtiUm8j-_s73zQAAAAAAL95t", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "rVsbnyh1Gu0HmT9fa4uLnw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAASzqlbx9jqjuemtiUm8j-_s73zQAAAAAASyr5bx9jqjuemtiUm8j-_s73zQAAAAAANdJIbx9jqjuemtiUm8j-_s73zQAAAAAANcSdbx9jqjuemtiUm8j-_s73zQAAAAAANcHLbx9jqjuemtiUm8j-_s73zQAAAAAANazYbx9jqjuemtiUm8j-_s73zQAAAAAAQYY6bx9jqjuemtiUm8j-_s73zQAAAAAAjv-Ybx9jqjuemtiUm8j-_s73zQAAAAAAjvX9bx9jqjuemtiUm8j-_s73zQAAAAAAR9Rubx9jqjuemtiUm8j-_s73zQAAAAAASB5Kbx9jqjuemtiUm8j-_s73zQAAAAAASBqYbx9jqjuemtiUm8j-_s73zQAAAAAAmsKvbx9jqjuemtiUm8j-_s73zQAAAAAAmuHw", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mh_-Cny5cU4tDakx9JerXA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAACSeel_AF4MFS6VTogqEciizwAAAAAAAAA4cNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAATPOaf2meILyNtXlyuau5zHwAAAAAAAAAKc6zhheBld8wEBO7TlhnPcgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB82g1SAYpsFtnBogFl0v0GAAAAAAAAADJdpQ3bcNFV5Y0XdediaTCQgAAAAAAAAALmmckjE-MysbZhDPP6gNxewAAAAAAAAAydmm7_Hn3SrysHeUffmIe9AAAAAAAAAAfaxxtk6GnkoiqRXb69JxcoAAAAAAAAACge4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJOdkuTNpXjsFc7WV5c_bgKAAAAAAAAAAMjBwquBL06pqJXOt8kphl0gAAAAAAAAAME5ablZjSwaw4LkNasKqxDQAAAAAAAAAFB3TkFubeMsUjXVlcESk9tgAAAAAAAAAMpmiRP16sLzHMk4sQotP67AAAAAAAAAAOqeHIgzzOczGD0wBwOrHP2QAAAAAAAAFJFuWxxcsr3tUR5NeFGer7vwAAAAAAAABnMWMRq4GUysNDjxb07DjPAwAAAAAAAAA3zpXAyp1QxqCx0Nj8RG5cPQAAAAAAAAAH7ZmFxDQcUJ2DdUoVkYC-ywAAAAAAAAAIs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFHy8-YFxh3xFG50wbJun6OAAAAAAAAAAIRA6fryXhwc6j3TqIqI_2kAAAAAAAAACP30E-Hz7p1XPeKvXBRCtMFQAAAAAAAABS-FS5_yzfVdkwZq5k0RkbUgAAAAAAAACP6BwAkRvxd04IN-6a_oJgBgAAAAAAAAAgzBmd40xeIWlVWiaWFnVM2QAAAAAAAAABOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB9iGiBo6WupT2In4pnTz02gAAAAAAAAAd22wpVvU361m0JbmO4bgOiQAAAAAAAABHXVzCT3seArKHBKHcPbRoDgAAAAAAAAAU", "types": "CAM1BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "HxzITtTGkTKaWWHGey6FdQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAABCxaYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ8", "types": "BgMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UD7rLNy1lzT-Ks3eh_U7fg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZxyf5INnJibBb8rT_yMcsAAAAAAAAAAEe6HlflPyKAlNlF7JPJCNJQAAAAAAAAFLEe5ZDKMHiVCtP6qAhF9CEQAAAAAAAAGtVyubPqZIpIsaGdq5yyQHTAAAAAAAAAAHH3I9lsKeM021aDJgbYYYAwAAAAAAAABHL6IPi9cG-hWDQ-8_WE6FFQAAAAAAAABdBLpe-z4Yd5pwaMKR_BsaGwAAAAAAAAAMQJL-SfxFsSlqFyMufqU3CAAAAAAAAABceOzzLIU2TSEN-nL8WNPcPQAAAAAAAAAQzcDe-AWheYxyPE1J1pvsUwAAAAAAAAAFAUK9d8NUT-13gC6FtlSmKAAAAAAAAAAQVHW64ADdKWEeKDNfyNMi1wAAAAAAAACLMgCpDbfqkuF0Au3Mi2jaeQAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADNq5-VNNWJnEe4GvJK3_qvJwAAAAAAAADF4J4WxzKvOwTg2PxoPnS9CQAAAAAAAAEJHr4PYZ-sL6e-tu-94q7YcgAAAAAAAAEX09pLhX8Ysxadrvlyzhew7QAAAAAAAACm4CZPHF-aehJgVB8TpitL3wAAAAAAAAAztA5QFhiwL0MKlmqWTTtnMgAAAAAAAAILzkH-QAcWQraJt_RXBXUVJgAAAAAAAAABDDfUAG9Q-Cqwr5La19vRNwAAAAAAAAARUKPJi2EnOGK8xGawpYto8gAAAAAAAAAAAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bQ18ag7YP2eYAkgjL1WfPA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk3fgtQ4kMk_MBWrPUAFqVnYywAAAAABrMb2gtQ4kMk_MBWrPUAFqVnYywAAAAABrMF0gtQ4kMk_MBWrPUAFqVnYywAAAAABrYZugtQ4kMk_MBWrPUAFqVnYywAAAAABrLkSgtQ4kMk_MBWrPUAFqVnYywAAAAABrNNA", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "b6V4xY7xrfAyYrkPBC6rSg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSKf", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1Pskv-gOgJtlDh4WHXN8bA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAAAtt2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAJQjUMcrcBzL4lLr32UCpZoUQAAAAAAAAAJkMZEZuHxDxqpcAEODQvXvgAAAAAAAAAwSRpYTZfhwLcM3Dy3yQ23_AAAAAAAAABWeQ5eHfXsWTnATdnWhCFGWgAAAAAAAABsmFI6bnpBK3kAEbXHdNa8MAAAAAAAAAAH1fE-A15-sG5pm2Nv6tb9vgAAAAAAAAANJKjf0pZHg3dzwDeAqfO16AAAAAAAAAAEsyuAMg3RShupVDY63eHfbQAAAAAAAAAHMrVvriJqF-HOpa8js-mFagAAAAAAAAA3bC4xUO3cZ_wW8IEDAJ-BNgAAAAAAAABGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAm4yG9IdLfPOQJQp1BxdOq7wAAAAAAAACfEgnEAYVJO6evUZwnNI7NMgAAAAAAAAB05zxpGeZtVFjxV00AgHRxwAAAAAAAAAA6JDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFzQ8NOEhW_FMdxKX5ZKa-AQAAAAAAAAAgUyl96nbKrz6UOSXSc3iffwAAAAAAAABDmWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAABO0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFw_rNNsza6yNRFkKCHuRo-gAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFlJPXvfs9zQkNSoaonclVhwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFHHPnc3y4NDPeB1XAopRksQAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_hssi35Rz-FIdn8Nd5FAnowAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABA-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAyAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJz7yF4xFIRpq25tmzB5TjNgAAAAAAAAAkr9OA6z6ywxk33MG1uly6aAAAAAAAAAAZFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASFS55TSwq0w7KNb6oqdqsJwAAAAAAAABD56zV-Vh8goVypAgGZVVZlAAAAAAAAAAHgNQ3gt-jVly-lGFf8lvTDgAAAAAAAAAVgwheXdG5yFE9iYsKSBIzhgAAAAAAAAA_QIgnFhV-k7x98pPix58j8wAAAAAAAACiyThBMv0_vHiduuJoI2EtCQAAAAAAAAABOmzVUgwY22EPoqShuZpT1wAAAAAAAAAByCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIBp5IGjJq5SY5vljplV9r5gAAAAAAAAAMSqN7slLdgy2OaneYiiWHQwAAAAAAAAAO6lY285-SV83-nAIgYbFimwAAAAAAAAAGiOrzBCYQs1BopsXJA6o-yQAAAAAAAAAhaHQiNWkf6kHxebx5TYaGhgAAAAAAAAAFJUARmndao0aHauFQK7obFgAAAAAAAAAHfydIm0ZqbzbPhuUlJMDkgwAAAAAAAAA4bDgeT_c39mVd5IQfXugEbwAAAAAAAABRjMN4nO9pan5R8V5H-r9gzwAAAAAAAACvoXh6R7U5ycUuicuehRK8ogAAAAAAAAALjwKpyuFrSzUTCbnZ9EFuiQAAAAAAAAAJ64C-3H5XSZ9YnnqOjes6bAAAAAAAAAAeytZblqIBEsQV2ku_vlKaDgAAAAAAAAAZkZgtpJIkDQ7_uBMazY7fxwAAAAAAAAAInfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYYUwJS6kVpV4XvYu7ZD33UwAAAAAAAAAA", "types": "CANxBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "BKHw0-DnZnXjHo-trBEtjQ"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD8ZV4rFFPORY8_4FvK9QaA3QUQAAAAAAEVjy4rFFPORY8_4FvK9QaA3QUQAAAAAADQvxUJmIMEc6K8gJ39NHYaD0WwAAAAAACXKsUJmIMEc6K8gJ39NHYaD0WwAAAAAACUzk", "types": "MgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5DDw-DtrdzZtW7kg5HTxCQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMluQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAApawn", "types": "FAMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5QG78g_tGZTKr0G1ANhKDQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFVbq", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zo4C1xxGkbnF7lTJ1cO0rA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGi4Ez5k14PsCcDvFyUC1kmlV3QAAAAABGY_Iz5k14PsCcDvFyUC1kmlV3QAAAAABGTGnz5k14PsCcDvFyUC1kmlV3QAAAAABGTRM", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "twqd3gKOXzo1ljRyTz5Ssw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyrfZ3CKaS4aU08RhYA19y5ITQAAAAABz5LsZ3CKaS4aU08RhYA19y5ITQAAAAABwFC7Z3CKaS4aU08RhYA19y5ITQAAAAABv_0a", "types": "HAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FxldC4kM9dHxSQ8AHCya7Q"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDLZcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxkkcEvvhuguaGYCmGWrnWRz1QAAAAACEPcOcEvvhuguaGYCmGWrnWRz1QAAAAACEPh1", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "f4pDz1cx3YDG6D3ASmYcgw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipGH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipDo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Zq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Ei6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjoZw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjn7-6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWvZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWrK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmMhu", "types": "FAMMBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7xwMOd4RJ8Ot1XrcX4r_8g"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgMz", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "akaabcBUl8tIrbdEdxLvXg"}} +{"Stacktrace": {"frame": {"ids": "c6lwtZBG2BzNKGtSyzLrTAAAAAAABCWpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGc6lwtZBG2BzNKGtSyzLrTAAAAAAABBZWc6lwtZBG2BzNKGtSyzLrTAAAAAAABWVUam-Z0RfUVY0oYK5VXRDk9wAAAAAABeu4am-Z0RfUVY0oYK5VXRDk9wAAAAAABeopam-Z0RfUVY0oYK5VXRDk9wAAAAAABeePc6lwtZBG2BzNKGtSyzLrTAAAAAAACN4sc6lwtZBG2BzNKGtSyzLrTAAAAAAACNVLc6lwtZBG2BzNKGtSyzLrTAAAAAAAB8hjam-Z0RfUVY0oYK5VXRDk9wAAAAAACi24am-Z0RfUVY0oYK5VXRDk9wAAAAAACiyYUJmIMEc6K8gJ39NHYaD0WwAAAAAAGKH_", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nw0lHUGtJlhAw3RL4j2VeA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAAAyxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAACNJgmaT4hGItQStPxlJGEPUAAAAAAAAAAEWHTE8ACR4NC-I-EUuyo1lgAAAAAAAAAIjoHdKmx5pRoeIkTwEIvJpAAAAAAAAAAcIKniS6Oltfo1ekuyyeYCXwAAAAAAAAABSJxVsEnpCDnlRh2uwKM1VwAAAAAAAAAIU8y7tkq3OrTv74Jpmv-rDQAAAAAAAAAkWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFuaPqWrgrMtBr19nB0bwQ4AAAAAAAAAA7DvWhbkzH60wdCq3Z8oLdcQAAAAAAAAAHOljKMbs7Sslvbk6h8kJ9yAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfw5DtxqVhoNPMfZH51ZbSdwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOOcrWUHEqh-zll2_gAtcNYwAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAYq1Ak9_WYtjiRUK6jyz9agAAAAAAAMp30rNuxKNw6YxtKvsF6kS_jQAAAAAADuzE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz01", "types": "CQM9BQIDBAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "N6yoC5MEhf-Plh-uBAaDFA"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "CQMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KSlgLs4KuRHUbmWiYnIXRw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEPoG3DRiZKlMZ3sh3A8whkKQAAAAAAAAAZhbRa_Mv_nNX73QDH-O5j0QAAAAAAAABpfXtbF06M7ZwcaaNlV0uiIgAAAAAAAAAFTQHHjILJSS1Y0hdQ8MODHQAAAAAAAAAChjAyoRprP-ATzdRzIqim_AAAAAAAAABP", "types": "CQMwBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JAVFL_9B1Mru2EDRfP3R4A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmrvXT4fd_WKeR1cE-hlLelCQAAAAAACgbqf", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_jqRMH-qHd6C2OHsRzsMVA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAAByH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAACUe7YYWaQTMh8P2PCVzA2a8gAAAAAAAAA5gpzmfljwMvF6axjuntzBmAAAAAAAAAABtGdjZjM6jJA23WbdtVpvAwAAAAAAAAAIgpzmfljwMvF6axjuntzBmAAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "CVk6bBh2sasSABkk2yreCg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAACz-CA2HwYxn7uXuJvRLWceDgAAAAAAAAACo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABbw7HSilaT6ScQ9DqRu4RYLQAAAAAAAAAdzk_PAPIluouMAlyxqI2lSwAAAAAAAAALSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABpfcKzuljmcxtS7oTdbjcx5AAAAAAAAAAA", "types": "CQNFBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9XaUnPPtgxfYR4iOYVLS0Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vNqXT4fd_WKeR1cE-hlLelCQAAAAAAC-odPXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9If3cdMRPBzg1X3LOjvTmQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALO-i40hQb92bY-JOhJrV2owAAAAAAAAAs6l-EHm0OnthNsvyaQcuYhwAAAAAAAACj9kPyGC0UFb-ggUrmSlRB2gAAAAAAAAAffO_gJBPd8E-RahoVIhDflgAAAAAAAAAB1P3GTCQSFJPOIXZWIUu1PQAAAAAAAAARJQ--Da8UMa_zKaKYpLYZrgAAAAAAAAAE9TUICgSPSfd7KAYazEQhHwAAAAAAAAADIfypTA79lNbSQ0wodVdUIgAAAAAAAAADuDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKy06JmZzGFRMatVW0N2V1pgAAAAAAAAB_X8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtahPUgO5HrpkjK8o4_e1P2gAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAK3rLZd5lPThQHbPceRXAomQAAAAAAAAAHEbH1r4m4pobix__maqwQZAAAAAAAAAAZUeUQgO6mk4v2Tf2h_dZ3VAAAAAAAAAAHlnJKMmht2WAdGkeK5DkNVQAAAAAAAAAHXfRb2c4-WFPcLcvPGsB0MQAAAAAAAAGKUsmvCPPx2ySTElzzHPAmRQAAAAAAAAALOcvpACJQxltSlyM67qOSuAAAAAAAAAAKh9jgcblMMhqnshwrhCHrJwAAAAAAAAAPP_o2pJ69sFtlULR3r8EJWgAAAAAAAAA5Sd0ietlVHSd47AdPIVeCfAAAAAAAAAAFTpHBIFxy9wxqWeMb-8BF5gAAAAAAAAAFu_puopvsV1MzjtS2CqfR6gAAAAAAAAAGX8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtahPUgO5HrpkjK8o4_e1P2gAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKEFoOI6BMp-b-Y3eJPVq_QQAAAAAAAAAhDn_by4fn1KU32-U6kNQlBQAAAAAAAAAHL_kEqub67pN0QW8_pJ6NGAAAAAAAAACQ89QgHcaz-NjGLJbNw7HkywAAAAAAAAAYWiSL_btpndoHR-_C8YlAawAAAAAAAABUQSSOb0-tvuwiWAWKyDlIcwAAAAAAAAAAFuIO9WbemvG_iGdYJZU2nQAAAAAAAC8IFuIO9WbemvG_iGdYJZU2nQAAAAAAAFzlFuIO9WbemvG_iGdYJZU2nQAAAAAAAFb3FuIO9WbemvG_iGdYJZU2nQAAAAAAAEUI", "types": "CQMnBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "AV3KqYOZqF9Mk2HE54qTBw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eQZcEvvhuguaGYCmGWrnWRz1QAAAAADhDQtcEvvhuguaGYCmGWrnWRz1QAAAAADhDjacEvvhuguaGYCmGWrnWRz1QAAAAACEE2A", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KwXcanRetdSttfxy05UTJw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATMsVxGJ_9ADjCLmkId1rUYwAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAEKGqShcrW-d9_GDzTagKIU9QAAAAAAAAAG_h880XQOq8mngzMZR-nPlwAAAAAAAABR9iEsaZI76W1WejkwhmTFwQAAAAAAAAAHC64NVLkkZ7RW349y9srs0gAAAAAAAAAEH7o77ANtSaWU3Ypp865GJwAAAAAAAABW_93WPbrUDW14kcLWmrpKPQAAAAAAAAAG12nEeMsH00wjguIyHXaYDwAAAAAAAAAEHRnmOObX7UEhjneXDGbG8gAAAAAAAAAMWdf_fGMEPXcmaZUprOUqQwAAAAAAAAABzKHS4hsJddCCPPI3lqHKuAAAAAAAAAAF__e_ReExoac--V-RQeNXewAAAAAAAAAHqnkrTiN5YCts6ND7O0BX2QAAAAAAAAAPHRnmOObX7UEhjneXDGbG8gAAAAAAAAAMWj5_TD0E9go0_JwMtB1C3QAAAAAAAAAF3QWEH8eApmH_ruugOKv76AAAAAAAAAAHshNXixs-94AywpTuAMqgvAAAAAAAAAAK5m5J32z338iItYAy0IlfPgAAAAAAAAAopGnFHfBK3F-I6STArMJjqQAAAAAAAAABqsOdwnOfdpGhy1Ny492aAwAAAAAAAAAGbfWTJUKYANwcIsCQIfxvLQAAAAAAAAAC1rHoPMq-mpf_DwJrvHqYAwAAAAAAAACKpaeptaXHRDYD67F7ORC0twAAAAAAAAAn0e24YoBzYK_-A6P4vU02BQAAAAAAAAABZBmcQL98TXLA7smZymDadQAAAAAAAAA6NfM0LhQlSM_JpwKY-QxdBAAAAAAAAAAJqi3usQvX6nGjXxgm580OogAAAAAAAAAFcV0o7vAf2W7Ihj4gtxIcCAAAAAAAAAAGYegVEymiG8lw5t7wHfz6hwAAAAAAAAEmTl_Iodjc0LWexYa5MoBoHAAAAAAAAAAHY3ftK9mWklQQE1dRC8tbhwAAAAAAAAATzcjbCSOxeTCClWpD2cCw2AAAAAAAAAATu39hB2o_bkkn64I33Zf2OAAAAAAAAAAA", "types": "CAM-BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fc0hsHze8JxXuxC0PiL3Xg"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXDNgtQ4kMk_MBWrPUAFqVnYywAAAAABqaJ-gtQ4kMk_MBWrPUAFqVnYywAAAAABqYJkgtQ4kMk_MBWrPUAFqVnYywAAAAABqYXkgtQ4kMk_MBWrPUAFqVnYywAAAAABqZkngtQ4kMk_MBWrPUAFqVnYywAAAAABqhHQgtQ4kMk_MBWrPUAFqVnYywAAAAABqGVd", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Oy7WWxQY6oFWn_Jfuj_CMw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABiUDU1_CPvfFPVWUEWglidAAAAAAAAAAAoWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgg8ia7_SjtnnoFsx8t6EVmgAAAAAAAAACS4pDMZQIDu6mVxa95R8FGQAAAAAAAAAdeNbj51SwVufxZ4R3ztSduAAAAAAAAAAMRLw4AzQ1twQD4Yf1dhVtogAAAAAAAAAICEhlVwLkGcF6wPQ9FYzYUQAAAAAAAAAFEqtQxEspQTRRSSWWTkm-NgAAAAAAAAAJnPcpIVOjAbk4oUD0VpGGhQAAAAAAAAABZ_WnWFmJraaLolV8hl2sigAAAAAAAAADWt0sf_JgSqOTKaBcf1zgawAAAAAAAAB7FzJF8qZ49M3tzNcHAYKOpwAAAAAAAAAHcx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAAjYKoBBl0G_e9oE7cFaZfzDAAAAAAAAAANrGDifO1Mqf9Ue5AsCRkS-AAAAAAAAAAN2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdQShimh0tQga8QazMW6_qBAAAAAAAAAAB_fOhPrA482cdtwnWghjHQQAAAAAAAAAM8hquOE5UjuqbQKed-OMfiwAAAAAAAAARWNHUiu4BFqRVmqF_mtCsFQAAAAAAAAAD3r-tlbWKH7Bh4O96M6j3bgAAAAAAAAAilJfPltGODmJePtyLCuHROAAAAAAAAAAvvbgAMp4MJN-LIAvT-yH7-gAAAAAAAAAYBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADJWFBxAERZNClfuNDueoaytgAAAAAAAAAGFw4N_DGYxmWJY3G6VlrCLwAAAAAAAAAGK4GtFsHu3sEiObk5SkQ6NgAAAAAAAAAZR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAAAgJka4_scu9xr1JKUZQmFbgQAAAAAAAAAegfz1ToZobLt1aklyZQg9bAAAAAAAAAAId__-FJDRZlyO8YWNJRXoCgAAAAAAAAAQT5Q31GDfksV6CJ4DGSPDfwAAAAAAAABU", "types": "CAM4BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ALnABGmJ9o6L9sDKJxvSXw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADB0YTZ3CKaS4aU08RhYA19y5ITQAAAAADA21XZ3CKaS4aU08RhYA19y5ITQAAAAADA0KdZ3CKaS4aU08RhYA19y5ITQAAAAAC11yLZ3CKaS4aU08RhYA19y5ITQAAAAACs6v2Z3CKaS4aU08RhYA19y5ITQAAAAACoaqYZ3CKaS4aU08RhYA19y5ITQAAAAABz6fHZ3CKaS4aU08RhYA19y5ITQAAAAABuBdPZ3CKaS4aU08RhYA19y5ITQAAAAABtHRL", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9Gz61dBIC7ELHLuPOdyJhQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgKA", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5Gf3npy8nYduuYDgS0-DSA"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABF0kYxe-SHgukLEpCkawSk1QWAAAAAAABF6H", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "64waXz9E1SA7hG6byl61jw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_W56cEvvhuguaGYCmGWrnWRz1QAAAAACEPgL", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DcDJxAbhaeXAke0iiK1Ajg"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYpqL9Bd3XIiGWasJdN8trI5tgAAAAAAA2p1L9Bd3XIiGWasJdN8trI5tgAAAAAAA1LtL9Bd3XIiGWasJdN8trI5tgAAAAAAA0Y-L9Bd3XIiGWasJdN8trI5tgAAAAAAAzUfL9Bd3XIiGWasJdN8trI5tgAAAAAAAKa-L9Bd3XIiGWasJdN8trI5tgAAAAAAAq4VL9Bd3XIiGWasJdN8trI5tgAAAAAABckC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NA_SRlvcEeTb90WzagQR1w"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEPzb", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "L-krqMHCCcuwJFf2rdvXfg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAADgbhA", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "CUdU_mHHPKnAvC3UF2KZbA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA70RgYbC2fQjxygsXZf0s0DwAAAAAAAABPiAgP1DBH7Z9OPzvK7kQabQAAAAAAAAA3brHwMWIWqKKcmy2jXj1-xAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA70RgYbC2fQjxygsXZf0s0DwAAAAAAAADSW87P_sgUDxSTpL44g-B3sgAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAscUbYCLGaGbgTEEgF2M5aIAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACWJDHHnKZefnrVelWma4FLrgAAAAAAAABWu84jH0Fi4giPpR8JCVg2uQAAAAAAAAAFBIGurv2nSrr97P1vYN16KAAAAAAAAAAGVOnMEGCyX7vvCgTfrp9ErgAAAAAAAAAaWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYv0o-SuFa6Ydo5LzhQb4MjgAAAAAAAAAGkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAgqgmjWpW3k5-dhnv9CCTcfwAAAAAAAAA0pSVcwHLkS-nxPYoJIIKFcQAAAAAAAAAVeNbj51SwVufxZ4R3ztSduAAAAAAAAAARdkL5PpvJ6DOYifdu5jPpNQAAAAAAAAAJz4wTvbjnVpC6Mwza8ndvzwAAAAAAAAAIiM8LSJ_0DrAH3j2_fhBWQwAAAAAAAAAIKYUKYe5FJokP-mDuLYX4tQAAAAAAAAACXpviWYO7CFQF88r_qvK5hQAAAAAAAAAJW-qC1aJXVDjHMM0aSKA12wAAAAAAAAAhR1GkjoPI5Yxt9CGoDpaaGwAAAAAAAAAkWsCQmTSDw0k0qcC-8oiYqgAAAAAAAAAbvoqjqV6_-EldPWpE4Bg5QQAAAAAAAAAl", "types": "CANLBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wKIhZpc_SbmeMR0xa3FpYA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAC1On5Z3CKaS4aU08RhYA19y5ITQAAAAAC19YhZ3CKaS4aU08RhYA19y5ITQAAAAAC14oVZ3CKaS4aU08RhYA19y5ITQAAAAAC14daZ3CKaS4aU08RhYA19y5ITQAAAAACsn_sZ3CKaS4aU08RhYA19y5ITQAAAAACsuuEZ3CKaS4aU08RhYA19y5ITQAAAAACnQugZ3CKaS4aU08RhYA19y5ITQAAAAACIAqaZ3CKaS4aU08RhYA19y5ITQAAAAACtAiPZ3CKaS4aU08RhYA19y5ITQAAAAACsxfDZ3CKaS4aU08RhYA19y5ITQAAAAACIA38Z3CKaS4aU08RhYA19y5ITQAAAAACIecEZ3CKaS4aU08RhYA19y5ITQAAAAACIdftZ3CKaS4aU08RhYA19y5ITQAAAAACInZnZ3CKaS4aU08RhYA19y5ITQAAAAACIfPuZ3CKaS4aU08RhYA19y5ITQAAAAACIPZ8Z3CKaS4aU08RhYA19y5ITQAAAAACIO8uZ3CKaS4aU08RhYA19y5ITQAAAAACIOJ3Z3CKaS4aU08RhYA19y5ITQAAAAABuBVtZ3CKaS4aU08RhYA19y5ITQAAAAABtHUkZ3CKaS4aU08RhYA19y5ITQAAAAABtGvYZ3CKaS4aU08RhYA19y5ITQAAAAABtSP2Z3CKaS4aU08RhYA19y5ITQAAAAABtSlfZ3CKaS4aU08RhYA19y5ITQAAAAABtS48Z3CKaS4aU08RhYA19y5ITQAAAAABthAbZ3CKaS4aU08RhYA19y5ITQAAAAABucGH", "types": "GwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4njjNItvEbDgi29-ZVtyFQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAAssFs-DxXlXTzn3bVNvCe0KwAAAAAAAAAE", "types": "CAMKBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nkLhaXsVw3-8NTJ_RrPOKg"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc5-Qz5k14PsCcDvFyUC1kmlV3QAAAAABcnaEz5k14PsCcDvFyUC1kmlV3QAAAAABakmCz5k14PsCcDvFyUC1kmlV3QAAAAABaBsyz5k14PsCcDvFyUC1kmlV3QAAAAABaBLIz5k14PsCcDvFyUC1kmlV3QAAAAABHZsIz5k14PsCcDvFyUC1kmlV3QAAAAABKB57z5k14PsCcDvFyUC1kmlV3QAAAAABLLQZz5k14PsCcDvFyUC1kmlV3QAAAAABK3KAz5k14PsCcDvFyUC1kmlV3QAAAAABHeeNz5k14PsCcDvFyUC1kmlV3QAAAAABFzni", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jHPaRAYIEF5DCPV1MxoM0A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACguWEXT4fd_WKeR1cE-hlLelCQAAAAAACguzwXT4fd_WKeR1cE-hlLelCQAAAAAACgwg4XT4fd_WKeR1cE-hlLelCQAAAAAACgwVi", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "b9h46ZBYMkEpYhwneGnE7A"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABLN7ynDYiGG43L8r_Igy7BgAAAAAAAAActrUzCYGjKe3UUnWzzQXqEwAAAAAAAAAMT2c5-p_HTAiWRFE2IbjI8QAAAAAAAAA7h6Obzp5eyXgRpUblA-ofAQAAAAAAAAC9uMFx2Fq4FWmDdC9qTh9OCwAAAAAAAAE0KcjVoO3dzCmC3PrWs_ohHgAAAAAAAAAJjfWZKcvJcvZvI74FMiyrAgAAAAAAAAAB0hcFUvwWZfQvp2KtSe1TEQAAAAAAAAAH5kI3iCVPIGpJyER_pIOiDAAAAAAAAABK_t41Zgn8MiPpsE2ExccvfwAAAAAAAAAISlk7EKKi8JmNp7yELCNTwgAAAAAAAAACNglZAtsVMy0PR4D9Bo4v_AAAAAAAAAAIdH_-XVY1o9Dh1CsvXltQLQAAAAAAAAAJlL02ENMn9TDqCnir50TaAgAAAAAAAAAFECGxOh43abBH5lmW6GWEbwAAAAAAAAAcWz5q8JekpnYi0s7eTlcojgAAAAAAAACvu93Ukboxh3n8fpdAM9THpwAAAAAAAACRcw2Z8udT9L2DdqGSTwVYJAAAAAAAAAAGd4qHdalKlYFqF-4zvAgorgAAAAAAAAAWA40VS-0F5gGiCT87AV4zFgAAAAAAAAAciQVo4-YPSPQT8lzVnTciPgAAAAAAAAARlL02ENMn9TDqCnir50TaAgAAAAAAAAAFhiE_KnpB1y_AkU-QUSuyPgAAAAAAAAAQXKq9uwED2oR9Ctzag8AUbwAAAAAAAAAlJmbV-AH56XNUdA5-wxAqIAAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABHp77QPk88xsYu9Hpoa4_oAAAAAAAAAATwQRLh0_1mVfrLTkzs1izhQAAAAAAAAAHh3WTBx-QeTdXBYE6dCwz6gAAAAAAAAAHuBwOWLxdrKmAGkggaU_IuwAAAAAAAAACZB5AF2kz_ddL2Cqvbd8kDgAAAAAAAAAFi4PCA3W27MVi4Ei_Ff0q6QAAAAAAAAAx5so_KVSXFMoe2CmzNIidzQAAAAAAAAAdXhlVGmmxX5oIgUuiBewNuwAAAAAAAAAFpglWm0RMq3BU4u1P5KYMegAAAAAAAAAEzq8tlu3O9tP1fJ8wW0TDFAAAAAAAAAADWC84z5yW0bfbqtzaBiwk7QAAAAAAAAAIeFt3HBfKL3js75TxQmmTYAAAAAAAAAANeigX7IF-N43DehUBMQgIJQAAAAAAAAB_", "types": "CQMsBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "quosysHAEjLBmlro9m_ngQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGgeDz5k14PsCcDvFyUC1kmlV3QAAAAABFr3Wz5k14PsCcDvFyUC1kmlV3QAAAAABFpxkz5k14PsCcDvFyUC1kmlV3QAAAAABFc6fz5k14PsCcDvFyUC1kmlV3QAAAAABGnT26tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ8bZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ75B6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ7gC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJloA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJlhJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAACHEw6tVKI4mSYDEJ-ABAIpYXcgAAAAAACG-k6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFF866tVKI4mSYDEJ-ABAIpYXcgAAAAAAFF5X6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFF06", "types": "BQMMBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0iOF97WzAGxfIRG9LI9Btw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCPYxe-SHgukLEpCkawSk1QWAAAAAAABKIM", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LecKeTt-RiFscqL1ypA3eg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgLJ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0ME_bq-JiBTP2TTuqawOqQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw1x4XT4fd_WKeR1cE-hlLelCQAAAAAACwXCPXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "EgMCBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FjtKztgbAQPS6bJqFyRkYg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiFxkXT4fd_WKeR1cE-hlLelCQAAAAAACiJIkXT4fd_WKeR1cE-hlLelCQAAAAAACiM0oXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XRTFr0ecKlolYPr7OFrIwA"}} +{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwAIU6tVKI4mSYDEJ-ABAIpYXcgAAAAAADAxg6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC6gT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC6XuUbK4uezrplMLlSw0h87XfgAAAAAABbI3UbK4uezrplMLlSw0h87XfgAAAAAABa3aUbK4uezrplMLlSw0h87XfgAAAAAABZf1UbK4uezrplMLlSw0h87XfgAAAAAABZdNUbK4uezrplMLlSw0h87XfgAAAAAACHUPUbK4uezrplMLlSw0h87XfgAAAAAACG6BUbK4uezrplMLlSw0h87XfgAAAAAACNkyUbK4uezrplMLlSw0h87XfgAAAAAACRmPUbK4uezrplMLlSw0h87XfgAAAAAACRYKUbK4uezrplMLlSw0h87XfgAAAAAAAoVn", "types": "DgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kTDx6wHWjXIe5qbJcYLRBw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV5BZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbof", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_xsl0DUvgmwkE--D5zKWLg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAAB-5iAtVIILui-LgFNzk7nI4QAAAAAAAAAFTlb-NMKl40FjLIQMDGJfBQAAAAAAAAAXxme1OLUOxM6S5mWcBl9N_gAAAAAAAAAC8EydHzqUyrjotjG1DR1HjgAAAAAAAAADx7dNtL9l6yQnqIhb2iRkJQAAAAAAAABV85xU6UdOBVE-6wKT-DYa3QAAAAAAAAAcKlMLGpkm1pBrBLT79cviPAAAAAAAAAABzVZBdh_gmAiL5X6tN_0jKgAAAAAAAAAEWBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAABMQNDqKDPWY6nq0qvBxhyKdwAAAAAAAAByaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAARvxRz972AIxuNYE4eDQCpVgAAAAAAAAAO1_TQy4bzrYXq1nfuss_o_wAAAAAAAAAXt4nV0UqksCicoYQITIw3KgAAAAAAAAB-nj7FjmsicnaXN4IhCf2qjgAAAAAAAAE1", "types": "CQNRBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "I8MxFd2oQiwulkncGAE3Sw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVuttUA2IAZoyKZAgCzy0iDQAAAAAAAAAIpokhquvW9ooLc3LbDvwZ4AAAAAAAAAARXasdzsgYzXeaIf1qB6YHcQAAAAAAAADmPFj10tn7Q5v6DtY9a--2yAAAAAAAAADTXQF-stwqMiArQgxmCuIBPQAAAAAAAABICdiM_N4hdaPvSJwq3P6azwAAAAAAAAAENtCGtgNOSKjf89hTQ9pKCgAAAAAAAAAM1dtimHb35RfEFCzsXx56LgAAAAAAAAAHCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAEhQ2OXkHYZRXh3_WLXzxSBAAAAAAAAAAEqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYMn0lhQNjNLc2TiLs5CI5twAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFdciEg2zVAoapt7MT0cXoNwAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAAAB18xvsyEMx_xP6380NXq5wwAAAAAAAAAXFJBAv_ZG17EaYJPkcMS1YQAAAAAAAAAYb5D4G32aP0YH2ukb-bXGLgAAAAAAAAAdiM8LSJ_0DrAH3j2_fhBWQwAAAAAAAAAIKYUKYe5FJokP-mDuLYX4tQAAAAAAAAACXpviWYO7CFQF88r_qvK5hQAAAAAAAAAJ", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2O5kOZJ3_Wglv6zDEypvZQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-9R0XT4fd_WKeR1cE-hlLelCQAAAAAAC-xp-XT4fd_WKeR1cE-hlLelCQAAAAAAC-tNEXT4fd_WKeR1cE-hlLelCQAAAAAAC-hiKXT4fd_WKeR1cE-hlLelCQAAAAAAC-hZZXT4fd_WKeR1cE-hlLelCQAAAAAAC8k6-XT4fd_WKeR1cE-hlLelCQAAAAAAC8tjlXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8suKXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8sfIXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8sewXT4fd_WKeR1cE-hlLelCQAAAAAACjod8", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ECabQfDPNdq2S_4PkNDNJw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVP4GdI6f6aagjBxBAKz-KIgAAAAAAAAAMqd26ee2y8slhneyPRIcQAgAAAAAAAADEwKREEYJF8V2B2guAeJRSCwAAAAAAAACoWsBETJrPecSrGYvg781P3AAAAAAAAAC4mYO8eYShKNmyuBL3FXJB-gAAAAAAAAAwbcm3REG58b46CBv8_xMfuwAAAAAAAAAKxhbJyq2dXJOtFwl6fNdtPwAAAAAAAAANAD6q8JNXSicx23C7lYRhhwAAAAAAAAAHT-7yVwNuXXP4l85wV1xmqgAAAAAAAABgWP24-sIZ9ujXLXhCrx5dnQAAAAAAAACquVBW3qATYlP-aD6h0fuyUwAAAAAAAAAEF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdPT4VaUhFLgQWjMovkqo-tQAAAAAAAAAI8CGal5YjjmTZUgONcBCVkAAAAAAAAAAFSZIzrSBBPBO2zJj0aqaKggAAAAAAAAA0hbRuRrRTUwPxI5LbvQW-TgAAAAAAAAAKv-BWBCzanLU8PuKPwDfFAwAAAAAAAAGMk_K9_UkGJ5doglspKH5JwQAAAAAAAAAX5m3n_54tQQHrC0wzPZkPdAAAAAAAAAADaBDyfRrCxv0GQF3elQxZKgAAAAAAAABMLq5m9KEJy8LZZKxQPveNBAAAAAAAAAAfvseJX0sppKrh3ZPWhmhGrwAAAAAAAAATwrBa50Kv2QbqC8pKyQLbSgAAAAAAAABIwnPUmwWKPdDvWpg5ILGR7wAAAAAAAAAGBOaqyHr_2GYQ5H_RGUiqwgAAAAAAAAAi", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TLbgSL9Zw35AQNlV8CH_ZA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAABvZKLj_deYRtPDewbXBnoroAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAwy86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAAFYTifPIvND7b7ICq3M7OVoFwAAAAAAAABjxp8UYWGnlqPX0wJIUXeFowAAAAAAAABuf6f1SsspPHvrj_wSO0n7rQAAAAAAAAAPgKtOALC-hEJjrat8PovbXgAAAAAAAAAB9gl0Tnf4vRq7To4TNSCe1AAAAAAAAAABc8yUmV9G-B-SCoegb2pWEQAAAAAAAAAejqZlrbK2QVy2mdzZwH-X4AAAAAAAAAARZr166QHbSYbZh56patrJTAAAAAAAAAA99MN2fgYYfPHjYLcC665B_QAAAAAAAACTAYiZX9-gMPfOnqPU6eor7AAAAAAAAABqAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMnBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "51K4oSWZp3pUu3tImGvyrQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbpmZ3CKaS4aU08RhYA19y5ITQAAAAABtPba", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-q-VC6CdgCrCtUxKV-j7IQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgb9rcEvvhuguaGYCmGWrnWRz1QAAAAADgcaEcEvvhuguaGYCmGWrnWRz1QAAAAADgcoOcEvvhuguaGYCmGWrnWRz1QAAAAAChhw3cEvvhuguaGYCmGWrnWRz1QAAAAACIS3QcEvvhuguaGYCmGWrnWRz1QAAAAACFObNcEvvhuguaGYCmGWrnWRz1QAAAAACEMvz", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "HeDKeDoyOXeh664H0T-uHw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qCmepCKWJQWWrX7mRVq-c9QAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_jdrai_0fDiGEvZJybTdZ_gAAAAAAAAACGPgne5T-0iZurfH30RkS3gAAAAAAAAAdXfHacyr3VZQyavlI3uwP4gAAAAAAAAA-JvlRd4Wn40C95D0SC2Hf0wAAAAAAAAGsceSN5BlMG0ARBYcsvYKxUgAAAAAAAAC9IB9QQU_Mapdn9O22PbyS1wAAAAAAAAAaz5Ok5kVT2l3xrDDU1L9N8gAAAAAAAAAGgdEtfESsDNl02I7JUxnTmAAAAAAAAABMx7_78vHPaEs7GBgJ0fETJAAAAAAAAAB8iH1rt2A0cDFvTr2IZcc8_wAAAAAAAACWjtEB8q7ZNk5LwicDPNbPVQAAAAAAAABo9ZZppGm6KidGLnQQCLqseAAAAAAAAAAEh-Z3fgEnHEUep9LySFKv_wAAAAAAAAAwSSqMl2M69LixRhKTb53DrgAAAAAAAAA2kUz6eVxQfuG1Ni1zQ_7TuAAAAAAAAAAC1E_qvHzn98zpIL2UDuiywQAAAAAAAABAPtC-S19WCnMV3aDspjfrbQAAAAAAAAAJTw2zfUzqDOVUFpeB7AoPoQAAAAAAAAAI8ucXOrXeHAcDUyhmau8MtAAAAAAAAAAiw2b8aJArzOq-8nt8TQScxwAAAAAAAAAA", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9awep8I580wKNGVWPU3zOA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFGWjujT1s7sRuQIwkyxwy1QAAAAAAAAAEr9q6Sp77TFNIj0PxahNFPwAAAAAAAAAM4iaBbZIIwXRBOYMSVscz2wAAAAAAAAADf5pCmW13zl5OWUDLG_ClrwAAAAAAAAC4lcKpyKbbslpxpIA6-ZigAwAAAAAAAAAsxuNxfKOUTzUB_wbH4TLt0wAAAAAAAAB3tAXHC2ex_sNH2I8CqIq8uwAAAAAAAAC_nx5J7FG4gwufRMoryQ1tmwAAAAAAAADy40z8dDV5JS2lMhSzO_GcZQAAAAAAAAAx7IEHERnF90mapP9IXL1FNAAAAAAAAAAboT5zFE_NFh5plqQsO4lpugAAAAAAAAAM1hD0EQKJcmKVxYGeSGcN_wAAAAAAAAAbfD5Zam0aMgZzi6yQShKg2QAAAAAAAAASOTjdfdkd29yV8R0f82eKFQAAAAAAAAAKCb3k0Ed3ogplzow-lgEp0QAAAAAAAAAVOTjdfdkd29yV8R0f82eKFQAAAAAAAAAKOTjdfdkd29yV8R0f82eKFQAAAAAAAAAKDpqFKlGbJ6eFD6whTHVnegAAAAAAAAAPZEIcKVY7lNYjO6j6Z5DPQAAAAAAAAAACIii-ihJY98hUrLJlGHW9PgAAAAAAAABA", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "m0DUTT-orrZNLCpCBT229Q"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAnEGqyFI4UBcYw0uODaUlP_QAAAAAAAAAEo7sR_pIbiVV_Z8TfMWbBfAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALVhUIBMnDjpGauL-PhicCqgAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl_plqR4x5xi_qOVu9JWCxQAAAAAAAAAEYNvLePk3bv25BUHN3KzEXQAAAAAAAAChMo8MRZcTTA5MSH5mIc8c7wAAAAAAAAABnd8ByWx0Um8uF6bezxKuxAAAAAAAAAAEZWVXkJ8qrKOhTkKXzBlP4wAAAAAAAAABFxtpJ_NWQpPJ5FLumU0ojgAAAAAAAAAIv9PefBDDy2o7h2ynvK6BYwAAAAAAAABhxKygFT-Ukdgf1QJk7iE4OQAAAAAAAAAA", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hbmbPp-ElBVvP49jalJ5dw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-wC_", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "O7CPDrNlr-hiRWOQv0tH4g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAA4uYJaHL8c7yuUg9zbiJgfXAAAAAAAAABbYF3FgsmtJ5bq5eUQFvPU3AAAAAAAAAAe1MY1Nuqea_D-u-FFo2a_-AAAAAAAAAAly_zLcqsLm1pyxWcSerbeRAAAAAAAAABXAAAAAAAAV4sAAAAAAAAAHWb_4j8Xam4zbx9jqjuemtiUm8j-_s73zQAAAAAAnIK-bx9jqjuemtiUm8j-_s73zQAAAAAAkUUQbx9jqjuemtiUm8j-_s73zQAAAAAAkSKdbx9jqjuemtiUm8j-_s73zQAAAAAAkSB-bx9jqjuemtiUm8j-_s73zQAAAAAAkQ-C", "types": "CQMJBQUD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "f4zVx7PjjqtdSBCg40SHnQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHX4wXT4fd_WKeR1cE-hlLelCQAAAAAAChWnJXT4fd_WKeR1cE-hlLelCQAAAAAACgUOc", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1WJhqcUqLhbn-lKKloL3Iw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAA1OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAAI1OssVXIbkn5BQi4tGKSa8AAAAAAAAAAKw8GVRjAwPMFQC_D_wSJ9HQAAAAAAAACaZJjsD24vVeIB2Mk_BbDMOgAAAAAAAAABPlE8FXr5PelWy7FpXlhElAAAAAAAAAABpfFrejV5_d2JafhorerbtgAAAAAAAAABrzUIpq900aeM1bcZXA4bwwAAAAAAAACX", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NV6VnAF8jT7vQfk1JyGXpw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiP4z5k14PsCcDvFyUC1kmlV3QAAAAABJiIRz5k14PsCcDvFyUC1kmlV3QAAAAABJLl1z5k14PsCcDvFyUC1kmlV3QAAAAABHmTSz5k14PsCcDvFyUC1kmlV3QAAAAABHeeNz5k14PsCcDvFyUC1kmlV3QAAAAABFznb", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "rDZLu2kbgCRTlx5C0tAU6g"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAAAZAgLqjB_amR59Lv13Nhle_NwbwAAAAAAAkCC7B_NxRB-tFVbAaTDiew0fwAAAAAAbNKr7B_NxRB-tFVbAaTDiew0fwAAAAAAdIfl7B_NxRB-tFVbAaTDiew0fwAAAAAAZDl07B_NxRB-tFVbAaTDiew0fwAAAAABFNNX7B_NxRB-tFVbAaTDiew0fwAAAAABFfEz7B_NxRB-tFVbAaTDiew0fwAAAAABFY9P7B_NxRB-tFVbAaTDiew0fwAAAAABFYcm7B_NxRB-tFVbAaTDiew0fwAAAAAAfl_T7B_NxRB-tFVbAaTDiew0fwAAAAAAflvs7B_NxRB-tFVbAaTDiew0fwAAAAAAfd5x7B_NxRB-tFVbAaTDiew0fwAAAAAAfbLc", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "b24SYdtkbKZNKbXUua9QEw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAAA65FYxe-SHgukLEpCkawSk1QWAAAAAAAA8D0Yxe-SHgukLEpCkawSk1QWAAAAAAAA_IZYxe-SHgukLEpCkawSk1QWAAAAAAAA-3HYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEMf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD5P6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAwsz6tVKI4mSYDEJ-ABAIpYXcgAAAAAACuEk", "types": "CAMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gIqOBIkddGqGa-6C-I17xQ"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHbaI-7FSPUFvGFUkGA6jlppywAAAAAAC0ivYwxnBMtVSfJhocgnI0WgmAAAAAAAJWhYYwxnBMtVSfJhocgnI0WgmAAAAAAAJUnpYwxnBMtVSfJhocgnI0WgmAAAAAAAJRfoYwxnBMtVSfJhocgnI0WgmAAAAAAAHgKNYwxnBMtVSfJhocgnI0WgmAAAAAAAJM88YwxnBMtVSfJhocgnI0WgmAAAAAAAJBiKYwxnBMtVSfJhocgnI0WgmAAAAAAAJBX_xFA0V1dCXRoFBkiljWo8aAAAAAAADD7ixFA0V1dCXRoFBkiljWo8aAAAAAAADtoEcKHyLiwo2RANh6cTXVIEBgAAAAAAECvUcKHyLiwo2RANh6cTXVIEBgAAAAAAECJaUJmIMEc6K8gJ39NHYaD0WwAAAAAADkfL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAACY8z6tVKI4mSYDEJ-ABAIpYXcgAAAAAACYn16tVKI4mSYDEJ-ABAIpYXcgAAAAAACYgf6tVKI4mSYDEJ-ABAIpYXcgAAAAAACWQP", "types": "DwMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fNsvbUxXRVu2Mhtol_2f7g"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAABvZKLj_deYRtPDewbXBnoroAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAwy86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAANS_CTRBRzwj9_syNwY5rEXHAAAAAAAAAB3nZ_TLoQXzn9RYaGn5N0v4wAAAAAAAAA2414vwxwFz0HV2Ku4dzYYowAAAAAAAABPlF0402c3xDTaGy1WpLy7vwAAAAAAAAA-4ExmIEmG5cbeqkrcSlhsEAAAAAAAAAAH12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG7kZxFgbuXnmF5RM9H_z_ggAAAAAAAAAefMXwmZZHoKY5ug0oBlnUxwAAAAAAAAAff15ZZuvJposXWOcmbKQgxAAAAAAAAAAftL230chqNUuroXAS-gtapgAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBAZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMoavQ7EacG6CR4rzcFaNFEsTQAAAAAAATsz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjgtIG5EpvTeHopVC9IqkA_kSgAAAAAAAUgxIG5EpvTeHopVC9IqkA_kSgAAAAAAAaNA", "types": "CAMwBQIDCwQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1YGxNWOwDLWdH8szb5mhxQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAA6hQvt9SGcnRC8tVEB_Tur9QAAAAAAAAAOmxNhetCUxYQZQBlbqXLWtAAAAAAAAAABAZGriLcxLoYYv_Z-GwPFpwAAAAAAAAAA", "types": "CAMSBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fIQcSdu_o8kv1IBr0ptMXA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQw7WOWZs79Wz210098loDzAAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARrSUSoohdnG6MdsfC9pID0QAAAAAAAAAGpY2MvdN80J-OPBSDYZs_8gAAAAAAAABSneOkLg7Birx-EWGBuoP5rgAAAAAAAAAaDjB9rnpR9s2OI-jlVfuXnAAAAAAAAADmNrikprALerrSkH1iKFm6zQAAAAAAAAAs_ui1AAIySrYc7ZeYb73nFQAAAAAAAAAMDbSG9xbs7jnAEiHiVrKb1AAAAAAAAAB5ef3xDRSbmqFL7ZNK76sYsgAAAAAAAAACSNGuqrAhfEZlYr0oXxjYkAAAAAAAAAAuDVSkUfLwOzQuwgYi6TvurAAAAAAAAAAK", "types": "CANGBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9qiI7c1EsKF70-9DzcnXxg"}} +{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI7B_NxRB-tFVbAaTDiew0fwAAAAAAdyiE7B_NxRB-tFVbAaTDiew0fwAAAAABTOLj7B_NxRB-tFVbAaTDiew0fwAAAAAApa927B_NxRB-tFVbAaTDiew0fwAAAAAApXFX7B_NxRB-tFVbAaTDiew0fwAAAAAApV1x7B_NxRB-tFVbAaTDiew0fwAAAAAApVpc", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kRd2tupGjxrjLahazps8Sg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAAl", "types": "CQM0BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "izeMyuQSLOrl6hLi0dwyyw"}} +{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwAIU6tVKI4mSYDEJ-ABAIpYXcgAAAAAADAxg6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC6gT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC6Xu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEeBq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEd3c6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs-i6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CQQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mPYq8oyV7ZV_nGEjY2Kc4Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o8vXT4fd_WKeR1cE-hlLelCQAAAAAAC-pEOXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_Y9XT4fd_WKeR1cE-hlLelCQAAAAAACiFIoXT4fd_WKeR1cE-hlLelCQAAAAAACiKQzXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz5F", "types": "FgMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ktC1Rg0Kg-GVHcnK06D8KA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABgzj8z5k14PsCcDvFyUC1kmlV3QAAAAACFH_-z5k14PsCcDvFyUC1kmlV3QAAAAABhYaHz5k14PsCcDvFyUC1kmlV3QAAAAABmRWHz5k14PsCcDvFyUC1kmlV3QAAAAABmMyZz5k14PsCcDvFyUC1kmlV3QAAAAABmMaRz5k14PsCcDvFyUC1kmlV3QAAAAABHY7Iz5k14PsCcDvFyUC1kmlV3QAAAAABHYU7z5k14PsCcDvFyUC1kmlV3QAAAAABFTkw", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "BWJYyK1M7SWxDHZHNRzRWg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vCpXT4fd_WKeR1cE-hlLelCQAAAAAAC-n8q", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "tzkUxJPFNak60RgTMnrYcg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAAAbgTkmFNeogkFDQEs_Mlre8AAAAAAAAAAZB1lRvacwBBYy0dU8osocsQAAAAAAAAAEERCDx41eaqshzIEf6tpFyQAAAAAAAAA6iYUxWHXTfn0bGmFccSkBmgAAAAAAAAAA", "types": "CAMNBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "p0VJqBHL4U1X3AJs7_UEVg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAAB-5iAtVIILui-LgFNzk7nI4QAAAAAAAAAFTlb-NMKl40FjLIQMDGJfBQAAAAAAAAAXxme1OLUOxM6S5mWcBl9N_gAAAAAAAAAC8EydHzqUyrjotjG1DR1HjgAAAAAAAAADx7dNtL9l6yQnqIhb2iRkJQAAAAAAAABV85xU6UdOBVE-6wKT-DYa3QAAAAAAAAAcKlMLGpkm1pBrBLT79cviPAAAAAAAAAABzVZBdh_gmAiL5X6tN_0jKgAAAAAAAAAEWBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABRapg5i-nxkoOQjMlxB9g-swAAAAAAAAAFqYA0yXrjfQUiViGsCwfP0gAAAAAAAADolmdMMTHiYSG09aFSlb3EMgAAAAAAAADFB9zspJB6xk58idQOc2k5WQAAAAAAAAEJxa170c4ceuN7F4Z_jhJFyQAAAAAAAAEX", "types": "CQNHBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OqNgSWSKB9V19yC_3zOwUg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFTajQRmOPdPxCSIVqxKN8mgAAAAAAAAABq6xr0eveECf8Lijmxw8LoAAAAAAAAAAxKLdsSpMCKySKDdCQ2KiutQAAAAAAAAAIU1KF65rnT5XtMlndoc_vRwAAAAAAAAE4omklHAPZnqPNJHwVpvh2vQAAAAAAAACrqwPQ_i5WGexQYU8q8eVTyQAAAAAAAABzoSoGUxBn_MfT_4Ncm-yGtQAAAAAAAABGFjooOB7UnLRNkyMXgznjWwAAAAAAAACS2w9lEEegEaL2ybuXAjH-5gAAAAAAAAAWfOjhF2CyWsBF_FgpY6hNTgAAAAAAAAAurdBX62JmLvq7yePIa9GQ7wAAAAAAAAAfJ2vC-2Qs-dxljsuNDoDyLQAAAAAAAAAG-L6AWYpz_33u8acGuhOGDQAAAAAAAAAXqy-7WZgPcXaQOVH4VCBn9AAAAAAAAAAf-jIdg0mLkcZxesIDlQ1-KwAAAAAAAAA_-tSbHlR91dVpvAdxUOkCnAAAAAAAAAAJOCBJ3b0yd0m46kgQppcopwAAAAAAAAAFSyH3A-L8GuYowpuZ08nsBwAAAAAAAAATMOgPAaY2At24Q0nLro4PXgAAAAAAAABaP7Rt6loZ_wUSBc3hapNxlgAAAAAAAAA0", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "W_4xBcIc_f_s9tU-JNOc3A"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN4uo", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Z93g50d8HwYpd8WV7J74Hg"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKTEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKu8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfLgtQ4kMk_MBWrPUAFqVnYywAAAAACJGrEgtQ4kMk_MBWrPUAFqVnYywAAAAACJD-0gtQ4kMk_MBWrPUAFqVnYywAAAAACI8w1gtQ4kMk_MBWrPUAFqVnYywAAAAACI9ukgtQ4kMk_MBWrPUAFqVnYywAAAAABsxQJgtQ4kMk_MBWrPUAFqVnYywAAAAABsw8kgtQ4kMk_MBWrPUAFqVnYywAAAAABszEagtQ4kMk_MBWrPUAFqVnYywAAAAABr84EgtQ4kMk_MBWrPUAFqVnYywAAAAABsAoq", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YYALrzmw9j6F0pki4v-UkA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACujkfqsU9w34yk0ipcsxq5HgAAAAAAAAAO7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAFk3HyWSdTGgne1xIId1mIvAAAAAAAAAAzp0_NTCpSk9QXa6fNd9afdwAAAAAAAAAFmVBN-6O2zeIv8GsCRrlSswAAAAAAAAAC7skvoqQ_JlmRN5w43B7kuQAAAAAAAAACP_4qycvxHBZREHniLmgHbAAAAAAAAAAFZa0P_0e34shcw6VJJ_B5XgAAAAAAAACWLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC3OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyWtsTGLCNH21piOrMPoln5uBQAAAAAAvI8P", "types": "CAPABQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GVXKioR4pgAUvoXdIcddmw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZxyf5INnJibBb8rT_yMcsAAAAAAAAAAEe6HlflPyKAlNlF7JPJCNJQAAAAAAAAFLEe5ZDKMHiVCtP6qAhF9CEQAAAAAAAAGtVyubPqZIpIsaGdq5yyQHTAAAAAAAAAAHH3I9lsKeM021aDJgbYYYAwAAAAAAAABHL6IPi9cG-hWDQ-8_WE6FFQAAAAAAAABi4_IQF_LxnGyk2lDca0XOLwAAAAAAAAAoWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYv0o-SuFa6Ydo5LzhQb4MjgAAAAAAAAAGkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAgwPMn-SWi7gfHNn2n10TVWQAAAAAAAAACs1njeZVdcSoHf9g_Vz1CYAAAAAAAAAAdeNbj51SwVufxZ4R3ztSduAAAAAAAAAAMLbDXQXQlDNAPNuTWnAgwZAAAAAAAAAAIsF5y1rzkGcF6wVyaguE8oQAAAAAAAAAFillcsETYyGChWwTauJoFaAAAAAAAAAAJH993ZydDem1gABEwmkxlggAAAAAAAAAU2Mo4vkt46Sn5tcChaxtCYAAAAAAAAAAA", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZEdeFMwuL0Ijslo5YXl3tQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAABvZKLj_deYRtPDewbXBnoroAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAwy86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAAFYTifPIvND7b7ICq3M7OVoFwAAAAAAAABjxp8UYWGnlqPX0wJIUXeFowAAAAAAAABuKLDAZGCI4k6In3oIUIUWEwAAAAAAAABImhckGVh3BGIWcToRYxPBggAAAAAAAAACX31knMc676bIIEUjaHa0MQAAAAAAAAADTozXD2NzMy0dEH0e02djYAAAAAAAAAEKeRQqY-uKn1zCanFBx5tpKgAAAAAAAAANLaFl4epk0Q6S_D_8elQACwAAAAAAAAAsd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsK06i4sR69nVCcg3FbwNeuwAAAAAAAAAT90J0K9KRqjzo3OWaVDBuGAAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBAZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMoavQ7EacG6CR4rzcFaNFEsTQAAAAAAATs0", "types": "CAM0BQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Z8jNOELsk9N-t-k8xkKsfw"}} +{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI7B_NxRB-tFVbAaTDiew0fwAAAAAAdyiE7B_NxRB-tFVbAaTDiew0fwAAAAABTOLj7B_NxRB-tFVbAaTDiew0fwAAAAAAsX_v7B_NxRB-tFVbAaTDiew0fwAAAAAAsX6u7B_NxRB-tFVbAaTDiew0fwAAAAAAsW9Y7B_NxRB-tFVbAaTDiew0fwAAAAAAsTf37B_NxRB-tFVbAaTDiew0fwAAAAAAsSvV", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YQVFN6cdEp1dhgLb-zerJA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKTEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKu8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfLgtQ4kMk_MBWrPUAFqVnYywAAAAACJGkVgtQ4kMk_MBWrPUAFqVnYywAAAAACJDucgtQ4kMk_MBWrPUAFqVnYywAAAAACI9epgtQ4kMk_MBWrPUAFqVnYywAAAAABszj3gtQ4kMk_MBWrPUAFqVnYywAAAAABr9EogtQ4kMk_MBWrPUAFqVnYywAAAAABsAop6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "EgMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RbKchl_4xnq7yV-Q25CZiQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALO-i40hQb92bY-JOhJrV2owAAAAAAAAAs6l-EHm0OnthNsvyaQcuYhwAAAAAAAACN6lZUkN3dGRNTlylh0Rs1AgAAAAAAAAAWF_PHkNHp1cM7FmVp9OVy9AAAAAAAAAA2IYsF8T0nmW0EDmKEbhfC1AAAAAAAAAB3ZNIMXBN7NKTXUfXb93okMgAAAAAAAACfVdwrqP2He6NLNQ9LuEAacQAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQecGPZMO_Ar5A3oFGzfPKKAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQfGOA0JLmMg26rQH30fPUgwAAAAAAAABRa0wWJ2rcNU0N0nF8s8CPfAAAAAAAAAA6hzcOme2bHOlnmg1x3z_FQQAAAAAAAAAJOFvli6IQdK5-vtR_oE3g3gAAAAAAAAAKQSkoY5477iCGGkJLCg3twgAAAAAAAACLifinGpNZEDb24abZy_zLXQAAAAAAAAIgr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQfGOA0JLmMg26rQH30fPUgwAAAAAAAACvW6zbfG-pUtsdP3JjLENKRQAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQNaY9cPrM2n8oUei5D2qWHQAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQNaY9cPrM2n8oUei5D2qWHQAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGNaY9cPrM2n8oUei5D2qWHQAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQuqdblsLlo9aDgcTKrr02KQAAAAAAAAARERRGf3Kdvc3u72prdGAg4wAAAAAAAAFaRVh-BV8B68GuWcVN8lq5vQAAAAAAAAAVRTchl6Vcm4Bc2NrejFGSagAAAAAAAAAXpZ1DxhgiXyxWPuNbBtMrIAAAAAAAAACLUeBLZIMubAc4tcEy2sOybQAAAAAAAAED9sCTWshQJF-MxcDqttIhrwAAAAAAAAB6pHWwhVF7xhaEDZT2L0KL1QAAAAAAAAAGjfWZKcvJcvZvI74FMiyrAgAAAAAAAAAB0hcFUvwWZfQvp2KtSe1TEQAAAAAAAAAH5kI3iCVPIGpJyER_pIOiDAAAAAAAAABK_t41Zgn8MiPpsE2ExccvfwAAAAAAAAAISlk7EKKi8JmNp7yELCNTwgAAAAAAAAACNglZAtsVMy0PR4D9Bo4v_AAAAAAAAAAIdH_-XVY1o9Dh1CsvXltQLQAAAAAAAAAuw64jvzcoyqey7vlsJR66HAAAAAAAAAATlL02ENMn9TDqCnir50TaAgAAAAAAAAAF3OXUprnwrCHvPb_pGSZRIAAAAAAAAAAIIqULMo65wBpxMrZG82ozDwAAAAAAAAAWXwBU-eRBaCnHy44Hfhv2qwAAAAAAAAB2Uh6LcwID5aJukzbO3rioJwAAAAAAAAAIUO6PAHCkEL7ymSs753dktQAAAAAAAAACrlMDvNahhog_2YwC1vqNigAAAAAAAAAIGEq2R3OT579ZPRIW9oZppAAAAAAAAABcjOKHIn-OfmVASZP9y1NSfAAAAAAAAACHWlkJT2Virxt9w04SopK20wAAAAAAAAAQIS1ArEPDf7OwNwli619BSwAAAAAAAAAkB8GcDjZ97CTFJbinioRl3gAAAAAAAAApitNYDDux1CCzX0YHImZaewAAAAAAAACBhRWuhP2XlIOrGluAvR5cNwAAAAAAAAALlL02ENMn9TDqCnir50TaAgAAAAAAAAAFJEFRx205AMaHlwzWP0W_-gAAAAAAAAAUB-4a2N9xDOSL4yxG_gAffQAAAAAAAAA6lL02ENMn9TDqCnir50TaAgAAAAAAAAAF8weNsJh8wpgjhW51tVfckQAAAAAAAAAUBJDHz_v6MglYWRIxZBsdiQAAAAAAAADqtgTcpaw1PHSeu1PntXA3fQAAAAAAAABXWlkJT2Virxt9w04SopK20wAAAAAAAAAQIS1ArEPDf7OwNwli619BSwAAAAAAAAAkB8GcDjZ97CTFJbinioRl3gAAAAAAAAApitNYDDux1CCzX0YHImZaewAAAAAAAACB7uo6HnEu95TqHvEix8e-NAAAAAAAAAAThcyqiQEWmR9-y-RezAvhPwAAAAAAAAAb6OJ3ReaIjuuKuCCqxofHxwAAAAAAAAAIjTElghZsdZy_HrHGbsWA3AAAAAAAAAACzEHb9nHP5bFEE5As4w896QAAAAAAAAACmcUNtE1F4FFRdkwX2pHxOwAAAAAAAAAWC5SckzYBj7bxYLqCrzqtmwAAAAAAAAADEsiemG9MpfP023-drLo7agAAAAAAAAEtTBMkprEh01zslJl_qiQmuAAAAAAAAABLM35XBWe3gnTsFQlgGAvN-QAAAAAAAAB6pwf2qv_E6qoTShEL7CgcmQAAAAAAAAAA", "types": "CQNqBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "c4r_QH8QJIos6k5aVv9MwQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZxyf5INnJibBb8rT_yMcsAAAAAAAAAAEe6HlflPyKAlNlF7JPJCNJQAAAAAAAAFLEe5ZDKMHiVCtP6qAhF9CEQAAAAAAAAGtVyubPqZIpIsaGdq5yyQHTAAAAAAAAAAHH3I9lsKeM021aDJgbYYYAwAAAAAAAABHL6IPi9cG-hWDQ-8_WE6FFQAAAAAAAABdBLpe-z4Yd5pwaMKR_BsaGwAAAAAAAAAMQJL-SfxFsSlqFyMufqU3CAAAAAAAAABceOzzLIU2TSEN-nL8WNPcPQAAAAAAAAAKFOd9HiviZUDhaNiKk_owWwAAAAAAAAAT644cGNT2qB6lvzqttzEn0AAAAAAAAAALUJPsIIaxDfChbUoF4ScVKQAAAAAAAAAD0ebnP1NzKFRR4og442rKwgAAAAAAAAAii9tt-hJx8CwPn5dferao0gAAAAAAAAAGdrfqIeIYaH75qJBezgpYRwAAAAAAAABB-1XqE2W4hU4x2_iRlb0aiQAAAAAAAAB5Ln3g55flaj9wqB_JKlFpEwAAAAAAAABX", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gvLGcBYKJcogsvMPCXW6Kg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAAqadyH-5f8qL7d_nwuPRSZEwAAAAAAAAApZC4caaBbQcOc2WclRiklUwAAAAAAAAAMQJ-JVADSuuonf59sOKCy_wAAAAAAAAAPbYxYe2jgm-ZVQ1wIKl60VgAAAAAAAAA10rDJMn8VgPYie4Xyg6PSTgAAAAAAAAKaJjiG_BroZFP40tpmv2LaAQAAAAAAAAANcTSghm0iP6bYZfvjR-iYfgAAAAAAAAAKwACdzqsbVZZ7-w9w4aA61AAAAAAAAAAbXQCUoVCvFjlXEr6e8K8moQAAAAAAAABXefTBmpxxTjoAafV3eDofAQAAAAAAAACu_9_-8qGjh9aou0FeZrQLMgAAAAAAAADTf8AX8nZ-lp_iU67C5ubGNwAAAAAAAABAkiQ7KxPYNd0HZxuM62vmnwAAAAAAAAAgjVVHMYu0P2OEHJFmfTZ5eQAAAAAAAAAEgzF4xa6TmHHVGj6D9s_y9QAAAAAAAADoi32deQLexkVpk6b1igaeZgAAAAAAAAALD24BMbxmwnEGvGJ3u0PiFAAAAAAAAAAkkjVWL0CvcoVO8UJQES2rXgAAAAAAAACBAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMpBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XmofraVlDxT8cbdzRp2Shg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADK74KZ3CKaS4aU08RhYA19y5ITQAAAAADK60-Z3CKaS4aU08RhYA19y5ITQAAAAAB0Hr7Z3CKaS4aU08RhYA19y5ITQAAAAABz7D8Z3CKaS4aU08RhYA19y5ITQAAAAABz7ZTZ3CKaS4aU08RhYA19y5ITQAAAAAB0J2gZ3CKaS4aU08RhYA19y5ITQAAAAABz943Z3CKaS4aU08RhYA19y5ITQAAAAAB0J2gZ3CKaS4aU08RhYA19y5ITQAAAAABz943Z3CKaS4aU08RhYA19y5ITQAAAAAB0J4lZ3CKaS4aU08RhYA19y5ITQAAAAABz-PSZ3CKaS4aU08RhYA19y5ITQAAAAABz9XKZ3CKaS4aU08RhYA19y5ITQAAAAABz_0N", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xE58gd4ma2t147AfRmXZkw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlpa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN6Mt", "types": "FAMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YMwKGJse1CpvmNsnehzS3w"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB874Lz5k14PsCcDvFyUC1kmlV3QAAAAAB88UPz5k14PsCcDvFyUC1kmlV3QAAAAABJiP4z5k14PsCcDvFyUC1kmlV3QAAAAABJiHRz5k14PsCcDvFyUC1kmlV3QAAAAABJLRcz5k14PsCcDvFyUC1kmlV3QAAAAABJLsYz5k14PsCcDvFyUC1kmlV3QAAAAABGL09z5k14PsCcDvFyUC1kmlV3QAAAAABFRGf", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "AVoXqH8nEIOZYmjx3YbSoA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8Mq", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Ay08OUEgW2J5aFmlktUamw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjXzz5k14PsCcDvFyUC1kmlV3QAAAAABGOHuz5k14PsCcDvFyUC1kmlV3QAAAAABGM6Q", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "AVlEbvOnjmlc0WP-0dpVjA"}} +{"Stacktrace": {"frame": {"ids": "L68TrOZ9FjSDW38aILC82gAAAAAAAN10", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wVxfeW31BKBlFSOTuEq2vg"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFldb", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hj4d4dnw1d5Ai0FYTgrFrg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvU6cEvvhuguaGYCmGWrnWRz1QAAAAACLroTcEvvhuguaGYCmGWrnWRz1QAAAAACLsWTcEvvhuguaGYCmGWrnWRz1QAAAAACLsmncEvvhuguaGYCmGWrnWRz1QAAAAACL74lcEvvhuguaGYCmGWrnWRz1QAAAAACLvbWcEvvhuguaGYCmGWrnWRz1QAAAAACHvVycEvvhuguaGYCmGWrnWRz1QAAAAACHyB1cEvvhuguaGYCmGWrnWRz1QAAAAACHxQxcEvvhuguaGYCmGWrnWRz1QAAAAACF4_OcEvvhuguaGYCmGWrnWRz1QAAAAACFpZEcEvvhuguaGYCmGWrnWRz1QAAAAACEUE6cEvvhuguaGYCmGWrnWRz1QAAAAACFxoL", "types": "GwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lA9nEcA0uuTL_71GNcgdwQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVP4GdI6f6aagjBxBAKz-KIgAAAAAAAAAMqd26ee2y8slhneyPRIcQAgAAAAAAAADEwKREEYJF8V2B2guAeJRSCwAAAAAAAACoWsBETJrPecSrGYvg781P3AAAAAAAAAHL", "types": "CAMJBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "oa-K2M3FOalFIx-uXtMbhA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o6kXT4fd_WKeR1cE-hlLelCQAAAAAAC-pEOXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_Y9XT4fd_WKeR1cE-hlLelCQAAAAAACiFIoXT4fd_WKeR1cE-hlLelCQAAAAAACiKQzXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "BgTYmWLcSHALENB382ShAg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAEWwtUXT4fd_WKeR1cE-hlLelCQAAAAAAEWwzbXT4fd_WKeR1cE-hlLelCQAAAAAAEWw9ZXT4fd_WKeR1cE-hlLelCQAAAAAACnxaWXT4fd_WKeR1cE-hlLelCQAAAAAACney9XT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhJoXT4fd_WKeR1cE-hlLelCQAAAAAACgSMpXT4fd_WKeR1cE-hlLelCQAAAAAACgUEJ", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6qn8dRThwMb4sKyHdsYIBg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgKh", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RJoYn2cupaWfbWdZ4mletg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAdLJM8DDAjVJl721y2vxKHGSBegAAAAAAdFId8DDAjVJl721y2vxKHGSBegAAAAAAdDgZ", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JWLXJAVMATKQ_NqN-b0ZaA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjD5cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLl-ZcEvvhuguaGYCmGWrnWRz1QAAAAACHhtbcEvvhuguaGYCmGWrnWRz1QAAAAACFpPqcEvvhuguaGYCmGWrnWRz1QAAAAACEUE6cEvvhuguaGYCmGWrnWRz1QAAAAACFxil", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yckEj7GWNq012NwxrU-weA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsgobx9jqjuemtiUm8j-_s73zQAAAAAATTx9bx9jqjuemtiUm8j-_s73zQAAAAAAQE2Pbx9jqjuemtiUm8j-_s73zQAAAAAAQDPXbx9jqjuemtiUm8j-_s73zQAAAAAAlA2vbx9jqjuemtiUm8j-_s73zQAAAAAAlAxCbx9jqjuemtiUm8j-_s73zQAAAAAAlAMpbx9jqjuemtiUm8j-_s73zQAAAAAANAtSbx9jqjuemtiUm8j-_s73zQAAAAAASUat", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jQfYvR6mRwZ0wKpt1W4mmw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADK74KZ3CKaS4aU08RhYA19y5ITQAAAAADK60-Z3CKaS4aU08RhYA19y5ITQAAAAAB0Hw7Z3CKaS4aU08RhYA19y5ITQAAAAAB_wLIZ3CKaS4aU08RhYA19y5ITQAAAAAB_wOLZ3CKaS4aU08RhYA19y5ITQAAAAAB65eYZ3CKaS4aU08RhYA19y5ITQAAAAAB6zHMZ3CKaS4aU08RhYA19y5ITQAAAAABw46mZ3CKaS4aU08RhYA19y5ITQAAAAAB7Af3Z3CKaS4aU08RhYA19y5ITQAAAAADRyJbZ3CKaS4aU08RhYA19y5ITQAAAAABzIEpZ3CKaS4aU08RhYA19y5ITQAAAAAByyXAZ3CKaS4aU08RhYA19y5ITQAAAAABwOdiZ3CKaS4aU08RhYA19y5ITQAAAAABv1M7Z3CKaS4aU08RhYA19y5ITQAAAAABv3T_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEMf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD4i6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "GQMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "N32HuJ5yIbtDP0-_D_613g"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyOx", "types": "CQMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1ZwdcwBltMRW8njpewzvJA"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAAA_pPYxe-SHgukLEpCkawSk1QWAAAAAAAA0BbYxe-SHgukLEpCkawSk1QWAAAAAAABq8g", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_T0Nm4O8Y8U38S1pK82Lxg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlpa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN6ND6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFW5n6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMB-t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUktU", "types": "FAMNBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "acZoxBtzHbHvrq8Gf1eQpg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_WD1cEvvhuguaGYCmGWrnWRz1QAAAAAD_YqYcEvvhuguaGYCmGWrnWRz1QAAAAACEKL8cEvvhuguaGYCmGWrnWRz1QAAAAACEMeD", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZVHdt4rRKbUdxnZTJm-T_A"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXEEgtQ4kMk_MBWrPUAFqVnYywAAAAABqaDa", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "a1s5LU-rT5zvSIgKmP0jJw"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHsJJgtQ4kMk_MBWrPUAFqVnYywAAAAADHsO9gtQ4kMk_MBWrPUAFqVnYywAAAAADIfGLgtQ4kMk_MBWrPUAFqVnYywAAAAADIhGEgtQ4kMk_MBWrPUAFqVnYywAAAAADIfwEgtQ4kMk_MBWrPUAFqVnYywAAAAABw79zgtQ4kMk_MBWrPUAFqVnYywAAAAABs1bzgtQ4kMk_MBWrPUAFqVnYywAAAAABs1zagtQ4kMk_MBWrPUAFqVnYywAAAAABr_zugtQ4kMk_MBWrPUAFqVnYywAAAAABsAoq", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "tJpyJm7rhJhi9qSpxYfcQw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAACqKpITysyc01IYxgnwc53UiQAAAAAAAACxpUE7QAfzShdQtn3WGqiM7wAAAAAAAAA3Is2RKfC4b2ukkhfUF--06AAAAAAAAABwFrHU_JjyrJStKddfAU06tAAAAAAAAAATp9zD_NE4uqwzAMaadVzmagAAAAAAAAA0afsxKVvoOFfmdjpMFdkeLAAAAAAAAAAMC87NV7kL69jQPmyqDubIUAAAAAAAAAH_v9C0ft_9MZr7wkOCRARUkwAAAAAAAAAKTMN58sDtY11o0S1fn4NuzQAAAAAAAAAEq6Nv6zedp9zMaC3bjBa3OwAAAAAAAAAHGRd0IayWSCUz9wn4iSY-5QAAAAAAAAAGnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgvqEkVtvrBS0dWJTRUUQ1dwAAAAAAAAAA", "types": "CAO_BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "oczIRi-epiNY8m0vGbpfmQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAABH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAABYe7YYWaQTMh8P2PCVzA2a8gAAAAAAAABE_p12Y0DOk4cFEn5gGz9psgAAAAAAAAAE", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xYWPQJQixeW0wBhXPgmgYA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsftbx9jqjuemtiUm8j-_s73zQAAAAAAXsbbbx9jqjuemtiUm8j-_s73zQAAAAAARq_3bx9jqjuemtiUm8j-_s73zQAAAAAARryrbx9jqjuemtiUm8j-_s73zQAAAAAAUCyb", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZCyujnP85WNJhUMJpvTgjA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVuttUA2IAZoyKZAgCzy0iDQAAAAAAAAAIpokhquvW9ooLc3LbDvwZ4AAAAAAAAAARXasdzsgYzXeaIf1qB6YHcQAAAAAAAADmPFj10tn7Q5v6DtY9a--2yAAAAAAAAADTXQF-stwqMiArQgxmCuIBPQAAAAAAAABICdiM_N4hdaPvSJwq3P6azwAAAAAAAAAENtCGtgNOSKjf89hTQ9pKCgAAAAAAAAAM1dtimHb35RfEFCzsXx56LgAAAAAAAAAHCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAEhQ2OXkHYZRXh3_WLXzxSBAAAAAAAAAAEqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYMn0lhQNjNLc2TiLs5CI5twAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFdciEg2zVAoapt7MT0cXoNwAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAADrAotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAGJ1xBvehWaFQefKkuHjb2hUwAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJFcHGeTZbDG8jQ9sbtbngcAAAAAAAAAAcs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFIAf9e80wW0ROOv48VcVi-AAAAAAAAAAcGY5WEW77dofWJpcPe0twUgAAAAAAAADQD9GVFlImznaIRsowjgVv2gAAAAAAAAAPBnWw-Kwbk8U0kdCMhiF9pAAAAAAAAAAJUczL1F-b_k4z3ImSWHECfQAAAAAAAABUQ_fTsiDQn3AwPFHRHJfE6QAAAAAAAAAFISo198vJQrYNdynfqzotagAAAAAAAAACSU7fNzMC3NazhQDT5xGXYgAAAAAAAABI", "types": "CANEBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fzUCb8Wg8Xmaznxql2WVbg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAKGFseY0uix2hxT0Di8k7-3AAAAAAAAAATslf6t7FJIQoDjMJN42BVyAAAAAAAAAABFg2KiEq3-QS_hoWS2OekUAAAAAAAAAADWt0sf_JgSqOTKaBcf1zgawAAAAAAAAB7FzJF8qZ49M3tzNcHAYKOpwAAAAAAAAAHcx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAAjYKoBBl0G_e9oE7cFaZfzDAAAAAAAAAANrGDifO1Mqf9Ue5AsCRkS-AAAAAAAAAAN2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdQShimh0tQga8QazMW6_qBAAAAAAAAAAB_fOhPrA482cdtwnWghjHQQAAAAAAAAAM8hquOE5UjuqbQKed-OMfiwAAAAAAAAARWNHUiu4BFqRVmqF_mtCsFQAAAAAAAAAD3r-tlbWKH7Bh4O96M6j3bgAAAAAAAAAilJfPltGODmJePtyLCuHROAAAAAAAAAAvvbgAMp4MJN-LIAvT-yH7-gAAAAAAAAAYBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADJWFBxAERZNClfuNDueoaytgAAAAAAAAAGFw4N_DGYxmWJY3G6VlrCLwAAAAAAAAAGK4GtFsHu3sEiObk5SkQ6NgAAAAAAAAAZR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAAB0", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LffF1641guxpP7AZRFw0Ug"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAAAyxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEeM2OILZain4HbmUZD_h9ouAAAAAAAAAAFbhZo2QRqgq-0DU0P-coC5wAAAAAAAABJcPTHQ3hobU3S_WVNcs_o3QAAAAAAAAAISoESWitTbygqCArOsyQ6ZAAAAAAAAABezJS1ch2PqqsLX8q5Wj0t7wAAAAAAAAAfxjSvau0yCC6WYo-obUFaEAAAAAAAAAABGv4-gnM04seHvi2rk7HAtwAAAAAAAAAp55GfxhHkj37-fwWSYe5ibwAAAAAAAAAe", "types": "CQMzBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1azdmus8MOaCZZsOVGC4Pw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgJx", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xaQtJm9p00-Jz117AlZe2A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--RVXT4fd_WKeR1cE-hlLelCQAAAAAAC-7XmXT4fd_WKeR1cE-hlLelCQAAAAAAC-zdsXT4fd_WKeR1cE-hlLelCQAAAAAAC-1HEXT4fd_WKeR1cE-hlLelCQAAAAAACi9wRXT4fd_WKeR1cE-hlLelCQAAAAAACjCD6", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lq6pf1KkZGF1LzuvYn3GXQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_-Qx-pCy53U7YabuA5eb0fAAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAcpSIXlNYnJYwCILAJFTEzSwAAAAAAAAAGTyuf4RNGIxt-ueaCsLj22AAAAAAAAAAXvSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0qlujNL7db72ZwWHkSPq1iAAAAAAAAAAa8tJujVK0pdTWlucWIQYskAAAAAAAAADWSXFZShc93P7Br4wzVi_TSwAAAAAAAABGl8by2NZ7WjCFmKmn5LkVDAAAAAAAAAAKnOwqeD6ZJtavy7VDpIbTlQAAAAAAAAAENUHO_iNZCc-7_52gTmxhTQAAAAAAAAAIhq6I_LYL4I-0sHu-9iU7vQAAAAAAAAAMN9PMe4dCPllLdnaTDHMAZgAAAAAAAAAF8tuuWTUZUYmZJZRhv0SpoQAAAAAAAAAD7Slkc3C9A3eZsO9dv0O2hwAAAAAAAABtm140cnmnDMXwCTqH-lotHAAAAAAAAAAA", "types": "CAM9BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "96sgA3PNNIhrc_Nn8vguaw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChGT0XT4fd_WKeR1cE-hlLelCQAAAAAACg6OXXT4fd_WKeR1cE-hlLelCQAAAAAAChgTaXT4fd_WKeR1cE-hlLelCQAAAAAACh0o06tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAALgLi6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BwMLBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "84j_N3XJQ-JNtR9IgmysGw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAA1OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAAI1OssVXIbkn5BQi4tGKSa8AAAAAAAAAAKw8GVRjAwPMFQC_D_wSJ9HQAAAAAAAACN20w3jg2T4eqERcHiFWPDIAAAAAAAAAAaCh_u3pCKkhuOfcEbqwjJrwAAAAAAAAAj", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yYefdtiqA9Bd7sp3p_vBMg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_-Qx-pCy53U7YabuA5eb0fAAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAcpSIXlNYnJYwCILAJFTEzSwAAAAAAAAAGTyuf4RNGIxt-ueaCsLj22AAAAAAAAAAXvSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0qlujNL7db72ZwWHkSPq1iAAAAAAAAAB0vhnom3WOw0oZ6vmFp2wIgwAAAAAAAAAEaG3pqhoIQMvuRP0geTTqcgAAAAAAAAAEWF-P7AGULCZTVbmpPwe0eAAAAAAAAAABc8wp1Q45CdLtTNnj6qINTwAAAAAAAAAc_kZCXrU61VvgcGXGwSUUggAAAAAAAAABto-yOKaFnQ9KJ44ncZwPLwAAAAAAAAAITo01uEbCvRGfEp8XuZ7L4gAAAAAAAACedYHO2OE3YPDkjfbk38eLJwAAAAAAAABlkYKwgTJK-9URPxdbVIaSTwAAAAAAAAAJyq8wpNNFEnCqJHCKFRmAPQAAAAAAAAAEV5L5cSexPMdTDKYbyZjj6gAAAAAAAAAP7omsvqUCsJhnLDj4ZvJ9QgAAAAAAAAADfBNzPpcZwIcFZU3mPnPZtwAAAAAAAAA00JFePiIGG-AreW0ofMty1AAAAAAAAACRvJ0-lPXRGh0CL0gINj6_jwAAAAAAAAAHlWh8CycjgiXzGt6izb4udAAAAAAAAAC0ctdB72KOjjDgY7ArIUKVnQAAAAAAAABw_gOGrJK0UBjHT36EJGuOEwAAAAAAAACHxo8H4Xbu1dhktweO39ARgAAAAAAAAABJa9xJ5FQfUEQO7I4aLnTqGgAAAAAAAAAGTzkAwqPHYLvwYBOwmocR6wAAAAAAAABZIq0mgP3CUfU3TpmXsgUFKgAAAAAAAACM8PLzoB-u4hzDZ_WKIg8FxQAAAAAAAABUYNG5rLJWIsjMTCOpoQz9TwAAAAAAAACGm9ieovFwf2R2wYPTPe0oHAAAAAAAAAAEZlzgaLTArYTAL6Kw3yPwigAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAG-aeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARjk", "types": "CANNBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lpEdBT-lhEvIig3KMD8H7g"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZxyf5INnJibBb8rT_yMcsAAAAAAAAAAEe6HlflPyKAlNlF7JPJCNJQAAAAAAAAFLEe5ZDKMHiVCtP6qAhF9CEQAAAAAAAAEqM0BdGcfCFDkj9hzrRHcPqQAAAAAAAAAGSxO-0PVs-XzTJlP5O_VPJAAAAAAAAABEEdzyCQG3P71X3W8_ToHzcQAAAAAAAAB2NG3FN99VSnZbKGXoOWiZmAAAAAAAAADlo-fnJ6f2hlb0oiKytcljSgAAAAAAAACXzr7T9Lp-M7VvlAtjs4B4fwAAAAAAAADS3WiD8CvP3HQqqrwn5L6bcAAAAAAAAAHy06XZLHGlJyYuIL53b8SbBQAAAAAAAAAkZuSiv65WwcAu_jfpG6ANPQAAAAAAAAAF9ckyAkz0ynjkybc0aFl1wgAAAAAAAAAZkZ21XW5-NvO1hiIXWDAOXAAAAAAAAAB7Ff0m6vVgvBwc3vbqfludlAAAAAAAAAAR0xjqN2eHOKsjzvKPeuH6xQAAAAAAAAAI94c0iuzzyiq2admvir0-DQAAAAAAAAA9z_ZeRXCxHeNXTu6DB2OR1gAAAAAAAAACiFkuHlkQPsBsMnUTpjsUKgAAAAAAAAAF0Cdt9wyWxnG2B-xGXMO6owAAAAAAAABpyYF5YWbjTLokor9oKz_A5AAAAAAAAAANDYw6-LyNoVsQdM43hcJCegAAAAAAAAAI3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAA52Uf8NlMClggx8jaziUTJXlmWAAAAAAAAQEt", "types": "CAMfBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "G9ECosqumaYYOVTFlJRp6A"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEUiJ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WHdLU06VujMoiyFZz-6Z1A"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAADrAotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAExkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4pVlUGQpw_Cq0LEtbbly5dAAAAAAAAAAkN1WyTlGFxfHgSyYQ3aeHDQAAAAAAAAAOYSP8Ib_W13QEw_Ivysg7FgAAAAAAAAFyn0UYwZH5py59Xu9gAaxkrwAAAAAAAABAm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl5iN7OCAj-2IgmFqLvCWrTwAAAAAAAAESap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlJdvIaoH8miVW9zaDiDOZJwAAAAAAAADSap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlhW8OwmmxjJYCeXfLTZy__QAAAAAAAAFLap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlw4mT2NPQOW-Mg0N_xZsuzAAAAAAAAADgap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlRlK4jZbFueXylWP1GNjNSQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlL_sAxM5NHsnYQp22GwDx8gAAAAAAAABwap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAycNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAATPOaf2meILyNtXlyuau5zHwAAAAAAAAAKc6zhheBld8wEBO7TlhnPcgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB82g1SAYpsFtnBogFl0v0GAAAAAAAAADJdpQ3bcNFV5Y0XdediaTCQgAAAAAAAAALmmckjE-MysbZhDPP6gNxewAAAAAAAAAydmm7_Hn3SrysHeUffmIe9AAAAAAAAAAfaxxtk6GnkoiqRXb69JxcoAAAAAAAAACge4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJOdkuTNpXjsFc7WV5c_bgKAAAAAAAAAAMjBwquBL06pqJXOt8kphl0gAAAAAAAAAME5ablZjSwaw4LkNasKqxDQAAAAAAAAAFB3TkFubeMsUjXVlcESk9tgAAAAAAAAAMpmiRP16sLzHMk4sQotP67AAAAAAAAAAOqeHIgzzOczGD0wBwOrHP2QAAAAAAAAFJFuWxxcsr3tUR5NeFGer7vwAAAAAAAABnMWMRq4GUysNDjxb07DjPAwAAAAAAAAA3jsLLxIAhtu1IcuCmLP4yNgAAAAAAAAAH4T44kzE9JU_n4pRF5j5FFwAAAAAAAAAYSq4yJYXB5hEMp7oPtTmUiQAAAAAAAAAimSKMuTauUB6AvF_x3SDLhAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAlNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAADA0Bmu_hqLQc2qW5yo4O6HQQAAAAAAAAAyyH_ohM36PxcsspBj9HiisAAAAAAAAABU2LzHjSgmLRTwZBUFU5tC3AAAAAAAAAOkMqBIsif3R2mzo0ykDzfhVgAAAAAAAAAG2SoE78KyptyxN20Xr6w1sAAAAAAAAABMIqyODyKRDqBBdiCPAauRDgAAAAAAAADg1IYhUhcpiA-eO7MqPXqj1QAAAAAAAABOnt0VAZdwKPtVfJRsjYGLLQAAAAAAAADbqjaz-3R5MGuHG8xBpiPquAAAAAAAAAAhtG2KtxjrEKbGvy_Zisi6LwAAAAAAAABRqX8-oC5V0WLBgQpW-imEyQAAAAAAAAAG0UWcGuv4HeepGHFbr48-rAAAAAAAAAC5MM51VTv27UToLPXymIJTGwAAAAAAAAANvXrY6qUW8eDlJ5cS7LNEvwAAAAAAAACSRI8tWB64dE3pZrciG-qjEwAAAAAAAAA7JZwkMgssyxwDeUwKf3-dwwAAAAAAAAAL", "types": "CAOFBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ghkW6t8RwXibYrUFVPCOOw"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKTEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKu8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfdgtQ4kMk_MBWrPUAFqVnYywAAAAACJEoxgtQ4kMk_MBWrPUAFqVnYywAAAAAB1KARgtQ4kMk_MBWrPUAFqVnYywAAAAABsxWagtQ4kMk_MBWrPUAFqVnYywAAAAABsv09gtQ4kMk_MBWrPUAFqVnYywAAAAABskOEgtQ4kMk_MBWrPUAFqVnYywAAAAABr-YMgtQ4kMk_MBWrPUAFqVnYywAAAAABsAm7", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Y6u6JS5j_0cjiYf9M8rHGA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbpmZ3CKaS4aU08RhYA19y5ITQAAAAABtPnd", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "s-2JYu0cfzeKxgGAmMmGWg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZxyf5INnJibBb8rT_yMcsAAAAAAAAAAEe6HlflPyKAlNlF7JPJCNJQAAAAAAAAFLEe5ZDKMHiVCtP6qAhF9CEQAAAAAAAAGtVyubPqZIpIsaGdq5yyQHTAAAAAAAAAAHH3I9lsKeM021aDJgbYYYAwAAAAAAAABHL6IPi9cG-hWDQ-8_WE6FFQAAAAAAAABdBLpe-z4Yd5pwaMKR_BsaGwAAAAAAAAAMQJL-SfxFsSlqFyMufqU3CAAAAAAAAABceOzzLIU2TSEN-nL8WNPcPQAAAAAAAAAKFOd9HiviZUDhaNiKk_owWwAAAAAAAAAT644cGNT2qB6lvzqttzEn0AAAAAAAAAABcb9IQeq3-QS_hpwjlphK0AAAAAAAAAADYWaemXXt9iU7-uBEK9yL3wAAAAAAAAB7mqCo2mYwD2SnE5s-os9M7AAAAAAAAAAHKb-BUhTmEy25n_HMPR0FvwAAAAAAAAARKb-BUhTmEy25n_HMPR0FvwAAAAAAAAARKb-BUhTmEy25n_HMPR0FvwAAAAAAAAAjDmBUWt5eqfvD889nmv6e_QAAAAAAAACPGW-qDwCIkJ-9vywd7tDqUwAAAAAAAAAg0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAd7ar55a9FFsDYo35A0BIF8AAAAAAAAAAI29240F2y6QpifctCBMbrCQAAAAAAAAAG1cR9qK0QuNs5_6L4oQWr5gAAAAAAAAARlQpa9axIEgKeHggrPSwR2AAAAAAAAAADRdiKCN4y7glkFfG9QX6_tAAAAAAAAAAWa54vfeZiF-c1H2vDbjXg3wAAAAAAAAAC96ZwME41Vcm2b3c7GM_L0wAAAAAAAAAUqm8yYHYQV97eV8QVjFf-rAAAAAAAAAAage8VsMiHUgv6uPoct1QeWAAAAAAAAAAK1SF4gtpA4iYoQsQrqdIeXAAAAAAAAAABMnYM9B90Ha_6l2oFXip8PgAAAAAAAAAb", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "a3xb-ssrGNekJuDgWvwpzA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAAByH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAGCe7YYWaQTMh8P2PCVzA2a8gAAAAAAAAA5gpzmfljwMvF6axjuntzBmAAAAAAAAAABtGdjZjM6jJA23WbdtVpvAwAAAAAAAAAIgpzmfljwMvF6axjuntzBmAAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lBjABDojOtEboesMDDBsrQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi3MZ3CKaS4aU08RhYA19y5ITQAAAAACDjuSZ3CKaS4aU08RhYA19y5ITQAAAAACDgkGZ3CKaS4aU08RhYA19y5ITQAAAAACDf8TZ3CKaS4aU08RhYA19y5ITQAAAAABxI7PZ3CKaS4aU08RhYA19y5ITQAAAAABwW6UZ3CKaS4aU08RhYA19y5ITQAAAAABwY_IZ3CKaS4aU08RhYA19y5ITQAAAAABwYxzZ3CKaS4aU08RhYA19y5ITQAAAAABtHkpZ3CKaS4aU08RhYA19y5ITQAAAAABtG8t", "types": "HAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hbXGPbDX5meL7i9JY3U4bQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAABR3DsLLpnzoGeqib2_MeXKdgAAAAAAAAA6x6-7WFAhTzQvsnUGZiSFsQAAAAAAAAAJATl9MX9GPHt1x18s0j00bQAAAAAAAACsnvRDyOHmzao0-KiE93qpmgAAAAAAAACFC-k4pP3C58XjF9Fd3Lq5HwAAAAAAAAAGetZUbLY9KmiycxAk1S_mZQAAAAAAAAARfYAaYAgDJUWmUbqVG5AEPQAAAAAAAAAWbRKQfOYSaUm1OQVxnMmeSAAAAAAAAAAFWNCoXdwpbJJTBiougAuCXgAAAAAAAAABtX2kT2rXjxm20OW1HCBdLgAAAAAAAAAVj_udAtrkc7geDBLkxjYQ2wAAAAAAAAAA", "types": "CQMfBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "s77y9jKH8drMOWXLmWPwGg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbLwXT4fd_WKeR1cE-hlLelCQAAAAAAClbZwXT4fd_WKeR1cE-hlLelCQAAAAAAChWe2", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nModsyeNli1A3nLz6PKbFQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyn-Z3CKaS4aU08RhYA19y5ITQAAAAABzzZNZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyrfZ3CKaS4aU08RhYA19y5ITQAAAAABz4cvZ3CKaS4aU08RhYA19y5ITQAAAAABz57EZ3CKaS4aU08RhYA19y5ITQAAAAABuBVtZ3CKaS4aU08RhYA19y5ITQAAAAABtHQz", "types": "IQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9vPi40Zs4u4TUqcoxfAAiA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAABvZKLj_deYRtPDewbXBnoroAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAwy86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAAFYTifPIvND7b7ICq3M7OVoFwAAAAAAAAG8rtJFGuFDWKgkQ_kOhDwLwgAAAAAAAADcmvWNLiibNh2jmnrh-j3LtgAAAAAAAABui2HnQvZ0pKTd886GmsiskgAAAAAAAAADStb7SO-i1ysmwO8Lu0fgRQAAAAAAAADaCIJa2mPNm8b1wwJ_UCRwpAAAAAAAAAAFjWxMhVzBeHM3bqEF5ueSZwAAAAAAAACOd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsK06i4sR69nVCcg3FbwNeuwAAAAAAAAAT90J0K9KRqjzo3OWaVDBuGAAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBAZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMoavQ7EacG6CR4rzcFaNFEsTQAAAAAAATs0", "types": "CAMzBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SQ_1llgB9pHjszKVlayMvA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACujkfqsU9w34yk0ipcsxq5HgAAAAAAAAAO7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAFk3HyWSdTGgne1xIId1mIvAAAAAAAAAAzp0_NTCpSk9QXa6fNd9afdwAAAAAAAAAFmVBN-6O2zeIv8GsCRrlSswAAAAAAAAAC7skvoqQ_JlmRN5w43B7kuQAAAAAAAAACP_4qycvxHBZREHniLmgHbAAAAAAAAAAFZa0P_0e34shcw6VJJ_B5XgAAAAAAAACWLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAMvPUU5i5r5XThwPX6RJsZ7gAAAAAAAAAE21OviUyRbmnxs6uitnTC3wAAAAAAAAAP3R6peF1IdwfQqmb119dyMQAAAAAAAAAFjRPUUEtO9tA38nKSenaVfwAAAAAAAAAC3R6peF1IdwfQqmb119dyMQAAAAAAAAAFMDjyE5AlqASoc6cxfe5K2wAAAAAAAAAwmxRwXt-8CQt60ehjLjpoTwAAAAAAAAAKZaQmU-IXyGvFS9G6a9D4BQAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAAD8oQ_ZJ3ImiZWOZcNHv_WYwAAAAAAAAAjMj1fVO3bykQ8piLrLc5IFQAAAAAAAAAJp3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAANUDpp6LgRqCGeGjs7cnnwItcAAAAAAADvFr", "types": "CAPCBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zyMCig53Dw1Kh6Y5Ak4ECg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQ3NXJCw7PINTEV_suvi1hjgAAAAAAAAAnr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAABR3DsLLpnzoGeqib2_MeXKdgAAAAAAAAAY0D5QIcqYfSjF8Y2Aggw1CgAAAAAAAAANIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQymtcT7XngDCOtcgo8NmgJgAAAAAAAABaEuiuEGuoH1DvPXwEkw2odgAAAAAAAAIDVFvoTC_1MXfHqnOeoSu9rAAAAAAAAABnfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABDoOWiMf3FXpVTm1lISLlNAAAAAAAAAAIbrBTwpxsMrD0yGTfkZil9AAAAAAAAAAUbrBTwpxsMrD0yGTfkZil9AAAAAAAAAAUpSE2xvOwhx9_R0gr7EwEHgAAAAAAAAAF5BDw-_iNJdvQnGiR4GTycQAAAAAAAAAJuy69Ip8uSWWD7uF8sFNmvgAAAAAAAAADdZfda0UcYRM2ke2rRcR6rQAAAAAAAAAbJVv_d-Wq_iSNJYmh3K1k7wAAAAAAAAAzmSBnbtksrVvKstlIID71bwAAAAAAAAAUHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF4JxgAcphLAEsoWC3fPoUUQAAAAAAAAAMneQ9aDSiXyM-ZtdfoiCRFAAAAAAAAAAGXFsyX0Vq94TuMs7Bc44FAwAAAAAAAAAFhT_GFd-d817AZqi9jIee6QAAAAAAAAAUx8ERETcapIt78IXSEO8DRwAAAAAAAAACaLOl6FCWtZ16Qk1Y0IIBGgAAAAAAAAAG_CTrWCBcF1yntIOzlzRqGQAAAAAAAAAP22bcZc1mxVdkBovRtLXmeAAAAAAAAAAGJg7Tuh0IHpuumyzwN_F2xAAAAAAAAAALM2oQMdzf0FGz61Jik2pntAAAAAAAAAAfxLipvo50E1PefOOerYLZEgAAAAAAAAFe1oBnNdsJQEj_XlDQgtQSnwAAAAAAAAAC28lMZAEZuh7n6NDKQHV8WgAAAAAAAAAaYYCEYr-7R2KSxbtsdGMQpgAAAAAAAACbWu0A4-y-hJFjTGYZh91yogAAAAAAAAAbXTzyt_7oaEFXC9VgfSHzxQAAAAAAAAAAAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CQM6BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fR91DMhsph9eZTKyrXc1iQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHZB2XT4fd_WKeR1cE-hlLelCQAAAAAADHZLEXT4fd_WKeR1cE-hlLelCQAAAAAACzD7JXT4fd_WKeR1cE-hlLelCQAAAAAACzDzI", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fGZ0_jAt2Sa6H9aqgR9ALQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyFRZ3CKaS4aU08RhYA19y5ITQAAAAABtxSUZ3CKaS4aU08RhYA19y5ITQAAAAABtwNjZ3CKaS4aU08RhYA19y5ITQAAAAABtFuiZ3CKaS4aU08RhYA19y5ITQAAAAABtntlZ3CKaS4aU08RhYA19y5ITQAAAAABudBy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCER6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFA8y", "types": "CAMHBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "BuBAa1I5jvFL7gYGxAiqPw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_WBWcEvvhuguaGYCmGWrnWRz1QAAAAAD_X1dcEvvhuguaGYCmGWrnWRz1QAAAAACXxxScEvvhuguaGYCmGWrnWRz1QAAAAACES85", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wFzs3nsPKm0-98nOdvnpYg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABFqkYxe-SHgukLEpCkawSk1QWAAAAAAABFqkYxe-SHgukLEpCkawSk1QWAAAAAAABqb-", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "u9X3V4iAbUQK01T4dj3dMw"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAAKk8ML9Bd3XIiGWasJdN8trI5tgAAAAAAKijFL9Bd3XIiGWasJdN8trI5tgAAAAAACWlKL9Bd3XIiGWasJdN8trI5tgAAAAAACWOJL9Bd3XIiGWasJdN8trI5tgAAAAAACLHgL9Bd3XIiGWasJdN8trI5tgAAAAAABK4qL9Bd3XIiGWasJdN8trI5tgAAAAAABK-QL9Bd3XIiGWasJdN8trI5tgAAAAAABLExL9Bd3XIiGWasJdN8trI5tgAAAAAAAKWhL9Bd3XIiGWasJdN8trI5tgAAAAAAAq7bL9Bd3XIiGWasJdN8trI5tgAAAAAABckC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "DAMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RBIz8YSqwEsI8vQ6s401VA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw13SXT4fd_WKeR1cE-hlLelCQAAAAAACmJZl", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "VX0D1FqSB0R0ee_vyNQD3g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAAGkuWcUG2bf_MgJpXpuAZivRAAAAAAAAAAx0nBVkJrBQHU_wusVG6_3KQAAAAAAAAB96PDTyNLwDP2GCrVJoblLzgAAAAAAAABIciQsV4oUc5gYfL4dony27QAAAAAAAAAnOIU72g2wQhgyLETe_w4R1gAAAAAAAAAA", "types": "CQM6BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "E6RGbwWm0dVxqFwOWVv2aQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2qOcEvvhuguaGYCmGWrnWRz1QAAAAACg0PkcEvvhuguaGYCmGWrnWRz1QAAAAACgxMzcEvvhuguaGYCmGWrnWRz1QAAAAACgt45cEvvhuguaGYCmGWrnWRz1QAAAAACEPcOcEvvhuguaGYCmGWrnWRz1QAAAAACEPhl", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7W3F2hEgaUkwyZcLK1h5lw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEOE7", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vRhVO7223GyxUdDbf-SqPA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFxkXT4fd_WKeR1cE-hlLelCQAAAAAACiJIkXT4fd_WKeR1cE-hlLelCQAAAAAACiM0oXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAio9n6tVKI4mSYDEJ-ABAIpYXcgAAAAAAio7-6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimti6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk7IW6tVKI4mSYDEJ-ABAIpYXcgAAAAAAiyFW6tVKI4mSYDEJ-ABAIpYXcgAAAAAAiyBw6tVKI4mSYDEJ-ABAIpYXcgAAAAAApa94", "types": "FAMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wpzOzuBMXKSlxCrFeD8r4Q"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKTEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKu8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfdgtQ4kMk_MBWrPUAFqVnYywAAAAACJEnagtQ4kMk_MBWrPUAFqVnYywAAAAAB1YosgtQ4kMk_MBWrPUAFqVnYywAAAAAB1YgbgtQ4kMk_MBWrPUAFqVnYywAAAAAB1Kj3gtQ4kMk_MBWrPUAFqVnYywAAAAABs7_u", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yGilAff1LXtWYRg9JkiIrQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7zyXT4fd_WKeR1cE-hlLelCQAAAAAAC-8B3XT4fd_WKeR1cE-hlLelCQAAAAAAC-yjEXT4fd_WKeR1cE-hlLelCQAAAAAAC-057XT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwkkXT4fd_WKeR1cE-hlLelCQAAAAAACiu0a", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6XkUnJnVtI69J1xQz2N7UQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADSZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABCAZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAGrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAuU-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABTHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAIiuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAWyQLW28sZ3rpLXAl8a-XdLgAAAAAAAABnWIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAIKCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAIQRW1om0CtcYaE4B8xaBEggAAAAAAAABGAZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYlCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAACNHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABuHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFP1rXbpjewie805zI0BHMvAAAAAAAAAAILN3NdhSYKxRbaqnM5W9FBwAAAAAAAABpR-HVaw3JZ2IsajBZdLbC8gAAAAAAAABKKnKBdeWKnQ8CH5bzvx0i6AAAAAAAAABK-QN0Lznzz3LjWKMZzZD5rwAAAAAAAAAIeEXFmSmLstwTaBBVp_eSTgAAAAAAAAAFHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFeS9qs83Ev5DGIkgRm0VL-gAAAAAAAAAUem8QMqpxX9eEmdxu2AmtFQAAAAAAAAAPTR0CnebfBTQ0MB6Lw8cZBAAAAAAAAABvkNYFghz3UdICunQ0hZrtDgAAAAAAAAAY2JdqJqt8BMgPWVhHXGXHjQAAAAAAAAAY_LK6vQmkJV2KER5Y7ub6NwAAAAAAAAAGMO5u4HKcW5-RczfdOQCIJAAAAAAAAAAHotkeOgHMDZdOlA7GywTS3gAAAAAAAAANeBe2TV8VA2V7lLyhiCvcHgAAAAAAAAAEclNKHmin0SttGhUDhj4qagAAAAAAAAAH68m2CwWM-Ledaj5WNl9lhAAAAAAAAAAqwMYFsNM0woNzFGwcp47vbgAAAAAAAABGEh0v14Wp9mB3u5tYha0hzQAAAAAAAAAmwSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFbhnM-182eA1jGyBQl8pMugAAAAAAAAAU4pL5iWdAziHKM6VzojymqQAAAAAAAAAGX8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0g4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAWMCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc5430MZlAMqI5SXd_yT5HRQAAAAAAAABcHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFN7LIGw1erb09TPWj8M9ehwAAAAAAAAAYwr21gCsicBxbZw2IJaNDDgAAAAAAAAAGEh0v14Wp9mB3u5tYha0hzQAAAAAAAABDwZ09eiIX1XgrymZWZ5BnrAAAAAAAAAAH7kiwTAFzycT-wgooymyU5QAAAAAAAAALLFiOeIpjbAGuoHCaoCuGBQAAAAAAAAA476ZQdAl2euBIN6YcqNHYDQAAAAAAAACQfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABP6WZ8beuV9qvYQN2_0rUbQAAAAAAAAAdWETDtAYgv6Jkvw6xLkpLwQAAAAAAAAAFlFttW9DSKwbJ3RVBuwGD_QAAAAAAAAAA", "types": "CQOOBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UX0dRGctmFF5qBp5Nz1hkw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyFRZ3CKaS4aU08RhYA19y5ITQAAAAABtxSUZ3CKaS4aU08RhYA19y5ITQAAAAABtwNjZ3CKaS4aU08RhYA19y5ITQAAAAABtFty", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bpJwGAFeVERZb45jAtC-iQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB878Mz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiQ6z5k14PsCcDvFyUC1kmlV3QAAAAABHpn0z5k14PsCcDvFyUC1kmlV3QAAAAABHpp5z5k14PsCcDvFyUC1kmlV3QAAAAABHeJQz5k14PsCcDvFyUC1kmlV3QAAAAABHdQDz5k14PsCcDvFyUC1kmlV3QAAAAABHeGEz5k14PsCcDvFyUC1kmlV3QAAAAABG_LBz5k14PsCcDvFyUC1kmlV3QAAAAABHCkw", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_WyShtnNC36vlv02gG4qCQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mf9XT4fd_WKeR1cE-hlLelCQAAAAAAC-nUyXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FgMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Ld2W0f7Ym8RC8Y3ks0qozA"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAANNFUL9Bd3XIiGWasJdN8trI5tgAAAAAANRA5L9Bd3XIiGWasJdN8trI5tgAAAAAANHhmL9Bd3XIiGWasJdN8trI5tgAAAAAAFB11L9Bd3XIiGWasJdN8trI5tgAAAAAADNxLL9Bd3XIiGWasJdN8trI5tgAAAAAADOIPL9Bd3XIiGWasJdN8trI5tgAAAAAAB53aL9Bd3XIiGWasJdN8trI5tgAAAAAAB3PuL9Bd3XIiGWasJdN8trI5tgAAAAAAB3hdL9Bd3XIiGWasJdN8trI5tgAAAAAACBAA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAACY8z6tVKI4mSYDEJ-ABAIpYXcgAAAAAACYn16tVKI4mSYDEJ-ABAIpYXcgAAAAAApa94", "types": "CwMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "S1pvlhWspslKp6nRLyEhbw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-9R0XT4fd_WKeR1cE-hlLelCQAAAAAAC-xp-XT4fd_WKeR1cE-hlLelCQAAAAAAC-tNEXT4fd_WKeR1cE-hlLelCQAAAAAAC-hiKXT4fd_WKeR1cE-hlLelCQAAAAAAC-hZZXT4fd_WKeR1cE-hlLelCQAAAAAAC8k6-XT4fd_WKeR1cE-hlLelCQAAAAAAC8tjlXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8suKXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8sfIXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8sfIXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8sex", "types": "GwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nE0jpTPsQJSKGMTGL4Mvsg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcoiHXy47Qw5euydEoPUexRgAAAAAAAAAga67hy6D4_aH__IrzfMid7wAAAAAAAAABrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZf4KmPLa6_uw8gRgiw9EUAAAAAAAAAE4ihprad0bkU-u2IU9StodIgAAAAAAAAFXDoHlZdzBUb9gYvYKOpEkpQAAAAAAAAAGbjQybHdPZPsvcVS9w00EngAAAAAAAACH", "types": "CAMMBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PNga2YYLyE-sFIxPdpQhjQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVMhk7twoFFvGSvyWsBJzr5QAAAAAAAAAMS-bF0OQ5zu714NI9jV1-DQAAAAAAAADEb95z1GhnNzkQcVnTAGVlWQAAAAAAAACoZkPmPV7VCVD8EkLP0Gy3BwAAAAAAAAPSKp-m6YXPN7JWDmz-Pu761gAAAAAAAAAZvqa2qJ2cwRBJMXL7-qTksgAAAAAAAAAyeM3LHfJob_f6p51a6_86sgAAAAAAAAAYcrGKv6MsQDF8S96b_rOTQAAAAAAAAAAI2yACv8-EQiZTIRa2WNkdEwAAAAAAAACEjEYY4P2KOQ6Ns3Ko0jNObAAAAAAAAAA2W3kTKpkHn84fzTFtfLoD0gAAAAAAAAAaBZ80eZyhE0ZGJTcKVaaGgQAAAAAAAAAUeP0KBVXjuFe0e0V-8WYorwAAAAAAAAAGANmrmrqqJv18GWh_5HHQlgAAAAAAAAAYUTB2ADQFxXISnXcFBKNbeQAAAAAAAABTERC3TORIgU0YrmeCK0zHCgAAAAAAAAAhiynY3Vpl2yeKIqRo2Ld9YAAAAAAAAAAUvTiT6RQHSjUNEBuIvfofKgAAAAAAAABRnXCb1JxZ0dz33zJkoeoA-QAAAAAAAAAOJDnO1OdT3mBLtMfsODhVKQAAAAAAAAAFI90CtZp_BZBH2tSRSUMrrgAAAAAAAACFkpBi8LFR3RTjSJqFuljOuQAAAAAAAAAAGXH6S9Nv2Lf0omTz4cH4RAAAAAAAAClRfhsEKXDuxJ-jIJrZpdRuSAAAAAAAAFtjfhsEKXDuxJ-jIJrZpdRuSAAAAAAAAEEQ", "types": "CAMbBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2RyPkubYvOhcCvhjZgdRTQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB87nEz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHphgz5k14PsCcDvFyUC1kmlV3QAAAAABG-csz5k14PsCcDvFyUC1kmlV3QAAAAABHCmq", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "T1tvM5q06BjUqyhvwHyp7g"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg0JcEvvhuguaGYCmGWrnWRz1QAAAAACshFzcEvvhuguaGYCmGWrnWRz1QAAAAACNF1LcEvvhuguaGYCmGWrnWRz1QAAAAACEKfV", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "l12Wk1CPTxh63qV3nfRE7A"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQJvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACeySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAYh-mcFcSefWaXpPLGLAmk8gAAAAAAAADYzXY2fMPD2q8JxxSeQ4an4AAAAAAAAADbsSDVmLRXn5j8cMEHakX25QAAAAAAAAAMbYR0b7-vTQ0RKJD6ns3ClQAAAAAAAAAG5WRkp3UGiY89oONYWWfHqAAAAAAAAAAtidAHvTfpCa_Lill3CvLIKwAAAAAAAABUtknRVtdrp8TkRV3X6AJ-KgAAAAAAAAGx2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFaD5tQt3PTji3IEVewu1DRAAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAABR3RWdbZcCPMpVZ1qCQ2JZEQAAAAAAAAAA", "types": "CAM1BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6K8OgHnUYjtWyr4OsciNiQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADHmXqXT4fd_WKeR1cE-hlLelCQAAAAAADHmkkXT4fd_WKeR1cE-hlLelCQAAAAAADHm4cXT4fd_WKeR1cE-hlLelCQAAAAAADB6QhXT4fd_WKeR1cE-hlLelCQAAAAAADQm1kXT4fd_WKeR1cE-hlLelCQAAAAAADQnNrXT4fd_WKeR1cE-hlLelCQAAAAAADQjwNXT4fd_WKeR1cE-hlLelCQAAAAAADQjKNXT4fd_WKeR1cE-hlLelCQAAAAAADQjeGXT4fd_WKeR1cE-hlLelCQAAAAAADQlp4XT4fd_WKeR1cE-hlLelCQAAAAAADHcz0XT4fd_WKeR1cE-hlLelCQAAAAAAC8k6-XT4fd_WKeR1cE-hlLelCQAAAAAAC8tjlXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8skcXT4fd_WKeR1cE-hlLelCQAAAAAAC8np9XT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k9mXT4fd_WKeR1cE-hlLelCQAAAAAAC8pvcXT4fd_WKeR1cE-hlLelCQAAAAAAC8frsXT4fd_WKeR1cE-hlLelCQAAAAAADBfM4XT4fd_WKeR1cE-hlLelCQAAAAAADBfPkXT4fd_WKeR1cE-hlLelCQAAAAAADBfT3XT4fd_WKeR1cE-hlLelCQAAAAAACkj-F", "types": "JQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Bm-ISLgTBoRgHmW4qbWWCg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQ3NXJCw7PINTEV_suvi1hjgAAAAAAAAAnr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAABR3DsLLpnzoGeqib2_MeXKdgAAAAAAAAAY0D5QIcqYfSjF8Y2Aggw1CgAAAAAAAAANIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQymtcT7XngDCOtcgo8NmgJgAAAAAAAABaEuiuEGuoH1DvPXwEkw2odgAAAAAAAAIDVFvoTC_1MXfHqnOeoSu9rAAAAAAAAABnfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABDoOWiMf3FXpVTm1lISLlNAAAAAAAAAAIbrBTwpxsMrD0yGTfkZil9AAAAAAAAAAUbrBTwpxsMrD0yGTfkZil9AAAAAAAAAAUpSE2xvOwhx9_R0gr7EwEHgAAAAAAAAAF5BDw-_iNJdvQnGiR4GTycQAAAAAAAAAJuy69Ip8uSWWD7uF8sFNmvgAAAAAAAAADdZfda0UcYRM2ke2rRcR6rQAAAAAAAAAbJVv_d-Wq_iSNJYmh3K1k7wAAAAAAAAAzmSBnbtksrVvKstlIID71bwAAAAAAAAAUHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF4JxgAcphLAEsoWC3fPoUUQAAAAAAAAAMneQ9aDSiXyM-ZtdfoiCRFAAAAAAAAAAGXFsyX0Vq94TuMs7Bc44FAwAAAAAAAAAFhT_GFd-d817AZqi9jIee6QAAAAAAAAAUx8ERETcapIt78IXSEO8DRwAAAAAAAAACaLOl6FCWtZ16Qk1Y0IIBGgAAAAAAAAAG_CTrWCBcF1yntIOzlzRqGQAAAAAAAAAP22bcZc1mxVdkBovRtLXmeAAAAAAAAAAGJg7Tuh0IHpuumyzwN_F2xAAAAAAAAAALM2oQMdzf0FGz61Jik2pntAAAAAAAAAAfxLipvo50E1PefOOerYLZEgAAAAAAAAFe1oBnNdsJQEj_XlDQgtQSnwAAAAAAAAAC28lMZAEZuh7n6NDKQHV8WgAAAAAAAAAaYYCEYr-7R2KSxbtsdGMQpgAAAAAAAACbWu0A4-y-hJFjTGYZh91yogAAAAAAAAAbXTzyt_7oaEFXC9VgfSHzxQAAAAAAAAAA", "types": "CQM5BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PlHE9ADU3mZbp8w0yqMlvw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAADxyaNpzFvIPtiJi3LwjMyZHgAAAAAAAAGMUZ2NFNzh7BT3C3hRjMF2fAAAAAAAAAAMZB4dgn6zlvSqI5ZscpV7zgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1HYZxCzuz6LEXaDimozBLlgAAAAAAAAAQpMuceywkbX_kBQbNeyKYjAAAAAAAAAAWRHxLaEMnlCvBO70F4Bq3fwAAAAAAAAAFnisgr1RUcTVhb-d_TidN8AAAAAAAAAAugTkKo96ASvMgXyPTt69aMQAAAAAAAAN6Gs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAAAKzk_PAPIluouMAlyxqI2lSwAAAAAAAAALSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABgAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CQM7BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "rwn-emofvSjsdxvKAf4KpQ"}} +{"Stacktrace": {"frame": {"ids": "-FiXU0afkg-sRwubj2WiAwAAAAAAAKlJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG-FiXU0afkg-sRwubj2WiAwAAAAAAAKMr-FiXU0afkg-sRwubj2WiAwAAAAAAAmE0-FiXU0afkg-sRwubj2WiAwAAAAAAAlz6-FiXU0afkg-sRwubj2WiAwAAAAAAAla0Fuiq0RN8VMfwSLHsA6DzhAAAAAAAATq8-FiXU0afkg-sRwubj2WiAwAAAAAAAZtb-FiXU0afkg-sRwubj2WiAwAAAAAAAZf3-FiXU0afkg-sRwubj2WiAwAAAAAAAQ6L-FiXU0afkg-sRwubj2WiAwAAAAAAAfIYFuiq0RN8VMfwSLHsA6DzhAAAAAAAAfcmFuiq0RN8VMfwSLHsA6DzhAAAAAAAAX2r", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MXi6ij-PKUaCwmcQxDXKKQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAABvZKLj_deYRtPDewbXBnoroAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAwy86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAAFYTifPIvND7b7ICq3M7OVoFwAAAAAAAAG8rtJFGuFDWKgkQ_kOhDwLwgAAAAAAAADcmvWNLiibNh2jmnrh-j3LtgAAAAAAAABui2HnQvZ0pKTd886GmsiskgAAAAAAAAADStb7SO-i1ysmwO8Lu0fgRQAAAAAAAADaCIJa2mPNm8b1wwJ_UCRwpAAAAAAAAAAFjWxMhVzBeHM3bqEF5ueSZwAAAAAAAAAqd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAA8DDAjVJl721y2vxKHGSBegAAAAAAltT48DDAjVJl721y2vxKHGSBegAAAAAAVFnD", "types": "CAMvBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zQXE0BqdbCBszoP4PfD3mQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7RXT4fd_WKeR1cE-hlLelCQAAAAAAC-pEOXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lQmbf93LWPq2WiUz0mMawg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACfZYJrmLEjznzm7GSiXKeulgAAAAAAAAAMjH-Kh7eMoVAEa99gkdQ-YQAAAAAAAAAWvtOmTuUGvKYiQRK_O9kHuwAAAAAAAANUdwSOkkrBP5mhBlnlAF95JQAAAAAAAABq8oR2r1TwDR8oMI-rElH28QAAAAAAAAAbBJ2RJCp2SC7d8aYH6UZHTwAAAAAAAAAIiDeUqi9fXDm_fNSrL17LBgAAAAAAAAACnzw4AVNutfhHt7T-gQii5AAAAAAAAAAXXpviWYO7CFQF88r_qvK5hQAAAAAAAAAJMnYM9B90Ha_6l2oFXip8PgAAAAAAAAAbvoqjqV6_-EldPWpE4Bg5QQAAAAAAAAAl", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5C9tVBswSQGz0JViHPvYNQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAAwR4O21YPz5WkGUKdaZ1xVrgAAAAAAAAA2pnx0xwNPdcZ32kceiz_BpQAAAAAAAAACPwR81tCEw_YLoJoW67EqfwAAAAAAAAB3", "types": "CQMXBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cJnYWLVLWsQfbMmFjmNv6Q"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABqjy1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAmB1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAbw", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zo2gDeKAcvfZQvQ-6Kr1XA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5obcEvvhuguaGYCmGWrnWRz1QAAAAACN4bHcEvvhuguaGYCmGWrnWRz1QAAAAACF8G-cEvvhuguaGYCmGWrnWRz1QAAAAACF8XE", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5N_PEF2K2AAT2WWymgXy2g"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAACla1eXT4fd_WKeR1cE-hlLelCQAAAAAACiGjF", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "pN5IOT_VxO3_wUIBhsiEIw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wrIXT4fd_WKeR1cE-hlLelCQAAAAAACkR-sXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdQp", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "HleZ43SDVG_N3JUmOfvcHw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA70RgYbC2fQjxygsXZf0s0DwAAAAAAAABPiAgP1DBH7Z9OPzvK7kQabQAAAAAAAAA3brHwMWIWqKKcmy2jXj1-xAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAABs6JL9Zb5wYEadxJXUwBTXrgAAAAAAAAAHDHsnAoMYJiyf1W11jJ-_lgAAAAAAAAA-DTUauL5DuTHOhH20MbQ0aQAAAAAAAABcRJueobtGLNKjuDFxaSSPAQAAAAAAAAACzNauVubvid-JWDwk7qANbgAAAAAAAAALp8ipwxPDk2OXbZVU57GDWgAAAAAAAAAINg4wCleBoQTspajWUco4NQAAAAAAAAAoxapGPQ-bTbd2NvmuklXrPAAAAAAAAAABS06qc2WWdjyLzzAdWuSUuwAAAAAAAAAB6mdVzOhFO3Gajb4WIZeHQQAAAAAAAAAae9bWXgbQU55mRVKn1epp1wAAAAAAAAAA", "types": "CAMvBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "khaMzqn4jk0qmytmlLpK9Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFu1XT4fd_WKeR1cE-hlLelCQAAAAAACiGo2XT4fd_WKeR1cE-hlLelCQAAAAAACiMiTXT4fd_WKeR1cE-hlLelCQAAAAAACiNLV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAioJZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAioGp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAilrf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAilGr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL3g36tVKI4mSYDEJ-ABAIpYXcgAAAAAAp15j", "types": "FAMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ETxyHCIsX1qDDjJns-f97g"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAGx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABW1vmWfRl7JvnIelrwmbOFDwAAAAAAAAB2P_qKgj6OkmYBLfen5yPH6AAAAAAAAADlitfZdu4NdI0YJrHcgeE-TwAAAAAAAACXJS-WjNz0QulnqSlnIs8U0wAAAAAAAADS7Ormen3KBfy8FXv7OmF-kAAAAAAAAAHyavfO9wX8Y6wuHuPsqC9ogQAAAAAAAAAW6qtI5rBZUCPwlvUdhEAyyQAAAAAAAAB5u0xNsLYCmVoeocVtV4LUOAAAAAAAAAAf", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "n931PCUhL26jfJ6Qa4M5Iw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-wCEXT4fd_WKeR1cE-hlLelCQAAAAAACkR-sXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdTk", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "qHaZTY2vXFbhjAbygCJcFg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZBNctXlyqBr-0kZdjpDJr0AAAAAAAAABvWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAg-q9yc6LqB9jJnwfxcnsPAQAAAAAAAABfCvC3lIC7E70AiCoZ7DVYSQAAAAAAAAAIe8CS3YBIrSZfELEzs29ejAAAAAAAAAAMGeL1ZljxMX5G17zFJggDEgAAAAAAAAADpTlbbE4fyfUNihcsjOaEcgAAAAAAAAAD4pCnOxpOLdRSNtLvL6eRrwAAAAAAAAAzKxP4VGfqSBeNoj_DhcMuDQAAAAAAAAARJ1IhvI4XpB_ivF6THMrsmAAAAAAAAAAGJIJ67u_XI4-jnSyBIeegBAAAAAAAAAAIeOXjDtmISDDtSL4dEzZt-wAAAAAAAAAD_6rkq2S7o8rMRQJ9AofzJAAAAAAAAAA7fGV_-oQbQFr-iji0-7e7egAAAAAAAAAsEPkRJFILsKGYvAhwh_S9kQAAAAAAAAAMxLOLXg5EKZgSVcI5Dw46ugAAAAAAAAC40LGXmFocz46kL18OXWxszwAAAAAAAAA1cuyNWlZFQkabnqdPXO_rXQAAAAAAAABNSlb8MNVKIFfE9HJqtN3BhwAAAAAAAAAAWpojVIMMfjg1gPX4CFe0BAAAAAAAAC1uHt2yyHtMhQP9uhMxLoNAEgAAAAAAAIuLHt2yyHtMhQP9uhMxLoNAEgAAAAAAAH6v", "types": "CAMkBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OPeOIoXE8SwG5uuXQoAI6w"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHpmIz5k14PsCcDvFyUC1kmlV3QAAAAABHpdEz5k14PsCcDvFyUC1kmlV3QAAAAABG5iSz5k14PsCcDvFyUC1kmlV3QAAAAABG_e9z5k14PsCcDvFyUC1kmlV3QAAAAABHCkw", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wuidS7Cs14FqxJ9Lrou1hw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAAAUVVK_WAyCJXzCWcMyxQV5BQAAAAAAAAEhptEqv5fr0FJDmtj9B29VrwAAAAAAAAAP", "types": "CQMfBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RFxzXWjR4kscab5MLb7O9Q"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_ecYcEvvhuguaGYCmGWrnWRz1QAAAAAD_DAGcEvvhuguaGYCmGWrnWRz1QAAAAAD-KImcEvvhuguaGYCmGWrnWRz1QAAAAAD-KaxcEvvhuguaGYCmGWrnWRz1QAAAAACG9Ur", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2S9bo3BneuTjHP1V3InOAg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcQxTPNhFsgl-8e8i61Q7phQAAAAAAAAAnwnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAEraW9aAtkVtkUuzUOoh_0wAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAn5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALOKXE0TsqEsNxLqr0g-oK6QAAAAAAAAABx3cFmRipcZyDdJFPRQEWSwAAAAAAAAAQrMNYV5KroKXsOMeuZv5hxgAAAAAAAAAATaNUUQ8ZfJlbsPC7iaqLvwAAAAAAAABv113KL9tnNlUP_dgFCwl99AAAAAAAAAACsLW5MVrNYr3JDIzLAQcc3AAAAAAAAAAwWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYv0o-SuFa6Ydo5LzhQb4MjgAAAAAAAAAGkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAgxSMSLP0FCwY_wmCLQTamVgAAAAAAAACRv7NZn75ARbCs3HYY9Fl9agAAAAAAAAAIx2dOFg0yEocAScOtYTlKbAAAAAAAAAAIW7ecGdd5UmqqnRTWfHNqsAAAAAAAAAACvcmbteT9Zn8Dn3HK9hT_jwAAAAAAAAAaJ6u6Y179J4dS1eDE4nIEEwAAAAAAAABAoBLCWsbzuuTLoV95VXOSiwAAAAAAAAAGfpT9dKVCjbBUsOxTK_gNnQAAAAAAAAAHpcTDNUcLRtNIQuaGXrSGyQAAAAAAAAABtMkrwhvZsCkojfivwC-ofAAAAAAAAAAFIUdDMKhPw4MmNQ9Fq7qCgQAAAAAAAAALTlm2yos2yNMmUywsA990NAAAAAAAAARrEl8e1KDnRSx78JGf4h_r2gAAAAAAAAD0P85-ZHhT2OrY2C13tzUCcgAAAAAAAAAA8DDAjVJl721y2vxKHGSBegAAAAAAlhtx8DDAjVJl721y2vxKHGSBegAAAAAA2Pm38DDAjVJl721y2vxKHGSBegAAAAAAiHBx8DDAjVJl721y2vxKHGSBegAAAAAAiG_2", "types": "CAMkBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8qCKX3oImp7i24kNwHLQ1A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHfZKXT4fd_WKeR1cE-hlLelCQAAAAAACy8_rXT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-hZXT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy_VqXT4fd_WKeR1cE-hlLelCQAAAAAACzAIEXT4fd_WKeR1cE-hlLelCQAAAAAACnefEXT4fd_WKeR1cE-hlLelCQAAAAAACney9XT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhjWXT4fd_WKeR1cE-hlLelCQAAAAAACjs1kXT4fd_WKeR1cE-hlLelCQAAAAAAChrznXT4fd_WKeR1cE-hlLelCQAAAAAACgaZm", "types": "GwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bdUJtBu3FMvJJSVLzAxvzg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgb9rcEvvhuguaGYCmGWrnWRz1QAAAAADgcaEcEvvhuguaGYCmGWrnWRz1QAAAAADgcoOcEvvhuguaGYCmGWrnWRz1QAAAAAChhuXcEvvhuguaGYCmGWrnWRz1QAAAAACFSqRcEvvhuguaGYCmGWrnWRz1QAAAAACEM1g", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cWrOq_8AuD-kFHQY19QOOQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbGmXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fX0UaHgsGUK7jZpiR1PvSw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABtxVEZ3CKaS4aU08RhYA19y5ITQAAAAABtx5CZ3CKaS4aU08RhYA19y5ITQAAAAABtwT0Z3CKaS4aU08RhYA19y5ITQAAAAABtFpzZ3CKaS4aU08RhYA19y5ITQAAAAABtnwrZ3CKaS4aU08RhYA19y5ITQAAAAABudBy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BgMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OcT065MsIcIvPA2CwWtMyA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAACw0R6xpOnzOUCU8VEb3MwxQAAAAAAAAADt7UTQ9GGQKtD8smsLz7rmQAAAAAAAABiCmMireDydutNBOY07iuvjAAAAAAAAAACYRKX0dkSQ9WRUwmgFWEsvAAAAAAAAAIp4LaXQPmDtW1RT5QYFvOroAAAAAAAAAAT_QeIf-ckQffQy4Ke0K6c_AAAAAAAAAAHneO46ZFHIa7nQWw23tiwugAAAAAAAADjneO46ZFHIa7nQWw23tiwugAAAAAAAADjFoXVat7sZj9j2xFNUu7qqAAAAAAAAABgRokQB_28ixgK1PZ3da_sAgAAAAAAAABowwAbxT7HcBQT9Xf_gmx8-QAAAAAAAAJ_5AZknqiNUIStFJoDanTfGQAAAAAAAAAstHSZmvQyPXNnLCLQcNVJtwAAAAAAAAAA", "types": "CQMxBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZMnBOSVj41408ZF2xWlR9Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlrk6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMOOP", "types": "FAMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cPus8bV0OND2Ha7sjGKd1A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t3YXT4fd_WKeR1cE-hlLelCQAAAAAAC-wRNXT4fd_WKeR1cE-hlLelCQAAAAAAC-wTlXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwXQXT4fd_WKeR1cE-hlLelCQAAAAAACiKCvXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "q9B1hAQOLo_jfRAnyK44QA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKTEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKu8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfdgtQ4kMk_MBWrPUAFqVnYywAAAAACJEnagtQ4kMk_MBWrPUAFqVnYywAAAAAB1YosgtQ4kMk_MBWrPUAFqVnYywAAAAAB1YgbgtQ4kMk_MBWrPUAFqVnYywAAAAAB1KtOgtQ4kMk_MBWrPUAFqVnYywAAAAAB1LUKgtQ4kMk_MBWrPUAFqVnYywAAAAAB1MNsgtQ4kMk_MBWrPUAFqVnYywAAAAAB1NCpgtQ4kMk_MBWrPUAFqVnYywAAAAABw8FPgtQ4kMk_MBWrPUAFqVnYywAAAAABw8QugtQ4kMk_MBWrPUAFqVnYywAAAAABw8blgtQ4kMk_MBWrPUAFqVnYywAAAAABsxjEgtQ4kMk_MBWrPUAFqVnYywAAAAABszLsgtQ4kMk_MBWrPUAFqVnYywAAAAABsj6ugtQ4kMk_MBWrPUAFqVnYywAAAAABsigygtQ4kMk_MBWrPUAFqVnYywAAAAABsj4QgtQ4kMk_MBWrPUAFqVnYywAAAAABr9jvgtQ4kMk_MBWrPUAFqVnYywAAAAABsAm7", "types": "HQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UlxpzYDzTrle0usRzv_jpg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsri8cEvvhuguaGYCmGWrnWRz1QAAAAAC1cZccEvvhuguaGYCmGWrnWRz1QAAAAAC1cdkcEvvhuguaGYCmGWrnWRz1QAAAAAC1gbJcEvvhuguaGYCmGWrnWRz1QAAAAACkkPncEvvhuguaGYCmGWrnWRz1QAAAAACktJ6cEvvhuguaGYCmGWrnWRz1QAAAAACl9KScEvvhuguaGYCmGWrnWRz1QAAAAACka2TcEvvhuguaGYCmGWrnWRz1QAAAAACmYqKcEvvhuguaGYCmGWrnWRz1QAAAAACmYiXcEvvhuguaGYCmGWrnWRz1QAAAAACIHhA", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Sw1kweYzAnossvkRogyCCA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJM4EgtQ4kMk_MBWrPUAFqVnYywAAAAACJNBcgtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfdgtQ4kMk_MBWrPUAFqVnYywAAAAACJEoxgtQ4kMk_MBWrPUAFqVnYywAAAAAB1KARgtQ4kMk_MBWrPUAFqVnYywAAAAABsxWagtQ4kMk_MBWrPUAFqVnYywAAAAABsv09gtQ4kMk_MBWrPUAFqVnYywAAAAABskFkgtQ4kMk_MBWrPUAFqVnYywAAAAABsiVa", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UY9b3d4OnCEDiR5-aB-YVQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQEI2MlivQ_yGyq36LnLAGeQAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQOUV_Man7LKpLI_xXeAvtgAAAAAAAAACeM1U5MRplArg1qeEAEk5MlAAAAAAAAAAYNK6q-mYZhWe1E7afoKkwiQAAAAAAAADYr6Fg_DPZ96geKIjDaUl37wAAAAAAAACsPYNQGka54-Rn86JqyO8oZgAAAAAAAAAMuHXk96D_H0MjX0tAh6AHfQAAAAAAAAAGBQgPvwiw9NNbOJgDcqi8DAAAAAAAAAAtD8SuOAHHuRsEe9MWrwApVgAAAAAAAABUpD64Y8dYs0KzJcRfejjvpQAAAAAAAAGx0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7zLRHJmK7SuaCDIOsydGjpQAAAAAAAAAFms-x3fJ8QBk7y_Ax6kns5QAAAAAAAAAEOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATkIHoeHOqUABD9df742XoZgAAAAAAAAAKpxq9i_P7P2LtOabkMgl8CAAAAAAAAAAJANUDzCguopTSw91qnI0ylAAAAAAAAAAOfZ1SoGSE80OZ2t9ks5kZMwAAAAAAAAAhEVqCqcMqZlQ0w1_HMPbgrgAAAAAAAABN7qz18bHgG-Zc_fVo9Dsh7AAAAAAAAABPLV1qJd4M55A4v0lGtbHYuQAAAAAAAABAgvccGM4k-q4cOxwbrd8DiwAAAAAAAAAQtQjdsVMJULt1As7mbOCEqAAAAAAAAAAGMMAujfe9xzktoHyDqw_cGgAAAAAAAAAGKGVSBMVyriI5T93UZw1WLgAAAAAAAAAE_qkVJm0NxTF9ak3kQe9veQAAAAAAAABazzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIcPy2QFuGdjzuVBNv2-JtzQAAAAAAAAA5FQVEqfdF3Gc5vOLVf8c4EAAAAAAAAAEpcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIiaYGOKrCYzeQFPvSFK3LGwAAAAAAAAAlcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAI3FmF0iegYInyRffZHSr8AwAAAAAAAAAv1Az5XiB-HqkM2KIxBs7pHgAAAAAAAAAzXmgLknRmXWrjNm14n69KUAAAAAAAAAAGcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAInQRJ3xr79n3cY6qS99IffwAAAAAAAAAE7EnnOhShMGZ9Te5BWwjtoAAAAAAAAAATopFI2iPPQrSoKgHSzuYsiwAAAAAAAAAIytmnDvqR2kv8bcodWBOqIQAAAAAAAABnKKci4M_8u3lv7Ydwxf31oQAAAAAAAACFwoXLgCudpu5Igw4bPyCZzAAAAAAAAABTLQDSx6vga0zDZ5JbsP5kmgAAAAAAAAAwngEDfMGa2k3LBps0tpgYRAAAAAAAAAAQ-SQAt_091j0wh4lQu2r18QAAAAAAAAAC_c66iRIhxEMceXexHDGFpwAAAAAAAAACm90x-IDkYTtkxx7JZAYrFAAAAAAAAAAMFYp6NrRQUdcxcMQHOiZr7QAAAAAAAAAiwmQufSV4x-hAvGcaiegjeQAAAAAAAAAm-KaQJqCpvd-fD6hn3-xL4AAAAAAAAABFE9iltmxxnvYn82cyFFZ0KwAAAAAAAAAC4RMjMvBCxMjR_OY2K7clCwAAAAAAAAAFsRqFVRgtIpahqWj1VJMq5wAAAAAAAAAo-SQAt_091j0wh4lQu2r18QAAAAAAAAAC_c66iRIhxEMceXexHDGFpwAAAAAAAAACm90x-IDkYTtkxx7JZAYrFAAAAAAAAAAMFYp6NrRQUdcxcMQHOiZr7QAAAAAAAAAiwmQufSV4x-hAvGcaiegjeQAAAAAAAAAm-KaQJqCpvd-fD6hn3-xL4AAAAAAAAABFE9iltmxxnvYn82cyFFZ0KwAAAAAAAAAC3wUqWgsBzfZ4hye-ZoHF8AAAAAAAAAAJqA6aTmYIY5XQ-D5SlmSYOwAAAAAAAAApnnN2-U_s8SdanlpQLAPXRAAAAAAAAAAC_c66iRIhxEMceXexHDGFpwAAAAAAAAACm90x-IDkYTtkxx7JZAYrFAAAAAAAAAAMFYp6NrRQUdcxcMQHOiZr7QAAAAAAAAAiwmQufSV4x-hAvGcaiegjeQAAAAAAAAAm-KaQJqCpvd-fD6hn3-xL4AAAAAAAAABFE9iltmxxnvYn82cyFFZ0KwAAAAAAAAACkOY-QLCab90APtsAsauGrgAAAAAAAAAF_EVdVfyApPsVUy6u6pxduQAAAAAAAAA7", "types": "CAN-BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MlR02wA8P06Jyn8XvtqFZw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsftbx9jqjuemtiUm8j-_s73zQAAAAAAXsVwbx9jqjuemtiUm8j-_s73zQAAAAAApykkbx9jqjuemtiUm8j-_s73zQAAAAAApxqgbx9jqjuemtiUm8j-_s73zQAAAAAAWS4Rbx9jqjuemtiUm8j-_s73zQAAAAAAkZW6bx9jqjuemtiUm8j-_s73zQAAAAAAlJzVbx9jqjuemtiUm8j-_s73zQAAAAAAlGdWbx9jqjuemtiUm8j-_s73zQAAAAAAZUuqbx9jqjuemtiUm8j-_s73zQAAAAAAlIWL0rNuxKNw6YxtKvsF6kS_jQAAAAAAFTme", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "R-0W6enRom2neHT3IVU9aw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlwr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCEy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTq0", "types": "FAMLBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WXat65Sd_FSb3q_O_39_OQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXUptYxe-SHgukLEpCkawSk1QWAAAAAABXVjkYxe-SHgukLEpCkawSk1QWAAAAAABXVBsYxe-SHgukLEpCkawSk1QWAAAAAABXZL0Yxe-SHgukLEpCkawSk1QWAAAAAABV3AkYxe-SHgukLEpCkawSk1QWAAAAAABV1uZYxe-SHgukLEpCkawSk1QWAAAAAABV59PYxe-SHgukLEpCkawSk1QWAAAAAAAFzcMYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "DgMCBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6NtXAGdlCKbuaT_8yErbXw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAATo2Vqo1n4TLgDJq9tPgwAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARxBGCEPBdnG6Mds1nJf4tcQAAAAAAAAAGzXf1O_8jknZjcKGu5cQjJQAAAAAAAAAgPHkw6KCW6WHcDhD0gWZvxQAAAAAAAAAXqjkbzJCs46utKAIQU_ZjYgAAAAAAAADmaG38C7AQR-wEDFFefkRnfgAAAAAAAAAsdawGhH-93Zf3Xci2M9UlFQAAAAAAAAAMPhHweSUk-rcHLCvi4mySwgAAAAAAAAEsryiaiFPVyjm4XARK10gZ3QAAAAAAAAELu4IYC5TN1ydgkWzSPfggOAAAAAAAAABSTOT6Kzt9cNfqtt7rfwzzSwAAAAAAAAAElu3U19P1ddOrJLDu-spLOgAAAAAAAAAHSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAiHAV7Zh5H5JQPHONsGvZ0PAAAAAAAAABXWb65uaTCBYe2MCZtuMHkqAAAAAAAAAAWdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFpyn-2AN_sBw7fWxvhZ_ovAAAAAAAAAAIZLVm2Yq3JzpECVJuRqNdawAAAAAAAAAQrs-7smSxpcCpQ4EcnQyDfwAAAAAAAAAdgkppypvMO9S8VR3D3H8lzgAAAAAAAABEdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF1V8iUm4ymRrWn84wHbGE5wAAAAAAAAAIZ8eDanRMy6l7sesw4dYkqQAAAAAAAACzkTJVCBjDfmFAPRrGLStltQAAAAAAAACPd1HUDx--zqw--O9SJhCTGgAAAAAAAAAIm2-tH33cq1FP2Q7Is62J0gAAAAAAAAACUvL0y1JUslNFPdxuHL61jgAAAAAAAAAIQ1b7jdbtxavHFLXq_nCrrgAAAAAAAACKpxHkQ9M1dNDXsuZ3PuZiaQAAAAAAAACHkgbfix2D2TfaYMD2TJSWJAAAAAAAAAAYyXWFMIbkwU7jqv0ggmjvVAAAAAAAAABHVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAApOzkHkS17HRu8c3H4oJbrdwAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFnpPhwY_ic31u1gmBHOrU7AAAAAAAAAAU0cZiHBBWN2vYtEyCZ5X5wgAAAAAAAAA3pzTcRcencDxd0mEO6HA0bAAAAAAAAAAFdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFA_f9j659izgXSTlh6Tab-QAAAAAAAAAQLrT96WuiUXgKg4BgtAP98wAAAAAAAAA_dswq7UFB-c5kE0TfryCD4gAAAAAAAAAFpjc1-JTccEPjdmvL7IyGRgAAAAAAAAActLWCyKrEBYGzX2N5W13-8QAAAAAAAACnHs84X9WR2gx5bBItVVyJWAAAAAAAAAB4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFYqSD5Hl57zxJljwXyAsavwAAAAAAAAAMn-IlVo5-jcMpxFIQmT8ZXQAAAAAAAAADXNiEFVfexcwhuzJE2wFqSQAAAAAAAACouB_3Gzwjvj1RjZpSgTL9mwAAAAAAAABHcemtT_LtuQxWV7j18_T0KgAAAAAAAABE3Cqr4IYWZNFEOAT7GHij5QAAAAAAAAAIYldLdAhiU1Ikhg1VTxvqJwAAAAAAAAAVdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFz8YcS7kQQWoeBfgskdVBqQAAAAAAAAAYa1rORv6uw2uAWC1se05SoQAAAAAAAAA7ReecyGgWWJgzc543tXNeIAAAAAAAAAAlskGfd5BDAMA1fbyY3ykq7wAAAAAAAAApdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFdARkiftRl5NVojcjp193jAAAAAAAAAAMBFzsvc2FJJqJ7MOfSIYcgwAAAAAAAAALdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINabLzAQAM62JeaJIyCWDwAAAAAAAAAYSVYBVG1fCfTODpNzLfPxlQAAAAAAAAAi0YsnzQnMKXvFIy6EpgfjkAAAAAAAAACzpNCOyiVwjuXBJuAQYmyfWgAAAAAAAAAQ0iD-cS1eIkEni9SNzthfngAAAAAAAAAdYGWVVbrNUpdnBpF_fR4SdwAAAAAAAAAGOn3v6Dv2rwT8WclZhpQ9IgAAAAAAAAAHE2NlszEGRXNxKeW09blqBAAAAAAAAAANwzZaceuyvwDXeTAM8IhEDwAAAAAAAAA0Yu_6L4HRShupVCJ8N-cmXQAAAAAAAAAH9PmXvHucczCVlI0S70oJBQAAAAAAAAA3tiJNC5TRsJ2Po6yB9hj7ugAAAAAAAABGyanW-NWn1yU-ZmISz8_K-wAAAAAAAAAms2LTirMvOXiDsBun6I-UyQAAAAAAAACfb_ElB1I-v_CyZZ9WkymqkQAAAAAAAAB0isA5sAubGPm1mkHKsussQgAAAAAAAAAQSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFqzxXvZKl9cR-1XCNC1BjGQAAAAAAAAAg3ir-1yKStl3nukZF4xyXAQAAAAAAAABAC-NMw9vE7-rFK10EWQYO_wAAAAAAAAAho8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_-Qx-pCy53U7YabuA5eb0fAAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJPeJFTdbz8JGDuMv22vt3yAAAAAAAAAAkfiNry6aywxk33PR7ZSinSAAAAAAAAAAZyanW-NWn1yU-ZmISz8_K-wAAAAAAAAAmbZRwWM7SmFPsrzq-cg210QAAAAAAAAASyanW-NWn1yU-ZmISz8_K-wAAAAAAAABD2Ims6MoX1Xgrymv6lvzgDAAAAAAAAAAH04jbaimoCFtwGn506T5lyQAAAAAAAAA_RJS3mfuj1SlbMar-vOH9CAAAAAAAAACi9rD5odZJVMPFsyKAQ0JZdwAAAAAAAAABOmzVUgwY22EPoqShuZpT1wAAAAAAAAAByCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIsKSbqfkKPLUDx6XDG0OMRAAAAAAAAAAMwShKKQbdgy2OaZjDOPTMUwAAAAAAAAAO5M-fyJXzZzW8DvCgOZZ3FAAAAAAAAAAG9tBq-irshkmth8o7ZIdyJQAAAAAAAAAhqt_wQv8WVW9Nn0zPpw6ZYwAAAAAAAAAJtS_HFERyiZnZzL5HZnbArAAAAAAAAABr2SsSTdYmCfm-g39jtVjCvwAAAAAAAACTBJf_YwgHp7Yg-TjdIMYP_AAAAAAAAAC00mM_z6Wv3d5Hlet7vNYQBAAAAAAAAAAGsRC-EYSM_wjZFQySXQa74wAAAAAAAAAFTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFLI7hHy8LyfIAUwZcB8iKFwAAAAAAAAA8dNeX5fcNMGja1UEMRoE5DwAAAAAAAAAaNZgS_masnJN3AvEMpCeN1QAAAAAAAAHHMnjW6RG_D7hsUp0ibYWGjQAAAAAAAAEA7sFJhOclnef6voRTImotVQAAAAAAAAAROVdrCM49mRUd7zQGZ_D_FgAAAAAAAAAh-sV6jQPrmt99eaayd2cwygAAAAAAAAAqyZOsTG9FAcYTrf0Vyvqt0QAAAAAAAAAKD8-jcVmofjDe3yWjz8JjyQAAAAAAAAAo0Hv4A9FbObC1xflw5MxpBgAAAAAAAABTmkLFSzwLd_GSc1FYqgqiCgAAAAAAAACkmkLFSzwLd_GSc1FYqgqiCgAAAAAAAACtmkLFSzwLd_GSc1FYqgqiCgAAAAAAAACtmkLFSzwLd_GSc1FYqgqiCgAAAAAAAACtmkLFSzwLd_GSc1FYqgqiCgAAAAAAAABjnEGtvDxGHYK9PNQyhlcWjgAAAAAAAAAa", "types": "CAPaBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7v5gJVMF6Nxk9bye6pFDSw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsftbx9jqjuemtiUm8j-_s73zQAAAAAAXsVwbx9jqjuemtiUm8j-_s73zQAAAAAApykkbx9jqjuemtiUm8j-_s73zQAAAAAApxqgbx9jqjuemtiUm8j-_s73zQAAAAAAWS4Rbx9jqjuemtiUm8j-_s73zQAAAAAAkZW6bx9jqjuemtiUm8j-_s73zQAAAAAAlJzVbx9jqjuemtiUm8j-_s73zQAAAAAAlGdWbx9jqjuemtiUm8j-_s73zQAAAAAAkEeKbx9jqjuemtiUm8j-_s73zQAAAAAAZYqK", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "X0qQ_Q81_t_BGYj-Q4czow"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAACzx1rycUz_ddL2AYEOaAVfgAAAAAAAAAFvY73uE8s0GjOVOtvrJEg7gAAAAAAAAAxnyUe0ieJOQSaVhtc2Cv9oQAAAAAAAAAfi_Iz97mxX5oIgVbqZMT-ewAAAAAAAAAFYYCEYr-7R2KSxbtsdGMQpgAAAAAAAACbWu0A4-y-hJFjTGYZh91yogAAAAAAAAAbXTzyt_7oaEFXC9VgfSHzxQAAAAAAAAAA", "types": "CQMrBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Ffe81jJCf-5Tz5JxqVqIEg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFcpX", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "oxqnHZvOMinR2p9mVNarxg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnmE1ci0y85Ym-Dqw-Q5t-OwAAAAAAAAAEHTY1Ogm7PbqFs5I836YiPAAAAAAAAAAM8j1DDzq35ky0hRladLMlAAAAAAAAAAAQD89Lu4J4zlFkW1Lm9HDh6QAAAAAAAAAJL-koTtrYcgwtJX4JNCtNUgAAAAAAAAAZNmvj-1JIFU5r1IdV1cgfBgAAAAAAAAAy7hPDIBH8MLHxsotS8sE9kgAAAAAAAAAYQzrbsOA4ABi_SVkKBvATrgAAAAAAAAAIg3pCi59qPBWaSfqiWTmFLwAAAAAAAAB-rdBX62JmLvq7yePIa9GQ7wAAAAAAAAAfJ2vC-2Qs-dxljsuNDoDyLQAAAAAAAAAG-L6AWYpz_33u8acGuhOGDQAAAAAAAAAXk9PYIfEvPxNMLJBZLTnCZAAAAAAAAAARw4vsAZyO7Ody8HS70pGWgwAAAAAAAAAH6ByADceim30qM6J5Jexh2wAAAAAAAAAMOsFY5wzpdR2T8945g3gHggAAAAAAAACEbVZI60QY4hlx9c6CnB6afgAAAAAAAAAEkGhnruBMfWniu_ewaA6cjQAAAAAAAABVil81Lr-W5rr5XmSIKLZOpgAAAAAAAABOkGhnruBMfWniu_ewaA6cjQAAAAAAAABVil81Lr-W5rr5XmSIKLZOpgAAAAAAAABOkGhnruBMfWniu_ewaA6cjQAAAAAAAABVil81Lr-W5rr5XmSIKLZOpgAAAAAAAABOkGhnruBMfWniu_ewaA6cjQAAAAAAAABVil81Lr-W5rr5XmSIKLZOpgAAAAAAAABOkGhnruBMfWniu_ewaA6cjQAAAAAAAABVil81Lr-W5rr5XmSIKLZOpgAAAAAAAABOkGhnruBMfWniu_ewaA6cjQAAAAAAAABVil81Lr-W5rr5XmSIKLZOpgAAAAAAAABOkGhnruBMfWniu_ewaA6cjQAAAAAAAABVil81Lr-W5rr5XmSIKLZOpgAAAAAAAAAhvUsvcPccCee-aB1C2WoAswAAAAAAAAAC4fqEtrPkCas7K68O72ViDQAAAAAAAAAFBHSm8gJjsmlMLXYl4aUtOAAAAAAAAAAOJc21d-hh52rNRJ_kbSvEeQAAAAAAAAAF8XyHXMQijJkNwu4Uf2gtWgAAAAAAAABTvqs9jnSjNyh-nZ4ZqxUaIgAAAAAAAAAh4UCPpue6CVok_lbZI08fLQAAAAAAAAASbY3RtTMNEnhvgonzWleY4wAAAAAAAAATvTiT6RQHSjUNEBuIvfofKgAAAAAAAABRk-iHhugN07psoCA3oD8uAgAAAAAAAAAg5Agt9ShJmhlj-nI54ilISQAAAAAAAAAH69oENs4LaleWvQ-u5QBLcQAAAAAAAAAH4UCPpue6CVok_lbZI08fLQAAAAAAAAA3bY3RtTMNEnhvgonzWleY4wAAAAAAAAATX9lpa9TN84k-aLBSFJ8EgQAAAAAAAAAHtG4-XeBGb5DNqjdfe9ekJwAAAAAAAAAHsnYWO52KOY41wuNB8sr7sAAAAAAAAAAHvmHQgfCcfOO_aBNITDEbmwAAAAAAAAAEsojwV5c2Sh1TPlO_pjbUPAAAAAAAAAAnEOTpfUqJOuaAVD3AKgKtLgAAAAAAAABE9kXaZX4H2Nqkl6JJyrwZnQAAAAAAAAAbzmPJOJAYU3S2ktp1SujETgAAAAAAAAAN-H9uIyHBzTuJT1TxPYzhNwAAAAAAAABGNZYCsa4yDkFMR_jCd7ikYwAAAAAAAABBZN759WSZ9POEYgWN0dzlTQAAAAAAAAAPVWqFWS_a_jkGmSuTSg6DgQAAAAAAAAALajW2nQ-3UP-UP0xIB0YeegAAAAAAAAAE", "types": "CANABQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OXlPee9VUh865GMcRyC-Qg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAABAHHYxe-SHgukLEpCkawSk1QWAAAAAAAA-srYxe-SHgukLEpCkawSk1QWAAAAAAAANKx", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jrT2GruQyeVXsK6hiM2AuQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-9R0XT4fd_WKeR1cE-hlLelCQAAAAAAC-xp-XT4fd_WKeR1cE-hlLelCQAAAAAAC-tNEXT4fd_WKeR1cE-hlLelCQAAAAAAC-hiKXT4fd_WKeR1cE-hlLelCQAAAAAAC-hZZXT4fd_WKeR1cE-hlLelCQAAAAAAC8k6-XT4fd_WKeR1cE-hlLelCQAAAAAAC8tjlXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8suKXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8sfIXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8sfIXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8sfIXT4fd_WKeR1cE-hlLelCQAAAAAAC8qdoXT4fd_WKeR1cE-hlLelCQAAAAAAC8frsXT4fd_WKeR1cE-hlLelCQAAAAAAC8xFtXT4fd_WKeR1cE-hlLelCQAAAAAAC9YvIXT4fd_WKeR1cE-hlLelCQAAAAAACgVcEXT4fd_WKeR1cE-hlLelCQAAAAAACgUmmXT4fd_WKeR1cE-hlLelCQAAAAAACgUBK", "types": "IgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3ara6vR1-C9qieNSLppJHg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbjP", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Bdjijs-NB-vAqWMaZfufMA"}} +{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kuVi0_akuSWTIatJohqMk3QAAAAAAxjenuVi0_akuSWTIatJohqMk3QAAAAAA6hF5uVi0_akuSWTIatJohqMk3QAAAAAA8W7LuVi0_akuSWTIatJohqMk3QAAAAAA8WyMuVi0_akuSWTIatJohqMk3QAAAAAA0bbFuVi0_akuSWTIatJohqMk3QAAAAAA0aoKuVi0_akuSWTIatJohqMk3QAAAAAA0dUSuVi0_akuSWTIatJohqMk3QAAAAAA6el3uVi0_akuSWTIatJohqMk3QAAAAAA6X89uVi0_akuSWTIatJohqMk3QAAAAAAe9FF", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OxRcuSs5d76WVEOhbzUzqQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADHmXqXT4fd_WKeR1cE-hlLelCQAAAAAADHmkkXT4fd_WKeR1cE-hlLelCQAAAAAADHm4cXT4fd_WKeR1cE-hlLelCQAAAAAADB6QhXT4fd_WKeR1cE-hlLelCQAAAAAADQm1kXT4fd_WKeR1cE-hlLelCQAAAAAADQnNrXT4fd_WKeR1cE-hlLelCQAAAAAADQjwNXT4fd_WKeR1cE-hlLelCQAAAAAADQjKNXT4fd_WKeR1cE-hlLelCQAAAAAADQjeGXT4fd_WKeR1cE-hlLelCQAAAAAADQlp4XT4fd_WKeR1cE-hlLelCQAAAAAADHcz0XT4fd_WKeR1cE-hlLelCQAAAAAAC8k6-XT4fd_WKeR1cE-hlLelCQAAAAAAC8tjlXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8skcXT4fd_WKeR1cE-hlLelCQAAAAAAC8noUXT4fd_WKeR1cE-hlLelCQAAAAAACgW6_", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hkKHAhDonVvw0QtyP7IxgA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAHvdr7nJhzDAJ3KA627xZhFegAAAAAAAAAUE66a7lKbkjXDy4kHrdweRwAAAAAAAAALavH6-iyYHlN_flagvaXwWwAAAAAAAAAK5JuKxbkWPMw0EpITr8WSNAAAAAAAAAALCcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAACV125X0goavCApK-g1l1pkWwAAAAAAAAA-YYzk7c32FriCyY7m0aSg5gAAAAAAAABMYcsRqxbGzFlPociNmelgWAAAAAAAAABhsO4szKNZnXyLfMP7gPsjpgAAAAAAAAA9jjxn4cl8bBaRqPgS5F0n8gAAAAAAAABEp9UR3btTZUo1MztbkeIkOQAAAAAAAAALZICRnstTjqeSOkLK1jp-HwAAAAAAAAAJ34fB7qb3OTOSVWKcGDOtPgAAAAAAAABl6X-l4zSEzV-o-Qo3loG8-gAAAAAAAABAAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CQNFBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WqVyAY7aN_-vI0dM-RfV2g"}} +{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI7B_NxRB-tFVbAaTDiew0fwAAAAAAdyiE7B_NxRB-tFVbAaTDiew0fwAAAAABTOLj7B_NxRB-tFVbAaTDiew0fwAAAAAApa927B_NxRB-tFVbAaTDiew0fwAAAAAApXAh7B_NxRB-tFVbAaTDiew0fwAAAAAApVa47B_NxRB-tFVbAaTDiew0fwAAAAAApVP_", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_H8ymVwShRULJ7aiFWraUA"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYpqL9Bd3XIiGWasJdN8trI5tgAAAAAAA2pwL9Bd3XIiGWasJdN8trI5tgAAAAAAAzUg", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EldeYxZAMuNZMH733xh1lg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAABjgJ_Yxe-SHgukLEpCkawSk1QWAAAAAAABqplYxe-SHgukLEpCkawSk1QWAAAAAAABM5TYxe-SHgukLEpCkawSk1QWAAAAAAABNSEYxe-SHgukLEpCkawSk1QWAAAAAAAA4vSYxe-SHgukLEpCkawSk1QWAAAAAAABV08", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kxS0GHhQbImebcry_20uIQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_WD1cEvvhuguaGYCmGWrnWRz1QAAAAAD_YtTcEvvhuguaGYCmGWrnWRz1QAAAAACETWd", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "53NabLq4kgx0p4GuroY5sg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACGz1HZ3CKaS4aU08RhYA19y5ITQAAAAACF_8yZ3CKaS4aU08RhYA19y5ITQAAAAACF_UIZ3CKaS4aU08RhYA19y5ITQAAAAABvncYZ3CKaS4aU08RhYA19y5ITQAAAAABw3oLZ3CKaS4aU08RhYA19y5ITQAAAAABzH6pZ3CKaS4aU08RhYA19y5ITQAAAAAByyDQZ3CKaS4aU08RhYA19y5ITQAAAAABwNqVZ3CKaS4aU08RhYA19y5ITQAAAAABv017Z3CKaS4aU08RhYA19y5ITQAAAAABv3T_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaZ", "types": "CwMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "03xBoKk9QFKkTcTaYeCLgQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAACLHmuH5pCGXma5ToZjJwiZHAAAAAAAAABnS4DQ5gj04oVPTd_cZvriwQAAAAAAAAAFcoLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJnsN5oeLyhaU3rc_4TQfhXgAAAAAAAAALgvQGUUGWUJbOOm8Vi63fqAAAAAAAAAAGpIlQHYzUvHZx6w5Rtmyd8QAAAAAAAAAGQUT-nNY12PdX-wWYy6XdlgAAAAAAAAADSp9UjTJ6AKwagodjyx73jwAAAAAAAAAFy_Kb_1plOC7673Fl1U32vQAAAAAAAAAFcoLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJ5gDnmh9w-dLR4BjuTxdXiQAAAAAAAAATKmi3IV_5C6YkqCwr-5OCjQAAAAAAAAAtv98Nje6Ys-SL3vVkHXAt8wAAAAAAAAANX11Ep3t2e5MnXIBtAoD8OQAAAAAAAABAXh8yiimhm05HS0cF9hvvxgAAAAAAAAAG3snKxK1kYMyCD8yp6NPsUAAAAAAAAAAFlXmpkj0zpTSACRNmGcLZdgAAAAAAAAAA", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NZN9qvDpFMES8kyQozYIBg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAACceDtEsbyqaPA8nODsaXH2CwAAAAAAAAAjdb7h5t6lXZ_2CL1N4DXU6AAAAAAAAAAOcAnVCtwTUMiPtQhyaFTtfgAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAU3B2E3nnskNJUgYVRkMUbJAAAAAAAAAACHwm3pNPC4Wa3xFabNuzwcgAAAAAAAAAROVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAA-X-Oq0l1amW5EIGEj1JNmswAAAAAAAAAeV6VjwoFUmL-aJwJOJ7vFngAAAAAAAABN", "types": "CQNFBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XKjsZL2KXpodOfuFoDs0YQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYCMh__DRjYW6WKuSO4E-9UAAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFaD5tQt3PTji3IEVewu1DRAAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATMjSrWlLYBonpC2jkI8XqZQAAAAAAAAAKmVg5ImyOXWtTMPsPyAoJFAAAAAAAAAADeCd7pmEC4QoP7FQm1ikosgAAAAAAAAGVws0N6fTgPArljYYAC403MwAAAAAAAABVKiXI7CN_kLfsIAVFu8pFgAAAAAAAAAAIuF_V7TH-mukdED5BHxc90gAAAAAAAAHcC_0aTeR6JBYKeG8Yqz7OGgAAAAAAAAETljpmjACwvo52D1nC2cyFxQAAAAAAAACDvDU7E1ww8G9noy7HUAb7kQAAAAAAAABatrKFSvtlxO979VBLgP3FPAAAAAAAAAAvgs-Dp-bkHGP2EKd53eqOEgAAAAAAAAB-7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAME67ZApSKF_tBH-bAhOXBNxAAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5EXm1hlIrQc2WIKO4W87lDAAAAAAAAAAfDm9DG4ZqDn_4bGJnyMFN4AAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEXnZcAdwBOPPRQ2hQm4YWwWgAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAkQk1ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgGKSZSkKN3zNxr0HYuO2pqe5hQAAAAAAKdUT", "types": "CAMyBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XXVig9Ie3HmFHZwzuss1kg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFu1XT4fd_WKeR1cE-hlLelCQAAAAAACiGo2XT4fd_WKeR1cE-hlLelCQAAAAAACiMiTXT4fd_WKeR1cE-hlLelCQAAAAAACiNLW", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5GfY8EjRtjh0YibV3Qi_5g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAACz-CA2HwYxn7uXuJvRLWceDgAAAAAAAAACo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAAAKzk_PAPIluouMAlyxqI2lSwAAAAAAAAALSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABZE-QSo1XdHeCvAI8JR1eihwAAAAAAAAAA", "types": "CQNEBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bEmtVzIU_epxdvSxCjwB-A"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV5BZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtPa1", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RehMrqDR6c1jEiSjZ2KMbw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAeOSm8DDAjVJl721y2vxKHGSBegAAAAAAy5NF8DDAjVJl721y2vxKHGSBegAAAAAAy5I38DDAjVJl721y2vxKHGSBegAAAAAAgWus", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "QRbzBnRIK4WrJxG9Sw-Fsg"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXDNgtQ4kMk_MBWrPUAFqVnYywAAAAABqaCzgtQ4kMk_MBWrPUAFqVnYywAAAAABqahxgtQ4kMk_MBWrPUAFqVnYywAAAAABqa3J", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2v6DHhtnoM808PoWJLnrhQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABco3Wz5k14PsCcDvFyUC1kmlV3QAAAAABcoCKz5k14PsCcDvFyUC1kmlV3QAAAAABcikjz5k14PsCcDvFyUC1kmlV3QAAAAABa6BHz5k14PsCcDvFyUC1kmlV3QAAAAABa5k1z5k14PsCcDvFyUC1kmlV3QAAAAABdNVfz5k14PsCcDvFyUC1kmlV3QAAAAABGL09z5k14PsCcDvFyUC1kmlV3QAAAAABFRJ0z5k14PsCcDvFyUC1kmlV3QAAAAABFQkoz5k14PsCcDvFyUC1kmlV3QAAAAABFcFGz5k14PsCcDvFyUC1kmlV3QAAAAABFcavz5k14PsCcDvFyUC1kmlV3QAAAAABFqyX", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nV5I4hF4uBpI6Ym1xsaH1g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAb2jOITD8MGbT1Ovw_xtzUAgAAAAAAAAABdfaJS679SMFHynOlhaT4GQAAAAAAAAAEwxNyOGlepMHeJK72r3Nx1AAAAAAAAAABNCnW31JAeE6fBCMV8tcmcAAAAAAAAABx-Io3TUEjg3VhqUZyexECqgAAAAAAAABCKJ6ILPQkLRzsL_qCZRHYPAAAAAAAAAASW8XJy2Hk37R95UDQ18YnzgAAAAAAAAAOOdhNFK09ypq7bYC30OEbwQAAAAAAAAAWz_t7zXgMNJmUhO2ppFiaDQAAAAAAAAAFGVtE5azmnq7oQE07RxtqrwAAAAAAAAAxM-HSPvU6Ylpk6rULEsdDKwAAAAAAAAABwcwS_jKe-J8ZEpRM7gaB2wAAAAAAAAAFn0k5scYsn3wtTeokDa3YiwAAAAAAAAAF1KcuglkNBKBETK8L499nPQAAAAAAAAANiXm2yUQTnZpOrE8ZNWS3KQAAAAAAAAAm-bdPLgVx58dzwkE7OjvI9QAAAAAAAABSCja8VfWo4RLA9wiLOJNheQAAAAAAAACYGKGVPJe19U6y6pXU3LJ74AAAAAAAAABydT8pbQ7r1TmDVTIggVHLtwAAAAAAAAFwU8beN5YK_thkealMCeH3dwAAAAAAAAF_ha_aXoRIEPeeYmi0i6Dl_gAAAAAAAAC2l8_muRLFlOvTUC1a0tSuzwAAAAAAAABXphNkrTvBEAdC--TfG-uZjgAAAAAAAAAZWvWndmvcw3hRnlErDWwKiAAAAAAAAACombtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAANRFjLCSKw9fP9oqeV0WzvFgAAAAAAAAAGwcWRy9o8aBuBPSZu3QixfgAAAAAAAAAGQgPoy2NvCHHBSCpV0FYoygAAAAAAAAAZABUSIyp6z6jka7vrSENSfQAAAAAAAAAT7d3seGBxg838auGMbrqBQwAAAAAAAAA3dZ7JiawsSbyUWtx7EnYO0wAAAAAAAAAGgvF2yYYQgGwIfgcGSJAUHgAAAAAAAAB6Uf1tpnHSTgQXg9RKIrvZYQAAAAAAAAAKbxcZQU9NPH7Mji3IrHeYGQAAAAAAAAAURw2pUsVoJZp3HkcB3nNMtAAAAAAAAAAFf8VYhNP4CdjxG54sGwOztQAAAAAAAABo-xeI6MIHiM8nZhd6ChS_mAAAAAAAAAEzO-USt_tIZNq8cAKvmLvdIgAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAYq1Ak9_WYtjiRUK6jyz9agAAAAAAANHPFr4KuuAdcuLzUhqxYoXsLwAAAAAAAPv9", "types": "CQMtBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3o-w3Farnwxoq1x7_S1N9w"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1YKZ3CKaS4aU08RhYA19y5ITQAAAAABtN7nZ3CKaS4aU08RhYA19y5ITQAAAAABs780", "types": "GgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-qwk1sk-kwHBtZSyFatpjQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmqU", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "eLGJ6B5pzf6VzkaX-T-tjw"}} +{"Stacktrace": {"frame": {"ids": "c6lwtZBG2BzNKGtSyzLrTAAAAAAABCWpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGc6lwtZBG2BzNKGtSyzLrTAAAAAAABBZWc6lwtZBG2BzNKGtSyzLrTAAAAAAABWVUam-Z0RfUVY0oYK5VXRDk9wAAAAAABeu4am-Z0RfUVY0oYK5VXRDk9wAAAAAABeopam-Z0RfUVY0oYK5VXRDk9wAAAAAABeePc6lwtZBG2BzNKGtSyzLrTAAAAAAACN4sc6lwtZBG2BzNKGtSyzLrTAAAAAAACNQK1gXEZRnAPQTspGOB36fnyQAAAAAAAYGo1gXEZRnAPQTspGOB36fnyQAAAAAAAXuG1gXEZRnAPQTspGOB36fnyQAAAAAAAW9O1gXEZRnAPQTspGOB36fnyQAAAAAAAtCm", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wOLD-x7ocHqFfW2A3qB2nA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVEDYyx-zRWlBHMYS8RkGZ2wAAAAAAAAAEdymPrMwSHJkE00arRNB68AAAAAAAAAAUu_5zCMK3PLNUfmu5e0wjpgAAAAAAAAB2ac8L5UaM7hx6_7ogYUjJpQAAAAAAAAALAt2XjH9VGC3bb_7sv7ixNgAAAAAAAACJw4Cq1cfo2BosL5j6RghC2gAAAAAAAADfqVud9aAxlVfNdghSN8mVawAAAAAAAAARcPknbPYx0jQL0_yL-rDiBQAAAAAAAAAHTJokhObG_7GMDQXtJjQRzgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABNX2GurXP9eWlHwN0fLlalwAAAAAAAAAM5E3RifhwtkkbQvQxmdbzmwAAAAAAAAAGhzLOxaKxWQ8hHeWUK-EOLgAAAAAAAAAIbsyDek069Ex-p_WmJk4qUwAAAAAAAABmdRwl39wiwpK9-zrDh4fLcgAAAAAAAAABJIJ67u_XI4-jnSyBIeegBAAAAAAAAAAIeOXjDtmISDDtSL4dEzZt-wAAAAAAAAAD_6rkq2S7o8rMRQJ9AofzJAAAAAAAAAC-7NQKJ0eHP8J4hISaRMWwxQAAAAAAAAATLLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAAB1buaxzZBrb6WHETKUkwVYegAAAAAAAAAOiLCTWRKOWFgxy9lCZCKQuAAAAAAAAAAXPxG4kqBtC76qisSIA3IEOgAAAAAAAAB-54HjE2XSSY1b0Ccf-47sJAAAAAAAAAAbVxYMGyoTn_h64WP_gPGvigAAAAAAAAABGO1QDVqG-4CNnMRn2v_9VAAAAAAAAAAdu39hB2o_bkkn64I33Zf2OAAAAAAAAAAx6KM6RK-sq5wYpyjnMfBa7AAAAAAAAAAsxLOLXg5EKZgSVcI5Dw46ugAAAAAAAAC40LGXmFocz46kL18OXWxszwAAAAAAAAA1cuyNWlZFQkabnqdPXO_rXQAAAAAAAABNSlb8MNVKIFfE9HJqtN3BhwAAAAAAAAAAWpojVIMMfjg1gPX4CFe0BAAAAAAAAC1uHt2yyHtMhQP9uhMxLoNAEgAAAAAAAIuLHt2yyHtMhQP9uhMxLoNAEgAAAAAAAILD", "types": "CAM2BQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8lih77TYGcMh0KSG5Nxt4Q"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LJvcEvvhuguaGYCmGWrnWRz1QAAAAACIVgEcEvvhuguaGYCmGWrnWRz1QAAAAACIVYrcEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEM1p", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2k45I8UTjAFirMa9eIlZsQ"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHba4rFFPORY8_4FvK9QaA3QUQAAAAAAGRIW4rFFPORY8_4FvK9QaA3QUQAAAAAAGRJh4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp4rFFPORY8_4FvK9QaA3QUQAAAAAAFwQQ4rFFPORY8_4FvK9QaA3QUQAAAAAADiYq4rFFPORY8_4FvK9QaA3QUQAAAAAAFwiTUJmIMEc6K8gJ39NHYaD0WwAAAAAAB-5ZUJmIMEc6K8gJ39NHYaD0WwAAAAAACMUoUJmIMEc6K8gJ39NHYaD0WwAAAAAAEPzI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjgtIG5EpvTeHopVC9IqkA_kSgAAAAAAAUSKIG5EpvTeHopVC9IqkA_kSgAAAAAAAA0XIG5EpvTeHopVC9IqkA_kSgAAAAAAASdfIG5EpvTeHopVC9IqkA_kSgAAAAAAASKF6tVKI4mSYDEJ-ABAIpYXcgAAAAAApzdt", "types": "KQMOBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lAEfA2bS6WSoOsgfURUdRg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlu66tVKI4mSYDEJ-ABAIpYXcgAAAAAAN6Kx6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFfVE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMB-t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUktl6tVKI4mSYDEJ-ABAIpYXcgAAAAAApQK-", "types": "FAMOBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "q-c2pTxcwfTFwP7wEdZJ0A"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAABvZKLj_deYRtPDewbXBnoroAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAwy86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAAFYTifPIvND7b7ICq3M7OVoFwAAAAAAAAEEuIpQ1uRexMdnpWaro5896wAAAAAAAAALtpYrdrzxLxKEo0lof5nOvwAAAAAAAAAJzLx6iJ9ANFZvdAJHeiPhJwAAAAAAAAEbT1K4lgbOMjedSlAKmYVcbwAAAAAAAACJLsrK9E-EO_ynQk-yDhFFiQAAAAAAAAAVzPAncFjeEtFg0ea8Pfo73QAAAAAAAAFI", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "i7LgI_ueqfJdaQrzvYmKYw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB874Lz5k14PsCcDvFyUC1kmlV3QAAAAAB88UPz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHpmIz5k14PsCcDvFyUC1kmlV3QAAAAABHpbXz5k14PsCcDvFyUC1kmlV3QAAAAABHeDgz5k14PsCcDvFyUC1kmlV3QAAAAABHdVCz5k14PsCcDvFyUC1kmlV3QAAAAABFwHxz5k14PsCcDvFyUC1kmlV3QAAAAABFxYLz5k14PsCcDvFyUC1kmlV3QAAAAABGnao", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_eUYL3YvgHA3_rAv7tW1yg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t3YXT4fd_WKeR1cE-hlLelCQAAAAAAC-wI9XT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GgIwKEACpDkomOEULtU6jA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABFPp_z5k14PsCcDvFyUC1kmlV3QAAAAABFxkzz5k14PsCcDvFyUC1kmlV3QAAAAABGnUi6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQz", "types": "AwMDBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "T8nh4Uz1hBa2hX7n6l8yLQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmsRXT4fd_WKeR1cE-hlLelCQAAAAAACgnAc", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6ee2Lqy0XDZh9JQTs8tvXA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAADrAotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAGJ1xBvehWaFQefKkuHjb2hUwAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJFcHGeTZbDG8jQ9sbtbngcAAAAAAAAAAcs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFIAf9e80wW0ROOv48VcVi-AAAAAAAAAAcGY5WEW77dofWJpcPe0twUgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4pVlUGQpw_Cq0LEtbbly5dAAAAAAAAAAkN1WyTlGFxfHgSyYQ3aeHDQAAAAAAAAAOYSP8Ib_W13QEw_Ivysg7FgAAAAAAAAFyn0UYwZH5py59Xu9gAaxkrwAAAAAAAABAm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl5iN7OCAj-2IgmFqLvCWrTwAAAAAAAAESap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlJdvIaoH8miVW9zaDiDOZJwAAAAAAAADSap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlhW8OwmmxjJYCeXfLTZy__QAAAAAAAAFLap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlw4mT2NPQOW-Mg0N_xZsuzAAAAAAAAADgap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlRlK4jZbFueXylWP1GNjNSQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlL_sAxM5NHsnYQp22GwDx8gAAAAAAAABwap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAycNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAATPOaf2meILyNtXlyuau5zHwAAAAAAAAAKc6zhheBld8wEBO7TlhnPcgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB82g1SAYpsFtnBogFl0v0GAAAAAAAAADJdpQ3bcNFV5Y0XdediaTCQgAAAAAAAAALmmckjE-MysbZhDPP6gNxewAAAAAAAAAydmm7_Hn3SrysHeUffmIe9AAAAAAAAAAfaxxtk6GnkoiqRXb69JxcoAAAAAAAAACge4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJOdkuTNpXjsFc7WV5c_bgKAAAAAAAAAAMjBwquBL06pqJXOt8kphl0gAAAAAAAAAME5ablZjSwaw4LkNasKqxDQAAAAAAAAAFB3TkFubeMsUjXVlcESk9tgAAAAAAAAAMpmiRP16sLzHMk4sQotP67AAAAAAAAAAOqeHIgzzOczGD0wBwOrHP2QAAAAAAAAFJFuWxxcsr3tUR5NeFGer7vwAAAAAAAABnMWMRq4GUysNDjxb07DjPAwAAAAAAAAA3jsLLxIAhtu1IcuCmLP4yNgAAAAAAAAAH4T44kzE9JU_n4pRF5j5FFwAAAAAAAAAYSq4yJYXB5hEMp7oPtTmUiQAAAAAAAAAimSKMuTauUB6AvF_x3SDLhAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAlNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAANS_CTRBRzwj9_syNwY5rEXHAAAAAAAAAB3nZ_TLoQXzn9RYaGn5N0v4wAAAAAAAAA2414vwxwFz0HV2Ku4dzYYowAAAAAAAABPlF0402c3xDTaGy1WpLy7vwAAAAAAAACHmElwt1Dp4YSxqVbIbt9WBgAAAAAAAAAEGLDSd1ISNevOKzSmDgruJwAAAAAAAAAgpGS8OUXSiLWiH5S3vFML0QAAAAAAAAABhTCcyJ3soXig5DBwawFWwgAAAAAAAAAfa5zoVUaYg3Rkw0lFMZBibAAAAAAAAAACDDx8Tabgis3a0xF6j6Br1AAAAAAAAAAA8DDAjVJl721y2vxKHGSBegAAAAAA1GJR8DDAjVJl721y2vxKHGSBegAAAAAAgMwk8DDAjVJl721y2vxKHGSBegAAAAAA7PiS8DDAjVJl721y2vxKHGSBegAAAAAA7PIgvQ7EacG6CR4rzcFaNFEsTQAAAAAAAQSY6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAOKBQUDCAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xzQNBRGm9wibhQxq1fgMrw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFVUA", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8ig1iwolEs0FBT0sURsa2A"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDLZcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETRW", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "BQk-MXyYmfQIG9OS3OeGYg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAACUcj5Iicnc1YHT-TWyg9rL5QAAAAAAAAAffO_gJBPd8E-RahoVIhDflgAAAAAAAAAB8w2ZGyVQ-aMnL_pA1hWbwgAAAAAAAAAy76oMN5gawXJbUdBHZW56vAAAAAAAAAAItYnNSbSbqPfiGNhyW6TUtwAAAAAAAAABIEtETl463byzMJPLuRp-TAAAAAAAAAAIWNklusebG0tdR5ytKPlbkAAAAAAAAAAIBPGrhEymdtYQNz2pzn2GeAAAAAAAAAABDP6PZKAs07323BH7JdjoywAAAAAAAAAUIEtETl463byzMJPLuRp-TAAAAAAAAAAIWNklusebG0tdR5ytKPlbkAAAAAAAAAAIBPGrhEymdtYQNz2pzn2GeAAAAAAAAAABDP6PZKAs07323BH7JdjoywAAAAAAAAAUIEtETl463byzMJPLuRp-TAAAAAAAAAAIWNklusebG0tdR5ytKPlbkAAAAAAAAAAI8yK7Uvpt_PwG8tWXk0oEHgAAAAAAAAABDP6PZKAs07323BH7JdjoywAAAAAAAAAUIEtETl463byzMJPLuRp-TAAAAAAAAAAIWNklusebG0tdR5ytKPlbkAAAAAAAAAAI46cRp9b6CxM3JVl8H47a-wAAAAAAAAAEscEhYXFwf_JnNDVurc9l9AAAAAAAAAATwoUlYx3qksknQ1csxYkVzAAAAAAAAAAJSm0xkBmU0d55bIWjfcYmtAAAAAAAAABbj4w58zsaqOfxzn9j73toSwAAAAAAAAC7pLk3eEBAQ6mOObR4PSHT3AAAAAAAAADEWd4LaEXdGxPRMFAASOrHpwAAAAAAAAEVeOiDFFx8fEa1T0wux9bfqAAAAAAAAAAECNq6Kt4mWkOk16Nvp19k6AAAAAAAAAAAYq1Ak9_WYtjiRUK6jyz9agAAAAAAAICg0rNuxKNw6YxtKvsF6kS_jQAAAAAAD0-P6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALVN76tVKI4mSYDEJ-ABAIpYXcgAAAAAALVMd6tVKI4mSYDEJ-ABAIpYXcgAAAAAALVGx6tVKI4mSYDEJ-ABAIpYXcgAAAAAALU_V6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTC46tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimtb6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOK46tVKI4mSYDEJ-ABAIpYXcgAAAAAAlcA76tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbpN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUd516tVKI4mSYDEJ-ABAIpYXcgAAAAAApYft", "types": "CQMgBQIDDgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ecIJ7alEqvkZHPAYHPBxuA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbpmZ3CKaS4aU08RhYA19y5ITQAAAAABtPnE", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5DxLQCnm2m1lyk1iyQvgDQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAABhRJXjPkp22gaQo9vwY-85JAAAAAAAAAB1DLrWTvtAPDh4Uv4u2shragAAAAAAAAAW_-w0jN8EBuSyBPLluRtS_AAAAAAAAAAR", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "IhhW55e7fpp6Xx4dkJ9zvg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFmUdcEvvhuguaGYCmGWrnWRz1QAAAAACElPV", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "tR82cBwIiS2U4EHguxOkpw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eaUcEvvhuguaGYCmGWrnWRz1QAAAAAD_AtNcEvvhuguaGYCmGWrnWRz1QAAAAAD_ChZcEvvhuguaGYCmGWrnWRz1QAAAAAD_BbEcEvvhuguaGYCmGWrnWRz1QAAAAACIXYzcEvvhuguaGYCmGWrnWRz1QAAAAACIMvg", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9fHd1qzMpEB79nCTvgEZMw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw1x4XT4fd_WKeR1cE-hlLelCQAAAAAACwXETXT4fd_WKeR1cE-hlLelCQAAAAAACipi9XT4fd_WKeR1cE-hlLelCQAAAAAACipFEXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAANp-d6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBiZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN0Cm6tVKI4mSYDEJ-ABAIpYXcgAAAAAAENPt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAENOq", "types": "FAMLBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iNtkbY9yUtK3XcUEf-ydxg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChkrh", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "a_SNx-0PYa8jpGwKHXLj3g"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw2EEXT4fd_WKeR1cE-hlLelCQAAAAAACw1iYXT4fd_WKeR1cE-hlLelCQAAAAAACkHGIXT4fd_WKeR1cE-hlLelCQAAAAAACkMo1XT4fd_WKeR1cE-hlLelCQAAAAAACkMbV", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RH7b2-6pjWsXgDNoHlbTOw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAqovRPcszTde0VZh4hrqQUtwAAAAAAAABBgJKCOQJCNUe5j61lhCTyewAAAAAAAATdBzHaaplfCkGFxXmJVqCJAgAAAAAAAAARkLG20VFMtAeL120q9dFk-QAAAAAAAAAhR9d-4EOoAQqhB1QW7ZwT_wAAAAAAAABJstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGfDqNreXUioiFDFwNREuqLgAAAAAAAAAsCasUHBASz8HLDmgbus_pogAAAAAAAAANUKLoduJn5-YPXULy7Ukl9AAAAAAAAABuahMxWqP1a_8hG_qUbGypwwAAAAAAAAAd071PUSzMXlqHEVR0hWfW5gAAAAAAAAAA", "types": "CQMwBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vvHJt62uzFP3AKrhWF7mXA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHfZKXT4fd_WKeR1cE-hlLelCQAAAAAACy8_rXT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy_VqXT4fd_WKeR1cE-hlLelCQAAAAAACzAIEXT4fd_WKeR1cE-hlLelCQAAAAAACnefEXT4fd_WKeR1cE-hlLelCQAAAAAACney9XT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhjWXT4fd_WKeR1cE-hlLelCQAAAAAACjs1kXT4fd_WKeR1cE-hlLelCQAAAAAAChrznXT4fd_WKeR1cE-hlLelCQAAAAAACgaYEXT4fd_WKeR1cE-hlLelCQAAAAAACgazLXT4fd_WKeR1cE-hlLelCQAAAAAACga-t", "types": "GwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "l6u_-Kc7kpXXMDJYWsMNhA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACguWEXT4fd_WKeR1cE-hlLelCQAAAAAACgumUXT4fd_WKeR1cE-hlLelCQAAAAAACgzwTXT4fd_WKeR1cE-hlLelCQAAAAAACgxLF", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yKV4bCtYVd11m7Fk7XysVQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiF_vXT4fd_WKeR1cE-hlLelCQAAAAAACiGWEXT4fd_WKeR1cE-hlLelCQAAAAAAChWnJXT4fd_WKeR1cE-hlLelCQAAAAAACgUDs", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "snWFeoBCumPh_6wYJNdLVw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAABuJiDit2LD3UA_K38KQLtubgAAAAAAAACI6xWPN5N9Vm07FKp43AjLBQAAAAAAAABO2kNP-fbSjTC_hm1jEY6s0QAAAAAAAAACVAcs5JM676bIIEJRUL9kYQAAAAAAAAAD-mAMSaO8HC1n82ENmkUabwAAAAAAAAEcepgIddEEaGC68JQ508kjFQAAAAAAAAARvdv7wcErbmkon-Nhq9YXuwAAAAAAAABBmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAANIfYj4waw9fP9op8fikoTJgAAAAAAAAAGmHLbruajf1ewhD5eRLIwPQAAAAAAAAAEIfYj4waw9fP9op8fikoTJgAAAAAAAAAGu80wzeYkSnSlt8hhdfSXpgAAAAAAAAAsaMdAw5F6bqw1nsXGt00a9AAAAAAAAAAT5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3Ge0L0SwsSbyUWsXqVMbKswAAAAAAAAAGDXStuM9FGoRVIzn6iyb_SQAAAAAAAABmLO0kqCJ5sLnPx_SwGJYFEQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAEXqmhrzhROIxdFfT_O0ufQNgAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyFr", "types": "CAPIBQED"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "opKV73B4ba5Ix4sboNzZRQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAAAaDLCbvuPzV5FNep-fYYK5KAAAAAAAAACEwdRZBOgt1iAFeehFpb20mAAAAAAAAAAJ0Cdt9wyWxnG2B-xGXMO6owAAAAAAAADYVx2H7p06nNerPKpNR75HGQAAAAAAAACR", "types": "CAMIBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gmhXDYdzVYBywA7pPjVdNw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQEI2MlivQ_yGyq36LnLAGeQAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQOUV_Man7LKpLI_xXeAvtgAAAAAAAAACeM1U5MRplArg1qeEAEk5MlAAAAAAAAAAYNK6q-mYZhWe1E7afoKkwiQAAAAAAAADYr6Fg_DPZ96geKIjDaUl37wAAAAAAAACsPYNQGka54-Rn86JqyO8oZgAAAAAAAAAMuHXk96D_H0MjX0tAh6AHfQAAAAAAAAAGBQgPvwiw9NNbOJgDcqi8DAAAAAAAAAAtD8SuOAHHuRsEe9MWrwApVgAAAAAAAABUpD64Y8dYs0KzJcRfejjvpQAAAAAAAAGx0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7zLRHJmK7SuaCDIOsydGjpQAAAAAAAAAFms-x3fJ8QBk7y_Ax6kns5QAAAAAAAAAEOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATkIHoeHOqUABD9df742XoZgAAAAAAAAAKpxq9i_P7P2LtOabkMgl8CAAAAAAAAAAJANUDzCguopTSw91qnI0ylAAAAAAAAAAOfZ1SoGSE80OZ2t9ks5kZMwAAAAAAAAAhEVqCqcMqZlQ0w1_HMPbgrgAAAAAAAABN7qz18bHgG-Zc_fVo9Dsh7AAAAAAAAABPLV1qJd4M55A4v0lGtbHYuQAAAAAAAABAgvccGM4k-q4cOxwbrd8DiwAAAAAAAAAQtQjdsVMJULt1As7mbOCEqAAAAAAAAAAGMMAujfe9xzktoHyDqw_cGgAAAAAAAAAGKGVSBMVyriI5T93UZw1WLgAAAAAAAAAE_qkVJm0NxTF9ak3kQe9veQAAAAAAAABazzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIcPy2QFuGdjzuVBNv2-JtzQAAAAAAAAA5FQVEqfdF3Gc5vOLVf8c4EAAAAAAAAAE9", "types": "CANOBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PxmYvGkUV1IJA8Ols16StQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNGXT4fd_WKeR1cE-hlLelCQAAAAAAC-uEIXT4fd_WKeR1cE-hlLelCQAAAAAAC-vdVXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vmOHJW5BNmBCxc9wbXa8Kg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-wCEXT4fd_WKeR1cE-hlLelCQAAAAAACkR-sXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUd2", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "AcZUK1Aws1E1RE5GDb5CQg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAADb", "types": "CQMTBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GPYImyMgbg4pYrMArKSxDQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUmy", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "giBWEt4QjtavV9fwylJCFA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALO-i40hQb92bY-JOhJrV2owAAAAAAAAAs6l-EHm0OnthNsvyaQcuYhwAAAAAAAACN6lZUkN3dGRNTlylh0Rs1AgAAAAAAAAAWF_PHkNHp1cM7FmVp9OVy9AAAAAAAAAA2IYsF8T0nmW0EDmKEbhfC1AAAAAAAAAB3ZNIMXBN7NKTXUfXb93okMgAAAAAAAACfVdwrqP2He6NLNQ9LuEAacQAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQecGPZMO_Ar5A3oFGzfPKKAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQfGOA0JLmMg26rQH30fPUgwAAAAAAAABRa0wWJ2rcNU0N0nF8s8CPfAAAAAAAAAA6hzcOme2bHOlnmg1x3z_FQQAAAAAAAAAJOFvli6IQdK5-vtR_oE3g3gAAAAAAAAAKQSkoY5477iCGGkJLCg3twgAAAAAAAACLifinGpNZEDb24abZy_zLXQAAAAAAAAIgr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQfGOA0JLmMg26rQH30fPUgwAAAAAAAACvW6zbfG-pUtsdP3JjLENKRQAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQNaY9cPrM2n8oUei5D2qWHQAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQNaY9cPrM2n8oUei5D2qWHQAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGNaY9cPrM2n8oUei5D2qWHQAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQuqdblsLlo9aDgcTKrr02KQAAAAAAAAARERRGf3Kdvc3u72prdGAg4wAAAAAAAAFaRVh-BV8B68GuWcVN8lq5vQAAAAAAAAAVRTchl6Vcm4Bc2NrejFGSagAAAAAAAAAXpZ1DxhgiXyxWPuNbBtMrIAAAAAAAAACLUeBLZIMubAc4tcEy2sOybQAAAAAAAAED9sCTWshQJF-MxcDqttIhrwAAAAAAAAB6pHWwhVF7xhaEDZT2L0KL1QAAAAAAAAAGjfWZKcvJcvZvI74FMiyrAgAAAAAAAAAB0hcFUvwWZfQvp2KtSe1TEQAAAAAAAAAH5kI3iCVPIGpJyER_pIOiDAAAAAAAAABK_t41Zgn8MiPpsE2ExccvfwAAAAAAAAAISlk7EKKi8JmNp7yELCNTwgAAAAAAAAACNglZAtsVMy0PR4D9Bo4v_AAAAAAAAAAIdH_-XVY1o9Dh1CsvXltQLQAAAAAAAAAuw64jvzcoyqey7vlsJR66HAAAAAAAAAATlL02ENMn9TDqCnir50TaAgAAAAAAAAAF3OXUprnwrCHvPb_pGSZRIAAAAAAAAAAIIqULMo65wBpxMrZG82ozDwAAAAAAAAAWXwBU-eRBaCnHy44Hfhv2qwAAAAAAAAB2Uh6LcwID5aJukzbO3rioJwAAAAAAAAAIUO6PAHCkEL7ymSs753dktQAAAAAAAAACrlMDvNahhog_2YwC1vqNigAAAAAAAAAIGEq2R3OT579ZPRIW9oZppAAAAAAAAABcjOKHIn-OfmVASZP9y1NSfAAAAAAAAACHWlkJT2Virxt9w04SopK20wAAAAAAAAAQIS1ArEPDf7OwNwli619BSwAAAAAAAAAkB8GcDjZ97CTFJbinioRl3gAAAAAAAAApitNYDDux1CCzX0YHImZaewAAAAAAAABkiLeGKvbT4JiM2zBRgGpU5AAAAAAAAAAMy2nHsZqN7Z3XV5aac3vDUwAAAAAAAAAIwpX9QNm46mAVYH89IijR0gAAAAAAAAAVJmbV-AH56XNUdA5-wxAqIAAAAAAAAAAB4XL-_3HqKL4a-N25S_4rwwAAAAAAAAAqY_uBeAIr8RJYVxEQrPIP5gAAAAAAAAAEkQXfLSX2IREpCmXu1yYpsgAAAAAAAAAIzqhvogg4FMs_i3X25D79jgAAAAAAAAALlL02ENMn9TDqCnir50TaAgAAAAAAAAAFosHSi38irPvHcYZp1iwRgQAAAAAAAAAUN9zxMuVRpQW2eudcqAYcbAAAAAAAAABCitNYDDux1CCzX0YHImZaewAAAAAAAACBhRWuhP2XlIOrGluAvR5cNwAAAAAAAAALlL02ENMn9TDqCnir50TaAgAAAAAAAAAFJEFRx205AMaHlwzWP0W_-gAAAAAAAAAUB-4a2N9xDOSL4yxG_gAffQAAAAAAAAA6lL02ENMn9TDqCnir50TaAgAAAAAAAAAF8weNsJh8wpgjhW51tVfckQAAAAAAAAAUBJDHz_v6MglYWRIxZBsdiQAAAAAAAADqtgTcpaw1PHSeu1PntXA3fQAAAAAAAABXWlkJT2Virxt9w04SopK20wAAAAAAAAAQIS1ArEPDf7OwNwli619BSwAAAAAAAAAkB8GcDjZ97CTFJbinioRl3gAAAAAAAAApitNYDDux1CCzX0YHImZaewAAAAAAAABkiLeGKvbT4JiM2zBRgGpU5AAAAAAAAAAMy2nHsZqN7Z3XV5aac3vDUwAAAAAAAAAIwpX9QNm46mAVYH89IijR0gAAAAAAAAAVJmbV-AH56XNUdA5-wxAqIAAAAAAAAAAB4XL-_3HqKL4a-N25S_4rwwAAAAAAAAAqY_uBeAIr8RJYVxEQrPIP5gAAAAAAAAAEkQXfLSX2IREpCmXu1yYpsgAAAAAAAAAIzqhvogg4FMs_i3X25D79jgAAAAAAAAALlL02ENMn9TDqCnir50TaAgAAAAAAAAAFosHSi38irPvHcYZp1iwRgQAAAAAAAAAUN9zxMuVRpQW2eudcqAYcbAAAAAAAAAAtmvS9ZLmmrkF3RxnZo2YVwgAAAAAAAAAFlL02ENMn9TDqCnir50TaAgAAAAAAAAAFUPM-HyqGeVqfJgBKSo6ARQAAAAAAAAAQH7k-cEmonp8Mf9KH-IRLOgAAAAAAAAA9lL02ENMn9TDqCnir50TaAgAAAAAAAAAF8weNsJh8wpgjhW51tVfckQAAAAAAAAAUBJDHz_v6MglYWRIxZBsdiQAAAAAAAABctgTcpaw1PHSeu1PntXA3fQAAAAAAAABtVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASlL02ENMn9TDqCnir50TaAgAAAAAAAAAFxyGE7Z7S41axzRSXDjnnxgAAAAAAAAAM6bUb6PbjXkAtRAQm7Ra2sQAAAAAAAAADX5jiPdo6Vah6tu3dfOw-zAAAAAAAAABvPKckO5bmxRn-hXTioVnlUwAAAAAAAABKFnf9oAjiADN7m8uLBtW8oQAAAAAAAAAybCqOb88D5a1Y3_63cVROYAAAAAAAAAAIGdVNw41pu6iR51uvTFxQGwAAAAAAAAAFlL02ENMn9TDqCnir50TaAgAAAAAAAAAFlp7v6sCnonPpIWgPLuwZbgAAAAAAAAAUAScUco_T3pNsIefCSQ8FlQAAAAAAAAAPxLg4xP6kyCCJ392C0IAEAwAAAAAAAAADpAAKLdxZ4cGzshbciFKEswAAAAAAAAC8j1RL_HrqcYG8xQUBJflv_wAAAAAAAAAFxBTi6zq6LxTMAqb38KRrfgAAAAAAAAAGRXtoxChZi6om4tFzbI5m2QAAAAAAAACP", "types": "CQOPBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "s7EsAu37ihslSkq5_KM2CQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAGx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABW1vmWfRl7JvnIelrwmbOFDwAAAAAAAAB2P_qKgj6OkmYBLfen5yPH6AAAAAAAAADlitfZdu4NdI0YJrHcgeE-TwAAAAAAAACXJS-WjNz0QulnqSlnIs8U0wAAAAAAAADS7Ormen3KBfy8FXv7OmF-kAAAAAAAAAHyavfO9wX8Y6wuHuPsqC9ogQAAAAAAAAAkZuSiv65WwcAu_jfpG6ANPQAAAAAAAAAFxF5VGC2U_MH-71_OPOmawgAAAAAAAAAZRcLwtzOrbCJ2S4fnMoo41AAAAAAAAAB7FS1bL4hzYgOQRasRTmaMCwAAAAAAAAARjYKah-GaJpbI-jAwYcFi1QAAAAAAAAAIbu6t-WTb-nsfb-QwFBEV_QAAAAAAAAA9D0rVr9r2i8CRuvzOSp3RnAAAAAAAAAACqk_n1ecQPsBsNva7iBiLPgAAAAAAAAAFpE_XF-eq0tBl0fP7Y7zrSwAAAAAAAABpYav7N1kdPMXfEfZ1xXIznAAAAAAAAAANDYw6-LyNoVsQdM43hcJCegAAAAAAAAAI3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAA8c6UeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAOjK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMfBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "27VmuMaZ2B31ynhtH7MV2Q"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_eEYxe-SHgukLEpCkawSk1QWAAAAAAAAMor", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "y7npw8vCXsh5UIW1iQUjmA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qkwlUtuQNZ2cGuJOBjod69QAAAAAAAAAfFZcDTI2WOs3OMnDBC0zHmAAAAAAAAACHLh1LDdjDW07X-POqmR5FOgAAAAAAAAACGNh1_yXJg_PNE59rBU9I5AAAAAAAAABVn8yyz5vynZOoIo8vPU8CuQAAAAAAAAMJ7ptKTGTqqszfKDkDMhWl3gAAAAAAAAFZzEgrOk71L1BRIHvznRZuRQAAAAAAAAATX9nwrZYlme63pOWRN1rWbwAAAAAAAACm9jiHXEAqY3kbQsrq9gMUXgAAAAAAAANJWfJZEAMm0CLwrKwEGPQTbQAAAAAAAAAX8Z3LiIRoO3_eQJJIGwox3AAAAAAAAAAqAaEmQZ_EVX-F-lW3lvwCSAAAAAAAAAAGq70nRV_P6WVXyRtYM6D75QAAAAAAAAMnE43CjQfPMmc1FieffTmJPgAAAAAAAAAoQgdKCL0NweKlDrk1WZ03swAAAAAAAAAls__kQ2m1V3bn-9gwOriqPQAAAAAAAAAA", "types": "CQMRBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zCYZiBoh5dVeJO-uZEe0tA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgoZ", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0o-tp6FsoJo0I5jGkQl8BQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAABVUGAPUw2d5-4XxhgrPyPBigAAAAAAAAAMxhOAoPbUvqtSdEcy7uoPXwAAAAAAAAAFeXimxJw4055xWDImg8DzoQAAAAAAAAAqhIPSIc3LxfgC93-3l1xbUgAAAAAAAABg2WuDX_7V5y0Pc0pDkF5WNQAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAGv7pp6LgRqCGeGjs7cnnwItcAAAAAAAD9D26tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMust6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuoD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00i6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00D6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMKBQIDCgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xds8XZ-H-9YjjzGczHI3TQ"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4694rFFPORY8_4FvK9QaA3QUQAAAAAAEQFi", "types": "UAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LZvFVTJOMfo7RHR7D2PEUw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtboy", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7so5YKwv6-K3eXkjBd3E2A"}} +{"Stacktrace": {"frame": {"ids": "2iSc_7W6mQyfzHA8XRDUrwAAAAAAMJS92iSc_7W6mQyfzHA8XRDUrwAAAAAAeB7Y2iSc_7W6mQyfzHA8XRDUrwAAAAAAdGxJ2iSc_7W6mQyfzHA8XRDUrwAAAAAAdJkN2iSc_7W6mQyfzHA8XRDUrwAAAAAAdIuf2iSc_7W6mQyfzHA8XRDUrwAAAAAAeMBU2iSc_7W6mQyfzHA8XRDUrwAAAAAAd-2z2iSc_7W6mQyfzHA8XRDUrwAAAAAAeJfx2iSc_7W6mQyfzHA8XRDUrwAAAAAAeIkj2iSc_7W6mQyfzHA8XRDUrwAAAAAAO1pm2iSc_7W6mQyfzHA8XRDUrwAAAAAAOqKI2iSc_7W6mQyfzHA8XRDUrwAAAAAAOioC2iSc_7W6mQyfzHA8XRDUrwAAAAAAOJb72iSc_7W6mQyfzHA8XRDUrwAAAAAAOLhQ", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Ccyeq1MpEdYyyzMGVkI-PQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAAAbFB2lbICPeg4uVJ_bp0LkUgAAAAAAAAARz3imu7TppL2XUId5Y_cXQgAAAAAAAAAGNcIQR2c5Ob8K5vbpAkilygAAAAAAAAARQMO0tOc9LHhoVe-iumAfmwAAAAAAAAAA", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dyz1le-WwlbFzLi-sGe3UA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChGI0XT4fd_WKeR1cE-hlLelCQAAAAAACg6T7XT4fd_WKeR1cE-hlLelCQAAAAAACh1MA", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UDdkGUkVb5eesXaBvqvyqQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF88yz5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF780z5k14PsCcDvFyUC1kmlV3QAAAAABF64Dz5k14PsCcDvFyUC1kmlV3QAAAAABFPjyz5k14PsCcDvFyUC1kmlV3QAAAAABFxi1z5k14PsCcDvFyUC1kmlV3QAAAAABGnUi6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9RrA6J3alySbm-v-3xUWvQ"}} +{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kuVi0_akuSWTIatJohqMk3QAAAAAAxjenuVi0_akuSWTIatJohqMk3QAAAAAA6hF5uVi0_akuSWTIatJohqMk3QAAAAAA6k4huVi0_akuSWTIatJohqMk3QAAAAAAl_pguVi0_akuSWTIatJohqMk3QAAAAAAjX5_uVi0_akuSWTIatJohqMk3QAAAAAAjZ80AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALlpRCGlUta_cleZPDK4rgegAAAAAAAAEGgm8AuUNO9K8eEDhJQ1w7agAAAAAAAAABGrFN_vqIiUXweFiD8Wqk0AAAAAAAAAESU_j9WWlyWElqIOf8loqE1gAAAAAAAAAC-4NirsgyEEPl7WtLpQu2SQAAAAAAAACGnPSuZSGoA22y5gsINYeZDgAAAAAAAAH7exPoPNcHskSU7YAtxLW1xgAAAAAAAAABymy97Qr8iciMaB8o0VZQhwAAAAAAAAAHr3Vnx-dTQcIIufztwCi9dQAAAAAAAAA5YYK1gCJKCzqZO5ZonhktYQAAAAAAAAAEOJSQdrTxf40GzDZQ3SHo8gAAAAAAAAB4BEz4t6pyKxlu50ntqchLuAAAAAAAAADcY75LJ0Nv_hnuhGcPPjegiwAAAAAAAAAl62ynkfCGgTRmv9n9OlbFKwAAAAAAAAAEAZDR3l_HtCM5cX-45SSLjQAAAAAAAABFGoNepwzc_zT2_J1VozUIzwAAAAAAAACVSI19Hp-jykmwNUAUFhWoXgAAAAAAAAASY38Z6UTpZtsLVrG4bUASjAAAAAAAAAC8kAK5h3GjJdDJlMjhyg-mfgAAAAAAAAANimafDmtOvH8dRRJ00H9XgwAAAAAAAAC1OUBnNtl7FmMu_heLqI12zwAAAAAAAAARd9RG0yBd7ZTSoad56XM1vgAAAAAAAAAJNYAMxXBrsuLnH1-AkQav5QAAAAAAAAAC4--FGbLdMz46YjN0-7Uv7QAAAAAAAAAkq8k3aU7ENs4HYkLbkM_l4AAAAAAAAAAB972OR6hUEsl-xpQeM92wPwAAAAAAAAAEqm1hDSu4gBGUqdizlOHmtQAAAAAAAABZ5zVzmKYjyLpwowkBh3-YNQAAAAAAAAAF1kDY7ns2Gd2tQLkuiWOHugAAAAAAAABkvgzxNJQ73m4v8Yk4kSwEQQAAAAAAAAAbwJxZZ5hW2VCSspNBDWGffQAAAAAAAAAFbgN0IJ8H68sqZWLrgBMvsQAAAAAAAAAItGdG6Ekrs0R5JngDxtv8-gAAAAAAAABCiNAD1p_Lv1OaSnyxKQf_NAAAAAAAAAAmaaOskbwlxwF7eOPPRl2i5QAAAAAAAAADH_-HLBRLH2q9IHfzvqzcewAAAAAAAAADH7vWo6EmFvCNotlmk2j9zgAAAAAAAAA7qnR7SPBrCbnbJk8v7ooOnwAAAAAAAAAGFnmwXe2vE-fdjOidW-gJfQAAAAAAAAAohLSOXypyYB67cc97e5npKgAAAAAAAAAXXfzVlqt59V4pxpf_35ocjgAAAAAAAAAdLT5lr845yiJBLJcYHx5FbQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgcJztuwL3Ka8-GXv43dDYNAAAAAAAAAAph2McnzqwfbL5yBZRK65EugAAAAAAAAAMTOa0ygAfQQy9_fxWXp26HwAAAAAAAAAMI-x1LAFAVSv9J3myRVqiIwAAAAAAAAAUUkueeppiTuWpAUJ_Q3y4iAAAAAAAAAAZOzfMwGMAUWlo9CHMDsxtzAAAAAAAAABmQvNBQjR-WM_I8f_goMFl_gAAAAAAAAAKtgsunDQEllHLCodklZ3lYAAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADqQT28tkYE_Jc8XwmYq5euQAAAAAAAAAcRTxK_RC9xGWNzv2PtonXEwAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIi7-zpevcRiI7M38R46iNUAAAAAAAAAAElyvYbnLQSXL9gPpWhYMTZgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAArGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABB5KDO11BWTfkkFO9MFEbTJwAAAAAAAAADoyUgxxOY520Rj3U8w5GHoQAAAAAAAADS_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAr0qIY7jWRZF97Xo5fDF5cAAAAAAAAXbguVi0_akuSWTIatJohqMk3QAAAAAAmAYTuVi0_akuSWTIatJohqMk3QAAAAAAjm4JuVi0_akuSWTIatJohqMk3QAAAAAAjmh9", "types": "CANbBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "sigxfoCBaO4Bql7SuGylmA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHsJJgtQ4kMk_MBWrPUAFqVnYywAAAAADHsO9gtQ4kMk_MBWrPUAFqVnYywAAAAADIfGLgtQ4kMk_MBWrPUAFqVnYywAAAAADIhWkgtQ4kMk_MBWrPUAFqVnYywAAAAADIkydgtQ4kMk_MBWrPUAFqVnYywAAAAAB8RDlgtQ4kMk_MBWrPUAFqVnYywAAAAAB8EgOgtQ4kMk_MBWrPUAFqVnYywAAAAABqIb3", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vtSE5aGz-uOtbw4NoHH-BA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAC1itTcEvvhuguaGYCmGWrnWRz1QAAAAAC1hwkcEvvhuguaGYCmGWrnWRz1QAAAAAC1iCEcEvvhuguaGYCmGWrnWRz1QAAAAACIYppcEvvhuguaGYCmGWrnWRz1QAAAAACGvIkcEvvhuguaGYCmGWrnWRz1QAAAAACGnmbcEvvhuguaGYCmGWrnWRz1QAAAAACGpoocEvvhuguaGYCmGWrnWRz1QAAAAACGsF2cEvvhuguaGYCmGWrnWRz1QAAAAACGKd7cEvvhuguaGYCmGWrnWRz1QAAAAACGMs7", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FbpUFko8tUm3ejMa5f6k0Q"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9Dg2z5k14PsCcDvFyUC1kmlV3QAAAAABJiQ6z5k14PsCcDvFyUC1kmlV3QAAAAABHpn0z5k14PsCcDvFyUC1kmlV3QAAAAABHptCz5k14PsCcDvFyUC1kmlV3QAAAAABFdlT", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zPcSnBNqWAITrQcVMpEFWw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWIIXT4fd_WKeR1cE-hlLelCQAAAAAACqVVkXT4fd_WKeR1cE-hlLelCQAAAAAACqVj8", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "qCuVVUMEIbq3wGYuxzHpEQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAAAyxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAACNJgmaT4hGItQStPxlJGEPUAAAAAAAAAAEWHTE8ACR4NC-I-EUuyo1lgAAAAAAAAAIjoHdKmx5pRoeIkTwEIvJpAAAAAAAAAAcIKniS6Oltfo1ekuyyeYCXwAAAAAAAAABSJxVsEnpCDnlRh2uwKM1VwAAAAAAAAAIU8y7tkq3OrTv74Jpmv-rDQAAAAAAAAAkWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFuaPqWrgrMtBr19nB0bwQ4AAAAAAAAAA7DvWhbkzH60wdCq3Z8oLdcQAAAAAAAAAHOljKMbs7Sslvbk6h8kJ9yAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfw5DtxqVhoNPMfZH51ZbSdwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEeyyzzsctNMm8Ix0F5BKrQwAAAAAAAAANL9OdW1GzSEWVanMPfByr5wAAAAAAAAAIMpA-_yb_lGv178DTnH5RUAAAAAAAAAAKQFD262cMfH9Fkx0D-SBUcgAAAAAAAABhk-Vn8s9qtj7D3BSWLIWnXAAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAActFrbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qeGt3fpd8fb-33IEga_JxmgAAAAAAAAABIGwhMoYnMofyYEaJiOTDygAAAAAAAABndVXLQszZHgabMaRgrKn91QAAAAAAAAAbkUQWAMnv1TRPiRV23phECQAAAAAAAACM4oROntQ4zAdpf6wKcORUhAAAAAAAAAAA0aeAC4XpbxqxubqgoasMaQAAAAAAAWFk0aeAC4XpbxqxubqgoasMaQAAAAAAAW3P0rNuxKNw6YxtKvsF6kS_jQAAAAAABGiX0rNuxKNw6YxtKvsF6kS_jQAAAAAADu1k6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "CQM_BQIDBgUEAwUE"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PW7zQ23afSzZi1XCupz-Ig"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFczM", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "g1TbNQs0ehcm3oPXvCWrtw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t3YXT4fd_WKeR1cE-hlLelCQAAAAAAC-wI9XT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FgMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yUwNo6h0RJrKD3MAvvpzhw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAA1OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADJWFBxAERZNClfuNDueoaytgAAAAAAAAAGFw4N_DGYxmWJY3G6VlrCLwAAAAAAAAAGK4GtFsHu3sEiObk5SkQ6NgAAAAAAAAAZR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAAC-6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC80G6zvzFPytbRyfwuXWQcAAAAAAAAAAB", "types": "CAMmBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KLTnRb3TnUCXGZZ6IpB0dQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-uTvXT4fd_WKeR1cE-hlLelCQAAAAAAC-xG9XT4fd_WKeR1cE-hlLelCQAAAAAACp70oXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "L9qGPYp4CMtMhaaLDAx6aQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIoVZ3CKaS4aU08RhYA19y5ITQAAAAACtIeEZ3CKaS4aU08RhYA19y5ITQAAAAACtOo1Z3CKaS4aU08RhYA19y5ITQAAAAACtNW2Z3CKaS4aU08RhYA19y5ITQAAAAAB0mf0Z3CKaS4aU08RhYA19y5ITQAAAAAB0j6eZ3CKaS4aU08RhYA19y5ITQAAAAAB0jEK", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WBPkUSPOzdf2do4EAjhl9g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAABcQrw_bSROFZCKPRirqN5crwAAAAAAAAAEmNKQ_cGBX-X-PxTw057WHwAAAAAAAAAoPe3ctc9W4J1u_ZCOerqNzAAAAAAAAACGnZmkelHuL2rN_AY8H-OMEgAAAAAAAAAFgmjUzsxRLEujWJFPXkncMgAAAAAAAACLzw0wKeXSScV9zb0GbnSg3gAAAAAAAAE6xiNRq7Ruj11jfgYHuwwWowAAAAAAAAIacj1i9bDkXvg3vH52VRJiMAAAAAAAAABOcj1i9bDkXvg3vH52VRJiMAAAAAAAAABOcj1i9bDkXvg3vH52VRJiMAAAAAAAAABOcj1i9bDkXvg3vH52VRJiMAAAAAAAAABOcj1i9bDkXvg3vH52VRJiMAAAAAAAAABOcj1i9bDkXvg3vH52VRJiMAAAAAAAAAAy_pxpI1Nkkofih1oFQHl3WwAAAAAAAAAHbp2VGPiYdXtH-r2DFiQP0QAAAAAAAAAA", "types": "CQMaBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "p5du1njclvrtK1OKF1VJCw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBbBcEvvhuguaGYCmGWrnWRz1QAAAAACOHLRcEvvhuguaGYCmGWrnWRz1QAAAAACFObNcEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEV9b", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "s9SsAHGXptlxLsodlKXRfA"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV_OYxe-SHgukLEpCkawSk1QWAAAAAABXc-2Yxe-SHgukLEpCkawSk1QWAAAAAABXVusYxe-SHgukLEpCkawSk1QWAAAAAAAAG-K", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "x-dvfE0WP73LPsEYuUxfgw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAAAyxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEPoG3DRiZKlMZ3sh3A8whkKQAAAAAAAAAy8_3LGlNMADWVmY7MNYKbGgAAAAAAAABYfXtbF06M7ZwcaaNlV0uiIgAAAAAAAAAY0n7bnuaG-8sBjMSdabTn_gAAAAAAAAAXTQHHjILJSS1Y0hdQ8MODHQAAAAAAAAAChjAyoRprP-ATzdRzIqim_AAAAAAAAABP", "types": "CQMxBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6RnRZPKOzUqhQJOIMgg3qQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAADrAotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAGJ1xBvehWaFQefKkuHjb2hUwAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJFcHGeTZbDG8jQ9sbtbngcAAAAAAAAAAcs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFIAf9e80wW0ROOv48VcVi-AAAAAAAAAAcGY5WEW77dofWJpcPe0twUgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4pVlUGQpw_Cq0LEtbbly5dAAAAAAAAAAkN1WyTlGFxfHgSyYQ3aeHDQAAAAAAAAAOYSP8Ib_W13QEw_Ivysg7FgAAAAAAAAFyn0UYwZH5py59Xu9gAaxkrwAAAAAAAABAm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl5iN7OCAj-2IgmFqLvCWrTwAAAAAAAAESap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlJdvIaoH8miVW9zaDiDOZJwAAAAAAAADSap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlhW8OwmmxjJYCeXfLTZy__QAAAAAAAAFLap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlw4mT2NPQOW-Mg0N_xZsuzAAAAAAAAADgap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlRlK4jZbFueXylWP1GNjNSQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlL_sAxM5NHsnYQp22GwDx8gAAAAAAAABwap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAycNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAATPOaf2meILyNtXlyuau5zHwAAAAAAAAAKc6zhheBld8wEBO7TlhnPcgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB82g1SAYpsFtnBogFl0v0GAAAAAAAAADJdpQ3bcNFV5Y0XdediaTCQgAAAAAAAAALmmckjE-MysbZhDPP6gNxewAAAAAAAAAydmm7_Hn3SrysHeUffmIe9AAAAAAAAAAfaxxtk6GnkoiqRXb69JxcoAAAAAAAAACge4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJOdkuTNpXjsFc7WV5c_bgKAAAAAAAAAAMjBwquBL06pqJXOt8kphl0gAAAAAAAAAME5ablZjSwaw4LkNasKqxDQAAAAAAAAAFB3TkFubeMsUjXVlcESk9tgAAAAAAAAAMpmiRP16sLzHMk4sQotP67AAAAAAAAAAOqeHIgzzOczGD0wBwOrHP2QAAAAAAAAFJFuWxxcsr3tUR5NeFGer7vwAAAAAAAABnMWMRq4GUysNDjxb07DjPAwAAAAAAAAA3jsLLxIAhtu1IcuCmLP4yNgAAAAAAAAAH4T44kzE9JU_n4pRF5j5FFwAAAAAAAAAYSq4yJYXB5hEMp7oPtTmUiQAAAAAAAAAimSKMuTauUB6AvF_x3SDLhAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAlNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACu9RATOG9Hc01jgL4JokM8owAAAAAAAAAOgY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAFyZ0m5K0hyRADeQkG90vP8AAAAAAAAAAzOQ4Xdczub94PyW-2NBrCFQAAAAAAAAAJn8eXgVc_ymv5C0s_SD4x4AAAAAAAAAACtscFotyki1cui1xuu3ewxgAAAAAAAAAJz7em3gxFGrIrQEp2dvnPNwAAAAAAAAF8bjcUghqxVEyhK0JMryYfBwAAAAAAAAAQ4fSOtc6eDAaA6I0MG40V3wAAAAAAAAAHH1CF2wbVsBq-RIFMCy7HhgAAAAAAAAAS-Gx2C0odQpZHpEyUWgefNQAAAAAAAAAz", "types": "CAOIBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "I8d78PwZV4AkHoqpLI9UEg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAACh0zS1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAmB1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAdK", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GqrLgsdtPQ_MxDCexwuH7g"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVEDYyx-zRWlBHMYS8RkGZ2wAAAAAAAAAEdymPrMwSHJkE00arRNB68AAAAAAAAAAUu_5zCMK3PLNUfmu5e0wjpgAAAAAAAAB2ac8L5UaM7hx6_7ogYUjJpQAAAAAAAAALAt2XjH9VGC3bb_7sv7ixNgAAAAAAAACJw4Cq1cfo2BosL5j6RghC2gAAAAAAAADfqVud9aAxlVfNdghSN8mVawAAAAAAAAARcPknbPYx0jQL0_yL-rDiBQAAAAAAAAAHTJokhObG_7GMDQXtJjQRzgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABNX2GurXP9eWlHwN0fLlalwAAAAAAAAAM5E3RifhwtkkbQvQxmdbzmwAAAAAAAAAGhzLOxaKxWQ8hHeWUK-EOLgAAAAAAAAAIbsyDek069Ex-p_WmJk4qUwAAAAAAAABy8Jw1TVPLmPNxJZ-iu1UbtQAAAAAAAAAE1oTFJJD8oE6SApFeuZctegAAAAAAAAADqGEwlfUWed3z-vswPrK15QAAAAAAAAACeLPEw3jnFkvsJ2aQiz21NAAAAAAAAABfR-jXMS6WanN9UyjIfsACEAAAAAAAAAAE", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5_lr00tLIT63S1bk55QnKA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY5T8Yhyloa65D1snwfHUbjwAAAAAAAAAXvz3TbuBnWyl9Ei5te-E_CAAAAAAAAAAmkQIfOKgH7suSILPob4uOXAAAAAAAAAFc5DLT1-7dtlWsYx9XrPzwBwAAAAAAAADMwum-bHlH6Liqs0d_H9hKSQAAAAAAAAAe9ZmZ3UHgc9rMnxUTE02cRwAAAAAAAAAEELZFv7-_1yfN7X3zTjyYpQAAAAAAAAAfl_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAADUM3h48-oBMi00mRAqhB4IAAAAAAAAAAjMj1fVO3bykQ8piLrLc5IFQAAAAAAAAAJp3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAOKE634wiWh6F21tPpXr0Zz3mgAAAAAAEP0K6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALqAi6tVKI4mSYDEJ-ABAIpYXcgAAAAAALp376tVKI4mSYDEJ-ABAIpYXcgAAAAAAL2nC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL2aH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIsub6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIsSN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIdrE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMSBQIDCgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0uIdPWEH2ddbQQgKgSraCQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcpImz5k14PsCcDvFyUC1kmlV3QAAAAABantFz5k14PsCcDvFyUC1kmlV3QAAAAABGL09z5k14PsCcDvFyUC1kmlV3QAAAAABFRAfz5k14PsCcDvFyUC1kmlV3QAAAAABFas8", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "VNkLTUfwicmpAGbJuAZjxw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcQxTPNhFsgl-8e8i61Q7phQAAAAAAAAAnwnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAEVDHcIH7TAzjEZelOOPY5DwAAAAAAAAAIM9t3sX7Z2Nj1mpARCDGcawAAAAAAAAAIwcw67NCnOLTYutynHBvqowAAAAAAAAA90vYUuo04uCIksGcEjg9Q4AAAAAAAAAACiFkuHlkQPsBsMnUTpjsUKgAAAAAAAAAF0Cdt9wyWxnG2B-xGXMO6owAAAAAAAABpyYF5YWbjTLokor9oKz_A5AAAAAAAAAAN1YwmAWjsK6oD1Qs8m4ZuaQAAAAAAAAAW3X9PCd1tVPhzrMiwigfodgAAAAAAAAAA8DDAjVJl721y2vxKHGSBegAAAAAA5zKzvQ7EacG6CR4rzcFaNFEsTQAAAAAAAQGN", "types": "CAMQBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Ucff7l5T5KqYVeIVdViRNQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAKGFseY0uix2hxT0Di8k7-3AAAAAAAAAATslf6t7FJIQoDjMJN42BVyAAAAAAAAAABFg2KiEq3-QS_hoWS2OekUAAAAAAAAAADWt0sf_JgSqOTKaBcf1zgawAAAAAAAAB7FzJF8qZ49M3tzNcHAYKOpwAAAAAAAAAHcx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAAjYKoBBl0G_e9oE7cFaZfzDAAAAAAAAAANrGDifO1Mqf9Ue5AsCRkS-AAAAAAAAAAN2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdQShimh0tQga8QazMW6_qBAAAAAAAAAAB_fOhPrA482cdtwnWghjHQQAAAAAAAAAM8hquOE5UjuqbQKed-OMfiwAAAAAAAAARWNHUiu4BFqRVmqF_mtCsFQAAAAAAAAAD3r-tlbWKH7Bh4O96M6j3bgAAAAAAAAAilJfPltGODmJePtyLCuHROAAAAAAAAAAkN2l90EY7421Zg1g-1T_v1AAAAAAAAAAE-DPNVL1TcvLrgQ4V1LL_zwAAAAAAAAH4Ojpv1HELhgp1kupkcCnqDQAAAAAAAABLzoewjR5W8LM0EekPXrURMgAAAAAAAABiP5S8gbg14vynLAZMWG2Y6gAAAAAAAABL", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SFRgBQBPcaWSZYoeDr05dA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB81EOz5k14PsCcDvFyUC1kmlV3QAAAAAB81sFz5k14PsCcDvFyUC1kmlV3QAAAAABHpn0z5k14PsCcDvFyUC1kmlV3QAAAAABHpp5z5k14PsCcDvFyUC1kmlV3QAAAAABHeJQz5k14PsCcDvFyUC1kmlV3QAAAAABHdPuz5k14PsCcDvFyUC1kmlV3QAAAAABHdDH", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "swB6E3sA-frE5cWwskY4GQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAACz-CA2HwYxn7uXuJvRLWceDgAAAAAAAAACo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAAAKzk_PAPIluouMAlyxqI2lSwAAAAAAAAALSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAAB7YY6rmsokuP0BKno7mbtScAAAAAAAAAAF3jzoaxecTMpMeDCGDwy-RgAAAAAAAAAE", "types": "CQNGBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "pLzEWCPdO8G1Nsr1cgNccw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbQ5Yxe-SHgukLEpCkawSk1QWAAAAAAAFznNYxe-SHgukLEpCkawSk1QWAAAAAAAFzx5Yxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHafM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHriM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHraA", "types": "CwMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5Rf_nsQwo3o7CwVKTLsWdw"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAANMDtL9Bd3XIiGWasJdN8trI5tgAAAAAANMKHL9Bd3XIiGWasJdN8trI5tgAAAAAALHvYL9Bd3XIiGWasJdN8trI5tgAAAAAALJ7nL9Bd3XIiGWasJdN8trI5tgAAAAAALHy-L9Bd3XIiGWasJdN8trI5tgAAAAAANOXNL9Bd3XIiGWasJdN8trI5tgAAAAAAIgM5L9Bd3XIiGWasJdN8trI5tgAAAAAADaKlL9Bd3XIiGWasJdN8trI5tgAAAAAADiIz", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EG1mq4-EF1ukDk7Iz2MpyQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQJvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACeySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAYh-mcFcSefWaXpPLGLAmk8gAAAAAAAADYzXY2fMPD2q8JxxSeQ4an4AAAAAAAAADbsSDVmLRXn5j8cMEHakX25QAAAAAAAAAMbYR0b7-vTQ0RKJD6ns3ClQAAAAAAAAAG5WRkp3UGiY89oONYWWfHqAAAAAAAAAAtidAHvTfpCa_Lill3CvLIKwAAAAAAAABUtknRVtdrp8TkRV3X6AJ-KgAAAAAAAAGx2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFaD5tQt3PTji3IEVewu1DRAAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFw_rNNsza6yNRFkKCHuRo-gAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFlJPXvfs9zQkNSoaonclVhwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFHHPnc3y4NDPeB1XAopRksQAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_hssi35Rz-FIdn8Nd5FAnowAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGQFD5TB8FwgEkaTgViNnnC1gAAAAAAAABcWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF7DLC5wtcLGlUJXp1Z_gmrwAAAAAAAAA4zfrc9GArcEMXOSddmdDIewAAAAAAAACwnnUdNj2uBRgH8hkAFjfx5gAAAAAAAABKK4Wl3Qo0Q4iNLE1_roC0rgAAAAAAAAAgq44xf6HFj4nbephvvOr6vAAAAAAAAAA8FedFnYQW8bHf16nVrC3eNgAAAAAAAAGowiT2hBI_xzd4wxnb9xk4TAAAAAAAAAAFIlG1oGvMr2iYvhrqxgQozwAAAAAAAAAT0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFHHPnc3y4NDPeB1XAopRksQAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABG0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFqMWTR3sRXDI_KgvcJVsGRwAAAAAAAAAMxRkFHepRLQFnp0xjaPT5XgAAAAAAAAAKkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABG0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFyvAi05xS0gDZaCLbbx3tnAAAAAAAAAAkjFdJcMgaSFpzbEGK5Q4RcQAAAAAAAADlkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFKajmK1kGGiUK0_xnKycBYwAAAAAAAAAUub0yrV1DAC67s4TYqKh50AAAAAAAAAAIbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABA-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAyj28kOyi7SuaCDi2YxjsqIQAAAAAAAAAFD-1h8rWAA4g1SDoGOMQIKAAAAAAAAAAEOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATZcW1B2vnJcG_EoD488XjJQAAAAAAAAAKAbryWQXPWxYtuiP4bBIegwAAAAAAAAArEmratRDxeKcrsZYT5P-e9gAAAAAAAAAQOmzVUgwY22EPoqShuZpT1wAAAAAAAAABTbI11ipOuRPV1oq3v1R7ugAAAAAAAAIP_0ASABFzCfxuv_YallgR9QAAAAAAAABvGkQZa3IswBElyiTMt5MGEQAAAAAAAAAee9ofmivxAKQIQ6LGx5Xj3QAAAAAAAAAft50PCqH5T4d6gM3drpxvmwAAAAAAAABD3He9Loj7AKn7Offsd35QVwAAAAAAAADcB-Oe_OuJ2Xvt27AtRop-VwAAAAAAAAAM1CcuhJezHq64cCQVie7b_wAAAAAAAAA9y5QhQTP0rb94lUCFmD8btwAAAAAAAAAL9AWYxiUgpg8BGREZwy8hfAAAAAAAAACvvceH6TiSzXN2gyvdQtYIIAAAAAAAAAAK4R-UJEw8a2NxouGShvWOwAAAAAAAAAAHpbU3Qdf_dnKtA7qk05wJcwAAAAAAAABu2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFaD5tQt3PTji3IEVewu1DRAAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFw_rNNsza6yNRFkKCHuRo-gAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFlJPXvfs9zQkNSoaonclVhwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAE2kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_hssi35Rz-FIdn8Nd5FAnowAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABA-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAyj28kOyi7SuaCDi2YxjsqIQAAAAAAAAAFD-1h8rWAA4g1SDoGOMQIKAAAAAAAAAAEOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT8PmjGm6M7d6JhKTXv_IxqQAAAAAAAAAKc6zhheBld8wEBO7TlhnPcgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB6ZyDu8REFKLpyM-Kdz5OhAAAAAAAAADW3TPttQJEnBLdbxWIzlHkewAAAAAAAAALiuglTU1ZiCYQ-BlYCftcbAAAAAAAAABAy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJQ-u30OVC8ZOSspmVuVd8UgAAAAAAAAAMeMHmhq4sdClgEJFzlDVUfAAAAAAAAAAM0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFMzoxeJdfOW5Uia5TsooNmQAAAAAAAAAMpmiRP16sLzHMk4sQotP67AAAAAAAAAAOumqi48lo3pIGNbe4z8rhPwAAAAAAAAFXC0XtSv7dm7gUvHZSURjO4gAAAAAAAABnPlO3UlD8x552lb1CM2CULwAAAAAAAAA2I-mlHnTAwjY_0P67Hmx_TwAAAAAAAAAHEQUK1Q6ZFWK4cthaLpBqMwAAAAAAAAAn0xjqN2eHOKsjzvKPeuH6xQAAAAAAAAAI94c0iuzzyiq2admvir0-DQAAAAAAAAA9Rq1eFN8SiXxM79ZsydqqqAAAAAAAAAArEYzjRFYzs1PS5SqhLPJ7TQAAAAAAAAAF0Cdt9wyWxnG2B-xGXMO6owAAAAAAAABpyYF5YWbjTLokor9oKz_A5AAAAAAAAAANDYw6-LyNoVsQdM43hcJCegAAAAAAAAAI3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAA52Uf8NlMClggx8jaziUTJXlmWAAAAAAAAQEs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAPwBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jxyWk-ftBO8W2R9Uu6H3NA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZxyf5INnJibBb8rT_yMcsAAAAAAAAAAEe6HlflPyKAlNlF7JPJCNJQAAAAAAAAFLEe5ZDKMHiVCtP6qAhF9CEQAAAAAAAAEqM0BdGcfCFDkj9hzrRHcPqQAAAAAAAAAGSxO-0PVs-XzTJlP5O_VPJAAAAAAAAABEEdzyCQG3P71X3W8_ToHzcQAAAAAAAAB2NG3FN99VSnZbKGXoOWiZmAAAAAAAAADlo-fnJ6f2hlb0oiKytcljSgAAAAAAAACXzr7T9Lp-M7VvlAtjs4B4fwAAAAAAAADS3WiD8CvP3HQqqrwn5L6bcAAAAAAAAAHy06XZLHGlJyYuIL53b8SbBQAAAAAAAAAkZuSiv65WwcAu_jfpG6ANPQAAAAAAAAAF9ckyAkz0ynjkybc0aFl1wgAAAAAAAAAZkZ21XW5-NvO1hiIXWDAOXAAAAAAAAAB7Ff0m6vVgvBwc3vbqfludlAAAAAAAAAAR0xjqN2eHOKsjzvKPeuH6xQAAAAAAAAAI94c0iuzzyiq2admvir0-DQAAAAAAAAA9z_ZeRXCxHeNXTu6DB2OR1gAAAAAAAAACiFkuHlkQPsBsMnUTpjsUKgAAAAAAAAAF0Cdt9wyWxnG2B-xGXMO6owAAAAAAAABpyYF5YWbjTLokor9oKz_A5AAAAAAAAAANDYw6-LyNoVsQdM43hcJCegAAAAAAAAAI3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAA52Uf8NlMClggx8jaziUTJXlmWAAAAAAAAQEs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMfBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SdK7326n2wD9cYNG5ZgF7g"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA-V5bsTGLCNH21piOrMPoln5uBQAAAAAAciyYsTGLCNH21piOrMPoln5uBQAAAAAAciUasTGLCNH21piOrMPoln5uBQAAAAAAeEuKsTGLCNH21piOrMPoln5uBQAAAAAAeMc7sTGLCNH21piOrMPoln5uBQAAAAAAdueA", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WNtSSbesKL5OT0QAkE8JWA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZxyf5INnJibBb8rT_yMcsAAAAAAAAAAEe6HlflPyKAlNlF7JPJCNJQAAAAAAAAFLEe5ZDKMHiVCtP6qAhF9CEQAAAAAAAAEqM0BdGcfCFDkj9hzrRHcPqQAAAAAAAAAGSxO-0PVs-XzTJlP5O_VPJAAAAAAAAABEEdzyCQG3P71X3W8_ToHzcQAAAAAAAAB2NG3FN99VSnZbKGXoOWiZmAAAAAAAAADlo-fnJ6f2hlb0oiKytcljSgAAAAAAAACXzr7T9Lp-M7VvlAtjs4B4fwAAAAAAAADS3WiD8CvP3HQqqrwn5L6bcAAAAAAAAAHy06XZLHGlJyYuIL53b8SbBQAAAAAAAAAkZuSiv65WwcAu_jfpG6ANPQAAAAAAAAAF9ckyAkz0ynjkybc0aFl1wgAAAAAAAAAZkZ21XW5-NvO1hiIXWDAOXAAAAAAAAAAiF7ru3Zs91MFNETqlg3mNRQAAAAAAAAAEHOno65fF9MNk7Hxtw-uPRAAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "tx6qqbLHLG2C1liDvdvH2Q"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAABcQrw_bSROFZCKPRirqN5crwAAAAAAAAAEmNKQ_cGBX-X-PxTw057WHwAAAAAAAAAoPe3ctc9W4J1u_ZCOerqNzAAAAAAAAACGnZmkelHuL2rN_AY8H-OMEgAAAAAAAAAFgmjUzsxRLEujWJFPXkncMgAAAAAAAACLzw0wKeXSScV9zb0GbnSg3gAAAAAAAAD4xojp5VBQ5xwqQiCbnXCnEQAAAAAAAABJUzpT8KmlTneCrZW0Xa3m6AAAAAAAAABMM9eMrfE_Teezp8eocQnu9gAAAAAAAAA4QLdVHMdVsV-29W9Zq-QZAwAAAAAAAAA00IgBJXkhHjjN4lbBooaULQAAAAAAAAACQLdVHMdVsV-29W9Zq-QZAwAAAAAAAAA00IgBJXkhHjjN4lbBooaULQAAAAAAAAACQLdVHMdVsV-29W9Zq-QZAwAAAAAAAAA00IgBJXkhHjjN4lbBooaULQAAAAAAAAACQLdVHMdVsV-29W9Zq-QZAwAAAAAAAAA00IgBJXkhHjjN4lbBooaULQAAAAAAAAACQLdVHMdVsV-29W9Zq-QZAwAAAAAAAAA00IgBJXkhHjjN4lbBooaULQAAAAAAAAACQLdVHMdVsV-29W9Zq-QZAwAAAAAAAAA00IgBJXkhHjjN4lbBooaULQAAAAAAAAACQLdVHMdVsV-29W9Zq-QZAwAAAAAAAAA00IgBJXkhHjjN4lbBooaULQAAAAAAAAACQLdVHMdVsV-29W9Zq-QZAwAAAAAAAAA00IgBJXkhHjjN4lbBooaULQAAAAAAAAACQLdVHMdVsV-29W9Zq-QZAwAAAAAAAACV68WyKd9kixq8a0DuxdFRfgAAAAAAAAARaPSsQ8x5Ub2iNdzhtk5QFAAAAAAAAABtN2N5ycBuBAS4G2YTZr-qWgAAAAAAAAAWsImjAGxEOCfJp0uCTUesZwAAAAAAAAAHWg3NMwFQjkpTmdqB4Do_BAAAAAAAAAAscnr9SR5FRmT_ijDWUYwkxAAAAAAAAAA1VmbQ13l3vaIwmAJ2MX2yEwAAAAAAAAApTBsi_uo6Ja6CX6zuoV3IjgAAAAAAAABTVN1DUTj32XK1HLzEKrvMqwAAAAAAAAAIVmbQ13l3vaIwmAJ2MX2yEwAAAAAAAAApTBsi_uo6Ja6CX6zuoV3IjgAAAAAAAABTVN1DUTj32XK1HLzEKrvMqwAAAAAAAAAI", "types": "CQMxBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GBxSUMfC5FVUyuehR7751w"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmsRXT4fd_WKeR1cE-hlLelCQAAAAAACgnAl", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mDMvsWlBM76O6KXIRi4tEA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB8_Hwz5k14PsCcDvFyUC1kmlV3QAAAAAB8_Xkz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiQ6z5k14PsCcDvFyUC1kmlV3QAAAAABHpn0z5k14PsCcDvFyUC1kmlV3QAAAAABHpp5z5k14PsCcDvFyUC1kmlV3QAAAAABHeJQz5k14PsCcDvFyUC1kmlV3QAAAAABHdQDz5k14PsCcDvFyUC1kmlV3QAAAAABHeHZz5k14PsCcDvFyUC1kmlV3QAAAAABFwLgz5k14PsCcDvFyUC1kmlV3QAAAAABGnao", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jLpClDgk6WLmhMeqd0zthQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIZy27xNCwe4jKCqsA2srxVwAAAAAAAAAoLZeO9S9IXnalwT9Nl3ihfQAAAAAAAAASxWwq3BVQzbzp00-HYFOW_wAAAAAAAAB094QsDIL7bUk7Oxas7lNqGAAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJSYSSbioufiMK4TqEn24uLgAAAAAAAAAdXL_fwLkYkxkYcfgosK-fdQAAAAAAAAAQO_mHTPntGTw_EnF-rkI8XgAAAAAAAAAWiiLZnxbVRTQPtvWA0miuyAAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdfJIr5vQAn81_ytZBhz6xpAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAABduSa7rLKjwnZa9hewarfUgAAAAAAAAAIHMo9CJkBJDT98ldAVMcaFwAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAn8yw5xAkzQPNYncv2nxNJ2QAAAAAAAAAninLD7FTDiZ9QX8bC0I9L_QAAAAAAAABzaiLfZKl2jCog6I24zCqBbQAAAAAAAAAFe41sJjec4rf_ExOiWJDJ7wAAAAAAAAAN5aCosL5sFCAbDkRqY-Vk6QAAAAAAAAAN4GtqB27Vl3drRtp5csOpewAAAAAAAACIpkBGqhcKBroYcUtGIrc7fQAAAAAAAAAFBY2rTx9iNIHoPLSaIk3jZQAAAAAAAAAbAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8qZSkKN3zNxr0HYuO2pqe5hQAAAAAAbXQJ", "types": "CAM3BQED"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vbVDNryVwMzLbezYWCSjlA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAAB1Rt6zauIajYCS35l66QRKCQAAAAAAAAAqE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFVIpKyJ4wSn-DKbqb5c24RwAAAAAAAAAco-YCkVIb1YKeUkrNTWvXyAAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4HIIjrBY7gA03CnEjMAD7QgAAAAAAAAAMBY5YV5xXx7ZBlABDbJ23mAAAAAAAAAAMcNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAAT5P9SwSLlS7AjqRDPaj6g-wAAAAAAAAAHyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADv9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABDHfFlM3axnhO28EteQn-2WAAAAAAAAABJ5utt2dQ8HKrTepHdNpprxQAAAAAAAAFnQ5CO-RLiPN1LuvIBRrr64wAAAAAAAAAGA9vz2bP9GXPEMLJDLuO1HAAAAAAAAABo", "types": "CANBBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2AMdyfvFgq0vUOmYRakbhg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN4uU", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WPDGxGUEKnBo9VYkMHsgtA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf_KcEvvhuguaGYCmGWrnWRz1QAAAAACEUn4", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jCt-dkxGCSLjvvb8Ifv7cw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAACLHmuH5pCGXma5ToZjJwiZHAAAAAAAAAD9rG4zWNbzF43FlUaeZiWkVQAAAAAAAAC5M43VZw3emUYxEGolzsc4cQAAAAAAAAAE0zuUj5fP_pGoDJej-vMgfgAAAAAAAAAdZBffCB8CVAEJ8Ac3Zx76PQAAAAAAAAAF", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DBYjR7puV1Ugyd5JtM9XrA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHsJJgtQ4kMk_MBWrPUAFqVnYywAAAAADHsO9gtQ4kMk_MBWrPUAFqVnYywAAAAADIfNLgtQ4kMk_MBWrPUAFqVnYywAAAAABs1aTgtQ4kMk_MBWrPUAFqVnYywAAAAABs1tXgtQ4kMk_MBWrPUAFqVnYywAAAAABrKAK", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "r9jSheisZ_8k55soN-Igeg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFGWjujT1s7sRuQIwkyxwy1QAAAAAAAAAEtcc3nGvWGKhavpq5QMPrpwAAAAAAAAAQHrXUpqEQk4VDnpaZKgdbiAAAAAAAAAA9U2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-_XkMI8xGR94JL4lQtb9x_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAAthtvgcgAW24Rn4q34GnPYLQAAAAAAAAAFQNZzHGnqskrqlEo3XdkqqwAAAAAAAAATlH7EdNhUWMEu-Xw0OnFCsgAAAAAAAAA6PT8Qhq3pE7S7UQ5pBb6dmAAAAAAAAAAOpKLBb0_sPdt_IxvNqtQh6AAAAAAAAAACD8h50WvRJdBg-tXDetFXDwAAAAAAAAAQLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAABBoz9GJ_qlf4pBIKy8mHtWYAAAAAAAAACLLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAABBoz9GJ_qlf4pBIKy8mHtWYAAAAAAAAACLLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAACgQ74ZSoBrLiINArpQeOleFAAAAAAAAAAaLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAABBoz9GJ_qlf4pBIKy8mHtWYAAAAAAAAACLbUpZ48eu6eiEjFsuaTvsNgAAAAAAAAASR8Unr-8xOl9YfaVb1B0yFAAAAAAAAACrO36XiLG7HB6AoWRegcVfRAAAAAAAAABJTTEheTJAVp7tNmEXHeTllwAAAAAAAABw", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JXpes-A2QmTu0qjw6MA3nA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT--Z3CKaS4aU08RhYA19y5ITQAAAAADCLGpZ3CKaS4aU08RhYA19y5ITQAAAAAB0Hr7Z3CKaS4aU08RhYA19y5ITQAAAAABz7D8Z3CKaS4aU08RhYA19y5ITQAAAAABz7ZTZ3CKaS4aU08RhYA19y5ITQAAAAAB0J6lZ3CKaS4aU08RhYA19y5ITQAAAAABz-1gZ3CKaS4aU08RhYA19y5ITQAAAAAB0J8lZ3CKaS4aU08RhYA19y5ITQAAAAABz_D3Z3CKaS4aU08RhYA19y5ITQAAAAAB0J-lZ3CKaS4aU08RhYA19y5ITQAAAAABz_LSZ3CKaS4aU08RhYA19y5ITQAAAAAB0J2gZ3CKaS4aU08RhYA19y5ITQAAAAABz943Z3CKaS4aU08RhYA19y5ITQAAAAAB0J4lZ3CKaS4aU08RhYA19y5ITQAAAAABz-JKZ3CKaS4aU08RhYA19y5ITQAAAAABvhyiZ3CKaS4aU08RhYA19y5ITQAAAAABvkUkZ3CKaS4aU08RhYA19y5ITQAAAAABvjkRZ3CKaS4aU08RhYA19y5ITQAAAAABum26Z3CKaS4aU08RhYA19y5ITQAAAAABtO5AZ3CKaS4aU08RhYA19y5ITQAAAAABtO2AZ3CKaS4aU08RhYA19y5ITQAAAAABtP0n", "types": "IQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ETN5AO1XCrHTaHv-3EII-w"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlqJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCHp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTga6tVKI4mSYDEJ-ABAIpYXcgAAAAAApawn", "types": "FAMMBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lov5KD2E45an5PQzkVS5Cw"}} +{"Stacktrace": {"frame": {"ids": "c6lwtZBG2BzNKGtSyzLrTAAAAAAABCWpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGc6lwtZBG2BzNKGtSyzLrTAAAAAAABBZWc6lwtZBG2BzNKGtSyzLrTAAAAAAABWVUam-Z0RfUVY0oYK5VXRDk9wAAAAAABeu4am-Z0RfUVY0oYK5VXRDk9wAAAAAABeopam-Z0RfUVY0oYK5VXRDk9wAAAAAABeePc6lwtZBG2BzNKGtSyzLrTAAAAAAACN4sc6lwtZBG2BzNKGtSyzLrTAAAAAAACNQK1gXEZRnAPQTspGOB36fnyQAAAAAAAYdT1gXEZRnAPQTspGOB36fnyQAAAAAAAXuG1gXEZRnAPQTspGOB36fnyQAAAAAAAWc9UJmIMEc6K8gJ39NHYaD0WwAAAAAAB_z3UJmIMEc6K8gJ39NHYaD0WwAAAAAACNIDUJmIMEc6K8gJ39NHYaD0WwAAAAAACOMoUJmIMEc6K8gJ39NHYaD0WwAAAAAAB-E7UJmIMEc6K8gJ39NHYaD0WwAAAAAACXKsUJmIMEc6K8gJ39NHYaD0WwAAAAAACUYb", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lfuBODC7k6gIc119AoTp3w"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyn-Z3CKaS4aU08RhYA19y5ITQAAAAABz0EBZ3CKaS4aU08RhYA19y5ITQAAAAAB0K_J", "types": "HQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "BFJWErFCHO32D2yZyoEHgw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mlNXT4fd_WKeR1cE-hlLelCQAAAAAAC-nbQXT4fd_WKeR1cE-hlLelCQAAAAAACmJlTXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUDf", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5cq_GlWOgDPPgWZmR1FdWQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEPoG3DRiZKlMZ3sh3A8whkKQAAAAAAAAAZhbRa_Mv_nNX73QDH-O5j0QAAAAAAAABbLm-i7mHlXTzn3dRUwPqsywAAAAAAAAAE", "types": "CQMuBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "A1WcF985smqa63VO_XGPmA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAAAtt2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAHIG1OnoGXN6zXJZoQUHRmxAwAAAAAAAAAxYEThj3UEuGl2wDiJSq9vSAAAAAAAAADmjckGVFRAvWURR3kz1QpfwQAAAAAAAABZQUM3v4ew-jMVuKkpISsPEAAAAAAAAAGi6iNgA9fR_bPjg3gsO7FxQgAAAAAAAADeWKOnV4dhtUKFY7wtM7-RyAAAAAAAAABRH2QTzkKMf4VE2_HyfX9GywAAAAAAAAAOUX0maaM_jFdAmFMbhLpaSgAAAAAAAAANVydXcSmOqICsVxLpiPFyCAAAAAAAAAAhxWXbvqcob2cyNB-_TJKbYQAAAAAAAABZ2RFqiy_TIF9Ivmg849R6KQAAAAAAAABA9sYnFbigFrf_-fozodwm9QAAAAAAAAFsCjJC7YgrLROQv5HQSsKhfAAAAAAAAAFolBhPzNfMytcCVU5EjR-p6wAAAAAAAAAf4-UkdR6I5UCEqPmnkXWOJAAAAAAAAABNYPLEzZeIG2eS21HPGg9UDwAAAAAAAAB0", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "h2Ibe6HNlmTaxFcHlQkktg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN5Cb", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "VXjiFmSJ0HfgABPfuOQxjw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlxR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMB-t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUktl", "types": "FAMLBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "H1nlXMxFq4leVZnwK9jV2A"}} +{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimtb6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOK46tVKI4mSYDEJ-ABAIpYXcgAAAAAAlcA76tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbdH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlWJ36tVKI4mSYDEJ-ABAIpYXcgAAAAAAlsoG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlrpu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlqKz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlwjf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlN5a6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlNsK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlOPs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMub6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMqa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMWu6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgDv6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgCV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwA8J6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOBI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN1t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjNJshpS1QtdrBQjGg-LCbfqeSAAAAAAAAF9MSxgb26oKQwlt07if9woPTQAAAAAAACORSxgb26oKQwlt07if9woPTQAAAAAAAB5cSxgb26oKQwlt07if9woPTQAAAAAAABLvhpS1QtdrBQjGg-LCbfqeSAAAAAAAAFs7hpS1QtdrBQjGg-LCbfqeSAAAAAAAACyjhpS1QtdrBQjGg-LCbfqeSAAAAAAAAB3-", "types": "JwQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RKK2RKLW_Ei_7Dgg-kl3DA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7r0XT4fd_WKeR1cE-hlLelCQAAAAAAC-0NJXT4fd_WKeR1cE-hlLelCQAAAAAACkSIeXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdG6", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ai0eTg1yYVEpKADKsZaoRw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-uTvXT4fd_WKeR1cE-hlLelCQAAAAAAC-xG9XT4fd_WKeR1cE-hlLelCQAAAAAACp71EXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCM6XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNKX", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "VmoiM_e5uVFhx6gPipsfEg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAESme6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyP3", "types": "AQMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3YKLiS5v9esExQHN_lUyDw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf6WFIySpj11tQgowgDo--tgAAAAAAAAAgCA2Pa7BoL3e78-tkZ7NnwQAAAAAAAAABFyp83xXfFJSe50n0K0hjNAAAAAAAAAAZYZ2-HZ9CohIHOnrl9NrNTAAAAAAAAAAFk8MMKFpn5HdHbwhxcq_LHwAAAAAAAAETbt6qqHDcXiO54zHx3aAldQAAAAAAAADgoY4jcgq6jsNfD8MfXsTQfAAAAAAAAAAbUZ2NFNzh7BT3C3hRjMF2fAAAAAAAAAAMZB4dgn6zlvSqI5ZscpV7zgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1sF38PDfU0kIoG-7bSfYumwAAAAAAAAAIrhOD3KcAMFNOs9uaV69dxAAAAAAAAAAXagEVuhYnJj97aY8MKWJPtAAAAAAAAAAFToc_6mTE7mzZcU4cdIY_aQAAAAAAAAAscKy4091vDpDkV6BGrtBK2QAAAAAAAAKJG2Gr0Endt8yd9TWwB25Y2AAAAAAAAAADB6AxGKo-ySgqhq6sru3ZYwAAAAAAAAAOZ5Gn_t_x_RsytJzOCAZhEQAAAAAAAAAVoKdk1KWFxihFv8webGVzvwAAAAAAAAA4oKdk1KWFxihFv8webGVzvwAAAAAAAAA4oKdk1KWFxihFv8webGVzvwAAAAAAAAA4oKdk1KWFxihFv8webGVzvwAAAAAAAAA4oKdk1KWFxihFv8webGVzvwAAAAAAAAA4oKdk1KWFxihFv8webGVzvwAAAAAAAAA4oKdk1KWFxihFv8webGVzvwAAAAAAAAAZE-QSo1XdHeCvAI8JR1eihwAAAAAAAAAA", "types": "CQMeBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gjBgpr41DYkilzGufiTHQw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAAB-5iAtVIILui-LgFNzk7nI4QAAAAAAAAAFTlb-NMKl40FjLIQMDGJfBQAAAAAAAAAXxme1OLUOxM6S5mWcBl9N_gAAAAAAAAAC8EydHzqUyrjotjG1DR1HjgAAAAAAAAADx7dNtL9l6yQnqIhb2iRkJQAAAAAAAABV85xU6UdOBVE-6wKT-DYa3QAAAAAAAAAcKlMLGpkm1pBrBLT79cviPAAAAAAAAAABzVZBdh_gmAiL5X6tN_0jKgAAAAAAAAAEWBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAABMQNDqKDPWY6nq0qvBxhyKdwAAAAAAAAAoapg5i-nxkoOQjMlxB9g-swAAAAAAAAAFqYA0yXrjfQUiViGsCwfP0gAAAAAAAAAA", "types": "CQNOBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YyVV1kIE9meXXksdP2BMpA"}} +{"Stacktrace": {"frame": {"ids": "LhSmdLZs37wH6EMWPlegEQAAAAAABDC1", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "w8uO5W0wiJCpZplxEC1JFg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfZrsFKuVxhHWhub-XEUbfgQAAAAAAAAAeUu5glQJyFgpEjTQ_UpnTpgAAAAAAAAAB4XL-_3HqKL4a-N25S_4rwwAAAAAAAAAqY_uBeAIr8RJYVxEQrPIP5gAAAAAAAAAECRotmmSr93EhxDv-kzDy3AAAAAAAAAAE_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABoaAqnvBf39hEMknB1ptAAgAAAAAAAAALVZ92wJHz4QeIc3nyf1htQgAAAAAAAAAe3APbfJs5SvbH_F9r5lo_3wAAAAAAAAAFfnFonGQxpm_e6wtqJ2HwRwAAAAAAAAAEYM_gl0OeNbTAtY8GRC8UVgAAAAAAAACbTdvyEkBALxwDoycOnD-RjgAAAAAAAAABQ0ZhGVGRXyXDgoFbVxRbBAAAAAAAAAAECSQIcg5qzfHUGZiT4d9R6wAAAAAAAAAGJ2FDONFObDGDV1DAwWRKnwAAAAAAAAAPm4AoWu9JzAMUZrCsBO9JagAAAAAAAAAEP9BGxoNfJ5xFs47cHe23_gAAAAAAAABK8d37I3z4luvj6nh9MTu4AAAAAAAAAAAgG99T3qcZC8_AxTO5xN8aUwAAAAAAAAANw9w8XUGzqm4xr4E1qM-rhQAAAAAAAAAgwoaSXtApD-PrSWDZ_aE3VwAAAAAAAAAA", "types": "CQMZBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KkcMbd2bAR3JzWud6Q6xvg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAi46VYxe-SHgukLEpCkawSk1QWAAAAAAAi5BcYxe-SHgukLEpCkawSk1QWAAAAAAAi2DIYxe-SHgukLEpCkawSk1QWAAAAAAAiygNYxe-SHgukLEpCkawSk1QWAAAAAAAapsiYxe-SHgukLEpCkawSk1QWAAAAAAAi4LQYxe-SHgukLEpCkawSk1QWAAAAAAAapynYxe-SHgukLEpCkawSk1QWAAAAAAAbIkVYxe-SHgukLEpCkawSk1QWAAAAAAAbORuYxe-SHgukLEpCkawSk1QWAAAAAAAa4MTYxe-SHgukLEpCkawSk1QWAAAAAAAFBBpYxe-SHgukLEpCkawSk1QWAAAAAAAEsIBYxe-SHgukLEpCkawSk1QWAAAAAAAEr1nYxe-SHgukLEpCkawSk1QWAAAAAAAEqv7Yxe-SHgukLEpCkawSk1QWAAAAAAAEvVXYxe-SHgukLEpCkawSk1QWAAAAAAAEv1j", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ugIz67Ev4SbsNzwiqw6egQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsgobx9jqjuemtiUm8j-_s73zQAAAAAATTx9bx9jqjuemtiUm8j-_s73zQAAAAAAQE2Pbx9jqjuemtiUm8j-_s73zQAAAAAAQDPXbx9jqjuemtiUm8j-_s73zQAAAAAAlA2vbx9jqjuemtiUm8j-_s73zQAAAAAAlAxkbx9jqjuemtiUm8j-_s73zQAAAAAAQE_Kbx9jqjuemtiUm8j-_s73zQAAAAAAnqoybx9jqjuemtiUm8j-_s73zQAAAAAAnquObx9jqjuemtiUm8j-_s73zQAAAAAASVt_bx9jqjuemtiUm8j-_s73zQAAAAAASVX7bx9jqjuemtiUm8j-_s73zQAAAAAAkJlobx9jqjuemtiUm8j-_s73zQAAAAAAlKBmbx9jqjuemtiUm8j-_s73zQAAAAAAlGffbx9jqjuemtiUm8j-_s73zQAAAAAAZVQSbx9jqjuemtiUm8j-_s73zQAAAAAAlIpwbx9jqjuemtiUm8j-_s73zQAAAAAATYRDbx9jqjuemtiUm8j-_s73zQAAAAAASTuvbx9jqjuemtiUm8j-_s73zQAAAAAAWU1w", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "M1SyyMAcAe64T6looz5s7g"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAAGSNOwpliUmPE7K5OCtB0_uiwAAAAAAAAANnH2PRDy3afrpHJb0PPWy4QAAAAAAAAA568Kd2F2G5cbeqk2uYg-UgAAAAAAAAAAHy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGb2ckm-0wQN1Adu_SQOHiPwAAAAAAAAAfuCrYcJJKClqXMP74KTJEhQAAAAAAAAAfW0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAEKhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAAC7R71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAACe6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC80G6zvzFPytbRyfwuXWQcAAAAAAAAAAB", "types": "CAPLBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "c9qfkzvPcWTWta5w6I_uSQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEMf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD5P6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAwsz6tVKI4mSYDEJ-ABAIpYXcgAAAAAACuEk", "types": "CQMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LuHTRqFhZGNXFSNILVt_Jg"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9ALUz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ao8z5k14PsCcDvFyUC1kmlV3QAAAAABKEElz5k14PsCcDvFyUC1kmlV3QAAAAABHmTSz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN9jw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBiZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN9Em6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFUvu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAK6fD", "types": "CQMLBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zQ1nyOCbOtedL7gx4fO7Ig"}} +{"Stacktrace": {"frame": {"ids": "AAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "AQU"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "75xCheR2y9ewDRA_rLYz5w"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAi46VYxe-SHgukLEpCkawSk1QWAAAAAAAi5BcYxe-SHgukLEpCkawSk1QWAAAAAAAi2DIYxe-SHgukLEpCkawSk1QWAAAAAAAiygNYxe-SHgukLEpCkawSk1QWAAAAAAAapsiYxe-SHgukLEpCkawSk1QWAAAAAAAi4LQYxe-SHgukLEpCkawSk1QWAAAAAAAapynYxe-SHgukLEpCkawSk1QWAAAAAAAbIkVYxe-SHgukLEpCkawSk1QWAAAAAAAbORuYxe-SHgukLEpCkawSk1QWAAAAAAAa4MoYxe-SHgukLEpCkawSk1QWAAAAAAAbg23Yxe-SHgukLEpCkawSk1QWAAAAAAAFBLGYxe-SHgukLEpCkawSk1QWAAAAAAAEs6VYxe-SHgukLEpCkawSk1QWAAAAAAAErzJYxe-SHgukLEpCkawSk1QWAAAAAAAEqv7Yxe-SHgukLEpCkawSk1QWAAAAAAAEvVXYxe-SHgukLEpCkawSk1QWAAAAAAAEuuK", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7g31Dez7xFD_kRoX4sD50A"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi3MZ3CKaS4aU08RhYA19y5ITQAAAAACDjuSZ3CKaS4aU08RhYA19y5ITQAAAAACDf6g", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JXdqgk5BJc-LD2ztKdHPoA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHiCEgtQ4kMk_MBWrPUAFqVnYywAAAAADHiVygtQ4kMk_MBWrPUAFqVnYywAAAAADHdi0gtQ4kMk_MBWrPUAFqVnYywAAAAADHgoEgtQ4kMk_MBWrPUAFqVnYywAAAAACGvclgtQ4kMk_MBWrPUAFqVnYywAAAAACGlSkgtQ4kMk_MBWrPUAFqVnYywAAAAABqF1r", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JmiVF50NInNg5dJWl48anA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVMhk7twoFFvGSvyWsBJzr5QAAAAAAAAAMS-bF0OQ5zu714NI9jV1-DQAAAAAAAADEb95z1GhnNzkQcVnTAGVlWQAAAAAAAACoZkPmPV7VCVD8EkLP0Gy3BwAAAAAAAAPSKp-m6YXPN7JWDmz-Pu761gAAAAAAAAAZvqa2qJ2cwRBJMXL7-qTksgAAAAAAAAAyeM3LHfJob_f6p51a6_86sgAAAAAAAAAYcrGKv6MsQDF8S96b_rOTQAAAAAAAAAAI2yACv8-EQiZTIRa2WNkdEwAAAAAAAACEjEYY4P2KOQ6Ns3Ko0jNObAAAAAAAAAA2W3kTKpkHn84fzTFtfLoD0gAAAAAAAAA2BZ80eZyhE0ZGJTcKVaaGgQAAAAAAAAAUeP0KBVXjuFe0e0V-8WYorwAAAAAAAAAGANmrmrqqJv18GWh_5HHQlgAAAAAAAAAYUTB2ADQFxXISnXcFBKNbeQAAAAAAAABTERC3TORIgU0YrmeCK0zHCgAAAAAAAAAhiynY3Vpl2yeKIqRo2Ld9YAAAAAAAAAAUvTiT6RQHSjUNEBuIvfofKgAAAAAAAABRnXCb1JxZ0dz33zJkoeoA-QAAAAAAAAAOJDnO1OdT3mBLtMfsODhVKQAAAAAAAAAFI90CtZp_BZBH2tSRSUMrrgAAAAAAAACFkpBi8LFR3RTjSJqFuljOuQAAAAAAAAAAGXH6S9Nv2Lf0omTz4cH4RAAAAAAAAClRfhsEKXDuxJ-jIJrZpdRuSAAAAAAAAFtjfhsEKXDuxJ-jIJrZpdRuSAAAAAAAAELnfhsEKXDuxJ-jIJrZpdRuSAAAAAAAADNv", "types": "CAMbBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LA2AxHgE7BeqbFwJBWlvEQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAAwR4O21YPz5WkGUKdaZ1xVrgAAAAAAAAAA", "types": "CQMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "37RKzvRm9gRUgycoVk6d2A"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATMsVxGJ_9ADjCLmkId1rUYwAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAE7fiqNEC4hTNfpjbFJ8zPtkAAAAAAAAAAFfFtXuenTBEiIanE9ZLS9KQAAAAAAAACHzpP80T6FdaTGeY1BUSMu-AAAAAAAAAAFi8qUzmADhGx9PMH8RJ_tdAAAAAAAAACPZ41z-remt7jPNWprM_rymwAAAAAAAAOA3M56M_g_f1gYgGNi_mtl_gAAAAAAAABqWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAg-q9yc6LqB9jJnwfxcnsPAQAAAAAAAABf", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "w6eG2dWgFKo7rTxck2geSg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAKGFseY0uix2hxT0Di8k7-3AAAAAAAAAATslf6t7FJIQoDjMJN42BVyAAAAAAAAAABFg2KiEq3-QS_hoWS2OekUAAAAAAAAAADWt0sf_JgSqOTKaBcf1zgawAAAAAAAAB7FzJF8qZ49M3tzNcHAYKOpwAAAAAAAAAHcx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAAjYKoBBl0G_e9oE7cFaZfzDAAAAAAAAAAZjPboacU0YKXwkYKndASIHgAAAAAAAAAFvbgAMp4MJN-LIAvT-yH7-gAAAAAAAAAYBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyeT", "types": "CAMdBQED"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "v90IGNI0SMs12ehTDnuo0Q"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB879Uz5k14PsCcDvFyUC1kmlV3QAAAAAB88F_z5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHpmIz5k14PsCcDvFyUC1kmlV3QAAAAABHpbXz5k14PsCcDvFyUC1kmlV3QAAAAABHeDgz5k14PsCcDvFyUC1kmlV3QAAAAABHdVCz5k14PsCcDvFyUC1kmlV3QAAAAABFwHxz5k14PsCcDvFyUC1kmlV3QAAAAABFxYLz5k14PsCcDvFyUC1kmlV3QAAAAABGnan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuFs", "types": "DQMDBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "K0MKqv-eV06bvE3VYCWJow"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6xbk6AMXATcqSh5_w-yOEgAAAAAAAAAFbCyjGhoQ-llBpE9jO3P0_AAAAAAAAACgl6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEPoG3DRiZKlMZ3sh3A8whkKQAAAAAAAAAy8_3LGlNMADWVmY7MNYKbGgAAAAAAAABKLm-i7mHlXTzn3dRUwPqsywAAAAAAAAAE", "types": "CQMqBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6OaUumRb8P6q4GlOGK0eGQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mikXT4fd_WKeR1cE-hlLelCQAAAAAAC-nUyXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FgMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "qNoDsTST-roO_pSZa6GDpw"}} +{"Stacktrace": {"frame": {"ids": "NH411-U9ZJbhx9KntPIOtAAAAAABaPkCNH411-U9ZJbhx9KntPIOtAAAAAABZrvCNH411-U9ZJbhx9KntPIOtAAAAAABZriBNH411-U9ZJbhx9KntPIOtAAAAAABZqvENH411-U9ZJbhx9KntPIOtAAAAAABZpqTNH411-U9ZJbhx9KntPIOtAAAAAABZAAyNH411-U9ZJbhx9KntPIOtAAAAAABZhKVNH411-U9ZJbhx9KntPIOtAAAAAABaTly6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xtQfsuim8hcKpQY9alqcIA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFVZs", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Plmay_bw1OMGja18U9JiOA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAHGeUEknoTlPZT0JPs_cYSwTwAAAAAAAAAOQTjf5Ta2BqWKmmdF_ECRlgAAAAAAAAAUG-RfLwuKKRlgO4Dk5t-MPQAAAAAAAAAWLIT1yWPiZ6DoKcWiTOxifgAAAAAAAAAMWe8y-sSERHR4cZ5ibo5NRgAAAAAAAAAdN_nPCm3TGYOGbXHM3T3DGAAAAAAAAAFJw0wAFsFQ52S37kAf5ci3AgAAAAAAAAAFafO-4k-CgwdZv49Ap83kBgAAAAAAAAL2", "types": "CQM-BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "pZQYJXaUqFc02obUZw99pw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAABvZKLj_deYRtPDewbXBnoroAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAwy86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAADA0Bmu_hqLQc2qW5yo4O6HQQAAAAAAAAAyyH_ohM36PxcsspBj9HiisAAAAAAAAABU2LzHjSgmLRTwZBUFU5tC3AAAAAAAAAIWjs4u1eHeGpsu-vXLTnW8uQAAAAAAAABWk1o6cGLS1FzksoHJvPKdFQAAAAAAAAARd55u1lPodAfLflRouVTMDQAAAAAAAAAGd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsK06i4sR69nVCcg3FbwNeuwAAAAAAAAAT90J0K9KRqjzo3OWaVDBuGAAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBAZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMoavQ7EacG6CR4rzcFaNFEsTQAAAAAAATs0", "types": "CAMvBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "b8vG5HR_RUdJ6w8U89LvVw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyEzZ3CKaS4aU08RhYA19y5ITQAAAAABtxy2Z3CKaS4aU08RhYA19y5ITQAAAAABtwRSZ3CKaS4aU08RhYA19y5ITQAAAAABtFgU", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nl2ElkJslUJBof-2miQPtg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAi", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "s5A7NO-IetfMgExlVLT7DA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChkOc", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6TvPSjgriSXKOKa1IM7e3g"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9DdIz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHphgz5k14PsCcDvFyUC1kmlV3QAAAAABG-csz5k14PsCcDvFyUC1kmlV3QAAAAABHCmp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf", "types": "CQMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wTfkFbs7GFZd4Nuap2oEeA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAb2jOITD8MGbT1Ovw_xtzUAgAAAAAAAAABdfaJS679SMFHynOlhaT4GQAAAAAAAAAEwxNyOGlepMHeJK72r3Nx1AAAAAAAAAABNCnW31JAeE6fBCMV8tcmcAAAAAAAAABx-Io3TUEjg3VhqUZyexECqgAAAAAAAABCKJ6ILPQkLRzsL_qCZRHYPAAAAAAAAAASW8XJy2Hk37R95UDQ18YnzgAAAAAAAAAOOdhNFK09ypq7bYC30OEbwQAAAAAAAAAWz_t7zXgMNJmUhO2ppFiaDQAAAAAAAAAFGVtE5azmnq7oQE07RxtqrwAAAAAAAAAxM-HSPvU6Ylpk6rULEsdDKwAAAAAAAAABwcwS_jKe-J8ZEpRM7gaB2wAAAAAAAAAFn0k5scYsn3wtTeokDa3YiwAAAAAAAAAF1KcuglkNBKBETK8L499nPQAAAAAAAAANiXm2yUQTnZpOrE8ZNWS3KQAAAAAAAAAm-bdPLgVx58dzwkE7OjvI9QAAAAAAAACexzImn0o_mZVH7TtiAowasAAAAAAAAABhmmNAof30bMRSwYN0RqyIdgAAAAAAAAAJ2hOdPvl1p5dv859XD0m5tQAAAAAAAAARmmPsjN7E1ia7Jag3tIGVTQAAAAAAAAAcCqifFk8xy3782YHVmD9JcQAAAAAAAAEPSlMSKsPQXAL_RyuuiP1MSQAAAAAAAABJnhJ7WfxXi1VxL-LJV1qh3wAAAAAAAAAVTCbt0pq5tuFh3zQn-XdPnQAAAAAAAAE8kqeq91eyNY8ANyNL5QUkXgAAAAAAAAAGkqeq91eyNY8ANyNL5QUkXgAAAAAAAAAG0v3fw3R6M9K5pBw9frSxowAAAAAAAAAfY-xOiN3xIz7dDoZSQjwEygAAAAAAAAAVNZV2uadrciDU_AZcAz2jUQAAAAAAAAAOTM5vHmZRGlLyNtB_jDhdvQAAAAAAAAAKiQk8OgBQx5evO4aY_GwftAAAAAAAAAAVRw2pUsVoJZp3HkcB3nNMtAAAAAAAAAAFf8VYhNP4CdjxG54sGwOztQAAAAAAAABo-xeI6MIHiM8nZhd6ChS_mAAAAAAAAAEzO-USt_tIZNq8cAKvmLvdIgAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAYq1Ak9_WYtjiRUK6jyz9agAAAAAAANHPFr4KuuAdcuLzUhqxYoXsLwAAAAAAAPv86tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ8", "types": "CQMpBQIDBQQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UPk0nOMfMkr-e1H4cfaRgw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--RVXT4fd_WKeR1cE-hlLelCQAAAAAAC-7XmXT4fd_WKeR1cE-hlLelCQAAAAAAC-z7kXT4fd_WKeR1cE-hlLelCQAAAAAAC-1UKXT4fd_WKeR1cE-hlLelCQAAAAAAC-057XT4fd_WKeR1cE-hlLelCQAAAAAACi94WXT4fd_WKeR1cE-hlLelCQAAAAAACi98FXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwXQXT4fd_WKeR1cE-hlLelCQAAAAAACiKCvXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZd", "types": "FgMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zuJ6Un0oQQHrjEIrzmqZvA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChkN8XT4fd_WKeR1cE-hlLelCQAAAAAAChdmzXT4fd_WKeR1cE-hlLelCQAAAAAAChdCoXT4fd_WKeR1cE-hlLelCQAAAAAAChd1_", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "O0nxUZHGpbp2WXmKV75bIQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN4v7", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mfPI-I_qFPUYDnGYxnk-3Q"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAAAZAgLqjB_amR59Lv13Nhle_NwbwAAAAAAAkCC7B_NxRB-tFVbAaTDiew0fwAAAAAAbNKr7B_NxRB-tFVbAaTDiew0fwAAAAAAdIfl7B_NxRB-tFVbAaTDiew0fwAAAAAAZDl07B_NxRB-tFVbAaTDiew0fwAAAAABFNNX7B_NxRB-tFVbAaTDiew0fwAAAAABFfEz7B_NxRB-tFVbAaTDiew0fwAAAAABFMoF7B_NxRB-tFVbAaTDiew0fwAAAAAAd1yG7B_NxRB-tFVbAaTDiew0fwAAAAAAdyaj7B_NxRB-tFVbAaTDiew0fwAAAAAAmf4a7B_NxRB-tFVbAaTDiew0fwAAAAAAqt7_7B_NxRB-tFVbAaTDiew0fwAAAAAAqxJP7B_NxRB-tFVbAaTDiew0fwAAAAAAqwzN7B_NxRB-tFVbAaTDiew0fwAAAAAArXr37B_NxRB-tFVbAaTDiew0fwAAAAAArR2g", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dj2iaQ_4_Q0FlLaPsVgwBw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADHmXqXT4fd_WKeR1cE-hlLelCQAAAAAADHmkkXT4fd_WKeR1cE-hlLelCQAAAAAADHm4cXT4fd_WKeR1cE-hlLelCQAAAAAADB6QhXT4fd_WKeR1cE-hlLelCQAAAAAADQm1kXT4fd_WKeR1cE-hlLelCQAAAAAADQnNrXT4fd_WKeR1cE-hlLelCQAAAAAADQjwNXT4fd_WKeR1cE-hlLelCQAAAAAADQjKNXT4fd_WKeR1cE-hlLelCQAAAAAADQjeGXT4fd_WKeR1cE-hlLelCQAAAAAADQlp4XT4fd_WKeR1cE-hlLelCQAAAAAADHcz0XT4fd_WKeR1cE-hlLelCQAAAAAAC8k6-XT4fd_WKeR1cE-hlLelCQAAAAAAC8tjlXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8skcXT4fd_WKeR1cE-hlLelCQAAAAAAC8np9XT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k4EXT4fd_WKeR1cE-hlLelCQAAAAAAC8lJ-XT4fd_WKeR1cE-hlLelCQAAAAAACjv2MXT4fd_WKeR1cE-hlLelCQAAAAAACjwPEXT4fd_WKeR1cE-hlLelCQAAAAAACjep4XT4fd_WKeR1cE-hlLelCQAAAAAACjeauXT4fd_WKeR1cE-hlLelCQAAAAAACjbMY", "types": "IwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UxcP6jwX5DcB2acaC1b5og"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF88yz5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF780z5k14PsCcDvFyUC1kmlV3QAAAAABF64Dz5k14PsCcDvFyUC1kmlV3QAAAAABFPjyz5k14PsCcDvFyUC1kmlV3QAAAAABFxi1z5k14PsCcDvFyUC1kmlV3QAAAAABGnUi6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "CAMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hwtp9n3Bp_1rok4zYqcbZw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAAAM7g", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "HLPVixRDLT7-Qan3KzSfWQ"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAABqUvlgtQ4kMk_MBWrPUAFqVnYywAAAAABqfFEgtQ4kMk_MBWrPUAFqVnYywAAAAABqfOPgtQ4kMk_MBWrPUAFqVnYywAAAAABqfxEgtQ4kMk_MBWrPUAFqVnYywAAAAABqr2Y", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FQo3ZBR7hFihUZ8XJ-ov7w"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvU6cEvvhuguaGYCmGWrnWRz1QAAAAACLroTcEvvhuguaGYCmGWrnWRz1QAAAAACLsWTcEvvhuguaGYCmGWrnWRz1QAAAAACLsmncEvvhuguaGYCmGWrnWRz1QAAAAACL74lcEvvhuguaGYCmGWrnWRz1QAAAAACLvYJcEvvhuguaGYCmGWrnWRz1QAAAAACFpUW", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "24JM-vtdkpiOaOirrlfSxw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAACLHmuH5pCGXma5ToZjJwiZHAAAAAAAAAD9rG4zWNbzF43FlUaeZiWkVQAAAAAAAAC5M43VZw3emUYxEGolzsc4cQAAAAAAAAAEuIi1QD2zJWMtve9XGY3UdwAAAAAAAACTk-5h8x6ooEsPmPGI81luowAAAAAAAABDWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAAJ8M1BLNGIf7nUxDe3LzOquQAAAAAAAAAXKVrvJesf6XnwO-_VBlzbfQAAAAAAAAAA", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JMXgDW5bre-oZMgVw-foJA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN_V1", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "VX7mBWir0zSSm4c0SBgjXA"}} +{"Stacktrace": {"frame": {"ids": "LhSmdLZs37wH6EMWPlegEQAAAAAABRaHLhSmdLZs37wH6EMWPlegEQAAAAAAFP5TLhSmdLZs37wH6EMWPlegEQAAAAAAFP3yLhSmdLZs37wH6EMWPlegEQAAAAAAFPZ8LhSmdLZs37wH6EMWPlegEQAAAAAAFMZY", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "sWtjOfdiboXxxf3-sATYAg"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAABHaI47B_NxRB-tFVbAaTDiew0fwAAAAAAk_fu7B_NxRB-tFVbAaTDiew0fwAAAAAAk-PN7B_NxRB-tFVbAaTDiew0fwAAAAAAfe7Y7B_NxRB-tFVbAaTDiew0fwAAAAAAfdB67B_NxRB-tFVbAaTDiew0fwAAAAAAfodJ7B_NxRB-tFVbAaTDiew0fwAAAAAAjtpx7B_NxRB-tFVbAaTDiew0fwAAAAAAz4wU7B_NxRB-tFVbAaTDiew0fwAAAAAApnsg7B_NxRB-tFVbAaTDiew0fwAAAAAAplrD7B_NxRB-tFVbAaTDiew0fwAAAAAAptSx7B_NxRB-tFVbAaTDiew0fwAAAAAAqsI97B_NxRB-tFVbAaTDiew0fwAAAAAAqpK_7B_NxRB-tFVbAaTDiew0fwAAAAAAqog87B_NxRB-tFVbAaTDiew0fwAAAAAApMfu7B_NxRB-tFVbAaTDiew0fwAAAAAAZ5xq7B_NxRB-tFVbAaTDiew0fwAAAAAApIGR", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EGF80p591eCgrxDbr5NbbA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYCMh__DRjYW6WKuSO4E-9UAAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFaD5tQt3PTji3IEVewu1DRAAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATKKq9hFu_HcVwkAnnzs7gcwAAAAAAAAAHDJAMC8tUl4_oL0LoeNoUgQAAAAAAAACVSjePYWwKalqPF7fBjhLglgAAAAAAAABeOVbzts78rozw73k3kwZElwAAAAAAAAAJw52v69QzC-f_wTnaeDz8vwAAAAAAAAALKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABf5okn6LIO72fwnskoiRwJAAAAAAAAAAQVr464Hci92DwulADwvd6QgAAAAAAAABZJvScc-kAblhDe3HgLZgGAwAAAAAAAACNatxNg2wB0yTwBdq5mQELkAAAAAAAAABVTm69BHhvzhA-OK8e2Udw5AAAAAAAAAAIhRsRUw78WKiucrogpgXANwAAAAAAAAAHsueTM-LYsBZU9Btl9NKTwAAAAAAAAAAEomA88yQfT91566xoyEY7sAAAAAAAAAAcuivmFtqkx0mSDLjpV5jf4gAAAAAAAAABRK8a3DzcZMuwoK9TpGXQTwAAAAAAAAA3hDeNHR-uaDqXexxBeqdlYwAAAAAAAAABNuqcOqANutL4nD8JjGfmlwAAAAAAAAAkOD88rfBmy4BfCXerLT5e5QAAAAAAAAA7lIoxgWzH60wdDIe5gejCgQAAAAAAAAAI3kqKIOk7SslvcfRGmqs1wAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAAIIWb6KEDEet9GjRbj5wCi1gAAAAAAAAAKk2Vd7cm7l6vxlSy0gXOaPwAAAAAAAACaZJjsD24vVeIB2Mk_BbDMOgAAAAAAAAAB1XsKZz2qQFSDIhWfdGBZ5wAAAAAAAAABCOmxs2R5NWtojTt5uW-SCQAAAAAAAAABmSJ6fSPuHzsY_PJcgbXOQAAAAAAAAACa", "types": "CAM2BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OFiO_FKeCtYsSxuoxXmRZQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVMhk7twoFFvGSvyWsBJzr5QAAAAAAAAAMS-bF0OQ5zu714NI9jV1-DQAAAAAAAADEb95z1GhnNzkQcVnTAGVlWQAAAAAAAACoZkPmPV7VCVD8EkLP0Gy3BwAAAAAAAAPSKp-m6YXPN7JWDmz-Pu761gAAAAAAAAAZvqa2qJ2cwRBJMXL7-qTksgAAAAAAAAA-uoQ2M4bRS4Qydql36um4PQAAAAAAAAAu8vigD8rt-YtQEvk4ur7eYAAAAAAAAAAcyg6hUybbKOuy2Th8HYOfDgAAAAAAAAAQ94QsDIL7bUk7Oxas7lNqGAAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJSYSSbioufiMK4TqEn24uLgAAAAAAAAAdXL_fwLkYkxkYcfgosK-fdQAAAAAAAAAQO_mHTPntGTw_EnF-rkI8XgAAAAAAAAAWiiLZnxbVRTQPtvWA0miuyAAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdfJIr5vQAn81_ytZBhz6xpAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAABduSa7rLKjwnZa9hewarfUgAAAAAAAAAIHMo9CJkBJDT98ldAVMcaFwAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAZifuzCpl1zo6zLw_paxkEdQAAAAAAAABs-I0qeKDe1hMr58wzZHuN2wAAAAAAAADfbLRnm0K2LnF8O3sUIvVtEQAAAAAAAAAFYUqlosets6-rXKgChfDXoQAAAAAAAAAfnB7ASI-agyjwniBzr5SZ-QAAAAAAAAAfUxUrGKaPEq08l4l3816TpwAAAAAAAABLB3q4S4Ckg_Xt-OI4yuAyoQAAAAAAAAALWRtY-lihH3Vcv4ui-X8hvwAAAAAAAAAUB3q4S4Ckg_Xt-OI4yuAyoQAAAAAAAAALrcw4O6fPwcfa_O50COvY1wAAAAAAAAAXET3b1ONLpdNAXigq7mYtGgAAAAAAAAAkYSiZZa16pQ0fMzZ8JTkGSQAAAAAAAAAHx7TDQwwLG-Lx987UVQ_9uwAAAAAAAABzAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CANABQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "H2VeIiUYo-0rRucz1YzC2A"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYCMh__DRjYW6WKuSO4E-9UAAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFaD5tQt3PTji3IEVewu1DRAAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT8PmjGm6M7d6JhKTXv_IxqQAAAAAAAAAKc6zhheBld8wEBO7TlhnPcgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB6ZyDu8REFKLpyM-Kdz5OhAAAAAAAAADW3TPttQJEnBLdbxWIzlHkewAAAAAAAAALiuglTU1ZiCYQ-BlYCftcbAAAAAAAAABAy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJQ-u30OVC8ZOSspmVuVd8UgAAAAAAAAAMeMHmhq4sdClgEJFzlDVUfAAAAAAAAAAM0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFMzoxeJdfOW5Uia5TsooNmQAAAAAAAAAMpmiRP16sLzHMk4sQotP67AAAAAAAAAAOumqi48lo3pIGNbe4z8rhPwAAAAAAAAFXC0XtSv7dm7gUvHZSURjO4gAAAAAAAABnPlO3UlD8x552lb1CM2CULwAAAAAAAAA2TLtXUcG2a8E4RDCF9AerkwAAAAAAAAAHv7CWLnfl4NBXfi5Ad25mLgAAAAAAAAAJKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABnm8Dfka9x9QwMLoLlLfziAAAAAAAAAAM_Xrfw0A11GLpx_3z7clkYQAAAAAAAAAC7CG5ZeeZHDD3stOYEiHqzAAAAAAAAAAXHraciiRO31pdWLKXJjfvFwAAAAAAAAAITQWUVBogE19YtGrM-YvAMgAAAAAAAAAEpHVBvSKqV5pNmUpMq3vEugAAAAAAAAAW9gB_5QnQSZFAhOLR4MwwxwAAAAAAAAAEI48brEkgWPSZXqrqrHkPZQAAAAAAAAC60_phtM3pHaaGA2rtIita_gAAAAAAAAADmHsoQaBy_jlH5-zItFSRsAAAAAAAAAACdvC0kfSIuomMUVjjDpC6UgAAAAAAAAAhxIeEUt5kLS4U3EmJ2DoeaQAAAAAAAAAC1cddjmaxpxvdigvHQVYiUgAAAAAAAAALljUXeBhwvOEIoKLQ54oy3wAAAAAAAABkGSBqXJuDk7t-zl7PgPREdwAAAAAAAAAC", "types": "CAM5BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "504cODi5E3iqtKGXXZCSMQ"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAAAZAgLqjB_amR59Lv13Nhle_NwbwAAAAAAAkCC7B_NxRB-tFVbAaTDiew0fwAAAAAAbNKr7B_NxRB-tFVbAaTDiew0fwAAAAAAdIfl7B_NxRB-tFVbAaTDiew0fwAAAAAAZDl07B_NxRB-tFVbAaTDiew0fwAAAAABFNNX7B_NxRB-tFVbAaTDiew0fwAAAAABFfEz7B_NxRB-tFVbAaTDiew0fwAAAAABFMoF7B_NxRB-tFVbAaTDiew0fwAAAAAAd1yG7B_NxRB-tFVbAaTDiew0fwAAAAAAdyaj7B_NxRB-tFVbAaTDiew0fwAAAAAAmf4a7B_NxRB-tFVbAaTDiew0fwAAAAAAqt7_7B_NxRB-tFVbAaTDiew0fwAAAAAAqxJP7B_NxRB-tFVbAaTDiew0fwAAAAAAqwzN7B_NxRB-tFVbAaTDiew0fwAAAAAArYRp7B_NxRB-tFVbAaTDiew0fwAAAAAArR3R7B_NxRB-tFVbAaTDiew0fwAAAAAArRyW", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ElUl7wtRE-M8S-x_zQwgpw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETV_", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fkLnEKVER3DEjd9x3K7xzw"}} +{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "BQQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UXmQTj34Bfms8P6GHQL7oA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFxkXT4fd_WKeR1cE-hlLelCQAAAAAACiJIkXT4fd_WKeR1cE-hlLelCQAAAAAACiM0oXT4fd_WKeR1cE-hlLelCQAAAAAACiNJEXT4fd_WKeR1cE-hlLelCQAAAAAAChtv8XT4fd_WKeR1cE-hlLelCQAAAAAAChIao", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DgsxxiksahrmG4oWeF2lQw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAABH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAABze7YYWaQTMh8P2PCVzA2a8gAAAAAAAAA5gpzmfljwMvF6axjuntzBmAAAAAAAAAABtGdjZjM6jJA23WbdtVpvAwAAAAAAAAAIgpzmfljwMvF6axjuntzBmAAAAAAAAAABtGdjZjM6jJA23WbdtVpvAwAAAAAAAAAIE7J_ZVS2fIyPaAMkyne11QAAAAAAAAAB0YpHRX6ZLVSO127u68ifLAAAAAAAAAABGPK7pyl3RjtyKa9WtooOGgAAAAAAAABf", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TSSUdNRrvwhE4qibA7ttMA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--RVXT4fd_WKeR1cE-hlLelCQAAAAAAC-7XmXT4fd_WKeR1cE-hlLelCQAAAAAAC-z7kXT4fd_WKeR1cE-hlLelCQAAAAAAC-1UKXT4fd_WKeR1cE-hlLelCQAAAAAAC-057XT4fd_WKeR1cE-hlLelCQAAAAAACi90EXT4fd_WKeR1cE-hlLelCQAAAAAAChWmLXT4fd_WKeR1cE-hlLelCQAAAAAACgUaj", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DN7XMYJuV9ASq7mR0Nzbjw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuYNwZ3CKaS4aU08RhYA19y5ITQAAAAABtz9JZ3CKaS4aU08RhYA19y5ITQAAAAABuRKHZ3CKaS4aU08RhYA19y5ITQAAAAABuH9C", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ITdW6AIUPJDb7k2YbpXj_w"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYChGc_KlbDChxhbLYz-xpPwAAAAAAAAALOmzVUgwY22EPoqShuZpT1wAAAAAAAAAByCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIFxUii1Qg0ODP7PNbShAMtgAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACXDgohratZUQwpKekym6X1AAAAAAAAAAEw6kzV8D69jasat-u2vkUCAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAqJzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAGODEF5LCm75g5je9PKredEgAAAAAAAAA7QQkcsVD4a4qVPR2FL821XQAAAAAAAAAFzv32OTyDwzKaaY5odVkMtAAAAAAAAAAA", "types": "CAMTBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Dso6TximVS3RxBDyh_SNPQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9ALUz5k14PsCcDvFyUC1kmlV3QAAAAAB9AoRz5k14PsCcDvFyUC1kmlV3QAAAAABFX3u", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XIUoVbDbMc0bWstLy1wrIg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATtrHlBrKqhPY4wIsFmpvpGwAAAAAAAAAHfqX01Q_XnrWTMFwMltCSzQAAAAAAAAAcr6OQqChD9ydemA0TTpv7WwAAAAAAAAAByBhEFtyRRCvGIybyDtzQDwAAAAAAAABSUplh6FQYqmDpNUAIFNEKQQAAAAAAAABDiO1mMPtAsXsWYZtGrgAdjwAAAAAAAACoMUGOz76uheRW_JUVWNsoVwAAAAAAAAAFGBhILDYlssyThkp8tHozyQAAAAAAAAAMlN083j_rdg2B1dvviOhFMgAAAAAAAAAGx1wras1gluyTP-Y9Ht2HeQAAAAAAAACWORVIxASD4wCMIrAYPIVrNQAAAAAAAACVqZY0RfBvPvNV6NUJtoKH8AAAAAAAAAAN5LiiYvRk2tAe8r0a1hyONQAAAAAAAAA_n3ZXM9sPxSI10_imjZ8XBgAAAAAAAADdL8d7ZrNDNNkKQuLYAtJHoAAAAAAAAABkUhgtRJJsgBZ2crDmbBGA0gAAAAAAAAAg2m4VqGfi_IE6FL0pSfE_-wAAAAAAAAAQYaC_rTr5WsI3HFN2LUobYQAAAAAAAABCXJOIidNeiRs9_ZATFdFs-QAAAAAAAABB2Tuo-C9u5ZQSFYDa7WjfzAAAAAAAAAAdl0o_mr3onqzQhpZerRGtWAAAAAAAAAAFxR9z1wQG4rHRUc-6hGmCnQAAAAAAAAAXcP7knzpeaRcHnYFC5O8YoQAAAAAAAAAjZBiGD584czs37vexEv-WgQAAAAAAAABxRBTRaju-ab8ob43Dp-qdJQAAAAAAAAAfvmmGHZfQIaqoPwChIOzq-QAAAAAAAABwmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAANRFjLCSKw9fP9oqeV0WzvFgAAAAAAAAAGwcWRy9o8aBuBPSZu3QixfgAAAAAAAAAGQgPoy2NvCHHBSCpV0FYoygAAAAAAAAAZABUSIyp6z6jka7vrSENSfQAAAAAAAAAT7d3seGBxg838auGMbrqBQwAAAAAAAAA3dZ7JiawsSbyUWtx7EnYO0wAAAAAAAAAGgvF2yYYQgGwIfgcGSJAUHgAAAAAAAAB6Uf1tpnHSTgQXg9RKIrvZYQAAAAAAAAAKbxcZQU9NPH7Mji3IrHeYGQAAAAAAAAAURw2pUsVoJZp3HkcB3nNMtAAAAAAAAAAFf8VYhNP4CdjxG54sGwOztQAAAAAAAABo-xeI6MIHiM8nZhd6ChS_mAAAAAAAAAEJEAeWdOtQ4-I723aXPsAYbQAAAAAAAAAIMpA-_yb_lGv178DTnH5RUAAAAAAAAAAKQFD262cMfH9Fkx0D-SBUcgAAAAAAAABhk-Vn8s9qtj7D3BSWLIWnXAAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAActFrbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qeGt3fpd8fb-33IEga_JxmgAAAAAAAAABIGwhMoYnMofyYEaJiOTDygAAAAAAAABndVXLQszZHgabMaRgrKn91QAAAAAAAAAbkUQWAMnv1TRPiRV23phECQAAAAAAAACM4oROntQ4zAdpf6wKcORUhAAAAAAAAAAA0aeAC4XpbxqxubqgoasMaQAAAAAAAWFk0aeAC4XpbxqxubqgoasMaQAAAAAAAW6z0rNuxKNw6YxtKvsF6kS_jQAAAAAABGiX0rNuxKNw6YxtKvsF6kS_jQAAAAAADu1l", "types": "CQNNBQIDBgUEAw"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DrHP-maKMXt1WSKlYDFBcg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXUptYxe-SHgukLEpCkawSk1QWAAAAAABXVjkYxe-SHgukLEpCkawSk1QWAAAAAABXVBsYxe-SHgukLEpCkawSk1QWAAAAAABXZL0Yxe-SHgukLEpCkawSk1QWAAAAAABV3AkYxe-SHgukLEpCkawSk1QWAAAAAABV1uZYxe-SHgukLEpCkawSk1QWAAAAAABV59PYxe-SHgukLEpCkawSk1QWAAAAAAAFzcMYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHZdw6tVKI4mSYDEJ-ABAIpYXcgAAAAAACli46tVKI4mSYDEJ-ABAIpYXcgAAAAAAClha6tVKI4mSYDEJ-ABAIpYXcgAAAAAARNxe6tVKI4mSYDEJ-ABAIpYXcgAAAAAASc3-", "types": "DgMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xz4kWWK8gcm23oDogTav3g"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVEDYyx-zRWlBHMYS8RkGZ2wAAAAAAAAAEdymPrMwSHJkE00arRNB68AAAAAAAAAAUu_5zCMK3PLNUfmu5e0wjpgAAAAAAAAB2ac8L5UaM7hx6_7ogYUjJpQAAAAAAAAALAt2XjH9VGC3bb_7sv7ixNgAAAAAAAACJw4Cq1cfo2BosL5j6RghC2gAAAAAAAADfqVud9aAxlVfNdghSN8mVawAAAAAAAAARcPknbPYx0jQL0_yL-rDiBQAAAAAAAAAHTJokhObG_7GMDQXtJjQRzgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABNX2GurXP9eWlHwN0fLlalwAAAAAAAAAM5E3RifhwtkkbQvQxmdbzmwAAAAAAAAAGhzLOxaKxWQ8hHeWUK-EOLgAAAAAAAAAIbsyDek069Ex-p_WmJk4qUwAAAAAAAAB3dRwl39wiwpK9-zrDh4fLcgAAAAAAAAABJIJ67u_XI4-jnSyBIeegBAAAAAAAAAAIeOXjDtmISDDtSL4dEzZt-wAAAAAAAAAD_6rkq2S7o8rMRQJ9AofzJAAAAAAAAAC-7NQKJ0eHP8J4hISaRMWwxQAAAAAAAAATLLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABYEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADNq5-VNNWJnEe4GvJK3_qvJwAAAAAAAAAbnYdOHRNiMitOfqxT9gnkcAAAAAAAAABCLLIwCfmO3nPIw_1GozzfkgAAAAAAAAEMGO1QDVqG-4CNnMRn2v_9VAAAAAAAAAAdu39hB2o_bkkn64I33Zf2OAAAAAAAAAAx6KM6RK-sq5wYpyjnMfBa7AAAAAAAAAAsxLOLXg5EKZgSVcI5Dw46ugAAAAAAAAC40LGXmFocz46kL18OXWxszwAAAAAAAAA1cuyNWlZFQkabnqdPXO_rXQAAAAAAAABNSlb8MNVKIFfE9HJqtN3BhwAAAAAAAAAAWpojVIMMfjg1gPX4CFe0BAAAAAAAAC1uHt2yyHtMhQP9uhMxLoNAEgAAAAAAAIuLHt2yyHtMhQP9uhMxLoNAEgAAAAAAAIGw", "types": "CAMvBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "CtBrpsJG7vIeHk2xO7U9zQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATMsVxGJ_9ADjCLmkId1rUYwAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABV6WzOxn3OKFhpMveMHAeqDAAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAproTQ2x4u1u0ROVEifn0kaQAAAAAAAAAtOcVENYdBUHkmXadCZbxMcQAAAAAAAABX7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAMEozR7rHeowembmV8tqrkzHQAAAAAAAAF_5_zddmyO37Dam1L6ekM5pgAAAAAAAAAXIpdJ0jKEIlGYoFbGaUItnwAAAAAAAAA25f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAABBnftB2PmJZcz7DZJedLNipgAAAAAAAABQNDiNPs2SIuj4NddpL8knJAAAAAAAAAAC_OOeQuiXtvgynmE43QMbEAAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAHIEeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAR5X", "types": "CAMyBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "rweMcaPmnPL4I4jcQfxf0g"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAABz9J54Rq68TS7B5VvAGA76dQAAAAAAAAAMxhOAoPbUvqtSdEcy7uoPXwAAAAAAAAAFeXimxJw4055xWDImg8DzoQAAAAAAAAAqbKlVw9gLE4jRKTChgrEglAAAAAAAAABg2WuDX_7V5y0Pc0pDkF5WNQAAAAAAAAAA", "types": "CAMKBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zyb7pAzJ1yurTbFF6tyotw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAABi__VMh3MgmTJp7v_qMbssAAAAAAAAAA1qwd0u0yf77aYVcTrTir5kQAAAAAAAAAFqwd0u0yf77aYVcTrTir5kQAAAAAAAAAFOD88rfBmy4BfCXerLT5e5QAAAAAAAAA7yhF9CEzH60wdDBblzY1FcQAAAAAAAAAIOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyMe", "types": "CAPEBQED"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8xbgeT_5N72hTsNM0BgoFQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi09Z3CKaS4aU08RhYA19y5ITQAAAAACDf4EZ3CKaS4aU08RhYA19y5ITQAAAAACDf9dZ3CKaS4aU08RhYA19y5ITQAAAAAB9MVsZ3CKaS4aU08RhYA19y5ITQAAAAAB2nnMZ3CKaS4aU08RhYA19y5ITQAAAAAB2rKz", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nuTs9YJsCYElegNfJHtMQg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyn-Z3CKaS4aU08RhYA19y5ITQAAAAABzzZNZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz0fe", "types": "HAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Y9EyIC7MB-aLTW4vwGDzzA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKTEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKu8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfdgtQ4kMk_MBWrPUAFqVnYywAAAAACJEnagtQ4kMk_MBWrPUAFqVnYywAAAAAB1YosgtQ4kMk_MBWrPUAFqVnYywAAAAAB1YgbgtQ4kMk_MBWrPUAFqVnYywAAAAAB1KskgtQ4kMk_MBWrPUAFqVnYywAAAAAB1LIGgtQ4kMk_MBWrPUAFqVnYywAAAAAB1IjtgtQ4kMk_MBWrPUAFqVnYywAAAAABvNF-gtQ4kMk_MBWrPUAFqVnYywAAAAABvN7cgtQ4kMk_MBWrPUAFqVnYywAAAAABr5vkgtQ4kMk_MBWrPUAFqVnYywAAAAABr74MgtQ4kMk_MBWrPUAFqVnYywAAAAABsAOPgtQ4kMk_MBWrPUAFqVnYywAAAAABsAoq", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6F6cUqywicK0wh-Nt0B7lg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVFKmuDb9OiAlOmhNzpFQWMgAAAAAAAAAFUw8EG916-vV16x2yycdXOwAAAAAAAADvK0flqZKMYgGhD375agfmDQAAAAAAAAAdrXAVE11Ryhs80ZE3uuTVVgAAAAAAAAACWj1Uq6jbmSjrZUnAzTcg8wAAAAAAAAFMu2DScCPg-79KHpSdqd651AAAAAAAAAAdt1rjy3Ck_TErVMhv-psy8AAAAAAAAAAHL89gnK14agcS6gC2h0zhpQAAAAAAAAFDEacvdBDVwYleo41xBU-e_gAAAAAAAAAL6vLdbR-rUObkBHp1yQiB0AAAAAAAAABqrBwENpDATDst6L2Jv2MgnwAAAAAAAAAG1LJLLPHZa7_J46rYsATDdAAAAAAAAABvz-8rxc9yywrVaZ7KMpiBhAAAAAAAAAAeUoO0YIpM7l58QUfhpUAyIAAAAAAAAADNiQ3-U2pFJokP-jlw4Yr9FQAAAAAAAAAJnxv9fnyzQgRP5y-sCtMEGwAAAAAAAAB7zu2cxjnj021U6YG5r_SQBwAAAAAAAAAO", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "IV_eFZFEiAxUawVhqRkKyA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVP4GdI6f6aagjBxBAKz-KIgAAAAAAAAAMqd26ee2y8slhneyPRIcQAgAAAAAAAADEwKREEYJF8V2B2guAeJRSCwAAAAAAAACoWsBETJrPecSrGYvg781P3AAAAAAAAAC4mYO8eYShKNmyuBL3FXJB-gAAAAAAAAAwbcm3REG58b46CBv8_xMfuwAAAAAAAAAKxhbJyq2dXJOtFwl6fNdtPwAAAAAAAAANAD6q8JNXSicx23C7lYRhhwAAAAAAAAAHT-7yVwNuXXP4l85wV1xmqgAAAAAAAABgWP24-sIZ9ujXLXhCrx5dnQAAAAAAAACquVBW3qATYlP-aD6h0fuyUwAAAAAAAAAEF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdPT4VaUhFLgQWjMovkqo-tQAAAAAAAAAI8CGal5YjjmTZUgONcBCVkAAAAAAAAAAFSZIzrSBBPBO2zJj0aqaKggAAAAAAAAD_AOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAADCB20OugZuwBAeveso7e9HjAAAAAAAAAB7KB0KS3hQ9ShgNXNnOutrBwAAAAAAAABMz03CQ7BmO5DWD5cAAhlTWwAAAAAAAAAPnqpcbOZtBdInQqe7yr3UKgAAAAAAAAAFM092UIYzWocIGc1tZUOHbgAAAAAAAAABWW3_EbNz_1GX9glPH_zWuQAAAAAAAAAA", "types": "CAMmBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "aTfIQImMhlpayYFJYKzSuQ"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAABqUvlgtQ4kMk_MBWrPUAFqVnYywAAAAABqfFEgtQ4kMk_MBWrPUAFqVnYywAAAAABqfM8gtQ4kMk_MBWrPUAFqVnYywAAAAABqex2gtQ4kMk_MBWrPUAFqVnYywAAAAABqr_4", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mjcEHtWlGba3o59kSWwFkg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmrvXT4fd_WKeR1cE-hlLelCQAAAAAACgbuK", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TaQjNmHwZdurzTYtBzNrbw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAABAHHYxe-SHgukLEpCkawSk1QWAAAAAAAA-srYxe-SHgukLEpCkawSk1QWAAAAAAAANKmYxe-SHgukLEpCkawSk1QWAAAAAAAA0MVYxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz01", "types": "CAMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "IzNbTVjsXO2ogTT5t3czHg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyn-Z3CKaS4aU08RhYA19y5ITQAAAAABzzZNZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyrfZ3CKaS4aU08RhYA19y5ITQAAAAABz5LsZ3CKaS4aU08RhYA19y5ITQAAAAABwFC7Z3CKaS4aU08RhYA19y5ITQAAAAABv-Om", "types": "IAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "L2tnlnFGd85PzXoftF62tg"}} +{"Stacktrace": {"frame": {"ids": "AAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "AQU"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "CHpGVtR5tRytizjLL0Fwqw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAACw0R6xpOnzOUCU8VEb3MwxQAAAAAAAAADt7UTQ9GGQKtD8smsLz7rmQAAAAAAAAA1PYNr3fcqAEd1mjY30PW6-AAAAAAAAADDLtb-SLLFS4DeUTd0FR1KzQAAAAAAAAA9_7xqiZJMUCsg_264O9Ah7AAAAAAAAACxq1YchijpAoN9quqXsOpNXAAAAAAAAAAFMfnvsYbrGgMTd5Rb3Kil9wAAAAAAAAC8-T7IHRbMB3V18hn5_9HApAAAAAAAAABLwFlJbQoR_Mt8rauw3Qs4IgAAAAAAAAADzKYR7j-DmhHwkALRUz3Z0gAAAAAAAAAT1rwDX1bcX9Gmpr9ldm2_AgAAAAAAAAABaM-T0CGo7q7lXKljNC-x7AAAAAAAAAAC8-zVVCfuZs1an5l1jRG2PAAAAAAAAAAFGSexVx96EzZNehBIzgm7mQAAAAAAAAAFERZoN6J3j8Dsz-tNhFGNcgAAAAAAAAAL45e8Lbo-GtzVUz8fB3zJjQAAAAAAAAAK_vmmzjY_F_p-gLT_Wctm7QAAAAAAAAAK2nfk7kd46D_56_vyY72dCQAAAAAAAAA2qe1R8K3VcU7B6rka1SJepQAAAAAAAAAXyH-BtS6FnIXjCbAUM88qLAAAAAAAAAAA", "types": "CQM4BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YSQth5DVpOxNUr4ur3fqBw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnAydMRjIz1OdcUN0eWHfUfwAAAAAAAAAd4W76RwUjGcgIjQApiAJJHAAAAAAAAAAFgZgYcEFO3c95J0_kRNRWOgAAAAAAAAAGOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB42BUy3BbkpnttyuMqLirigAAAAAAAAANOmzVUgwY22EPoqShuZpT1wAAAAAAAAABmE1ci0y85Ym-Dqw-Q5t-OwAAAAAAAAAEWgnWJF5xNWl_wwu7DvgTzQAAAAAAAAAE-OmtEGD-FWeU3vRNXPLxogAAAAAAAAAd6PDnpLs5LIM9SpjUeSu5BwAAAAAAAAAM4IIlAJ_QWDs41ERNR4mO_wAAAAAAAAC0wAR4gk273_ooOZdD1tA5fgAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJSYSSbioufiMK4TqEn24uLgAAAAAAAAAdIETnUMLdTY0X_27KY2cD_AAAAAAAAAAQXfH1sbSxEuiQC9e5gcEKzQAAAAAAAAAWlOwp8THaapDjttPXb9E-AgAAAAAAAACRIiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdgzv5ZcBM9qZL6-CtFKcz1wAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAABUqPeQ03nZ4m2CLoB308K-gAAAAAAAAAIVhlTljsBJDT98mVay1CuwwAAAAAAAAAFMeupuj3mN3g2ScGhhzmNFQAAAAAAAAF4iRdArD2BL-BvpLz4Pb_AYwAAAAAAAABIC_8b8QYLHmjQu9l_QeSByQAAAAAAAAAUpkqcXQWLIjtT71JtuIAr6AAAAAAAAAAG13EjbA0IjpuaU_N8fi-CjwAAAAAAAAAHwmGhlkvWzfTghgQ1sZAecgAAAAAAAADX5EcD-U0cxRtdESeN-UEmcwAAAAAAAAATuezlLZVYMF9cbBEbxdsDcwAAAAAAAABIgpbgHn7e4Kz5N3-pRcz_dAAAAAAAAABLr0viM1MkQFoluKwRuIJ7LwAAAAAAAAABFGycG9AEWPVJe5tbz77UPwAAAAAAAAASUJNt6Wr7juWI2oGMxpHwHgAAAAAAAAAc-1qdgNrxzH--duaVR1QSFQAAAAAAAACVSyklCBn51Vp_g9q3KLAvZwAAAAAAAAGvnD7QKbPeresstocfBtl0cAAAAAAAAAGPN2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAZE5r53-92up8rkLVW-WJnRgAAAAAAAABs-I0qeKDe1hMr58wzZHuN2wAAAAAAAADfbLRnm0K2LnF8O3sUIvVtEQAAAAAAAAAFYUqlosets6-rXKgChfDXoQAAAAAAAAAfnB7ASI-agyjwniBzr5SZ-QAAAAAAAAAfUxUrGKaPEq08l4l3816TpwAAAAAAAABeb_xouuKJL4pG8kohSeNIUwAAAAAAAABBsMxUjH933Dnrx5VGtrDpyAAAAAAAAABHck_MxLBdFaeX0Pe9TGo2LgAAAAAAAAAWRvgpC2THNLDZ9bIizRZhbwAAAAAAAAAQVA03thXQjqr1qC10qNXy4QAAAAAAAADLgS4BqKHRLy9ywAJxtWFusQAAAAAAAAEeVqmV2Y2Fi3wRyCsQN4PYeQAAAAAAAAAWjfbp-pxxSKb0OJYS2GhtfgAAAAAAAABeoUhUjXiuWVHPsx8RwRzwzQAAAAAAAABIKU_GIij1U8sKrDqeuRiAqwAAAAAAAAAjS4dKKBsXH2ynC2dCCnVoPgAAAAAAAAB2K7SbFHXdVXATGhidHvqjHQAAAAAAAADfzAEpMWy9RmzsKDLga2bS_QAAAAAAAAAR", "types": "CANIBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XpbIl_9EImYumBlz--Ys5g"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjD5cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLlsWcEvvhuguaGYCmGWrnWRz1QAAAAACHknecEvvhuguaGYCmGWrnWRz1QAAAAACFo-ZcEvvhuguaGYCmGWrnWRz1QAAAAACEM1p", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JfAsfEbGGsaRpXuoYj9m0A"}} +{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI7B_NxRB-tFVbAaTDiew0fwAAAAAAdyiE7B_NxRB-tFVbAaTDiew0fwAAAAABTOLj7B_NxRB-tFVbAaTDiew0fwAAAAAApa927B_NxRB-tFVbAaTDiew0fwAAAAAApYR_7B_NxRB-tFVbAaTDiew0fwAAAAAApVa47B_NxRB-tFVbAaTDiew0fwAAAAAApVOI", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ioZVBmSM638A7ggN3sTWag"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsgobx9jqjuemtiUm8j-_s73zQAAAAAATTx9bx9jqjuemtiUm8j-_s73zQAAAAAAQE2Pbx9jqjuemtiUm8j-_s73zQAAAAAAQDPXbx9jqjuemtiUm8j-_s73zQAAAAAAlA2vbx9jqjuemtiUm8j-_s73zQAAAAAAlAxkbx9jqjuemtiUm8j-_s73zQAAAAAAQE_Kbx9jqjuemtiUm8j-_s73zQAAAAAAnqoybx9jqjuemtiUm8j-_s73zQAAAAAAnquObx9jqjuemtiUm8j-_s73zQAAAAAASVt_bx9jqjuemtiUm8j-_s73zQAAAAAASVX7bx9jqjuemtiUm8j-_s73zQAAAAAAZUDT", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1z4pn2KqG5AbQbk7sW9s0w"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIZy27xNCwe4jKCqsA2srxVwAAAAAAAAAoLZeO9S9IXnalwT9Nl3ihfQAAAAAAAAASxWwq3BVQzbzp00-HYFOW_wAAAAAAAAB094QsDIL7bUk7Oxas7lNqGAAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJSYSSbioufiMK4TqEn24uLgAAAAAAAAAdXL_fwLkYkxkYcfgosK-fdQAAAAAAAAAQO_mHTPntGTw_EnF-rkI8XgAAAAAAAAAWiiLZnxbVRTQPtvWA0miuyAAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdfJIr5vQAn81_ytZBhz6xpAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAABduSa7rLKjwnZa9hewarfUgAAAAAAAAAIHMo9CJkBJDT98ldAVMcaFwAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAJMTTvJ5_z-0po5hbnYEq-wrAAAAAAAAAAwy_GIpaxCX5IFnS0F_BXM3wAAAAAAAAAYVEVSaDZsnx1_EI9pECvQKAAAAAAAAAAOxitMwS4ViC61BCy_8U7u2AAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAChAAnABuJtrWflPvotxCoPjQAAAAAAAAFDgM-zvldT2mxZOhlxJvpRXwAAAAAAAAAXc0OkgT3_p45M6FsCvH3WnQAAAAAAAAAVBrUFbWJQXA38LKOgrDwJigAAAAAAAABJoOz1jSRZNClfuKPM_yWNFgAAAAAAAAAG3b73aK2YxmWJY2Of38z3nwAAAAAAAAAGPm8yvojd4enECfI_5pXoCAAAAAAAAAAZR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWO1O08mBKiFTCL7FfanfkYAAAAAAAAACwyVj-DhlWsbRwk1ix0xTSnAAAAAAAAAABMnYM9B90Ha_6l2oFXip8PgAAAAAAAAAl", "types": "CAM4BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1yWTkeS1nBqh-9vB-Az9vQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB8_Hwz5k14PsCcDvFyUC1kmlV3QAAAAAB8_Xkz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHphgz5k14PsCcDvFyUC1kmlV3QAAAAABG-awz5k14PsCcDvFyUC1kmlV3QAAAAABG7rB", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XBOHr121AI0HBXMVp0ML0g"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAKGFseY0uix2hxT0Di8k7-3AAAAAAAAAATslf6t7FJIQoDjMJN42BVyAAAAAAAAAASDnVdZhb1BpdhjHCw8ZRExwAAAAAAAAAsXXAlTOaS8XqXSJc4sB0AFgAAAAAAAAAc_HosPUkm1pBrBKmzlvLxfAAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABBEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAF", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "QrSIhi1YKLPldBlpW6KCMw"}} +{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kSHpn8pwAHiX47J0IzMtXvwAAAAAAE8PJSHpn8pwAHiX47J0IzMtXvwAAAAAAE774SHpn8pwAHiX47J0IzMtXvwAAAAAAApes3aS07d9PG4lc4UzuBbVWzQAAAAAAEUos1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAmZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFy0p", "types": "BwMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iJIduktnCtafB-uneC0bag"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATtrHlBrKqhPY4wIsFmpvpGwAAAAAAAAAHfqX01Q_XnrWTMFwMltCSzQAAAAAAAAAcr6OQqChD9ydemA0TTpv7WwAAAAAAAAAByBhEFtyRRCvGIybyDtzQDwAAAAAAAABSUplh6FQYqmDpNUAIFNEKQQAAAAAAAABDiO1mMPtAsXsWYZtGrgAdjwAAAAAAAACoMUGOz76uheRW_JUVWNsoVwAAAAAAAAAFGBhILDYlssyThkp8tHozyQAAAAAAAAAMlN083j_rdg2B1dvviOhFMgAAAAAAAAAGx1wras1gluyTP-Y9Ht2HeQAAAAAAAACWORVIxASD4wCMIrAYPIVrNQAAAAAAAACVqZY0RfBvPvNV6NUJtoKH8AAAAAAAAAAN5LiiYvRk2tAe8r0a1hyONQAAAAAAAAA_n3ZXM9sPxSI10_imjZ8XBgAAAAAAAADdL8d7ZrNDNNkKQuLYAtJHoAAAAAAAAACVD_SFoBfOPuB9mtXdOIQrvgAAAAAAAAAevS5pENec6C6ecYnUlpn6vQAAAAAAAAAD2m4VqGfi_IE6FL0pSfE_-wAAAAAAAAAQYaC_rTr5WsI3HFN2LUobYQAAAAAAAABCXJOIidNeiRs9_ZATFdFs-QAAAAAAAABB2Tuo-C9u5ZQSFYDa7WjfzAAAAAAAAABMkqENcUInN8VvKd6Dc2jO5AAAAAAAAACqrMKxqCJ9f_oijK47ftj5yAAAAAAAAAByNWHLfNvctW-FBwe-kXor2AAAAAAAAAD7WQ6bT2fa54MaJ9Zp8xloAgAAAAAAAAAIeAk7Sj5gS4SQJLCKXayQTgAAAAAAAABQjHMFmtkVIMASmw7nhGBacQAAAAAAAABUwl0U5vJFJokP-keLWBjMkQAAAAAAAAAJDUWYePMsNbo7HGAKMdOLTAAAAAAAAAAUkEwl_sgOS_oHg-LLjsCRbAAAAAAAAAAA", "types": "CQM_BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2MWICwt3pfU5YXQDhC222Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChGUEXT4fd_WKeR1cE-hlLelCQAAAAAAChFAsXT4fd_WKeR1cE-hlLelCQAAAAAACgS3mXT4fd_WKeR1cE-hlLelCQAAAAAACg6fVXT4fd_WKeR1cE-hlLelCQAAAAAACh1Di6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCD0", "types": "CAMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "R-MkMEYdnTYQw3iP30ljBg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvU6cEvvhuguaGYCmGWrnWRz1QAAAAACLroTcEvvhuguaGYCmGWrnWRz1QAAAAACLsWTcEvvhuguaGYCmGWrnWRz1QAAAAACLsmncEvvhuguaGYCmGWrnWRz1QAAAAACL74lcEvvhuguaGYCmGWrnWRz1QAAAAACLvco", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hEqXG4dGhoAlQU12ZvBUfw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAKGFseY0uix2hxT0Di8k7-3AAAAAAAAAATslf6t7FJIQoDjMJN42BVyAAAAAAAAAABFg2KiEq3-QS_hoWS2OekUAAAAAAAAAAG58SSP1Jorf8j_W_ngTyDbgAAAAAAAAAKmoug4ghdvV0L6kc1EBfG1gAAAAAAAAAMEv5ZvILr4tvntiwSPeUhSgAAAAAAAAAI1dAR1DRu30HO0nOIbN0CKgAAAAAAAAAFGMI3PZtY4pqLz85PHavuaAAAAAAAAAAH0LGXmFocz46kL18OXWxszwAAAAAAAABkYQC-zo420OhfkqInQzaDKgAAAAAAAAAgnZYX4eDXJe7LJpXvPCTaIAAAAAAAAAAQZ9_UyIubYa9oU2-prK3THgAAAAAAAAApBdO63C4A6h8Anj1Ds4O63AAAAAAAAAAO4FMn0JjDEz3IGzvUs9jYxAAAAAAAAAAS0qwjk_eyc4_FkJ37kZ5mbgAAAAAAAAAADHMn6ZZcNA6-RmrkDCI6igAAAAAAARUIeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAR6g", "types": "CAMgBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "x5rAkl-7qPFuolZlWPAkUQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlZUcEvvhuguaGYCmGWrnWRz1QAAAAACEea2cEvvhuguaGYCmGWrnWRz1QAAAAACEf3-cEvvhuguaGYCmGWrnWRz1QAAAAACEgJx", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "HYBNI14FI-2vtAX9So58qQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABF0kYxe-SHgukLEpCkawSk1QWAAAAAAABF_0Yxe-SHgukLEpCkawSk1QWAAAAAAAA_GNYxe-SHgukLEpCkawSk1QWAAAAAAAA-0d", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YvWyWLhAImSPM-tyoadCrg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgm-K", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "36zXeWUTQ3GViRMIlZa29Q"}} +{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBAu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAYtbf6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgVN6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOBI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN216tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIer6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlH3T6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIYH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIRA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAl1AE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlzoH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlmsw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAll9_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAllGK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAirCv6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "FgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GdbfleJKJp8VauALzj2x-g"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADA3-aZ3CKaS4aU08RhYA19y5ITQAAAAADA3RQZ3CKaS4aU08RhYA19y5ITQAAAAACQxvsZ3CKaS4aU08RhYA19y5ITQAAAAACQxqMZ3CKaS4aU08RhYA19y5ITQAAAAAB_vJaZ3CKaS4aU08RhYA19y5ITQAAAAABwXIKZ3CKaS4aU08RhYA19y5ITQAAAAABvwNWZ3CKaS4aU08RhYA19y5ITQAAAAABvyvbZ3CKaS4aU08RhYA19y5ITQAAAAABv3T_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSGZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSEe6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjYS6tVKI4mSYDEJ-ABAIpYXcgAAAAAALz_p", "types": "CgMLBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "uwwu83-7ZLM7s_6zrMA_XQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAADeK66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALt0Z6tVKI4mSYDEJ-ABAIpYXcgAAAAAALtxs6tVKI4mSYDEJ-ABAIpYXcgAAAAAALsuZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAANyj06tVKI4mSYDEJ-ABAIpYXcgAAAAAANyga", "types": "AQMHBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SeAPiCFUMLwS-3Uu67LXhQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wrIXT4fd_WKeR1cE-hlLelCQAAAAAACkSBe", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "b9P9XdFCm07W5Euc0idp6g"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUn4", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "moGFQ5GRQH67-tZkDxelhw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAHGeUEknoTlPZT0JPs_cYSwTwAAAAAAAAAOQTjf5Ta2BqWKmmdF_ECRlgAAAAAAAAAdCfiji-HVozsgpxvJKchgUAAAAAAAAAAdaI2zTChMADjZ-wxAxvb-PAAAAAAAAAAElQyhpD_c93PUFLAOMsmBKgAAAAAAAAAA", "types": "CQM7BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "QZEW0QZHlZo8Ns75Lvqypw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABSEXoz5k14PsCcDvFyUC1kmlV3QAAAAABSDFMz5k14PsCcDvFyUC1kmlV3QAAAAABSCuaz5k14PsCcDvFyUC1kmlV3QAAAAABHZsIz5k14PsCcDvFyUC1kmlV3QAAAAABKB57z5k14PsCcDvFyUC1kmlV3QAAAAABLLQZz5k14PsCcDvFyUC1kmlV3QAAAAABK3KAz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTih6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinDe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnJ0g6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnJsR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi08L6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi0ex6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi0dj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnNGr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAit8t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnI8b6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CwMUBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "uNmMFG6CGOZcyHdySFqBxA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAABvZKLj_deYRtPDewbXBnoroAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAwy86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAAFYTifPIvND7b7ICq3M7OVoFwAAAAAAAACUEVrDMxSBi7bvrsiLPE4SVgAAAAAAAABgZyityGDpQJw1YigaXArSXwAAAAAAAAAFy9wAruXr5eENJ6q-yQaEgwAAAAAAAAAIhmcQZSO0MWvUeViJZfR2DwAAAAAAAAC7d55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsK06i4sR69nVCcg3FbwNeuwAAAAAAAAAT90J0K9KRqjzo3OWaVDBuGAAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBAZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMoavQ7EacG6CR4rzcFaNFEsTQAAAAAAATs0", "types": "CAMxBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OfSmw3kpU5HlRON7vl__6Q"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXt3W", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "j254-j_AtOG3kQK-qvpPOw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vNqXT4fd_WKeR1cE-hlLelCQAAAAAAC-odPXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_Y9XT4fd_WKeR1cE-hlLelCQAAAAAACiFHoXT4fd_WKeR1cE-hlLelCQAAAAAACiKQzXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "FQMCBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OFdK4mvMOorRf1NaABBLdQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADK74KZ3CKaS4aU08RhYA19y5ITQAAAAADK60-Z3CKaS4aU08RhYA19y5ITQAAAAAB0Hw7Z3CKaS4aU08RhYA19y5ITQAAAAAB_wLIZ3CKaS4aU08RhYA19y5ITQAAAAAB_wOLZ3CKaS4aU08RhYA19y5ITQAAAAAB65eYZ3CKaS4aU08RhYA19y5ITQAAAAAB6zHMZ3CKaS4aU08RhYA19y5ITQAAAAABw46mZ3CKaS4aU08RhYA19y5ITQAAAAAB7Af3Z3CKaS4aU08RhYA19y5ITQAAAAADRyJbZ3CKaS4aU08RhYA19y5ITQAAAAABzIEpZ3CKaS4aU08RhYA19y5ITQAAAAAByyXAZ3CKaS4aU08RhYA19y5ITQAAAAABwOdiZ3CKaS4aU08RhYA19y5ITQAAAAABv1M7Z3CKaS4aU08RhYA19y5ITQAAAAABv3UA", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Ql4tDv4iFbtic0VQeulf5Q"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDLZcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxk0cEvvhuguaGYCmGWrnWRz1QAAAAACEPho", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mtayBA9s8mOJo0A3l6b7fg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAABH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAJde7YYWaQTMh8P2PCVzA2a8gAAAAAAAAAwm140cnmnDMXwCTqH-lotHAAAAAAAAAAEm140cnmnDMXwCTqH-lotHAAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_-7j_39ErPDFgo4Z30h-mQ"}} +{"Stacktrace": {"frame": {"ids": "NH411-U9ZJbhx9KntPIOtAAAAAABaPkCNH411-U9ZJbhx9KntPIOtAAAAAABZrvCNH411-U9ZJbhx9KntPIOtAAAAAABZriBNH411-U9ZJbhx9KntPIOtAAAAAABZqvENH411-U9ZJbhx9KntPIOtAAAAAABZpqTNH411-U9ZJbhx9KntPIOtAAAAAABZAAyNH411-U9ZJbhx9KntPIOtAAAAAABZhKVNH411-U9ZJbhx9KntPIOtAAAAAABaTlz", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ixtZ9gtpPBhoJQLf1mczkA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAPx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABWdRMG3BjNfH2se-egabnU-QAAAAAAAAAjpv2BnGF3DU5EF7_9vBhh5wAAAAAAAAAj_F5LSDLIFKxMSmE4mnWHzgAAAAAAAAAIQ5prAre2OuRCakrlnLYmSwAAAAAAAAAFpu-N4aBOZsn4VU4z7Imv8AAAAAAAAAAF9ZcPzi6i1uzjxExCGCn20AAAAAAAAAANlqnkRSi2l38NtuG1By7gSwAAAAAAAABFXLN55eJ2HplxP0Fb2YBmOQAAAAAAAAAJ_6rkq2S7o8rMRQJ9AofzJAAAAAAAAACLjwkBY0s-EHDmaMTnMHI2lgAAAAAAAAAYLLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACvqKrM4v33j8Ui9JyIz2QXDgAAAAAAAAA4ZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABYEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAFm3tIqGWDOzCH_q4z0bYhiAAAAAAAAAAzPEbpT_8Xljn7u1j5oJzfHQAAAAAAAAEVI_i_3enTR60S4qDgQ3zxCQAAAAAAAAE9ZFPsdInlq-bcPlmCOSdVJgAAAAAAAACFt8_l1_Cm8vU3xJ2Ui5mFagAAAAAAAACl", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hyaOwrYy-y6_MqiyYC7KDQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB8088z5k14PsCcDvFyUC1kmlV3QAAAAAB821Wz5k14PsCcDvFyUC1kmlV3QAAAAABKEElz5k14PsCcDvFyUC1kmlV3QAAAAABHmTSz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAANp-d6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAATxBS6tVKI4mSYDEJ-ABAIpYXcgAAAAAATw-16tVKI4mSYDEJ-ABAIpYXcgAAAAAAToQ_6tVKI4mSYDEJ-ABAIpYXcgAAAAAATsSN", "types": "CQMMBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "l7TOnfsZ0Oz_cxAh8t_TMA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmq-", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "tNBOoQnan6B2t-te8ufD2w"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABm1KYxe-SHgukLEpCkawSk1QWAAAAAAABRc5Yxe-SHgukLEpCkawSk1QWAAAAAAABBkUYxe-SHgukLEpCkawSk1QWAAAAAAABBYkYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAAA_mS", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZLm5Ji1NQahkliKAlwO0Lg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVP4GdI6f6aagjBxBAKz-KIgAAAAAAAAAMqd26ee2y8slhneyPRIcQAgAAAAAAAADEwKREEYJF8V2B2guAeJRSCwAAAAAAAACoWsBETJrPecSrGYvg781P3AAAAAAAAAO3655cFkYo375T8NGzpy-aFwAAAAAAAAAXhve4jX92AzYM2N-JeQNG2QAAAAAAAAA1uoQ2M4bRS4Qydql36um4PQAAAAAAAAAu8Zl1Hn34Qq3KbfhSotUixQAAAAAAAAAcyg6hUybbKOuy2Th8HYOfDgAAAAAAAAAQwAR4gk273_ooOZdD1tA5fgAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdXgVcJKYEqhGaSbBYfKBXOwAAAAAAAAAQXfH1sbSxEuiQC9e5gcEKzQAAAAAAAAAW1w2R0Z8nd4XHXpj3W-TC0gAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdctx_9RVQASujUdCT9XDhwAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAAB06nqjE-VI9IYqWvJ2OibVQAAAAAAAAAI8Lr1AwdmXjQ6E8sJ1LQOsQAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAJMTTvJ5_z-0po5hbnYEq-wrAAAAAAAAAALUnYc51PyOPYnuy2V8LJr8gAAAAAAAAAA", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NwpLm8pY0dI9UQ5ChDYmZw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAi46VYxe-SHgukLEpCkawSk1QWAAAAAAAi5BcYxe-SHgukLEpCkawSk1QWAAAAAAAi1O1Yxe-SHgukLEpCkawSk1QWAAAAAAAiyatYxe-SHgukLEpCkawSk1QWAAAAAAAapsiYxe-SHgukLEpCkawSk1QWAAAAAAAi4LQYxe-SHgukLEpCkawSk1QWAAAAAAAapx8Yxe-SHgukLEpCkawSk1QWAAAAAAAbE-BYxe-SHgukLEpCkawSk1QWAAAAAAAbFOeYxe-SHgukLEpCkawSk1QWAAAAAAAbF3kYxe-SHgukLEpCkawSk1QWAAAAAAAbH5SYxe-SHgukLEpCkawSk1QWAAAAAAAbFQ4Yxe-SHgukLEpCkawSk1QWAAAAAAAbG9pYxe-SHgukLEpCkawSk1QWAAAAAAAY89EYxe-SHgukLEpCkawSk1QWAAAAAAAY563Yxe-SHgukLEpCkawSk1QWAAAAAAAAMTTYxe-SHgukLEpCkawSk1QWAAAAAAAAOgr", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZSL-nv9vuOQuUQF3uUa-Uw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAJH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAA9e7YYWaQTMh8P2PCVzA2a8gAAAAAAAABE_p12Y0DOk4cFEn5gGz9psgAAAAAAAAAE_p12Y0DOk4cFEn5gGz9psgAAAAAAAAAA", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Vy0Q-WSF5dbbwZxkb9slNw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxf3Z3CKaS4aU08RhYA19y5ITQAAAAAB0DI1", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Jpvgat2uryAeQWobxLhTDA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACujkfqsU9w34yk0ipcsxq5HgAAAAAAAAAO7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAFk3HyWSdTGgne1xIId1mIvAAAAAAAAAAzp0_NTCpSk9QXa6fNd9afdwAAAAAAAAAFmVBN-6O2zeIv8GsCRrlSswAAAAAAAAAC7skvoqQ_JlmRN5w43B7kuQAAAAAAAAACP_4qycvxHBZREHniLmgHbAAAAAAAAAAFZa0P_0e34shcw6VJJ_B5XgAAAAAAAACWLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC3OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyGEsTGLCNH21piOrMPoln5uBQAAAAAAVgFD", "types": "CAPABQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "CrhbEM7QPhMiIIyEY_Jibw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAC0XP_Z3CKaS4aU08RhYA19y5ITQAAAAADBlVKZ3CKaS4aU08RhYA19y5ITQAAAAADAqPIZ3CKaS4aU08RhYA19y5ITQAAAAAC12lqZ3CKaS4aU08RhYA19y5ITQAAAAAC14oVZ3CKaS4aU08RhYA19y5ITQAAAAAC14daZ3CKaS4aU08RhYA19y5ITQAAAAACsn_sZ3CKaS4aU08RhYA19y5ITQAAAAACsuuEZ3CKaS4aU08RhYA19y5ITQAAAAACnQugZ3CKaS4aU08RhYA19y5ITQAAAAACIAqaZ3CKaS4aU08RhYA19y5ITQAAAAACtAiPZ3CKaS4aU08RhYA19y5ITQAAAAACsxgfZ3CKaS4aU08RhYA19y5ITQAAAAACrUx8Z3CKaS4aU08RhYA19y5ITQAAAAACrU-CZ3CKaS4aU08RhYA19y5ITQAAAAACFrCKZ3CKaS4aU08RhYA19y5ITQAAAAABtOAr", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "s8yhIwZ6Oz8mvRuL2uJo7w"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAABcQrw_bSROFZCKPRirqN5crwAAAAAAAAAEmNKQ_cGBX-X-PxTw057WHwAAAAAAAAAoPe3ctc9W4J1u_ZCOerqNzAAAAAAAAACGnZmkelHuL2rN_AY8H-OMEgAAAAAAAAAFgmjUzsxRLEujWJFPXkncMgAAAAAAAACLzw0wKeXSScV9zb0GbnSg3gAAAAAAAAD4xojp5VBQ5xwqQiCbnXCnEQAAAAAAAABJUzpT8KmlTneCrZW0Xa3m6AAAAAAAAAEgwELFL8jGCRMErF4_7iFL_AAAAAAAAABJGWaNS7Aannj1ZssQUxZReQAAAAAAAADM6euAcrRks5bLxxAuk2RtfgAAAAAAAABpOBdJ094KTWSYvLD_Svy2DQAAAAAAAAAJwl0U5vJFJokP-keLWBjMkQAAAAAAAAAJDUWYePMsNbo7HGAKMdOLTAAAAAAAAAEgkEwl_sgOS_oHg-LLjsCRbAAAAAAAAAE1", "types": "CQMaBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "pztM9BQ-fjzy-dCQKNMjPg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOBSg", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Jh5qVq4UUQtN9O8WhEZ3nA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-9R0XT4fd_WKeR1cE-hlLelCQAAAAAAC-xp-XT4fd_WKeR1cE-hlLelCQAAAAAAC-tNEXT4fd_WKeR1cE-hlLelCQAAAAAAC-hiKXT4fd_WKeR1cE-hlLelCQAAAAAAC-hZZXT4fd_WKeR1cE-hlLelCQAAAAAAC8k6-XT4fd_WKeR1cE-hlLelCQAAAAAAC8tjlXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8suKXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8sfIXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8sfIXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8sfIXT4fd_WKeR1cE-hlLelCQAAAAAAC8qdoXT4fd_WKeR1cE-hlLelCQAAAAAAC8frsXT4fd_WKeR1cE-hlLelCQAAAAAAC8xFtXT4fd_WKeR1cE-hlLelCQAAAAAAC9YvIXT4fd_WKeR1cE-hlLelCQAAAAAACgVcEXT4fd_WKeR1cE-hlLelCQAAAAAACgUmmXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdEM", "types": "IwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OmFs5fBntP4og-nSnZowhw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_WBWcEvvhuguaGYCmGWrnWRz1QAAAAAD_XrVcEvvhuguaGYCmGWrnWRz1QAAAAACXxyncEvvhuguaGYCmGWrnWRz1QAAAAACETeKcEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEWLJ", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "E19vJ2JKuCizp7wSSskOyA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiGKmXT4fd_WKeR1cE-hlLelCQAAAAAACiGQFXT4fd_WKeR1cE-hlLelCQAAAAAACiKCvXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wc-PTMROXLRZy1BYLTP_Xw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsri8cEvvhuguaGYCmGWrnWRz1QAAAAAC1cZccEvvhuguaGYCmGWrnWRz1QAAAAAC1cdkcEvvhuguaGYCmGWrnWRz1QAAAAAC1gbJcEvvhuguaGYCmGWrnWRz1QAAAAACkkPncEvvhuguaGYCmGWrnWRz1QAAAAACktJ6cEvvhuguaGYCmGWrnWRz1QAAAAACl9LZcEvvhuguaGYCmGWrnWRz1QAAAAACl9PpcEvvhuguaGYCmGWrnWRz1QAAAAACl9UkcEvvhuguaGYCmGWrnWRz1QAAAAACl8_ZcEvvhuguaGYCmGWrnWRz1QAAAAACknIkcEvvhuguaGYCmGWrnWRz1QAAAAACkkRqcEvvhuguaGYCmGWrnWRz1QAAAAACkmcQcEvvhuguaGYCmGWrnWRz1QAAAAACkkGkcEvvhuguaGYCmGWrnWRz1QAAAAACEOYTcEvvhuguaGYCmGWrnWRz1QAAAAACEBMXcEvvhuguaGYCmGWrnWRz1QAAAAACEBr4", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-_xLuMKDp3FvMehau3GQaw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgKT", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "AJKJLsdONuhRTPCLgDAGRg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjD5cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLl0A", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ULHe6GiefdQx6dk4hoN8TQ"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqY6EgtQ4kMk_MBWrPUAFqVnYywAAAAABqY-OgtQ4kMk_MBWrPUAFqVnYywAAAAABqaRxgtQ4kMk_MBWrPUAFqVnYywAAAAABqag5", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ccfud6PDeDW3H-_qOx6reQ"}} +{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI7B_NxRB-tFVbAaTDiew0fwAAAAAAdyiE7B_NxRB-tFVbAaTDiew0fwAAAAABTOLj7B_NxRB-tFVbAaTDiew0fwAAAAAApa927B_NxRB-tFVbAaTDiew0fwAAAAAApYup7B_NxRB-tFVbAaTDiew0fwAAAAAApVxh7B_NxRB-tFVbAaTDiew0fwAAAAAApVqg", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "D-xRQQtf7YFLdo9-bwM7Og"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiFwcXT4fd_WKeR1cE-hlLelCQAAAAAACiINvXT4fd_WKeR1cE-hlLelCQAAAAAACiMJaXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIL", "types": "FAMCBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Vz9H3AqwucSsGrNwOSz0ew"}} +{"Stacktrace": {"frame": {"ids": "bx9jqjuemtiUm8j-_s73zQAAAAAAgAJZ", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "F9_iF4xLcSQJWgjKwnbw8g"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAAAP5hbYKj450LIcMxemzX-5PgAAAAAAAAAbBMkPKAR3xjhA9hAiL4J1DAAAAAAAAAACIU8u--NbxjOeMw1G028-GgAAAAAAAAAF1bYVLJaC5WBOgJdtA4ffZwAAAAAAAAAEBemXd-G6RDOwTOuPV3xpUwAAAAAAAAAVnKc55B3__dngRZpQx4dj-gAAAAAAAABEsTm2NJa4oF2xjv4OCkRO2AAAAAAAAAAoR-gRcWEmmQueFLieTf9cNwAAAAAAAAAC7p10TjlSnW-BHhdA3ldCNwAAAAAAAAA4ZPYGpHSseJG9PRYoGLBfTAAAAAAAAAAzUe_-5_LRHLwQQ66t4C_dVQAAAAAAAAABERQe6ysQs8a3Aewl2ODwbwAAAAAAAAAYAlYTZm3Udn5te27JKKjO8wAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAABkWkPRvktqhDDhVdutdfuAAAAAAAAUfhZSkKN3zNxr0HYuO2pqe5hQAAAAAAj8KrZSkKN3zNxr0HYuO2pqe5hQAAAAAAhBHuZSkKN3zNxr0HYuO2pqe5hQAAAAAAhAt3ZSkKN3zNxr0HYuO2pqe5hQAAAAAAbRcBZSkKN3zNxr0HYuO2pqe5hQAAAAAAbQ_m", "types": "CAMkBQYD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dLwiG7eG_m597YNX1x2oNQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvU6cEvvhuguaGYCmGWrnWRz1QAAAAACLroTcEvvhuguaGYCmGWrnWRz1QAAAAACLsWTcEvvhuguaGYCmGWrnWRz1QAAAAACLsmncEvvhuguaGYCmGWrnWRz1QAAAAACL74lcEvvhuguaGYCmGWrnWRz1QAAAAACLvg3", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FT_-S3dtxKMT-rFNNrYSGg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipGH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipDo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Zq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Ei6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjoZw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjn7-6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWvZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWrK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmMhf", "types": "FAMMBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cTlawyo3FAUMhdZaTUA-jA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7RXT4fd_WKeR1cE-hlLelCQAAAAAAC-pHvXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FwMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XDpp17zZ2y8xGuMEXN6JAw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7zyXT4fd_WKeR1cE-hlLelCQAAAAAAC-8B3XT4fd_WKeR1cE-hlLelCQAAAAAAC-ykpXT4fd_WKeR1cE-hlLelCQAAAAAACp71EXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCM6XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz9G6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzeZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFydc", "types": "EwMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7YQvcIQ6XYlQ3sXhTuhCwA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACB-bsZ3CKaS4aU08RhYA19y5ITQAAAAABwBiLZ3CKaS4aU08RhYA19y5ITQAAAAABs_bEZ3CKaS4aU08RhYA19y5ITQAAAAABtHRL", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "M7R5znigJFufzj0UY0YNyw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAADxyaNpzFvIPtiJi3LwjMyZHgAAAAAAAAGMUZ2NFNzh7BT3C3hRjMF2fAAAAAAAAAAMZB4dgn6zlvSqI5ZscpV7zgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1HYZxCzuz6LEXaDimozBLlgAAAAAAAAAQpMuceywkbX_kBQbNeyKYjAAAAAAAAAAWRHxLaEMnlCvBO70F4Bq3fwAAAAAAAAAFnisgr1RUcTVhb-d_TidN8AAAAAAAAAAugTkKo96ASvMgXyPTt69aMQAAAAAAAAN6Gs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAAAKzk_PAPIluouMAlyxqI2lSwAAAAAAAAALSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAAB7YY6rmsokuP0BKno7mbtScAAAAAAAAAAF3jzoaxecTMpMeDCGDwy-RgAAAAAAAAAE", "types": "CQMrBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "g-VGT148bDBcpUizwj3LXw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAENS6", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OmDWtDsllFFomem3Mdsdug"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALO-i40hQb92bY-JOhJrV2owAAAAAAAAAs6l-EHm0OnthNsvyaQcuYhwAAAAAAAAA4B0dgEMrPDFjx8i017hyU1wAAAAAAAABbYF3FgsmtJ5bq5eUQFvPU3AAAAAAAAAAe1MY1Nuqea_D-u-FFo2a_-AAAAAAAAAAly_zLcqsLm1pyxWcSerbeRAAAAAAAAAAclyFV4GQ8nA5PvKIS4z4KZQAAAAAAAAASL-p6HuZa7IZQ5P3VbWlkuAAAAAAAAAAAYq1Ak9_WYtjiRUK6jyz9agAAAAAAAHdO0rNuxKNw6YxtKvsF6kS_jQAAAAAAD-aT", "types": "CQMKBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hjsIDPN1mt0rvi6oNK-mzw"}} +{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimtb6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOK46tVKI4mSYDEJ-ABAIpYXcgAAAAAAlcA76tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbdH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlWJ36tVKI4mSYDEJ-ABAIpYXcgAAAAAAlsoG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlrpu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlqKz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlwjf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlN5a6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlNsK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlOPs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMub6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMqa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMWu6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgDv6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgCV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwA8J6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOBI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN1t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjNJshpS1QtdrBQjGg-LCbfqeSAAAAAAAAF9MSxgb26oKQwlt07if9woPTQAAAAAAACWp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk-pXuof2oKCX86V-_cQCuGg7EwAAAAAAAGuTuof2oKCX86V-_cQCuGg7EwAAAAAAAC58uof2oKCX86V-_cQCuGg7EwAAAAAAAChU", "types": "JgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5gHxlL9cUqgbqNJb1EYWHQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAABg1S9eFAopKcZX-VnW9ChdWAAAAAAAAAAD", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dnn0ifBzTRyMALBIYqyvxA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--RVXT4fd_WKeR1cE-hlLelCQAAAAAAC-7XmXT4fd_WKeR1cE-hlLelCQAAAAAAC-zdsXT4fd_WKeR1cE-hlLelCQAAAAAAC-1HEXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kAevgyPrUYMi1qMg2RT9YQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vNqXT4fd_WKeR1cE-hlLelCQAAAAAAC-ob5XT4fd_WKeR1cE-hlLelCQAAAAAAC-oi4XT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FQMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zOL_FYe-nRqaWD7IxkOLoA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAP4nyMCPt5M-rbb158Tnrz3sgAAAAAAAAB3DSeW5vniUG6RwPchwmi1uQAAAAAAAAA2bCBdTuDS0DbCDGTJHRgQHgAAAAAAAAAqmbtJBLFirmHoLdxa0M274QAAAAAAAAAGmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAANIfYj4waw9fP9op8fikoTJgAAAAAAAAAGmHLbruajf1ewhD5eRLIwPQAAAAAAAAAEIfYj4waw9fP9op8fikoTJgAAAAAAAAAGu80wzeYkSnSlt8hhdfSXpgAAAAAAAAAsaMdAw5F6bqw1nsXGt00a9AAAAAAAAAAT5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3R8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAANJa8NlMClggx8jaziUTJXlmWAAAAAAAATrU", "types": "CAMxBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DlLEick1QmXUtEBA2i1OXw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAJH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAAie7YYWaQTMh8P2PCVzA2a8gAAAAAAAABE_p12Y0DOk4cFEn5gGz9psgAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SwUuykb_nSAgPkD2YwlSOw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSIeXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdKU", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "s8_yXcGg1yuUwAAmPr0kGw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAABcQrw_bSROFZCKPRirqN5crwAAAAAAAAAEmNKQ_cGBX-X-PxTw057WHwAAAAAAAAAoPe3ctc9W4J1u_ZCOerqNzAAAAAAAAACUA80fpNwLg5UyZGOl2HXL1wAAAAAAAACvw_cxYz8MnUesAVA7XOw_bwAAAAAAAAATGWaNS7Aannj1ZssQUxZReQAAAAAAAAGHgDRAAy1IwcF0IR_YOLzWjwAAAAAAAABEgw-R6elvRCziXgbmYn0NGAAAAAAAAAAGStdff30sTwwMW3207S4hcQAAAAAAAAAOrCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAENAHbgjE1mrEUxDWK3HkjL9AAAAAAAAAAXMgCiOnnGW7RnGD1RtS_HwgAAAAAAAAAE4AOC1otNYKhZE8ncURFrlgAAAAAAAAF5HC0gC3BFwdNWsLtKomq2gQAAAAAAAAAlA8Qhsp8jYj9bPQN6UkmXAAAAAAAAAAAh7XuwAERz4-wOtMHIT2RfpgAAAAAAAAA8fMKxLLA4Q_xaCv6rBjpL3AAAAAAAAAArbaJN9j1LYjOZdIwzw7PYdQAAAAAAAAAJp6M7RL_7D-Wh7RG9qBPO-QAAAAAAAAAFeLa88eGD5YHpas6x1G8apQAAAAAAAAAA", "types": "CQMpBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Ocw-0y52e0CJonP7I2wpcw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7RXT4fd_WKeR1cE-hlLelCQAAAAAAC-pCkXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJUg", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GmqIw3uB8H5NzQ0n1rlvLw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbKFXT4fd_WKeR1cE-hlLelCQAAAAAACiGWEXT4fd_WKeR1cE-hlLelCQAAAAAAChWnJXT4fd_WKeR1cE-hlLelCQAAAAAACgUTFXT4fd_WKeR1cE-hlLelCQAAAAAAChz7g", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1Luv_4XOIdCXl2mmqOn1Ug"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mn2XT4fd_WKeR1cE-hlLelCQAAAAAAC-nUyXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hHiIhdRmVNFS978M5K1l7g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAACUcj5Iicnc1YHT-TWyg9rL5QAAAAAAAAAffO_gJBPd8E-RahoVIhDflgAAAAAAAAAB8w2ZGyVQ-aMnL_pA1hWbwgAAAAAAAAAy76oMN5gawXJbUdBHZW56vAAAAAAAAAAEaK7zvL-PqvTlxTrdlldaFAAAAAAAAAADsimybevA8DW5tgv6lrGi5AAAAAAAAAADuDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKcG5W-PDYduXZ1DZFU5bdYwAAAAAAAAAfX8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtnY6Bz6koyx0B67n9HdjFUAAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKO2hSFZZOeE5g1kTv31qAYwAAAAAAAAAoX8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtnY6Bz6koyx0B67n9HdjFUAAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKtVvvb6Z5DEr7tZFzbFRlggAAAAAAAAAGNdurIec2eVknw5UWeyAGhAAAAAAAAAAg_OURcYkX0iBxmyshrTvm6gAAAAAAAAAXK68quRzmwMwkh1BjI5vLeAAAAAAAAAAhY_ur9VOSDEwVLljoZ7w15AAAAAAAAAAEQXvaGnSY0e9Ndzfl5fNy7QAAAAAAAAAVu3PdJ9uaY7J6wq8TpSw5VQAAAAAAAAAbFyvqj99pkKDWLuJmqlMKOgAAAAAAAAAMSpuVyl1yybAmI0lABPU6JwAAAAAAAAExdgWkppYlr-s8Z84eOTb42AAAAAAAAAACY1yo-8cTmG-L0M13S3Gv9QAAAAAAAAANrO2U8bCEOPtVR0fJrGRR8wAAAAAAAAAOk_OXYkZFyzIVwSwT1Fur7gAAAAAAAAAFa8XYoPW9pAQaMdeo2T4gfwAAAAAAAABM30LKpoivW5ehYDbXlKRqvgAAAAAAAAAG8AK2DMaPRPJBJPIbAxg5BQAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAAqd6J0rNuxKNw6YxtKvsF6kS_jQAAAAAACMlv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_NQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaQ66tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZmt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKTe36tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ5Qy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ4C76tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ0CJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYK2", "types": "CQMmBQIDCgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "S-v0N2UaZBZCRQFvLWh0mw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADSZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABCAZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAGrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAuU-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABTHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAIiuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAWyQLW28sZ3rpLXAl8a-XdLgAAAAAAAABnWIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAIKCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAIQRW1om0CtcYaE4B8xaBEggAAAAAAAABGAZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYlCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAACNHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABuHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFP1rXbpjewie805zI0BHMvAAAAAAAAAAILN3NdhSYKxRbaqnM5W9FBwAAAAAAAABpR-HVaw3JZ2IsajBZdLbC8gAAAAAAAABKKnKBdeWKnQ8CH5bzvx0i6AAAAAAAAABK-QN0Lznzz3LjWKMZzZD5rwAAAAAAAAAIeEXFmSmLstwTaBBVp_eSTgAAAAAAAAAFHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFeS9qs83Ev5DGIkgRm0VL-gAAAAAAAAAUem8QMqpxX9eEmdxu2AmtFQAAAAAAAAAPTR0CnebfBTQ0MB6Lw8cZBAAAAAAAAABv8kz0sRC3Fb0ahbrci4PVAgAAAAAAAAAYGgYuOINmwLJxsjP-M2E9cQAAAAAAAAAXjIXiJ_3QIrjPxWXJm0vTUAAAAAAAAAAGbPdR4mcydIF6d5I7BNRoXQAAAAAAAAAHotkeOgHMDZdOlA7GywTS3gAAAAAAAAANeBe2TV8VA2V7lLyhiCvcHgAAAAAAAAAEclNKHmin0SttGhUDhj4qagAAAAAAAAAH68m2CwWM-Ledaj5WNl9lhAAAAAAAAAAqwMYFsNM0woNzFGwcp47vbgAAAAAAAABGEh0v14Wp9mB3u5tYha0hzQAAAAAAAAAmwSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFbhnM-182eA1jGyBQl8pMugAAAAAAAAAU4pL5iWdAziHKM6VzojymqQAAAAAAAAAGX8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0g4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAWMCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc5430MZlAMqI5SXd_yT5HRQAAAAAAAABcHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFN7LIGw1erb09TPWj8M9ehwAAAAAAAAAYwr21gCsicBxbZw2IJaNDDgAAAAAAAAAGEh0v14Wp9mB3u5tYha0hzQAAAAAAAABDwZ09eiIX1XgrymZWZ5BnrAAAAAAAAAAH7kiwTAFzycT-wgooymyU5QAAAAAAAAALLFiOeIpjbAGuoHCaoCuGBQAAAAAAAAA476ZQdAl2euBIN6YcqNHYDQAAAAAAAACQfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABP6WZ8beuV9qvYQN2_0rUbQAAAAAAAAAdWETDtAYgv6Jkvw6xLkpLwQAAAAAAAAAFzTg-1BaqPve5RYYrhWqKBgAAAAAAAAAHeYOPSEoq5FFmdpvYTsQ9xwAAAAAAAAHE2u2jPMdq36h9BOg_kllzLgAAAAAAAAAFajJdsnOIBpdo6hxvZuINSQAAAAAAAAAImSBnbtksrVvKstlIID71bwAAAAAAAAAUHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF4JxgAcphLAEsoWC3fPoUUQAAAAAAAAAMneQ9aDSiXyM-ZtdfoiCRFAAAAAAAAAAGXFsyX0Vq94TuMs7Bc44FAwAAAAAAAAAFhT_GFd-d817AZqi9jIee6QAAAAAAAAAUx8ERETcapIt78IXSEO8DRwAAAAAAAAACaLOl6FCWtZ16Qk1Y0IIBGgAAAAAAAAAG_CTrWCBcF1yntIOzlzRqGQAAAAAAAAAP1HXZZ713KyUPF_V7-YXiGAAAAAAAAAAG7qKsj4xn8s1AMSf99ASSjAAAAAAAAAAYt5ImPROd9wzf5BDFezVfygAAAAAAAAAG8AFkU9EDwekeQG-iHB-52AAAAAAAAABg1oBnNdsJQEj_XlDQgtQSnwAAAAAAAAATJYgcp9Kzkx4e4hFu_rVhNQAAAAAAAACBS3oYjBa3aRK5is2l8pi-3QAAAAAAAAB7S3oYjBa3aRK5is2l8pi-3QAAAAAAAAB7S3oYjBa3aRK5is2l8pi-3QAAAAAAAAB7S3oYjBa3aRK5is2l8pi-3QAAAAAAAAB7S3oYjBa3aRK5is2l8pi-3QAAAAAAAAB7S3oYjBa3aRK5is2l8pi-3QAAAAAAAABAGPPIIhc9JBDF0bex-RCt3wAAAAAAAAADql-uKAi1beGz8RyiqP5WDgAAAAAAAADJ_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAACdJYgdZ6MFANs6aW-kJSCJAAAAAAAAAAYW19Tjw-jwIbyufOKZLiEmQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAA0aeAC4XpbxqxubqgoasMaQAAAAAAAT0gbx9jqjuemtiUm8j-_s73zQAAAAAAcXb6bx9jqjuemtiUm8j-_s73zQAAAAAAah2sbx9jqjuemtiUm8j-_s73zQAAAAAAahlKbx9jqjuemtiUm8j-_s73zQAAAAAAaics", "types": "CQOwBQUD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "qSWFZpeBtwC5ThJEUqyN8g"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_-Qx-pCy53U7YabuA5eb0fAAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAcpSIXlNYnJYwCILAJFTEzSwAAAAAAAAAGTyuf4RNGIxt-ueaCsLj22AAAAAAAAAAXvSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0qlujNL7db72ZwWHkSPq1iAAAAAAAAAAa8tJujVK0pdTWlucWIQYskAAAAAAAAADWSXFZShc93P7Br4wzVi_TSwAAAAAAAABGl8by2NZ7WjCFmKmn5LkVDAAAAAAAAABNJj6ja2Wbkf1_R1a9nVWcUAAAAAAAAAB-X9SksosahO6WfATGPaH3cQAAAAAAAAAInrhN620EAJ_Aof0ETZ3WHAAAAAAAAAAPQJvjLM8_Am-8HBcCjdeQvwAAAAAAAABYi__VMh3MgmTJp7v_qMbssAAAAAAAAAA1qwd0u0yf77aYVcTrTir5kQAAAAAAAAAFqwd0u0yf77aYVcTrTir5kQAAAAAAAAAFOD88rfBmy4BfCXerLT5e5QAAAAAAAAA7yhF9CEzH60wdDBblzY1FcQAAAAAAAAAIOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAABJWFBxAERZNClfuNDueoaytgAAAAAAAAAGFw4N_DGYxmWJY3G6VlrCLwAAAAAAAAAGK4GtFsHu3sEiObk5SkQ6NgAAAAAAAAAZR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAAC-6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC80G6zvzFPytbRyfwuXWQcAAAAAAAAAABAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CANVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "leVyR4QTPth9dAyZtm2y8g"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAXfsXZSkKN3zNxr0HYuO2pqe5hQAAAAAAXYbqZSkKN3zNxr0HYuO2pqe5hQAAAAAAwb6tZSkKN3zNxr0HYuO2pqe5hQAAAAAAU5W3ZSkKN3zNxr0HYuO2pqe5hQAAAAAAU55x634wiWh6F21tPpXr0Zz3mgAAAAAACCm9634wiWh6F21tPpXr0Zz3mgAAAAAACQMJ634wiWh6F21tPpXr0Zz3mgAAAAAACQBF634wiWh6F21tPpXr0Zz3mgAAAAAAEN3j6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz3n6tVKI4mSYDEJ-ABAIpYXcgAAAAAALoC76tVKI4mSYDEJ-ABAIpYXcgAAAAAAKd_W", "types": "DgMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "W64Hj5AK1289v02A2Slajw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAACgg6FXT4fd_WKeR1cE-hlLelCQAAAAAACgrPkXT4fd_WKeR1cE-hlLelCQAAAAAACgrWI", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2IEmZt2U43tAEGSuPI05eA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFpibx9jqjuemtiUm8j-_s73zQAAAAAAlGp2bx9jqjuemtiUm8j-_s73zQAAAAAAlGffbx9jqjuemtiUm8j-_s73zQAAAAAAZVQSbx9jqjuemtiUm8j-_s73zQAAAAAAlIpwbx9jqjuemtiUm8j-_s73zQAAAAAATYSs0rNuxKNw6YxtKvsF6kS_jQAAAAAAFVQ-", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bQ-t2me3no7hrG7BJshXNQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmoJ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TlBiM4WFhH4m2XZCDIJqBA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbrkZ3CKaS4aU08RhYA19y5ITQAAAAABtb7o", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "S2DlZOWlfNB6o3arOdV7Lw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAAAaieVPbh3z67ZFj7IGoqq7zgAAAAAAAACEBFI7c7JS1eVbUcz-CuyraAAAAAAAAAAJpE_XF-eq0tBl0fP7Y7zrSwAAAAAAAADY8uVqqmQs2krZT40-iqFC3AAAAAAAAAC8xIfNH7oj8c26gQcDKc66DwAAAAAAAAAURuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAA8ix3sTGLCNH21piOrMPoln5uBQAAAAAAxhJ3eJ7BYIhIN72fM2Cz8k8m9QAAAAAAAMGFeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARb6", "types": "CAMKBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UpYGXNFuNKSS_TxIb2zLdA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAABuJiDit2LD3UA_K38KQLtubgAAAAAAAACI6raSAOzsPI4fmpzu-S1plAAAAAAAAADfyLcvbV13CtkdfmXNFFed3QAAAAAAAAAHLL2AmHorGMGLHFvQ3KWNRAAAAAAAAABye9VBoOb6ap6y2iBqQXec9wAAAAAAAAACDGjrgDv5wYPfFINUB_hsHgAAAAAAAAAFgYBDnUBP0OXwyy31JxxPSQAAAAAAAABB1c3wwLudj91FOPJ_fc9mPQAAAAAAAAApPi-02an-VcSObLNuz_uUNQAAAAAAAAAF7e32DwxqF0KavchyqVkOEgAAAAAAAAAgwQ_ty31z3DmE5XjxpCpS5QAAAAAAAAAk", "types": "CAMpBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Eu7dkXXXhKKf3OZOlmcFpw"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4694rFFPORY8_4FvK9QaA3QUQAAAAAADiYq4rFFPORY8_4FvK9QaA3QUQAAAAAAEXOd4rFFPORY8_4FvK9QaA3QUQAAAAAADSXh4rFFPORY8_4FvK9QaA3QUQAAAAAADNDhUJmIMEc6K8gJ39NHYaD0WwAAAAAACY-6UJmIMEc6K8gJ39NHYaD0WwAAAAAACVoPUJmIMEc6K8gJ39NHYaD0WwAAAAAAGOnf", "types": "PAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GXIz77FLzTplaCOxm0B_0w"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAAKPZcOHXTPoeBWhKU5F2mgGAAAAAAAAABmir67aqpspCTaRrMYjCIMTgAAAAAAAAAF63DVRx-qMeOwKVLMGcrFlgAAAAAAAAAm8SZ50ezQPJ6hhIGbzC7WeQAAAAAAAAAM2PevTTgB0h-tyzl-zqJWswAAAAAAAAAa55JJslMiYsQuhlwSNEJPmQAAAAAAAAAaDaEGjLV2qC4AGn6rr9H05wAAAAAAAAAtnRErDzpnTzpX2rOLznVipAAAAAAAAAAmIz7G0PXjTk-LSaINRyAXzgAAAAAAAAAcir67aqpspCTaRrMYjCIMTgAAAAAAAAAF63DVRx-qMeOwKVLMGcrFlgAAAAAAAAAm8SZ50ezQPJ6hhIGbzC7WeQAAAAAAAAAM2PevTTgB0h-tyzl-zqJWswAAAAAAAAAaU5KjUA8drTFRj_kkUnvTKAAAAAAAAAAddjagdXM_c9EROkycKgSbxgAAAAAAAAA7Vyw5UB5t7K3M1sGJ5zvMhQAAAAAAAAEhLMJEJvDLl0LIozgoVKupJQAAAAAAAAALd1QkxfCgm0LvKZB8Lm2ifwAAAAAAAAAhzJ0UpIpUfpQRqbU4ca9CUQAAAAAAAAAFmjLQtJ48eGnLZP92405DLgAAAAAAAAAN2JGPZcEtg_q-wlZSN3iiVQAAAAAAAAAuJ7EMgIdtNxSVC_-TGyYQ3AAAAAAAAAAfaqit6N7GhuOhGS3z35VIdgAAAAAAAAAIrLBv85fvZDzdHWrRMDmO5AAAAAAAAAAA", "types": "CQNHBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UdzbXM5vQvdHmvnJ6zf05w"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADA", "types": "CQMJBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PUFx9O95UA1jFMgHuRcVig"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMh29XT4fd_WKeR1cE-hlLelCQAAAAAAC-zdsXT4fd_WKeR1cE-hlLelCQAAAAAAC-1FVXT4fd_WKeR1cE-hlLelCQAAAAAAChaKqXT4fd_WKeR1cE-hlLelCQAAAAAAChZ7l", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "rXAURQ1kiv9H2yZvakeuBg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmtA", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "x-9YB9WyZYKEJL89XZ2wlg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsftbx9jqjuemtiUm8j-_s73zQAAAAAAXsVwbx9jqjuemtiUm8j-_s73zQAAAAAApykkbx9jqjuemtiUm8j-_s73zQAAAAAApxqgbx9jqjuemtiUm8j-_s73zQAAAAAAWS4Rbx9jqjuemtiUm8j-_s73zQAAAAAAkZW6bx9jqjuemtiUm8j-_s73zQAAAAAAlJzVbx9jqjuemtiUm8j-_s73zQAAAAAAlGffbx9jqjuemtiUm8j-_s73zQAAAAAAZVPI", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "D9_b-M49zUzwQX8HBngcVw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEftC", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JvT94dVRKZeOgNA295fEAg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6xbk6AMXATcqSh5_w-yOEgAAAAAAAAAFbCyjGhoQ-llBpE9jO3P0_AAAAAAAAACgl6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEPoG3DRiZKlMZ3sh3A8whkKQAAAAAAAAAZhbRa_Mv_nNX73QDH-O5j0QAAAAAAAABbLm-i7mHlXTzn3dRUwPqsywAAAAAAAAAEBYoo4tfxgmh8oDE9G0T8dgAAAAAAAAABGv4-gnM04seHvi2rk7HAtwAAAAAAAAAp55GfxhHkj37-fwWSYe5ibwAAAAAAAAAe", "types": "CQMtBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8fN7jqLMpxIaQa26G9fLlw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATgIVE_He_HcVwkF6GliVVvwAAAAAAAAAHUIy2Q7YM4c27tuS1_ztJlAAAAAAAAACVnJb6IY06KTWp6IJDHyYuGgAAAAAAAABsOVbzts78rozw73k3kwZElwAAAAAAAAAJh9KApxIztAVSR1ja67Q3vQAAAAAAAAALrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABwZ_kr4qwzlJw8PaXZ_kzeQAAAAAAAAAQVrkGa1SbyRj73L3L9NE1XAAAAAAAAABZJj6ja2Wbkf1_R1a9nVWcUAAAAAAAAACJToVtc2P50kV-QGj3la9_ZAAAAAAAAABV5DGFi3MrQEDDo8fCYbA5hAAAAAAAAAAIHfMb4ib8WKiucqC90J7sSwAAAAAAAAAHsueTM-LYsBZU9Btl9NKTwAAAAAAAAAAEc8wp1Q45CdLtTNnj6qINTwAAAAAAAAAcuivmFtqkx0mSDLjpV5jf4gAAAAAAAAABRK8a3DzcZMuwoK9TpGXQTwAAAAAAAAA3hDeNHR-uaDqXexxBeqdlYwAAAAAAAAABNuqcOqANutL4nD8JjGfmlwAAAAAAAAAkOD88rfBmy4BfCXerLT5e5QAAAAAAAAA7yhF9CEzH60wdDBblzY1FcQAAAAAAAAAIOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAAC7R71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAADhFzRiu7WoiAEZKSMqwfwi8wAAAAAAAAAQGaTWB84HBLHkoSJAOUFJ2gAAAAAAAABV", "types": "CANBBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5oxfwQ8KKCFQx_Qdby36oA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAeasI8DDAjVJl721y2vxKHGSBegAAAAAAgwJS8DDAjVJl721y2vxKHGSBegAAAAAAefoQ8DDAjVJl721y2vxKHGSBegAAAAAAee8-8DDAjVJl721y2vxKHGSBegAAAAAAeepd", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ya16xA5wR92kAWnR4dKwTQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mikXT4fd_WKeR1cE-hlLelCQAAAAAAC-nUyXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LY", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iPAdKQVY7vg1o2gkYJ3hkg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAFbLbKru3lAuHQryZO7imrlEAAAAAAAAAAF", "types": "CQMzBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "rtLWsf0bQDHrSMWDW9YU3Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmqU", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "11CuWXBuHwUfQSwUU9MawA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAAByH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAACUe7YYWaQTMh8P2PCVzA2a8gAAAAAAAAA5gpzmfljwMvF6axjuntzBmAAAAAAAAAABtGdjZjM6jJA23WbdtVpvAwAAAAAAAAAIgpzmfljwMvF6axjuntzBmAAAAAAAAAABtGdjZjM6jJA23WbdtVpvAwAAAAAAAAAIE7J_ZVS2fIyPaAMkyne11QAAAAAAAAAB0YpHRX6ZLVSO127u68ifLAAAAAAAAAABGPK7pyl3RjtyKa9WtooOGgAAAAAAAABf", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3jx5ziVarO0rH_UBySTUCA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlZUcEvvhuguaGYCmGWrnWRz1QAAAAACEea2cEvvhuguaGYCmGWrnWRz1QAAAAACEf3-cEvvhuguaGYCmGWrnWRz1QAAAAACEgLJ", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jC1Bnn3An_-2VEoFqK30ug"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHba4rFFPORY8_4FvK9QaA3QUQAAAAAAGRIW4rFFPORY8_4FvK9QaA3QUQAAAAAAGRJh4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp4rFFPORY8_4FvK9QaA3QUQAAAAAAFwQQ4rFFPORY8_4FvK9QaA3QUQAAAAAADiYq4rFFPORY8_4FvK9QaA3QUQAAAAAAFwiTUJmIMEc6K8gJ39NHYaD0WwAAAAAAB-5ZUJmIMEc6K8gJ39NHYaD0WwAAAAAACMUoUJmIMEc6K8gJ39NHYaD0WwAAAAAAEPzJ", "types": "KgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "H6pBqnvAiGefFQR-0xq8Gw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVMhk7twoFFvGSvyWsBJzr5QAAAAAAAAAMS-bF0OQ5zu714NI9jV1-DQAAAAAAAADEb95z1GhnNzkQcVnTAGVlWQAAAAAAAAB3fqaDj1pN5-CyodNN44HbZQAAAAAAAAAQc1uIuH7G_H0iDn31aPif-QAAAAAAAAAIysmsm8HVpt4jndQdHwl9VQAAAAAAAAABPbXXr1ohgiKjdKmG8bXqXAAAAAAAAAACXQih0feiHcRhpLZTXruLcwAAAAAAAAATkQIfOKgH7suSILPob4uOXAAAAAAAAAEjwTSbu1Pr78mJrU1RTg5RYgAAAAAAAAAkr8runDm4rOcHO76XR-D7jAAAAAAAAAAMqCAXb4nsA8MBowrcfqVWbwAAAAAAAABd2cxgkaQz6jHA-zT7PPZDvwAAAAAAAACzjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAAB8dJZnxxfSj1TBzD3FyyfeDQAAAAAAAAAOArz1MMWCC2fkAl6FCL43rAAAAAAAAACL8OiJZHURIK_gi5RsAiMk3QAAAAAAAAD66ip1iuYQq9vB3aUDYyBeIwAAAAAAAAAF4pm-RlnsToJPewKWxyTO3gAAAAAAAAAgJuo8qUKghncsaJVIOQ-UxAAAAAAAAAAhx8wKfSxfz0olWikyS-1x_gAAAAAAAAAbtao5sKvTYUz0761qd2K8tQAAAAAAAAAA", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LxiPwTs-ik1b5LgD1gD8_Q"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV5BZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbpmZ3CKaS4aU08RhYA19y5ITQAAAAABtPmF", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NIcwjcTUxYrOZlE8A754rg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o8vXT4fd_WKeR1cE-hlLelCQAAAAAAC-pGEXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FwMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kHECybcfqN8uWz-3bszMhA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6xbk6AMXATcqSh5_w-yOEgAAAAAAAAAFbCyjGhoQ-llBpE9jO3P0_AAAAAAAAACgl6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEPoG3DRiZKlMZ3sh3A8whkKQAAAAAAAAAZhbRa_Mv_nNX73QDH-O5j0QAAAAAAAABbLm-i7mHlXTzn3dRUwPqsywAAAAAAAAAE", "types": "CQMqBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ktsy2Cu5XGbuKFzunfsP8Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7-XT4fd_WKeR1cE-hlLelCQAAAAAAC-pHvXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmkK6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXfZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXbv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAROzt6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdyj", "types": "FAMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MwXi-DFSda8MTVxk8JD-uw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETdScEvvhuguaGYCmGWrnWRz1QAAAAACETwkcEvvhuguaGYCmGWrnWRz1QAAAAACET5YcEvvhuguaGYCmGWrnWRz1QAAAAACEUGZcEvvhuguaGYCmGWrnWRz1QAAAAACEU7w", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3blkVUmhYGlb1bNhKqNU-Q"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgm3", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Kju3wmSmA44jDZVegFrCxw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALO-i40hQb92bY-JOhJrV2owAAAAAAAAAs6l-EHm0OnthNsvyaQcuYhwAAAAAAAACj9kPyGC0UFb-ggUrmSlRB2gAAAAAAAAAffO_gJBPd8E-RahoVIhDflgAAAAAAAAAB1P3GTCQSFJPOIXZWIUu1PQAAAAAAAAARJQ--Da8UMa_zKaKYpLYZrgAAAAAAAAAItYnNSbSbqPfiGNhyW6TUtwAAAAAAAAABIEtETl463byzMJPLuRp-TAAAAAAAAAAIWNklusebG0tdR5ytKPlbkAAAAAAAAAAIBPGrhEymdtYQNz2pzn2GeAAAAAAAAAABMvHykdws074DrQKhhSE29wAAAAAAAAAUIEtETl463byzMJPLuRp-TAAAAAAAAAAIWNklusebG0tdR5ytKPlbkAAAAAAAAAAIWXc0Ul2uIu2AvsVIqd0TXQAAAAAAAAAlMvHykdws074DrQKhhSE29wAAAAAAAAAUIEtETl463byzMJPLuRp-TAAAAAAAAAAIWNklusebG0tdR5ytKPlbkAAAAAAAAAAI3gsDLXDLRJdnmH9et06JcgAAAAAAAAAnEdy7WlyFZta5S1JFk5yFhAAAAAAAAAAuCkV75JgYBXf-KhQ2Owuf9wAAAAAAAABw9AimbJ3zXR64PEjKxAEStwAAAAAAAACOlLz61dScX0qP4lCt6ZUMggAAAAAAAAAUDePeDrfzT4Z9IiWuAa2yfQAAAAAAAAA2CfntqUZeNm20sNox6HFMzgAAAAAAAACVMHYwZ_YFmkP6a90hgj1nMgAAAAAAAAAOE9iUlIQsVQsPhYcGfBeeagAAAAAAAAA-e4FBCt2c4GYHVLxPkuzsFwAAAAAAAABoUfDyrL3FwaQ3-kXYQdojZgAAAAAAAAC90QzQekxDG0sMrfbr_ICYAQAAAAAAAABNRVieMaRFe3uT8LWVn0x_HgAAAAAAAAAFVdRI4bQjguZE6PrIFD9m6QAAAAAAAAAEqpODw8IkqtVkRR3pADrcYgAAAAAAAAACu6kUmTkhHEVvdfd3N0zHyQAAAAAAAAAaVkwvTLJA_wYkkvZ7q0WeEQAAAAAAAADGQ7k8aLNNTYo-KuQU3gt-4wAAAAAAAAANBF5-aKv2OAM_gpCUkp3mhAAAAAAAAAAEsAAWQfLQxwCaRa_wfIeeewAAAAAAAAAA0aeAC4XpbxqxubqgoasMaQAAAAAAAX540aeAC4XpbxqxubqgoasMaQAAAAAAAYMVFr4KuuAdcuLzUhqxYoXsLwAAAAAAAPOt", "types": "CQMnBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "js8bgJ66knafO46d8ln2Cg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIZy27xNCwe4jKCqsA2srxVwAAAAAAAAAoLZeO9S9IXnalwT9Nl3ihfQAAAAAAAAASxWwq3BVQzbzp00-HYFOW_wAAAAAAAAB094QsDIL7bUk7Oxas7lNqGAAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJSYSSbioufiMK4TqEn24uLgAAAAAAAAAdXL_fwLkYkxkYcfgosK-fdQAAAAAAAAAQO_mHTPntGTw_EnF-rkI8XgAAAAAAAAAWiiLZnxbVRTQPtvWA0miuyAAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdfJIr5vQAn81_ytZBhz6xpAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAABduSa7rLKjwnZa9hewarfUgAAAAAAAAAIHMo9CJkBJDT98ldAVMcaFwAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAABchbRuRrRTUwPxI5LbvQW-TgAAAAAAAAAKv-BWBCzanLU8PuKPwDfFAwAAAAAAAAGMk_K9_UkGJ5doglspKH5JwQAAAAAAAAAX5m3n_54tQQHrC0wzPZkPdAAAAAAAAAADaBDyfRrCxv0GQF3elQxZKgAAAAAAAABAh7IE8LZSIUd912gM4pUUUAAAAAAAAAAVXXrVdKXHfuwS1zlgIKNhBAAAAAAAAAArteC1KbM9JBDFzx4EHTXvUwAAAAAAAAADhLeIdbN4zWJHz84x2tdNAwAAAAAAAADRarW6Nk3z5oDWYASq236biQAAAAAAAAA9kQbiOFHkLrfEZqNH1N5ssAAAAAAAAAACQeldwMhyIXcz6fpTQjPzwAAAAAAAAAAC7Pi_2fyFGSK4JgBchCm1CQAAAAAAAAACsIwqahRkjtW0nY-bGfyZwwAAAAAAAAACgaRLWCPFmMbsDDPHf8r6vQAAAAAAAAAYAlYTZm3Udn5te27JKKjO8wAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAABkWkPRvktqhDDhVdutdfuAAAAAAAAUfhZSkKN3zNxr0HYuO2pqe5hQAAAAAAj8KrZSkKN3zNxr0HYuO2pqe5hQAAAAAAhBHuZSkKN3zNxr0HYuO2pqe5hQAAAAAAhA90", "types": "CAMqBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dL_ewtmy2v2fPIQOJsiCyg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABiUDU1_CPvfFPVWUEWglidAAAAAAAAAAAoWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgg8ia7_SjtnnoFsx8t6EVmgAAAAAAAAACS4pDMZQIDu6mVxa95R8FGQAAAAAAAAAdeNbj51SwVufxZ4R3ztSduAAAAAAAAAAMRLw4AzQ1twQD4Yf1dhVtogAAAAAAAAAICEhlVwLkGcF6wPQ9FYzYUQAAAAAAAAAFEqtQxEspQTRRSSWWTkm-NgAAAAAAAAAJnPcpIVOjAbk4oUD0VpGGhQAAAAAAAAABZ_WnWFmJraaLolV8hl2sigAAAAAAAAADWt0sf_JgSqOTKaBcf1zgawAAAAAAAAB7FzJF8qZ49M3tzNcHAYKOpwAAAAAAAAAHcx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAAjYKoBBl0G_e9oE7cFaZfzDAAAAAAAAAAZjPboacU0YKXwkYKndASIHgAAAAAAAAAFvbgAMp4MJN-LIAvT-yH7-gAAAAAAAAAYBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAA", "types": "CAMnBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "d12Kc58-bA6BIjcZkMIfew"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgJo", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UeeN9w2TOFRltemf8fqzOg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADAYnk6E9ReVsUsstHFtTIiXQAAAAAAAAAyfT0k69QoWDcgSGG9DEbGKQAAAAAAAABU3yZRDT05_hGvUj8jRvChFAAAAAAAAAIjI3yeYI3jggKwXLfShIlMywAAAAAAAABUAC6sIDdQuWlno6mhwaFiZwAAAAAAAAEHPemEHqTP_7PVbNCzQt-XlAAAAAAAAAAMDZvlF3IdU-9TjIbcA47GUgAAAAAAAAABcuz7PAFLw8DoVVSTVsTZvwAAAAAAAAAEOlb164JexhSMm0UtBL_VygAAAAAAAAAEmIhHJLRWLV08bvGOk_MaUQAAAAAAAAABAsYLPOMVTEJOeDxuyLY7KQAAAAAAAAAUX9lpa9TN84k-aLBSFJ8EgQAAAAAAAAAHMkmisheVP0DaTeF1Tgq6BwAAAAAAAAAVkrGbMu8JHiKkyENUYIKBywAAAAAAAABnhCDtT-9vDXD-e8HuC9915wAAAAAAAAA4GP9DcZgvFsVU-FrimfbKfQAAAAAAAAAJ4X1D0bE8dXWnBHefwzL1KgAAAAAAAAA59ctgDiHk7GZNdHt7lzekYwAAAAAAAAAANB9Wtr18BllcC8telVa6ewAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAI4A", "types": "CAO-BQED"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gwfrS14UPNn_m66tZsNffg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAADrAotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAGJ1xBvehWaFQefKkuHjb2hUwAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJFcHGeTZbDG8jQ9sbtbngcAAAAAAAAAAcs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFIAf9e80wW0ROOv48VcVi-AAAAAAAAAAcGY5WEW77dofWJpcPe0twUgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4pVlUGQpw_Cq0LEtbbly5dAAAAAAAAAAkN1WyTlGFxfHgSyYQ3aeHDQAAAAAAAAAOYSP8Ib_W13QEw_Ivysg7FgAAAAAAAAFyn0UYwZH5py59Xu9gAaxkrwAAAAAAAABAm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl5iN7OCAj-2IgmFqLvCWrTwAAAAAAAAESap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlJdvIaoH8miVW9zaDiDOZJwAAAAAAAADSap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlhW8OwmmxjJYCeXfLTZy__QAAAAAAAAFLap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlw4mT2NPQOW-Mg0N_xZsuzAAAAAAAAADgap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlRlK4jZbFueXylWP1GNjNSQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlL_sAxM5NHsnYQp22GwDx8gAAAAAAAABwap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAycNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAATPOaf2meILyNtXlyuau5zHwAAAAAAAAAKc6zhheBld8wEBO7TlhnPcgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB82g1SAYpsFtnBogFl0v0GAAAAAAAAADJdpQ3bcNFV5Y0XdediaTCQgAAAAAAAAALmmckjE-MysbZhDPP6gNxewAAAAAAAAAydmm7_Hn3SrysHeUffmIe9AAAAAAAAAAfaxxtk6GnkoiqRXb69JxcoAAAAAAAAACge4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJOdkuTNpXjsFc7WV5c_bgKAAAAAAAAAAMjBwquBL06pqJXOt8kphl0gAAAAAAAAAME5ablZjSwaw4LkNasKqxDQAAAAAAAAAFB3TkFubeMsUjXVlcESk9tgAAAAAAAAAMpmiRP16sLzHMk4sQotP67AAAAAAAAAAOqeHIgzzOczGD0wBwOrHP2QAAAAAAAAFJFuWxxcsr3tUR5NeFGer7vwAAAAAAAABnMWMRq4GUysNDjxb07DjPAwAAAAAAAAA3jsLLxIAhtu1IcuCmLP4yNgAAAAAAAAAH4T44kzE9JU_n4pRF5j5FFwAAAAAAAAAYSq4yJYXB5hEMp7oPtTmUiQAAAAAAAAAimSKMuTauUB6AvF_x3SDLhAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAlNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAADA0Bmu_hqLQc2qW5yo4O6HQQAAAAAAAAAyyH_ohM36PxcsspBj9HiisAAAAAAAAABU2LzHjSgmLRTwZBUFU5tC3AAAAAAAAAIWjs4u1eHeGpsu-vXLTnW8uQAAAAAAAABWk1o6cGLS1FzksoHJvPKdFQAAAAAAAAEpV6fcE1EsjMYG4ctzhztDBgAAAAAAAAAMhicgrP6yr_-9qRDPdRH1UQAAAAAAAAABcuz7PAFLw8DoVVSTVsTZvwAAAAAAAAAExy6LXnpeKuV7b6XhH-kLUgAAAAAAAAAESdUzkeL9_v2VezVxWgWRqAAAAAAAAAAuzNcsGRHhxrtoMbOTGij46QAAAAAAAAAB7IBmDOSH_dR0MHQWs_TXjQAAAAAAAAAUX9lpa9TN84k-aLBSFJ8EgQAAAAAAAAAHUbN9iJkCyKUEAH9roSlHpwAAAAAAAAAVGp8pW5B40BblKfSIWk6M6gAAAAAAAACNa38j856FxIPiwroWnutPzgAAAAAAAAAMrRD3IAWNeA4GPRh7roh_BAAAAAAAAACRagZiqOTeFJJvJSEd_bICHwAAAAAAAAAKiit9TEPWxIcbSUSJseypHwAAAAAAAACIvc_2qIuahQ6DM3LWEJ9q5QAAAAAAAACEnQWGdRxvqVjwlLmQWH1PhwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAHs6vQ7EacG6CR4rzcFaNFEsTQAAAAAAATMv", "types": "CAOTBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UbZWbU0S5kd22SAXz7exPw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACGz1HZ3CKaS4aU08RhYA19y5ITQAAAAACF_8yZ3CKaS4aU08RhYA19y5ITQAAAAACF_UIZ3CKaS4aU08RhYA19y5ITQAAAAABvncYZ3CKaS4aU08RhYA19y5ITQAAAAABw3oLZ3CKaS4aU08RhYA19y5ITQAAAAABzH6pZ3CKaS4aU08RhYA19y5ITQAAAAAByyDQZ3CKaS4aU08RhYA19y5ITQAAAAABwNqVZ3CKaS4aU08RhYA19y5ITQAAAAABv017Z3CKaS4aU08RhYA19y5ITQAAAAABv3UA", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fg9M6pSNiWUXKaFhQJPYzQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAABCxaYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG", "types": "BgMCBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Fwe1Z5FY9Tv5dePD34IJww"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAqovRPcszTde0VZh4hrqQUtwAAAAAAAABBgJKCOQJCNUe5j61lhCTyewAAAAAAAATdBzHaaplfCkGFxXmJVqCJAgAAAAAAAAARkLG20VFMtAeL120q9dFk-QAAAAAAAAAhR9d-4EOoAQqhB1QW7ZwT_wAAAAAAAABJstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGUKLoduJn5-YPXULy7Ukl9AAAAAAAAAAqzEf9qEa-MLzluKUM9knuogAAAAAAAAAFvWxNCMnUr6is0HaIF2GPQgAAAAAAAAAIx8IZY0dEvsXx9GTB6nqKhQAAAAAAAABdO38ExJm6dTm9AiuCGNtIYQAAAAAAAAB9HhIaqq60njiI-TSR6IpvaAAAAAAAAAAu7NbgxcudUSJnoypoAEAp8QAAAAAAAABKBHK9bdXWYz8nIBlEo9-NywAAAAAAAAABYDFEddDuMKvn7SndDYkyywAAAAAAAAAB", "types": "CQM0BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wz2Er9skwFtbnZG85T6Hhg"}} +{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI7B_NxRB-tFVbAaTDiew0fwAAAAAAdyiE7B_NxRB-tFVbAaTDiew0fwAAAAABTOLj7B_NxRB-tFVbAaTDiew0fwAAAAAApa927B_NxRB-tFVbAaTDiew0fwAAAAAApZTL7B_NxRB-tFVbAaTDiew0fwAAAAAApV1x7B_NxRB-tFVbAaTDiew0fwAAAAAApVpA", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DXrvcKGkDKalZj08wDl4-w"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACujkfqsU9w34yk0ipcsxq5HgAAAAAAAAAO7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAFk3HyWSdTGgne1xIId1mIvAAAAAAAAAAzp0_NTCpSk9QXa6fNd9afdwAAAAAAAAAFmVBN-6O2zeIv8GsCRrlSswAAAAAAAAAC7skvoqQ_JlmRN5w43B7kuQAAAAAAAAACP_4qycvxHBZREHniLmgHbAAAAAAAAAAFZa0P_0e34shcw6VJJ_B5XgAAAAAAAACWLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAMvPUU5i5r5XThwPX6RJsZ7gAAAAAAAAAE21OviUyRbmnxs6uitnTC3wAAAAAAAAAP3R6peF1IdwfQqmb119dyMQAAAAAAAAAFjRPUUEtO9tA38nKSenaVfwAAAAAAAAAC3R6peF1IdwfQqmb119dyMQAAAAAAAAAFMDjyE5AlqASoc6cxfe5K2wAAAAAAAAAwmxRwXt-8CQt60ehjLjpoTwAAAAAAAAAKZaQmU-IXyGvFS9G6a9D4BQAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAAD8oQ_ZJ3ImiZWOZcNHv_WYwAAAAAAAAAGGq5m7YsN9AxAFbfEdlTTPwAAAAAAAAANG-xCglt1CSRw88p7F7VV9AAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkylPsTGLCNH21piOrMPoln5uBQAAAAAARQBNsTGLCNH21piOrMPoln5uBQAAAAAA0Baqv9-un2Qg4o_hZDeItW-LfgAAAAAAAYwg", "types": "CAPFBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WgfE3EpDBODOIydfExij_g"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSEYxe-SHgukLEpCkawSk1QWAAAAAAAFzhzYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaO", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "b9hzKzSK6K9cySAkztDLHQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGiegz5k14PsCcDvFyUC1kmlV3QAAAAABF-ppz5k14PsCcDvFyUC1kmlV3QAAAAABGba3z5k14PsCcDvFyUC1kmlV3QAAAAABGSUO", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "o7G30v-z3P3eU8ti0ttesw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAAAaieVPbh3z67ZFj7IGoqq7zgAAAAAAAACTOM9gozgq3V-c4gPwstZkSQAAAAAAAAABF0PU7bQ8aSr5vRj-z9gSNQAAAAAAAAB8_aLNQj4NizwmYCt1Iy9dBQAAAAAAAAB1xIfNH7oj8c26gQcDKc66DwAAAAAAAAAURuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAA8ixfsTGLCNH21piOrMPoln5uBQAAAAAA8lLR", "types": "CAMKBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "eSNOCSxZsGV9BIt4ibM3jg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAeasI8DDAjVJl721y2vxKHGSBegAAAAAAgwJS8DDAjVJl721y2vxKHGSBegAAAAAAefoQ8DDAjVJl721y2vxKHGSBegAAAAAAee8-8DDAjVJl721y2vxKHGSBegAAAAAAeep1", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NNDb0IpeJX1J2SI82xr6sQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF9Y7z5k14PsCcDvFyUC1kmlV3QAAAAABF8vTz5k14PsCcDvFyUC1kmlV3QAAAAABF8dWz5k14PsCcDvFyUC1kmlV3QAAAAABF6-Uz5k14PsCcDvFyUC1kmlV3QAAAAABFPfDz5k14PsCcDvFyUC1kmlV3QAAAAABFxl7z5k14PsCcDvFyUC1kmlV3QAAAAABGnUi6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "CAMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "tmSSgDYXbYW8Msbbrdt9Fg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAKGFseY0uix2hxT0Di8k7-3AAAAAAAAAATslf6t7FJIQoDjMJN42BVyAAAAAAAAAABFg2KiEq3-QS_hoWS2OekUAAAAAAAAAAG58SSP1Jorf8j_W_ngTyDbgAAAAAAAAAKmoug4ghdvV0L6kc1EBfG1gAAAAAAAAAMEv5ZvILr4tvntiwSPeUhSgAAAAAAAAAI1dAR1DRu30HO0nOIbN0CKgAAAAAAAAAFGMI3PZtY4pqLz85PHavuaAAAAAAAAAAH0LGXmFocz46kL18OXWxszwAAAAAAAAA1cuyNWlZFQkabnqdPXO_rXQAAAAAAAABNSlb8MNVKIFfE9HJqtN3BhwAAAAAAAAAAWpojVIMMfjg1gPX4CFe0BAAAAAAAAC1uHt2yyHtMhQP9uhMxLoNAEgAAAAAAAIuLHt2yyHtMhQP9uhMxLoNAEgAAAAAAAH-7", "types": "CAMcBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6QySVXDyX3G1zoxdjACqvg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABzyZw", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4Jhfw5SiQAMF_gqLEtxCuw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFpibx9jqjuemtiUm8j-_s73zQAAAAAAlGp2bx9jqjuemtiUm8j-_s73zQAAAAAAlGffbx9jqjuemtiUm8j-_s73zQAAAAAAZVQSbx9jqjuemtiUm8j-_s73zQAAAAAAlIpwbx9jqjuemtiUm8j-_s73zQAAAAAATYSs0rNuxKNw6YxtKvsF6kS_jQAAAAAAFVRM", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ozEYEdV60r8t_NAHasaAZA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAdJED8DDAjVJl721y2vxKHGSBegAAAAAAdA-k8DDAjVJl721y2vxKHGSBegAAAAAAdHJ-8DDAjVJl721y2vxKHGSBegAAAAAAWmFq", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "q_u7IoOwx8G_ggWzBf7SPw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyFRZ3CKaS4aU08RhYA19y5ITQAAAAABtxjkZ3CKaS4aU08RhYA19y5ITQAAAAABtnohZ3CKaS4aU08RhYA19y5ITQAAAAABudIf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMukM", "types": "BgMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XfPjxqQV5aAbG1XeZTL6tg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVFKmuDb9OiAlOmhNzpFQWMgAAAAAAAAAFUw8EG916-vV16x2yycdXOwAAAAAAAADvK0flqZKMYgGhD375agfmDQAAAAAAAAAdrXAVE11Ryhs80ZE3uuTVVgAAAAAAAAACWj1Uq6jbmSjrZUnAzTcg8wAAAAAAAAFMu2DScCPg-79KHpSdqd651AAAAAAAAAAdt1rjy3Ck_TErVMhv-psy8AAAAAAAAAAHL89gnK14agcS6gC2h0zhpQAAAAAAAAFDEacvdBDVwYleo41xBU-e_gAAAAAAAAAL6vLdbR-rUObkBHp1yQiB0AAAAAAAAACDv9o_sKfrYjdaj4uQ2RTaHgAAAAAAAAACA81KQnIActlJrUuE6mKR2QAAAAAAAAAlGRkj9xWObIUC39vWGN57xgAAAAAAAABNIHitom53T4ie1rkBiA8y6gAAAAAAAACyLTb9asUQOMhlb43-O2hRvAAAAAAAAAACMClpQyU6gpPESHOwt_xwcAAAAAAAAAAoC6MkBEHFDeIGZnIrO2EiSQAAAAAAAAAFKSV5zpqX5uS8pJ0jF65uTgAAAAAAAAACNcpE6adeOVCfvBx4qpjhtwAAAAAAAAAHztHnkwVOP9LxgkQsriQwqgAAAAAAAAAmw8WZ7knoCa_QO4bWg-OEuAAAAAAAAAAFNMpC60tGKaJ25O0qF-RzlQAAAAAAAAACE-v8FNfqQYHt5vFsJHPNCQAAAAAAAAA9Pw0lwfQZQc0MOiG5MIrhJAAAAAAAAAAM9LcbhYCkWtGyipSFqusBKQAAAAAAAAArysgyXRf3M-vZ9sguVTGKVgAAAAAAAAAFfgcQtYXN4h_K1-CWi7-E3gAAAAAAAAACtFnTI0KlLYyCsvALAFvbSwAAAAAAAAAFAhPzx2h6vI74dTFnJRlejAAAAAAAAAAFCyFPDZBEiXoheKAUx-Kq0wAAAAAAAADGq0kPH1osD2SS18yYjsejKAAAAAAAAAAE5vMyVxaxXbqzsaKVqZzo9wAAAAAAAAAHiynY3Vpl2yeKIqRo2Ld9YAAAAAAAAAAnAsYLPOMVTEJOeDxuyLY7KQAAAAAAAAAUvTiT6RQHSjUNEBuIvfofKgAAAAAAAABRer7IYYpYGm8FuaYV6j9_KgAAAAAAAAAOok4zrk1T3mBLtObzPQcS-QAAAAAAAAAFdLwWk1CGjdl0nWT4XrDcdgAAAAAAAACSkpBi8LFR3RTjSJqFuljOuQAAAAAAAAAAWpojVIMMfjg1gPX4CFe0BAAAAAAAACU8Ht2yyHtMhQP9uhMxLoNAEgAAAAAAAFO7Ht2yyHtMhQP9uhMxLoNAEgAAAAAAAEk-", "types": "CAMuBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MdC7UfXClsiVIyHGuuu20g"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAABxapkzePHSA8DsaWHTG2PzIwAAAAAAAAARxLq0T_v3SOpy-J-2Mug9hAAAAAAAAAAYDCyFvnkzok7lK265t-00UQAAAAAAAAAToFsDQT5fo33-zFKmVhzmdQAAAAAAAAF6oFsDQT5fo33-zFKmVhzmdQAAAAAAAACdAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "M56qbhAN0zSyPqoRnP2tig"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUoi", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "BYfLgwssJN01WD8jqeu3Zw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWCZXT4fd_WKeR1cE-hlLelCQAAAAAACi5DEXT4fd_WKeR1cE-hlLelCQAAAAAACi5iPXT4fd_WKeR1cE-hlLelCQAAAAAACi09JXT4fd_WKeR1cE-hlLelCQAAAAAACiKcMXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NUvgKpMCEkNNiC1zyhgNig"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFxkXT4fd_WKeR1cE-hlLelCQAAAAAACiJIkXT4fd_WKeR1cE-hlLelCQAAAAAACiM0oXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaZ", "types": "FAMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xbY1WMOHeCLXx6Ve-mWwpw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAACceDtEsbyqaPA8nODsaXH2CwAAAAAAAAAjdb7h5t6lXZ_2CL1N4DXU6AAAAAAAAAAOcAnVCtwTUMiPtQhyaFTtfgAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAU3B2E3nnskNJUgYVRkMUbJAAAAAAAAAACHwm3pNPC4Wa3xFabNuzwcgAAAAAAAAAROVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAAwR4O21YPz5WkGUKdaZ1xVrgAAAAAAAAA2pnx0xwNPdcZ32kceiz_BpQAAAAAAAAACPwR81tCEw_YLoJoW67EqfwAAAAAAAABj", "types": "CQNGBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KtTGH3bT7aOWup2DcbPG2g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABLN7ynDYiGG43L8r_Igy7BgAAAAAAAAAc7uksKfxFONj3nEtg73WagwAAAAAAAAAMT2c5-p_HTAiWRFE2IbjI8QAAAAAAAAA7h6Obzp5eyXgRpUblA-ofAQAAAAAAAAC9uMFx2Fq4FWmDdC9qTh9OCwAAAAAAAAE0KcjVoO3dzCmC3PrWs_ohHgAAAAAAAAAJjfWZKcvJcvZvI74FMiyrAgAAAAAAAAAB0hcFUvwWZfQvp2KtSe1TEQAAAAAAAAAH5kI3iCVPIGpJyER_pIOiDAAAAAAAAABK_t41Zgn8MiPpsE2ExccvfwAAAAAAAAAISlk7EKKi8JmNp7yELCNTwgAAAAAAAAACNglZAtsVMy0PR4D9Bo4v_AAAAAAAAAAIdH_-XVY1o9Dh1CsvXltQLQAAAAAAAAAJlL02ENMn9TDqCnir50TaAgAAAAAAAAAFECGxOh43abBH5lmW6GWEbwAAAAAAAAAcWz5q8JekpnYi0s7eTlcojgAAAAAAAACvu93Ukboxh3n8fpdAM9THpwAAAAAAAACRcw2Z8udT9L2DdqGSTwVYJAAAAAAAAAAGd4qHdalKlYFqF-4zvAgorgAAAAAAAAAWA40VS-0F5gGiCT87AV4zFgAAAAAAAAAciQVo4-YPSPQT8lzVnTciPgAAAAAAAAARlL02ENMn9TDqCnir50TaAgAAAAAAAAAFhiE_KnpB1y_AkU-QUSuyPgAAAAAAAAAQXKq9uwED2oR9Ctzag8AUbwAAAAAAAAAlJmbV-AH56XNUdA5-wxAqIAAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABHp77QPk88xsYu9Hpoa4_oAAAAAAAAAATwQRLh0_1mVfrLTkzs1izhQAAAAAAAAAHh3WTBx-QeTdXBYE6dCwz6gAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJVyiEhRfD3cpMAUdxvE6uLQAAAAAAAAA6iqG2swMAij35AX8yLqs1mgAAAAAAAAACgif16EmVGvorhgyOj9vZjwAAAAAAAAAggr6Podewhx9_Rz-1pSpjLgAAAAAAAAAFMVr_CbGNEnYyymXVtC8noAAAAAAAAAAJLczqS6cuSWWD7v2xnXFx3gAAAAAAAAADqX44wE4PaOHlvbveOqAZIAAAAAAAAAAb05XKwzdpS7Kd0uKbnrxHMgAAAAAAAAAzVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASIwwbyqFq94TuMsCm_P7YEwAAAAAAAAAFG7bHBS7Fdu6ai7jmhfwpdwAAAAAAAAAUx8ERETcapIt78IXSEO8DRwAAAAAAAAACaLOl6FCWtZ16Qk1Y0IIBGgAAAAAAAAAGHey8fifUJOv2rbW7np0VDwAAAAAAAAANuQQ1PvFmxVdkBoNbbZIeSAAAAAAAAAAGX13qT-EIHpuumzsKroIGFAAAAAAAAAALId6rxbbnETrinnhjeUmMTgAAAAAAAAAfYR_FSps0OAaHwOXXqmvF8gAAAAAAAAGA4Rje6Na2MFlheox6495qOgAAAAAAAAATJd7KB1CKmQqnIXVwnMnWUgAAAAAAAAB-Wbl5MrbJc9wo3KaVmfjO6QAAAAAAAAB7Wbl5MrbJc9wo3KaVmfjO6QAAAAAAAAB7Wbl5MrbJc9wo3KaVmfjO6QAAAAAAAAB7Wbl5MrbJc9wo3KaVmfjO6QAAAAAAAAB7Wbl5MrbJc9wo3KaVmfjO6QAAAAAAAABAGPPIIhc9JBDF0bex-RCt3wAAAAAAAAADql-uKAi1beGz8RyiqP5WDgAAAAAAAADJ_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAACdJYgdZ6MFANs6aW-kJSCJAAAAAAAAAAYW19Tjw-jwIbyufOKZLiEmQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAA0aeAC4XpbxqxubqgoasMaQAAAAAAAT0gbx9jqjuemtiUm8j-_s73zQAAAAAAcXb6bx9jqjuemtiUm8j-_s73zQAAAAAAah2sbx9jqjuemtiUm8j-_s73zQAAAAAAahnKbx9jqjuemtiUm8j-_s73zQAAAAAAWUBWbx9jqjuemtiUm8j-_s73zQAAAAAAWT1Ibx9jqjuemtiUm8j-_s73zQAAAAAASDBFbx9jqjuemtiUm8j-_s73zQAAAAAAjznn", "types": "CQNGBQgD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MtYMJ4uu1e8mNKc4BTLu3w"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAACNJgmaT4hGItQStPxlJGEPUAAAAAAAAAAEWHTE8ACR4NC-I-EUuyo1lgAAAAAAAAAIjoHdKmx5pRoeIkTwEIvJpAAAAAAAAAAcIKniS6Oltfo1ekuyyeYCXwAAAAAAAAABSJxVsEnpCDnlRh2uwKM1VwAAAAAAAAAIU8y7tkq3OrTv74Jpmv-rDQAAAAAAAAAkWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFuaPqWrgrMtBr19nB0bwQ4AAAAAAAAAA7DvWhbkzH60wdCq3Z8oLdcQAAAAAAAAAHOljKMbs7Sslvbk6h8kJ9yAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfw5DtxqVhoNPMfZH51ZbSdwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEeyyzzsctNMm8Ix0F5BKrQwAAAAAAAAANL9OdW1GzSEWVanMPfByr5wAAAAAAAAAIMpA-_yb_lGv178DTnH5RUAAAAAAAAAAKQFD262cMfH9Fkx0D-SBUcgAAAAAAAABhk-Vn8s9qtj7D3BSWLIWnXAAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAActFrbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qeGt3fpd8fb-33IEga_JxmgAAAAAAAAABIGwhMoYnMofyYEaJiOTDygAAAAAAAABndVXLQszZHgabMaRgrKn91QAAAAAAAAAbkUQWAMnv1TRPiRV23phECQAAAAAAAACM4oROntQ4zAdpf6wKcORUhAAAAAAAAAAA0aeAC4XpbxqxubqgoasMaQAAAAAAAWFk0aeAC4XpbxqxubqgoasMaQAAAAAAAW3P0rNuxKNw6YxtKvsF6kS_jQAAAAAABGiX0rNuxKNw6YxtKvsF6kS_jQAAAAAADu1l", "types": "CQM_BQIDBgUEAw"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3UITWGKDrHZPpwwp5kPTCw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvU6cEvvhuguaGYCmGWrnWRz1QAAAAACLroTcEvvhuguaGYCmGWrnWRz1QAAAAACLsWTcEvvhuguaGYCmGWrnWRz1QAAAAACLsmncEvvhuguaGYCmGWrnWRz1QAAAAACL74lcEvvhuguaGYCmGWrnWRz1QAAAAACLvgWcEvvhuguaGYCmGWrnWRz1QAAAAACHfKNcEvvhuguaGYCmGWrnWRz1QAAAAACEOZL", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "comUbojQ_YSGFwlR5eYPHA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATQDkJCt6xHk7D12ZqlrT-UAAAAAAAAAAHPX3E_b7jZQaK6SiJYskQ3QAAAAAAAAAJZaLdh2m65raIV_JyagrUBQAAAAAAAABnazI-mX3CgcWhg9AcjJjNnQAAAAAAAAART7Ugi353BwPylAwIPK3gzQAAAAAAAAHvdr7nJhzDAJ3KA627xZhFegAAAAAAAAAUE66a7lKbkjXDy4kHrdweRwAAAAAAAAALavH6-iyYHlN_flagvaXwWwAAAAAAAAAK5JuKxbkWPMw0EpITr8WSNAAAAAAAAAALCcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAAACQh22cv3M-xNK0_IOuNdQuQAAAAAAAABAdFuRXSangYgd0mdMqBWlpgAAAAAAAADqsO4szKNZnXyLfMP7gPsjpgAAAAAAAAA9jjxn4cl8bBaRqPgS5F0n8gAAAAAAAAD_", "types": "CQMvBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "azyy72VZDfwabYJtyf5s8Q"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2q2cEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxla", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7TOWr7rDd_Aj_12HguWIaA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbHuXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCM6XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcCd6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcBE6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALko96tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjgt6tVKI4mSYDEJ-ABAIpYXcgAAAAAANyri6tVKI4mSYDEJ-ABAIpYXcgAAAAAANyLM", "types": "EgMMBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EgP9UQUh1MCTJpxBEGb0Rw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAGvN0nOeOJdjggSFx_cpb47egAAAAAAAAAV4vwWTuaA5W0Uq7WSODTSAQAAAAAAAAB8mm7pA8Vo6frfLprU_GjPaQAAAAAAAACREbDp5Ji3y8uTKzXL0h4-JQAAAAAAAAB8dJZnxxfSj1TBzD3FyyfeDQAAAAAAAAAOArz1MMWCC2fkAl6FCL43rAAAAAAAAAArPSDH1VHeBrDlmI_9T7LPRwAAAAAAAABOdixHDYyEJIjpNVPvFY6R6QAAAAAAAAC1bHYnTTMwOKs9GmXcNLK2tgAAAAAAAAA2e50UvngUOqkXgAE5gfHc5gAAAAAAAACdQc2K8rXdRUaeeNNqv5MKzAAAAAAAAABM", "types": "CAMTBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "IUPERUxtlz99d93WuGaNEw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAKGFseY0uix2hxT0Di8k7-3AAAAAAAAAATslf6t7FJIQoDjMJN42BVyAAAAAAAAAASDnVdZhb1BpdhjHCw8ZRExwAAAAAAAAAsXXAlTOaS8XqXSJc4sB0AFgAAAAAAAAAc_HosPUkm1pBrBKmzlvLxfAAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABg", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0rcM--vv7mknaWNeNoD-ug"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipGH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipDo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Zq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Ei6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjh746tVKI4mSYDEJ-ABAIpYXcgAAAAAAnZYv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnZTD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnZDl6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1xP6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgDQ", "types": "FAMNBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vVP3ARUkSlBDVcRAqdOW5Q"}} +{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACindAJ6GSZQSmfOBquczb-SF8bAAAAAADBJDZJ6GSZQSmfOBquczb-SF8bAAAAAADBJWdJ6GSZQSmfOBquczb-SF8bAAAAAAC-R4IJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-QNEJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-OvtJ6GSZQSmfOBquczb-SF8bAAAAAADBLPkJ6GSZQSmfOBquczb-SF8bAAAAAADBLVcJ6GSZQSmfOBquczb-SF8bAAAAAADBLa8J6GSZQSmfOBquczb-SF8bAAAAAADBHr9J6GSZQSmfOBquczb-SF8bAAAAAADBFz6J6GSZQSmfOBquczb-SF8bAAAAAACy7ZMJ6GSZQSmfOBquczb-SF8bAAAAAACy7Q7J6GSZQSmfOBquczb-SF8bAAAAAACytVkJ6GSZQSmfOBquczb-SF8bAAAAAACytxGJ6GSZQSmfOBquczb-SF8bAAAAAACyrSYJ6GSZQSmfOBquczb-SF8bAAAAAACmOHtJ6GSZQSmfOBquczb-SF8bAAAAAACmPnIJ6GSZQSmfOBquczb-SF8bAAAAAACi6TkJ6GSZQSmfOBquczb-SF8bAAAAAACiK1rJ6GSZQSmfOBquczb-SF8bAAAAAAChIfD", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "rE7aKX9AZ9U6RgLB7Hm3EQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAAEJm5p8puApNHgdtwb3aFhxPAAAAAAAAAApxDECjxfRDF0SAcicHv7yIgAAAAAAAAABSsODsFdp0k4d_SSQAFmIUQAAAAAAAAApzzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIOgrnocamUAo62UJ-c4BU1gAAAAAAAAABcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAI3FmF0iegYInyRffZHSr8AwAAAAAAAAAv1Az5XiB-HqkM2KIxBs7pHgAAAAAAAAAul8-8MRFLE8av7SNHPQQJVgAAAAAAAABwDzuJOrgdkQNI7sXISSmdawAAAAAAAACOpBAXMFgFarqt_e84PodhnAAAAAAAAAAUtIoSY_1vT_j29F717EmR3AAAAAAAAAAPRZ01NrWKTMDuXelOk2KnKQAAAAAAAAA1c-e-WU3-IJt_PPAtxrYO8wAAAAAAAAGVtS3W-juTeGevwds4OwWo-AAAAAAAAAATTPvt3mmZJbEjMZM8rsHZwwAAAAAAAABIX5MV3EQ58tGbWH0-6A54UAAAAAAAAAHiGGCEvN8t-grwQDiWlXbYwgAAAAAAAABQxPBNnsh_8JR4ENw7lxv6RgAAAAAAAAAMgEM872jKqCuxRPvZH3-WoQAAAAAAAABIM68FpuSnAR3faZb2KAiD1wAAAAAAAAAjYmphFIfEjJk6BasmvKzADwAAAAAAAAAW-X0ClxKEs8PvBHrNUl0TcwAAAAAAAAAA", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "68lt6oqYPJGKYAHcE_DOPw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_-Qx-pCy53U7YabuA5eb0fAAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAck_IuQ3Tj-0pB21HCi5bPIAAAAAAAAAAGzgO9-qlGF96Qf8hviCOy7QAAAAAAAABDqlujNL7db72ZwWHkSPq1iAAAAAAAAAA-VZ8R4UF_7xzlvYFwyCOjWgAAAAAAAAAEc8wp1Q45CdLtTNnj6qINTwAAAAAAAAAcd-b4llxAUpelmPQqepDu8QAAAAAAAAAB_twNRNI3JRk1p9Bs76G6wAAAAAAAAAAHXpj042pbA1-TNsSIE33U5AAAAAAAAAAkiT1UG1iDpHN9Y-yGc9rOOAAAAAAAAAAU2Gjxa8Lemwix5NrE6xBsvAAAAAAAAAA7qnR7SPBrCbnbJk8v7ooOnwAAAAAAAAAG6wPi2NOEKM9FkblNK9wEpQAAAAAAAAAkhTS7wT639rr8PZsTljSw4QAAAAAAAAABhHUnlV5Qyum23hfdTp1g5QAAAAAAAAAAu2oaF7T_uufCU99I4pBkqAAAAAAAADFVpp6LgRqCGeGjs7cnnwItcAAAAAAADEhy", "types": "CAM9BQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FmdBBeJo8Q4TwP3QhUw84A"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnsc4D-HUp7vlbJIxV4XTtIQAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAAAPaxidElRbDvZZ7rQ8Ca4ceAAAAAAAAAAFTVILalueBBKmusxvrzs61AAAAAAAAAFQ-ewB6MfVuUB7Vi_jcn5d-AAAAAAAAAAvsZ7DuqUIOGepxIijYq8VswAAAAAAAABsy3V4Wh9j61CfcWNgvt1uPgAAAAAAAABz-i9B3-JNdczGS_XZOzEMqwAAAAAAAAAcOqpwupFnKCF_JGoASiI17AAAAAAAAAAN0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdxn1WEw8JlmcUP5ReFMzZYwAAAAAAAAAYTpjjgqBU-O7RfxeFvF0xSgAAAAAAAAA3rdit7Kpe5k_2Pr8SUDMjsQAAAAAAAAADL5j21l_lgSbj7tDtmImORwAAAAAAAAEGkZgtpJIkDQ7_uBMazY7fxwAAAAAAAAAInfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYYUwJS6kVpV4XvYu7ZD33UwAAAAAAAAADZLdnJScMMbJz4xNn2ogw5AAAAAAAAAAOkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAxJYKWeVXd18GtPKr_b5YhEAAAAAAAAAAgZ9hje1cbFu-XpVYNW9SlywAAAAAAAAANpV99g5et2CwFuOPgVK-mJwAAAAAAAAA_8APXYE035H8lrUVPlepz8wAAAAAAAAAA", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iUBMjCORMSxEuj5evR0Lnw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlu66tVKI4mSYDEJ-ABAIpYXcgAAAAAAPS7z6tVKI4mSYDEJ-ABAIpYXcgAAAAAAPSc-", "types": "FAMLBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "swfD6YCCLdmhl6gow4zpcQ"}} +{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwAIU6tVKI4mSYDEJ-ABAIpYXcgAAAAAADAxg6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC6oJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC6Xu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC3tR6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtss6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BwQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "rkfCYXBXEXL8iyMiWl29aA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Il9z5k14PsCcDvFyUC1kmlV3QAAAAABG1bQ", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "HXdq657THMKKpJpOzApCpQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JekcEvvhuguaGYCmGWrnWRz1QAAAAACEP0x", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UMseRv2wkeKbYE9s84OBjA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAAwR4O21YPz5WkGUKdaZ1xVrgAAAAAAAAAayQDYDWiyDEgJMgGvgsz9TQAAAAAAAAAqAipm0fjmoj6u2FCEnbw1dAAAAAAAAAAhp9UR3btTZUo1MztbkeIkOQAAAAAAAAALZICRnstTjqeSOkLK1jp-HwAAAAAAAAAJ34fB7qb3OTOSVWKcGDOtPgAAAAAAAABl6X-l4zSEzV-o-Qo3loG8-gAAAAAAAABA", "types": "CQMbBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "aHZ3m-oAEY-BTbMVqBfwmQ"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrkykgtQ4kMk_MBWrPUAFqVnYywAAAAABq7bsgtQ4kMk_MBWrPUAFqVnYywAAAAABq7GYgtQ4kMk_MBWrPUAFqVnYywAAAAABq5-UgtQ4kMk_MBWrPUAFqVnYywAAAAABquJbgtQ4kMk_MBWrPUAFqVnYywAAAAABrpBf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMurZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALX6y6tVKI4mSYDEJ-ABAIpYXcgAAAAAALX4g", "types": "BgMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "aQKF-lZpsjIErlLR24edOA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAAAbGUY8yORk3TZTSqSlBljzGQAAAAAAAAAZEs-JdNswBBYy0dgOuoAxgQAAAAAAAAAENMPX1MdtzuRZ2k27VY7qAQAAAAAAAAA6F-l3z806Z2whMxir9gnRcgAAAAAAAAArId-ripUWhn1V9drGRfOjGQAAAAAAAAAt", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Ud-CukKVH6u2M9pLqLKNKA"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbVnYxe-SHgukLEpCkawSk1QWAAAAAAAFy1kYxe-SHgukLEpCkawSk1QWAAAAAAAF1lA", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-_QLItFaoCKVf49lsrt3dw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAAGkuWcUG2bf_MgJpXpuAZivRAAAAAAAAAAx0nBVkJrBQHU_wusVG6_3KQAAAAAAAAB96PDTyNLwDP2GCrVJoblLzgAAAAAAAABIciQsV4oUc5gYfL4dony27QAAAAAAAAAnOIU72g2wQhgyLETe_w4R1gAAAAAAAAAOY_F3wsW4jiujqo6Je7YffgAAAAAAAAAJWHc6TeyRQEqs6LkNUiVKVQAAAAAAAAAzqeBE7mdKgcIgzAsX_goa7wAAAAAAAAAHu1V8iRI-Vv8WMpAbApe_-gAAAAAAAAAA", "types": "CQM-BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "91WxlDa6Iwukn4Ye9ST2OQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipGH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipDo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Zq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Ei6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjoZw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjn7-6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWvZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWrK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmMhn", "types": "FAMMBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hf1cTSy1VHiyApUWUOThZQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmKkXT4fd_WKeR1cE-hlLelCQAAAAAACgtCwXT4fd_WKeR1cE-hlLelCQAAAAAACgoEA", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WEhADZOmZ2629xowZEFXBg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmqt", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "O9ef8dRV4l_MugfvQ0rYYA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mbdXT4fd_WKeR1cE-hlLelCQAAAAAAC-nUyXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FgMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MNsikT22kDxOHbRTTmFxuQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAACY", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TJiX4Sic6no4nhNYgmAWtg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVMhk7twoFFvGSvyWsBJzr5QAAAAAAAAAMS-bF0OQ5zu714NI9jV1-DQAAAAAAAADEb95z1GhnNzkQcVnTAGVlWQAAAAAAAAB3fqaDj1pN5-CyodNN44HbZQAAAAAAAAAQc1uIuH7G_H0iDn31aPif-QAAAAAAAAAIysmsm8HVpt4jndQdHwl9VQAAAAAAAAABPbXXr1ohgiKjdKmG8bXqXAAAAAAAAAACXQih0feiHcRhpLZTXruLcwAAAAAAAAATkQIfOKgH7suSILPob4uOXAAAAAAAAAFUY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADMb6rO_tpQt622H0nBBuO6SAAAAAAAAABQSu5A3ytRNpUaqJtDPFtJoAAAAAAAAAAQQnopTe1pxTR1kVhVN4qn2QAAAAAAAAAjrUHBgSz_SQE-q7C0lnDupQAAAAAAAAAJ6dizidRtpqcGmpShAjzttQAAAAAAAAAVXzWVAFfWPkx_-5DzBgosgQAAAAAAAADagk079EBdEVh5ErpJ6XBaYwAAAAAAAABiV1AAAJZxfA577guD2Mmh4AAAAAAAAAAhd3kpVhLsdwM004-RCJ5KgwAAAAAAAABRqWBohVpV0WLBgoRPY3ha5QAAAAAAAAAGgh5ZUK32QaLM1EoyY_BRswAAAAAAAADO5ocKe_xZhLoIMKsqpwD-EgAAAAAAAAAND5lAQaLy9ATYrsXm9SsubAAAAAAAAACjc9PnOdDPyU4oBYBeuUJKDQAAAAAAAAE0AQBNOYwNNBj76H9O8wvl6gAAAAAAAAARQCJaqzc5TAgQb6P0JIYhjgAAAAAAAAAk", "types": "CAMpBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YBhByzU7rcVYwQcEw5vwtQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsgobx9jqjuemtiUm8j-_s73zQAAAAAATTx9bx9jqjuemtiUm8j-_s73zQAAAAAAQE2Pbx9jqjuemtiUm8j-_s73zQAAAAAAQDPXbx9jqjuemtiUm8j-_s73zQAAAAAAlA2vbx9jqjuemtiUm8j-_s73zQAAAAAAlAxkbx9jqjuemtiUm8j-_s73zQAAAAAAQE_Kbx9jqjuemtiUm8j-_s73zQAAAAAAnqmgbx9jqjuemtiUm8j-_s73zQAAAAAANAtSbx9jqjuemtiUm8j-_s73zQAAAAAASUat", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "qiHjEfoOVcAokevEwswykw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAAAtt2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAHIG1OnoGXN6zXJZoQUHRmxAwAAAAAAAAAxYEThj3UEuGl2wDiJSq9vSAAAAAAAAACqZou-EwmpdzrcXx7eij10xwAAAAAAAABPIdkGKdrrMvbrgpaqyJ-rigAAAAAAAAAJUpqzzk59PbxypyRs4QkNMAAAAAAAAABTN1R-9DGIZrDXK9x_wnFgtgAAAAAAAABD7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAADT1TcD-cYA4xs7rqA_y0alsAAAAAAAAAA_To5h_VPG74jZVr_rPWhSXwAAAAAAAAAEPdntB36p_DeKmNIFQmfwvQAAAAAAAAAN29QTPW9x-q8C_WnM8CuMHwAAAAAAAAAIESPns7lbU8VZMyqWy_O6awAAAAAAAAAFQ_fTsiDQn3AwPFHRHJfE6QAAAAAAAAAFiDeUqi9fXDm_fNSrL17LBgAAAAAAAAACnzw4AVNutfhHt7T-gQii5AAAAAAAAAAXXpviWYO7CFQF88r_qvK5hQAAAAAAAAAJMnYM9B90Ha_6l2oFXip8PgAAAAAAAAAbvoqjqV6_-EldPWpE4Bg5QQAAAAAAAAAl", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_VzxKSgG_e2BNdUl-pfPBA"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABF0kYxe-SHgukLEpCkawSk1QWAAAAAAABF7IYxe-SHgukLEpCkawSk1QWAAAAAAABGF-Yxe-SHgukLEpCkawSk1QWAAAAAAAA1HOYxe-SHgukLEpCkawSk1QWAAAAAAABqf16tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtJB6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtH16tVKI4mSYDEJ-ABAIpYXcgAAAAAACtE36tVKI4mSYDEJ-ABAIpYXcgAAAAAACslz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMHBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RQA0UxZgfEsa41ykMw755A"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAABCxaYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABqzg", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "D09V3uEfQ7MP0Hhjcc4s2g"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADA3-aZ3CKaS4aU08RhYA19y5ITQAAAAADA3RQZ3CKaS4aU08RhYA19y5ITQAAAAACQxvsZ3CKaS4aU08RhYA19y5ITQAAAAACQxoaZ3CKaS4aU08RhYA19y5ITQAAAAACQyIOZ3CKaS4aU08RhYA19y5ITQAAAAAB0HInZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1bM", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NZ5tzxuTQ42cOlbp1jvl0g"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbKFXT4fd_WKeR1cE-hlLelCQAAAAAACiGWEXT4fd_WKeR1cE-hlLelCQAAAAAAChWnJXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdRT", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "qJU4RB4StmOvSy1y3PJnFg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyn-Z3CKaS4aU08RhYA19y5ITQAAAAABzzZNZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyrfZ3CKaS4aU08RhYA19y5ITQAAAAABz4cvZ3CKaS4aU08RhYA19y5ITQAAAAABz6Mm", "types": "HwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "s9opFMoZIHLT9tSBeXhhVQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBbBcEvvhuguaGYCmGWrnWRz1QAAAAACOHLRcEvvhuguaGYCmGWrnWRz1QAAAAACFObNcEvvhuguaGYCmGWrnWRz1QAAAAACEM4XcEvvhuguaGYCmGWrnWRz1QAAAAACFxY0", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xAlAJgIH19B4s4eLUFa4uw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AFUz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHphgz5k14PsCcDvFyUC1kmlV3QAAAAABG-csz5k14PsCcDvFyUC1kmlV3QAAAAABHCmp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaZ", "types": "BwMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9Byplk-PdYph_QhhSUXG2g"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgFZ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WWLGRQ_5C8xQmKnrR2xqSA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-THxcEvvhuguaGYCmGWrnWRz1QAAAAACETT2cEvvhuguaGYCmGWrnWRz1QAAAAACEP-qcEvvhuguaGYCmGWrnWRz1QAAAAACEOMYcEvvhuguaGYCmGWrnWRz1QAAAAACENOEcEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEWPm", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "uGST6kifL8k4q1M25HR_rA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACHFv8Z3CKaS4aU08RhYA19y5ITQAAAAACGkJcZ3CKaS4aU08RhYA19y5ITQAAAAACGl0vZ3CKaS4aU08RhYA19y5ITQAAAAACGklzZ3CKaS4aU08RhYA19y5ITQAAAAACGkwQZ3CKaS4aU08RhYA19y5ITQAAAAACGk6nZ3CKaS4aU08RhYA19y5ITQAAAAACF4zqZ3CKaS4aU08RhYA19y5ITQAAAAACF5N2", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dvZWM_ZMVzc3V8P5Qxo70g"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMh29XT4fd_WKeR1cE-hlLelCQAAAAAAC-z7kXT4fd_WKeR1cE-hlLelCQAAAAAAC-1UKXT4fd_WKeR1cE-hlLelCQAAAAAAC-057XT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jSW2U4_r9a5pRRoz2fHRtw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAByH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAKU6dExDGydccb5ppCwtV6RSQAAAAAAAABJvj65UPjKKxZemqlJuUY4oQAAAAAAAAAA", "types": "CAMTBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_DcUS5h4tNHVKchEvxD8HA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBbBcEvvhuguaGYCmGWrnWRz1QAAAAACOHR1cEvvhuguaGYCmGWrnWRz1QAAAAACFObNcEvvhuguaGYCmGWrnWRz1QAAAAACEMvu", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "F7_rX066p_KJ2FxuoLLfiA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAAB-5iAtVIILui-LgFNzk7nI4QAAAAAAAAAFTlb-NMKl40FjLIQMDGJfBQAAAAAAAAAXxme1OLUOxM6S5mWcBl9N_gAAAAAAAAAC8EydHzqUyrjotjG1DR1HjgAAAAAAAAADx7dNtL9l6yQnqIhb2iRkJQAAAAAAAABV85xU6UdOBVE-6wKT-DYa3QAAAAAAAAAcKlMLGpkm1pBrBLT79cviPAAAAAAAAAABzVZBdh_gmAiL5X6tN_0jKgAAAAAAAAAEWBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAABMQNDqKDPWY6nq0qvBxhyKdwAAAAAAAAByaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABRapg5i-nxkoOQjMlxB9g-swAAAAAAAAAFqYA0yXrjfQUiViGsCwfP0gAAAAAAAAG9ufChVIbvwepwktwbZS2mKAAAAAAAAABn", "types": "CQNLBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-Bjn8FdST7_4Bu-4l28hKg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAGx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABW1vmWfRl7JvnIelrwmbOFDwAAAAAAAAB2P_qKgj6OkmYBLfen5yPH6AAAAAAAAADlitfZdu4NdI0YJrHcgeE-TwAAAAAAAACXJS-WjNz0QulnqSlnIs8U0wAAAAAAAADS7Ormen3KBfy8FXv7OmF-kAAAAAAAAAHyavfO9wX8Y6wuHuPsqC9ogQAAAAAAAAAkZuSiv65WwcAu_jfpG6ANPQAAAAAAAAAFxF5VGC2U_MH-71_OPOmawgAAAAAAAAAZRcLwtzOrbCJ2S4fnMoo41AAAAAAAAAB7FS1bL4hzYgOQRasRTmaMCwAAAAAAAAARjYKah-GaJpbI-jAwYcFi1QAAAAAAAAAIbu6t-WTb-nsfb-QwFBEV_QAAAAAAAAA9D0rVr9r2i8CRuvzOSp3RnAAAAAAAAAACqk_n1ecQPsBsNva7iBiLPgAAAAAAAAAFpE_XF-eq0tBl0fP7Y7zrSwAAAAAAAABpYav7N1kdPMXfEfZ1xXIznAAAAAAAAAANDYw6-LyNoVsQdM43hcJCegAAAAAAAAAI3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAA8c6UeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAOjK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "CAMfBQIDAgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7-k51cbCmTnVl-dahOkNuQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADSZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABCAZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAGrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAuU-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABTHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAIiuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAWyQLW28sZ3rpLXAl8a-XdLgAAAAAAAABnWIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAIKCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAIQRW1om0CtcYaE4B8xaBEggAAAAAAAABGAZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYlCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAACNHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABuHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFP1rXbpjewie805zI0BHMvAAAAAAAAAAILN3NdhSYKxRbaqnM5W9FBwAAAAAAAABpR-HVaw3JZ2IsajBZdLbC8gAAAAAAAABKKnKBdeWKnQ8CH5bzvx0i6AAAAAAAAABK-QN0Lznzz3LjWKMZzZD5rwAAAAAAAAAIeEXFmSmLstwTaBBVp_eSTgAAAAAAAAAFHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFeS9qs83Ev5DGIkgRm0VL-gAAAAAAAAAUem8QMqpxX9eEmdxu2AmtFQAAAAAAAAAPTR0CnebfBTQ0MB6Lw8cZBAAAAAAAAABv8kz0sRC3Fb0ahbrci4PVAgAAAAAAAAAYGgYuOINmwLJxsjP-M2E9cQAAAAAAAAAXjIXiJ_3QIrjPxWXJm0vTUAAAAAAAAAAGbPdR4mcydIF6d5I7BNRoXQAAAAAAAAAHotkeOgHMDZdOlA7GywTS3gAAAAAAAAANeBe2TV8VA2V7lLyhiCvcHgAAAAAAAAAEclNKHmin0SttGhUDhj4qagAAAAAAAAAH68m2CwWM-Ledaj5WNl9lhAAAAAAAAAAqwMYFsNM0woNzFGwcp47vbgAAAAAAAABGEh0v14Wp9mB3u5tYha0hzQAAAAAAAAAmwSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFbhnM-182eA1jGyBQl8pMugAAAAAAAAAU4pL5iWdAziHKM6VzojymqQAAAAAAAAAGX8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0g4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAWMCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc5430MZlAMqI5SXd_yT5HRQAAAAAAAABcHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFN7LIGw1erb09TPWj8M9ehwAAAAAAAAAYwr21gCsicBxbZw2IJaNDDgAAAAAAAAAGEh0v14Wp9mB3u5tYha0hzQAAAAAAAABDwZ09eiIX1XgrymZWZ5BnrAAAAAAAAAAH7kiwTAFzycT-wgooymyU5QAAAAAAAAALLFiOeIpjbAGuoHCaoCuGBQAAAAAAAAA476ZQdAl2euBIN6YcqNHYDQAAAAAAAACQfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABP6WZ8beuV9qvYQN2_0rUbQAAAAAAAAAdWETDtAYgv6Jkvw6xLkpLwQAAAAAAAAAFzTg-1BaqPve5RYYrhWqKBgAAAAAAAAAHeYOPSEoq5FFmdpvYTsQ9xwAAAAAAAAHE2u2jPMdq36h9BOg_kllzLgAAAAAAAAAFajJdsnOIBpdo6hxvZuINSQAAAAAAAAAImSBnbtksrVvKstlIID71bwAAAAAAAAAUHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF4JxgAcphLAEsoWC3fPoUUQAAAAAAAAAMneQ9aDSiXyM-ZtdfoiCRFAAAAAAAAAAGXFsyX0Vq94TuMs7Bc44FAwAAAAAAAAAFhT_GFd-d817AZqi9jIee6QAAAAAAAAAUx8ERETcapIt78IXSEO8DRwAAAAAAAAACaLOl6FCWtZ16Qk1Y0IIBGgAAAAAAAAAG_CTrWCBcF1yntIOzlzRqGQAAAAAAAAAP1HXZZ713KyUPF_V7-YXiGAAAAAAAAAAG7qKsj4xn8s1AMSf99ASSjAAAAAAAAAAYt5ImPROd9wzf5BDFezVfygAAAAAAAAAG8AFkU9EDwekeQG-iHB-52AAAAAAAAABg1oBnNdsJQEj_XlDQgtQSnwAAAAAAAABKSqsat4GEGxHwIDQaCP0f5QAAAAAAAAAG-CA2HwYxn7uXuJvRLWceDgAAAAAAAAACo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAABGo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAAA7VRatagfaZstKq9MrghPCigAAAAAAAAAJ7ThQQHp1G_6RWzt6Guj7FwAAAAAAAAAF7BRmzswYOW_UKcdd8nQaagAAAAAAAAAk", "types": "CQOoBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nbnWZTR-NGSbB-LLD0uLzw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFx3XT4fd_WKeR1cE-hlLelCQAAAAAACiHwSXT4fd_WKeR1cE-hlLelCQAAAAAACiHfTXT4fd_WKeR1cE-hlLelCQAAAAAACgUmmXT4fd_WKeR1cE-hlLelCQAAAAAACgT-2", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yGokuWTMopT-VySEra22dQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABm1KYxe-SHgukLEpCkawSk1QWAAAAAAABRc5Yxe-SHgukLEpCkawSk1QWAAAAAAABBkUYxe-SHgukLEpCkawSk1QWAAAAAAABBYkYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAAA_hC", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "05FOW23jM0j0M9jfmJ93UA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQw7WOWZs79Wz210098loDzAAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARrSUSoohdnG6MdsfC9pID0QAAAAAAAAAGpY2MvdN80J-OPBSDYZs_8gAAAAAAAABSneOkLg7Birx-EWGBuoP5rgAAAAAAAAAaDjB9rnpR9s2OI-jlVfuXnAAAAAAAAADmNrikprALerrSkH1iKFm6zQAAAAAAAAAs_ui1AAIySrYc7ZeYb73nFQAAAAAAAAAMDbSG9xbs7jnAEiHiVrKb1AAAAAAAAACGHSSZPv-Jiv2fPLN9vFx42gAAAAAAAAELQKRyqWZIJ5_z0G07UwBzeAAAAAAAAABS3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAxJDeoMDAF4zRp8m9fg1ttGQAAAAAAAACBArHoFYyXVsZt6HAc7EjVzgAAAAAAAAA3u1A1mq4_NM3j2_15WwdIbwAAAAAAAACHp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXp_IlrdPQQtv2ne_8XYPm6wAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAACjGw9H1l67yAnzlh8ZHG_VaQAAAAAAAAA47c7rgpFHY6rxkjCoiUY2PgAAAAAAAACWu1A1mq4_NM3j2_15WwdIbwAAAAAAAACH36qODdc5_sG38C3jmrtkhgAAAAAAAAAkuchUv6RRAwtUDrZKhO2h8QAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAACX7uo6HnEu95TqHvEix8e-NAAAAAAAAAAT81sQIr1-P7Y9e1lYkQD1WQAAAAAAAAAbc4tAsAimVlPgj7zIV9p01AAAAAAAAAAIC0WKYZJsdZy_HtDNc5i0jAAAAAAAAAACBZDyipXP5bFEE55HWZ3NWQAAAAAAAAACRHCo9S6JLvJhQuHnIgHq_AAAAAAAAAAURxqe_zQBj7bxcQClfMPGZwAAAAAAAAADWzcM34XPrxORvaGGXCAlPAAAAAAAAAEuDsmnB-99lpR3jSBsZQO0JQAAAAAAAABLgkQuFSIA2UC_9Mknn8WGYQAAAAAAAAB6h8ulXQ0PqCWi8WjndyD3QAAAAAAAAAAA", "types": "CANnBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3AzTtEH6jVnKZJZ7bEruww"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6xbk6AMXATcqSh5_w-yOEgAAAAAAAAAFbCyjGhoQ-llBpE9jO3P0_AAAAAAAAACgl6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEPoG3DRiZKlMZ3sh3A8whkKQAAAAAAAAAy8_3LGlNMADWVmY7MNYKbGgAAAAAAAABYfXtbF06M7ZwcaaNlV0uiIgAAAAAAAAAY0n7bnuaG-8sBjMSdabTn_gAAAAAAAAAXTQHHjILJSS1Y0hdQ8MODHQAAAAAAAAAChjAyoRprP-ATzdRzIqim_AAAAAAAAABP", "types": "CQMtBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7UiVDLu3Bh5kUcAEngg4zg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAA1OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADUR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAACe6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC80G6zvzFPytbRyfwuXWQcAAAAAAAAAAB", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gwAkLFPRBUNZ7Ylc3F5eQQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsgobx9jqjuemtiUm8j-_s73zQAAAAAATTx9bx9jqjuemtiUm8j-_s73zQAAAAAAQE2Pbx9jqjuemtiUm8j-_s73zQAAAAAAQDPXbx9jqjuemtiUm8j-_s73zQAAAAAAlA2vbx9jqjuemtiUm8j-_s73zQAAAAAAlAxCbx9jqjuemtiUm8j-_s73zQAAAAAAlAMpbx9jqjuemtiUm8j-_s73zQAAAAAANAtr", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xHwJcsLzjdXyp74fJaJKbw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsftbx9jqjuemtiUm8j-_s73zQAAAAAAXsVwbx9jqjuemtiUm8j-_s73zQAAAAAApykkbx9jqjuemtiUm8j-_s73zQAAAAAApxqgbx9jqjuemtiUm8j-_s73zQAAAAAAWS4Rbx9jqjuemtiUm8j-_s73zQAAAAAAkZW6bx9jqjuemtiUm8j-_s73zQAAAAAAlJzVbx9jqjuemtiUm8j-_s73zQAAAAAAlGaW", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MWuCzXH99QKyPSTUMq2R0Q"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz0oHZ3CKaS4aU08RhYA19y5ITQAAAAABvT2JZ3CKaS4aU08RhYA19y5ITQAAAAABtLMQZ3CKaS4aU08RhYA19y5ITQAAAAABtOzp", "types": "HwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "sBO5lTwHzh5B6XNPBNtjHw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAABCxaYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBv0", "types": "BgMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_eN577uJw5hksIBqBf1iCQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlqJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCIE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA9F6tVKI4mSYDEJ-ABAIpYXcgAAAAAApQKz", "types": "FAMMBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "i3qHsjq_vKfKNLwOfm-i7Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHX0kXT4fd_WKeR1cE-hlLelCQAAAAAAC8CS1XT4fd_WKeR1cE-hlLelCQAAAAAACzCUrXT4fd_WKeR1cE-hlLelCQAAAAAACzD5GXT4fd_WKeR1cE-hlLelCQAAAAAACgaGBXT4fd_WKeR1cE-hlLelCQAAAAAAChwJj", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "u9tk3moa0rpmNInJvBuemg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADHmXqXT4fd_WKeR1cE-hlLelCQAAAAAADHmkkXT4fd_WKeR1cE-hlLelCQAAAAAADHm4cXT4fd_WKeR1cE-hlLelCQAAAAAADB6QhXT4fd_WKeR1cE-hlLelCQAAAAAADQm1kXT4fd_WKeR1cE-hlLelCQAAAAAADQnNrXT4fd_WKeR1cE-hlLelCQAAAAAADQjwNXT4fd_WKeR1cE-hlLelCQAAAAAADQjKNXT4fd_WKeR1cE-hlLelCQAAAAAADQjeGXT4fd_WKeR1cE-hlLelCQAAAAAADQlp4XT4fd_WKeR1cE-hlLelCQAAAAAADHcz0XT4fd_WKeR1cE-hlLelCQAAAAAAC8k6-XT4fd_WKeR1cE-hlLelCQAAAAAAC8tjlXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8skcXT4fd_WKeR1cE-hlLelCQAAAAAAC8np9XT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8k7kXT4fd_WKeR1cE-hlLelCQAAAAAAC8nEEXT4fd_WKeR1cE-hlLelCQAAAAAAC8lQ2", "types": "HwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7AM0prgm67n5d6K3VpPj9A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wZOXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FgMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1F5okdkNPV4sVd83X5bYOA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAGSNOwpliUmPE7K5OCtB0_uiwAAAAAAAAANnH2PRDy3afrpHJb0PPWy4QAAAAAAAAD9y_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGcvKtJGgNPYlj-CA3c92J7wAAAAAAAAAY0v3fw3R6M9K5pBw9frSxowAAAAAAAAAfEXm1hlIrQc2WIKO4W87lDAAAAAAAAAAfDm9DG4ZqDn_4bGJnyMFN4AAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEKC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAkQmhZSkKN3zNxr0HYuO2pqe5hQAAAAAAbRaiZSkKN3zNxr0HYuO2pqe5hQAAAAAAbRENZSkKN3zNxr0HYuO2pqe5hQAAAAAAWpQ0", "types": "CAMwBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "IMcY7t7UBT608t-YbYkr9g"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgoM", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ddKCAt8I6JfAqt2_xFaDCw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_WnEcEvvhuguaGYCmGWrnWRz1QAAAAACXxyncEvvhuguaGYCmGWrnWRz1QAAAAACETeKcEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEWMJ", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TeWRzuib6_zjGTJZhr5MYQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADK74KZ3CKaS4aU08RhYA19y5ITQAAAAADK60-Z3CKaS4aU08RhYA19y5ITQAAAAAB0Hr7Z3CKaS4aU08RhYA19y5ITQAAAAABz7D8Z3CKaS4aU08RhYA19y5ITQAAAAABz7ZTZ3CKaS4aU08RhYA19y5ITQAAAAAB0J2gZ3CKaS4aU08RhYA19y5ITQAAAAABz943Z3CKaS4aU08RhYA19y5ITQAAAAAB0J2gZ3CKaS4aU08RhYA19y5ITQAAAAABz943Z3CKaS4aU08RhYA19y5ITQAAAAAB0J4lZ3CKaS4aU08RhYA19y5ITQAAAAABz-ODZ3CKaS4aU08RhYA19y5ITQAAAAABvRW2", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vpma7OHz1GIqMdFma9OCqA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEOE66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "AQMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0EMJmpczU4ucKazgHEe6JQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmoJ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_5WL1FeC7D0JWAYwOT6i8Q"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_-Qx-pCy53U7YabuA5eb0fAAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAcpSIXlNYnJYwCILAJFTEzSwAAAAAAAAAGTyuf4RNGIxt-ueaCsLj22AAAAAAAAAAXvSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0qlujNL7db72ZwWHkSPq1iAAAAAAAAAAa8tJujVK0pdTWlucWIQYskAAAAAAAAADWSXFZShc93P7Br4wzVi_TSwAAAAAAAABGl8by2NZ7WjCFmKmn5LkVDAAAAAAAAABNJj6ja2Wbkf1_R1a9nVWcUAAAAAAAAACJToVtc2P50kV-QGj3la9_ZAAAAAAAAABV5DGFi3MrQEDDo8fCYbA5hAAAAAAAAAAIHfMb4ib8WKiucqC90J7sSwAAAAAAAAAHsueTM-LYsBZU9Btl9NKTwAAAAAAAAAAEc8wp1Q45CdLtTNnj6qINTwAAAAAAAAAcuivmFtqkx0mSDLjpV5jf4gAAAAAAAAABRK8a3DzcZMuwoK9TpGXQTwAAAAAAAAA3hDeNHR-uaDqXexxBeqdlYwAAAAAAAAABNuqcOqANutL4nD8JjGfmlwAAAAAAAAAkOD88rfBmy4BfCXerLT5e5QAAAAAAAAA7yhF9CEzH60wdDBblzY1FcQAAAAAAAAAIOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOEnRoHyZazasm_zTjL5tnOgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMfDpp6LgRqCGeGjs7cnnwItcAAAAAAADsp5", "types": "CANJBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DRn5FcS1nxJTDCbqilgAig"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcoiHXy47Qw5euydEoPUexRgAAAAAAAAAga67hy6D4_aH__IrzfMid7wAAAAAAAAABrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZf4KmPLa6_uw8gRgiw9EUAAAAAAAAAE4ihprad0bkU-u2IU9StodIgAAAAAAAAEqfmVqFyGK_erbPbR830tm8gAAAAAAAAAPGqtKw4RB3R19EQhu6EuSBwAAAAAAAABEe7jcj9ca-ENh_em7UG8YrQAAAAAAAAAjpv2BnGF3DU5EF7_9vBhh5wAAAAAAAAAjqAJPfj7zVy9vjSAISf6DmgAAAAAAAAAIxAdnmGWjJXcKuwdszuwv6gAAAAAAAAAFO_BiL2ROZsn4VXLfIMjl4AAAAAAAAAAFPrVtf7vrjGGpVbEAol3b9QAAAAAAAAANZf0w4S_WIxaQJn4-TjKTOwAAAAAAAAApu84jH0Fi4giPpR8JCVg2uQAAAAAAAAAFeEsPvNGYH982Mv0mPexpzgAAAAAAAABKQH4VYcH0-bM7E6PfVIY9ggAAAAAAAAAA", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GgKE1zn57mDKC6DejA5z7Q"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAACceDtEsbyqaPA8nODsaXH2CwAAAAAAAAAjdb7h5t6lXZ_2CL1N4DXU6AAAAAAAAAAOcAnVCtwTUMiPtQhyaFTtfgAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAU3B2E3nnskNJUgYVRkMUbJAAAAAAAAAACHwm3pNPC4Wa3xFabNuzwcgAAAAAAAAAROVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAAEl", "types": "CQNCBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wZhqrriek0oSfMMOqXrFHw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7RXT4fd_WKeR1cE-hlLelCQAAAAAAC-pEOXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmkK6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXfZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXbg", "types": "FAMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Hyi0folCOrTOKWnTkwYx8Q"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYCMh__DRjYW6WKuSO4E-9UAAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFaD5tQt3PTji3IEVewu1DRAAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATKKq9hFu_HcVwkAnnzs7gcwAAAAAAAAAHDJAMC8tUl4_oL0LoeNoUgQAAAAAAAACVSjePYWwKalqPF7fBjhLglgAAAAAAAABeOVbzts78rozw73k3kwZElwAAAAAAAAAJw52v69QzC-f_wTnaeDz8vwAAAAAAAAALKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABf5okn6LIO72fwnskoiRwJAAAAAAAAAAQVr464Hci92DwulADwvd6QgAAAAAAAABZJvScc-kAblhDe3HgLZgGAwAAAAAAAACNatxNg2wB0yTwBdq5mQELkAAAAAAAAABVTm69BHhvzhA-OK8e2Udw5AAAAAAAAAAIhRsRUw78WKiucrogpgXANwAAAAAAAAAHsueTM-LYsBZU9Btl9NKTwAAAAAAAAAAEomA88yQfT91566xoyEY7sAAAAAAAAAAcuivmFtqkx0mSDLjpV5jf4gAAAAAAAAABRK8a3DzcZMuwoK9TpGXQTwAAAAAAAAA3hDeNHR-uaDqXexxBeqdlYwAAAAAAAAABNuqcOqANutL4nD8JjGfmlwAAAAAAAAAkOD88rfBmy4BfCXerLT5e5QAAAAAAAAA7lIoxgWzH60wdDIe5gejCgQAAAAAAAAAI3kqKIOk7SslvcfRGmqs1wAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOEnRoHyZazasm_zTjL5tnOgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAANUz634wiWh6F21tPpXr0Zz3mgAAAAAAENTq", "types": "CAMxBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0RLFnq52wVIAB0sP7d89Pw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbrkZ3CKaS4aU08RhYA19y5ITQAAAAABtb68", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "tcbTCLufHy8UbmaAK8q3ug"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtboL", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xQwMet3rir4ovrrKmjGlnQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiO_z5k14PsCcDvFyUC1kmlV3QAAAAABHtS2z5k14PsCcDvFyUC1kmlV3QAAAAABHghkz5k14PsCcDvFyUC1kmlV3QAAAAABHApWz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcDw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbgp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbfV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbeH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN6r96tVKI4mSYDEJ-ABAIpYXcgAAAAAALbR-", "types": "CQMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mfqAZXGyDqbH1fPMX0xAeQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAAFLrVzWSpKLw4v6Aqz2OFQqGgAAAAAAAAA7QqMFArUGE7c3aczTAAedSAAAAAAAAAARpny64bxVlV3tBC1sODqZ9QAAAAAAAAAA", "types": "CQMWBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LzP7Xe_aqXmeHoR1mZEElw"}} +{"Stacktrace": {"frame": {"ids": "-aKNhT4giJI0-fil_3Ot_wAAAAAABqqI-aKNhT4giJI0-fil_3Ot_wAAAAAABGek-aKNhT4giJI0-fil_3Ot_wAAAAAABGhu-aKNhT4giJI0-fil_3Ot_wAAAAAABHC8", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Rys4kwPoB7843D4vmJ7Cbg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmLg", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2s2gtHw1Byz4f-WAOloLeA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZxyf5INnJibBb8rT_yMcsAAAAAAAAAAEe6HlflPyKAlNlF7JPJCNJQAAAAAAAAFLEe5ZDKMHiVCtP6qAhF9CEQAAAAAAAAEqM0BdGcfCFDkj9hzrRHcPqQAAAAAAAAAGSxO-0PVs-XzTJlP5O_VPJAAAAAAAAABEEdzyCQG3P71X3W8_ToHzcQAAAAAAAABYIcaOS57nW0_cDU2ipChvQQAAAAAAAACGZT9893s0TSmaFPSQimvLOgAAAAAAAADlkkU17D-EC7UgmQ1ezfZJnwAAAAAAAAAIRRCB-prsWhHdH7-dfeGMbQAAAAAAAABBNnQKPKleyML9wLwMX6jW-QAAAAAAAAABp6Bzxzm52ErHu1F2bY_TegAAAAAAAAAn6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC33kqKIOk7SslvcfRGmqs1wAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOEnRoHyZazasm_zTjL5tnOgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAANUz634wiWh6F21tPpXr0Zz3mgAAAAAAENTp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALka76tVKI4mSYDEJ-ABAIpYXcgAAAAAALiQnIG5EpvTeHopVC9IqkA_kSgAAAAAAAb-w", "types": "CAMcBQIDCwQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bYYVZfAsnhVZHmI112IlZA"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAABFi2E", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FcPB6qo85UxIbtxQHfZTqg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSLL", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "uBbKBM9HPWXmF7lgBbqn7g"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSJ-", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7fijxECGAPGLx6hmM9oxjA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAAB1Rt6zauIajYCS35l66QRKCQAAAAAAAAAqE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFVIpKyJ4wSn-DKbqb5c24RwAAAAAAAAAco-YCkVIb1YKeUkrNTWvXyAAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4HIIjrBY7gA03CnEjMAD7QgAAAAAAAAAMBY5YV5xXx7ZBlABDbJ23mAAAAAAAAAAMcNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAAT5P9SwSLlS7AjqRDPaj6g-wAAAAAAAAAHyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAsm-6JEhiFmXqLZfGLnUoQcQAAAAAAAAAEomA88yQfT91566xoyEY7sAAAAAAAAAAc0Ws0TuC7P76blUs_eNtzJQAAAAAAAAABLeNDhekdw-sjNwsp6sqctgAAAAAAAAAHrpC2HihAJEedhpNUsvhzNAAAAAAAAAA3o3sxp4JlXj_WO36SyKuarAAAAAAAAAAFp5Sj0Wa5Ym1vTB3JVfCaPwAAAAAAAAAB4UIJHPt65c990zM1sh8JeAAAAAAAAAB0MrLUPjD52Cb8CegNxh_R7gAAAAAAAAAInfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYYUwJS6kVpV4XvYu7ZD33UwAAAAAAAAADZLdnJScMMbJz4xNn2ogw5AAAAAAAAAAOkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAxJYKWeVXd18GtPKr_b5YhEAAAAAAAAAAgZ9hje1cbFu-XpVYNW9SlywAAAAAAAAANjGpW5CwHOoA7hIucEbiLmQAAAAAAAAAxGOAeLBP6U_Nxv7LKjBKI9gAAAAAAAAAMobMmZgFi2W7RFIHEWC1vHwAAAAAAAAAEOySJoKKhdV4d8u0geDOOHQAAAAAAAAAMljijwxlolNIlc2z0nvWGRwAAAAAAAAAW3kqb9iL-AByP8rRfsVhi_QAAAAAAAAAGLE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAA8DDAjVJl721y2vxKHGSBegAAAAAAltV1", "types": "CANWBQED"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WhEDMzDK1NjN0Eborj2SQw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAACz-CA2HwYxn7uXuJvRLWceDgAAAAAAAAACo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAAAKzk_PAPIluouMAlyxqI2lSwAAAAAAAAALSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABg", "types": "CQNABQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "k-XfYQDa7TQIS1t1ntW1hg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAAByH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAIUe7YYWaQTMh8P2PCVzA2a8gAAAAAAAAAwm140cnmnDMXwCTqH-lotHAAAAAAAAAAEm140cnmnDMXwCTqH-lotHAAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OUe1LzZ6Lzlf4Ypiokhs2Q"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALO-i40hQb92bY-JOhJrV2owAAAAAAAAAs6l-EHm0OnthNsvyaQcuYhwAAAAAAAACj9kPyGC0UFb-ggUrmSlRB2gAAAAAAAAAffO_gJBPd8E-RahoVIhDflgAAAAAAAAAB1P3GTCQSFJPOIXZWIUu1PQAAAAAAAAARJQ--Da8UMa_zKaKYpLYZrgAAAAAAAAAItYnNSbSbqPfiGNhyW6TUtwAAAAAAAAABIEtETl463byzMJPLuRp-TAAAAAAAAAAIWNklusebG0tdR5ytKPlbkAAAAAAAAAAIBPGrhEymdtYQNz2pzn2GeAAAAAAAAAABMvHykdws074DrQKhhSE29wAAAAAAAAAUIEtETl463byzMJPLuRp-TAAAAAAAAAAIWNklusebG0tdR5ytKPlbkAAAAAAAAAAIWXc0Ul2uIu2AvsVIqd0TXQAAAAAAAAAlMvHykdws074DrQKhhSE29wAAAAAAAAAUIEtETl463byzMJPLuRp-TAAAAAAAAAAIWNklusebG0tdR5ytKPlbkAAAAAAAAAAI3gsDLXDLRJdnmH9et06JcgAAAAAAAAAnEdy7WlyFZta5S1JFk5yFhAAAAAAAAAAzGZgGBcuTH2cGCNk1SuZsdAAAAAAAAAAGMvHykdws074DrQKhhSE29wAAAAAAAAAUIEtETl463byzMJPLuRp-TAAAAAAAAAAIWNklusebG0tdR5ytKPlbkAAAAAAAAAAI6WTxcKL689nQxyNz9An6VwAAAAAAAAAEExpvcNX6rEhSTsF1Sr0dEAAAAAAAAAATc60dpyQ-P1ogTrxufpFElwAAAAAAAAAIaWccVudBBQC-rGrSZXIWwAAAAAAAAABbtDMJQZ6YV9dqMIolgyhxdAAAAAAAAACNARERFsH9aCTn8PbCU_PPbAAAAAAAAABTONHH6OehoJVnZCnYDVR0qQAAAAAAAAAwuV5aLL-du21LatlMUEqFAgAAAAAAAAAQ-SQAt_091j0wh4lQu2r18QAAAAAAAAAC", "types": "CQMiBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yWfNGi4bzSYK-Ui6nhRcEA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7zyXT4fd_WKeR1cE-hlLelCQAAAAAAC-8B3XT4fd_WKeR1cE-hlLelCQAAAAAAC-ykpXT4fd_WKeR1cE-hlLelCQAAAAAACp71EXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCM6XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcCd6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcBE6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjbU6tVKI4mSYDEJ-ABAIpYXcgAAAAAALipZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALyil6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUXpp", "types": "EwMOBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vPq841mqP7v92eT3yj4HMQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--RVXT4fd_WKeR1cE-hlLelCQAAAAAAC-7XmXT4fd_WKeR1cE-hlLelCQAAAAAAC-z7kXT4fd_WKeR1cE-hlLelCQAAAAAAC-1UKXT4fd_WKeR1cE-hlLelCQAAAAAAC-057XT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "EgMCBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6Of7n3LxXcuXac6SQ0pCtQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABt2kuZ3CKaS4aU08RhYA19y5ITQAAAAABt2kuZ3CKaS4aU08RhYA19y5ITQAAAAABucrd", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nyv_abDVLR7AwRgAX6ZS3w"}} +{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kuVi0_akuSWTIatJohqMk3QAAAAAAxjenuVi0_akuSWTIatJohqMk3QAAAAAA6hF5uVi0_akuSWTIatJohqMk3QAAAAAA6k4huVi0_akuSWTIatJohqMk3QAAAAAAl_pguVi0_akuSWTIatJohqMk3QAAAAAAjX5_uVi0_akuSWTIatJohqMk3QAAAAAAjZ80AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApygiinZb-VL-5X6K63nWolQAAAAAAAAAFsPRIu4G_UqOumyaMlOEsUwAAAAAAAAAalxBbJT8CEpl1TogDqQt4QAAAAAAAAACTOM9gozgq3V-c4gPwstZkSQAAAAAAAAABF0PU7bQ8aSr5vRj-z9gSNQAAAAAAAAB8HZ0GBRVKni6SsJNHL5AkLgAAAAAAAABUcPBkl6UDB30IKOzG7NoYMQAAAAAAAAAURuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAuVi0_akuSWTIatJohqMk3QAAAAAA7VKH", "types": "CAMLBQED"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FPsVwBlkey9ZrHIqOcJJzA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIBHkZBcmNHMjIQUGuyLAiYwAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACTXTxOwy8uhdU1jeoZU7T8QAAAAAAAAAE_btj02zrVOB5yHsjoNQahgAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAWQxy7B7Nr9PFo52Y5q5lwVgAAAAAAAAAtmdtLbTGS2m1_yRWrZMRMMwAAAAAAAAII6gfJzXw1oyUxocu6B990hgAAAAAAAABULk-ayVoCxcqQzq4jE_npOAAAAAAAAAAHxnshYjBCIPrEoLPbG8jHAAAAAAAAAAATh_yTy4lGEB-M1QSoVC2ShgAAAAAAAAAJth6lg9e5SyYc2UpZYBYbAQAAAAAAAAAY6gfJzXw1oyUxocu6B990hgAAAAAAAABULk-ayVoCxcqQzq4jE_npOAAAAAAAAAAHxnshYjBCIPrEoLPbG8jHAAAAAAAAAAATh_yTy4lGEB-M1QSoVC2ShgAAAAAAAAAPWOLvJGkQUNLVCxofhieaBAAAAAAAAAAGo-jqtuMSQjS4_DLqr5n5BwAAAAAAAAAHOd_tdbuxKdAsGp-YQDSdLAAAAAAAAAACK3z6VlJKaoVH_PfNkbsLxgAAAAAAAAACvYbs9q5H85HJMqhuczkhvgAAAAAAAAACuqDOD1ifWRsTEq9upTcTAwAAAAAAAACnSbMKXn5JJ9PM2UcXpJwIrgAAAAAAAAA-3rHPfLdsGQfhdDUx1rePLAAAAAAAAAB0bJdqs0wVc1wfQSOq_E3BmAAAAAAAAAALJJq_lJKXq3LjYiqODd2ceQAAAAAAAAAK0a23KvN2VLP0GcUAHobKkwAAAAAAAAAA", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dIBh8sUUni4s0t1rrnlQkA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-uXSXT4fd_WKeR1cE-hlLelCQAAAAAACgW3V", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1t0A0cwqqnxS4RnamHOttA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-TDVcEvvhuguaGYCmGWrnWRz1QAAAAACNFBbcEvvhuguaGYCmGWrnWRz1QAAAAACH4WncEvvhuguaGYCmGWrnWRz1QAAAAACH_OHcEvvhuguaGYCmGWrnWRz1QAAAAACH8KmcEvvhuguaGYCmGWrnWRz1QAAAAACH562cEvvhuguaGYCmGWrnWRz1QAAAAACH2i9", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4LbOSheVOPhBRtrj_efe9A"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATMsVxGJ_9ADjCLmkId1rUYwAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABV6WzOxn3OKFhpMveMHAeqDAAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAproTQ2x4u1u0ROVEifn0kaQAAAAAAAAAtOcVENYdBUHkmXadCZbxMcQAAAAAAAABX7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAMEozR7rHeowembmV8tqrkzHQAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5W0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAEXqmhrzhROIxdFfT_O0ufQNgAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAAC7R71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAACe6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC80G6zvzFPytbRyfwuXWQcAAAAAAAAAAB", "types": "CANABQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OLBhZqqz0joP6g8Ng4HUQw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAACSeel_AF4MFS6VTogqEciizwAAAAAAAAA4cNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAATPOaf2meILyNtXlyuau5zHwAAAAAAAAAKc6zhheBld8wEBO7TlhnPcgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB82g1SAYpsFtnBogFl0v0GAAAAAAAAADJdpQ3bcNFV5Y0XdediaTCQgAAAAAAAAALmmckjE-MysbZhDPP6gNxewAAAAAAAAAydmm7_Hn3SrysHeUffmIe9AAAAAAAAAAfaxxtk6GnkoiqRXb69JxcoAAAAAAAAACge4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJOdkuTNpXjsFc7WV5c_bgKAAAAAAAAAAMjBwquBL06pqJXOt8kphl0gAAAAAAAAAME5ablZjSwaw4LkNasKqxDQAAAAAAAAAFB3TkFubeMsUjXVlcESk9tgAAAAAAAAAMpmiRP16sLzHMk4sQotP67AAAAAAAAAAOqeHIgzzOczGD0wBwOrHP2QAAAAAAAAFJFuWxxcsr3tUR5NeFGer7vwAAAAAAAABnMWMRq4GUysNDjxb07DjPAwAAAAAAAAA3zpXAyp1QxqCx0Nj8RG5cPQAAAAAAAAAH7ZmFxDQcUJ2DdUoVkYC-ywAAAAAAAAAIs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFHy8-YFxh3xFG50wbJun6OAAAAAAAAAAIRA6fryXhwc6j3TqIqI_2kAAAAAAAAACbxPU5BqDaIJn7vLaWOn9pswAAAAAAAAACGCvRtTeITgdQ5d1IBVVvmAAAAAAAAAAFnUlR4gFV1TL9_w5t2UfESQAAAAAAAABD1LWZJ-lujpfxLmSgW40IUAAAAAAAAAAqC55o2NZ0tqgD3oJAMBv1vwAAAAAAAAAGbBkYL12c2ecT2962grUNRAAAAAAAAAAf0sEy6f7bCm9vTJv8u3oghQAAAAAAAACZ", "types": "CAM0BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1gf1rl7kyCfhLB6YiPdzMg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvU6cEvvhuguaGYCmGWrnWRz1QAAAAACLroTcEvvhuguaGYCmGWrnWRz1QAAAAACLsWTcEvvhuguaGYCmGWrnWRz1QAAAAACLsmncEvvhuguaGYCmGWrnWRz1QAAAAACL74lcEvvhuguaGYCmGWrnWRz1QAAAAACLvbWcEvvhuguaGYCmGWrnWRz1QAAAAACHvVycEvvhuguaGYCmGWrnWRz1QAAAAACHx8bcEvvhuguaGYCmGWrnWRz1QAAAAACHxnzcEvvhuguaGYCmGWrnWRz1QAAAAACF4_OcEvvhuguaGYCmGWrnWRz1QAAAAACFpY3", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "VzyMcaMWu883-Ds9Hg7mZw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYxUcCwk9iyCJTRBsvF-FbswAAAAAAAAAsZjA9xTUNBPFR9HhTt7X4owAAAAAAAAAFms77UquhEB9L8EpL6yLc0wAAAAAAAAAn4m5U9eeeE_AZZNhyDQlE3QAAAAAAAAACjV8HGQcIH37huzYl8sdkOQAAAAAAAAAygnsPShiCKySXCTykfsS4FQAAAAAAAAAqXaZGNqRrKLsTTQDai0tUawAAAAAAAAAEXazxZiS7BpDG4pZ8c1xUmwAAAAAAAAABKFGBFnajTppUPwKMAfWXvQAAAAAAAAAXfjtW9vtmDWgO1Pk6zjyUWAAAAAAAAACOcqdSAx5Uej3ncVA_SUVjsQAAAAAAAAAInIdh9JyDou_HWbuDWW9WJwAAAAAAAAABnD25wdhZLWE2nkSvAA770QAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkpuksTGLCNH21piOrMPoln5uBQAAAAAAgDN_sTGLCNH21piOrMPoln5uBQAAAAAAKPLusTGLCNH21piOrMPoln5uBQAAAAAAhtlw", "types": "CAMTBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "u5OSU5I_Lho0fyiRjyH2Ig"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw1x4XT4fd_WKeR1cE-hlLelCQAAAAAACwXCPXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_Y9XT4fd_WKeR1cE-hlLelCQAAAAAACiFIoXT4fd_WKeR1cE-hlLelCQAAAAAACiKQzXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "FAMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cwCCGQnhrBpXYeJR6UO6OQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgnQ", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mNezBhkZzdSGTljmi51tLQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJ0Bt_4cO5WqUPlkr8SPaKaQAAAAAAAACdOkx9I2dyRRofyvlGdVF32QAAAAAAAACUrwXSlDQ1x9VYCzlc6vMZVwAAAAAAAAAOPE7_q3aweA58rtlG2V2VoAAAAAAAAAAOPg1tQCxKG46c3Dl1FEcfWwAAAAAAAAAA", "types": "CAMpBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-IQP_--0veLpPEP-a-NjRg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAADxz_WaY2pXtLyni7L_8jKtBgAAAAAAAAAd1oyY5_H1XDxnqxtQutVBSwAAAAAAAAAA", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GKNlyx5cbQj8gTIosd1VCA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATtrHlBrKqhPY4wIsFmpvpGwAAAAAAAAAHfqX01Q_XnrWTMFwMltCSzQAAAAAAAAAcr6OQqChD9ydemA0TTpv7WwAAAAAAAAAByBhEFtyRRCvGIybyDtzQDwAAAAAAAABSUplh6FQYqmDpNUAIFNEKQQAAAAAAAABDiO1mMPtAsXsWYZtGrgAdjwAAAAAAAACoMUGOz76uheRW_JUVWNsoVwAAAAAAAAAFGBhILDYlssyThkp8tHozyQAAAAAAAAAMlN083j_rdg2B1dvviOhFMgAAAAAAAAAGx1wras1gluyTP-Y9Ht2HeQAAAAAAAACWORVIxASD4wCMIrAYPIVrNQAAAAAAAACVqZY0RfBvPvNV6NUJtoKH8AAAAAAAAAAN5LiiYvRk2tAe8r0a1hyONQAAAAAAAAA_n3ZXM9sPxSI10_imjZ8XBgAAAAAAAADdL8d7ZrNDNNkKQuLYAtJHoAAAAAAAAACVD_SFoBfOPuB9mtXdOIQrvgAAAAAAAAAevS5pENec6C6ecYnUlpn6vQAAAAAAAAAD2m4VqGfi_IE6FL0pSfE_-wAAAAAAAAAQYaC_rTr5WsI3HFN2LUobYQAAAAAAAABCXJOIidNeiRs9_ZATFdFs-QAAAAAAAABB2Tuo-C9u5ZQSFYDa7WjfzAAAAAAAAAAdl0o_mr3onqzQhpZerRGtWAAAAAAAAAAFxR9z1wQG4rHRUc-6hGmCnQAAAAAAAAAXcP7knzpeaRcHnYFC5O8YoQAAAAAAAAAjZBiGD584czs37vexEv-WgQAAAAAAAABxRBTRaju-ab8ob43Dp-qdJQAAAAAAAAAfvmmGHZfQIaqoPwChIOzq-QAAAAAAAABwmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAANRFjLCSKw9fP9oqeV0WzvFgAAAAAAAAAGwcWRy9o8aBuBPSZu3QixfgAAAAAAAAAGQgPoy2NvCHHBSCpV0FYoygAAAAAAAAAZABUSIyp6z6jka7vrSENSfQAAAAAAAAAT7d3seGBxg838auGMbrqBQwAAAAAAAAA3dZ7JiawsSbyUWtx7EnYO0wAAAAAAAAAGgvF2yYYQgGwIfgcGSJAUHgAAAAAAAAB6Uf1tpnHSTgQXg9RKIrvZYQAAAAAAAAAKbxcZQU9NPH7Mji3IrHeYGQAAAAAAAAAURw2pUsVoJZp3HkcB3nNMtAAAAAAAAAAFf8VYhNP4CdjxG54sGwOztQAAAAAAAABo-xeI6MIHiM8nZhd6ChS_mAAAAAAAAAEJEAeWdOtQ4-I723aXPsAYbQAAAAAAAAALrx1IYyt_N65Gocl6CDiGDAAAAAAAAAAB75MTQgFwHrOqmJ603qSRDgAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAAcVIf", "types": "CQNOBQED"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "HuzrSFPRQ1TaBzZ33t9Y6w"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9G0Bz5k14PsCcDvFyUC1kmlV3QAAAAABGP0wz5k14PsCcDvFyUC1kmlV3QAAAAABFQsI", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Fi1wUb286zTbiK7_F0g4YQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAJiAC6sIDdQuWlno6mhwaFiZwAAAAAAAADZ980-iSS9S0F-vkRag1FHZwAAAAAAAAAHLlS_2xs10ssihc5Uh6NqzgAAAAAAAAAf", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JKy5_VqsJK5YT0i7cfSI9w"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyFRZ3CKaS4aU08RhYA19y5ITQAAAAABtxRqZ3CKaS4aU08RhYA19y5ITQAAAAABtnlb", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dXLI9akSDfhUQO7SDVEsDw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyn-Z3CKaS4aU08RhYA19y5ITQAAAAABzzZNZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzypYZ3CKaS4aU08RhYA19y5ITQAAAAABzyff", "types": "HgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6KLawcrrsy_lcz8OQSiegQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAdLJM8DDAjVJl721y2vxKHGSBegAAAAAAdFId8DDAjVJl721y2vxKHGSBegAAAAAAdDgz", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mSmxc4aQIdqJmMpqMRrzaA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAAAaI0QtQ3x5Qtt-qibQRB-qEAAAAAAAAACTcGonFmCxGC0dUZ5gEg0KQgAAAAAAAAAF0Cdt9wyWxnG2B-xGXMO6owAAAAAAAADYVx2H7p06nNerPKpNR75HGQAAAAAAAAC4MVBEVPIg9jpvUF6dYB6UegAAAAAAAAAgGXtNt3Bw_FnzVg6vpA0KtgAAAAAAAAAWhGSV5zKrRFpCoM5XmwxNpAAAAAAAAAAH_56OZ5ZdGG3mX9wz1zNHYgAAAAAAAAAURuTViGJ9Pf477gXsTgiYyQAAAAAAAAAA8DDAjVJl721y2vxKHGSBegAAAAAA52YR8DDAjVJl721y2vxKHGSBegAAAAAAyfGVvQ7EacG6CR4rzcFaNFEsTQAAAAAAALJA", "types": "CAMNBQMD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "r16MsuJNGd9pCkzewZ9UPA"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYr1L9Bd3XIiGWasJdN8trI5tgAAAAAABYOyL9Bd3XIiGWasJdN8trI5tgAAAAAABOhkL9Bd3XIiGWasJdN8trI5tgAAAAAABKflL9Bd3XIiGWasJdN8trI5tgAAAAAABJ0R", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3YsAUtd5JQ3NZqfZlNTpBQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDLZcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxjVcEvvhuguaGYCmGWrnWRz1QAAAAACEN8ucEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEMmn", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "QjwZvc5Ld7ORXNUfvAcA_A"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LMXcEvvhuguaGYCmGWrnWRz1QAAAAACETRW", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-j5C91_VmNJiaip_TmatTg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNGXT4fd_WKeR1cE-hlLelCQAAAAAAC-uEIXT4fd_WKeR1cE-hlLelCQAAAAAAC-vdVXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_Y9XT4fd_WKeR1cE-hlLelCQAAAAAACiFHoXT4fd_WKeR1cE-hlLelCQAAAAAACiKQzXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NwwCTsQlvA_KVmT3evXpMQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qCmepCKWJQWWrX7mRVq-c9QAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_jdrai_0fDiGEvZJybTdZ_gAAAAAAAAACGPgne5T-0iZurfH30RkS3gAAAAAAAAAdXfHacyr3VZQyavlI3uwP4gAAAAAAAAA-JvlRd4Wn40C95D0SC2Hf0wAAAAAAAAGsceSN5BlMG0ARBYcsvYKxUgAAAAAAAAC9IB9QQU_Mapdn9O22PbyS1wAAAAAAAAAaz5Ok5kVT2l3xrDDU1L9N8gAAAAAAAAAGgdEtfESsDNl02I7JUxnTmAAAAAAAAABMx7_78vHPaEs7GBgJ0fETJAAAAAAAAAB8iH1rt2A0cDFvTr2IZcc8_wAAAAAAAACWi2HnQvZ0pKTd886GmsiskgAAAAAAAAADStb7SO-i1ysmwO8Lu0fgRQAAAAAAAADaCIJa2mPNm8b1wwJ_UCRwpAAAAAAAAAAZQzMU8x58pu8LAFTJ6bQCOwAAAAAAAACnd55u1lPodAfLflRouVTMDQAAAAAAAAAGdEFLUy6UWCzseZ9ehRkI5wAAAAAAAABXZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsK06i4sR69nVCcg3FbwNeuwAAAAAAAAAT90J0K9KRqjzo3OWaVDBuGAAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBAZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMoavQ7EacG6CR4rzcFaNFEsTQAAAAAAATs0", "types": "CAMiBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7ybeLjCjozZ27_Bx43Kdhw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZxyf5INnJibBb8rT_yMcsAAAAAAAAAAEe6HlflPyKAlNlF7JPJCNJQAAAAAAAAFLEe5ZDKMHiVCtP6qAhF9CEQAAAAAAAAGtVyubPqZIpIsaGdq5yyQHTAAAAAAAAAAHH3I9lsKeM021aDJgbYYYAwAAAAAAAABHL6IPi9cG-hWDQ-8_WE6FFQAAAAAAAABi4_IQF_LxnGyk2lDca0XOLwAAAAAAAAAoWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYv0o-SuFa6Ydo5LzhQb4MjgAAAAAAAAAGkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAgwPMn-SWi7gfHNn2n10TVWQAAAAAAAAACs1njeZVdcSoHf9g_Vz1CYAAAAAAAAAAdeNbj51SwVufxZ4R3ztSduAAAAAAAAAAMLbDXQXQlDNAPNuTWnAgwZAAAAAAAAAAIsF5y1rzkGcF6wVyaguE8oQAAAAAAAAAFillcsETYyGChWwTauJoFaAAAAAAAAAAJH993ZydDem1gABEwmkxlggAAAAAAAAAqAXdRYMIFcqxnuCjwvnMiwAAAAAAAAAANLfAmUfJw7DcyxWMo40P24QAAAAAAAAB7KH5_QfKIKeUIlFImab-3OAAAAAAAAAAHaiYAeaOefGgb8Ek1UStS_gAAAAAAAAALDB2VzjdOL-xaQLw1M8sZdgAAAAAAAAAB", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PBPveHYqj_2L4V53YjC2Wg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAABVUGAPUw2d5-4XxhgrPyPBigAAAAAAAAAyDid6ELKrHHo6Q5OlK6_GZAAAAAAAAAAfeXimxJw4055xWDImg8DzoQAAAAAAAAAqhIPSIc3LxfgC93-3l1xbUgAAAAAAAABg2WuDX_7V5y0Pc0pDkF5WNQAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAGv7pp6LgRqCGeGjs7cnnwItcAAAAAAAD9D26tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQL", "types": "CAMKBQIDBgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gbFoUhSiyAOf2A72gCDEhw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_-Qx-pCy53U7YabuA5eb0fAAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAck_IuQ3Tj-0pB21HCi5bPIAAAAAAAAAAGzgO9-qlGF96Qf8hviCOy7QAAAAAAAAD0Jj6ja2Wbkf1_R1a9nVWcUAAAAAAAAAEerQHoQu322PXTottWvRIsAQAAAAAAAAAGYNR_kK3tcd5nuXG_-CFlnAAAAAAAAADyUO0qlBGpfjAWije7sM9KBgAAAAAAAAAE", "types": "CAM1BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "k1XlOKugKDqN99EsABIGPQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVP4GdI6f6aagjBxBAKz-KIgAAAAAAAAAMqd26ee2y8slhneyPRIcQAgAAAAAAAADEwKREEYJF8V2B2guAeJRSCwAAAAAAAACoWsBETJrPecSrGYvg781P3AAAAAAAAAOb-bfXtV49fhR0KNLHrhQhfQAAAAAAAABZsFs-DxXlXTzn3bVNvCe0KwAAAAAAAAAEXwzvwXzhEy7CpnUA9MlgtQAAAAAAAAAA", "types": "CAMMBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yfDZhiWmLf30jUFk7-tkow"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAAB-5iAtVIILui-LgFNzk7nI4QAAAAAAAAAFTlb-NMKl40FjLIQMDGJfBQAAAAAAAAAXxme1OLUOxM6S5mWcBl9N_gAAAAAAAAAC8EydHzqUyrjotjG1DR1HjgAAAAAAAAADx7dNtL9l6yQnqIhb2iRkJQAAAAAAAABV85xU6UdOBVE-6wKT-DYa3QAAAAAAAAAcKlMLGpkm1pBrBLT79cviPAAAAAAAAAABzVZBdh_gmAiL5X6tN_0jKgAAAAAAAAAEWBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAABMQNDqKDPWY6nq0qvBxhyKdwAAAAAAAAByaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABAaHgX82y4T_e8yx1PTBBNgQAAAAAAAAA_WBXdhz4cG7Z1nFWG7UChaQAAAAAAAABRapg5i-nxkoOQjMlxB9g-swAAAAAAAAAFqYA0yXrjfQUiViGsCwfP0gAAAAAAAADolmdMMTHiYSG09aFSlb3EMgAAAAAAAADFB9zspJB6xk58idQOc2k5WQAAAAAAAAEJxa170c4ceuN7F4Z_jhJFyQAAAAAAAAEX7pXLIFt09fSjcQsRLxLYogAAAAAAAABfKhjp27nxAL3YQI2ArL221wAAAAAAAAAk4qZNxkVZi02_G1WdmsL0xwAAAAAAAABmzl67i1kGanBQpTW7SuGX_QAAAAAAAAAwIRSZAhdGPD6ZKrMqfWCRMwAAAAAAAAAb", "types": "CQNWBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "rh49DkcU1mNwsRDeGnJgHQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAADrAotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAGJ1xBvehWaFQefKkuHjb2hUwAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJFcHGeTZbDG8jQ9sbtbngcAAAAAAAAAAcs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFIAf9e80wW0ROOv48VcVi-AAAAAAAAAAcGY5WEW77dofWJpcPe0twUgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4pVlUGQpw_Cq0LEtbbly5dAAAAAAAAAAkN1WyTlGFxfHgSyYQ3aeHDQAAAAAAAAAOYSP8Ib_W13QEw_Ivysg7FgAAAAAAAAFyn0UYwZH5py59Xu9gAaxkrwAAAAAAAABAm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl5iN7OCAj-2IgmFqLvCWrTwAAAAAAAAESap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlJdvIaoH8miVW9zaDiDOZJwAAAAAAAADSap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlhW8OwmmxjJYCeXfLTZy__QAAAAAAAAFLap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlw4mT2NPQOW-Mg0N_xZsuzAAAAAAAAADgap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlRlK4jZbFueXylWP1GNjNSQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlL_sAxM5NHsnYQp22GwDx8gAAAAAAAABwap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAycNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAATPOaf2meILyNtXlyuau5zHwAAAAAAAAAKc6zhheBld8wEBO7TlhnPcgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB82g1SAYpsFtnBogFl0v0GAAAAAAAAADJdpQ3bcNFV5Y0XdediaTCQgAAAAAAAAALmmckjE-MysbZhDPP6gNxewAAAAAAAAAydmm7_Hn3SrysHeUffmIe9AAAAAAAAAAfaxxtk6GnkoiqRXb69JxcoAAAAAAAAACge4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJOdkuTNpXjsFc7WV5c_bgKAAAAAAAAAAMjBwquBL06pqJXOt8kphl0gAAAAAAAAAME5ablZjSwaw4LkNasKqxDQAAAAAAAAAFB3TkFubeMsUjXVlcESk9tgAAAAAAAAAMpmiRP16sLzHMk4sQotP67AAAAAAAAAAOqeHIgzzOczGD0wBwOrHP2QAAAAAAAAFJFuWxxcsr3tUR5NeFGer7vwAAAAAAAABnMWMRq4GUysNDjxb07DjPAwAAAAAAAAA3jsLLxIAhtu1IcuCmLP4yNgAAAAAAAAAH4T44kzE9JU_n4pRF5j5FFwAAAAAAAAAYSq4yJYXB5hEMp7oPtTmUiQAAAAAAAAAimSKMuTauUB6AvF_x3SDLhAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAlNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACu9RATOG9Hc01jgL4JokM8owAAAAAAAAAOgY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAFyZ0m5K0hyRADeQkG90vP8AAAAAAAAAAzOQ4Xdczub94PyW-2NBrCFQAAAAAAAAAJn8eXgVc_ymv5C0s_SD4x4AAAAAAAAAACtscFotyki1cui1xuu3ewxgAAAAAAAAAJz7em3gxFGrIrQEp2dvnPNwAAAAAAAAC68SpK-61-0PQXGtuYSbuPTwAAAAAAAABRhwFOO2vIT-jh5CUGPjb6DgAAAAAAAAAOsoiu5QRwZz7dtMbNLdCPuQAAAAAAAAAVJMRq6xCt8zXeV2v7oyIghQAAAAAAAABhtLN6FRqCApmsduxj5WK9JwAAAAAAAABkJYDhCBqV4GPq7uqp50dsDwAAAAAAAAAHuoS8VlPflz8QSK7BPMOvQQAAAAAAAAA0mB85Af8LXB7vdQUnyF54IQAAAAAAAAAI4ExmIEmG5cbeqkrcSlhsEAAAAAAAAAAH12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG7kZxFgbuXnmF5RM9H_z_ggAAAAAAAAAefMXwmZZHoKY5ug0oBlnUxwAAAAAAAAAff15ZZuvJposXWOcmbKQgxAAAAAAAAAAftL230chqNUuroXAS-gtapgAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEKC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAA8DDAjVJl721y2vxKHGSBegAAAAAAltTz", "types": "CAObBQED"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WD0vkI4ZsFJX0JeUNoVLqA"}} +{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kuVi0_akuSWTIatJohqMk3QAAAAAAxjenuVi0_akuSWTIatJohqMk3QAAAAAA6hF5uVi0_akuSWTIatJohqMk3QAAAAAA6k4huVi0_akuSWTIatJohqMk3QAAAAAAl_pguVi0_akuSWTIatJohqMk3QAAAAAAjX5_uVi0_akuSWTIatJohqMk3QAAAAAAjZ80AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApygiinZb-VL-5X6K63nWolQAAAAAAAAAFsPRIu4G_UqOumyaMlOEsUwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAjH-M-AAeStmxxhLg98P43KwAAAAAAAAAs4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEKZ08Ruc2q8aQheuBirtfwwAAAAAAAAAAffH4BrIPq_Gg0Z8uCbD2yQAAAAAAAAAb", "types": "CAMKBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dZVhEMwoIzMGD6Fthzhnhw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgKh", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "qvcjlUFBCF-JXqTwZS6SqQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAACUcj5Iicnc1YHT-TWyg9rL5QAAAAAAAAAffO_gJBPd8E-RahoVIhDflgAAAAAAAAAB8w2ZGyVQ-aMnL_pA1hWbwgAAAAAAAAAy76oMN5gawXJbUdBHZW56vAAAAAAAAAAEaK7zvL-PqvTlxTrdlldaFAAAAAAAAAADsimybevA8DW5tgv6lrGi5AAAAAAAAAADuDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKPzdDQa2X1btcuJ3DV1Tv8AAAAAAAAAB_X8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtnY6Bz6koyx0B67n9HdjFUAAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAK3rLZd5lPThQHbPceRXAomQAAAAAAAAAHQiFXaEzTwN7w_cqE4M3pQgAAAAAAAACFX8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtnY6Bz6koyx0B67n9HdjFUAAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKQiFXaEzTwN7w_cqE4M3pQgAAAAAAAADlX8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtnY6Bz6koyx0B67n9HdjFUAAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKtVvvb6Z5DEr7tZFzbFRlggAAAAAAAAAGNdurIec2eVknw5UWeyAGhAAAAAAAAAAg_OURcYkX0iBxmyshrTvm6gAAAAAAAAAXK68quRzmwMwkh1BjI5vLeAAAAAAAAAAhY_ur9VOSDEwVLljoZ7w15AAAAAAAAAAEQXvaGnSY0e9Ndzfl5fNy7QAAAAAAAAAVu3PdJ9uaY7J6wq8TpSw5VQAAAAAAAAAbFyvqj99pkKDWLuJmqlMKOgAAAAAAAAAMSpuVyl1yybAmI0lABPU6JwAAAAAAAAExdgWkppYlr-s8Z84eOTb42AAAAAAAAAACY1yo-8cTmG-L0M13S3Gv9QAAAAAAAAANrO2U8bCEOPtVR0fJrGRR8wAAAAAAAAAOk_OXYkZFyzIVwSwT1Fur7gAAAAAAAAAFa8XYoPW9pAQaMdeo2T4gfwAAAAAAAABM30LKpoivW5ehYDbXlKRqvgAAAAAAAAAG8AK2DMaPRPJBJPIbAxg5BQAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAAqd6J0rNuxKNw6YxtKvsF6kS_jQAAAAAACMlw", "types": "CQMsBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bwQ3geR6Dc9xi0t8guTHew"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKTEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKu8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfdgtQ4kMk_MBWrPUAFqVnYywAAAAACJEnagtQ4kMk_MBWrPUAFqVnYywAAAAAB1YosgtQ4kMk_MBWrPUAFqVnYywAAAAAB1YgbgtQ4kMk_MBWrPUAFqVnYywAAAAAB1KskgtQ4kMk_MBWrPUAFqVnYywAAAAAB1LIGgtQ4kMk_MBWrPUAFqVnYywAAAAAB1IpYgtQ4kMk_MBWrPUAFqVnYywAAAAABvM6NgtQ4kMk_MBWrPUAFqVnYywAAAAABvOaH", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5UNOLHWWOEbx8VEtnMeM4A"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABLN7ynDYiGG43L8r_Igy7BgAAAAAAAAActrUzCYGjKe3UUnWzzQXqEwAAAAAAAAAMT2c5-p_HTAiWRFE2IbjI8QAAAAAAAAA7h6Obzp5eyXgRpUblA-ofAQAAAAAAAAC9uMFx2Fq4FWmDdC9qTh9OCwAAAAAAAAE0KcjVoO3dzCmC3PrWs_ohHgAAAAAAAAAJjfWZKcvJcvZvI74FMiyrAgAAAAAAAAAB0hcFUvwWZfQvp2KtSe1TEQAAAAAAAAAH5kI3iCVPIGpJyER_pIOiDAAAAAAAAABK_t41Zgn8MiPpsE2ExccvfwAAAAAAAAAISlk7EKKi8JmNp7yELCNTwgAAAAAAAAACNglZAtsVMy0PR4D9Bo4v_AAAAAAAAAAIdH_-XVY1o9Dh1CsvXltQLQAAAAAAAAAJlL02ENMn9TDqCnir50TaAgAAAAAAAAAFECGxOh43abBH5lmW6GWEbwAAAAAAAAAcWz5q8JekpnYi0s7eTlcojgAAAAAAAACvu93Ukboxh3n8fpdAM9THpwAAAAAAAACRcw2Z8udT9L2DdqGSTwVYJAAAAAAAAAAGd4qHdalKlYFqF-4zvAgorgAAAAAAAAAWA40VS-0F5gGiCT87AV4zFgAAAAAAAAAciQVo4-YPSPQT8lzVnTciPgAAAAAAAAARlL02ENMn9TDqCnir50TaAgAAAAAAAAAFhiE_KnpB1y_AkU-QUSuyPgAAAAAAAAAQXKq9uwED2oR9Ctzag8AUbwAAAAAAAAAlJmbV-AH56XNUdA5-wxAqIAAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABHp77QPk88xsYu9Hpoa4_oAAAAAAAAAATwQRLh0_1mVfrLTkzs1izhQAAAAAAAAAHh3WTBx-QeTdXBYE6dCwz6gAAAAAAAAAHuBwOWLxdrKmAGkggaU_IuwAAAAAAAAACZB5AF2kz_ddL2Cqvbd8kDgAAAAAAAAAFi4PCA3W27MVi4Ei_Ff0q6QAAAAAAAAAx5so_KVSXFMoe2CmzNIidzQAAAAAAAAAdXhlVGmmxX5oIgUuiBewNuwAAAAAAAAAFpglWm0RMq3BU4u1P5KYMegAAAAAAAABqHbK35pQKizLIlGR5aUXSUwAAAAAAAAAE", "types": "CQMpBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "V4SdVA7f4ulo2UItR5v4bg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAJH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAADre7YYWaQTMh8P2PCVzA2a8gAAAAAAAABE_p12Y0DOk4cFEn5gGz9psgAAAAAAAAAE_p12Y0DOk4cFEn5gGz9psgAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "K_BTLwRmtLDAQZlUaG_XNQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAqovRPcszTde0VZh4hrqQUtwAAAAAAAABBgJKCOQJCNUe5j61lhCTyewAAAAAAAATdBzHaaplfCkGFxXmJVqCJAgAAAAAAAAARkLG20VFMtAeL120q9dFk-QAAAAAAAAAhR9d-4EOoAQqhB1QW7ZwT_wAAAAAAAABJstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGfDqNreXUioiFDFwNREuqLgAAAAAAAAAsCasUHBASz8HLDmgbus_pogAAAAAAAAANUKLoduJn5-YPXULy7Ukl9AAAAAAAAABuahMxWqP1a_8hG_qUbGypwwAAAAAAAAAd", "types": "CQMvBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EEeUn8b0Iub4lrEKoW-5lA"}} +{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwAIU6tVKI4mSYDEJ-ABAIpYXcgAAAAAADAxg6tVKI4mSYDEJ-ABAIpYXcgAAAAAADH176tVKI4mSYDEJ-ABAIpYXcgAAAAAAFqnG6tVKI4mSYDEJ-ABAIpYXcgAAAAAADS7g", "types": "BQQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "L1YWRxMqhNJmkC1cRmEGUw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAAeOWoia3OO91L6Q6k2Ypn2XgAAAAAAAAAW4LWodyiv9Hy4HicwczMhQwAAAAAAAAAGYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADUR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSrzUIpq900aeM1bcZXA4bwwAAAAAAAACX", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yuOdfjXuH9SHZfgGw5wpcQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFmUdcEvvhuguaGYCmGWrnWRz1QAAAAACExXy", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Z6LadKEjSbTRipkrctFwiQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFmUdcEvvhuguaGYCmGWrnWRz1QAAAAACExXncEvvhuguaGYCmGWrnWRz1QAAAAACEUmh", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "210ylSHwHO4ZytcOLGUc0Q"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATQDkJCt6xHk7D12ZqlrT-UAAAAAAAAAAHPX3E_b7jZQaK6SiJYskQ3QAAAAAAAAAJZaLdh2m65raIV_JyagrUBQAAAAAAAABnazI-mX3CgcWhg9AcjJjNnQAAAAAAAAART7Ugi353BwPylAwIPK3gzQAAAAAAAAHvdr7nJhzDAJ3KA627xZhFegAAAAAAAAAUE66a7lKbkjXDy4kHrdweRwAAAAAAAAALavH6-iyYHlN_flagvaXwWwAAAAAAAAAK5JuKxbkWPMw0EpITr8WSNAAAAAAAAAALCcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAAACQh22cv3M-xNK0_IOuNdQuQAAAAAAAABAdFuRXSangYgd0mdMqBWlpgAAAAAAAADqsO4szKNZnXyLfMP7gPsjpgAAAAAAAAA9jjxn4cl8bBaRqPgS5F0n8gAAAAAAAAAA", "types": "CQMvBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0mmkz3CnoIlIVzumszyK0w"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATMsVxGJ_9ADjCLmkId1rUYwAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAEKGqShcrW-d9_GDzTagKIU9QAAAAAAAAAG_h880XQOq8mngzMZR-nPlwAAAAAAAABR9iEsaZI76W1WejkwhmTFwQAAAAAAAAAHC64NVLkkZ7RW349y9srs0gAAAAAAAAAEH7o77ANtSaWU3Ypp865GJwAAAAAAAABW_93WPbrUDW14kcLWmrpKPQAAAAAAAAAG12nEeMsH00wjguIyHXaYDwAAAAAAAAAEHRnmOObX7UEhjneXDGbG8gAAAAAAAAAMWdf_fGMEPXcmaZUprOUqQwAAAAAAAAABzKHS4hsJddCCPPI3lqHKuAAAAAAAAAAF__e_ReExoac--V-RQeNXewAAAAAAAAAHqnkrTiN5YCts6ND7O0BX2QAAAAAAAAAPHRnmOObX7UEhjneXDGbG8gAAAAAAAAAMWj5_TD0E9go0_JwMtB1C3QAAAAAAAAAF3QWEH8eApmH_ruugOKv76AAAAAAAAAAHshNXixs-94AywpTuAMqgvAAAAAAAAAAK5m5J32z338iItYAy0IlfPgAAAAAAAAAopGnFHfBK3F-I6STArMJjqQAAAAAAAAABqsOdwnOfdpGhy1Ny492aAwAAAAAAAAAGbfWTJUKYANwcIsCQIfxvLQAAAAAAAAAC1rHoPMq-mpf_DwJrvHqYAwAAAAAAAACKpaeptaXHRDYD67F7ORC0twAAAAAAAAAg1_Zkws_RiLQY31aI-pl7oAAAAAAAAAAFugKdJaT7v8ADq65rxjOiXwAAAAAAAAASSlee4kfqZn4jriwWdPiU4wAAAAAAAAAELDeEdPdDzPRz2LdHTbcdewAAAAAAAAAB0OmJpqDVlOVkXz83zBD8fwAAAAAAAAABWBKrGzwz7SG6nZHQCew75AAAAAAAAAAERpSDTug63es5x1j9yGrZyAAAAAAAAAATzyYGVRP_YB-nnwhjpkxemgAAAAAAAAAFxo8H4Xbu1dhktweO39ARgAAAAAAAAABJa9xJ5FQfUEQO7I4aLnTqGgAAAAAAAAAGTzkAwqPHYLvwYBOwmocR6wAAAAAAAABZ", "types": "CAM_BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UMgRCn1Y6mTt_TSwWSLIVg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi09Z3CKaS4aU08RhYA19y5ITQAAAAACDf4EZ3CKaS4aU08RhYA19y5ITQAAAAACDf9dZ3CKaS4aU08RhYA19y5ITQAAAAAB9MVsZ3CKaS4aU08RhYA19y5ITQAAAAAB2nnMZ3CKaS4aU08RhYA19y5ITQAAAAAB2rW6", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5351nQbmEsceaZ_Owr4I3A"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVMhk7twoFFvGSvyWsBJzr5QAAAAAAAAAMS-bF0OQ5zu714NI9jV1-DQAAAAAAAADEb95z1GhnNzkQcVnTAGVlWQAAAAAAAACoZkPmPV7VCVD8EkLP0Gy3BwAAAAAAAAPSKp-m6YXPN7JWDmz-Pu761gAAAAAAAAAZvqa2qJ2cwRBJMXL7-qTksgAAAAAAAAA-uoQ2M4bRS4Qydql36um4PQAAAAAAAAAu8vigD8rt-YtQEvk4ur7eYAAAAAAAAAAcyg6hUybbKOuy2Th8HYOfDgAAAAAAAAAQ94QsDIL7bUk7Oxas7lNqGAAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJSYSSbioufiMK4TqEn24uLgAAAAAAAAAdXL_fwLkYkxkYcfgosK-fdQAAAAAAAAAQO_mHTPntGTw_EnF-rkI8XgAAAAAAAAAWiiLZnxbVRTQPtvWA0miuyAAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdfJIr5vQAn81_ytZBhz6xpAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAABduSa7rLKjwnZa9hewarfUgAAAAAAAAAIHMo9CJkBJDT98ldAVMcaFwAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAJMTTvJ5_z-0po5hbnYEq-wrAAAAAAAAAAwy_GIpaxCX5IFnS0F_BXM3wAAAAAAAACNSl8QmNBWhfPFBDZ-zT5cegAAAAAAAAAFoUmvbu27lKG-DWHnm0Y3zQAAAAAAAAACm2pQsanpFOaBzgnh--wYhAAAAAAAAAAQA0eVofdMKp0fyGfOekNToQAAAAAAAABFzdNMqH5FJokP-kpdb9WNRQAAAAAAAAAJYMf1vN4Xj82X8azesbKqWQAAAAAAAAAUtsS1EtD0AN9RREU7M9BEeAAAAAAAAAAA", "types": "CAM0BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RWZgRvM7NzicByW5D02O8w"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVMhk7twoFFvGSvyWsBJzr5QAAAAAAAAAMS-bF0OQ5zu714NI9jV1-DQAAAAAAAADEb95z1GhnNzkQcVnTAGVlWQAAAAAAAACoZkPmPV7VCVD8EkLP0Gy3BwAAAAAAAAOk-bfXtV49fhR0KNLHrhQhfQAAAAAAAAC9iDeUqi9fXDm_fNSrL17LBgAAAAAAAAACnzw4AVNutfhHt7T-gQii5AAAAAAAAAAXXpviWYO7CFQF88r_qvK5hQAAAAAAAAAJMnYM9B90Ha_6l2oFXip8PgAAAAAAAAAbvoqjqV6_-EldPWpE4Bg5QQAAAAAAAAAl", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "o0AT_E1hMiqX6VkkOkU3dw"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHba4rFFPORY8_4FvK9QaA3QUQAAAAAAGRIW4rFFPORY8_4FvK9QaA3QUQAAAAAAGRJh4rFFPORY8_4FvK9QaA3QUQAAAAAAD8_f4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEMso4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp4rFFPORY8_4FvK9QaA3QUQAAAAAAE8PoUJmIMEc6K8gJ39NHYaD0WwAAAAAAEPcl", "types": "JgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NMvk0bRJU9YFEqW7dUmPTQ"}} +{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAADz3d", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6wH2PMvQLOzb-w20cckcQg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAAGkuWcUG2bf_MgJpXpuAZivRAAAAAAAAAAx0nBVkJrBQHU_wusVG6_3KQAAAAAAAAB96PDTyNLwDP2GCrVJoblLzgAAAAAAAABIciQsV4oUc5gYfL4dony27QAAAAAAAAAnOIU72g2wQhgyLETe_w4R1gAAAAAAAAAOY_F3wsW4jiujqo6Je7YffgAAAAAAAAAJWHc6TeyRQEqs6LkNUiVKVQAAAAAAAAAzqeBE7mdKgcIgzAsX_goa7wAAAAAAAAAH", "types": "CQM9BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vgdZ_DAZjunrtiwZaVAaNw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF88yz5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF8OEz5k14PsCcDvFyUC1kmlV3QAAAAABFxdxz5k14PsCcDvFyUC1kmlV3QAAAAABGnbQ", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GLNGk-y2oGwbb6kjN_834Q"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHphgz5k14PsCcDvFyUC1kmlV3QAAAAABG-csz5k14PsCcDvFyUC1kmlV3QAAAAABHCmp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALiNV", "types": "CQMHBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wDaxiAlNCniADyyTRRvwig"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFVZ1cEvvhuguaGYCmGWrnWRz1QAAAAACFWa5", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "um1TAUTtgy6aD0pdjdvpug"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY5T8Yhyloa65D1snwfHUbjwAAAAAAAAAXvz3TbuBnWyl9Ei5te-E_CAAAAAAAAAAmkQIfOKgH7suSILPob4uOXAAAAAAAAAEjwTSbu1Pr78mJrU1RTg5RYgAAAAAAAAAkr8runDm4rOcHO76XR-D7jAAAAAAAAAAMqCAXb4nsA8MBowrcfqVWbwAAAAAAAABd2cxgkaQz6jHA-zT7PPZDvwAAAAAAAACzjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAABhRJXjPkp22gaQo9vwY-85JAAAAAAAAAAA", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JgUfQM-rwdQlgto7hkaw2g"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbY0Yxe-SHgukLEpCkawSk1QWAAAAAAAFznNYxe-SHgukLEpCkawSk1QWAAAAAAAFzx5Yxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaO", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "raE6kJoWm3X2iURrV-a9zg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbrkZ3CKaS4aU08RhYA19y5ITQAAAAABtb7T", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-mvN-EJywD2CtGMVjxfj7g"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnm-JqTOPsI6f7Ul_-cxfp2AAAAAAAAAAQx3IEgecNM_mSugRYX-4FsAAAAAAAAAAHdlfntofA5ohST-yRkUwXxAAAAAAAAABLQmIa47dF-WTkDSMX25OUNgAAAAAAAAAXOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB8NNZPX4WzZU8wwEhaddYdwAAAAAAAAAtv8jasp6reY29DfYcp4RGRAAAAAAAAAAkiUM7HhCYw8WqPBVTethJVwAAAAAAAAAQEUtxuQstd0YETwGxTB_G5gAAAAAAAAAZoR6ICTVNNCMS_uU8l3S0qQAAAAAAAAAcXSIOV1ohkclYqqYakcDyYQAAAAAAAABpQFmkHrTe4rYuSaotjLlfzgAAAAAAAACc_0-4l_O5OSPUrCE3hq6HrwAAAAAAAABAaiJNholFfohVF-0vnVFI8QAAAAAAAAACYd3m7to-rQ0lGj5ikS-dAwAAAAAAAAA6Jykms_cRxKkshvpgqtA2ZQAAAAAAAAAEc8zFoGf2iwssgQlulfqQkAAAAAAAAAAGBFGjgFTdK1xnfs0xj5apUwAAAAAAAAAEP9BGxoNfJ5xFs47cHe23_gAAAAAAAABKLG1iCWXc581Ya7-aKQE_xgAAAAAAAAAgkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAZgWgyKs0cnaG6FMFlBYqqnQAAAAAAAAAA", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "y5OUJzFBgHr4Ges87IpuYw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAABuJiDit2LD3UA_K38KQLtubgAAAAAAAACIGS-BM31ayIfhOMl6o8fHjwAAAAAAAABu7zPKGV-eM0z3BYd8xdD0NwAAAAAAAAAHjH-Kh7eMoVAEa99gkdQ-YQAAAAAAAAAWvtOmTuUGvKYiQRK_O9kHuwAAAAAAAANUANQ0YYpZP3RAycFynQe56AAAAAAAAAArbu-iOIJyfhomu1qj0BqWkwAAAAAAAAAGPi-02an-VcSObLNuz_uUNQAAAAAAAAAF7e32DwxqF0KavchyqVkOEgAAAAAAAAAgwQ_ty31z3DmE5XjxpCpS5QAAAAAAAAAk", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SGvw5ir6fB5BAdIsbNGI6Q"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN5QmcEvvhuguaGYCmGWrnWRz1QAAAAACNw3g", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FVMVLTKSYZDdHWfCEO0OQQ"}} +{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBAu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAYtbf6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgVN6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOBI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN216tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIer6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlH3T6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIYH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIRA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAl1AE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlzoH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlmtx6tVKI4mSYDEJ-ABAIpYXcgAAAAAAld1y6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi8ED6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs-i6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "FQQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3R_Mil7LaIegq27zUpnnTw"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAABFtOs", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2r62w1--BLvFTjONci85xQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAAGkuWcUG2bf_MgJpXpuAZivRAAAAAAAAAAx0nBVkJrBQHU_wusVG6_3KQAAAAAAAAB96PDTyNLwDP2GCrVJoblLzgAAAAAAAAAX", "types": "CQM4BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Zvfv-v1dDQYusgwWUDpBXw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAdLJM8DDAjVJl721y2vxKHGSBegAAAAAAdFIV8DDAjVJl721y2vxKHGSBegAAAAAAdDbu8DDAjVJl721y2vxKHGSBegAAAAAAdJ0N8DDAjVJl721y2vxKHGSBegAAAAAAciu9", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Jcfk66YXZuy5CZSv7G2qMA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXDNgtQ4kMk_MBWrPUAFqVnYywAAAAABqaJ-gtQ4kMk_MBWrPUAFqVnYywAAAAABqYJkgtQ4kMk_MBWrPUAFqVnYywAAAAABqYXkgtQ4kMk_MBWrPUAFqVnYywAAAAABqZY3", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vWLhaRktefOGM0ssEqx48g"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAABCxaYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBwt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBGg", "types": "BgMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fzTtNi1gMdKfhJuzA7AQFw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABiUDU1_CPvfFPVWUEWglidAAAAAAAAAAAoWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgg8ia7_SjtnnoFsx8t6EVmgAAAAAAAAACS4pDMZQIDu6mVxa95R8FGQAAAAAAAAAdeNbj51SwVufxZ4R3ztSduAAAAAAAAAAMRLw4AzQ1twQD4Yf1dhVtogAAAAAAAAAICEhlVwLkGcF6wPQ9FYzYUQAAAAAAAAAFEqtQxEspQTRRSSWWTkm-NgAAAAAAAAAJnPcpIVOjAbk4oUD0VpGGhQAAAAAAAAABZ_WnWFmJraaLolV8hl2sigAAAAAAAAADWt0sf_JgSqOTKaBcf1zgawAAAAAAAAB7FzJF8qZ49M3tzNcHAYKOpwAAAAAAAAAHcx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAAjYKoBBl0G_e9oE7cFaZfzDAAAAAAAAAANrGDifO1Mqf9Ue5AsCRkS-AAAAAAAAAAN2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdQShimh0tQga8QazMW6_qBAAAAAAAAAAB_fOhPrA482cdtwnWghjHQQAAAAAAAAAM8hquOE5UjuqbQKed-OMfiwAAAAAAAAARWNHUiu4BFqRVmqF_mtCsFQAAAAAAAAAD3r-tlbWKH7Bh4O96M6j3bgAAAAAAAAAilJfPltGODmJePtyLCuHROAAAAAAAAAAkN2l90EY7421Zg1g-1T_v1AAAAAAAAAAE-DPNVL1TcvLrgQ4V1LL_zwAAAAAAAAH4Ojpv1HELhgp1kupkcCnqDQAAAAAAAADQiRiNb1KQ25fdOTdSi9TsbgAAAAAAAABkpFdw5ZXUxbxybXgBBjV8_wAAAAAAAAAIwBS6oN6cYq-0LLiCMfm7jgAAAAAAAAAN6IcKgNE2SHwXI30k_3NYuQAAAAAAAAAjAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMwBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JsKo9eA_zbsAOvux77lhHQ"}} +{"Stacktrace": {"frame": {"ids": "LhSmdLZs37wH6EMWPlegEQAAAAAABFYRLhSmdLZs37wH6EMWPlegEQAAAAAAEqEkLhSmdLZs37wH6EMWPlegEQAAAAAAEp4fLhSmdLZs37wH6EMWPlegEQAAAAAAEpTALhSmdLZs37wH6EMWPlegEQAAAAAAEmvZLhSmdLZs37wH6EMWPlegEQAAAAAAEmVX", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vGkLtxNBR6Lr1M8J7YwcMA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVuttUA2IAZoyKZAgCzy0iDQAAAAAAAAAIpokhquvW9ooLc3LbDvwZ4AAAAAAAAAARXasdzsgYzXeaIf1qB6YHcQAAAAAAAADmPFj10tn7Q5v6DtY9a--2yAAAAAAAAADTXQF-stwqMiArQgxmCuIBPQAAAAAAAABICdiM_N4hdaPvSJwq3P6azwAAAAAAAAAENtCGtgNOSKjf89hTQ9pKCgAAAAAAAAAM1dtimHb35RfEFCzsXx56LgAAAAAAAAAHCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAEhQ2OXkHYZRXh3_WLXzxSBAAAAAAAAAAEqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYMn0lhQNjNLc2TiLs5CI5twAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFdciEg2zVAoapt7MT0cXoNwAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAADrAotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAGJ1xBvehWaFQefKkuHjb2hUwAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJFcHGeTZbDG8jQ9sbtbngcAAAAAAAAAAcs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFIAf9e80wW0ROOv48VcVi-AAAAAAAAAAcGY5WEW77dofWJpcPe0twUgAAAAAAAABEkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4pVlUGQpw_Cq0LEtbbly5dAAAAAAAAAAkN1WyTlGFxfHgSyYQ3aeHDQAAAAAAAAAOYSP8Ib_W13QEw_Ivysg7FgAAAAAAAAFyn0UYwZH5py59Xu9gAaxkrwAAAAAAAABAm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl5iN7OCAj-2IgmFqLvCWrTwAAAAAAAAESap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlJdvIaoH8miVW9zaDiDOZJwAAAAAAAADSap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlhW8OwmmxjJYCeXfLTZy__QAAAAAAAAFLap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlw4mT2NPQOW-Mg0N_xZsuzAAAAAAAAADgap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlRlK4jZbFueXylWP1GNjNSQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlL_sAxM5NHsnYQp22GwDx8gAAAAAAAABwap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAye4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJsVRH8uyfnyQixTABDkZaEgAAAAAAAAAkoIYS8oKywxk33PzxrExveAAAAAAAAAAZETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASETEs_vJj_-q4WFpNiG_LRQAAAAAAAABDs4lxyv29UjBRbk4Egon88gAAAAAAAAAHrV1JNblxRI5fLicyinWLbQAAAAAAAAANAzxlhtMMySYrabepp4O8EgAAAAAAAABMrmSs41XtF0_135XyexZ4IQAAAAAAAAAEoIbcZroK0mbxpVqmuMaywgAAAAAAAABtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFhext5Np4MklqKjuB1rw5igAAAAAAAAAYxo4rC3y2CcS6B7wZyQHREAAAAAAAAAB3hThLzOSIQizmnJjoY5cDqwAAAAAAAAAfY-QS5npSPxf1yPUr9712ewAAAAAAAAD6EvmR5VG66Hin8yuowLafLwAAAAAAAAAHNIqjhtq1D0AkrNjRb27RUgAAAAAAAAAfFbQyH2luUdjXmVcHyvzWswAAAAAAAABqrOlNBVu_tgbnoZ0Ov--VbwAAAAAAAACRHWZttOsFf_YSOazNjHUqCQAAAAAAAAAGnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYPWtIWZkUUG3HKpZ_gvZdFgAAAAAAAAADle3dvr5GnvRtS1OdN5yIVwAAAAAAAAADkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAgtKw1MOs57-P0NtuUhrlgBAAAAAAAAAA1CvC3lIC7E70AiCoZ7DVYSQAAAAAAAAAI_qdX8twer-rDPhvmBKnqlAAAAAAAAAAIxCNGQgO99Ct-y3BxTXN3RwAAAAAAAAABPvkNrqlBZGfa7AFgtE4r5QAAAAAAAAAA", "types": "CAN_BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Z0x2qcndWnWv_949s_B0kg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUpA", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UP6ivM1qmQtrm_2izDMY1Q"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADH-EQgtQ4kMk_MBWrPUAFqVnYywAAAAADIatkgtQ4kMk_MBWrPUAFqVnYywAAAAAB8FY6gtQ4kMk_MBWrPUAFqVnYywAAAAAB1oX9gtQ4kMk_MBWrPUAFqVnYywAAAAAB1mRbgtQ4kMk_MBWrPUAFqVnYywAAAAAB1lXugtQ4kMk_MBWrPUAFqVnYywAAAAAB1llZgtQ4kMk_MBWrPUAFqVnYywAAAAAB1tMEgtQ4kMk_MBWrPUAFqVnYywAAAAAB1tQogtQ4kMk_MBWrPUAFqVnYywAAAAABr0QkgtQ4kMk_MBWrPUAFqVnYywAAAAABr0bH", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_VgrHu6f1LBh-n720CWflw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAAB1Rt6zauIajYCS35l66QRKCQAAAAAAAAAqE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFVIpKyJ4wSn-DKbqb5c24RwAAAAAAAAAco-YCkVIb1YKeUkrNTWvXyAAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4HIIjrBY7gA03CnEjMAD7QgAAAAAAAAAMBY5YV5xXx7ZBlABDbJ23mAAAAAAAAAAMcNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAAT5P9SwSLlS7AjqRDPaj6g-wAAAAAAAAAHyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADv9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABDHfFlM3axnhO28EteQn-2WAAAAAAAAAAQ8PieNjC1veMxdb12gfHBLwAAAAAAAAAL33KG7GCGOYJMsSjoSSkEJwAAAAAAAAAF91NwS7lzCKtMa9wKtX82wQAAAAAAAAAAAAAAAAAAV4sAAAAAAAAAHXOBFFPSGeW_8DDAjVJl721y2vxKHGSBegAAAAAA05bp8DDAjVJl721y2vxKHGSBegAAAAAAhdXQ8DDAjVJl721y2vxKHGSBegAAAAAAvutQ8DDAjVJl721y2vxKHGSBegAAAAAAvuko", "types": "CANCBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JT6kUzwPy34L4dx63HT66Q"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAC1On5Z3CKaS4aU08RhYA19y5ITQAAAAAC19YhZ3CKaS4aU08RhYA19y5ITQAAAAAC14rZZ3CKaS4aU08RhYA19y5ITQAAAAACs8g9", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zY_FUxiP8lY6XZ2ati0KCg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbQ5Yxe-SHgukLEpCkawSk1QWAAAAAAAFznNYxe-SHgukLEpCkawSk1QWAAAAAAAFzx5Yxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHafM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrkJ", "types": "CwMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jL-_rgTa7K52iv0NxwT3Tg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbY0Yxe-SHgukLEpCkawSk1QWAAAAAAAFznNYxe-SHgukLEpCkawSk1QWAAAAAAAFzx5Yxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHafM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrj6", "types": "CwMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JlmUYqLcZQBfpkhkjSjA4w"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABiUDU1_CPvfFPVWUEWglidAAAAAAAAAAAoWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgg8ia7_SjtnnoFsx8t6EVmgAAAAAAAAACS4pDMZQIDu6mVxa95R8FGQAAAAAAAAAdeNbj51SwVufxZ4R3ztSduAAAAAAAAAAMRLw4AzQ1twQD4Yf1dhVtogAAAAAAAAAICEhlVwLkGcF6wPQ9FYzYUQAAAAAAAAAFEqtQxEspQTRRSSWWTkm-NgAAAAAAAAAJnPcpIVOjAbk4oUD0VpGGhQAAAAAAAAABZ_WnWFmJraaLolV8hl2sigAAAAAAAAARmoug4ghdvV0L6kc1EBfG1gAAAAAAAAAMEv5ZvILr4tvntiwSPeUhSgAAAAAAAAAI1dAR1DRu30HO0nOIbN0CKgAAAAAAAAAFGMI3PZtY4pqLz85PHavuaAAAAAAAAAAH0LGXmFocz46kL18OXWxszwAAAAAAAAA1", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "duo0Ze5zflWT3RoURhqfhQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vCpXT4fd_WKeR1cE-hlLelCQAAAAAAC-n8QXT4fd_WKeR1cE-hlLelCQAAAAAAC-oY5XT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ8", "types": "FAMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "prGHKpIxIBvqJNQElllWaw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABBgJKCOQJCNUe5j61lhCTyewAAAAAAAATdBzHaaplfCkGFxXmJVqCJAgAAAAAAAAARkLG20VFMtAeL120q9dFk-QAAAAAAAAAhR9d-4EOoAQqhB1QW7ZwT_wAAAAAAAABJstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGfDqNreXUioiFDFwNREuqLgAAAAAAAAAsUKLoduJn5-YPXULy7Ukl9AAAAAAAAABuahMxWqP1a_8hG_qUbGypwwAAAAAAAABLBxro6MzL0IEoov9fTT11owAAAAAAAAAWGEiuUOI8r5HYB6MJ06RvdgAAAAAAAAALVFPngTpbGPWtyIvTsDMCwwAAAAAAAAADYDygzD4g32kYyEUwGvnhaAAAAAAAAAAA", "types": "CQM8BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "D-ToJgKdWowgyxDTv_PoGg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_ecYcEvvhuguaGYCmGWrnWRz1QAAAAAD_DAGcEvvhuguaGYCmGWrnWRz1QAAAAAD-KImcEvvhuguaGYCmGWrnWRz1QAAAAAD-Kj8", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "M-MVs_7S3urLefk1LjOXMQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATMsVxGJ_9ADjCLmkId1rUYwAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAE7fiqNEC4hTNfpjbFJ8zPtkAAAAAAAAAAFfFtXuenTBEiIanE9ZLS9KQAAAAAAAACHzpP80T6FdaTGeY1BUSMu-AAAAAAAAAAFi8qUzmADhGx9PMH8RJ_tdAAAAAAAAACPZ41z-remt7jPNWprM_rymwAAAAAAAAOA3M56M_g_f1gYgGNi_mtl_gAAAAAAAAMghQvt9SGcnRC8tVEB_Tur9QAAAAAAAAAOk8128AKbUGB0smWYBgRB6AAAAAAAAAABdXCCMJJCG6SB0NI-JLXs-wAAAAAAAABx", "types": "CAMnBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EhjS2ZTFyA2g4l1OL6QaBg"}} +{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI7B_NxRB-tFVbAaTDiew0fwAAAAAAdyiE7B_NxRB-tFVbAaTDiew0fwAAAAABTOLj7B_NxRB-tFVbAaTDiew0fwAAAAAApa927B_NxRB-tFVbAaTDiew0fwAAAAAApYf-7B_NxRB-tFVbAaTDiew0fwAAAAAApVa47B_NxRB-tFVbAaTDiew0fwAAAAAApVPF", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "brrtOS1R2EI-JAakU-xOLQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbiV", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ymZhfR6CSgi_0T9KIxwzLQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChkN8XT4fd_WKeR1cE-hlLelCQAAAAAAChdmzXT4fd_WKeR1cE-hlLelCQAAAAAAChdCoXT4fd_WKeR1cE-hlLelCQAAAAAAChd3h", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hdkvaeKR7zUkSoU1xekEFg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsgobx9jqjuemtiUm8j-_s73zQAAAAAATTx9bx9jqjuemtiUm8j-_s73zQAAAAAAQE2Pbx9jqjuemtiUm8j-_s73zQAAAAAAQDPXbx9jqjuemtiUm8j-_s73zQAAAAAAlA2vbx9jqjuemtiUm8j-_s73zQAAAAAAlAxCbx9jqjuemtiUm8j-_s73zQAAAAAAlAN7", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "AhFZqwHd5QXLapCgztWs4w"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAAAtt2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAHIG1OnoGXN6zXJZoQUHRmxAwAAAAAAAAAxYEThj3UEuGl2wDiJSq9vSAAAAAAAAACqZou-EwmpdzrcXx7eij10xwAAAAAAAABPIdkGKdrrMvbrgpaqyJ-rigAAAAAAAAAJUpqzzk59PbxypyRs4QkNMAAAAAAAAABYNyW53PYqE1m3YVflb2BCegAAAAAAAAABMgCpDbfqkuF0Au3Mi2jaeQAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAAAgWMBQH2cqudnz0nG322UKdQAAAAAAAAAMGO1QDVqG-4CNnMRn2v_9VAAAAAAAAABWj4D5A-hVhJ3sXUDMsr3WcAAAAAAAAAAV_12dBBQS0uavYleBZwRCTwAAAAAAAAAA", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YhKxkPrAdtcjRgR6Tgd2MA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF88yz5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF7qqz5k14PsCcDvFyUC1kmlV3QAAAAABGC9Iz5k14PsCcDvFyUC1kmlV3QAAAAABGC30", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4CYs8zRCH2kwIRvoJLaDYA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATMsVxGJ_9ADjCLmkId1rUYwAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABV6WzOxn3OKFhpMveMHAeqDAAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAproTQ2x4u1u0ROVEifn0kaQAAAAAAAACHhQj1w50CfP8YweEdnC-JyAAAAAAAAAAEr8runDm4rOcHO76XR-D7jAAAAAAAAAAMqCAXb4nsA8MBowrcfqVWbwAAAAAAAACCbem31qqzjUFpI7bh8w8-nQAAAAAAAACjeIKZHUnkOnlIeLcFKA7B_wAAAAAAAACcBYItgZpVD2E3ydG9PJ9meAAAAAAAAAApUepoRzuMTBR-jFpLlu_fPgAAAAAAAAA3DVSkUfLwOzQuwgYi6TvurAAAAAAAAAAdBvLbND_0DrAH3Z_KTjqNwwAAAAAAAAAIiQ3-U2pFJokP-jlw4Yr9FQAAAAAAAAACdYhRx-e7CFQF89Cj2l7eOQAAAAAAAAAJvc-j1E8HSTKofoqXgmmEFQAAAAAAAAAA", "types": "CAMxBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-wNXXVcp1G0vZ_ELE62wVQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVuttUA2IAZoyKZAgCzy0iDQAAAAAAAAAIpokhquvW9ooLc3LbDvwZ4AAAAAAAAAARXasdzsgYzXeaIf1qB6YHcQAAAAAAAADmPFj10tn7Q5v6DtY9a--2yAAAAAAAAADTXQF-stwqMiArQgxmCuIBPQAAAAAAAABICdiM_N4hdaPvSJwq3P6azwAAAAAAAAAENtCGtgNOSKjf89hTQ9pKCgAAAAAAAAAM1dtimHb35RfEFCzsXx56LgAAAAAAAAAHCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAEhQ2OXkHYZRXh3_WLXzxSBAAAAAAAAAAEqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYMn0lhQNjNLc2TiLs5CI5twAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFdciEg2zVAoapt7MT0cXoNwAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAADrAotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAGJ1xBvehWaFQefKkuHjb2hUwAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJFcHGeTZbDG8jQ9sbtbngcAAAAAAAAAAcs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFIAf9e80wW0ROOv48VcVi-AAAAAAAAAAcGY5WEW77dofWJpcPe0twUgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4pVlUGQpw_Cq0LEtbbly5dAAAAAAAAAAkN1WyTlGFxfHgSyYQ3aeHDQAAAAAAAAAOYSP8Ib_W13QEw_Ivysg7FgAAAAAAAAFyn0UYwZH5py59Xu9gAaxkrwAAAAAAAABAm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl5iN7OCAj-2IgmFqLvCWrTwAAAAAAAAESap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlJdvIaoH8miVW9zaDiDOZJwAAAAAAAADSap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlhW8OwmmxjJYCeXfLTZy__QAAAAAAAAFLap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlw4mT2NPQOW-Mg0N_xZsuzAAAAAAAAADgap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlRlK4jZbFueXylWP1GNjNSQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlL_sAxM5NHsnYQp22GwDx8gAAAAAAAABwap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAye4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJsVRH8uyfnyQixTABDkZaEgAAAAAAAAAkoIYS8oKywxk33PzxrExveAAAAAAAAAAZETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASETEs_vJj_-q4WFpNiG_LRQAAAAAAAABDs4lxyv29UjBRbk4Egon88gAAAAAAAAAHrV1JNblxRI5fLicyinWLbQAAAAAAAAANAzxlhtMMySYrabepp4O8EgAAAAAAAABMrmSs41XtF0_135XyexZ4IQAAAAAAAAAEoIbcZroK0mbxpVqmuMaywgAAAAAAAABtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFhext5Np4MklqKjuB1rw5igAAAAAAAAAYxo4rC3y2CcS6B7wZyQHREAAAAAAAAAB3hThLzOSIQizmnJjoY5cDqwAAAAAAAAAfY-QS5npSPxf1yPUr9712ewAAAAAAAAB4Jxqv5kTB0kxVBdEhPkU4GAAAAAAAAABLxSxGOEPHSeIqk-xr6UnAuQAAAAAAAAACyvz8ri9VtYwQi8HkR9wUVwAAAAAAAAAFQ_fTsiDQn3AwPFHRHJfE6QAAAAAAAAAFISo198vJQrYNdynfqzotagAAAAAAAAACSU7fNzMC3NazhQDT5xGXYgAAAAAAAABI", "types": "CAN2BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3pKLtf9WJhx15LISarI_OA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUni", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Dr7XnUKtzq1QND784LJLLQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZW2d7TJlcVgGSjrL7WWrrfwAAAAAAAAALW0LWyqmlk7J6YZlqHKmPQgAAAAAAAAAPtLidJxRjGWRw8PC1hoYlVAAAAAAAAAAlNyCXG_gHdZq1XHZ_0tEWXgAAAAAAAAAlEtxHFG8KdABeZEIBvg2-1AAAAAAAAAAjsFs-DxXlXTzn3bVNvCe0KwAAAAAAAAAEsFs-DxXlXTzn3bVNvCe0KwAAAAAAAAAEXwzvwXzhEy7CpnUA9MlgtQAAAAAAAAAA", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kG0gs0twniSACyYUEUfgmQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF9Y7z5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF78Kz5k14PsCcDvFyUC1kmlV3QAAAAABFxdxz5k14PsCcDvFyUC1kmlV3QAAAAABGnbP6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "BgMCBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XJXvcRJSTv0fetUhCxNrHA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7zyXT4fd_WKeR1cE-hlLelCQAAAAAAC-8B3XT4fd_WKeR1cE-hlLelCQAAAAAAC-ykpXT4fd_WKeR1cE-hlLelCQAAAAAACp71EXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCM6XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vCEAVQxnik3MYoVq6mJuXQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnAydMRjIz1OdcUN0eWHfUfwAAAAAAAAAd4W76RwUjGcgIjQApiAJJHAAAAAAAAAAFgZgYcEFO3c95J0_kRNRWOgAAAAAAAAAGOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB42BUy3BbkpnttyuMqLirigAAAAAAAAANOmzVUgwY22EPoqShuZpT1wAAAAAAAAABmE1ci0y85Ym-Dqw-Q5t-OwAAAAAAAAAEWgnWJF5xNWl_wwu7DvgTzQAAAAAAAAAE-OmtEGD-FWeU3vRNXPLxogAAAAAAAAAd6PDnpLs5LIM9SpjUeSu5BwAAAAAAAAAM4IIlAJ_QWDs41ERNR4mO_wAAAAAAAAC0wAR4gk273_ooOZdD1tA5fgAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJSYSSbioufiMK4TqEn24uLgAAAAAAAAAdIETnUMLdTY0X_27KY2cD_AAAAAAAAAAQXfH1sbSxEuiQC9e5gcEKzQAAAAAAAAAWlOwp8THaapDjttPXb9E-AgAAAAAAAACRIiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdgzv5ZcBM9qZL6-CtFKcz1wAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAABUqPeQ03nZ4m2CLoB308K-gAAAAAAAAAIVhlTljsBJDT98mVay1CuwwAAAAAAAAAFMeupuj3mN3g2ScGhhzmNFQAAAAAAAAF4iRdArD2BL-BvpLz4Pb_AYwAAAAAAAABIC_8b8QYLHmjQu9l_QeSByQAAAAAAAAAUpkqcXQWLIjtT71JtuIAr6AAAAAAAAAAG13EjbA0IjpuaU_N8fi-CjwAAAAAAAAAHwmGhlkvWzfTghgQ1sZAecgAAAAAAAADX5EcD-U0cxRtdESeN-UEmcwAAAAAAAAATuezlLZVYMF9cbBEbxdsDcwAAAAAAAABIgpbgHn7e4Kz5N3-pRcz_dAAAAAAAAABLr0viM1MkQFoluKwRuIJ7LwAAAAAAAAABFGycG9AEWPVJe5tbz77UPwAAAAAAAAASUJNt6Wr7juWI2oGMxpHwHgAAAAAAAAAc-1qdgNrxzH--duaVR1QSFQAAAAAAAACVSyklCBn51Vp_g9q3KLAvZwAAAAAAAAGvnD7QKbPeresstocfBtl0cAAAAAAAAAGPN2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAZE5r53-92up8rkLVW-WJnRgAAAAAAAABs-I0qeKDe1hMr58wzZHuN2wAAAAAAAADfbLRnm0K2LnF8O3sUIvVtEQAAAAAAAAAFYUqlosets6-rXKgChfDXoQAAAAAAAAAfnB7ASI-agyjwniBzr5SZ-QAAAAAAAAAfUxUrGKaPEq08l4l3816TpwAAAAAAAABLB3q4S4Ckg_Xt-OI4yuAyoQAAAAAAAAALWRtY-lihH3Vcv4ui-X8hvwAAAAAAAAAUB3q4S4Ckg_Xt-OI4yuAyoQAAAAAAAAALrcw4O6fPwcfa_O50COvY1wAAAAAAAAAXET3b1ONLpdNAXigq7mYtGgAAAAAAAAAkYSiZZa16pQ0fMzZ8JTkGSQAAAAAAAAAHx7TDQwwLG-Lx987UVQ_9uwAAAAAAAABzAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CANDBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1aU11IqO8jelcqIry4nENg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbkcEvvhuguaGYCmGWrnWRz1QAAAAAD-Ld8cEvvhuguaGYCmGWrnWRz1QAAAAAD-L0xcEvvhuguaGYCmGWrnWRz1QAAAAACETHBcEvvhuguaGYCmGWrnWRz1QAAAAACFt7L", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "22o2SQsBaprkcHxNEC8v9A"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB874Lz5k14PsCcDvFyUC1kmlV3QAAAAAB88UPz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHphgz5k14PsCcDvFyUC1kmlV3QAAAAABG-csz5k14PsCcDvFyUC1kmlV3QAAAAABHCmq", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "b_iWyCligVK40McpM9jHaA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCYyXT4fd_WKeR1cE-hlLelCQAAAAAAEOC7XXT4fd_WKeR1cE-hlLelCQAAAAAACwzfGXT4fd_WKeR1cE-hlLelCQAAAAAACkSBMXT4fd_WKeR1cE-hlLelCQAAAAAACkVZqXT4fd_WKeR1cE-hlLelCQAAAAAACgJHb", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "t38j3or2eu60hVljMeEnUQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMh29XT4fd_WKeR1cE-hlLelCQAAAAAAC-z7kXT4fd_WKeR1cE-hlLelCQAAAAAAC-1UKXT4fd_WKeR1cE-hlLelCQAAAAAAC-057XT4fd_WKeR1cE-hlLelCQAAAAAACi90EXT4fd_WKeR1cE-hlLelCQAAAAAAChWmoXT4fd_WKeR1cE-hlLelCQAAAAAAChz7p6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_NQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaQ66tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZmt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKTe36tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ5Qy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ4C76tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ0CJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYK2", "types": "DQMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "t7EzQ4dDLyByCPO1Xy6HXg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVMfPINX6BnJTkVzU90MYj2QAAAAAAAAAUFg4NMOPkVMAzVy8T89petAAAAAAAAAALdZyBLGHQLBVX6bhwOj9TowAAAAAAAACT-ZIQjPg8DbinOdRNkQM6lwAAAAAAAACbZIYBlfA_274kIGosmkH_rQAAAAAAAAAUdzakKVh1hyD14fSEmEYvfgAAAAAAAAAC7FX7uGxw9-fYF5aeZ5deLgAAAAAAAAA9-Tz8DYqoyX8DiKxM8GfHLgAAAAAAAAAHH1WWa7drB-SqHp5xqZ3VMgAAAAAAAAAJ", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "X-P0lV_rGdVI_8Dxw8fzgw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN4ta", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iMDnXBvdtf9BNWDU3TngJA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgkz", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0j1wiZ2zi9t7EenFUwZ_Qg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmsRXT4fd_WKeR1cE-hlLelCQAAAAAACgnAO", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "63Wf8e7_ejHJlL6C1-Re1g"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc5-Qz5k14PsCcDvFyUC1kmlV3QAAAAABcnaEz5k14PsCcDvFyUC1kmlV3QAAAAABakmCz5k14PsCcDvFyUC1kmlV3QAAAAABaBsyz5k14PsCcDvFyUC1kmlV3QAAAAABaBLIz5k14PsCcDvFyUC1kmlV3QAAAAABHZsIz5k14PsCcDvFyUC1kmlV3QAAAAABKB57z5k14PsCcDvFyUC1kmlV3QAAAAABLLQZz5k14PsCcDvFyUC1kmlV3QAAAAABK3KAz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "DQMCBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Rk9GtySU0Mc8HwRVj3UbGA"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAAAdgzYxe-SHgukLEpCkawSk1QWAAAAAAAAhCTYxe-SHgukLEpCkawSk1QWAAAAAAAAhge", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZiQJHkJNhfjNdEKRXL5QnA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUjA", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "al-T7sbWTz_61eD_q-L2cQ"}} +{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACindAJ6GSZQSmfOBquczb-SF8bAAAAAADBJDZJ6GSZQSmfOBquczb-SF8bAAAAAADBJWdJ6GSZQSmfOBquczb-SF8bAAAAAAC-R4IJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-QNEJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-OvtJ6GSZQSmfOBquczb-SF8bAAAAAADBOEkJ6GSZQSmfOBquczb-SF8bAAAAAADBON8J6GSZQSmfOBquczb-SF8bAAAAAADBLa8J6GSZQSmfOBquczb-SF8bAAAAAADBHr9J6GSZQSmfOBquczb-SF8bAAAAAADBFz6J6GSZQSmfOBquczb-SF8bAAAAAACy7ZMJ6GSZQSmfOBquczb-SF8bAAAAAACy7Q7J6GSZQSmfOBquczb-SF8bAAAAAACytVkJ6GSZQSmfOBquczb-SF8bAAAAAACytxGJ6GSZQSmfOBquczb-SF8bAAAAAACyrSYJ6GSZQSmfOBquczb-SF8bAAAAAACmOHtJ6GSZQSmfOBquczb-SF8bAAAAAACmPnIJ6GSZQSmfOBquczb-SF8bAAAAAACi6GkJ6GSZQSmfOBquczb-SF8bAAAAAACi9dkJ6GSZQSmfOBquczb-SF8bAAAAAACjBJoJ6GSZQSmfOBquczb-SF8bAAAAAACjBeq", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "VrSxcTD6q313dfS8LYDXkw"}} +{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACindAJ6GSZQSmfOBquczb-SF8bAAAAAADBJDZJ6GSZQSmfOBquczb-SF8bAAAAAADBJWdJ6GSZQSmfOBquczb-SF8bAAAAAAC-R4IJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-QNEJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-OvtJ6GSZQSmfOBquczb-SF8bAAAAAADBLPkJ6GSZQSmfOBquczb-SF8bAAAAAADBLVcJ6GSZQSmfOBquczb-SF8bAAAAAADBLa8J6GSZQSmfOBquczb-SF8bAAAAAADBHr9J6GSZQSmfOBquczb-SF8bAAAAAADBFz6J6GSZQSmfOBquczb-SF8bAAAAAACy7ZMJ6GSZQSmfOBquczb-SF8bAAAAAACy7Q7J6GSZQSmfOBquczb-SF8bAAAAAACytU5J6GSZQSmfOBquczb-SF8bAAAAAACytmXJ6GSZQSmfOBquczb-SF8bAAAAAACysRIJ6GSZQSmfOBquczb-SF8bAAAAAACjyKaJ6GSZQSmfOBquczb-SF8bAAAAAACjwo9J6GSZQSmfOBquczb-SF8bAAAAAACjlCEJ6GSZQSmfOBquczb-SF8bAAAAAACi_DsJ6GSZQSmfOBquczb-SF8bAAAAAACjBc66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBiZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAANr3F6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFdKO", "types": "FwMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xLyFq0BB5wVhyMdsChAX0g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsftbx9jqjuemtiUm8j-_s73zQAAAAAAXsbbbx9jqjuemtiUm8j-_s73zQAAAAAARq_3bx9jqjuemtiUm8j-_s73zQAAAAAARryrbx9jqjuemtiUm8j-_s73zQAAAAAAUCym", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6nuYBx_vW2-EF2PDR0-1NA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAAEl", "types": "CQMTBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jM7OFL7Ib6AomffUSmDWMQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAGx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABW1vmWfRl7JvnIelrwmbOFDwAAAAAAAAB2P_qKgj6OkmYBLfen5yPH6AAAAAAAAADlitfZdu4NdI0YJrHcgeE-TwAAAAAAAACXJS-WjNz0QulnqSlnIs8U0wAAAAAAAADS7Ormen3KBfy8FXv7OmF-kAAAAAAAAAHyavfO9wX8Y6wuHuPsqC9ogQAAAAAAAAAkZuSiv65WwcAu_jfpG6ANPQAAAAAAAAAFxF5VGC2U_MH-71_OPOmawgAAAAAAAAAZRcLwtzOrbCJ2S4fnMoo41AAAAAAAAAARvu1niHfy-hSLbNHl3l8G6gAAAAAAAAABGPK7pyl3RjtyKa9WtooOGgAAAAAAAABf", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LNQU913VhnG5DvN4to80Yw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQ3NXJCw7PINTEV_suvi1hjgAAAAAAAAAnr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAABR3DsLLpnzoGeqib2_MeXKdgAAAAAAAAA6x6-7WFAhTzQvsnUGZiSFsQAAAAAAAAAJx0gi_Lu_MQxnxMW1-0ZQNQAAAAAAAAAEk_YfqtPanypbBh77mBMmrAAAAAAAAAATwPUvH7ZdMm81__UGWskM5wAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAA", "types": "CQMeBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-tG63aa4MqAGxDURIhi7Hw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_-Qx-pCy53U7YabuA5eb0fAAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAcpSIXlNYnJYwCILAJFTEzSwAAAAAAAAAGTyuf4RNGIxt-ueaCsLj22AAAAAAAAAAXvSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0qlujNL7db72ZwWHkSPq1iAAAAAAAAAAa8tJujVK0pdTWlucWIQYskAAAAAAAAADWSXFZShc93P7Br4wzVi_TSwAAAAAAAABGl8by2NZ7WjCFmKmn5LkVDAAAAAAAAABNJj6ja2Wbkf1_R1a9nVWcUAAAAAAAAACJToVtc2P50kV-QGj3la9_ZAAAAAAAAABV5DGFi3MrQEDDo8fCYbA5hAAAAAAAAAAIHfMb4ib8WKiucqC90J7sSwAAAAAAAAAHsueTM-LYsBZU9Btl9NKTwAAAAAAAAAAEc8wp1Q45CdLtTNnj6qINTwAAAAAAAAAcuivmFtqkx0mSDLjpV5jf4gAAAAAAAAABRK8a3DzcZMuwoK9TpGXQTwAAAAAAAAA3hDeNHR-uaDqXexxBeqdlYwAAAAAAAAABNuqcOqANutL4nD8JjGfmlwAAAAAAAAAkOD88rfBmy4BfCXerLT5e5QAAAAAAAAA7yhF9CEzH60wdDBblzY1FcQAAAAAAAAAIOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyEWsTGLCNH21piOrMPoln5uBQAAAAAAk16f", "types": "CANLBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zgM0FrkiX4SlWr6oMgm_9w"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB807Nz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHpmIz5k14PsCcDvFyUC1kmlV3QAAAAABHpcUz5k14PsCcDvFyUC1kmlV3QAAAAABFduk", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Mg_ny-cfxQRHd6bDgZrK3w"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsgobx9jqjuemtiUm8j-_s73zQAAAAAATTx9bx9jqjuemtiUm8j-_s73zQAAAAAAQE2Pbx9jqjuemtiUm8j-_s73zQAAAAAAQDPXbx9jqjuemtiUm8j-_s73zQAAAAAAlA2vbx9jqjuemtiUm8j-_s73zQAAAAAAlAxkbx9jqjuemtiUm8j-_s73zQAAAAAAQE_Kbx9jqjuemtiUm8j-_s73zQAAAAAAnqoybx9jqjuemtiUm8j-_s73zQAAAAAAnquObx9jqjuemtiUm8j-_s73zQAAAAAASVt_bx9jqjuemtiUm8j-_s73zQAAAAAASVX7bx9jqjuemtiUm8j-_s73zQAAAAAAkJlobx9jqjuemtiUm8j-_s73zQAAAAAAlKBmbx9jqjuemtiUm8j-_s73zQAAAAAAlGdWbx9jqjuemtiUm8j-_s73zQAAAAAAZUh7", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WYyQ6A0T9-FK5wIfxnEvmw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8VxXT4fd_WKeR1cE-hlLelCQAAAAAACxC9tXT4fd_WKeR1cE-hlLelCQAAAAAACxE1EXT4fd_WKeR1cE-hlLelCQAAAAAACxJyjXT4fd_WKeR1cE-hlLelCQAAAAAACxE6FXT4fd_WKeR1cE-hlLelCQAAAAAACxJ-u", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OfALl3Wo3o1t_X30Qk37XA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAACvIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGkzf2S9k1qbr0BOhKsbsKTAAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQdSC9roCUcWzPuQHuTlTqJQAAAAAAAAAR1zU6PGHk9G6qh7zkt9AB6gAAAAAAAACds5vAMHxpunKzmiohi4HBEQAAAAAAAAAYCd1Zi_efPOdWVlTsHnfQegAAAAAAAAD8hdFQ3BsvhBTsLQGlhj96MwAAAAAAAADSZtCQ1T9rzANAXQX4DTsX9gAAAAAAAABCAZoiKnJ6_aRrwZwQCQFKwAAAAAAAAAAGrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAuU-2DXZ9_6bhNrg0BMtmSrgAAAAAAAABTHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF0GCAedtqgnpXXmGbWJBaaQAAAAAAAAAIiuCBbF0zAbXCZcv5H-ZdugAAAAAAAAAWyQLW28sZ3rpLXAl8a-XdLgAAAAAAAABnWIzZFTbzz3ghQWQ9YntiEQAAAAAAAAAIKCugfZXJLh-FDE2Cnm3CmwAAAAAAAAAC5kV2Sq7-h2Nt-mJ8Y2cHLwAAAAAAAAAIQRW1om0CtcYaE4B8xaBEggAAAAAAAABGAZcy3VGMaNWqWfZeHTZzgAAAAAAAAACJDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAABKTIiUQbNP_B2HH8y6arJUkwAAAAAAAAAYlCL0ZrPWphSnVm8U-Dj0ogAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFi5nlDXv1aJqzyTPEzm9YTwAAAAAAAAAQ1fgoR2x3e-tNT7ITZEo-6QAAAAAAAAAGHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFsGaS9LmLqhpLK1WuzjmvCQAAAAAAAAAQ1nsgw54wZN3BfHA_7w6g0QAAAAAAAAAdHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABhDW9pkruARZjPztBaJpJNKQAAAAAAAAAMwejFmudpqNHflvIcKknWqAAAAAAAAAAjM8i6RTc75b9Htv3EHlmttAAAAAAAAAAY3slcba9RWlFACgQsilahdAAAAAAAAACNHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFBMDMyk-6LZ7q6MZk8CBoqgAAAAAAAAAQvJYbJPPl6-g-a_DrC4-iWAAAAAAAAAAyCaJPwmIWM0NDJVv8d07kjgAAAAAAAABuHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFP1rXbpjewie805zI0BHMvAAAAAAAAAAILN3NdhSYKxRbaqnM5W9FBwAAAAAAAABpR-HVaw3JZ2IsajBZdLbC8gAAAAAAAABKKnKBdeWKnQ8CH5bzvx0i6AAAAAAAAABK-QN0Lznzz3LjWKMZzZD5rwAAAAAAAAAIeEXFmSmLstwTaBBVp_eSTgAAAAAAAAAFHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFeS9qs83Ev5DGIkgRm0VL-gAAAAAAAAAUem8QMqpxX9eEmdxu2AmtFQAAAAAAAAAPTR0CnebfBTQ0MB6Lw8cZBAAAAAAAAABv8kz0sRC3Fb0ahbrci4PVAgAAAAAAAAAYGgYuOINmwLJxsjP-M2E9cQAAAAAAAAAXjIXiJ_3QIrjPxWXJm0vTUAAAAAAAAAAGbPdR4mcydIF6d5I7BNRoXQAAAAAAAAAHotkeOgHMDZdOlA7GywTS3gAAAAAAAAANeBe2TV8VA2V7lLyhiCvcHgAAAAAAAAAEclNKHmin0SttGhUDhj4qagAAAAAAAAAH68m2CwWM-Ledaj5WNl9lhAAAAAAAAAAqwMYFsNM0woNzFGwcp47vbgAAAAAAAABGEh0v14Wp9mB3u5tYha0hzQAAAAAAAAAmwSPDAtDjpTG14eMrmHKwZQAAAAAAAAC4O6P74kz6w8JGzpqPC2MUCQAAAAAAAABt-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFbhnM-182eA1jGyBQl8pMugAAAAAAAAAU4pL5iWdAziHKM6VzojymqQAAAAAAAAAGX8sMIyo27eZ_e8FZM1M5mQAAAAAAAAA0g4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAWMCjAM2QydSiUrfFTZDmjvgAAAAAAAAAc5430MZlAMqI5SXd_yT5HRQAAAAAAAABcHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFN7LIGw1erb09TPWj8M9ehwAAAAAAAAAYwr21gCsicBxbZw2IJaNDDgAAAAAAAAAGEh0v14Wp9mB3u5tYha0hzQAAAAAAAABDwZ09eiIX1XgrymZWZ5BnrAAAAAAAAAAH7kiwTAFzycT-wgooymyU5QAAAAAAAAALLFiOeIpjbAGuoHCaoCuGBQAAAAAAAAA476ZQdAl2euBIN6YcqNHYDQAAAAAAAACQfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABP6WZ8beuV9qvYQN2_0rUbQAAAAAAAAAdWETDtAYgv6Jkvw6xLkpLwQAAAAAAAAAFzTg-1BaqPve5RYYrhWqKBgAAAAAAAAAHeYOPSEoq5FFmdpvYTsQ9xwAAAAAAAAHE2u2jPMdq36h9BOg_kllzLgAAAAAAAAAFajJdsnOIBpdo6hxvZuINSQAAAAAAAAAImSBnbtksrVvKstlIID71bwAAAAAAAAAUHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF4JxgAcphLAEsoWC3fPoUUQAAAAAAAAAMneQ9aDSiXyM-ZtdfoiCRFAAAAAAAAAAGXFsyX0Vq94TuMs7Bc44FAwAAAAAAAAAFhT_GFd-d817AZqi9jIee6QAAAAAAAAAUx8ERETcapIt78IXSEO8DRwAAAAAAAAACaLOl6FCWtZ16Qk1Y0IIBGgAAAAAAAAAG_CTrWCBcF1yntIOzlzRqGQAAAAAAAAAP1HXZZ713KyUPF_V7-YXiGAAAAAAAAAAG7qKsj4xn8s1AMSf99ASSjAAAAAAAAAAYt5ImPROd9wzf5BDFezVfygAAAAAAAAAG8AFkU9EDwekeQG-iHB-52AAAAAAAAAAW1oBnNdsJQEj_XlDQgtQSnwAAAAAAAAATJYgcp9Kzkx4e4hFu_rVhNQAAAAAAAACBS3oYjBa3aRK5is2l8pi-3QAAAAAAAAB7S3oYjBa3aRK5is2l8pi-3QAAAAAAAAB7S3oYjBa3aRK5is2l8pi-3QAAAAAAAABAGPPIIhc9JBDF0bex-RCt3wAAAAAAAAADql-uKAi1beGz8RyiqP5WDgAAAAAAAADJ_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAACdJYgdZ6MFANs6aW-kJSCJAAAAAAAAAAYW19Tjw-jwIbyufOKZLiEmQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAA0aeAC4XpbxqxubqgoasMaQAAAAAAAT0gbx9jqjuemtiUm8j-_s73zQAAAAAAcXb6bx9jqjuemtiUm8j-_s73zQAAAAAAah2sbx9jqjuemtiUm8j-_s73zQAAAAAAahr8", "types": "CQOtBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OQ1S2PH1wUAbKC6td2MEOA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnAydMRjIz1OdcUN0eWHfUfwAAAAAAAAAd4W76RwUjGcgIjQApiAJJHAAAAAAAAAAFgZgYcEFO3c95J0_kRNRWOgAAAAAAAAAGOmzVUgwY22EPoqShuZpT1wAAAAAAAAABTB_J6DUBBlvmBbXJoevIsQAAAAAAAAAL-iXDKA3YC-uP6gBDyblJbwAAAAAAAAAIty6LTUlzeN2dWkQMKHPovwAAAAAAAACudLDFADnHQuXCgmPaFF59zQAAAAAAAAAz-NZFd83SlAHE6JfE05boaAAAAAAAAAAXQBBzcWlTfzWnm6IfkSXEKwAAAAAAAAAZQkeEnlNsNxKs1un8gmKDpQAAAAAAAAABdTPbC_veUyGmSAjusjbQDAAAAAAAAAABb2OXcmTwoQJ0vQp6R4J3BAAAAAAAAAAEE8C4Sn4zVobGsEAl794nrwAAAAAAAAABb7OxXHSN-wfJ7WDtAWiuTQAAAAAAAAAajahRFwRZ3rmbLG_V0pvPLwAAAAAAAAAThoLVpsHuA2zmZMudT3CGEwAAAAAAAAALB3q4S4Ckg_Xt-OI4yuAyoQAAAAAAAAALTyfyRXFTeqgLafdATMChEAAAAAAAAAAEB3q4S4Ckg_Xt-OI4yuAyoQAAAAAAAAALSEvZDaGwmEW26Lw8EPS2qAAAAAAAAAAEvsVYW4ktRFYgTrOh7kpjsgAAAAAAAAAHWRtY-lihH3Vcv4ui-X8hvwAAAAAAAAAUB3q4S4Ckg_Xt-OI4yuAyoQAAAAAAAAALB3q4S4Ckg_Xt-OI4yuAyoQAAAAAAAAALB3q4S4Ckg_Xt-OI4yuAyoQAAAAAAAAALWRtY-lihH3Vcv4ui-X8hvwAAAAAAAAAUB3q4S4Ckg_Xt-OI4yuAyoQAAAAAAAAALpNtpiTHrv5y9QgqWqBfS_QAAAAAAAAARnbYrZ9E9afqt5Y1zXB3RyQAAAAAAAABFfQScnL62yb1c-L2CPjqt4AAAAAAAAABFs4zVuFE809K66EfKcw5rKwAAAAAAAAAQkwGfYhr1GsPl-q9KOVF6bQAAAAAAAAGsWHt2sjXXBXmxk_WhY3xuqQAAAAAAAAAW7eP3POMzJHenXrvglsJksAAAAAAAAAAB_osC856Rboo56_P8whHO-AAAAAAAAAAflNhTpFCI0o9j0xcLIuY3MgAAAAAAAAAE9lpztkfS1SN6AbyUgwU8QwAAAAAAAAAHH9qHSakbha_JIFnrzuJJjwAAAAAAAAAHo-BIkkl-h7WSo_nEcXjOQQAAAAAAAAA2M-5SaQQW4M2ZK-t2dL_K0gAAAAAAAABfYVcFEflggWCRxtIyAFnYrgAAAAAAAAAL1c7wfSzTBWNtKP8vA7BBsAAAAAAAAAAt0uQfhygt3iA5h-6EqK0MPAAAAAAAAAAEJYb5JOqnMPOCcF7fd5apugAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAALTqvQ7EacG6CR4rzcFaNFEsTQAAAAAAATPL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTih6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinDe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBF6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOlg", "types": "CAMzBQIDCgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EC-N90X1-cY4i7M7nO-spA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_-Qx-pCy53U7YabuA5eb0fAAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAck_IuQ3Tj-0pB21HCi5bPIAAAAAAAAAAGzgO9-qlGF96Qf8hviCOy7QAAAAAAAAD0Jj6ja2Wbkf1_R1a9nVWcUAAAAAAAAADtlNGFqePH4YxgTFonXnLtUwAAAAAAAABWnyQEDtNfXDm_fNpPXsT-3gAAAAAAAAACeLPEw3jnFkvsJ2aQiz21NAAAAAAAAABfR-jXMS6WanN9UyjIfsACEAAAAAAAAAAE", "types": "CAM2BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Y-BWAgIjFAM8sO4LD5yGGg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADA3-aZ3CKaS4aU08RhYA19y5ITQAAAAADA3RQZ3CKaS4aU08RhYA19y5ITQAAAAACQxvsZ3CKaS4aU08RhYA19y5ITQAAAAACQxoaZ3CKaS4aU08RhYA19y5ITQAAAAACQyIOZ3CKaS4aU08RhYA19y5ITQAAAAAB0HE6Z3CKaS4aU08RhYA19y5ITQAAAAAB0D4r", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "AP5Eq7B7RisKC973OjTPaw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzScEvvhuguaGYCmGWrnWRz1QAAAAACE_-qcEvvhuguaGYCmGWrnWRz1QAAAAACE_nYcEvvhuguaGYCmGWrnWRz1QAAAAACE_P8cEvvhuguaGYCmGWrnWRz1QAAAAACE9yHcEvvhuguaGYCmGWrnWRz1QAAAAACE9eTcEvvhuguaGYCmGWrnWRz1QAAAAACELBkcEvvhuguaGYCmGWrnWRz1QAAAAACEyqbcEvvhuguaGYCmGWrnWRz1QAAAAACFyki6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CQMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "F6TQB40Pr1sgezdu6286cg"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAAAvLFL9Bd3XIiGWasJdN8trI5tgAAAAAANPmbL9Bd3XIiGWasJdN8trI5tgAAAAAANQHDL9Bd3XIiGWasJdN8trI5tgAAAAAANQm6L9Bd3XIiGWasJdN8trI5tgAAAAAANHY_L9Bd3XIiGWasJdN8trI5tgAAAAAANIBjL9Bd3XIiGWasJdN8trI5tgAAAAAAKSvgL9Bd3XIiGWasJdN8trI5tgAAAAAAKTYqL9Bd3XIiGWasJdN8trI5tgAAAAAACA656tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ1", "types": "CQMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4BXbx8Vyg8cW5_Ii5r0G1Q"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsgobx9jqjuemtiUm8j-_s73zQAAAAAATTx9bx9jqjuemtiUm8j-_s73zQAAAAAAQE2Pbx9jqjuemtiUm8j-_s73zQAAAAAAQDPXbx9jqjuemtiUm8j-_s73zQAAAAAAlA2vbx9jqjuemtiUm8j-_s73zQAAAAAAlAub", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "U86dghIRPJfDVhTuuH42DQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVFKmuDb9OiAlOmhNzpFQWMgAAAAAAAAAFUw8EG916-vV16x2yycdXOwAAAAAAAADvK0flqZKMYgGhD375agfmDQAAAAAAAAAdrXAVE11Ryhs80ZE3uuTVVgAAAAAAAAACWj1Uq6jbmSjrZUnAzTcg8wAAAAAAAAFMu2DScCPg-79KHpSdqd651AAAAAAAAAAdt1rjy3Ck_TErVMhv-psy8AAAAAAAAAAHL89gnK14agcS6gC2h0zhpQAAAAAAAAFDEacvdBDVwYleo41xBU-e_gAAAAAAAAAL6vLdbR-rUObkBHp1yQiB0AAAAAAAAABqrBwENpDATDst6L2Jv2MgnwAAAAAAAAAG1LJLLPHZa7_J46rYsATDdAAAAAAAAAAt2jxH2MnvxL5b2qj0b5JzIAAAAAAAAAAGBOarHeuBiKfmB3q8GFkvwwAAAAAAAAAYNTpNzO80FoolhzIYxlwSqQAAAAAAAAAgUoO0YIpM7l58QUfhpUAyIAAAAAAAAAAqhQvt9SGcnRC8tVEB_Tur9QAAAAAAAAAOjnJ3V2aQT0q7HE8ApxI1-gAAAAAAAAABltSnS2lg4bhkM5v8FCBLWQAAAAAAAABT", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "sf3Q9ZLgU00mVPvTWu8Tzw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAABkGu2so7XtpGUr5L4B1Car9QAAAAAAAAABSm0xkBmU0d55bIWjfcYmtAAAAAAAAABbj4w58zsaqOfxzn9j73toSwAAAAAAAABur204BOTVe60P3BYaQ9TcWgAAAAAAAACslnZVb7o3R97zPK7lBkueNwAAAAAAAAAMd-0bMtRUTimogqLX77QywwAAAAAAAABy5gRif6Sjt0HHN5TwyiXUJwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAYq1Ak9_WYtjiRUK6jyz9agAAAAAAAIFRFr4KuuAdcuLzUhqxYoXsLwAAAAAAAPNM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimtb6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOK46tVKI4mSYDEJ-ABAIpYXcgAAAAAAlcA76tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbpN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUd516tVKI4mSYDEJ-ABAIpYXcgAAAAAApYft", "types": "CQMPBQIDDgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MNoOASNIU68SUFgbeLW58A"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlPqcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgLJ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NkrPNH7bWIbJpn64lkiskQ"}} +{"Stacktrace": {"frame": {"ids": "jDWb-JzykmDZwFq_yGRkXQAAAAAAAAAG619AixYrQOa22PQj1GrSdAAAAAAAAABitYpn9fKKxL559MokXK09lwAAAAAAAAAE_x4aKgh_XJ5-w5YMGr9j7gAAAAAADn91_x4aKgh_XJ5-w5YMGr9j7gAAAAAADaxM_x4aKgh_XJ5-w5YMGr9j7gAAAAAADYpW", "types": "AwEDAw"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wywmi0V1NDRwQhYNMUDEjg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFmUdcEvvhuguaGYCmGWrnWRz1QAAAAACExYz", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "41aS5Wt6o2kU6WNHSnllLQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dq", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lpSfk5la04mzB7itsdouPQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2qOcEvvhuguaGYCmGWrnWRz1QAAAAACg0PkcEvvhuguaGYCmGWrnWRz1QAAAAACgxMzcEvvhuguaGYCmGWrnWRz1QAAAAACgt6PcEvvhuguaGYCmGWrnWRz1QAAAAACgePncEvvhuguaGYCmGWrnWRz1QAAAAACXxtMcEvvhuguaGYCmGWrnWRz1QAAAAACXzfB", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UsI7pVrWWavMHSwjGh222g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEPoG3DRiZKlMZ3sh3A8whkKQAAAAAAAAAy8_3LGlNMADWVmY7MNYKbGgAAAAAAAABYfXtbF06M7ZwcaaNlV0uiIgAAAAAAAAAY0n7bnuaG-8sBjMSdabTn_gAAAAAAAAAXTQHHjILJSS1Y0hdQ8MODHQAAAAAAAAAChjAyoRprP-ATzdRzIqim_AAAAAAAAABP", "types": "CQMxBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "E8GTAs4LB7epizryEDKA8Q"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbol", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Se_zU8x-WtOXkk7pRmjybA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAESme6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyde", "types": "AQMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "z-xVIHcDRK95_cuEpNrf-Q"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaO", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Xpn_K_m-c0cQR9r4hLjXkQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipGH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipDo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Zq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Ei6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjoZw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjn7-6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWvZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWrK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWZU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmMhq", "types": "FAMNBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "VXz6WWJean72faTvD-It7g"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrkykgtQ4kMk_MBWrPUAFqVnYywAAAAABq7bsgtQ4kMk_MBWrPUAFqVnYywAAAAABq7GYgtQ4kMk_MBWrPUAFqVnYywAAAAABq5-UgtQ4kMk_MBWrPUAFqVnYywAAAAABquJbgtQ4kMk_MBWrPUAFqVnYywAAAAABrpBf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJje6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIkY", "types": "BgMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "T_HZgFQHe6dPFOxqiU6lSg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAACzx1rycUz_ddL2AYEOaAVfgAAAAAAAAAFvY73uE8s0GjOVOtvrJEg7gAAAAAAAAAxnyUe0ieJOQSaVhtc2Cv9oQAAAAAAAAAfi_Iz97mxX5oIgVbqZMT-ewAAAAAAAAAFYYCEYr-7R2KSxbtsdGMQpgAAAAAAAACbWu0A4-y-hJFjTGYZh91yogAAAAAAAAAbXTzyt_7oaEFXC9VgfSHzxQAAAAAAAAAA", "types": "CQMrBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vqNmp5DQJf1Vi-GoNNrJSw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vP", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vIBbtxLj7A-Bvzlt-bR08A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmri", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9aOim5Gg_KDYjBhfxq7LaQ"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYr1L9Bd3XIiGWasJdN8trI5tgAAAAAABXaHL9Bd3XIiGWasJdN8trI5tgAAAAAAAwluL9Bd3XIiGWasJdN8trI5tgAAAAAAAzayL9Bd3XIiGWasJdN8trI5tgAAAAAAAKWhL9Bd3XIiGWasJdN8trI5tgAAAAAAAq7bL9Bd3XIiGWasJdN8trI5tgAAAAAABckC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BwMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "A3a1Ysg6YpffbxqvXKeyxA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKDEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKI8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfdgtQ4kMk_MBWrPUAFqVnYywAAAAACJEnagtQ4kMk_MBWrPUAFqVnYywAAAAAB1YosgtQ4kMk_MBWrPUAFqVnYywAAAAAB1YgbgtQ4kMk_MBWrPUAFqVnYywAAAAAB1KskgtQ4kMk_MBWrPUAFqVnYywAAAAAB1LIGgtQ4kMk_MBWrPUAFqVnYywAAAAAB1IsGgtQ4kMk_MBWrPUAFqVnYywAAAAABrKGxgtQ4kMk_MBWrPUAFqVnYywAAAAABqIHEgtQ4kMk_MBWrPUAFqVnYywAAAAABqHsMgtQ4kMk_MBWrPUAFqVnYywAAAAABqPJl", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8xJ_FuKEXuGpNKjN-cCTew"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACm", "types": "CQMTBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "a1rGdMZVY9410EVr4QWtWA"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSEYxe-SHgukLEpCkawSk1QWAAAAAAAFzhzYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHarO6tVKI4mSYDEJ-ABAIpYXcgAAAAAAI9or6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKjw3", "types": "CQMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vjTi-nJOu9I_8moNqz8iCA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mbdXT4fd_WKeR1cE-hlLelCQAAAAAAC-nbQXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNI6XT4fd_WKeR1cE-hlLelCQAAAAAAChtx5XT4fd_WKeR1cE-hlLelCQAAAAAAChI2d", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kI3_nnc4n3kGClEWpDRG9w"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChkr9", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cnRaDXJC0A8G279UzF-vXw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVP4GdI6f6aagjBxBAKz-KIgAAAAAAAAAMqd26ee2y8slhneyPRIcQAgAAAAAAAADEwKREEYJF8V2B2guAeJRSCwAAAAAAAACoWsBETJrPecSrGYvg781P3AAAAAAAAAC4mYO8eYShKNmyuBL3FXJB-gAAAAAAAAAwbcm3REG58b46CBv8_xMfuwAAAAAAAAAKxhbJyq2dXJOtFwl6fNdtPwAAAAAAAAANAD6q8JNXSicx23C7lYRhhwAAAAAAAAAHT-7yVwNuXXP4l85wV1xmqgAAAAAAAABgWP24-sIZ9ujXLXhCrx5dnQAAAAAAAACquVBW3qATYlP-aD6h0fuyUwAAAAAAAAAEF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdPT4VaUhFLgQWjMovkqo-tQAAAAAAAAAI8CGal5YjjmTZUgONcBCVkAAAAAAAAAAFSZIzrSBBPBO2zJj0aqaKggAAAAAAAAEvKtm-nkDOWkX2ccJBYdY19QAAAAAAAAA_nJza7RyqAJvxwSwpIZ_FNwAAAAAAAAAOdy9m8b1oF2u3h9LUXHjYIAAAAAAAAAAKVOTAjRbOztte8sAj2_6YtwAAAAAAAAA4EVcmFq_4edpopY2aEzriOwAAAAAAAAAC6ArPI4q1nbl9aI5EW-OtkQAAAAAAAADx1XRKT-mIPqTEPPQJ1OQKUwAAAAAAAAASBgEJc-XoGoJmCiFevuTBsgAAAAAAAAAe4r9rFztoKz57cEDF-UrEngAAAAAAAABBJuL_GrOughFFC8FPKzfp1gAAAAAAAAAFAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "7m2nLuufhcWDTydg84J9eg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsgobx9jqjuemtiUm8j-_s73zQAAAAAATTx9bx9jqjuemtiUm8j-_s73zQAAAAAAQE2Pbx9jqjuemtiUm8j-_s73zQAAAAAAQDPXbx9jqjuemtiUm8j-_s73zQAAAAAAlA2vbx9jqjuemtiUm8j-_s73zQAAAAAAlAxkbx9jqjuemtiUm8j-_s73zQAAAAAAQE_Kbx9jqjuemtiUm8j-_s73zQAAAAAAnqoybx9jqjuemtiUm8j-_s73zQAAAAAAnquObx9jqjuemtiUm8j-_s73zQAAAAAASVt_bx9jqjuemtiUm8j-_s73zQAAAAAASVX7bx9jqjuemtiUm8j-_s73zQAAAAAAkJlobx9jqjuemtiUm8j-_s73zQAAAAAAlKCi", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nxfXKacnHOwFhdyFHmkaYA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAdLJM8DDAjVJl721y2vxKHGSBegAAAAAAdFIV8DDAjVJl721y2vxKHGSBegAAAAAAdDbu8DDAjVJl721y2vxKHGSBegAAAAAAdJ0N8DDAjVJl721y2vxKHGSBegAAAAAAciqR", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4uPdEWYsvs4SFw1vIspTAw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUpA", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "C2Ql36p9WjZ_86YIJErzgw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB60UJZ3CKaS4aU08RhYA19y5ITQAAAAADRxejZ3CKaS4aU08RhYA19y5ITQAAAAABzH6pZ3CKaS4aU08RhYA19y5ITQAAAAAByyDQZ3CKaS4aU08RhYA19y5ITQAAAAABwNqVZ3CKaS4aU08RhYA19y5ITQAAAAABv017Z3CKaS4aU08RhYA19y5ITQAAAAABv3UA", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "icdKzqzngO6neOmcWHtljw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5k9cEvvhuguaGYCmGWrnWRz1QAAAAACN4hg", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hrw_5LjjZespxQS8P2PsYA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAb2jOITD8MGbT1Ovw_xtzUAgAAAAAAAAABdfaJS679SMFHynOlhaT4GQAAAAAAAAAEwxNyOGlepMHeJK72r3Nx1AAAAAAAAAABNCnW31JAeE6fBCMV8tcmcAAAAAAAAABo9w39rtHSYGtkUYmFvMJs_wAAAAAAAAAEVa8kyQzczGyPdH_kSKP-vQAAAAAAAAAO1ShmBRgMAPQ8MSXYm8AamgAAAAAAAAA5HnQCVBswBBYyz6PsND_HoQAAAAAAAAAEvOpiy5fr8DA14FJPMyQCRQAAAAAAAAA621t_1Z7lsKChfUyEIzwAtAAAAAAAAAAA", "types": "CQMPBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9Ccnybqafbd-z2JQ7pZb5g"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMabPXT4fd_WKeR1cE-hlLelCQAAAAAAEMasIXT4fd_WKeR1cE-hlLelCQAAAAAAEMceTXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5Sm3qCbqd3-uYIWv5kaQZw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAABu1IhEUKf_PDCxfheapNhvQQAAAAAAAACIGS-BM31ayIfhOMl6o8fHjwAAAAAAAABu7zPKGV-eM0z3BYd8xdD0NwAAAAAAAAAHjH-Kh7eMoVAEa99gkdQ-YQAAAAAAAAAWvtOmTuUGvKYiQRK_O9kHuwAAAAAAAAGJfbT9eHA5tj6rUvxqpnewLAAAAAAAAAEHxz8R4MTaPzD1CrgkfDi_QwAAAAAAAAC4", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iOoRfUidn7YTaniqOeBzoQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDGccEvvhuguaGYCmGWrnWRz1QAAAAACuDoucEvvhuguaGYCmGWrnWRz1QAAAAACuGckcEvvhuguaGYCmGWrnWRz1QAAAAACuExEcEvvhuguaGYCmGWrnWRz1QAAAAACuFG1cEvvhuguaGYCmGWrnWRz1QAAAAAChhtkcEvvhuguaGYCmGWrnWRz1QAAAAACKFbIcEvvhuguaGYCmGWrnWRz1QAAAAACGugycEvvhuguaGYCmGWrnWRz1QAAAAACGmwdcEvvhuguaGYCmGWrnWRz1QAAAAACGpoocEvvhuguaGYCmGWrnWRz1QAAAAACGsDNcEvvhuguaGYCmGWrnWRz1QAAAAACGKP7cEvvhuguaGYCmGWrnWRz1QAAAAACGMs66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBiZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAANr3F6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFdKO", "types": "FgMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OMe70k_uc6xBG2sbBtpHUw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_-Qx-pCy53U7YabuA5eb0fAAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAck_IuQ3Tj-0pB21HCi5bPIAAAAAAAAAAGzgO9-qlGF96Qf8hviCOy7QAAAAAAAAD0Jj6ja2Wbkf1_R1a9nVWcUAAAAAAAAAB-X9SksosahO6WfATGPaH3cQAAAAAAAAAInrhN620EAJ_Aof0ETZ3WHAAAAAAAAAAPQJvjLM8_Am-8HBcCjdeQvwAAAAAAAABYi__VMh3MgmTJp7v_qMbssAAAAAAAAAA1qwd0u0yf77aYVcTrTir5kQAAAAAAAAAFqwd0u0yf77aYVcTrTir5kQAAAAAAAAAFOD88rfBmy4BfCXerLT5e5QAAAAAAAAA7yhF9CEzH60wdDBblzY1FcQAAAAAAAAAIOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOEnRoHyZazasm_zTjL5tnOgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMfDpp6LgRqCGeGjs7cnnwItcAAAAAAADsp5", "types": "CANBBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Iq337cZlaNeWdaHYaTyxSA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAABcQrw_bSROFZCKPRirqN5crwAAAAAAAAAEmNKQ_cGBX-X-PxTw057WHwAAAAAAAAAoPe3ctc9W4J1u_ZCOerqNzAAAAAAAAACGnZmkelHuL2rN_AY8H-OMEgAAAAAAAAAFgmjUzsxRLEujWJFPXkncMgAAAAAAAACLzw0wKeXSScV9zb0GbnSg3gAAAAAAAAD4xojp5VBQ5xwqQiCbnXCnEQAAAAAAAABJUzpT8KmlTneCrZW0Xa3m6AAAAAAAAAEgwELFL8jGCRMErF4_7iFL_AAAAAAAAABJGWaNS7Aannj1ZssQUxZReQAAAAAAAADM6euAcrRks5bLxxAuk2RtfgAAAAAAAACtQMctDnxPPYtUnhB_5ZvHdgAAAAAAAAAJN2N5ycBuBAS4G2YTZr-qWgAAAAAAAAAWsImjAGxEOCfJp0uCTUesZwAAAAAAAAAHWg3NMwFQjkpTmdqB4Do_BAAAAAAAAAAw", "types": "CQMaBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EMPaBlyG4Uc-b8KSdiBOQA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVP4GdI6f6aagjBxBAKz-KIgAAAAAAAAAMqd26ee2y8slhneyPRIcQAgAAAAAAAADEwKREEYJF8V2B2guAeJRSCwAAAAAAAACoWsBETJrPecSrGYvg781P3AAAAAAAAATRVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFh5U_1XvNyeon9l2W-4YQpQAAAAAAAAAsABic3l15LWzfxEDtDgq1DQAAAAAAAABd655cFkYo375T8NGzpy-aFwAAAAAAAAAXhve4jX92AzYM2N-JeQNG2QAAAAAAAAA1uoQ2M4bRS4Qydql36um4PQAAAAAAAAAu8Zl1Hn34Qq3KbfhSotUixQAAAAAAAAAcyg6hUybbKOuy2Th8HYOfDgAAAAAAAAAQwAR4gk273_ooOZdD1tA5fgAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdXgVcJKYEqhGaSbBYfKBXOwAAAAAAAAAQXfH1sbSxEuiQC9e5gcEKzQAAAAAAAAAW1w2R0Z8nd4XHXpj3W-TC0gAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdctx_9RVQASujUdCT9XDhwAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAAB06nqjE-VI9IYqWvJ2OibVQAAAAAAAAAI8Lr1AwdmXjQ6E8sJ1LQOsQAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAD6WwLAq-OugYSy1Dj8k1-JewAAAAAAAAAEWWjCfoHiLs6x77qSQOVJgQAAAAAAAAADnKhcql1SQ7g-aNYXxz6k1AAAAAAAAAClrrf1rrkoNPa8s36xe9HxZAAAAAAAAABEPDEqZtYIRK0Y1OfcNC6JFgAAAAAAAAABwelCfthDONC1Bd77f0UwrAAAAAAAAAABAtwGZsrxCBN7vaMzOL4ZVQAAAAAAAAAE2NW6H5uyypIvakmcyoYnXAAAAAAAAAANAHKxzIy_KVzHzDvz9MzN4AAAAAAAAAANewsJ-53AIru87e73lER0yAAAAAAAAAABZioBr87aqxaevk5TMrW5bQAAAAAAAAAOoRpjVU0Vm5RBoRBBh96UQQAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAHQ", "types": "CANDBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XNzdGKUus2mLIVM8_RNfvg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAENS56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpEy6tVKI4mSYDEJ-ABAIpYXcgAAAAAALoEa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgKm", "types": "AQMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "m2nvxLRsneZHYQUNowXahA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eaUcEvvhuguaGYCmGWrnWRz1QAAAAAD_AtNcEvvhuguaGYCmGWrnWRz1QAAAAAD_CcdcEvvhuguaGYCmGWrnWRz1QAAAAACGImTcEvvhuguaGYCmGWrnWRz1QAAAAACGMNkcEvvhuguaGYCmGWrnWRz1QAAAAACGMup6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipGH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipDo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4OW6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi7h66tVKI4mSYDEJ-ABAIpYXcgAAAAAAi7fl6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi6eR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0gS6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "BwMNBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DTjmqTIfuK29CyAvA4mI5w"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7RXT4fd_WKeR1cE-hlLelCQAAAAAAC-pEOXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWx7", "types": "FAMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-TdzOXrz7LOJxm2MzvCXyA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbkcEvvhuguaGYCmGWrnWRz1QAAAAAD-LYScEvvhuguaGYCmGWrnWRz1QAAAAACETg1", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "K0QqN_0ybSb5prvsU3g4Sw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABdKzcz5k14PsCcDvFyUC1kmlV3QAAAAACFH-uz5k14PsCcDvFyUC1kmlV3QAAAAACFHKnz5k14PsCcDvFyUC1kmlV3QAAAAACCMghz5k14PsCcDvFyUC1kmlV3QAAAAACCcl2z5k14PsCcDvFyUC1kmlV3QAAAAACCdwcz5k14PsCcDvFyUC1kmlV3QAAAAABFWLg", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "r0we6vLzfa6gZzshzJR9Eg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlPqcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgpg", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6Mxcs4Tj7_OsAvreAvdmWA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2qOcEvvhuguaGYCmGWrnWRz1QAAAAACg0PkcEvvhuguaGYCmGWrnWRz1QAAAAACgxMzcEvvhuguaGYCmGWrnWRz1QAAAAACgt5g", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "E7qR1xO6m-6y8hakdrgUKg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFyT91NmuNXqOaWlDl-ljfvsBcwAAAAAAAAlq", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "BUc3pDzH0aXE4t4bzvulEw"}} +{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHbaI-7FSPUFvGFUkGA6jlppywAAAAAAC0ivYwxnBMtVSfJhocgnI0WgmAAAAAAAJWhYYwxnBMtVSfJhocgnI0WgmAAAAAAAJT_RYwxnBMtVSfJhocgnI0WgmAAAAAAAOfnbYwxnBMtVSfJhocgnI0WgmAAAAAAAJCWMYwxnBMtVSfJhocgnI0WgmAAAAAAAJBX_xFA0V1dCXRoFBkiljWo8aAAAAAAADD7ixFA0V1dCXRoFBkiljWo8aAAAAAAADtoEcKHyLiwo2RANh6cTXVIEBgAAAAAAECvUcKHyLiwo2RANh6cTXVIEBgAAAAAAECJaUJmIMEc6K8gJ39NHYaD0WwAAAAAADkfL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAACY8z6tVKI4mSYDEJ-ABAIpYXcgAAAAAACYn16tVKI4mSYDEJ-ABAIpYXcgAAAAAACYgf6tVKI4mSYDEJ-ABAIpYXcgAAAAAACWe06tVKI4mSYDEJ-ABAIpYXcgAAAAAAJbif6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJWCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD8cD", "types": "DQMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jO6NTqpGp_CHUe6zBHiSDw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATMsVxGJ_9ADjCLmkId1rUYwAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAEKGqShcrW-d9_GDzTagKIU9QAAAAAAAAAG_h880XQOq8mngzMZR-nPlwAAAAAAAABR9iEsaZI76W1WejkwhmTFwQAAAAAAAAAHC64NVLkkZ7RW349y9srs0gAAAAAAAAAEH7o77ANtSaWU3Ypp865GJwAAAAAAAABW_93WPbrUDW14kcLWmrpKPQAAAAAAAAAG12nEeMsH00wjguIyHXaYDwAAAAAAAAAEHRnmOObX7UEhjneXDGbG8gAAAAAAAAAMWdf_fGMEPXcmaZUprOUqQwAAAAAAAAABzKHS4hsJddCCPPI3lqHKuAAAAAAAAAAF__e_ReExoac--V-RQeNXewAAAAAAAAAHqnkrTiN5YCts6ND7O0BX2QAAAAAAAAAPHRnmOObX7UEhjneXDGbG8gAAAAAAAAAMWj5_TD0E9go0_JwMtB1C3QAAAAAAAAAF3QWEH8eApmH_ruugOKv76AAAAAAAAAAHshNXixs-94AywpTuAMqgvAAAAAAAAAAK5m5J32z338iItYAy0IlfPgAAAAAAAAAopGnFHfBK3F-I6STArMJjqQAAAAAAAAABqsOdwnOfdpGhy1Ny492aAwAAAAAAAAAGbfWTJUKYANwcIsCQIfxvLQAAAAAAAAAC1rHoPMq-mpf_DwJrvHqYAwAAAAAAAACKpaeptaXHRDYD67F7ORC0twAAAAAAAAAsW5uvTPsHW27xuZpmNo_OkAAAAAAAAAAGOgXCZlr_5lhpTZQoSrxsMQAAAAAAAABdwfX4W43RcsvFornvkG6aiwAAAAAAAAALIuyjdtp-59Jsue2LDdIRvQAAAAAAAAAA", "types": "CAM4BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Ibx3y23Elbf91yXToHAerw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAALnh_gImNGDSS549Z2uBSgzQAAAAAAAAAI9jqjVVKEx8WeQCg7IsRoQQAAAAAAAADHS5Qnu1ngkxm3zZ2kcSiESwAAAAAAAAAI", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "d3U6daZGLQlx_hl_1g4_CA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAACceDtEsbyqaPA8nODsaXH2CwAAAAAAAAAjdb7h5t6lXZ_2CL1N4DXU6AAAAAAAAAAOcAnVCtwTUMiPtQhyaFTtfgAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAU3B2E3nnskNJUgYVRkMUbJAAAAAAAAAACHwm3pNPC4Wa3xFabNuzwcgAAAAAAAAAROVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAAwR4O21YPz5WkGUKdaZ1xVrgAAAAAAAAAaciQsV4oUc5gYfL4dony27QAAAAAAAAAnAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CQNGBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "QABq-r1aM8TtOc2Nrr2fUQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAACLHmuH5pCGXma5ToZjJwiZHAAAAAAAAAD9rG4zWNbzF43FlUaeZiWkVQAAAAAAAADcCXLTbG53pspcYMh-GoRUQQAAAAAAAAAA", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mR_bhwYz0Z7HgmN-2Reqgg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA70RgYbC2fQjxygsXZf0s0DwAAAAAAAABPiAgP1DBH7Z9OPzvK7kQabQAAAAAAAAA3brHwMWIWqKKcmy2jXj1-xAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADXgFPyL3qH7XvAMbrBvAuRfwAAAAAAAADbtEnA5bbecd5HgfHANQcYvAAAAAAAAAAMRzjbtVKcKAJORTMSkyG2eQAAAAAAAAAGvpboNfauwLs6xQ0xkHOOWgAAAAAAAAAtO6091ZB5jV9xKR7I7_uzYgAAAAAAAABdKGcnodwCdbO2RZIs7I3VDAAAAAAAAAG7u5vAXtVp9d4wvRuocarrCAAAAAAAAAAPaxidElRbDvZZ7rQ8Ca4ceAAAAAAAAAAFTVILalueBBKmusxvrzs61AAAAAAAAAFQ-ewB6MfVuUB7Vi_jcn5d-AAAAAAAAAAvsZ7DuqUIOGepxIijYq8VswAAAAAAAABsy3V4Wh9j61CfcWNgvt1uPgAAAAAAAABz-i9B3-JNdczGS_XZOzEMqwAAAAAAAAAcOqpwupFnKCF_JGoASiI17AAAAAAAAAAN0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdxn1WEw8JlmcUP5ReFMzZYwAAAAAAAAAYTpjjgqBU-O7RfxeFvF0xSgAAAAAAAAA80Og38EZo1V7Xaj5UHUpXuQAAAAAAAABFHhNjFnMd70fZN07PFErnWAAAAAAAAAAKdAeX1d421DMJ2cC6FX3tvwAAAAAAAAALUPXqeiDjsTt0fgWi6CFaqgAAAAAAAAAEybzB9D1DmBNUwOV0iR5UtAAAAAAAAAAN_mPV7Hp65KUOwvav9b8I9gAAAAAAAAABiQFXlWBYeWLM55y23U7wowAAAAAAAAAIlP_2TC89YKD5hpxethArxgAAAAAAAAACTL3g2AvypQlrYJuyDrGudwAAAAAAAACoKG0yJwPdmCgBSiArw5PPigAAAAAAAAAFtELl2tv1H-OesCtcxmuUzgAAAAAAAAAF4-lSY69fXDm_fOs77Q9KJgAAAAAAAAACAMk_trcRDqgWwE9O1EQdVAAAAAAAAABf", "types": "CANDBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GoTiUMDpdhKLM1T4iTnbpQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsgobx9jqjuemtiUm8j-_s73zQAAAAAATTx9bx9jqjuemtiUm8j-_s73zQAAAAAAQE2Pbx9jqjuemtiUm8j-_s73zQAAAAAAQDPXbx9jqjuemtiUm8j-_s73zQAAAAAAlA2vbx9jqjuemtiUm8j-_s73zQAAAAAAlAxkbx9jqjuemtiUm8j-_s73zQAAAAAAQE60", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3OT8fSOJB4oLvyTgt_bRlA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAACgg6FXT4fd_WKeR1cE-hlLelCQAAAAAACgrPkXT4fd_WKeR1cE-hlLelCQAAAAAACgrYRXT4fd_WKeR1cE-hlLelCQAAAAAACgrRu", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2U1n9JtFDOLQnh-BmreAJw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQEI2MlivQ_yGyq36LnLAGeQAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQOUV_Man7LKpLI_xXeAvtgAAAAAAAAACeM1U5MRplArg1qeEAEk5MlAAAAAAAAAAYNK6q-mYZhWe1E7afoKkwiQAAAAAAAABsijeboCn6LOt0NOcmaRcGZAAAAAAAAAAHoQ244tw9hOZz82ezjc7AlQAAAAAAAAA_4gj0C7RMNmlQUbyfvqTY6AAAAAAAAABcutn7B_e8CjiON2nJb1OPvgAAAAAAAABO", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZKNzQAHHe_cNd3rO-y4iLg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWBTXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "70-ZyyfFOXs7l7Tgs6aFug"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q6ocEvvhuguaGYCmGWrnWRz1QAAAAAD-SYkcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbkcEvvhuguaGYCmGWrnWRz1QAAAAAD-LY5cEvvhuguaGYCmGWrnWRz1QAAAAAD-MYpcEvvhuguaGYCmGWrnWRz1QAAAAACNFBbcEvvhuguaGYCmGWrnWRz1QAAAAACH4WncEvvhuguaGYCmGWrnWRz1QAAAAACIAJRcEvvhuguaGYCmGWrnWRz1QAAAAACFxnm", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lJu_iGqX_IjaCqq1SMsRtw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz5F", "types": "CQMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RgOrqNvnm-Pz3vaDkqBBSg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi3MZ3CKaS4aU08RhYA19y5ITQAAAAACDjuSZ3CKaS4aU08RhYA19y5ITQAAAAACDgkGZ3CKaS4aU08RhYA19y5ITQAAAAACDf9dZ3CKaS4aU08RhYA19y5ITQAAAAAB9MVsZ3CKaS4aU08RhYA19y5ITQAAAAAB2nnMZ3CKaS4aU08RhYA19y5ITQAAAAAB2qiO", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "M8XF3EDgLoiHuskFtsDbIA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADAYnk6E9ReVsUsstHFtTIiXQAAAAAAAAAyfT0k69QoWDcgSGG9DEbGKQAAAAAAAABU3yZRDT05_hGvUj8jRvChFAAAAAAAAAIWQdsa8CodEr3BBR20SawlOgAAAAAAAAII2kNP-fbSjTC_hm1jEY6s0QAAAAAAAAAH9hAOHgmwWWwZTwO4K132QgAAAAAAAAAevtOmTuUGvKYiQRK_O9kHuwAAAAAAAAGJfbT9eHA5tj6rUvxqpnewLAAAAAAAAADWi_JW0SMBS0hXEJxPvmBaaAAAAAAAAAAEJpTsQQlmGWQ5UI3dBfHw_QAAAAAAAAAET5MVi_BSLsnWRbdoA3QO6gAAAAAAAAAiHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAHX_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAA", "types": "CAO5BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0c7Wf3iRgF2yaR3Vh4YEbA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsgobx9jqjuemtiUm8j-_s73zQAAAAAATTx9bx9jqjuemtiUm8j-_s73zQAAAAAAQE2Pbx9jqjuemtiUm8j-_s73zQAAAAAAQDPXbx9jqjuemtiUm8j-_s73zQAAAAAAlA2vbx9jqjuemtiUm8j-_s73zQAAAAAAlAxkbx9jqjuemtiUm8j-_s73zQAAAAAAQE_Kbx9jqjuemtiUm8j-_s73zQAAAAAAnqoybx9jqjuemtiUm8j-_s73zQAAAAAAnquObx9jqjuemtiUm8j-_s73zQAAAAAASVt_bx9jqjuemtiUm8j-_s73zQAAAAAASVX7bx9jqjuemtiUm8j-_s73zQAAAAAAZUFCbx9jqjuemtiUm8j-_s73zQAAAAAAlKBmbx9jqjuemtiUm8j-_s73zQAAAAAAlGffbx9jqjuemtiUm8j-_s73zQAAAAAAZVQSbx9jqjuemtiUm8j-_s73zQAAAAAAlIpwbx9jqjuemtiUm8j-_s73zQAAAAAATYU0bx9jqjuemtiUm8j-_s73zQAAAAAATYL4", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "o4TVF3J69EwMbk08S5viwg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAAX3IqZSkKN3zNxr0HYuO2pqe5hQAAAAAAdnyHZSkKN3zNxr0HYuO2pqe5hQAAAAAAdnxkZSkKN3zNxr0HYuO2pqe5hQAAAAAAdU3GZSkKN3zNxr0HYuO2pqe5hQAAAAAAb-pwZSkKN3zNxr0HYuO2pqe5hQAAAAAAdU9vZSkKN3zNxr0HYuO2pqe5hQAAAAAAb-v5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAdLPYZSkKN3zNxr0HYuO2pqe5hQAAAAAAbWL3", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "s1CNiMWPlfq2_NPSqfuWSg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAACSeel_AF4MFS6VTogqEciizwAAAAAAAAA4cNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAATPOaf2meILyNtXlyuau5zHwAAAAAAAAAKc6zhheBld8wEBO7TlhnPcgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB82g1SAYpsFtnBogFl0v0GAAAAAAAAADJdpQ3bcNFV5Y0XdediaTCQgAAAAAAAAALmmckjE-MysbZhDPP6gNxewAAAAAAAAAydmm7_Hn3SrysHeUffmIe9AAAAAAAAAAfaxxtk6GnkoiqRXb69JxcoAAAAAAAAACge4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJOdkuTNpXjsFc7WV5c_bgKAAAAAAAAAAMjBwquBL06pqJXOt8kphl0gAAAAAAAAAME5ablZjSwaw4LkNasKqxDQAAAAAAAAAFB3TkFubeMsUjXVlcESk9tgAAAAAAAAAMpmiRP16sLzHMk4sQotP67AAAAAAAAAAOqeHIgzzOczGD0wBwOrHP2QAAAAAAAAFJFuWxxcsr3tUR5NeFGer7vwAAAAAAAABnMWMRq4GUysNDjxb07DjPAwAAAAAAAAA3zpXAyp1QxqCx0Nj8RG5cPQAAAAAAAAAH7ZmFxDQcUJ2DdUoVkYC-ywAAAAAAAAAIs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFHy8-YFxh3xFG50wbJun6OAAAAAAAAAAIRA6fryXhwc6j3TqIqI_2kAAAAAAAAACP30E-Hz7p1XPeKvXBRCtMFQAAAAAAAABS-FS5_yzfVdkwZq5k0RkbUgAAAAAAAACP6BwAkRvxd04IN-6a_oJgBgAAAAAAAAAgzBmd40xeIWlVWiaWFnVM2QAAAAAAAAABOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB9iGiBo6WupT2In4pnTz02gAAAAAAAAAdq9NUQMc6iLPRwtCUCQA4JgAAAAAAAAAfG2qWtKA710-HVR2JIOIICwAAAAAAAAB2oTNupbAZc4qBrZLU_h-fogAAAAAAAABYLmvOcg0pOC8EpfUlMJwJ7wAAAAAAAABOoD19bmvIeXt5AY08cDQa7gAAAAAAAABTOr3A_uFtf7YBOMVYzqReaQAAAAAAAACqsTWJo6_vn8knb1fsiPDBcwAAAAAAAABT-0m6hBADt25_sY-zTDaOgwAAAAAAAAALuwIimYmRfOFHQGJdLBBUzQAAAAAAAAC6lqMTL_-yNkq8p4m30utXwgAAAAAAAABe4tuZpds1RwY_aRceEiCKwgAAAAAAAABkY9mQUdyp86jQhHqOid6GcwAAAAAAAACW76wxGzK61aMnsTPSzlLCrgAAAAAAAABA8gCX4yiEJccsUYm2373XlQAAAAAAAAAQz8yDYNMJULt1ApZ8kqZamAAAAAAAAAAGMMAujfe9xzktoHyDqw_cGgAAAAAAAAAGWY2_M7eCNrhZsLoJqmwFKwAAAAAAAAAEeVW9lCqHxlTfD5Rt7tiZeQAAAAAAAACGL6zK1j3SbhClCg7g1r2ArwAAAAAAAAAZlBCEtJpnWxH9YJv8ASXFIAAAAAAAAAACQl5LFJIFzBtywZjp054QqQAAAAAAAAAeud19zrXkNLiaFIKsYgavQQAAAAAAAABBZVUm0BdPrxOejRxbp2Iq8AAAAAAAAAAZhLSDzfljATRl53NLUpYdIQAAAAAAAAAS1t7fQsJNgmiW7cyVgRgDbAAAAAAAAAAEFmQpCEOKh0tQsiSVjTAfogAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAHY0vQ7EacG6CR4rzcFaNFEsTQAAAAAAATMu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMxXI", "types": "CANNBQIDBwQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jYDcO_10MMmj90cLQU-PiA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAB6azI-mX3CgcWhg9AcjJjNnQAAAAAAAAART7Ugi353BwPylAwIPK3gzQAAAAAAAAHvdr7nJhzDAJ3KA627xZhFegAAAAAAAAAUE66a7lKbkjXDy4kHrdweRwAAAAAAAAALavH6-iyYHlN_flagvaXwWwAAAAAAAAAK5JuKxbkWPMw0EpITr8WSNAAAAAAAAAALCcfJqdOGEtmv9Yi3xiJ-bAAAAAAAAAACQh22cv3M-xNK0_IOuNdQuQAAAAAAAABAdFuRXSangYgd0mdMqBWlpgAAAAAAAADqsO4szKNZnXyLfMP7gPsjpgAAAAAAAAA9jjxn4cl8bBaRqPgS5F0n8gAAAAAAAABEp9UR3btTZUo1MztbkeIkOQAAAAAAAAALZICRnstTjqeSOkLK1jp-HwAAAAAAAAAJ34fB7qb3OTOSVWKcGDOtPgAAAAAAAABl6X-l4zSEzV-o-Qo3loG8-gAAAAAAAABA", "types": "CQMzBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vV8StTEwG27qRNmXvSQnWw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbkcEvvhuguaGYCmGWrnWRz1QAAAAAD-LXecEvvhuguaGYCmGWrnWRz1QAAAAAD-M49", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lX0fEUYuffNYgt7y8lWqJw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAABQetr0v-F_gZF8yXV_t-VgIQAAAAAAAAAvvJ9aY3SiI_VOViscMoUSuwAAAAAAAAACTdwLOY0C6NYFuVVgfM0c5wAAAAAAAABspRTg5ZWEbp3JJIuMWP-nnQAAAAAAAAAI9YfSdWjTHtXOXD-P-YJ-oQAAAAAAAAAjnia7whBbxOvwBeZB8fnAXQAAAAAAAACE0uQfhygt3iA5h-6EqK0MPAAAAAAAAAAEJYb5JOqnMPOCcF7fd5apugAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAL0K8NlMClggx8jaziUTJXlmWAAAAAAAATNs", "types": "CAMRBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OxVykxLrjAY-XgNQtErYDg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmrZ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EqgJKTQHjXKf5Hm_-bdBpw"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrkwkgtQ4kMk_MBWrPUAFqVnYywAAAAABq3eYgtQ4kMk_MBWrPUAFqVnYywAAAAABq3hUgtQ4kMk_MBWrPUAFqVnYywAAAAABq_ukgtQ4kMk_MBWrPUAFqVnYywAAAAABq_ukgtQ4kMk_MBWrPUAFqVnYywAAAAABrog86tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJjeo9I8XHop3y7uLb8wdADAN______AbjGD", "types": "BgMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "peBwAq-Rf6egCmV1lK5X1A"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAAqadyH-5f8qL7d_nwuPRSZEwAAAAAAAAApZC4caaBbQcOc2WclRiklUwAAAAAAAAAMQJ-JVADSuuonf59sOKCy_wAAAAAAAAAPbYxYe2jgm-ZVQ1wIKl60VgAAAAAAAAA10rDJMn8VgPYie4Xyg6PSTgAAAAAAAAKaJjiG_BroZFP40tpmv2LaAQAAAAAAAAANcTSghm0iP6bYZfvjR-iYfgAAAAAAAAAKwACdzqsbVZZ7-w9w4aA61AAAAAAAAAAbXQCUoVCvFjlXEr6e8K8moQAAAAAAAABXefTBmpxxTjoAafV3eDofAQAAAAAAAACu_9_-8qGjh9aou0FeZrQLMgAAAAAAAADTf8AX8nZ-lp_iU67C5ubGNwAAAAAAAABAkiQ7KxPYNd0HZxuM62vmnwAAAAAAAAAgjVVHMYu0P2OEHJFmfTZ5eQAAAAAAAAAEgzF4xa6TmHHVGj6D9s_y9QAAAAAAAADoi32deQLexkVpk6b1igaeZgAAAAAAAAALD24BMbxmwnEGvGJ3u0PiFAAAAAAAAACQWZK18270JR2u9aieilAliAAAAAAAAAAIvw2FT3151oizPmalmfG1PwAAAAAAAACmmHJkS0RGvjKJIH_CXIlsPgAAAAAAAAAAAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "stb8gIJ5loEHEG8pPDd6KQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADHmXqXT4fd_WKeR1cE-hlLelCQAAAAAADHmkkXT4fd_WKeR1cE-hlLelCQAAAAAADHm4cXT4fd_WKeR1cE-hlLelCQAAAAAADB6QhXT4fd_WKeR1cE-hlLelCQAAAAAADQm1kXT4fd_WKeR1cE-hlLelCQAAAAAADQnNrXT4fd_WKeR1cE-hlLelCQAAAAAADQjwNXT4fd_WKeR1cE-hlLelCQAAAAAADQjKNXT4fd_WKeR1cE-hlLelCQAAAAAADQjhKXT4fd_WKeR1cE-hlLelCQAAAAAADQiNWXT4fd_WKeR1cE-hlLelCQAAAAAADQS7zXT4fd_WKeR1cE-hlLelCQAAAAAADQSlFXT4fd_WKeR1cE-hlLelCQAAAAAACh0Rt", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WgBd1iqmjwXGZyMKT4ahzA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVP4GdI6f6aagjBxBAKz-KIgAAAAAAAAAMqd26ee2y8slhneyPRIcQAgAAAAAAAADEwKREEYJF8V2B2guAeJRSCwAAAAAAAACoWsBETJrPecSrGYvg781P3AAAAAAAAAO3655cFkYo375T8NGzpy-aFwAAAAAAAAAXhve4jX92AzYM2N-JeQNG2QAAAAAAAAA1uoQ2M4bRS4Qydql36um4PQAAAAAAAAAu8Zl1Hn34Qq3KbfhSotUixQAAAAAAAAAcyg6hUybbKOuy2Th8HYOfDgAAAAAAAAAQwAR4gk273_ooOZdD1tA5fgAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdXgVcJKYEqhGaSbBYfKBXOwAAAAAAAAAQXfH1sbSxEuiQC9e5gcEKzQAAAAAAAAAW1w2R0Z8nd4XHXpj3W-TC0gAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdctx_9RVQASujUdCT9XDhwAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAAB06nqjE-VI9IYqWvJ2OibVQAAAAAAAAAI8Lr1AwdmXjQ6E8sJ1LQOsQAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAn8yw5xAkzQPNYncv2nxNJ2QAAAAAAAAAninLD7FTDiZ9QX8bC0I9L_QAAAAAAAAApsYti6chh3H8KzXctZah7uwAAAAAAAAAE7EAsiDF3uoTXazC89bRxpAAAAAAAAAAIpeI4q4l4-jzxMAY6KnhlVgAAAAAAAAAmzbjoTM6fVBg8CyNBFi4-kgAAAAAAAAACwi6IGN8qc6k-a5Oge6MluAAAAAAAAAAQEiFiDjtjvWXj4YGVaTJXOQAAAAAAAADjHAPuRG_LRRYFUeA5sYpd1gAAAAAAAABEs4zVuFE809K66EfKcw5rKwAAAAAAAAAQYvScvdM6KJZLJ6guypJyfAAAAAAAAAGsXODh_PNTdI03DfbDbvh0RQAAAAAAAABfHxzxHvIFieRj5L9dtBmJDgAAAAAAAAAmcTSghm0iP6bYZfvjR-iYfgAAAAAAAAAK8RG5DT3fZ989s0GfMwYkZAAAAAAAAABKkxK1qXTyCT9ACujXNEXtGQAAAAAAAAEu_9_-8qGjh9aou0FeZrQLMgAAAAAAAAC9fw_-Aaamj8Rs4l-zocEV8AAAAAAAAAAU", "types": "CANEBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "p0Vv5U9TyuarmDvqQJYvgg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mf9XT4fd_WKeR1cE-hlLelCQAAAAAAC-nbQXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN9jw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBss6tVKI4mSYDEJ-ABAIpYXcgAAAAAAI9cQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKhf6", "types": "FAMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cLkCP7P3dCghZzfDz9CzpQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAABkFg", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4CPxtr11h9ffUzRbEO4ToA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qkwlUtuQNZ2cGuJOBjod69QAAAAAAAAAfFZcDTI2WOs3OMnDBC0zHmAAAAAAAAACHLh1LDdjDW07X-POqmR5FOgAAAAAAAAACGNh1_yXJg_PNE59rBU9I5AAAAAAAAABVn8yyz5vynZOoIo8vPU8CuQAAAAAAAAMJ7ptKTGTqqszfKDkDMhWl3gAAAAAAAAHChOHMyxPNCIGw4qBG7phR0gAAAAAAAAATHxz-uf3OTF7oGg94lksRIAAAAAAAAAHeXWlznauAikAesf850f8rJgAAAAAAAADP", "types": "CQMKBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SDUgN8PVL4m0QdDkBbnIDw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHfZKXT4fd_WKeR1cE-hlLelCQAAAAAACy8_rXT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy_VqXT4fd_WKeR1cE-hlLelCQAAAAAACzAIEXT4fd_WKeR1cE-hlLelCQAAAAAACnefEXT4fd_WKeR1cE-hlLelCQAAAAAACney9XT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhjWXT4fd_WKeR1cE-hlLelCQAAAAAACjs1kXT4fd_WKeR1cE-hlLelCQAAAAAAChrznXT4fd_WKeR1cE-hlLelCQAAAAAACgaXEXT4fd_WKeR1cE-hlLelCQAAAAAACgXT0", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KgvmZoje8DnGpKxTpmx0mQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAABAQA", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "315v6PIu47oxrbBO5H7dQQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADB0YTZ3CKaS4aU08RhYA19y5ITQAAAAADA21XZ3CKaS4aU08RhYA19y5ITQAAAAACsr3A", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "j4KzSSQDpuya1wIDnhP-6Q"}} +{"Stacktrace": {"frame": {"ids": "2iSc_7W6mQyfzHA8XRDUrwAAAAAAMJS92iSc_7W6mQyfzHA8XRDUrwAAAAAAeB7Y2iSc_7W6mQyfzHA8XRDUrwAAAAAAdGxJ2iSc_7W6mQyfzHA8XRDUrwAAAAAAdJkN2iSc_7W6mQyfzHA8XRDUrwAAAAAAdIuf2iSc_7W6mQyfzHA8XRDUrwAAAAAAeMF82iSc_7W6mQyfzHA8XRDUrwAAAAAAcLiF2iSc_7W6mQyfzHA8XRDUrwAAAAAAcdDf2iSc_7W6mQyfzHA8XRDUrwAAAAAAb0NI2iSc_7W6mQyfzHA8XRDUrwAAAAAAbwj92iSc_7W6mQyfzHA8XRDUrwAAAAAAby6v2iSc_7W6mQyfzHA8XRDUrwAAAAAAbtaK2iSc_7W6mQyfzHA8XRDUrwAAAAAAMw8d2iSc_7W6mQyfzHA8XRDUrwAAAAAAM00H2iSc_7W6mQyfzHA8XRDUrwAAAAAAeVXWIfn5UOOZw7Eb-8v_kPDQowAAAAAAAB7MIfn5UOOZw7Eb-8v_kPDQowAAAAAAACxzIfn5UOOZw7Eb-8v_kPDQowAAAAAAAGzqIfn5UOOZw7Eb-8v_kPDQowAAAAAAAElG", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2egN4O8OswLmfe0zNNUhrA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbpmZ3CKaS4aU08RhYA19y5ITQAAAAABtPby", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "h5FMSK1xcOtgOzCKe17UYQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsgobx9jqjuemtiUm8j-_s73zQAAAAAATTx9bx9jqjuemtiUm8j-_s73zQAAAAAAQE2Pbx9jqjuemtiUm8j-_s73zQAAAAAAQDPXbx9jqjuemtiUm8j-_s73zQAAAAAAlA2vbx9jqjuemtiUm8j-_s73zQAAAAAAlAxkbx9jqjuemtiUm8j-_s73zQAAAAAAQE9o", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kdbgi1zcKKPnfWkBsEyF9w"}} +{"Stacktrace": {"frame": {"ids": "NH411-U9ZJbhx9KntPIOtAAAAAABZAG_NH411-U9ZJbhx9KntPIOtAAAAAABZhMTNH411-U9ZJbhx9KntPIOtAAAAAABaTlz", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "DTmxsDAUJTkT6N4yEzSMew"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVFKmuDb9OiAlOmhNzpFQWMgAAAAAAAAAFUw8EG916-vV16x2yycdXOwAAAAAAAADvK0flqZKMYgGhD375agfmDQAAAAAAAAAdrXAVE11Ryhs80ZE3uuTVVgAAAAAAAAACWj1Uq6jbmSjrZUnAzTcg8wAAAAAAAAFMu2DScCPg-79KHpSdqd651AAAAAAAAAAdt1rjy3Ck_TErVMhv-psy8AAAAAAAAAAHL89gnK14agcS6gC2h0zhpQAAAAAAAAFDEacvdBDVwYleo41xBU-e_gAAAAAAAAAL6vLdbR-rUObkBHp1yQiB0AAAAAAAAACDv9o_sKfrYjdaj4uQ2RTaHgAAAAAAAAACA81KQnIActlJrUuE6mKR2QAAAAAAAAAlGRkj9xWObIUC39vWGN57xgAAAAAAAABNIHitom53T4ie1rkBiA8y6gAAAAAAAACyLTb9asUQOMhlb43-O2hRvAAAAAAAAAACMClpQyU6gpPESHOwt_xwcAAAAAAAAAAoC6MkBEHFDeIGZnIrO2EiSQAAAAAAAAAFKSV5zpqX5uS8pJ0jF65uTgAAAAAAAAACNcpE6adeOVCfvBx4qpjhtwAAAAAAAAAHztHnkwVOP9LxgkQsriQwqgAAAAAAAAAmw8WZ7knoCa_QO4bWg-OEuAAAAAAAAAAFNMpC60tGKaJ25O0qF-RzlQAAAAAAAAACE-v8FNfqQYHt5vFsJHPNCQAAAAAAAAA9Pw0lwfQZQc0MOiG5MIrhJAAAAAAAAAAM9LcbhYCkWtGyipSFqusBKQAAAAAAAAA31DMLps0Phwo-rlcCw6stdQAAAAAAAAAFN4_m1vnrP1MXWCUw2cXf5wAAAAAAAAACVupuAC5J4NWIL7kdvuzpSAAAAAAAAAAFuqz36MZf1ln0xVwpZ_tNhgAAAAAAAAAOXtgaUXrhm9uTP3ztzfpd-gAAAAAAAAAO1x0MRoZ2zCpyeLl2nZZSQgAAAAAAAAAI", "types": "CAMmBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YIwJFFj-moY7AfshfD3Vrw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFcxv", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "soqkYkxjGqtHrdsusprhQw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw2HtXT4fd_WKeR1cE-hlLelCQAAAAAACw1EEXT4fd_WKeR1cE-hlLelCQAAAAAACkHGIXT4fd_WKeR1cE-hlLelCQAAAAAACkMuNXT4fd_WKeR1cE-hlLelCQAAAAAACkLDdXT4fd_WKeR1cE-hlLelCQAAAAAACkKXdXT4fd_WKeR1cE-hlLelCQAAAAAACkIJqXT4fd_WKeR1cE-hlLelCQAAAAAACj_ny", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "juLJTPUsSdVd1YFvTwb6Nw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAAB8dJZnxxfSj1TBzD3FyyfeDQAAAAAAAAAOArz1MMWCC2fkAl6FCL43rAAAAAAAAACL8OiJZHURIK_gi5RsAiMk3QAAAAAAAAD66ip1iuYQq9vB3aUDYyBeIwAAAAAAAAAF4pm-RlnsToJPewKWxyTO3gAAAAAAAAAgJuo8qUKghncsaJVIOQ-UxAAAAAAAAAAhx8wKfSxfz0olWikyS-1x_gAAAAAAAAAI", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bVzsIBhfYp5qDo9Kz4tFmw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQ3NXJCw7PINTEV_suvi1hjgAAAAAAAAAnr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAABR3DsLLpnzoGeqib2_MeXKdgAAAAAAAAAY0D5QIcqYfSjF8Y2Aggw1CgAAAAAAAAANIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQymtcT7XngDCOtcgo8NmgJgAAAAAAAABaEuiuEGuoH1DvPXwEkw2odgAAAAAAAAIDVFvoTC_1MXfHqnOeoSu9rAAAAAAAAABnfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABDoOWiMf3FXpVTm1lISLlNAAAAAAAAAAIbrBTwpxsMrD0yGTfkZil9AAAAAAAAAAUbrBTwpxsMrD0yGTfkZil9AAAAAAAAAAUuEMMwNyWvJYvudsWRyLnxQAAAAAAAAAFkSpDtM4aoNKYBm9KH33NoQAAAAAAAAAF1wwBJ-HqUIgmrCOrOjJevAAAAAAAAAAPeI9MUSpnSoMy-uDN6oCSMQAAAAAAAABe-Q5kEKNMw4iZ0N1EWQiCywAAAAAAAAAM-UMV2UZ-zVoMJMYJ04x58QAAAAAAAABVmSBnbtksrVvKstlIID71bwAAAAAAAAAUHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF4JxgAcphLAEsoWC3fPoUUQAAAAAAAAAMneQ9aDSiXyM-ZtdfoiCRFAAAAAAAAAAGXFsyX0Vq94TuMs7Bc44FAwAAAAAAAAAFhT_GFd-d817AZqi9jIee6QAAAAAAAAAUx8ERETcapIt78IXSEO8DRwAAAAAAAAACaLOl6FCWtZ16Qk1Y0IIBGgAAAAAAAAAG57LvoS5XWl_fcJcp0yiW5gAAAAAAAAAFfjJuU1RWkoyBxZODQLK13QAAAAAAAAALtMSkejbMLbAwBvxyLlav4wAAAAAAAAAGI4jMo9QP9xmtWdJqTQVyZAAAAAAAAAAiP4oX225NEq46guEgQcTvqAAAAAAAAAAIVlVI9xnHYUk-tJyxyXWlYwAAAAAAAACAxtOO4kKnZGFcF5CzFT3P5wAAAAAAAAAGcKIQZ9F8vNRoqWPV7VBuXwAAAAAAAABan94c5qCYR6pOYC1Ght5oSAAAAAAAAAAIoMr-xUy8NjCuFSJ4JeJcDQAAAAAAAAEZzTvLXdOFcy2gmvTP-mriSwAAAAAAAAAJkBpc1PHwyN8zr12mMJMNgQAAAAAAAAAFVfltgKq90uqCaKQjDIFzVQAAAAAAAAACAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CQM-BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zlmxsTTPMJDp5d_OFnqBkA"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZz", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "C06EKCiyFx3Pn4eqP7_0Vg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJ0Bt_4cO5WqUPlkr8SPaKaQAAAAAAAACdOkx9I2dyRRofyvlGdVF32QAAAAAAAAARrwXSlDQ1x9VYCzlc6vMZVwAAAAAAAAAOPE7_q3aweA58rtlG2V2VoAAAAAAAAAAO", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "tIyST1pMm8awViFudDyd9Q"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAADrAotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAExkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4pVlUGQpw_Cq0LEtbbly5dAAAAAAAAAAkN1WyTlGFxfHgSyYQ3aeHDQAAAAAAAAAOYSP8Ib_W13QEw_Ivysg7FgAAAAAAAAFyn0UYwZH5py59Xu9gAaxkrwAAAAAAAABAm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl5iN7OCAj-2IgmFqLvCWrTwAAAAAAAAESap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlJdvIaoH8miVW9zaDiDOZJwAAAAAAAADSap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlhW8OwmmxjJYCeXfLTZy__QAAAAAAAAFLap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlw4mT2NPQOW-Mg0N_xZsuzAAAAAAAAADgap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlRlK4jZbFueXylWP1GNjNSQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlL_sAxM5NHsnYQp22GwDx8gAAAAAAAABwap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAycNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAATPOaf2meILyNtXlyuau5zHwAAAAAAAAAKc6zhheBld8wEBO7TlhnPcgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB82g1SAYpsFtnBogFl0v0GAAAAAAAAADJdpQ3bcNFV5Y0XdediaTCQgAAAAAAAAALmmckjE-MysbZhDPP6gNxewAAAAAAAAAydmm7_Hn3SrysHeUffmIe9AAAAAAAAAAfaxxtk6GnkoiqRXb69JxcoAAAAAAAAACge4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJOdkuTNpXjsFc7WV5c_bgKAAAAAAAAAAMjBwquBL06pqJXOt8kphl0gAAAAAAAAAME5ablZjSwaw4LkNasKqxDQAAAAAAAAAFB3TkFubeMsUjXVlcESk9tgAAAAAAAAAMpmiRP16sLzHMk4sQotP67AAAAAAAAAAOqeHIgzzOczGD0wBwOrHP2QAAAAAAAAFJFuWxxcsr3tUR5NeFGer7vwAAAAAAAABnMWMRq4GUysNDjxb07DjPAwAAAAAAAAA3jsLLxIAhtu1IcuCmLP4yNgAAAAAAAAAH4T44kzE9JU_n4pRF5j5FFwAAAAAAAAAYSq4yJYXB5hEMp7oPtTmUiQAAAAAAAAAimSKMuTauUB6AvF_x3SDLhAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAlNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAANS_CTRBRzwj9_syNwY5rEXHAAAAAAAAAB3nZ_TLoQXzn9RYaGn5N0v4wAAAAAAAAA2414vwxwFz0HV2Ku4dzYYowAAAAAAAABPlF0402c3xDTaGy1WpLy7vwAAAAAAAABLuUQ4hHxS5ecL-ZWhFYxmxgAAAAAAAAAldTPbC_veUyGmSAjusjbQDAAAAAAAAAABbdcjH1IduvC01JhGXDULzgAAAAAAAAAEHxVJAZIu3O0jFVqzh80-TAAAAAAAAAALJslOyX-wUGFxc5cwIg6Z3wAAAAAAAAB9rgAjIQySCix3y3Kbq5dkvwAAAAAAAABl_RUQ8702rsuOcfHHin3xeQAAAAAAAAAA", "types": "CAODBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lSf7Tc5yBm_fc-OBhMSJFA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN4wz", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "_cCjzVgqwRq1Go1-c-dLag"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAeasI8DDAjVJl721y2vxKHGSBegAAAAAAgwJS8DDAjVJl721y2vxKHGSBegAAAAAAefoQ8DDAjVJl721y2vxKHGSBegAAAAAAee8-8DDAjVJl721y2vxKHGSBegAAAAAAeeqh", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zaOIMjTehAFaD95s7HxmFg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAACceDtEsbyqaPA8nODsaXH2CwAAAAAAAAAjdb7h5t6lXZ_2CL1N4DXU6AAAAAAAAAAOcAnVCtwTUMiPtQhyaFTtfgAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAU3B2E3nnskNJUgYVRkMUbJAAAAAAAAAACHwm3pNPC4Wa3xFabNuzwcgAAAAAAAAAROVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAAwR4O21YPz5WkGUKdaZ1xVrgAAAAAAAAAak9mnaRclHZhhpFF3LBU5TwAAAAAAAAAm-oQ9VuCOQPeW_T8CGKqMgAAAAAAAAAAGNJGrW12l4VtfBBiRfaaqLQAAAAAAAAAhWHc6TeyRQEqs6LkNUiVKVQAAAAAAAAAzE7Si9KeNnLhexcT10oHiFQAAAAAAAAAXAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CQNKBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NjHv3zzMwZXdi1gFgV0lPA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChy6gXT4fd_WKeR1cE-hlLelCQAAAAAAFRYL03aS07d9PG4lc4UzuBbVWzQAAAAAADE19rtOWfs-RaxXWHIPyRB9RAAAAAAAAAGEo3aS07d9PG4lc4UzuBbVWzQAAAAAABuKH3aS07d9PG4lc4UzuBbVWzQAAAAAAB7Hf3aS07d9PG4lc4UzuBbVWzQAAAAAAB84B3aS07d9PG4lc4UzuBbVWzQAAAAAAD5BW6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "CAMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JKQIfdhExc7T0qPhnUoFKQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RRwcEvvhuguaGYCmGWrnWRz1QAAAAACEN8ucEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEWQm", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "V378CoEAxuDA8TdO9JheuA"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI9J2jLQ1FZetb1lgChbiqDwAAAAAAAAAQE6PjQ6yX7cquO-45jTFBqwAAAAAAAABozyaCXIaYasENrpmi3j3qmQAAAAAAAAARfRzclogVikoGj9ila0Zr-AAAAAAAAAAC3iwGD7XhJ7NFAOoUFDbFYAAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABgFcHGeTZbDG8jQ9sbtbngcAAAAAAAAAAcs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFxT2WWO0xpoJavs9lRfxlrQAAAAAAAAAcp5w5pK5DC7tvfZH54keo2AAAAAAAAAB_ImSMEYxGQoS8Ko52LTpvDgAAAAAAAAAWNmvj-1JIFU5r1IdV1cgfBgAAAAAAAAAyBkvohLqsP1J5ZsbvSe8hxgAAAAAAAAAM4_9Ja0HeMbT0P_tvtE-_5QAAAAAAAAALKzN3qmW0XX0B0Z6AaJ0GvQAAAAAAAAAE_oRewwL9e3LfROggE6zIhAAAAAAAAAMzBHSm8gJjsmlMLXYl4aUtOAAAAAAAAAAOJc21d-hh52rNRJ_kbSvEeQAAAAAAAAAF", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bFL43h38cCSmyCigV_nhHg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQEI2MlivQ_yGyq36LnLAGeQAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQOUV_Man7LKpLI_xXeAvtgAAAAAAAAACeM1U5MRplArg1qeEAEk5MlAAAAAAAAAAYNK6q-mYZhWe1E7afoKkwiQAAAAAAAADYr6Fg_DPZ96geKIjDaUl37wAAAAAAAACsPYNQGka54-Rn86JqyO8oZgAAAAAAAAAMuHXk96D_H0MjX0tAh6AHfQAAAAAAAAAGBQgPvwiw9NNbOJgDcqi8DAAAAAAAAAAtD8SuOAHHuRsEe9MWrwApVgAAAAAAAABUpD64Y8dYs0KzJcRfejjvpQAAAAAAAAGx0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAW493G4lGxxLfYXMqOHIciJwAAAAAAAAEEBvLbND_0DrAH3Z_KTjqNwwAAAAAAAAAIiQ3-U2pFJokP-jlw4Yr9FQAAAAAAAAAJnxv9fnyzQgRP5y-sCtMEGwAAAAAAAAEgE-UV4Q5gHz5xBV_lbP0MMgAAAAAAAAEy", "types": "CANXBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KWNGCyRmkC1xEn7URSn49g"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgbtW", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zWKllBn38KanVP1sRfNTvg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7-XT4fd_WKeR1cE-hlLelCQAAAAAAC-pCkXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "FwMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UOlhWSp-9HXqQB_mQ5CGPQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAGLtB", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KtdipdI_zfkxpFcGZuJLlQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABd4oeVrIj-aGv_e1zFtSrj5gAAAAAAAAAMyXKDtBzzfIoSkaFR2cf2FwAAAAAAAABcG8dGr5IRBKlUa63ayAjDEQAAAAAAAAAKGFseY0uix2hxT0Di8k7-3AAAAAAAAAATslf6t7FJIQoDjMJN42BVyAAAAAAAAAABFg2KiEq3-QS_hoWS2OekUAAAAAAAAAADWt0sf_JgSqOTKaBcf1zgawAAAAAAAAB7FzJF8qZ49M3tzNcHAYKOpwAAAAAAAAAXLo1bd7PttsuTzFjX2oW5lgAAAAAAAAAB4dIwNpyNQOyQPjDgfjNvLgAAAAAAAAATW0z6xNHqHLcQrQ1Rr4ojGwAAAAAAAAANavU6NIsopUe3RLXmOLaJogAAAAAAAABBBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADUR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAADZ6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC80G6zvzFPytbRyfwuXWQcAAAAAAAAAAB", "types": "CAMmBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "q0Tyb7jka2jL30SZBsJhvw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmqH", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "l5hQ7yEmTyf7pvGODN3WGQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAACLHmuH5pCGXma5ToZjJwiZHAAAAAAAAABnS4DQ5gj04oVPTd_cZvriwQAAAAAAAAAFcoLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJnsN5oeLyhaU3rc_4TQfhXgAAAAAAAAALgvQGUUGWUJbOOm8Vi63fqAAAAAAAAAAGpIlQHYzUvHZx6w5Rtmyd8QAAAAAAAAAGQUT-nNY12PdX-wWYy6XdlgAAAAAAAAADSp9UjTJ6AKwagodjyx73jwAAAAAAAAAFy_Kb_1plOC7673Fl1U32vQAAAAAAAAAFcoLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAACbEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAF45C-Q8d2gQJCMIvUacUWRQAAAAAAAACWgLY08aWtgqicV-bC4OtakQAAAAAAAABe", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "pIUgG5E4gDRt2dza9aR7Ig"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChczv", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "V1VA99K-35mj77E2cXBSeQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAI2b8Hh4l9luLQDA0--un99UgAAAAAAAACz-CA2HwYxn7uXuJvRLWceDgAAAAAAAAACo8rqfKK5bLlXTh-ItgR3_AAAAAAAAABIGs0tfvIN9I1zwkPyuCYq4AAAAAAAAAAKzk_PAPIluouMAlyxqI2lSwAAAAAAAAALSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAABzSt7lFjY3zfwOi_rfHJtWoQAAAAAAAAB7YY6rmsokuP0BKno7mbtScAAAAAAAAAAF19uHIkVsOWsXPhLw6Psn-gAAAAAAAABj", "types": "CQNEBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "achOIm1VCy7pN2p0q9qstQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIZy27xNCwe4jKCqsA2srxVwAAAAAAAAAoLZeO9S9IXnalwT9Nl3ihfQAAAAAAAAASxWwq3BVQzbzp00-HYFOW_wAAAAAAAAB094QsDIL7bUk7Oxas7lNqGAAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJSYSSbioufiMK4TqEn24uLgAAAAAAAAAdXL_fwLkYkxkYcfgosK-fdQAAAAAAAAAQO_mHTPntGTw_EnF-rkI8XgAAAAAAAAAWiiLZnxbVRTQPtvWA0miuyAAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdfJIr5vQAn81_ytZBhz6xpAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAABduSa7rLKjwnZa9hewarfUgAAAAAAAAAIHMo9CJkBJDT98ldAVMcaFwAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAADCB20OugZuwBAeveso7e9HjAAAAAAAAAB7KB0KS3hQ9ShgNXNnOutrBwAAAAAAAABZc9WPXjfxUsY9A-4tktrxsgAAAAAAAABDZisowJWVFJUnsVdUEJd3iAAAAAAAAAAEDmCjVnOlyRCGuSWi8wFNugAAAAAAAAAE17HTI7iF5IciDolEslsOPQAAAAAAAAANiwJm4bnAtF_1nhbNXfjG4QAAAAAAAACs", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GsLS1vMfeRFS2PkKyx_Rpw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAAwR4O21YPz5WkGUKdaZ1xVrgAAAAAAAAAa", "types": "CQMVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dDsvo5FXLLPMF55JXGlbNA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATMsVxGJ_9ADjCLmkId1rUYwAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAE7fiqNEC4hTNfpjbFJ8zPtkAAAAAAAAAAFfFtXuenTBEiIanE9ZLS9KQAAAAAAAACHzpP80T6FdaTGeY1BUSMu-AAAAAAAAAAFi8qUzmADhGx9PMH8RJ_tdAAAAAAAAACPZ41z-remt7jPNWprM_rymwAAAAAAAAC61S9eFAopKcZX-VnW9ChdWAAAAAAAAAADw_8HYglWw-0jqUUlUeMgagAAAAAAAADX-OuZ_zFnMJsV4zFgjL7inAAAAAAAAAACfEKUJczxV0wWF5_qwXHZAQAAAAAAAAAA", "types": "CAMnBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hrU7XkNODwXgcz8OCsx4lw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAFJeiEAvRyyg7Q8ghJd6qO4ZQAAAAAAAAApxDECjxfRDF0SAcicHv7yIgAAAAAAAAABSsODsFdp0k4d_SSQAFmIUQAAAAAAAAApzzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAKdz3i4bkkYsjT-e-OYyoK1AAAAAAAAAAKAFcerkg-eI_i2lYMD8P3bAAAAAAAAABzvf7QtfK9pdGvwA-FZkTf9QAAAAAAAAAE_qkVJm0NxTF9ak3kQe9veQAAAAAAAABl_o16MMgGIHtHHW6cqc3kcwAAAAAAAAAKdz3i4bkkYsjT-e-OYyoK1AAAAAAAAAAK6UVknviTZuHBZK9RlE_ImQAAAAAAAAB9vf7QtfK9pdGvwA-FZkTf9QAAAAAAAAAE_qkVJm0NxTF9ak3kQe9veQAAAAAAAABl_o16MMgGIHtHHW6cqc3kcwAAAAAAAAAKdz3i4bkkYsjT-e-OYyoK1AAAAAAAAAAK3rLZd5lPThQHbPceRXAomQAAAAAAAAAH6UVknviTZuHBZK9RlE_ImQAAAAAAAAAZUeUQgO6mk4v2Tf2h_dZ3VAAAAAAAAAAHXSMznkRt2WAdGjlwbap95QAAAAAAAAAHMJcsrhwAFXYIvzoys3GDvAAAAAAAAAGQrr9ydfUnJMumBkVuKO3DEQAAAAAAAAALOmwXLYgK4mB4VPSorht2jwAAAAAAAAAKrovdyrVTiLcrORXAjvCRXwAAAAAAAAAPle9MVa54M5hz-4VDdEuCkgAAAAAAAAA51z71Un1VHSd46-saNDpLAAAAAAAAAAAFReyju0By9wxqZBnf2BDPsgAAAAAAAAAF1s1_VifsV1Mzjd9P-8DEhgAAAAAAAAAGvf7QtfK9pdGvwA-FZkTf9QAAAAAAAAAE_qkVJm0NxTF9ak3kQe9veQAAAAAAAABl_o16MMgGIHtHHW6cqc3kcwAAAAAAAAAKdz3i4bkkYsjT-e-OYyoK1AAAAAAAAAAKEFoOI6BMp-b-Y3eJPVq_QQAAAAAAAABEvf7QtfK9pdGvwA-FZkTf9QAAAAAAAAAE_qkVJm0NxTF9ak3kQe9veQAAAAAAAABl_o16MMgGIHtHHW6cqc3kcwAAAAAAAAAKdz3i4bkkYsjT-e-OYyoK1AAAAAAAAAAKN8EaJBp59RHZ5cTYR_Dm5gAAAAAAAAAA", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zwMO4rVv9rl1VAuhiQiQDw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADCUMgZ3CKaS4aU08RhYA19y5ITQAAAAAB6--RZ3CKaS4aU08RhYA19y5ITQAAAAAB7jHtZ3CKaS4aU08RhYA19y5ITQAAAAADRx3oZ3CKaS4aU08RhYA19y5ITQAAAAABzYmIZ3CKaS4aU08RhYA19y5ITQAAAAABzapDZ3CKaS4aU08RhYA19y5ITQAAAAAByypDZ3CKaS4aU08RhYA19y5ITQAAAAABwPRUZ3CKaS4aU08RhYA19y5ITQAAAAABwQwwZ3CKaS4aU08RhYA19y5ITQAAAAABvxCJZ3CKaS4aU08RhYA19y5ITQAAAAABv2O8Z3CKaS4aU08RhYA19y5ITQAAAAABv3V6", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wlpgBzf8EwLf8rXDcgVwEQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t3YXT4fd_WKeR1cE-hlLelCQAAAAAAC-wPkXT4fd_WKeR1cE-hlLelCQAAAAAACgaXEXT4fd_WKeR1cE-hlLelCQAAAAAACgXTYXT4fd_WKeR1cE-hlLelCQAAAAAACgVqNXT4fd_WKeR1cE-hlLelCQAAAAAACgUoxXT4fd_WKeR1cE-hlLelCQAAAAAACgURkXT4fd_WKeR1cE-hlLelCQAAAAAACgT3kXT4fd_WKeR1cE-hlLelCQAAAAAACgeQ2", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LTrixagg28jINMLbWPS4sw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxkkcEvvhuguaGYCmGWrnWRz1QAAAAACEPcG", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dobhl5ofY0uMkot107beaw"}} +{"Stacktrace": {"frame": {"ids": "7B_NxRB-tFVbAaTDiew0fwAAAAABHaFY7B_NxRB-tFVbAaTDiew0fwAAAAAA3cSE7B_NxRB-tFVbAaTDiew0fwAAAAAAzPuO7B_NxRB-tFVbAaTDiew0fwAAAAAAzPra7B_NxRB-tFVbAaTDiew0fwAAAAAApn7F6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_NQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaQ66tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZnU6tVKI4mSYDEJ-ABAIpYXcgAAAAAALAzx6tVKI4mSYDEJ-ABAIpYXcgAAAAAALAuj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAK6uC", "types": "BQMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "H7rJR36nPHUOi8E64uyY6A"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAb2jOITD8MGbT1Ovw_xtzUAgAAAAAAAAABdfaJS679SMFHynOlhaT4GQAAAAAAAAAEwxNyOGlepMHeJK72r3Nx1AAAAAAAAAABNCnW31JAeE6fBCMV8tcmcAAAAAAAAABx-Io3TUEjg3VhqUZyexECqgAAAAAAAABCKJ6ILPQkLRzsL_qCZRHYPAAAAAAAAAASW8XJy2Hk37R95UDQ18YnzgAAAAAAAAAOOdhNFK09ypq7bYC30OEbwQAAAAAAAAAWz_t7zXgMNJmUhO2ppFiaDQAAAAAAAAAFGVtE5azmnq7oQE07RxtqrwAAAAAAAAAxM-HSPvU6Ylpk6rULEsdDKwAAAAAAAAABwcwS_jKe-J8ZEpRM7gaB2wAAAAAAAAAFn0k5scYsn3wtTeokDa3YiwAAAAAAAAAF1KcuglkNBKBETK8L499nPQAAAAAAAAANiXm2yUQTnZpOrE8ZNWS3KQAAAAAAAAAm-bdPLgVx58dzwkE7OjvI9QAAAAAAAAD8HFPQZoN2n5VkO5BMHQfrJgAAAAAAAAAHhlX4PwF686mIDW3QTMcPLgAAAAAAAAAhpau0UQ1asIYgp7VJrYDBTQAAAAAAAAAF3xTOsdIVWsndoiimMJHU6QAAAAAAAAAFStBzh-j_BbDJptb35K7wggAAAAAAAACWfJ2vEHN0ahhqkolwZM_-mAAAAAAAAACd9OsMzWnkgB8tZRuL3LJAqQAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAMWuJP2ZlrkWY4fYf76RE1-wAAAAAAAAAEwnT-3kaCOQYfHKOug9rNHQAAAAAAAAAPhF3EmCBIcJDJnmvcAiPs1gAAAAAAAAAFhF3EmCBIcJDJnmvcAiPs1gAAAAAAAAAFXwcbS0rkymicbnLB2hsPAwAAAAAAAAAwfcVS7ZCGAM2mDAe0gspxtwAAAAAAAAAK-e35zu4XE19CYqGplKrAMQAAAAAAAAAFzuNMEnMlJFreMmugEW997QAAAAAAAAAI_IZbUtnGtg8gN8VtB0NjtQAAAAAAAAADV3VF8-btHHz_lRbyNYn4HAAAAAAAAAAGXvjlCocy_0w3vV-gCdaE0gAAAAAAAAAN1Qc81cp4mNjTpfchkKvwqwAAAAAAAAALrx1IYyt_N65Gocl6CDiGDAAAAAAAAAAB75MTQgFwHrOqmJ603qSRDgAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAAcVHbbx9jqjuemtiUm8j-_s73zQAAAAAAcwiD", "types": "CQMsBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fFezJjomIkwVRpDyTq29-w"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALO-i40hQb92bY-JOhJrV2owAAAAAAAAAs6l-EHm0OnthNsvyaQcuYhwAAAAAAAACj9kPyGC0UFb-ggUrmSlRB2gAAAAAAAAAffO_gJBPd8E-RahoVIhDflgAAAAAAAAAB1P3GTCQSFJPOIXZWIUu1PQAAAAAAAAARJQ--Da8UMa_zKaKYpLYZrgAAAAAAAAAItYnNSbSbqPfiGNhyW6TUtwAAAAAAAAABIEtETl463byzMJPLuRp-TAAAAAAAAAAIWNklusebG0tdR5ytKPlbkAAAAAAAAAAIBPGrhEymdtYQNz2pzn2GeAAAAAAAAAABMvHykdws074DrQKhhSE29wAAAAAAAAAUIEtETl463byzMJPLuRp-TAAAAAAAAAAIWNklusebG0tdR5ytKPlbkAAAAAAAAAAIWXc0Ul2uIu2AvsVIqd0TXQAAAAAAAAAlMvHykdws074DrQKhhSE29wAAAAAAAAAUIEtETl463byzMJPLuRp-TAAAAAAAAAAIWNklusebG0tdR5ytKPlbkAAAAAAAAAAI3gsDLXDLRJdnmH9et06JcgAAAAAAAAAnEdy7WlyFZta5S1JFk5yFhAAAAAAAAAAuCkV75JgYBXf-KhQ2Owuf9wAAAAAAAABw9AimbJ3zXR64PEjKxAEStwAAAAAAAACOlLz61dScX0qP4lCt6ZUMggAAAAAAAAAUDePeDrfzT4Z9IiWuAa2yfQAAAAAAAAA2CfntqUZeNm20sNox6HFMzgAAAAAAAACVMHYwZ_YFmkP6a90hgj1nMgAAAAAAAAAOE9iUlIQsVQsPhYcGfBeeagAAAAAAAAA-e4FBCt2c4GYHVLxPkuzsFwAAAAAAAABoUfDyrL3FwaQ3-kXYQdojZgAAAAAAAAC90QzQekxDG0sMrfbr_ICYAQAAAAAAAABNRVieMaRFe3uT8LWVn0x_HgAAAAAAAAAFVdRI4bQjguZE6PrIFD9m6QAAAAAAAAAEqpODw8IkqtVkRR3pADrcYgAAAAAAAAACu6kUmTkhHEVvdfd3N0zHyQAAAAAAAAAaVkwvTLJA_wYkkvZ7q0WeEQAAAAAAAADG", "types": "CQMkBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-L61XxN8KK8PVObP8gzNiw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEeM2OILZain4HbmUZD_h9ouAAAAAAAAAAFbhZo2QRqgq-0DU0P-coC5wAAAAAAAABWBMURaOSzSc-JrTjtJ2pZvAAAAAAAAAAHSoESWitTbygqCArOsyQ6ZAAAAAAAAABezJS1ch2PqqsLX8q5Wj0t7wAAAAAAAAAfxjSvau0yCC6WYo-obUFaEAAAAAAAAAABGv4-gnM04seHvi2rk7HAtwAAAAAAAAAp55GfxhHkj37-fwWSYe5ibwAAAAAAAAAe", "types": "CQMzBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TbXzMARXBr6uOHnzwUD29g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsftbx9jqjuemtiUm8j-_s73zQAAAAAAXsVwbx9jqjuemtiUm8j-_s73zQAAAAAApykkbx9jqjuemtiUm8j-_s73zQAAAAAApxqgbx9jqjuemtiUm8j-_s73zQAAAAAAjuMHbx9jqjuemtiUm8j-_s73zQAAAAAAmqyF", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mLzfB9o1Uee0MJuuCHe0GQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIZy27xNCwe4jKCqsA2srxVwAAAAAAAAAoLZeO9S9IXnalwT9Nl3ihfQAAAAAAAAASxWwq3BVQzbzp00-HYFOW_wAAAAAAAAB094QsDIL7bUk7Oxas7lNqGAAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfgLN_fy99a1PeGYQpwGnLwAAAAAAAAAJSYSSbioufiMK4TqEn24uLgAAAAAAAAAdXL_fwLkYkxkYcfgosK-fdQAAAAAAAAAQO_mHTPntGTw_EnF-rkI8XgAAAAAAAAAWiiLZnxbVRTQPtvWA0miuyAAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJ0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdfJIr5vQAn81_ytZBhz6xpAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAABduSa7rLKjwnZa9hewarfUgAAAAAAAAAIHMo9CJkBJDT98ldAVMcaFwAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAZifuzCpl1zo6zLw_paxkEdQAAAAAAAABs-I0qeKDe1hMr58wzZHuN2wAAAAAAAADfbLRnm0K2LnF8O3sUIvVtEQAAAAAAAAAFYUqlosets6-rXKgChfDXoQAAAAAAAAAfnB7ASI-agyjwniBzr5SZ-QAAAAAAAAAfUxUrGKaPEq08l4l3816TpwAAAAAAAABeb_xouuKJL4pG8kohSeNIUwAAAAAAAABBsMxUjH933Dnrx5VGtrDpyAAAAAAAAABHck_MxLBdFaeX0Pe9TGo2LgAAAAAAAAAWRvgpC2THNLDZ9bIizRZhbwAAAAAAAAAQgPBctPsmAQAJ7XPMDQ-KKgAAAAAAAADLgS4BqKHRLy9ywAJxtWFusQAAAAAAAAAAAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAM7BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MMJ3Ol6mKxYAMKTBVs0z4g"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXEEgtQ4kMk_MBWrPUAFqVnYywAAAAABqaJ-gtQ4kMk_MBWrPUAFqVnYywAAAAABqYJkgtQ4kMk_MBWrPUAFqVnYywAAAAABqYXkgtQ4kMk_MBWrPUAFqVnYywAAAAABqZbZgtQ4kMk_MBWrPUAFqVnYywAAAAABrYZugtQ4kMk_MBWrPUAFqVnYywAAAAABqZxkgtQ4kMk_MBWrPUAFqVnYywAAAAABqaWH", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3RQ6_QU7yKmm6dd1xL6clQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_-Qx-pCy53U7YabuA5eb0fAAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAcpSIXlNYnJYwCILAJFTEzSwAAAAAAAAAGTyuf4RNGIxt-ueaCsLj22AAAAAAAAAAXvSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0qlujNL7db72ZwWHkSPq1iAAAAAAAAAAa8tJujVK0pdTWlucWIQYskAAAAAAAAADWSXFZShc93P7Br4wzVi_TSwAAAAAAAABGl8by2NZ7WjCFmKmn5LkVDAAAAAAAAABNJj6ja2Wbkf1_R1a9nVWcUAAAAAAAAACJToVtc2P50kV-QGj3la9_ZAAAAAAAAABV5DGFi3MrQEDDo8fCYbA5hAAAAAAAAAAIHfMb4ib8WKiucqC90J7sSwAAAAAAAAAHsueTM-LYsBZU9Btl9NKTwAAAAAAAAAAEc8wp1Q45CdLtTNnj6qINTwAAAAAAAAAcuivmFtqkx0mSDLjpV5jf4gAAAAAAAAABRK8a3DzcZMuwoK9TpGXQTwAAAAAAAAA3hDeNHR-uaDqXexxBeqdlYwAAAAAAAAABNuqcOqANutL4nD8JjGfmlwAAAAAAAAAkOD88rfBmy4BfCXerLT5e5QAAAAAAAAA7yhF9CEzH60wdDBblzY1FcQAAAAAAAAAIOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAABJWFBxAERZNClfuNDueoaytgAAAAAAAAAGFw4N_DGYxmWJY3G6VlrCLwAAAAAAAAAGK4GtFsHu3sEiObk5SkQ6NgAAAAAAAAAZR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAAAA", "types": "CANVBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3kBsdcdJuehrHwupMmytxg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAACmqMbPVznwEx5ReH3mSJFkBwAAAAAAAAAwR4O21YPz5WkGUKdaZ1xVrgAAAAAAAAA2pnx0xwNPdcZ32kceiz_BpQAAAAAAAAACPwR81tCEw_YLoJoW67EqfwAAAAAAAABj", "types": "CQMXBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4AxbDvTpu-aA3Q_KcpmP7g"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiFx3XT4fd_WKeR1cE-hlLelCQAAAAAACiHvpXT4fd_WKeR1cE-hlLelCQAAAAAACiMqkXT4fd_WKeR1cE-hlLelCQAAAAAACiNLW", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xoCa-qbawi1vN9sZmKPLvQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIw_O3wtATzW6mpl2Tr754qwAAAAAAAAAQM9FHTHUX8n2-ELVOjeLTlwAAAAAAAABuVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF1amBT3QOZUDimVzQ6SC8SwAAAAAAAAAcnqbqMpFzSFtDNT-ZGF_nRQAAAAAAAACwMeTqmkZsdvR2zsVZgPnDHAAAAAAAAAAsTfv1CFdfGMugK5MvpkpsPAAAAAAAAAAWhve4jX92AzYM2N-JeQNG2QAAAAAAAAA1uoQ2M4bRS4Qydql36um4PQAAAAAAAAAu8Zl1Hn34Qq3KbfhSotUixQAAAAAAAAAcyg6hUybbKOuy2Th8HYOfDgAAAAAAAAAQwAR4gk273_ooOZdD1tA5fgAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdXgVcJKYEqhGaSbBYfKBXOwAAAAAAAAAQXfH1sbSxEuiQC9e5gcEKzQAAAAAAAAAW1w2R0Z8nd4XHXpj3W-TC0gAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdctx_9RVQASujUdCT9XDhwAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAAB06nqjE-VI9IYqWvJ2OibVQAAAAAAAAAI8Lr1AwdmXjQ6E8sJ1LQOsQAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAABchbRuRrRTUwPxI5LbvQW-TgAAAAAAAAAKv-BWBCzanLU8PuKPwDfFAwAAAAAAAAGMk_K9_UkGJ5doglspKH5JwQAAAAAAAAAX5m3n_54tQQHrC0wzPZkPdAAAAAAAAAADaBDyfRrCxv0GQF3elQxZKgAAAAAAAABMLq5m9KEJy8LZZKxQPveNBAAAAAAAAAAfvseJX0sppKrh3ZPWhmhGrwAAAAAAAAATwrBa50Kv2QbqC8pKyQLbSgAAAAAAAABsTW4sUcfCxo4I664oFoA8CgAAAAAAAAAxcLj3iX2dJ32V3fV3D5cJrwAAAAAAAACAixaQmigMwFUALyXH0XndswAAAAAAAADvzo2rYxi4MhJ1lvaG9--jQgAAAAAAAAAOBOaqyHr_2GYQ5H_RGUiqwgAAAAAAAAAi", "types": "CAM0BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2sFyjRFnhRiXkq1Vg9Y4zA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-9R0XT4fd_WKeR1cE-hlLelCQAAAAAAC-xp-XT4fd_WKeR1cE-hlLelCQAAAAAAC-tNEXT4fd_WKeR1cE-hlLelCQAAAAAAC-hiKXT4fd_WKeR1cE-hlLelCQAAAAAAC-hZZXT4fd_WKeR1cE-hlLelCQAAAAAAC8k6-XT4fd_WKeR1cE-hlLelCQAAAAAAC8tjlXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8suKXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8sfIXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8sfIXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwmXT4fd_WKeR1cE-hlLelCQAAAAAAC8fSMXT4fd_WKeR1cE-hlLelCQAAAAAAC8wmxXT4fd_WKeR1cE-hlLelCQAAAAAAC9Z4EXT4fd_WKeR1cE-hlLelCQAAAAAACgaf_", "types": "HQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "frtHPKpjFujS7nkAyRL-Lg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFGWjujT1s7sRuQIwkyxwy1QAAAAAAAAAEr9q6Sp77TFNIj0PxahNFPwAAAAAAAAAM4iaBbZIIwXRBOYMSVscz2wAAAAAAAAADf5pCmW13zl5OWUDLG_ClrwAAAAAAAABNynHqfILVzOOqJs-5yJf4gwAAAAAAAAAeU2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-_XkMI8xGR94JL4lQtb9x_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAAthtvgcgAW24Rn4q34GnPYLQAAAAAAAAAFQNZzHGnqskrqlEo3XdkqqwAAAAAAAAATlH7EdNhUWMEu-Xw0OnFCsgAAAAAAAAA6PT8Qhq3pE7S7UQ5pBb6dmAAAAAAAAAAOpKLBb0_sPdt_IxvNqtQh6AAAAAAAAAACD8h50WvRJdBg-tXDetFXDwAAAAAAAAACQuKBCI0MGQoEy6EB3hTY_QAAAAAAAABzCfIO15i68EO1AMNsYlotCQAAAAAAAAATfngmakIlFuW-DPwlYWq95AAAAAAAAAA6QuKBCI0MGQoEy6EB3hTY_QAAAAAAAABzCfIO15i68EO1AMNsYlotCQAAAAAAAAATfngmakIlFuW-DPwlYWq95AAAAAAAAAA6QuKBCI0MGQoEy6EB3hTY_QAAAAAAAABzCfIO15i68EO1AMNsYlotCQAAAAAAAAATfngmakIlFuW-DPwlYWq95AAAAAAAAAA6QuKBCI0MGQoEy6EB3hTY_QAAAAAAAAAOoZdMUu1rfFyEetd-xjBrwgAAAAAAAAAQUEXC4NlghFpy0tbo2JE_ZQAAAAAAAAAEzJht6Rgw2a7A-GEkQuBvDwAAAAAAAAAB", "types": "CAMnBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3ztb9nLgYIU37q8yWxNMkg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Wu5cEvvhuguaGYCmGWrnWRz1QAAAAACXxxScEvvhuguaGYCmGWrnWRz1QAAAAACXzeN", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "W0EbojakWb3GuNBotaIupA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1YKZ3CKaS4aU08RhYA19y5ITQAAAAABtNx1", "types": "HQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "JYE-aPaoLsbONCxPlpfMBw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfvS", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1MrYKWFs57njedbqm1rigw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAABvZKLj_deYRtPDewbXBnoroAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAwy86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAANS_CTRBRzwj9_syNwY5rEXHAAAAAAAAAA0IkSo5taWM8U71y2hDxxHngAAAAAAAAA1lBsFTWSf77aYVb9HHr9tcQAAAAAAAAAFlBsFTWSf77aYVb9HHr9tcQAAAAAAAAAFewU9RfzsPed7JATT94aw-wAAAAAAAAApfZ3COijH60wdDIIVUpSInQAAAAAAAAAIx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAA8DDAjVJl721y2vxKHGSBegAAAAAAltVe8DDAjVJl721y2vxKHGSBegAAAAAAX2CH8DDAjVJl721y2vxKHGSBegAAAAAAXATE8DDAjVJl721y2vxKHGSBegAAAAAAgWPA", "types": "CAMrBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fUJACRQV91_n5erdwrpsKw"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHsJJgtQ4kMk_MBWrPUAFqVnYywAAAAADHsO9gtQ4kMk_MBWrPUAFqVnYywAAAAADIfGLgtQ4kMk_MBWrPUAFqVnYywAAAAADIhGEgtQ4kMk_MBWrPUAFqVnYywAAAAADIfwEgtQ4kMk_MBWrPUAFqVnYywAAAAABw8FPgtQ4kMk_MBWrPUAFqVnYywAAAAABw8NYgtQ4kMk_MBWrPUAFqVnYywAAAAABsZbSgtQ4kMk_MBWrPUAFqVnYywAAAAABsZWRgtQ4kMk_MBWrPUAFqVnYywAAAAABsZYwgtQ4kMk_MBWrPUAFqVnYywAAAAABsYtQgtQ4kMk_MBWrPUAFqVnYywAAAAABsb5kgtQ4kMk_MBWrPUAFqVnYywAAAAABp8UV", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Ruch9eRlQqOnJ3ZVNLKC2g"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbQ5Yxe-SHgukLEpCkawSk1QWAAAAAAAFznNYxe-SHgukLEpCkawSk1QWAAAAAAAFzx5Yxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHafM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrj6", "types": "CwMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5oNxv_7bMfCjqa3eBz_s3g"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD0dw4rFFPORY8_4FvK9QaA3QUQAAAAAAEO0n", "types": "OQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dF7D1EKgjwKTt8_IoU1gZw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAAAtt2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAHIG1OnoGXN6zXJZoQUHRmxAwAAAAAAAAAxYEThj3UEuGl2wDiJSq9vSAAAAAAAAACqZou-EwmpdzrcXx7eij10xwAAAAAAAABPIdkGKdrrMvbrgpaqyJ-rigAAAAAAAAAJUpqzzk59PbxypyRs4QkNMAAAAAAAAABTN1R-9DGIZrDXK9x_wnFgtgAAAAAAAABD7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAAB3ZTYW2hueb8qo9sBuOsIdRgAAAAAAAAAn6HagrPNegEb1JoaDvxlnywAAAAAAAAAp5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAADT1TcD-cYA4xs7rqA_y0alsAAAAAAAAABM3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAgAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Q_Ms3K_obdgs3Mo6mXa3bA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjXzz5k14PsCcDvFyUC1kmlV3QAAAAABGOHuz5k14PsCcDvFyUC1kmlV3QAAAAABGN3rz5k14PsCcDvFyUC1kmlV3QAAAAABGYLE", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3pcee38JQGIYf4rBrJUHKg"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Hp4rFFPORY8_4FvK9QaA3QUQAAAAAAHbZMUJmIMEc6K8gJ39NHYaD0WwAAAAAAEhlH", "types": "HgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "c9q9_yo7Mt7aRPcMMS7TSA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAABeBKv4jotFxZeXs8KllM_KxQAAAAAAAAD__dVFF8yOMJrHrd13Z_YwqQAAAAAAAAHTF34QjqvDLr5Bzyg0nK5rYwAAAAAAAAAh6jgqtyJC0aL0Wgk10Gr7cQAAAAAAAAA362NN0ll4PDIiCun_FlxehgAAAAAAAADkT7Ugi353BwPylAwIPK3gzQAAAAAAAAAzMJ3ugml446ymUqbRHZqRSAAAAAAAAAAVdPSSEqwU6mN7f6LCRm4TwgAAAAAAAAAmQDBP9T4S_X-922MjGAbT1AAAAAAAAAAd8AZrxdf0DrAH3ZomHs5kIwAAAAAAAAAIwl0U5vJFJokP-keLWBjMkQAAAAAAAAAJDUWYePMsNbo7HGAKMdOLTAAAAAAAAAB7", "types": "CQM8BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "uGZlsYS2XN7j8WGQnHza3g"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALO-i40hQb92bY-JOhJrV2owAAAAAAAAAs6l-EHm0OnthNsvyaQcuYhwAAAAAAAACN6lZUkN3dGRNTlylh0Rs1AgAAAAAAAAAWF_PHkNHp1cM7FmVp9OVy9AAAAAAAAAA2IYsF8T0nmW0EDmKEbhfC1AAAAAAAAAB3ZNIMXBN7NKTXUfXb93okMgAAAAAAAACfVdwrqP2He6NLNQ9LuEAacQAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQecGPZMO_Ar5A3oFGzfPKKAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQfGOA0JLmMg26rQH30fPUgwAAAAAAAABRa0wWJ2rcNU0N0nF8s8CPfAAAAAAAAAA6hzcOme2bHOlnmg1x3z_FQQAAAAAAAAAJOFvli6IQdK5-vtR_oE3g3gAAAAAAAAAKQSkoY5477iCGGkJLCg3twgAAAAAAAACLifinGpNZEDb24abZy_zLXQAAAAAAAAIgr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQfGOA0JLmMg26rQH30fPUgwAAAAAAAACvW6zbfG-pUtsdP3JjLENKRQAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQNaY9cPrM2n8oUei5D2qWHQAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQNaY9cPrM2n8oUei5D2qWHQAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGNaY9cPrM2n8oUei5D2qWHQAAAAAAAABLr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQouSO2zeiSur1lZ3DXM0glQAAAAAAAAAjr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQuqdblsLlo9aDgcTKrr02KQAAAAAAAAARERRGf3Kdvc3u72prdGAg4wAAAAAAAAFaRVh-BV8B68GuWcVN8lq5vQAAAAAAAAAVRTchl6Vcm4Bc2NrejFGSagAAAAAAAAAXpZ1DxhgiXyxWPuNbBtMrIAAAAAAAAACLUeBLZIMubAc4tcEy2sOybQAAAAAAAAED9sCTWshQJF-MxcDqttIhrwAAAAAAAAB6pHWwhVF7xhaEDZT2L0KL1QAAAAAAAAAGjfWZKcvJcvZvI74FMiyrAgAAAAAAAAAB0hcFUvwWZfQvp2KtSe1TEQAAAAAAAAAH5kI3iCVPIGpJyER_pIOiDAAAAAAAAABK_t41Zgn8MiPpsE2ExccvfwAAAAAAAAAISlk7EKKi8JmNp7yELCNTwgAAAAAAAAACNglZAtsVMy0PR4D9Bo4v_AAAAAAAAAAIdH_-XVY1o9Dh1CsvXltQLQAAAAAAAAAuw64jvzcoyqey7vlsJR66HAAAAAAAAAATlL02ENMn9TDqCnir50TaAgAAAAAAAAAF3OXUprnwrCHvPb_pGSZRIAAAAAAAAAAIIqULMo65wBpxMrZG82ozDwAAAAAAAAAWXwBU-eRBaCnHy44Hfhv2qwAAAAAAAAB2Uh6LcwID5aJukzbO3rioJwAAAAAAAAAIUO6PAHCkEL7ymSs753dktQAAAAAAAAACrlMDvNahhog_2YwC1vqNigAAAAAAAAAIGEq2R3OT579ZPRIW9oZppAAAAAAAAABcjOKHIn-OfmVASZP9y1NSfAAAAAAAAACHWlkJT2Virxt9w04SopK20wAAAAAAAAAQIS1ArEPDf7OwNwli619BSwAAAAAAAAAkB8GcDjZ97CTFJbinioRl3gAAAAAAAAApitNYDDux1CCzX0YHImZaewAAAAAAAACBhRWuhP2XlIOrGluAvR5cNwAAAAAAAAALlL02ENMn9TDqCnir50TaAgAAAAAAAAAFJEFRx205AMaHlwzWP0W_-gAAAAAAAAAUB-4a2N9xDOSL4yxG_gAffQAAAAAAAAA6lL02ENMn9TDqCnir50TaAgAAAAAAAAAF8weNsJh8wpgjhW51tVfckQAAAAAAAAAUBJDHz_v6MglYWRIxZBsdiQAAAAAAAADqtgTcpaw1PHSeu1PntXA3fQAAAAAAAABXWlkJT2Virxt9w04SopK20wAAAAAAAAAQIS1ArEPDf7OwNwli619BSwAAAAAAAAAkB8GcDjZ97CTFJbinioRl3gAAAAAAAAApitNYDDux1CCzX0YHImZaewAAAAAAAACB7uo6HnEu95TqHvEix8e-NAAAAAAAAAAThcyqiQEWmR9-y-RezAvhPwAAAAAAAAAb6OJ3ReaIjuuKuCCqxofHxwAAAAAAAAAIjTElghZsdZy_HrHGbsWA3AAAAAAAAAACzEHb9nHP5bFEE5As4w896QAAAAAAAAACmcUNtE1F4FFRdkwX2pHxOwAAAAAAAAAWC5SckzYBj7bxYLqCrzqtmwAAAAAAAAADEsiemG9MpfP023-drLo7agAAAAAAAAEtTBMkprEh01zslJl_qiQmuAAAAAAAAABGM35XBWe3gnTsFQlgGAvN-QAAAAAAAAB6pwf2qv_E6qoTShEL7CgcmQAAAAAAAAAA", "types": "CQNqBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "R0MFqIpTEX_JqhMXE6fdrw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAAGkuWcUG2bf_MgJpXpuAZivRAAAAAAAAAAx0nBVkJrBQHU_wusVG6_3KQAAAAAAAAB96PDTyNLwDP2GCrVJoblLzgAAAAAAAABIciQsV4oUc5gYfL4dony27QAAAAAAAAAnOIU72g2wQhgyLETe_w4R1gAAAAAAAAAOY_F3wsW4jiujqo6Je7YffgAAAAAAAAAJWHc6TeyRQEqs6LkNUiVKVQAAAAAAAAAzqeBE7mdKgcIgzAsX_goa7wAAAAAAAAAH", "types": "CQM9BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "3snf7hhTXiyt1fZWWdCXqA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFdkIcEvvhuguaGYCmGWrnWRz1QAAAAACFWIHcEvvhuguaGYCmGWrnWRz1QAAAAACFVZY", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZbRznzuMAVjiy--L1mCe3g"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANfzLzWZQgzth4yv0Aw0PoLgAAAAAAAAAl1pEcO9CYkxI799CldX3uowAAAAAAAAARsCdW6ghslIPajpgsdfjVWAAAAAAAAAAS3HYeSFaP4bm-Z2NSJub6sAAAAAAAAAAY4io8TQpKnhHcoJs_H_nFpQAAAAAAAAAca_OIxG7FMGXAdgtXd0LibgAAAAAAAAAbRuTViGJ9Pf477gXsTgiYyQAAAAAAAAAA8DDAjVJl721y2vxKHGSBegAAAAAA52YR8DDAjVJl721y2vxKHGSBegAAAAAAyfHmvQ7EacG6CR4rzcFaNFEsTQAAAAAAAPfQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvQq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvMr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMJBQMDCQQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nqxm9Q0qtTqSS4AxrYfVng"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVP4GdI6f6aagjBxBAKz-KIgAAAAAAAAAMqd26ee2y8slhneyPRIcQAgAAAAAAAADEwKREEYJF8V2B2guAeJRSCwAAAAAAAACoWsBETJrPecSrGYvg781P3AAAAAAAAAOb-bfXtV49fhR0KNLHrhQhfQAAAAAAAAC9nyQEDtNfXDm_fNpPXsT-3gAAAAAAAAACeLPEw3jnFkvsJ2aQiz21NAAAAAAAAAAXdYhRx-e7CFQF89Cj2l7eOQAAAAAAAAAJvc-j1E8HSTKofoqXgmmEFQAAAAAAAAAbWYLRZt9i7H-NuOl3RpqEjQAAAAAAAAAl", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "h922_qZcgzMfw20uT64-dw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi3MZ3CKaS4aU08RhYA19y5ITQAAAAACDjuSZ3CKaS4aU08RhYA19y5ITQAAAAACDgkGZ3CKaS4aU08RhYA19y5ITQAAAAACDf9dZ3CKaS4aU08RhYA19y5ITQAAAAAB9MVsZ3CKaS4aU08RhYA19y5ITQAAAAAB2nnMZ3CKaS4aU08RhYA19y5ITQAAAAAB2rQT", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yOqIWABrxJsjVQYhq-4kzQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMYZBmumN7B74DCts0HLEQGQAAAAAAAAAVUCnmJL_-MJgM9JSMBPzPxQAAAAAAAAAESI-THagm7WOCUtDdZGu7SwAAAAAAAAABPvCj-Ab34SfIYTR_F-HgGwAAAAAAAACdFTxQJid-O66-FuYdEDBjgwAAAAAAAAAfif-A_N21fy6ux02lu8iQvQAAAAAAAABDn2S0SyZv0DZ6ex1YiCzcfAAAAAAAAABHQ4jw5JHGkPC3MdanjDSu0gAAAAAAAAAcipf9vBk16l7hoPZLPzmugAAAAAAAAAAkjimseSpjBNWbZ4eHcfFIAwAAAAAAAAAlB-Oe_OuJ2Xvt27AtRop-VwAAAAAAAAAMfdVymRP0v5Xa8xgKjz9rGwAAAAAAAAA9DRWeWid83QDDYtOiSqJEvAAAAAAAAAALHdbjDGqcyeXdawK4ayl-8QAAAAAAAACv8FITX_M8xZfe7i7TCZCgqgAAAAAAAABt7jYCNzkb9MmHUrU5CHQXAwAAAAAAAACk7qz18bHgG-Zc_fVo9Dsh7AAAAAAAAABPLV1qJd4M55A4v0lGtbHYuQAAAAAAAABAgvccGM4k-q4cOxwbrd8DiwAAAAAAAAAQtQjdsVMJULt1As7mbOCEqAAAAAAAAAAGMMAujfe9xzktoHyDqw_cGgAAAAAAAAAGKGVSBMVyriI5T93UZw1WLgAAAAAAAAAE_qkVJm0NxTF9ak3kQe9veQAAAAAAAACGqTmpafDJIlgvr5xGzkRbCAAAAAAAAAAZ84ZDrThTonFKfnYpmx4WIQAAAAAAAAAeA-Zkt0Jp-hU0wTKYbf16gQAAAAAAAABBNprc5IMxHetRKiP8LQeHeAAAAAAAAAAZam2PCvpc2R64nNimbUFS0QAAAAAAAAATDfOndB4ftHT4N14zYmevBgAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAHo-eJ7BYIhIN72fM2Cz8k8m9QAAAAAAARhG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAALgLi6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMlBQIDCwQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wMYpNYJGdYQOQzp2QFWVOg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbuE", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Yiiw7BZTBSb5H1VVsRHT6A"}} +{"Stacktrace": {"frame": {"ids": "L68TrOZ9FjSDW38aILC82gAAAAAAAPgX", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "rxNA2GjOg2EUyKRRxaIxug"}} +{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBAu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAYtbf6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgVN6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnvcgIdU-uvJLoO1WrtsV2P8gAAAAAAAFg26tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPTD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjObt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOTp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjONN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIjM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIK46tVKI4mSYDEJ-ABAIpYXcgAAAAAAlHmB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlJy06tVKI4mSYDEJ-ABAIpYXcgAAAAAAlJj26tVKI4mSYDEJ-ABAIpYXcgAAAAAAlOPs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMub6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMqa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMcD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjMqP6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjMg06tVKI4mSYDEJ-ABAIpYXcgAAAAAAjL51hpS1QtdrBQjGg-LCbfqeSAAAAAAAAA91hpS1QtdrBQjGg-LCbfqeSAAAAAAAAD_u", "types": "GAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0PqMYaSLIzRw-x-nU88s7A"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAABcQrw_bSROFZCKPRirqN5crwAAAAAAAAAEmNKQ_cGBX-X-PxTw057WHwAAAAAAAAAoPe3ctc9W4J1u_ZCOerqNzAAAAAAAAACUA80fpNwLg5UyZGOl2HXL1wAAAAAAAACvw_cxYz8MnUesAVA7XOw_bwAAAAAAAAATGWaNS7Aannj1ZssQUxZReQAAAAAAAAGHgDRAAy1IwcF0IR_YOLzWjwAAAAAAAABEgw-R6elvRCziXgbmYn0NGAAAAAAAAAAGStdff30sTwwMW3207S4hcQAAAAAAAAAOrCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAENAHbgjE1mrEUxDWK3HkjL9AAAAAAAAAAXMgCiOnnGW7RnGD1RtS_HwgAAAAAAAAAE4AOC1otNYKhZE8ncURFrlgAAAAAAAAF5HC0gC3BFwdNWsLtKomq2gQAAAAAAAAATi2aFs26ofgy9R_bgqRAgPQAAAAAAAAAchQvt9SGcnRC8tVEB_Tur9QAAAAAAAAAOhCbyFiiUxYQZQBO3egyd8AAAAAAAAAAA", "types": "CQMgBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "OvHEG1poEQfLiVjIHvTACw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAACUcj5Iicnc1YHT-TWyg9rL5QAAAAAAAAAffO_gJBPd8E-RahoVIhDflgAAAAAAAAAB8w2ZGyVQ-aMnL_pA1hWbwgAAAAAAAAAy76oMN5gawXJbUdBHZW56vAAAAAAAAAAEaK7zvL-PqvTlxTrdlldaFAAAAAAAAAADsimybevA8DW5tgv6lrGi5AAAAAAAAAADuDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKcG5W-PDYduXZ1DZFU5bdYwAAAAAAAAAfX8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtnY6Bz6koyx0B67n9HdjFUAAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKO2hSFZZOeE5g1kTv31qAYwAAAAAAAAAoX8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtnY6Bz6koyx0B67n9HdjFUAAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKtVvvb6Z5DEr7tZFzbFRlggAAAAAAAAAGNdurIec2eVknw5UWeyAGhAAAAAAAAAAg_OURcYkX0iBxmyshrTvm6gAAAAAAAAAXK68quRzmwMwkh1BjI5vLeAAAAAAAAAAhY_ur9VOSDEwVLljoZ7w15AAAAAAAAAAEQXvaGnSY0e9Ndzfl5fNy7QAAAAAAAAAVu3PdJ9uaY7J6wq8TpSw5VQAAAAAAAAAbFyvqj99pkKDWLuJmqlMKOgAAAAAAAAAMSpuVyl1yybAmI0lABPU6JwAAAAAAAAExdgWkppYlr-s8Z84eOTb42AAAAAAAAAACY1yo-8cTmG-L0M13S3Gv9QAAAAAAAAANrO2U8bCEOPtVR0fJrGRR8wAAAAAAAAAOk_OXYkZFyzIVwSwT1Fur7gAAAAAAAAAFa8XYoPW9pAQaMdeo2T4gfwAAAAAAAABM30LKpoivW5ehYDbXlKRqvgAAAAAAAAAG8AK2DMaPRPJBJPIbAxg5BQAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAAqd6J0rNuxKNw6YxtKvsF6kS_jQAAAAAACMlv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_NQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaQ66tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZnU6tVKI4mSYDEJ-ABAIpYXcgAAAAAALAzx6tVKI4mSYDEJ-ABAIpYXcgAAAAAALAuj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAK6uM", "types": "CQMmBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hkmnr5munTJucB-JyFCw5A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADUVK3XT4fd_WKeR1cE-hlLelCQAAAAAACnxaWXT4fd_WKeR1cE-hlLelCQAAAAAACney9XT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhjWXT4fd_WKeR1cE-hlLelCQAAAAAACjs1kXT4fd_WKeR1cE-hlLelCQAAAAAAChrznXT4fd_WKeR1cE-hlLelCQAAAAAACgaYEXT4fd_WKeR1cE-hlLelCQAAAAAACgazlXT4fd_WKeR1cE-hlLelCQAAAAAACga5q", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NfR92A36krFu6OFBX_NJGQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFTajQRmOPdPxCSIVqxKN8mgAAAAAAAAABq6xr0eveECf8Lijmxw8LoAAAAAAAAAAxKLdsSpMCKySKDdCQ2KiutQAAAAAAAAAIU1KF65rnT5XtMlndoc_vRwAAAAAAAAE4omklHAPZnqPNJHwVpvh2vQAAAAAAAACrqwPQ_i5WGexQYU8q8eVTyQAAAAAAAABzoSoGUxBn_MfT_4Ncm-yGtQAAAAAAAABaAl_h9gC68463XnWmby4-QgAAAAAAAAAJWQoT5TvZ3eOmkl3OPEBMywAAAAAAAAAuPRgslp-mhiA259jp7eDUDAAAAAAAAAB6P8KXk_YkMAioYhgO5xbnPwAAAAAAAAAGh9RTRJ-fMkhaBb0sHV1CqwAAAAAAAAMECAhXwSkcgu2DqzZtJNny6wAAAAAAAAGd5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAMzcfKpbpAZN9qkm-T9sCmgAAAAAAAAAAgnuqNPzkuzBZWgJDmOY2XwAAAAAAAAAALumQIucIioKjldscxi712SAAAAAAAAAA5f15ZZuvJposXWOcmbKQgxAAAAAAAAAAftL230chqNUuroXAS-gtapgAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBAZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMoavQ7EacG6CR4rzcFaNFEsTQAAAAAAATsz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQd", "types": "CAMiBQIDBgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "4hh2Apz4l_ogPwgTUzlW9g"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHh-EgtQ4kMk_MBWrPUAFqVnYywAAAAACIsVKgtQ4kMk_MBWrPUAFqVnYywAAAAACIsMZgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4WlgtQ4kMk_MBWrPUAFqVnYywAAAAACG2jCgtQ4kMk_MBWrPUAFqVnYywAAAAACG2ppgtQ4kMk_MBWrPUAFqVnYywAAAAACG5Fm", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fwTV7xcQOe72cAjxcodFbw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVuttUA2IAZoyKZAgCzy0iDQAAAAAAAAAIpokhquvW9ooLc3LbDvwZ4AAAAAAAAAARXasdzsgYzXeaIf1qB6YHcQAAAAAAAADmPFj10tn7Q5v6DtY9a--2yAAAAAAAAADTXQF-stwqMiArQgxmCuIBPQAAAAAAAABICdiM_N4hdaPvSJwq3P6azwAAAAAAAAAENtCGtgNOSKjf89hTQ9pKCgAAAAAAAAAM1dtimHb35RfEFCzsXx56LgAAAAAAAAAHCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAEhQ2OXkHYZRXh3_WLXzxSBAAAAAAAAAAEqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYMn0lhQNjNLc2TiLs5CI5twAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFdciEg2zVAoapt7MT0cXoNwAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAADrAotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAGJ1xBvehWaFQefKkuHjb2hUwAAAAAAAAA5wNusbVCe8LxqIAQ1y37evwAAAAAAAAAtcESCe1Tetwzk9WZFJGO4wgAAAAAAAABDNT8wQMcRiQYgsi7kcUkPTAAAAAAAAAAgE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFwdry1MBp0EaTNjezqO9mhAAAAAAAAAAYNAyv5_9WaYsdB6UWKJ9U_wAAAAAAAAAL5NWnM6h02FDc8HMOq87mSwAAAAAAAAB_PKn9pNyuk4x5JmghNk_g-wAAAAAAAAE6ZxqTvfpq73FxW_Wvq4sJcgAAAAAAAABzasuzVBqmptGBGQ7h_SoWWAAAAAAAAAAMbGB7hInbax1m3qcXahwOVwAAAAAAAAAQdfyPn-1RS1VLor4dYUh2WgAAAAAAAABVvDN9klGroza1blCRLcWrMAAAAAAAAAAA", "types": "CANEBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "BrAEOfLFCyPmoS_PnPIn2Q"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFaD5tQt3PTji3IEVewu1DRAAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATu7S91U7Iqd-gCdQi3EcwPAAAAAAAAAAHBqggmkfzJnuxgxfVRTtJOAAAAAAAAAAQVp_XOo7EOjf6hwG8_wtUTQAAAAAAAAADZZo2k2tvXWSiaLmHTg6jtQAAAAAAAADo9s9slFTRs3KIVQdo-wyVugAAAAAAAAIY5_Q-3e4J-GRZRTxLQzNfEwAAAAAAAAAH54KOjROM8trD42aKwWM2jQAAAAAAAAAVY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAABhRJXjPkp22gaQo9vwY-85JAAAAAAAAAB1DLrWTvtAPDh4Uv4u2shragAAAAAAAAAMAAAAAAAAV4sAAAAAAAAAHYXuSio4gqgnZSkKN3zNxr0HYuO2pqe5hQAAAAAAy90wZSkKN3zNxr0HYuO2pqe5hQAAAAAA5mV0ZSkKN3zNxr0HYuO2pqe5hQAAAAAAt0nYZSkKN3zNxr0HYuO2pqe5hQAAAAAAtz00634wiWh6F21tPpXr0Zz3mgAAAAAAGLpR", "types": "CAMyBQUD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dG9xE_FqAmBRVjfHO9kL3g"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAADQ1oyY5_H1XDxnqxtQutVBSwAAAAAAAAAE7LziU26eINk4gGAzQhjzRAAAAAAAAAAh-2jKAtgnT2KJwcbGIBrZTAAAAAAAAAAE7LziU26eINk4gGAzQhjzRAAAAAAAAAAhbdLIO9fg6Bsro1ZepYBZlQAAAAAAAABBH-wSa23kc3U3gWusbQ0H7AAAAAAAAAAv48NTOm9REY9geqrnhLmtIQAAAAAAAAAHLZh55WiQA4pYUO2PyDs0LQAAAAAAAAAHiynY3Vpl2yeKIqRo2Ld9YAAAAAAAAAAnAsYLPOMVTEJOeDxuyLY7KQAAAAAAAAAUX9lpa9TN84k-aLBSFJ8EgQAAAAAAAAAHMkmisheVP0DaTeF1Tgq6BwAAAAAAAAAVoCXlcImc-yf-85hxTZzoPgAAAAAAAABLmvIyISC3NjpTUMXf329NrAAAAAAAAAA4CavekK73u-OfLwSzLyhvhAAAAAAAAAAJKYcgZWdWl27hMIBlgVEqhwAAAAAAAACMMLdMFGDeFJJvJRMDhyL8jwAAAAAAAAAKVthdIAkyIWxV-e9fI9rVBQAAAAAAAACIFezK_dQe_u3GP8ThBnZQ8QAAAAAAAACEnQWGdRxvqVjwlLmQWH1PhwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAINa8NlMClggx8jaziUTJXlmWAAAAAAAATLO6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUey6tVKI4mSYDEJ-ABAIpYXcgAAAAAALUbi6tVKI4mSYDEJ-ABAIpYXcgAAAAAARNl3", "types": "CAM0BQIDBwQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zwRxq7fw01rZnPXYOF40qw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABgzFMz5k14PsCcDvFyUC1kmlV3QAAAAACFH_-z5k14PsCcDvFyUC1kmlV3QAAAAABhYO6z5k14PsCcDvFyUC1kmlV3QAAAAABmRN6z5k14PsCcDvFyUC1kmlV3QAAAAABmL71z5k14PsCcDvFyUC1kmlV3QAAAAACECbwz5k14PsCcDvFyUC1kmlV3QAAAAACD6PSz5k14PsCcDvFyUC1kmlV3QAAAAABFRZ5z5k14PsCcDvFyUC1kmlV3QAAAAABFRAfz5k14PsCcDvFyUC1kmlV3QAAAAABFbDx", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PwfEiAPNQKzrFl1e-iXV0Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vNqXT4fd_WKeR1cE-hlLelCQAAAAAAC-odPXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5hbuAw2zDBR_MfUaW6-wRg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmIr4HFMHnQmh-eWJUABFqDQAAAAAAAAAF382AxucgZGR9pbz3KlXhagAAAAAAAAA24TLVOI15O9hT3k5UjShaLgAAAAAAAABvZKLj_deYRtPDewbXBnoroAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAwy86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAAFYTifPIvND7b7ICq3M7OVoFwAAAAAAAAG8rtJFGuFDWKgkQ_kOhDwLwgAAAAAAAADcmvWNLiibNh2jmnrh-j3LtgAAAAAAAABui2HnQvZ0pKTd886GmsiskgAAAAAAAAADStb7SO-i1ysmwO8Lu0fgRQAAAAAAAADaCIJa2mPNm8b1wwJ_UCRwpAAAAAAAAAAFjWxMhVzBeHM3bqEF5ueSZwAAAAAAAACOd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsK06i4sR69nVCcg3FbwNeuwAAAAAAAAAT90J0K9KRqjzo3OWaVDBuGAAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBAZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMoavQ7EacG6CR4rzcFaNFEsTQAAAAAAATsz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALnuKUbK4uezrplMLlSw0h87XfgAAAAAAB12yUbK4uezrplMLlSw0h87XfgAAAAAAB11zUbK4uezrplMLlSw0h87XfgAAAAAAB1xdUbK4uezrplMLlSw0h87XfgAAAAAAB5I0UbK4uezrplMLlSw0h87XfgAAAAAAB4yxUbK4uezrplMLlSw0h87XfgAAAAAABtAv", "types": "CAMzBQIDDAQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "EYxDwvYiVdh7oMXeyW4Psg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHfZKXT4fd_WKeR1cE-hlLelCQAAAAAACy8_rXT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-hZXT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy_VqXT4fd_WKeR1cE-hlLelCQAAAAAACzAIEXT4fd_WKeR1cE-hlLelCQAAAAAACnefEXT4fd_WKeR1cE-hlLelCQAAAAAACney9XT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfYlXT4fd_WKeR1cE-hlLelCQAAAAAACniOnXT4fd_WKeR1cE-hlLelCQAAAAAACjbL_", "types": "GwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Zy7ehlHJjUeAGoBTZAGRKA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYF2SRNVvpG70uKYyVRryv4AAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH_gteXZinNF7SSsZfg8slZgAAAAAAAABHF44Y-ELdVzbmYJDBLoV7lgAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABUdbowpynB4MR0QYase8FmAAAAAAAAAAt7Qn6qGKODLOhflOBBPmWbwAAAAAAAAHIxYUK_AZApuCfUvl6Cnon_QAAAAAAAAAx-ZUigVp6H-HqH1lR0smw4gAAAAAAAACqKb-tzduguGzSwq-TvJVcAQAAAAAAAABKIdkGKdrrMvbrgpaqyJ-rigAAAAAAAAAJGZFjKcoKCeexf4u7Gxk8xgAAAAAAAABTBgRSJxG-YlX2vVr-GlbrUQAAAAAAAABDll2e4oC_mg1s5sZsaCcVLgAAAAAAAACaRzPPwKNnwrb8tJ77hoPpDQAAAAAAAABk_Yekd6tTRtuWqAD-aKIdBQAAAAAAAAArEcvbPwVD2xiMdhU7CZwtHQAAAAAAAAAMll2e4oC_mg1s5sZsaCcVLgAAAAAAAACaRzPPwKNnwrb8tJ77hoPpDQAAAAAAAABk_Yekd6tTRtuWqAD-aKIdBQAAAAAAAAArEcvbPwVD2xiMdhU7CZwtHQAAAAAAAAAMll2e4oC_mg1s5sZsaCcVLgAAAAAAAACaRzPPwKNnwrb8tJ77hoPpDQAAAAAAAADTG40sSFrWJkNKANlwsg1UgAAAAAAAAABMEcvbPwVD2xiMdhU7CZwtHQAAAAAAAAAgVzxcNLeQrb3VpOQzfT9ZjwAAAAAAAAATS4zDz6o8BfSRZ_w35R0lvAAAAAAAAAAjlm-dL0oBgfvDWr46CGfkEAAAAAAAAAAA", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Ve5EB78hZLtL1HRvFClNPw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o6kXT4fd_WKeR1cE-hlLelCQAAAAAAC-pCkXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0ZR", "types": "FAMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "zL1TxCaQ1nzlRv5_Vq3WZA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABFgZ7z5k14PsCcDvFyUC1kmlV3QAAAAABFtdWz5k14PsCcDvFyUC1kmlV3QAAAAABFte2z5k14PsCcDvFyUC1kmlV3QAAAAABFtI5", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xEYQxp_YiZZkOG1ri3w3Cg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAACLHmuH5pCGXma5ToZjJwiZHAAAAAAAAABnS4DQ5gj04oVPTd_cZvriwQAAAAAAAAAFcoLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJnsN5oeLyhaU3rc_4TQfhXgAAAAAAAAALgvQGUUGWUJbOOm8Vi63fqAAAAAAAAAAGpIlQHYzUvHZx6w5Rtmyd8QAAAAAAAAAGQUT-nNY12PdX-wWYy6XdlgAAAAAAAAADSp9UjTJ6AKwagodjyx73jwAAAAAAAAAFy_Kb_1plOC7673Fl1U32vQAAAAAAAAAFcoLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJ5gDnmh9w-dLR4BjuTxdXiQAAAAAAAAATKmi3IV_5C6YkqCwr-5OCjQAAAAAAAADs5HuV0084wClXz_bInEa-IwAAAAAAAAAM_KMmEq2paFXK4Jyp952ENwAAAAAAAAADFlgPzMfkmxZ6MfLlJ0EVIAAAAAAAAAADF7XyzzqTBfJlAqzTHOBQZQAAAAAAAAAll7DXpY4Elz5IpCgudwPqcwAAAAAAAAAQwO72Xe-Cg9u8b8qnaOMkOgAAAAAAAAAIDRFJdePdVhpMBVu08qX2qgAAAAAAAAAhWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABQxipOTqrwcd56sA9XuGoHcwAAAAAAAAAA", "types": "CAMwBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "m5UMdgbxI1wxlBz3vjrzgg"}} +{"Stacktrace": {"frame": {"ids": "NH411-U9ZJbhx9KntPIOtAAAAAABZv9ONH411-U9ZJbhx9KntPIOtAAAAAABZv9ONH411-U9ZJbhx9KntPIOtAAAAAABaTPd", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "QgKoM_HHJHxpVgNd2h-hRw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAP4nyMCPt5M-rbb158Tnrz3sgAAAAAAAAB3wFolLawtZ8KIPHu9VlFy3wAAAAAAAAA2bCBdTuDS0DbCDGTJHRgQHgAAAAAAAACK68Kd2F2G5cbeqk2uYg-UgAAAAAAAAAAHy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGb2ckm-0wQN1Adu_SQOHiPwAAAAAAAAAfuCrYcJJKClqXMP74KTJEhQAAAAAAAAAfW0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMTbeJ7BYIhIN72fM2Cz8k8m9QAAAAAAASDW", "types": "CAPBBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Phec8t3IOOaLzHxccca_NQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbrkZ3CKaS4aU08RhYA19y5ITQAAAAABtb8V", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Ztff1ZPSmre6kQubnqE56Q"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVP4GdI6f6aagjBxBAKz-KIgAAAAAAAAAMqd26ee2y8slhneyPRIcQAgAAAAAAAADEwKREEYJF8V2B2guAeJRSCwAAAAAAAAB3x8zvO9Lm8TmxXMHsFKQ8TwAAAAAAAAAQfsJVTtbG_H0iDz3DtUpPWQAAAAAAAAAI_bHlhtihggGRe9cno3Fl0wAAAAAAAAABWQRA1-IhgiKjbn3zE2dF5AAAAAAAAAACg4Wrgl56pknsdoxjnBmq3QAAAAAAAAATbyasmlG2krl-ot4l0JR9AgAAAAAAAAEjkqALn-276gj3K_58lk3JpwAAAAAAAAAkr8runDm4rOcHO76XR-D7jAAAAAAAAAAMqCAXb4nsA8MBowrcfqVWbwAAAAAAAACCbem31qqzjUFpI7bh8w8-nQAAAAAAAACjeIKZHUnkOnlIeLcFKA7B_wAAAAAAAADKoJ4uhqaGJXAzxTc8vQCVYwAAAAAAAABdNCAjj9ga_oZwZ7NBAV35jQAAAAAAAABgLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC3OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOEnRoHyZazasm_zTjL5tnOgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMfDpp6LgRqCGeGjs7cnnwItcAAAAAAADsp46tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyO-", "types": "CAMgBQIDBgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RDQJAJ6Er301BF3pU5cp8w"}} +{"Stacktrace": {"frame": {"ids": "CcyyeiNGM40TOoP3RRHPJwAAAAAACv4vCcyyeiNGM40TOoP3RRHPJwAAAAAADO1DCcyyeiNGM40TOoP3RRHPJwAAAAAAEAAy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz01", "types": "AwMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "D4LWUMywng37JkJBitFBpw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbkcEvvhuguaGYCmGWrnWRz1QAAAAAD-LYEcEvvhuguaGYCmGWrnWRz1QAAAAAD-NaZcEvvhuguaGYCmGWrnWRz1QAAAAACNGzycEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEM5TcEvvhuguaGYCmGWrnWRz1QAAAAACEUSg", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0kn4_QzabFvdQcvQLObnJQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzScEvvhuguaGYCmGWrnWRz1QAAAAACFAOVcEvvhuguaGYCmGWrnWRz1QAAAAACFAEycEvvhuguaGYCmGWrnWRz1QAAAAACE7Sk", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "IvyT1Ee_-LfT2uWHruTkYw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjD5cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLl-ZcEvvhuguaGYCmGWrnWRz1QAAAAACHhtbcEvvhuguaGYCmGWrnWRz1QAAAAACFpPqcEvvhuguaGYCmGWrnWRz1QAAAAACEUE2", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xSer4-is-N3oCq4jhytMlA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgKp", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gIXSLAy11Lynu762yJRpHA"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAALzbjhk7iO4zKDe_CtTcO5FQAAAAAAAAABw3TshcZYurjm6c72duqqcwAAAAAAAAAQA9VwK6SroKXsQKAAWW8wJgAAAAAAAAAAcGBPCS3aPXXlmHmrx5RsEQAAAAAAAABv7ko5nSdnNlUP_d2pOnRKIAAAAAAAAAAC3Ry2LaRN3x17PfGmARPd7AAAAAAAAAAwWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgh2i8b6s7ABK28E4XdjB5FQAAAAAAAACRv7NZn75ARbCs3HYY9Fl9agAAAAAAAAAIk2iriyOmr9_9GjSrH7z_jwAAAAAAAAAIiZB69y95UmqqnSAe20xlSAAAAAAAAAACvcmbteT9Zn8Dn3HK9hT_jwAAAAAAAAAaJ6u6Y179J4dS1eDE4nIEEwAAAAAAAABAfbAbOZDzuuTLoVcDDlO2awAAAAAAAAAG3h3xcA1CjbBUsMTV4AM4_QAAAAAAAAAH8RS1Nly7R5USaUVxZKBsKQAAAAAAAAABBQSx00nZsCkojgxuZjNNTAAAAAAAAAAFzB4IvgA7bsMPLgsuCANUUAAAAAAAAAALMXYcd3n7LsWw7I27yRI03QAAAAAAAARr_pb_V8KDz_2bUtibVIhXagAAAAAAAAD0P85-ZHhT2OrY2C13tzUCcgAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkqwnsTGLCNH21piOrMPoln5uBQAAAAAA4oipsTGLCNH21piOrMPoln5uBQAAAAAA4oaYsTGLCNH21piOrMPoln5uBQAAAAAA4npI", "types": "CAMkBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "hGLZ6nF5AS8CBzWTt3gCzA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZxyf5INnJibBb8rT_yMcsAAAAAAAAAAEe6HlflPyKAlNlF7JPJCNJQAAAAAAAAFLEe5ZDKMHiVCtP6qAhF9CEQAAAAAAAAGtVyubPqZIpIsaGdq5yyQHTAAAAAAAAAAHH3I9lsKeM021aDJgbYYYAwAAAAAAAAA3OvuQT57UFe3tjOaheCA5KgAAAAAAAAAA", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "h1VvU2JWIvwyNNEgXP-CmQ"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA70RgYbC2fQjxygsXZf0s0DwAAAAAAAABPiAgP1DBH7Z9OPzvK7kQabQAAAAAAAAA3brHwMWIWqKKcmy2jXj1-xAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAABs6JL9Zb5wYEadxJXUwBTXrgAAAAAAAAAHDHsnAoMYJiyf1W11jJ-_lgAAAAAAAAAk9jm7YJeLA-iI3VEniLy60gAAAAAAAAAQEH6veLqK7EPfdYG7XzXWOQAAAAAAAAAaDVtYIioEzQbMnonclHMdUAAAAAAAAAAu", "types": "CAMpBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "e93aUwUf19uMoO0gNkoH3Q"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN5dA", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iyhvBiSYTA0NUPt9XPgw9A"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFrjJ3H-iAyzP-hbRf7_SoTQAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFD5TWJecLBrI9DD1qUI4PMAAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFXVNBFCfyJTMghKxL6eldLgAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg7P-qllMcBhL7-YFBAvxxRQAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgdoGPGU2LcZtf1qDix-DnAAAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFUTnfjgku7DWKbdK4CbCuzgAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF5N18Pkzs5USmp-zlkpzeGAAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF0hXtRbxbZvn3T-KNgGEJmwAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA__SVMTPuh4odvZuz9v2YN4gAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFOrBM09fWGT_rRuFZPkf4tgAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATyUN80T3QYpyXtS9C_n-7pgAAAAAAAAAK9VUHn-omdMzBxHZlC8YHBgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAABzuM7pJu9A0MpIimFDHB6NwAAAAAAAADWIua6UXBxSmqy5taRqVRXwgAAAAAAAAALSwuwow_beuwloT-61i7PRwAAAAAAAABAEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJzp8e67bjPIRYLDS8ag-LKwAAAAAAAAAMIs1c660ptsvyJc90Tw_uzQAAAAAAAAAMdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbRqzRzcNoO7HUyQTfTQb-wAAAAAAAAAMGRYpedysLzHMkupJW0yOkAAAAAAAAAAOYlrztsyL4Qv-UN1-DuG9YAAAAAAAAAFXr1WV5a8pUgBtniWjRbB5kAAAAAAAAABnjIa8UfqP6YwHKZ6-Hogu9wAAAAAAAAA2c_8mFLAhtu1IcxkQBzf51gAAAAAAAAAHSOjld5RFtlncrHMwxtJ3QgAAAAAAAAAJrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABsDa5rH62BuCxUb2HSFS-vwAAAAAAAAAMw7m1d_J7-CAWIcXCKGUGgQAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADAYnk6E9ReVsUsstHFtTIiXQAAAAAAAAAyfT0k69QoWDcgSGG9DEbGKQAAAAAAAABU3yZRDT05_hGvUj8jRvChFAAAAAAAAAIWQdsa8CodEr3BBR20SawlOgAAAAAAAAII2kNP-fbSjTC_hm1jEY6s0QAAAAAAAAACVAcs5JM676bIIEJRUL9kYQAAAAAAAAAD-mAMSaO8HC1n82ENmkUabwAAAAAAAAEcepgIddEEaGC68JQ508kjFQAAAAAAAAARvdv7wcErbmkon-Nhq9YXuwAAAAAAAABBmbtJBLFirmHoLdxa0M274QAAAAAAAAAGmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAANIfYj4waw9fP9op8fikoTJgAAAAAAAAAGmHLbruajf1ewhD5eRLIwPQAAAAAAAAAEIfYj4waw9fP9op8fikoTJgAAAAAAAAAGu80wzeYkSnSlt8hhdfSXpgAAAAAAAAAsaMdAw5F6bqw1nsXGt00a9AAAAAAAAAAT5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3Ge0L0SwsSbyUWsXqVMbKswAAAAAAAAAGDXStuM9FGoRVIzn6iyb_SQAAAAAAAABmLO0kqCJ5sLnPx_SwGJYFEQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAEXqmhrzhROIxdFfT_O0ufQNgAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyKQ", "types": "CAPHBQED"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PWaQ1zkPKAJNWrCdnxjMkg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVSqtwcr6f3RwqQFAs9J6l6QAAAAAAAAAMwncP1Ilmzp79Ggff04BZsAAAAAAAAAADU_oZxhTm05Eok6Ih3UqoFwAAAAAAAAAC3w5xyA8SskdHEEGy4TbDIwAAAAAAAAAg3w5xyA8SskdHEEGy4TbDIwAAAAAAAAAgoBaCABFgEsivPLSijHi7MwAAAAAAAAAF88LSnaqXjMdQmseUT8Y22gAAAAAAAAAF2gTjCRy7Rx9JPHXqIf8dMgAAAAAAAAAJAAAAAAAAV4sAAAAAAAAAHWb_4j8Xam4zsTGLCNH21piOrMPoln5uBQAAAAAA0cnPsTGLCNH21piOrMPoln5uBQAAAAAA6N2rsTGLCNH21piOrMPoln5uBQAAAAAAwsTMsTGLCNH21piOrMPoln5uBQAAAAAAwrpvsTGLCNH21piOrMPoln5uBQAAAAAAxg-0eJ7BYIhIN72fM2Cz8k8m9QAAAAAAAMGFeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARb56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQd", "types": "CAMOBQcDBgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "za9VE5NoIrJEDfmfrULO2A"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQ3NXJCw7PINTEV_suvi1hjgAAAAAAAAAnr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAABR3DsLLpnzoGeqib2_MeXKdgAAAAAAAAAY0D5QIcqYfSjF8Y2Aggw1CgAAAAAAAAANIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQymtcT7XngDCOtcgo8NmgJgAAAAAAAABaEuiuEGuoH1DvPXwEkw2odgAAAAAAAAIDVFvoTC_1MXfHqnOeoSu9rAAAAAAAAABnfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABDoOWiMf3FXpVTm1lISLlNAAAAAAAAAAIbrBTwpxsMrD0yGTfkZil9AAAAAAAAAAUbrBTwpxsMrD0yGTfkZil9AAAAAAAAAAUpSE2xvOwhx9_R0gr7EwEHgAAAAAAAAAF5BDw-_iNJdvQnGiR4GTycQAAAAAAAAAJuy69Ip8uSWWD7uF8sFNmvgAAAAAAAAADdZfda0UcYRM2ke2rRcR6rQAAAAAAAAAbJVv_d-Wq_iSNJYmh3K1k7wAAAAAAAAAzmSBnbtksrVvKstlIID71bwAAAAAAAAAUHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAF4JxgAcphLAEsoWC3fPoUUQAAAAAAAAAMneQ9aDSiXyM-ZtdfoiCRFAAAAAAAAAAGXFsyX0Vq94TuMs7Bc44FAwAAAAAAAAAFhT_GFd-d817AZqi9jIee6QAAAAAAAAAUx8ERETcapIt78IXSEO8DRwAAAAAAAAACaLOl6FCWtZ16Qk1Y0IIBGgAAAAAAAAAG_CTrWCBcF1yntIOzlzRqGQAAAAAAAAAP22bcZc1mxVdkBovRtLXmeAAAAAAAAAAGJg7Tuh0IHpuumyzwN_F2xAAAAAAAAAALM2oQMdzf0FGz61Jik2pntAAAAAAAAAAfxLipvo50E1PefOOerYLZEgAAAAAAAAFe1oBnNdsJQEj_XlDQgtQSnwAAAAAAAAATJYgcp9Kzkx4e4hFu_rVhNQAAAAAAAACBS3oYjBa3aRK5is2l8pi-3QAAAAAAAAB7S3oYjBa3aRK5is2l8pi-3QAAAAAAAAB7S3oYjBa3aRK5is2l8pi-3QAAAAAAAAB7S3oYjBa3aRK5is2l8pi-3QAAAAAAAABAGPPIIhc9JBDF0bex-RCt3wAAAAAAAAADql-uKAi1beGz8RyiqP5WDgAAAAAAAADJ_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAACdJYgdZ6MFANs6aW-kJSCJAAAAAAAAAAYW19Tjw-jwIbyufOKZLiEmQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAA0aeAC4XpbxqxubqgoasMaQAAAAAAAT0gbx9jqjuemtiUm8j-_s73zQAAAAAAcXb6bx9jqjuemtiUm8j-_s73zQAAAAAAah2sbx9jqjuemtiUm8j-_s73zQAAAAAAahnKbx9jqjuemtiUm8j-_s73zQAAAAAAWUBt", "types": "CQNEBQUD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "K4kwu4nbTEdNCioz7l8H6Q"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAi46VYxe-SHgukLEpCkawSk1QWAAAAAAAi5BcYxe-SHgukLEpCkawSk1QWAAAAAAAi2DIYxe-SHgukLEpCkawSk1QWAAAAAAAiygNYxe-SHgukLEpCkawSk1QWAAAAAAAapsiYxe-SHgukLEpCkawSk1QWAAAAAAAi4LQYxe-SHgukLEpCkawSk1QWAAAAAAAapzWYxe-SHgukLEpCkawSk1QWAAAAAAAbJC-Yxe-SHgukLEpCkawSk1QWAAAAAAAbH5SYxe-SHgukLEpCkawSk1QWAAAAAAAbJOEYxe-SHgukLEpCkawSk1QWAAAAAAAbKBZYxe-SHgukLEpCkawSk1QWAAAAAAAa42tYxe-SHgukLEpCkawSk1QWAAAAAAAa4h5Yxe-SHgukLEpCkawSk1QWAAAAAAAa4rbYxe-SHgukLEpCkawSk1QWAAAAAAAbg7bYxe-SHgukLEpCkawSk1QWAAAAAAAE_fXYxe-SHgukLEpCkawSk1QWAAAAAAAFAFPYxe-SHgukLEpCkawSk1QWAAAAAAAEzsM", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nU_YVoKQV63uYp8cpQfLHg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA76Af8DDAjVJl721y2vxKHGSBegAAAAAAeOSm8DDAjVJl721y2vxKHGSBegAAAAAAy5N78DDAjVJl721y2vxKHGSBegAAAAAAxZln8DDAjVJl721y2vxKHGSBegAAAAAAX9zG8DDAjVJl721y2vxKHGSBegAAAAAAX9tq", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "goLacCwigTPMZCeICHXPhg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABFvIYxe-SHgukLEpCkawSk1QWAAAAAAAANUzYxe-SHgukLEpCkawSk1QWAAAAAAAANPkYxe-SHgukLEpCkawSk1QWAAAAAAAA0Oc", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "9fMnyLUAwoiJ-nSwRiURzg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABiUDU1_CPvfFPVWUEWglidAAAAAAAAAAAoWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1eNbj51SwVufxZ4R3ztSduAAAAAAAAAAMRLw4AzQ1twQD4Yf1dhVtogAAAAAAAAAICEhlVwLkGcF6wPQ9FYzYUQAAAAAAAAAFEqtQxEspQTRRSSWWTkm-NgAAAAAAAAAJnPcpIVOjAbk4oUD0VpGGhQAAAAAAAAAjPQ7bqNWiBKX3an-wfD_BAAAAAAAAAAAFcoLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJ5gDnmh9w-dLR4BjuTxdXiQAAAAAAAAATKmi3IV_5C6YkqCwr-5OCjQAAAAAAAAAtv98Nje6Ys-SL3vVkHXAt8wAAAAAAAAANX11Ep3t2e5MnXIBtAoD8OQAAAAAAAABAmxr0kxn6yVavxgRwPiOz3QAAAAAAAAAG3ZGnbBP662Xz656-BL63fAAAAAAAAAACy_Kb_1plOC7673Fl1U32vQAAAAAAAAAFcoLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJ5gDnmh9w-dLR4BjuTxdXiQAAAAAAAAATKmi3IV_5C6YkqCwr-5OCjQAAAAAAAAAYEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAF45C-Q8d2gQJCMIvUacUWRQAAAAAAAACWgLY08aWtgqicV-bC4OtakQAAAAAAAABe", "types": "CAMxBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "siw-NMFRxrOXAjdaV3eOWg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABf_kX6YWQHrdad6zTZD9lXWQAAAAAAAAAg7eR8iwq2rV97lappyryDxwAAAAAAAAABF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvyEHCWGHOITM97v9CRD55HQAAAAAAAAAdw2tPevxkIsQ5_AYdA12M_AAAAAAAAABcQrw_bSROFZCKPRirqN5crwAAAAAAAAAEmNKQ_cGBX-X-PxTw057WHwAAAAAAAAAoPe3ctc9W4J1u_ZCOerqNzAAAAAAAAACUA80fpNwLg5UyZGOl2HXL1wAAAAAAAAH26rsVEZ9sKsa4Vh8IikWAbwAAAAAAAAAJzw0wKeXSScV9zb0GbnSg3gAAAAAAAAE6xiNRq7Ruj11jfgYHuwwWowAAAAAAAAHiw_cxYz8MnUesAVA7XOw_bwAAAAAAAAATGWaNS7Aannj1ZssQUxZReQAAAAAAAAGHgDRAAy1IwcF0IR_YOLzWjwAAAAAAAABEgw-R6elvRCziXgbmYn0NGAAAAAAAAAAGStdff30sTwwMW3207S4hcQAAAAAAAAAOrCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAEN9Iwn42_Lb_yu3k0SaXYkIwAAAAAAAAAErCVGV1UD-54ghl-RDtUxawAAAAAAAAC-m4AoWu9JzAMUZrCsBO9JagAAAAAAAAAEP9BGxoNfJ5xFs47cHe23_gAAAAAAAABK8d37I3z4luvj6nh9MTu4AAAAAAAAAAATPQg0p5VJN7QeUvOh1Rp-ngAAAAAAAAAOvhMTgwXcJBbn9i99hn5MzAAAAAAAAAATq3v5zaXWWWfDTkVsFzBLnwAAAAAAAAAMbp2VGPiYdXtH-r2DFiQP0QAAAAAAAAAA", "types": "CQMnBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "fNOV0V-zSZCXeYqmr986ow"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSHi", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YR4pAYtED85_hbNCe9TyJQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVP4GdI6f6aagjBxBAKz-KIgAAAAAAAAAMqd26ee2y8slhneyPRIcQAgAAAAAAAADEwKREEYJF8V2B2guAeJRSCwAAAAAAAACoWsBETJrPecSrGYvg781P3AAAAAAAAATRVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFh5U_1XvNyeon9l2W-4YQpQAAAAAAAAAsABic3l15LWzfxEDtDgq1DQAAAAAAAACmR-xgH7hZp1xr8GmZjCBF2wAAAAAAAAAF45l-3EzV2pQer0tpzvWJuAAAAAAAAAAYsIHvJnxChEoRsKipii7HlAAAAAAAAAAFe5CI3XQegnxQMO6V9n4noAAAAAAAAAB0ILb5QzqdmE5sdkoOBOs6awAAAAAAAAAEt6G_bJIj-tKHEKwW1lRxeQAAAAAAAAA4YHlfwms-HGWuY-ESvaAwpQAAAAAAAAAfHv4qsTbjF5vdy7Ua2f84lAAAAAAAAAAimEXF25ng8ikrDug37Cew1wAAAAAAAAAMIQlAGYw-CJC9_-zjOojrDwAAAAAAAAAYReqGmG84wgWysPpit0xgpwAAAAAAAAAJFTxQJid-O66-FuYdEDBjgwAAAAAAAAAfif-A_N21fy6ux02lu8iQvQAAAAAAAABDn2S0SyZv0DZ6ex1YiCzcfAAAAAAAAABHQ4jw5JHGkPC3MdanjDSu0gAAAAAAAAAcipf9vBk16l7hoPZLPzmugAAAAAAAAAAkjimseSpjBNWbZ4eHcfFIAwAAAAAAAAAlB-Oe_OuJ2Xvt27AtRop-VwAAAAAAAAAMfdVymRP0v5Xa8xgKjz9rGwAAAAAAAAA9DRWeWid83QDDYtOiSqJEvAAAAAAAAAALHdbjDGqcyeXdawK4ayl-8QAAAAAAAACvPLVE8euS4NkLxqn7lNTdsQAAAAAAAAAK-AwDkjQ8a2Nxouc2tmEa4AAAAAAAAAAHh-wCzOxgNVXW0rGeq9VRGAAAAAAAAABu0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFuz4QUsA93SK0g2TjTqCP9gAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7zLRHJmK7SuaCDIOsydGjpQAAAAAAAAAFms-x3fJ8QBk7y_Ax6kns5QAAAAAAAAAEOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATwd5OENbdMI1yNv67AQKeGwAAAAAAAAAHuKtnhT2o_J-LMMCHDuqHcgAAAAAAAAAWtiJNC5TRsJ2Po6yB9hj7ugAAAAAAAABGyanW-NWn1yU-ZmISz8_K-wAAAAAAAAAms2LTirMvOXiDsBun6I-UyQAAAAAAAACfb_ElB1I-v_CyZZ9WkymqkQAAAAAAAAB0isA5sAubGPm1mkHKsussQgAAAAAAAAAQSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNngVEDc25AG-mW2KUmcWd5wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACH9AklKJOULiu4T4frXL8vwAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFqzxXvZKl9cR-1XCNC1BjGQAAAAAAAAAg3ir-1yKStl3nukZF4xyXAQAAAAAAAABAC-NMw9vE7-rFK10EWQYO_wAAAAAAAAAho8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7fc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJPeJFTdbz8JGDuMv22vt3yAAAAAAAAAAkfiNry6aywxk33PR7ZSinSAAAAAAAAAAZyanW-NWn1yU-ZmISz8_K-wAAAAAAAAAmbZRwWM7SmFPsrzq-cg210QAAAAAAAAASyanW-NWn1yU-ZmISz8_K-wAAAAAAAABD2Ims6MoX1Xgrymv6lvzgDAAAAAAAAAAH04jbaimoCFtwGn506T5lyQAAAAAAAAA_RJS3mfuj1SlbMar-vOH9CAAAAAAAAACi9rD5odZJVMPFsyKAQ0JZdwAAAAAAAAABOmzVUgwY22EPoqShuZpT1wAAAAAAAAAByCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIsKSbqfkKPLUDx6XDG0OMRAAAAAAAAAAMwShKKQbdgy2OaZjDOPTMUwAAAAAAAAAO5M-fyJXzZzW8DvCgOZZ3FAAAAAAAAAAG9tBq-irshkmth8o7ZIdyJQAAAAAAAAAhz85XbOUhBsKh8nLXBMRv6gAAAAAAAAAFDfjmuQiW-eZjkaL1IV_ESQAAAAAAAAAHju_uK8PGOFOVgw8-7MkseQAAAAAAAAAiJH99K21FKguMSo-z9QlQVAAAAAAAAAADDp-8xDj8Y_niPKqY_GH18wAAAAAAAAAnJAe5rrE74nLSd6CXDxWPkwAAAAAAAAALFhQpJm5r-cnkNVrkf6woGgAAAAAAAAAJPvP5PvpOsOPL0EJUIdQXTQAAAAAAAABdKJRCrp8LKsI1BLEFrQHPiQAAAAAAAAEtjYKah-GaJpbI-jAwYcFi1QAAAAAAAAAIbu6t-WTb-nsfb-QwFBEV_QAAAAAAAAA9AAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CANuBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mbBHks5z29T0bUsu5EMQag"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JctcEvvhuguaGYCmGWrnWRz1QAAAAACEOCTcEvvhuguaGYCmGWrnWRz1QAAAAACEOMYcEvvhuguaGYCmGWrnWRz1QAAAAACENOEcEvvhuguaGYCmGWrnWRz1QAAAAACEM4XcEvvhuguaGYCmGWrnWRz1QAAAAACFxZS", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "-GVmmBBa9yr-m-ILwf5zlg"}} +{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACindAJ6GSZQSmfOBquczb-SF8bAAAAAADBJDZJ6GSZQSmfOBquczb-SF8bAAAAAADBJWdJ6GSZQSmfOBquczb-SF8bAAAAAAC-R4IJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-QNEJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-OvtJ6GSZQSmfOBquczb-SF8bAAAAAADBLPkJ6GSZQSmfOBquczb-SF8bAAAAAADBLVcJ6GSZQSmfOBquczb-SF8bAAAAAADBLa8J6GSZQSmfOBquczb-SF8bAAAAAADBHrrJ6GSZQSmfOBquczb-SF8bAAAAAADBH3kJ6GSZQSmfOBquczb-SF8bAAAAAADBFTSJ6GSZQSmfOBquczb-SF8bAAAAAADBFhXJ6GSZQSmfOBquczb-SF8bAAAAAADA8ZpJ6GSZQSmfOBquczb-SF8bAAAAAACqw4kJ6GSZQSmfOBquczb-SF8bAAAAAACjtVkJ6GSZQSmfOBquczb-SF8bAAAAAACjuLqJ6GSZQSmfOBquczb-SF8bAAAAAACj2KTJ6GSZQSmfOBquczb-SF8bAAAAAACj2h6J6GSZQSmfOBquczb-SF8bAAAAAACjApuJ6GSZQSmfOBquczb-SF8bAAAAAACjBep6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcCd6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcBE6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbj46tVKI4mSYDEJ-ABAIpYXcgAAAAAALhYF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALyki6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD8cD", "types": "FwMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RT3Cjvzoaa7KEC6y0Kzf8g"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXEEgtQ4kMk_MBWrPUAFqVnYywAAAAABqaCzgtQ4kMk_MBWrPUAFqVnYywAAAAABqahPgtQ4kMk_MBWrPUAFqVnYywAAAAABqPgt", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KkGYRkVn12mQsi_SGM0Jrg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi09Z3CKaS4aU08RhYA19y5ITQAAAAACDf4EZ3CKaS4aU08RhYA19y5ITQAAAAACDf9dZ3CKaS4aU08RhYA19y5ITQAAAAAB9MVsZ3CKaS4aU08RhYA19y5ITQAAAAAB2nnMZ3CKaS4aU08RhYA19y5ITQAAAAAB2ren", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kbEUN-QOQOIjM5mfj2ILfg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDAIcEvvhuguaGYCmGWrnWRz1QAAAAACuEFvcEvvhuguaGYCmGWrnWRz1QAAAAACuGfdcEvvhuguaGYCmGWrnWRz1QAAAAACuFZccEvvhuguaGYCmGWrnWRz1QAAAAACO_OecEvvhuguaGYCmGWrnWRz1QAAAAACOiXVcEvvhuguaGYCmGWrnWRz1QAAAAACNjqHcEvvhuguaGYCmGWrnWRz1QAAAAACLMXkcEvvhuguaGYCmGWrnWRz1QAAAAACIHr6cEvvhuguaGYCmGWrnWRz1QAAAAACF-UEcEvvhuguaGYCmGWrnWRz1QAAAAACGugycEvvhuguaGYCmGWrnWRz1QAAAAACGmwdcEvvhuguaGYCmGWrnWRz1QAAAAACGpoocEvvhuguaGYCmGWrnWRz1QAAAAACGsDNcEvvhuguaGYCmGWrnWRz1QAAAAACGKP7cEvvhuguaGYCmGWrnWRz1QAAAAACGMs7", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "BnraydbvEwL6mkTBVZOVLQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlqJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCIE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA9N", "types": "FAMLBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "A5ssvnQuHcYq_iG9AJXucQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAAEJm5p8puApNHgdtwb3aFhxPAAAAAAAAAApxDECjxfRDF0SAcicHv7yIgAAAAAAAAABSsODsFdp0k4d_SSQAFmIUQAAAAAAAAApzzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIcPy2QFuGdjzuVBNv2-JtzQAAAAAAAAA5FQVEqfdF3Gc5vOLVf8c4EAAAAAAAAAEpcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIiaYGOKrCYzeQFPvSFK3LGwAAAAAAAAAlcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAI3FmF0iegYInyRffZHSr8AwAAAAAAAAAv1Az5XiB-HqkM2KIxBs7pHgAAAAAAAAAzXmgLknRmXWrjNm14n69KUAAAAAAAAAAGcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAInQRJ3xr79n3cY6qS99IffwAAAAAAAAAE7EnnOhShMGZ9Te5BWwjtoAAAAAAAAAATopFI2iPPQrSoKgHSzuYsiwAAAAAAAAAIytmnDvqR2kv8bcodWBOqIQAAAAAAAABnKKci4M_8u3lv7Ydwxf31oQAAAAAAAABhsUo4V5ggmQmDpXEq3uSXMQAAAAAAAAACABipyEawAgbPQx-X36vFuQAAAAAAAAAnzwiX7AgVqL-aPC-SuEi6CAAAAAAAAAAHuC86pFXXnBLCj6eRRljPDwAAAAAAAAAQNc9gj1rv2NerZVTmjxTx9AAAAAAAAACGqN4Vqjijt0HHN8TkXT1dVwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAHCKeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARhG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZd", "types": "CAMlBQIDBQQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5NOliwY1eM4XUb_yAeT_Mg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzScEvvhuguaGYCmGWrnWRz1QAAAAACE_-qcEvvhuguaGYCmGWrnWRz1QAAAAACE_n2cEvvhuguaGYCmGWrnWRz1QAAAAACE-P2cEvvhuguaGYCmGWrnWRz1QAAAAACFGYYcEvvhuguaGYCmGWrnWRz1QAAAAACFGUTcEvvhuguaGYCmGWrnWRz1QAAAAACFGUTcEvvhuguaGYCmGWrnWRz1QAAAAACFyJ86tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvyz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvo_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0qd6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvMr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMHBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "f0SPQX5AVVd4GEQzOJVMKA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBbBcEvvhuguaGYCmGWrnWRz1QAAAAACOHR1cEvvhuguaGYCmGWrnWRz1QAAAAACFObNcEvvhuguaGYCmGWrnWRz1QAAAAACEM5TcEvvhuguaGYCmGWrnWRz1QAAAAACEMRMcEvvhuguaGYCmGWrnWRz1QAAAAACEXUEcEvvhuguaGYCmGWrnWRz1QAAAAACEXtkcEvvhuguaGYCmGWrnWRz1QAAAAACEX3bcEvvhuguaGYCmGWrnWRz1QAAAAACEm00cEvvhuguaGYCmGWrnWRz1QAAAAACFxcc", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "HilsbWncrrv0zxu6yrWe1Q"}} +{"Stacktrace": {"frame": {"ids": "NH411-U9ZJbhx9KntPIOtAAAAAABZlfxNH411-U9ZJbhx9KntPIOtAAAAAABaTLK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAACfOH6tVKI4mSYDEJ-ABAIpYXcgAAAAAACfNr6tVKI4mSYDEJ-ABAIpYXcgAAAAAACc6R", "types": "AgMFBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KgemfHU-_DHAqd1xMdV0VQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_Y-", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TQ1AKxQV7MskLqujIUdT5w"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAAGkuWcUG2bf_MgJpXpuAZivRAAAAAAAAAAx0nBVkJrBQHU_wusVG6_3KQAAAAAAAAB96PDTyNLwDP2GCrVJoblLzgAAAAAAAABIciQsV4oUc5gYfL4dony27QAAAAAAAAAnOIU72g2wQhgyLETe_w4R1gAAAAAAAAAbsm3enN7dM6tCy3LCfPjrvgAAAAAAAAAG-oQ9VuCOQPeW_T8CGKqMgAAAAAAAAAAGNJGrW12l4VtfBBiRfaaqLQAAAAAAAAAhWHc6TeyRQEqs6LkNUiVKVQAAAAAAAAAzE7Si9KeNnLhexcT10oHiFQAAAAAAAAAX", "types": "CQM_BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "aRsHfQoswd8eYLTSZIr-jg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIoVZ3CKaS4aU08RhYA19y5ITQAAAAACtIeEZ3CKaS4aU08RhYA19y5ITQAAAAACtOo1Z3CKaS4aU08RhYA19y5ITQAAAAACtNW2Z3CKaS4aU08RhYA19y5ITQAAAAAB0mf0Z3CKaS4aU08RhYA19y5ITQAAAAAB0j6eZ3CKaS4aU08RhYA19y5ITQAAAAAB0jrx", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FNd-F2Xh-SPdJymKRrAx4A"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABFqkYxe-SHgukLEpCkawSk1QWAAAAAAABFqkYxe-SHgukLEpCkawSk1QWAAAAAAABqcc6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvyz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvo_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0qy6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "BgMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "N6dB94SEYMjCukJ9TS8bDQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF88yz5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF78Kz5k14PsCcDvFyUC1kmlV3QAAAAABFxdxz5k14PsCcDvFyUC1kmlV3QAAAAABGnbQ", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8t0Xme65S58rNXSbYoq4oQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjD5cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLl8XcEvvhuguaGYCmGWrnWRz1QAAAAACHlBbcEvvhuguaGYCmGWrnWRz1QAAAAACHm1vcEvvhuguaGYCmGWrnWRz1QAAAAACHlr6cEvvhuguaGYCmGWrnWRz1QAAAAACHkrGcEvvhuguaGYCmGWrnWRz1QAAAAACFo-ZcEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEWYF", "types": "GgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "bkq8_WCWOBR57Er7TUpEZg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVP4GdI6f6aagjBxBAKz-KIgAAAAAAAAAMqd26ee2y8slhneyPRIcQAgAAAAAAAADEwKREEYJF8V2B2guAeJRSCwAAAAAAAACoWsBETJrPecSrGYvg781P3AAAAAAAAAO3655cFkYo375T8NGzpy-aFwAAAAAAAAAXhve4jX92AzYM2N-JeQNG2QAAAAAAAAA1uoQ2M4bRS4Qydql36um4PQAAAAAAAAAu8Zl1Hn34Qq3KbfhSotUixQAAAAAAAAAcyg6hUybbKOuy2Th8HYOfDgAAAAAAAAAQwAR4gk273_ooOZdD1tA5fgAAAAAAAAAgssBRfns2Nmyl0bqa54cg3AAAAAAAAAAEfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdXgVcJKYEqhGaSbBYfKBXOwAAAAAAAAAQXfH1sbSxEuiQC9e5gcEKzQAAAAAAAAAW1w2R0Z8nd4XHXpj3W-TC0gAAAAAAAAC8Iiubgrvbh7liOqCPxXQ14wAAAAAAAAAJF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdctx_9RVQASujUdCT9XDhwAAAAAAAAAAESpcIUhL1uCRFqgLNFrC-ZwAAAAAAAAAB06nqjE-VI9IYqWvJ2OibVQAAAAAAAAAI8Lr1AwdmXjQ6E8sJ1LQOsQAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAZifuzCpl1zo6zLw_paxkEdQAAAAAAAABs-I0qeKDe1hMr58wzZHuN2wAAAAAAAADfbLRnm0K2LnF8O3sUIvVtEQAAAAAAAAAFYUqlosets6-rXKgChfDXoQAAAAAAAAAlz34wlKv1KXdMEfbsDogpYAAAAAAAAAAQCuV4zhXsbstpo0uwp_uAFgAAAAAAAAABck_MxLBdFaeX0Pe9TGo2LgAAAAAAAAAWRvgpC2THNLDZ9bIizRZhbwAAAAAAAAAQ-BSYq_-fWhfdOLbXMbRsJwAAAAAAAADL4XXTSxpcblY4XfsTMB8ZgQAAAAAAAAEbAhQOKKpsmBvhrEO3UCMXXwAAAAAAAAAWcWSN3IQ3jNhzSL9LJBVnOgAAAAAAAABegEM872jKqCuxRPvZH3-WoQAAAAAAAADYf8AX8nZ-lp_iU67C5ubGNwAAAAAAAABAkiQ7KxPYNd0HZxuM62vmnwAAAAAAAAAgjVVHMYu0P2OEHJFmfTZ5eQAAAAAAAAAEgzF4xa6TmHHVGj6D9s_y9QAAAAAAAADoi32deQLexkVpk6b1igaeZgAAAAAAAAALD24BMbxmwnEGvGJ3u0PiFAAAAAAAAACQWZK18270JR2u9aieilAliAAAAAAAAAAIvw2FT3151oizPmalmfG1PwAAAAAAAAC5B_ImP3FPXINLaYvJmiGo_QAAAAAAAABNEr5fUskqiqFkThPIapWesQAAAAAAAACPrAbRn9ZtwHgAlMdysbgKgQAAAAAAAAAAAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CANLBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "HM8rAYVgxm9ISWWjA7zGvg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAn2Kue-E0ocGjlBrYARCI6iAAAAAAAAAAEQNlOUvE0ZxUnjZSRXtro_gAAAAAAAACj5V0XDbONbs62WVlspWPPLQAAAAAAAAAM7NLXRYAsb_z9eb6-ioJ6zAAAAAAAAAAYxyC-vyzgsDe_VuNG-DhfIQAAAAAAAAA9fe69QX5O_EOqLGiPEFzIuwAAAAAAAAGB4PqH4j7efYkP_yazDFqQFwAAAAAAAAABOzFeuLNSMVWvCPrgnxwbuAAAAAAAAAFW5uGB4PbBFcS_c1Q_L9s5wgAAAAAAAAARfe69QX5O_EOqLGiPEFzIuwAAAAAAAAGB4PqH4j7efYkP_yazDFqQFwAAAAAAAAABvBoVUlhIFzzElOeQU4CcwgAAAAAAAAAdI38BEvuOR5ZIj0xVCqeBhwAAAAAAAAC6JWK_qo1WxBG5S-rYdc4IpwAAAAAAAAAFe4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJ5MjsJRNjcAcbzonrv2R8TgAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASSJtbOKA-yUJNIv9tsaiOvQAAAAAAAAAFwtkJSM2tzCJCUzMzkaaTDwAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAFfAabmYCVW4qdURc4XUxauwAAAAAAAAAFRDkaM95giz3S74FJcVQJoAAAAAAAAAAI2MiYfYCBqrvhILG9OTjmzgAAAAAAAAAF79BEVcCyL_fEum44mqHrEgAAAAAAAAAFE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFG0kQGTdde9u28DW8xZmb1AAAAAAAAAAIMp70PZJK05AbTbmTOwflagAAAAAAAAAw-pRz955dmytzM_Z3JtL7_gAAAAAAAAAIt9ckTBj6pqlfYZDlDMZ1uwAAAAAAAAAJfYzXBFRgCMAAS8V11dxuxQAAAAAAAAAJuFE_5iRgVAA28vEAbB_cNwAAAAAAAADEbwad36dX9xAawW6mOkjl-AAAAAAAAABDFDzOaMgNZVfiW69qEuWEzQAAAAAAAAApXnVOjmJUI-Ij_AtInz21QAAAAAAAAABUhlv_ksAXxTQ2GTBcbRb2JwAAAAAAAAAy4pQmnbdVKlEPbRd3rB3jwgAAAAAAAAAUl0hCUDJE9WA5zrDYnTjz6wAAAAAAAAAFEjqVtFve0NBSahnBSZ385QAAAAAAAAACasfjD62HMHzrp-TIN-8V-gAAAAAAAABqo-j45UNS6a4i2FH3VTZTCAAAAAAAAAAF6BfWdekjqfXKsC08sKjfGwAAAAAAAAAMBE0p8q_mh7enzgEoPVJKBQAAAAAAAAAe1YwmAWjsK6oD1Qs8m4ZuaQAAAAAAAAAW3X9PCd1tVPhzrMiwigfodgAAAAAAAAAA8DDAjVJl721y2vxKHGSBegAAAAAA5zKzvQ7EacG6CR4rzcFaNFEsTQAAAAAAAQGM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBUR", "types": "CAMzBQIDBQQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "aswSujPdY1piZpTrckknCg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxi6", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "gndsttBtGJweDhEYcAgHmQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgpUcXT4fd_WKeR1cE-hlLelCQAAAAAACgptEXT4fd_WKeR1cE-hlLelCQAAAAAACgp_tXT4fd_WKeR1cE-hlLelCQAAAAAACgqGqXT4fd_WKeR1cE-hlLelCQAAAAAACgfc0XT4fd_WKeR1cE-hlLelCQAAAAAACh1C3", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "qBq-7m-QnKdTZ7IgrjCZqA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsftbx9jqjuemtiUm8j-_s73zQAAAAAAXsVwbx9jqjuemtiUm8j-_s73zQAAAAAApykkbx9jqjuemtiUm8j-_s73zQAAAAAApxqgbx9jqjuemtiUm8j-_s73zQAAAAAAWS4Rbx9jqjuemtiUm8j-_s73zQAAAAAAkZW6bx9jqjuemtiUm8j-_s73zQAAAAAAlJzVbx9jqjuemtiUm8j-_s73zQAAAAAAlGdWbx9jqjuemtiUm8j-_s73zQAAAAAAlC-g", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "f7riNXLCE7Lya9tYdhWvxA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXDNgtQ4kMk_MBWrPUAFqVnYywAAAAABqaCzgtQ4kMk_MBWrPUAFqVnYywAAAAABqage", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UxSRiReX-sDqSz7nCVXpzA"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAAAtt2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAHIG1OnoGXN6zXJZoQUHRmxAwAAAAAAAAAxYEThj3UEuGl2wDiJSq9vSAAAAAAAAADmjckGVFRAvWURR3kz1QpfwQAAAAAAAABZQUM3v4ew-jMVuKkpISsPEAAAAAAAAAGi6iNgA9fR_bPjg3gsO7FxQgAAAAAAAADeWKOnV4dhtUKFY7wtM7-RyAAAAAAAAABRH2QTzkKMf4VE2_HyfX9GywAAAAAAAAAOUX0maaM_jFdAmFMbhLpaSgAAAAAAAAANVydXcSmOqICsVxLpiPFyCAAAAAAAAAAhxWXbvqcob2cyNB-_TJKbYQAAAAAAAABZ2RFqiy_TIF9Ivmg849R6KQAAAAAAAABpT9jB4qnc_5xFsdcbo1_ZFQAAAAAAAAAEp3fO6R-HhQcKmmzP8aNv3gAAAAAAAAAEcYiYZLNw79YI2sv5ZzfISgAAAAAAAABnsd1-fzhWHGpZk5BbNZ95mAAAAAAAAAER5uJBJdbCydi3Mb0Lo2CA1QAAAAAAAACdH-wSa23kc3U3gWusbQ0H7AAAAAAAAAAv48NTOm9REY9geqrnhLmtIQAAAAAAAAAHLZh55WiQA4pYUO2PyDs0LQAAAAAAAAAHiynY3Vpl2yeKIqRo2Ld9YAAAAAAAAAAnAsYLPOMVTEJOeDxuyLY7KQAAAAAAAAAUX9lpa9TN84k-aLBSFJ8EgQAAAAAAAAAHMkmisheVP0DaTeF1Tgq6BwAAAAAAAAAVoCXlcImc-yf-85hxTZzoPgAAAAAAAABLmvIyISC3NjpTUMXf329NrAAAAAAAAAA4CavekK73u-OfLwSzLyhvhAAAAAAAAAAJKYcgZWdWl27hMIBlgVEqhwAAAAAAAACMMLdMFGDeFJJvJRMDhyL8jwAAAAAAAAAKVthdIAkyIWxV-e9fI9rVBQAAAAAAAACIFezK_dQe_u3GP8ThBnZQ8QAAAAAAAACEnQWGdRxvqVjwlLmQWH1PhwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAINa8NlMClggx8jaziUTJXlmWAAAAAAAATLP", "types": "CAMtBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Gpy3Q2u5ZrnHXb3KmhEpOA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgnQ", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lLjNSon0kMlL_GeOGmhieQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL5", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UZ8rlHpyHU_5rmSXnTnxiA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmqd", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "u2AD2dN-UISqlrcsxppvng"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAFJeiEAvRyyg7Q8ghJd6qO4ZQAAAAAAAAApxDECjxfRDF0SAcicHv7yIgAAAAAAAAABSsODsFdp0k4d_SSQAFmIUQAAAAAAAAApzzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIGTDz5BEJ5HMljeo0WMABIQAAAAAAAAAg06W-_gYsVxvlZRgxvL-PiAAAAAAAAAEOcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIQVeLj_oPnEjl_jKTv8aQqAAAAAAAAAAlcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIMgnzgTUwSrjft9SA3YZTtAAAAAAAAAA0pTQwlw111ksRO8rVWFQy5wAAAAAAAAAuVKeIi2MKWzeJ-DxWf1HkPQAAAAAAAABnZr-QUGQ5d7tVx5lbmJB5XAAAAAAAAACOpBAXMFgFarqt_e84PodhnAAAAAAAAAAUtIoSY_1vT_j29F717EmR3AAAAAAAAAAPRZ01NrWKTMDuXelOk2KnKQAAAAAAAAAA", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "HcVSvH84frJlF8DalZYCcg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAGx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABW1vmWfRl7JvnIelrwmbOFDwAAAAAAAAB2P_qKgj6OkmYBLfen5yPH6AAAAAAAAADlitfZdu4NdI0YJrHcgeE-TwAAAAAAAACXJS-WjNz0QulnqSlnIs8U0wAAAAAAAADS7Ormen3KBfy8FXv7OmF-kAAAAAAAAACJWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAmAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "WkrL6TODCfAqmVviEmO3tw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc5-Qz5k14PsCcDvFyUC1kmlV3QAAAAABcnaEz5k14PsCcDvFyUC1kmlV3QAAAAABakmCz5k14PsCcDvFyUC1kmlV3QAAAAABaBsyz5k14PsCcDvFyUC1kmlV3QAAAAABaBLIz5k14PsCcDvFyUC1kmlV3QAAAAABHZsIz5k14PsCcDvFyUC1kmlV3QAAAAABKB57z5k14PsCcDvFyUC1kmlV3QAAAAABLLQZz5k14PsCcDvFyUC1kmlV3QAAAAABK3KAz5k14PsCcDvFyUC1kmlV3QAAAAABHeeNz5k14PsCcDvFyUC1kmlV3QAAAAABFzoSz5k14PsCcDvFyUC1kmlV3QAAAAABGkxl", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dpqreVris4izbdrt_XQ9dg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAnj1aaSI0_CmCcq1III7HOyQAAAAAAAAAIoSV0vEfx2f4H442JtkKdLwAAAAAAAAACoGwyto3BslHwE9mIoXY8WgAAAAAAAAAFqvNVcLOt_ffF8fUAgdlifgAAAAAAAAACeHnN2Txvq-iOALceSe76EgAAAAAAAAAb1S9eFAopKcZX-VnW9ChdWAAAAAAAAAADw_8HYglWw-0jqUUlUeMgagAAAAAAAAAC5XlE5KvRrfbNOpt-JVgrOAAAAAAAAAAH_zxyi-wgtH_Wz8ut-WKY9wAAAAAAAAA3Urj27ZFZeZ-3lsT-8mj4RAAAAAAAAAAI5XlE5KvRrfbNOpt-JVgrOAAAAAAAAAAH_zxyi-wgtH_Wz8ut-WKY9wAAAAAAAAAA", "types": "CAMSBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5qEIEHhl2fpx8ABpVcKHWQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t3YXT4fd_WKeR1cE-hlLelCQAAAAAAC-wI9XT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_Y9XT4fd_WKeR1cE-hlLelCQAAAAAACiFHoXT4fd_WKeR1cE-hlLelCQAAAAAACiKQzXT4fd_WKeR1cE-hlLelCQAAAAAACiNHkXT4fd_WKeR1cE-hlLelCQAAAAAAChtv8XT4fd_WKeR1cE-hlLelCQAAAAAAChIao", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "y66K3evy_zukvuBb-3XJsw"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD0Lt4rFFPORY8_4FvK9QaA3QUQAAAAAABSmu", "types": "HQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MrYyGRbOREUeHSMqF3-fVg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAGvN0nOeOJdjggSFx_cpb47egAAAAAAAAAV4vwWTuaA5W0Uq7WSODTSAQAAAAAAAAB8mm7pA8Vo6frfLprU_GjPaQAAAAAAAACREbDp5Ji3y8uTKzXL0h4-JQAAAAAAAAB8dJZnxxfSj1TBzD3FyyfeDQAAAAAAAAAOArz1MMWCC2fkAl6FCL43rAAAAAAAAABQnHKyvd8kdc_8d3u5YjO8iQAAAAAAAAAFm-i3pqvNoPRjOJ3b3sEiiwAAAAAAAAAEs9MntjdT5XiNr-rHeRcTvQAAAAAAAAAB", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MzJj3KNtxi6rfo2HmSnLYA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEW1RuXT4fd_WKeR1cE-hlLelCQAAAAAAEWwSEXT4fd_WKeR1cE-hlLelCQAAAAAADUPPxXT4fd_WKeR1cE-hlLelCQAAAAAADUPWVXT4fd_WKeR1cE-hlLelCQAAAAAADUpf7XT4fd_WKeR1cE-hlLelCQAAAAAACioyZXT4fd_WKeR1cE-hlLelCQAAAAAACio8qXT4fd_WKeR1cE-hlLelCQAAAAAACiq-2XT4fd_WKeR1cE-hlLelCQAAAAAACipZRXT4fd_WKeR1cE-hlLelCQAAAAAACipFEXT4fd_WKeR1cE-hlLelCQAAAAAACuTKhXT4fd_WKeR1cE-hlLelCQAAAAAACuDBkXT4fd_WKeR1cE-hlLelCQAAAAAACuDG1", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "AxEU6p-R7yu3BKQoEWmsig"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA70RgYbC2fQjxygsXZf0s0DwAAAAAAAABPiAgP1DBH7Z9OPzvK7kQabQAAAAAAAAA3brHwMWIWqKKcmy2jXj1-xAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADXgFPyL3qH7XvAMbrBvAuRfwAAAAAAAADbtEnA5bbecd5HgfHANQcYvAAAAAAAAAAMRzjbtVKcKAJORTMSkyG2eQAAAAAAAAAGvpboNfauwLs6xQ0xkHOOWgAAAAAAAAAtO6091ZB5jV9xKR7I7_uzYgAAAAAAAABdKGcnodwCdbO2RZIs7I3VDAAAAAAAAAG7u5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAACSeel_AF4MFS6VTogqEciizwAAAAAAAAA4MtYgtdi7SuaCFxSznO0CAQAAAAAAAAAFqvj-4JBj-kdKXEa-laJZqgAAAAAAAAAEOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAATHNOfCO9oXb8RC1H2oktECAAAAAAAAAAKwZSJW6Fth_EOu811YuoCSAAAAAAAAAAJANUDzCguopTSw91qnI0ylAAAAAAAAAAEkRzLpzeNznNKCk7oxweCJQAAAAAAAAAI2x9Jgge3yFGPJiCTMDFHSwAAAAAAAAAF1E7vLqgIEliy4P46okASEgAAAAAAAAEEcGRDia95o64czGD3ETERlQAAAAAAAAAi", "types": "CANABQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "jCt6gzQ4WoMjVVyiDgq3ww"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAAKiVqL9Bd3XIiGWasJdN8trI5tgAAAAAAKfumL9Bd3XIiGWasJdN8trI5tgAAAAAAFmVkL9Bd3XIiGWasJdN8trI5tgAAAAAAEl_HL9Bd3XIiGWasJdN8trI5tgAAAAAAESQOL9Bd3XIiGWasJdN8trI5tgAAAAAADIGQL9Bd3XIiGWasJdN8trI5tgAAAAAAB-7JL9Bd3XIiGWasJdN8trI5tgAAAAAACA4_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimti6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnKXQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAirCv6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CQMOBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1EXI19Z-O3qg_0-FXRlo5Q"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAAAyxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEPoG3DRiZKlMZ3sh3A8whkKQAAAAAAAAAZhbRa_Mv_nNX73QDH-O5j0QAAAAAAAABpfXtbF06M7ZwcaaNlV0uiIgAAAAAAAAAY0n7bnuaG-8sBjMSdabTn_gAAAAAAAAAXTQHHjILJSS1Y0hdQ8MODHQAAAAAAAAAChjAyoRprP-ATzdRzIqim_AAAAAAAAABP", "types": "CQMxBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "prlJ2PdpdntL-7u9l1ZVQA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChlYsXT4fd_WKeR1cE-hlLelCQAAAAAAChdvPXT4fd_WKeR1cE-hlLelCQAAAAAAChdEB", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MhKbOdyD1AepHNZ5p5VKbw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAByH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAAC1e7YYWaQTMh8P2PCVzA2a8gAAAAAAAABE_p12Y0DOk4cFEn5gGz9psgAAAAAAAAAE", "types": "CAMTBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "u4ENslLvqJ7fMHP-2q_rdg"}} +{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACindAJ6GSZQSmfOBquczb-SF8bAAAAAAD_HoJJ6GSZQSmfOBquczb-SF8bAAAAAAD_HxxJ6GSZQSmfOBquczb-SF8bAAAAAAD_IbnJ6GSZQSmfOBquczb-SF8bAAAAAAD_IrzJ6GSZQSmfOBquczb-SF8bAAAAAAD_I88J6GSZQSmfOBquczb-SF8bAAAAAAEE5cXJ6GSZQSmfOBquczb-SF8bAAAAAAEE48KJ6GSZQSmfOBquczb-SF8bAAAAAACoTAEJ6GSZQSmfOBquczb-SF8bAAAAAACoTT9J6GSZQSmfOBquczb-SF8bAAAAAACoT2EJ6GSZQSmfOBquczb-SF8bAAAAAACoVnkJ6GSZQSmfOBquczb-SF8bAAAAAACoT2EJ6GSZQSmfOBquczb-SF8bAAAAAACoVnkJ6GSZQSmfOBquczb-SF8bAAAAAACoT2EJ6GSZQSmfOBquczb-SF8bAAAAAACoVnkJ6GSZQSmfOBquczb-SF8bAAAAAACoT2EJ6GSZQSmfOBquczb-SF8bAAAAAACoVKFJ6GSZQSmfOBquczb-SF8bAAAAAACoY38J6GSZQSmfOBquczb-SF8bAAAAAACoYp7J6GSZQSmfOBquczb-SF8bAAAAAACoYvEJ6GSZQSmfOBquczb-SF8bAAAAAACiK2pJ6GSZQSmfOBquczb-SF8bAAAAAAChIZkJ6GSZQSmfOBquczb-SF8bAAAAAAChH_kJ6GSZQSmfOBquczb-SF8bAAAAAAChSauJ6GSZQSmfOBquczb-SF8bAAAAAAChS07", "types": "GgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "cEKU9CqfrZ1VXQsbR9HeoA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALuIMZbQBpWylsvNiHYVayGwAAAAAAAAAsj-VXt8KnrYS9nMeTJRcX6gAAAAAAAAB-ZNC_ZB-xrdQjRsvZg2M-bgAAAAAAAAAWoHSfLvbR_Hx15v-1lgqy6AAAAAAAAAA2UcVFTnPcRwLwEdnWw6ouGAAAAAAAAAB3qLd1slOGjoHoI4L_rGXDGQAAAAAAAAB_Hu6HLMiI0lXmepuHKOw-yAAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQCG83YkfBVZ2cNqvVE3cy7AAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQ3NXJCw7PINTEV_suvi1hjgAAAAAAAAAnr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQvTC_vdAIqHnsn8FgkEndNAAAAAAAAAACr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQKs4MbYgXaKKBNMAO1163fgAAAAAAAABR3DsLLpnzoGeqib2_MeXKdgAAAAAAAAAY0D5QIcqYfSjF8Y2Aggw1CgAAAAAAAAANIsTeQJDaM3QSF6qkor-wtgAAAAAAAAANr4EwjivQD9dgWfj3KFYQVwAAAAAAAAAF0YCmzXLK0eKtYp8gLuNdRgAAAAAAAAAfkRIDdnqJ8-qS9brixlkkyAAAAAAAAAAQymtcT7XngDCOtcgo8NmgJgAAAAAAAABaEuiuEGuoH1DvPXwEkw2odgAAAAAAAAGLMEhCGFUvnR-s79TodsgBdAAAAAAAAADefHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAAB4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAAAyxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT1B59VY_DkwRaBnYLL8PJHgAAAAAAAAAD8YqqCdmkiYhp8MhNYHa7HwAAAAAAAAAGDjdOEEgRNl2srRXl5Oz1UgAAAAAAAADmSfUOLPncvmUbspPEBmYXMAAAAAAAAAAGjiOROD0tmELw9GVQYUYO2AAAAAAAAAAFt5RNhmUkms0myDPI3-3ICQAAAAAAAAAFexlLI1uBpP8VBaUqNRf9DQAAAAAAAAAWvaZUIH7rCnsi1a_nVIdcmgAAAAAAAAALDg0i2lYRLQUln2hBXrJbCwAAAAAAAACkiN3C5173bfl4YBtV1f8buwAAAAAAAAAEKvbcYFET00wCvETlglupVAAAAAAAAAAH1Uhaaq-KCySIEBwLdwJOrQAAAAAAAAAFZc0Fl8AgEv3kvyq-GLd82QAAAAAAAAAF69Ape6b0-GRsMkZddSM5EwAAAAAAAAAFDB9sD0JA2GraAv0uQFBumwAAAAAAAAAG02k8lTPTUqykbeCXCr9k_AAAAAAAAAAinY6Bz6koyx0B67n9HdjFUAAAAAAAAAAs_DKhYKsY0BPKYoMYRAcMCAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKcG5W-PDYduXZ1DZFU5bdYwAAAAAAAAAfX8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtnY6Bz6koyx0B67n9HdjFUAAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKO2hSFZZOeE5g1kTv31qAYwAAAAAAAAAoX8VG4aWKK4IcDkQhZbi1ewAAAAAAAAAtnY6Bz6koyx0B67n9HdjFUAAAAAAAAAA3uDIPf2XkSitz-Kub2SC3OAAAAAAAAAAK90MtHGc3Ig_ORGJRDPg5bAAAAAAAAAAKtVvvb6Z5DEr7tZFzbFRlggAAAAAAAAAGNdurIec2eVknw5UWeyAGhAAAAAAAAAAg_OURcYkX0iBxmyshrTvm6gAAAAAAAAAXK68quRzmwMwkh1BjI5vLeAAAAAAAAAAhY_ur9VOSDEwVLljoZ7w15AAAAAAAAAAEQXvaGnSY0e9Ndzfl5fNy7QAAAAAAAAAVu3PdJ9uaY7J6wq8TpSw5VQAAAAAAAAAbFyvqj99pkKDWLuJmqlMKOgAAAAAAAAAMSpuVyl1yybAmI0lABPU6JwAAAAAAAAAA", "types": "CQNkBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "YSaFDWHJ_iCjzSCB6DK_RA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipGH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipDo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Zq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Ei6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjh746tVKI4mSYDEJ-ABAIpYXcgAAAAAAnZYv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnZTD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnY8H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp11c", "types": "FAMMBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "eNWShRKrcCc4np9IoAgLqw"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjXzz5k14PsCcDvFyUC1kmlV3QAAAAABGOHuz5k14PsCcDvFyUC1kmlV3QAAAAABGN3rz5k14PsCcDvFyUC1kmlV3QAAAAABGZEQz5k14PsCcDvFyUC1kmlV3QAAAAABGNSVz5k14PsCcDvFyUC1kmlV3QAAAAABGPJE", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8EAjrBbbPO1NBkwe5Zw6rA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADB0YTZ3CKaS4aU08RhYA19y5ITQAAAAADA21XZ3CKaS4aU08RhYA19y5ITQAAAAADAz4DZ3CKaS4aU08RhYA19y5ITQAAAAACsr6sZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyn-Z3CKaS4aU08RhYA19y5ITQAAAAABzzZNZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyn-Z3CKaS4aU08RhYA19y5ITQAAAAABzzxQZ3CKaS4aU08RhYA19y5ITQAAAAABvTEy", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ziVRbL4J2zmIimCd5dnmkQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVMhk7twoFFvGSvyWsBJzr5QAAAAAAAAAMS-bF0OQ5zu714NI9jV1-DQAAAAAAAADEb95z1GhnNzkQcVnTAGVlWQAAAAAAAACoZkPmPV7VCVD8EkLP0Gy3BwAAAAAAAAPSKp-m6YXPN7JWDmz-Pu761gAAAAAAAAAZvqa2qJ2cwRBJMXL7-qTksgAAAAAAAAAyeM3LHfJob_f6p51a6_86sgAAAAAAAAAYcrGKv6MsQDF8S96b_rOTQAAAAAAAAAAI2yACv8-EQiZTIRa2WNkdEwAAAAAAAACX7jEiTNMaubPBqDqJ10fz9QAAAAAAAAAEEOhzOggf9JqhahPYi6f8_wAAAAAAAABCRPFiojmndeu_4nmb3OGehAAAAAAAAABPERC3TORIgU0YrmeCK0zHCgAAAAAAAAAhiynY3Vpl2yeKIqRo2Ld9YAAAAAAAAAAUvTiT6RQHSjUNEBuIvfofKgAAAAAAAABRnXCb1JxZ0dz33zJkoeoA-QAAAAAAAAAOJDnO1OdT3mBLtMfsODhVKQAAAAAAAAAFI90CtZp_BZBH2tSRSUMrrgAAAAAAAACFkpBi8LFR3RTjSJqFuljOuQAAAAAAAAAAGXH6S9Nv2Lf0omTz4cH4RAAAAAAAAClRfhsEKXDuxJ-jIJrZpdRuSAAAAAAAAFtjfhsEKXDuxJ-jIJrZpdRuSAAAAAAAAELnfhsEKXDuxJ-jIJrZpdRuSAAAAAAAADNv", "types": "CAMYBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UQ1fVd58k2fSqjQSJ4y2iQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgK1", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "rok93z2LCfJ0ZJK0AUi9yg"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrooy1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAmB1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAbq", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ZXvRF6M9Sb6WIAMAYzZ-ZQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAAA65FYxe-SHgukLEpCkawSk1QWAAAAAAAA8D0Yxe-SHgukLEpCkawSk1QWAAAAAAAA_IZYxe-SHgukLEpCkawSk1QWAAAAAAAA-3O", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ITBNtz-bjKnk_l4Kwx9kUg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAACLHmuH5pCGXma5ToZjJwiZHAAAAAAAAABnS4DQ5gj04oVPTd_cZvriwQAAAAAAAAAFcoLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJnsN5oeLyhaU3rc_4TQfhXgAAAAAAAAALgvQGUUGWUJbOOm8Vi63fqAAAAAAAAAAGpIlQHYzUvHZx6w5Rtmyd8QAAAAAAAAAGQUT-nNY12PdX-wWYy6XdlgAAAAAAAAADSp9UjTJ6AKwagodjyx73jwAAAAAAAAAFy_Kb_1plOC7673Fl1U32vQAAAAAAAAAFcoLSOhZ38Q_Uu6AZz6MEVQAAAAAAAAADsh5haWvwgdAIUGCzIKDuvgAAAAAAAAAQk_ABxmqh7g9WH83U7CzhyQAAAAAAAAHmyzswjXVxRE-4XShLDgxaaAAAAAAAAABQX_Xg8WYZN8y81f3q61YYwQAAAAAAAAAJ", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "F4kam_5f6I_ATS5P1FRJXA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlPqcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgKh", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "AhnnJVvJKhuW62FxeUzbYQ"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABFPp_z5k14PsCcDvFyUC1kmlV3QAAAAABFxkzz5k14PsCcDvFyUC1kmlV3QAAAAABGnUj", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "x4hRUQX54NRZQYMyfx_S0A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNGXT4fd_WKeR1cE-hlLelCQAAAAAAC-uBqXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ocgzGTENS6-t1-W9D31duw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFkjHcEvvhuguaGYCmGWrnWRz1QAAAAACENFTcEvvhuguaGYCmGWrnWRz1QAAAAACEm00cEvvhuguaGYCmGWrnWRz1QAAAAACFxc0", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "O0BoHxZkoimQc5Yim0gmqA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw2HtXT4fd_WKeR1cE-hlLelCQAAAAAACw1EEXT4fd_WKeR1cE-hlLelCQAAAAAACkHGIXT4fd_WKeR1cE-hlLelCQAAAAAACkMo1XT4fd_WKeR1cE-hlLelCQAAAAAACkMLVXT4fd_WKeR1cE-hlLelCQAAAAAACiiwJ", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NOGQ2fCgOSotecfke9wUVA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZFDZ3CKaS4aU08RhYA19y5ITQAAAAABuDoeZ3CKaS4aU08RhYA19y5ITQAAAAABuDU8Z3CKaS4aU08RhYA19y5ITQAAAAABuNnA", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Lcyn0kBqq69ATX8SPy64vQ"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABtWkrZ3CKaS4aU08RhYA19y5ITQAAAAABtjoGZ3CKaS4aU08RhYA19y5ITQAAAAABtjTL", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "pChhou59FmvZn7O2ZvhLgQ"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAb2jOITD8MGbT1Ovw_xtzUAgAAAAAAAAABdfaJS679SMFHynOlhaT4GQAAAAAAAAAEwxNyOGlepMHeJK72r3Nx1AAAAAAAAAABNCnW31JAeE6fBCMV8tcmcAAAAAAAAABx-Io3TUEjg3VhqUZyexECqgAAAAAAAABCKJ6ILPQkLRzsL_qCZRHYPAAAAAAAAAASW8XJy2Hk37R95UDQ18YnzgAAAAAAAAAOOdhNFK09ypq7bYC30OEbwQAAAAAAAAAWz_t7zXgMNJmUhO2ppFiaDQAAAAAAAAAFGVtE5azmnq7oQE07RxtqrwAAAAAAAAAxM-HSPvU6Ylpk6rULEsdDKwAAAAAAAAABwcwS_jKe-J8ZEpRM7gaB2wAAAAAAAAAFn0k5scYsn3wtTeokDa3YiwAAAAAAAAAF1KcuglkNBKBETK8L499nPQAAAAAAAAANiXm2yUQTnZpOrE8ZNWS3KQAAAAAAAAAm-bdPLgVx58dzwkE7OjvI9QAAAAAAAAF5iYtUXbZ1cPtxIQ5iXlqsJAAAAAAAAAAJzmJjHr20VylgKdsUYkUDgAAAAAAAAADbCSTFmAwO5vU5_W27M98DswAAAAAAAAAHF1HF75RYzjvrvu68iKDxPAAAAAAAAABYT8--SMHVGcooXsfsVElY-wAAAAAAAAACU5jbbbC88jUa-8dlGUKWMgAAAAAAAAAS1uyqX7gDw_vBe3Aou2wnuwAAAAAAAAAr7XuwAERz4-wOtMHIT2RfpgAAAAAAAABpfMKxLLA4Q_xaCv6rBjpL3AAAAAAAAAArIjHIXxb8IucXL3D2E9_ItgAAAAAAAAAJyTEFrClQdB3Qsv66pEjNUwAAAAAAAAAWrkRxFT_Hw_jUlcBT_NPUjAAAAAAAAAABGfFTZ31mdFcLyIf5KCQV4AAAAAAAAAA1WsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFWsvuuOCf77aYVbEsqDBn4QAAAAAAAAAFuaPqWrgrMtBr19nB0bwQ4AAAAAAAAAA7DvWhbkzH60wdCq3Z8oLdcQAAAAAAAAAHOljKMbs7Sslvbk6h8kJ9yAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfw5DtxqVhoNPMfZH51ZbSdwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEeyyzzsctNMm8Ix0F5BKrQwAAAAAAAAANL9OdW1GzSEWVanMPfByr5wAAAAAAAAAIMpA-_yb_lGv178DTnH5RUAAAAAAAAAAKQFD262cMfH9Fkx0D-SBUcgAAAAAAAABhk-Vn8s9qtj7D3BSWLIWnXAAAAAAAAAAAbx9jqjuemtiUm8j-_s73zQAAAAAActFrbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qeGt3fpd8fb-33IEga_JxmgAAAAAAAAABIGwhMoYnMofyYEaJiOTDygAAAAAAAABndVXLQszZHgabMaRgrKn91QAAAAAAAAAbkUQWAMnv1TRPiRV23phECQAAAAAAAACM4oROntQ4zAdpf6wKcORUhAAAAAAAAAAA0aeAC4XpbxqxubqgoasMaQAAAAAAAWFk0aeAC4XpbxqxubqgoasMaQAAAAAAAW3P0rNuxKNw6YxtKvsF6kS_jQAAAAAABGiX0rNuxKNw6YxtKvsF6kS_jQAAAAAADu1k6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEH-", "types": "CQMwBQIDBgUEAwIE"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6yXKe_on43mKRggPSy_g3Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFx3XT4fd_WKeR1cE-hlLelCQAAAAAACiHvpXT4fd_WKeR1cE-hlLelCQAAAAAACiMqkXT4fd_WKeR1cE-hlLelCQAAAAAACiNLW", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UbOj5nt5_ZA6gcga2l7Caw"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qCmepCKWJQWWrX7mRVq-c9QAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_jdrai_0fDiGEvZJybTdZ_gAAAAAAAAACGPgne5T-0iZurfH30RkS3gAAAAAAAAAdXfHacyr3VZQyavlI3uwP4gAAAAAAAACwzRzuRhIAkf1N_VLE9pJH1gAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIeIXWZsvBDOeWVV_btEAn7gAAAAAAAAAcl4uo7ghG5cU3c8mQHH1y3gAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHodAqfJHrL8b-RJ7OGeIBlwAAAAAAAAAfYfMcWwmYKFEdOMSXQpAcFQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAABqkPOuFMPm2_j7vX6Q_7bKcAAAAAAAAAAhD8h50WvRJdBg-tXDetFXDwAAAAAAAAAQLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAABBoz9GJ_qlf4pBIKy8mHtWYAAAAAAAAACLR8Unr-8xOl9YfaVb1B0yFAAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vw8KIGK_PF-dee9cSVnZBQ"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAAAaieVPbh3z67ZFj7IGoqq7zgAAAAAAAACEBFI7c7JS1eVbUcz-CuyraAAAAAAAAAAJpE_XF-eq0tBl0fP7Y7zrSwAAAAAAAADY8uVqqmQs2krZT40-iqFC3AAAAAAAAAC8xIfNH7oj8c26gQcDKc66DwAAAAAAAAAURuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAA8ix3sTGLCNH21piOrMPoln5uBQAAAAAAxhJ3eJ7BYIhIN72fM2Cz8k8m9QAAAAAAAMGFeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARb6", "types": "CAMKBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PNMKCihKyzqKVXmkpAX-UA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfF7h4fQX4iXg_n1wAsZ9soAAAAAAAAAAbKjQa_c3gnNzjLoUEDA1kewAAAAAAAAAUkq0yLDykiP_zZwIifyjGPAAAAAAAAAAZhBUNaVxpxgiirSJwsy2IpAAAAAAAAAACrYzqcY9OrSDd3tVReT2f7gAAAAAAAABnM4-WIg7MzcMAZQtkvX1LfAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-vqJadkgElIf37V0IeQdRQwAAAAAAAAAU8iPUvAcKl10gNPgdpA7KgAAAAAAAAAAUEBZFBKpKzW1i7v7EAJ6AkAAAAAAAAAACQL8xAzFpyYQtSy_chtA5fgAAAAAAAAASOVgeZs8BFzn2toyh_PIAtwAAAAAAAACDFue__87qnEgFZQsrLFNQ3wAAAAAAAAA4s0cTYeKiYA5R-3xXDYuolwAAAAAAAAAkY9uy0jT_olZW6YV4k5pWhwAAAAAAAAFDrVzWSpKLw4v6Aqz2OFQqGgAAAAAAAAA7QqMFArUGE7c3aczTAAedSAAAAAAAAAARmEefCgy0KUI5I66lcwP9KQAAAAAAAACTRww-hja5KWn3UBihMGepiQAAAAAAAAEepGv-va4FOh2AYYkCjbquJQAAAAAAAAAr", "types": "CQMYBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ysZqeGNiSCUlG_-9kO1eZA"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB807Nz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHphgz5k14PsCcDvFyUC1kmlV3QAAAAABG-csz5k14PsCcDvFyUC1kmlV3QAAAAABHCmp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALm5y", "types": "BwMGBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "iAga6sY-ILliizwOQOLq9w"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAAAd2oeSW9BMt2zZqP7i-3UsNAAAAAAAAAArZC4caaBbQcOc2WclRiklUwAAAAAAAAAMQJ-JVADSuuonf59sOKCy_wAAAAAAAAAPbYxYe2jgm-ZVQ1wIKl60VgAAAAAAAAA1B_TZlmg-i-MShObdqiYcyAAAAAAAAAK9JjiG_BroZFP40tpmv2LaAQAAAAAAAAANT3lk77LF4G-nQZW_WRBUXQAAAAAAAAAH_8CkmXN7rMP1z1mWZ4cysQAAAAAAAAAbvB5-VFNxmRTipezH9t4OWQAAAAAAAABXRYY2KsxSlCtOmORo2c20bQAAAAAAAACuB_P8uAe_X3hP--xhR0y-LQAAAAAAAADTGIy5Mg_ksRG2OUR8ttDU2wAAAAAAAABA5VZIXKdThz-hZwdLu0KVfwAAAAAAAAAKGY8FzW1zmT9O6Iy3KHcGZQAAAAAAAAEnmnOX1WBV5CLziLmwu66WwQAAAAAAAAD_FaAnmesk_y2t3EkYWQyVZgAAAAAAAAAQ-fOMs12YPQ6X2ykL_iFpxwAAAAAAAAAKHnpr4tyJKNRRtr915IpCUAAAAAAAAAAIC11mlNviZZKqD4nehqjEfwAAAAAAAAAnv4Ru5tqeSthdwSuFubOO5wAAAAAAAAACAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nFMOTBXwfXy2rS9rQ7VuoA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vNqXT4fd_WKeR1cE-hlLelCQAAAAAAC-od4XT4fd_WKeR1cE-hlLelCQAAAAAAC-o3pXT4fd_WKeR1cE-hlLelCQAAAAAACgaYEXT4fd_WKeR1cE-hlLelCQAAAAAACgazLXT4fd_WKeR1cE-hlLelCQAAAAAACga5P", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GsN99ThxwcvQFCb-5zng-g"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABazfcz5k14PsCcDvFyUC1kmlV3QAAAAABaQLqz5k14PsCcDvFyUC1kmlV3QAAAAABauKFz5k14PsCcDvFyUC1kmlV3QAAAAABLLaZz5k14PsCcDvFyUC1kmlV3QAAAAABK3dwz5k14PsCcDvFyUC1kmlV3QAAAAABHfOyz5k14PsCcDvFyUC1kmlV3QAAAAABHAaLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimti6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnKXQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAirCv6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CQMOBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "i233s6L2yjK0p6w73O5okg"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEVKL", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "oPUmSIMMNxEiuZQmO9xSOg"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAAGkuWcUG2bf_MgJpXpuAZivRAAAAAAAAAAx0nBVkJrBQHU_wusVG6_3KQAAAAAAAAB96PDTyNLwDP2GCrVJoblLzgAAAAAAAABI", "types": "CQM4BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yPsp3gldnYluQE1Il8N2GA"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABFvIYxe-SHgukLEpCkawSk1QWAAAAAAAANUzYxe-SHgukLEpCkawSk1QWAAAAAAAANPkYxe-SHgukLEpCkawSk1QWAAAAAAAA0OOYxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCOK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEuzk6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEuxw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mfdo9N1VvIQt_V4_UKPs_A"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2nRYxe-SHgukLEpCkawSk1QWAAAAAAABkFy", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Y-HHCWyQuqsx_aX2tv_uAA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o6kXT4fd_WKeR1cE-hlLelCQAAAAAAC-pHvXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi94WXT4fd_WKeR1cE-hlLelCQAAAAAACi98FXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAAChtBg", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "dN58P3I1L0q_xbL_RVS2oQ"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAJM", "types": "CAMFBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5jPOL2BCon4p4v0UyqfsXw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDo5XT4fd_WKeR1cE-hlLelCQAAAAAACxD6XXT4fd_WKeR1cE-hlLelCQAAAAAACxClIXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBiZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAANr3F6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFdKO", "types": "EwMJBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "PKalH8x4jaR5jSF5ZD7fNA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlPqcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgfu", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6cgk_wzXLuCamIL0QtAjng"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw2HtXT4fd_WKeR1cE-hlLelCQAAAAAACw1EEXT4fd_WKeR1cE-hlLelCQAAAAAACkHGIXT4fd_WKeR1cE-hlLelCQAAAAAACkMuNXT4fd_WKeR1cE-hlLelCQAAAAAACkLwJXT4fd_WKeR1cE-hlLelCQAAAAAACkKC4XT4fd_WKeR1cE-hlLelCQAAAAAACjILGXT4fd_WKeR1cE-hlLelCQAAAAAACjISXXT4fd_WKeR1cE-hlLelCQAAAAAACjH8QXT4fd_WKeR1cE-hlLelCQAAAAAACjHM1", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "wgH90pvBZQzKg6Ovbqal9A"}} +{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACindAJ6GSZQSmfOBquczb-SF8bAAAAAADBJDZJ6GSZQSmfOBquczb-SF8bAAAAAADBJWdJ6GSZQSmfOBquczb-SF8bAAAAAAC-R4IJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-QNEJ6GSZQSmfOBquczb-SF8bAAAAAAC-QVCJ6GSZQSmfOBquczb-SF8bAAAAAAC-OvtJ6GSZQSmfOBquczb-SF8bAAAAAADBLPkJ6GSZQSmfOBquczb-SF8bAAAAAADBLVcJ6GSZQSmfOBquczb-SF8bAAAAAADBLa8J6GSZQSmfOBquczb-SF8bAAAAAADBHrrJ6GSZQSmfOBquczb-SF8bAAAAAADBH3kJ6GSZQSmfOBquczb-SF8bAAAAAADBFTSJ6GSZQSmfOBquczb-SF8bAAAAAADBFhXJ6GSZQSmfOBquczb-SF8bAAAAAADA8YEJ6GSZQSmfOBquczb-SF8bAAAAAADA-i7J6GSZQSmfOBquczb-SF8bAAAAAACjyKaJ6GSZQSmfOBquczb-SF8bAAAAAACjwo9J6GSZQSmfOBquczb-SF8bAAAAAACjlCEJ6GSZQSmfOBquczb-SF8bAAAAAACi_DsJ6GSZQSmfOBquczb-SF8bAAAAAACjBc7", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "S1Qziid6uRmcyL63L7pIqg"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuYlUZ3CKaS4aU08RhYA19y5ITQAAAAABuPGLZ3CKaS4aU08RhYA19y5ITQAAAAABuIoQZ3CKaS4aU08RhYA19y5ITQAAAAABuIGJZ3CKaS4aU08RhYA19y5ITQAAAAABuI6mZ3CKaS4aU08RhYA19y5ITQAAAAABuI9i", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "aAKfq2sw3U20jw1YWMDRmA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgf-", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "21BhiohUZgpC9WMoB-TQ9w"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVtfumpR3_DtTnCIOWDzKm-wAAAAAAAAAEp2Hio-B8ObTXxsljAjfG5wAAAAAAAAAGz6tWuney7g-Y4N5qVR1EmAAAAAAAAAAuUA4BjsyOQrnvMdgV5LUO_AAAAAAAAAAEK9THlNmT2FNZygB0ST8aSgAAAAAAAAAcxbqKJQZXOhWiw8eLSXIeiwAAAAAAAAAWrOIREZdzN7DNIjy06O3V9AAAAAAAAAARvIt65Wo27njJcD5Xdpsh-QAAAAAAAAACazOr1dYomfn_S0qqSTxKZwAAAAAAAAAgP0FJLI0T923ukToDeSeiIgAAAAAAAACGgJam5798QKohw2f8Jm8keQAAAAAAAAAQ1ruy4PbG_H0iDhhqE1DumQAAAAAAAAAI3HjZuF7dq_MwD3oux4xPeAAAAAAAAAABWGoSXD4hgiKjdS4ZTCpocAAAAAAAAAACVrEXQtq5rACInFvkCbyV7QAAAAAAAAAq-0tvzLPWeBElB1zjJ37InwAAAAAAAAAKR8-4EoWI4M3vwqI6iUSsNQAAAAAAAAAEZSBccAp6iur2RMi-BalLxwAAAAAAAAAFkrVEwLAU-wiMDzMAI3XZBgAAAAAAAABOXzo8AP-f-a1xKbRltbpi-gAAAAAAAAAA", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MMS_Fcgw_IMEXhyPHrpTcQ"}} +{"Stacktrace": {"frame": {"ids": "LhSmdLZs37wH6EMWPlegEQAAAAAAAyPl", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "U0cf28-SA2W9gVX05wfbAg"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmKkXT4fd_WKeR1cE-hlLelCQAAAAAACgtCwXT4fd_WKeR1cE-hlLelCQAAAAAACgoHvXT4fd_WKeR1cE-hlLelCQAAAAAAChMVeXT4fd_WKeR1cE-hlLelCQAAAAAACg7aQXT4fd_WKeR1cE-hlLelCQAAAAAACh0u16tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtJB6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtH16tVKI4mSYDEJ-ABAIpYXcgAAAAAACtE36tVKI4mSYDEJ-ABAIpYXcgAAAAAACslz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMHBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "XWzJzUy7Vvm_2R1Y60lA8g"}} +{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFydV", "types": "BgQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Bs_-GfXJPjEAVmj6gcKKiw"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlpa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN6ND6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFW5n6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMB-t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUkts", "types": "FAMNBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TDv_u3XA5_4cTN3lv3-xrA"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzypYZ3CKaS4aU08RhYA19y5ITQAAAAABzyfP", "types": "HAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1VP5oxMWyra5a-ePQRQfQg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN5QmcEvvhuguaGYCmGWrnWRz1QAAAAACNw4A", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "0vq261A5n0vZb2J3xefmfw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDLZcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETeKcEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEWMi", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "yocGo0BxuP0NorkFbAsu9A"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAADrAotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAExkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4pVlUGQpw_Cq0LEtbbly5dAAAAAAAAAAkN1WyTlGFxfHgSyYQ3aeHDQAAAAAAAAAOYSP8Ib_W13QEw_Ivysg7FgAAAAAAAAFyn0UYwZH5py59Xu9gAaxkrwAAAAAAAABAm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl5iN7OCAj-2IgmFqLvCWrTwAAAAAAAAESap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlJdvIaoH8miVW9zaDiDOZJwAAAAAAAADSap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlhW8OwmmxjJYCeXfLTZy__QAAAAAAAAFLap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlw4mT2NPQOW-Mg0N_xZsuzAAAAAAAAADgap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlRlK4jZbFueXylWP1GNjNSQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlL_sAxM5NHsnYQp22GwDx8gAAAAAAAABwap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAycNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAATPOaf2meILyNtXlyuau5zHwAAAAAAAAAKc6zhheBld8wEBO7TlhnPcgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB82g1SAYpsFtnBogFl0v0GAAAAAAAAADJdpQ3bcNFV5Y0XdediaTCQgAAAAAAAAALmmckjE-MysbZhDPP6gNxewAAAAAAAAAydmm7_Hn3SrysHeUffmIe9AAAAAAAAAAfaxxtk6GnkoiqRXb69JxcoAAAAAAAAACge4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJOdkuTNpXjsFc7WV5c_bgKAAAAAAAAAAMjBwquBL06pqJXOt8kphl0gAAAAAAAAAME5ablZjSwaw4LkNasKqxDQAAAAAAAAAFB3TkFubeMsUjXVlcESk9tgAAAAAAAAAMpmiRP16sLzHMk4sQotP67AAAAAAAAAAOqeHIgzzOczGD0wBwOrHP2QAAAAAAAAFJFuWxxcsr3tUR5NeFGer7vwAAAAAAAABnMWMRq4GUysNDjxb07DjPAwAAAAAAAAA3jsLLxIAhtu1IcuCmLP4yNgAAAAAAAAAH4T44kzE9JU_n4pRF5j5FFwAAAAAAAAAYSq4yJYXB5hEMp7oPtTmUiQAAAAAAAAAimSKMuTauUB6AvF_x3SDLhAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAlNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAADMYfPhlM7fpOuKzX3zIJxLMAAAAAAAAABQkEq_ANJdk0a16aiphLqiOQAAAAAAAAAQprbfaPuvU_n-ucbpjQxQ_AAAAAAAAAAjcZ_9FY4snXfsEZePSiR1IgAAAAAAAABMIqyODyKRDqBBdiCPAauRDgAAAAAAAADg1IYhUhcpiA-eO7MqPXqj1QAAAAAAAABOnt0VAZdwKPtVfJRsjYGLLQAAAAAAAAByqjaz-3R5MGuHG8xBpiPquAAAAAAAAABDKYUKYe5FJokP-mDuLYX4tQAAAAAAAAAJ", "types": "CAN-BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "LWnst4pCYWcBpZh59YPC9g"}} +{"Stacktrace": {"frame": {"ids": "c6lwtZBG2BzNKGtSyzLrTAAAAAAABCWpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGc6lwtZBG2BzNKGtSyzLrTAAAAAAABBZWc6lwtZBG2BzNKGtSyzLrTAAAAAAABWVUam-Z0RfUVY0oYK5VXRDk9wAAAAAABeu4am-Z0RfUVY0oYK5VXRDk9wAAAAAABeopam-Z0RfUVY0oYK5VXRDk9wAAAAAABeePc6lwtZBG2BzNKGtSyzLrTAAAAAAACN4sc6lwtZBG2BzNKGtSyzLrTAAAAAAACNQK1gXEZRnAPQTspGOB36fnyQAAAAAAAYGo1gXEZRnAPQTspGOB36fnyQAAAAAAAXuG1gXEZRnAPQTspGOB36fnyQAAAAAAAWr-1gXEZRnAPQTspGOB36fnyQAAAAAAAMNiUJmIMEc6K8gJ39NHYaD0WwAAAAAACaP_", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "5VenU8ysrrCFtT9Gcxo9mg"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF9Y7z5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF78Kz5k14PsCcDvFyUC1kmlV3QAAAAABFxdxz5k14PsCcDvFyUC1kmlV3QAAAAABGnbP6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuZy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMs6N6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtKD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAilCU", "types": "BgMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2Ttd93Rg_46WVZhFrpwWHQ"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWC4XT4fd_WKeR1cE-hlLelCQAAAAAACil8SXT4fd_WKeR1cE-hlLelCQAAAAAACil3RXT4fd_WKeR1cE-hlLelCQAAAAAACil3RXT4fd_WKeR1cE-hlLelCQAAAAAACil5wXT4fd_WKeR1cE-hlLelCQAAAAAACilNDXT4fd_WKeR1cE-hlLelCQAAAAAACioiG", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8QG_1w4KeN_BoFI4Cgnn2w"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAADaeMmj7SEH4d43NfOGc4LF7AAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAhCJWOdaohdHelEJWcmp16wAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAePPHhe_apJQbRd-Odyq3hXwAAAAAAAAAMx5NpytSG_YNdcrXrWt_K8gAAAAAAAAADp-qjlcqHUIsnp8qk6lKAKgAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFUAoudytoQW3ih_LC4Eo1PwAAAAAAAAAI6KCaUEMhs-L3W4srByFapwAAAAAAAABME5ablZjSwaw4LkNasKqxDQAAAAAAAAAF-CcsAvOgW-5HpOYVDxe2dQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxE5ablZjSwaw4LkNasKqxDQAAAAAAAAAF4LOvEhmkLUiRfaEbnQx1HQAAAAAAAAAI0QROLoLf2_vVtV6rBUCPvgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFaHz0MiA36AOisyCfr3rHrwAAAAAAAAAU3OcYHHsh83oCW5F2NbiqtwAAAAAAAAARkchJhMI6YwGBd2XIo2Em8wAAAAAAAABpVbCJF2qb-nr5O5yW6In1-AAAAAAAAADrAotfU5dw1-Y2g1Ky6UbFIgAAAAAAAAExkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASwB6SgkpYZuozQWVfdG9HpQAAAAAAAAAFwYSMjCzs8hyXbyv1FGq2rQAAAAAAAAA4pVlUGQpw_Cq0LEtbbly5dAAAAAAAAAAkN1WyTlGFxfHgSyYQ3aeHDQAAAAAAAAAOYSP8Ib_W13QEw_Ivysg7FgAAAAAAAAFyn0UYwZH5py59Xu9gAaxkrwAAAAAAAABAm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl5iN7OCAj-2IgmFqLvCWrTwAAAAAAAAESap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlJdvIaoH8miVW9zaDiDOZJwAAAAAAAADSap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlhW8OwmmxjJYCeXfLTZy__QAAAAAAAAFLap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlw4mT2NPQOW-Mg0N_xZsuzAAAAAAAAADgap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlRlK4jZbFueXylWP1GNjNSQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGNSIFqOzUSbaFNAJMWJr8AgAAAAAAAADyap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAlL_sAxM5NHsnYQp22GwDx8gAAAAAAAABwap1UoP8UuWmfI5z-eXnooAAAAAAAAAAFmc5XjIkng3hgjSBfLrVghAAAAAAAAAAycNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAATPOaf2meILyNtXlyuau5zHwAAAAAAAAAKc6zhheBld8wEBO7TlhnPcgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB82g1SAYpsFtnBogFl0v0GAAAAAAAAADJdpQ3bcNFV5Y0XdediaTCQgAAAAAAAAALmmckjE-MysbZhDPP6gNxewAAAAAAAAAydmm7_Hn3SrysHeUffmIe9AAAAAAAAAAfaxxtk6GnkoiqRXb69JxcoAAAAAAAAACge4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJOdkuTNpXjsFc7WV5c_bgKAAAAAAAAAAMjBwquBL06pqJXOt8kphl0gAAAAAAAAAME5ablZjSwaw4LkNasKqxDQAAAAAAAAAFB3TkFubeMsUjXVlcESk9tgAAAAAAAAAMpmiRP16sLzHMk4sQotP67AAAAAAAAAAOqeHIgzzOczGD0wBwOrHP2QAAAAAAAAFJFuWxxcsr3tUR5NeFGer7vwAAAAAAAABnMWMRq4GUysNDjxb07DjPAwAAAAAAAAA3jsLLxIAhtu1IcuCmLP4yNgAAAAAAAAAH4T44kzE9JU_n4pRF5j5FFwAAAAAAAAAYSq4yJYXB5hEMp7oPtTmUiQAAAAAAAAAimSKMuTauUB6AvF_x3SDLhAAAAAAAAAAGun5wCq3YNRPidqAMtgmPSAAAAAAAAAAlNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWzApz81YYlVV3vyuE_NIsRQAAAAAAAAAFLa1p8Zipnj6REaWhYaT-QAAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAmjW43N2PmWvpZYp55bora1gAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHK92zia0pzvb-AxQHNNmLHgAAAAAAAAFYTifPIvND7b7ICq3M7OVoFwAAAAAAAAG8rtJFGuFDWKgkQ_kOhDwLwgAAAAAAAADcmvWNLiibNh2jmnrh-j3LtgAAAAAAAABujtEB8q7ZNk5LwicDPNbPVQAAAAAAAACEi2R-NzFTVFibpge5Dx_BBgAAAAAAAAAqZccN0t7i0EOtwJSEeQbbkQAAAAAAAAIFc1Yo_OPgMzqB1GnTa4udVAAAAAAAAAEhQBbvUVLpPH8FdglduYsmOwAAAAAAAAAsyFBJd9cdNdUZI2XG5UyXfQAAAAAAAAAA", "types": "CAOBBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "C0EL1h6q2z9LqYo98KuOtA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAArsz-bx9jqjuemtiUm8j-_s73zQAAAAAAlFolbx9jqjuemtiUm8j-_s73zQAAAAAAXsgobx9jqjuemtiUm8j-_s73zQAAAAAATTx9bx9jqjuemtiUm8j-_s73zQAAAAAAQE2Pbx9jqjuemtiUm8j-_s73zQAAAAAAQDPXbx9jqjuemtiUm8j-_s73zQAAAAAAlA2vbx9jqjuemtiUm8j-_s73zQAAAAAAlAxCbx9jqjuemtiUm8j-_s73zQAAAAAAlAMpbx9jqjuemtiUm8j-_s73zQAAAAAANAse", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "NGdOEe3DqvxInWQuAHjHQg"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZxyf5INnJibBb8rT_yMcsAAAAAAAAAAEe6HlflPyKAlNlF7JPJCNJQAAAAAAAAFLEe5ZDKMHiVCtP6qAhF9CEQAAAAAAAAGtVyubPqZIpIsaGdq5yyQHTAAAAAAAAAAHH3I9lsKeM021aDJgbYYYAwAAAAAAAABHL6IPi9cG-hWDQ-8_WE6FFQAAAAAAAABdBLpe-z4Yd5pwaMKR_BsaGwAAAAAAAAAMQJL-SfxFsSlqFyMufqU3CAAAAAAAAABceOzzLIU2TSEN-nL8WNPcPQAAAAAAAAAQzcDe-AWheYxyPE1J1pvsUwAAAAAAAAAFAUK9d8NUT-13gC6FtlSmKAAAAAAAAAAQVHW64ADdKWEeKDNfyNMi1wAAAAAAAACLMgCpDbfqkuF0Au3Mi2jaeQAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADNq5-VNNWJnEe4GvJK3_qvJwAAAAAAAADF4J4WxzKvOwTg2PxoPnS9CQAAAAAAAAEJHr4PYZ-sL6e-tu-94q7YcgAAAAAAAAEX09pLhX8Ysxadrvlyzhew7QAAAAAAAACm4CZPHF-aehJgVB8TpitL3wAAAAAAAAAztA5QFhiwL0MKlmqWTTtnMgAAAAAAAAILzkH-QAcWQraJt_RXBXUVJgAAAAAAAAABDDfUAG9Q-Cqwr5La19vRNwAAAAAAAAAhJZAp-_m0--d0j2rImdy6sQAAAAAAAAAAAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "8ErGxWyK7tSZTfHzIvlpiQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8EYxe-SHgukLEpCkawSk1QWAAAAAAAAIcEYxe-SHgukLEpCkawSk1QWAAAAAAAAH1c", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UZmUihfjNXsB5IHKB94LLg"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzScEvvhuguaGYCmGWrnWRz1QAAAAACFAOVcEvvhuguaGYCmGWrnWRz1QAAAAACFAG9cEvvhuguaGYCmGWrnWRz1QAAAAACFGRH", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "CXHYXiiYRCqthG3Eim6xWQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFl0XcEvvhuguaGYCmGWrnWRz1QAAAAACEn81cEvvhuguaGYCmGWrnWRz1QAAAAACErb2cEvvhuguaGYCmGWrnWRz1QAAAAACEsw_", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Zl--muvOuc6G6EaNmRL25Q"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAButi5O7mRcEkooxDaymMu0wAAAAAAAAAnIF_MnS8rAVWeUwDI4pqxHAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpJN8POKdFTVmcFhFa7YyOHwAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABmt4ycYVg2XiTAV2ms4p4XoQAAAAAAAAAaE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFXlU-BoenXM4_Js4U6LFVlQAAAAAAAAAYPOIZ5Wyz4pU5h6J8vQ9SGgAAAAAAAABBIHsYDz2NB6hyLlZKxrgCHwAAAAAAAACSeel_AF4MFS6VTogqEciizwAAAAAAAAA4cNM2tyudZ6M6V5y-h3i6aAAAAAAAAAAFHRhcb8RohRFf4CDhqwMgDQAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB40oG6-IrciuAgTpVOuRhmQAAAAAAAAATPOaf2meILyNtXlyuau5zHwAAAAAAAAAKc6zhheBld8wEBO7TlhnPcgAAAAAAAABCOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB82g1SAYpsFtnBogFl0v0GAAAAAAAAADJdpQ3bcNFV5Y0XdediaTCQgAAAAAAAAALmmckjE-MysbZhDPP6gNxewAAAAAAAAAydmm7_Hn3SrysHeUffmIe9AAAAAAAAAAfaxxtk6GnkoiqRXb69JxcoAAAAAAAAACge4IJeaM1_CfHEZcpw6QpagAAAAAAAAAJOdkuTNpXjsFc7WV5c_bgKAAAAAAAAAAMjBwquBL06pqJXOt8kphl0gAAAAAAAAAME5ablZjSwaw4LkNasKqxDQAAAAAAAAAFB3TkFubeMsUjXVlcESk9tgAAAAAAAAAMpmiRP16sLzHMk4sQotP67AAAAAAAAAAOqeHIgzzOczGD0wBwOrHP2QAAAAAAAAFJFuWxxcsr3tUR5NeFGer7vwAAAAAAAABnMWMRq4GUysNDjxb07DjPAwAAAAAAAAA3zpXAyp1QxqCx0Nj8RG5cPQAAAAAAAAAH7ZmFxDQcUJ2DdUoVkYC-ywAAAAAAAAAIs_5kioXYxGzY-kcJkrkH2gAAAAAAAAAtE5ablZjSwaw4LkNasKqxDQAAAAAAAAAFHy8-YFxh3xFG50wbJun6OAAAAAAAAAAIRA6fryXhwc6j3TqIqI_2kAAAAAAAAACP30E-Hz7p1XPeKvXBRCtMFQAAAAAAAABS-FS5_yzfVdkwZq5k0RkbUgAAAAAAAACP6BwAkRvxd04IN-6a_oJgBgAAAAAAAAAgzBmd40xeIWlVWiaWFnVM2QAAAAAAAAABOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB9iGiBo6WupT2In4pnTz02gAAAAAAAAAdq9NUQMc6iLPRwtCUCQA4JgAAAAAAAAAfG2qWtKA710-HVR2JIOIICwAAAAAAAAB2oTNupbAZc4qBrZLU_h-fogAAAAAAAABYLmvOcg0pOC8EpfUlMJwJ7wAAAAAAAABOoD19bmvIeXt5AY08cDQa7gAAAAAAAABTOr3A_uFtf7YBOMVYzqReaQAAAAAAAAAWZIZSvi1UzeCNllnk1XyijAAAAAAAAAAA", "types": "CAM6BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "KkOQVNXIKJR3_J8glLX38Q"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgJxz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFle2z5k14PsCcDvFyUC1kmlV3QAAAAABFZRC", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "uMc0FZQXFFzUyXqetz2LWA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAcwjoN_o9EY3gERyhEEbPRJAAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAATJNBjIrv1mVfrKFp2wvjJUQAAAAAAAAAHyz69EEqQZdFKMk1kXzfCQQAAAAAAAAAHzwh9xiRdrKmAGk3EmLq3WwAAAAAAAAAC6l3fS_MW7bf80WICMybjsQAAAAAAAAAFUuNmfpE-Nhi4pnRrJjllvAAAAAAAAAA500NNdPuiDBrEpZhGxqSNigAAAAAAAAAdMEmB_ULI2WRWc6UOcg2R1AAAAAAAAADitTrmeASwaORVDoFVTvK_fQAAAAAAAABGAVByGTd87T_9N9GHRNPvXQAAAAAAAAAtl6qjEZsxpyV10ZQK3YpvIwAAAAAAAAEPoG3DRiZKlMZ3sh3A8whkKQAAAAAAAAAy8_3LGlNMADWVmY7MNYKbGgAAAAAAAABKLm-i7mHlXTzn3dRUwPqsywAAAAAAAAAEBYoo4tfxgmh8oDE9G0T8dgAAAAAAAAABGv4-gnM04seHvi2rk7HAtwAAAAAAAAAp55GfxhHkj37-fwWSYe5ibwAAAAAAAAAe", "types": "CQMxBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "lnmcvnDnosSKMTYvgm7Epw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAADxz_WaY2pXtLyni7L_8jKtBgAAAAAAAAAPEIpTc6zorXqtTjOVazk4HwAAAAAAAABogbCFQS2suYv46rP_aUsebAAAAAAAAABpmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAANIfYj4waw9fP9op8fikoTJgAAAAAAAAAGmHLbruajf1ewhD5eRLIwPQAAAAAAAAAEIfYj4waw9fP9op8fikoTJgAAAAAAAAAGu80wzeYkSnSlt8hhdfSXpgAAAAAAAAAsaMdAw5F6bqw1nsXGt00a9AAAAAAAAAAT5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3R8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAANJa8NlMClggx8jaziUTJXlmWAAAAAAAATrU", "types": "CAMxBQID"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "n0jqZglq2abjzUlT0D05Jg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZCp-nNUtRpbAQiql5pm4_xwAAAAAAAABdgvuD6B77CDYBJxa-S1A8kQAAAAAAAAEOJi8QGmnKHoMZnaBBpWbi6gAAAAAAAAAUYzh7NPcZyMhtfRADtWdMlAAAAAAAAAAt7TPQy1lIigGeJ-ojTqWNMgAAAAAAAAByH3Nam0N9mRIAZOe993J4YQAAAAAAAAAY-Bs2aCGqFt3yw3-Yq1K2fwAAAAAAAADre7YYWaQTMh8P2PCVzA2a8gAAAAAAAAA5gpzmfljwMvF6axjuntzBmAAAAAAAAAABtGdjZjM6jJA23WbdtVpvAwAAAAAAAAAQyjC5toyTYYvkrIN0ixwqTgAAAAAAAAAJ", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "veHHye3RGZjcYCL2YcxwZg"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZ3u8AEZ2OY4uk0289o_PdQAAAAAAAAABiUDU1_CPvfFPVWUEWglidAAAAAAAAAAAoWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgg8ia7_SjtnnoFsx8t6EVmgAAAAAAAAACS4pDMZQIDu6mVxa95R8FGQAAAAAAAAAdeNbj51SwVufxZ4R3ztSduAAAAAAAAAAMRLw4AzQ1twQD4Yf1dhVtogAAAAAAAAAICEhlVwLkGcF6wPQ9FYzYUQAAAAAAAAAFEqtQxEspQTRRSSWWTkm-NgAAAAAAAAAJnPcpIVOjAbk4oUD0VpGGhQAAAAAAAAABZ_WnWFmJraaLolV8hl2sigAAAAAAAAADWt0sf_JgSqOTKaBcf1zgawAAAAAAAAB7FzJF8qZ49M3tzNcHAYKOpwAAAAAAAAAHcx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAAjYKoBBl0G_e9oE7cFaZfzDAAAAAAAAAAZjPboacU0YKXwkYKndASIHgAAAAAAAAAFvbgAMp4MJN-LIAvT-yH7-gAAAAAAAAAJPd5OqqDz0t7_uFB84tFFYgAAAAAAAAAFp8jexvuOHfTNZvsBxu9edAAAAAAAAAAGoMng7OrVjQmIrTztsgmIBgAAAAAAAAACN1yQmT_9n6cWItzZGETCQAAAAAAAAAAHcW83SXox2LT9tGyYE9o19AAAAAAAAAA6WZQZJR8GL_maEntEY7GcngAAAAAAAAADN2l90EY7421Zg1g-1T_v1AAAAAAAAAAE-DPNVL1TcvLrgQ4V1LL_zwAAAAAAAAHX", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "TLhtcjKAgbEdfw_zbyPIwA"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-wCEXT4fd_WKeR1cE-hlLelCQAAAAAACkSCA", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "xFk7zQayaC92LKFIiFZIXw"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAAGkuWcUG2bf_MgJpXpuAZivRAAAAAAAAAAx0nBVkJrBQHU_wusVG6_3KQAAAAAAAAB96PDTyNLwDP2GCrVJoblLzgAAAAAAAABIciQsV4oUc5gYfL4dony27QAAAAAAAAAnOIU72g2wQhgyLETe_w4R1gAAAAAAAAAA", "types": "CQM6BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2M9F42C3cPsKb-frscdh9A"}} +{"Stacktrace": {"frame": {"ids": "FyXDR9UuNGXTbBJptWFcKwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYI8DDAjVJl721y2vxKHGSBegAAAAAAyUNH8DDAjVJl721y2vxKHGSBegAAAAAA5HKP8DDAjVJl721y2vxKHGSBegAAAAAA49it8DDAjVJl721y2vxKHGSBegAAAAAAlT598DDAjVJl721y2vxKHGSBegAAAAAAiFDh8DDAjVJl721y2vxKHGSBegAAAAAAiDi0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcoiHXy47Qw5euydEoPUexRgAAAAAAAAAga67hy6D4_aH__IrzfMid7wAAAAAAAAABrXg08pRb0PXnBBxadl4kCgAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZf4KmPLa6_uw8gRgiw9EUAAAAAAAAAE4ihprad0bkU-u2IU9StodIgAAAAAAAAEqfmVqFyGK_erbPbR830tm8gAAAAAAAAAGGqtKw4RB3R19EQhu6EuSBwAAAAAAAABEoSePRGhk9APbC-LdyaI32gAAAAAAAACRCbdDmMKBlXYo9bdav2WFiAAAAAAAAAC-SSUIew2Sa--7leh89Jd_rgAAAAAAAABHgSGP_ES8zBVTOvRrThL2MgAAAAAAAACAwrGTszw_tSixGUdZNDOq7AAAAAAAAACN2EOfsQbApgG4RbgJc2m_FgAAAAAAAAHRTb0WlBVBkaK2mAIu8Lhe5gAAAAAAAAAkW25rCJpWwcAu_jUXA-ofzQAAAAAAAAAFJKCpWialf-jSWEyybbivbgAAAAAAAAAZWtdrATsjEqDZ5vTv6vPP0QAAAAAAAAAA", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "f-xSeXYlwr_R__rETMAfLQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBOeYxe-SHgukLEpCkawSk1QWAAAAAABWB4EYxe-SHgukLEpCkawSk1QWAAAAAABV_5c", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Js_WPoIkhx5gcFZ6huQvxw"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2q2cEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxjVcEvvhuguaGYCmGWrnWRz1QAAAAACEN8ucEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEWKo", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "UrIH6hgBxUDeEf4vC-j13Q"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMYZBmumN7B74DCts0HLEQGQAAAAAAAAAVUCnmJL_-MJgM9JSMBPzPxQAAAAAAAAAESI-THagm7WOCUtDdZGu7SwAAAAAAAAABPvCj-Ab34SfIYTR_F-HgGwAAAAAAAACdFTxQJid-O66-FuYdEDBjgwAAAAAAAAAfif-A_N21fy6ux02lu8iQvQAAAAAAAABDn2S0SyZv0DZ6ex1YiCzcfAAAAAAAAABHQ4jw5JHGkPC3MdanjDSu0gAAAAAAAAAcipf9vBk16l7hoPZLPzmugAAAAAAAAAAkjimseSpjBNWbZ4eHcfFIAwAAAAAAAAAlB-Oe_OuJ2Xvt27AtRop-VwAAAAAAAAAMfdVymRP0v5Xa8xgKjz9rGwAAAAAAAAA9DRWeWid83QDDYtOiSqJEvAAAAAAAAAALHdbjDGqcyeXdawK4ayl-8QAAAAAAAACv8FITX_M8xZfe7i7TCZCgqgAAAAAAAABt7jYCNzkb9MmHUrU5CHQXAwAAAAAAAACk7qz18bHgG-Zc_fVo9Dsh7AAAAAAAAAAiLDdYUFmfmBXmyn1AQ_9arwAAAAAAAAC8ONigPeL1dq_jh4iKyfGgcgAAAAAAAAAStwASLq5QV6PtFM2KeIje5wAAAAAAAADMCyFPDZBEiXoheKAUx-Kq0wAAAAAAAAAA", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "i_NdJnu7ybq6fBIO714GNg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXUptYxe-SHgukLEpCkawSk1QWAAAAAABXVjkYxe-SHgukLEpCkawSk1QWAAAAAABXVBsYxe-SHgukLEpCkawSk1QWAAAAAABXZL0Yxe-SHgukLEpCkawSk1QWAAAAAABV2wlYxe-SHgukLEpCkawSk1QWAAAAAABV2kuYxe-SHgukLEpCkawSk1QWAAAAAABV6lrYxe-SHgukLEpCkawSk1QWAAAAAABV5BMYxe-SHgukLEpCkawSk1QWAAAAAAAB_po", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "eDsx8SGe61uuwG9gmqSj5Q"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUm6", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "2FO6mUwKH4shOgUheDEvWg"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD0iK", "types": "HAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "ViebNdABRRrwrcxNcWnJEw"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcRUYxe-SHgukLEpCkawSk1QWAAAAAAAAUBO", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "FsCxMtizAzay8smRGSitBw"}} +{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyn-Z3CKaS4aU08RhYA19y5ITQAAAAABzzudZ3CKaS4aU08RhYA19y5ITQAAAAABvWXKZ3CKaS4aU08RhYA19y5ITQAAAAABtHkpZ3CKaS4aU08RhYA19y5ITQAAAAABtHLPZ3CKaS4aU08RhYA19y5ITQAAAAABtQzD", "types": "HgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RcNPwSZ_RRjUo3KUMQkJwg"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSEYxe-SHgukLEpCkawSk1QWAAAAAAAFzhzYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHZdw6tVKI4mSYDEJ-ABAIpYXcgAAAAAACli46tVKI4mSYDEJ-ABAIpYXcgAAAAAAClha6tVKI4mSYDEJ-ABAIpYXcgAAAAAARNxe6tVKI4mSYDEJ-ABAIpYXcgAAAAAASc3-", "types": "CQMIBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "Exn_8xTlBgjYEBW741hd8A"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADHmXqXT4fd_WKeR1cE-hlLelCQAAAAAADHmkkXT4fd_WKeR1cE-hlLelCQAAAAAADHm4cXT4fd_WKeR1cE-hlLelCQAAAAAADB6QhXT4fd_WKeR1cE-hlLelCQAAAAAADQm1kXT4fd_WKeR1cE-hlLelCQAAAAAADQnNrXT4fd_WKeR1cE-hlLelCQAAAAAADQjwNXT4fd_WKeR1cE-hlLelCQAAAAAADQjKNXT4fd_WKeR1cE-hlLelCQAAAAAADQjhKXT4fd_WKeR1cE-hlLelCQAAAAAADQiNWXT4fd_WKeR1cE-hlLelCQAAAAAADQS7TXT4fd_WKeR1cE-hlLelCQAAAAAADQSvdXT4fd_WKeR1cE-hlLelCQAAAAAADQcbrXT4fd_WKeR1cE-hlLelCQAAAAAADQUPp", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "1L4u4X7zg9e093vp0rVvgA"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALO-i40hQb92bY-JOhJrV2owAAAAAAAAAs6l-EHm0OnthNsvyaQcuYhwAAAAAAAAA4B0dgEMrPDFjx8i017hyU1wAAAAAAAABbYF3FgsmtJ5bq5eUQFvPU3AAAAAAAAAAe1MY1Nuqea_D-u-FFo2a_-AAAAAAAAAAly_zLcqsLm1pyxWcSerbeRAAAAAAAAABXAAAAAAAAV4sAAAAAAAAAHWb_4j8Xam4zbx9jqjuemtiUm8j-_s73zQAAAAAAnIK-bx9jqjuemtiUm8j-_s73zQAAAAAAkUUQbx9jqjuemtiUm8j-_s73zQAAAAAAkSKdbx9jqjuemtiUm8j-_s73zQAAAAAAkR81", "types": "CQMJBQQD"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "MOMLGeZHNRPNfebm294vfQ"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEgCr", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "nW1FnTdTo9f3ftknDCYiXA"}} +{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgLC", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "GlDj3gtN-SiDm_OlOLXbgQ"}} +{"Stacktrace": {"frame": {"ids": "4rFFPORY8_4FvK9QaA3QUQAAAAAADLHJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG4rFFPORY8_4FvK9QaA3QUQAAAAAADLg44rFFPORY8_4FvK9QaA3QUQAAAAAAEcDs4rFFPORY8_4FvK9QaA3QUQAAAAAAEcbB4rFFPORY8_4FvK9QaA3QUQAAAAAAEhP-4rFFPORY8_4FvK9QaA3QUQAAAAAADxKo4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5A24rFFPORY8_4FvK9QaA3QUQAAAAAAEMHn4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5Cd4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAADiYq4rFFPORY8_4FvK9QaA3QUQAAAAAAEk5J4rFFPORY8_4FvK9QaA3QUQAAAAAAElKd4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD2ke4rFFPORY8_4FvK9QaA3QUQAAAAAADdRN4rFFPORY8_4FvK9QaA3QUQAAAAAAEM3L4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD5YF4rFFPORY8_4FvK9QaA3QUQAAAAAADxmJ4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD4jP4rFFPORY8_4FvK9QaA3QUQAAAAAAD0SI", "types": "SwM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "vSzi5YquMyeNaQW9B4sDZw"}} +{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAAKsF2L9Bd3XIiGWasJdN8trI5tgAAAAAADQMCL9Bd3XIiGWasJdN8trI5tgAAAAAADRlmL9Bd3XIiGWasJdN8trI5tgAAAAAADRciL9Bd3XIiGWasJdN8trI5tgAAAAAAB5pNL9Bd3XIiGWasJdN8trI5tgAAAAAAB-Y7L9Bd3XIiGWasJdN8trI5tgAAAAAACA4_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz7y", "types": "CAMEBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "z861aVFL7X0OdKVxd3X_iw"}} +{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAGx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABW1vmWfRl7JvnIelrwmbOFDwAAAAAAAAB2P_qKgj6OkmYBLfen5yPH6AAAAAAAAADlitfZdu4NdI0YJrHcgeE-TwAAAAAAAACXJS-WjNz0QulnqSlnIs8U0wAAAAAAAADS7Ormen3KBfy8FXv7OmF-kAAAAAAAAAHyavfO9wX8Y6wuHuPsqC9ogQAAAAAAAAAkZuSiv65WwcAu_jfpG6ANPQAAAAAAAAAFxF5VGC2U_MH-71_OPOmawgAAAAAAAAAZRcLwtzOrbCJ2S4fnMoo41AAAAAAAAAB7FS1bL4hzYgOQRasRTmaMCwAAAAAAAAARjYKah-GaJpbI-jAwYcFi1QAAAAAAAAAIbu6t-WTb-nsfb-QwFBEV_QAAAAAAAAA9D0rVr9r2i8CRuvzOSp3RnAAAAAAAAAACqk_n1ecQPsBsNva7iBiLPgAAAAAAAAAFpE_XF-eq0tBl0fP7Y7zrSwAAAAAAAABpYav7N1kdPMXfEfZ1xXIznAAAAAAAAAANDYw6-LyNoVsQdM43hcJCegAAAAAAAAAI3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAA8c6UeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAOjK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBs-", "types": "CAMfBQIDBQQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "17yX6y3HjSnExB70KLrL_w"}} +{"Stacktrace": {"frame": {"ids": "0rNuxKNw6YxtKvsF6kS_jQAAAAAAD9_8Fr4KuuAdcuLzUhqxYoXsLwAAAAAAAIGDbx9jqjuemtiUm8j-_s73zQAAAAAAkqM3bx9jqjuemtiUm8j-_s73zQAAAAAAp5ibbx9jqjuemtiUm8j-_s73zQAAAAAAp5dSbx9jqjuemtiUm8j-_s73zQAAAAAAcvvPbx9jqjuemtiUm8j-_s73zQAAAAAAaUhGbx9jqjuemtiUm8j-_s73zQAAAAAAaUOgbx9jqjuemtiUm8j-_s73zQAAAAAAaT6VAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q2G2YAE5E-WzjIyC0s2f6zwAAAAAAAAALcsotpmL-bpzm5_5AqBwK6QAAAAAAAAAFlxDMCKyBgMkjyrqMzH8oCwAAAAAAAABfr6OQqChD9ydemA0TTpv7WwAAAAAAAAABU2OB6E0b4vSt6xrKOQ5XoQAAAAAAAAAc4J1WiYyLhcHyj3PuCSYBewAAAAAAAAAMn5khUe3Gm7hkIvEOmUOLJQAAAAAAAAA720-1J-PlXPjZR4X3WZE6lQAAAAAAAADAx0bCzKDL5Lb-tUCB__rdCQAAAAAAAAFh-dCLwO5wySWo4Ufen5TsOAAAAAAAAAALrIEKDf_JcvZvJASJgvTasgAAAAAAAAABTmzQelMX43KPMwjrLHXzKgAAAAAAAAAHdPrFv_oNmQQvcyFWj8z9dgAAAAAAAABjYloDcqr0CPNgxE3d9TL7DgAAAAAAAAAIvlT6chcaANOrBrrDI8IREAAAAAAAAAACmZOg3rJ-TYIxtUo-97N-mgAAAAAAAAAIrD7cM-A9XXlHFS-efShWpgAAAAAAAAAJHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFfi7D3YcEsv1vKsv3sPjumQAAAAAAAAAY0g23KMO5w_-owkeAZD-MsAAAAAAAAACbMnUsiqWoybkve-dS3xf9SQAAAAAAAAAcg4gMugAmfKAgFkmzrjjQZwAAAAAAAACRxEuTwZECmqqpgzRH-YLAFAAAAAAAAAAG_SSlx9pfxp8SEAn8asfwYAAAAAAAAAAW6NMC_vRraRdIrKdbsoV7kwAAAAAAAAAcIV_lXJI4Ix9lRIA8TMUC9wAAAAAAAAARHiEDEcnQR4PPwvPWGnvbhgAAAAAAAAAFNydFwQjPoz3616OzRlBFxAAAAAAAAAAQVPOET4zqXZqUIvz8opqY5wAAAAAAAAAlfHwOxyP169K9CQO3cKSjNgAAAAAAAAABr6OQqChD9ydemA0TTpv7WwAAAAAAAAABs88VTFFDMDQHDQb2iR_qzQAAAAAAAAAT3UIom3SXuFZET6ku9VTGIwAAAAAAAAAHKxqMoc3LCiU70OJLD23WsQAAAAAAAAAJOhwRwPlI-WXSbymgmwmRggAAAAAAAAAwIHa31Kt95ZEX4I86HsYJtAAAAAAAAAAfSoCitQSD6FIizAVcmZ6tAAAAAAAAAAA_guBgiAg8Ch-Smg84HvWKmgAAAAAAAAAdsq7Y2xPF5FUyq9xm2XkJeAAAAAAAAAAjMPUPIIZ8YR9tF3ca0o3T1wAAAAAAAAC-1ccdAG7WAKSDnVZeLuw63gAAAAAAAAAFM_7vr1XfKLL1gxMHO-w50wAAAAAAAAAED1zKwC0RpAfeJUlfitr_CgAAAAAAAAAEiCj0oXheYrq0AjmSVHYf2gAAAAAAAAATmUEurpTUVXaIUXfqgQuyWwAAAAAAAAAQEWzE-qlre-z5rqSoubbNBAAAAAAAAAACovRPcszTde0VZh4hrqQUtwAAAAAAAAAsBTN7_aRtwqC-dRbt6gL2HAAAAAAAAAAajpeW1PajV35WIXdPugFMIAAAAAAAAAAe7onZ3NmSj0FEePbgnYkAdgAAAAAAAAAOsOsHghooPCgPd4-d0ojulAAAAAAAAAAm5eWztjuadZyU6X7HBypcZgAAAAAAAAGkuWcUG2bf_MgJpXpuAZivRAAAAAAAAAAx0nBVkJrBQHU_wusVG6_3KQAAAAAAAAB96PDTyNLwDP2GCrVJoblLzgAAAAAAAABIciQsV4oUc5gYfL4dony27QAAAAAAAAAnOIU72g2wQhgyLETe_w4R1gAAAAAAAAAFgRIeCgEmQvGu3TyGRA0y2wAAAAAAAAAGWHc6TeyRQEqs6LkNUiVKVQAAAAAAAAAzE7Si9KeNnLhexcT10oHiFQAAAAAAAAAX", "types": "CQM9BQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "AcDJOgevQpasXvgzQzhZyA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABrazRgtQ4kMk_MBWrPUAFqVnYywAAAAABrYI4gtQ4kMk_MBWrPUAFqVnYywAAAAABrQtc", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "RAEEiLKRi0cpDpUvgRHHmw"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAA7", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "SDmVY9Mljfrd1uHcDiDp-Q"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChGI0XT4fd_WKeR1cE-hlLelCQAAAAAACg6T7XT4fd_WKeR1cE-hlLelCQAAAAAACh1L_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuoD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00i6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0yh6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "BgMKBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "6M_I7UVl77oqDi3cuEEQ5A"}} +{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAAX3IqZSkKN3zNxr0HYuO2pqe5hQAAAAAAdnyHZSkKN3zNxr0HYuO2pqe5hQAAAAAAdnxkZSkKN3zNxr0HYuO2pqe5hQAAAAAAdU3GZSkKN3zNxr0HYuO2pqe5hQAAAAAAb-pwZSkKN3zNxr0HYuO2pqe5hQAAAAAAdU9B", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "qOy5xmk_cQRqgv6xvrCJqg"}} +{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjXzz5k14PsCcDvFyUC1kmlV3QAAAAABGOHuz5k14PsCcDvFyUC1kmlV3QAAAAABGN3rz5k14PsCcDvFyUC1kmlV3QAAAAABGZEQz5k14PsCcDvFyUC1kmlV3QAAAAABGNSVz5k14PsCcDvFyUC1kmlV3QAAAAABGPJ9z5k14PsCcDvFyUC1kmlV3QAAAAABGTGnz5k14PsCcDvFyUC1kmlV3QAAAAABGSeJz5k14PsCcDvFyUC1kmlV3QAAAAABGTPM", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "kVJlAojvJIwNgoRAlARkqQ"}} +{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABFqkYxe-SHgukLEpCkawSk1QWAAAAAAABFqkYxe-SHgukLEpCkawSk1QWAAAAAAABqcc6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "BgMCBA"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "mMJCEhMX2OqRBO9KjY8WmA"}} +{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJKTEgtQ4kMk_MBWrPUAFqVnYywAAAAACJKu8gtQ4kMk_MBWrPUAFqVnYywAAAAACJKOcgtQ4kMk_MBWrPUAFqVnYywAAAAACJGfdgtQ4kMk_MBWrPUAFqVnYywAAAAACJEnagtQ4kMk_MBWrPUAFqVnYywAAAAAB1YosgtQ4kMk_MBWrPUAFqVnYywAAAAAB1YgbgtQ4kMk_MBWrPUAFqVnYywAAAAAB1KskgtQ4kMk_MBWrPUAFqVnYywAAAAAB1LIGgtQ4kMk_MBWrPUAFqVnYywAAAAAB1IpYgtQ4kMk_MBWrPUAFqVnYywAAAAABvM6NgtQ4kMk_MBWrPUAFqVnYywAAAAABvOWIgtQ4kMk_MBWrPUAFqVnYywAAAAABr59GgtQ4kMk_MBWrPUAFqVnYywAAAAABr6ClgtQ4kMk_MBWrPUAFqVnYywAAAAABr9jvgtQ4kMk_MBWrPUAFqVnYywAAAAABsAm7", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-stacktraces", "_id": "upTWniMdF91y_cOS-OvN3g"}} +{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmnV", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692602063, "ecs.version": "1.12.0", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "ec2.instance_life_cycle": "on-demand", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.disable_tls": false, "ec2.ami_id": "ami-123", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "ec2.hostname": "ip-192-168-1-2", "ec2.security_groups": "default", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "ec2.placement.availability_zone_id": "a", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.version": "v3.1.0", "profiling.agent.config.probabilistic_threshold": 100, "ec2.profile": "default-hvm", "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.config.max_elements_per_interval": 800, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.start_time": 1691520070253, "ec2.instance_id": "i-19216812", "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.no_kernel_version_check": false, "ec2.mac": "06:04:03:02:01:00", "ec2.local_ipv4": "192.168.1.2", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.known_traces_entries": 65536, "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.config.verbose": false, "profiling.host.ip": "192.168.1.2", "ec2.ami_manifest_path": "(unknown)", "profiling.host.name": "ip-172-23-180-16", "profiling.host.kernel_version": "9.9.9-0", "ec2.instance_type": "unknown", "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.config.elastic_mode": false, "profiling.agent.config.tracers": "all", "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.upload_symbols": false, "ec2.placement.region": "eu-west-1", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.map_scale_factor": 0, "profiling.agent.config.bpf_log_level": 0, "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.host.tags": ["environment:qa"]} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692556019, "ecs.version": "1.12.0", "ec2.security_groups": "default", "profiling.agent.config.disable_tls": false, "ec2.instance_id": "i-19216812", "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.tracers": "all", "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.revision": "head-be593ef3", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "ec2.profile": "default-hvm", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.map_scale_factor": 0, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.host.tags": ["environment:qa"], "ec2.ami_id": "ami-123", "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.version": "v3.1.0", "profiling.agent.config.max_elements_per_interval": 800, "profiling.agent.config.bpf_log_size": 65536, "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "ec2.mac": "06:04:03:02:01:00", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.config.elastic_mode": false, "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.start_time": 1691520070253, "profiling.host.ip": "192.168.1.2", "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.verbose": false, "ec2.hostname": "ip-192-168-1-2", "ec2.placement.availability_zone_id": "a", "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.upload_symbols": false, "profiling.host.name": "ip-172-23-180-16", "profiling.agent.config.no_kernel_version_check": false, "ec2.instance_life_cycle": "on-demand", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.agent.config.probabilistic_interval": "1m0s", "ec2.ami_manifest_path": "(unknown)", "ec2.instance_type": "unknown", "ec2.placement.region": "eu-west-1"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692579041, "ecs.version": "1.12.0", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.tracers": "all", "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.upload_symbols": false, "profiling.host.ip": "192.168.1.2", "ec2.ami_manifest_path": "(unknown)", "ec2.placement.availability_zone_id": "a", "ec2.instance_type": "unknown", "profiling.agent.config.verbose": false, "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "ec2.ami_id": "ami-123", "profiling.agent.config.elastic_mode": false, "ec2.local_ipv4": "192.168.1.2", "profiling.agent.revision": "head-be593ef3", "ec2.hostname": "ip-192-168-1-2", "ec2.security_groups": "default", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.disable_tls": false, "ec2.mac": "06:04:03:02:01:00", "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.host.tags": ["environment:qa"], "ec2.profile": "default-hvm", "profiling.agent.config.bpf_log_level": 0, "ec2.instance_id": "i-19216812", "profiling.agent.version": "v3.1.0", "profiling.agent.config.no_kernel_version_check": false, "profiling.host.name": "ip-172-23-180-16", "profiling.agent.config.map_scale_factor": 0, "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.agent.config.probabilistic_threshold": 100, "ec2.instance_life_cycle": "on-demand", "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "ec2.placement.region": "eu-west-1", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.config.max_elements_per_interval": 800, "profiling.agent.config.known_traces_entries": 65536, "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.start_time": 1691520070253} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691520071, "ecs.version": "1.12.0", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.config.upload_symbols": false, "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.config.no_kernel_version_check": false, "profiling.agent.config.verbose": false, "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.agent.config.disable_tls": false, "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.config.tracers": "all", "profiling.agent.config.bpf_log_level": 0, "ec2.profile": "default-hvm", "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.start_time": 1691520070253, "ec2.placement.availability_zone_id": "a", "ec2.instance_type": "unknown", "ec2.security_groups": "default", "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.known_traces_entries": 65536, "ec2.ami_manifest_path": "(unknown)", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "ec2.instance_id": "i-19216812", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.elastic_mode": false, "profiling.host.tags": ["environment:qa"], "ec2.instance_life_cycle": "on-demand", "ec2.placement.region": "eu-west-1", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.host.name": "ip-172-23-180-16", "profiling.agent.version": "v3.1.0", "ec2.mac": "06:04:03:02:01:00", "ec2.ami_id": "ami-123", "ec2.hostname": "ip-192-168-1-2", "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.probabilistic_threshold": 100, "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "ec2.local_ipv4": "192.168.1.2", "profiling.agent.build_timestamp": 1688111067, "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.host.ip": "192.168.1.2", "profiling.agent.config.map_scale_factor": 0, "profiling.agent.config.max_elements_per_interval": 800, "ec2.placement.availability_zone": "eu-west-1a"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691543094, "ecs.version": "1.12.0", "profiling.agent.config.present_cpu_cores": 8, "ec2.hostname": "ip-192-168-1-2", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.config.max_elements_per_interval": 800, "profiling.host.tags": ["environment:qa"], "profiling.agent.config.elastic_mode": false, "ec2.ami_manifest_path": "(unknown)", "ec2.ami_id": "ami-123", "ec2.instance_type": "unknown", "profiling.agent.config.map_scale_factor": 0, "ec2.instance_id": "i-19216812", "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.host.kernel_version": "9.9.9-0", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.host.ip": "192.168.1.2", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.start_time": 1691520070253, "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "ec2.mac": "06:04:03:02:01:00", "ec2.instance_life_cycle": "on-demand", "profiling.agent.config.no_kernel_version_check": false, "profiling.host.name": "ip-172-23-180-16", "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "ec2.security_groups": "default", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.tracers": "all", "ec2.profile": "default-hvm", "profiling.agent.config.upload_symbols": false, "profiling.agent.config.disable_tls": false, "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.agent.version": "v3.1.0", "ec2.placement.region": "eu-west-1", "ec2.placement.availability_zone_id": "a", "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.bpf_log_size": 65536, "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.verbose": false, "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.build_timestamp": 1688111067} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691566114, "ecs.version": "1.12.0", "profiling.agent.version": "v3.1.0", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.agent.config.elastic_mode": false, "profiling.agent.start_time": 1691520070253, "profiling.agent.config.probabilistic_threshold": 100, "ec2.mac": "06:04:03:02:01:00", "ec2.instance_type": "unknown", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.host.ip": "192.168.1.2", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "ec2.profile": "default-hvm", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.upload_symbols": false, "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.bpf_log_level": 0, "profiling.host.name": "ip-172-23-180-16", "ec2.ami_manifest_path": "(unknown)", "ec2.placement.availability_zone_id": "a", "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.config.map_scale_factor": 0, "ec2.instance_id": "i-19216812", "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.config.verbose": false, "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "ec2.placement.region": "eu-west-1", "ec2.instance_life_cycle": "on-demand", "profiling.host.tags": ["environment:qa"], "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "ec2.security_groups": "default", "ec2.ami_id": "ami-123", "profiling.agent.build_timestamp": 1688111067, "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.config.no_kernel_version_check": false, "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.disable_tls": false, "profiling.agent.config.max_elements_per_interval": 800, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.tracers": "all"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691589136, "ecs.version": "1.12.0", "profiling.host.ip": "192.168.1.2", "profiling.agent.config.max_elements_per_interval": 800, "profiling.agent.config.disable_tls": false, "profiling.agent.config.probabilistic_interval": "1m0s", "ec2.ami_manifest_path": "(unknown)", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "ec2.instance_type": "unknown", "profiling.host.name": "ip-172-23-180-16", "profiling.agent.config.elastic_mode": false, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.no_kernel_version_check": false, "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.verbose": false, "profiling.host.tags": ["environment:qa"], "ec2.profile": "default-hvm", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.tracers": "all", "profiling.host.kernel_version": "9.9.9-0", "ec2.placement.region": "eu-west-1", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.config.upload_symbols": false, "ec2.instance_life_cycle": "on-demand", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.agent.config.probabilistic_threshold": 100, "ec2.ami_id": "ami-123", "ec2.mac": "06:04:03:02:01:00", "profiling.agent.version": "v3.1.0", "ec2.hostname": "ip-192-168-1-2", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.instance_id": "i-19216812", "profiling.agent.start_time": 1691520070253, "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "ec2.security_groups": "default", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.map_scale_factor": 0, "profiling.agent.revision": "head-be593ef3", "ec2.local_ipv4": "192.168.1.2", "ec2.placement.availability_zone_id": "a", "ec2.placement.availability_zone": "eu-west-1a"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691612159, "ecs.version": "1.12.0", "ec2.profile": "default-hvm", "ec2.instance_id": "i-19216812", "ec2.mac": "06:04:03:02:01:00", "profiling.agent.config.verbose": false, "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.version": "v3.1.0", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "ec2.placement.region": "eu-west-1", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.config.upload_symbols": false, "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.ami_id": "ami-123", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.config.tracers": "all", "profiling.agent.start_time": 1691520070253, "profiling.host.tags": ["environment:qa"], "ec2.security_groups": "default", "profiling.agent.config.map_scale_factor": 0, "profiling.agent.config.no_kernel_version_check": false, "profiling.host.kernel_version": "9.9.9-0", "ec2.instance_life_cycle": "on-demand", "profiling.host.name": "ip-172-23-180-16", "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.config.probabilistic_interval": "1m0s", "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.disable_tls": false, "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.bpf_log_level": 0, "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.config.max_elements_per_interval": 800, "ec2.placement.availability_zone": "eu-west-1a", "profiling.instance.private_ipv4s": ["192.168.1.2"], "ec2.ami_manifest_path": "(unknown)", "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.probabilistic_threshold": 100, "ec2.hostname": "ip-192-168-1-2", "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.elastic_mode": false, "profiling.host.ip": "192.168.1.2", "profiling.agent.config.present_cpu_cores": 8, "ec2.instance_type": "unknown", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "ec2.placement.availability_zone_id": "a"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691635177, "ecs.version": "1.12.0", "profiling.agent.config.known_traces_entries": 65536, "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.tracers": "all", "ec2.ami_manifest_path": "(unknown)", "ec2.security_groups": "default", "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "ec2.hostname": "ip-192-168-1-2", "ec2.instance_type": "unknown", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.revision": "head-be593ef3", "ec2.profile": "default-hvm", "profiling.agent.start_time": 1691520070253, "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.elastic_mode": false, "ec2.local_ipv4": "192.168.1.2", "ec2.mac": "06:04:03:02:01:00", "profiling.agent.config.present_cpu_cores": 8, "ec2.placement.availability_zone_id": "a", "profiling.host.name": "ip-172-23-180-16", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.placement.region": "eu-west-1", "ec2.instance_life_cycle": "on-demand", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.host.ip": "192.168.1.2", "profiling.agent.version": "v3.1.0", "profiling.agent.config.no_kernel_version_check": false, "profiling.agent.config.max_elements_per_interval": 800, "ec2.ami_id": "ami-123", "profiling.host.tags": ["environment:qa"], "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.config.map_scale_factor": 0, "ec2.instance_id": "i-19216812", "profiling.agent.config.upload_symbols": false, "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.disable_tls": false, "profiling.agent.config.verbose": false} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691658201, "ecs.version": "1.12.0", "profiling.agent.config.upload_symbols": false, "profiling.agent.config.elastic_mode": false, "profiling.host.name": "ip-172-23-180-16", "profiling.agent.config.map_scale_factor": 0, "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.host.ip": "192.168.1.2", "profiling.host.tags": ["environment:qa"], "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.mac": "06:04:03:02:01:00", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.host.kernel_version": "9.9.9-0", "ec2.instance_type": "unknown", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.start_time": 1691520070253, "ec2.local_ipv4": "192.168.1.2", "ec2.security_groups": "default", "ec2.profile": "default-hvm", "profiling.agent.config.disable_tls": false, "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.no_kernel_version_check": false, "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.config.bpf_log_level": 0, "profiling.agent.build_timestamp": 1688111067, "ec2.instance_life_cycle": "on-demand", "profiling.agent.config.tracers": "all", "ec2.placement.region": "eu-west-1", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.version": "v3.1.0", "ec2.placement.availability_zone_id": "a", "profiling.agent.config.verbose": false, "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.present_cpu_cores": 8, "ec2.ami_manifest_path": "(unknown)", "profiling.agent.revision": "head-be593ef3", "profiling.instance.private_ipv4s": ["192.168.1.2"], "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.max_elements_per_interval": 800, "ec2.ami_id": "ami-123", "profiling.agent.config.known_traces_entries": 65536, "ec2.instance_id": "i-19216812"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691681222, "ecs.version": "1.12.0", "profiling.agent.config.elastic_mode": false, "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "ec2.placement.region": "eu-west-1", "profiling.agent.revision": "head-be593ef3", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "ec2.instance_type": "unknown", "profiling.agent.config.tracers": "all", "profiling.host.ip": "192.168.1.2", "ec2.security_groups": "default", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.no_kernel_version_check": false, "ec2.ami_id": "ami-123", "ec2.instance_life_cycle": "on-demand", "profiling.agent.config.disable_tls": false, "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "ec2.ami_manifest_path": "(unknown)", "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.config.probabilistic_threshold": 100, "ec2.instance_id": "i-19216812", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.agent.config.max_elements_per_interval": 800, "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.mac": "06:04:03:02:01:00", "profiling.agent.config.present_cpu_cores": 8, "ec2.placement.availability_zone": "eu-west-1a", "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.upload_symbols": false, "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.verbose": false, "profiling.agent.version": "v3.1.0", "profiling.agent.config.bpf_log_size": 65536, "ec2.placement.availability_zone_id": "a", "profiling.host.tags": ["environment:qa"], "ec2.profile": "default-hvm", "profiling.host.name": "ip-172-23-180-16", "profiling.agent.config.map_scale_factor": 0, "profiling.agent.build_timestamp": 1688111067, "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.start_time": 1691520070253, "ec2.local_ipv4": "192.168.1.2"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691704241, "ecs.version": "1.12.0", "ec2.instance_id": "i-19216812", "profiling.agent.config.no_kernel_version_check": false, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.upload_symbols": false, "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.build_timestamp": 1688111067, "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "ec2.placement.region": "eu-west-1", "profiling.agent.config.max_elements_per_interval": 800, "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "ec2.placement.availability_zone_id": "a", "profiling.instance.private_ipv4s": ["192.168.1.2"], "ec2.ami_manifest_path": "(unknown)", "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.elastic_mode": false, "profiling.host.tags": ["environment:qa"], "profiling.agent.config.tracers": "all", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.agent.start_time": 1691520070253, "profiling.agent.config.verbose": false, "ec2.instance_type": "unknown", "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.revision": "head-be593ef3", "profiling.host.ip": "192.168.1.2", "ec2.mac": "06:04:03:02:01:00", "profiling.agent.config.disable_tls": false, "ec2.security_groups": "default", "ec2.profile": "default-hvm", "profiling.agent.version": "v3.1.0", "profiling.host.name": "ip-172-23-180-16", "ec2.ami_id": "ami-123", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.agent.config.map_scale_factor": 0, "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.bpf_log_size": 65536, "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.agent.config.bpf_log_level": 0, "ec2.instance_life_cycle": "on-demand", "profiling.agent.config.probabilistic_threshold": 100} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691727262, "ecs.version": "1.12.0", "ec2.security_groups": "default", "profiling.agent.config.disable_tls": false, "profiling.host.ip": "192.168.1.2", "profiling.agent.config.verbose": false, "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "ec2.profile": "default-hvm", "ec2.placement.availability_zone": "eu-west-1a", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.host.kernel_version": "9.9.9-0", "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.map_scale_factor": 0, "ec2.instance_life_cycle": "on-demand", "ec2.instance_type": "unknown", "profiling.host.name": "ip-172-23-180-16", "profiling.agent.config.tracers": "all", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.max_elements_per_interval": 800, "ec2.hostname": "ip-192-168-1-2", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.version": "v3.1.0", "ec2.ami_id": "ami-123", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "ec2.mac": "06:04:03:02:01:00", "profiling.agent.config.no_kernel_version_check": false, "profiling.agent.revision": "head-be593ef3", "ec2.instance_id": "i-19216812", "ec2.placement.region": "eu-west-1", "ec2.placement.availability_zone_id": "a", "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.probabilistic_threshold": 100, "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.config.probabilistic_interval": "1m0s", "ec2.ami_manifest_path": "(unknown)", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.known_traces_entries": 65536, "profiling.host.tags": ["environment:qa"], "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.agent.config.elastic_mode": false, "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.config.upload_symbols": false, "profiling.agent.start_time": 1691520070253} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691750282, "ecs.version": "1.12.0", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.upload_symbols": false, "profiling.host.name": "ip-172-23-180-16", "ec2.placement.region": "eu-west-1", "profiling.agent.config.tracers": "all", "profiling.agent.config.verbose": false, "ec2.placement.availability_zone": "eu-west-1a", "profiling.host.ip": "192.168.1.2", "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "ec2.security_groups": "default", "ec2.ami_id": "ami-123", "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.version": "v3.1.0", "profiling.host.tags": ["environment:qa"], "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.config.map_scale_factor": 0, "ec2.local_ipv4": "192.168.1.2", "ec2.hostname": "ip-192-168-1-2", "ec2.placement.availability_zone_id": "a", "profiling.agent.config.probabilistic_threshold": 100, "ec2.ami_manifest_path": "(unknown)", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.bpf_log_size": 65536, "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.agent.config.present_cpu_cores": 8, "ec2.mac": "06:04:03:02:01:00", "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.max_elements_per_interval": 800, "profiling.agent.config.no_kernel_version_check": false, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.disable_tls": false, "profiling.host.kernel_version": "9.9.9-0", "ec2.instance_type": "unknown", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "ec2.instance_id": "i-19216812", "profiling.agent.start_time": 1691520070253, "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.elastic_mode": false, "ec2.instance_life_cycle": "on-demand", "ec2.profile": "default-hvm", "profiling.instance.private_ipv4s": ["192.168.1.2"]} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691773305, "ecs.version": "1.12.0", "profiling.agent.config.known_traces_entries": 65536, "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.max_elements_per_interval": 800, "profiling.host.name": "ip-172-23-180-16", "ec2.security_groups": "default", "ec2.placement.availability_zone_id": "a", "profiling.agent.version": "v3.1.0", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "ec2.instance_type": "unknown", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.placement.region": "eu-west-1", "ec2.profile": "default-hvm", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.map_scale_factor": 0, "ec2.ami_id": "ami-123", "ec2.instance_life_cycle": "on-demand", "profiling.agent.config.probabilistic_interval": "1m0s", "ec2.ami_manifest_path": "(unknown)", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "ec2.mac": "06:04:03:02:01:00", "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.present_cpu_cores": 8, "ec2.instance_id": "i-19216812", "profiling.agent.config.disable_tls": false, "profiling.host.ip": "192.168.1.2", "profiling.agent.config.verbose": false, "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.elastic_mode": false, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.start_time": 1691520070253, "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.upload_symbols": false, "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.host.tags": ["environment:qa"], "ec2.hostname": "ip-192-168-1-2", "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.config.no_kernel_version_check": false, "profiling.agent.config.tracers": "all", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691796327, "ecs.version": "1.12.0", "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.tracers": "all", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "ec2.placement.availability_zone_id": "a", "ec2.instance_life_cycle": "on-demand", "profiling.agent.config.map_scale_factor": 0, "ec2.placement.region": "eu-west-1", "profiling.agent.version": "v3.1.0", "ec2.ami_id": "ami-123", "ec2.ami_manifest_path": "(unknown)", "ec2.profile": "default-hvm", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.host.tags": ["environment:qa"], "profiling.agent.start_time": 1691520070253, "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.disable_tls": false, "profiling.host.name": "ip-172-23-180-16", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.config.max_elements_per_interval": 800, "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.config.no_kernel_version_check": false, "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.config.elastic_mode": false, "profiling.agent.config.present_cpu_cores": 8, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "ec2.security_groups": "default", "profiling.agent.config.upload_symbols": false, "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.config.verbose": false, "ec2.instance_type": "unknown", "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.build_timestamp": 1688111067, "ec2.local_ipv4": "192.168.1.2", "profiling.agent.revision": "head-be593ef3", "ec2.instance_id": "i-19216812", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.host.ip": "192.168.1.2", "ec2.mac": "06:04:03:02:01:00", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691819349, "ecs.version": "1.12.0", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "ec2.instance_life_cycle": "on-demand", "profiling.agent.config.upload_symbols": false, "profiling.host.name": "ip-172-23-180-16", "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.no_kernel_version_check": false, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.revision": "head-be593ef3", "profiling.host.ip": "192.168.1.2", "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.config.verbose": false, "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "ec2.placement.availability_zone_id": "a", "profiling.agent.version": "v3.1.0", "profiling.agent.start_time": 1691520070253, "ec2.local_ipv4": "192.168.1.2", "ec2.security_groups": "default", "ec2.placement.region": "eu-west-1", "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.map_scale_factor": 0, "profiling.agent.config.bpf_log_size": 65536, "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.max_elements_per_interval": 800, "ec2.instance_type": "unknown", "ec2.ami_id": "ami-123", "ec2.ami_manifest_path": "(unknown)", "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.config.tracers": "all", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.host.tags": ["environment:qa"], "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.disable_tls": false, "ec2.profile": "default-hvm", "profiling.agent.config.present_cpu_cores": 8, "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "ec2.mac": "06:04:03:02:01:00", "ec2.instance_id": "i-19216812", "profiling.agent.build_timestamp": 1688111067, "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.agent.config.elastic_mode": false, "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691842366, "ecs.version": "1.12.0", "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "ec2.ami_manifest_path": "(unknown)", "profiling.agent.config.max_elements_per_interval": 800, "profiling.host.tags": ["environment:qa"], "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.verbose": false, "profiling.host.name": "ip-172-23-180-16", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.version": "v3.1.0", "profiling.host.ip": "192.168.1.2", "ec2.ami_id": "ami-123", "ec2.placement.availability_zone_id": "a", "profiling.agent.revision": "head-be593ef3", "ec2.security_groups": "default", "ec2.placement.region": "eu-west-1", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "ec2.instance_type": "unknown", "profiling.agent.start_time": 1691520070253, "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.agent.config.elastic_mode": false, "ec2.profile": "default-hvm", "profiling.agent.config.no_kernel_version_check": false, "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "ec2.instance_life_cycle": "on-demand", "ec2.mac": "06:04:03:02:01:00", "profiling.agent.config.bpf_log_size": 65536, "ec2.placement.availability_zone": "eu-west-1a", "ec2.instance_id": "i-19216812", "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.disable_tls": false, "profiling.agent.config.tracers": "all", "profiling.agent.config.probabilistic_threshold": 100, "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.map_scale_factor": 0, "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.config.upload_symbols": false, "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.host.kernel_proc_version": "Linux 9.9.9-0"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691865388, "ecs.version": "1.12.0", "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.revision": "head-be593ef3", "ec2.local_ipv4": "192.168.1.2", "ec2.ami_id": "ami-123", "ec2.instance_type": "unknown", "ec2.instance_id": "i-19216812", "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "ec2.placement.region": "eu-west-1", "profiling.agent.config.disable_tls": false, "profiling.agent.config.probabilistic_interval": "1m0s", "ec2.placement.availability_zone_id": "a", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.config.max_elements_per_interval": 800, "ec2.profile": "default-hvm", "profiling.agent.config.bpf_log_level": 0, "ec2.security_groups": "default", "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.no_kernel_version_check": false, "profiling.host.name": "ip-172-23-180-16", "ec2.mac": "06:04:03:02:01:00", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "ec2.placement.availability_zone": "eu-west-1a", "ec2.ami_manifest_path": "(unknown)", "profiling.agent.config.map_scale_factor": 0, "profiling.agent.config.upload_symbols": false, "profiling.agent.version": "v3.1.0", "profiling.agent.config.tracers": "all", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.start_time": 1691520070253, "profiling.agent.config.bpf_log_size": 65536, "ec2.instance_life_cycle": "on-demand", "profiling.host.tags": ["environment:qa"], "profiling.agent.config.known_traces_entries": 65536, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.host.ip": "192.168.1.2", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.config.elastic_mode": false, "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.verbose": false} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691888412, "ecs.version": "1.12.0", "profiling.agent.config.bpf_log_level": 0, "ec2.profile": "default-hvm", "profiling.agent.start_time": 1691520070253, "profiling.agent.config.verbose": false, "ec2.mac": "06:04:03:02:01:00", "ec2.ami_id": "ami-123", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.agent.config.map_scale_factor": 0, "ec2.instance_life_cycle": "on-demand", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.config.disable_tls": false, "profiling.host.ip": "192.168.1.2", "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.upload_symbols": false, "profiling.agent.config.no_kernel_version_check": false, "profiling.agent.config.known_traces_entries": 65536, "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.probabilistic_threshold": 100, "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "ec2.ami_manifest_path": "(unknown)", "profiling.host.tags": ["environment:qa"], "profiling.agent.config.max_elements_per_interval": 800, "ec2.instance_type": "unknown", "profiling.agent.revision": "head-be593ef3", "profiling.agent.version": "v3.1.0", "profiling.host.name": "ip-172-23-180-16", "profiling.agent.config.elastic_mode": false, "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "ec2.instance_id": "i-19216812", "profiling.agent.config.bpf_log_size": 65536, "ec2.placement.availability_zone_id": "a", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.tracers": "all", "ec2.security_groups": "default", "ec2.placement.region": "eu-west-1"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691911428, "ecs.version": "1.12.0", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.instance.private_ipv4s": ["192.168.1.2"], "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.elastic_mode": false, "profiling.agent.config.tracers": "all", "profiling.agent.config.present_cpu_cores": 8, "ec2.ami_id": "ami-123", "ec2.mac": "06:04:03:02:01:00", "profiling.host.name": "ip-172-23-180-16", "profiling.agent.start_time": 1691520070253, "profiling.agent.config.bpf_log_level": 0, "ec2.security_groups": "default", "profiling.host.tags": ["environment:qa"], "profiling.agent.config.map_scale_factor": 0, "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.bpf_log_size": 65536, "profiling.host.ip": "192.168.1.2", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.disable_tls": false, "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.probabilistic_threshold": 100, "ec2.instance_life_cycle": "on-demand", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "ec2.local_ipv4": "192.168.1.2", "ec2.profile": "default-hvm", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.config.max_elements_per_interval": 800, "ec2.ami_manifest_path": "(unknown)", "profiling.agent.config.verbose": false, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.upload_symbols": false, "profiling.agent.build_timestamp": 1688111067, "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.hostname": "ip-192-168-1-2", "ec2.placement.availability_zone_id": "a", "ec2.instance_type": "unknown", "ec2.placement.region": "eu-west-1", "ec2.instance_id": "i-19216812", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.agent.version": "v3.1.0", "profiling.agent.config.no_kernel_version_check": false} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691934453, "ecs.version": "1.12.0", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "ec2.profile": "default-hvm", "ec2.instance_id": "i-19216812", "profiling.agent.version": "v3.1.0", "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.bpf_log_level": 0, "profiling.agent.start_time": 1691520070253, "ec2.instance_life_cycle": "on-demand", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "ec2.ami_manifest_path": "(unknown)", "profiling.agent.config.tracers": "all", "ec2.instance_type": "unknown", "profiling.instance.private_ipv4s": ["192.168.1.2"], "ec2.security_groups": "default", "ec2.placement.availability_zone_id": "a", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.mac": "06:04:03:02:01:00", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "ec2.local_ipv4": "192.168.1.2", "ec2.hostname": "ip-192-168-1-2", "ec2.placement.region": "eu-west-1", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.host.ip": "192.168.1.2", "profiling.agent.config.elastic_mode": false, "profiling.agent.config.map_scale_factor": 0, "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.disable_tls": false, "profiling.agent.config.max_elements_per_interval": 800, "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.no_kernel_version_check": false, "ec2.ami_id": "ami-123", "profiling.agent.config.bpf_log_size": 65536, "profiling.host.name": "ip-172-23-180-16", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.host.tags": ["environment:qa"], "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.config.upload_symbols": false, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.verbose": false, "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"]} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691957475, "ecs.version": "1.12.0", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.config.elastic_mode": false, "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.revision": "head-be593ef3", "ec2.security_groups": "default", "profiling.agent.config.disable_tls": false, "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.config.bpf_log_level": 0, "ec2.hostname": "ip-192-168-1-2", "ec2.placement.availability_zone": "eu-west-1a", "ec2.placement.availability_zone_id": "a", "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "ec2.profile": "default-hvm", "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.max_elements_per_interval": 800, "ec2.instance_life_cycle": "on-demand", "profiling.agent.version": "v3.1.0", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "ec2.ami_id": "ami-123", "profiling.agent.config.verbose": false, "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.start_time": 1691520070253, "profiling.agent.config.no_kernel_version_check": false, "profiling.agent.config.tracers": "all", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.map_scale_factor": 0, "profiling.agent.config.present_cpu_cores": 8, "ec2.placement.region": "eu-west-1", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.host.ip": "192.168.1.2", "profiling.agent.config.upload_symbols": false, "profiling.host.name": "ip-172-23-180-16", "profiling.instance.private_ipv4s": ["192.168.1.2"], "ec2.ami_manifest_path": "(unknown)", "ec2.instance_id": "i-19216812", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "ec2.local_ipv4": "192.168.1.2", "ec2.instance_type": "unknown", "profiling.agent.build_timestamp": 1688111067, "ec2.mac": "06:04:03:02:01:00", "profiling.host.tags": ["environment:qa"]} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1691980492, "ecs.version": "1.12.0", "profiling.host.ip": "192.168.1.2", "ec2.ami_id": "ami-123", "ec2.profile": "default-hvm", "ec2.placement.region": "eu-west-1", "ec2.placement.availability_zone_id": "a", "ec2.placement.availability_zone": "eu-west-1a", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.host.tags": ["environment:qa"], "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.elastic_mode": false, "profiling.host.name": "ip-172-23-180-16", "profiling.agent.config.no_kernel_version_check": false, "profiling.agent.config.bpf_log_level": 0, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.max_elements_per_interval": 800, "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.map_scale_factor": 0, "ec2.ami_manifest_path": "(unknown)", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.version": "v3.1.0", "profiling.agent.config.upload_symbols": false, "profiling.agent.config.tracers": "all", "profiling.agent.config.bpf_log_size": 65536, "ec2.instance_type": "unknown", "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.disable_tls": false, "profiling.agent.config.known_traces_entries": 65536, "ec2.security_groups": "default", "ec2.instance_life_cycle": "on-demand", "profiling.agent.revision": "head-be593ef3", "profiling.instance.private_ipv4s": ["192.168.1.2"], "ec2.instance_id": "i-19216812", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.agent.start_time": 1691520070253, "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "ec2.mac": "06:04:03:02:01:00", "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.verbose": false, "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.probabilistic_threshold": 100} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692003517, "ecs.version": "1.12.0", "profiling.agent.config.known_traces_entries": 65536, "ec2.profile": "default-hvm", "profiling.agent.revision": "head-be593ef3", "profiling.host.ip": "192.168.1.2", "profiling.agent.start_time": 1691520070253, "profiling.agent.config.max_elements_per_interval": 800, "ec2.security_groups": "default", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.config.bpf_log_level": 0, "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "ec2.ami_id": "ami-123", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "ec2.local_ipv4": "192.168.1.2", "ec2.placement.availability_zone": "eu-west-1a", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.instance_type": "unknown", "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.version": "v3.1.0", "profiling.agent.config.no_kernel_version_check": false, "ec2.mac": "06:04:03:02:01:00", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.host.tags": ["environment:qa"], "ec2.instance_id": "i-19216812", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.host.kernel_version": "9.9.9-0", "profiling.host.name": "ip-172-23-180-16", "profiling.agent.config.elastic_mode": false, "ec2.placement.region": "eu-west-1", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.upload_symbols": false, "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "ec2.ami_manifest_path": "(unknown)", "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.config.map_scale_factor": 0, "profiling.agent.config.disable_tls": false, "profiling.agent.config.present_cpu_cores": 8, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "ec2.placement.availability_zone_id": "a", "profiling.agent.config.tracers": "all", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.verbose": false, "ec2.instance_life_cycle": "on-demand"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692026535, "ecs.version": "1.12.0", "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.bpf_log_level": 0, "profiling.instance.private_ipv4s": ["192.168.1.2"], "ec2.ami_id": "ami-123", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.probabilistic_interval": "1m0s", "ec2.placement.region": "eu-west-1", "profiling.agent.revision": "head-be593ef3", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "ec2.instance_type": "unknown", "profiling.agent.start_time": 1691520070253, "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.agent.config.disable_tls": false, "profiling.agent.config.tracers": "all", "profiling.agent.config.elastic_mode": false, "profiling.agent.config.upload_symbols": false, "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.host.ip": "192.168.1.2", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.host.kernel_version": "9.9.9-0", "ec2.ami_manifest_path": "(unknown)", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.verbose": false, "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.mac": "06:04:03:02:01:00", "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.map_scale_factor": 0, "ec2.security_groups": "default", "profiling.agent.config.no_kernel_version_check": false, "ec2.profile": "default-hvm", "profiling.host.name": "ip-172-23-180-16", "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.max_elements_per_interval": 800, "ec2.placement.availability_zone_id": "a", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.agent.version": "v3.1.0", "ec2.local_ipv4": "192.168.1.2", "ec2.instance_life_cycle": "on-demand", "profiling.host.tags": ["environment:qa"], "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "ec2.instance_id": "i-19216812", "profiling.agent.config.bpf_log_size": 65536} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692049560, "ecs.version": "1.12.0", "profiling.agent.config.verbose": false, "profiling.agent.config.map_scale_factor": 0, "ec2.profile": "default-hvm", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "ec2.local_ipv4": "192.168.1.2", "profiling.host.kernel_version": "9.9.9-0", "ec2.instance_type": "unknown", "profiling.host.tags": ["environment:qa"], "profiling.agent.config.upload_symbols": false, "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.tracers": "all", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.security_groups": "default", "profiling.agent.config.elastic_mode": false, "profiling.instance.private_ipv4s": ["192.168.1.2"], "ec2.ami_manifest_path": "(unknown)", "profiling.host.name": "ip-172-23-180-16", "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.max_elements_per_interval": 800, "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.start_time": 1691520070253, "ec2.ami_id": "ami-123", "ec2.hostname": "ip-192-168-1-2", "ec2.placement.availability_zone_id": "a", "ec2.instance_id": "i-19216812", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "ec2.mac": "06:04:03:02:01:00", "ec2.placement.region": "eu-west-1", "profiling.agent.config.disable_tls": false, "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "ec2.instance_life_cycle": "on-demand", "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.version": "v3.1.0", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.config.no_kernel_version_check": false, "profiling.host.ip": "192.168.1.2", "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.config.bpf_log_level": 0} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692072578, "ecs.version": "1.12.0", "ec2.ami_manifest_path": "(unknown)", "profiling.host.name": "ip-172-23-180-16", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.elastic_mode": false, "profiling.agent.config.verbose": false, "ec2.placement.availability_zone_id": "a", "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.revision": "head-be593ef3", "profiling.agent.version": "v3.1.0", "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.start_time": 1691520070253, "profiling.agent.config.disable_tls": false, "ec2.ami_id": "ami-123", "profiling.agent.config.max_elements_per_interval": 800, "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.bpf_log_level": 0, "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.map_scale_factor": 0, "ec2.instance_id": "i-19216812", "profiling.agent.config.bpf_log_size": 65536, "profiling.host.tags": ["environment:qa"], "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.agent.config.no_kernel_version_check": false, "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.instance.private_ipv4s": ["192.168.1.2"], "ec2.profile": "default-hvm", "profiling.agent.config.tracers": "all", "ec2.instance_type": "unknown", "profiling.agent.config.probabilistic_interval": "1m0s", "ec2.security_groups": "default", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "ec2.instance_life_cycle": "on-demand", "ec2.mac": "06:04:03:02:01:00", "ec2.local_ipv4": "192.168.1.2", "ec2.placement.region": "eu-west-1", "profiling.agent.config.upload_symbols": false, "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.host.ip": "192.168.1.2"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692095600, "ecs.version": "1.12.0", "profiling.agent.config.tracers": "all", "ec2.ami_manifest_path": "(unknown)", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "ec2.profile": "default-hvm", "profiling.agent.version": "v3.1.0", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.no_kernel_version_check": false, "ec2.instance_life_cycle": "on-demand", "profiling.agent.start_time": 1691520070253, "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.agent.config.present_cpu_cores": 8, "ec2.placement.availability_zone_id": "a", "profiling.host.kernel_version": "9.9.9-0", "ec2.instance_id": "i-19216812", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.bpf_log_size": 65536, "profiling.instance.private_ipv4s": ["192.168.1.2"], "ec2.hostname": "ip-192-168-1-2", "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.elastic_mode": false, "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.mac": "06:04:03:02:01:00", "profiling.agent.config.known_traces_entries": 65536, "ec2.ami_id": "ami-123", "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.revision": "head-be593ef3", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.host.ip": "192.168.1.2", "ec2.security_groups": "default", "profiling.agent.config.probabilistic_interval": "1m0s", "ec2.placement.region": "eu-west-1", "profiling.agent.config.max_elements_per_interval": 800, "profiling.host.name": "ip-172-23-180-16", "profiling.host.tags": ["environment:qa"], "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.map_scale_factor": 0, "profiling.agent.config.disable_tls": false, "ec2.instance_type": "unknown", "profiling.agent.config.upload_symbols": false, "profiling.agent.config.verbose": false, "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692118622, "ecs.version": "1.12.0", "ec2.profile": "default-hvm", "ec2.ami_id": "ami-123", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.host.tags": ["environment:qa"], "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.no_kernel_version_check": false, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.host.name": "ip-172-23-180-16", "ec2.security_groups": "default", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "ec2.placement.region": "eu-west-1", "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.map_scale_factor": 0, "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "ec2.instance_id": "i-19216812", "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.build_timestamp": 1688111067, "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.start_time": 1691520070253, "profiling.agent.config.known_traces_entries": 65536, "ec2.hostname": "ip-192-168-1-2", "ec2.ami_manifest_path": "(unknown)", "profiling.agent.config.bpf_log_size": 65536, "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "ec2.placement.availability_zone_id": "a", "profiling.agent.config.upload_symbols": false, "profiling.agent.version": "v3.1.0", "ec2.instance_type": "unknown", "profiling.agent.config.tracers": "all", "profiling.agent.config.verbose": false, "profiling.host.ip": "192.168.1.2", "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.disable_tls": false, "profiling.agent.config.elastic_mode": false, "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.config.bpf_log_level": 0, "ec2.mac": "06:04:03:02:01:00", "ec2.instance_life_cycle": "on-demand", "profiling.agent.config.max_elements_per_interval": 800} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692141644, "ecs.version": "1.12.0", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.tracers": "all", "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.config.no_kernel_version_check": false, "ec2.profile": "default-hvm", "profiling.agent.config.elastic_mode": false, "ec2.mac": "06:04:03:02:01:00", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.config.upload_symbols": false, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.start_time": 1691520070253, "ec2.security_groups": "default", "profiling.agent.config.verbose": false, "ec2.instance_type": "unknown", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.known_traces_entries": 65536, "profiling.host.tags": ["environment:qa"], "profiling.host.kernel_version": "9.9.9-0", "ec2.local_ipv4": "192.168.1.2", "ec2.instance_id": "i-19216812", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "ec2.ami_manifest_path": "(unknown)", "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.version": "v3.1.0", "ec2.hostname": "ip-192-168-1-2", "profiling.host.name": "ip-172-23-180-16", "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.map_scale_factor": 0, "ec2.instance_life_cycle": "on-demand", "ec2.placement.availability_zone_id": "a", "profiling.host.ip": "192.168.1.2", "ec2.placement.region": "eu-west-1", "profiling.agent.config.disable_tls": false, "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.max_elements_per_interval": 800, "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "ec2.ami_id": "ami-123"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692164660, "ecs.version": "1.12.0", "profiling.agent.config.probabilistic_interval": "1m0s", "ec2.placement.availability_zone_id": "a", "profiling.agent.config.verbose": false, "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.host.name": "ip-172-23-180-16", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.config.upload_symbols": false, "profiling.agent.config.tracers": "all", "ec2.ami_id": "ami-123", "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.known_traces_entries": 65536, "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.version": "v3.1.0", "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "ec2.ami_manifest_path": "(unknown)", "profiling.agent.config.disable_tls": false, "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.config.present_cpu_cores": 8, "profiling.host.ip": "192.168.1.2", "profiling.agent.config.elastic_mode": false, "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.start_time": 1691520070253, "ec2.profile": "default-hvm", "ec2.mac": "06:04:03:02:01:00", "ec2.placement.region": "eu-west-1", "profiling.agent.config.max_elements_per_interval": 800, "profiling.agent.build_timestamp": 1688111067, "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.map_scale_factor": 0, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.revision": "head-be593ef3", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.config.no_kernel_version_check": false, "ec2.instance_id": "i-19216812", "ec2.security_groups": "default", "ec2.local_ipv4": "192.168.1.2", "profiling.host.tags": ["environment:qa"], "ec2.instance_life_cycle": "on-demand", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.instance_type": "unknown"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692187683, "ecs.version": "1.12.0", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.present_cpu_cores": 8, "ec2.placement.region": "eu-west-1", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.config.map_scale_factor": 0, "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.revision": "head-be593ef3", "profiling.host.kernel_version": "9.9.9-0", "ec2.instance_life_cycle": "on-demand", "ec2.hostname": "ip-192-168-1-2", "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.disable_tls": false, "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "ec2.mac": "06:04:03:02:01:00", "profiling.agent.start_time": 1691520070253, "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.config.tracers": "all", "ec2.security_groups": "default", "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.elastic_mode": false, "profiling.agent.config.upload_symbols": false, "profiling.agent.config.verbose": false, "profiling.host.name": "ip-172-23-180-16", "ec2.placement.availability_zone_id": "a", "profiling.agent.config.max_elements_per_interval": 800, "ec2.instance_type": "unknown", "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.version": "v3.1.0", "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.config.bpf_log_size": 65536, "profiling.host.ip": "192.168.1.2", "ec2.ami_id": "ami-123", "ec2.instance_id": "i-19216812", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "ec2.profile": "default-hvm", "profiling.host.tags": ["environment:qa"], "profiling.agent.config.no_kernel_version_check": false, "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.ami_manifest_path": "(unknown)", "ec2.placement.availability_zone": "eu-west-1a"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692210702, "ecs.version": "1.12.0", "profiling.agent.config.no_kernel_version_check": false, "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "ec2.ami_manifest_path": "(unknown)", "profiling.agent.config.elastic_mode": false, "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.disable_tls": false, "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "ec2.mac": "06:04:03:02:01:00", "profiling.host.ip": "192.168.1.2", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "ec2.profile": "default-hvm", "ec2.instance_type": "unknown", "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.map_scale_factor": 0, "profiling.agent.version": "v3.1.0", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.bpf_log_level": 0, "ec2.ami_id": "ami-123", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.agent.config.upload_symbols": false, "profiling.agent.start_time": 1691520070253, "ec2.instance_life_cycle": "on-demand", "profiling.host.name": "ip-172-23-180-16", "ec2.hostname": "ip-192-168-1-2", "ec2.security_groups": "default", "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.tracers": "all", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.present_cpu_cores": 8, "ec2.placement.region": "eu-west-1", "profiling.agent.config.max_elements_per_interval": 800, "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.build_timestamp": 1688111067, "ec2.instance_id": "i-19216812", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.host.tags": ["environment:qa"], "profiling.agent.config.bpf_log_size": 65536, "ec2.placement.availability_zone_id": "a", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.verbose": false} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692233725, "ecs.version": "1.12.0", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "ec2.local_ipv4": "192.168.1.2", "ec2.placement.region": "eu-west-1", "profiling.agent.config.elastic_mode": false, "profiling.agent.config.tracers": "all", "profiling.agent.start_time": 1691520070253, "profiling.agent.revision": "head-be593ef3", "ec2.profile": "default-hvm", "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.no_kernel_version_check": false, "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.agent.config.known_traces_entries": 65536, "ec2.instance_id": "i-19216812", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.host.tags": ["environment:qa"], "profiling.agent.config.upload_symbols": false, "profiling.host.name": "ip-172-23-180-16", "ec2.instance_life_cycle": "on-demand", "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "ec2.ami_id": "ami-123", "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.host.ip": "192.168.1.2", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.max_elements_per_interval": 800, "ec2.instance_type": "unknown", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "ec2.ami_manifest_path": "(unknown)", "profiling.agent.config.map_scale_factor": 0, "profiling.instance.private_ipv4s": ["192.168.1.2"], "ec2.security_groups": "default", "ec2.placement.availability_zone": "eu-west-1a", "ec2.placement.availability_zone_id": "a", "profiling.agent.version": "v3.1.0", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.disable_tls": false, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "ec2.mac": "06:04:03:02:01:00", "profiling.agent.config.verbose": false} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692256746, "ecs.version": "1.12.0", "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.config.disable_tls": false, "ec2.placement.availability_zone": "eu-west-1a", "ec2.instance_life_cycle": "on-demand", "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.no_kernel_version_check": false, "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.version": "v3.1.0", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "ec2.instance_type": "unknown", "ec2.security_groups": "default", "ec2.ami_manifest_path": "(unknown)", "profiling.host.tags": ["environment:qa"], "profiling.agent.config.bpf_log_level": 0, "profiling.agent.start_time": 1691520070253, "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.config.present_cpu_cores": 8, "ec2.ami_id": "ami-123", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.probabilistic_threshold": 100, "profiling.host.kernel_version": "9.9.9-0", "ec2.instance_id": "i-19216812", "ec2.placement.region": "eu-west-1", "ec2.profile": "default-hvm", "profiling.host.name": "ip-172-23-180-16", "profiling.host.ip": "192.168.1.2", "ec2.mac": "06:04:03:02:01:00", "profiling.agent.config.upload_symbols": false, "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.tracers": "all", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.map_scale_factor": 0, "ec2.placement.availability_zone_id": "a", "profiling.agent.config.max_elements_per_interval": 800, "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.agent.config.verbose": false, "profiling.agent.config.elastic_mode": false} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692279766, "ecs.version": "1.12.0", "ec2.mac": "06:04:03:02:01:00", "profiling.agent.version": "v3.1.0", "ec2.placement.availability_zone_id": "a", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.probabilistic_threshold": 100, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "ec2.profile": "default-hvm", "ec2.security_groups": "default", "profiling.agent.start_time": 1691520070253, "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.present_cpu_cores": 8, "ec2.instance_life_cycle": "on-demand", "profiling.host.name": "ip-172-23-180-16", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.elastic_mode": false, "ec2.instance_id": "i-19216812", "profiling.agent.config.bpf_log_size": 65536, "profiling.host.kernel_version": "9.9.9-0", "ec2.placement.region": "eu-west-1", "profiling.agent.config.verbose": false, "profiling.agent.config.map_scale_factor": 0, "ec2.placement.availability_zone": "eu-west-1a", "ec2.hostname": "ip-192-168-1-2", "profiling.host.tags": ["environment:qa"], "profiling.agent.config.disable_tls": false, "ec2.ami_manifest_path": "(unknown)", "ec2.instance_type": "unknown", "profiling.agent.config.no_kernel_version_check": false, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.upload_symbols": false, "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "ec2.ami_id": "ami-123", "profiling.agent.config.bpf_log_level": 0, "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.host.ip": "192.168.1.2", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.max_elements_per_interval": 800, "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.agent.config.tracers": "all", "profiling.agent.config.probabilistic_interval": "1m0s"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692302785, "ecs.version": "1.12.0", "ec2.instance_type": "unknown", "profiling.host.ip": "192.168.1.2", "profiling.agent.version": "v3.1.0", "profiling.agent.start_time": 1691520070253, "ec2.local_ipv4": "192.168.1.2", "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.no_kernel_version_check": false, "ec2.placement.availability_zone": "eu-west-1a", "profiling.host.tags": ["environment:qa"], "ec2.profile": "default-hvm", "profiling.instance.private_ipv4s": ["192.168.1.2"], "ec2.mac": "06:04:03:02:01:00", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "ec2.placement.availability_zone_id": "a", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "ec2.ami_id": "ami-123", "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.tracers": "all", "profiling.agent.config.disable_tls": false, "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.agent.config.upload_symbols": false, "profiling.host.name": "ip-172-23-180-16", "ec2.instance_id": "i-19216812", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "ec2.placement.region": "eu-west-1", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.config.map_scale_factor": 0, "profiling.agent.config.elastic_mode": false, "ec2.instance_life_cycle": "on-demand", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.security_groups": "default", "ec2.ami_manifest_path": "(unknown)", "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.verbose": false, "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.config.max_elements_per_interval": 800, "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.probabilistic_threshold": 100} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692325811, "ecs.version": "1.12.0", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "ec2.placement.availability_zone": "eu-west-1a", "ec2.ami_id": "ami-123", "profiling.agent.revision": "head-be593ef3", "ec2.mac": "06:04:03:02:01:00", "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.config.map_scale_factor": 0, "profiling.agent.config.tracers": "all", "profiling.agent.config.bpf_log_level": 0, "profiling.host.tags": ["environment:qa"], "profiling.agent.config.elastic_mode": false, "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "ec2.instance_type": "unknown", "ec2.hostname": "ip-192-168-1-2", "profiling.host.name": "ip-172-23-180-16", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.security_groups": "default", "profiling.agent.config.no_kernel_version_check": false, "profiling.agent.config.upload_symbols": false, "profiling.agent.config.verbose": false, "profiling.agent.version": "v3.1.0", "ec2.profile": "default-hvm", "profiling.host.ip": "192.168.1.2", "profiling.agent.config.probabilistic_interval": "1m0s", "ec2.placement.availability_zone_id": "a", "profiling.agent.config.bpf_log_size": 65536, "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "ec2.instance_id": "i-19216812", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.config.disable_tls": false, "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.max_elements_per_interval": 800, "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.known_traces_entries": 65536, "ec2.placement.region": "eu-west-1", "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "ec2.ami_manifest_path": "(unknown)", "ec2.instance_life_cycle": "on-demand", "profiling.agent.start_time": 1691520070253} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692348830, "ecs.version": "1.12.0", "profiling.agent.config.verbose": false, "ec2.mac": "06:04:03:02:01:00", "profiling.agent.config.upload_symbols": false, "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "ec2.ami_id": "ami-123", "profiling.agent.start_time": 1691520070253, "ec2.ami_manifest_path": "(unknown)", "ec2.placement.region": "eu-west-1", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "ec2.local_ipv4": "192.168.1.2", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "ec2.placement.availability_zone_id": "a", "profiling.agent.config.probabilistic_threshold": 100, "profiling.host.name": "ip-172-23-180-16", "profiling.agent.config.probabilistic_interval": "1m0s", "ec2.instance_life_cycle": "on-demand", "profiling.agent.config.bpf_log_size": 65536, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.version": "v3.1.0", "ec2.instance_type": "unknown", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.config.map_scale_factor": 0, "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.config.known_traces_entries": 65536, "profiling.host.kernel_version": "9.9.9-0", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.max_elements_per_interval": 800, "profiling.agent.config.no_kernel_version_check": false, "ec2.hostname": "ip-192-168-1-2", "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.tracers": "all", "profiling.agent.build_timestamp": 1688111067, "ec2.profile": "default-hvm", "profiling.host.ip": "192.168.1.2", "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "ec2.placement.availability_zone": "eu-west-1a", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.agent.config.elastic_mode": false, "profiling.agent.config.disable_tls": false, "ec2.security_groups": "default", "ec2.instance_id": "i-19216812", "profiling.host.tags": ["environment:qa"]} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692371849, "ecs.version": "1.12.0", "profiling.agent.start_time": 1691520070253, "ec2.ami_id": "ami-123", "ec2.placement.region": "eu-west-1", "profiling.agent.config.upload_symbols": false, "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.present_cpu_cores": 8, "profiling.host.kernel_version": "9.9.9-0", "ec2.ami_manifest_path": "(unknown)", "profiling.host.tags": ["environment:qa"], "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.build_timestamp": 1688111067, "ec2.placement.availability_zone": "eu-west-1a", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "ec2.mac": "06:04:03:02:01:00", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.config.no_kernel_version_check": false, "profiling.agent.config.bpf_log_size": 65536, "profiling.host.name": "ip-172-23-180-16", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.agent.config.max_elements_per_interval": 800, "profiling.host.ip": "192.168.1.2", "ec2.profile": "default-hvm", "ec2.security_groups": "default", "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.elastic_mode": false, "ec2.instance_type": "unknown", "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.disable_tls": false, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.config.known_traces_entries": 65536, "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.probabilistic_threshold": 100, "ec2.instance_life_cycle": "on-demand", "ec2.placement.availability_zone_id": "a", "profiling.agent.config.tracers": "all", "ec2.instance_id": "i-19216812", "profiling.agent.config.map_scale_factor": 0, "profiling.agent.config.verbose": false, "profiling.agent.version": "v3.1.0"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692394872, "ecs.version": "1.12.0", "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.known_traces_entries": 65536, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "ec2.instance_life_cycle": "on-demand", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.build_timestamp": 1688111067, "ec2.instance_type": "unknown", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "ec2.security_groups": "default", "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.max_elements_per_interval": 800, "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "ec2.profile": "default-hvm", "profiling.host.tags": ["environment:qa"], "ec2.placement.region": "eu-west-1", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.version": "v3.1.0", "profiling.agent.start_time": 1691520070253, "profiling.agent.config.disable_tls": false, "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.map_scale_factor": 0, "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.elastic_mode": false, "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.config.upload_symbols": false, "profiling.agent.config.present_cpu_cores": 8, "profiling.host.ip": "192.168.1.2", "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.verbose": false, "profiling.agent.revision": "head-be593ef3", "ec2.placement.availability_zone": "eu-west-1a", "ec2.ami_manifest_path": "(unknown)", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "ec2.ami_id": "ami-123", "profiling.agent.config.no_kernel_version_check": false, "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.host.name": "ip-172-23-180-16", "profiling.agent.config.probabilistic_interval": "1m0s", "ec2.instance_id": "i-19216812", "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.config.tracers": "all", "ec2.mac": "06:04:03:02:01:00", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.placement.availability_zone_id": "a"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692417891, "ecs.version": "1.12.0", "ec2.hostname": "ip-192-168-1-2", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.config.bpf_log_level": 0, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "ec2.local_ipv4": "192.168.1.2", "ec2.placement.availability_zone_id": "a", "profiling.agent.config.elastic_mode": false, "profiling.agent.config.tracers": "all", "profiling.agent.revision": "head-be593ef3", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.host.name": "ip-172-23-180-16", "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.max_elements_per_interval": 800, "ec2.security_groups": "default", "profiling.agent.start_time": 1691520070253, "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.version": "v3.1.0", "ec2.ami_id": "ami-123", "profiling.agent.config.no_kernel_version_check": false, "ec2.profile": "default-hvm", "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.map_scale_factor": 0, "ec2.ami_manifest_path": "(unknown)", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.config.verbose": false, "ec2.placement.region": "eu-west-1", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "ec2.mac": "06:04:03:02:01:00", "profiling.host.tags": ["environment:qa"], "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.present_cpu_cores": 8, "ec2.instance_id": "i-19216812", "profiling.agent.config.bpf_log_size": 65536, "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.config.upload_symbols": false, "ec2.instance_type": "unknown", "profiling.agent.build_timestamp": 1688111067, "profiling.host.ip": "192.168.1.2", "ec2.instance_life_cycle": "on-demand", "profiling.agent.config.disable_tls": false} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692440914, "ecs.version": "1.12.0", "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.host.name": "ip-172-23-180-16", "ec2.instance_id": "i-19216812", "ec2.placement.availability_zone_id": "a", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.known_traces_entries": 65536, "profiling.host.ip": "192.168.1.2", "profiling.host.kernel_version": "9.9.9-0", "ec2.mac": "06:04:03:02:01:00", "ec2.ami_manifest_path": "(unknown)", "ec2.instance_life_cycle": "on-demand", "profiling.agent.config.no_kernel_version_check": false, "profiling.agent.version": "v3.1.0", "ec2.ami_id": "ami-123", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.host.tags": ["environment:qa"], "profiling.agent.config.max_elements_per_interval": 800, "profiling.agent.config.upload_symbols": false, "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.tracers": "all", "profiling.agent.config.verbose": false, "profiling.agent.config.probabilistic_threshold": 100, "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.map_scale_factor": 0, "profiling.agent.config.elastic_mode": false, "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "ec2.instance_type": "unknown", "ec2.profile": "default-hvm", "ec2.security_groups": "default", "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.bpf_log_size": 65536, "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "ec2.placement.region": "eu-west-1", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.start_time": 1691520070253, "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.disable_tls": false} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692463937, "ecs.version": "1.12.0", "profiling.agent.build_timestamp": 1688111067, "ec2.security_groups": "default", "profiling.agent.config.disable_tls": false, "profiling.agent.revision": "head-be593ef3", "profiling.host.ip": "192.168.1.2", "profiling.host.name": "ip-172-23-180-16", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.no_kernel_version_check": false, "ec2.instance_life_cycle": "on-demand", "profiling.agent.config.tracers": "all", "profiling.agent.config.bpf_log_level": 0, "ec2.mac": "06:04:03:02:01:00", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "ec2.instance_id": "i-19216812", "profiling.agent.version": "v3.1.0", "profiling.agent.config.verbose": false, "profiling.agent.config.upload_symbols": false, "profiling.agent.config.elastic_mode": false, "ec2.instance_type": "unknown", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.known_traces_entries": 65536, "profiling.agent.config.max_elements_per_interval": 800, "profiling.agent.config.probabilistic_interval": "1m0s", "ec2.profile": "default-hvm", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.host.kernel_version": "9.9.9-0", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.config.present_cpu_cores": 8, "ec2.hostname": "ip-192-168-1-2", "profiling.agent.start_time": 1691520070253, "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "ec2.ami_manifest_path": "(unknown)", "profiling.host.tags": ["environment:qa"], "ec2.ami_id": "ami-123", "profiling.agent.config.probabilistic_threshold": 100, "ec2.placement.availability_zone_id": "a", "profiling.agent.config.map_scale_factor": 0, "ec2.placement.region": "eu-west-1"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692486953, "ecs.version": "1.12.0", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.placement.availability_zone_id": "a", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.known_traces_entries": 65536, "profiling.host.name": "ip-172-23-180-16", "profiling.agent.config.disable_tls": false, "ec2.instance_life_cycle": "on-demand", "profiling.agent.config.no_kernel_version_check": false, "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.build_timestamp": 1688111067, "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.start_time": 1691520070253, "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.present_cpu_cores": 8, "ec2.instance_id": "i-19216812", "profiling.agent.config.map_scale_factor": 0, "ec2.mac": "06:04:03:02:01:00", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "ec2.ami_manifest_path": "(unknown)", "profiling.host.tags": ["environment:qa"], "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.probabilistic_threshold": 100, "profiling.agent.config.probabilistic_interval": "1m0s", "profiling.agent.config.verbose": false, "profiling.agent.config.elastic_mode": false, "profiling.agent.config.upload_symbols": false, "profiling.agent.version": "v3.1.0", "profiling.host.kernel_version": "9.9.9-0", "ec2.ami_id": "ami-123", "ec2.security_groups": "default", "profiling.agent.config.max_elements_per_interval": 800, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.bpf_log_size": 65536, "profiling.agent.config.tracers": "all", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "ec2.local_ipv4": "192.168.1.2", "ec2.placement.region": "eu-west-1", "ec2.instance_type": "unknown", "profiling.host.ip": "192.168.1.2", "ec2.profile": "default-hvm"} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692509979, "ecs.version": "1.12.0", "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.probabilistic_interval": "1m0s", "ec2.ami_manifest_path": "(unknown)", "ec2.placement.region": "eu-west-1", "profiling.agent.config.disable_tls": false, "profiling.agent.revision": "head-be593ef3", "profiling.agent.config.bpf_log_size": 65536, "ec2.ami_id": "ami-123", "profiling.agent.config.max_elements_per_interval": 800, "profiling.host.kernel_version": "9.9.9-0", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.agent.config.upload_symbols": false, "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "profiling.host.name": "ip-172-23-180-16", "profiling.agent.version": "v3.1.0", "profiling.agent.config.no_kernel_version_check": false, "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "ec2.hostname": "ip-192-168-1-2", "profiling.agent.config.present_cpu_cores": 8, "ec2.instance_type": "unknown", "profiling.agent.config.cache_directory": "/var/cache/optimyze/", "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.config.verbose": false, "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "ec2.placement.availability_zone_id": "a", "profiling.agent.config.bpf_log_level": 0, "profiling.agent.config.probabilistic_threshold": 100, "ec2.security_groups": "default", "profiling.agent.config.elastic_mode": false, "ec2.instance_id": "i-19216812", "profiling.agent.start_time": 1691520070253, "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "ec2.mac": "06:04:03:02:01:00", "profiling.host.ip": "192.168.1.2", "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "ec2.instance_life_cycle": "on-demand", "profiling.agent.build_timestamp": 1688111067, "ec2.profile": "default-hvm", "profiling.agent.config.tracers": "all", "profiling.agent.config.known_traces_entries": 65536, "profiling.host.tags": ["environment:qa"], "profiling.agent.config.map_scale_factor": 0} +{"create": {"_index": "profiling-hosts"}} +{"profiling.project.id": 100, "host.id": 8457605156473051743, "@timestamp": 1692532995, "ecs.version": "1.12.0", "profiling.agent.config.probabilistic_interval": "1m0s", "ec2.instance_type": "unknown", "profiling.agent.config.max_elements_per_interval": 800, "profiling.agent.revision": "head-be593ef3", "profiling.host.kernel_proc_version": "Linux 9.9.9-0", "profiling.host.sysctl.kernel.unprivileged_bpf_disabled": 1, "ec2.placement.region": "eu-west-1", "profiling.agent.config.bpf_log_level": 0, "ec2.hostname": "ip-192-168-1-2", "profiling.agent.version": "v3.1.0", "ec2.placement.availability_zone": "eu-west-1a", "profiling.agent.start_time": 1691520070253, "profiling.agent.config.probabilistic_threshold": 100, "profiling.host.ip": "192.168.1.2", "profiling.agent.config.verbose": false, "profiling.host.tags": ["environment:qa"], "profiling.agent.build_timestamp": 1688111067, "ec2.profile": "default-hvm", "profiling.host.name": "ip-172-23-180-16", "profiling.host.sysctl.net.core.bpf_jit_enable": 1, "ec2.local_hostname": "ip-192-168-1-2.eu-west-1.compute.internal", "profiling.agent.config.known_traces_entries": 65536, "profiling.host.kernel_version": "9.9.9-0", "ec2.mac": "06:04:03:02:01:00", "ec2.instance_id": "i-19216812", "ec2.placement.availability_zone_id": "a", "profiling.agent.config.bpf_log_size": 65536, "ec2.security_groups": "default", "profiling.agent.config.present_cpu_cores": 8, "profiling.agent.config.map_scale_factor": 0, "profiling.instance.private_ipv4s": ["192.168.1.2"], "profiling.agent.config.tags": ["environment:qa", "region:eu-west-1"], "profiling.agent.config.no_kernel_version_check": false, "ec2.local_ipv4": "192.168.1.2", "profiling.agent.config.tracers": "all", "profiling.agent.config.ca_address": "aaaaaaaaaaaaaa.profiling.us-west2.gcp.elastic-cloud.com:443", "profiling.agent.config.file": "/etc/prodfiler/prodfiler.conf", "profiling.agent.config.disable_tls": false, "profiling.host.sysctl.kernel.bpf_stats_enabled": 0, "profiling.agent.config.elastic_mode": false, "ec2.ami_id": "ami-123", "ec2.instance_life_cycle": "on-demand", "ec2.ami_manifest_path": "(unknown)", "profiling.agent.config.upload_symbols": false, "profiling.agent.config.cache_directory": "/var/cache/optimyze/"} diff --git a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow01.json b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow01.json deleted file mode 100644 index f571b9681d751..0000000000000 --- a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow01.json +++ /dev/null @@ -1,1436 +0,0 @@ -{"create": {"_index": "profiling-events-5pow01", "_id": "stUU7YYBBkbVtX3nu_4f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jwj9IGMM0jWZjOAtjE9d7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "RdYU7YYBBkbVtX3nuwHT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C8RiWN9GOAWu10jfv-Iilw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "xmUU7YYBO2e_P_QbvJmg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eqelKqbeHiTw1Jlw68liwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "It8U7YYByh-A-Biyv8mc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dVb-MiyMMGjQnN4CNy5W_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "XtYU7YYBBkbVtX3nyQUE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YVVpCpnnAN7nqi22_B110A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "LdYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aMeqW0QxLpn1TpYZf4XBMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "KdYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_PmLUDiMT9Fiy_kfGXHxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} -{"create": {"_index": "profiling-events-5pow01", "_id": "MdYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RrLvz0R4S4ONxlxpZkei3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "N9YU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mbOVGyx5XatnK0SRKgRKUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "NNYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g3jLco5iklv9rjHlmxCtzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-5pow01", "_id": "KNYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yZrBKxKhbw4I5T2D2ia0Hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ENYV7YYBBkbVtX3nB1HM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHDH56Gg_3eKY-7t_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "J-AV7YYByh-A-BiyCxxq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ydVfMca4pTKtV_nMQvo2kQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "YeAV7YYByh-A-BiyGi5B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YM8VOmaiYixjkGqh3aYLRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "6NYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["53PCQ4S8hGae7xDUxkptJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-5pow01", "_id": "7dYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qwzw6oIfyawdflY_bB-eDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} -{"create": {"_index": "profiling-events-5pow01", "_id": "qWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Eh1qER1qLyoMW0w6ZkEkLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "smYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_zNN2R6gCnlCmrGYYAK4_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "qGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_CuNkg8IjplIBsYDC3MqZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "UmYV7YYBO2e_P_Qbhkg5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tXy3kfx8JYVKb1u9vHWM4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "1WYV7YYBO2e_P_Qbg0Jm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u4n3YuffBdoPIiHaB1UC0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "148877361383403"} -{"create": {"_index": "profiling-events-5pow01", "_id": "RWYV7YYBO2e_P_QbmFzZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZCa7vDPVTmdjv0FBSHomYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "bNcV7YYBBkbVtX3nsgwF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MxaBJ5vAlZJbFL1ZFA-tNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "hmYV7YYBO2e_P_Qbs2tB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kk6lQFGFmE5-o8l9P-PnVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "19cV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a8eRxSiE_6KOXeGPJZDEAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "StcV7YYBBkbVtX3nthkq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yuDdBF0iwQiPnskDDqWYwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "1NcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9BGZHTzs6oj_j1YiF-r26w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "1dcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9eJFc1RqWTK4Nh5sHxlOdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "jdcV7YYBBkbVtX3nuB51"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "--AV7YYByh-A-Biyxbvb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mcFH-Ijp7M4Pm2g7nfowcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "k2YV7YYBO2e_P_QbxXYP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mPA9NkH3378cVYxn3yS3sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "JuAV7YYByh-A-Biy0cDF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H_2Gi4xXPiktjMQVPnPo6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "VtcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jY6an4TJNzicxfsoO4aEFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "FtcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QhuAxDp-mAXxSlQCTHCDJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "XdcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jR2WafQ5aT4KiR_9VxLM1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-5pow01", "_id": "leEW7YYByh-A-BiyQzHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CHeythk0HZH6YmI9vQ5rRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-5pow01", "_id": "iGYW7YYBO2e_P_QbRObI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sdYsXSOFq3ZV5V3ZTd5OZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "8uEW7YYByh-A-BiyQCi1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g2Jekw_GmjkRbs2II8a1AQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "CWYW7YYBO2e_P_QbP9-R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f6Keqe1sXyk36jAJ3WN1sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-5pow01", "_id": "3tcW7YYBBkbVtX3nQo0Z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7uqXjdMn8cKJH0c7LBBRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ueEW7YYByh-A-BiyRDN8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r4lcZDimr4HL3ZJBoS4zaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-5pow01", "_id": "hmYW7YYBO2e_P_QbP91J"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "CmYW7YYBO2e_P_QbUe_C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["18dt2YlDI5SQuyr5uDM2hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "W-EW7YYByh-A-Biyc1w8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iKhp4VrunMdJZkEZm9IkqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "7uEW7YYByh-A-BiyfVwi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SrDodAnZ9uPT0nyBwub87g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "jdcW7YYBBkbVtX3nf735"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DAkV_97hJaROs8HKSG_NUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-5pow01", "_id": "QOEW7YYByh-A-BiyjnPr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K8gQh5zdfmwr_L8d6j_v5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "1NcW7YYBBkbVtX3nksnh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dF3lN3ea4am_7tDjMTNP6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "mGcW7YYBO2e_P_QbnjHj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iVK1cbIgag654ehUa-HUNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "peEW7YYByh-A-BiyrYy7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k4HJrAiqQ3V4Sy2tIInxZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "6GcW7YYBO2e_P_Qbojgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kHZvNVXXuZ4FaC6U3PxZfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "p9cW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "tdcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["41RJH9BALozcwHa5Gm2tSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "D-EW7YYByh-A-BiyzK0R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oFFMBClb7YDKbss0-D49Bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "pGcW7YYBO2e_P_Qb0Fc4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AoxNz9Y_PEGGL6UFqTd8NA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "pWcW7YYBO2e_P_QbzlQs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9zfvytpYavwLxYksfHEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "uOEW7YYByh-A-BiyzrTg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hgbYFeQR5UbL1ILQeJXsrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-5pow01", "_id": "79cW7YYBBkbVtX3nzPOJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c6o4JEm_SHCSlbGrmocvXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "vuEW7YYByh-A-Biy4MbF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["it1M7ufrxHsYyi2peFanww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "udgW7YYBBkbVtX3n2wD9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "zeEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dl4T3akeu1eU8F-sCfOUww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "x-EW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g0TcViARYA_NarblNdiqUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "xuEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8O4Oo3VCILgT6pGMxLQiaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "yOEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "BdgX7YYBBkbVtX3nCyUt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EKNw_XLZvm5U0bSAHP5Qhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "y-EX7YYByh-A-BiyC-Tq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KbIwDU7bE16YP2ns0ZA4pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "KmcX7YYBO2e_P_QbC4mb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3HYswCLIguo6i_KRnM6AYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "B-EX7YYByh-A-BiyDOZh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DbVr5WH8AZycf302C0td3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} -{"create": {"_index": "profiling-events-5pow01", "_id": "5WcX7YYBO2e_P_QbCoef"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zii4wg2T59k_VWZoCJQUDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "TOEX7YYByh-A-BiyCuLc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["84RiA4pbVL7KMlDvnXnbFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "BtgX7YYBBkbVtX3nCyUt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XiTL4w9S8KltLkj8tdlEIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "hGcX7YYBO2e_P_QbDIov"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8j8JNdpbtu6ZzDCgLiiQag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "zOEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RTGr7Nm-Ia9juXQJ0VJo4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "0uEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MY4vqWXc_k9n6qImvJUI7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "uWcX7YYBO2e_P_QbOr_Z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jKJw7MgwzsyLy5Y5-ZGSMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "A2cX7YYBO2e_P_QbObof"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7QawPKHJF79qrjka8nzLbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "Q-IX7YYByh-A-BiyOQRi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nsE2Ss7VQy9Y1xUvJ14HPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "9-IX7YYByh-A-BiyOALn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qkp5EyZaH9EKC1Tx2EnCYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "i9gX7YYBBkbVtX3nSErh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DXipnObSe0dCYjfUl0jbxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "YeIX7YYByh-A-BiyShVm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LibGknFXAn9fd0n8hPZURw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} -{"create": {"_index": "profiling-events-5pow01", "_id": "S2cX7YYBO2e_P_QbScVi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YFcmZLo-GvC7WdK5tCotfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "kOIX7YYByh-A-BiyZymA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fqlDalQnR0z4CfFMV3Mv9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "-dgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W4eaTfNJQRBDVqF5v5x57A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "_tgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x92QEPdFkYeW4x8Mit4TyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "-tgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VA9pzgeN6ktxH15wu8p4_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-5pow01", "_id": "BNgX7YYBBkbVtX3ne3aS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e0AOiOeHK39oqr5eNGKOkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "6eIX7YYByh-A-BiyiER2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VV8E-OYfEEKqtlp023Tqng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "YmcX7YYBO2e_P_Qbh_kU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_OQKwd7_zKSX8IYHdhu4OA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "702806677431836"} -{"create": {"_index": "profiling-events-5pow01", "_id": "5NgX7YYBBkbVtX3ni4Pc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FGf4xT_jVUAejwXntzL3PQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "puIX7YYByh-A-BiynF0B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yjN3QcXIO7ZJpjPqQPEBbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "LNkY7YYBBkbVtX3nJQGU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U-SQw_Ej849fFrBkcLqfHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-5pow01", "_id": "w-IY7YYByh-A-BiyJL2w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "K2gY7YYBO2e_P_QbNYgr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4FcDW-9IPZrZmO_AgR-UVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "1dkY7YYBBkbVtX3nOAq2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T3wubxICfJSY8FNVzGkEAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "-GgY7YYBO2e_P_QbNYme"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "a-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ZeMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["32T4OaSlAZyX3gvcGH9I7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "Z-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fWJaqb09QzwUMPXDtHMSXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "aeMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "TmkY7YYBO2e_P_Qb4CzM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "0dkY7YYBBkbVtX3n8KgW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xefg2tu-dTR7fu4bq6TlVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "MGkY7YYBO2e_P_Qb8DhZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4nXxkGYVgHbeGTI3oHepdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "G9kY7YYBBkbVtX3n7qav"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bjA-twM-arP4DofwAmuiCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "P-MY7YYByh-A-Biy71tL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jIUkkqlhs_xaucQSfOkxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "qGkY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "0tkY7YYBBkbVtX3n7qNk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uRrKKaf_gbp1De235zmPrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "mdkY7YYBBkbVtX3n861d"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nUFT-4VjV49edA4VHVD06g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "OOMZ7YYByh-A-BiyIY5d"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TCI-U8WcxrkkRuvWag0ygQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "TNkZ7YYBBkbVtX3nHs4s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PlNxGYc1KQXo_krOBCj9YQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "P2kZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["spFZMKZslqx7eLmYXiBH-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-5pow01", "_id": "PN8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S5QxSgtn_YPXxJ3jCeAVHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "571288167487052"} -{"create": {"_index": "profiling-events-5pow01", "_id": "5d8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j5hG8KKglQrQ3G7KSXA2QQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "Qt8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tk-Rn8r6-wqzqI-bfiAJ7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "M98U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-D2Xan0xr7Iyy5r8CY20RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "KtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ed2Wt5gOq97H8-8youFpYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "IdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EXarUgAL9HIosZihvCe9Zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "DdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cxsXzrG-rWhSkAffaeLL8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "D9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JbcOgGVzXu_Kl1MHENboNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "GdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BfRadBAJgVIPCs4sRWRCsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-5pow01", "_id": "CtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3YiY7TtFv0EXQiZMyJynqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "KdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GHgSIcaSuS6XNpC67kiXTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "LNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["759vzPaqX5H2_0qTOKee0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "INYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XDv5HwoOhhJwuGtzx9aiqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "K9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PKfrUz68RAX4mdNriJ73lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "GtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XAkh0cI6mI0TEjgeMQjJRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "JtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TrAEEkzHCQIrkyMsb-wF4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "MNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6BMEwaZdEOxcFFELpK3iqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "PGYV7YYBO2e_P_QbWBy9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kJPjpnk4438S9AxhBdL7Og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "1WYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["codND57fF0ln0PPsgzvoNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "4GYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NRT6b-EmSsUKrT0-0ibcag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "3GYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6YWns3NF2PVmevxSMrfdSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "32YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oe_nHyIGjMEfD9kwUevsMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-5pow01", "_id": "3OAW7YYByh-A-BiyAu7q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-riZP-fh7uXaUsCqBO2ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-5pow01", "_id": "KmYW7YYBO2e_P_QbAabd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EVbkX_ePnzMrnOl-TBl5FQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} -{"create": {"_index": "profiling-events-5pow01", "_id": "oGYW7YYBO2e_P_QbAKJr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bawlMqqRTjOm5tziwkLcwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "--AW7YYByh-A-BiyEfoC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cA8SM2W7SPYEpBx-8uBa1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "j2YW7YYBO2e_P_QbFsMV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R_D9JvJUWXzC0H3Nib_YHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "I2YW7YYBO2e_P_QbFcGw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_IL9L_uv3CfGfQbo7Tbz2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "fGgX7YYBO2e_P_QbqRsl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zyeCF78Ljkj_liCk-aIaJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "8mgX7YYBO2e_P_Qbpxl-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3QVerrpALkFsA-z-U___AA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "YuIX7YYByh-A-Biypl4D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aVn8RcB-QxhkQWDJX_CUMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "LdgX7YYBBkbVtX3nua7-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["73zzSG8Oeil4xVlA4Fb1Bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "x9gX7YYBBkbVtX3nuq9-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "XuIX7YYByh-A-Biy5oau"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QNP7PZqJy6OGXmZc1fiP_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "WuIX7YYByh-A-Biy5oau"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MM2CztTXvV5i9K2i-2RGNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "SeIX7YYByh-A-Biy9ZTm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SRve3dTLPRl1qAhVYZQKgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "fuIX7YYByh-A-Biy-Jux"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6NkVutVoJ0m5j8aVYyp0Lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-5pow01", "_id": "pmgX7YYBO2e_P_Qb-WKP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RNwCIBshkIMvUtAdsIyUXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "168532957631583"} -{"create": {"_index": "profiling-events-5pow01", "_id": "xOIX7YYByh-A-Biy9pUg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AP5Eq7B7RisKC973OjTPaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "dOIX7YYByh-A-Biy95dm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pp5lsGmp-JSx0DYM6KPKrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "s9gY7YYBBkbVtX3nF_jI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WSjAZWkrBfhyqCpr7c2wpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "r9gY7YYBBkbVtX3nF_jI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_9qdqX3M61Erctug7dsAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "1tgY7YYBBkbVtX3nI__a"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pixjUDno8EQPnhCn1ap_SQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "nOIY7YYByh-A-BiyI7hA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HYzllkhJBtq1_HQGHScByA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "pWgY7YYBO2e_P_QbNIap"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ium0M6gtUd_sKOi4qCX1xQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "itkY7YYBBkbVtX3nVRw-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8mfKeyebNB7GEjVrotPPKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "7NkY7YYBBkbVtX3nUxhO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qcrgeMf65aey4TtBdOxT8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "CWgY7YYBO2e_P_QbcsYD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8dMyIgFlKWEMYc0z_PTTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "2GgY7YYBO2e_P_QbcsmS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Oqbb6FakSaKBSmm5UVh16A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "6uIY7YYByh-A-BiyZPvI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ESbYg3aZAaH86uOl-CijNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "B2gY7YYBO2e_P_QbcsYD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-Q9uCXR-TIx0LsEoXVwIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "BmgY7YYBO2e_P_QbcsYD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8nNNC34bhCi_Q3XemgSrmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-5pow01", "_id": "BWgY7YYBO2e_P_QbcsYD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HPhJ76yG2kEeQYFKH7p-MA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "buMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3PF9c3wvWuSHWSRQ7lpy-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "cOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8wMbNj2bmC_k-f1sjP1tvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "22781733237518"} -{"create": {"_index": "profiling-events-5pow01", "_id": "i2gY7YYBO2e_P_Qbk-kz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wBeDaSzmKMf_8mF4P9fF3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "OWgY7YYBO2e_P_Qbk-uk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IdBN0EzRB0f6Qp7f7scKtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "NdkY7YYBBkbVtX3nlFIk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L3YM-JzWQGZBl6Hww0qX5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "C2gY7YYBO2e_P_QblO3v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I5V2d7T-ngpDaQd5S4eJBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "gNkY7YYBBkbVtX3nkU6M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JJHpr4fLpWoSKqg-aUPBfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "lmgY7YYBO2e_P_QbkeIU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yVg35eksppyHad0lI1eXKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "a2gY7YYBO2e_P_Qbr_2i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HylmGygzkKByc907Hb1zHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "89kY7YYBBkbVtX3nsW-T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["twP61I8BoQSVRAEu87hitg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "UNkY7YYBBkbVtX3npWjG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "iGkY7YYBO2e_P_QbswJc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IsqdVnLNhl2x75Zl1gQDqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "pWkY7YYBO2e_P_QbwxTd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EMABXmd9W1xztmohmhT4jw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-5pow01", "_id": "f9kY7YYBBkbVtX3n8ay8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AdOVIhl_n9Wje--mxIItNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "a-MY7YYByh-A-Biy8WB6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vFkcrQtWCVTfQjjlGu2S_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "82kY7YYBO2e_P_Qb8z_u"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YEm7NQBrTH5QHQqIE3fDrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "GtkY7YYBBkbVtX3n7qav"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "rOMY7YYByh-A-Biy8mGJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YQv8Jjxrz6pIHbJnxDZTDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "s2kZ7YYBO2e_P_QbH1uL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AG_6FvO14ax3UdwVieto8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "J-MZ7YYByh-A-BiyIpJU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pOL7hTlazWG39CR6gZV56w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "BGkZ7YYBO2e_P_QbHVUE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OtPO4_Cde7GWru30XAUPmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "deMZ7YYByh-A-BiyLpYf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m6Tpe3Eo4Y_x5AamWL8GLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-5pow01", "_id": "IN8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zOolLKwTF6c0fdaMu4zrpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "gGUU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qvp6aS0dEuRo-26h2BBtzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "mWUU7YYBO2e_P_QbyKOD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HylmGygzkKByc907Hb1zHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "sNUU7YYBBkbVtX3nu_4f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CryaWZekzG3MnYg7CufHdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "K98U7YYByh-A-Biyu8Z1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uWH1YJMiRNhCnBrl6NfCMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "498U7YYByh-A-BiyyM0P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0-Jsd5mQCWnt_-lPVIShHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "OtYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dLT0UoH40niOjk-XVme7dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "GWUU7YYBO2e_P_QbvZyb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wWjEk4V-ocnXQQZfOB5PAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "H98U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["81I56QjbyDYSIFcetHM2Dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "oN8U7YYByh-A-BiyusTM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hJqYLUumz9zXvS_kxlOwXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "D2UU7YYBO2e_P_Qbvp4b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g2ssOcOjXCCaYX7ZddtppA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "5GUU7YYBO2e_P_QbwKIN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j_ZkdluVAC4IXHAbI6Pmjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "Ot8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uFGWThWg3zgxDL3xxQAwYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-5pow01", "_id": "oNYU7YYBBkbVtX3nvAI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["28flplgbX9OoTxrrq9LhNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} -{"create": {"_index": "profiling-events-5pow01", "_id": "Md8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UAJ3qCHOXo3xE1EGVnJuHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "Rd8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YRYK-waaBK93YQxC-u6FpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "4t8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PYBUfV4nZR3PAgyIKhIwDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "RN8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ypQufrPd-vWE7YGaekcTfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "JdYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PFbB3COAmbAYRaYoh99KYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "JtYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KaCen5lChBQlFEf5iOW4fQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "498U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nixBByAIlNzP6S-DgkxohA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "198U7YYByh-A-Biy3enR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aUWb9UKO7qICsUy_ccfdaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "N98U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4f9KZiG-idTZu0O-sRt4aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "Od8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nyNpeOOTv9ufpl_gGUbV4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "R98U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k9vLKRFLFVoj2RZU6JVbBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "Ot8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n-PAN0ssaXvJ6kY18i9tog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "QN8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ROD9hyXKyG1xyIp3eNp24A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-5pow01", "_id": "I9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SOHLJ-nmGdCO3sK7plOv2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "CdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uh-jwsuxuUYFlAJ62euRwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "JNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["87tmMz7dkdhga3ssbWBSBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "FtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mxx8ugWwWszTb7eJBegR_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "GNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lBjHl88ojwoksS7PDXJBaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "J9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bZSMUUx94Y3yXU6mhbsNCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "N9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GHUuby7f7Ki-mhiDAG_3SA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "EtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-f-8xMNzAVnOWhCPzAg7Cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-5pow01", "_id": "FdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rmqpLjKhFVehwbUcabYxkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "xOAV7YYByh-A-BiyCx2w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r1HvPKUhWfo1c_dGIcqb1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "YeAV7YYByh-A-BiyChop"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "aOAV7YYByh-A-BiyCBR8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y2rsoafmE6xytYWP5sYCtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "66636157595941"} -{"create": {"_index": "profiling-events-5pow01", "_id": "MNYV7YYBBkbVtX3nCFPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EM9AISJikuWZSi4uSs5f_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "8eAV7YYByh-A-BiyDB-G"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kOsAFOokw3TMOocYazB7hA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "QdYV7YYBBkbVtX3nDFzR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dOsagAt-XXDxs5XGCBbstQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "yeAV7YYByh-A-BiyGSzz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L7NiiM2JcpyLYptGtnS-lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "cmUV7YYBO2e_P_QbG-2M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C8RiWN9GOAWu10jfv-Iilw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "EGUV7YYBO2e_P_QbG-_2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "8dYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o5ViqVqqhAWPiT5DHT3ocA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "6dYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uk1ygFuU89LLnNUfPAM8KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-5pow01", "_id": "7tYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yI2e6HYAfhTSJaxYuulCOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "q2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzu7roeVjuX8DIGpBc0otA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-5pow01", "_id": "r2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SDmVY9Mljfrd1uHcDiDp-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "pWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xVGi1i7nlJYkT__QgtZrJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "adYV7YYBBkbVtX3nV7Q-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hbFdZ00lApIoSJEOlowBQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "GmYV7YYBO2e_P_QbWBoF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NIUTQnmo7hmDvvAn77UZ1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "RdYV7YYBBkbVtX3nWrnf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T7kTFHjAtS6OtzybnvJ0ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "RWYV7YYBO2e_P_QbWSCB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Sz3zcn_jRruHSw5ug1i1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "uuAV7YYByh-A-BiyWmE2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4sjDMbuo1EQDli2AMeF1pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "mtYV7YYBBkbVtX3nWreQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ENrq2_MBwld_ERQVMIbQlA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-5pow01", "_id": "4mYV7YYBO2e_P_QbWyOI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q_0hpIuT4vi1WRoDxA9V3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-5pow01", "_id": "OmYV7YYBO2e_P_QbWBy9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "1GYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sPAXeu9JRh62VS0TzctJEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "4WYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["toPZwdg4nGX0bw501hsszg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "12YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5NYvRSd87djiQAuRZMHZrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "2GYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qfmPxWX0umuPnDn2aoiurQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "idYV7YYBBkbVtX3nheD0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4NHR-vq-GiKf-T9dij8d0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "69YV7YYBBkbVtX3nh-MJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o5hO63TnTaHm6rWDJ9tLlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "f-AV7YYByh-A-Biyo5MJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kZfWmwYaJIIOUGCRBPlr6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "99YV7YYBBkbVtX3nlvPE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R5Cb48qStI1GlPaxKWm-mw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "29cV7YYBBkbVtX3nsw-Q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "PGYV7YYBO2e_P_Qbsmir"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JB6F-U_ns7SY5JIwmO_kFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "KGYV7YYBO2e_P_Qbs23k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W24Y25ivMwuM7NhKCx2-SQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "1tcV7YYBBkbVtX3n1C00"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dJyQsD0pMmiwvo0yyQz-Eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "YuAV7YYByh-A-Biy08WI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UpG4HUjCnzDBM_w7fbVK2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "aWYV7YYBO2e_P_Qb44h4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DXgAgM2hMcqzn0fnoAoP0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "NWYW7YYBO2e_P_QbBq4R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VAqxR_4yWhELwHpSX2G6ng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "zNcW7YYBBkbVtX3nBWBe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PRG5hVGVXLYVZ0h02g0udQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "hGYW7YYBO2e_P_QbFL_E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vwNl340FtK4II3OTHfAxDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ktcW7YYBBkbVtX3nFmxw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H0WY9BQOdRjXYQkYwkFdgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ceEW7YYByh-A-BiyEwXO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "G2YW7YYBO2e_P_QbEbqq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Ig2MzPdh_XK7em8mWoJag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "XtcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qDjdfIDXYeKpMzfOZsKweg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "WNcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t4n19LeK4zvHCEOuBRHoDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "W9cW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ch2MeEpHv6ftyPFPGwDJPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "WdcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZpjYqKFeza_P-0E6-9HQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "amYW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PR0G3Br-iqix1uCUZkKS_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "DNcW7YYBBkbVtX3nU5wV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JK8YqiAWSqqVOym-FM3Bcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "FuEW7YYByh-A-Biyclc2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8m9XmKLa72WdntoQwSY0tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-5pow01", "_id": "z9cW7YYBBkbVtX3nkscq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bbBiaFslvpreG7iqHkAtng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-5pow01", "_id": "_-EW7YYByh-A-BiyknyA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ul5WCOLuBGGX66Anz_J-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ZmcW7YYBO2e_P_QbjiKj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x4JagFwIYKM4hCWjdkk5Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "JdcW7YYBBkbVtX3noNM2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fVY8nef_n-I9Q52QhyCFfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "F2cW7YYBO2e_P_QbnzMm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sl8hikPZI3gmfoj4I-xFMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "HWcW7YYBO2e_P_QboDaE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h0lEtzKJzcNxepmOT3KRtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ktcW7YYBBkbVtX3nodQJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["txZXHAJurNaMIlI0kux2YA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "09cW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MIjdoSZWUGoqrMkmoKBGPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "r9cW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jwz5Ko_H_B_a_KaZUAnDNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ttcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-vSsOv3oIeGq1jnkLewmKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "q9cW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Ir6dnl0cXTDA9lqUj6YdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "tNcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YABibb_jw0z2mFZJ8rsBIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "qtcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5L0Vg1E8eRaEol71UFTwGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "qNcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rAVnotLNqZZX90k5rHuXLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-5pow01", "_id": "rtcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vQXtdmIzgIVlhx1gewz_RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "593778632422369"} -{"create": {"_index": "profiling-events-5pow01", "_id": "8tcW7YYBBkbVtX3nzPOJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nfuQzK4dMvkwCIn4oK0vJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "KGcW7YYBO2e_P_Qbzlaj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VVLBSGTuYWH3O356lNUySg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "oeEW7YYByh-A-Biy38Nt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LU5M-Y2vAZAPnKMCmcDaJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} -{"create": {"_index": "profiling-events-5pow01", "_id": "z2cW7YYBO2e_P_Qb3FtF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1QLTwfIs5p4VcZehcoW7uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "BdgW7YYBBkbVtX3n4AZK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6DJ5rUntpH_kTGPTanZjBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "zOEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zqEaDpKRyJAOpyXtzl9UkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "wdgX7YYBBkbVtX3nCSH9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuzNOG3t4OkPYTKYBPqKPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "umcX7YYBO2e_P_QbDIuZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["udcCD1ZwYlzlR2BrHqM6qQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "NWcX7YYBO2e_P_QbDZHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "z-EX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ja9MBlCW9JbhLw8tshjLeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "HNgX7YYBBkbVtX3nOTzV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5DxLQCjm2m1lyk1iyQve0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "I-IX7YYByh-A-BiyPQuP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SrDodAnZ9uPT0nyBwub87g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "uuIX7YYByh-A-BiyPQlQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MY4vqWXc_k9n6qImvJUI7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "iWcX7YYBO2e_P_QbOrtJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "mOIX7YYByh-A-BiySRIf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nobPGa726Uz_QIRAEzxZhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "uGcX7YYBO2e_P_QbXN28"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P-dCdUT1LEJyae6UYwKugg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "DWcX7YYBO2e_P_QbZ-K9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JnSKFHek1VX4hQrcBvK6Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "AtgX7YYBBkbVtX3ne3aS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YjeaaN9Gs9Jtblq8lj7A3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "BtgX7YYBBkbVtX3ne3aS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ArhssJT4V7-kmdsezZTRQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ANgX7YYBBkbVtX3ne3aS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w4AKEYruYsyRiuNl0wOumw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "_dgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qcPyRyUca9zMz9MzDr7aHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "6OIX7YYByh-A-BiyiER2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wO6E0aI_adazJwV1nEPvow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "5-IX7YYByh-A-BiyiER2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0R9Tk_AwuvgNuleyrD0E-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "tWgX7YYBO2e_P_QbigJT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q9GZUSBL9TB0CdE5vyfEsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "6-IX7YYByh-A-BiyiER2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HFDZtj7y0Bw2k96K0Shk-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "0dgX7YYBBkbVtX3niXvV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Egb8M192QRouZ1YPjNwqmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "nmgX7YYBO2e_P_QbphZT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ymZCjvGyGb7nDgHKngF-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "6tgX7YYBBkbVtX3nt6W3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vOZHtJ4ahW-g2TWd1-Whrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "79gX7YYBBkbVtX3nt6I3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ycogR2C1hH5eXGjaW9oPeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "KmgX7YYBO2e_P_Qbtih6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pHFN0qaDz6OHVNs6LDyfew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "M2gX7YYBO2e_P_QbtSOl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RsVBVY52cTTp5FCtYm6r4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "hNgX7YYBBkbVtX3nt6R3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pgb9JoAUQxoSCvdXn7xEkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ENgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KBx8UMYQRpX3PQkFGueoQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "EdgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3bvdBbzWBhiwCbUR097jxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "E9gX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cPi-mObQCSuLuQtVOYID8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "F9gX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GAokC6Zv-UfUvWotAYqkSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-5pow01", "_id": "X-IX7YYByh-A-Biy5oau"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wl2yvlpS90Ypoy2M-skpww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "tmgX7YYBO2e_P_Qb6Vmk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MT3qrLXJyyFa5mMadoI1ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "6tgX7YYBBkbVtX3n9-Eh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UNA5mzQxt3Xt7EAz1m9YnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "SOIX7YYByh-A-Biy9ZTm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ess3oHhLNEi0m2JAz0_5DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "qeIX7YYByh-A-Biy9ZKm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pt09Zvf__ya1eNp2CoZNVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "p9gX7YYBBkbVtX3n9t6f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ayg1IWi6ap3XN7RjaMkRog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "tdgY7YYBBkbVtX3nF_jI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0E7LlamNni9h1zgUjdYD5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "stgY7YYBBkbVtX3nF_jI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-49a_E8AcF9JV2D17KJ99g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "G-IY7YYByh-A-BiyQttA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9hAbTICOesyJ3rX_TlmZDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "JtkY7YYBBkbVtX3nUxcK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4sjDMbuo1EQDli2AMeF1pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "hdkY7YYBBkbVtX3nVyEZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bredr3OvHQiC2uo7mFYNAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} -{"create": {"_index": "profiling-events-5pow01", "_id": "M2gY7YYBO2e_P_QbY7vw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tT2A_bCpClAyR0rNtUXbYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "GtkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_eN577uJw5hksIBqBf1iCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "FeIY7YYByh-A-BiyZf0D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xTmXxLtxYtdjX3OFWgcBtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "3WgY7YYBO2e_P_QbZsEV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SuyrLdAGlB-Gqd6pTlCwTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "3GgY7YYBO2e_P_QbZsEV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aP6GIsw4ofWcnUGlBduuVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "3dkY7YYBBkbVtX3nkU_F"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UL06CNiVyxEFpIouFPRx3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "_-MY7YYByh-A-BiykRT_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_7SjIJ79HdCt2_IZxFKFsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "zWgY7YYBO2e_P_QbkeNU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sSkvuXEJhjIUI110bPCy-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "x2gY7YYBO2e_P_QbkN-c"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1o1T1TIStxTZj-e2WTNkwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "hWkY7YYBO2e_P_QbswJc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8QWlvovygGFcfE-e_CiKgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "jGkY7YYBO2e_P_QbswJc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5bQcQ0KEBggKnhUPDGb0jQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} -{"create": {"_index": "profiling-events-5pow01", "_id": "imkY7YYBO2e_P_QbswJc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LozaztVRNbKlSptg74c_Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "sdUU7YYBBkbVtX3nu_4f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QYRd432ews7Dx4JLAryfRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "9t8U7YYByh-A-BiyusJq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uxA4A64BqMWXOrNZbvu1iA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "Kt8U7YYByh-A-Biyu8Z1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zI9JvucnvxyxLZyzixdcpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "DmUU7YYBO2e_P_Qbvp4b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bFqi88DUwWkr_8kK2-MSRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "od8U7YYByh-A-BiyusTM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u26YAXespQsbQjR7YsAYzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "XdYU7YYBBkbVtX3nyQUE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OPOCasATDNT8t_l-saejjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "4t8U7YYByh-A-BiyyM0P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sWUvdmC1yhMffRymX3J_5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} -{"create": {"_index": "profiling-events-5pow01", "_id": "9d8U7YYByh-A-BiyusJq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4u9WOOyrWYLdgsjOh9aCUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-5pow01", "_id": "n9YU7YYBBkbVtX3nvAI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dt_oZZ2sQo9aPZAJj8jPTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "oNYU7YYBBkbVtX3nvwQZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Lq2lfj5xkTFOSbFr4_BQ2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "Od8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["an9gjQnke-IYWAGoKUs5KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "gWUU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zl3Lkb99x2SkFZzpGc0tBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} -{"create": {"_index": "profiling-events-5pow01", "_id": "NdYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nWUjPDlBGs10DeEAyhYVTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "Nt8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6eTapoSsPn6zyk1_cvguaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-5pow01", "_id": "M9YU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G0DLtHxiVxElcFIXMT-PNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "K9YU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xWfVfitdsTIFX4dhe6CakA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "MtYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s_LM4tNvgy4k7bBRfDcNqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "598U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jvc_WE7B1F8hMVB_gxFucA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "5t8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jxx94k5bF0AyU24TvMCnFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "6N8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sJC4CV2eRcloTSQEGQH29Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "Mt8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AREehA9nDZJasQeEH6svQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "4d8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "EdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UAgkJzf4StR0guQvtrxwfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "MtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LrLWZ5bevl0fyb8pVLrxUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-5pow01", "_id": "KNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aFWcqgahvwzy1xUY69A0Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "HNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ihAOVqchKA5mXlZP4M1IsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "DNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P_F4N85n6ygrRQ1ObfKSJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "_9YV7YYBBkbVtX3nCVTP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JI7mG0vgGSTA2uia9-1jSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "hNYV7YYBBkbVtX3nC1gN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fmIQ76zzVZ9EWAQ55W78zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "reAV7YYByh-A-BiyBg34"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7dZ7-R85Uk0iMtgooj6v_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "kdYV7YYBBkbVtX3nBk4o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VrBz5ulfwdPTqnMaGIpcBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "q9YV7YYBBkbVtX3nClae"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SHi_az7OQcBjeyPt41wowA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "95381405781962"} -{"create": {"_index": "profiling-events-5pow01", "_id": "NWUV7YYBO2e_P_QbGelA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Yc_2GTJ_IVPE7f4u8QXDeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} -{"create": {"_index": "profiling-events-5pow01", "_id": "CWUV7YYBO2e_P_QbF-SC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JYl32o-03G4ABrH8cW9MlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "MuAV7YYByh-A-BiyHDPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "aWUV7YYBO2e_P_QbGOeB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-bsoNX49ITduR-HMxcIbsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "8NYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PUKA7gaaH9QtcEUOhnkXBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "59YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8THUiHTgWMDGXf1IWeY26Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "69YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "pmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b2RSnmXvhjCRc5PWjsdxAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "rWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["96zUk00wJUkz6pqWJ4UVBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "s2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XXVig9Ie3HmFHZwzuss1kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "79YV7YYBBkbVtX3nVq52"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iOgvcGNEugo-q4Mte_An1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "TNYV7YYBBkbVtX3nVrHh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oSCp9cFxZ1aVa9L0c22cCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-5pow01", "_id": "CWYV7YYBO2e_P_QbWyI8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z5-B-mtdUNg5G8Toj1uZ9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ueAV7YYByh-A-BiyVV6i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "2mYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GdQO73uJU5ltMBM9sQEM4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "3mYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C6VUfIIv3MbNvll1xucbVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-5pow01", "_id": "dOAV7YYByh-A-BiyhoV2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8bQaxjHqOXy8jFaY6w3jpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "GdcV7YYBBkbVtX3npQJl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_BHWrMWBlVU6-0DD2Kvl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "SdYV7YYBBkbVtX3nmPtF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "2OAV7YYByh-A-Biytaeh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p0Pia_VKvNIpcjOrg5PBFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "5WYV7YYBO2e_P_Qbsmn3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g-gvaAwuroQsfSOFcGq40g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "hWYV7YYBO2e_P_Qbs2tB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nON9RmBx4umF5B_Of_VNaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "LWYV7YYBO2e_P_QbtnB5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B3eCfffgWDywlQf98in5qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "7NcV7YYBBkbVtX3ntxpc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yU87pg-Ch2E9K6GDZMg_og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "7dcV7YYBBkbVtX3ntxpc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YxRH1n6rM_I4hLiGtKmVMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "a9cV7YYBBkbVtX3nsgwF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "J2YV7YYBO2e_P_Qbs23k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IPIMyWIkL5MsP1Bo20O32w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "Y-AV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bc6HNlC8Sl7niDN9L84HCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "jdcV7YYBBkbVtX3ntBPF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8P7h-qet3p603NxSf5JWTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-5pow01", "_id": "umYV7YYBO2e_P_QbuHEg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "HeAV7YYByh-A-Biy0sIJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Aq5HJRyvf0tzNYqtMdi3JQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ZtcV7YYBBkbVtX3nxSih"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UcSfB9O7oaCsfgTNqnRSmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "sdcV7YYBBkbVtX3nxil1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eyk6myVZ88WlljRICe8V4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "BtcV7YYBBkbVtX3nxSdX"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Iz58o69gDrMyQIJrUSlESQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "907195111575642"} -{"create": {"_index": "profiling-events-5pow01", "_id": "puAV7YYByh-A-Biy5dxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cfo59YpRKB0q5iQSQJ-VYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "TtcV7YYBBkbVtX3n5UgW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vMqHPs9EIjuvSlEC4OiiMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "y9cW7YYBBkbVtX3nBF4I"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JVsUuzDWhnoUag5GJcXYzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "VWYW7YYBO2e_P_QbBawR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fMEGhVur8bO2mv1boqOVuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "_eAW7YYByh-A-BiyAekA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a8y9d1sq41lKVZ2hOEtOWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} -{"create": {"_index": "profiling-events-5pow01", "_id": "e9cW7YYBBkbVtX3nEmVM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "V9cW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sPnyqYXZ1627cOAm3Dt4dA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "562164997202330"} -{"create": {"_index": "profiling-events-5pow01", "_id": "WtcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xWQBAJ7ncYkjoV_tk9YLSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "U9cW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["muSA4-3A5tqLjcddDaeDBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "GNcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hphMgjf8tLvtIOhJJeMEOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "YuEW7YYByh-A-BiyQi3_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AePsFsEWIAKcD6i5fTcKwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "iOEW7YYByh-A-BiyPiek"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BgnwfcudspKPFADqFnojuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-5pow01", "_id": "19cW7YYBBkbVtX3nRZBy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I9TiskxOBE6uewdlBEfbaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "HuEW7YYByh-A-BiyUD3c"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OYGXc31yJI5bR-H2iNSwHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "LWYW7YYBO2e_P_QbUvPO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FpeKkethPGO1uv-qrij4uQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "COEW7YYByh-A-BiyUkAI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oF-wY_acT328qrZ3ugnkzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "_9cW7YYBBkbVtX3nYqmZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y4O8D8hxYkhFJTYN-hGU2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "rOEW7YYByh-A-BiyfmHu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FYsp1kqfqOBHCXrvmwLiMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "PtcW7YYBBkbVtX3nfbnk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zrel0O8Eu19Ixn8b1A7RrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "xOEW7YYByh-A-Biyclr3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kZ6jYHQvenC-oIeTFn_Bnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "LOEW7YYByh-A-BiyfmAg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q0wzD6Wsaoym2okQ8aY53w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} -{"create": {"_index": "profiling-events-5pow01", "_id": "EtcW7YYBBkbVtX3nkcYc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-o7jkJLtD4xHchcLgzNuuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-5pow01", "_id": "nuEW7YYByh-A-BiykHkK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iXZcf6LHfVLaFOybaknpXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "JtcW7YYBBkbVtX3njsRV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "HeEW7YYByh-A-Biyn4hj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eXATor8dtVm3LPIO_GNaZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "1dcW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ofbkGVhqHskFPiKv2X28g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "auEW7YYByh-A-Biyro4M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bQ285knnYYuMww0WgMbI2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "mOEW7YYByh-A-Biyn4n1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cn2EpQqWCVem8DknXDkNXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "pGcW7YYBO2e_P_QboDfC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XuoRBwH8D9PqSHFLLM0iiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "5-EW7YYByh-A-BiyoYqh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ewqZUIOmU9Ti-nJquCY7dQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "yGcW7YYBO2e_P_QbrDqK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AxLFvg4n6uQItdMk3gw_xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "99cW7YYBBkbVtX3nrdtn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FjtKztgbAQPS6bJqFyRkYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "a-EW7YYByh-A-Biyro4M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fNOV0V-zSZCXeYqmr986ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "W9cW7YYBBkbVtX3noddV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4I-ntmDjAgUXJfwbuBJNjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "5uEW7YYByh-A-BiyoYqh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-EkvDjA94Zr1iIohgty7mQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "1NcW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KPRFk1hV8cCqMtGiVI0VUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "QNcW7YYBBkbVtX3nrNlH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ay1JvUpYidc_jtVVQh5xJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "htcW7YYBBkbVtX3nrNrT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7pCWL6qVpk6cdOVpmC7rqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "rNcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5ssUCcghlPpbufn_FI7lhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "stcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NWTYSV7vGDryRONnCUqo1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "qdcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Yg3TaXRMJTka-oF2wrTuxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} -{"create": {"_index": "profiling-events-5pow01", "_id": "7tcW7YYBBkbVtX3nzPOJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Nd9rMkTYCiObUWdQEYWSwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "EeEW7YYByh-A-Biy0Llz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YDo1NT9KzNVeSq1G9W3WWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} -{"create": {"_index": "profiling-events-5pow01", "_id": "7dcW7YYBBkbVtX3nzPOJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TwmBGtDgORQiem0fqXxYUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "39gW7YYBBkbVtX3n3QKs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hD5xCbVnNYVsLiq_B3NCDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "wuEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "jmcX7YYBO2e_P_QbDpI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IcP7NfEq0GawQQCHmZWcRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "g2cX7YYBO2e_P_QbDIov"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UUY2L_ithWPFsPGJM4Kw3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-5pow01", "_id": "deEX7YYByh-A-BiyDedc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ra9c-heZALvJmUxSmzUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-5pow01", "_id": "VNgX7YYBBkbVtX3nCiNo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hphMgjf8tLvtIOhJJeMEOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "j-EX7YYByh-A-BiyC-Nk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OqL1jazxhGNp3BmuN0BL6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "kmcX7YYBO2e_P_QbDI78"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["scKMoVIbbsXT0ePI0cAHEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "7OEX7YYByh-A-BiyDemY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4cstsRMDoVu7vb1ZvH1EzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "zeEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_BHWrMWBlVU6-0DD2Kvl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "-2cX7YYBO2e_P_QbScad"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CHnrKd15QpNtnzP8YzFv4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "d2cX7YYBO2e_P_QbS8t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mnK-jqHbwNjcoomJsw59gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "CeIX7YYByh-A-BiySRTi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hYfhfJkQW17kyXXXeL8OrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-5pow01", "_id": "utgX7YYBBkbVtX3nSkv7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_lMqaF4gbGiFm8tgIiB6eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "7GcX7YYBO2e_P_QbSMNE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "h-IX7YYByh-A-BiyXSiy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U-BNILa1SCuDbNciG6XDXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "B9gX7YYBBkbVtX3ne3aS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EJns5ogzEJmEGiD1xX0ydA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "AdgX7YYBBkbVtX3ne3aS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pWn_IRU-j_6Nwh-gfuAqfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-5pow01", "_id": "6uIX7YYByh-A-BiyiER2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fDQou-XRb52d9gCJh1ayOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "L-IX7YYByh-A-BiyhkDE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cELS3s9xDUsfqdE_Tc5Ajw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "JtgX7YYBBkbVtX3nmo13"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jwz5Ko_H_B_a_KaZUAnDNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "K2gX7YYBO2e_P_QbnBSM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ymCCYcwH_madRuyjsHk5Mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "zOIX7YYByh-A-BiyqF8h"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QDgIPJ6K1Rf5OSw95yEFHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-5pow01", "_id": "nWgX7YYBO2e_P_QbuSt5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mpjzTZhXzUC8aYg4OfeyGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} -{"create": {"_index": "profiling-events-5pow01", "_id": "TtgX7YYBBkbVtX3nuKdo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ngVpwVwgO4T6nb-06wRKNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "FNgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZiZ1khLLMUzgYWGwfUZAEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-5pow01", "_id": "GNgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QOIxcZGbFuLnj5qiY-JZYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "EtgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vthGd_F8mbZA2w12Nf4aww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "FtgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "WeIX7YYByh-A-Biy5oau"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["23D9WYWWXJZPmgi3LP_trA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "zWgX7YYBO2e_P_Qb5lIe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GQY3N3qZRu8haCsdxq571g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "W-IX7YYByh-A-Biy5oau"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G2qSXnyvIGQkSNpP5wPgdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "711845992008202"} -{"create": {"_index": "profiling-events-5pow01", "_id": "8dgX7YYBBkbVtX3n6NKY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9XdZpM6-FAy3LMUV5bnSRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-5pow01", "_id": "WOIX7YYByh-A-Biy5oau"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nwg53akFiAKZJpHiqCwAbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "E9gX7YYBBkbVtX3n589_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OoPYq5Aw6d1wKTV_c9_UOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "UdgX7YYBBkbVtX3n-ONq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NmZEPOVWjWJBf47eb30-vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "QtgX7YYBBkbVtX3n-eUA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z1ah3dkQRTcpWCEydc1lfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "udgX7YYBBkbVtX3n9dtq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "-eIX7YYByh-A-Biy95jl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4ocpdZMlRpRzCexEbOVmPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "qNgX7YYBBkbVtX3n9t6f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dnsAy4vOc46KZJiS5dGT6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "6NgX7YYBBkbVtX3n-eZU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AuqG1b42cXBbKiNJcLaKpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "sNgY7YYBBkbVtX3nF_jI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yrneF8Y5HnZdPRsa0iSPNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "sdgY7YYBBkbVtX3nF_jI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YFJedgXKyIDWLxlCPDwfQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "tNgY7YYBBkbVtX3nF_jI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FTqEftgEgF-4HalIRfrGpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-5pow01", "_id": "OeIY7YYByh-A-BiyKMx-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yyOgLKUZuSQUa5BkL2jvpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "VmgY7YYBO2e_P_QbI30D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n6EgKcwZlK3OnMM95lvD6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "XtkY7YYBBkbVtX3nQwsG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "X2gY7YYBO2e_P_QbN44i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v3iq4oJQ3VCG0e1sWoxtkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "aGgY7YYBO2e_P_QbVarR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4atjVCntPFZjlZxUD6MXCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "LtkY7YYBBkbVtX3nVR6C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7V6aRLUSfKlOcOf1w7yKYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "V-IY7YYByh-A-BiyVPT1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["09uypqtTxXlIuIrZVnABBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "HdkY7YYBBkbVtX3nVyNb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDKxniIVk0RWV976qb-dNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "jGgY7YYBO2e_P_QbZcCt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-iLOmSM0bOvxtv9W5h6VXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "z9kY7YYBBkbVtX3nZSze"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AnUv3QN_2ZayAg10mwHHFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "LmgY7YYBO2e_P_QbccJo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TkPEPsUQlEC8_tTSu1y8wA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "KmgY7YYBO2e_P_QbccS0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2p1e_ByfhPk84t_WqyZsxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "auMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4qft_3sVVVVKL2SEz3KAyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "b-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["htfRCBFoc4VoJwgN8Ytl-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "bOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["epUUcKloArUaO4HmSd6-0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "7GgY7YYBO2e_P_QbkuQ0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3jx5ziVarO0rH_UBySTUCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "auMY7YYByh-A-Biykhac"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2uW4N0T57kNGJTVG5_1zTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "E2gY7YYBO2e_P_Qbr__k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jUHt5y4xbMsVQ2NY3U5mxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-5pow01", "_id": "h2kY7YYBO2e_P_QbswJc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vRLmJJNBX8J2JJ9imi8dPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "xNkY7YYBBkbVtX3ns3bd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "E2kY7YYBO2e_P_QbvwpB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4BeOljMY7zmWSgDKbEbSZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "G-MY7YYByh-A-BiywDft"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "R9kY7YYBBkbVtX3n3pnE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SMLewOlFeXmKZa6xL_ARDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "79kY7YYBBkbVtX3n05Ok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t1xfFBeH5Fl1K12J5A31pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "89kY7YYBBkbVtX3n4Z2b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c2STw5Dy59fyAI6ZtoR41g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ueMY7YYByh-A-Biy00jx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "E9kY7YYBBkbVtX3n8Kqc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3MSb55knyBJ7ClwjPXRNwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-5pow01", "_id": "BmkY7YYBO2e_P_Qb7zcM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PicgGG7wbtdmW_0WJKDC-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "SGkY7YYBO2e_P_Qb8Tn-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wu5Ui6X1wYCeANyAsyHaFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "cGkY7YYBO2e_P_Qb7jUi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tU6VK5zLihoNeJDRhxPnUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "MOMY7YYByh-A-Biy8V8f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zcSEgSwv-OAVAhTXWGeqFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "1mkY7YYBO2e_P_Qb8jzI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pZUry6bTXYygY6NfqwYQNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "9dkZ7YYBBkbVtX3nALZa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CWudsqc4YRwwO2UAdX1LxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ndkZ7YYBBkbVtX3nAbtG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6VlRZTvCAGEjKAJI9WErGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "meMY7YYByh-A-Biy_2g-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "yGkZ7YYBO2e_P_QbH1kG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e7kg8w388m41akTi9Kihyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ytkZ7YYBBkbVtX3nIM9b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qD_J237PVcJWQeJzWEaj4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "x-MZ7YYByh-A-BiyH4VG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "TGkZ7YYBO2e_P_QbMXJP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U-SQw_Ej849fFrBkcLqfHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-5pow01", "_id": "odYU7YYBBkbVtX3nvwQZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "odYU7YYBBkbVtX3nvAI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4ieFm4DhmWNYMrTtIZLOTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "f98U7YYByh-A-Biyvcco"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YZ6XTwSTsk_RRpTARdTTcg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "vd8U7YYByh-A-Biyyc_A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F4DUvBkuKPYx1hCGNzwitQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "I98U7YYByh-A-Biyv8mc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XQeY0u1F2xnHmZQvstPXhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "vN8U7YYByh-A-Biyyc_A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FN29r4iQqyKpKryFAHklNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "OdYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "Id8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DLW1J3k1lahctYuhwA129g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "mGUU7YYBO2e_P_QbyKOD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MWvxOIZDGq4hR0RiTlBjWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} -{"create": {"_index": "profiling-events-5pow01", "_id": "4N8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iLTslrGORIyXKfkvn0rVCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "MN8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ccyeq1IpEdYyyzMGVkI9Ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "MNYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["28hHkhN7jPc2yLRpJAYfPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "L98U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_j480Qg9v5TNK0lQGeFwAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "Pt8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8AqERkmGja0aVhFHauF_yw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "Rt8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2bYjKMpMW5W361PJ9SbEqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ytYU7YYBBkbVtX3n1xTG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "t2UU7YYBO2e_P_Qb3r-v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dPivlAC6aaFKRkKmSRwlpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "NtYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["96g1R53V5QyPuXTUHSgw4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "J9YU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F_APHoeVxOWNqwDMoBgBUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "NN8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kCi3XJtF81OLZhjrXcqzHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "5N8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nsjTmLeWgJZGEXKE2bGYPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "H9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eg4GNNub3CPns1G5g2R71w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ItYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4FMEbu46FVTF9FY-0Ogn2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "LtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VnpinE4u8LaMWLZMBdXuZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "M9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wOaaLLn26MWCq1Ch7gi66A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "NdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hLX1mOZZ4FB_ggjZCD1W-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "NtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o3FJgYr9HoLMDfWyiRLq9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ENYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pFwqiF8mGnNqqISBiOraPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "E9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UbnTibb7iUG5Z59b5ewlIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "HdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pkyFSPLbfCpCJS0cbldBzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "F9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eviuUsW23vOjlBWQv0bv5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "MdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aRGWrc208dGoT33fGEbwGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-5pow01", "_id": "SWUV7YYBO2e_P_QbDOFC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dLtkTN9H0P9GQGUpxzaGrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "6OAV7YYByh-A-BiyHC88"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hSPX2ocR_Ka7dmSG_0BvUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "rWUV7YYBO2e_P_QbF-XY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HBL0k7Q3NY1Rzs8CB4mIaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "39YV7YYBBkbVtX3nF2Us"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uVz8NwCzYiroPS8zol4cYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "k-AV7YYByh-A-BiyFSTD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RLske_-faZ7wKdYb3WXphQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "89YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7WB2ChzRmsP63O7cEov2qw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-5pow01", "_id": "79YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yLwY_MOsydDU7XEbyC_1EQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "8tYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["is-GrshzXGfvyrs7C84YDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-5pow01", "_id": "7NYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pNtMkp20SCCEh-TxrA7W_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "p2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5yQFzmK6rVAYH_IWw9mY4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "rGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dhc8TGgYU9zTniCUbRsImw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "tGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "sWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nay4Cu7cpfWvHwjKfzebpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "o2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "pGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["56T0aIwgwSEUNL-7riuYkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "3WYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A998Aw2wlvaHmpTDQoJVWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "0mYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zOiM2iaG3zJbqgtGW26o0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "22YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2CWGwjnZxZvrumi7qK8KzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "GtYV7YYBBkbVtX3nhuK9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OVUJWL9ZnL1p_YLKqzUSFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "QmYV7YYBO2e_P_QbiE9B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L6cJEyVPJDgBEJDXdVk3pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "148877361383403"} -{"create": {"_index": "profiling-events-5pow01", "_id": "gNcV7YYBBkbVtX3npABx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RhMJrUxrd57e6G7g2-PKcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "9tYV7YYBBkbVtX3nmPyP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MLI30dzAv_XVLHnFXWzCzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "WdcV7YYBBkbVtX3nsg5Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3KY9CUj1lI4EPyAmsjiKpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} -{"create": {"_index": "profiling-events-5pow01", "_id": "sGYV7YYBO2e_P_QbtW5b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pq-E12uy1vBeK4HeCjUqKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "jNcV7YYBBkbVtX3ntBPF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["me0oRgVcR_uBmJ_kCe-VfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "NeAV7YYByh-A-Biyt6sa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aZEifOwXBahtAWgTrRIWHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "uWYV7YYBO2e_P_QbuHEg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Gg373ZQ4MQ2jkh8DEBd7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ZuAV7YYByh-A-BiytqnT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "YuAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LKEaCr3J8DRAWmFUoWCNBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "6dcV7YYBBkbVtX3n0ilU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nWUjPDlBGs10DeEAyhYVTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ZtcV7YYBBkbVtX3n0iyh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E8q5-T4I0EEq3oPd2J28VA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "MuAV7YYByh-A-Biyxr4p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h78omCSCOG8EoQ0xkchTYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "LOAV7YYByh-A-Biy4tjs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7V6aRLUSfKlOcOf1w7yKYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "B-AV7YYByh-A-Biy4dWo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0RLFnq52wVIAB0sP7d89Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "tdcV7YYBBkbVtX3n4j9s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q-SfQ_r9EJdGkmFMOGPAZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} -{"create": {"_index": "profiling-events-5pow01", "_id": "TWYW7YYBO2e_P_QbAaSR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["acGHnAm6JFFvJ2ZoZKt_fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "G-EW7YYByh-A-BiyEwMv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cqS65a_0vS0KD1oFWfGPCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "8WYW7YYBO2e_P_QbELUW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7ut68c_tuuoqFzX7ruLfoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "BtcW7YYBBkbVtX3nFGcu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0XhwDDngWLjSP8tIl3SEwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "n-EW7YYByh-A-BiyEgDd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dUuQ2lSMaZyy3BCVVsDF1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "VNcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oKjEqCTMwkPftp0JIk3zEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "F9cW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b2RWz2cEGgcNrcd3eaLVUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "FdcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuzNOG3t4OkPYTKYBPqKPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "XNcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xricnf20K4kRE1JxfxLKUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "8-EW7YYByh-A-BiyQy5a"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bciyx_9NZlf5osbnTw9ncg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "WeEW7YYByh-A-BiyRTUo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RBIYJkbW5-Ss2DSyBgMD1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-5pow01", "_id": "yeEW7YYByh-A-BiyQitl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g15iIWCPMhS3lvfL06AkwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "NeEW7YYByh-A-BiyTjpF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XpxK_Q-DP0fSfpiLzuOV7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "gmYW7YYBO2e_P_QbU_aU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wGWkKDGzXSSBbLkENAOIkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "c2cW7YYBO2e_P_QbfRJk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qtJZCZ940TmjMXNEWgVXDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "bWcW7YYBO2e_P_QbkSjL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0NRB9624MZLIKmkHE-1rew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "YOEW7YYByh-A-Biyj3ZQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uN-YY_i1gvVmqACLDXQMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "y-EW7YYByh-A-BiyjG3E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "yWcW7YYBO2e_P_QbrDqK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8QWlvovygGFcfE-e_CiKgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "0tcW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["86WQcXcUxaHfJUCEplsqoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "6WcW7YYBO2e_P_Qbojgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AIjbpW4afQJ6fKp4bSOkMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "m2cW7YYBO2e_P_QbnzSu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6OaUumRb8P6q4GlOGK0eGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "QdcW7YYBBkbVtX3nrNlH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Xgi2WyDfYTM06WuIqjfkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "XNcW7YYBBkbVtX3noddV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lWGBthO0cXLKT_wGxBJl5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "rdcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["57Fil5UcCT4QMA8PK7lldw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "t9cW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U7k09_Fy75Q9-PpHdDlKvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ptcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "sNcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8MP07z4BgOJ1bvy0UuehdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} -{"create": {"_index": "profiling-events-5pow01", "_id": "nuEW7YYByh-A-BiyzK7K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hy11GM4V5rJ1R_KKBReCYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-5pow01", "_id": "xeEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UQljazbrYNKb17CR1zcj2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "yeEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J6yDhkd9T90hDGIK4K7YnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "S-EX7YYByh-A-BiyCuLc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NKsocjlsvM68oICIvKxy7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "zOEX7YYByh-A-BiyC-Tq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r5Qk0y0lu82qLRvIh-Mz7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "qGcX7YYBO2e_P_QbCYTC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZpjYqKFeza_P-0E6-9HQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "u2cX7YYBO2e_P_QbDIuZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "GGcX7YYBO2e_P_QbDI3K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OFdK4mvMOorRf1NaABBLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "7eEX7YYByh-A-BiyDemY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u263nW_qRlDonfyrGeQDiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "zuEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WZzgSlsPZ6clXTiCMgWgdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "0eEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY70RGM6lV3NgAwSeTX8Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ytgX7YYBBkbVtX3nOTqZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c7sDL1ZEUDJ12LHKKH-P_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "i9gX7YYBBkbVtX3nPUb7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KiwE-vKZHKC3n7ALbEtWxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "MtgX7YYBBkbVtX3nOz8i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["67VSY7gMnvXQykqHE0WxBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "UmcX7YYBO2e_P_QbOr2M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oTHLMe0BewCEp798WVpJtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ztgX7YYBBkbVtX3nPEMb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6XkFhPi9lM3BiwzJEIoaIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "IGcX7YYBO2e_P_QbPMHK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rjTw1uwIATCPa-CkaMdjEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "-GcX7YYBO2e_P_QbS8zy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8XIeRmjQa-cdLu_obwSXJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "SWcX7YYBO2e_P_QbTM67"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-y7rTRuLTj8cfBQbfYKy2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "EOIX7YYByh-A-BiyShe9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ui68wyUVCJcxQ5nqpWzN1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "h-IX7YYByh-A-BiyWyEq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lgc01vu6tLGgLO8IPeQGXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "6OIX7YYByh-A-BiyXCQS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uD9v9EeBRS5EzcNLZ8q2gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} -{"create": {"_index": "profiling-events-5pow01", "_id": "7tgX7YYBBkbVtX3nXVoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vdmPYvdso3nyHwU3P-BxHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "gmcX7YYBO2e_P_QbWtiF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m8UxqcMGCNBvKBluS5X8zA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "jeIX7YYByh-A-BiyWR5r"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "A9gX7YYBBkbVtX3ne3aS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xcO8ATMuOlPrGlylAgvJmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "_9gX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Lcmvo890HG8Y4rQbXwRxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "Q9gX7YYBBkbVtX3ni4AA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZndsICGWbrD6J4BVHqQM7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ceIX7YYByh-A-BiyqGFv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xcO8ATMuOlPrGlylAgvJmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "suIX7YYByh-A-Biym1t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PU4AlGgy6OVgX5g2hXwflQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "YGgX7YYBO2e_P_QbnBJG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_X9dFQVvkPI4ha0P8p2JiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "tdgX7YYBBkbVtX3nqJPE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EszYJlG3uJtSxM3Y3d7bAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ceIX7YYByh-A-BiymlgR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AIxtnf4ZytccTyNG23fGog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-5pow01", "_id": "FdgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oYwYA56C57graUtOG96_nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "XeIX7YYByh-A-Biy5oau"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CHnrKd15QpNtnzP8YzFv4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "WNgX7YYBBkbVtX3n5c3Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c6oJOlriSsxoHCj15KtT0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "B-IX7YYByh-A-Biy5oju"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kvqyEWe3mfnleSrT6I-tHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "feIX7YYByh-A-Biy-Jux"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2pZTlkqZkVB23pwCplHuMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "7OIX7YYByh-A-Biy9JDf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["whKjwtCVRYeUJb75GUn0Fw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "82gX7YYBO2e_P_Qb9V0w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FFVbA2EfVlyNzePqODxsIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ZGgX7YYBO2e_P_Qb91-r"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["caAMI7G9uz-EPxuo9p-Rlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "UtgX7YYBBkbVtX3n-ONq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IO7igLUjHuSwhRGut0RlMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "6dgX7YYBBkbVtX3n9-Eh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JLHzPwzEV5rRN9RuEzoMPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "-OIX7YYByh-A-Biy95jl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4lZbIrmqX0dcJVBKGnWp9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "iWgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuPwjyefoJQ1lu-T5igwEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "IeIY7YYByh-A-BiyJLxn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N1nRjzqOIB8y-j3xmzMaSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "cOIY7YYByh-A-BiyJsRk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QbcK_gbMTYuvwl_FoMECaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "-2gY7YYBO2e_P_QbN5Lt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NrEr2m1NreTQiIcNz23_Gw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "veIY7YYByh-A-BiyONo2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "xuIY7YYByh-A-BiyQtx5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["42JG9a6NRfwi2CO7Z1RPNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "1-IY7YYByh-A-BiyNNZi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x8C8r_joS9eFrngYSfAD9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-5pow01", "_id": "f-IY7YYByh-A-BiyVPIV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0UeOgQYKC7zcrsZ5ZxtGIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "LGgY7YYBO2e_P_QbZb97"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AN24Ay2FFm6R_uskGlbDvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "GdkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vv8H2tPfs7d9zjnnJhB0rA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "o2gY7YYBO2e_P_QbY7hd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FjtKztgbAQPS6bJqFyRkYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "VtkY7YYBBkbVtX3nZCoi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ntkY7YYBBkbVtX3nZCuT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xFHH2tMDnbWLZHLGtCUC2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "LWgY7YYBO2e_P_QbZb97"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ng7Kn6I7osQY62ITDyHvMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "MNkY7YYBBkbVtX3ncS0m"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oHVZwEtujopOZewM6A1sxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "3mgY7YYBO2e_P_QbcsdE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pczYn9bA4SlIUvF6oLM4Gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "NuIY7YYByh-A-Biycv3l"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d_wx1WU4Q3GTegN_cAxP6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "62gY7YYBO2e_P_QbY7m_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MvydvJcdA5Fm40P_1i2ixQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-5pow01", "_id": "beMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EG9jBmB3lh64ME0jyCkfBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "ZuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9T2neRyvBAjupi4KvqMEkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "GmgY7YYBO2e_P_QbkN5i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2j8VUArr_b9AewT6WEQL_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "v-MY7YYByh-A-Biykxdq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HsiX5vdQunBNkC7dzQqFjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "euMY7YYByh-A-BiylBpj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SwjluL3-fAPsYBuygjQN9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "BdkY7YYBBkbVtX3nklHO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-5pow01", "_id": "iWkY7YYBO2e_P_QbswJc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y5wRxzE9W7SQh2wOeWm08A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-5pow01", "_id": "BtkY7YYBBkbVtX3nsGt1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j5BsomDuMI7TNerJ9VXCtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-5pow01", "_id": "9NkY7YYBBkbVtX3nxYcT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "fdkY7YYBBkbVtX3n1JXT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GaCLxWirBhJtu1rdEHoD6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "2mkY7YYBO2e_P_Qb4S1Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-xs-IN1fdS4tlSIAXAM4kA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "12kY7YYBO2e_P_Qb8jzI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U9D_YJUEsrwBEswWxHC35w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "bNkY7YYBBkbVtX3n76eU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1Is6WKpq1rPgjROiY1ySbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-5pow01", "_id": "-tkZ7YYBBkbVtX3nAr6P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m7PtklSiInmoO66e9Bc5vA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-5pow01", "_id": "DdkZ7YYBBkbVtX3nALrp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z1K4WqC6eykbHpG2pCP39Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-5pow01", "_id": "cWkZ7YYBO2e_P_QbImDZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vsokQSi3I4rVgRAwb8fhbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-5pow01", "_id": "_OMZ7YYByh-A-BiyHoO_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["njwJdQnjALlyqqAczuUyDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "SmkZ7YYBO2e_P_QbHVji"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ITsishoJBrPM8Hg7nurVvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "SuMZ7YYByh-A-BiyIIcW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Os-4RhVkjeRwXnMgi8sCPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "Z-MZ7YYByh-A-BiyIIrY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u_qmAc1-GJOSVHEZfMGXRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-5pow01", "_id": "pmkZ7YYBO2e_P_QbIV77"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LaQK44tICLO4ljAwiqTd8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-5pow01", "_id": "hNkZ7YYBBkbVtX3nL9qN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DuNugRyUNKQa9O6ipjRVvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-5pow01", "_id": "k-MZ7YYByh-A-BiyMZoV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MnrTN3oNHBWQmiPNUfJdZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} diff --git a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow02.json b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow02.json deleted file mode 100644 index d2f9a1867566e..0000000000000 --- a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow02.json +++ /dev/null @@ -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"} diff --git a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow03.json b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow03.json deleted file mode 100644 index fbcc736aa8729..0000000000000 --- a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow03.json +++ /dev/null @@ -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"} diff --git a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow04.json b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow04.json deleted file mode 100644 index 6833eb218274c..0000000000000 --- a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow04.json +++ /dev/null @@ -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"} diff --git a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow05.json b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow05.json deleted file mode 100644 index 774edc97b20b7..0000000000000 --- a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow05.json +++ /dev/null @@ -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"} diff --git a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow06.json b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow06.json deleted file mode 100644 index 551c1f5404232..0000000000000 --- a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow06.json +++ /dev/null @@ -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"} diff --git a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_all.json b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_all.json deleted file mode 100644 index e686f7512fa6c..0000000000000 --- a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_all.json +++ /dev/null @@ -1,7068 +0,0 @@ -{"create": {"_index": "profiling-events-all", "_id": "ZOEW7YYByh-A-BiyvJ5t"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHDH56Gg_3eKY-7t_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "C2cW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dncz0Y_So0i0vXWTX7iycA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "EWcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jxSybvAJREHA93t9a-9ZDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "39cW7YYBBkbVtX3nvOX4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DJsG1PTKQj3bE1cuaZCjpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "EmcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u_qmAc1-GJOSVHEZfMGXRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "odcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YGL51-V8LSysDnURshRDsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "feEW7YYByh-A-BiyvqKW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uWmN7UoDEV82g0X1jR-lag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "CWcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rAVnotLNqZZX90k5rHuXLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "u2cW7YYBO2e_P_Qbu0Sm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "B2cW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qfaU4OGqPjwdE9T5hHw_Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} -{"create": {"_index": "profiling-events-all", "_id": "JWcW7YYBO2e_P_Qbzlaj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zQ1nyOGbOtedL7gx4fO8XQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LuEW7YYByh-A-BiyzrNj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rwXtW2ufmEwH1DrvNBzUGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "CNcW7YYBBkbVtX3nz_cq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KANLoEfpUHNjFay_wQgAsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_WcW7YYBO2e_P_Qby0_R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HVz81HFfQwHn9QYh-be1Sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "DOEW7YYByh-A-BiyzK0R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QjtKZoprzXCLbmVAEEoqNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GOEW7YYByh-A-BiyzbAL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wWjEk4V-ocnXQQZfOB5PAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "dWcW7YYBO2e_P_Qb0FnB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y7KI8KMMWDvf5U1WSCufNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_GcW7YYBO2e_P_Qby0_R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ku3dJg7uoNqA3OiimkD9KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "dGcW7YYBO2e_P_Qb0FnB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LaQK44tICLO4ljAwiqTd8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "6tcW7YYBBkbVtX3nzPOJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["29lvFdoiBP4NTHqtmd8Y8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "pGcW7YYBO2e_P_QbzlQs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GRsBLFcqVzFUAZS_v_mreQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} -{"create": {"_index": "profiling-events-all", "_id": "mNcW7YYBBkbVtX3ny_BB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jyjn_5qXfbWtQo79W0qlsg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "w9cW7YYBBkbVtX3nz_hr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9zfvytpYavwLxYksfHEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "yuEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q8rLi45IFUbGCdbAHGZ4vQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "-2cW7YYBO2e_P_Qby0_R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cAbQL1Yf_EXwq1Xvj5YzBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "l2cW7YYBO2e_P_QbzFFQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5_wX-Er1trjNDpVBu_jsDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "wOEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DrEPteno4vchlHw0ws65OA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "JmcW7YYBO2e_P_Qbzlaj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZndsICGWbrD6J4BVHqQM7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "wtcW7YYBBkbVtX3nz_hr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ivEY-EqI5b0E3M_68jqmVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "69cW7YYBBkbVtX3nzPOJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U0Kn8_bALG7-cg-DY86kNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "uNgW7YYBBkbVtX3n2wD9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9kcejzSJCXOEAAMTuFifhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "SWcW7YYBO2e_P_Qb3V8e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n73U5dOg61JklJT6WKmxuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "zmcW7YYBO2e_P_Qb3FtF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ifj_nYmYbVre3Goy-3d1XQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "hOEW7YYByh-A-Biy3cBp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6DJ5rUntpH_kTGPTanZjBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9uEW7YYByh-A-Biy3L6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-bSoXiwGVYIVR1L3DbcUUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "gOEW7YYByh-A-Biy-9iI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t263LuBpXeJT_eypTrtUJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "itgW7YYBBkbVtX3n_Blb"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hrR6ASxOEteokggjxZKMeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "t2cW7YYBO2e_P_Qb_nuT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wCmvw-7GQGL1yAvmTCUcTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "weEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oZVmtNwsNi_g0dsbCFubSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "DGcW7YYBO2e_P_Qb_XhM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7iLZSCd-GhxzDJmUOWlltQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "w2cW7YYBO2e_P_Qb_4GC"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g0TcViARYA_NarblNdiqUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "feEW7YYByh-A-Biy-9iI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JAE0oBjlHd_LFeKNeOVAFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "ueEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xtRwIn-B17Zk-6fqHdRi2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "2-EW7YYByh-A-Biy-tTN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xE2zyuyXFlIJ5r66uy5RMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} -{"create": {"_index": "profiling-events-all", "_id": "pGcX7YYBO2e_P_QbCYTC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UuDeBu8oU2omluou-0a1Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "jmcX7YYBO2e_P_QbDI78"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ALNfUngsI4IwTJ9rHQZUfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "6OEX7YYByh-A-BiyDemY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VaLam_KQiz8POCW3aoer2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "JWcX7YYBO2e_P_QbC4mb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yK6OONpk1_skJktfJLfkBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "fmcX7YYBO2e_P_QbDIov"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EKNw_XLZvm5U0bSAHP5Qhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "JGcX7YYBO2e_P_QbC4mb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KbIwDU7bE16YP2ns0ZA4pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "uWcX7YYBO2e_P_QbDIuZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fSsmeetWqxUvZQmnispuzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "vdgX7YYBBkbVtX3nCSH9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eLxFTlFN_8U9FW9T5uVFVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "NWcX7YYBO2e_P_QbCoY2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eAg08WF8lmIVlNh_qYyNeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "UNgX7YYBBkbVtX3nCiNo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4cstsRMDoVu7vb1ZvH1EzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "ANgX7YYBBkbVtX3nCyUt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lhxBmjNk6lw5l8hDy9uvfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "AtgX7YYBBkbVtX3nCyUt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZORFq6EEwMoX6Tu_RTCb-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "jOEX7YYByh-A-BiyC-Nk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JRIGBFzel1pbRLTjBi-ZHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "KGcX7YYBO2e_P_QbC4mb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D_3OCCgKV6Kk8ntzJs_Wng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "yuEX7YYByh-A-BiyC-Tq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BnraydbvEwL6mkTBVZOVLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "tWcX7YYBO2e_P_QbDIuZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RarVOrNELjnQUHfPoLUVBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "6WcX7YYBO2e_P_QbDY8s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y99kgy97ko1q-GgFUQMIvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "6eEX7YYByh-A-BiyDemY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9fNDHkA5rTj57PGtFze_-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "XOEX7YYByh-A-BiyDev8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["672APJhXj5EKzZzWjY4QzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "SeEX7YYByh-A-BiyCuLc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DbVr5WH8AZycf302C0td3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} -{"create": {"_index": "profiling-events-all", "_id": "o2cX7YYBO2e_P_QbCYTC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PonqCaU3e7VApDLeDylGQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "4WcX7YYBO2e_P_QbCoef"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8x65WqPnBjtVuuc0TRdiaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "SOEX7YYByh-A-BiyCuLc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "gWcX7YYBO2e_P_QbDIov"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QCaQz16pLyZGIJ3JyzyIYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "jGcX7YYBO2e_P_QbDI78"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9AhQj1Cjybxb6G_U8nBwuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "6uEX7YYByh-A-BiyDemY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XiTL4w9S8KltLkj8tdlEIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "X-EX7YYByh-A-BiyDev8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dvz9mFWSe_1LoPFwkrAW1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "i2cX7YYBO2e_P_QbDpI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["43Mh5txMzJNoI6svI0SbQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "j2cX7YYBO2e_P_QbDI78"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ll6esE1FGRvBZYuvkkd9xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "juEX7YYByh-A-BiyC-Nk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u263nW_qRlDonfyrGeQDiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "pWcX7YYBO2e_P_QbCYTC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HXFKn82mEOX8HQ_gs-IncA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "puEX7YYByh-A-BiyDuyF"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UpG4HUjCnzDBM_w7fbVK2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "wOEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Ri5pW0t6s5lXro7RV78vA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "x-EX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3GQlu4cDmBP0J7ys3CIDFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ZuEX7YYByh-A-BiyHvcj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["88HbSgrFc7eu2ajG25n_Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "2tgX7YYBBkbVtX3nHC_T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WZzgSlsPZ6clXTiCMgWgdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GGcX7YYBO2e_P_QbG5ZA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YP8JnSQ_Ut135bkI0n3-mA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "veEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1FaSioKA40L9zkdwioOgrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "weEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XELwzOLZflYDWTPYdFF2sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "xuEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9l-A9YSFZEx7xj9VRJkH9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "yeEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uS4XSdjWfr8HqtkqPLeplg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "BmcX7YYBO2e_P_QbKZ_b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "x9gX7YYBBkbVtX3nOTqZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SrDodAnZ9uPT0nyBwub87g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "G9gX7YYBBkbVtX3nOTzV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rMpzXndoIcEiY0-GRAGnyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "qtgX7YYBBkbVtX3nOj0O"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7v_9tj1Xdjf6ueI8cLpeFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "3-IX7YYByh-A-BiyPAaT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nYdp-GsAnSl5-IbdkTmdVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "MdgX7YYBBkbVtX3nOz8i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0a9NYjgpQ8iJm6UEGWaqBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "H-IX7YYByh-A-BiyPQuP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zi9qwHR7xXnRG3K6zMFidA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ydgX7YYBBkbVtX3nOTqZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1PJ7alh7hduQ9X2Hed5fQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Y9gX7YYBBkbVtX3nO0KT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5jSF_4ZsjFVCSFvLBYrF7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "aeIX7YYByh-A-BiyOwXV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ohsTjz0QiBj_Cb9rZpyfbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "qdgX7YYBBkbVtX3nOj0O"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDKxniIVk0RWV976qb-dNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "MNgX7YYBBkbVtX3nOz8i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k_oZ8en1b76mhL2hb9QZEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "itgX7YYBBkbVtX3nPUb7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k3oNyMpKPtIZvbqyj2iu3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "T2cX7YYBO2e_P_QbOr2M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["epnqAxFCsbQSVItuSr9wEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "593778632422369"} -{"create": {"_index": "profiling-events-all", "_id": "QeIX7YYByh-A-BiyPQgM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5WP7zBBeosgRaaVkLBLtbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "uOIX7YYByh-A-BiyPQlQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9_N4V4eyXNvSUkP63EDRaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "auIX7YYByh-A-BiyOwXV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6XkFhPi9lM3BiwzJEIoaIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "dmcX7YYBO2e_P_QbS8t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8XIeRmjQa-cdLu_obwSXJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "YuIX7YYByh-A-BiySxi3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CHnrKd15QpNtnzP8YzFv4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "c2cX7YYBO2e_P_QbTdFC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QOIxcZGbFuLnj5qiY-JZYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "uNgX7YYBBkbVtX3nSkv7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1NlId-XCC76cuSxZt5Lxmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "92cX7YYBO2e_P_QbS8zy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HhM1qSGV_MIoNaDRcG0zzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "E-IX7YYByh-A-BiyTBx8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b9stHUYeSwgP0eNPB72Qfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "YOIX7YYByh-A-BiyShVm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "DOIX7YYByh-A-BiyTBo1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BDlisnvqa1LLQOmq1q0Eow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "B-IX7YYByh-A-BiySRTi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JpUjFqAsKBeLb9NfBebEOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "571288167487052"} -{"create": {"_index": "profiling-events-all", "_id": "BeIX7YYByh-A-BiySRTi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5BdZpdZPV1aCql-5O4HKoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "nmcX7YYBO2e_P_QbSsgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yoM9M2D5c2dT8Htn9_oXJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "-GcX7YYBO2e_P_QbScad"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zlmxsTTPMJDp5d_OFnqBkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "FmcX7YYBO2e_P_QbS8o-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i3VVbQEF8y09CAolsSQBvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "R2cX7YYBO2e_P_QbTM67"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "FWcX7YYBO2e_P_QbTdAJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "6mcX7YYBO2e_P_QbXNt0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qzypMgPc5-kylY6xJuiLOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "vmcX7YYBO2e_P_QbWtY3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OXyCKNOqgn9jhCQIhnA3bQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "HmcX7YYBO2e_P_QbWdTt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Uvyv7L8ko2gzorH4AufYNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "nmcX7YYBO2e_P_QbaOMC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JOxaiAnBjaW3GYfe6qy1IQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} -{"create": {"_index": "profiling-events-all", "_id": "nmcX7YYBO2e_P_QbXt8U"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DxFol4n0qYD3Of3DJSMdCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "HeIX7YYByh-A-BiyaCtL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U4po32CSkExl1ZPtuJCrxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "6WcX7YYBO2e_P_QbXNt0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8giK6mKV7HDPF-jB4e6ajg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "JeIX7YYByh-A-BiyWSCu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Ts2y4YyapGMgF7J-xZf2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "qNgX7YYBBkbVtX3nd2ng"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rOjpZXDzMuqgXHFTBocx6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "59gX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["boIzddYopai9UjphB37nhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9NgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2tFOqVqvUsAbYZdV5cBjZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9dgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WVvi39LiS0vDLyXeSsVBkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "49gX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1Vn89WBJR0kfSEtwzji_DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "7NgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9ixj_DfLg90_yfQ28UoVPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "O9gX7YYBBkbVtX3neW4p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dzNbdSn_Zmll2UbzN8G_xQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5NgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QjtKZoprzXCLbmVAEEoqNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "StgX7YYBBkbVtX3neGso"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hjIdYJVrZu9s5d1oY1Nu2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "zNgX7YYBBkbVtX3nenK1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VA9pzgeN6ktxH15wu8p4_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "7dgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o-13S3KGROj5sAwzFCFlIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "zuIX7YYByh-A-Biydzcq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qcPyRyUca9zMz9MzDr7aHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "5tgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e0AOiOeHK39oqr5eNGKOkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "CWcX7YYBO2e_P_QbefLC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RK5QOedYDJN8YhVo9FJwjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "KGgX7YYBO2e_P_Qbtih6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uDeXsyAM1ry2gjp5w7NiBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "MmgX7YYBO2e_P_QbtSOl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jzl9yNFalNrGUBfMA8dCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "uGgX7YYBO2e_P_QbtiY7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lhRKXGZ_rGWBWtmKBhIK9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "HOIX7YYByh-A-Biyum09"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tTLMNSROu_QuNHWgUcK-cw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "KWgX7YYBO2e_P_Qbtih6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mu3LxyO4KAp-wuV_ZLnj9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "t2gX7YYBO2e_P_QbtiY7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "1eIX7YYByh-A-Biytmj0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "i-IX7YYByh-A-BiyuGvz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ngVpwVwgO4T6nb-06wRKNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "CGgX7YYBO2e_P_QbtSXs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Cn9LwUauC1J8ZOAWhiijEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} -{"create": {"_index": "profiling-events-all", "_id": "deIX7YYByh-A-Biyx3Rw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3bvdBbzWBhiwCbUR097jxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "C9gX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zEgMCcIzExJibQaME-QTUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "DNgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vSKLEOnt4ZdPD9kAJmGjbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "DtgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I_HDFrDrvMGFkT8QKDM_1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_dgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["61D2Ngpext0er1dkiTlWdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "NmgX7YYBO2e_P_QbxzKv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZgDBfvwbGE_xfAHsOQTl1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "99gX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ptgX7YYBBkbVtX3nx7cq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S27o98amSiSOrrMpOLWfUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "9tgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lzkdB1rDpdcMviENXaE3og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "-NgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GAokC6Zv-UfUvWotAYqkSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "-WgX7YYBO2e_P_Qbxi0B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9f_l81ae-1ee1EVm4QM8Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "9dgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZfHuek4_BlYQGu77SdKXnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "tGgX7YYBO2e_P_Qb51bB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PEG6EskooaHoKsVK7C4oiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "luIX7YYByh-A-Biy6o0H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J_s4rwypZtS7LrmmQEztWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "8NgX7YYBBkbVtX3n6NKY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wl2yvlpS90Ypoy2M-skpww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "YdgX7YYBBkbVtX3n5MiB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-wPT7HKHltRvqN1m-PQHbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "VuIX7YYByh-A-Biy5oau"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7LeOL85PVjOg5Bi-S-b9RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "A9gX7YYBBkbVtX3n5coI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mnd31Vnx6i_r5WV2hM5bDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "tGgX7YYBO2e_P_Qb6Vmk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mD3V1vgmmXX17aY1Cc2kog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "--IX7YYByh-A-Biy5IDD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6xGHh1u34DhHIbK4IY9KBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "AtgX7YYBBkbVtX3n5coI"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nwg53akFiAKZJpHiqCwAbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "zGgX7YYBO2e_P_Qb5lIe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kvqyEWe3mfnleSrT6I-tHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "7OIX7YYByh-A-Biy5YKL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["chW5HPktN4b6gYA4Rc8JLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "394233360897966"} -{"create": {"_index": "profiling-events-all", "_id": "V-IX7YYByh-A-Biy5oau"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OoPYq5Aw6d1wKTV_c9_UOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "C2gX7YYBO2e_P_Qb6Vgq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MT3qrLXJyyFa5mMadoI1ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "peIX7YYByh-A-Biy9ZKm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AbrWqkkHes4LJTZoISq1qQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5NgX7YYBBkbVtX3n-eZU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ymZCjvGyGb7nDgHKngF-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LdgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e16fjaKgAD3mYYzxm1wovw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "P9gX7YYBBkbVtX3n-eUA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Et5sNZhAoszUicKSkeO_ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LtgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["An9XjOoTbvCjFLzBdFgpcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "T9gX7YYBBkbVtX3n-ONq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aNwZEBoTlKLxCLfBZC1w5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "IdgX7YYBBkbVtX3n9Npj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["whKjwtCVRYeUJb75GUn0Fw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "wOIX7YYByh-A-Biy9pUg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0eeGCGwvAUwir03MFPS_Kw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "MNgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y-972spXlr1Uz9Eo6KX-Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "o2gX7YYBO2e_P_Qb-WKP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ak0vCXdm7bXbIhn8MGGkXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "VtgX7YYBBkbVtX3n9uDe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6NkVutVoJ0m5j8aVYyp0Lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "H9gX7YYBBkbVtX3n9Npj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2uW4N0T57kNGJTVG5_1zTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "puIX7YYByh-A-Biy9ZKm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uxJxXuPY21qu4ZQy4Vt22Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "JdgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pMpUaohMW1U4VleTGyqfTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "cOIX7YYByh-A-Biy95dm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4lZbIrmqX0dcJVBKGnWp9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "e-IX7YYByh-A-Biy-Jux"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S4QSTs49REr7TSb5qbbUGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "pdgX7YYBBkbVtX3n9t6f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AuqG1b42cXBbKiNJcLaKpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "6OIX7YYByh-A-Biy9JDf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0pVn3RaIbpVhn8RviFIpJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "c-IX7YYByh-A-Biy95dm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "8GgX7YYBO2e_P_Qb9V0w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B5Li3P-xnCI7OZMKdo3HZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} -{"create": {"_index": "profiling-events-all", "_id": "keIY7YYByh-A-BiyE6vm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l-jFO6ESsoHoN6gyefmDNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "gWgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tGylLXpBEK5V82qwwulbVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} -{"create": {"_index": "profiling-events-all", "_id": "f2gY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynw1R90P5jqjjO7FNW192w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "PeIY7YYByh-A-BiyGLXe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N8BeXVnVH94z3kcMpdZVRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "c2gY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-WmMHqB8hxsW-_Rm9LtnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "fGgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LO6aOR7Ea3Syr6nMwmmQpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "hmgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["it1M7ufrxHsYyi2peFanww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "h2gY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ViM-Jm475_B9Vqa7GKjNDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "rtgY7YYBBkbVtX3nF_jI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kKgAz5hOlhhX3Wlk6XRFig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "emgY7YYBO2e_P_QbGHpR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oNARuCgevgyxtAjFL2xZeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "gGgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FhJv1Eqg9cSQinz3oYYW7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "y-IY7YYByh-A-BiyFrB7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RcNPwSZ_RRjUo3KUMQkJwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "eWgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BRhCpm29bfxo9hoGCffNog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "bGgY7YYBO2e_P_QbJn6f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jrkadKmUMKJNM1LSCgDP0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "IOIY7YYByh-A-BiyJLxn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yyOgLKUZuSQUa5BkL2jvpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "qNkY7YYBBkbVtX3nKAVC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Yyo4WtSHD0QUjPwdj4k3Xw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "YuIY7YYByh-A-BiyKMoI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GLQz44vVtWQ5ppKiz2gP-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "2-IY7YYByh-A-BiyJ8jR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KmEOZVutONuRJavBSb15QQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "j-IY7YYByh-A-BiyJLod"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GV_l_2Wb3JncTPL0Vwsngg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "wuIY7YYByh-A-BiyJL_0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dARW4-0nYV7kZ3Ww_-fsnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "0tkY7YYBBkbVtX3nOAq2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y81csNzyXiJ1pTbECyjzlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "09kY7YYBBkbVtX3nOAq2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ium0M6gtUd_sKOi4qCX1xQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "HNkY7YYBBkbVtX3nNAgf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O0Oa-d1JiNvkWrWHXAez_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "gOIY7YYByh-A-BiyNtki"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ZMz3dJFvpx5F2-aEpHESQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "wmgY7YYBO2e_P_QbQpW8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ydrSldLsPTdTf2IWl3R-qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "MeIY7YYByh-A-BiyNNjt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cxsXzrG-rWhSkAffaeLL8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "AWgY7YYBO2e_P_QbN5Bp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["33M_jV1gmHGxTPvzVsOhJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "uuIY7YYByh-A-BiyONo2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4Cu6oYF8CgThrL_OjB6KKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "w-IY7YYByh-A-BiyQtx5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PO3q1woza9yi3RpmXDEueA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "wGgY7YYBO2e_P_QbQpW8"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G81V791m7uA9YBPgoQEn8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "MOIY7YYByh-A-BiyNNjt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jliDtdpQ5AYvFVIEkH2R2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "8WgY7YYBO2e_P_QbNoxr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oaHIiYNNlfu1QZtM8GPcUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "vOIY7YYByh-A-BiyONo2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UjcwmP94p5_9XdWwQfdoTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "gGgY7YYBO2e_P_QbN5Gs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q3gIWoUxhIk-V7r01h-8cQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "gWgY7YYBO2e_P_QbNYvj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-o3RzId6UYrkAkG0OoSJYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "92gY7YYBO2e_P_QbNYme"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["42JG9a6NRfwi2CO7Z1RPNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "SGgY7YYBO2e_P_QbOJVz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v3iq4oJQ3VCG0e1sWoxtkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "gGgY7YYBO2e_P_QbNYvj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gm1XQ2HBQFDtWIP658EsEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "Z2gY7YYBO2e_P_QbVarR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4atjVCntPFZjlZxUD6MXCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "a2gY7YYBO2e_P_QbVq6S"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nMRtZlSwaA-3XiYGlSgMRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "mOIY7YYByh-A-BiyU_DV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4sjDMbuo1EQDli2AMeF1pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "idkY7YYBBkbVtX3nVRw-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Tf-YsisMn-8BkdhwRUXpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "Y-IY7YYByh-A-BiyUu3D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MkzulSfrhjve_NGjxalUxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "gGgY7YYBO2e_P_QbVqw4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2RyPkubYvOhcCvhjZgdRTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "JdkY7YYBBkbVtX3nUxcK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PLWIfk3kyJVpG6Pe2YW5BQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "meIY7YYByh-A-BiyU_DV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MM2CztTXvV5i9K2i-2RGNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "2mgY7YYBO2e_P_QbZsEV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VgHBJuj56ocTcdUEuVUkvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "mtkY7YYBBkbVtX3nZCuT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NizhfNviinbrObC9ItpaWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "y9kY7YYBBkbVtX3nZSze"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xtPrc0RhZSbX5O68FSRayg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "FtkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0Iji_zQRXoBblaoaKwHTcQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "mWgY7YYBO2e_P_QbZLxc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eP_FGCwl0PRxWWvmJlwk5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "12gY7YYBO2e_P_QbcsmS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PkkcFOm60ARum3t1RkmFhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ENkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LdughXTyBAtPHlCiLsLIpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "E9kY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e-pIZo86wrOcd_F3vppZSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "MmgY7YYBO2e_P_QbY7vw"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "m2gY7YYBO2e_P_QbZLxc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_eN577uJw5hksIBqBf1iCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "iWgY7YYBO2e_P_QbZcCt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2T6ASeyC2T0swmyL22ngjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "2GgY7YYBO2e_P_QbZsEV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wXgj8vfV7ExDQcf7NHp5Og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "1WgY7YYBO2e_P_QbcsmS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["743gS6kqzP62ApqBY3aWAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "NOIY7YYByh-A-Biycv3l"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Oqbb6FakSaKBSmm5UVh16A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "GNkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["70FXRFUPPXVTyb52_Dovhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "6WgY7YYBO2e_P_QbY7m_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XFNJ-Y5i5xbWccne1CdTAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "0WgY7YYBO2e_P_QbZb1H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XkN81O9rpvZ7Hq2p_bCXWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "iGgY7YYBO2e_P_QbZcCt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bbHTlOSio2bcFnLJVCzI_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "AGgY7YYBO2e_P_QbcsYD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R_8VdmeZ5UOnYprIIrYRWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "02gY7YYBO2e_P_QbcsmS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FZB4LrFY55GOwy7SJHFGQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "m2gY7YYBO2e_P_QbY7hd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bcgTGw0xa6gEK3NEJ5iH1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "nmgY7YYBO2e_P_QbY7hd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jmx0gHeNEF8HBgePt0BNVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "FOIY7YYByh-A-BiyZf0D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s3eG1ITOPVsdH2H5YruQiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "LWgY7YYBO2e_P_QbccJo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cyZBUJjFaFOr4hFXJVonyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "J2gY7YYBO2e_P_QbccS0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kHBGm9hT2Ps-15ceIGS3fQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "MuIY7YYByh-A-Biycv3l"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MvydvJcdA5Fm40P_1i2ixQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "0mgY7YYBO2e_P_QbZb1H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WgfE3EpDBODOIydfExij_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "UuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z7bOHlSkibuBBI3Vf-N5_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "SuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iv80T_6PcLzWJ9weG26b5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "XOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YBrq3-KR1ovSakEx4BXycQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "UOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-gwAhagkJcxRJ6NcHmc9Dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "571288167487052"} -{"create": {"_index": "profiling-events-all", "_id": "SeMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [3], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5herarFi58uky2CNY5OarQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "YeMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2bYjKMpMW5W361PJ9SbEqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "XuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8wMbNj2bmC_k-f1sjP1tvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "22781733237518"} -{"create": {"_index": "profiling-events-all", "_id": "GeMY7YYByh-A-BiygQrM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5BXyGdP4pSqRCS_nYG5jHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Q-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EQ-MP_l-CkrAJlJbFI8e3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ReMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4qft_3sVVVVKL2SEz3KAyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "TeMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pc3wbonmXheS0jJ7LgcLWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "TuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qc4K52prFTkYQaEkp2a1aA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "X-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["riI11_6NUOJGpJKmwVPhYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "YuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ya1CUr1oSygfbTjmbb4XLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "1eMY7YYByh-A-BiydwlR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GPkYvKamsexuAvXWN9NtXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "cmgY7YYBO2e_P_Qbg9Ru"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fWJaqb09QzwUMPXDtHMSXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "Z-MY7YYByh-A-BiyhRJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["32T4OaSlAZyX3gvcGH9I7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "YOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SaK90oQRsfih9wvkMg2Xgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "WOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "MtkY7YYBBkbVtX3nlFIk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6u9I1yH1QSX15dNTqAV9bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "f9kY7YYBBkbVtX3nkU6M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JtidomUfrSQ73J6IJRGkGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_uMY7YYByh-A-BiykRT_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pA-dO_FbLIeCPNajC9my7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "6GgY7YYBO2e_P_QbkuZr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wYQMafKDTOM5M3m09YsCqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "iWgY7YYBO2e_P_Qbk-kz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OPOCasATDNT8t_l-saejjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "CWgY7YYBO2e_P_QbkOHY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mxeu9v4mR_RhYkEQA098gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "2tkY7YYBBkbVtX3nkU_F"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R_D9JvJUWXzC0H3Nib_YHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "NmgY7YYBO2e_P_Qbk-uk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PRszVWqkXDpjwjOG8s8zHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "CGgY7YYBO2e_P_QbkOHY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_7SjIJ79HdCt2_IZxFKFsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "29kY7YYBBkbVtX3nkU_F"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BAgXx8nEHPgn_EenyoZUug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "NNkY7YYBBkbVtX3nlFIk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IJ27fYwHthmwJsRGiAhneg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "9GgY7YYBO2e_P_Qble4x"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8aa5KIF0DFsrJsoVvEfajg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "_OMY7YYByh-A-BiykRT_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "F2gY7YYBO2e_P_QbkN5i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BQFGAMPCwBFVLxJFRXAPGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "CWgY7YYBO2e_P_QblO3v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "JdkY7YYBBkbVtX3ns3Wc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "HdkY7YYBBkbVtX3nsW5T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["twP61I8BoQSVRAEu87hitg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "w-MY7YYByh-A-BiysSvY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bo6NdGV8GXHmalbT9Hz3Eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "tdkY7YYBBkbVtX3nsnET"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y5wRxzE9W7SQh2wOeWm08A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "8dkY7YYBBkbVtX3nsW-T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j5BsomDuMI7TNerJ9VXCtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "kOMY7YYByh-A-BiypicL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "6dkY7YYBBkbVtX3nsGgr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UbZWbU0S5kd22SAXz7exPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "cWkY7YYBO2e_P_Qbvw38"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "u9kY7YYBBkbVtX3nwHk9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fN-FycZQoxGhCMzfnhVVLw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "pGkY7YYBO2e_P_QbwxTd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lpK6Grg_nuFwWoAfFimM3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "HuMY7YYByh-A-BiyxDwb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hdKC-JUXcZ1pC3Sh2b32Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "EmkY7YYBO2e_P_QbvwpB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O4mxiScDrXWyuZch_ISgwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "190932526140742"} -{"create": {"_index": "profiling-events-all", "_id": "otkY7YYBBkbVtX3nwHt6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Wf7tYPnp7s196C4sU-0Jzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "GuMY7YYByh-A-BiywDft"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g7q97S7Wxm4ynw0Afe3ikw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "aeMY7YYByh-A-Biy1UwZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p-Vxhlw_iBQLyGOr_bdBDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "7tkY7YYBBkbVtX3n05Ok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SMLewOlFeXmKZa6xL_ARDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "lOMY7YYByh-A-Biy4lId"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GaCLxWirBhJtu1rdEHoD6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "otkY7YYBBkbVtX3n3peC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vL8b2HSp2gXZRywmy6vg_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "wuMY7YYByh-A-Biy30wN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-7orDytvaM4kAysEKbhD_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "JeMY7YYByh-A-Biy4FGQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CdDJAFAwLQDf0PF-efgD8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "aOMY7YYByh-A-Biy1UwZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IYMwZEdK-ayc3885mQPPQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} -{"create": {"_index": "profiling-events-all", "_id": "mtkY7YYBBkbVtX3n35pG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mG9aHndsiNY_nqP4GgB4qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "0NkY7YYBBkbVtX3n7qNk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AdOVIhl_n9Wje--mxIItNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "u2kY7YYBO2e_P_Qb8z4T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fs1_jCyW9_zAyxKO8CT9iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "E-MY7YYByh-A-Biy713T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8mR56EbpVUJgNap7DeaEUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "1WkY7YYBO2e_P_Qb8jzI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mpnPy7d68UGd_rGkl2xRGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "UNkY7YYBBkbVtX3n8Kve"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xUZ2KALaaa1kqxkaDKw_ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "pmkY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GRaj-uYSzr92rlMpzMvXrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "oWkY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3MSb55knyBJ7ClwjPXRNwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "bmkY7YYBO2e_P_Qb7jUi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["An3C9eVMXyiMNHRbyJ92Bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "F9kY7YYBBkbVtX3n7qav"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0uG7yGrqQSSwb05Hvydocg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "A2kY7YYBO2e_P_Qb7zcM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rrNic4YiyR-5vceCdE4IBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "POMY7YYByh-A-Biy71tL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["35FqNK7oEk5oJ-fRh4hptw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "PuMY7YYByh-A-Biy71tL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pRkjCHqKoFZiqVbDY-3hgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "ENkY7YYBBkbVtX3n8Kqc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9NG-4Nz_av4xih9kQ0ul7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "LuMY7YYByh-A-Biy8V8f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YEm7NQBrTH5QHQqIE3fDrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "omkY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PicgGG7wbtdmW_0WJKDC-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "pWkY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Hi1xqW7gnqMR0vJ_jyI7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "uGkY7YYBO2e_P_Qb8z4T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dwajp9wqywvmsgNufMFSDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "z9kY7YYBBkbVtX3n7qNk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pZUry6bTXYygY6NfqwYQNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "FeMY7YYByh-A-Biy713T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4lZbIrmqX0dcJVBKGnWp9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "LWkY7YYBO2e_P_Qb8DhZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uRrKKaf_gbp1De235zmPrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "UtkY7YYBBkbVtX3n8Kve"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tU6VK5zLihoNeJDRhxPnUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "U9kY7YYBBkbVtX3n8Kve"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_bLJTesE_9jdes5CmhuIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "02kY7YYBO2e_P_Qb8jzI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "adkY7YYBBkbVtX3n76eU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tWMg8g0Ama4NLtBSkd9DDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} -{"create": {"_index": "profiling-events-all", "_id": "DGkY7YYBO2e_P_Qb_kKm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qb72Yobg_yLohYI9gpP09w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "2NkY7YYBBkbVtX3n_7SK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tJWsVLjM_WfOc08-LJ2QNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "QGkZ7YYBO2e_P_QbAUXL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8WkZ7YYBO2e_P_QbAkYL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x6zpGPd4X75Br-x7FtPi9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "y2kY7YYBO2e_P_Qb_0PP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JzgA-Ra9fc7BJY4Bt8KMwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "ymkY7YYBO2e_P_Qb_0PP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "N-MZ7YYByh-A-BiyIY5d"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KGvPQmnNzLHCdXio5WQKoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} -{"create": {"_index": "profiling-events-all", "_id": "UuMZ7YYByh-A-BiyIZCt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vsokQSi3I4rVgRAwb8fhbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "I9kZ7YYBBkbVtX3nItGe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9xPGRL1R79V33i_hG1HhlA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "--MZ7YYByh-A-BiyHoO_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["njwJdQnjALlyqqAczuUyDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ZeMZ7YYByh-A-BiyIIrY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hAqeyX4eeyZmtR_G1TRong"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "POMZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u_qmAc1-GJOSVHEZfMGXRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "MmkZ7YYBO2e_P_QbH13S"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EOO-biRc_oXEIgdrmE3Yfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "ytkZ7YYBBkbVtX3nHcyi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E4k8bw63d-M6fpFO-uzDXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "O-MZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OtPO4_Cde7GWru30XAUPmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xmkZ7YYBO2e_P_QbH1kG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gnrxxuGE4axnb7TUS1R0kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "R-MZ7YYByh-A-BiyIIcW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o7QpavKpj9xFAwgY9jRDHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "QuMZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZvwiecS6ape8IUAIjG0SKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "x2kZ7YYBO2e_P_QbH1kG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ysNAFKLCXGa-oh7cLstrPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "xOMZ7YYByh-A-BiyH4VG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1zlIQyRrwSjFiz_6jtaVdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "StkZ7YYBBkbVtX3nHs4s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TCS0frHA5BpnX_dWNuYGnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "M2kZ7YYBO2e_P_QbH13S"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5bQcQ0KEBggKnhUPDGb0jQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} -{"create": {"_index": "profiling-events-all", "_id": "S9kZ7YYBBkbVtX3nHs4s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IHmYRt_J6aiZwjhJjkM_cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "pWkZ7YYBO2e_P_QbIV77"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_9EUaNCl3IuE7tIxwFYMuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "-eMZ7YYByh-A-BiyHoO_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yhXdoqpEpMhseJBw06VOcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "yNkZ7YYBBkbVtX3nIM9b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "i-MZ7YYByh-A-BiyIYwb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_wGEVT2AG1CIU-Fo31czqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "JeMZ7YYByh-A-BiyIpJU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lDXPFryqVEu45-jyL6avaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "N2kZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K8gQh5zdfmwr_L8d6j_v5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ZmkZ7YYBO2e_P_QbLWYQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JzEUg3uJDH9y4ttS90mXeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "OWkZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d_upsguCu_7bMgt4lbFjaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "OmkZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L037eGgcPD3WzV8I4bd-pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5dkZ7YYBBkbVtX3nLtZX"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vXqajcj1VS3ltzfGYAymZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "PGkZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PcOQ99O4RLe8hzXLIXv3cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "O2kZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Cdup7ftqfVJjPGHBzmFw9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "D9kZ7YYBBkbVtX3nLdRG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m6Tpe3Eo4Y_x5AamWL8GLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "F2kZ7YYBO2e_P_QbL2tQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qkp5EyZaH9EKC1Tx2EnCYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "4mUU7YYBO2e_P_QbwKIN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mTY_R13CdFxl1Dzfo0t_sA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "898U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qvp6aS0dEuRo-26h2BBtzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "J98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aqT_grJNIBLHd_G0Dg8D7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "Ld8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QYRd432ews7Dx4JLAryfRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "LdYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uxA4A64BqMWXOrNZbvu1iA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "nd8U7YYByh-A-BiyusTM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["olxENnVm98xfSUbHZlsIjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "4N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f6waWCOFDS45u1AgmybjaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RNi8L_o5RGudv-i_EaBkuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Bt8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bFqi88DUwWkr_8kK2-MSRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "E98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Bc2bznRO7nqTExYFV3_HmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Id8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kEXROxnWraXoAAVP6f28xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Nt8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0MR1l5n93T9RL0AOopmz6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LNYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1uuXblpY2G2lwZnvrUD5aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Gd8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DWfScUV2_2OCeYx4zWNovQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "HN8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_RxpKSu5Jrbu0E93Q0Uijg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "ONYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5herarFi58uky2CNY5OarQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "w2UU7YYBO2e_P_QbvJmg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ihGJ_26t_QqommWWGt2AFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "3N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OPOCasATDNT8t_l-saejjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "Hd8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-jgB9csnI_nQtRWte6ri7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "emUU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6jaCYXksX4gXZ3wnqIzP_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "498U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5PHdMxxhN18mCCoCEYhigQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "MNYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eBcAbPDQFdqKTTFWbEKpQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "rtUU7YYBBkbVtX3nu_4f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8bW6TIEkYi2BgDqcPdhRTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "J98U7YYByh-A-Biyu8Z1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nu3lDXuVVBXuKYArc5JOpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9KuldbllYEEo0KaNazsUsg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Dt8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "HN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qZRkXnh8pLDVlUVidYeFDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "3t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4u9WOOyrWYLdgsjOh9aCUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "Hd8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g2ssOcOjXCCaYX7ZddtppA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "K9YU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4vYC-zQmWI-i2_kgUaJOlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "KN8U7YYByh-A-Biyu8Z1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0CzIBbH5H33fNR_K-h13Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "2N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Lq2lfj5xkTFOSbFr4_BQ2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "5d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rtLWsf0bQDHrSMWDW9YU3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "6N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dt_oZZ2sQo9aPZAJj8jPTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "-N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZKNzQAHHe_cNd3rO-y4iLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "_98U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tbbZI-xVBmxiBDej_7HL0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "Md8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y10qk8LRFU3Juh0Dxf4kmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "3d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yVp49GPnTVvsmlWLVk3KEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "Fd8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3r97L1FcTYBv0NSBEOY9kw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "n98U7YYByh-A-BiyusTM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5oBHen4DGgt6AeseHpHNhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} -{"create": {"_index": "profiling-events-all", "_id": "fmUU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zl3Lkb99x2SkFZzpGc0tBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} -{"create": {"_index": "profiling-events-all", "_id": "Td8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wGohEkA_f1FytpRadmhYEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Yt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k7UKTjtjxgCi_dJkL48hVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "bt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jXPLTMNK5Wt6gi7cqc9W_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "hGUU7YYBO2e_P_Qb38Ek"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UAJ3qCHOXo3xE1EGVnJuHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "kt8U7YYByh-A-Biy4ewW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6eTapoSsPn6zyk1_cvguaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "3t8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G0DLtHxiVxElcFIXMT-PNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "VN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u2X_MgQedAiUni8lXoCIrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "bdYU7YYBBkbVtX3n2BjO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EOO-biRc_oXEIgdrmE3Yfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "3N8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s_LM4tNvgy4k7bBRfDcNqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "a2UU7YYBO2e_P_Qb27nE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hpyllfzpp8_nbwc9QqhNUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "Tt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FGp7_YvYovHXJURqI7m4fA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "a98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3cwgDFIm8qbQUpUKfKmwrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "et8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UMnm1x59Hw93aRPLKQaavQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "hd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fpy7i-LnOT8PL2nB1iKlIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "md8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_fL9Sy2i4FwG6fgla2SkUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "zd8U7YYByh-A-Biy3enR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Z-5rAaOPhdXYQmI34Fo4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "Wt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6WYxVgKRkmzkkIzHH-6U9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "XN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["48LM-A4BXorXDMlzaCgnhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "nt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6i_SCGQnGma1eU5i0B5EWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "xt8U7YYByh-A-Biy3enR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_PmLUDiMT9Fiy_kfGXHxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} -{"create": {"_index": "profiling-events-all", "_id": "098U7YYByh-A-Biy2eKG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["injLhEi_92EbuwxraOUUxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "XdYU7YYBBkbVtX3n2hx_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IKyFLy9N9kOhn3GGAEvAMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "298U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RrLvz0R4S4ONxlxpZkei3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "eGUU7YYBO2e_P_Qb3LtA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KtCekK_GfgQ-P7-c_JezYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "U98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["djYzyWbheYppCF6OFaB-rw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "gd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["spYXnEQIsyd22QzNNaT8Yw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "h98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q21MZOSvgx9xEGx7DqfZtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ot8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dPivlAC6aaFKRkKmSRwlpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "qt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PFbB3COAmbAYRaYoh99KYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8tYU7YYBBkbVtX3n3h9C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nyNpeOOTv9ufpl_gGUbV4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xmUU7YYBO2e_P_Qb38OV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JxEVWjcx9CTh2J891LN34g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "0d8U7YYByh-A-Biy1-BK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n-PAN0ssaXvJ6kY18i9tog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "d98U7YYByh-A-Biy3edS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uKWYFiw_KkWlIqqrtXASJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "rGUU7YYBO2e_P_Qb3r-v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5jipDuKi_84DxFQSN76f2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "Lt8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xpOWBBX4t2hmVnFh4nP3jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} -{"create": {"_index": "profiling-events-all", "_id": "ed8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9JtEJNwxEYbbvpjuHhBBig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} -{"create": {"_index": "profiling-events-all", "_id": "Ud8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xQF0-oJ8JdkDt-6rMsRLlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "oN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UsBNmnLs0et-noTkkUwfYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "xWUU7YYBO2e_P_Qb38OV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X2j-ugZRpPjKsN5Ee5wiIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "uWUU7YYBO2e_P_Qb4MZd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iOL2fCOaJ1jf3dP2xu2v9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "iGUU7YYBO2e_P_Qb38Ek"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jMGP_Z5cZtKhWETiwsHRiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "0t8U7YYByh-A-Biy2eKG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KcOiTTTgvYGRMXlpLOi98w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "e98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "z98U7YYByh-A-Biy3enR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TlylgEpMmjrNXKNFfM0qtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "vGUU7YYBO2e_P_Qb4MZd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "3NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ed2Wt5gOq97H8-8youFpYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "cNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0OyGL51yTh9zlLSWgdw6NA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "i9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UeaUM7Om2vx-z6s0bBXPMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "j9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r17pt9-WKBMBu-MRlixjjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "p9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["npMsWxmmefd8KwLK_Ds63g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "sNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ch10c9ij9u8WCrMXgg26Ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ttYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EXarUgAL9HIosZihvCe9Zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "0tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xr5GRqzEWQ1_fZjqV-PZpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bYCfW7EaPTh_vnd_DSsC5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "kdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cJw71ZYPzEs9XDrLKegdnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-9YU7YYBBkbVtX3n7TOb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PwiymugfyWZ7JNBkVfJTzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "uNYU7YYBBkbVtX3n7jes"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DJsG1PTKQj3bE1cuaZCjpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "atYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dhc8TGgYU9zTniCUbRsImw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "dNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ihGJ_26t_QqommWWGt2AFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "f9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bhyCyaPyN3IwoOhomCtSHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "pdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V2lnTrpVtTUaSRDF47D7-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "q9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eg4GNNub3CPns1G5g2R71w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "vtYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wux22FE_iDeB58rMJzYkuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "wtYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K3Z7Bso8_acxSu6Vxdfbjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "AdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o3FJgYr9HoLMDfWyiRLq9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "ltYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3YIkBS-ky7rLIF1FVQXh2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "n9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JzDNpxQnzmRTQIj87w61bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "oNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ips6IyoH5NuP1Ttgu1Etow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "odYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pkyFSPLbfCpCJS0cbldBzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "t9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Doitd-dudDRQURc3deY9nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "0NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["62xV6FZtZmytFhVdu0rarw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "39YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t3HuJD9NhwbE9maFj9AONw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "4tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["759vzPaqX5H2_0qTOKee0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ztYU7YYBBkbVtX3n-D_5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rzZCRVK3fR8zM07WhJJirw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "c9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0GXb3m0wsHZfeNuzhQyTYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "d9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eviuUsW23vOjlBWQv0bv5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "gNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VfwVZh1ddTJjJNWNT0v7rA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "kNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TakHMl9bLHFsMsirzPy3zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "l9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fHN81-0bXKBoEo0wx_S7CQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "09YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bZSMUUx94Y3yXU6mhbsNCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "19YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rwPz8ygB6KQKma7nayGgkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "29YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Dsg9VMTQ4os1LWYlVehJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "A9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dC5N-uFbcqPYrdPkLxaQXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "o9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CJcaXL-gkWEKk5sisV1pCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "ddYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rmqpLjKhFVehwbUcabYxkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "etYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lVm7T9NjlDcvHseuxZtScA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "e9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kWwzipAAQMAm1ZJZNEkFsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "gtYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f2RJTDjOG3CtdSv8hOKanw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "rtYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xGXtUwy0WyT4ZsBj5B3XBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "v9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HU4NPEh9jq0KD6Ucbp_cWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "59YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6BMEwaZdEOxcFFELpK3iqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "89YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5hj4hVJglP1Q0S9uCaavXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "9tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WeDK4Wsp82FrbsJvJ81IVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "P2UU7YYBO2e_P_Qb7cxD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UpG4HUjCnzDBM_w7fbVK2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "d-AV7YYByh-A-BiyCBIn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5DxLQCjm2m1lyk1iyQve0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "YOAV7YYByh-A-BiyChop"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHDH56Gg_3eKY-7t_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "X-AV7YYByh-A-BiyChop"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DgucPUiNzHSpH364riJw7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5NYV7YYBBkbVtX3nDV0h"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CghM7sv0n941Gxqx3t0UfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "i-AV7YYByh-A-BiyCRYi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YxNEfLJqeU0ck91JlIJDyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "XeAV7YYByh-A-BiyChop"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RZl8t-9rqMQDfV5hnTHtIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "weAV7YYByh-A-BiyCx2w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-tJlKr_KhSmekGKYSh387Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "d-AV7YYByh-A-BiyCRh4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y2rsoafmE6xytYWP5sYCtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "66636157595941"} -{"create": {"_index": "profiling-events-all", "_id": "j9YV7YYBBkbVtX3nBk4o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Tn-1KeEU3BnmdtG_8ojEnQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "DdYV7YYBBkbVtX3nB1HM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wJ7q8DE_vEYNiHBNDFSXUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "L9YV7YYBBkbVtX3nCFPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hc391qiEl23bWsvU8MIb2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "JeAV7YYByh-A-BiyCxxq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8OAV7YYByh-A-BiyDB-G"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lcGXu2A_kQpLv6e2M4Rs3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "leAV7YYByh-A-BiyDSFn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ydVfMca4pTKtV_nMQvo2kQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_dYV7YYBBkbVtX3nCVTP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xKjCC5yf0r30Yx7ATik86A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "7uAV7YYByh-A-BiyDB-G"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xGXtUwy0WyT4ZsBj5B3XBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "PdYV7YYBBkbVtX3nDFzR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CyRDyPVW9ctHTgi1aqo0EQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "duAV7YYByh-A-BiyCBIn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C0FEuqrCBrJSXy_icrEjSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "dNYV7YYBBkbVtX3nFmEP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHDH56Gg_3eKY-7t_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LOAV7YYByh-A-BiyHDPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["082Ba9ZuDVL3ONCoRsOt2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "yOAV7YYByh-A-BiyGSzz"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5herarFi58uky2CNY5OarQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "xmUV7YYBO2e_P_QbGuqP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C8RiWN9GOAWu10jfv-Iilw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "cWUV7YYBO2e_P_QbG-2M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v78L_ndncKY9XP2euXU8Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "cNYV7YYBBkbVtX3nFmEP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GjKr7NR_B5mtmlpw2-1M7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "AWUV7YYBO2e_P_QbF-SC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-tJlKr_KhSmekGKYSh387Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "xeAV7YYByh-A-BiyGSzz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qktS_v13lC94BidNvaMyEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "dtYV7YYBBkbVtX3nFmEP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U4MMCuBpnow2QDzcNOq_rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "y2UV7YYBO2e_P_QbGuqP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EscTPoBu7P-yWjfqYPYrXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "puAV7YYByh-A-BiyHDGA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wWjEk4V-ocnXQQZfOB5PAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LuAV7YYByh-A-BiyHDPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HBL0k7Q3NY1Rzs8CB4mIaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "yWUV7YYBO2e_P_QbGuqP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M56qbhAN0zSyPqoRnP2tig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "o-AV7YYByh-A-BiyHDGA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "pOAV7YYByh-A-BiyHDGA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DMif4YgVmZnzbZZwItpS7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "BGUV7YYBO2e_P_QbF-SC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mqlqe7dL-IrMXVeazPB5Zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "Z2UV7YYBO2e_P_QbGOeB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9QQ4r43YuHwpw3ZT9p1xxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "5-AV7YYByh-A-BiyHC88"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VGkfGlLCT3CZxXjvshlG7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "p-AV7YYByh-A-BiyHDGA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YM8VOmaiYixjkGqh3aYLRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "peAV7YYByh-A-BiyHDGA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RLske_-faZ7wKdYb3WXphQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "hNYV7YYBBkbVtX3nLYc9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xSNZ9DKX9aJSx1JikG9CmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "o2YV7YYBO2e_P_QbOABd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iOgvcGNEugo-q4Mte_An1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "0tYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2NVoBlds2Nc4h_QCDJrDnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "39YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5NYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K0IAThZo_rvcPV0xYOOPXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "aNYV7YYBBkbVtX3nLIUO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nQzW1IRnoVkGXf3RVdA2zA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "cGUV7YYBO2e_P_QbN_2B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uk1ygFuU89LLnNUfPAM8KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "z9YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eu-uDVkqMSOny2oTSdBCFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "F-AV7YYByh-A-BiyNUMG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8THUiHTgWMDGXf1IWeY26Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "zNYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LpjlQ5x3C5y0GS9aUsntg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "ZGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pvgv_ahPIvTWXkMY-zr13A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ouAV7YYByh-A-BiyR1Tz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzu7roeVjuX8DIGpBc0otA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "dGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SKoD-DH2DuktCqfanvYyAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "cGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dhc8TGgYU9zTniCUbRsImw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "gWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hjl6WiVIjOxuK6ZdXf6w-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "gmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JbKyofNFaA1HXxSLiY4X4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "m2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e7M0HNFRDiBlp-s3D7tWjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "YWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3LSphn5t1PDGJFGbkaC3PQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "Z2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "aWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jJFQhyyI67HMRTa7_xT6Hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "dWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZV_tr06SpYoUw5FQNiY8zQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "hmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SDmVY9Mljfrd1uHcDiDp-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "j2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["19-BIdJDFsbAizxGj9jWhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "kmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XXVig9Ie3HmFHZwzuss1kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "nGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "omYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8dMyIgFlKWEMYc0z_PTTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "YmYV7YYBO2e_P_QbRgy_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mzLwn00dO1KbECLOnE-3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "gmYV7YYBO2e_P_QbTRNU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2TKowT3Mk2n52YOH2Zj2XA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "c2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qmvE4JqUb_c7Db7yXDg5mw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "kGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9j8nawarR-p9di_5gnPsKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "l2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KmEOZVutONuRJavBSb15QQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "YGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "1NYV7YYBBkbVtX3nSppo"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruch9eRlQqOnJ3ZVNLKC2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "xdYV7YYBBkbVtX3nVKlD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8hoWuown2giiSuSwEtqAnQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "0eAV7YYByh-A-BiyVFqd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hbFdZ00lApIoSJEOlowBQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "RGYV7YYBO2e_P_QbWSCB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T7kTFHjAtS6OtzybnvJ0ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "KmYV7YYBO2e_P_QbVhYN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4sjDMbuo1EQDli2AMeF1pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "3dYV7YYBBkbVtX3nWbXf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "t-AV7YYByh-A-BiyVV6i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oSCp9cFxZ1aVa9L0c22cCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "FmYV7YYBO2e_P_QbVxih"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q_0hpIuT4vi1WRoDxA9V3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "UdYV7YYBBkbVtX3nVa1D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NkkmX71PXT_4RUzWmyda5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "J-AV7YYByh-A-BiyWGBd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yU-qPn31kCvhNCgJkxCSEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "WWYV7YYBO2e_P_QbczmF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["codND57fF0ln0PPsgzvoNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "hOAV7YYByh-A-BiydnT4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J2g5fO93ezqUgypiuztojg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "zOAV7YYByh-A-BiydXL_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5NYvRSd87djiQAuRZMHZrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GtYV7YYBBkbVtX3ndtBc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zim2W2rYjohz6B9iTayl7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "xWYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C6VUfIIv3MbNvll1xucbVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "t2YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tTpfeAZeBwNUUR0vm7VdPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "uWYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2CWGwjnZxZvrumi7qK8KzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "lmYV7YYBO2e_P_QbhEb-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bWkQYO8eq_v3XManPn1ThA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "umYV7YYBO2e_P_Qbh0lI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4NHR-vq-GiKf-T9dij8d0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "3NYV7YYBBkbVtX3nieY3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0E7LlamNni9h1zgUjdYD5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GdYV7YYBBkbVtX3nhuK9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tXy3kfx8JYVKb1u9vHWM4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_2YV7YYBO2e_P_Qbg0S7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m3Xj1zX2LizEaWcI0RP5pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "6tYV7YYBBkbVtX3nh-MJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ExA0qEKb2y-al6iVdwwTBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "1GYV7YYBO2e_P_Qbg0Jm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vk0sA1reerzoGdA4p7qrWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "4dYV7YYBBkbVtX3nhd6z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Uc3rxkKkk8AS6xhrVwHG8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "iNYV7YYBBkbVtX3nheD0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9UeR8byKX2vZOFjGKyo1sQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "AGYV7YYBO2e_P_Qbg0W7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q2WGGCpyITTBJHm2o0dHlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "CdYV7YYBBkbVtX3nhNrA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L6cJEyVPJDgBEJDXdVk3pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "148877361383403"} -{"create": {"_index": "profiling-events-all", "_id": "0dYV7YYBBkbVtX3nl_dj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A3ycyp-L3z38MavKYehVrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "SNYV7YYBBkbVtX3nmPtF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7JUoTiaPyT_VuWNPYwhf1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "EeAV7YYByh-A-BiypJYN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R5Cb48qStI1GlPaxKWm-mw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "p-AV7YYByh-A-BiypZkc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "emYV7YYBO2e_P_Qbllh-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F42cuc6uAbdZGJ5REI0zrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "f9cV7YYBBkbVtX3npABx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L5PYk_DA5ZMV0OoQVBb0Dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "2tYV7YYBBkbVtX3nl_UY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3C9vph60V3enG2gCmii1lw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "O2YV7YYBO2e_P_Qbsmir"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hz3UbtFZA0rYIYn4YRCgtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "XeAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kQLQAgPodGZQIssiOLfgVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "atcV7YYBBkbVtX3nsgwF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lE8Ul76Ux_RbEcuXBt93-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "KmYV7YYBO2e_P_QbtnB5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ja-NqtogbhFMWHWfFPBr3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "i9cV7YYBBkbVtX3nuB51"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e6FoyrtZm_iaPN3JoyL3hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "JWYV7YYBO2e_P_Qbs23k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GY1eWbgNYGRrYMML_stAMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "KGYV7YYBO2e_P_QbtnB5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["guvxESb_8YhISaL6-8e6xQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ftcV7YYBBkbVtX3ntRfi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lX7-zRMdXP98ZhLRX4j9Qw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "aNcV7YYBBkbVtX3nsgwF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aZEifOwXBahtAWgTrRIWHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "OWYV7YYBO2e_P_Qbsmir"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FuGHJWRe5aMwCq833fms7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "X-AV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0gtJm_g6i_TRRAKd_qakTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "0uAV7YYByh-A-Biytaeh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EhcWlVVBHGJ89wrxw6v8dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "e9cV7YYBBkbVtX3ntRfi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A8pyJ84eyIC8RCi-Ni9jQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "R9cV7YYBBkbVtX3nthkq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HMhRkMthUzKnK3YLiu0DPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "YeAV7YYByh-A-BiytqnT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JyUFbnbXVaKa7YEj_4FmBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "ZeAV7YYByh-A-BiytqnT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AgP4G3LQ52j-d6F0ClOqXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "M-AV7YYByh-A-Biyt6sa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pXRClGC06I9e9KXulLXsSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "ydcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yU87pg-Ch2E9K6GDZMg_og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "tmYV7YYBO2e_P_QbuHEg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Gg373ZQ4MQ2jkh8DEBd7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "8tcV7YYBBkbVtX3ntBEr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iz6TzFT8_J6ff04naDiS0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "2tcV7YYBBkbVtX3nsw-Q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B2cQtnpQnOanc1V2PQKbyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "JmYV7YYBO2e_P_Qbs23k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["obvZcLc8tkTW_PIiHCS5nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "TuAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hUXn7O15YJeI0ULhNiHitQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "UuAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "YeAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OVfsYo1AUUUdMdlCaFwu-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "gWYV7YYBO2e_P_Qbs2tB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5DCRsAykIrZ8I8tHgQy4yA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "g2YV7YYBO2e_P_Qbs2tB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JB6F-U_ns7SY5JIwmO_kFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "KWYV7YYBO2e_P_QbtnB5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NGw-JF-qcO4DHjzt4B2wLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "uGYV7YYBO2e_P_QbuHEg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LMgC_pj236jbZulsolnmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "wGYV7YYBO2e_P_Qbx3ol"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Tx4eHSc1gmcx0PGWlGwBFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "6NcV7YYBBkbVtX3n0ilU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XTk5UeO5E6dR53Or8LwcYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "YeAV7YYByh-A-Biy08WI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f18CNP-wdQ0HCwNNONpc3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "EmYV7YYBO2e_P_Qb037f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dJyQsD0pMmiwvo0yyQz-Eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "59cV7YYBBkbVtX3n0ilU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZPTQfDgXmRrvRJctvBjMQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "7WYV7YYBO2e_P_Qbxnew"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N7_BJi6ewgXvZf2hE9Zv4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "PmYV7YYBO2e_P_Qbxnnn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TJIfdSm5tRZeEi6vWzdD9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "HGYV7YYBO2e_P_Qb0XuE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Z-5rAaOPhdXYQmI34Fo4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "HmYV7YYBO2e_P_Qb0XuE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wUfvGFMhsPYCiR2iraE6yA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "I-AV7YYByh-A-Biy0cDF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Hgkg_Kmgo0P1NY1bWt3zqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "Y9cV7YYBBkbVtX3nxSih"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pyc1NH6GKoq4eJ7lPXF0sQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "HOAV7YYByh-A-Biy0sIJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mPA9NkH3378cVYxn3yS3sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ntcV7YYBBkbVtX3n1C-A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SvIqTeUVvtREJSFJV6baig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "f-AV7YYByh-A-Biy0b5D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_8l4R1w8OTMW19KvGaUFKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "P2YV7YYBO2e_P_Qbxnnn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XXNleeK595fkvNMoEEpulQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "1dcV7YYBBkbVtX3n1C00"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PFH8JfGJ8gxGshJahx5FMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "quAV7YYByh-A-Biy08M-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Iz58o69gDrMyQIJrUSlESQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "907195111575642"} -{"create": {"_index": "profiling-events-all", "_id": "72YV7YYBO2e_P_Qbxnew"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PbqU-V8nn0Uur1oPUBWRCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "fuAV7YYByh-A-Biy0b5D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "nNcV7YYBBkbVtX3n1C-A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EgKG3D5vsxLZ2SNdnZFPlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "aGYV7YYBO2e_P_Qb44h4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D9deM4hA54-jD4QRfBZvyg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "TdcV7YYBBkbVtX3n5UgW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-4SLKLQoS7j3p5TwUwKzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "52YV7YYBO2e_P_Qb4oar"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Usa9goZrRSpJ79s2Sa1Vog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "f9cV7YYBBkbVtX3n4Two"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N4MQ3_wF7ExRpMVmr34tag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GuAV7YYByh-A-Biy5d7m"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5mYV7YYBO2e_P_Qb4oar"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZpjYqKFeza_P-0E6-9HQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "X-AV7YYByh-A-Biy5t9l"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lLjNSon0kMlL_GeOGmhieQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "tNcV7YYBBkbVtX3n4j9s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wl491oxaYlbc9Z3W8DsZgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "v-AV7YYByh-A-Biy4NHi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vMqHPs9EIjuvSlEC4OiiMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "XuAV7YYByh-A-Biy4dNo"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0RLFnq52wVIAB0sP7d89Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "teAV7YYByh-A-Biy4dbn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NwR9aEq_NsygT1I-G4aUWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "IdcV7YYBBkbVtX3n40O7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uxb69r-7SoT16KEvWAhaDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "ydcW7YYBBkbVtX3nBF4I"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uTpiMizzgYQSE0drb2SNgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "NGYW7YYBO2e_P_QbBq4R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MyElinVLAEAN4F7lmOg8bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "4mYV7YYBO2e_P_Qb9p9p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VAqxR_4yWhELwHpSX2G6ng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "42YV7YYBO2e_P_Qb9p9p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yRFnGrrHGohZX1q__Ac-fA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "KWYW7YYBO2e_P_QbAabd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HvoR4SCGNKrytsOmcHUMJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "SmYW7YYBO2e_P_QbAaSR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cA8SM2W7SPYEpBx-8uBa1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "F2YW7YYBO2e_P_QbA6id"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bawlMqqRTjOm5tziwkLcwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "DtcW7YYBBkbVtX3nA11E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wWr06tNuG4WxrmchIC2X3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "btcV7YYBBkbVtX3n9lYm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iZrZGh0SZx7vPDLJtsMxOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "6GYW7YYBO2e_P_QbAKAj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["paq17JnBHQOEskwFc5mgww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "2uAW7YYByh-A-BiyAu7q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["29tkR1iuog5-kDCdzfxqQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "HeEW7YYByh-A-BiyFQcS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nfuQzK4dMvkwCIn4oK0vJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "jWYW7YYBO2e_P_QbFsMV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["28KA4slgI2GZmK9Ldp9xgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5eAW7YYByh-A-BiyD_jF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0XhwDDngWLjSP8tIl3SEwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-eAW7YYByh-A-BiyEfoC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynw1R90P5jqjjO7FNW192w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "A9cW7YYBBkbVtX3nFGcu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_BHWrMWBlVU6-0DD2Kvl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "jmYW7YYBO2e_P_QbFsMV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZjlOM4tBu1Fp11Fh5nR8-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ZGYW7YYBO2e_P_QbE72B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R_D9JvJUWXzC0H3Nib_YHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "KtcW7YYBBkbVtX3nFGl3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dUuQ2lSMaZyy3BCVVsDF1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ImYW7YYBO2e_P_QbFcGw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kxm_Vs_FFH-wRGO9m2XBVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "624455205497100"} -{"create": {"_index": "profiling-events-all", "_id": "gmYW7YYBO2e_P_QbFL_E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XNUe_HujD2dm4YoueIuXlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "KdcW7YYBBkbVtX3nFGl3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X4UPDmSUe7qQGbfeloDUvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "LGYW7YYBO2e_P_QbELiv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "-uAW7YYByh-A-BiyEfoC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wb8Q-SnAsfDM-7Ktdo9WMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "x9cW7YYBBkbVtX3nFWpl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_IL9L_uv3CfGfQbo7Tbz2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "jGYW7YYBO2e_P_QbFsMV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BTbJZwKcIfQ2uNxAXoZhbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "QdcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lG8h35lC0oRWKY7OgUwEmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "DtcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sPnyqYXZ1627cOAm3Dt4dA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "562164997202330"} -{"create": {"_index": "profiling-events-all", "_id": "2-EW7YYByh-A-BiyIA7i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "A9cW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jY6an4TJNzicxfsoO4aEFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_9cW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tJrgFzG4FpnL3ryIXlyV6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "PNcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L2ywo0l6w7YZhxb-9njWcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "PtcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g0c6MsN22BR9PeSRno8jLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "QNcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeLqMJxxpT2jsR6Xt4zqGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "QtcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gL8V3iQOuoY8AzmvM83Gdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "StcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ch2MeEpHv6ftyPFPGwDJPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "GmYW7YYBO2e_P_QbJMtU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ri8THh1H50J0zvIysOPcMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "59cW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lN6iyovFymV6B1GKuV60Mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "6NcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T8nh4Uz1hBa2hX7n6l8yLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "79cW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cPPlFt_kc7DcftmxWZU-iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "89cW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZEBSFm0BO7Q5NJ0sJOp5pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "9tcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3y5nAKYNm-1QPvIH6-wLoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "99cW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bm8lqh7bD2DbMALavVY57A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "-NcW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hkSlK3ySEaiDEWQMnnd57g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "BNcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f-mP1jAp98tb7PtN_trD8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "7tcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5nMiVDy9d3FyKI4YMMJNGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "R9cW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "P9cW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruch9eRlQqOnJ3ZVNLKC2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "d9cW7YYBBkbVtX3nQo-v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-TyLNaIus8xYXNJ7qDmYxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} -{"create": {"_index": "profiling-events-all", "_id": "29cW7YYBBkbVtX3nQo0Z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vOAA7I3SI_6CYSE5PLnlzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "393338065829662"} -{"create": {"_index": "profiling-events-all", "_id": "eNcW7YYBBkbVtX3nQYxi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LP2s2eN9q4S8yFbcMdo49A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "hWYW7YYBO2e_P_QbRObI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynw1R90P5jqjjO7FNW192w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "V-EW7YYByh-A-BiyRTUo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bQwiWS8atv5BrlgvoSejZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "h-EW7YYByh-A-BiyPiek"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g2Jekw_GmjkRbs2II8a1AQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ReEW7YYByh-A-BiyQSqw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dQoejHiZXRe2q1PMrGN9Aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "WOEW7YYByh-A-BiyRTUo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BgnwfcudspKPFADqFnojuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "8OEW7YYByh-A-BiyQCi1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["woH9c39lhinU4GavawjQuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "zGYW7YYBO2e_P_QbQeID"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RBIYJkbW5-Ss2DSyBgMD1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "3dcW7YYBBkbVtX3nQo0Z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jbue-qNayNZ_fIEQln1nAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "YOEW7YYByh-A-BiyQi3_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S5e4O7lBx37gz0fcZIzqtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "MdcW7YYBBkbVtX3nQItF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bxosazizFV9avn6dlwjxfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "heEW7YYByh-A-BiyPiek"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g15iIWCPMhS3lvfL06AkwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "7-EW7YYByh-A-BiyQCi1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UlhGaNTjh2CqZiofxpZ5rA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "u2YW7YYBO2e_P_QbPtv2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i3VVbQEF8y09CAolsSQBvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "t-EW7YYByh-A-BiyRDN8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iMrQPudvsPLod26LuW-2pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "a9cW7YYBBkbVtX3nT5d5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m55Znt_y0UyjemF1cQhp1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5mYW7YYBO2e_P_QbUOsU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VkyfaqGAgzJ1mrE4QyhFNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "KNcW7YYBBkbVtX3nUJll"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J2g5fO93ezqUgypiuztojg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "jeEW7YYByh-A-BiyUT4z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JK8YqiAWSqqVOym-FM3Bcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "YWYW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDY23NPQzaDDr0M473XGdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ZGYW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZROPXiO1YN29GxsBWCCa4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ZWYW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5K8-gusySTkvMx2KwQOwvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "CGYW7YYBO2e_P_QbUe_C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XelrCg-bWU72nb6t1bBQsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "tuEW7YYByh-A-BiyTzvE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ovZA3MLYLkKXQB_OLfVFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "69cW7YYBBkbVtX3nTpOO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3U1GssMMNyEfwWToQlllWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "cdcW7YYBBkbVtX3nUpqO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "4NcW7YYBBkbVtX3nY6tx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-4SLKLQoS7j3p5TwUwKzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "l2cW7YYBO2e_P_QbbggN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hp7nnrgj4rg9PepT5KvZxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "MmcW7YYBO2e_P_QbYgMK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vg_UUeeyZsIQBEa6Nvh43w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_WYW7YYBO2e_P_QbYP9I"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L-ilYQocauuNE095JEhEhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "zmcW7YYBO2e_P_QbYgTe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y4O8D8hxYkhFJTYN-hGU2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "ytcW7YYBBkbVtX3nc7iI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SrDodAnZ9uPT0nyBwub87g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "K-EW7YYByh-A-BiyfmAg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FYsp1kqfqOBHCXrvmwLiMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "A2cW7YYBO2e_P_QbcRL4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m9ekiTsBlnl55IAShmMs6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "AGcW7YYBO2e_P_QbgBRD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kZ6jYHQvenC-oIeTFn_Bnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "AWcW7YYBO2e_P_QbgBRD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDKxniIVk0RWV976qb-dNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "rOEW7YYByh-A-BiyfV6p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wlmshnU41XskzIJphrG7Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "cWcW7YYBO2e_P_QbfRJk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pOXMz1epa3_ioZurkFW7Lw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "GeEW7YYByh-A-Biyf2a2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uN-YY_i1gvVmqACLDXQMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "JNcW7YYBBkbVtX3njsRV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UHDtJaJSDV9olnFzaBKrSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "0tcW7YYBBkbVtX3nksnh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bbBiaFslvpreG7iqHkAtng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "oWcW7YYBO2e_P_QbkSZ4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7E3wyc4NU7VCrTPNTghNCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "EtcW7YYBBkbVtX3nk83N"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cpTq_fYtizjUZY0WgZic9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ENcW7YYBBkbVtX3nkcYc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZAocMl5gXpxySXSm5DNBqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "DeEW7YYByh-A-BiyjXAa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "a2cW7YYBO2e_P_QbkSjL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["frX5XDi_BeSd8ATSu-BzMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "uGcW7YYBO2e_P_QbkymJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FZiQmOxfnnxBneo5kx5hbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "DOEW7YYByh-A-BiyjXAa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y8UVXYWOaxAeCcWGwyqDaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "PuEW7YYByh-A-BiyjnPr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b3E9ZJZY0ClQ35xwbM-URQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "EdcW7YYBBkbVtX3nkcYc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["422YB3Vi5ylq09ThSitCrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "udcW7YYBBkbVtX3nk8tE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TuM-SJ9cGA7C5rVB2mzPbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "EWcW7YYBO2e_P_QbkCRr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x4JagFwIYKM4hCWjdkk5Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "TWcW7YYBO2e_P_QbrDkF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8QWlvovygGFcfE-e_CiKgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "PdcW7YYBBkbVtX3nrNlH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fba2v_kCgR0XMDcTdnNyUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xGcW7YYBO2e_P_QbrDqK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n73U5dOg61JklJT6WKmxuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GeEW7YYByh-A-Biyn4hj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wBC8PW2stc2snL3In1dZgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ItcW7YYBBkbVtX3noNM2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sZEqvMD6I0UREvB3izGzGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "o2cW7YYBO2e_P_QboDfC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hqZLEegbkzGMCD8s4XbApA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "z9cW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bgfofmlWcYjAIJ7veGUfFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "jNcW7YYBBkbVtX3nodQJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7i3Cx4zEv0tNGbpsMJIrtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5OEW7YYByh-A-BiyoYqh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jwj9IGMM0jWZjOAtjE9d7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9tcW7YYBBkbVtX3nrdtn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EZUfXP4Nc5xC-6yjjFWFXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "lWcW7YYBO2e_P_QbnjHj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AIjbpW4afQJ6fKp4bSOkMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "HGcW7YYBO2e_P_QboDaE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KlBBeb_BAMwNu68sN8StmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "FWcW7YYBO2e_P_QbnzMm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_u0T-bb-6oGwzLo8Ixk4jQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "GuEW7YYByh-A-Biyn4hj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mf-R-1299D4bJft-Ookh1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "l2cW7YYBO2e_P_QbnzSu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XuoRBwH8D9PqSHFLLM0iiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "leEW7YYByh-A-Biyn4n1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["emxPOGrmfJB_o3OYwaU-OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "l-EW7YYByh-A-Biyn4n1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4r8rDC-HuMcBsJ3v8w5X0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "jdcW7YYBBkbVtX3nodQJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l7TOnfsZ0Oz_cxAh8t_TMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "P9cW7YYBBkbVtX3nrNlH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["scKMoVIbbsXT0ePI0cAHEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "oOEW7YYByh-A-BiyrYy7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BnraydbvEwL6mkTBVZOVLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "ZuEW7YYByh-A-Biyro4M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tfP5YaLMRchIJv1xrJ1yhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "l2cW7YYBO2e_P_QbnjHj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KPRFk1hV8cCqMtGiVI0VUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "mGcW7YYBO2e_P_QbnzSu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IqqI5g2QWaQwbYuVPZB2iQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "INcW7YYBBkbVtX3noNM2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DbsdNQcghdeUQULeZY1Wfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "4eEW7YYByh-A-BiyoYqh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["93n0e7h5H7aFXvMK8FoA2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "PNcW7YYBBkbVtX3nrNlH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7pCWL6qVpk6cdOVpmC7rqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "ReEW7YYByh-A-BiyrYsf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wHyMmE8SVaekDujzx_Uidg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "gdcW7YYBBkbVtX3nrNrT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fQniEpOBiPV91AqeXKUYaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "Q-EW7YYByh-A-BiyrYsf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rdrM64mgJOBslxLrMQ7wSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "QeEW7YYByh-A-BiyrYsf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aTZihWAEPXUldJhLCeEBBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "DWcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3GQlu4cDmBP0J7ys3CIDFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "CGcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7E3wyc4NU7VCrTPNTghNCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "EWcW7YYBO2e_P_Qbu0br"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z897RYYv5sVYFZXocfXeZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "fuEW7YYByh-A-BiyvqKW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["57Fil5UcCT4QMA8PK7lldw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "62cW7YYBO2e_P_QbsUPY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5herarFi58uky2CNY5OarQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "COEW7YYByh-A-Biyspsk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "vGcW7YYBO2e_P_Qbu0Sm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "xOEW7YYByh-A-Biyv6MJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sMrntcfAzsvFpOczgTISXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "MdcW7YYBBkbVtX3nv-qT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qZsYEzt_8lrTbaZDB8kywA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "9uEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["efbR3WWiUOAtCglTIhsrqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} -{"create": {"_index": "profiling-events-all", "_id": "9eEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YABibb_jw0z2mFZJ8rsBIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "EmcW7YYBO2e_P_Qbu0br"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tPsVwrBNUc_Ucb0xgpo9Aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "FWcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Ir6dnl0cXTDA9lqUj6YdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "DmcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5L0Vg1E8eRaEol71UFTwGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "pNcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U7k09_Fy75Q9-PpHdDlKvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "otcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-yIay2Jhm3BbFiMI2RaPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "fOEW7YYByh-A-BiyvqKW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1hW5v3HRKvG-GrmY80R18g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "NtcW7YYBBkbVtX3nveeB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q4JtKPdD84sGcDCNyN6nPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "844449768587301"} -{"create": {"_index": "profiling-events-all", "_id": "dGcW7YYBO2e_P_QbvEm2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MGOK31fQ4tvuxuQh2V8_TA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741972803009497"} -{"create": {"_index": "profiling-events-all", "_id": "_OEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "6WcW7YYBO2e_P_QbvEco"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i3VVbQEF8y09CAolsSQBvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "EeEW7YYByh-A-BiyvaHP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3huOpz_dzO1rKry9zYBuMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "DGcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fp3JKxC8Kg-FrE8ZKU_2DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "edcW7YYBBkbVtX3ny_KF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nfuQzK4dMvkwCIn4oK0vJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "IuEW7YYByh-A-Biyz7ao"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rMpzXndoIcEiY0-GRAGnyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "meEW7YYByh-A-Biyz7fk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CfSmew3N7q6MPA7XYHOAyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GWcW7YYBO2e_P_QbzVOk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ETxTEgZSbzYjk8XGh4vHbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "weEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3EdY1eU9gJRJ5-pD1F-9zQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "yeEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qZRkXnh8pLDVlUVidYeFDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "I-EW7YYByh-A-Biyz7ao"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ql-7Y2YW7YrNN7ni_2nHhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "DuEW7YYByh-A-BiyzK0R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ORYJnd66MJOP1pD9p0bgYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "845379217314054"} -{"create": {"_index": "profiling-events-all", "_id": "nOEW7YYByh-A-BiyzK7K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bnUDt83Ym2Sj0RWXP2Cv7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} -{"create": {"_index": "profiling-events-all", "_id": "mtcW7YYBBkbVtX3ny_BB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "wuEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["81PIAyCx2Qr8_sB0OgM2gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "idcW7YYBBkbVtX3nzfVn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PBy4E9YE68R_J8izQs8bgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "xNcW7YYBBkbVtX3nz_hr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CAKMNMeNYggEGwOcAHqlpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912668704793740"} -{"create": {"_index": "profiling-events-all", "_id": "XeEW7YYByh-A-Biy38W8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hD5xCbVnNYVsLiq_B3NCDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "SmcW7YYBO2e_P_Qb3V8e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zksj6C38tiqx_uPlkG3-oQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "gmcW7YYBO2e_P_Qb4GUL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["it1M7ufrxHsYyi2peFanww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "odgW7YYBBkbVtX3n4AeL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C3gJbGJLW5qO4iB7Vj3kzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "gWcW7YYBO2e_P_Qb4GUL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "veEW7YYByh-A-Biy4MbF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v5EpA4krR2ROLXfbpheNHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "747188141952000"} -{"create": {"_index": "profiling-events-all", "_id": "_uEW7YYByh-A-Biy27u4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-39O5M9xiKV4ss-qyTu_Ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "CdgW7YYBBkbVtX3n_BuV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UQljazbrYNKb17CR1zcj2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "fGcW7YYBO2e_P_Qb_XYQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rfbDR_zpgC01-kkTCN3O8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BdgW7YYBBkbVtX3n-xhN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gIiBrAZ3-GkFJ4HVnfTsCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "hOEW7YYByh-A-Biy-9YK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cn_9IfzsC8Tr9nDWV2mNig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "fuEW7YYByh-A-Biy-9iI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pS9eiRRqpJHZ001DHnp6Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "lNgW7YYBBkbVtX3n_RyM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JoNW0S9pSsiAmHByB5KnMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "89gW7YYBBkbVtX3n-hQh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fFW4hYJ0SQeKKNYH-nfcDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "W-EW7YYByh-A-Biy-9rd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u29RuXTUI9L-Xut890hyuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "fWcW7YYBO2e_P_Qb_XYQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rtLWsf0bQDHrSMWDW9YU3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "LdgW7YYBBkbVtX3n_R7G"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9UOoQ2kKxEY1n0AS8biVEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "8mcW7YYBO2e_P_Qb_nlT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uqbj6xXSR4L1HQjjfr6tw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "HGcW7YYBO2e_P_Qb_n7b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hIfw2Nju3QIW5tv0qLI6DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "veEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3blkVUmhYGlb1bNhKqNU-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "tmcW7YYBO2e_P_Qb_nuT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UQ1fVd58k2fSqjQSJ4y2iQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "DOEW7YYByh-A-Biy_Nwe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kE4sjHZhfkpbgfq0NZt7Zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "DWcW7YYBO2e_P_Qb_XhM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JXC2aswffzFwIASa8HM7TQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "gGcX7YYBO2e_P_QbDIov"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BOn5YfVXLbYJVzgO0D8UNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "yeEX7YYByh-A-BiyC-Tq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IcP7NfEq0GawQQCHmZWcRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "XeEX7YYByh-A-BiyDev8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yaVT1XFUH-nJ3nm8j75Wtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "pmcX7YYBO2e_P_QbCYTC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JoNW0S9pSsiAmHByB5KnMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BNgX7YYBBkbVtX3nCyUt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oLIJJ3vFP9iOSdpBALj2Hw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "uGcX7YYBO2e_P_QbDIuZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1x1DYtBgANQEqmgJHFNwCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "F2cX7YYBO2e_P_QbDI3K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PpzV6LTOPBnvw6J3GGPQ2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "p2cX7YYBO2e_P_QbCYTC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3HYswCLIguo6i_KRnM6AYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "42cX7YYBO2e_P_QbCoef"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_z_VvquVclvHpAURI8mubg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "jeEX7YYByh-A-BiyC-Nk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vUd7LUOlEzT1w32bH1zYbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "yOEX7YYByh-A-BiyC-Tq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qUy-ynHNFuJ7a24qIM4sMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "c-EX7YYByh-A-BiyDedc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SRve3dTLPRl1qAhVYZQKgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "M2cX7YYBO2e_P_QbDZHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c1BBf8_D0Zq_e4sWgAdTEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "imcX7YYBO2e_P_QbDpI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gelrHvnNAa48pTzMlBF3sQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "jWcX7YYBO2e_P_QbDpI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["scKMoVIbbsXT0ePI0cAHEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "omcX7YYBO2e_P_QbCYTC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xh6Pk0lsPTYRl99fICP3qw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "vtgX7YYBBkbVtX3nCSH9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZpjYqKFeza_P-0E6-9HQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "5GcX7YYBO2e_P_QbDY8s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mhlnk07FVj7HY3V21x3-gw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "cOEX7YYByh-A-BiyDedc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IermM9hSVXhnqyUrzsPYOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "ceEX7YYByh-A-BiyDedc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gpy3Q2u5ZrnHXb3KmhEpOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "MWcX7YYBO2e_P_QbDZHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tnUJH3O0LYpzeUegdlTfKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "5WcX7YYBO2e_P_QbDY8s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_9EUaNCl3IuE7tIxwFYMuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "UdgX7YYBBkbVtX3nCiNo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ddeOs02TklyTU3pmfdTaJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "xeEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JhEjVrFwxs0Uy2lBICC0hw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "fuEX7YYByh-A-BiyG_LF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vPkmrOQ6ZSk1I3l40v9b2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xOEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fVBTPPapZUXmS1PYAOv-Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "WGcX7YYBO2e_P_QbHZuf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RTGr7Nm-Ia9juXQJ0VJo4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "yGcX7YYBO2e_P_QbHJcK"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_BHWrMWBlVU6-0DD2Kvl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "neEX7YYByh-A-BiyKfkD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OeVAEoxBlJnkJrF2AREsYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "utgX7YYBBkbVtX3nHTEc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HKZFXtQtwmpkJ4zu4auFBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "h2cX7YYBO2e_P_QbOrtJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["adkeyas3W26uFEzRKjKNyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "QOIX7YYByh-A-BiyPQgM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dncz0Y_So0i0vXWTX7iycA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "idgX7YYBBkbVtX3nPUb7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c7sDL1ZEUDJ12LHKKH-P_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "9eIX7YYByh-A-BiyOALn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["asewtAhw0ntqifC47rIgYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "yNgX7YYBBkbVtX3nOTqZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KiwE-vKZHKC3n7ALbEtWxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "IeIX7YYByh-A-BiyPQuP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AOFrzbtSbZoZPfOFvByqkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "a-IX7YYByh-A-BiyOwXV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["67VSY7gMnvXQykqHE0WxBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "gOIX7YYByh-A-BiyOAGi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cM0djH2TU0zlpYvTIkqfrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "PNgX7YYBBkbVtX3nPEVT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iiSoTtUS0Kv5axzY5mPeuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "PdgX7YYBBkbVtX3nPEVT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nsV16gz3SHNxrBEt4b7ZuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "tmcX7YYBO2e_P_QbOr_Z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rjTw1uwIATCPa-CkaMdjEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "GGcX7YYBO2e_P_QbS8o-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4fZ6VnX9iKRRH_O1UDOxJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "FeIX7YYByh-A-BiyTBx8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mnK-jqHbwNjcoomJsw59gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BuIX7YYByh-A-BiySRTi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LibGknFXAn9fd0n8hPZURw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} -{"create": {"_index": "profiling-events-all", "_id": "6uIX7YYByh-A-BiySBCO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n7QrrEicoQGmnUiZzNk-Kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "itgX7YYBBkbVtX3nSErh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A5T8gkmrKDulci1jhJCJaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "SGcX7YYBO2e_P_QbTM67"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gZcWJlRvTnEPU2SoN15zhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "0tgX7YYBBkbVtX3nTUyD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-y7rTRuLTj8cfBQbfYKy2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "6eIX7YYByh-A-BiySBCO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Rv7EKA4ajQNDDg6Um4OsSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BOIX7YYByh-A-BiySRTi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YFcmZLo-GvC7WdK5tCotfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "DuIX7YYByh-A-BiyShe9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X1aHc6VUJ_Ut6oMpk8MSqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "09gX7YYBBkbVtX3nTUyD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pv_Z9wfk0AjOJ6dIHemB0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "dGcX7YYBO2e_P_QbS8t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ui68wyUVCJcxQ5nqpWzN1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "F2cX7YYBO2e_P_QbTdAJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iWRinu91wuOHnxKN19PJZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "nWcX7YYBO2e_P_QbSsgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Lbp6GnC_9KEun0KEyhcfUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "0dgX7YYBBkbVtX3nTUyD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zQindYwMtv8QD8UZS8rDBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "KeIX7YYByh-A-BiyWyN4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vdmPYvdso3nyHwU3P-BxHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "huIX7YYByh-A-BiyWyEq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mDMvsWlBM76O6KXIRi4tEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "t2cX7YYBO2e_P_QbXN28"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U-BNILa1SCuDbNciG6XDXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "hGcX7YYBO2e_P_QbXuFm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FaKFPVNiFZEijjndTiCFKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "QmcX7YYBO2e_P_Qbe_U-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FN7nwOP7JnV5VSJaq0yJcQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "6dgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MrYyGRfOREUeHSMqF3-gkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "69gX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WwPr2gilYMTlY-ITJ8otdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8dgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["02VDgFkdOKpFXV3fa5Mfsg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9tgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ieam7bsdu72j_HX7vKzkDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Q-IX7YYByh-A-BiyeDlq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w4AKEYruYsyRiuNl0wOumw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "XeIX7YYByh-A-BiyfDoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W4eaTfNJQRBDVqF5v5x57A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "PtgX7YYBBkbVtX3nenT7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pWn_IRU-j_6Nwh-gfuAqfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "tuIX7YYByh-A-BiyfD3Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x92QEPdFkYeW4x8Mit4TyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "9mcX7YYBO2e_P_QbeO6k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "9NgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ndFy9pak9l2ciS-LEs5_3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LOIX7YYByh-A-BiyhkDE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P6G78bo1y5OAViRPCWI9Fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "4NgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lN0VQOhN39IOJVND--OWWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "4dgX7YYBBkbVtX3ni4Pc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cELS3s9xDUsfqdE_Tc5Ajw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "keIX7YYByh-A-BiyiUZS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5PXpBtV4iL5Ov3ZyHXzrqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "lWcX7YYBO2e_P_Qbh_zn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JP-P1F5zqFUSH3g3y80Xwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "UGcX7YYBO2e_P_QbiP47"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BdKIIeru3ccMM47Vmx2rwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "yNgX7YYBBkbVtX3niHnT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fEKLjZ39jYfvxgEfDDOtIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "3WcX7YYBO2e_P_Qbif8Q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kfHsP1mW7mP6jtkOBG2aew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "QdgX7YYBBkbVtX3ni4AA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XXVig9Ie3HmFHZwzuss1kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "8dgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wS-0A4EIVIssr7OiOYGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "8NgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["myjdfdwRKOn6W5NX1Bn-1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "3dgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rqpy0rD1vTLq37Y_TBiX2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "8tgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "buIX7YYByh-A-Biyi0uU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IPIMyWIkL5MsP1Bo20O32w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "32cX7YYBO2e_P_Qbif8Q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V-CMkHxQqgsYZTwaLT0AEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "ZdgX7YYBBkbVtX3npo-z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TtLtDTr58CzaWDA4qlaTmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "stgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S8MXm0YWnV7NY7lXJUOOog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "s9gX7YYBBkbVtX3np5HZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lxliPpP77L7i9KCpXsSmXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "buIX7YYByh-A-BiyqGFv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SLcvmdHWQs_SKMn3hTK4eQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ruIX7YYByh-A-Biym1t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zyeCF78Ljkj_liCk-aIaJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "stgX7YYBBkbVtX3nqJPE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2XYwJraBsCBYM0BQZOxBbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "XGgX7YYBO2e_P_Qbpxge"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uCc8HSZ3_tVtMqD6Q4eLtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "yOIX7YYByh-A-BiyqF8h"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JhzC993A9_3n4z0mG1o_nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "o-IX7YYByh-A-BiynF0B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I6emm7QMCp3MTtFFeDRa6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "XmgX7YYBO2e_P_QbnBJG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hGrtOHZgxPff7dF8x4aKsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "X2gX7YYBO2e_P_QbnBJG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T037yNb7uXswtCEJqGAhHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "xmgX7YYBO2e_P_QbnBXZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hpyllfzpp8_nbwc9QqhNUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "yGgX7YYBO2e_P_QbnBXZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HZ_JeS7wNexqGcIiik5z6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "qtgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dUDRhU6l3_2B1svNu-m4OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "XWgX7YYBO2e_P_QbnBJG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ymCCYcwH_madRuyjsHk5Mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "KWgX7YYBO2e_P_QbnBSM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mNHTiM_I_yOcvPLX_jE4VQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "b-IX7YYByh-A-BiymlgR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mebu14j6JQPo9D_c1nbUiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "H-IX7YYByh-A-Biymlrf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mRqni2HGLC5qImss9JsUdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "X2gX7YYBO2e_P_Qbpxge"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iNwZltOIYGIMPbPaWa-8GQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "sdgX7YYBBkbVtX3nqJPE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rSr_eB05hnLSYA4C6q23LQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "pOIX7YYByh-A-BiynF0B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["spFZMKZslqx7eLmYXiBH-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "X-IX7YYByh-A-Biypl4D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AXSC7Ug5s-HSwYDMXe0_bQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "ItgX7YYBBkbVtX3nmo13"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["slEp0H_n8NXap1EwAwcqUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "mmgX7YYBO2e_P_QbphZT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["69ND-pArCGiPGEzmwahftg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "r-IX7YYByh-A-Biym1t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xzw5iVxHgzqrkDAJ9WwC1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "q9gX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b24SYdtkbKZNKbXUua9QEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "TdgX7YYBBkbVtX3nuKdo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["73zzSG8Oeil4xVlA4Fb1Bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "gtgX7YYBBkbVtX3nt6R3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OFYcBHyJD4Mumr7Mh7SCEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "n-IX7YYByh-A-Biyum7A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nNScNuSTrpa5-8cxBl8OiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "MWgX7YYBO2e_P_QbtSOl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ELGYYB5yptbs2J-FWT6xOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "B2gX7YYBO2e_P_QbtSXs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["APioPA6bDIYwGq2IbkrzMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LNgX7YYBBkbVtX3nua7-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["olGExzlNnh_tZyTGOfUK4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "HOIX7YYByh-A-BiyuGot"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L5h2Klu_Zrlmt_s7mEC_fA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "udgX7YYBBkbVtX3nuKip"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DnkK77oJ5OEGMcCjv0REHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "e9gX7YYBBkbVtX3nuay9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tSmYASezZL-7l2EICLQFkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} -{"create": {"_index": "profiling-events-all", "_id": "OtgX7YYBBkbVtX3nu7Ec"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mpjzTZhXzUC8aYg4OfeyGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} -{"create": {"_index": "profiling-events-all", "_id": "YNgX7YYBBkbVtX3ntqGz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pp4DRoolWQ68gC0mJ3Fd4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "t2gX7YYBO2e_P_Qbtynt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ycogR2C1hH5eXGjaW9oPeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "YdgX7YYBBkbVtX3ntqGz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4T9YWo_AUvk6BjQe3pJjFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "6NgX7YYBBkbVtX3nt6W3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HTwNGIG-KZHMdnRtNZB5Xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "m2gX7YYBO2e_P_QbuSt5"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MnWo91SdXvpnkjVUdYM0rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "nGgX7YYBO2e_P_QbuSt5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pHFN0qaDz6OHVNs6LDyfew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "oOIX7YYByh-A-Biyum7A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0KW_YB1xCjsP8IMGIq3y3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "jOIX7YYByh-A-BiyuGvz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pgb9JoAUQxoSCvdXn7xEkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "xtgX7YYBBkbVtX3nuq9-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RsVBVY52cTTp5FCtYm6r4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "heIX7YYByh-A-BiyxXHD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NHMC3YByz5PUd8-9hJAYRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_tgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHDH56Gg_3eKY-7t_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BdgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qIbdzZ8tB4OMM3huzZH7DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "idgX7YYBBkbVtX3nybor"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KxMpHytF7kd-rarpM4w5Fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5dgX7YYBBkbVtX3nyr5a"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Et5sNZhAoszUicKSkeO_ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "AtgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GvHv11zqYBw9Vq56J4GXwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "nGgX7YYBO2e_P_Qbyjma"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hc391qiEl23bWsvU8MIb2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "AdgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w_qNnBzYsJ58t8YL4ziO_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "_NgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9zfvytpYavwLxYksfHEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "BtgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vIzLPwNwvusWrF-AAIfmqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "LeIX7YYByh-A-BiyyXdn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kaySmFbhcfXoELn4EdRoeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "BNgX7YYBBkbVtX3n5coI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bYOa3wUBO_fHKJp5WGlbmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "G2gX7YYBO2e_P_Qb51U6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fzu_bSULZtVzZW5-F-QApQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "V9gX7YYBBkbVtX3n5c3Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5oS51f0z7QyabKQzOu2RYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BuIX7YYByh-A-Biy5oju"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PgTdyJ7xx8fAccK2NtQowQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "lOIX7YYByh-A-Biy6IkE"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c6oJOlriSsxoHCj15KtT0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9dgX7YYBBkbVtX3n6tVt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DU3pAewxbbLyFetX4pmrVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "99gX7YYBBkbVtX3n6tVt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Hyfp1vfnvOTkKMqmQpUQgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} -{"create": {"_index": "profiling-events-all", "_id": "aNgX7YYBBkbVtX3n6dRk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EyPwNPIcZxBA4fL24xAk6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "tuIX7YYByh-A-Biy5oRq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agxJ4qtH42heXKOg02CiKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "593778632422369"} -{"create": {"_index": "profiling-events-all", "_id": "r9gX7YYBBkbVtX3n5ctL"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "adgX7YYBBkbVtX3n6dRk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WXat65Sd_FSb3q_O_39_OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "U9gX7YYBBkbVtX3n9uDe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KF5ebpo2QysWAQEhhpRt1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "JtgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M8PQiFj2pfLsH3aiHHnZSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9eIX7YYByh-A-Biy95jl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6iO15jj0vZmOpf_lsLTSaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "pGgX7YYBO2e_P_Qb-WKP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RNnxxsIO5dQ0UMCgK8G4sA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "6uIX7YYByh-A-Biy9JDf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WZxBtZLIjgWi7iyuWzr-iQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8mgX7YYBO2e_P_Qb9V0w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7UUpVBUGNxt4Ms0zx7knOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ptgX7YYBBkbVtX3n9t6f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z1ah3dkQRTcpWCEydc1lfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ceIX7YYByh-A-Biy95dm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ess3oHhLNEi0m2JAz0_5DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "qdgX7YYBBkbVtX3n9Ngk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["khaMzqn4jk0qmytmlLpK9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "rNgX7YYBBkbVtX3n9Ngk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pt09Zvf__ya1eNp2CoZNVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "6-IX7YYByh-A-Biy9JDf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HQ-3JYSn-GrIHbyFQdzdAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "qOIX7YYByh-A-Biy9ZKm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EK7FG-N0XT8ybJhJIv-IHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "ROIX7YYByh-A-Biy9ZTm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Qa_k6A40Yydkz_UFy6Z1_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "KdgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "K9gX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IO7igLUjHuSwhRGut0RlMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "VNgX7YYBBkbVtX3n9uDe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BPbVSqBHjmwe-nD9qiLIFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "VdgX7YYBBkbVtX3n9uDe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GpWKihnKGLWcQ6H8XP4Cdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "5tgX7YYBBkbVtX3n9-Eh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2aKzwMjw6-zxCFb-O-8vkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "UNgX7YYBBkbVtX3n-ONq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Rhx-kyzSwrzzbVrVZ_XCyg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "eeIX7YYByh-A-Biy-Jux"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pf-Heq8cDrQxCCAzjzKdYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "R-IX7YYByh-A-Biy9ZTm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GabuPwfXa70OHQ02xp-bDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} -{"create": {"_index": "profiling-events-all", "_id": "8WgX7YYBO2e_P_Qb9V0w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ETlNSw_6vrTcv4HXKtYlKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "p-IX7YYByh-A-Biy9ZKm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RNwCIBshkIMvUtAdsIyUXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "168532957631583"} -{"create": {"_index": "profiling-events-all", "_id": "YWgX7YYBO2e_P_Qb91-r"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yEoFm5-7Ri3zCUzV2d985Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "TdgX7YYBBkbVtX3n-ONq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2MnN4qpG46YaqtSyYvWn0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "euIX7YYByh-A-Biy-Jux"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JLHzPwzEV5rRN9RuEzoMPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "5dgX7YYBBkbVtX3n-eZU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1tQ4s1_uuQscYA1lUCsKxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "ItgX7YYBBkbVtX3n9Npj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_FNO79a5C7cHLejvYdQS3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "TtgX7YYBBkbVtX3n-ONq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["epmApGucYGosaiNqgwoK4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "KNgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "i9gY7YYBBkbVtX3nFvdC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "iGgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7NvWJH6Vo-unjJv4pudacA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "dWgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YFJedgXKyIDWLxlCPDwfQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "bmgY7YYBO2e_P_QbFHAh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rHXidrM7meN_QI4wKNJ_Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "d2gY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "hWgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-89SlyV8Cy-1WAJzSWKJpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "32gY7YYBO2e_P_QbGHgM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K9LDD5AZV4XmqBf_IoPXlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "L-IY7YYByh-A-BiyE6qn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-BJw7BDfkkLGBaeu3mTtJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "cWgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qy63CZwa2X4_cMyWGg3_fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} -{"create": {"_index": "profiling-events-all", "_id": "GGgY7YYBO2e_P_QbFXK-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Ps4eXe9gyP0W0fZFsyk6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "907195111575642"} -{"create": {"_index": "profiling-events-all", "_id": "--IY7YYByh-A-BiyF7M-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GXfd-67U3kWd07TLbZUnXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "dGgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7rYDHDMd68AxfAV4sQDwaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "udkY7YYBBkbVtX3nJgIl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dncz0Y_So0i0vXWTX7iycA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "1uIY7YYByh-A-BiyJ8jR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rMpzXndoIcEiY0-GRAGnyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "2uIY7YYByh-A-BiyJ8jR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sczC8NZ4ijZkOgrx_9LW8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "VWgY7YYBO2e_P_QbI30D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o5XCCyw1sj3cwxEJr3r3pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "muIY7YYByh-A-BiyI7hA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pixjUDno8EQPnhCn1ap_SQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Y-IY7YYByh-A-BiyKMoI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-89SlyV8Cy-1WAJzSWKJpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "b-IY7YYByh-A-BiyJsRk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "N-IY7YYByh-A-BiyKMx-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-77tqpe6hKMIrwkkHYgFFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "xeIY7YYByh-A-BiyJL_0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QbcK_gbMTYuvwl_FoMECaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "K9kY7YYBBkbVtX3nJQGU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8MaChZnl-rNfGFkTRfl_iA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "6-IY7YYByh-A-BiyJsXZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VoEfCO4MusB_VsJY8Q8iKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "Z-IY7YYByh-A-BiyJ8dT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HYzllkhJBtq1_HQGHScByA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "G9kY7YYBBkbVtX3nNAgf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l02Tu6tzBSE8eTIc8ew_RQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "wWgY7YYBO2e_P_QbQpW8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SUZ7CA7sE1ISr8T76gz0pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9mgY7YYBO2e_P_QbNYme"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "guIY7YYByh-A-BiyNtki"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j3fPwb3ArZvn7Z7I5e1B3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "w2gY7YYBO2e_P_QbQpW8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dhc8TGgYU9zTniCUbRsImw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "u-IY7YYByh-A-BiyONo2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D_W7lWj5puMsPDS-FaHcww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} -{"create": {"_index": "profiling-events-all", "_id": "HdkY7YYBBkbVtX3nNAgf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nb8JnNS4P-YTnEEC4c_iFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "711845992008202"} -{"create": {"_index": "profiling-events-all", "_id": "1uIY7YYByh-A-BiyNNZi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o5mBEpaSnzHuLLvoimyigA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "KmgY7YYBO2e_P_QbNYgr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a5-obKRYvJiw7VDkIkKBqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xGgY7YYBO2e_P_QbQpW8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_NBZhL-VXv-Q6LRQmOUyNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8mgY7YYBO2e_P_QbNoxr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xQ24QHkRlAYtTjdJ6daIzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "SWgY7YYBO2e_P_QbOJVz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Apktul3cj6NpEbhKyTyUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GeIY7YYByh-A-BiyQttA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uPfQx41sGpWXSF6wjd1f8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xWgY7YYBO2e_P_QbQpW8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "1eIY7YYByh-A-BiyNNZi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aCYKHhebiJ9jpDR5JQOfqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "dtkY7YYBBkbVtX3nNgnQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UZVNKPpjh_ukvtZTR8SkKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "XdkY7YYBBkbVtX3nQwsG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9LOuDoi5esCx_k0gisuwsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "xeIY7YYByh-A-BiyQtx5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["97LYjag2U--dwlPedhKFsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "umgY7YYBO2e_P_QbV7Dp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kz2jgY6jyGc0z6njue6m7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5NkY7YYBBkbVtX3nVBpn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0UeOgQYKC7zcrsZ5ZxtGIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "P9kY7YYBBkbVtX3nUhWB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XecKyHj9SENWU--AxSqY-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "hNkY7YYBBkbVtX3nVyEZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uHTQGYxyOTYnqxyDJdTj2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "69kY7YYBBkbVtX3nUxhO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qcrgeMf65aey4TtBdOxT8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "veIY7YYByh-A-BiyU-6O"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mfdo9N1VvIQt_V4_UKPs_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "KGgY7YYBO2e_P_QbZb97"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pl4gIyM-ZJ0uHaZ1UHaSeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} -{"create": {"_index": "profiling-events-all", "_id": "DdkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AN24Ay2FFm6R_uskGlbDvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "K2gY7YYBO2e_P_QbZb97"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5ddNwsq9oH1jvVfHsja-nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "K9kY7YYBBkbVtX3ncS0m"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2L91SyJLMmUa3HpOOsZXbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LdkY7YYBBkbVtX3ncS0m"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tT2A_bCpClAyR0rNtUXbYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "U9kY7YYBBkbVtX3nZCoi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zUInPt-LD-WhkBhzuV68pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "VNkY7YYBBkbVtX3nZCoi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qChF1b-F4ZHuRR8vMI_y5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5uIY7YYByh-A-BiyZPvI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bMR3cLNESeD0GrHLhW-oYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "oGgY7YYBO2e_P_QbY7hd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HQFX_6tqgj5N1dAyiK5_bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "KGgY7YYBO2e_P_QbccS0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cO9htV71m7HNbsVXnS974g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "1GgY7YYBO2e_P_QbcsmS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-iLOmSM0bOvxtv9W5h6VXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "n2gY7YYBO2e_P_QbY7hd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t1xfFBeH5Fl1K12J5A31pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "6GgY7YYBO2e_P_QbY7m_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2p1e_ByfhPk84t_WqyZsxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "m9kY7YYBBkbVtX3nZCuT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bV7P2mLAotscMMHsjhqrPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "nNkY7YYBBkbVtX3nZCuT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LtZuBt3l0YoQy2lVtYcCNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "i2gY7YYBO2e_P_QbZcCt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S5e4O7lBx37gz0fcZIzqtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "zNkY7YYBBkbVtX3nZSze"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pczYn9bA4SlIUvF6oLM4Gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "ztkY7YYBBkbVtX3nZSze"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SWnMQRi9b6sdpiIXZr2J-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "L9kY7YYBBkbVtX3ncS0m"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ng7Kn6I7osQY62ITDyHvMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "AmgY7YYBO2e_P_QbcsYD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ducvofyrwFEKpejeDz6ZEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "nGgY7YYBO2e_P_QbY7hd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x40XXgRvsC7DRm_EiCrdLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "nWgY7YYBO2e_P_QbY7hd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["39C59YAEETP8fgJkvRsitg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "FNkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pCGmghmQMI3e0JNfZpz8pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} -{"create": {"_index": "profiling-events-all", "_id": "2mgY7YYBO2e_P_QbcsdE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ESbYg3aZAaH86uOl-CijNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "UdkY7YYBBkbVtX3nZCoi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aP6GIsw4ofWcnUGlBduuVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "22gY7YYBO2e_P_QbcsdE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Em3twIsXXSYKKY9obJCgGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "omgY7YYBO2e_P_QbY7hd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gAG1HMhOOlK-azE89-mC-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "DtkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XFK_K9iyGPWt-RXiomayjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "EuIY7YYByh-A-BiyZf0D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mu3LxyO4KAp-wuV_ZLnj9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "5-IY7YYByh-A-BiyZPvI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wkNFgmgAHEeZwvM9ZbPDWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "HdkY7YYBBkbVtX3ngUGP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eU8ia1QG3CJz_p9ALXHslA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ROMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hbFdZ00lApIoSJEOlowBQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "SOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-WgY7YYBO2e_P_Qbhdgp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2oY1qTWIwDNkXOF0PagdBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "R-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EhmE1DErCIwAQObQqIf2Fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "U-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EG9jBmB3lh64ME0jyCkfBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "3eMY7YYByh-A-BiyhBDs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NZH6uNdKRM0PBr1CbdPUbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "VuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4Fi4uj8_8j0Q94aQJWSzrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "UeMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["epUUcKloArUaO4HmSd6-0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "TWgY7YYBO2e_P_QbgNH_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_eN577uJw5hksIBqBf1iCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "T-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tDdgTWNJfepwn2J7xetthA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "VOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UOeWC8fAGloWbHEYVuqcaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "RuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JF-bEOX20dA6FrlaQoCfyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "lWgY7YYBO2e_P_QbkeIU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I5V2d7T-ngpDaQd5S4eJBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "vuMY7YYByh-A-Biykxdq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D17V2ZvopmhLBd7dZ3Y1BA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "N2gY7YYBO2e_P_Qbk-uk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k1TJV5J17869y08LRTIrbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "GtkY7YYBBkbVtX3nlFSh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5herarFi58uky2CNY5OarQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "GWgY7YYBO2e_P_QbkN5i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UL06CNiVyxEFpIouFPRx3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "6mgY7YYBO2e_P_QbkuQ0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k6Ao0lNSN-mIGSeq85ATfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "K2gY7YYBO2e_P_Qbk-gA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2j8VUArr_b9AewT6WEQL_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8mgY7YYBO2e_P_Qble4x"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qBgjikC2bNo6FIg5CEWcww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "aeMY7YYByh-A-Biykhac"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gbjQ3Y9_diPygyamcLKI4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "k2gY7YYBO2e_P_QbkeIU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3jx5ziVarO0rH_UBySTUCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "fdkY7YYBBkbVtX3nkU6M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vdmPYvdso3nyHwU3P-BxHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "y2gY7YYBO2e_P_QbkeNU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yVg35eksppyHad0lI1eXKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "ftkY7YYBBkbVtX3nkU6M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1o1T1TIStxTZj-e2WTNkwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "GGgY7YYBO2e_P_QbkN5i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QkZ15erAXl4_xxP-OSkyww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "M9kY7YYBBkbVtX3nlFIk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qsczIwhDc4-8PRo_Si-xGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "j-MY7YYByh-A-BiypicL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8QWlvovygGFcfE-e_CiKgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ttkY7YYBBkbVtX3nsnET"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v33eHkvIcwAV8Kdb6vad5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "itkY7YYBBkbVtX3nsnOa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-E3XQIukGGWcLnxv-RKlXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "luMY7YYByh-A-BiysCjE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["thKn-WCpUEzIzuV2FdOJxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "MuMY7YYByh-A-BiysSoN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jUHt5y4xbMsVQ2NY3U5mxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "TtkY7YYBBkbVtX3npWjG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5bQcQ0KEBggKnhUPDGb0jQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} -{"create": {"_index": "profiling-events-all", "_id": "MeMY7YYByh-A-BiysSoN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ty1oaaASyN0P9ADJQRlYBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "BdkY7YYBBkbVtX3nsGt1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rI5YB_X-7tV_Ivns4mBUGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "m-MY7YYByh-A-Biysi1P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "xWkY7YYBO2e_P_QbxBjA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BKLrtLNoy5ML86CG9IkqrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "o9kY7YYBBkbVtX3nwHt6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["raJRlHaX6wCTMJ3KEat5OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "711845992008202"} -{"create": {"_index": "profiling-events-all", "_id": "cGkY7YYBO2e_P_Qbvw38"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bZa8a_Yg4q8eagHioqnf0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8GkY7YYBO2e_P_QbwhLW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Msb5zTh45ugl6Rm8uu8cBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "vNkY7YYBBkbVtX3nwHk9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iV-DwRGSNVWP28e5KWrgaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "seMY7YYByh-A-BiywTh8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_0gKV2ZisrZ7u9Pxy3RvUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "ZuMY7YYByh-A-BiywjpO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V3E8ZRD3c2NXGI6JDwoBvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "D9kY7YYBBkbVtX3nw4Mt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iErvH58Jze4Jx0cV_htakA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "_NkY7YYBBkbVtX3nw4SF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3iF9md1hhA5lL3Jz0Fzo3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "o9kY7YYBBkbVtX3n3peC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["etP9qf40owgaYF723aNtWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "XdkY7YYBBkbVtX3n4Z_Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fMEGhVur8bO2mv1boqOVuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "m2kY7YYBO2e_P_Qb3yiB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OWYvN4elc_j6L7TTAYFNTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "mdkY7YYBBkbVtX3n35pG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w8DNqhKpZMDXQeydz4OxrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "AmkY7YYBO2e_P_Qb4CpI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AwxnuopW8nP4PdF2hl0d_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "2WkY7YYBO2e_P_Qb4S1Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t1xfFBeH5Fl1K12J5A31pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "hOMY7YYByh-A-Biy4E8H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c2STw5Dy59fyAI6ZtoR41g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "8WkY7YYBO2e_P_Qb8z_u"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BGkY7YYBO2e_P_Qb7zcM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CUGk5Rcar1NXFwPiGIQVJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "EdkY7YYBBkbVtX3n8Kqc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L2tnlnNGd85PzXoftF65LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "RmkY7YYBO2e_P_Qb8Tn-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4nXxkGYVgHbeGTI3oHepdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "0dkY7YYBBkbVtX3n7qNk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wu5Ui6X1wYCeANyAsyHaFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "atkY7YYBBkbVtX3n76eU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1Is6WKpq1rPgjROiY1ySbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "LmkY7YYBO2e_P_Qb8DhZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Nf56AYpKmfrZuf4mkXNDvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "EtkY7YYBBkbVtX3n8Kqc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RS8ti051V-zPvOk5r6Viqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "auMY7YYByh-A-Biy8WB6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q4P-bQgCFNgZRLoUhZxNlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "fNkY7YYBBkbVtX3n8ay8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5oIGtzRMmg2pbiJ9Og8Hog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "ftkY7YYBBkbVtX3n8ay8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "1GkY7YYBO2e_P_Qb8jzI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jIUkkqlhs_xaucQSfOkxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "vGkY7YYBO2e_P_Qb8z4T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vFkcrQtWCVTfQjjlGu2S_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "l9kY7YYBBkbVtX3n861d"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4NWbNOvcI2-WO4U1Dw4kVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "mNkY7YYBBkbVtX3n861d"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bjA-twM-arP4DofwAmuiCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "kdkY7YYBBkbVtX3n86-p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3cJve6GcDJQsWrYAyQs7-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "LeMY7YYByh-A-Biy8V8f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vsyWJacYf-Fc3uMhBCP2gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "nmkY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zcSEgSwv-OAVAhTXWGeqFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "pGkY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NLOhgxL61Nf_cs-ijqpzdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "uWkY7YYBO2e_P_Qb8z4T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZpjYqKFeza_P-0E6-9HQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "8mkY7YYBO2e_P_Qb8z_u"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Dj-O9jQmIE1I6VOFUdq8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "p2kY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9enMqDCvmYDJCBOe5Nxb-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "n2kY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j29xU2xGn45BT-0GH_GSjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "nNkZ7YYBBkbVtX3nAbtG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6VlRZTvCAGEjKAJI9WErGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "sNkZ7YYBBkbVtX3nAb2C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CWudsqc4YRwwO2UAdX1LxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9NkZ7YYBBkbVtX3nALZa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "QWkZ7YYBO2e_P_QbAUXL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["62iN7sDVKIBNfUxfmQdZvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-dkZ7YYBBkbVtX3nAr6P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hA0aNZ7KwEp2Q70t1DnO8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LeMZ7YYByh-A-BiyA20X"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_DXIIIPmnKg43Vr19XmVJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "LuMZ7YYByh-A-BiyA20X"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["spFZMKZslqx7eLmYXiBH-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "0GkZ7YYBO2e_P_QbA0mU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "OtkY7YYBBkbVtX3n_rPy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q7XAR2zqlv3Nkd1rHK-fsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "jtkZ7YYBBkbVtX3nALic"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "4OMZ7YYByh-A-BiyA25V"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z1K4WqC6eykbHpG2pCP39Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "JuMZ7YYByh-A-BiyIpJU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "bmkZ7YYBO2e_P_QbImDZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j5wAfaxsqFHmGRlT9DISZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "k2kZ7YYBO2e_P_QbHVZZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AG_6FvO14ax3UdwVieto8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ydkZ7YYBBkbVtX3nIM9b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WDhZREc9K0ZHjA0h4NDJhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "R2kZ7YYBO2e_P_QbHVji"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ofBPwIIjkbSYwPiBTq9MQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "OeMZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3gm_ZN3iF76tH1hRk5YEPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-uMZ7YYByh-A-BiyHoO_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n8J0DIbyYxslBat-_GGskw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "PeMZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3wY3n6ZuFWe08ye_NO9bMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "QeMZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5XgTaHt-dAo8vDgnzZy0dA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "1OMZ7YYByh-A-BiyIIiV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pOL7hTlazWG39CR6gZV56w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "o2kZ7YYBO2e_P_QbIV77"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_AVql7KXMLg1O-JULbNgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "JOMZ7YYByh-A-BiyIpJU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qD_J237PVcJWQeJzWEaj4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "b2kZ7YYBO2e_P_QbImDZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Os-4RhVkjeRwXnMgi8sCPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "NuMZ7YYByh-A-BiyIY5d"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["caBHj7BnRD7P-V0_GNLChg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} -{"create": {"_index": "profiling-events-all", "_id": "A2kZ7YYBO2e_P_QbHVUE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jsv-D1yBcc_Oezz_dC64fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "OuMZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L2tnlnNGd85PzXoftF65LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "lGkZ7YYBO2e_P_QbHVZZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LaQK44tICLO4ljAwiqTd8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "ydkZ7YYBBkbVtX3nHcyi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yj80EbH9E-W_Q5ntbWTS-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "JNkZ7YYBBkbVtX3nItGe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DyoYwzb-7gOf1fSN1_ar0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "AmkZ7YYBO2e_P_QbHVUE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZnqYkX8N3cXlE52NykkcUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "190932526140742"} -{"create": {"_index": "profiling-events-all", "_id": "lGkZ7YYBO2e_P_QbMHDd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PaAhGTZhdMpehXmqOre8TQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "S2kZ7YYBO2e_P_QbMXJP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MnrTN3oNHBWQmiPNUfJdZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "PmkZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rHXidrM7meN_QI4wKNJ_Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "NmkZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iUnfb2tG1dlb7pOItjVV-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "a2kZ7YYBO2e_P_QbL2zC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["akH3OgREzKvOjMJueUVNqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "D-MZ7YYByh-A-BiyMJmk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d_qVPV2mnUzJdVUKzin8SA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "NWkZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "_t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u15yh22vXEfk9m8DTVYjBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "I98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ewzp1cQUgnGEhjhPWmAuYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "fGUU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9pkEB28Fu_-6ScaHtKhZrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "598U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0KTuXhL53Ud6Yv9U2lJ-uQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "798U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zI9JvucnvxyxLZyzixdcpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Ct8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wPMMl0ctYrNZIQpMrKFAHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "M98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QCh5sHgROUyQz6UM1BRbJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "DGUU7YYBO2e_P_Qbvp4b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HylmGygzkKByc907Hb1zHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Q9YU7YYBBkbVtX3nuwHT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C8RiWN9GOAWu10jfv-Iilw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "e98U7YYByh-A-Biyvcco"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ijzowidHYpe6-vKJVUy8nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "eGUU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uWH1YJMiRNhCnBrl6NfCMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "DN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eqelKqbeHiTw1Jlw68liwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "Gt8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sWUvdmC1yhMffRymX3J_5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} -{"create": {"_index": "profiling-events-all", "_id": "2d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5P_TKhYwLk13iojfv7McxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bmEkpLRxJcoyFpwchxMFpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "L98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nbSM4WjFbrCVZaZdfPqVTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ON8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V3FpOTUk7je6uP4mlCqmkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LtYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iu2XyIi4FVCIJrDGecefmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "d2UU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["81I56QjbyDYSIFcetHM2Dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "D98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bo6NdGV8GXHmalbT9Hz3Eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Nd8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_zNN2R6gCnlCmrGYYAK4_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "NNYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EYN09YTQJzILDrRVzDD1TQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ut8U7YYByh-A-Biyyc_A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BHEo7QGhrwJZN1gfWBJvpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "f2UU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B70CGF1Zyq8tOnSlg6wrvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "198U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GSSm9zDDOmvcEwNipfzOIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "4d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dYH5SpsYYEui3Y6WMr108A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "Bd8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fapb056I2fVdN7OPGzRPEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "Ft8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [3], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "IN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XJXvcRJSTv0fetUhCxNrHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "F98U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dSWElYBhPnO8A6dUDGPqZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "4d8U7YYByh-A-BiyyM0P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7W9hedogOVjTIlC7EFh1sA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "N9YU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-wKVKRY5ojzt2TA4h8awoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "e2UU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uFGWThWg3zgxDL3xxQAwYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "nt8U7YYByh-A-BiyusTM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OGDDHXE1D8GrXVwGCFBYtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "9t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "_N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yfHwdMgNnjjToBF0X-5h8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "FWUU7YYBO2e_P_QbvZyb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X_YaGHyTQP12JNwJEIiAfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} -{"create": {"_index": "profiling-events-all", "_id": "42UU7YYBO2e_P_QbwKIN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UHAJjYcGydH1wr7a4b6sRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} -{"create": {"_index": "profiling-events-all", "_id": "7t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F2xDW96B93CXTxJUyPdwXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} -{"create": {"_index": "profiling-events-all", "_id": "9N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MWvxOIZDGq4hR0RiTlBjWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} -{"create": {"_index": "profiling-events-all", "_id": "G98U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oXw1ozfUuFf-QgxGHiD6zA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} -{"create": {"_index": "profiling-events-all", "_id": "1N8U7YYByh-A-Biy2eKG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R_4atfXLBslE1IWQAx5zAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "d98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iLTslrGORIyXKfkvn0rVCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Ld8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eFeV1BctdgGmKhHEdAax5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "YN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FvVELYKd9mRXwxXR-cNS1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "dd8U7YYByh-A-Biy3edS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UyfEXTPwOxcT1_g30PZ4bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "yNYU7YYBBkbVtX3n1xTG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S5QxSgtn_YPXxJ3jCeAVHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "571288167487052"} -{"create": {"_index": "profiling-events-all", "_id": "cNYU7YYBBkbVtX3n2BjO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MnHzRqCV09wC0f_3_YNq7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "0d8U7YYByh-A-Biy2eKG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eIiWRPbXZKuww0eQLj2S1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "WtYU7YYBBkbVtX3n2hx_"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_j480Qg9v5TNK0lQGeFwAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "k9YU7YYBBkbVtX3n2h7w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8AqERkmGja0aVhFHauF_yw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "1d8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aMeqW0QxLpn1TpYZf4XBMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "V98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8vj8M1UtdEZK08xJh31zdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "Xt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7ppDlnMd3xFqbVJBXCzI3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "Y98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GSPW9ejYGoryJizaJVvA_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "ad8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "ct8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2eTVIIJLC47DBl1ATsTawg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "fN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PYBUfV4nZR3PAgyIKhIwDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "r98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Faz4zgOreVW0ypNL1btnNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "I9YU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WZ-D2nB7GiIQ9IS_G8xApA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ktYU7YYBBkbVtX3n2h7w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DsctT-_nwdHL3iCwXEsMsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "0t8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bihc1FtLJWO9OKz_9ub0mw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "62UU7YYBO2e_P_Qb3L3V"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PWgvP1t7oB9ALOV1YcECow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Vd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S64TDAyJLSWTBaPN1VT2qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "X98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CM3wI_wNpbRDHBz8scMkcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "bd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k9vLKRFLFVoj2RZU6JVbBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "dt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9GEtZihsTZTLRmEEEBupXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "g98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rBcz46AS-WiFNbV2tPSIUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "wN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KaCen5lChBQlFEf5iOW4fQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "0d8U7YYByh-A-Biy3enR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3PFZFr9561-fHgGNeWX0Gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "x9YU7YYBBkbVtX3n1xTG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eGK7xB80q6I8iYxZSFEE1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "IdYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2BsosH4qrHldN8GgKmd2MA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "7GUU7YYBO2e_P_Qb3L3V"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bCqkpCznSihZhI5AqtWxgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ed8U7YYByh-A-Biy3edS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mbOVGyx5XatnK0SRKgRKUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "hN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FSB68hM0SvGoIwFSJoj9uQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "lN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jvc_WE7B1F8hMVB_gxFucA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "cdYU7YYBBkbVtX3n2BjO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SnDCdYihCB3VPX-yxBkTjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "2N8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JrMhbMTHmXqZZAz4xxL86g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "kN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LGVygn6s_9pflNC3YeaZkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "aWUU7YYBO2e_P_Qb27nE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lxizPGq-ZlOtsos_BMUvJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "Yd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VaGG1TY-seWlRMIXhOJNsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "503617803902968"} -{"create": {"_index": "profiling-events-all", "_id": "l98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sJC4CV2eRcloTSQEGQH29Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "gN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6QhkBtx7gvljSIZUeTjHcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "907195111575642"} -{"create": {"_index": "profiling-events-all", "_id": "XtYU7YYBBkbVtX3n2hx_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["laLiuCpHKHuOVWhZk5dt9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "kdYU7YYBBkbVtX3n2h7w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LEWayJpRjxQq29QdLgh_nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "yd8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yZrBKxKhbw4I5T2D2ia0Hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "kd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7FDPiYnztHLh8lvlMFRyXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "a9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VaLam_KQiz8POCW3aoer2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "iNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wWKX-ZC2lOv6w1ALdddfTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "pNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mknpTKgXrVcTrP0y-Vu4pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "vNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zthyKuXsoA4KkwsS0PTltg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "w9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SOHLJ-nmGdCO3sK7plOv2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fq5gtNQfWd1unM0EZse4Zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "bNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AP03oXWkrXH194nvbfv1DA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "cdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H5q2tXxLE1d4iFM0ZRc45w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "gdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I5V2d7T-ngpDaQd5S4eJBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "idYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L9mej-PTu4SZGfpi083-2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "jNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Nr_8hMt7lL3ObaXhoWtKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "vdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B_1gf1EYUxn7EVvh7093Dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "wdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UOcKR6g40j0qNVOcPsBj4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "xdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["87tmMz7dkdhga3ssbWBSBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "xtYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EOO-biRc_oXEIgdrmE3Yfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "79YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JoGJrCEQ34-StmPNyR5q3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "WdYU7YYBBkbVtX3n7DJm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uh-jwsuxuUYFlAJ62euRwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "Cd8U7YYByh-A-Biy7P_G"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JbcOgGVzXu_Kl1MHENboNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "qtYU7YYBBkbVtX3n9jvb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cxsXzrG-rWhSkAffaeLL8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "g9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BfRadBAJgVIPCs4sRWRCsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "69YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LrLWZ5bevl0fyb8pVLrxUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "yNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jBxx8BsBrE-wbyWADe34bQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} -{"create": {"_index": "profiling-events-all", "_id": "dtYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mxx8ugWwWszTb7eJBegR_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "mdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IngmyqAhSupCs-_uuEXPtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "tNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FkuuK33tmpaBP6yN588PoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "y9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l-yGtc7ewbZgVN8gK10pTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IVe1z8n3OgBSXs9ZgYQTCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "IWUU7YYBO2e_P_Qb7s4B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fRgvmW6OzWfmn-P-AvBcnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "b9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ftyi07t9eEe9-e4ojBNJbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "jtYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nn_ySIHBlBRC_S__9EYUQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ndYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ihAOVqchKA5mXlZP4M1IsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "r9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XDv5HwoOhhJwuGtzx9aiqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "7NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PEL3jW6ozwuPYGESMGBbbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "7tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JCe68q68pLemWJDxvGUezA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["64Ux2oNdDZBBedmvlh2Jwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "rNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gJQSsgSapsp92rjPF1WFiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "ntYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uchiuLFbH0NhckqiyJoDow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "qNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Dqb1JZa6QuOKypgO1FUIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "ytYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TrAEEkzHCQIrkyMsb-wF4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "5NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mef8b6Ms_KB9BmHs5fEaQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "8dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MMNf5Flp1WG-AiF7Q4RJ_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "QuAU7YYByh-A-Biy9wH-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P_F4N85n6ygrRQ1ObfKSJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "s9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fgalSE7MGf2Y-ZRC0Xb24A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "wNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gf9T-ToUcXZ1fopG8bUaCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "UWUU7YYBO2e_P_Qb-NFi"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "meAV7YYByh-A-BiyDSFn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5QdX4ICkFiBy7z35tqsMeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "R2UV7YYBO2e_P_QbDOFC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gkXyNFDJDBzOyUtceexiUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ZuAV7YYByh-A-BiyCBR8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aMeqW0QxLpn1TpYZf4XBMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "p9YV7YYBBkbVtX3nClae"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5herarFi58uky2CNY5OarQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "SGUV7YYBO2e_P_QbDOFC"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K3Z7Bso8_acxSu6Vxdfbjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "FeAV7YYByh-A-BiyBxBv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GQHZ33M2r9CWZs0ylfnGiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "DtYV7YYBBkbVtX3nB1HM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kOsAFOokw3TMOocYazB7hA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LNYV7YYBBkbVtX3nCFPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SmKjrD7wsCsyGVvgvupg3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "duAV7YYByh-A-BiyCRh4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Org4Ct_UK1CJypQlyzN79g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "XuAV7YYByh-A-BiyChop"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NJLtoy2AIp4OF7edUsA8Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "qNYV7YYBBkbVtX3nClae"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fmIQ76zzVZ9EWAQ55W78zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "l-AV7YYByh-A-BiyDSFn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EM9AISJikuWZSi4uSs5f_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GOAV7YYByh-A-BiyBxBv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WGa9qjf8wQqVaf6Gdp-z_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "qdYV7YYBBkbVtX3nClae"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rp13JE-7UWo9J1PFiierKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} -{"create": {"_index": "profiling-events-all", "_id": "luAV7YYByh-A-BiyDSFn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8YnDoiutnFkCKfHN27NSuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "ZOAV7YYByh-A-BiyCBR8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dLtkTN9H0P9GQGUpxzaGrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "gtYV7YYBBkbVtX3nC1gN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YtVvdG2-K8RntFVkz8aZsg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "muAV7YYByh-A-BiyDSFn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dOsagAt-XXDxs5XGCBbstQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "OtYV7YYBBkbVtX3nC1r7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SHi_az7OQcBjeyPt41wowA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "95381405781962"} -{"create": {"_index": "profiling-events-all", "_id": "ctYV7YYBBkbVtX3nFmEP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L7NiiM2JcpyLYptGtnS-lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "aGUV7YYBO2e_P_QbGOeB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yG5lvQdywRfDEpDAMlDFjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "zGUV7YYBO2e_P_QbGuqP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Yc_2GTJ_IVPE7f4u8QXDeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} -{"create": {"_index": "profiling-events-all", "_id": "ztYV7YYBBkbVtX3nFmPF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JYl32o-03G4ABrH8cW9MlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "BWUV7YYBO2e_P_QbF-SC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F6v4xvUd6G7lflKiKXtLLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "xOAV7YYByh-A-BiyGCg0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "L-AV7YYByh-A-BiyHDPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g5lILDW4r2wlyzbt5lq7Iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "BmUV7YYBO2e_P_QbF-SC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MUbC0p7FbajtleTdDiK2wg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} -{"create": {"_index": "profiling-events-all", "_id": "xOAV7YYByh-A-BiyGSzz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-bsoNX49ITduR-HMxcIbsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "zdYV7YYBBkbVtX3nFmPF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JKuwq_wY-m6F_YLLdvsE3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "3tYV7YYBBkbVtX3nF2Us"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "rGUV7YYBO2e_P_QbF-XY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["99BgVVChjb4P4hAXrcSmGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "A2UV7YYBO2e_P_QbF-SC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oiCF7gS8wBa3SfipWqWdgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "yNYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BOn5YfVXLbYJVzgO0D8UNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "1tYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9IJobkCHFBtPShwAqokpow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "iuAV7YYByh-A-BiyNUTr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qb72Yobg_yLohYI9gpP09w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "4NYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mIzahuxkrhduKlDufHRVKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "0NYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pOKIXPSdx-N8wuoQB9U_bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "wtYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9XaUnPPtgxfYR4iOYVLS0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "w9YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ejCsmFBHwcIycmn6V3r8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "3tYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kAevgyPrUYMi1qMg2RT9YQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "6OAV7YYByh-A-BiyNkXi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wfVS4y4D58OSyaXvZj-XtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "w-AV7YYByh-A-BiyN0ck"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z4iiv5UxRhQpx3JPtDse_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "FeAV7YYByh-A-BiyK0C1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qwzw6oIfyawdflY_bB-eDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} -{"create": {"_index": "profiling-events-all", "_id": "x9YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z0qb5lnO7jV9ZiYyxxUpVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "0dYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sIn36_6lhKQc_bEzQgq03g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "5tYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8E3vSloXP4dGqDQFAfS1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "d2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zs0wdHAUro9OZHb7uDVC0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "f2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nZ8fRP549U0JQTjsBAy_jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "WeAV7YYByh-A-BiySFbi"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4YktLuYieY_qIn0-Svbtbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "ANYV7YYBBkbVtX3nSp3K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5yQFzmK6rVAYH_IWw9mY4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "TuAV7YYByh-A-BiyRE-k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OlDB0giXI1NsaTgwfP9dqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "cWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["96zUk00wJUkz6pqWJ4UVBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "eGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n7QBBvONqlianWpauyZWrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "bmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sSznj8DVFmJrz2nQyuMvVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "mmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LUbJKRt2QZB4MM480Ex81g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} -{"create": {"_index": "profiling-events-all", "_id": "kWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n0VugIogSoCuJazNruqmpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "lGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WD-Hox2mUf33ggVA1pZW3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Y2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0P5ZzCLXHvPtrKtxiUuFPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "dmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rtLWsf0bQDHrSMWDW9YU3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "eWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeLqMJxxpT2jsR6Xt4zqGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "iWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dpoKTK9LU4hKKEDZqArQ-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "lmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uf9UVmqLr0wj8jkOytmlgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "1WYV7YYBO2e_P_QbSQ9v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "3dYV7YYBBkbVtX3nTKQS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["56T0aIwgwSEUNL-7riuYkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "xtYV7YYBBkbVtX3nVKlD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NIUTQnmo7hmDvvAn77UZ1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "U9YV7YYBBkbVtX3nVa1D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["puIsGFT9D9ie7OaAMWkigA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "UtYV7YYBBkbVtX3nVa1D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mAgmPEf7EXxW53hQ-sKjJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} -{"create": {"_index": "profiling-events-all", "_id": "7tYV7YYBBkbVtX3nVq52"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JT_5OseDCbBwbh6-ei601g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "7dYV7YYBBkbVtX3nVq52"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3GU1_UWZYiKrKpJ3S0rF8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "F2YV7YYBO2e_P_QbVxih"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QBmlTSly2COGQg4tFf4YgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "OWYV7YYBO2e_P_QbWBy9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TwXoXWu14wnNism8hup1ig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-tYV7YYBBkbVtX3nW7rm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uV6WbBNOuHvs6QDcFyIEHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-2YV7YYBO2e_P_QbWR0q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JDfH1YIww9Sqd-S_w7NU1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "RNYV7YYBBkbVtX3nWrnf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["deEhfqa-GWkx1wr4iMz1nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "uOAV7YYByh-A-BiyWmE2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y7-fVN4a3INYDwPmaOS0Og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "mdYV7YYBBkbVtX3nWreQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ENrq2_MBwld_ERQVMIbQlA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "KeAV7YYByh-A-BiyWGBd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a7q9y6bl0FIQxuLqZqANIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "mNYV7YYBBkbVtX3nWreQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "B2YV7YYBO2e_P_QbWyI8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AUziHZelmRAq_ogGLsAghQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "4GYV7YYBO2e_P_QbWyOI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["07tFiGQvKlKEn8Vy4W9Sog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "9-AV7YYByh-A-BiyVFzv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XFK8oAGV_jR__SZWaQoiWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "-OAV7YYByh-A-BiyVFzv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MErld6wdBGLR2ab9ZWtH2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "uOAV7YYByh-A-BiyVV6i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "NtYV7YYBBkbVtX3ndcxm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sPAXeu9JRh62VS0TzctJEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "wmYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rh6dkbq8WqrY7XSMixfetg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "TtYV7YYBBkbVtX3ndtKj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Wa8MgBNSJuWvg6Zve7ROA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "tWYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RX6MWdoFei8k1kwyhzfnHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "vGYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6YWns3NF2PVmevxSMrfdSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "vmYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WwFWfRAxe9vNEiy3LvcKPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "y2YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iweYdmdhgZ2TexEvbTHmRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "heAV7YYByh-A-Biyd3Y6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3tj55kewRVSqh_hbiqeHsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "XeAV7YYByh-A-BiyaW45"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JKuwq_wY-m6F_YLLdvsE3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "wWYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "G-AV7YYByh-A-BiydHGD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6GIXZB_oqJtK4ZOCyzjV1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "VWYV7YYBO2e_P_Qbdz58"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lrXQOYdtT3nAkaFRyN7-0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "q9YV7YYBBkbVtX3naMS4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SJqbNgrSxDdoOACHB93N4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "wGYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fkclrml2poKZRsRiP2tUBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "xGYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AwchOulsOERDFXbfKPcBMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "yGYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "c-AV7YYByh-A-BiyhoV2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4qaZ4j35u_YBqQ5HnDB_oQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "7OAV7YYByh-A-BiyiIYF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ymje1CajexZF5hJ1bAbTlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "VOAV7YYByh-A-BiyiIjx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["99dRlWUAlFNw4L5T7yQdfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "QOAV7YYByh-A-BiyhIRV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CaYO4egGBij97PHY37LF3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "CtYV7YYBBkbVtX3nhNrA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oihk6v8OvTDdD6N0NY6YVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "UWYV7YYBO2e_P_Qbhkg5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jP--MF88HszSEEHJkdZMeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "QWYV7YYBO2e_P_QbiE9B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BDlisnvqa1LLQOmq1q0Eow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "3dYV7YYBBkbVtX3nieY3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0BKf-9CBUYklPmi5iCM1rw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "TGYV7YYBO2e_P_Qbh029"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NyrWdA_BddZBmB7vWwrYvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "f-AV7YYByh-A-BiyhIIL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7_opwU1mFxT0XU3A2dlAxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "SNYV7YYBBkbVtX3niOWG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nZ2BKRv9gSdaoFxQ-TzvPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "TWYV7YYBO2e_P_Qbh029"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E6UMSC7GLe9jd7t1ot1_kw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "U-AV7YYByh-A-BiyiIjx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Eakp9OVIhBxsZNnrdfGKYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "fuAV7YYByh-A-Biyo5MJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RhMJrUxrd57e6G7g2-PKcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "R2YV7YYBO2e_P_Qbol5k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_BHWrMWBlVU6-0DD2Kvl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9dYV7YYBBkbVtX3nmPyP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MLI30dzAv_XVLHnFXWzCzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "zmYV7YYBO2e_P_QbmV0u"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["it1M7ufrxHsYyi2peFanww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GNcV7YYBBkbVtX3npQJl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aLyOgMQu19TF5wLalqlvBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "707202532850088"} -{"create": {"_index": "profiling-events-all", "_id": "NtYV7YYBBkbVtX3nlvIq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["btxpNnU_e8R601EfodEE5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "0NYV7YYBBkbVtX3nl_dj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0pVn3RaIbpVhn8RviFIpJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "b2YV7YYBO2e_P_Qbo2DE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "adcV7YYBBkbVtX3nsgwF"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eFeV1BctdgGmKhHEdAax5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "MeAV7YYByh-A-Biyt6sa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fUnBrD_WzBp45WRRoNXPpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "VeAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uDNzqwFHdWL1Gt4wJdSyGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "B9cV7YYBBkbVtX3ntRYQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VRt6q5F3ckt_c8O1gwmSjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "2dcV7YYBBkbVtX3nsw-Q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PQ297jfrM7aOAB4-C3MH-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "I2YV7YYBO2e_P_Qbs23k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o02UcgaTacPmYjOwwPOCJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "UeAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R8qQ1EkUatykSwAEdlZfRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "VNcV7YYBBkbVtX3nsg5Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nON9RmBx4umF5B_Of_VNaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "2NcV7YYBBkbVtX3nsw-Q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ExUCp1oD4V2746Bz2cZdiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "9NcV7YYBBkbVtX3ntBEr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ojISZd3oQrHFv15BTiVAhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "VOAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pczYn9bA4SlIUvF6oLM4Gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "WeAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g-gvaAwuroQsfSOFcGq40g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "YOAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-uvhrHdtYBwaSTwW97ffvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "CNcV7YYBBkbVtX3ntRYQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fp8z5vGvSD0i9Ni8-EZ6jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "Y-AV7YYByh-A-BiytqnT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["48ZFJTNDYJpyOFN3X2WN0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "6dcV7YYBBkbVtX3ntxpc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I8foXFGiFUjsvoBc2tLNSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "yNcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeLqMJxxpT2jsR6Xt4zqGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "q2YV7YYBO2e_P_QbtW5b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NNgMPk_Aq5xW7b1t7OKA5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "V9cV7YYBBkbVtX3nsg5Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d31EKO2VF5LonJxrOu4FNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "0OAV7YYByh-A-Biytaeh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9eJFc1RqWTK4Nh5sHxlOdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "SNcV7YYBBkbVtX3nthkq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dZVhEMwoIzMGD6Fthzhnhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "iNcV7YYBBkbVtX3ntBPF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8giK6mKV7HDPF-jB4e6ajg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "iNcV7YYBBkbVtX3nuB51"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LKEaCr3J8DRAWmFUoWCNBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "fNcV7YYBBkbVtX3ntRfi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "4mYV7YYBO2e_P_Qbsmn3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KOMN7HDuAGD1N2A7P0t7vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "QGYV7YYBO2e_P_Qbxnnn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wlrbhXKEUrmfjLJYUMrELQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-OAV7YYByh-A-Biyxbvb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1uwRNa4999k1DkBivtvQiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "p-AV7YYByh-A-Biy08M-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E53CaCO64IW70sjHWzGHVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "D2YV7YYBO2e_P_Qb037f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mcFH-Ijp7M4Pm2g7nfowcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "kmYV7YYBO2e_P_QbxXYP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wZyq92-n1mREdjg_zgtpMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "wWYV7YYBO2e_P_Qbx3ol"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DBkis1--lWH-VTcyB6uwYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "gOAV7YYByh-A-Biy0b5D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["acVe45FNWlYgmO4nWQHN3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "qeAV7YYByh-A-Biy08M-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ihGJ_26t_QqommWWGt2AFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "qOAV7YYByh-A-Biy08M-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WJw6-5iVNJ-4mcsircvR6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} -{"create": {"_index": "profiling-events-all", "_id": "ZdcV7YYBBkbVtX3nxSih"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kZ_bArkiIPRSWu3KZBADQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "L-AV7YYByh-A-Biyxr4p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YYYi3p87Qv-d-cNhljrsYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "nGYV7YYBO2e_P_Qb0nzr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZGUB8nd8sv9Or-VM0Kjm3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-eAV7YYByh-A-Biyxbvb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UcSfB9O7oaCsfgTNqnRSmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "QuAV7YYByh-A-Biy1MfN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pUot7h45U8B9b9S1T5stzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "7mYV7YYBO2e_P_Qbxnew"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1QT_0k1qSEqNIoe2v3zsJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "Y9cV7YYBBkbVtX3n0iyh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IuR7KAGunHdUgixJ44Kh9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "ZNcV7YYBBkbVtX3n0iyh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h78omCSCOG8EoQ0xkchTYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "BNcV7YYBBkbVtX3nxSdX"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C8mRMx1StXr0LAO6ji3Y2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "JOAV7YYByh-A-Biy0cDF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "JeAV7YYByh-A-Biy0cDF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UpG4HUjCnzDBM_w7fbVK2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "aNcV7YYBBkbVtX3n5EbR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vB8t8x7qJssFpC43ts9N9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "XuAV7YYByh-A-Biy5t9l"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7V6aRLUSfKlOcOf1w7yKYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "pOAV7YYByh-A-Biy5dxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v3ZqEBwfD7Kct76Q2Ha5ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "tuAV7YYByh-A-Biy4dbn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0e7BwxOo44d7lCUy997IJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "INcV7YYBBkbVtX3n40O7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3jx5ziVarO0rH_UBySTUCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "wdcV7YYBBkbVtX3n5EQ_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1azdmus8MOaCZZsOVGC4Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "gNcV7YYBBkbVtX3n4Two"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UDdkGUkVb5eesXaBvqvyqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "s9cV7YYBBkbVtX3n4j9s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hyslIhEYrdCY7Y2kR4LC4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "YOAV7YYByh-A-Biy4dNo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LZvFVTJOMfo7RHR7D2PEUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "ntcV7YYBBkbVtX3n40Er"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wMYpNYJGdYQOQzp2QFWVOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "JdcV7YYBBkbVtX3n4j4u"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q-SfQ_r9EJdGkmFMOGPAZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} -{"create": {"_index": "profiling-events-all", "_id": "z9cW7YYBBkbVtX3nAVhI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["acGHnAm6JFFvJ2ZoZKt_fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-WYW7YYBO2e_P_QbBKlb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fMEGhVur8bO2mv1boqOVuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ytcW7YYBBkbVtX3nBWBe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gXR6EGOsoWtrSlWApDMCzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "b9cV7YYBBkbVtX3n9lYm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PRG5hVGVXLYVZ0h02g0udQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "r-AW7YYByh-A-BiyBPC2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L2tnlnNGd85PzXoftF65LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "S2YW7YYBO2e_P_QbAaSR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-riZP-fh7uXaUsCqBO2ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "y9cW7YYBBkbVtX3nBWBe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EVbkX_ePnzMrnOl-TBl5FQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} -{"create": {"_index": "profiling-events-all", "_id": "k-AW7YYByh-A-BiyBfKz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SGWXcHhJ-3eFNiySrhglHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "juAW7YYByh-A-BiyEf7z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cqS65a_0vS0KD1oFWfGPCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "j-AW7YYByh-A-BiyEf7z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hMnXoL28a6WRFVFuXnlcrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "nOEW7YYByh-A-BiyEgDd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j6Z5oRx4O63IFM67ZJuuJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LWYW7YYBO2e_P_QbELiv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mUFADSo1xxMWcv8DSPuI8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BNcW7YYBBkbVtX3nFGcu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vwNl340FtK4II3OTHfAxDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "4-AW7YYByh-A-BiyD_jF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zt84rjIRj6I8L5VSa3HBpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "edcW7YYBBkbVtX3nEmVM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gKIIWZ-RBY_pDJxZsnm0jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "neEW7YYByh-A-BiyEgDd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "HOEW7YYByh-A-BiyFQcS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cA8SM2W7SPYEpBx-8uBa1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "7-AW7YYByh-A-BiyEfxY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JqJc9Tw8mUc7OkItUIvw5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "gWYW7YYBO2e_P_QbFL_E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t1xfFBeH5Fl1K12J5A31pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "g2YW7YYBO2e_P_QbFL_E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q1sP74JQ43bJB5q4cKtRIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "qmYW7YYBO2e_P_QbEruU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "89cW7YYBBkbVtX3nEGNk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MNoOASNIU68SUFgbeLW58A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "GWYW7YYBO2e_P_QbEbqq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z_XfhBGlE3Xx8UElIIjuaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "9dcW7YYBBkbVtX3nEGNk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EEeUn8j0Iub4lrEKoW-8Cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "179675615145181"} -{"create": {"_index": "profiling-events-all", "_id": "etcW7YYBBkbVtX3nEmVM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["720bYtIjXZ0s4au9mJ3ENA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "nuEW7YYByh-A-BiyEgDd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9jPK4ekFswUlDMrLg6xAug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "buEW7YYByh-A-BiyEwXO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NYCnn7inzK2gAPHma58uQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "IWYW7YYBO2e_P_QbFcGw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S58C5t85-Y0vir0VJHn3sQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "7uAW7YYByh-A-BiyEfxY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jQg_3Bmo6e2S1O85p_SEZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "CNcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ch3muNdb91l8mJnrRw326w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "TNcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nqNBcpTJOJBcaLx3xSaIng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "E9cW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PaaTApbUCVYoJdVKOnUBcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ymYW7YYBO2e_P_QbJczE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bgzswmC99T0GXpCWQr9U_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5NcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t4n19LeK4zvHCEOuBRHoDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "BtcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuzNOG3t4OkPYTKYBPqKPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "DNcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TUWMTxzeES_T8-svE5R5CA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "C9cW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lJAXkKqZmAGFZNufVun9jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "ueEW7YYByh-A-BiyIRAu"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "PdcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5RtcWDMSyG5oMUK9N5k8yg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "k-EW7YYByh-A-BiyQzHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7oGs945PXyHA3K9GcsRw1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "1dcW7YYBBkbVtX3nRZBy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JWmxFWMO8LHVPPV9p1GcnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "d9cW7YYBBkbVtX3nQYxi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RTGr7Nm-Ia9juXQJ0VJo4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "aGYW7YYBO2e_P_QbROQw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vcIsDLwygnNOUzkldgQe7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "yOEW7YYByh-A-BiyQitl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["it1M7ufrxHsYyi2peFanww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "dtcW7YYBBkbVtX3nQo-v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["746hwfph0Dw2g_3bePUkEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "hmYW7YYBO2e_P_QbRObI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D3VUcyuPxGSWdwpH9VSPOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "VuEW7YYByh-A-BiyRTUo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mqr5kDewzIwNjBe2t0vTXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "1tcW7YYBBkbVtX3nRZBy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IPqtJ9Ffu3wDNg6koFPX5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Q-EW7YYByh-A-BiyQSqw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["osSW2qt9a8zRx0nR8PECjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "hGYW7YYBO2e_P_QbP91J"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f6Keqe1sXyk36jAJ3WN1sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "hWYW7YYBO2e_P_QbP91J"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f7riNXLCE7Lya9tYdhWvxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "Z2YW7YYBO2e_P_QbROQw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bYFx-SR9JjDh3LNKYdmEBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "y2YW7YYBO2e_P_QbQeID"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "X-EW7YYByh-A-BiyQi3_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I9TiskxOBE6uewdlBEfbaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "YeEW7YYByh-A-BiyQi3_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "MuEW7YYByh-A-BiyTjpF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PR0G3Br-iqix1uCUZkKS_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "T2YW7YYBO2e_P_QbUe1z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IePXD1TmrKr2VUEUp0lyYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "CWYW7YYBO2e_P_QbUe_C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9kcejzSJCXOEAAMTuFifhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "7mYW7YYBO2e_P_QbVPdI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oAhRUpu5Nxvud8PhxnY97g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "NOEW7YYByh-A-BiyTjpF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vyzbd-n47muGD1CcY51iSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "KdcW7YYBBkbVtX3nUJll"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7biARfQSIKGkOMBE8K3ifw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "jOEW7YYByh-A-BiyUT4z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["00uTEq02DOt2grmBxWEFtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "aGYW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Et5sNZhAoszUicKSkeO_ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "bdcW7YYBBkbVtX3nU53R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A4PiDpik1xNqn-sMYyun1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "atcW7YYBBkbVtX3nT5d5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PwiymugfyWZ7JNBkVfJTzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "BeEW7YYByh-A-BiyUkAI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sd-ZaAvLHLrrMbq7MjTuQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "K2YW7YYBO2e_P_QbUvPO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kuJBVypeLq1V0jSA-wxI4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "C9cW7YYBBkbVtX3nU5wV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FpeKkethPGO1uv-qrij4uQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "_mYW7YYBO2e_P_QbU_RV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OYGXc31yJI5bR-H2iNSwHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "b9cW7YYBBkbVtX3nUpqO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6bno3KY4YPf5Yv8-TeyIMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} -{"create": {"_index": "profiling-events-all", "_id": "RmYW7YYBO2e_P_QbT-o1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oNARuCgevgyxtAjFL2xZeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "AGYW7YYBO2e_P_QbU_VV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["92cNuiuQKW3x7lS40O9Vmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "b9cW7YYBBkbVtX3nU53R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O3n8w8bc5rIZeq-nJR67uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "gGYW7YYBO2e_P_QbU_aU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-KIwcLrlxoEZYnIYFs7xDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "YGYW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nnMQdtf0-TCma7GTQu1BbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "aWYW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E4d9ZgpjdjB2MMbdIa-vAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "juEW7YYByh-A-BiyUT4z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZndsICGWbrD6J4BVHqQM7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "utcW7YYBBkbVtX3nVJ4L"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sj1IWeYK2LXaE0gPl1F28Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "JuEW7YYByh-A-Biybk1R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Rlf-Kh1cYYNXH3i3_B9teA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "69cW7YYBBkbVtX3nYKLY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jwj9IGMM0jWZjOAtjE9d7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "htcW7YYBBkbVtX3nYaQt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wfCTZ14vNLwvsq17Hq3glw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BuEW7YYByh-A-BiyZEso"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YFcmZLo-GvC7WdK5tCotfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "qOEW7YYByh-A-BiybUuC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a4F_DzJWoeWMlYJL40d_JA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "w-EW7YYByh-A-Biyclr3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kfr7TPEfSe6g4pC6WtyOxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "AmcW7YYBO2e_P_QbcRL4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["INv4Z_GTWxG4wGfSHZU1vQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "jNcW7YYBBkbVtX3nf735"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qtJZCZ940TmjMXNEWgVXDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "FOEW7YYByh-A-Biyclc2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GOEW7YYByh-A-Biyf2a2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xaL3njYZVA5XbbnR4zdhGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "DtcW7YYBBkbVtX3ncrd2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NEr5ZXND311_OYMu-NMslw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "7eEW7YYByh-A-BiyfVwi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fIYzG8NwYtgLi_ZHHyU4xA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "E-EW7YYByh-A-Biyf2M6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "omcW7YYBO2e_P_QbkSZ4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MbW3yiCJFvhva0WqbvTBag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "I9cW7YYBBkbVtX3njsRV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MY4vqWXc_k9n6qImvJUI7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "PeEW7YYByh-A-BiyjnPr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n9MMvRTyGAAOhcwC8K3gwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "X-EW7YYByh-A-Biyj3ZQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P4UuSsDKCXWF3oh3R7oZEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ReEW7YYByh-A-BiykHvM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2i-Edq18smF6rac2fCPmsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "oGcW7YYBO2e_P_QbkSZ4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0NRB9624MZLIKmkHE-1rew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "bGcW7YYBO2e_P_QbkSjL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ECFdcptasOGGQlul_TP0kA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "umcW7YYBO2e_P_QbjiAN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5PRmsP6A6H0WlT5JRWzu5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "P-EW7YYByh-A-BiyjnPr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TCI-U8WcxrkkRuvWag0ygQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ztcW7YYBBkbVtX3nkscq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAORKE733KRegC2qyifuEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "umcW7YYBO2e_P_QbkymJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qkrlPnVIce6tMBVHgicCGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "suEW7YYByh-A-BiyjXFu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OwYjh2SJYfmFVJG36Cn3Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "Y2cW7YYBO2e_P_QbjiKj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BBtaj0c5fzDAqxomou5uMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "551319322047447"} -{"create": {"_index": "profiling-events-all", "_id": "JdcW7YYBBkbVtX3njsRV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KEKnZX1SRSUSzJoangOL-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "ZGcW7YYBO2e_P_QbjiKj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iXZcf6LHfVLaFOybaknpXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "u2cW7YYBO2e_P_QbjiAN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7AxSTJksslsjaD4JN8OKPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "F-EW7YYByh-A-Biyj3ir"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bcg4yzcU6w_vTsKTk-8RpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "_uEW7YYByh-A-BiyknyA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "E9cW7YYBBkbVtX3nk83N"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BBKNI3Uum2tvcePLaUHnIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "mWcW7YYBO2e_P_QbnzSu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0VAqWGznmKP6FXK4zqZ7QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "T2cW7YYBO2e_P_QbrDkF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PDs7NfSLItAy9yFZzNUo4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8tcW7YYBBkbVtX3nrdtn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynw1R90P5jqjjO7FNW192w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "kuEW7YYByh-A-Biyn4n1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WXO05qRm-L5_dLDd84meuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "luEW7YYByh-A-Biyn4n1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ofbkGVhqHskFPiKv2X28g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "oWcW7YYBO2e_P_QboDfC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-KfBhnJmEvuvAwkRvUGBJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "4-EW7YYByh-A-BiyoYqh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l3DRS0zpqMRRIvCRvx_gnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5GcW7YYBO2e_P_Qbojgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k4HJrAiqQ3V4Sy2tIInxZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "x2cW7YYBO2e_P_QbrDqK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Tvv0GKho3Y3Jvs5JVJ4HCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "k2cW7YYBO2e_P_QbnjHj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_ZJuN4Q3XfLWBtpXFkmHgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "EWcW7YYBO2e_P_QbnzMm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-W1It0TVP9HlUzppA_nUmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "EmcW7YYBO2e_P_QbnzMm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6OaUumRb8P6q4GlOGK0eGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "IdcW7YYBBkbVtX3noNM2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["10lGPWMVE-wMY3Dd5VnXkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "I9cW7YYBBkbVtX3noNM2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f7aWCPaXdIyFkeOjGCsGbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "kNcW7YYBBkbVtX3nodQJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MIjdoSZWUGoqrMkmoKBGPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "5mcW7YYBO2e_P_Qbojgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IQdfawGZrkhBWNm1MuU4ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "PtcW7YYBBkbVtX3nrNlH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ewqZUIOmU9Ti-nJquCY7dQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "xWcW7YYBO2e_P_QbrDqK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NEZCSjz-TkZF0o0U1xZQKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "oeEW7YYByh-A-BiyrYy7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uBbKBM9HPWXmF7lgBbqn7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "ouEW7YYByh-A-BiyrYy7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eFlLbHihvaUX7uvWAN_dUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "o-EW7YYByh-A-BiyrYy7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fNOV0V-zSZCXeYqmr986ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "lmcW7YYBO2e_P_QbnzSu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7jhdqicGJ85l6MMpJ5h4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "H9cW7YYBBkbVtX3noNM2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kHZvNVXXuZ4FaC6U3PxZfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "zNcW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ay1JvUpYidc_jtVVQh5xJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "w2cW7YYBO2e_P_QbrDqK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-EkvDjA94Zr1iIohgty7mQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "9dcW7YYBBkbVtX3nrdtn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K83bjAjxHCy932bC6uK3sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "aOEW7YYByh-A-Biyro4M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mHT6jAWpCslZAdClcFLweg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "ROEW7YYByh-A-BiyrYsf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHZe7xzP_hYpSdyN0kQ8tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "aeEW7YYByh-A-Biyro4M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XMBO6mK2eUEy_2zoVmK7iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "ymcW7YYBO2e_P_QbvkoZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4SkGmkKhl-y6jJi976f71g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "D2cW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oxzBhk8Wo4MNtv46Cf01yQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "AeEW7YYByh-A-Biyspsk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dn6DDmlkkMhcrqy-oKH_Ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "sOEW7YYByh-A-BiyvZ85"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3MlZ2duzbecHR9Swq4KrIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9-EW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["alVDVSUDsOePavwUi2Uc4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "-OEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DWfScUV2_2OCeYx4zWNovQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "_eEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4Cu6oYF8CgThrL_OjB6KKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "o9cW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jcBkdPt8EyvUbg8R86Rk3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "G-EW7YYByh-A-Biyv6XQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I6emm7QMCp3MTtFFeDRa6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "XuEW7YYByh-A-BiywKYJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jwz5Ko_H_B_a_KaZUAnDNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "8-EW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S5-br3efshNyjcSWox2NvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "AuEW7YYByh-A-Biyspsk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Hmjwbizys6J1V2OuvGqAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "GuEW7YYByh-A-Biyv6XQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ERZHMw9hepZtP1YDjwtr1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "N9cW7YYBBkbVtX3nveeB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8MP07z4BgOJ1bvy0UuehdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} -{"create": {"_index": "profiling-events-all", "_id": "c2cW7YYBO2e_P_Qb0FnB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3GQlu4cDmBP0J7ys3CIDFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "t-EW7YYByh-A-BiyzrTg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M4rbTRbrX0yQkCxBeFA9NQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xOEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jGJYBKwxppFBRbCx_fEt5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "mdcW7YYBBkbVtX3ny_BB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pr_aC7V9ziezcWkTX9r7wg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xuEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e7ofbCHl8qRy2q41G8_s7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "EOEW7YYByh-A-Biy0Llz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tEf9Ie5yokrYlSGE7DLxmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "F-EW7YYByh-A-BiyzbAL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AoxNz9Y_PEGGL6UFqTd8NA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "IeEW7YYByh-A-Biyz7ao"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YDo1NT9KzNVeSq1G9W3WWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} -{"create": {"_index": "profiling-events-all", "_id": "d9cW7YYBBkbVtX3ny_KF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4NFliTc5RbA2S_WmSY2-5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "eNcW7YYBBkbVtX3ny_KF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UugzqeTQ92pW0pcPdsUFNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "v-EW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TwmBGtDgORQiem0fqXxYUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "o2cW7YYBO2e_P_Qb0Fc4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VGkfGlLCT3CZxXjvshlG7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "x-EW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9PHIiDKAKQbdjZhfXOPI4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "mOEW7YYByh-A-Biyz7fk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hy11GM4V5rJ1R_KKBReCYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "J2cW7YYBO2e_P_Qbzlaj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c6o4JEm_SHCSlbGrmocvXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "tuEW7YYByh-A-BiyzrTg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["66C1_zZgLoWX2sy4ZYxW1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "513527008281347"} -{"create": {"_index": "profiling-events-all", "_id": "bWcW7YYBO2e_P_Qb3mI-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t9HIF4XCgjQvhopK4zB1OA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "oOEW7YYByh-A-Biy38Nt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dYb17oP8aNL5n3jF96PoUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LmcW7YYBO2e_P_Qb3mTL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U7LpnWklabUetOIUe4VKNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "tuEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DR99mqPw14HhCOTiH_yCjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "uOEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dl4T3akeu1eU8F-sCfOUww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "uuEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s-ueWdcoRW3U3Wl2s7q1wg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "gtgW7YYBBkbVtX3n-haV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q1W8n5Cn-ifIaAP9BQF_Hw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "g9gW7YYBBkbVtX3n-haV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UBsDigUiCriOBIKnOe9n2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "3OEW7YYByh-A-Biy-tTN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w-GsWvuRbgtEQFjz7G6cAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "wmcW7YYBO2e_P_Qb_4GC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["haUW2KmBYJrtqWFKN3ox5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8tgW7YYBBkbVtX3n-hQh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NmZEPOVWjWJBf47eb30-vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "02cW7YYBO2e_P_Qb_38l"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mfuqRLZYclnGs_5tl5SKFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "wOEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aYIIEFIIPBZMufRatARTng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "R2cW7YYBO2e_P_Qb-nVZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zqEaDpKRyJAOpyXtzl9UkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "f-EW7YYByh-A-Biy-9iI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iKq1so1oRdQrNuV0NoX8eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "zOEW7YYByh-A-Biy_N3T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Jy_fLEQmYV8Uv4CPynhtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "G2cW7YYBO2e_P_Qb_n7b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8O4Oo3VCILgT6pGMxLQiaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "u-EW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iL4-l2lLaZN3l2HTgJnKig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "1GcW7YYBO2e_P_Qb_38l"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "AeEX7YYByh-A-BiyDOZh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["acpHxpMx1lbCfcQ7t4BGwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "pOEX7YYByh-A-BiyDuyF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N2sJHNv2xDtI8Fug5gaP7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "M2cX7YYBO2e_P_QbCoY2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jP--MF88HszSEEHJkdZMeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "gmcX7YYBO2e_P_QbDIov"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xs7bKuwpf1rgdNVeL5Z1tA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "MmcX7YYBO2e_P_QbCoY2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O456hrPREziYCrquwnUdNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "SuEX7YYByh-A-BiyCuLc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ffqI7X0j8c4Op_Y9dHk8Vg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "AdgX7YYBBkbVtX3nCyUt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7bAi2ETLik8HmJW4q-mO5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "A9gX7YYBBkbVtX3nCyUt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ra9c-heZALvJmUxSmzUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "iWcX7YYBO2e_P_QbDpI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UUY2L_ithWPFsPGJM4Kw3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "MWcX7YYBO2e_P_QbCoY2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["udcCD1ZwYlzlR2BrHqM6qQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "4GcX7YYBO2e_P_QbCoef"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NiLAkn8PMf6fUuAyKn54rw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "FmcX7YYBO2e_P_QbDI3K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OqL1jazxhGNp3BmuN0BL6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "5mcX7YYBO2e_P_QbDY8s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q1_7VQVZ9B_m5nqjto1Vhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "52cX7YYBO2e_P_QbDY8s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YAxRX4VggixxxzGwx37hxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "NGcX7YYBO2e_P_QbDZHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HVutYQOiJQEOoaSuVpBJXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "p-EX7YYByh-A-BiyDuyF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NIcwjcTUxYrOZlE8A754rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "vNgX7YYBBkbVtX3nCSH9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zii4wg2T59k_VWZoCJQUDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "4mcX7YYBO2e_P_QbCoef"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KwiR_SttfPlB9Vl4LoTdOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "5GcX7YYBO2e_P_QbCoef"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "JmcX7YYBO2e_P_QbC4mb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_isMSxwsOfQpJC0IwuP96g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "A-EX7YYByh-A-BiyDOZh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["88SBwyQrj_3EBC_tr5p_Vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "E2cX7YYBO2e_P_QbDI3K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7Vtiv4jrMy8dqqN7pIRDXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "cuEX7YYByh-A-BiyDedc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kbEUN-QOQOIjM5mfj2ILfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "XuEX7YYByh-A-BiyDev8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rm376MXTBGWCRQJ58nODcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "FWcX7YYBO2e_P_QbDI3K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "jGcX7YYBO2e_P_QbDpI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8j8JNdpbtu6ZzDCgLiiQag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "v-EX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U7Y6G7QHAuKl9wgxs-phIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "eNgX7YYBBkbVtX3nKTOX"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DrFuJie5559qDcG8I2bFVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "yOEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MY4vqWXc_k9n6qImvJUI7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "PeEX7YYByh-A-BiyHvlf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JZACgiJEVY_n0sywfrDQWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "hNgX7YYBBkbVtX3nGiz5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7EgL5MlvlPFHn8CzMa-nAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "duEX7YYByh-A-BiyKv0g"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ja9MBlCW9JbhLw8tshjLeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "vOEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Bpc8eToJHZimyCogMpwGRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "WuEX7YYByh-A-BiyHPRK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jygufO1z6CmSlXFVDFIyOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "vuEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UN3BthZs3VjmxILWgSyPNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "_dgX7YYBBkbVtX3nGy2K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "wuEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t7wSwGaTC42K8TqyqrWQ8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "QeIX7YYByh-A-BiyOQRi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pa7eV1ClIoEc0MOWrL7aYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "HmcX7YYBO2e_P_QbPMHK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j5wAfaxsqFHmGRlT9DISZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "UWcX7YYBO2e_P_QbOr2M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5jgUXsxTIbIDkQmcG83gUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "YdgX7YYBBkbVtX3nO0KT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nsE2Ss7VQy9Y1xUvJ14HPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "zNgX7YYBBkbVtX3nPEMb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gd9Zti7g9VaXgPNM2AMUpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "IOIX7YYByh-A-BiyPQuP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PVeP7XzJjOmZ2Pz05AHQcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "H2cX7YYBO2e_P_QbPMHK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GhO-Q7jxmabu9xQq_grssg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "iGcX7YYBO2e_P_QbOrtJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["37H1sSWP9fHHtDykTwvxJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "t2cX7YYBO2e_P_QbOr_Z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "zdgX7YYBBkbVtX3nPEMb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EKi5VuydurxKNxIla0x28A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "GtgX7YYBBkbVtX3nOTzV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UNENHeLd1blNIM02vY64Gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "L9gX7YYBBkbVtX3nOz8i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nK-VQLHeSCyigrjH5wLGZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "AmcX7YYBO2e_P_QbObof"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["plpBd6vKoF_CiIU1pw2x5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "luIX7YYByh-A-BiySRIf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UQljazbrYNKb17CR1zcj2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "X-IX7YYByh-A-BiyShVm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Cia-tEvT-RYth24Bv6xiew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9mcX7YYBO2e_P_QbS8zy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vSb0Ydm_vV2aKQF-Jm54LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "6mcX7YYBO2e_P_QbSMNE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8MvjeD28P3dNyT_MVzGvfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "idgX7YYBBkbVtX3nSErh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TQY_WRO1qymUg5IQJijndw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "udgX7YYBBkbVtX3nSkv7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BD6RKw99uF2og061lVltVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "dWcX7YYBO2e_P_QbTdFC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["btPiCrGC5QuwreUh6KDqzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-WcX7YYBO2e_P_QbScad"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nobPGa726Uz_QIRAEzxZhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "FmcX7YYBO2e_P_QbTdAJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_lMqaF4gbGiFm8tgIiB6eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "J9gX7YYBBkbVtX3nTU6_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["We4ZzWo4Sdy3cRIrD2Ba6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "YOIX7YYByh-A-BiySxi3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HkfH8phILjoSDOJDy-1TVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} -{"create": {"_index": "profiling-events-all", "_id": "62cX7YYBO2e_P_QbSMNE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "JtgX7YYBBkbVtX3nTU6_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "tmcX7YYBO2e_P_QbXN28"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lFR0pO4Wu14TGU5YNpr5mA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "UmcX7YYBO2e_P_QbWtrI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ypK8YAnhyIQbCIxguF3ZYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "kuIX7YYByh-A-BiyXSZb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "jOIX7YYByh-A-BiyWR5r"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6DnsHbkP7LCj2ghN7B7D9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "n2cX7YYBO2e_P_QbXt8U"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fqlDalQnR0z4CfFMV3Mv9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "huIX7YYByh-A-BiyXSiy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JnSKFHek1VX4hQrcBvK6Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "j-IX7YYByh-A-BiyZymA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nG3ZbKid0T9JiPA-g3DZAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "nWcX7YYBO2e_P_QbaOMC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m8UxqcMGCNBvKBluS5X8zA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "7dgX7YYBBkbVtX3nXVoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "4tgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xcO8ATMuOlPrGlylAgvJmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5dgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xXZDG1IWCIku2BjFkk_Ekw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "6NgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AtiTcD0o7LzpBiQNMhP0Vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8NgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d0uyKUSw4GUejkSAuddDbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "79gX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynw1R90P5jqjjO7FNW192w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LNgX7YYBBkbVtX3nenF5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O7pMotA2VuO21v-RSvDOAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-NgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EJns5ogzEJmEGiD1xX0ydA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "4eIX7YYByh-A-BiyfDtb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4J0058RPoWpK37V_WzN4IQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "168532957631583"} -{"create": {"_index": "profiling-events-all", "_id": "kdgX7YYBBkbVtX3ne3fS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZKZ1FR707KOqJJQD503DPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "Y2cX7YYBO2e_P_QbefBx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Lcmvo890HG8Y4rQbXwRxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "7tgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R7BFs04CJH6GNBGB3gnfow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "8tgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W3Xg5UYDFZ6S6yXmGwJPvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "59gX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8CftQWwP45Az974XyC6KVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "MeIX7YYByh-A-Biyikgc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9mRMBlsO9IKvKzWL8LqfoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "tGgX7YYBO2e_P_QbigJT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3T5Y-Jcmq5ISgDLlSLnByg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5tgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ecEckjK5VzUg46drS_Qbqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LeIX7YYByh-A-BiyhkDE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CVtNM3kFgea788jNz-19vQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "UWcX7YYBO2e_P_QbiP47"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tSCnGC8MSIDk_S0oLclfKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "3mcX7YYBO2e_P_Qbif8Q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wO6E0aI_adazJwV1nEPvow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "6tgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_OQKwd7_zKSX8IYHdhu4OA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "702806677431836"} -{"create": {"_index": "profiling-events-all", "_id": "YGcX7YYBO2e_P_Qbh_kU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HVutYQOiJQEOoaSuVpBJXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "UmcX7YYBO2e_P_QbiP47"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ubMKKKyUhNm18UW6QrHRVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "MOIX7YYByh-A-Biyikgc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3XmH7C16CjfWPwwqHrVw7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "seIX7YYByh-A-BiyikmM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MRPIiqkdVFL_ATcyw44gkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "VdgX7YYBBkbVtX3nin7J"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f0fqU4EglvDX7hh3PMNsxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "QtgX7YYBBkbVtX3ni4AA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MlcjX8Vw9YA9B7H2WMfzTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "5dgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YgLJzuU9kxRA_szpHYnDhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "7NgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWQpEA25V7CPZz_CbRPwlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "7tgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q9GZUSBL9TB0CdE5vyfEsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "79gX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0R9Tk_AwuvgNuleyrD0E-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "49gX7YYBBkbVtX3ni4Pc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1OSkSfHh0FyowliERICfKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "7GgX7YYBO2e_P_QbjANs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BJCmF0rYAGSsMmkTDz_IDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "z9gX7YYBBkbVtX3niXvV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pFiegCzfTyYQuNCyI5Zg9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "QNgX7YYBBkbVtX3ni4AA"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzyVw9-CnV8kDbp00nDLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "4tgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fkFINeCBMiTJSpNxRsOdew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "E-IX7YYByh-A-BiyjE0n"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZSiw25_awwy7RlclMxL6hA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "ztgX7YYBBkbVtX3niXvV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CAKC2o2NYggEGwOb_Ja6EQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "162746825496619"} -{"create": {"_index": "profiling-events-all", "_id": "7mgX7YYBO2e_P_Qbpxl-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-4SLKLQoS7j3p5TwUwKzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8WgX7YYBO2e_P_Qbpxl-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ymZCjvGyGb7nDgHKngF-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "HeIX7YYByh-A-Biymlrf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EXarUgAL9HIosZihvCe9Zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "tNgX7YYBBkbVtX3nqJPE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ONg1QQM5k43WL1XUwy52Hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "peIX7YYByh-A-BiynF0B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nZ8fRP549U0JQTjsBAy_jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "tdgX7YYBBkbVtX3np5HZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eZ0CyfLsOPhGDflPO5HbqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "571288167487052"} -{"create": {"_index": "profiling-events-all", "_id": "reIX7YYByh-A-Biym1t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v5SF2iml9eZuaSs1mX-aSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "xGgX7YYBO2e_P_QbnBXZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EszYJlG3uJtSxM3Y3d7bAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "tdgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qBcAPztwjs-VUIEIDjbDtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xWgX7YYBO2e_P_QbnBXZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_xmAQQzI2PQtnY3j6S3cOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "nGgX7YYBO2e_P_QbphZT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BJWhTnZbfJWxo1Rlx1U4ZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "tNgX7YYBBkbVtX3np5HZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JR8_DdEIpI8T7Ny-5nFoag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "yuIX7YYByh-A-BiyqF8h"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aVn8RcB-QxhkQWDJX_CUMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "cOIX7YYByh-A-BiyqGFv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yjN3QcXIO7ZJpjPqQPEBbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "tNgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QDgIPJ6K1Rf5OSw95yEFHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "XWgX7YYBO2e_P_Qbpxge"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Ea6eul6ZytqY8xapNMsbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "m2gX7YYBO2e_P_QbphZT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LZbycaXCeyBUz4EBiDGWbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "yeIX7YYByh-A-BiyqF8h"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s-PQaLTLtULIOEGxMYfLJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "e2gX7YYBO2e_P_QbqRsl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hyslIhEYrdCY7Y2kR4LC4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "HuIX7YYByh-A-Biymlrf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HcHMtbSJVvIGBxeKT7TjXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "YOIX7YYByh-A-Biypl4D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nmIx6kUsvWkiJwjLxLculQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "cOIX7YYByh-A-BiymlgR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UbZWbU0S5kd22SAXz7exPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "sNgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fhWOfzRaLRg1Sw58iH7CwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "beIX7YYByh-A-BiymlgR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "J2gX7YYBO2e_P_QbnBSM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WgfE3EpDBODOIydfExij_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "g9gX7YYBBkbVtX3nt6R3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["94o6mawNwOW6nwyr1PAIHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "TNgX7YYBBkbVtX3nuKdo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3z_uYJyhnmGT6PJSN17I-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "G-IX7YYByh-A-Biyum09"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GD_7fNw_aMjvomJCJdhcmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "6NgX7YYBBkbVtX3nuao5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PpzV6LTOPBnvw6J3GGPQ2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "6dgX7YYBBkbVtX3nt6W3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mhlnk07FVj7HY3V21x3-gw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "7tgX7YYBBkbVtX3nt6I3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "uNgX7YYBBkbVtX3nuKip"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "6dgX7YYBBkbVtX3nuao5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruch9eRlQqOnJ3ZVNLKC2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "q2gX7YYBO2e_P_QbxzPs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BOn5YfVXLbYJVzgO0D8UNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "89gX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m2ytJBFkfHdhX1fCXv-xiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BNgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8i6BiToPKTJjFIRVyGCmXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "O2gX7YYBO2e_P_QbyTjm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n6gUB2Vi4QgxQPdYRzsxAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "A9gX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G0DLtHxiVxElcFIXMT-PNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "zeIX7YYByh-A-BiyyHV8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vthGd_F8mbZA2w12Nf4aww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_9gX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y1JTMrOxhzScpzOLDM9hCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-9gX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PNk5D3ntxPXuIHkBkun6-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ANgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ET7o_hXX2lHnkNRaSpVTBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "CdgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jMkr2A9XqdtOl_G9IEsnSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "DdgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_lMqaF4gbGiFm8tgIiB6eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "bGgX7YYBO2e_P_Qbxi-y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H6aVRP1XZGxW_TNZpAozgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} -{"create": {"_index": "profiling-events-all", "_id": "B9gX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QD2PazKHor-pbdbD3PDPLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "CNgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZAomE2KxhcS4gmu1C8JgWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "VtgX7YYBBkbVtX3n5c3Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-G7AAW8oqT97cLlLLBEEKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "NOIX7YYByh-A-Biy6Ivf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9lObyrii2tZY3D8d0ZEhiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "M-IX7YYByh-A-Biy6Ivf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeZUkY-05pj9hvZA8tv9Zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "leIX7YYByh-A-Biy6o0H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DV6JRqrUjDUvu9f2B4lulg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_OIX7YYByh-A-Biy5IDD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GQY3N3qZRu8haCsdxq571g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "y2gX7YYBO2e_P_Qb5lIe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G2qSXnyvIGQkSNpP5wPgdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "711845992008202"} -{"create": {"_index": "profiling-events-all", "_id": "LdgX7YYBBkbVtX3n6NFW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oNARuCgevgyxtAjFL2xZeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "79gX7YYBBkbVtX3n6NKY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jrwbv8YUisyxPyCibkR_Xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "CmgX7YYBO2e_P_Qb6Vgq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x1lBt1LJeSjGFaVggB_aRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "GmgX7YYBO2e_P_Qb51U6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QNP7PZqJy6OGXmZc1fiP_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "6-IX7YYByh-A-Biy5YKL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TtbiDhEltHmoi7DhhlF0WQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "s2gX7YYBO2e_P_Qb51bB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MM2CztTXvV5i9K2i-2RGNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "EtgX7YYBBkbVtX3n589_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8xpc2h22mHPdvmOlcypPfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "KtgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UXyZCc79Dkgss9nEK0VutQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "2mgX7YYBO2e_P_Qb-GAl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g5T7QK05XvJ6l-R8ldhwpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "9uIX7YYByh-A-Biy95jl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pBOutl9bHW2BqNx2HBhaPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "RuIX7YYByh-A-Biy9ZTm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X_7eGxy7JatY66SnXVDAow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "PtgX7YYBBkbVtX3n-eUA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aVn8RcB-QxhkQWDJX_CUMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "t9gX7YYBBkbVtX3n9dtq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4ocpdZMlRpRzCexEbOVmPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "ReIX7YYByh-A-Biy9ZTm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e-T0iWff_O-Pyy2T4tpPxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "cuIX7YYByh-A-Biy95dm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vUd7LUOlEzT1w32bH1zYbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "Y2gX7YYBO2e_P_Qb91-r"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UxGwXndIKBYsvQXlfr8jlA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "QdgX7YYBBkbVtX3n-eUA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SRve3dTLPRl1qAhVYZQKgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "pWgX7YYBO2e_P_Qb-WKP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "MdgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2qcLJwksgGzDh4MhNtDMFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "J9gX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s1HOikX7RhbcXlSxKwqqDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "LNgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-j0lF4sF4jza_a1DeuTz0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "YmgX7YYBO2e_P_Qb91-r"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jlpJ01FQ_CCdjG0s8LBgOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "9-IX7YYByh-A-Biy95jl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0mXxveDvgmyZUQk8txqhkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "59gX7YYBBkbVtX3n-eZU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AP5Eq7B7RisKC973OjTPaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "a2gX7YYBO2e_P_Qb9Fyf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ffFMdQwpHORekV2ieknMEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "tdgX7YYBBkbVtX3n9dtq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r2afFjMCaKrL1sh73z1hIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "ttgX7YYBBkbVtX3n9dtq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pp5lsGmp-JSx0DYM6KPKrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "5tgX7YYBBkbVtX3n-eZU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TohoLCipAaXWyBdT-2T3rQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "hGgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V9tSD5BQ3ATDkE3Dz2odow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "w-IY7YYByh-A-BiyE6dj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nNScNuSTrpa5-8cxBl8OiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "eGgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WSjAZWkrBfhyqCpr7c2wpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "4eIY7YYByh-A-BiyFKxe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuPwjyefoJQ1lu-T5igwEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "e2gY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Orgm72EfMt-zO2dZAN4-xQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "O9gY7YYBBkbVtX3nGPqd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bDEpUjfMy73JDN93aU2Y1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "3mgY7YYBO2e_P_QbFnT2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_9qdqX3M61Erctug7dsAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "fWgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "juIY7YYByh-A-BiyJLod"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O3Tz5fQYZgLM16jx54ZxgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "2eIY7YYByh-A-BiyJ8jR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PeUu-CO8oH7bDpiXW5er7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "weIY7YYByh-A-BiyJL2w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAORKE733KRegC2qyifuEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "VuIY7YYByh-A-BiyJcFE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U-SQw_Ej849fFrBkcLqfHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "1dgY7YYBBkbVtX3nI__a"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jo8tWR_pkEX_X8H988Y6bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "wuIY7YYByh-A-BiyJL2w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kNJuZj4X_lXclYreYCLjug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "a2gY7YYBO2e_P_QbJn6f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "t9gY7YYBBkbVtX3nI_yO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "KdkY7YYBBkbVtX3nJwQY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YtXvff3EKZwAqNYCPh_G8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "KtkY7YYBBkbVtX3nJwQY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ai5oW8uVA4tEGajwsXvwJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "OOIY7YYByh-A-BiyKMx-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tni8OBdz6TpUMf5YmlBpkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "1NkY7YYBBkbVtX3nOAq2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GwKVzdGAgri-K--qj0BBVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "omgY7YYBO2e_P_QbNIap"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G8rfpCwclnmPxDW_rTu3XA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "pGgY7YYBO2e_P_QbNIap"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zb66k8tNN3fufwrfwPNRpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "XGgY7YYBO2e_P_QbN44i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T3wubxICfJSY8FNVzGkEAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "W9kY7YYBBkbVtX3nQwsG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VnaxKNXR9iQyPdmTTWbz9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "f2gY7YYBO2e_P_QbN5Gs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uWH1YJMiRNhCnBrl6NfCMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "R2gY7YYBO2e_P_QbOJVz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3wY3n6ZuFWe08ye_NO9bMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "KWgY7YYBO2e_P_QbNYgr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fQiJSfBrHoS3h5i-nuWFRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-GgY7YYBO2e_P_QbN5Lt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bo6NdGV8GXHmalbT9Hz3Eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "XWgY7YYBO2e_P_QbN44i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EkobH195Wur44OeENgdTnQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "fmgY7YYBO2e_P_QbN5Gs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t_MhSbU2giVaKBznPcc-Nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "ddkY7YYBBkbVtX3nNgnQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x8C8r_joS9eFrngYSfAD9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "u9kY7YYBBkbVtX3nVh_a"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8mfKeyebNB7GEjVrotPPKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "vuIY7YYByh-A-BiyU-6O"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IcP7NfEq0GawQQCHmZWcRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "gWgY7YYBO2e_P_QbVqw4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["21VADknXj310Vq9ESNjcWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "3OIY7YYByh-A-BiyUejm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "1-IY7YYByh-A-BiyUuo6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3N5lLpTOYxG1gCT2yPAYAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "HNkY7YYBBkbVtX3nVyNb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDKxniIVk0RWV976qb-dNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "uuIY7YYByh-A-BiyV_WZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PpzV6LTOPBnvw6J3GGPQ2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "PtkY7YYBBkbVtX3nUhWB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KTolfZraJkKDWNdjvBwe_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "ueIY7YYByh-A-BiyV_WZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bredr3OvHQiC2uo7mFYNAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} -{"create": {"_index": "profiling-events-all", "_id": "fuIY7YYByh-A-BiyVPIV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6TvPSjgriSXKOKa1IM7e3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "0GgY7YYBO2e_P_QbVKit"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iDXH9KGzXeYmvEE7qpFOKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "641828620625480"} -{"create": {"_index": "profiling-events-all", "_id": "oWgY7YYBO2e_P_QbY7hd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QY705UJL2QEaImwzck5kDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "2WgY7YYBO2e_P_QbcsdE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vv8H2tPfs7d9zjnnJhB0rA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "F9kY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Tt9tabVrOQsSQg8A1kRaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "L2gY7YYBO2e_P_QbY7vw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fYmJVY6gIzPkbudFgeXtGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "E-IY7YYByh-A-BiyZf0D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Qj4-KfGxeYDC4jIbY_qMxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "2WgY7YYBO2e_P_QbZsEV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PBMBNfpl26clo2_eg37Few"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LNkY7YYBBkbVtX3ncS0m"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FjtKztgbAQPS6bJqFyRkYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "EtkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IbZEnp9wozgTuaJYdK6lSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "FdkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JrCc1ySWaMhrJB1f8olPDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "ytkY7YYBBkbVtX3nZSze"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fNOV0V-zSZCXeYqmr986ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "3GgY7YYBO2e_P_QbcsdE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WTK3WD91wf76sAd6PBxIoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "6OIY7YYByh-A-BiyZPvI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u4YpFJ3r3BxuJCj_h-nNzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "6eIY7YYByh-A-BiyZPvI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Spa1oEv_GaWrLXNIiVxEEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "02gY7YYBO2e_P_QbZb1H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lB1Y7h-GI8V7NnJH4cEyWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "1mgY7YYBO2e_P_QbcsmS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vHlfPkBgdyUjCnS7-7m_jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "D9kY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hyaOwrYy-y6_MqiyYC7KDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "EeIY7YYByh-A-BiyZf0D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XOEcWEB-1gR5VA6Y_JnK8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "3WgY7YYBO2e_P_QbcsdE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H_dTR833ucc6p1Tdsdvx5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "MGgY7YYBO2e_P_QbY7vw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "BGgY7YYBO2e_P_QbgtPz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nfuQzK4dMvkwCIn4oK0vJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "S-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzu7roeVjuX8DIGpBc0otA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "WeMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bNNll9gtsumikBQkeP5zYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "TOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "0dkY7YYBBkbVtX3ngkWp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AyDqByyWIoIiVixwsKuo2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "veMY7YYByh-A-Biygwur"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K_CAUyuD7NBkhK5Ltc_feQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "W-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yU87pg-Ch2E9K6GDZMg_og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "0OMY7YYByh-A-BiyhA5n"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9T2neRyvBAjupi4KvqMEkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "HdkY7YYBBkbVtX3ngkRm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dDG6jf6GCHoU_y56rXJY_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "Y-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uoJuSy3Naz5PMjayntwpXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "eOMY7YYByh-A-BiylBpj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YlwuTI9pMmyVbwg2FaXibA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "3NkY7YYBBkbVtX3nkU_F"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L3YM-JzWQGZBl6Hww0qX5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "eeMY7YYByh-A-BiylBpj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yXWhC6PUKwhiRKybc8XJKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "CmgY7YYBO2e_P_QblO3v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HcQSqbXhDJcv-dVT41RQ6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "xGgY7YYBO2e_P_QbkN-c"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NmZEPOVWjWJBf47eb30-vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_eMY7YYByh-A-BiykRT_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2pZTlkqZkVB23pwCplHuMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "G9kY7YYBBkbVtX3nlFSh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7bsINl9DvTXKKGeGoWTVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "HNkY7YYBBkbVtX3nlFSh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bTwDM-MjmPXB3OC1RQFixw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "lGgY7YYBO2e_P_QbkeIU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2uW4N0T57kNGJTVG5_1zTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "ymgY7YYBO2e_P_QbkeNU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HsiX5vdQunBNkC7dzQqFjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "A9kY7YYBBkbVtX3nklHO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SwjluL3-fAPsYBuygjQN9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "veMY7YYByh-A-Biykxdq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ju1Y8z3O5D2e-y3UCauHLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "FOMY7YYByh-A-Biykxnn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xekeer0c5o0XNQ05adBIWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "CmgY7YYBO2e_P_QbkOHY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jqtNscAcTM6hZXRdTqaMBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "imgY7YYBO2e_P_Qbk-kz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JJHpr4fLpWoSKqg-aUPBfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "82gY7YYBO2e_P_Qble4x"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fL44zZ44BPFnGW549J-v_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "BNkY7YYBBkbVtX3nklHO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A-XVDxnDwU8uNV8SIPsqYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "l-MY7YYByh-A-BiysCjE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hfDMNuzdjFAGAQxLAUumIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "nOMY7YYByh-A-Biysi1P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Oxe_oPi543aZz0lTOU2m-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xOMY7YYByh-A-BiysSvY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SSybZ3-qjl-24IZIjWrutg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xeMY7YYByh-A-BiysSvY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HylmGygzkKByc907Hb1zHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "t9kY7YYBBkbVtX3nsnET"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C7vQBGljPqDLZ1glBrcWiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "wtkY7YYBBkbVtX3ns3bd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["29_6ZAb70CIp_EG0wp7_NQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "4WgY7YYBO2e_P_QbpfyH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ow1D1C0phScv22K7VxLC2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "4GgY7YYBO2e_P_QbpfyH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4u9WOOyrWYLdgsjOh9aCUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "T9kY7YYBBkbVtX3npWjG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["djLrau8jrfBziaCPclZ3HQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "w9kY7YYBBkbVtX3ns3bd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WimOxYeSVVOX0wF3HCZkxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "t9kY7YYBBkbVtX3npWUb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["It0gQVHszUoDuF9_NGkXWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "aWgY7YYBO2e_P_Qbr_2i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3hucOiuiT_BuF65onWDmkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "BNkY7YYBBkbVtX3nsGt1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ccuRE7rvGbylFOE2-Vdm-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "f2kY7YYBO2e_P_QbsgDe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nK-VQLHeSCyigrjH5wLGZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "iNkY7YYBBkbVtX3nsnOa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fR8gXe-G1OoCrBfWymUTjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "hGkY7YYBO2e_P_QbswJc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A88fFaIU_zwiD_q-n14PHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "tdkY7YYBBkbVtX3npWUb"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IsqdVnLNhl2x75Zl1gQDqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "amgY7YYBO2e_P_Qbr_2i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E6KBzvcDthx6uaZz_Stfkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "HNkY7YYBBkbVtX3nsW5T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RK5QOedYDJN8YhVo9FJwjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "JtkY7YYBBkbVtX3ns3Wc"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "oOMY7YYByh-A-BiyvzV7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4BeOljMY7zmWSgDKbEbSZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xGkY7YYBO2e_P_QbxBjA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GG472XEEVdeqeiwioTPVvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "OdkY7YYBBkbVtX3nwoGT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6Xxk_y7umqFVq79tKmttkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "bNkY7YYBBkbVtX3nwH2y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iKJhqpG2dRoKsO5mlCpMbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "hmkY7YYBO2e_P_QbxBZh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-_1XfHbZNvE_DNOZ6TgYMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "H-MY7YYByh-A-BiyxDwb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EMABXmd9W1xztmohmhT4jw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "bdkY7YYBBkbVtX3nwH2y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9o9XxmdKp5kr_ASSIejj0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "H2kY7YYBO2e_P_QbwQ-_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6s327-MJ8tXADNCpUFJLTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "72kY7YYBO2e_P_QbwhLW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w2cA5pFSzeyVJ9Di06ODVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "-9kY7YYBBkbVtX3nw4SF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "6OMY7YYByh-A-Biy1EpB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "RtkY7YYBBkbVtX3n3pnE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0Iji_zQRXoBblaoaKwHTcQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "A2kY7YYBO2e_P_Qb4CpI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oNARuCgevgyxtAjFL2xZeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "U2kY7YYBO2e_P_Qb1CiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["spFZMKZslqx7eLmYXiBH-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "fNkY7YYBBkbVtX3n1JXT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HAu5rAU21OgIaT7rvuQn1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "6eMY7YYByh-A-Biy1EpB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "V9kY7YYBBkbVtX3n4ZwS"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "b2kY7YYBO2e_P_Qb7jUi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nfuQzK4dMvkwCIn4oK0vJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "FOMY7YYByh-A-Biy713T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xefg2tu-dTR7fu4bq6TlVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "UdkY7YYBBkbVtX3n8Kve"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SKoD-DH2DuktCqfanvYyAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BWkY7YYBO2e_P_Qb7zcM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U9D_YJUEsrwBEswWxHC35w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "0NkY7YYBBkbVtX3n8KgW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ztkY7YYBBkbVtX3n8KgW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SzEyh5UKxIErIGMjrb6UXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "L-MY7YYByh-A-Biy8V8f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mXTwlU3Af7Gcl1McbGUk9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "Z-MY7YYByh-A-Biy8WB6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x5-D1ZwWartfLwFKR52-CA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "aOMY7YYByh-A-Biy8WB6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t-flxrF7p2MCZlWnBJdilQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "fdkY7YYBBkbVtX3n8ay8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lo6X16n0sxmFnHCmqvzqeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "oGkY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "q-MY7YYByh-A-Biy8mGJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SVxJAjIDjZrrbvA9qjRyTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "vWkY7YYBO2e_P_Qb8z4T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MLRa2nw0cHalfHkTovbapg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "ltkY7YYBBkbVtX3n861d"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mi0B0tB9mjIesaGe45FXYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "quMY7YYByh-A-Biy8mGJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YQv8Jjxrz6pIHbJnxDZTDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "bWkY7YYBO2e_P_Qb7jUi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "8GkZ7YYBO2e_P_QbAkYL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y9yOjEX9YsHot-nonRkNzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "NuMY7YYByh-A-Biy_mUb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xe1hJxuA7dGkCnSYKpXyog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "aOMZ7YYByh-A-BiyAGoT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XGi0gq3X0lbtkz60bv_FjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "uOMY7YYByh-A-Biy_mZe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l6meUfZ5uC9_p8a-MC7XWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "190932526140742"} -{"create": {"_index": "profiling-events-all", "_id": "sWkZ7YYBO2e_P_QbH1uL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e7kg8w388m41akTi9Kihyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ZOMZ7YYByh-A-BiyIIrY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dqkoz37L8v8ZGKH2dg08IA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "PuMZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yCJBwrMAMfpAui_lf-8LYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "P-MZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H6bVVoHSSJLF6qLyyJlYew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "sGkZ7YYBO2e_P_QbH1uL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5kK1-2HMVYa08NL2RAHTaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "0uMZ7YYByh-A-BiyIIiV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kjbzs3pi_uYSkjO5yzNzAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "SGkZ7YYBO2e_P_QbHVji"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jmaxos_Fbss7GX1ulltAuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "xeMZ7YYByh-A-BiyH4VG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G2W434choOPZkVODgIFHPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "AWkZ7YYBO2e_P_QbHVUE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iMWox14mMY2b1SuNGxsCtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} -{"create": {"_index": "profiling-events-all", "_id": "SOMZ7YYByh-A-BiyIIcW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TCI-U8WcxrkkRuvWag0ygQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "pGkZ7YYBO2e_P_QbIV77"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k4HJrAiqQ3V4Sy2tIInxZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "SdkZ7YYBBkbVtX3nHs4s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6RQSqI_DYo_fU-yUjLfiPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "QOMZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UjSnJkMJp-ScD3GTE7GQCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "cGkZ7YYBO2e_P_QbImDZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pf3D6JGFbbrRUgOJ18HuJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "SWkZ7YYBO2e_P_QbHVji"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "xuMZ7YYByh-A-BiyH4VG"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "f2kZ7YYBO2e_P_QbLGOi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XWIVrcPaz7dnfTJVzRuiVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "OGkZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GkfSwJU4VtNnyHQkcXbLQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "B9kZ7YYBBkbVtX3nMNxw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Uog7BBtBaBoHv7gkfaKdng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "TdkZ7YYBBkbVtX3nLtnW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U-SQw_Ej849fFrBkcLqfHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "i2kZ7YYBO2e_P_QbL2kZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cRfPb25MGbKffPO7zvRoZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "g9kZ7YYBBkbVtX3nL9qN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dECtgLMdnRfSCldLDKs55Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "O9kZ7YYBBkbVtX3nMd2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["76S40x9sTPqO8zAoNyL8dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "-GkZ7YYBO2e_P_QbLGTb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "xGUU7YYBO2e_P_QbvJmg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ScSKYoSOs8nhVq0muD3gAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ntYU7YYBBkbVtX3nvwQZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TtJhJ3zPw--x6TQzyvUSEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "4WUU7YYBO2e_P_QbwKIN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e9NUfgKKbs-MiLMXsDbEjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Dd8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OMaWFUMaKo-t8HBZbSb7rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Et8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iBwxinLolVoovC6Eh145Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "n9YU7YYBBkbVtX3nvwQZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Va3LK8uFodhrLyRtybcuhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Jd8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sN_SI69IRP_CTM4xM4ZnyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "L9YU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n0M5HPUARuaG-cOZx59FHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "FmUU7YYBO2e_P_QbvZyb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u26YAXespQsbQjR7YsAYzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "298U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CryaWZekzG3MnYg7CufHdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "Kd8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "K98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9pmIhrtRRi4GPUMxg8HjSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "N98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sEaRb-2yXJZGrLeypPMviA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "lGUU7YYBO2e_P_QbyKOD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dLT0UoH40niOjk-XVme7dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "fN8U7YYByh-A-Biyvcco"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kJNVQg8pccfKm6nYhuiPHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "At8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LbIdVoxeM1glCVhs3QD2Rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "B98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xZMsyLjDeZJ1X8UROk68yw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "NN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QjWTEl1JczrCDNWdjCq0IQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "MdYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["19eOj7rW2BMrJQCjgPGRMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "NdYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F4DUvBkuKPYx1hCGNzwitQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "2t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cyR0VPenXOOdQcTb8oa6LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "C98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AdoI0rjd901gurnJCTWJVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "k2UU7YYBO2e_P_QbyKOD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1tUySHOH0tYebEIwqtbzkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "M9YU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wWjEk4V-ocnXQQZfOB5PAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t76-b4gm5U3oB29oJeJYQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "xWUU7YYBO2e_P_QbvJmg"}} -{"Stacktrace.count": [3], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vUd7LUOlEzT1w32bH1zYbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "698U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "8t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pg9BpRl7fhNFrbhldfBoVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "998U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3sCEoFWbinM5GJ3BUzAdHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "Ad8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hJqYLUumz9zXvS_kxlOwXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "FN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FXSDb1LRkJ6lyn8itNo02Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "Fd8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gni4FNEytoNXn1VB81DlJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "F98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uX6Z-_eBVfWUQHo7dxxgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "MN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BnraydbvEwL6mkTBVZOVLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "Mt8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QdOz4wxFUC8pDwHEAxZcWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "MtYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SRve3dTLPRl1qAhVYZQKgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "W9YU7YYBBkbVtX3nyQUE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dVb-MiyMMGjQnN4CNy5W_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "RNYU7YYBBkbVtX3nuwHT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DLW1J3k1lahctYuhwA129g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "398U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gl4D81F4_LquzSzjpshT5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "Cd8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K83sxCaQdi1aUMB4CY2c2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "H98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hyhq7VnU7oy4urORTsa4ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "Lt8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YVVpCpnnAN7nqi22_B110A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "XNYU7YYBBkbVtX3nyQUE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nOTOWE8V9a_XoRYtELkH0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "C2UU7YYBO2e_P_Qbvp4b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-r8cbHNOP2N9259mbYQNyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} -{"create": {"_index": "profiling-events-all", "_id": "Ed8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["28flplgbX9OoTxrrq9LhNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} -{"create": {"_index": "profiling-events-all", "_id": "Z2UU7YYBO2e_P_Qb27nE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ccyeq1IpEdYyyzMGVkI9Ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Z98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YRYK-waaBK93YQxC-u6FpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "dN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dncz0Y_So0i0vXWTX7iycA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ft8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Y6gZg8K9awv8z0hisYsKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "i98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7jgrYi9xWKJVjQJiteksdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "pt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9oafXxRRgws5bQkcIU2Q0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "z98U7YYByh-A-Biy1-BK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Wh31IgccB0bo8SH5BOevTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "XNYU7YYBBkbVtX3n2hx_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dhc8TGgYU9zTniCUbRsImw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "zN8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k1TJV5J17869y08LRTIrbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "amUU7YYBO2e_P_Qb27nE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["33M_jV1gmHGxTPvzVsOhJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "6mUU7YYBO2e_P_Qb3L3V"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gRdGxn1bfMhp02lCqIS5Kw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "W98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A41aW57rPqkbdBRy4L9pwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "Xd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mk9zCNEY-hYZnvZiO93Kbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "ZN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ypQufrPd-vWE7YGaekcTfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "fd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sd-ZaAvLHLrrMbq7MjTuQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "pd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "8NYU7YYBBkbVtX3n3h9C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xPHwmFt4fvCxveu9JS8ZxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "8dYU7YYBBkbVtX3n3h9C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C8RiWN9GOAWu10jfv-Iilw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "hWUU7YYBO2e_P_Qb38Ek"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v78L_ndncKY9XP2euXU8Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "hmUU7YYBO2e_P_Qb38Ek"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JbcOgGVzXu_Kl1MHENboNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "K98U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4KYdSxEIpyB6jl1rRIzYcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "u2UU7YYBO2e_P_Qb4MZd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9zCLbc3pKhchwVlW_zTLBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "eN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eFZWod3ShZzIho6L40kyaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "UN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jdzvLx5l7JUNfi9LmdMqdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} -{"create": {"_index": "profiling-events-all", "_id": "xdYU7YYBBkbVtX3n1xTG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0_0t2poX7i0kjQvasvtSEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "vtYU7YYBBkbVtX3n2BY6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tk-Rn8r6-wqzqI-bfiAJ7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "W9YU7YYBBkbVtX3n2hx_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LcLD9Ru4GLxHGOxhmBbPug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "7mUU7YYBO2e_P_Qb3L3V"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IEh2TcuBJ50L6QBQgKo1LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "id8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m77yCqhJC-TV7tjIyUjLSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "jt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nixBByAIlNzP6S-DgkxohA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "nd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SdkBKb56HsioGRxWHq-7TA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "w2UU7YYBO2e_P_Qb38OV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FbKeTovw8ZZ-HdSWJ6n-2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "vdYU7YYBBkbVtX3n2BY6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NyRf8XlP9WjHePtKdUVEyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "INYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FfJoEeFsWI41bsMAEfnR5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "wN8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AzjRpwmenH1G04gO5z-8Hw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xt8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0WZjWPo0ZsPZ-DIkV3gJrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "dWUU7YYBO2e_P_Qb3LtA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bgzswmC99T0GXpCWQr9U_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "T98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["it1M7ufrxHsYyi2peFanww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "it8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G0aQ-GR8dzIcLY-JHg_Ltg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "n98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["acgoKBxSl7O4j7VOkIDurg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "kN8U7YYByh-A-Biy4ewW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RV64TmaQgxBDavQQ3RlpBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "vNYU7YYBBkbVtX3n2BY6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Tl8-uLg-sk_bVEVT-WQP4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "aGUU7YYBO2e_P_Qb27nE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ImaxZCdsAx2D2FVy0fxyGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "eWUU7YYBO2e_P_Qb3LtA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1XV7unux6YV2hG1GouNtCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "Ut8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EO1X9bMgoknGN8tYEcbt6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "1d8U7YYByh-A-Biy2eKG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g3jLco5iklv9rjHlmxCtzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "u9YU7YYBBkbVtX3n2BY6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AREehA9nDZJasQeEH6svQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "JNYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v1g3luunQaTy0sgJ7RCzFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "WtYU7YYBBkbVtX3n4CG5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OlH3AeYcsXnih5MNDHAYTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "d2UU7YYBO2e_P_Qb3LtA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "7WUU7YYBO2e_P_Qb3L3V"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xAB5rWSdYiNfzgIdJBEyIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "at8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kvLeDZxzbcRlBxqtjei7Ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "ld8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SFu0TnwDMO-fagKeZiwsbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "zt8U7YYByh-A-Biy3enR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O3Wm5BKcHbAbJgVLxR44SQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "qN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XifASgxXQbagp8rNDbQOHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "907195111575642"} -{"create": {"_index": "profiling-events-all", "_id": "jd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "1N8U7YYByh-A-Biy3enR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "umUU7YYBO2e_P_Qb4MZd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruch9eRlQqOnJ3ZVNLKC2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "kd8U7YYByh-A-Biy4ewW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-D2Xan0xr7Iyy5r8CY20RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "8NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "utYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zYVMGADUhvH0MNK-_5jLUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "k9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ne60Rh_KLhugEPI_VMwIQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "fdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kFwQt40kRkAJhq_qjy2boQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "htYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UnZlpcKdTEmf9Jf7wgc4Wg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "sdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wYQMafKDTOM5M3m09YsCqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "u9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4FMEbu46FVTF9FY-0Ogn2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "x9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rjNVMj90Vubz91AMpodGGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "z9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T_m8wOPYHgqUseziTFic-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "3tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xkw543uTXeeuNcRX3BWzOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "4NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [3], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "49YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VnpinE4u8LaMWLZMBdXuZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "5dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JYl32o-03G4ABrH8cW9MlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "9NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wOaaLLn26MWCq1Ch7gi66A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "1dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jliDtdpQ5AYvFVIEkH2R2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "qdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OHN-NCR9tXyaSbIcRGyJXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} -{"create": {"_index": "profiling-events-all", "_id": "ctYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UbnTibb7iUG5Z59b5ewlIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "fNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lBjHl88ojwoksS7PDXJBaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "jdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xe7_zbD7BhFg8NiRYVvMrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "mtYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TBeuzjOZRDdI9h9tZfZZsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "nNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sLM1wIlvdF1g5AqGWS2w3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cyFXzJO3EyfOUXZc5VIG_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-9YU7YYBBkbVtX3n-UTI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3YiY7TtFv0EXQiZMyJynqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ptYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9hCoRxPXk-6CzoYUlUSWOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "2tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MlT_4DHKrs5Ys4kSTL31fA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rlbPtxuicfhcv7QXNW6CDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GHUuby7f7Ki-mhiDAG_3SA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "L9YU7YYBBkbVtX3n9jmK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M-oVh-FVYE_OigiSXRD1tA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "btYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-f-8xMNzAVnOWhCPzAg7Cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "6dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aRGWrc208dGoT33fGEbwGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "hNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CAMqWYZA5nX1ba5rg42kvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "m9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XAkh0cI6mI0TEjgeMQjJRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "rdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PkV0kGs2CSg2biD88r4Y4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "stYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NobRtV28TztWPphel-_oog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "tdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mY-rd4h7J7uWaPfvMpVGGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "udYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aP1YbEn43FveSGHDAeyzEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "xNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5QZMmKE4g5NoBX6HRV7SWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "99YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lKZJwz7nYfsG1OMpqNS4TQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "-9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pzPHOZ2KMa2AZ8PFjN6JMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "CNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynjt3bgLGnY61oQESibEHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "I98U7YYByh-A-Biy7P0G"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ycc5WIDSFgbOYKJJPEnKPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "7dYU7YYBBkbVtX3n7jVX"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yzwq46KsVTwibTlrmeJDug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "LWUU7YYBO2e_P_Qb79AO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xgQ5fvtkK4YCunRGORxAiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "ydYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2BrtK-7vEpxtyRvA-Da53w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "EGUV7YYBO2e_P_QbBuCR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hMnXoL28a6WRFVFuXnlcrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "DNYV7YYBBkbVtX3nB1HM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3jw0LVPxt2I2Zcn1jBHHTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "deAV7YYByh-A-BiyCRh4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rW61i2rZH66wSQyYlV4AKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "jOAV7YYByh-A-BiyCRYi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l3unjN-Nom23dUWou6f5fA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "59YV7YYBBkbVtX3nDV0h"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zKpNTqz8S7smmzjSBvFLmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "jeAV7YYByh-A-BiyCRYi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_v5AZnkwJNNAFHCBYTKsLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "juAV7YYByh-A-BiyCRYi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B-XLpCbHVWJllSfmbTHDIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "D9YV7YYBBkbVtX3nB1HM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["--ixTzVal287MaHIkMjGPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LtYV7YYBBkbVtX3nCFPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gtt2kNKLBYrjW8ZF3asaVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "JOAV7YYByh-A-BiyCxxq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wc2YJ7FTpO6RxJmi8R3V5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "RmUV7YYBO2e_P_QbDOFC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j6b-IQfEVBkMZQup2Hh2og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "mOAV7YYByh-A-BiyDSFn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mSsTbj23GsDgy2L_ys-j9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ZeAV7YYByh-A-BiyCBR8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XFCYP0M0hh6g3AUrorpNSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "eOAV7YYByh-A-BiyCBIn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NLuoJVh7KKlp7vUyDXbc5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "g9YV7YYBBkbVtX3nC1gN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kv93tElXuO9W5qREarSlDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "wuAV7YYByh-A-BiyCx2w"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XEVDehOwFGRzuyg-wdytUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "QNYV7YYBBkbVtX3nDFzR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RakQwb6TZGrlrD1xg1MS9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "Z-AV7YYByh-A-BiyCBR8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KcOiTTTgvYGRMXlpLOi98w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "7eAV7YYByh-A-BiyDB-G"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zlmxsTTPMJDp5d_OFnqBkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "xuAV7YYByh-A-BiyGSzz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["86mdF-KM7NXo0RUNJiei_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ddYV7YYBBkbVtX3nFmEP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SQYzaRy22h79zcc3oYHt2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "ZmUV7YYBO2e_P_QbGOeB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eIiWRPbXZKuww0eQLj2S1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "x-AV7YYByh-A-BiyGSzz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BjjctUOzAXO89YV2nk2Q4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "ymUV7YYBO2e_P_QbGuqP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Icjoo1-DazyjO-tC_2ln0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "AmUV7YYBO2e_P_QbF-SC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ntU9lIOS2on6fT6gjqaLpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} -{"create": {"_index": "profiling-events-all", "_id": "CGUV7YYBO2e_P_QbF-SC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9KEwJQyYCkGUHgQfZ4zuUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "cdYV7YYBBkbVtX3nFmEP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1_2jb7w-6SaVosGj92Tp3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "xdYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NKeJv4UECTJRoO7tbd8ieA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "49YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EqC6GrxSGBqn7Se_QkfBvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xWUV7YYBO2e_P_QbLPlx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MZ2ns561NqM1CIUtwsXKqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "wNYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hf9wGp5TNFiImJfF3zrljg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "xtYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n1K87iiownRMy9p9EhnxaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "2dYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["is-GrshzXGfvyrs7C84YDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "2tYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cGm2F3NETfQrvkp4OdpTFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "3NYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hD87Iq0SHAPj8Fv9uEQOUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "IOAV7YYByh-A-BiyLELp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BpKdezWYGYGHxKuRbIhA6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "T9YV7YYBBkbVtX3nKoD0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W_4xBcIc_f_s9tU-JNOc3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "4tYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["to88lQuatgOtWyhP8T7OMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "zdYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P3ialIWlnxijlxjtEz_ZOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "ztYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GlIWXDdurIjEanwPccKsgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "MWUV7YYBO2e_P_QbOP8d"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yI2e6HYAfhTSJaxYuulCOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "jWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nO9wgb1CAloL4EZkWArlWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "nmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lUwPl7LdcSnsIUgnw1ojfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "1dYV7YYBBkbVtX3nS6Gk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Eh1qER1qLyoMW0w6ZkEkLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "oWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8J86z5adi7zJtjuGctS5Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "fWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHXfHm0BU3ZDtLvmt4EIRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "g2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t6ufu4-IpYRs7bFVfd4NLw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "lWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-WmMHqB8hxsW-_Rm9LtnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "amYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QqagX4SxhMaRMlzq_9N22A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "a2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pDo331a23FHFPXYKG9i3EQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "bGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["It7LZ_q9NvTlZJoCJvT4UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "emYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3vt8oTjSVhChgy2VdDHcdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "nWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NIcwjcTUxYrOZlE8A754rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "S9YV7YYBBkbVtX3nR5Yn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Rt3hWtoW0qQnxFuClIgRWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "RtYV7YYBBkbVtX3nR5mR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a1Wk2s-gPeQ3RACuvlpgIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "dtYV7YYBBkbVtX3nS587"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FAfemJcT6DP2ZiUG7J8bPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "ZmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oPgWgw_HJ-7hbpa6_4Pqeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "iGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nay4Cu7cpfWvHwjKfzebpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "imYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aHwd23m95kbO5iH430mBgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "19YV7YYBBkbVtX3nTKb2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xVGi1i7nlJYkT__QgtZrJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "YmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mtj0z4-Jv9LSHprcHM_y6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "e2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LpjlQ5x3C5y0GS9aUsntg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "mWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AFNGR4OlXqTo-8_xvYFKBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "udYV7YYBBkbVtX3nRZKx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "K2YV7YYBO2e_P_QbVhYN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yrneF8Y5HnZdPRsa0iSPNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Q9YV7YYBBkbVtX3nWrnf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oCsk-dy_lD0KOZfnzHxYTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "4WYV7YYBO2e_P_QbWyOI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iOgvcGNEugo-q4Mte_An1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-dYV7YYBBkbVtX3nW7rm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nNScNuSTrpa5-8cxBl8OiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "N2YV7YYBO2e_P_QbWBy9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S4WvNNBIMRmvCXXO42eZaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "StYV7YYBBkbVtX3nVrHh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UQ1fVd58k2fSqjQSJ4y2iQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "S9YV7YYBBkbVtX3nVrHh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q8Eu40FpZPClw51Nc5Z0VQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "F2YV7YYBO2e_P_QbWBoF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "yWYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NRT6b-EmSsUKrT0-0ibcag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "vWYV7YYBO2e_P_Qbajgv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-C8OkGycyUxmY2Oeulo77A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "JdYV7YYBBkbVtX3ndc64"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zOiM2iaG3zJbqgtGW26o0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "w2YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GIXoZcc-rO2_QJqWdyhQCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "z2YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5uwo_M9Ua17W7BQNlGpxyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "s2YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GdQO73uJU5ltMBM9sQEM4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "v2YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b_jCta422d6xvVpqh75ZGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xmYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Xt8BX3Fxv0nw4SPWrSguQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "zmYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["toPZwdg4nGX0bw501hsszg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "JeAV7YYByh-A-BiydG8z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6bno3KY4YPf5Yv8-TeyIMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} -{"create": {"_index": "profiling-events-all", "_id": "zGYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c09KLYvfDtrLePqGFrZGFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "ymYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["apJrIWswhYE4MqQ6C-GbSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "0GYV7YYBO2e_P_QbdDzG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qfmPxWX0umuPnDn2aoiurQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "7eAV7YYByh-A-BiyiIYF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8bQaxjHqOXy8jFaY6w3jpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LtYV7YYBBkbVtX3nhd1U"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n0VugIogSoCuJazNruqmpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "TGYV7YYBO2e_P_Qbh0uD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fn2Ai3DCNmO1q3hi2Wb60Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "SdYV7YYBBkbVtX3niOWG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u4n3YuffBdoPIiHaB1UC0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "148877361383403"} -{"create": {"_index": "profiling-events-all", "_id": "RGYV7YYBO2e_P_QbmFzZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruy3OOd-IyG1ZkwpGQGBtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "eWYV7YYBO2e_P_Qbllh-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZCa7vDPVTmdjv0FBSHomYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "TWYV7YYBO2e_P_Qbl1q1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zcSEgSwv-OAVAhTXWGeqFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "kdYV7YYBBkbVtX3nmPkA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L9SYu-N9HWWrCeEAOt9YiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "cGYV7YYBO2e_P_Qbo2DE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JnSKFHek1VX4hQrcBvK6Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "EuAV7YYByh-A-BiypJjC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fvee1-CYSv6CWV-rI4TxkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "t2YV7YYBO2e_P_QbuHEg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3KY9CUj1lI4EPyAmsjiKpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} -{"create": {"_index": "profiling-events-all", "_id": "BdcV7YYBBkbVtX3ntRYQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Ql87_TD7x_m3wC-TEuP9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "CdcV7YYBBkbVtX3ntRYQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["czdRcblS6ivfa0r3vBCxww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "tGYV7YYBO2e_P_QbuHEg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nfuQzK4dMvkwCIn4oK0vJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BtcV7YYBBkbVtX3ntRYQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G0DLtHxiVxElcFIXMT-PNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ZOAV7YYByh-A-BiytqnT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cjNpri0ftTdS6gywMlEj6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "XOAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zpy6U6QwlCQnvibG2K7Iuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "idcV7YYBBkbVtX3nuB51"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h3J3yP8dE1Gp9C8Y2fBhOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "42YV7YYBO2e_P_Qbsmn3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O5lLlWeDVPBzxcQgxCRocQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "gmYV7YYBO2e_P_Qbs2tB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pdAduE6Gutq4FbdcnP42xA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "hGYV7YYBO2e_P_Qbs2tB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OGCNe0J99A_EC_qmplbVRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "U-AV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f34iYGJZ4-vox7c1m40S5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "etcV7YYBBkbVtX3ntRfi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2kXwUSA3PTDw3kyQaaCEMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "K2YV7YYBO2e_P_QbtnB5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YxRH1n6rM_I4hLiGtKmVMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "69cV7YYBBkbVtX3ntxpc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ml7vM_TA_xUcAexnu4FJAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "ytcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jNdyoypr6XrrbEBsVS2_Xw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "zdcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Lcmvo890HG8Y4rQbXwRxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "jNcV7YYBBkbVtX3nuB51"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kk6lQFGFmE5-o8l9P-PnVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "ImYV7YYBO2e_P_Qbs23k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CCqMRHd4WGpx3xij440EOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "6NcV7YYBBkbVtX3ntxpc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5BZrfAQrKtaiW6I35J5iBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "89cV7YYBBkbVtX3ntBEr"}} -{"Stacktrace.count": [4], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "9dcV7YYBBkbVtX3ntBEr"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "9tcV7YYBBkbVtX3ntBEr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzyVw9-CnV8kDbp00nDLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "UOAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Qi_HV2s76U-q22eSjxJyyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "WOAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6qn8dRThwMb4sKyHdsYIBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "i9cV7YYBBkbVtX3ntBPF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hITXE_D420gqVob6jyPWhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "0-AV7YYByh-A-Biytaeh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NZjfatQVxHkimbXA3s51kA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "MuAV7YYByh-A-Biyt6sa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B5zce_f4N45Itu5RhOF9CQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "NOAV7YYByh-A-Biyt6sa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oswz9Ug-CA3h0V4jS_UMxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "OmYV7YYBO2e_P_Qbsmir"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sjgFFvTDTMQOTVFeiCq8hQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "WuAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V6pL6H57Sh06W9eadqo0ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "itcV7YYBBkbVtX3ntBPF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bc6HNlC8Sl7niDN9L84HCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "rGYV7YYBO2e_P_QbtW5b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DBbDg0Db98hCosBBvxLmXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "0tcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "v2YV7YYBO2e_P_Qbx3ol"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ci1aB63L8kECW29ygL8YPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "EWYV7YYBO2e_P_Qb037f"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nWUjPDlBGs10DeEAyhYVTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "rtcV7YYBBkbVtX3nxil1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lE8Ul76Ux_RbEcuXBt93-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "kGYV7YYBO2e_P_QbxXYP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AjN_kWkUNJ8KmZKfGtKOWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "rdcV7YYBBkbVtX3nxil1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k1TJV5J17869y08LRTIrbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "X-AV7YYByh-A-Biy08WI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E8q5-T4I0EEq3oPd2J28VA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "ndcV7YYBBkbVtX3n1C-A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NUICzvay5gqiM1JCIDYjDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "HWYV7YYBO2e_P_Qb0XuE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H_2Gi4xXPiktjMQVPnPo6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "MOAV7YYByh-A-Biyxr4p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-89SlyV8Cy-1WAJzSWKJpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "MeAV7YYByh-A-Biyxr4p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "feAV7YYByh-A-Biy0b5D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vfg07z_Uc57UwdNH4Rkz_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "845379217314054"} -{"create": {"_index": "profiling-events-all", "_id": "BdcV7YYBBkbVtX3nxSdX"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RK5QOedYDJN8YhVo9FJwjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "ZNcV7YYBBkbVtX3nxSih"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Of21tDBsawVNvxkGbr6swA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "nmYV7YYBO2e_P_Qb0nzr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RiwkHW7QG1cujKZJxeET4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "hmYV7YYBO2e_P_Qb5Ymt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["unr_AT5uIzeOxUG_JOGaZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "-WYV7YYBO2e_P_Qb5ooi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B9mdhsnY5y_-MapRECAsRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ftcV7YYBBkbVtX3n4Two"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IqfRn2aVThGWJpMyYAGTnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "wtcV7YYBBkbVtX3n5EQ_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n021nAexdd_F-L49egYEAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "JNcV7YYBBkbVtX3n4j4u"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AxgOBo6uq7uvbQcqbAhQEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "aeAV7YYByh-A-Biy5NuM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4uPdEWYsvs4SFw1vIspTAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "vuAV7YYByh-A-Biy4NHi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r6N0xoA2ZW8gX4-YxbnuYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "peAV7YYByh-A-Biy5dxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jthhLIqVB5doOdOhwJAhFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "G-AV7YYByh-A-Biy5d7m"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cfo59YpRKB0q5iQSQJ-VYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "n9cV7YYBBkbVtX3n40Er"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ICTXUEt57m3Mefmfzh3iUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "314337526876654"} -{"create": {"_index": "profiling-events-all", "_id": "auAV7YYByh-A-Biy5NuM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M-2CQZEnf6BMvQazkJUZsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "BuAV7YYByh-A-Biy4dWo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P5qpfZ9QS6f9dFQXQ-RQug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "DdcW7YYBBkbVtX3nA11E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L-P4L1LyUnq2IHmuakdfLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "28424007785283"} -{"create": {"_index": "profiling-events-all", "_id": "79cW7YYBBkbVtX3nAFa0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gD23Bd8kEVujP5Tq3uPRhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "nmYW7YYBO2e_P_QbAKJr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V1p0cyagFSh4bcZOqHE1xA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "VGYW7YYBO2e_P_QbBawR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5pUaZNDVlK5DFtb06wgQqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LtcW7YYBBkbVtX3nAls_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ryXlsOyzYLGsXWk1fBrhYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "meAW7YYByh-A-BiyAuya"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rkgBP4sIA5dHtR_5QDvD0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "562164997202330"} -{"create": {"_index": "profiling-events-all", "_id": "-mYW7YYBO2e_P_QbBKlb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KYi5gWT8f3sgP5wTTol1PQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "n2YW7YYBO2e_P_QbAKJr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ww_KG3DMJJ4ZQFU4V6lPqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "ztcW7YYBBkbVtX3nAVhI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Wc8cD-xlBFleqsp-xbM4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "LdcW7YYBBkbVtX3nAls_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lQB8mTpjqxNXboFLF_ikTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "2-AW7YYByh-A-BiyAu7q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wKd3bA5CzFfK_BkLhBHABw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "52YW7YYBO2e_P_QbAKAj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "8OAW7YYByh-A-BiyEfxY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GITcXcM5OZJEsFYPj2RnOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Y2YW7YYBO2e_P_QbE72B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zQ1nyOGbOtedL7gx4fO8XQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GGYW7YYBO2e_P_QbEbqq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vyzbd-n47muGD1CcY51iSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "qWYW7YYBO2e_P_QbEruU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7ut68c_tuuoqFzX7ruLfoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GmYW7YYBO2e_P_QbEbqq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["odxDK_3zvNwVZ9HE8UBEtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "b-EW7YYByh-A-BiyEwXO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Wx1SQ999fU4_Vx8sVoOw-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5OAW7YYByh-A-BiyD_jF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rv7vsqjWP8SoKG0Qu1ylfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "q2YW7YYBO2e_P_QbEruU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uPfQx41sGpWXSF6wjd1f8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GuEW7YYByh-A-BiyEwMv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UwLGDv_kxs9iZbW8xcSUiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xtcW7YYBBkbVtX3nFWpl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["en13QzIrjXnNEN-2tQMMJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "eNcW7YYBBkbVtX3nEmVM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzyVw9-CnV8kDbp00nDLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "kNcW7YYBBkbVtX3nFmxw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DAQHjXtThJ1eaHLevfklmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "K9cW7YYBBkbVtX3nFGl3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Ig2MzPdh_XK7em8mWoJag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "xdcW7YYBBkbVtX3nFWpl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n5uPBDEBKL0cPVfOG1jyTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "j9cW7YYBBkbVtX3nFmxw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "ANcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oKjEqCTMwkPftp0JIk3zEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9dcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["akR0ajfGkZj2z5CmqvQfvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "RtcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xWQBAJ7ncYkjoV_tk9YLSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_tcW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T2adJ0VUBNmWRoosWSssPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "9eEW7YYByh-A-BiyIxQ6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6OaUumRb8P6q4GlOGK0eGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "Q9cW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hphMgjf8tLvtIOhJJeMEOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "T9cW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3tO3AhnrBAiBOTlaDL412Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "UtcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LTTi8ZBWlyKqRGwjukTflA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "6dcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eHad6fXlNZDDIqYPS_NA_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "7NcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0j1wiZ2zi9t7EenFUwZ_Qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "8tcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PkUlg8ipxB6y2tnHWbLlxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "-9cW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["muSA4-3A5tqLjcddDaeDBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "_NcW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-G51CEezafd_J98dgV5JgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "_dcW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T5Cn4ZcI85w-SXFfrytVPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "BdcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UoCOFE0Ha3XaxXZbhILYDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "B9cW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uQC4_VLdsRdPOY_eYCLgyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "CdcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lQw85LEW4DpLukB4K3A6Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "CtcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E0PbyjdVN-U5rJIxbRMmXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "DdcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fn0ZK2-ZIUvfytO-QISHyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "EtcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["05r6Ccnm9nLiv5rAFI61BA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "RNcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZpjYqKFeza_P-0E6-9HQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "D9cW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TpDEzWoy6rEMZYVF9eYCTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "TtcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_9EUaNCl3IuE7tIxwFYMuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "5tcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynwp47PusWaUtQGudVhz4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "A9cW7YYBBkbVtX3nIHCT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Tq6Q7NqNkBok1R0-y_UPeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "sWYW7YYBO2e_P_QbP-Dm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CHeythk0HZH6YmI9vQ5rRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "8eEW7YYByh-A-BiyQy5a"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fay02h057oipAap2CpcvzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ROEW7YYByh-A-BiyQSqw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rh6dkbq8WqrY7XSMixfetg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "B2YW7YYBO2e_P_QbP9-R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bciyx_9NZlf5osbnTw9ncg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "CGYW7YYBO2e_P_QbP9-R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7755LNVrLbBmdM_Bp6XCxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "h2YW7YYBO2e_P_QbRObI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "r2YW7YYBO2e_P_QbP-Dm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x_C9pMCGlnFGRtyqng1scA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "ddcW7YYBBkbVtX3nQo-v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jlfx0CU2a7x4kprrtwg64Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "lOEW7YYByh-A-BiyQzHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JkCyXgxX7cEcni0HaLkYUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "umYW7YYBO2e_P_QbPtv2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BN1QyTRWZUfNNPVd_m-f5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "kuEW7YYByh-A-BiyQzHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GXIswAHFAGNbG7pCJXH-2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "huEW7YYByh-A-BiyPiek"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "zWYW7YYBO2e_P_QbQeID"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ppE0asB2Tjvm1WVJwx6bDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "5WYW7YYBO2e_P_QbUOsU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yqNwMmnv9h-z0-i604hZXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "UGYW7YYBO2e_P_QbUe1z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-JEJOChfUhn_oksa05rgbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Z2YW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2IwLSNJXYCXB5L0gWZQiOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "M-EW7YYByh-A-BiyTjpF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8e2eKxLMr45T-uq51LWiRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "TmYW7YYBO2e_P_QbUe1z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["trg5FG0_Dj2SBeJw5MOwoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "72YW7YYBO2e_P_QbVPdI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LdtY_NIqhiA3emudSaygtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "B2YW7YYBO2e_P_QbUe_C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j7OoU3oXSY3AFf-whF_CWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5GYW7YYBO2e_P_QbUOsU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VXEIZNsetkTnWe5kx41b7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "B-EW7YYByh-A-BiyUkAI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H6SfMk8pl8KEOh7Msy9oRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "YmYW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YiqN1eguj9w9NAvkPJxo-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "vNcW7YYBBkbVtX3nVJ4L"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t5iMV2bxdd31FJyizPOYCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "HOEW7YYByh-A-BiyUD3c"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mAZtQho57bjyTMlusRjj_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "bNcW7YYBBkbVtX3nT5d5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K9LDD5AZV4XmqBf_IoPXlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "R2YW7YYBO2e_P_QbT-o1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Wi6N3XBGb2fuENnxnEyLLw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "KtcW7YYBBkbVtX3nUJll"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w_y9NqchzoBrOm_UtCMj_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "xdcW7YYBBkbVtX3nTpXo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wGWkKDGzXSSBbLkENAOIkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "HeEW7YYByh-A-BiyUD3c"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "u9cW7YYBBkbVtX3nVJ4L"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ifPg0tbOeATgXu54GVLHjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "beEW7YYByh-A-BiyX0Zg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y9yOjEX9YsHot-nonRkNzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "RtcW7YYBBkbVtX3nX6G1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AidY4CO5JNQB7gWz7IQBaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Z9cW7YYBBkbVtX3nYajE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["whMMD-Ig4w265V1dioRGrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "AWcW7YYBO2e_P_QbbQfF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gO3h9sz_Pp88e_MYvoWQhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "5eEW7YYByh-A-Biycli0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Ql87_TD7x_m3wC-TEuP9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "i9cW7YYBBkbVtX3nf735"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iKhp4VrunMdJZkEZm9IkqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "FeEW7YYByh-A-Biyclc2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zrel0O8Eu19Ixn8b1A7RrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "cmcW7YYBO2e_P_QbfRJk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V8737ugipSYB_laFotiYpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "mOEW7YYByh-A-Biyf2R6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rrfjqA-Dh9U3GF1qMdtRQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "G9cW7YYBBkbVtX3nfryk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RWHF3OwT21IPak-nIUzKKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "jWcW7YYBO2e_P_QbgBWH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ic2LVsuiX2BndjGY3s8emQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "PdcW7YYBBkbVtX3nfbnk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q0wzD6Wsaoym2okQ8aY53w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} -{"create": {"_index": "profiling-events-all", "_id": "GtcW7YYBBkbVtX3nfryk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Xg3Upyi105Wyx-NTECB2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "RuEW7YYByh-A-BiykHvM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzu7roeVjuX8DIGpBc0otA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "0dcW7YYBBkbVtX3nksnh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mTpUz_E1PPzj0HR92ABMpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "FuEW7YYByh-A-Biyj3ir"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WBHQM4NBGzoZVLedZma7Ig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "neEW7YYByh-A-BiykHkK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["txUH5yrbhq1IXgpWcJMBxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "yeEW7YYByh-A-BiyjG3E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ul5WCOLuBGGX66Anz_J-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "XuEW7YYByh-A-Biyj3ZQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uaiZKrXoT8VGJLZeMjATrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "nOEW7YYByh-A-BiykHkK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SFVwB25B3ZOzmrFYMtl7jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_OEW7YYByh-A-BiyknyA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-HAzLlWL3fwYJPxGXqYsZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "yuEW7YYByh-A-BiyjG3E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aRl5mcquqOzq3HPlHFumow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "yOEW7YYByh-A-BiyjG3E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HCpiBj8BD8aEJWFEDHXgqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "zdcW7YYBBkbVtX3nkscq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dF3lN3ea4am_7tDjMTNP6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "6WcW7YYBO2e_P_QbjR7F"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TEYPXE1OBEat8qmRauzsiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "4uEW7YYByh-A-BiyoYqh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wDcbOGXjyzRDEWJtXUJ7rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "TGcW7YYBO2e_P_QbrDkF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iVK1cbIgag654ehUa-HUNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "QuEW7YYByh-A-BiyrYsf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["86WQcXcUxaHfJUCEplsqoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "UGcW7YYBO2e_P_QbrDkF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fHrd9ZU73jKyeFVMnONXJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "F-EW7YYByh-A-Biyn4hj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bQ285knnYYuMww0WgMbI2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GGcW7YYBO2e_P_QboDaE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fVY8nef_n-I9Q52QhyCFfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "zdcW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nBUbTpmi8j18IFjmOSwgBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "lGcW7YYBO2e_P_QbnjHj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Nq7kSiChsqLqIUaoOI5SGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "FGcW7YYBO2e_P_QbnzMm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5T5ZLDbv0qRIOWXAecPJiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "k-EW7YYByh-A-Biyn4n1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9XaUnPPtgxfYR4iOYVLS0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "lOEW7YYByh-A-Biyn4n1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ND1k9rOosEcGzLPWnPdgVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "oGcW7YYBO2e_P_QboDfC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeLqMJxxpT2jsR6Xt4zqGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "jtcW7YYBBkbVtX3nodQJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["txZXHAJurNaMIlI0kux2YA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "j9cW7YYBBkbVtX3nodQJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tVG5BmNboq64Jjq3eLhTAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "V9cW7YYBBkbVtX3noddV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h0lEtzKJzcNxepmOT3KRtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "5eEW7YYByh-A-BiyoYqh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SFn-AE4FVjnPbzGVfeaMqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "42cW7YYBO2e_P_Qbojgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "5WcW7YYBO2e_P_Qbojgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EZ2YsSTqh3amiqmt5jrW4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "S2cW7YYBO2e_P_QbrDkF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AxLFvg4n6uQItdMk3gw_xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "O9cW7YYBBkbVtX3nrNlH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZUvWAqmAXt-dgxjo_MjchA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "hdcW7YYBBkbVtX3nrNrT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZKNzQAHHe_cNd3rO-y4iLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "9NcW7YYBBkbVtX3nrdtn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sl8hikPZI3gmfoj4I-xFMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "GmcW7YYBO2e_P_QboDaE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xZcpIqjO8GbOGxvXYAifsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "pOEW7YYByh-A-BiyrYy7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["naLB5wSXMG6mCbQGVr-m2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "ZeEW7YYByh-A-Biyro4M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4I-ntmDjAgUXJfwbuBJNjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "Z-EW7YYByh-A-Biyro4M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6US40l27xGVk9xU0Gj_K9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "TmcW7YYBO2e_P_QbrDkF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lWGBthO0cXLKT_wGxBJl5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "6mcW7YYBO2e_P_QbsUPY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Va3LK8uFodhrLyRtybcuhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9OEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["531_Sc4IW-g1NnLnDZ_hAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8uEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cAz0gk7brP4PWna-bhJGIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "A-EW7YYByh-A-Biyspsk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K-Ytw62_KLFXRAkcUu6qRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BuEW7YYByh-A-Biyspsk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OlDB0giXI1NsaTgwfP9dqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "qOEW7YYByh-A-Biyspx4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Hnpa0jil7FRY5KNbXbXjyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "7-EW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "--EW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["41RJH9BALozcwHa5Gm2tSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "AOEW7YYByh-A-Biyspsk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cgbUcRDTpEjDrsHsz7--9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "844449768587301"} -{"create": {"_index": "profiling-events-all", "_id": "69gX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UsU0osaCNAmSunlpUc3Ozg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9WcX7YYBO2e_P_Qbh_pU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Hpl7qJJwhIXHDYYdvHuzLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "kuIX7YYByh-A-BiyiUZS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xqMKJtcmKXbh2cms887n-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "lGcX7YYBO2e_P_Qbh_zn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l_LfIb1A5Uh6akK6C3GVnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "5OIX7YYByh-A-BiyiER2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_AVql7KXMLg1O-JULbNgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "VNgX7YYBBkbVtX3nin7J"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9i0d0snq2LSo5WLubtd6_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "V2gX7YYBO2e_P_QbiQGT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eX5L_3abHLPWPQF-_snJfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "4tgX7YYBBkbVtX3ni4Pc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HnIE-9MlTVx0Ab-mshynaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "7WgX7YYBO2e_P_QbjANs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CWAxO1Icd_0_-O3aV3iUhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "k2cX7YYBO2e_P_Qbh_zn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ze3jQXtgwNkR6O4a_Nqg1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "5uIX7YYByh-A-BiyiER2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5tbIu8B2wKAudkUXTqytHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "0NgX7YYBBkbVtX3niXvV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeLqMJxxpT2jsR6Xt4zqGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "L-IX7YYByh-A-Biyikgc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O9ef8dRV4l_MugfvQ0rYYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "sOIX7YYByh-A-BiyikmM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7Swiq0tk_yociUJzvIr0Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "6NgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3dzkAiyt1YVI-og1A_HKMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "9tgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kJzVoueJRM62h7Ahq8M6SA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "bOIX7YYByh-A-Biyi0uU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BeIW539VCuG8AbY5zkzibA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "7eIX7YYByh-A-Biyh0Kg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pzJd5yzlB5VRPpGvz2d_9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "WGgX7YYBO2e_P_QbiQGT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XC5SywLBeX1PQ5gC8i2e8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "U9gX7YYBBkbVtX3nin7J"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RGoTgpaa0vsxWtWSGraFrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "3NgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dZVhEMwoIzMGD6Fthzhnhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "39gX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Egb8M192QRouZ1YPjNwqmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "7mgX7YYBO2e_P_QbjANs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HFDZtj7y0Bw2k96K0Shk-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "8eIX7YYByh-A-BiyqWJo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5DxLQCjm2m1lyk1iyQve0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "rNgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y9X7gkveuiKIarXoPu9Pow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "YeIX7YYByh-A-Biypl4D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Wv08CwSYSbgcSoEXkrZnIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9GgX7YYBO2e_P_QbmxAt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_3hLenFHyAFyb6H7VmWWGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "9WgX7YYBO2e_P_QbmxAt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Os-4RhVkjeRwXnMgi8sCPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "r9gX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w_gVd-AvWZmQ3WMy6t6XAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "72gX7YYBO2e_P_Qbpxl-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hdc8gR_Y8kDXnRgAlQGfhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "8GgX7YYBO2e_P_Qbpxl-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DWfScUV2_2OCeYx4zWNovQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "ttgX7YYBBkbVtX3np5HZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3QVerrpALkFsA-z-U___AA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "emgX7YYBO2e_P_QbqRsl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g4wOsBXMok0GNueh82GdWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "JtgX7YYBBkbVtX3nqZao"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["avHlGvNfTVzeaAgsVgxB6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "ouIX7YYByh-A-BiynF0B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TuPnIZnhjIAYjeiVxPyaLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "711845992008202"} -{"create": {"_index": "profiling-events-all", "_id": "buIX7YYByh-A-BiymlgR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mIwFBWh1v3kx8u1FeFlbIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "seIX7YYByh-A-Biym1t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R1wuCeOIa20fh-d5eRRVFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ZtgX7YYBBkbVtX3npo-z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["92cNuiuQKW3x7lS40O9Vmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "b-IX7YYByh-A-BiyqGFv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-9_uQoUPE9EW73Ys_J5m3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9mgX7YYBO2e_P_QbmxAt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AIxtnf4ZytccTyNG23fGog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "s9gX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qpqVuz6fzTFpU75L4AxuKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "Z9gX7YYBBkbVtX3npo-z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["slgUvSTKxzBwaU847WWWjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "y-IX7YYByh-A-BiyqF8h"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pxt9G8AauuDa281-G4uTWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "844449768587301"} -{"create": {"_index": "profiling-events-all", "_id": "KmgX7YYBO2e_P_QbnBSM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "nWgX7YYBO2e_P_QbphZT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "8uIX7YYByh-A-BiyqWJo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Q6w1HKYFAJALkbhmH-RHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "G98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zOolLKwTF6c0fdaMu4zrpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "JN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5lorII3BQFhJxreg2edqjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "898U7YYByh-A-BiyusJq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AdV0WYTy4PSs_A4me7FKqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "-t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G9UpR2U-Z66umiXz9ZVDmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "lmUU7YYBO2e_P_QbyKOD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UutkxbmCiH9flxeQtiJBtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "It8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zhkr7FPwkPtUyVPXWQDkzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "F2UU7YYBO2e_P_QbvZyb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jwj9IGMM0jWZjOAtjE9d7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9N8U7YYByh-A-BiyusJq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0-Jsd5mQCWnt_-lPVIShHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "r9UU7YYBBkbVtX3nu_4f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8vj8M1UtdEZK08xJh31zdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "Id8U7YYByh-A-Biyv8mc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JnBTQbU2oNTyfQ4d69ZrwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "-d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XgUh4zP6_HxjUL-1XhJT2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "A98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jedq9pa2af0dW7deMw2jFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "BN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lncubcdiqHSYqwQrDvrkCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "CN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4muA3nXQ7wRP5Hb8eGEGZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "ntYU7YYBBkbVtX3nvAI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4ieFm4DhmWNYMrTtIZLOTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "fd8U7YYByh-A-Biyvcco"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JzDNpxQnzmRTQIj87w61bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1tBKNWCTouiyLWmoA4fnhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "KN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IxM2ggcVNlY2O-JpYzPXTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Kt8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ijh2g5A8fvLXjeEqDoDNpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GN8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KaHxjoiTM1eQ6lx1DMgvTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "l2UU7YYBO2e_P_QbyKOD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YZ6XTwSTsk_RRpTARdTTcg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-98U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K9LDD5AZV4XmqBf_IoPXlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "4N8U7YYByh-A-BiyyM0P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8Bx6QFlsny3BVfw-E8xnEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "u98U7YYByh-A-Biyyc_A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aAPXh-Ln7dsyIue7-chOWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "NtYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PDpZZR8qlUndvJSVZUQGfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Gd8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_3rOpJzGPS7tGvMhQ90uyg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "ndYU7YYBBkbVtX3nvAI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BYfLgwssJN01WD8jqeu3Zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "eWUU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mjmL0Xb5ExHKk3gY3SfF8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "IN8U7YYByh-A-Biyv8mc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y8na3ceZxIiFeB38FaoyuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "4t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HRl0p2QhnLJg3zvMHmkZqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "6t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FN29r4iQqyKpKryFAHklNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "7N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B5QOVChXLsrqENbKSsGj8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "8N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["an9gjQnke-IYWAGoKUs5KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "EN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j_ZkdluVAC4IXHAbI6Pmjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "Ht8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XQeY0u1F2xnHmZQvstPXhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "Jt8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uIMM5HqMkglfbJ18Ml0GlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "Ht8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g0TcViARYA_NarblNdiqUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "lWUU7YYBO2e_P_QbyKOD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OxVykxLrjAY-XgNQtErYDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "KtYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UQfZAh-DQHDVJDhrdQQeqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "DWUU7YYBO2e_P_Qbvp4b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["whLFrJ0C3L5ID9FEmIKmhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "7d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FYTaEZ21SPKDnDxndpockQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "AN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hyslIhEYrdCY7Y2kR4LC4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "Kd8U7YYByh-A-Biyu8Z1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uN-YY_i1gvVmqACLDXQMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "LN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mwUpd0imVLBffXq6CKbujA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "6d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NQzAAYItWlUR8Wx0iQghsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "398U7YYByh-A-BiyyM0P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RLske_-faZ7wKdYb3WXphQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "nt8U7YYByh-A-Biyy9Ef"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "fWUU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PVlyLKXyb8x0uLNYAPexSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} -{"create": {"_index": "profiling-events-all", "_id": "9d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7I_OssEt4qZsJxTrqNd4gQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} -{"create": {"_index": "profiling-events-all", "_id": "Ft8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8h10fs0ddiOcVgnyW4Tl_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} -{"create": {"_index": "profiling-events-all", "_id": "Gt8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jsGoGFJd_KwHDVlL9hbdSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} -{"create": {"_index": "profiling-events-all", "_id": "0t8U7YYByh-A-Biy1-BK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["67AU8cgiv2OiIR5ejtdmRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Vt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zQ1nyOGbOtedL7gx4fO8XQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "gt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BDM5FGocWkrUljGSyVLiPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "iN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cW8t-wBFVbXPMN_YH8nydw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "mN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j6Z5oRx4O63IFM67ZJuuJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "0t8U7YYByh-A-Biy3enR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["28hHkhN7jPc2yLRpJAYfPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "x2UU7YYBO2e_P_Qb38OV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nWUjPDlBGs10DeEAyhYVTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "b9YU7YYBBkbVtX3n2BjO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Xd2WZFqlgKVx01Ohrr1dQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Zt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["beuv2u9oMMhwQHihFlStkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "rmUU7YYBO2e_P_Qb3r-v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bNNll9gtsumikBQkeP5zYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "0N8U7YYByh-A-Biy1-BK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K3Z7Bso8_acxSu6Vxdfbjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "wt8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HcQSqbXhDJcv-dVT41RQ6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "zd8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EruDr_ih7XLGuzv_u8mEQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "0N8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xWfVfitdsTIFX4dhe6CakA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "72UU7YYBO2e_P_Qb3L3V"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H2vgTPpm8BMcHhsujCAFSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "WN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mdw3BiJM92OOtEHXgQMjkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "aN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-tJlKr_KhSmekGKYSh387Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "bN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2bYjKMpMW5W361PJ9SbEqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "cd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XmdrI-QkL3G1KMx-UT00Dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "c98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3wmGM9d6YoSoIyBMvtxpaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "ht8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7lZc2qqwTOxuwAsl_tPb5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "jN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qDosqYNWqMjeDR-l1Za_TQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "kt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j5hG8KKglQrQ3G7KSXA2QQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "od8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Uz66tx2I5JTSXA6CNdimw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "89YU7YYBBkbVtX3n3h9C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Nr_8hMt7lL3ObaXhoWtKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "9NYU7YYBBkbVtX3n3h9C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzPOzTEXdQzPan7rC__T_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "r2UU7YYBO2e_P_Qb3r-v"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uWH1YJMiRNhCnBrl6NfCMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "h2UU7YYBO2e_P_Qb38Ek"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ydmNLaPNVcV_2d5DkMu7ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "LN8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G81V791m7uA9YBPgoQEn8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "V9YU7YYBBkbVtX3n4CG5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uh-jwsuxuUYFlAJ62euRwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "btYU7YYBBkbVtX3n2BjO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zcGz4984lW_7ADxWvMJl6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} -{"create": {"_index": "profiling-events-all", "_id": "cN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ilIjnGLprZJBf-XmwKk7UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} -{"create": {"_index": "profiling-events-all", "_id": "lNYU7YYBBkbVtX3n2h7w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["799eAdJjPYE03w7zg0dmIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} -{"create": {"_index": "profiling-events-all", "_id": "xtYU7YYBBkbVtX3n1xTG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TQ4Z-jiPS9ERtxr-dNMVPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ItYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4f9KZiG-idTZu0O-sRt4aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "wd8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z00iShXdXFb3_lRNuX4ZQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xd8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NXFmJwy8bX4T3TBtUWzk4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "dt8U7YYByh-A-Biy3edS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rG147l1B0EGMuLS3fy86lw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "mt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ACT7gU2GPCwMpgWEOyi5HQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "nN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aUWb9UKO7qICsUy_ccfdaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "o98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["val5lb3yDclirfA_QdK7Bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "vWUU7YYBO2e_P_Qb4MZd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["96g1R53V5QyPuXTUHSgw4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "WdYU7YYBBkbVtX3n4CG5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6IN4ndcB5qmSJYNzvpVbgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Wd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2WgjTSIQCP6U6Q-JjUia1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "dd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WJtwE6C4KDOaEo17zelbiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "m98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1W94d88mnm9x39d54400ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "yt8U7YYByh-A-Biy3enR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kqSFQUO3VSzNPTrQP20mfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "rWUU7YYBO2e_P_Qb3r-v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7RMgnGzd9pjT-Nh8jG3zbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "lN8U7YYByh-A-Biy4ewW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vSHgan70C0hkYZy36mxqBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "yN8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F_APHoeVxOWNqwDMoBgBUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "eN8U7YYByh-A-Biy3edS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eZEQXM7WYfQLn99tFhWnyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} -{"create": {"_index": "profiling-events-all", "_id": "k98U7YYByh-A-Biy4ewW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ROD9hyXKyG1xyIp3eNp24A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "b98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Y5-o0gkUhbrP54-KmzBRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "k98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jxx94k5bF0AyU24TvMCnFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "WNYU7YYBBkbVtX3n4CG5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kCi3XJtF81OLZhjrXcqzHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "098U7YYByh-A-Biy1-BK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JnSKFHek1VX4hQrcBvK6Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "dmUU7YYBO2e_P_Qb3LtA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wVxfeW31BKBlFSOTuEq2vg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "Zd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ryfu5a--oA0HxtDhUCtdpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "j98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nsjTmLeWgJZGEXKE2bGYPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "lt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zLdPokHD2Z2SVrMjPVZbgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "xGUU7YYBO2e_P_Qb38OV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HSqoNRZZIrgV8Hc05ks5og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "f98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y3XyMSK9tPI3_U0zY2ps0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "rN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yPsp3gldnYluQE1Il8N2GA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "pN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GzMkMHSbJB6nV1XM7_SYKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} -{"create": {"_index": "profiling-events-all", "_id": "7dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WvJZCAk7gVxCX3Q5TFv5cQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "eNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pXACL2-jPjXQBG18kGP3iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ftYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zyPUjDErN9KDQ5m99X0sAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "h9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ePjKQtLllV_2B6Oq3TJ35Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2KQ1xLodxTiqHmDQYXbmJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "V9YU7YYBBkbVtX3n-UE3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vBuMYbV0eX1rnNuqJvyNWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "NtYU7YYBBkbVtX3n-UN7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tnEGCyYPY-9Dy4jeOy-iBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "It8U7YYByh-A-Biy6_ul"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UAgkJzf4StR0guQvtrxwfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "qtYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fZs8SW_-AMd6brkAp6VfIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "edYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qZsYEzt_8lrTbaZDB8kywA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "itYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DWfScUV2_2OCeYx4zWNovQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "mNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b9bN4B0y0HQxr-zG0AhOUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "otYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IoJlfiMVuBuG6DfHS2d0IA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "uNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-PWxSiTmjhtgtcqWr-cUtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "zNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SjE2Ni6CAQyLI_0LOuh-XQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "zdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Sx2U9dpgshF4QL4T5gZ6MQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "ztYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["40e3Tg8yjxNKy4P6BuWO-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "2NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WNKWldEDEQV0rRa3BHpz0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "3dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iJXWguOQwBM8DxQXGl57jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "-NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hLX1mOZZ4FB_ggjZCD1W-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "BtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D9uEZQLKh57x4BtzNglutA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "0dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ViC03sje9QXvOY-ekeiy4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} -{"create": {"_index": "profiling-events-all", "_id": "i98U7YYByh-A-Biy9_8o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pFwqiF8mGnNqqISBiOraPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "hdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OoP9hAiZoGUDEMy64jET7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "1NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aFWcqgahvwzy1xUY69A0Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "1tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GHgSIcaSuS6XNpC67kiXTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z6VzC1_Xu_H2TiDjzjPdmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ANYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lo1FK0cOT4jUm2Qr6L-02w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "lNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-B1OuisGq94rIWOaaG-QZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "2dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IDJuAvr20i1MdkeJctVLcg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "4dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PKfrUz68RAX4mdNriJ73lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "6tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dRBdj6fqBaNFs9qEBG9D-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ktYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y8nvfrvenFH8tjnsQqRmig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "BmUU7YYBO2e_P_Qb-NOw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VQ0HdY-PXTuyjNIK6sm3RQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "bdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ju1Y8z3O5D2e-y3UCauHLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "6NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["66YyzrRAaK1eflQF_FbcBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "-tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LA1QfR7E7BQq2NnqmNTjFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "AtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kks8edTwYqrUkhTSOKMQMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "B9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["amHFhXVq-o4KXgR6R1r-Zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "ldYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "_tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LpjlQ5x3C5y0GS9aUsntg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "jdYV7YYBBkbVtX3nBk4o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JI7mG0vgGSTA2uia9-1jSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "q-AV7YYByh-A-BiyBg34"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["boIzddYopai9UjphB37nhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "PtYV7YYBBkbVtX3nDFzR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YEq1JWlDmlwTpiy46PgDqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "m-AV7YYByh-A-BiyDSFn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EiP_fqJ5eainxyo48aQcOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "dOAV7YYByh-A-BiyCRh4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r1HvPKUhWfo1c_dGIcqb1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "kNYV7YYBBkbVtX3nBk4o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fdWGYIeNIIrvl5yNTWQFCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "DmUV7YYBO2e_P_QbBuCR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "F-AV7YYByh-A-BiyBxBv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wUfvGFMhsPYCiR2iraE6yA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "_NYV7YYBBkbVtX3nCVTP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PwiymugfyWZ7JNBkVfJTzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "gdYV7YYBBkbVtX3nC1gN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fhL78fB6ht38oYP9R7oGng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "7-AV7YYByh-A-BiyDB-G"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EOO-biRc_oXEIgdrmE3Yfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "5tYV7YYBBkbVtX3nDV0h"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T_m8wOPYHgqUseziTFic-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "nOAV7YYByh-A-BiyDSFn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZvW02WsFdrDb2uuQD6AqIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "JuAV7YYByh-A-BiyCxxq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Lfg5-StCmQRLLhdxDtBcFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "OdYV7YYBBkbVtX3nC1r7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lAXP_bDkVl41XjIqstP9YA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "P9YV7YYBBkbVtX3nDFzR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pFOpEBwKNMGOTnHzKtdQnQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5dYV7YYBBkbVtX3nDV0h"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1StoQg7J8aPbo68sE2e2FQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "FuAV7YYByh-A-BiyBxBv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7dZ7-R85Uk0iMtgooj6v_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_tYV7YYBBkbVtX3nCVTP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o02UcgaTacPmYjOwwPOCJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "quAV7YYByh-A-BiyBg34"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RNwCIBshkIMvUtAdsIyUXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "168532957631583"} -{"create": {"_index": "profiling-events-all", "_id": "jtYV7YYBBkbVtX3nBk4o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P_F4N85n6ygrRQ1ObfKSJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "LdYV7YYBBkbVtX3nCFPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VrBz5ulfwdPTqnMaGIpcBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "qtYV7YYBBkbVtX3nClae"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MWfc397MJFynjmcnyAtS1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "gNYV7YYBBkbVtX3nC1gN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XB2RBcspSf2rnOrxNGF7Mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "w-AV7YYByh-A-BiyCx2w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aP1YbEn43FveSGHDAeyzEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "O9YV7YYBBkbVtX3nC1r7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SsB_u-p6-kmstFPsLe9XQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "D2UV7YYBO2e_P_QbBuCR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DU2gNL0dqNkZNb3bXXutHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "rOAV7YYByh-A-BiyBg34"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TNDnc_BbX-bZvBLeZE3IhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "NGUV7YYBO2e_P_QbGelA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hSPX2ocR_Ka7dmSG_0BvUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "MeAV7YYByh-A-BiyHDPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8T064malfbI6yltLIiW-8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "c9YV7YYBBkbVtX3nFmEP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RacUKMIrwwT1y_qD2hDfpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LeAV7YYByh-A-BiyHDPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pDq0KLS_CVlPqSda6JpGZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "B2UV7YYBO2e_P_QbF-SC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OLDYY6fj7GShTOkVXzydtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "28424007785283"} -{"create": {"_index": "profiling-events-all", "_id": "MOAV7YYByh-A-BiyHDPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UlF3sWH6N3gcr5OTBdjCWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ZWUV7YYBO2e_P_QbGOeB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ch1MSb9N9bTihIUdmamkLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "yGUV7YYBO2e_P_QbGuqP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uVz8NwCzYiroPS8zol4cYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "x2UV7YYBO2e_P_QbGuqP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["26eMbIowZ7RFzGdD2uFyMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "wdYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H2NuFpd57ieo26ztmYwFIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "1dYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PUKA7gaaH9QtcEUOhnkXBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "19YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LadRZ9nrWUWtpCeBiU-rCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "pGUV7YYBO2e_P_QbNfql"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AqW4O0lT_YcKP7qw6bzS2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} -{"create": {"_index": "profiling-events-all", "_id": "3dYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7WB2ChzRmsP63O7cEov2qw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "kGYV7YYBO2e_P_QbOALl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["53PCQ4S8hGae7xDUxkptJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "ydYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yLwY_MOsydDU7XEbyC_1EQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "y9YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qVW6zqZFUDf4jmIJtsdFjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "5dYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_NYV7YYBBkbVtX3nN4vV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zwhp9WeyhfaKSBb1ToTrGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "09YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f0fqU4EglvDX7hh3PMNsxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "1NYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u6l9MuBKqlPDG0c4BbLwSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "2NYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o5ViqVqqhAWPiT5DHT3ocA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "-9YV7YYBBkbVtX3nNolA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8dMyIgFlKWEMYc0z_PTTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "4dYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0JrvqOGSV5sSkPZVHmV-1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "v9YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XI0a5uYy8WGcbycZNNF9pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "xNYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TaW85eSCND8M8sXCtd--5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "ytYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "29YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "-GUV7YYBO2e_P_QbNvuJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pNtMkp20SCCEh-TxrA7W_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "7-AV7YYByh-A-BiyOEia"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "UdYV7YYBBkbVtX3nNYhc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TNDnc_BbX-bZvBLeZE3IhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "V-AV7YYByh-A-BiyRFH8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_4SSZ-fDRU6dq-MfFWxOng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "bWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bX4y30xaW5TGzCNkEXdvXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "mGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lBfh2StrmCD3agR-LjX8jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "fGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "otYV7YYBBkbVtX3nRpQJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LiSJgYaS_IuBq_4ymnNLrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "vWYV7YYBO2e_P_QbSRHb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b2RSnmXvhjCRc5PWjsdxAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "b2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hicFPnqcgI-QATM_d1RRhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "h2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "jmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_zNN2R6gCnlCmrGYYAK4_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5uAV7YYByh-A-BiyTFeK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wg4weiqhx4cQSZpZOkpJ7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "aGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YtaoZwIzTcxhkVhNaJ4ybg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "cmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a3rA5HVT6PyGXCEVq07mnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "hGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-P0Vso9aXjNnbKarUe02Qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "hWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuzNOG3t4OkPYTKYBPqKPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "jGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G9i4bcor3bCmUHnFwLkINw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "oGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NnEd2rdWIzQh3lzvczhnrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "EuAV7YYByh-A-BiyRlNc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9be6nEEjsc2_ia_Ui8XKOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "FmYV7YYBO2e_P_QbSA5P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_CuNkg8IjplIBsYDC3MqZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "fmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OJQp-pLhhKtUabxqe1o08Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "k2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7I7fZ1n3NXikDC-SAVTDhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "ZWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CFNczi5jgqdp9YJbvPCa9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "gGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fFdYACc4s_4eKR1XWC7l8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "i2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-KuDdfusItDSRJVlZWeuIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "n2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "9uAV7YYByh-A-BiyVFzv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JrtGgsej_ZvMvypTCZY9mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "KOAV7YYByh-A-BiyWGBd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YoeXFhmTkr3_l-fmzIYzFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Q2YV7YYBO2e_P_QbWSCB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kJPjpnk4438S9AxhBdL7Og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BmYV7YYBO2e_P_QbWyI8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DU1r9dRWaA73O7zRX_V2Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xNYV7YYBBkbVtX3nVKlD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h9g7rZTa7cbOgmdfpCroqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-mYV7YYBO2e_P_QbWR0q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SpBP0MEtp9HLwHtyNGRBfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "0OAV7YYByh-A-BiyVFqd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b782ua3hr4B0mzdz6X7qIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GGYV7YYBO2e_P_QbWBoF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Sz3zcn_jRruHSw5ug1i1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ueAV7YYByh-A-BiyWmE2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Sfb50IP_djC3GCW2v6RYMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Z9YV7YYBBkbVtX3nV7Q-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dYYgiy_hJlJmGi14KCzeng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "aNYV7YYBBkbVtX3nV7Q-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z5-B-mtdUNg5G8Toj1uZ9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "CGYV7YYBO2e_P_QbWyI8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["shWMJLfbuiijw_CV7zD8MA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "3tYV7YYBBkbVtX3nWbXf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q-t0WQ1QPG_465StwGrNQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "OGYV7YYBO2e_P_QbWBy9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VhuOZfIjfkTp0PdE7E7l0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "GWYV7YYBO2e_P_QbWBoF"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "vWYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A998Aw2wlvaHmpTDQoJVWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "zWYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eYJ3KKpVqQxoShfKUyVbPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "gNYV7YYBBkbVtX3ndcoT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X_DergfmxCZYVsT8aG5xQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "0WYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["21VADknXj310Vq9ESNjcWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "YmYV7YYBO2e_P_QbaTbR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8tq3ImbcqHoL1eNze2XmnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "umYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7izJ-LV-AEcodCtu0-YXBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "HNYV7YYBBkbVtX3nasl7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "tGYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2XkIPoT1RGScJv7HcNexyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "0GYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H_U__gC97iLDLPRg-7bXig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "EGYV7YYBO2e_P_Qbczvj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h15-mwdtFf1_Tp_C0u_H4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "uGYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c_YW_y8Erj_86DJCOJ5hiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "u2YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-sR7gULJJ6wMZ9ZddAv4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "x2YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oe_nHyIGjMEfD9kwUevsMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "TNYV7YYBBkbVtX3naMf3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["itGspDeyDyUECCgRGfTEng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "tmYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "JOAV7YYByh-A-Biyg4Eh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LC6mVf6FPr_kqWjuiJLTRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "gOAV7YYByh-A-BiyhIIL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0mM0lZYG8GYmeCMXMbETOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "S2YV7YYBO2e_P_Qbh0uD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OVUJWL9ZnL1p_YLKqzUSFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "P-AV7YYByh-A-BiyhIRV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Va3LK8uFodhrLyRtybcuhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "I-AV7YYByh-A-Biyg4Eh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o5hO63TnTaHm6rWDJ9tLlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "u2YV7YYBO2e_P_Qbh0lI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_lMqaF4gbGiFm8tgIiB6eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LdYV7YYBBkbVtX3nhd1U"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CEu7QDQCpna6AMKIewlkmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} -{"create": {"_index": "profiling-events-all", "_id": "cuAV7YYByh-A-BiyhoV2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QIUi7r0lX0T7lggo-V8-5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "l2YV7YYBO2e_P_QbhEb-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vTYOA5_SnOZSwiGON798-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "6dYV7YYBBkbVtX3nh-MJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n1Ma-6R1TuGNeT2qh3rpLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "WdYV7YYBBkbVtX3nov24"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kZfWmwYaJIIOUGCRBPlr6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BtYV7YYBBkbVtX3no_91"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_cwyhujbNFnjVbOtCoyQwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "9tYV7YYBBkbVtX3nlvPE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OD4R30IpW0nvOt_G6qR8Lw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "0eAV7YYByh-A-Biytaeh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p0Pia_VKvNIpcjOrg5PBFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "1eAV7YYByh-A-Biytaeh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PbvkExxuXir8i2DmyuUgsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "tWYV7YYBO2e_P_QbuHEg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NkZgcPyvanvZxrwD91jJQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "N2YV7YYBO2e_P_Qbsmir"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r1HvPKUhWfo1c_dGIcqb1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "T-AV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZPTQfDgXmRrvRJctvBjMQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "VuAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VjZoTTtVYbpedfOtHXez9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "V-AV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0i9UUQjQ7yqS-rcTUC_StQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "4WYV7YYBO2e_P_Qbsmn3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kIp3c6lhOmVwD-TdMXCwzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "1OAV7YYByh-A-Biytaeh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X27L9SIqnKudu5fjFY2qfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "JGYV7YYBO2e_P_Qbs23k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9PStVBMpTyifWDjuM_1F9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "rmYV7YYBO2e_P_QbtW5b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dUuQ2lSMaZyy3BCVVsDF1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "fdcV7YYBBkbVtX3ntRfi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pq-E12uy1vBeK4HeCjUqKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "SdcV7YYBBkbVtX3nthkq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QjtKZoprzXCLbmVAEEoqNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "zNcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vF_VQLSiCrZAF-ltqCX4Kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Z9cV7YYBBkbVtX3nsgwF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GqY4_lTSGhEb3OIQFssjmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "VtcV7YYBBkbVtX3nsg5Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B3eCfffgWDywlQf98in5qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "4GYV7YYBO2e_P_Qbsmn3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "XuAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oWsHJQGRgZYwHwaOMaB07w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "rWYV7YYBO2e_P_QbtW5b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5jPOL2BCon4p4v0UyqfsXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "1uAV7YYByh-A-Biytaeh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a8eRxSiE_6KOXeGPJZDEAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "RdcV7YYBBkbVtX3nthkq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["me0oRgVcR_uBmJ_kCe-VfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "LGYV7YYBO2e_P_QbtnB5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YLcFpzDQdtlqJCOlCEyl9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "6tcV7YYBBkbVtX3ntxpc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3h9kpMSl0a0kJr7xr2rPxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "y9cV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "z9cV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MxaBJ5vAlZJbFL1ZFA-tNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "09cV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lX6_U4PFMyyAKyc5PyNFEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "VdcV7YYBBkbVtX3nsg5Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1m76_MQ1CKkUeXqbKRoHZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "OGYV7YYBO2e_P_Qbsmir"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G9ECosqumaYYOVTFlJRp6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "gGYV7YYBO2e_P_Qbs2tB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9BGZHTzs6oj_j1YiF-r26w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "YuAV7YYByh-A-BiytqnT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IPIMyWIkL5MsP1Bo20O32w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "MOAV7YYByh-A-Biyt6sa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JHoQWviQB3DglItLg3z8Dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "59cV7YYBBkbVtX3ntxpc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8UN7adkU7fT1ZBcxBGzmmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "ztcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["niPAiGls6k32DnDasicdew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "itcV7YYBBkbVtX3nuB51"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yuDdBF0iwQiPnskDDqWYwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "19cV7YYBBkbVtX3nsw-Q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x1DopX-Mm-f8qb0DCkjPyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "RtcV7YYBBkbVtX3nthkq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_9EUaNCl3IuE7tIxwFYMuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "0dcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XMBO6mK2eUEy_2zoVmK7iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "W-AV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["860tvNw0EZMCDcPC0s5-KA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "0NcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W24Y25ivMwuM7NhKCx2-SQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "1-AV7YYByh-A-Biytaeh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8P7h-qet3p603NxSf5JWTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "5GYV7YYBO2e_P_Qbsmn3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0GDclsv_fsyemmV-JwlFeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "idcV7YYBBkbVtX3ntBPF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ASErGV7Ep5Qa_hvKdrg1Bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "8GYV7YYBO2e_P_Qbxnew"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CL5weeVaATD-2rEA3Y4f8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "A9cV7YYBBkbVtX3nxSdX"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-vLpK350nikq7KFGmYwazg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "wmYV7YYBO2e_P_Qbx3ol"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Aq5HJRyvf0tzNYqtMdi3JQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "j2YV7YYBO2e_P_QbxXYP"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "EGYV7YYBO2e_P_Qb037f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["avHlGvNfTVzeaAgsVgxB6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "1NcV7YYBBkbVtX3n1C00"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EOO-biRc_oXEIgdrmE3Yfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "-uAV7YYByh-A-Biyxbvb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x_f2mxVuf-0C8zGyqNgR_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "H2YV7YYBO2e_P_Qb0XuE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ykMVLYSfkbON4cDYPX_Bug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GuAV7YYByh-A-Biy0sIJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yY8YFryVNm9WZVvrCSeuww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5tcV7YYBBkbVtX3n0ilU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b656ShIEq9w_RkKDz2WXsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "09cV7YYBBkbVtX3n1C00"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tALP4PSq-pTzVgkPI2BjaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "kWYV7YYBO2e_P_QbxXYP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eyk6myVZ88WlljRICe8V4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "r9cV7YYBBkbVtX3nxil1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EA7jmP4TdABUc9EMMeGdDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "sNcV7YYBBkbVtX3nxil1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mkFUdRqA_r18Eg2eao8QGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ZdcV7YYBBkbVtX3n0iyh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TVIGjcT1LXA0y6eT2GUjVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "nWYV7YYBO2e_P_Qb0nzr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UHKEygcq3rVrnRHn0tQvCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "n2YV7YYBO2e_P_Qb0nzr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1deqhHF4DdD8sVl-g6p7dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "YOAV7YYByh-A-Biy08WI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4KnU6IH3mkqGAC1cm7wZtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "G-AV7YYByh-A-Biy0sIJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2eEjs7_9575hZerEBB52yg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "K-AV7YYByh-A-Biy4tjs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DXgAgM2hMcqzn0fnoAoP0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "seAV7YYByh-A-Biy49n9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h3J3yP8dE1Gp9C8Y2fBhOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Z9cV7YYBBkbVtX3n5EbR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0Iji_zQRXoBblaoaKwHTcQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-GYV7YYBO2e_P_Qb5ooi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S-j_I9z7LfR6_TFzt2st2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "h2YV7YYBO2e_P_Qb5Ymt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5c1QuSeaLbMocVTvYRIwcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "suAV7YYByh-A-Biy49n9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7xwMOd4RJ8Ot1XrcX4r_8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "TNcV7YYBBkbVtX3n5UgW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "X-AV7YYByh-A-Biy4dNo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rFs-0q-mW95c43NFrT9uBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "_OAW7YYByh-A-BiyAekA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JVsUuzDWhnoUag5GJcXYzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8NcW7YYBBkbVtX3nAFa0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["peEoWSsNziqM-hGC6EpouA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "KGYW7YYBO2e_P_QbAabd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "muAW7YYByh-A-BiyAuya"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fqiKGqkA5IoNaeD9flVx0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "FmYW7YYBO2e_P_QbA6id"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DrB5T-9pXds_Mi6uJBhFEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "sOAW7YYByh-A-BiyBPC2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fdt-C6H2QksCac6R9wTd_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "kuAW7YYByh-A-BiyBfKz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a8y9d1sq41lKVZ2hOEtOWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} -{"create": {"_index": "profiling-events-all", "_id": "U2YW7YYBO2e_P_QbBawR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0k6wELJt8HNaoJlSxjp1OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "ytcW7YYBBkbVtX3nBF4I"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cdhfW3Az6hl2kyXX_PlbPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "641828620625480"} -{"create": {"_index": "profiling-events-all", "_id": "8GYW7YYBO2e_P_QbELUW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k2c8JznJ4XJJ2wtl1jvs7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "cOEW7YYByh-A-BiyEwXO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ZWYW7YYBO2e_P_QbE72B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H0WY9BQOdRjXYQkYwkFdgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "72YW7YYBO2e_P_QbELUW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "kOAW7YYByh-A-BiyEf7z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P0mdBgw13J_O1CukthEqMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "kdcW7YYBBkbVtX3nFmxw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4_rg67KP9ZbtiP0CeHeyFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "BdcW7YYBBkbVtX3nFGcu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QvlUdkP4T0hZxSt3gSdllg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "IGYW7YYBO2e_P_QbFcGw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QWHewGzkmPtQ4MCGkNndoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "9NcW7YYBBkbVtX3nEGNk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6RXKJU69zgwLTvkyKxffdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "K2YW7YYBO2e_P_QbELiv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3ORtBaUkgpJHtPNW2d8ZAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "GeEW7YYByh-A-BiyEwMv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FxTaDizS0-OeBLILGTyzyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "G-EW7YYByh-A-BiyFQcS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "RdcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m4xUM11zLI-btfCgwf6IbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "69cW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mdeRbDX2AaZ19IQrZUW2Vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "UNcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CROrpVXcmXQOxuX7oY29og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "6tcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b2RWz2cEGgcNrcd3eaLVUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8dcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hp7nnrgj4rg9PepT5KvZxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ENcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hsZRqI3yAbmj0WUJqK3N6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "UdcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qDjdfIDXYeKpMzfOZsKweg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "UeEW7YYByh-A-BiyIhPk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kl-ygAMUUp50SfchyrhbRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "O9cW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NiVW0V5NwxAo0iHOds4ZXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "SNcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ADkra47La3HpwdD_ixkQqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "SdcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NrKlAuh0mNP-abBix0Hafg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "5dcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pN5IOT_VxO3_wUIBhsiEIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "8NcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7fLjmESQgzutRqqKhKAIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "9NcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bI0z5pYH2KJIm4IMFjDYGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "-dcW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cG6xy387-SzKYkUtR_Jn3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "AtcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VcxRLLsRsRxgG1o3M1zeCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "EdcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "SdcW7YYBBkbVtX3nJn4S"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QhuAxDp-mAXxSlQCTHCDJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "49cW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iwupaAsbz59XDygi08k4AQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} -{"create": {"_index": "profiling-events-all", "_id": "7dcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ldIz4_ZIf6SyO1TJCB_KFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "-tcW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9tg9pzqKdnfA2ABqB6tHtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "AdcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mzoBdlEKKFJr7cg7JTbkCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "TdcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jR2WafQ5aT4KiR_9VxLM1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "S9cW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xricnf20K4kRE1JxfxLKUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "9tcW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TliOfrc4IBAVNwcIQStW3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "aeEW7YYByh-A-BiyJRZt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3uWWKodcRyYR91PnFWenuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "MtcW7YYBBkbVtX3nQItF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sdYsXSOFq3ZV5V3ZTd5OZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "M9cW7YYBBkbVtX3nQItF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CROrpVXcmXQOxuX7oY29og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "edcW7YYBBkbVtX3nQYxi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AePsFsEWIAKcD6i5fTcKwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8eEW7YYByh-A-BiyQCi1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hz7cJPgHH18BeBTdm_DtkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "562164997202330"} -{"create": {"_index": "profiling-events-all", "_id": "8uEW7YYByh-A-BiyQy5a"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WL6Cc06d288zx9ELZZqz5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "aWYW7YYBO2e_P_QbROQw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-FgHfu9tQhYTgpwF5irr9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "sGYW7YYBO2e_P_QbP-Dm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7uqXjdMn8cKJH0c7LBBRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "3NcW7YYBBkbVtX3nQo0Z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VjM0wOnf3jCPBA8dcfHmfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "x-EW7YYByh-A-BiyQitl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r4lcZDimr4HL3ZJBoS4zaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "uOEW7YYByh-A-BiyRDN8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZVHdt4rRKbUdxnZTJm-T_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "X2YW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TSyLQAdR8wymfWchXZ62Ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "6tcW7YYBBkbVtX3nTpOO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FPsM-hxiPAxa6Tn5oevNoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "teEW7YYByh-A-BiyTzvE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M3p5yPCVtJT8g9hbQp71SA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ZmYW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ujmw3KBSZEY5_4s7Myq2pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "cNcW7YYBBkbVtX3nUpqO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OmeWJ7pAymYhWRrAnd1xrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "CtcW7YYBBkbVtX3nU5wV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wDMn1VGkg3lC6D8rQjVrvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "6dcW7YYBBkbVtX3nTpOO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aUhFzDZcHwff0_YJWeg6vA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "BuEW7YYByh-A-BiyUkAI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XpxK_Q-DP0fSfpiLzuOV7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "KmYW7YYBO2e_P_QbUvPO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fphxs_kpB5neRcVNyqbyvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "LGYW7YYBO2e_P_QbUvPO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yGIeKLHM9G7RRknI-piiTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "gWYW7YYBO2e_P_QbU_aU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["weC-mDxEvnrRd8m5lrSC_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "x9cW7YYBBkbVtX3nTpXo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oF-wY_acT328qrZ3ugnkzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xtcW7YYBBkbVtX3nTpXo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5dotPkeOMgRPYfdERquW0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "SGYW7YYBO2e_P_QbT-o1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "Y2YW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QicAohYElZnDluXcclQ5ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "btcW7YYBBkbVtX3nU53R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "t-EW7YYByh-A-BiyTzvE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["18dt2YlDI5SQuyr5uDM2hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "_2YW7YYBO2e_P_QbU_RV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zWnar1cv2OPLTAmuUX5okA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "8GYW7YYBO2e_P_QbVPdI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XGi0gq3X0lbtkz60bv_FjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "nWcW7YYBO2e_P_QbYAGS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hc391qiEl23bWsvU8MIb2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "gmcW7YYBO2e_P_QbYwYk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sb2Ufhkj-HCEBpI7dzePDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "5OEW7YYByh-A-Biycli0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UuDeBu8oU2omluou-0a1Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "q-EW7YYByh-A-BiyfmHu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["462hK3NQJ12J9biGtouuGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "FOEW7YYByh-A-Biyf2M6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PlesHQMkaxUDV_hg8gFhww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "WuEW7YYByh-A-Biyc1w8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8m9XmKLa72WdntoQwSY0tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "jGcW7YYBO2e_P_QbgBWH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NCSbO-OFxqpqVTMmflnoIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "reEW7YYByh-A-BiyfV6p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RmHwYLknd0bV48qFH9eQ6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "ptcW7YYBBkbVtX3nfrpi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GG0F2L0nSA_B6ZW5v6LB3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "168532957631583"} -{"create": {"_index": "profiling-events-all", "_id": "p9cW7YYBBkbVtX3nfrpi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DAkV_97hJaROs8HKSG_NUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "l-EW7YYByh-A-Biyf2R6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sPqqmDZLLGF6_pzrJ1s5lA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "DdcW7YYBBkbVtX3ncrd2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "ROEW7YYByh-A-BiykHvM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wJMcWNAb5ql2fkVg8DVb0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "EGcW7YYBO2e_P_QbkCRr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-o7jkJLtD4xHchcLgzNuuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "6GcW7YYBO2e_P_QbjR7F"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K8gQh5zdfmwr_L8d6j_v5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "vGcW7YYBO2e_P_QbjiAN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g4J6Jl239ZcoU2ZSj7-fag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "09cW7YYBBkbVtX3nksnh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IzpuUVv759Abltk8UjLULQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ZWcW7YYBO2e_P_QbjiKj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IkFQJGH6hdklKpjmMwHToQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "seEW7YYByh-A-BiyjXFu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ay1JvUpYidc_jtVVQh5xJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "sOEW7YYByh-A-BiyjXFu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kpyhs2kTFJc98nncsIEGzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "52cW7YYBO2e_P_QbjR7F"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uN-YY_i1gvVmqACLDXQMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "_eEW7YYByh-A-BiyknyA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fLHZEyltMzzscfMhon-Tzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "uNcW7YYBBkbVtX3nk8tE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MqCIDPuPM-mrPy2Wr4E0pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "utcW7YYBBkbVtX3nk8tE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6XkFhPi9lM3BiwzJEIoaIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "uWcW7YYBO2e_P_QbkymJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "FNcW7YYBBkbVtX3nk83N"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N6yoC5MEhf-Plh-uBAaDFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "DuEW7YYByh-A-BiyjXAa"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "D-EW7YYByh-A-BiyjXAa"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "JNcW7YYBBkbVtX3noNM2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4pxTtEE_f9QsF_FY1lgc-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "omcW7YYBO2e_P_QboDfC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eXATor8dtVm3LPIO_GNaZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "kdcW7YYBBkbVtX3nodQJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NRT6b-EmSsUKrT0-0ibcag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "0dcW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xcO8ATMuOlPrGlylAgvJmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "52cW7YYBO2e_P_Qbojgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z8goRTVMaTzMkIP86WRVRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "lmcW7YYBO2e_P_QbnjHj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "E2cW7YYBO2e_P_QbnzMm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cn2EpQqWCVem8DknXDkNXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "G-EW7YYByh-A-Biyn4hj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p0NFUe2QgjtWEWYDSLMm1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "mmcW7YYBO2e_P_QbnzSu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UwSPv3v3mJV5n8bvEwP9ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "F2cW7YYBO2e_P_QboDaE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ade_-rYDOOWEqYEPYyknBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "GWcW7YYBO2e_P_QboDaE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E518XUc1CtUggz7KTKp7uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "G2cW7YYBO2e_P_QboDaE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rtLWsf0bQDHrSMWDW9YU3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "WdcW7YYBBkbVtX3noddV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3zYROBVu24JPj2x-xW0ysA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "WtcW7YYBBkbVtX3noddV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uqwRXN4Yq9WZrlMPcUG5Yg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "0NcW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dKz6wRYxk5b-EmykX6Tcqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "xmcW7YYBO2e_P_QbrDqK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Xgi2WyDfYTM06WuIqjfkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "gtcW7YYBBkbVtX3nrNrT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FjtKztgbAQPS6bJqFyRkYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "hNcW7YYBBkbVtX3nrNrT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g7rfCmzBd1WanveypHmAqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "8dcW7YYBBkbVtX3nrdtn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W0j_klLnHW1yyhF4U8DXiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "VtcW7YYBBkbVtX3noddV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["43Mh5txMzJNoI6svI0SbQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "WNcW7YYBBkbVtX3noddV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N6dB94SEYMjCukJ9TS8bDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "ztcW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OPeOIoXE8SwG5uuXQoAI6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "g9cW7YYBBkbVtX3nrNrT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LcYkQAM-vgmPtnOsNMORSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "89cW7YYBBkbVtX3nrdtn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7irlEx7CVauqLLMLkiu9aA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "GOEW7YYByh-A-Biyn4hj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q7XAR2zqlv3Nkd1rHK-fsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "n2cW7YYBO2e_P_QboDfC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "FmcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5ssUCcghlPpbufn_FI7lhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_uEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m7HYxR39MOi2F5s3SuKENw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "B-EW7YYByh-A-Biyspsk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6VlRZTvCAGEjKAJI9WErGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "E2cW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QB20QHI7TlFL4JvuFhH_6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-uEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0Nu4JYvGvXl5CW_RB7l_vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "_-EW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NUICzvay5gqiM1JCIDYjDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "BOEW7YYByh-A-Biyspsk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-vSsOv3oIeGq1jnkLewmKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "8OEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NWTYSV7vGDryRONnCUqo1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "c2cW7YYBO2e_P_QbvEm2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q67ZvLIlucofkIvus5w-GQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "EGcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gq5ri62azb2HgYO44ajr9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "FGcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XxoiLx9HpNbK-YWzICyumQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "f-EW7YYByh-A-BiyvqKW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e7ofbCHl8qRy2q41G8_s7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BeEW7YYByh-A-Biyspsk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yTAi1Yo0NZNgWpXZUjzOrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "XeEW7YYByh-A-BiywKYJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XL31E2Uzdrei76bGcaLiXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} -{"create": {"_index": "profiling-events-all", "_id": "BmcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g-xXoA0lL9IYRJcrTwtAWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "gOEW7YYByh-A-BiyvqKW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vQXtdmIzgIVlhx1gewz_RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "593778632422369"} -{"create": {"_index": "profiling-events-all", "_id": "8eEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5bQcQ0KEBggKnhUPDGb0jQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} -{"create": {"_index": "profiling-events-all", "_id": "pdcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bZ5KGLHdU9j4VxTqgQfhhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "-eEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LMgC_pj236jbZulsolnmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "CmcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Yg3TaXRMJTka-oF2wrTuxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} -{"create": {"_index": "profiling-events-all", "_id": "fGcW7YYBO2e_P_Qbvk3S"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ECM4wduGn2SgkCpNnIpPqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} -{"create": {"_index": "profiling-events-all", "_id": "7NcW7YYBBkbVtX3nzPOJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ii5fUg--kGCwh43V7vfk4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xeEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Nd9rMkTYCiObUWdQEYWSwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "omcW7YYBO2e_P_Qb0Fc4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Ri5pW0t6s5lXro7RV78vA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "B9cW7YYBBkbVtX3nz_cq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_BHWrMWBlVU6-0DD2Kvl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "muEW7YYByh-A-Biyz7fk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zk1KOzfHoLWnIpBzzSfmpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "DeEW7YYByh-A-BiyzK0R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1dmpJ55uvZdOMq_7dLN78g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "w-EW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oFFMBClb7YDKbss0-D49Bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GmcW7YYBO2e_P_QbzVOk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lXS9jaakohlJ8WgrZlMjbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "itcW7YYBBkbVtX3nzfVn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0RtFA4NAxhPCgHCcZm471A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "MOEW7YYByh-A-BiyzrNj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tvUUMUcodTkJ0m6RggT6bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "GeEW7YYByh-A-BiyzbAL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MDX9xkXZ6YV1jVI86ZVY2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "neEW7YYByh-A-BiyzK7K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-ggHg8zNX_Qs55mykGTE7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} -{"create": {"_index": "profiling-events-all", "_id": "CdcW7YYBBkbVtX3nz_cq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CBlNVd4rPCO2FdA0l90MKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} -{"create": {"_index": "profiling-events-all", "_id": "iNcW7YYBBkbVtX3nzfVn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p5nXo4mBd3u0s_59PDRZvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "L-EW7YYByh-A-BiyzrNj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["idsijnsI-3EEcw8J1DhUvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "D-EW7YYByh-A-Biy0Llz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W1X66sQmZo7R_inBU4PeQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "y-EW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mhCENzeJsRypXPr7NLjqVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "lmcW7YYBO2e_P_QbzFFQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9ROJ1260u7kvs85ZsQXWJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "GGcW7YYBO2e_P_QbzVOk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hgbYFeQR5UbL1ILQeJXsrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "yOEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S05AC4-RVY5vRimCgolcQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "mGcW7YYBO2e_P_QbzFFQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nV3Fn_RzzKrNcUUuAsluvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "zOEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bcg4yzcU6w_vTsKTk-8RpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "omcW7YYBO2e_P_QbzlQs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["29tkR1iuog5-kDCdzfxqQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "o2cW7YYBO2e_P_QbzlQs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VVLBSGTuYWH3O356lNUySg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "g-EW7YYByh-A-Biy3cBp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dC0hqK0ytFANzaVY5y-X0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "A2cW7YYBO2e_P_Qb6mbH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FrtmF-TX0N6XSfQgrjNNSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "otgW7YYBBkbVtX3n4AeL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LU5M-Y2vAZAPnKMCmcDaJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} -{"create": {"_index": "profiling-events-all", "_id": "u2cW7YYBO2e_P_Qb3WD9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1QLTwfIs5p4VcZehcoW7uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BNgW7YYBBkbVtX3n4AZK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vvJfyuw2NkjY_OhqTi4dyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "3tgW7YYBBkbVtX3n3QKs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t3YPrWrDzJFDnReQ7K0ZIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "O-EW7YYByh-A-Biy3sKF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GUmcuPH6_akbAJCgr_HMZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "SdgW7YYBBkbVtX3n3wQf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RCyrcGCWUG81ALfuR1iT2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "BGcW7YYBO2e_P_Qb6mbH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e3lcOyxzIAx9GClHCrbUDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "ReEW7YYByh-A-Biy6seD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Uc3rxkKkk8AS6xhrVwHG8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "hWcW7YYBO2e_P_Qb3F3b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AnYjvsg56TcxE6xD0wQ5qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "RmcW7YYBO2e_P_Qb-nVZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HQfdRiN_i6nsUpr-osGkTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "CtgW7YYBBkbVtX3n_BuV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z2emazyAu13iRamH5lmUoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "g-EW7YYByh-A-Biy-9YK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DBpdnhabztGdbOuXyBjkeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "vuEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JbxQOwOeVRIDcuzZmln_AQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BtgW7YYBBkbVtX3n-xhN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lGYnfjmvwXki2C5OKuIGdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "i9gW7YYBBkbVtX3n_Blb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uTJCeaCRI3Z-859bdSx3XQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "t-EW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9CvZpABHsErJ2oaka4jO4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "DeEW7YYByh-A-Biy_Nwe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1RCMO4Rht0Tyq-ucg22Gag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "y-EW7YYByh-A-Biy_N3T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "LNgW7YYBBkbVtX3n_R7G"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1Hq3X6R0xZFl8IPGx4UbCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "XOEW7YYByh-A-Biy-9rd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J6yDhkd9T90hDGIK4K7YnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "vOEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xdSUu7a3b1m64nGHPCzjtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "ldgW7YYBBkbVtX3n_RyM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "v-EW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SDgwhZo9YDrEqaVRvCqKvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "x-EX7YYByh-A-BiyC-Tq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GITcXcM5OZJEsFYPj2RnOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "iuEX7YYByh-A-BiyC-Nk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sodrqLHefNrUwN3yDuu-2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "wNgX7YYBBkbVtX3nCSH9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XxgF8S8zcb8A1_Ecius1nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "AuEX7YYByh-A-BiyDOZh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["El5SJjgC1dQRf1W23p8Oog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BOEX7YYByh-A-BiyDOZh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PCWzQZLMSEDq6jgDAbtbDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "UtgX7YYBBkbVtX3nCiNo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xe-mgxEb6Ktl0FGwLrD9QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "i-EX7YYByh-A-BiyC-Nk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MRbhvMfZ_M5nO9oLscAerQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BuEX7YYByh-A-BiyDOZh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7tyayDV_vQllSdORuTrY9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "tmcX7YYBO2e_P_QbDIuZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "YOEX7YYByh-A-BiyDev8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cA8SM2W7SPYEpBx-8uBa1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "o-EX7YYByh-A-BiyDuyF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NKsocjlsvM68oICIvKxy7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "v9gX7YYBBkbVtX3nCSH9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["19wmIvUZK4UmSOptZH3T1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "NGcX7YYBO2e_P_QbCoY2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r5Qk0y0lu82qLRvIh-Mz7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "T9gX7YYBBkbVtX3nCiNo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["78TuS6LlqqCJkHSW5a7paQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "J2cX7YYBO2e_P_QbC4mb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6FS78rLcwklRcuuvZdYp0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "t2cX7YYBO2e_P_QbDIuZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuzNOG3t4OkPYTKYBPqKPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "FGcX7YYBO2e_P_QbDI3K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hphMgjf8tLvtIOhJJeMEOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "kGcX7YYBO2e_P_QbDI78"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BlQOTBVYBirJP-nXExTkPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "6GcX7YYBO2e_P_QbDY8s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AgA2e1jJZcOpDqcyIoAQmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "6-EX7YYByh-A-BiyDemY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XXVig9Ie3HmFHZwzuss1kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "peEX7YYByh-A-BiyDuyF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dkCDIssAAuuJOY5L9uP-Lw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "MGcX7YYBO2e_P_QbDZHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vurXS1ra6ryPwSCr6lehBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} -{"create": {"_index": "profiling-events-all", "_id": "u9gX7YYBBkbVtX3nCSH9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WRL9yLuHTV7ynk4o7WuvDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "U9gX7YYBBkbVtX3nCiNo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["84RiA4pbVL7KMlDvnXnbFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "32cX7YYBO2e_P_QbCoef"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xZcpIqjO8GbOGxvXYAifsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "RuEX7YYByh-A-BiyCuLc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["77WALZLy-UdbTovdy-aeKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "R-EX7YYByh-A-BiyCuLc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZpiULf3cc4PAnQBQeWnmvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "xuEX7YYByh-A-BiyC-Tq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G0427nwt0KroQkvwzA7egA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "f2cX7YYBO2e_P_QbDIov"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T9ahUsDV5TPFP3kZTiNCSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "BeEX7YYByh-A-BiyDOZh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B5zce_f4N45Itu5RhOF9CQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "dOEX7YYByh-A-BiyDedc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["11Tl3YbjvipxnomXbH8dow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "5-EX7YYByh-A-BiyDemY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bcHz46TjNV4prWC1qZE-6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "MmcX7YYBO2e_P_QbDZHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5CUA13BfSKgPE5R1fmHh5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "jWcX7YYBO2e_P_QbDI78"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OFdK4mvMOorRf1NaABBLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "w2cX7YYBO2e_P_QbHpyj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JJhw6TGulS2g4dgLha_6Fw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "KtgX7YYBBkbVtX3nHTPi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ymZCjvGyGb7nDgHKngF-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "WGcX7YYBO2e_P_QbHJmW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2m3Q7K61sMG8WQrx7RXxxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "y-EX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m89QqjE-qUNSc3kuFiQzbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "pGcX7YYBO2e_P_QbHp7f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YC25zlLJYeBTwotVPhLafg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "yuEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EwRlWIvafZgNvSviLLBxdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "YuEX7YYByh-A-BiyKftS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BuZCvHOLrtMxpNr2RzKFfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "w-EX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY70RGM6lV3NgAwSeTX8Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "f-IX7YYByh-A-BiyOAGi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5DxLQCjm2m1lyk1iyQve0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "geIX7YYByh-A-BiyOAGi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jKJw7MgwzsyLy5Y5-ZGSMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "hmcX7YYBO2e_P_QbOrtJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["puIsGFT9D9ie7OaAMWkigA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "YtgX7YYBBkbVtX3nO0KT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TlUPq402XAoMqzEe9Lt4Rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9uIX7YYByh-A-BiyOALn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_59QHFa1Rqj5C5mCwepbVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "QuIX7YYByh-A-BiyOQRi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RyXi5_2LXUkPg6q5AxjLZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "O9gX7YYBBkbVtX3nPEVT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7QawPKHJF79qrjka8nzLbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "y9gX7YYBBkbVtX3nPEMb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7E99aSr-SRhrdHQrfS71Qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "uGcX7YYBO2e_P_QbOr_Z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MY4vqWXc_k9n6qImvJUI7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "P-IX7YYByh-A-BiyPQgM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GRNWgj9ADC9F-xKz9gBTGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "IuIX7YYByh-A-BiyPQuP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GPbfHhT749ZR1t85wslN0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "AWcX7YYBO2e_P_QbObof"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GWuZD3Bv-Fozl4N5Yzi5dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "3eIX7YYByh-A-BiyPAaT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FfU3KGa4jQE4GKP8Psa9ng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "qNgX7YYBBkbVtX3nOj0O"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MVipWFhXPDISxsBT7IZfCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "t-IX7YYByh-A-BiyPQlQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AgBnLrnFQyEiB71eITD44g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "ueIX7YYByh-A-BiyPQlQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oTHLMe0BewCEp798WVpJtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "3uIX7YYByh-A-BiyPAaT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aZ8clAp9paL9k-C90WPkIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "UGcX7YYBO2e_P_QbOr2M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qkp5EyZaH9EKC1Tx2EnCYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "C-IX7YYByh-A-BiyTBo1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DXipnObSe0dCYjfUl0jbxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "SWcX7YYBO2e_P_QbScVi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hYfhfJkQW17kyXXXeL8OrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "F2cX7YYBO2e_P_QbS8o-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gBMo3RNl4xbFgjyE8KLEeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "l-IX7YYByh-A-BiySRIf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Yg46hsyTTfWnv4qsLCjw3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "dGcX7YYBO2e_P_QbTdFC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lSo6n255V9zP1aYcLPpfmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "COIX7YYByh-A-BiySRTi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pCi6Bn9hgoUvfDY9KWDh-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "nGcX7YYBO2e_P_QbSsgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DajmKOxs5mZzvp3q0vIZRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "D-IX7YYByh-A-BiyShe9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzlp5KSh-SCscA1-K9srWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "FOIX7YYByh-A-BiyTBx8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y-PPbP4nOCiClHW7_KYwMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "JdgX7YYBBkbVtX3nTU6_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NeIDUkh-VuAV72dDJWGFbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "6OIX7YYByh-A-BiySBCO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k4HJrAiqQ3V4Sy2tIInxZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "dWcX7YYBO2e_P_QbS8t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jV0cBQfixQcleXHjzqFw0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9WcX7YYBO2e_P_QbS8zy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NmZEPOVWjWJBf47eb30-vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "DeIX7YYByh-A-BiyTBo1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qZRkXnh8pLDVlUVidYeFDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-mcX7YYBO2e_P_QbScad"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AOFrzbtSbZoZPfOFvByqkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "SmcX7YYBO2e_P_QbScVi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gra3ZDS-h8Qb6oN3nyQ91w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "YeIX7YYByh-A-BiySxi3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "gWcX7YYBO2e_P_QbWtiF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1QLTwfIs5p4VcZehcoW7uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "keIX7YYByh-A-BiyXSZb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9raaEJOc-xp60E1LDA7XaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "JOIX7YYByh-A-BiyWSCu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lgc01vu6tLGgLO8IPeQGXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "5-IX7YYByh-A-BiyXCQS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IalcRP42h8xF7vm8KTlEiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "DGcX7YYBO2e_P_QbZ-K9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4sjDMbuo1EQDli2AMeF1pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "HWcX7YYBO2e_P_QbWdTt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uD9v9EeBRS5EzcNLZ8q2gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} -{"create": {"_index": "profiling-events-all", "_id": "KOIX7YYByh-A-BiyWyN4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kJQF0B534N8TwJ-_OUbvmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "WNgX7YYBBkbVtX3nW1nF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P-dCdUT1LEJyae6UYwKugg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "HOIX7YYByh-A-BiyaCtL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JHzvVskHWYcoFwQr_Ta92A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "U2cX7YYBO2e_P_QbWtrI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fa7wECARkxA2ek4DYeGk9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "tdgX7YYBBkbVtX3neGzr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VSiIga6kK669vm3_VFRBxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "4dgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YjeaaN9Gs9Jtblq8lj7A3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "b2cX7YYBO2e_P_Qbd-2U"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MY4vqWXc_k9n6qImvJUI7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "89gX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ArhssJT4V7-kmdsezZTRQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "99gX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_rVC5Sy8eAmzcpq8FYPgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "qNgX7YYBBkbVtX3neW_-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EO1Dm97l4fnw6_SNto3oog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "kWcX7YYBO2e_P_QbevM8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9rychglqQSAQzOKooiFxFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "6tgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5gjPCLIYZbMZi0UuOcP2yQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "lmcX7YYBO2e_P_Qbh_zn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VV8E-OYfEEKqtlp023Tqng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "YWcX7YYBO2e_P_Qbh_kU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fDQou-XRb52d9gCJh1ayOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9dgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8isTUPr0FRuKib4cU3qR3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "6-IX7YYByh-A-Biyh0Kg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D4jMgEWnva8oEa4cv5QFeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "7OIX7YYByh-A-Biyh0Kg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2mGUnlgeNy9yq7TLiDTKvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "l2cX7YYBO2e_P_Qbh_zn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RX6MWdoFei8k1kwyhzfnHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "6dgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kwSNJ4ks9P4lHM_hMfcyhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "89gX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Of2hetgQ4G3EMs-obnxUFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "ydgX7YYBBkbVtX3niHnT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qbOly4UeXgEZ8EetANZqFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "4dgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dnFHj_GHdhJ9FbnuH0i77A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "49gX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PacxNzOkBSNx_21zrmhePw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "LuIX7YYByh-A-BiyhkDE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7AM0prgm67n5d6K3VpPj9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "X2cX7YYBO2e_P_Qbh_kU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ezB3Rrr_knGYPkl_kYdRNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "9GcX7YYBO2e_P_Qbh_pU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H8A3dYuSIPwxTp-xzJya1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "4-IX7YYByh-A-BiyiER2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-7ex70r3IhidNSVrzLcqAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "5eIX7YYByh-A-BiyiER2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3H-L6UsF703PU8SR2ZlmEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "x9gX7YYBBkbVtX3niHnT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pD-pJcDVTjS_r_eW7GWMcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "smgX7YYBO2e_P_QbigJT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FGf4xT_jVUAejwXntzL3PQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "suIX7YYByh-A-BiyikmM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LdUr9M80lv8cnRJG6q84UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "3tgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AZiPGUJq8VLe0bcF5JOdFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "7dgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xTmXxLtxYtdjX3OFWgcBtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "beIX7YYByh-A-Biyi0uU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BcwMHWALpdPlatMjiBW_wg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "EuIX7YYByh-A-BiyjE0n"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "82cX7YYBO2e_P_Qbh_pU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JiCE6XR1gukpwvjQ1r_0aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "VmgX7YYBO2e_P_QbiQGT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["and5_iwPhBY0DhBmGzzTUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "s2gX7YYBO2e_P_QbigJT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jFhA24HccRgfwIBBwmJXqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "5NgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "EeIX7YYByh-A-BiyjE0n"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZndsICGWbrD6J4BVHqQM7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "kOIX7YYByh-A-BiyiUZS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gSO16M9ILzhu6pqLHYZcKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "sdgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-nrrZMuYFG3kBv7-N6Cr3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "beIX7YYByh-A-BiyqGFv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pa7eV1ClIoEc0MOWrL7aYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "eGgX7YYBO2e_P_QbqRsl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xcO8ATMuOlPrGlylAgvJmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ttgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_X9dFQVvkPI4ha0P8p2JiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "XGgX7YYBO2e_P_QbnBJG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RUNYTUN-F_zv9oJ0DjEKwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "aNgX7YYBBkbVtX3npo-z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PU4AlGgy6OVgX5g2hXwflQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8OIX7YYByh-A-BiyqWJo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CjSOPmGxE3Pc5_4gR1HXEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "JNgX7YYBBkbVtX3nmo13"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B-XLpCbHVWJllSfmbTHDIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "sOIX7YYByh-A-Biym1t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jwz5Ko_H_B_a_KaZUAnDNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "XmgX7YYBO2e_P_Qbpxge"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D17V2ZvopmhLBd7dZ3Y1BA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "92gX7YYBO2e_P_QbmxAt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T6-ZIWwGzZExC78sWJIpyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "rtgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jgHKhfN_-iW4c9zXWgJycA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "eWgX7YYBO2e_P_QbqRsl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EA7jmP4TdABUc9EMMeGdDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "7-IX7YYByh-A-BiyqWJo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G9Qdn4hxZXN_RRgCI0d2Aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "845379217314054"} -{"create": {"_index": "profiling-events-all", "_id": "JdgX7YYBBkbVtX3nmo13"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V0FscKR06PIQDFIotfIKkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "IOIX7YYByh-A-Biymlrf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZODq3DX4tCIqNNAVK-EkRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "rdgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zbdiy9zDQAF_ITnyDDjh2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "XuIX7YYByh-A-Biypl4D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vYaocYILvM8dc_gTgLR1Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "I9gX7YYBBkbVtX3nmo13"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YulTfvm-3LCwbTWK82hE8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "x2gX7YYBO2e_P_QbnBXZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xHAlWfQiLLyIuk2h7k7RXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "s9gX7YYBBkbVtX3nqJPE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4gZSOWlJ3pw6n-5AVME8fQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "KGgX7YYBO2e_P_QbnBSM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KOMN7HDuAGD1N2A7P0t7vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "1uIX7YYByh-A-Biytmj0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vOZHtJ4ahW-g2TWd1-Whrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "fNgX7YYBBkbVtX3nuay9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Epu3otqsKY33No3a7Ut0Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xdgX7YYBBkbVtX3nuq9-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "tmgX7YYBO2e_P_Qbtynt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Qf8e2CedM9huXl7Xm6xyyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "K9gX7YYBBkbVtX3nua7-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N25AEjenMUPgCcs2AAiXqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "OdgX7YYBBkbVtX3nu7Ec"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mws_4U3r89UDU4qZjswO6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "7dgX7YYBBkbVtX3nt6I3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3U1GssMMNyEfwWToQlllWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "G-IX7YYByh-A-BiyuGot"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zCPc0-bKAM6-gvP4yKCRnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "6-IX7YYByh-A-BiyxnI6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KBx8UMYQRpX3PQkFGueoQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9NgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oYwYA56C57graUtOG96_nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "B9gX7YYBBkbVtX3nybyn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cPi-mObQCSuLuQtVOYID8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8tgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZiZ1khLLMUzgYWGwfUZAEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "CtgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QOIxcZGbFuLnj5qiY-JZYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "D9gX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MifoGEhGkhx--3Mqfb9VJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ENgX7YYBBkbVtX3nxrZ1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2pZTlkqZkVB23pwCplHuMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "aGgX7YYBO2e_P_QbyDUv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B8raI5jTg6GXkSRywQ53Bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-dgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WZxBtZLIjgWi7iyuWzr-iQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-tgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7UUpVBUGNxt4Ms0zx7knOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "_GgX7YYBO2e_P_QbyDby"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rEkYGzV5vYiC3DhSryqVzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} -{"create": {"_index": "profiling-events-all", "_id": "edgX7YYBBkbVtX3nyr0i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aAA5WQcp21IBohTIC-KUcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} -{"create": {"_index": "profiling-events-all", "_id": "0mgX7YYBO2e_P_QbxjDq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ljoZqY7uQluiDQvieY_xHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "sNgX7YYBBkbVtX3n5ctL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["94o6mawNwOW6nwyr1PAIHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "EdgX7YYBBkbVtX3n589_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CHnrKd15QpNtnzP8YzFv4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "BeIX7YYByh-A-Biy5oju"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["23D9WYWWXJZPmgi3LP_trA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9tgX7YYBBkbVtX3n6tVt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ymZCjvGyGb7nDgHKngF-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "YNgX7YYBBkbVtX3n5MiB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N9nJGzNJcPuG6DQBG0MiGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "teIX7YYByh-A-Biy5oRq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JCIWb9sew42V-gStKG8h5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "X9gX7YYBBkbVtX3n5MiB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hf9wGp5TNFiImJfF3zrljg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "LNgX7YYBBkbVtX3n6NFW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rrV7Sjn5wsa8oFmwH9R5gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "593778632422369"} -{"create": {"_index": "profiling-events-all", "_id": "k-IX7YYByh-A-Biy6IkE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Isxj784FFyTk5uDVdOf3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "tWgX7YYBO2e_P_Qb6Vmk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9XdZpM6-FAy3LMUV5bnSRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "bGgX7YYBO2e_P_Qb9Fyf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w8p8KkfgO4GoE7XBvV8MBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "q9gX7YYBBkbVtX3n9Ngk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eh7tA-88r0aWueK0gduVFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "L9gX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UNA5mzQxt3Xt7EAz1m9YnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "qtgX7YYBBkbVtX3n9Ngk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2pZTlkqZkVB23pwCplHuMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "pNgX7YYBBkbVtX3n9t6f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NmZEPOVWjWJBf47eb30-vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "INgX7YYBBkbVtX3n9Npj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_RT0FmavuUc4KjdMUFBgQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "amgX7YYBO2e_P_Qb9Fyf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kj2172QFM0X7LD-Gx8UmJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "weIX7YYByh-A-Biy9pUg"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gy1xDSDhU1AfdIq4EG9-FQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "wuIX7YYByh-A-Biy9pUg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mUkt5tksckG11QdtV8P-sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "w-IX7YYByh-A-Biy9pUg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9lQsXvjy3LhFC1-b9LfXYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "59gX7YYBBkbVtX3n9-Eh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zqqnfectBMqAU_ittPTUXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "6NgX7YYBBkbVtX3n9-Eh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oolBkHFnNQYADD_-CEG1dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "YGgX7YYBO2e_P_Qb91-r"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ayg1IWi6ap3XN7RjaMkRog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "2WgX7YYBO2e_P_Qb-GAl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["caAMI7G9uz-EPxuo9p-Rlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "22gX7YYBO2e_P_Qb-GAl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SK9-X9x1FnjCdB8Qub4LOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "QNgX7YYBBkbVtX3n-eUA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FFVbA2EfVlyNzePqODxsIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "omgX7YYBO2e_P_Qb-WKP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hphMgjf8tLvtIOhJJeMEOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "bWgX7YYBO2e_P_Qb9Fyf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aFO2N7Q8fL-8kQlkLemsmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "6eIX7YYByh-A-Biy9JDf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9Lb4LkSEfwYPtryFWDMnyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "72gX7YYBO2e_P_Qb9V0w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FqFEzaoqPCnPS62kfi9IsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "3GgX7YYBO2e_P_Qb-GAl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dnsAy4vOc46KZJiS5dGT6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "fOIX7YYByh-A-Biy-Jux"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H5yRjwOS6pZnYwq27kzT4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "3NgY7YYBBkbVtX3nFPOh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yrneF8Y5HnZdPRsa0iSPNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "AdgY7YYBBkbVtX3nFfV_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z1gE1Mfy7QCTfP_33bgibg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "cmgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qS1V-akFaaHNHyzPM1noGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "g2gY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0E7LlamNni9h1zgUjdYD5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "VuIY7YYByh-A-BiyFK7j"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IszPO-W_NZpvHwzVXBdHRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "huIY7YYByh-A-BiyFa86"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jwj9IGMM0jWZjOAtjE9d7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "gmgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PpzV6LTOPBnvw6J3GGPQ2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "FOIY7YYByh-A-BiyFrK6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["669-RSmA7VOx7u87DdbW9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "emgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FTqEftgEgF-4HalIRfrGpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "UNgY7YYBBkbVtX3nFvYC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["un7IXZTDX45vlOErtbBxEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "dmgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-49a_E8AcF9JV2D17KJ99g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "fmgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v9LkFqrZacA9LLL7WL6jjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "8OIY7YYByh-A-BiyJcLd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N1nRjzqOIB8y-j3xmzMaSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "uNkY7YYBBkbVtX3nJgIl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fu2t6m-D5UJUa1S1LIOpkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xOIY7YYByh-A-BiyJL_0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iIMesBrzxgfShUvivBC9VA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "w-IY7YYByh-A-BiyJL_0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["37H1sSWP9fHHtDykTwvxJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "1GgY7YYBO2e_P_QbJ3-M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X_7eGxy7JatY66SnXVDAow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "m-IY7YYByh-A-BiyI7hA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_lMqaF4gbGiFm8tgIiB6eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8eIY7YYByh-A-BiyJcLd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DhfNoyryOAVBksH9W9zZsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "buIY7YYByh-A-BiyJsRk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6qn8dRThwMb4sKyHdsYIBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "7OIY7YYByh-A-BiyJsXZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zcSEgSwv-OAVAhTXWGeqFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "2OIY7YYByh-A-BiyJ8jR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzyVw9-CnV8kDbp00nDLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "weIY7YYByh-A-BiyJL_0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dZVhEMwoIzMGD6Fthzhnhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "VeIY7YYByh-A-BiyJcFE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "1-IY7YYByh-A-BiyJ8jR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "qdkY7YYBBkbVtX3nKAVC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8giK6mKV7HDPF-jB4e6ajg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "uNgY7YYBBkbVtX3nI_yO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CukCYxi-_rBPDB0cFOdQXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "ZuIY7YYByh-A-BiyJ8dT"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "02gY7YYBO2e_P_QbJ3-M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n6EgKcwZlK3OnMM95lvD6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "KtkY7YYBBkbVtX3nJQGU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8E3vSloXP4dGqDQFAfS1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "L-IY7YYByh-A-BiyNNjt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["prglnbSV--xvMX6ZLnrz1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "9WgY7YYBO2e_P_QbNYme"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jPkF12I7d8n_WLfO9tfRDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "GOIY7YYByh-A-BiyQttA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DOr2yspH9ybCB1ZnzV8BJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "28424007785283"} -{"create": {"_index": "profiling-events-all", "_id": "_2gY7YYBO2e_P_QbN49p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4FcDW-9IPZrZmO_AgR-UVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-mgY7YYBO2e_P_QbN5Lt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7o7oGlZRFPD9hlZHJQFaeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "1OIY7YYByh-A-BiyNNZi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6pwviWWoW88bcg8mc6jotg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "o2gY7YYBO2e_P_QbNIap"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n8NV_5qPZ2yDzkxHAj-OJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "82gY7YYBO2e_P_QbNoxr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NrEr2m1NreTQiIcNz23_Gw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-WgY7YYBO2e_P_QbN5Lt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9hAbTICOesyJ3rX_TlmZDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "dNkY7YYBBkbVtX3nNgnQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v78L_ndncKY9XP2euXU8Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "XmgY7YYBO2e_P_QbN44i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KUsQV-D79LhBqY3oMEarqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "AGgY7YYBO2e_P_QbN5Bp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dePPhixGpLKqsMMaUhbMkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "GuIY7YYByh-A-BiyQttA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PRG5hVGVXLYVZ0h02g0udQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "v2gY7YYBO2e_P_QbQpW8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BoYpwBWsEY6dEqkJuaGn-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "geIY7YYByh-A-BiyNtki"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y5c1W4V6QarCea1y_uUiVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "xOIY7YYByh-A-BiyQtx5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_EsHnjdKV8IAlrfbLT931Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "f2gY7YYBO2e_P_QbNYvj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "XNkY7YYBBkbVtX3nQwsG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "2-IY7YYByh-A-BiyUejm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ji4fn9UFUEQ7XfPSlCiJjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LdkY7YYBBkbVtX3nVR6C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7V6aRLUSfKlOcOf1w7yKYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "VuIY7YYByh-A-BiyVPT1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["09uypqtTxXlIuIrZVnABBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "u2gY7YYBO2e_P_QbV7Dp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6De01qCjG4YpvC5r_qYJMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "0WgY7YYBO2e_P_QbVKit"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qT_CR4Hw6yXc7SN2JGsRRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "utkY7YYBBkbVtX3nVh_a"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8E3vSloXP4dGqDQFAfS1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "6mgY7YYBO2e_P_QbY7m_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHDH56Gg_3eKY-7t_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "MWgY7YYBO2e_P_QbY7vw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a3dWczo-TxKbn0vDhRIXuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "NeIY7YYByh-A-Biycv3l"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qPIovnY_UHTfC1t6f4Hr0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "mGgY7YYBO2e_P_QbZLxc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xxGhbam4Rod7gS2xhM6-rQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} -{"create": {"_index": "profiling-events-all", "_id": "mdkY7YYBBkbVtX3nZCuT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NZK8SEhO7ETtVZs2wRmpXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "z2gY7YYBO2e_P_QbZb1H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6z5XvcuxP2TQmMVJ9Pasiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "LmgY7YYBO2e_P_QbY7vw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aqb62SWn_8yiLVVMpKijFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "KmgY7YYBO2e_P_QbccJo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mqpWTSIkoRMfDHbRs_VWxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "EdkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5e_C8GLvZaqyeMf6f2Lo5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "ndkY7YYBBkbVtX3nZCuT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SuyrLdAGlB-Gqd6pTlCwTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "0GgY7YYBO2e_P_QbZb1H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oHVZwEtujopOZewM6A1sxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "KmgY7YYBO2e_P_QbZb97"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xFHH2tMDnbWLZHLGtCUC2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "imgY7YYBO2e_P_QbZcCt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "22gY7YYBO2e_P_QbZsEV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qP-re8P6QAZOuUpAbsv0YQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "K2gY7YYBO2e_P_QbccJo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xTmXxLtxYtdjX3OFWgcBtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "LGgY7YYBO2e_P_QbccJo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AnUv3QN_2ZayAg10mwHHFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "JmgY7YYBO2e_P_QbccS0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d_wx1WU4Q3GTegN_cAxP6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "KWgY7YYBO2e_P_QbccS0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8dMyIgFlKWEMYc0z_PTTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "M-IY7YYByh-A-Biycv3l"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TkPEPsUQlEC8_tTSu1y8wA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "UtkY7YYBBkbVtX3nZCoi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "zdkY7YYBBkbVtX3nZSze"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-Q9uCXR-TIx0LsEoXVwIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "A2gY7YYBO2e_P_QbcsYD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tdbcrn8vzrvt_4QGjPmE2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "52gY7YYBO2e_P_QbY7m_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eYaT0VAMxHUuQFovR7m_6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "LtkY7YYBBkbVtX3ncS0m"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8nNNC34bhCi_Q3XemgSrmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "mmgY7YYBO2e_P_QbZLxc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HPhJ76yG2kEeQYFKH7p-MA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "KWgY7YYBO2e_P_QbZb97"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XSWbewDyObNkMZFMkquH-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "AWgY7YYBO2e_P_QbcsYD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NKIT-6sz8Rcrv5dQo1Svfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "ctkY7YYBBkbVtX3ndz2e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZnHw5ixNOyEf6O56DZTMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "XeMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["du1yLIRbc8pGUnVxG87AUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "WNkY7YYBBkbVtX3ngT9T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XHyQmv623xT6Vtggew3Wqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "h9kY7YYBBkbVtX3ngkIQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mcFH-Ijp7M4Pm2g7nfowcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "QuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Uo-tsEXpjnB3_59QNk30uA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "VeMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3PF9c3wvWuSHWSRQ7lpy-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "2tkY7YYBBkbVtX3ngD3A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oZgJu0hCy8YZbrC7PCpVUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "WuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["htfRCBFoc4VoJwgN8Ytl-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "I2gY7YYBO2e_P_QbhNYj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wxU1Nh02nDVQ06j0OKiikg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "odkY7YYBBkbVtX3ng0c0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wVWlhmLrIg4ezt4I6Uq9DA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "ZOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9Ccnybqafbd-z2JQ7pZb5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "V-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["no86XANJmCvhh479J_f39Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "kmgY7YYBO2e_P_QbhNep"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "62gY7YYBO2e_P_QbkuQ0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wBeDaSzmKMf_8mF4P9fF3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "xmgY7YYBO2e_P_QbkN-c"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IdBN0EzRB0f6Qp7f7scKtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "KWgY7YYBO2e_P_Qbk-gA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6iO15jj0vZmOpf_lsLTSaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "52gY7YYBO2e_P_QbkuZr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yHqWimgCZ0j1831FpP56GA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "OGgY7YYBO2e_P_Qbk-uk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3qMqnk45t6i15Udhr4oapw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "6WgY7YYBO2e_P_QbkuZr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rnLojn4fqQT9heBUwPp6cQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "CGgY7YYBO2e_P_QblO3v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H0rCzOrKLVxIax6VmWoTig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "zGgY7YYBO2e_P_QbkeNU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sSkvuXEJhjIUI110bPCy-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "FeMY7YYByh-A-Biykxnn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "aOMY7YYByh-A-Biykhac"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WiKwol9D35rFlRLvyV8-tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "KmgY7YYBO2e_P_Qbk-gA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rItueCZaxnQa_9rqoUOBQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "iGgY7YYBO2e_P_Qbk-kz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Tv9_UdgbHXgClRQg7kZh6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "xWgY7YYBO2e_P_QbkN-c"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QnM8HV7T1nK2sOOhDjm8wQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "gGkY7YYBO2e_P_QbsgDe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qcKiZ-b2RFkrAj_Eljk6ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "g2kY7YYBO2e_P_QbswJc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w8p8KkfgO4GoE7XBvV8MBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "EmgY7YYBO2e_P_Qbr__k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sF6SO51w2foii8iV20ReXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "MOMY7YYByh-A-BiysSoN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e0YIAzJAuzs0WiByN2XHsg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "OOMY7YYByh-A-Biysy8e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Al1SOAD2scJtZ2cFUS9UOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ttkY7YYBBkbVtX3npWUb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YQRMSvf2Ru8AcSIkw-mV5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "keMY7YYByh-A-BiypicL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "OeMY7YYByh-A-Biysy8e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["arX6P2NMEiJ9Egas3Yju4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "4mgY7YYBO2e_P_QbpfyH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UeKlcYjnbAHyjaIKIYLphA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} -{"create": {"_index": "profiling-events-all", "_id": "EWgY7YYBO2e_P_Qbr__k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LozaztVRNbKlSptg74c_Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "idkY7YYBBkbVtX3nsnOa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "59kY7YYBBkbVtX3nsGgr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zx1Svrv0kOSpq-dJ-FTQBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "gWkY7YYBO2e_P_QbsgDe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "6NkY7YYBBkbVtX3nsGgr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2eLfnVQNj-bq7jOAcpsXhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "G9kY7YYBBkbVtX3nsW5T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vRLmJJNBX8J2JJ9imi8dPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "8tkY7YYBBkbVtX3nsW-T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zXbfPFB1rTaAbyUdHQG_SA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "leMY7YYByh-A-BiysCjE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "sOMY7YYByh-A-BiywTh8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T3r2NA911Mk7g-SMfweEhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "-GkY7YYBO2e_P_QbwhAA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xZMRPR03JgKHHwNCTAFzKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "t2kY7YYBO2e_P_Qbvwu3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "hWkY7YYBO2e_P_QbxBZh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDKxniIVk0RWV976qb-dNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ENkY7YYBBkbVtX3nw4Mt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzzAkS68b-k5mSq1f5rBNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} -{"create": {"_index": "profiling-events-all", "_id": "89kY7YYBBkbVtX3nxYcT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t0TDin4EdglS8jVWcSlCQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "Z-MY7YYByh-A-BiywjpO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HkfH8phILjoSDOJDy-1TVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} -{"create": {"_index": "profiling-events-all", "_id": "oeMY7YYByh-A-BiyvzV7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "uGkY7YYBO2e_P_Qbvwu3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["50PoVbLjF0hCNpsgtuMl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} -{"create": {"_index": "profiling-events-all", "_id": "IGkY7YYBO2e_P_QbwQ-_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_2COh-c_qJv_z47LD8F6aQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "otkY7YYBBkbVtX3nwX8u"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kZ52LnrbGCiUbg8bZ6HPVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "ONkY7YYBBkbVtX3nwoGT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zlmxsTTPMJDp5d_OFnqBkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} -{"create": {"_index": "profiling-events-all", "_id": "FdkY7YYBBkbVtX3n1Zdg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x5qgOI8HL9M8dwwOC7QfqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "uOMY7YYByh-A-Biy00jx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o0urJMnM1NXJ1Ig4b1nz4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "DOMY7YYByh-A-Biy307C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Px9VhqdWCVDdltHe9kzD-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "weMY7YYByh-A-Biy30wN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c20y3BjHH79qpRmxtyoGUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8tkY7YYBBkbVtX3n4Z2b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-xs-IN1fdS4tlSIAXAM4kA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "mmkY7YYBO2e_P_Qb3yiB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-BJw7BDfkkLGBaeu3mTtJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} -{"create": {"_index": "profiling-events-all", "_id": "TWkY7YYBO2e_P_Qb4CzM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L7ZSY8z08KFXsns3lbxH5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} -{"create": {"_index": "profiling-events-all", "_id": "kNkY7YYBBkbVtX3n86-p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uYDpyfGeOoejLkBpWIKnAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "8GkY7YYBO2e_P_Qb8z_u"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YytYhoY7fNuX6DzylApjYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "z9kY7YYBBkbVtX3n8KgW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gZIR2lVaJhOjBF7vmgmNTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "PeMY7YYByh-A-Biy71tL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q1rqIqW9LrYYmMwOZmvxpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741972803009497"} -{"create": {"_index": "profiling-events-all", "_id": "GdkY7YYBBkbVtX3n7qav"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8XVoH_w6DR25OZwFIyOORA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "zdkY7YYBBkbVtX3n8KgW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g1TbNQs0ehcm3oPXvCWrtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "L2kY7YYBO2e_P_Qb8DhZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8dMyIgFlKWEMYc0z_PTTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "aeMY7YYByh-A-Biy8WB6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KS1N91hvcJHrA9nDriwgFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "RWkY7YYBO2e_P_Qb8Tn-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LaFi74Q4Xy5P6KWfZhKbcQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "o2kY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9IwRLO6YrlzStGJvTS80NQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "ktkY7YYBBkbVtX3n86-p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k0qCCYXqNQJOeLz2IVSZQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "umkY7YYBO2e_P_Qb8z4T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["70l8tnr4W3Z0mVbnzrtQHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} -{"create": {"_index": "profiling-events-all", "_id": "GNkY7YYBBkbVtX3n7qav"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nUFT-4VjV49edA4VHVD06g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "a9kY7YYBBkbVtX3n76eU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qOQyvHeuCAo4zHM-_nszjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "R2kY7YYBO2e_P_Qb8Tn-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uc-1qhzAwxbFSC_X5eM6rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "qeMY7YYByh-A-Biy8mGJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "0WkZ7YYBO2e_P_QbA0mU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["531_Sc4IW-g1NnLnDZ_hAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "mOMY7YYByh-A-Biy_2g-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yvtvFpnNQbBerz7eTt0frA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "yOMY7YYByh-A-Biy_WPI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S_m5ubmad7O5PrXj5rj9Lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "OdkY7YYBBkbVtX3n_rPy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UIIxveWnS2le63DPhl04ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "DNkZ7YYBBkbVtX3nALrp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hc391qiEl23bWsvU8MIb2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "r9kZ7YYBBkbVtX3nAb2C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-89SlyV8Cy-1WAJzSWKJpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "4eMZ7YYByh-A-BiyA25V"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fX0UJpw-KoGxCTaJrmVo4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} -{"create": {"_index": "profiling-events-all", "_id": "s-MZ7YYByh-A-BiyAmtP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m7PtklSiInmoO66e9Bc5vA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "b2kZ7YYBO2e_P_QbAkjS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uEFo0fAyVpU8ZWzISquVFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "ZuMZ7YYByh-A-BiyIIrY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m_wtbg2jNShExrSNavS6Zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "jOMZ7YYByh-A-BiyIYwb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9jnZQOhoYX8CygYi9lQy6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "y9kZ7YYBBkbVtX3nHcyi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["23l0LEXPY3gsZ-a1uM9WBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "smkZ7YYBO2e_P_QbH1uL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ITsishoJBrPM8Hg7nurVvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "UeMZ7YYByh-A-BiyIZCt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dhc8TGgYU9zTniCUbRsImw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "JdkZ7YYBBkbVtX3nItGe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dePPhixGpLKqsMMaUhbMkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} -{"create": {"_index": "profiling-events-all", "_id": "SeMZ7YYByh-A-BiyIIcW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VMoxalfDKAgIFkHWZsfI5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} -{"create": {"_index": "profiling-events-all", "_id": "NGkZ7YYBO2e_P_QbH13S"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "kmkZ7YYBO2e_P_QbHVZZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sZZOI74zGf6PIWKQ_dowgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} -{"create": {"_index": "profiling-events-all", "_id": "0-MZ7YYByh-A-BiyIIiV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PlNxGYc1KQXo_krOBCj9YQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "UOMZ7YYByh-A-BiyIZCt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["41RJH9BALozcwHa5Gm2tSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} -{"create": {"_index": "profiling-events-all", "_id": "dOMZ7YYByh-A-BiyLpYf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["24W9wid4frXP9gbNlVQM1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "QmkZ7YYBO2e_P_QbMG8B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["73zzSG8Oeil4xVlA4Fb1Bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "m9kZ7YYBBkbVtX3nLdV_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fVK6SdkNVQXTuBBVfv40gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "PWkZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DuNugRyUNKQa9O6ipjRVvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} -{"create": {"_index": "profiling-events-all", "_id": "ruMZ7YYByh-A-BiyMJc7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["77Snmu-jdy67fU04W-9dhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "kuMZ7YYByh-A-BiyMZoV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["spFZMKZslqx7eLmYXiBH-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} -{"create": {"_index": "profiling-events-all", "_id": "IOMZ7YYByh-A-BiyLZXk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KSia5T4oTtHLzN1hXKSrIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} diff --git a/x-pack/plugins/profiling/e2e/es_archivers/profiling_executables.json b/x-pack/plugins/profiling/e2e/es_archivers/profiling_executables.json deleted file mode 100644 index 0b92647dc71bb..0000000000000 --- a/x-pack/plugins/profiling/e2e/es_archivers/profiling_executables.json +++ /dev/null @@ -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"}} diff --git a/x-pack/plugins/profiling/e2e/es_archivers/profiling_stackframes.json b/x-pack/plugins/profiling/e2e/es_archivers/profiling_stackframes.json deleted file mode 100644 index a73b8a91ab790..0000000000000 --- a/x-pack/plugins/profiling/e2e/es_archivers/profiling_stackframes.json +++ /dev/null @@ -1,18042 +0,0 @@ -{"create": {"_index": "profiling-stackframes", "_id": "PvVAoy_BDzwgpFCDZC3hTgAAAAAAAADG"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.lang.Object java.util.TreeMap.put(java.lang.Object, java.lang.Object, boolean)", "offset": 43}, "line": {"number": 818}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-ykp"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/gosigar@v0.14.2/sigar_linux.go"}, "function": {"name": "github.com/elastic/gosigar.parseCpuStat"}, "line": {"number": 99}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkJwo"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).floatToken"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GEgO-raQbJR9oQqKeQGCqwAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "XDHKeyPairGenerator.java"}, "function": {"name": "java.security.KeyPair sun.security.ec.XDHKeyPairGenerator.generateKeyPair()", "offset": 2}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gQVKrVY63cW2FiLmkopdkgAAAAAAAABO"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.xContentValuesMap(java.lang.String, java.util.Map)", "offset": 7}, "line": {"number": 1055}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "69pONqxP8-okyxfNdJq0BgAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "void org.apache.lucene.index.SegmentMerger.mergePoints(org.apache.lucene.index.SegmentWriteState)", "offset": 1}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADHmkk"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/pipeline/output.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/pipeline.(*netClientWorker).run"}, "line": {"number": 154}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rAKcp6j6e0fNatBM1v2_fQAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "ISOChronology.java"}, "function": {"name": "org.joda.time.chrono.ISOChronology org.joda.time.chrono.ISOChronology.getInstance(org.joda.time.DateTimeZone)", "offset": 3}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AU1UxR09cGAZB2y_cCThHQAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "int org.apache.lucene.util.compress.LZ4.decompress(org.apache.lucene.store.DataInput, int, byte[], int)", "offset": 10}, "line": {"number": 98}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Lo1bd7PttsuTzFjX2oW5lgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "JarURLConnection.java"}, "function": {"name": "java.io.InputStream sun.net.www.protocol.jar.JarURLConnection.getInputStream()"}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8Vet0f9AosKLKkC3YW3cCQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "int org.apache.lucene.index.SegmentReader.maxDoc()"}, "line": {"number": 230}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "84y2a9q7-onYC7ofRQhclAAAAAAAAAHb"}} -{"Stackframe": {"file": {"name": "Lucene86PointsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene86.Lucene86PointsWriter.merge(org.apache.lucene.index.MergeState)", "offset": 75}, "line": {"number": 237}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "amhiroi9lH-AuCvUISnaLwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "TransportNodesInfoAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction.nodeOperation(org.elasticsearch.transport.TransportRequest, org.elasticsearch.tasks.Task)"}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi02F"}} -{"Stackframe": {"function": {"name": "alloc_skb_with_frags"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 3}, "line": {"number": 333}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "81sQIr1-P7Y9e1lYkQD1WQAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "FileUserPasswdStore.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authc.AuthenticationResult org.elasticsearch.xpack.security.authc.file.FileUserPasswdStore.verifyPassword(java.lang.String, org.elasticsearch.common.settings.SecureString, java.util.function.Supplier)", "offset": 4}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACgePn"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/beat/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/beat.(*Event).GetValue"}, "line": {"number": 66}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.refreshIfNeeded(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)", "offset": 5}, "line": {"number": 375}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YldLdAhiU1Ikhg1VTxvqJwAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$writeAuthToContext$26(org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 1}, "line": {"number": 717}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YFHhxChQm8T7lhNTw8y-DQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService$$Lambda$8362+0x0000000802056c40.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TmmeF9aJ1y9tWPURK0MO_AAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "AbstractNioChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioChannel.doBeginRead()"}, "line": {"number": 405}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "546Ofl7I0zrzRa1FOgUxIAAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "SSLSocketInputRecord.java"}, "function": {"name": "int sun.security.ssl.SSLSocketInputRecord.readHeader()", "offset": 1}, "line": {"number": 471}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yX27IBhykgq1NzojcK_M9QAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction$$Lambda$6969+0x0000000801e5a6f0.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-UKV"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.applyNormalization"}, "line": {"number": 521}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC0u6G"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/sync/mutex.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common/transport.(*Client).IsConnected"}, "line": {"number": 211}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6OqUFDo-whukimJI-B2pMgAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.updateShard(org.elasticsearch.cluster.node.DiscoveryNodes, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.indices.cluster.IndicesClusterStateService$Shard, org.elasticsearch.cluster.routing.RoutingTable, org.elasticsearch.cluster.ClusterState)", "offset": 9}, "line": {"number": 617}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S3pnAYxRAOT6bZ6IxcbP3gAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "RegularEnumSet.java"}, "function": {"name": "boolean java.util.RegularEnumSet.contains(java.lang.Object)"}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pz26RZIIszjYMjtzkRg4ogAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.doAddSortedField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 42}, "line": {"number": 541}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACqWBT"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/path/filepath/match.go"}, "function": {"name": "path/filepath.glob"}, "line": {"number": 340}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "D2w1OmjnRHU8PJVmzRuFcQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "org.apache.lucene.index.IndexFileDeleter$RefCount org.apache.lucene.index.IndexFileDeleter.getRefCount(java.lang.String)"}, "line": {"number": 642}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1vp7uJIrygtcfnEawBUBQQAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 10}, "line": {"number": 500}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9hAOHgmwWWwZTwO4K132QgAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.addNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 3}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACpz60"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/crypto/rsa/rsa.go"}, "function": {"name": "crypto/rsa.decrypt"}, "line": {"number": 566}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jR-SDIwuQ0TSygDzL16iAgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "UnicodeUtil.java"}, "function": {"name": "int org.apache.lucene.util.UnicodeUtil.UTF16toUTF8(java.lang.CharSequence, int, int, byte[])"}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jgoPLq3mlyg7cW-Xz24hgAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.apache.lucene.index.IndexWriter$$Lambda$6909+0x00000008024650f8.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tQF1k-uigHcvxSYChU6zhgAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "Lucene84PostingsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.FieldsProducer org.apache.lucene.codecs.lucene84.Lucene84PostingsFormat.fieldsProducer(org.apache.lucene.index.SegmentReadState)", "offset": 3}, "line": {"number": 441}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bw-sl7S1P8K3DuBIzaLMzAAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.lstat(sun.nio.fs.UnixPath, sun.nio.fs.UnixFileAttributes)", "offset": 3}, "line": {"number": 356}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnxaW"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/stream.go"}, "function": {"name": "encoding/json.(*Decoder).Buffered"}, "line": {"number": 84}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.innerAcquireReplicaOperationPermit(long, long, long, org.elasticsearch.action.ActionListener, boolean, java.util.function.Consumer)", "offset": 67}, "line": {"number": 3264}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMaRW"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/shirou/gopsutil@v3.20.12+incompatible/net/net_linux.go"}, "function": {"name": "github.com/shirou/gopsutil/net.connectionsPidMaxWithoutUidsWithContext"}, "line": {"number": 465}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I10upgJihUkX5rBuiOc-YwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "org.elasticsearch.common.io.stream.Writeable org.elasticsearch.common.io.stream.StreamInput.readOptionalWriteable(org.elasticsearch.common.io.stream.Writeable$Reader)", "offset": 1}, "line": {"number": 992}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFE_v"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/signal_unix.go"}, "function": {"name": "runtime.preemptone"}, "line": {"number": 381}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J"}} -{"Stackframe": {"function": {"name": "__x64_sys_bpf"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l3IQnUKBm9e5-N-d3c2-zQAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "DiscoveryNode.java"}, "function": {"name": "void org.elasticsearch.cluster.node.DiscoveryNode.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 7}, "line": {"number": 367}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "umnLDwSZ51G6dAiG4b1ChAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.maybeRefresh(java.lang.String)"}, "line": {"number": 1870}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Lu4BbYQNxvrnJvSur5jWAAAAAAAAAACq"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 16}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vNIlRmFlIZi4eEeFbJkdJgAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "long org.elasticsearch.index.translog.Translog.findEarliestLastModifiedAge(long, java.lang.Iterable, org.elasticsearch.index.translog.TranslogWriter)", "offset": 4}, "line": {"number": 423}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxGI7"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/os.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.findDistribRelease"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALoEa"}} -{"Stackframe": {"function": {"name": "getname_flags"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXZL0"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/tracer.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.(*Tracer).reportNewMapping"}, "line": {"number": 676}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SzjWJDfxYDkJ2hpV8INQHgAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "SpanId.java"}, "function": {"name": "boolean io.opentelemetry.api.trace.SpanId.isValid(java.lang.CharSequence)", "offset": 3}, "line": {"number": 61}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aYaXPq6Lv-HexLpgIGC1HgAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "HttpClient.java"}, "function": {"name": "boolean sun.net.www.http.HttpClient.available()", "offset": 10}, "line": {"number": 467}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k99M4bkjfKmg3-yt9HFm8AAAAAAAAAB9"}} -{"Stackframe": {"file": {"name": "Lucene84PostingsReader.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene84.Lucene84PostingsReader$BlockDocsEnum.advance(int)", "offset": 21}, "line": {"number": 487}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8lANmDojqVgOU0q9P9_NtwAAAAAAAABx"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKey(java.nio.channels.SelectionKey, io.netty.channel.nio.AbstractNioChannel)", "offset": 45}, "line": {"number": 714}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACtxSw"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_cloud_metadata/add_cloud_metadata.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_cloud_metadata.(*addCloudMetadata).Run"}, "line": {"number": 116}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tFYEApJ9v6tWs_avp9bcdwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "DataInput.java"}, "function": {"name": "long org.apache.lucene.store.DataInput.readVLong(boolean)"}, "line": {"number": 224}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rtMndsSFjJOa_fj_uPxNBwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "SimpleConfigObject.java"}, "function": {"name": "com.typesafe.config.impl.AbstractConfigValue com.typesafe.config.impl.SimpleConfigObject.mergedWithObject(com.typesafe.config.impl.AbstractConfigObject)"}, "line": {"number": 25}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JgZRyAOoiDw-UUT43F6zfAAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "HandledTransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.HandledTransportAction$TransportHandler.messageReceived(org.elasticsearch.action.ActionRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e9VBoOb6ap6y2iBqQXec9wAAAAAAAAFo"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.doAddSortedField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 45}, "line": {"number": 682}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Q6pbXB8sXS8CRivI5IuPxAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABHD4"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.pidleget"}, "line": {"number": 5733}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M-sXhvfna68VyqP_ipf--wAAAAAAAABr"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 8}, "line": {"number": 237}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$3.onResponse(java.lang.Object)"}, "line": {"number": 394}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1OyHt1U_IGwC-U3U_CNytQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "org.elasticsearch.common.io.stream.Writeable org.elasticsearch.common.io.stream.StreamInput.readOptionalWriteable(org.elasticsearch.common.io.stream.Writeable$Reader)", "offset": 1}, "line": {"number": 1035}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pXGB2SA2zuGKxOA7V4UPZAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "SecurityIndexManager.java"}, "function": {"name": "org.elasticsearch.Version org.elasticsearch.xpack.security.support.SecurityIndexManager.oldestIndexMappingVersion(org.elasticsearch.cluster.ClusterState)"}, "line": {"number": 284}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8VM9RKSFrLLWk7EeUI8WuAAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler$1.onResponse(java.lang.Void)", "offset": 1}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iq5pqOpNVrXrvUr0VXwf8gAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.netty4.CopyBytesSocketChannel.writeToSocketChannel(java.nio.channels.SocketChannel, java.nio.ByteBuffer)"}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5gRif6Sjt0HHN5TwyiXUJwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SocketDispatcher.java"}, "function": {"name": "int sun.nio.ch.SocketDispatcher.write(java.io.FileDescriptor, long, int)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mUOvKQebnzFvy2_hJxBVkwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.field(java.lang.String, int)", "offset": 1}, "line": {"number": 526}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "y2oE0QgkMAmHEUodS3YyjgAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "Unsafe.java"}, "function": {"name": "void jdk.internal.misc.Unsafe.invokeCleaner(java.nio.ByteBuffer)", "offset": 9}, "line": {"number": 3860}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6L63fpgszHipLsdjI8HpxgAAAAAAAAC7"}} -{"Stackframe": {"file": {"name": "ResizeRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.ResizeRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 43}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACzCjL"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/mapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.MapStr.Put"}, "line": {"number": 192}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABqf1"}} -{"Stackframe": {"file": {"name": "runtime/sys_linux_amd64.s"}, "function": {"name": "runtime.tgkill"}, "line": {"number": 182}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACvPQO"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/regexp.go"}, "function": {"name": "regexp.(*Regexp).FindStringSubmatch"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ppao3JWLokUncC1uitAjwwAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$authorizeIndexAction$2(java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.Authentication, java.util.Map, org.elasticsearch.xpack.core.security.authz.ResolvedIndices)", "offset": 6}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAYtbf"}} -{"Stackframe": {"function": {"name": "xen_evtchn_do_upcall"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-om6"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/cpuacct.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.cpuacctStat"}, "line": {"number": 137}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAB6VY"}} -{"Stackframe": {"function": {"name": "xfs_remove"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qCAXb4nsA8MBowrcfqVWbwAAAAAAAACC"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.commitInternal(org.apache.lucene.index.MergePolicy)", "offset": 25}, "line": {"number": 3778}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "353Bbxw0b5wHlGJY1WEVWAAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6448+0x00000008023d7788.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9iQ4R94V7tu58rNrkW4m0AAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "RoleReference.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authz.store.RoleKey org.elasticsearch.xpack.core.security.authz.store.RoleReference$NamedRoleReference.id()", "offset": 3}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d5Fyz4cRZC4ajLacBAj4gAAAAAAAAACw"}} -{"Stackframe": {"file": {"name": "PointRangeQuery.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.apache.lucene.search.PointRangeQuery$1.scorerSupplier(org.apache.lucene.index.LeafReaderContext)", "offset": 16}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k-oYEuE0qNzcsmMdylxs5gAAAAAAAAEX"}} -{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.fs.UnixChannelFactory.open(int, sun.nio.fs.UnixPath, java.lang.String, sun.nio.fs.UnixChannelFactory$Flags, int)", "offset": 60}, "line": {"number": 247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HA3TD5377NJUVWpcrnF53AAAAAAAAADX"}} -{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.doHandleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 27}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JvETSNUFmQzhSgQRV87p_gAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.xcontent.support.AbstractXContentParser.readMapSafe(org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier)", "offset": 2}, "line": {"number": 312}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TQJwJt0-vl6QQoIDFyT9WgAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 3}, "line": {"number": 818}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oGmEXpJvjzbRv2r-bFFlfwAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 59}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ERC3TORIgU0YrmeCK0zHCgAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer()", "offset": 2}, "line": {"number": 2585}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8V6RThS4xLGvyBskf3U-ngAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$CachingAsyncSupplier.lambda$getAsync$0(org.elasticsearch.action.ActionListener, java.lang.Object)", "offset": 1}, "line": {"number": 665}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxGPn"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/os.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.parseDistribRelease"}, "line": {"number": 246}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CSBR8000mbn4kRcknKz6FgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.io.stream.StreamInput.readOptionalString()", "offset": 1}, "line": {"number": 374}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EljCaLNs8oyF8fQALGTMLQAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.map(java.util.Map, boolean, boolean)", "offset": 13}, "line": {"number": 1079}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi59a"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/dir_unix.go"}, "function": {"name": "os.(*File).readdir"}, "line": {"number": 144}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x5juxqyDQI_RM44G4oxplwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "InternalTerms.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.search.aggregations.bucket.terms.InternalTerms$Bucket.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 1}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADy"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lmIKhGgz3KOwBWeg9ui0kwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.rest.RestController$ResourceHandlingHttpChannel.newBuilder()"}, "line": {"number": 468}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAROxm"}} -{"Stackframe": {"function": {"name": "security_file_free"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "int sun.nio.fs.UnixNativeDispatcher.open(sun.nio.fs.UnixPath, int, int)", "offset": 3}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nPCAxeiqMcZau3eqPVPDPQAAAAAAAABn"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.lambda$getAuthenticatorConsumer$5(boolean, org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.security.authc.Authenticator, org.elasticsearch.action.ActionListener)", "offset": 14}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cvO0nTZWHAGHgrzWr6Ek0AAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "BulkByScrollParallelizationHelper.java"}, "function": {"name": "void org.elasticsearch.reindex.BulkByScrollParallelizationHelper.startSlicedAction(org.elasticsearch.index.reindex.AbstractBulkByScrollRequest, org.elasticsearch.index.reindex.BulkByScrollTask, org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionListener, org.elasticsearch.client.internal.Client, org.elasticsearch.cluster.node.DiscoveryNode, java.lang.Runnable)"}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ps-KH097Va-KzvXcSGrmDAAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "Nodes.java"}, "function": {"name": "java.lang.Object[] java.util.stream.Nodes$SpinedNodeBuilder.asArray(java.util.function.IntFunction)", "offset": 1}, "line": {"number": 1296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FmQpCEOKh0tQsiSVjTAfogAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "EventFD.java"}, "function": {"name": "int sun.nio.ch.EventFD.set0(int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YzwvhJEECiVq3OZiyG7BvwAAAAAAAABS"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "java.util.Set org.elasticsearch.xpack.security.authz.RBACEngine.resolveAuthorizedIndicesFromRole(org.elasticsearch.xpack.core.security.authz.permission.Role, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.util.Map)", "offset": 9}, "line": {"number": 686}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jZIIbzomXYaxFEdAToFiSgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.lambda$acquireReplicaOperationPermit$27(java.lang.String, java.lang.Object, org.elasticsearch.action.ActionListener)"}, "line": {"number": 3581}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgmh3"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mheap.go"}, "function": {"name": "runtime.scanobject"}, "line": {"number": 664}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wn0esIyl5_S_ADn7eZG1ugAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "LambdaForm$MH"}, "function": {"name": "long java.lang.invoke.LambdaForm$MH+0x0000000801159400.invoke(java.lang.Object, long, java.lang.Object, java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E-LPqDQzyXigNIYWBMlgtgAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "LoggingHandler.java"}, "function": {"name": "void io.netty.handler.logging.LoggingHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 3}, "line": {"number": 280}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yo-l279if9LXU5uKe7FeswAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "boolean org.elasticsearch.search.query.QueryPhase.searchWithCollector(org.elasticsearch.search.internal.SearchContext, org.elasticsearch.search.internal.ContextIndexSearcher, org.apache.lucene.search.Query, java.util.LinkedList, boolean, boolean)", "offset": 14}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MWF-ta49FweBhvwuhsiFKwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "DisjunctionDISIApproximation.java"}, "function": {"name": "int org.apache.lucene.search.DisjunctionDISIApproximation.advance(int)", "offset": 3}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z10oPDA4ABXY9WzGmRvBRAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "ChainInputFactory.java"}, "function": {"name": "org.elasticsearch.xpack.core.watcher.input.Input org.elasticsearch.xpack.watcher.input.chain.ChainInputFactory.parseInput(java.lang.String, org.elasticsearch.xcontent.XContentParser)"}, "line": {"number": 20}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2kN50je9O3LVK4VZVGtFfQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "XECOperations.java"}, "function": {"name": "java.math.BigInteger sun.security.ec.XECOperations.computePublic(byte[])", "offset": 1}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PqkKpz2WDphJH5ROhuDMyAAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "IndexId.java"}, "function": {"name": "void org.elasticsearch.repositories.IndexId.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 2}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "P25sJXYK2Dig2gvT-_j6hQAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator$$Lambda$6574+0x0000000802412c60.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o__lFhTsOKstKDAfxbDtFgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ApmServerConfigurationSource.java"}, "function": {"name": "void co.elastic.apm.agent.configuration.ApmServerConfigurationSource$1.run()"}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zD97zbMWWlXNK87iC8v0xgAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6078+0x0000000801c4fb00.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACp71E"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/io/ioutil/ioutil.go"}, "function": {"name": "io/ioutil.ReadDir.func1"}, "line": {"number": 68}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvQq"}} -{"Stackframe": {"function": {"name": "hrtimer_sleeper_start_expires"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BTobNAGTus4ntELtY3QWmAAAAAAAAAFI"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.forceApply(org.apache.lucene.index.FrozenBufferedUpdates)", "offset": 68}, "line": {"number": 5650}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGumn"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file.go"}, "function": {"name": "os.(*File).Read"}, "line": {"number": 360}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IwQr5N-zzqzl-VCE4qIkSwAAAAAAAABX"}} -{"Stackframe": {"file": {"name": "DocumentsWriterDeleteQueue.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriterDeleteQueue$DocValuesUpdatesNode.apply(org.apache.lucene.index.BufferedUpdates, int)", "offset": 3}, "line": {"number": 482}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAioGp"}} -{"Stackframe": {"function": {"name": "__sys_socket"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b5D4G32aP0YH2ukb-bXGLgAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "AbstractCollection.java"}, "function": {"name": "boolean java.util.AbstractCollection.addAll(java.util.Collection)", "offset": 1}, "line": {"number": 337}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3P6jeZ7NY5SsRS3CRl6_8AAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "FieldReader.java"}, "function": {"name": "org.apache.lucene.index.TermsEnum org.apache.lucene.codecs.lucene90.blocktree.FieldReader.iterator()"}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cVP-3jHAx-YcnahqMKs8awAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelHandlerContext io.netty.channel.AbstractChannelHandlerContext.flush()", "offset": 3}, "line": {"number": 728}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-mW4"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/blkio.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.blkioThrottle"}, "line": {"number": 208}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EEKC5tu_ceJ8owkppwxOEgAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.advance(int)", "offset": 2}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TZ72Z395ctMrvNsGwnkUEwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction$$Lambda$6993+0x0000000801d44f70.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qYsHCAcImIUjmmO1gdenlQAAAAAAAACE"}} -{"Stackframe": {"file": {"name": "ForkJoinPool.java"}, "function": {"name": "void java.util.concurrent.ForkJoinPool.runWorker(java.util.concurrent.ForkJoinPool$WorkQueue)", "offset": 17}, "line": {"number": 1607}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6dOf_roibFbI4CWjV9e8PwAAAAAAAACR"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap$ValueSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 18}, "line": {"number": 1779}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2_NEM0Tf7V5LLU5GCY3aFAAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "User.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.user.User.writeUser(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.common.io.stream.StreamOutput)", "offset": 3}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4X1D0bE8dXWnBHefwzL1KgAAAAAAAACM"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "int sun.nio.ch.FileChannelImpl.write(java.nio.ByteBuffer)", "offset": 14}, "line": {"number": 285}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uC86pFXXnBLCj6eRRljPDwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 1}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WzcM34XPrxORvaGGXCAlPAAAAAAAAAEu"}} -{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.core.security.authc.support.BCrypt.hashpw(org.elasticsearch.common.settings.SecureString, java.lang.String)", "offset": 45}, "line": {"number": 1640}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kxlPGvmJaixHgVVGYdR3ZAAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "void org.apache.lucene.search.ReferenceManager.release(java.lang.Object)", "offset": 1}, "line": {"number": 274}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tPpj-2ALdWrlHSun1i2qNwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Releasables.java"}, "function": {"name": "void org.elasticsearch.core.Releasables.close(org.elasticsearch.core.Releasable[])"}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w9EvqgSUrfSjTDJRVa3cFQAAAAAAAABN"}} -{"Stackframe": {"file": {"name": "ApmServerClient.java"}, "function": {"name": "java.lang.Object co.elastic.apm.agent.report.ApmServerClient.execute(java.lang.String, co.elastic.apm.agent.report.ApmServerClient$ConnectionHandler)", "offset": 11}, "line": {"number": 252}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fCWPdfu_RIOGbkcM4xycpQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction$$Lambda$6755+0x0000000801d0dc00.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACNG02"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/pkg/errors@v0.9.1/stack.go"}, "function": {"name": "github.com/pkg/errors.callers"}, "line": {"number": 167}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK"}} -{"Stackframe": {"function": {"name": "vtable chunks"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1dAR1DRu30HO0nOIbN0CKgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "FilterInputStream.java"}, "function": {"name": "int java.io.FilterInputStream.read(byte[])"}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ClnxK8O8Hp5YRTaCc4x_4AAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "void org.elasticsearch.common.settings.Settings.(java.util.Map, org.elasticsearch.common.settings.SecureSettings, org.elasticsearch.common.settings.Settings$1)"}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcBX"}} -{"Stackframe": {"function": {"name": "__do_sys_newfstatat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2ea6Wt_FUSqyCQ-T65v7_wAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "void sun.nio.ch.NioSocketImpl$2.write(byte[], int, int)"}, "line": {"number": 826}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "76_PB6caMKhNJHxW0wLqKwAAAAAAAAA8"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeBulkItems$21(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationContext, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener, java.lang.String, java.util.Set)", "offset": 6}, "line": {"number": 801}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Tq2A_ghNgr4Sgbd4ToSeBgAAAAAAAADK"}} -{"Stackframe": {"file": {"name": "LRUQueryCache.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight.bulkScorer(org.apache.lucene.index.LeafReaderContext)", "offset": 38}, "line": {"number": 864}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiKCv"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.Dup"}, "line": {"number": 304}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CJqja5qFVv0rxd5_F1ndXAAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 3}, "line": {"number": 1243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S6pxO_hq-Fbi17BT1HtIiAAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "org.elasticsearch.index.Index[] org.elasticsearch.action.search.TransportSearchAction.resolveLocalIndices(org.elasticsearch.action.OriginalIndices, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider)", "offset": 3}, "line": {"number": 595}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "auNwTX46Nq4EeEhNv4i6ZgAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "java.nio.ByteBuffer sun.security.ssl.SSLSocketImpl.readApplicationRecord(java.nio.ByteBuffer)", "offset": 9}, "line": {"number": 1411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7NbgxcudUSJnoypoAEAp8QAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "MultiLevelSkipListReader.java"}, "function": {"name": "boolean org.apache.lucene.codecs.MultiLevelSkipListReader.loadNextSkip(int)"}, "line": {"number": 152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ia3K2jrNmbrn13w8cuQ30QAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$5669+0x0000000801b171d0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABY"}} -{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.lang.Object java.util.stream.AbstractPipeline.evaluate(java.util.stream.TerminalOp)", "offset": 7}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADHX31"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/config.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/actions.NewExtractField"}, "line": {"number": 186}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEOCve"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/helper/socket/ptable.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/helper/socket.(*ProcTable).accessibleProcs"}, "line": {"number": 131}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Kp5D81toWlYI8wTmGy48ggAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "NestedDocuments.java"}, "function": {"name": "org.elasticsearch.search.LeafNestedDocuments org.elasticsearch.search.NestedDocuments.getLeafNestedDocuments(org.apache.lucene.index.LeafReaderContext)", "offset": 3}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m5rnlBM51oea-h9ZD0jXEQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "MessageToMessageCodec.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageCodec$2.decode(io.netty.channel.ChannelHandlerContext, java.lang.Object, java.util.List)"}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lSN_wOi6EtlLmPRGOv3HiAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Sink.java"}, "function": {"name": "void java.util.stream.Sink$ChainedReference.begin(long)"}, "line": {"number": 253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_jOWl9rQ0a9rjiw4HiJl9AAAAAAAAAFH"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4.compressWithDictionary(byte[], int, int, int, org.apache.lucene.store.DataOutput, org.apache.lucene.util.compress.LZ4$HashTable)", "offset": 48}, "line": {"number": 479}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WwREYF5lTvFlO6BaJCM5zQAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "void java.util.Collections.reverse(java.util.List)", "offset": 3}, "line": {"number": 382}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RbzqTTxiJ8XotiOA2Wj5YwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter$$Lambda$6913+0x0000000801e26430.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABWdMN"}} -{"Stackframe": {"file": {"name": "encoding/gob/decode.go"}, "function": {"name": "encoding/gob.(*Decoder).decodeValue"}, "line": {"number": 1210}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6M6LrYsHqAc6auZXIZFiuQAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "boolean org.elasticsearch.index.translog.Translog.ensureSynced(java.util.stream.Stream)", "offset": 4}, "line": {"number": 865}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VuN94T655MWJDhWvTQiB6QAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.SegmentMerger$$Lambda$8555+0x0000000802753d38.merge(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.SegmentReadState)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LrT96WuiUXgKg4BgtAP98wAAAAAAAAA_"}} -{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$1(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 7}, "line": {"number": 147}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RPclKk5Lk9GZ9ViXMhXyvQAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "AppenderControl.java"}, "function": {"name": "void org.apache.logging.log4j.core.config.AppenderControl.callAppenderPreventRecursion(org.apache.logging.log4j.core.LogEvent)", "offset": 1}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ienfSu3O9tP1fI5DzP9QHAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings$Builder org.elasticsearch.common.settings.Settings$Builder.put(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 1120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACjCBU"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file_posix.go"}, "function": {"name": "os.statNolog"}, "line": {"number": 246}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mSJ6fSPuHzsY_PJcgbXOQAAAAAAAAACa"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "void sun.nio.fs.UnixPath.initOffsets()", "offset": 33}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MKz9_e5XeNRnH7oZOIvo8wAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.tracing.apm.APMTracer$$Lambda$6320+0x00000008022f32c8.set(java.lang.Object, java.lang.String, java.lang.String)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.executeQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)", "offset": 7}, "line": {"number": 622}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-mKRCTh8AFw2quERsAqZdwAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$CachingAsyncSupplier.getAsync(org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 663}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hM5W1SXaVZjLnfPtBoKEygAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "ValuesSource.java"}, "function": {"name": "org.apache.lucene.index.SortedSetDocValues org.elasticsearch.search.aggregations.support.ValuesSource$Bytes$WithOrdinals$FieldData.globalOrdinalsValues(org.apache.lucene.index.LeafReaderContext)", "offset": 2}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "62YI4UQGzJYoqSNJQeEjWQAAAAAAAABq"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.acceptState(org.elasticsearch.cluster.ClusterState)", "offset": 8}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o3aAA_gtGWT3yHJNsrFNiQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.lang.Object java.util.TreeMap.remove(java.lang.Object)"}, "line": {"number": 881}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zOGwPIsGkrVY6Li5mXSYmQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.apache.lucene.index.BufferedUpdates$$Lambda$8767+0x0000000802791580.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vFHpuMfxurJGYl7N87FnEAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node[] java.util.HashMap.resize()"}, "line": {"number": 684}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i9YfJMsMCNR_uoRNlOrFdwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "TransportNodesInfoAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction.newNodeResponse(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.node.DiscoveryNode)"}, "line": {"number": 28}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DbycTBfukhUabAsoiB7QMQAAAAAAAAHY"}} -{"Stackframe": {"file": {"name": "Lucene90PointsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90PointsWriter.merge(org.apache.lucene.index.MergeState)", "offset": 80}, "line": {"number": 264}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASgYf"}} -{"Stackframe": {"function": {"name": "path_name"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-tz_NBMzEGSH72viykreUwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "void io.netty.channel.DefaultChannelPipeline$HeadContext.read(io.netty.channel.ChannelHandlerContext)"}, "line": {"number": 1362}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bw7Et1OruEgeiOGCngYuPwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter$$Lambda$6522+0x0000000801cbc228.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iLCTWRKOWFgxy9lCZCKQuAAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.getText()", "offset": 3}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_WCO"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/auditd/audit_linux.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/auditd.buildMetricbeatEvent"}, "line": {"number": 550}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FfM3fVYqFhj_g4shLOoSnQAAAAAAAAFG"}} -{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.doInternalExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.bulk.BulkRequest, java.lang.String, org.elasticsearch.action.ActionListener)", "offset": 56}, "line": {"number": 278}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MlyHaLRJGNn2Vpy3WSPy_QAAAAAAAACb"}} -{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "void java.security.AccessController.checkPermission(java.security.Permission)", "offset": 29}, "line": {"number": 1067}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L-H-2xf4p7cHBKcpauzLWQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.ingest.IngestService$$Lambda$5606+0x0000000801b0d358.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "56J_quP6E7ubMy0oFC4pVgAAAAAAAADG"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.lang.Object java.util.TreeMap.put(java.lang.Object, java.lang.Object, boolean)", "offset": 43}, "line": {"number": 826}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yVj-DhlWsbRwk1ix0xTSnAAAAAAAAACY"}} -{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "java.lang.Object java.util.concurrent.ConcurrentHashMap.get(java.lang.Object)", "offset": 11}, "line": {"number": 947}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ5Qy"}} -{"Stackframe": {"function": {"name": "__alloc_pages_nodemask"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACqWCZ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/path/filepath/match.go"}, "function": {"name": "path/filepath.glob"}, "line": {"number": 346}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxC9t"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/host_linux.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.(*host).NetworkCounters"}, "line": {"number": 86}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKTe3"}} -{"Stackframe": {"function": {"name": "alloc_pages_vma"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eLf6mPNLMOgkAfsO77gC6AAAAAAAAAEF"}} -{"Stackframe": {"file": {"name": "FieldAndDocumentLevelSecurityRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.FieldAndDocumentLevelSecurityRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 31}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-LPk"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/auparse.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.extractKeyValuePairs"}, "line": {"number": 69}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACHvVy"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/sort/slice.go"}, "function": {"name": "sort.Slice"}, "line": {"number": 18}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL"}} -{"Stackframe": {"function": {"name": "entry_SYSCALL_64_after_hwframe"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BSSHdcDrfxhJYR_pl8U8VgAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "GroupedActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.GroupedActionListener.onResponse(java.lang.Object)", "offset": 6}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TOT6Kzt9cNfqtt7rfwzzSwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(org.elasticsearch.rest.RestRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFyQd"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/sys_linux_amd64.s"}, "function": {"name": "runtime.walltime1"}, "line": {"number": 252}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "v3ZYrEgxrjqPJ0BNeAYc9wAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.finishStoredFields()"}, "line": {"number": 378}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RXVkKerFQtxul6XD6GQGFQAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "boolean org.elasticsearch.xpack.security.authz.store.CompositeRolesStore$RoleKey.equals(java.lang.Object)", "offset": 3}, "line": {"number": 582}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YfRHlE1vu_h7IFmmvCCYcQAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "ManagedSelector.java"}, "function": {"name": "void org.eclipse.jetty.io.ManagedSelector.createEndPoint(java.nio.channels.SelectableChannel, java.nio.channels.SelectionKey)", "offset": 1}, "line": {"number": 386}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pDliMdDN6tdugd_uWfECTwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$7030+0x0000000801e527b8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ig4O8IWFanKbF_VU4hFAfgAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter$$Lambda$4701.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zsmqElNKWoxAiguA-24XnwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$6(org.elasticsearch.transport.TransportRequest, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener, java.util.List)"}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gTk1MkSzzpomxPmIhiIHzQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$4428.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9jU7BJvOf_vpcP8l4_vG5AAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "LambdaForm$MH"}, "function": {"name": "java.lang.Object java.lang.invoke.LambdaForm$MH+0x000000080131e000.invoke(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QtMelJKn2GMpVgIdbCShVAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermission.impliesIgnoreMask(java.io.FilePermission)"}, "line": {"number": 589}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "A1THegAXTfv6XrMMu5_78AAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 21}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NDiNPs2SIuj4NddpL8knJAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "FileDispatcherImpl.java"}, "function": {"name": "int sun.nio.ch.FileDispatcherImpl.force(java.io.FileDescriptor, boolean)"}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run()", "offset": 2}, "line": {"number": 850}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lRDjosBiqg-kA8rYcnFDJQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "RemoteClusterAwareClient.java"}, "function": {"name": "void org.elasticsearch.transport.RemoteClusterAwareClient.maybeEnsureConnected(org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAD9EBn"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/mb/event.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/mb.(*Event).BeatEvent"}, "line": {"number": 78}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8gCX4yiEJccsUYm2373XlQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Netty4TcpChannel.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4TcpChannel.sendMessage(org.elasticsearch.common.bytes.BytesReference, org.elasticsearch.action.ActionListener)"}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QyqSuO4knQd2qtDeF-TNPgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.dispatchedShardOperationOnReplica(org.elasticsearch.action.support.replication.ReplicatedWriteRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8DjWuv2ON9M4hqERzLLGrwAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$5891.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_jOWl9rQ0a9rjiw4HiJl9AAAAAAAAAB6"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4.compressWithDictionary(byte[], int, int, int, org.apache.lucene.store.DataOutput, org.apache.lucene.util.compress.LZ4$HashTable)", "offset": 26}, "line": {"number": 457}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R71vwc9Gh9GvdvgaspSkvwAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "Permissions.java"}, "function": {"name": "boolean java.security.Permissions.implies(java.security.Permission)", "offset": 6}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F7mdG6BLMSTCR7KnVMINiQAAAAAAAAC7"}} -{"Stackframe": {"file": {"name": "Netty4HttpPipeliningHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpPipeliningHandler.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 21}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACivKM"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/internal/poll/fd_poll_runtime.go"}, "function": {"name": "internal/poll.(*pollDesc).prepare"}, "line": {"number": 63}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vKQgPQ0wjIftRUZyC5K9ywAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "InferenceProcessor.java"}, "function": {"name": "void org.elasticsearch.xpack.ml.inference.ingest.InferenceProcessor$Factory.accept(org.elasticsearch.cluster.ClusterState)", "offset": 2}, "line": {"number": 210}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$DelegatingFailureActionListener.onResponse(java.lang.Object)"}, "line": {"number": 217}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VoQ5AJHHG4Z_KZgZidNsZQAAAAAAAACf"}} -{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "org.elasticsearch.common.xcontent.ToXContent org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.readBlob(org.elasticsearch.common.blobstore.BlobContainer, java.lang.String)", "offset": 12}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateListeners(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.common.StopWatch)"}, "line": {"number": 523}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iXWHNd_y-hSLbIW9XiqyhgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap$KeyIterator.next()"}, "line": {"number": 1628}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Tq2A_ghNgr4Sgbd4ToSeBgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "LRUQueryCache.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight.bulkScorer(org.apache.lucene.index.LeafReaderContext)", "offset": 1}, "line": {"number": 827}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ziy0GwbDorFuNEuEb935dAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "Lucene80NormsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.NormsConsumer org.apache.lucene.codecs.lucene80.Lucene80NormsFormat.normsConsumer(org.apache.lucene.index.SegmentWriteState)"}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PTytLEfKUZaVfTsnhaM7GgAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "DateTimeFormatterBuilder.java"}, "function": {"name": "int org.joda.time.format.DateTimeFormatterBuilder$Composite.parseInto(org.joda.time.format.DateTimeParserBucket, java.lang.CharSequence, int)", "offset": 7}, "line": {"number": 2516}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kwGfYhr1GsPl-q9KOVF6bQAAAAAAAAGs"}} -{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "int sun.security.ssl.SSLSocketImpl$AppInputStream.read(byte[], int, int)", "offset": 71}, "line": {"number": 1069}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACg6T7"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/internal/atomic/types.go"}, "function": {"name": "runtime.netpoll"}, "line": {"number": 172}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGnmb"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/internal/poll/fd_unix.go"}, "function": {"name": "internal/poll.(*FD).Write"}, "line": {"number": 267}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrkU"}} -{"Stackframe": {"function": {"name": "htab_map_get_next_key"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jEQ_q3Cc24efLRNP0zlOcwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction.newResponseAsync(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.nodes.BaseNodesRequest, java.util.List, java.util.List, org.elasticsearch.action.ActionListener)"}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEWwzb"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/module/docker/docker.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/module/docker.exportContainerStats"}, "line": {"number": 146}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M2BXupKk-ecTJedmRPFuNgAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "HexUtils.java"}, "function": {"name": "java.lang.String co.elastic.apm.agent.util.HexUtils.bytesToHex(byte[])", "offset": 2}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1WldWE0hyfvqjPz-ty_czQAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "AbstractAsyncTask.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractAsyncTask.rescheduleIfNecessary()", "offset": 6}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vTzocF17h1-CILR9AtkQhAAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$6045+0x0000000801b0f578.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LqWoZU6IFVF0r3seu7DqqgAAAAAAAAD5"}} -{"Stackframe": {"file": {"name": "SimpleConfigObject.java"}, "function": {"name": "com.typesafe.config.impl.SimpleConfigObject com.typesafe.config.impl.SimpleConfigObject.mergedWithObject(com.typesafe.config.impl.AbstractConfigObject)", "offset": 39}, "line": {"number": 288}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbgp"}} -{"Stackframe": {"function": {"name": "vfs_statx_fd"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene80.IndexedDISI.advance(int)"}, "line": {"number": 379}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXrqk"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.(*GenericEventConverter).normalizeMap"}, "line": {"number": 78}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter$IndexWriterMergeSource.merge(org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 1}, "line": {"number": 5922}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VYAhhPSb0PZhnETden6FRAAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.action.support.nodes.BaseNodeRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 4}, "line": {"number": 282}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxE1E"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/memory_linux.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.parseMemInfo.func1"}, "line": {"number": 45}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEMRM"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/malloc.go"}, "function": {"name": "runtime.(*mcache).nextFree"}, "line": {"number": 882}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NClnX-WugtIozBMJf4sI2AAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext.putTransient(java.lang.String, java.lang.Object)"}, "line": {"number": 502}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zImAN3h5Rwz0-_386yTd-gAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient.bulk(org.elasticsearch.action.bulk.BulkRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 484}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mbtJBLFirmHoLdxa0M274QAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "TrackingDirectoryWrapper.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.TrackingDirectoryWrapper.createOutput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mL_UI4nPuRhvUWgvxCaoSwAAAAAAAAC8"}} -{"Stackframe": {"file": {"name": "RoutingNodes.java"}, "function": {"name": "void org.elasticsearch.cluster.routing.RoutingNodes.(org.elasticsearch.cluster.ClusterState, boolean)", "offset": 33}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5mFfstASu8Qeky6I-gL8pgAAAAAAAAEK"}} -{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.fs.UnixChannelFactory.open(int, sun.nio.fs.UnixPath, java.lang.String, sun.nio.fs.UnixChannelFactory$Flags, int)", "offset": 59}, "line": {"number": 246}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIquY"}} -{"Stackframe": {"function": {"name": "__lru_cache_add"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DQnuXF6pjLzI_ydpQiFW0QAAAAAAAACG"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "int sun.nio.ch.FileChannelImpl.readInternal(java.nio.ByteBuffer, long)", "offset": 12}, "line": {"number": 976}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NzHJV3J_u1LNN2J-Rsr7ggAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "boolean org.elasticsearch.discovery.PeerFinder$$Lambda$5243+0x0000000801a4fa58.test(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gOHDhO4HhDjaNNSk-ZSJ4wAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.IndexWriter$$Lambda$6321+0x00000008023af160.process(org.apache.lucene.index.IndexWriter)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HSSZPv-Jiv2fPLN9vFx42gAAAAAAAAEL"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.rest.RestHandler, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 47}, "line": {"number": 327}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oN81eJrwg8wCXEi9syhH9gAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.deleteCommits()", "offset": 14}, "line": {"number": 436}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ieVPbh3z67ZFj7IGoqq7zgAAAAAAAACE"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()", "offset": 26}, "line": {"number": 1055}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.close(java.lang.Iterable)", "offset": 4}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jYKah-GaJpbI-jAwYcFi1QAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "EsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor.execute(java.lang.Runnable)"}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j_4mO8j1B3ZME-tdcn6y6QAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.IndexWriter$$Lambda$5571+0x0000000801b70a08.process(org.apache.lucene.index.IndexWriter)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qi7IR3eJot-ftPl_JX6DqgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.cluster.node.info.PluginsAndModules$$Lambda$7518+0x0000000802557568.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAC1ivT"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/queue/diskqueue/queue.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/queue/diskqueue.NewQueue.func3"}, "line": {"number": 216}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(java.lang.Object)", "offset": 2}, "line": {"number": 379}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr"}} -{"Stackframe": {"function": {"name": "link_path_walk.part.33"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACKFxt"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bufio/scan.go"}, "function": {"name": "bufio.(*Scanner).Scan"}, "line": {"number": 146}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bERE1ZmRN0ih-04LUSxh0gAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.putTransientIfNonExisting(java.lang.String, java.lang.Object)"}, "line": {"number": 570}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xOwAtmzQuXAkclbU5p26WwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$7017+0x0000000801e50a50.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Eqiy1VsW3_B402acjocAnAAAAAAAAALS"}} -{"Stackframe": {"file": {"name": "SearchResponseMerger.java"}, "function": {"name": "org.elasticsearch.action.search.SearchResponse org.elasticsearch.action.search.SearchResponseMerger.getMergedResponse(org.elasticsearch.action.search.SearchResponse$Clusters)", "offset": 90}, "line": {"number": 200}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mKVsnuGyVSIshrQFdthLlAAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$6563+0x0000000801cbcf28.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABFvI"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.sysmon"}, "line": {"number": 5181}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hlKDzMS4nmygKgJXIbJdqgAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.executeQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)", "offset": 5}, "line": {"number": 444}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEh4a"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcscavenge.go"}, "function": {"name": "runtime.(*pageAlloc).scavenge"}, "line": {"number": 411}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O9IjcD5d1rTcG4kkieTvLAAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.addDocs(java.util.List, org.apache.lucene.index.IndexWriter)", "offset": 3}, "line": {"number": 1251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACIAmE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.Fscan"}, "line": {"number": 123}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f_rIvCQMW5oayMPHCj4aUgAAAAAAAADZ"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "int java.io.FilePermission.containsPath(java.nio.file.Path, java.nio.file.Path)", "offset": 55}, "line": {"number": 757}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pVVNc-L7RmUgxZ3qRu85WAAAAAAAAAEj"}} -{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "java.lang.String[] org.elasticsearch.cluster.metadata.IndexNameExpressionResolver.indexAliases(org.elasticsearch.cluster.ClusterState, java.lang.String, java.util.function.Predicate, java.util.function.Predicate, boolean, java.util.Set)", "offset": 38}, "line": {"number": 695}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hLSDzfljATRl53NLUpYdIQAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "java.nio.channels.Selector sun.nio.ch.EPollSelectorImpl.wakeup()", "offset": 3}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RZ01NrWKTMDuXelOk2KnKQAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.wrap(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 15}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAClbKF"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/interface.go"}, "function": {"name": "net.addrTable"}, "line": {"number": 145}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "TransportShardRefreshAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction.shardOperationOnReplica(org.elasticsearch.action.support.replication.BasicReplicationRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 12}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lFmnG5E5GwmKFptmUf-qtgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.doHandleResponse(org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 369}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lMVnJZCEehytXJ1BAE4FQgAAAAAAAAB4"}} -{"Stackframe": {"file": {"name": "SSLSocketInputRecord.java"}, "function": {"name": "sun.security.ssl.Plaintext[] sun.security.ssl.SSLSocketInputRecord.decode(java.nio.ByteBuffer[], int, int)", "offset": 31}, "line": {"number": 190}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlzoH"}} -{"Stackframe": {"function": {"name": "tcp_v4_do_rcv"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Wxf0OtqIcfKcZtbpDMZ1QgAAAAAAAABr"}} -{"Stackframe": {"file": {"name": "MainClientExec.java"}, "function": {"name": "void org.apache.http.impl.execchain.MainClientExec.establishRoute(org.apache.http.auth.AuthState, org.apache.http.HttpClientConnection, org.apache.http.conn.routing.HttpRoute, org.apache.http.HttpRequest, org.apache.http.client.protocol.HttpClientContext)", "offset": 11}, "line": {"number": 393}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "TransportNodesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation(org.elasticsearch.transport.TransportRequest, org.elasticsearch.tasks.Task)"}, "line": {"number": 32}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr9"}} -{"Stackframe": {"function": {"name": "vfs_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE3Xc"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/preempt.go"}, "function": {"name": "runtime.suspendG"}, "line": {"number": 252}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tknRVtdrp8TkRV3X6AJ-KgAAAAAAAAGx"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleRequest(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.Header, org.elasticsearch.transport.InboundMessage)", "offset": 78}, "line": {"number": 249}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "if-A_N21fy6ux02lu8iQvQAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 44}, "line": {"number": 764}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uW05YknQLOIO0-7mqqBrAgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportClusterStatsAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodesResponse org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction.newResponse(org.elasticsearch.action.support.nodes.BaseNodesRequest, java.util.List, java.util.List)"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sNBO3bGdqiDUbUiwDl-zWAAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "Unsafe.java"}, "function": {"name": "void sun.misc.Unsafe.invokeCleaner(java.nio.ByteBuffer)", "offset": 3}, "line": {"number": 1280}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gAZpLZngO-LIYH92FuHP9gAAAAAAAABU"}} -{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.dataformat.smile.SmileParser._addDecodedToSymbols(int, java.lang.String)", "offset": 10}, "line": {"number": 1423}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PT8Qhq3pE7S7UQ5pBb6dmAAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.apache.lucene.search.BooleanWeight.bulkScorer(org.apache.lucene.index.LeafReaderContext)", "offset": 6}, "line": {"number": 395}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGX2k"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/time/sleep.go"}, "function": {"name": "time.NewTimer"}, "line": {"number": 95}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HsCaQLZJVi-7tOt5z5xK6gAAAAAAAADd"}} -{"Stackframe": {"file": {"name": "ResizeRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.ResizeRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 53}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlFZq"}} -{"Stackframe": {"function": {"name": "ip_route_input_rcu"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM"}} -{"Stackframe": {"function": {"name": "sock_recvmsg"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAB7dv"}} -{"Stackframe": {"function": {"name": "xfs_iflush"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0Og38EZo1V7Xaj5UHUpXuQAAAAAAAADu"}} -{"Stackframe": {"file": {"name": "OTelSpanBuilder.java"}, "function": {"name": "io.opentelemetry.api.trace.Span co.elastic.apm.agent.opentelemetry.sdk.OTelSpanBuilder.startSpan()", "offset": 41}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMaSy"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/shirou/gopsutil@v3.20.12+incompatible/net/net_linux.go"}, "function": {"name": "github.com/shirou/gopsutil/net.connectionsPidMaxWithoutUidsWithContext"}, "line": {"number": 471}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OoSbzwyzFhV1hlFGUdDRowAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "FindOps.java"}, "function": {"name": "java.lang.Object java.util.stream.FindOps$FindOp.evaluateSequential(java.util.stream.PipelineHelper, java.util.Spliterator)"}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Bc76uF6yLNrSpNppr3Gr2wAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "AccessControlContext.java"}, "function": {"name": "void java.security.AccessControlContext.calculateFields(java.security.AccessControlContext, java.security.AccessControlContext, java.security.Permission[])"}, "line": {"number": 735}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R8Unr-8xOl9YfaVb1B0yFAAAAAAAAACk"}} -{"Stackframe": {"file": {"name": "PointRangeQuery.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.PointRangeQuery$1$4.get(long)", "offset": 14}, "line": {"number": 348}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iG0UNe2wBwhcySMoRhbAQAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "OutputStreamStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.OutputStreamStreamOutput.writeBytes(byte[], int, int)"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KzLJVGftzg_XzRRBm3n5xwAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "DataInput.java"}, "function": {"name": "long org.apache.lucene.store.DataInput.readVLong(boolean)", "offset": 3}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wtaNWPsMpfzeSCJEHw1degAAAAAAAAC6"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.forceApply(org.apache.lucene.index.FrozenBufferedUpdates)", "offset": 51}, "line": {"number": 6102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FezK_dQe_u3GP8ThBnZQ8QAAAAAAAACE"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.writeFromNativeBuffer(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 18}, "line": {"number": 137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pqwgV3KyRy1vwalpuADBEgAAAAAAAACR"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.apply(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.support.ActionFilterChain)", "offset": 25}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YayEQsb3EQEEycy7q22aRAAAAAAAAAB_"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 7}, "line": {"number": 59}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAABbI3"}} -{"Stackframe": {"function": {"name": "xfs_end_io"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m_vFRi2fRRTLPHNf1t7ZcQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 516}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxF_p"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/strings.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.findDistribRelease"}, "line": {"number": 454}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlq7"}} -{"Stackframe": {"function": {"name": "show_mountinfo"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZNIMXBN7NKTXUfXb93okMgAAAAAAAABQ"}} -{"Stackframe": {"file": {"name": "AbstractNioByteChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read()", "offset": 15}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApxG1"}} -{"Stackframe": {"function": {"name": "io_schedule"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2hXrudkwCa5MZh2RKc2FvwAAAAAAAABo"}} -{"Stackframe": {"file": {"name": "RemoteClusterAwareClient.java"}, "function": {"name": "void org.elasticsearch.transport.RemoteClusterAwareClient.lambda$doExecute$0(org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionListener, java.lang.Void)", "offset": 13}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hIPSIc3LxfgC93-3l1xbUgAAAAAAAAA8"}} -{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "int sun.nio.ch.EPollSelectorImpl.doSelect(java.util.function.Consumer, long)", "offset": 9}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0tdJXiZYZuozRWVHE58tBQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$AuthorizationResultListener.onResponse(java.lang.Object)"}, "line": {"number": 664}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iLCTWRKOWFgxy9lCZCKQuAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.getText()"}, "line": {"number": 291}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9zOECVMFUE-sRNeQZ1HM6gAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "Netty4HttpPipeliningHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpPipeliningHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 2}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACM"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.runRequestInterceptors(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.action.ActionListener)", "offset": 17}, "line": {"number": 386}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z5D_DdgznhB9oZLSnaY7swAAAAAAAACa"}} -{"Stackframe": {"file": {"name": "ForUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.ForUtil.encode(long[], int, org.apache.lucene.store.DataOutput)", "offset": 20}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAB7Qn"}} -{"Stackframe": {"function": {"name": "xfs_iflush_cluster"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mKXTVTxiptRtMPDOFrZoTwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateListeners(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.common.StopWatch)"}, "line": {"number": 505}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "krKfc-Q3vA_v935GzjuxngAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "org.apache.lucene.search.Query org.elasticsearch.search.internal.ContextIndexSearcher.rewrite(org.apache.lucene.search.Query)", "offset": 5}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QG4uvtodA7e8bZRtCyV-1wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "FieldCapabilitiesNodeResponse.java"}, "function": {"name": "void org.elasticsearch.action.fieldcaps.FieldCapabilitiesNodeResponse.writeTo(org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DJ2lZS85ClNgTnnEk8XThgAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI$BitSetConjunctionDISI.nextDoc()", "offset": 1}, "line": {"number": 304}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DWqem0MEs_2ehK2H6Rh43QAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "DefaultMaxMessagesRecvByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.channel.DefaultMaxMessagesRecvByteBufAllocator$MaxMessageHandle.allocate(io.netty.buffer.ByteBufAllocator)"}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kZgtpJIkDQ7_uBMazY7fxwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "boolean java.util.stream.ReferencePipeline.anyMatch(java.util.function.Predicate)"}, "line": {"number": 632}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ouyr9JMrulJxBnFXlkNTeAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "Lucene84PostingsReader.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene84.Lucene84PostingsReader$EverythingEnum.nextDoc()", "offset": 1}, "line": {"number": 808}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1LCxlgD3_e4Ym8K1UlEBRQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.startStoredFields(int)"}, "line": {"number": 449}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "doM3EZBe2IZjbKA9eN3_9wAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putIfAbsent(java.lang.Object, java.lang.Object)"}, "line": {"number": 1152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JZAp-_m0--d0j2rImdy6sQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "java.lang.Object[] java.util.Arrays.copyOf(java.lang.Object[], int)"}, "line": {"number": 3481}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkI3X"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/errors/errors.go"}, "function": {"name": "fmt.(*ss).scanRune"}, "line": {"number": 59}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a799-wigaThQmng1vPcAYwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "SearchResponse.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchResponse.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5vShGsOt6DdWOsue-DtpXgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ClientHandshakeContext.java"}, "function": {"name": "void sun.security.ssl.ClientHandshakeContext.kickstart()", "offset": 4}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Tq2A_ghNgr4Sgbd4ToSeBgAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "LRUQueryCache.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight.bulkScorer(org.apache.lucene.index.LeafReaderContext)", "offset": 6}, "line": {"number": 832}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tUugY2gAhpWf99wEorV4JgAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.read(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 3}, "line": {"number": 293}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dT5WZm8-ag4VFDZf0HaaMAAAAAAAAADx"}} -{"Stackframe": {"file": {"name": "Lucene60FieldInfosFormat.java"}, "function": {"name": "org.apache.lucene.index.FieldInfos org.apache.lucene.codecs.lucene60.Lucene60FieldInfosFormat.read(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.store.IOContext)", "offset": 36}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IYxMGZtokcobbdGBrqK_iwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "SecurityIndexManager.java"}, "function": {"name": "org.elasticsearch.Version org.elasticsearch.xpack.security.support.SecurityIndexManager.readMappingVersion(java.lang.String, org.elasticsearch.cluster.metadata.MappingMetadata, org.apache.logging.log4j.Logger)", "offset": 1}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HroxZ2TATDst6Nm-rIS1XwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "org.elasticsearch.cluster.Diff org.elasticsearch.cluster.ClusterState.diff(org.elasticsearch.cluster.ClusterState)"}, "line": {"number": 688}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l_F8CipdUd9pGgDh42x0pAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler$1.onResponse(java.lang.Object)"}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bg-U7BdB6cMtXtMigMAHygAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "QuotaAwareFileSystemProvider.java"}, "function": {"name": "java.lang.Object co.elastic.cloud.quotaawarefs.QuotaAwareFileSystemProvider$2.run()"}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4nZlIDNUxGLY6j_J6UDsFQAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "void sun.nio.ch.EPollSelectorImpl.processUpdateQueue()", "offset": 5}, "line": {"number": 147}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PIPsH7nT68_aJBs_oY-bDAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "ObjectNode.java"}, "function": {"name": "boolean com.fasterxml.jackson.databind.node.ObjectNode._childrenEqual(com.fasterxml.jackson.databind.node.ObjectNode)"}, "line": {"number": 930}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMbPk"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/shirou/gopsutil@v3.20.12+incompatible/net/net_linux.go"}, "function": {"name": "github.com/shirou/gopsutil/net.getProcInodes"}, "line": {"number": 578}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k8mM9-oIv-QkPetXAh_aVAAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "boolean org.apache.lucene.codecs.lucene90.IndexedDISI$Method$1.advanceWithinBlock(org.apache.lucene.codecs.lucene90.IndexedDISI, int)", "offset": 10}, "line": {"number": 555}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iX3hg20o3ZB-dQ1wA5bFxgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "long org.elasticsearch.index.store.ByteSizeCachingDirectory.estimateSizeInBytes()"}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Cl1kgGCrmfrEoupeT-su1wAAAAAAAABm"}} -{"Stackframe": {"file": {"name": "FileSystemProvider.java"}, "function": {"name": "java.io.OutputStream java.nio.file.spi.FileSystemProvider.newOutputStream(java.nio.file.Path, java.nio.file.OpenOption[])", "offset": 13}, "line": {"number": 484}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6fJMpXGng7X5bTc2KsPuMgAAAAAAAABS"}} -{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient)", "offset": 8}, "line": {"number": 61}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ln77frXO658Q0MZOuorIVgAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "HexUtils.java"}, "function": {"name": "void co.elastic.apm.agent.util.HexUtils.writeBytesAsHex(byte[], int, int, java.lang.StringBuilder)", "offset": 1}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ynFllp5CrPbAGyx1JneoOgAAAAAAAAG7"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleRequest(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.Header, org.elasticsearch.transport.InboundMessage)", "offset": 85}, "line": {"number": 278}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mUdULebVXxeJAT1WZsiwwgAAAAAAAADW"}} -{"Stackframe": {"file": {"name": "DlsFlsLicenseRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.DlsFlsLicenseRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 51}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UNc2mXE-rC1br_1LecPIQAAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "java.util.List org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$WildcardExpressionResolver.resolve(org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$Context, java.util.List)", "offset": 4}, "line": {"number": 722}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gyCLaoZ33VoOuRW0bXNTvAAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "OutputStreamIndexOutput.java"}, "function": {"name": "void org.apache.lucene.store.OutputStreamIndexOutput.close()", "offset": 11}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjjOl"}} -{"Stackframe": {"function": {"name": "rtnetlink_rcv_msg"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxJxE"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/util.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.decodeBitMap"}, "line": {"number": 78}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7Slkc3C9A3eZsO9dv0O2hwAAAAAAAACj"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap.putMapEntries(java.util.Map, boolean)", "offset": 20}, "line": {"number": 517}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XpviWYO7CFQF88r_qvK5hQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "int java.util.HashMap.hash(java.lang.Object)"}, "line": {"number": 338}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "TieredMergePolicy.java"}, "function": {"name": "java.util.List org.apache.lucene.index.TieredMergePolicy.getSortedBySegmentSize(org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 3}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAA2Ie"}} -{"Stackframe": {"function": {"name": "xfs_dir_removename"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m6DukRuoBGn25PtbhUDv5wAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ShardSearchRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.ShardSearchRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)"}, "line": {"number": 24}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6EBVNX1S4KOt2Rr803iMSAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "AbstractReferenceCountedByteBuf.java"}, "function": {"name": "boolean io.netty.buffer.AbstractReferenceCountedByteBuf.release()"}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAADhEt6"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/mb/module/wrapper.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/mb/module.(*Wrapper).Start.func1"}, "line": {"number": 148}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x2cwCBtVASi5Ak0QtF5vPgAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexingChain.processField(int, org.apache.lucene.index.IndexableField, org.apache.lucene.index.IndexingChain$PerField)", "offset": 6}, "line": {"number": 681}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tQZSQj_PY_4Rko5jM2utHQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "MetadataStateFormat.java"}, "function": {"name": "org.apache.lucene.store.Directory org.elasticsearch.gateway.MetadataStateFormat.newDirectory(java.nio.file.Path)"}, "line": {"number": 302}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mJBNzHM3rEh3axlm3zexVgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.util.Iterator java.util.Collections$SingletonSet.iterator()"}, "line": {"number": 4895}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iXITkHSsiGOApNcDsNvSqAAAAAAAAAFj"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 13}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZGfWBfUy3bo1nIJX59J_MgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "java.util.Set org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct.lambda$putResponseHeaders$0(java.util.Set, java.util.Set)"}, "line": {"number": 726}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXV_O"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/events.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.startPerfEventMonitor.func1"}, "line": {"number": 273}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ag2jFGEQrqXOwo9qPdLBmQAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "void org.elasticsearch.index.engine.Engine$SearcherSupplier.close()", "offset": 1}, "line": {"number": 1185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "BaseFuture.java"}, "function": {"name": "boolean org.elasticsearch.common.util.concurrent.BaseFuture.set(java.lang.Object)", "offset": 2}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AxGO45I5QETSU0lqfKJFawAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "Thread.java"}, "function": {"name": "void java.lang.Thread.yield()", "offset": 3}, "line": {"number": 421}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAACEBe"}} -{"Stackframe": {"function": {"name": "xfs_fs_destroy_inode"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSog"}} -{"Stackframe": {"function": {"name": "__x64_sys_open"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yok_YL73Fh-9mpuyxhgjVQAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "int org.elasticsearch.common.io.stream.StreamInput.readArraySize()", "offset": 10}, "line": {"number": 1341}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kaHiufo-HpizcJRF4MxUowAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "Character.java"}, "function": {"name": "int java.lang.Character.charCount(int)"}, "line": {"number": 8216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFou1"}} -{"Stackframe": {"function": {"name": "map_id_up"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Gf_lEMENHnxizeBtMQocRwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "FileDispatcherImpl.java"}, "function": {"name": "long sun.nio.ch.FileDispatcherImpl.size(java.io.FileDescriptor)"}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m6LPNSFO1-j9qyfUqm5ykAAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService.lambda$createShard$8(org.elasticsearch.index.shard.ShardId, org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)", "offset": 2}, "line": {"number": 477}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Qiz_6m3TqQhT0_0bfQ8wcwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "CloseableThreadLocal.java"}, "function": {"name": "java.lang.Object org.apache.lucene.util.CloseableThreadLocal.get()"}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5CnhWwVFqzjrPVkS7NFWEAAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 4}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgtXE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcwork.go"}, "function": {"name": "runtime.prepareFreeWorkbufs"}, "line": {"number": 450}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1t7fQsJNgmiW7cyVgRgDbAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "EventFD.java"}, "function": {"name": "void sun.nio.ch.EventFD.set()"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BxI5O-imEgV3N9x_K1cpQwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 716}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACsg-O"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/actions/rename.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/actions.(*renameFields).Run"}, "line": {"number": 79}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X3GdeQP-f7ta19Ve9HCXlgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "boolean java.util.ArrayList.add(java.lang.Object)", "offset": 1}, "line": {"number": 467}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABBYk"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.goschedImpl"}, "line": {"number": 3371}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WLR6tMYzOVwd-dC39zrHVgAAAAAAAAEt"}} -{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.tasks.TaskManager.register(java.lang.String, java.lang.String, org.elasticsearch.tasks.TaskAwareRequest)", "offset": 24}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jxBO7ihhtfLOOEuDlHwmIAAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.opt(java.util.Collection, int, org.apache.lucene.search.ScoreMode, long)", "offset": 5}, "line": {"number": 198}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HHJA9BTngnX8qImGqaVnNgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "PlainSocketImpl.java"}, "function": {"name": "void java.net.PlainSocketImpl.socketSetOption0(int, boolean, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tqxIWD7h3nTRM9IIo79qNQAAAAAAAABF"}} -{"Stackframe": {"file": {"name": "DateTimeFormatter.java"}, "function": {"name": "java.lang.Object java.time.format.DateTimeFormatter$ClassicFormat.parseObject(java.lang.String, java.text.ParsePosition)", "offset": 17}, "line": {"number": 2310}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xMi3lfkibPU0NAhJ8DhGPgAAAAAAAABR"}} -{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.lambda$consumeToken$3(org.elasticsearch.xpack.security.authc.Authenticator$Context, java.util.Map, org.elasticsearch.action.ActionListener, java.util.concurrent.atomic.AtomicReference, java.util.concurrent.atomic.AtomicReference, org.elasticsearch.xpack.core.security.user.User)", "offset": 6}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Zou-EwmpdzrcXx7eij10xwAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Index org.elasticsearch.index.shard.IndexShard.prepareIndex(org.elasticsearch.index.mapper.MapperService, java.lang.String, org.elasticsearch.index.mapper.SourceToParse, long, long, long, org.elasticsearch.index.VersionType, org.elasticsearch.index.engine.Engine$Operation$Origin, long, boolean, long, long)", "offset": 10}, "line": {"number": 1013}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "W2orkSxhItalTCL1xwDk_AAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ActionRunnable.java"}, "function": {"name": "void org.elasticsearch.action.ActionRunnable.lambda$supply$0(org.elasticsearch.common.CheckedSupplier, org.elasticsearch.action.ActionListener)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnlJE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/encode.go"}, "function": {"name": "encoding/json.MarshalIndent"}, "line": {"number": 181}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8KL4zGG-d9_GDuuEGBxudQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "org.elasticsearch.cluster.Diff org.elasticsearch.cluster.ClusterState.readDiffFrom(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.node.DiscoveryNode)"}, "line": {"number": 692}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UM3h48-oBMi00mRAqhB4IAAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.implDelete(java.nio.file.Path, boolean)", "offset": 10}, "line": {"number": 235}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACtxRe"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_cloud_metadata/add_cloud_metadata.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_cloud_metadata.(*addCloudMetadata).getMeta"}, "line": {"number": 112}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "27u6kAAWAK4fCqYjVgn2IgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ReferenceCountUtil.java"}, "function": {"name": "boolean io.netty.util.ReferenceCountUtil.release(java.lang.Object)", "offset": 1}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GECkj5EzwizbnHTSy11lwAAAAAAAAACs"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 172}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iEXWSv2E3DUfADDCXriE1wAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "StandardTokenizer.java"}, "function": {"name": "boolean org.apache.lucene.analysis.standard.StandardTokenizer.incrementToken()", "offset": 4}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xp3_py4iSzhCOaZDW2scAQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "SSLAlgorithmDecomposer.java"}, "function": {"name": "java.util.Set sun.security.ssl.SSLAlgorithmDecomposer.decompose(sun.security.ssl.CipherSuite$KeyExchange, sun.security.ssl.SSLCipher, sun.security.ssl.CipherSuite$MacAlg, sun.security.ssl.CipherSuite$HashAlg)", "offset": 3}, "line": {"number": 235}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z03CQ7BmO5DWD5cAAhlTWwAAAAAAAACA"}} -{"Stackframe": {"file": {"name": "AWS4Signer.java"}, "function": {"name": "java.lang.String com.amazonaws.auth.AWS4Signer.getCanonicalizedHeaderString(com.amazonaws.SignableRequest)", "offset": 16}, "line": {"number": 510}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAATm1Z"}} -{"Stackframe": {"function": {"name": "__blk_mq_run_hw_queue"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u78SWYWMWORWmstqR3xV1QAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "org.apache.lucene.index.Terms org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsReader.terms(java.lang.String)"}, "line": {"number": 338}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "v6Sj_mGjd4gUb1oQRdr9zQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator$$Lambda$6525+0x0000000801cbc8c0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PJlREaStQ9MDsMhq8CWS4AAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$RunBeforeActionListener.onResponse(java.lang.Object)", "offset": 5}, "line": {"number": 397}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ4C7"}} -{"Stackframe": {"function": {"name": "get_page_from_freelist"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YuABXadheWsSG6-oIu8XAgAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator$$Lambda$6571+0x0000000802412830.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipFf"}} -{"Stackframe": {"function": {"name": "__x64_sys_recvfrom"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EiFiDjtjvWXj4YGVaTJXOQAAAAAAAADj"}} -{"Stackframe": {"file": {"name": "SessionInputBufferImpl.java"}, "function": {"name": "int org.apache.http.impl.io.SessionInputBufferImpl.readLine(org.apache.http.util.CharArrayBuffer)", "offset": 39}, "line": {"number": 280}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sBHrVq8ytXjAIQaqacFv6wAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "InternalOrder.java"}, "function": {"name": "int org.elasticsearch.search.aggregations.InternalOrder$CompoundOrder.hashCode()"}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5D7QNNSBqrvhILSPUO8i_gAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "RetryListener.java"}, "function": {"name": "void org.elasticsearch.index.reindex.RetryListener.onResponse(java.lang.Object)"}, "line": {"number": 21}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I48brEkgWPSZXqrqrHkPZQAAAAAAAABv"}} -{"Stackframe": {"file": {"name": "TranslogWriter.java"}, "function": {"name": "boolean org.elasticsearch.index.translog.TranslogWriter.syncUpTo(long)", "offset": 19}, "line": {"number": 472}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HrXUpqEQk4VDnpaZKgdbiAAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.fetch.ScrollQueryFetchSearchResult org.elasticsearch.search.SearchService.lambda$executeFetchPhase$6(org.elasticsearch.search.internal.LegacyReaderContext, org.elasticsearch.action.search.SearchShardTask, org.elasticsearch.search.internal.InternalScrollSearchRequest)", "offset": 8}, "line": {"number": 783}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y9mQUdyp86jQhHqOid6GcwAAAAAAAACW"}} -{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.OutboundMessage, org.elasticsearch.core.Releasable)", "offset": 23}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IkEIzYzfFb8h7KBdusw1sQAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "Checkpoint.java"}, "function": {"name": "void org.elasticsearch.index.translog.Checkpoint.write(java.nio.channels.FileChannel, java.nio.file.Path, org.elasticsearch.index.translog.Checkpoint)", "offset": 4}, "line": {"number": 202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXrum"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.(*GenericEventConverter).normalizeMap"}, "line": {"number": 79}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qlBu--gn4lPakFOOUFVXUAAAAAAAAAKu"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain$PerField.invert(int, org.apache.lucene.index.IndexableField, boolean)", "offset": 79}, "line": {"number": 974}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 197}, "line": {"number": 696}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADHZLn"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/actions/rename.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/actions.(*renameFields).renameField"}, "line": {"number": 117}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SbaWcO00B2zTHJCaL1t-KAAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "int org.apache.lucene.util.compress.LZ4.decompress(org.apache.lucene.store.DataInput, int, byte[], int)", "offset": 11}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E9rVQyfXmRnEPhP5-Uw5UgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "FilterDirectoryReader.java"}, "function": {"name": "void org.apache.lucene.index.FilterDirectoryReader.doClose()"}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0qy"}} -{"Stackframe": {"function": {"name": "do_nanosleep"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yor4W3IQWfyHOSvJynlnLgAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "FieldUsageTrackingDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.PostingsEnum org.elasticsearch.search.internal.FieldUsageTrackingDirectoryReader$FieldUsageTrackingLeafReader$FieldUsageTrackingTermsEnum.postings(org.apache.lucene.index.PostingsEnum, int)"}, "line": {"number": 309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8oQ_ZJ3ImiZWOZcNHv_WYwAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.implDelete(java.nio.file.Path, boolean)", "offset": 6}, "line": {"number": 232}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5uJBJdbCydi3Mb0Lo2CA1QAAAAAAAACK"}} -{"Stackframe": {"file": {"name": "LZ4WithPresetDictCompressionMode.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene87.LZ4WithPresetDictCompressionMode$LZ4WithPresetDictCompressor.compress(byte[], int, int, org.apache.lucene.store.DataOutput)", "offset": 16}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAAQ_V"}} -{"Stackframe": {"file": {"name": "runtime/map.go"}, "function": {"name": "runtime.mapiterinit"}, "line": {"number": 864}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wMduPEe0g_53DcRkATCeKAAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "Permissions.java"}, "function": {"name": "boolean java.security.Permissions.implies(java.security.Permission)", "offset": 6}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NnN5Fsnt_d-Bxk4pEV1m1gAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "BulkItemRequest.java"}, "function": {"name": "void org.elasticsearch.action.bulk.BulkItemRequest.(org.elasticsearch.index.shard.ShardId, org.elasticsearch.common.io.stream.StreamInput)", "offset": 2}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qnR7SPBrCbnbJk8v7ooOnwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "DelegatingMethodAccessorImpl.java"}, "function": {"name": "java.lang.Object jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(java.lang.Object, java.lang.Object[])"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADCCJD"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/conditions/or.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/conditions.(*Or).Check"}, "line": {"number": 32}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AU1UxR09cGAZB2y_cCThHQAAAAAAAAEC"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "int org.apache.lucene.util.compress.LZ4.decompress(org.apache.lucene.store.DataInput, int, byte[], int)", "offset": 49}, "line": {"number": 137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ku9JPnt9w-bpii9tERrqJQAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$finalizeSnapshot$39(org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.repositories.IndexId, org.elasticsearch.snapshots.SnapshotId)"}, "line": {"number": 1020}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "TaskTransportChannel.java"}, "function": {"name": "void org.elasticsearch.transport.TaskTransportChannel.sendResponse(org.elasticsearch.transport.TransportResponse)", "offset": 1}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EeBm2vPFcnytFzkGIYZfFAAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "CodecUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.CodecUtil.writeBEInt(org.apache.lucene.store.DataOutput, int)", "offset": 2}, "line": {"number": 655}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAYKAN"}} -{"Stackframe": {"file": {"name": "golang.org/x/net@v0.0.0-20220425223048-2871e0cb64e4/http2/frame.go"}, "function": {"name": "golang.org/x/net/http2.readFrameHeader"}, "line": {"number": 238}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hyJvBqqalN42JOW6IRFcTwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ClassLoaderContextSelector.java"}, "function": {"name": "org.apache.logging.log4j.core.LoggerContext org.apache.logging.log4j.core.selector.ClassLoaderContextSelector.getContext(java.lang.String, java.lang.ClassLoader, boolean)"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zNY_7kuj5TrHQiu0CpuFwwAAAAAAAAJH"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.addTermsDict(org.apache.lucene.index.SortedSetDocValues)", "offset": 82}, "line": {"number": 627}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0iy-2zuRXr8juBdHdwp6AQAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction.onOperation(int, org.elasticsearch.action.support.nodes.BaseNodeResponse)", "offset": 1}, "line": {"number": 283}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAEZvy"}} -{"Stackframe": {"file": {"name": "github.com/cilium/ebpf@v0.9.1/internal/sys/syscall.go"}, "function": {"name": "github.com/cilium/ebpf/internal/sys.BPF"}, "line": {"number": 14}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h6SWrdSzXfBtMfWpEhL_SQAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.LockValidatingDirectoryWrapper.createOutput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 1}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AAAAAAAAV4sAAAAAAAAAHYXuSio4gqgn"}} -{"Stackframe": {"function": {"name": "_new_array_Java"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6sBKtqBatbzPgogd7p8IQgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.decRef(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)"}, "line": {"number": 405}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "992j67iVEP_ZCQRVTejCUwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile$$Lambda$5336+0x00000008019deee8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGLBz"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.Pwrite"}, "line": {"number": 1228}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eRhJRvHm727VHuGPDJpA3AAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "void co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.onEvent(java.lang.Object, long, boolean)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k99M4bkjfKmg3-yt9HFm8AAAAAAAAAEW"}} -{"Stackframe": {"file": {"name": "Lucene84PostingsReader.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene84.Lucene84PostingsReader$BlockDocsEnum.advance(int)", "offset": 54}, "line": {"number": 520}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4uHET4oL_iJ_8bFS7AfulwAAAAAAAABY"}} -{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "long org.apache.lucene.index.DocumentsWriterPerThread.updateDocument(java.lang.Iterable, org.apache.lucene.analysis.Analyzer, org.apache.lucene.index.DocumentsWriterDeleteQueue$Node, org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 19}, "line": {"number": 250}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "void org.elasticsearch.search.SearchService.loadOrExecuteQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.search.internal.SearchContext)", "offset": 5}, "line": {"number": 458}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cQ6Qsfe6NvfD6UlZmix01AAAAAAAAABQ"}} -{"Stackframe": {"file": {"name": "AbstractNioByteChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read()", "offset": 15}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-8Vx"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/process/process.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/process.(*Stats).getProcessEvent"}, "line": {"number": 312}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi0Uj"}} -{"Stackframe": {"function": {"name": "__netdev_alloc_skb"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Xn_k4_43vglT-Otx44IO_wAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.logging.DeprecationLogger$$Lambda$6856+0x0000000801e10698.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.decode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 4}, "line": {"number": 1314}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cNcE3gFf5WE1NJA6gh8BYQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "BKDReader.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDReader$BKDPointTree.visitDocValues(org.apache.lucene.index.PointValues$IntersectVisitor)", "offset": 1}, "line": {"number": 589}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mVZC5ucQ9s0QMwQ6Cu6VqwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "AsyncIOProcessor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AsyncIOProcessor.drainAndProcessAndRelease(java.util.List)", "offset": 1}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QmYRSks2gjLlkW8NnILWSQAAAAAAAABh"}} -{"Stackframe": {"file": {"name": "FieldsIndexWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.FieldsIndexWriter.(org.apache.lucene.store.Directory, java.lang.String, java.lang.String, java.lang.String, java.lang.String, byte[], int, org.apache.lucene.store.IOContext)", "offset": 13}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eSs1xpPdaQi6BA9wz10SrwAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "MappingStats.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.stats.MappingStats org.elasticsearch.action.admin.cluster.stats.MappingStats.of(org.elasticsearch.cluster.ClusterState)", "offset": 5}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkHGI"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).ReadRune"}, "line": {"number": 189}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAEs6V"}} -{"Stackframe": {"file": {"name": "compress/flate/deflate.go"}, "function": {"name": "compress/flate.(*compressor).close"}, "line": {"number": 639}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "anC21MuzJFIo9hRmmTFyPQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$DenseNumericDocValues.nextDoc()"}, "line": {"number": 414}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AAahb89jp2nXTHxX6vfDVgAAAAAAAAGx"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.writeBlocks(int, int)", "offset": 79}, "line": {"number": 628}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bC_fEnt9OMT3icSYRSqeAAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.SegmentMerger$$Lambda$8454+0x0000000802766000.merge(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.SegmentReadState)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tqxyIieWZqcskiV4R2pEyQAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "Authentication.java"}, "function": {"name": "java.lang.String org.elasticsearch.xpack.core.security.authc.Authentication.encode()", "offset": 3}, "line": {"number": 450}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "da68f5mgZFs3OaBztew54AAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.bulk.TransportShardBulkAction$$Lambda$6940+0x0000000802476db8.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0FX-pXK8X9ZHvq5PeuRa6gAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "TranslogWriter.java"}, "function": {"name": "void org.elasticsearch.index.translog.TranslogWriter.writeToFile(java.nio.ByteBuffer)", "offset": 1}, "line": {"number": 551}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6iNgA9fR_bPjg3gsO7FxQgAAAAAAAADe"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.engine.InternalEngine.indexIntoLucene(org.elasticsearch.index.engine.Engine$Index, org.elasticsearch.index.engine.InternalEngine$IndexingStrategy)", "offset": 14}, "line": {"number": 1244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7BvwwtuvWC96Hl7IBrycDgAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.write(org.elasticsearch.common.xcontent.ToXContent, java.io.OutputStream)", "offset": 2}, "line": {"number": 220}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALiQn"}} -{"Stackframe": {"function": {"name": "inode_permission"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bJBdrar7fHaaoM_RiBL6vgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "ExecutorSelector.java"}, "function": {"name": "java.lang.String org.elasticsearch.indices.ExecutorSelector.getWriteExecutorForShard(org.elasticsearch.indices.ExecutorSelector, org.elasticsearch.index.shard.IndexShard)"}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Q_fTsiDQn3AwPFHRHJfE6QAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.lang.Object java.util.Collections$UnmodifiableMap.get(java.lang.Object)"}, "line": {"number": 1502}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8VQNjJHt4dBRU5VSN3KkiQAAAAAAAAEC"}} -{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "void org.apache.lucene.index.SegmentReader.(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.SegmentReader, org.apache.lucene.util.Bits, org.apache.lucene.util.Bits, int, boolean)", "offset": 21}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X6qt9XlU0IqttZBt4TnwZwAAAAAAAABH"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$consumeToken$15(org.elasticsearch.xpack.core.security.authc.AuthenticationToken, long, java.util.Map, org.elasticsearch.xpack.core.security.authc.Realm, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 449}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GP9DcZgvFsVU-FrimfbKfQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "Channels.java"}, "function": {"name": "void java.nio.channels.Channels.writeFullyImpl(java.nio.channels.WritableByteChannel, java.nio.ByteBuffer)", "offset": 1}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFdww"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/traceback.go"}, "function": {"name": "runtime.gentraceback"}, "line": {"number": 254}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "agZiqOTeFJJvJSEd_bICHwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)"}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "void org.elasticsearch.search.internal.ContextIndexSearcher.searchLeaf(org.apache.lucene.index.LeafReaderContext, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 15}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m_fovQn4AGOMspslPI_8iQAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.incRef(org.apache.lucene.index.SegmentInfos, boolean)", "offset": 3}, "line": {"number": 559}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EVcCXOQnkebnZR5Z6XcBvAAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "org.elasticsearch.index.translog.TranslogStats org.elasticsearch.index.translog.Translog.stats()", "offset": 7}, "line": {"number": 917}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tYpn9fKKxL559MokXK09lwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "api.py"}, "function": {"name": "run", "offset": 3}, "line": {"number": 203}, "source": {"type": 2}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j9nrUn1ozBwNCW0cIRIfuAAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorize$1(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo)", "offset": 1}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0tDRJPBklwZ08blbT6HlggAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "void sun.nio.ch.FileChannelImpl$Closer.run()"}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b5D4G32aP0YH2ukb-bXGLgAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "AbstractCollection.java"}, "function": {"name": "boolean java.util.AbstractCollection.addAll(java.util.Collection)", "offset": 1}, "line": {"number": 337}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S06qc2WWdjyLzzAdWuSUuwAAAAAAAAGz"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.io.stream.StreamInput.readString()", "offset": 49}, "line": {"number": 477}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z3A_MA2VleZ7zSj0ee4JogAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.refresh(java.lang.String)", "offset": 4}, "line": {"number": 1222}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qVx1giFNnrhDKWEgl9fFUgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "RestActions.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestActions$NodesResponseRestListener.buildResponse(org.elasticsearch.action.support.nodes.BaseNodesResponse, org.elasticsearch.xcontent.XContentBuilder)"}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WTJVejtNrfNtGl_SxUF-gQAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorize$1(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo)", "offset": 1}, "line": {"number": 230}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2FMCMM-1yzn1HAFTFW5NmAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "PotentiallyMultiValuedMap.java"}, "function": {"name": "java.lang.String co.elastic.apm.agent.util.PotentiallyMultiValuedMap.getFirst(java.lang.String)"}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mhckGVh3BGIWcToRYxPBggAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.addSortedSetField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)"}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tP35slrlTA3DUHTsutItwgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "FilterMergePolicy.java"}, "function": {"name": "boolean org.apache.lucene.index.FilterMergePolicy.useCompoundFile(org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.MergePolicy$MergeContext)"}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Iz3Q33pJiq_ClAMVOwKorAAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.scoreRange(org.apache.lucene.search.LeafCollector, org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.search.TwoPhaseIterator, org.apache.lucene.util.Bits, int, int)", "offset": 5}, "line": {"number": 276}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f4OgHyusKDqabwWiMaVpXgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Cache.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.cache.Cache.get(java.lang.Object)"}, "line": {"number": 345}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qjkbzJCs46utKAIQU_ZjYgAAAAAAAADm"}} -{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.handleIncomingRequest(org.elasticsearch.http.HttpRequest, org.elasticsearch.http.HttpChannel, java.lang.Exception)", "offset": 59}, "line": {"number": 516}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qr5_62ELns70MeFfkAoJ6QAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.StandardDirectoryReader.doOpenFromWriter(org.apache.lucene.index.IndexCommit)", "offset": 8}, "line": {"number": 381}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "52JRn0mtUy5Ev3iAPOj61QAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction$$Lambda$8881+0x00000008027b27d8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YbNld3zpk2N0cA7cPFuWGAAAAAAAAAC4"}} -{"Stackframe": {"file": {"name": "BufferedInputStream.java"}, "function": {"name": "void java.io.BufferedInputStream.fill()", "offset": 32}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE_Yn"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.injectglist"}, "line": {"number": 2600}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_zDk_N7NUcNRTqIuzYKxDgAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer.writeBlob(java.lang.String, java.io.InputStream, long, boolean)", "offset": 1}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACzCbU"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/mapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.MapStr.HasKey"}, "line": {"number": 169}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Oen1qEmpHofe9SVAg4ioRwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$3.onResponse(java.lang.Object)"}, "line": {"number": 267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlcA7"}} -{"Stackframe": {"function": {"name": "tcp_sendmsg"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "t_8P_qgRJaTfBrJGumjgpQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "BitSetIterator.java"}, "function": {"name": "int org.apache.lucene.util.BitSetIterator.advance(int)"}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gDav7mSa1H0kLuPzayJt0QAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "AbstractAsyncTask.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractAsyncTask.run()", "offset": 8}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0pik9Obvsa6G-wUWjB6N5gAAAAAAAADY"}} -{"Stackframe": {"file": {"name": "DlsFlsLicenseRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.DlsFlsLicenseRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 51}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$AuthorizationResultListener.onResponse(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationResult)", "offset": 6}, "line": {"number": 689}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PrNII2l46oclr0RXWTYMUAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "CleanerImpl.java"}, "function": {"name": "void jdk.internal.ref.CleanerImpl$PhantomCleanableRef.performCleanup()"}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZNYIIcZKEhelw-qPJkZowQAAAAAAAADf"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "void org.elasticsearch.common.settings.Settings.processSetting(java.util.Map, java.lang.String, java.lang.String, java.lang.Object)", "offset": 23}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "y_GIpaxCX5IFnS0F_BXM3wAAAAAAAACN"}} -{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "java.lang.Object com.amazonaws.http.AmazonHttpClient$RequestExecutor.handleResponse(com.amazonaws.http.HttpResponse)", "offset": 30}, "line": {"number": 1714}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "251Ruxwcbll4MkW6cLIM0wAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "DefaultSearchContext.java"}, "function": {"name": "org.apache.lucene.search.Query org.elasticsearch.search.DefaultSearchContext.buildFilteredQuery(org.apache.lucene.search.Query)", "offset": 4}, "line": {"number": 281}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kC4ZWtnGZdVrn9r8RWDIrgAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.writePages(org.elasticsearch.xcontent.ToXContentFragment, org.elasticsearch.gateway.PersistedClusterStateService$PageWriter)", "offset": 6}, "line": {"number": 1104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f8smoKkVzOwrZFvOEITpFAAAAAAAAABp"}} -{"Stackframe": {"file": {"name": "MessageHeader.java"}, "function": {"name": "void sun.net.www.MessageHeader.print(java.io.PrintStream)", "offset": 8}, "line": {"number": 328}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAACHly"}} -{"Stackframe": {"function": {"name": "xfs_xattr_get"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iO_uh5Oy6QpicgP1AW1lOQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "BuiltinClassLoader.java"}, "function": {"name": "java.net.URL jdk.internal.loader.BuiltinClassLoader.lambda$findResourceOnClassPath$0(java.lang.String)"}, "line": {"number": 501}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACN5k9"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/backtrack.go"}, "function": {"name": "regexp.(*Regexp).backtrack"}, "line": {"number": 312}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R-5D09eZM_0UfWInzOtpGAAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.SingleThreadEventExecutor$4.run()", "offset": 8}, "line": {"number": 989}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rSUSoohdnG6MdsfC9pID0QAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Netty4HttpRequestHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpRequestHandler.channelRead0(io.netty.channel.ChannelHandlerContext, java.lang.Object)"}, "line": {"number": 19}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hfr8gSfTBHDi3nB85Aj3VAAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorize(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 14}, "line": {"number": 236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o9I8XHop3y7uLb8wdADAN______AibdG"}} -{"Stackframe": {"function": {"name": "__this_module"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk5Z8"}} -{"Stackframe": {"function": {"name": "netlink_lookup"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "y439Ao6ZreDmB4A--tJn8wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TLSFallbackSSLSocket.java"}, "function": {"name": "void co.elastic.apm.agent.report.ssl.TLSFallbackSSLSocket.setSoTimeout(int)"}, "line": {"number": 330}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rwyujQb4ou3uOCGjw02PxQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "ActionRunnable.java"}, "function": {"name": "void org.elasticsearch.action.ActionRunnable$3.doRun()"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2RFqiy_TIF9Ivmg849R6KQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.processDocument(int, java.lang.Iterable)", "offset": 13}, "line": {"number": 488}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Lz41bPAk1Ks4JW6AerSXNQAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "boolean org.apache.lucene.util.bkd.BKDWriter$BKDMergeQueue.lessThan(org.apache.lucene.util.bkd.BKDWriter$MergeReader, org.apache.lucene.util.bkd.BKDWriter$MergeReader)", "offset": 2}, "line": {"number": 311}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjigE"}} -{"Stackframe": {"function": {"name": "rtnetlink_rcv"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HOno65fF9MNk7Hxtw-uPRAAAAAAAAAEx"}} -{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "java.lang.Object java.util.concurrent.ConcurrentHashMap.putVal(java.lang.Object, java.lang.Object, boolean)", "offset": 24}, "line": {"number": 1035}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sCOApbaKyYNIvwXSt1bEIAAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "BytesReferenceStreamInput.java"}, "function": {"name": "int org.elasticsearch.common.bytes.BytesReferenceStreamInput.read(byte[], int, int)", "offset": 9}, "line": {"number": 235}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-tSbHlR91dVpvAdxUOkCnAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.field(java.lang.String)", "offset": 1}, "line": {"number": 363}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "la3GUxZ_d6TdcMBptiLBKQAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator$$Lambda$7302+0x000000080250e468.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hCWXheJHN8qcUSKz5GzcxAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SizeBlockingQueue.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.concurrent.SizeBlockingQueue.take()"}, "line": {"number": 152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxFTw"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bytes/reader.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.parseOSRelease"}, "line": {"number": 160}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Z5"}} -{"Stackframe": {"function": {"name": "__d_lookup"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABV_dk"}} -{"Stackframe": {"file": {"name": "github.com/cilium/ebpf@v0.9.1/internal/epoll/poller.go"}, "function": {"name": "github.com/cilium/ebpf/internal/epoll.(*Poller).Wait"}, "line": {"number": 131}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HHYed7pYCVK68jLMEjdhPAAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$6511+0x0000000801c929c8.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Pd-omTG6uuGgCAgh--t7dQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "RolloverAction.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.RolloverAction.toSteps(org.elasticsearch.client.Client, java.lang.String, org.elasticsearch.xpack.core.ilm.Step$StepKey)"}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Li2sEL79K9zITKcWca3_yAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.admin.cluster.RestNodesInfoAction$$Lambda$7376+0x000000080251acb8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B20OugZuwBAeveso7e9HjAAAAAAAAAB7"}} -{"Stackframe": {"file": {"name": "AWS4Signer.java"}, "function": {"name": "void com.amazonaws.auth.AWS4Signer.sign(com.amazonaws.SignableRequest, com.amazonaws.auth.AWSCredentials)", "offset": 24}, "line": {"number": 247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PiU7BfFHTB9-nA0i0-poUAAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "SearchRequest.java"}, "function": {"name": "org.elasticsearch.action.search.SearchRequest org.elasticsearch.action.search.SearchRequest.rewrite(org.elasticsearch.index.query.QueryRewriteContext)", "offset": 4}, "line": {"number": 779}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFz8"}} -{"Stackframe": {"function": {"name": "smp_call_function_many"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AftbP5ZY38SZ1pHarYSmtAAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "LambdaForm$MH"}, "function": {"name": "long java.lang.invoke.LambdaForm$MH+0x00000008013b0800.invoke(java.lang.Object, long, java.lang.Object, long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HL0hC8TFXSzc6WKZHHDjDAAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "RestActions.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestActions.buildNodesHeader(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params, org.elasticsearch.action.support.nodes.BaseNodesResponse)", "offset": 3}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C0WKYZJsdZy_HtDNc5i0jAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Hasher.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authc.support.Hasher$1.verify(org.elasticsearch.common.settings.SecureString, char[])"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GzGkXez8RTlqjPJQDxzvigAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.xcontent.provider.json.JsonXContentGenerator.writeStringField(java.lang.String, java.lang.String)"}, "line": {"number": 352}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OeZPvMFxczJ5KM1xFhyNlgAAAAAAAADU"}} -{"Stackframe": {"file": {"name": "ServerHelloDone.java"}, "function": {"name": "void sun.security.ssl.ServerHelloDone$ServerHelloDoneConsumer.consume(sun.security.ssl.ConnectionContext, java.nio.ByteBuffer)", "offset": 48}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0kt5JIbzOAHNLQd_C5h8UQAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 8}, "line": {"number": 467}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k2Vd7cm7l6vxlSy0gXOaPwAAAAAAAACa"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "void java.io.FilePermission.init(int)", "offset": 32}, "line": {"number": 345}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tl7UGKsJ7PvO4sjn1Sys6gAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "URISyntaxException.java"}, "function": {"name": "void java.net.URISyntaxException.(java.lang.String, java.lang.String, int)"}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5VZIXKdThz-hZwdLu0KVfwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode.engineDoFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 2}, "line": {"number": 454}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kptqAf2DOdNTQQu52rpM3gAAAAAAAACq"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 47}, "line": {"number": 330}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLloN"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).object"}, "line": {"number": 676}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jA6JkQ0PFn46mJYMDk3jtwAAAAAAAABI"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readGenericMap(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier, org.elasticsearch.common.CheckedFunction)", "offset": 13}, "line": {"number": 342}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-1BH"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/gosigar@v0.14.2/sigar_linux_common.go"}, "function": {"name": "github.com/elastic/gosigar.readProcFile"}, "line": {"number": 414}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DLrWTvtAPDh4Uv4u2shragAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4$HighCompressionHashTable.()", "offset": 6}, "line": {"number": 311}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b0AoyduVJ3t1JvB8AtIQXgAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "JvmInfo.java"}, "function": {"name": "void org.elasticsearch.monitor.jvm.JvmInfo.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 3}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4ExmIEmG5cbeqkrcSlhsEAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Directory.java"}, "function": {"name": "org.apache.lucene.store.ChecksumIndexInput org.apache.lucene.store.Directory.openChecksumInput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i0NgaQFLfmbbRTPodX8izQAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": "TransportMonitoringBulkAction.java"}, "function": {"name": "void org.elasticsearch.xpack.monitoring.action.TransportMonitoringBulkAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.xpack.core.monitoring.action.MonitoringBulkRequest, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sK0qk7bPWcYirYByOsD0BQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "RestMainAction.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestMainAction$1.buildResponse(java.lang.Object, org.elasticsearch.xcontent.XContentBuilder)"}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1nPy8qyQLwokg3Bx-XOuogAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ByteSequenceOutputs.java"}, "function": {"name": "void org.apache.lucene.util.fst.ByteSequenceOutputs.write(java.lang.Object, org.apache.lucene.store.DataOutput)"}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Qxy7B7Nr9PFo52Y5q5lwVgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.internal.SearchContext org.elasticsearch.search.SearchService.createContext(org.elasticsearch.search.internal.ReaderContext, org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask, boolean)", "offset": 1}, "line": {"number": 770}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "AbstractRunnable.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractRunnable.run()"}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xitMwS4ViC61BCy_8U7u2AAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkPropertyAccess(java.lang.String)"}, "line": {"number": 1155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O98xNHHL7v3hEuCXGqIsLgAAAAAAAABr"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.checkPrivileges(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$PrivilegesToCheck, java.util.Collection, org.elasticsearch.action.ActionListener)", "offset": 26}, "line": {"number": 533}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bMzaZATN1l7AUFoobYOAAgAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.lambda$getRoles$1(org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.permission.Role)", "offset": 9}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QZb4rTMQsQaHQYQyuxFMYgAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "long org.elasticsearch.index.translog.Translog.findEarliestLastModifiedAge(long, java.lang.Iterable, org.elasticsearch.index.translog.TranslogWriter)", "offset": 4}, "line": {"number": 433}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n55ZjUBJzU7CnzmyoRyorwAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 1}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_20iQw_1BgBh9m8HkEpgSwAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "Lucene90BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.blocktree.Lucene90BlockTreeTermsWriter$TermsWriter.write(org.apache.lucene.util.BytesRef, org.apache.lucene.index.TermsEnum, org.apache.lucene.codecs.NormsProducer)"}, "line": {"number": 1024}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "FileDispatcherImpl.java"}, "function": {"name": "int sun.nio.ch.FileDispatcherImpl.write0(java.io.FileDescriptor, long, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAATxBS"}} -{"Stackframe": {"function": {"name": "diskstats_show"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iH1Vr4ITYNoM1EQTmFjMowAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "WatchStoreUtils.java"}, "function": {"name": "org.elasticsearch.cluster.metadata.IndexMetadata org.elasticsearch.xpack.watcher.watch.WatchStoreUtils.getConcreteIndex(java.lang.String, org.elasticsearch.cluster.metadata.Metadata)"}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lQWNKvZdgmHySTzr2d4FnwAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "Spliterators.java"}, "function": {"name": "boolean java.util.Spliterators$IteratorSpliterator.tryAdvance(java.util.function.Consumer)", "offset": 5}, "line": {"number": 1811}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MrkHP-uLdnGR6BMej6TH1gAAAAAAAABn"}} -{"Stackframe": {"file": {"name": "DataInput.java"}, "function": {"name": "void org.apache.lucene.store.DataInput.skipBytes(long)", "offset": 9}, "line": {"number": 338}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1WwaSXc6MUqSl16CLws0XwAAAAAAAACe"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "int java.io.FilePermission.containsPath(java.nio.file.Path, java.nio.file.Path)", "offset": 43}, "line": {"number": 744}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5ek4GYVwae8QN7q7IuBTMwAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "DanglingIndicesState.java"}, "function": {"name": "void org.elasticsearch.gateway.DanglingIndicesState.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 1}, "line": {"number": 221}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vAJHjqNGr3CUZ2XaU7rPiQAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "ByteBuffer.java"}, "function": {"name": "java.nio.ByteBuffer java.nio.ByteBuffer.get(byte[], int, int)", "offset": 5}, "line": {"number": 800}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Gz-UIPp7ivisgp9IsJeJYgAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "KeyPairGenerator.java"}, "function": {"name": "java.security.KeyPair java.security.KeyPairGenerator$Delegate.generateKeyPair()", "offset": 7}, "line": {"number": 728}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LtrzImlVVNQfaq91QfSCpwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "AbstractLogger.java"}, "function": {"name": "void org.apache.logging.log4j.spi.AbstractLogger.logMessageSafely(java.lang.String, org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message, java.lang.Throwable)"}, "line": {"number": 2108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kGb2Tgcv7TAAnt4S5dlXcgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.xcontent.support.AbstractXContentParser.map()"}, "line": {"number": 263}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JcguT-GkmtJ61-snxPe8uQAAAAAAAAE0"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 308}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "TieredMergePolicy.java"}, "function": {"name": "org.apache.lucene.index.MergePolicy$MergeSpecification org.apache.lucene.index.TieredMergePolicy.findMerges(org.apache.lucene.index.MergeTrigger, org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 10}, "line": {"number": 328}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "urqdYhuIawYQe5EC7N2xKgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "AbstractInternalTerms.java"}, "function": {"name": "boolean org.elasticsearch.search.aggregations.bucket.terms.AbstractInternalTerms$1.lessThan(org.elasticsearch.search.aggregations.bucket.IteratorAndCurrent, org.elasticsearch.search.aggregations.bucket.IteratorAndCurrent)"}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9Z8fcZAU_NpheIsS8JZMvQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.store.MappedByteBufferIndexInputProvider$$Lambda$1857+0x00000008018aae40.freeBuffer(java.lang.String, java.nio.ByteBuffer)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DrGSK6yMQtOpLQKRphq2qQAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "IngestService.java"}, "function": {"name": "void org.elasticsearch.ingest.IngestService.innerUpdatePipelines(org.elasticsearch.ingest.IngestMetadata)", "offset": 9}, "line": {"number": 1031}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "buaxzZBrb6WHETKUkwVYegAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.xcontent.json.JsonXContentParser.text()", "offset": 1}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxBmY"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/shared/network.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/shared.Network"}, "line": {"number": 43}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f8MTeeOdLjQj8KhATUKjsAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "EsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor.execute(java.lang.Runnable)", "offset": 2}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Qdsa8CodEr3BBR20SawlOgAAAAAAAAII"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "void org.apache.lucene.index.ReadersAndUpdates.handleDVUpdates(org.apache.lucene.index.FieldInfos, org.apache.lucene.store.Directory, org.apache.lucene.codecs.DocValuesFormat, org.apache.lucene.index.SegmentReader, java.util.Map, long, org.apache.lucene.util.InfoStream)", "offset": 87}, "line": {"number": 367}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "62KXTb7sbvDCquAlSQsRtAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 477}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-utk"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/reader.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.getStatsV2"}, "line": {"number": 259}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V6F4RoY4Wqi3heGJHCHC7wAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "PromiseCombiner.java"}, "function": {"name": "boolean io.netty.util.concurrent.PromiseCombiner.access$600(io.netty.util.concurrent.PromiseCombiner)"}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Owyk6knOj497RFA7J6tb3gAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "IndexSearcher.java"}, "function": {"name": "void org.apache.lucene.search.IndexSearcher.search(org.apache.lucene.search.Query, org.apache.lucene.search.Collector)", "offset": 1}, "line": {"number": 445}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5DBDoHaNnZL7KJ2FwTIw4gAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "BulkByScrollParallelizationHelper.java"}, "function": {"name": "void org.elasticsearch.index.reindex.BulkByScrollParallelizationHelper.executeSlicedAction(org.elasticsearch.index.reindex.BulkByScrollTask, org.elasticsearch.index.reindex.AbstractBulkByScrollRequest, org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionListener, org.elasticsearch.client.Client, org.elasticsearch.cluster.node.DiscoveryNode, java.lang.Runnable)", "offset": 3}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rfpbxi08JBhqazPMQvbg-gAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.support.replication.TransportReplicationAction$$Lambda$4316+0x000000080191f540.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N8EaJBp59RHZ5cTYR_Dm5gAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "void io.netty.channel.DefaultChannelPipeline$HeadContext.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 1367}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "p-hz1y_-cXtA7Uo61H8OwAAAAAAAAABO"}} -{"Stackframe": {"file": {"name": "TreeSet.java"}, "function": {"name": "boolean java.util.TreeSet.addAll(java.util.Collection)", "offset": 9}, "line": {"number": 309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "y9CWmpVbMKwU8wQ9ADYcMwAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "TransportUpdateByQueryAction.java"}, "function": {"name": "void org.elasticsearch.index.reindex.TransportUpdateByQueryAction.lambda$doExecute$0(org.elasticsearch.index.reindex.BulkByScrollTask, org.elasticsearch.index.reindex.UpdateByQueryRequest, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HVAzZrPoCZr5Mjxtu7E5bwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "LongPipeline.java"}, "function": {"name": "java.util.OptionalLong java.util.stream.LongPipeline.reduce(java.util.function.LongBinaryOperator)"}, "line": {"number": 503}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I0MmO0q1Sl0Qsu7Q5liiZwAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "IndexReader.java"}, "function": {"name": "void org.apache.lucene.index.IndexReader.reportCloseToParentReaders()", "offset": 6}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YIk8zteZ8V2tJoAxEqPWxQAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$5718+0x0000000801b227b0.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "g5kZ6fdMbNovA5I3sFH88AAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.xcontent.ObjectParser$$Lambda$2175.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAYPw"}} -{"Stackframe": {"function": {"name": "aufs_open_dir"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4g3dadKJq-rh-Mlmi-1U5gAAAAAAAAJm"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.commitMerge(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergeState)", "offset": 114}, "line": {"number": 4298}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "megm64Ad8MRsFtfMDJWCkwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "DiscoveryNode.java"}, "function": {"name": "java.lang.String org.elasticsearch.cluster.node.DiscoveryNode.lambda$static$1(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 378}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Mn5TdyGE5kHT5IZPOwhjjQAAAAAAAAEH"}} -{"Stackframe": {"file": {"name": "AbstractInternalTerms.java"}, "function": {"name": "org.elasticsearch.search.aggregations.InternalAggregation org.elasticsearch.search.aggregations.bucket.terms.AbstractInternalTerms.reduce(java.util.List, org.elasticsearch.search.aggregations.AggregationReduceContext)", "offset": 55}, "line": {"number": 315}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TAeiWwMSdIb_W33qqCF-5gAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "void io.netty.channel.AbstractChannel$AbstractUnsafe.beginRead()", "offset": 7}, "line": {"number": 843}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N8RZIOlN-CzU2nm4KXUzLwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.access(sun.nio.fs.UnixPath, int)", "offset": 2}, "line": {"number": 499}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yp9yfnSFmXqLZeNxJrwegQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "OsService.java"}, "function": {"name": "org.elasticsearch.monitor.os.OsStats org.elasticsearch.monitor.os.OsService.stats()"}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yOUU-MIrBJXHRczrclIQpAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$6504+0x0000000801c91a80.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_YVe"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/auditd/audit_linux.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/auditd.addProcess"}, "line": {"number": 771}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction.finishHim()", "offset": 6}, "line": {"number": 236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7Y3rOwqJS8StJ3gV4HpibgAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Iterable, java.lang.Object, java.util.Set)", "offset": 5}, "line": {"number": 1057}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.core.security.authz.store.RoleReferenceIntersection$$Lambda$7327+0x0000000802514e38.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VSALBRPvgHpUWKmpUo1khAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.docID()"}, "line": {"number": 247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mFI6bnpBK3kAEbXHdNa8MAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient$IndicesAdmin.execute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 1303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-mik"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/blkio.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.blkioThrottle"}, "line": {"number": 189}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OMI6Q27dkZQjRDWwoDM78QAAAAAAAACh"}} -{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "void java.security.AccessController.checkPermission(java.security.Permission)", "offset": 30}, "line": {"number": 1036}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YX6jd4K2CK6gVQH6DsXh-AAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "SSLAlgorithmConstraints.java"}, "function": {"name": "boolean sun.security.ssl.SSLAlgorithmConstraints.permits(java.util.Set, java.lang.String, java.security.AlgorithmParameters)", "offset": 8}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kAS4tZnm727VHuczPAa5PAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "void co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.onEvent(java.lang.Object, long, boolean)"}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E8BIohdMn7aYDKPION2NJwAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "PooledByteBuf.java"}, "function": {"name": "void io.netty.buffer.PooledByteBuf.deallocate()", "offset": 4}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IkSo5taWM8U71y2hDxxHngAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "SegmentCommitInfo.java"}, "function": {"name": "long org.apache.lucene.index.SegmentCommitInfo.sizeInBytes()", "offset": 3}, "line": {"number": 230}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xzBkQCtjYmztrrm3hxqn5AAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "IndexSearcher.java"}, "function": {"name": "org.apache.lucene.search.Query org.apache.lucene.search.IndexSearcher.rewrite(org.apache.lucene.search.Query)", "offset": 2}, "line": {"number": 677}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AOcEaCF8bglqC14-r8ZiKAAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublicationTransportHandler$PublicationContext org.elasticsearch.cluster.coordination.PublicationTransportHandler.newPublicationContext(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 11}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yGP4qHVV9gP7oOP9pntYfAAAAAAAAADK"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "void sun.nio.fs.UnixFileSystemProvider.checkAccess(java.nio.file.Path, java.nio.file.AccessMode[])", "offset": 37}, "line": {"number": 311}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "trKFSvtlxO979VBLgP3FPAAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.commit(long, long, org.elasticsearch.Version)", "offset": 3}, "line": {"number": 941}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xQ-G9Hk2h3Mjbnud14Z1hQAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "org.apache.lucene.index.CodecReader org.apache.lucene.index.SoftDeletesRetentionMergePolicy$1.wrapForMerge(org.apache.lucene.index.CodecReader)", "offset": 5}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "13IVMDkiegUfkjSIeMh3BAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$runRequestInterceptors$14(org.elasticsearch.xpack.security.authz.interceptor.RequestInterceptor, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.StepListener, java.lang.Void)"}, "line": {"number": 347}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Oo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ElasticsearchReaderManager.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.engine.ElasticsearchReaderManager.refreshIfNeeded(java.lang.Object)"}, "line": {"number": 27}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zvqIKMMHl8P7GaPP4lE2kAAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.decRef(org.apache.lucene.index.SegmentInfos)", "offset": 1}, "line": {"number": 686}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wtgpZp9SPQlV85UePoIRQgAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.loadAuthorizedIndices(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 2}, "line": {"number": 366}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b95z1GhnNzkQcVnTAGVlWQAAAAAAAAB3"}} -{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService.snapshot(org.elasticsearch.index.shard.ShardId, org.elasticsearch.snapshots.Snapshot, org.elasticsearch.repositories.IndexId, java.util.Map, org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.elasticsearch.Version, org.elasticsearch.action.ActionListener)", "offset": 18}, "line": {"number": 369}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_v6hOoIgYf3eN97moDCA0AAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "FilterMergePolicy.java"}, "function": {"name": "org.apache.lucene.index.MergePolicy$MergeSpecification org.apache.lucene.index.FilterMergePolicy.findMerges(org.apache.lucene.index.MergeTrigger, org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAATpza"}} -{"Stackframe": {"function": {"name": "blk_mq_flush_plug_list"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACVPvW"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/http/transport.go"}, "function": {"name": "net/http.(*persistConn).Read"}, "line": {"number": 1894}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YM_gl0OeNbTAtY8GRC8UVgAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 8}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GPK7pyl3RjtyKa9WtooOGgAAAAAAAABf"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap$HashIterator.nextNode()", "offset": 6}, "line": {"number": 1588}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Kc3Qpigh43lyCXxKBVsfZQAAAAAAAADI"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.forceApply(org.apache.lucene.index.FrozenBufferedUpdates)", "offset": 48}, "line": {"number": 5632}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RvwWnGu8aNVctUqI75kRlAAAAAAAAADh"}} -{"Stackframe": {"file": {"name": "BKDReader.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDReader.visitDocValuesWithCardinality(int[], byte[], byte[], byte[], org.apache.lucene.store.IndexInput, org.apache.lucene.util.bkd.BKDReader$BKDReaderDocIDSetIterator, int, org.apache.lucene.index.PointValues$IntersectVisitor)", "offset": 41}, "line": {"number": 535}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "adI05FeXl-z73o2NJPxYawAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "RestResponseListener.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestResponseListener.processResponse(java.lang.Object)"}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "edTeS1Ofrj8KEn1olv0sJAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.implWrite(byte[], int, int)", "offset": 1}, "line": {"number": 411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ir_B8dLUMy9ZNkZg-Dbc7wAAAAAAAADv"}} -{"Stackframe": {"file": {"name": "InternalAggregations.java"}, "function": {"name": "org.elasticsearch.search.aggregations.InternalAggregations org.elasticsearch.search.aggregations.InternalAggregations.reduce(java.util.List, org.elasticsearch.search.aggregations.AggregationReduceContext)", "offset": 25}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA40"}} -{"Stackframe": {"function": {"name": "seq_vprintf"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBiZ"}} -{"Stackframe": {"function": {"name": "seq_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkF0H"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/print.go"}, "function": {"name": "fmt.(*pp).doPrintf"}, "line": {"number": 1064}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-wrI"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.SubsystemMountpoints.func1"}, "line": {"number": 183}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B68zdPqEXr6IoEA5hdJmcgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "java.util.stream.Sink java.util.stream.ReferencePipeline$2.opWrapSink(int, java.util.stream.Sink)"}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-cOBA-gSyiFk8KwdWTvtSAAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "DocWriteRequest.java"}, "function": {"name": "org.elasticsearch.action.DocWriteRequest org.elasticsearch.action.DocWriteRequest.readDocumentRequest(org.elasticsearch.index.shard.ShardId, org.elasticsearch.common.io.stream.StreamInput)", "offset": 3}, "line": {"number": 230}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALmz0"}} -{"Stackframe": {"function": {"name": "path_openat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdbc"}} -{"Stackframe": {"function": {"name": "apparmor_inode_getattr"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yt_cpdTtBVWXz_YP1okGcAAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "void org.apache.lucene.search.ReferenceManager.release(java.lang.Object)", "offset": 1}, "line": {"number": 264}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "paf4tjIT0ResVsAYyHXaNQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard$$Lambda$6975+0x0000000801e5bac0.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BfvSakkahGPsqsyBzk0RGQAAAAAAAADw"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.commitMerge(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergeState)", "offset": 53}, "line": {"number": 4546}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IjOdy6gQUXRVyDenk0zXHQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "void java.lang.String.(java.lang.StringBuilder)"}, "line": {"number": 1479}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIZuJ"}} -{"Stackframe": {"function": {"name": "__page_cache_alloc"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WRtY-lihH3Vcv4ui-X8hvwAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "ProgressInputStream.java"}, "function": {"name": "int com.amazonaws.event.ProgressInputStream.read(byte[], int, int)", "offset": 4}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hrzNr_V8YVZ7ibkr1777pAAAAAAAAADW"}} -{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.indices.NodeIndicesStats org.elasticsearch.indices.IndicesService.stats(org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 28}, "line": {"number": 464}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8fSXRZQuBUsi-VDBtsz_gQAAAAAAAABl"}} -{"Stackframe": {"file": {"name": "StringLatin1.java"}, "function": {"name": "int java.lang.StringLatin1.compareToCI(byte[], byte[])", "offset": 3}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jOdHQLOYIGEyn_avpIhwJAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "int org.elasticsearch.common.io.stream.StreamInput.readArraySize()"}, "line": {"number": 1270}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "obA_YN1BhcTIsrqf5XOlGQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SocketAccess.java"}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.s3.SocketAccess.doPrivilegedIOException(java.security.PrivilegedExceptionAction)", "offset": 2}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_DDQPZMS5NnUuioWsVqoPgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.ClusterModule$$Lambda$2289+0x000000080132fdc8.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JmUwuALYuz7J8pWH7Gnx7AAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "boolean org.elasticsearch.index.shard.IndexShard.scheduledRefresh()", "offset": 2}, "line": {"number": 3894}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o0OVH2LBiDEc9yJITJL7oAAAAAAAAACQ"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$TermsDict.(org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer, org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$TermsDictEntry, org.apache.lucene.store.IndexInput)", "offset": 20}, "line": {"number": 1076}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JN-dgFkoqSE-dHBUib5RMAAAAAAAAAC1"}} -{"Stackframe": {"file": {"name": "LifecyclePolicy.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.LifecyclePolicy.toSteps(org.elasticsearch.client.Client)", "offset": 28}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vEf82IDRTNtSKS_YS3157QAAAAAAAAE6"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4.compressWithDictionary(byte[], int, int, int, org.apache.lucene.store.DataOutput, org.apache.lucene.util.compress.LZ4$HashTable)", "offset": 51}, "line": {"number": 573}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3kg82-0D3eZ1bo-oCBlTCgAAAAAAAADC"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.engine.InternalEngine.indexIntoLucene(org.elasticsearch.index.engine.Engine$Index, org.elasticsearch.index.engine.InternalEngine$IndexingStrategy)", "offset": 14}, "line": {"number": 1183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1unvtJo8Z1WLtidNEV0aawAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "OutboundMessage.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundMessage.writeVariableHeader(org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "P4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "Spliterators.java"}, "function": {"name": "void java.util.Spliterators$ArraySpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 4}, "line": {"number": 948}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vJ5bWNuw0lqt2JdcP5eOZgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "TranslogWriter.java"}, "function": {"name": "void org.elasticsearch.index.translog.TranslogWriter.writeToFile(java.nio.ByteBuffer)", "offset": 1}, "line": {"number": 487}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "woXLgCudpu5Igw4bPyCZzAAAAAAAAABT"}} -{"Stackframe": {"file": {"name": "ChannelOutboundBuffer.java"}, "function": {"name": "void io.netty.channel.ChannelOutboundBuffer.removeBytes(long)", "offset": 15}, "line": {"number": 352}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SAAkutGejeRImCZXeWZ-1wAAAAAAAACL"}} -{"Stackframe": {"file": {"name": "PolicyStepsRegistry.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.Step org.elasticsearch.xpack.ilm.PolicyStepsRegistry.getStep(org.elasticsearch.cluster.metadata.IndexMetadata, org.elasticsearch.xpack.core.ilm.Step$StepKey)", "offset": 18}, "line": {"number": 203}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWrX"}} -{"Stackframe": {"function": {"name": "vfs_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MRu1fZfkmxZ6Mbp7TQiIgAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "ConstructingObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ConstructingObjectParser$Target.access$900(org.elasticsearch.common.xcontent.ConstructingObjectParser$Target, int, java.lang.Object)"}, "line": {"number": 408}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u5vAXtVp9d4wvRuocarrCAAAAAAAAABp"}} -{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel)", "offset": 9}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "12wqq0CZSFWXQTyNvq7lawAAAAAAAACa"}} -{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.SoftDeletesRetentionMergePolicy.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.util.IOSupplier)", "offset": 13}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 6}, "line": {"number": 250}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ygiinZb-VL-5X6K63nWolQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor$Worker.run()"}, "line": {"number": 628}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7e32DwxqF0KavchyqVkOEgAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "PackedLongValues.java"}, "function": {"name": "void org.apache.lucene.util.packed.PackedLongValues$Iterator.(org.apache.lucene.util.packed.PackedLongValues)", "offset": 3}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Hrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACt"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "org.elasticsearch.index.translog.Translog$Location org.elasticsearch.action.bulk.TransportShardBulkAction.performOnReplica(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard)", "offset": 27}, "line": {"number": 595}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5mFfstASu8Qeky6I-gL8pgAAAAAAAAFB"}} -{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.fs.UnixChannelFactory.open(int, sun.nio.fs.UnixPath, java.lang.String, sun.nio.fs.UnixChannelFactory$Flags, int)", "offset": 71}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACETiH"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map_faststr.go"}, "function": {"name": "runtime.mapdelete_faststr"}, "line": {"number": 310}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALUip"}} -{"Stackframe": {"function": {"name": "vfs_write"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UpQJVab1XLdEqsPt4Ey6RwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.apache.lucene.index.IndexWriter$$Lambda$6314+0x0000000801c52030.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vj9KWV7ATkWJJTMhiLlh8wAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "Thread.java"}, "function": {"name": "void java.lang.Thread.run()", "offset": 2}, "line": {"number": 1589}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA0MV"}} -{"Stackframe": {"file": {"name": "runtime/os_linux.go"}, "function": {"name": "runtime.futexsleep"}, "line": {"number": 69}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cqDrFg2lVIlEaumPl_y8qQAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "ProtectionDomain.java"}, "function": {"name": "boolean java.security.ProtectionDomain.implies(java.security.Permission)", "offset": 7}, "line": {"number": 321}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACHkgK"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/reflect/value.go"}, "function": {"name": "reflect.MakeMapWithSize"}, "line": {"number": 2331}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMhSY"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/module/system/process/process.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/module/system/process.(*MetricSet).Fetch"}, "line": {"number": 183}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rY7n4rCVF7rtGQSMR7sNcQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain$$Lambda$6564+0x0000000802411950.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgmcR"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.scanblock"}, "line": {"number": 1217}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bo-mfDTeOBpXH5-WRN3GcAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "Lucene90CompoundReader.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90CompoundReader.close()"}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JJwHXTkYed0lpeQhX1-f7AAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "boolean org.elasticsearch.index.shard.IndexShard.scheduledRefresh()"}, "line": {"number": 3782}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xGM1BGYapiiJfmZA3cUi3QAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.decode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 4}, "line": {"number": 1285}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NdnOauNqYT-cKE84qEP2jwAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.updateDocuments(org.apache.lucene.index.DocumentsWriterDeleteQueue$Node, java.lang.Iterable)", "offset": 3}, "line": {"number": 1533}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN6Kx"}} -{"Stackframe": {"function": {"name": "kernfs_sop_show_options"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA-3H"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.startm"}, "line": {"number": 2339}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dB8rpvXeU-U7j8zoRqc_lgAAAAAAAAEG"}} -{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 28}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hicgrP6yr_-9qRDPdRH1UQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "CodecUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.CodecUtil.writeCRC(org.apache.lucene.store.IndexOutput)"}, "line": {"number": 643}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KWcc74zLQzIOeccSqcd1DgAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "PendingDeletes.java"}, "function": {"name": "int org.apache.lucene.index.PendingDeletes.numDeletesToMerge(org.apache.lucene.index.MergePolicy, org.apache.lucene.util.IOSupplier)"}, "line": {"number": 238}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "A6t1xGw0Vznd4jLOiyDm4wAAAAAAAAEu"}} -{"Stackframe": {"file": {"name": "PeerFinder.java"}, "function": {"name": "void org.elasticsearch.discovery.PeerFinder$Peer.requestPeers()", "offset": 82}, "line": {"number": 504}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChN0c"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.(*gQueue).pushBackAll"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "moYMxp66Bkdix0P-zaEKBAAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient.(org.elasticsearch.common.settings.Settings, org.elasticsearch.threadpool.ThreadPool)", "offset": 5}, "line": {"number": 368}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jPR9TpcCS0lbmVL4a1jldQAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "AbstractAsyncTask.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractAsyncTask.run()", "offset": 21}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi5Ak"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/dir.go"}, "function": {"name": "os.(*File).ReadDir"}, "line": {"number": 103}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lsX2eCLSr4Q70_mA1t3KeQAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "long org.apache.lucene.index.DocumentsWriter.updateDocuments(java.lang.Iterable, org.apache.lucene.index.DocumentsWriterDeleteQueue$Node)", "offset": 12}, "line": {"number": 432}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wqHsMke_fsatGdp5mRZKPAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "SSLExtension.java"}, "function": {"name": "byte[] sun.security.ssl.SSLExtension.produce(sun.security.ssl.ConnectionContext, sun.security.ssl.SSLHandshake$HandshakeMessage)", "offset": 1}, "line": {"number": 571}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TKPAl4roVc6u9INGFwfp_AAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$7342+0x0000000802518a28.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UBpN-E7Da9pw7aCfqoKMJQAAAAAAAABg"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.IndexingChain.writePoints(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)", "offset": 18}, "line": {"number": 346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABBUs"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.park_m"}, "line": {"number": 3356}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a7bXmZCbO2Dg3KIPM4uRowAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "LambdaForm$MH"}, "function": {"name": "java.lang.Object java.lang.invoke.LambdaForm$MH+0x000000080115b000.invoke(java.lang.Object, java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LL2AmHorGMGLHFvQ3KWNRAAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.addSortedSetField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 3}, "line": {"number": 879}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LPlt4oo-IpHI2h8d_e_PDQAAAAAAAACY"}} -{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "long org.apache.lucene.index.DocumentsWriter.flushAllThreads()", "offset": 22}, "line": {"number": 672}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nliiCX4exwFhNaWWExWL2QAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ConcurrentMergeScheduler.java"}, "function": {"name": "void org.apache.lucene.index.ConcurrentMergeScheduler.doMerge(org.apache.lucene.index.MergeScheduler$MergeSource, org.apache.lucene.index.MergePolicy$OneMerge)"}, "line": {"number": 626}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdS5"}} -{"Stackframe": {"function": {"name": "apparmor_file_permission"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hzWLY32HB40pGQwoJomtfAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.ApiKeyAuthenticator$$Lambda$8893+0x00000008027d0d10.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BMCbsXB1fK39FyZz1zKsqwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.util.Iterator java.util.Collections$SetFromMap.iterator()"}, "line": {"number": 5655}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hYhRS1xvCc3bqxTQLfng_gAAAAAAAACS"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer.readFields(org.apache.lucene.store.IndexInput, org.apache.lucene.index.FieldInfos)", "offset": 13}, "line": {"number": 181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi52q"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/dir_unix.go"}, "function": {"name": "os.(*File).readdir"}, "line": {"number": 115}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OMI6Q27dkZQjRDWwoDM78QAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "void java.security.AccessController.checkPermission(java.security.Permission)", "offset": 4}, "line": {"number": 1010}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DYrBcnSnxKpDp2GRNDxXQAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "DataInput.java"}, "function": {"name": "int org.apache.lucene.store.DataInput.readVInt()"}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBJS"}} -{"Stackframe": {"function": {"name": "futex_wait_queue_me"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-oRE"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/cpu.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.cpuRT"}, "line": {"number": 154}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTEA"}} -{"Stackframe": {"function": {"name": "prepend_path"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi6xn"}} -{"Stackframe": {"function": {"name": "skb_copy_datagram_from_iter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4ksqoSQaCDcXF2GHOzi7FwAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "SSLHandshake.java"}, "function": {"name": "void sun.security.ssl.SSLHandshake.kickstart(sun.security.ssl.HandshakeContext)", "offset": 18}, "line": {"number": 529}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACETxW"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map_faststr.go"}, "function": {"name": "runtime.growWork_faststr"}, "line": {"number": 389}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "NativeFSLockFactory.java"}, "function": {"name": "void org.apache.lucene.store.NativeFSLockFactory$NativeFSLock.ensureValid()", "offset": 4}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Pnrh-Ooxmcdjw5G0pB9e_wAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "PendingSoftDeletes.java"}, "function": {"name": "org.apache.lucene.index.FieldInfos org.apache.lucene.index.PendingSoftDeletes.readFieldInfos()", "offset": 11}, "line": {"number": 238}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u25MUdzPMiaQ2283ZYctDwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "void org.apache.lucene.store.LockValidatingDirectoryWrapper.syncMetaData()"}, "line": {"number": 61}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ADx42ASEgg5CGZav2t-yuQAAAAAAAAKl"}} -{"Stackframe": {"file": {"name": "FieldInfos.java"}, "function": {"name": "void org.apache.lucene.index.FieldInfos.(org.apache.lucene.index.FieldInfo[])", "offset": 66}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SwsZ-OEsjGI9467rr9oOtQAAAAAAAABJ"}} -{"Stackframe": {"file": {"name": "CompositeByteBuf.java"}, "function": {"name": "io.netty.buffer.CompositeByteBuf io.netty.buffer.CompositeByteBuf.addComponents(boolean, int, java.lang.Iterable)", "offset": 15}, "line": {"number": 550}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SU7fNzMC3NazhQDT5xGXYgAAAAAAAABI"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.util.TreeMap$Entry java.util.TreeMap.getEntry(java.lang.Object)", "offset": 14}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7Slkc3C9A3eZsO9dv0O2hwAAAAAAAACD"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap.putMapEntries(java.util.Map, boolean)", "offset": 17}, "line": {"number": 514}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eLPEw3jnFkvsJ2aQiz21NAAAAAAAAACR"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)", "offset": 12}, "line": {"number": 581}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1Az5XiB-HqkM2KIxBs7pHgAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrapAndFlush(io.netty.channel.ChannelHandlerContext)", "offset": 15}, "line": {"number": 815}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iax9YXpVBWB7dSlpz7WGyQAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap.(java.util.Map)", "offset": 2}, "line": {"number": 492}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ePh-EVmYwcpuvkYfVwI3pAAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.executeSearch(org.elasticsearch.action.search.SearchTask, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.OriginalIndices, java.util.List, java.util.function.BiFunction, org.elasticsearch.cluster.ClusterState, java.util.Map, org.elasticsearch.action.ActionListener, org.elasticsearch.action.search.SearchResponse$Clusters)", "offset": 4}, "line": {"number": 474}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMRwH"}} -{"Stackframe": {"function": {"name": "vfs_fsync_range"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "void org.apache.lucene.store.LockValidatingDirectoryWrapper.sync(java.util.Collection)", "offset": 1}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iYwtdrXijhS8BlWDukSJEwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 1236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "y_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.apache.lucene.store.FilterDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cblhwFQdNeQr9L4l7DVdpgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "void sun.security.ssl.SSLSocketImpl.startHandshake()"}, "line": {"number": 427}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaZ"}} -{"Stackframe": {"function": {"name": "audit_filter_syscall.constprop.19"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Q74ZSoBrLiINArpQeOleFAAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.opt(java.util.Collection, int, org.apache.lucene.search.ScoreMode, long)", "offset": 5}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nxv9fnyzQgRP5y-sCtMEGwAAAAAAAAB7"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 10}, "line": {"number": 638}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y18dhKjZ0RV7HSazs8ApwwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "Outputs.java"}, "function": {"name": "void org.apache.lucene.util.fst.Outputs.writeFinalOutput(java.lang.Object, org.apache.lucene.store.DataOutput)"}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACqWII"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/path/filepath/match.go"}, "function": {"name": "path/filepath.glob"}, "line": {"number": 343}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qxNbkYBEVNPqwztSIOjX5wAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "DefaultChannelPromise.java"}, "function": {"name": "io.netty.channel.ChannelPromise io.netty.channel.DefaultChannelPromise.addListener(io.netty.util.concurrent.GenericFutureListener)"}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1rHoPMq-mpf_DwJrvHqYAwAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress$Entry.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 11}, "line": {"number": 598}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACw"}} -{"Stackframe": {"file": {"name": "InternalHttpClient.java"}, "function": {"name": "org.apache.http.client.methods.CloseableHttpResponse org.apache.http.impl.client.InternalHttpClient.doExecute(org.apache.http.HttpHost, org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext)", "offset": 28}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3hPseLnAtdLoro6fxRXJ9QAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Settings.get(java.lang.String, java.lang.String)"}, "line": {"number": 242}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gVQfyTUjnDx6YGZ7YyYMDwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write(byte[], int, int)"}, "line": {"number": 396}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vcmbteT9Zn8Dn3HK9hT_jwAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "PlatformMBeanProvider.java"}, "function": {"name": "java.util.List sun.management.spi.PlatformMBeanProvider$PlatformComponent.getMBeans(java.lang.Class)", "offset": 3}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3UKCqvwKCyoIkRLAE_53mAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedExceptionAction, java.security.AccessControlContext)", "offset": 3}, "line": {"number": 691}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACW0Au"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/gopkg.in/yaml.v2@v2.3.0/decode.go"}, "function": {"name": "gopkg.in/yaml%2ev2.(*parser).parse"}, "line": {"number": 151}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pBwMyfP27SnM1s9Uubm7KQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap.newNode(int, java.lang.Object, java.lang.Object, java.util.HashMap$Node)"}, "line": {"number": 1901}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yImdtjjCMZhJ-nQQIrKkrAAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct.putTransient(java.lang.String, java.lang.Object)", "offset": 1}, "line": {"number": 808}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OKXE0TsqEsNxLqr0g-oK6QAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "JvmGcMonitorService.java"}, "function": {"name": "void org.elasticsearch.monitor.jvm.JvmGcMonitorService$JvmMonitor.run()"}, "line": {"number": 426}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ObL9miA56U-u0eTT3_kszwAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "void org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction.lambda$finishHim$3(java.lang.Exception, java.util.List, java.util.List, boolean)", "offset": 7}, "line": {"number": 597}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Fa-SLJc7wdpw_q90es9vFQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "org.elasticsearch.index.shard.IndexShard org.elasticsearch.index.IndexService.getShardOrNull(int)"}, "line": {"number": 273}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ijo_wkiSkdM-ZN0r2V8rhgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "AnalysisStats.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.stats.AnalysisStats org.elasticsearch.action.admin.cluster.stats.AnalysisStats.of(org.elasticsearch.cluster.metadata.Metadata, java.lang.Runnable)"}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACmJZ-"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bufio/scan.go"}, "function": {"name": "bufio.(*Scanner).Scan"}, "line": {"number": 255}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JVNRKbHPqSsSb32dALl1uQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "int org.elasticsearch.search.aggregations.InternalOrder$$Lambda$8730+0x00000008027b9068.compare(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8a8pt2P7LC9dUGwzrbPBNwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.execute(java.lang.Runnable)"}, "line": {"number": 597}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LVOp8OK1gZx_CT3WZZ35FgAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "FST.java"}, "function": {"name": "void org.apache.lucene.util.fst.FST.save(org.apache.lucene.store.DataOutput, org.apache.lucene.store.DataOutput)", "offset": 12}, "line": {"number": 518}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kteYclMJmBgAkuGPrvc2kgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "SSLKeyExchange.java"}, "function": {"name": "sun.security.ssl.SSLPossession sun.security.ssl.SSLKeyExchange$T13KeyAgreement.createPossession(sun.security.ssl.HandshakeContext)"}, "line": {"number": 568}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6VgifDx_vRg8rUeffXssrQAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser._nextAfterName()", "offset": 8}, "line": {"number": 870}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aHZBsIynBt9qskDZYrJb2gAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "DateTimeFormatterBuilder.java"}, "function": {"name": "int org.joda.time.format.DateTimeFormatterBuilder$NumberFormatter.parseInto(org.joda.time.format.DateTimeParserBucket, java.lang.CharSequence, int)", "offset": 7}, "line": {"number": 1312}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PBL2-ArIjOWnatSlw0vhzgAAAAAAAAHp"}} -{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.dataformat.smile.SmileParser._findDecodedFromSymbols(int)", "offset": 63}, "line": {"number": 1889}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yLv9DMBixVWU9oUL6785cQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "NioSocketChannel.java"}, "function": {"name": "boolean io.netty.channel.socket.nio.NioSocketChannel.isInputShutdown0()"}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ELq11kdAb5wONWvy2t3XBwAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "int io.netty.handler.ssl.SslHandler.unwrap(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, int)", "offset": 9}, "line": {"number": 1343}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vf7QtfK9pdGvwA-FZkTf9QAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 702}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qzJix6zZwzxxnhOaa5oGeAAAAAAAAAB1"}} -{"Stackframe": {"file": {"name": "RSACore.java"}, "function": {"name": "byte[] sun.security.rsa.RSACore.crtCrypt(byte[], java.security.interfaces.RSAPrivateCrtKey, boolean)", "offset": 20}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OMiVtBlQQcibD2YBJFlM2AAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 5}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "no2Lej56mJkbwdNYz7YGSQAAAAAAAACt"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 14}, "line": {"number": 481}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAADgb9r"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_docker_metadata/add_docker_metadata.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_docker_metadata.(*addDockerMetadata).Run"}, "line": {"number": 159}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dpptNj2TDyK9YcbKw8llygAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ElasticsearchReaderManager.java"}, "function": {"name": "org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader org.elasticsearch.index.engine.ElasticsearchReaderManager.refreshIfNeeded(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KZ08Ruc2q8aQheuBirtfwwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "WeakMapCleaner.java"}, "function": {"name": "void co.elastic.apm.agent.collections.WeakMapCleaner.run()"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxD6X"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/host_linux.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.(*reader).hostname"}, "line": {"number": 196}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sF5aq_b9xCHS2AOkcqKO-wAAAAAAAAEo"}} -{"Stackframe": {"file": {"name": "ComparableTimSort.java"}, "function": {"name": "void java.util.ComparableTimSort.mergeAt(int)", "offset": 38}, "line": {"number": 477}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PuqALVWVZC5u2cGptLJJTQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "StreamEncoder.java"}, "function": {"name": "void sun.nio.cs.StreamEncoder.implWrite(char[], int, int)", "offset": 1}, "line": {"number": 281}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXxyn"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/mapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.MapStr.Put"}, "line": {"number": 199}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-9YX"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/process/process.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/process.(*Stats).matchProcess"}, "line": {"number": 417}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACw2EE"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/prometheus/procfs@v0.6.0/stat.go"}, "function": {"name": "github.com/prometheus/procfs.FS.Stat"}, "line": {"number": 228}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxJyj"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/util.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.decodeBitMap"}, "line": {"number": 81}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oGwyto3BslHwE9mIoXY8WgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "org.elasticsearch.common.transport.TransportAddress[] org.elasticsearch.transport.TransportService.addressesFromString(java.lang.String)"}, "line": {"number": 967}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeSystemUser(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 600}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1TcD-cYA4xs7rqA_y0alsAAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseValue(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, org.elasticsearch.xcontent.XContentParser$Token, java.lang.String[])", "offset": 12}, "line": {"number": 741}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e46nPniz-F_kkbOyI4JKVwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QvGt_WCeC3mBFOZFXsaM4QAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard$7.write(java.util.List)"}, "line": {"number": 3299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpEy"}} -{"Stackframe": {"function": {"name": "user_path_at_empty"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "87egngtXFm0bIUCnQcIALwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "S3RetryingInputStream.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3RetryingInputStream.(org.elasticsearch.repositories.s3.S3BlobStore, java.lang.String)"}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Q3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask.run()"}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAC1ZsR"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/queue/diskqueue/consumer.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/queue/diskqueue.(*diskQueueBatch).ACK"}, "line": {"number": 114}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YpLEeaG_ElwoL2j6X7TziwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$$Lambda$3355+0x00000008014128b8.close()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4kgJPxDp_y70g-_9SJBKrwAAAAAAAABw"}} -{"Stackframe": {"file": {"name": "AsyncIOProcessor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AsyncIOProcessor.put(java.lang.Object, java.util.function.Consumer)", "offset": 28}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "A-41ReHkKXTbwuqT5HLDpQAAAAAAAAC8"}} -{"Stackframe": {"file": {"name": "OutboundMessage.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.transport.OutboundMessage.serialize(org.elasticsearch.common.io.stream.BytesStreamOutput)", "offset": 33}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EguNCcnmVGnXNe9OvbpF2wAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.writeReaderPool(boolean)", "offset": 6}, "line": {"number": 3916}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hgqLopYu33JZgcC5M5tNUQAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "CgroupSubsystemController.java"}, "function": {"name": "long jdk.internal.platform.CgroupSubsystemController.getLongEntry(jdk.internal.platform.CgroupSubsystemController, java.lang.String, java.lang.String, long)", "offset": 2}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ThreadExecutorMap.java"}, "function": {"name": "void io.netty.util.internal.ThreadExecutorMap$2.run()", "offset": 2}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMmAv"}} -{"Stackframe": {"function": {"name": "fsnotify"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4ATwOy2xX5oIgSybARkoywAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SettingsFilter.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.SettingsFilter.filter(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hFR94sc2fPjalZlQgZv1dAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "FileDispatcherImpl.java"}, "function": {"name": "int sun.nio.ch.FileDispatcherImpl.pread(java.io.FileDescriptor, long, int, long)"}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I_i_3enTR60S4qDgQ3zxCQAAAAAAAAB7"}} -{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.dataformat.smile.SmileParser._findDecodedFromSymbols(int)", "offset": 18}, "line": {"number": 1714}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WAYvquCuheRW9mxTkj_2YwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.onResponse(java.lang.Object)"}, "line": {"number": 637}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o7sR_pIbiVV_Z8TfMWbBfAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "void org.elasticsearch.threadpool.ThreadPool$1.run()", "offset": 2}, "line": {"number": 444}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KJplboRkVOPfLRXCp4oPXgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.concurrent.ThreadContext$$Lambda$5380+0x0000000801a6ee10.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TnmpwdT1yeLDbWlRnUic2QAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(org.elasticsearch.rest.RestRequest, boolean, org.elasticsearch.action.ActionListener)"}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Cthb6QfWlAwgw9j3sWmtJAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$7543+0x0000000801ef8860.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d77brrT5P2m_vg39NwavWwAAAAAAAADc"}} -{"Stackframe": {"file": {"name": "URI.java"}, "function": {"name": "int java.net.URI$Parser.scanIPv4Address(int, int, boolean)", "offset": 18}, "line": {"number": 3394}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtKO"}} -{"Stackframe": {"function": {"name": "ep_send_events_proc"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E-_k0LukEF9-LD3AxVa3NgAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$MetadataIndexWriter.flush()", "offset": 1}, "line": {"number": 516}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dYhRx-e7CFQF89Cj2l7eOQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "int java.util.HashMap.hash(java.lang.Object)"}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8RS1Nly7R5USaUVxZKBsKQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Util.java"}, "function": {"name": "javax.management.ObjectName sun.management.Util.newObjectName(java.lang.String)"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAClWIo"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/fd_posix.go"}, "function": {"name": "net.(*netFD).readFrom"}, "line": {"number": 63}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAApZp"}} -{"Stackframe": {"function": {"name": "xfs_btree_read_buf_block.constprop.40"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dT5WZm8-ag4VFDZf0HaaMAAAAAAAAAGy"}} -{"Stackframe": {"file": {"name": "Lucene60FieldInfosFormat.java"}, "function": {"name": "org.apache.lucene.index.FieldInfos org.apache.lucene.codecs.lucene60.Lucene60FieldInfosFormat.read(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.store.IOContext)", "offset": 65}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d2lcY0prSIbhkAi5ECyvfAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "com.typesafe.config.impl.AbstractConfigValue com.typesafe.config.impl.SimpleConfig.find(java.lang.String, com.typesafe.config.ConfigValueType)"}, "line": {"number": 192}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9MJISbwzA5r2YICNkdXifQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.elasticsearch.core.IOUtils.close(java.io.Closeable)", "offset": 1}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MlmvM-BCpIGbNIvco0TmNgAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "Spliterators.java"}, "function": {"name": "void java.util.Spliterators$ArraySpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 4}, "line": {"number": 992}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMbVs"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/shirou/gopsutil@v3.20.12+incompatible/net/net_linux.go"}, "function": {"name": "github.com/shirou/gopsutil/net.PidsWithContext"}, "line": {"number": 591}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChGmx"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.checkRunqsNoP"}, "line": {"number": 5656}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C"}} -{"Stackframe": {"file": {"name": "runtime/sys_linux_amd64.s"}, "function": {"name": "runtime.futex"}, "line": {"number": 560}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACNFB0"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/pkg/errors@v0.9.1/errors.go"}, "function": {"name": "github.com/pkg/errors.Errorf"}, "line": {"number": 115}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ya2lgd-VMP3xAKP85pX-hQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ReleasableBytesStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.ReleasableBytesStreamOutput.close()"}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HQaseND-R9Eij_93pefSLwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor$Worker.run()"}, "line": {"number": 630}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dAeX1d421DMJ2cC6FX3tvwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ElasticApmTracer.java"}, "function": {"name": "co.elastic.apm.agent.impl.transaction.Transaction co.elastic.apm.agent.impl.ElasticApmTracer.startChildTransaction(java.lang.Object, co.elastic.apm.agent.impl.transaction.TextHeaderGetter, co.elastic.apm.agent.impl.sampling.Sampler, long, java.lang.ClassLoader)", "offset": 2}, "line": {"number": 209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnooI"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/encode.go"}, "function": {"name": "encoding/json.mapEncoder.encode"}, "line": {"number": 816}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "v0o-SuFa6Ydo5LzhQb4MjgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ReduceOps.java"}, "function": {"name": "java.lang.Object java.util.stream.ReduceOps$ReduceOp.evaluateSequential(java.util.stream.PipelineHelper, java.util.Spliterator)"}, "line": {"number": 921}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.resolveAuthorizationInfo(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CAbngOq5hTruw3uA1VDt3QAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "DisabledAlgorithmConstraints.java"}, "function": {"name": "boolean sun.security.util.DisabledAlgorithmConstraints.permits(java.util.Set, java.lang.String, java.security.AlgorithmParameters)", "offset": 5}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TU7DQ3uAw_xM7DAGYMk_cQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "void org.elasticsearch.index.store.ByteSizeCachingDirectory.deleteFile(java.lang.String)"}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXzgE"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/mapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.mapFind"}, "line": {"number": 463}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yr4X--AwYxsbC6m4-WPbMwAAAAAAAAC-"}} -{"Stackframe": {"file": {"name": "W3CTraceContextPropagator.java"}, "function": {"name": "void io.opentelemetry.api.trace.propagation.W3CTraceContextPropagator.inject(io.opentelemetry.context.Context, java.lang.Object, io.opentelemetry.context.propagation.TextMapSetter)", "offset": 26}, "line": {"number": 123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Sxgb26oKQwlt07if9woPTQAAAAAAAAV0"}} -{"Stackframe": {"function": {"name": "br_validate_ipv4.isra.25"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zNcsGRHhxrtoMbOTGij46QAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.implFlush()"}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 20}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UT4r1woqEdacoKDuZFw-vgAAAAAAAADt"}} -{"Stackframe": {"file": {"name": "Netty4WriteThrottlingHandler.java"}, "function": {"name": "boolean org.elasticsearch.transport.netty4.Netty4WriteThrottlingHandler.doFlush(io.netty.channel.ChannelHandlerContext)", "offset": 33}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAATsSN"}} -{"Stackframe": {"function": {"name": "blk_mq_queue_tag_busy_iter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACf"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.merge(org.apache.lucene.index.MergeState)", "offset": 18}, "line": {"number": 147}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b0EZjrjz491rqJx3vSRDfAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "WeakHashMap.java"}, "function": {"name": "java.lang.Object java.util.WeakHashMap.get(java.lang.Object)", "offset": 2}, "line": {"number": 403}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiINv"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/syscall_unix.go"}, "function": {"name": "syscall.GetsockoptInt"}, "line": {"number": 281}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "waCNJIVGzz-ZLUhBxHpZjwAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.writeAtomic(java.lang.String, org.elasticsearch.common.bytes.BytesReference, boolean)", "offset": 1}, "line": {"number": 1632}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACENOE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/malloc.go"}, "function": {"name": "runtime.newarray"}, "line": {"number": 1217}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GGktJAfchjJGzHnNP7Em3QAAAAAAAACP"}} -{"Stackframe": {"file": {"name": "BuiltinClassLoader.java"}, "function": {"name": "java.net.URL jdk.internal.loader.BuiltinClassLoader.findResource(java.lang.String)", "offset": 38}, "line": {"number": 323}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WBDDHhcycxn7-c7ItUsJQwAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "FieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.FieldMapper.parse(org.elasticsearch.index.mapper.DocumentParserContext)", "offset": 3}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oQ244tw9hOZz82ezjc7AlQAAAAAAAAA_"}} -{"Stackframe": {"file": {"name": "InboundDecoder.java"}, "function": {"name": "int org.elasticsearch.transport.InboundDecoder.internalDecode(org.elasticsearch.common.bytes.ReleasableBytesReference, java.util.function.Consumer)", "offset": 14}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IlNeaDrhzreLpiJxVHRUUgAAAAAAAAEL"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NbNyidoHgMTa3gT2GreFIQAAAAAAAABQ"}} -{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.failMissingShards(org.elasticsearch.cluster.ClusterState)", "offset": 8}, "line": {"number": 393}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FjPeFwiJfDdu2t7SH4hgAgAAAAAAAADt"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 237}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXV8t"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/events.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.startPerfEventMonitor.func1"}, "line": {"number": 260}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE9yH"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.wakep"}, "line": {"number": 2068}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e9VBoOb6ap6y2iBqQXec9wAAAAAAAAFB"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.doAddSortedField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 38}, "line": {"number": 675}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uw-oCIEIHpuum1GbbDFxlAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "RestActions.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestActions$NodesResponseRestListener.buildResponse(org.elasticsearch.action.support.nodes.BaseNodesResponse, org.elasticsearch.common.xcontent.XContentBuilder)"}, "line": {"number": 226}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlqv"}} -{"Stackframe": {"function": {"name": "show_mountinfo"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEhmI"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcscavenge.go"}, "function": {"name": "runtime.wakeScavenger"}, "line": {"number": 215}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "83-j4R13bIPFHIwJnf4UlAAAAAAAAABU"}} -{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "org.elasticsearch.threadpool.Scheduler$ScheduledCancellable org.elasticsearch.threadpool.ThreadPool.schedule(java.lang.Runnable, org.elasticsearch.core.TimeValue, java.lang.String)", "offset": 32}, "line": {"number": 461}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sntjqhnPOkV1AM5VqFuL9wAAAAAAAAA8"}} -{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendResponse(org.elasticsearch.Version, java.util.Set, org.elasticsearch.transport.TcpChannel, long, java.lang.String, org.elasticsearch.transport.TransportResponse, org.elasticsearch.transport.Compression$Scheme, boolean)", "offset": 17}, "line": {"number": 145}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EI2ZG0yDy6LJc1opjkWatgAAAAAAAAFJ"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 64}, "line": {"number": 500}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zx9IOzRpYLcrlbiJ1gStmwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine$RefreshWarmerListener.accept(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader, org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)", "offset": 2}, "line": {"number": 2618}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "t6g6QDdMfc6cSt76gx6xoAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ByteBufferIndexInput.java"}, "function": {"name": "byte org.apache.lucene.store.ByteBufferIndexInput$SingleBufferImpl.readByte(long)"}, "line": {"number": 434}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGs"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.mergeMiddle(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergePolicy)", "offset": 81}, "line": {"number": 5141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAbhbI"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/libpf/grpcext/grpcext.go"}, "function": {"name": "github.com/optimyze/prodfiler/libpf/grpcext.HostAgentMetadataFor"}, "line": {"number": 45}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eCd7pmEC4QoP7FQm1ikosgAAAAAAAAEK"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.handleIncomingPublishRequest(org.elasticsearch.transport.BytesTransportRequest)", "offset": 35}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "viJ7iVZvhZ4tuG4V9EDqdAAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "Logger.java"}, "function": {"name": "ch.qos.logback.core.spi.FilterReply ch.qos.logback.classic.Logger.callTurboFilters(org.slf4j.Marker, ch.qos.logback.classic.Level)"}, "line": {"number": 751}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iSUtuDFidZ_ArB9M-KYzuwAAAAAAAAGJ"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.finish()", "offset": 36}, "line": {"number": 1002}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WyKzZPf9H41VOsE_tFJwlwAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$ContextRestoreResponseHandler.handleResponse(org.elasticsearch.transport.TransportResponse)", "offset": 4}, "line": {"number": 1163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ggzrrjwKdLd4s3CsiRD2XgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ThreadImpl.java"}, "function": {"name": "int sun.management.ThreadImpl.getPeakThreadCount()"}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-k1yErCu-jNwISnaM-KD7QAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "java.lang.String org.elasticsearch.xcontent.provider.json.JsonXContentParser.nextFieldName()"}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xaWYGasOYi9-2Kb1gNg5mAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "boolean org.elasticsearch.common.settings.Setting.exists(java.util.Set)"}, "line": {"number": 445}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "D7HSXO_iqjqFKL1x1h0kQQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.decRefDeleter(org.apache.lucene.index.SegmentInfos)", "offset": 1}, "line": {"number": 5405}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XadgtJFQ10pxn_-sij7tlQAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "void java.util.stream.AbstractPipeline.copyInto(java.util.stream.Sink, java.util.Spliterator)", "offset": 8}, "line": {"number": 488}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "D6xd2krsR9CUWCnVmZm5zAAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "Sorter.java"}, "function": {"name": "void org.apache.lucene.util.Sorter.insertionSort(int, int)", "offset": 3}, "line": {"number": 222}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz4-"}} -{"Stackframe": {"function": {"name": "__audit_syscall_exit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "FutureTask.java"}, "function": {"name": "void java.util.concurrent.FutureTask.run()", "offset": 9}, "line": {"number": 264}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ScfiJzEgZCbPFwhs1NPukAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "com.typesafe.config.Config com.typesafe.config.impl.SimpleConfig.withFallback(com.typesafe.config.ConfigMergeable)"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2RfKfVPwyqKh_r9U1oFgUwAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.xcontent.XContent, byte[], int, int, boolean, java.util.Set, java.util.Set)", "offset": 8}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7kmZ2O6hOV9dpjs-47j1SQAAAAAAAAEc"}} -{"Stackframe": {"file": {"name": "SSLTransport.java"}, "function": {"name": "sun.security.ssl.Plaintext sun.security.ssl.SSLTransport.decode(sun.security.ssl.TransportContext, java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 64}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4EfOVjZ8UDEWtY1KnqslYAAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "ForDeltaUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.ForDeltaUtil.decodeAndPrefixSum(org.apache.lucene.store.DataInput, long, long[])", "offset": 4}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SiNQN5yWanN9PLQ_u0EHrAAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$TreeNode java.util.HashMap$TreeNode.getTreeNode(int, java.lang.Object)"}, "line": {"number": 2048}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sNKwvZMA1nF7n4WcHIeA2gAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelHandlerContext io.netty.channel.AbstractChannelHandlerContext.read()", "offset": 3}, "line": {"number": 814}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PxG4kqBtC76qisSIA3IEOgAAAAAAAABj"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser._finishAndReturnString()", "offset": 16}, "line": {"number": 2430}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n2ZG7JVunRud1kIvefQWCAAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "ScriptCache.java"}, "function": {"name": "java.lang.Object org.elasticsearch.script.ScriptCache.compile(org.elasticsearch.script.ScriptContext, org.elasticsearch.script.ScriptEngine, java.lang.String, java.lang.String, org.elasticsearch.script.ScriptType, java.util.Map)", "offset": 2}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "anPZp8MtU1QLiT0Ue8dN9QAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "boolean java.lang.String.equals(java.lang.Object)"}, "line": {"number": 1021}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OZxONNyjsCoLhus8PcYThQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "int org.apache.lucene.codecs.DocValuesConsumer$1$1.nextDoc()"}, "line": {"number": 220}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rs-7smSxpcCpQ4EcnQyDfwAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.checkForApiKey()"}, "line": {"number": 377}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMugw"}} -{"Stackframe": {"function": {"name": "ep_poll"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9vWPKl5u9pjT9R26d7goWAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "void org.elasticsearch.index.engine.Engine$1.doClose()"}, "line": {"number": 641}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DnuglYjSP_yHnOeoUpC43wAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "AbstractEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.AbstractEventExecutor.runTask(java.lang.Runnable)"}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jRm5GYz0vdCovh1sp2XZ0AAAAAAAAACJ"}} -{"Stackframe": {"file": {"name": "ReplicationTracker.java"}, "function": {"name": "void org.elasticsearch.index.seqno.ReplicationTracker.updateFromMaster(long, java.util.Set, org.elasticsearch.cluster.routing.IndexShardRoutingTable)", "offset": 9}, "line": {"number": 1068}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dB8rpvXeU-U7j8zoRqc_lgAAAAAAAABJ"}} -{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 8}, "line": {"number": 145}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-TDV"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.addFieldsToEventData"}, "line": {"number": 446}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k3HyWSdTGgne1xIId1mIvAAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter$EventQueue.processEventsInternal()", "offset": 3}, "line": {"number": 354}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkIDE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).token"}, "line": {"number": 447}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Zk43mZ48MNKz-8sDUsL_rAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 19}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADQjw2"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "type..eq.github.com/elastic/go-lumber/client/v2.AsyncClient"}, "line": {"number": 1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-wN9"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.SupportedSubsystems.func1"}, "line": {"number": 134}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nnCec0a2-ZcuYpnWUHHz2AAAAAAAAABn"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 8}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACzCeJ"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/mapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.MapStr.GetValue"}, "line": {"number": 177}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlJwL"}} -{"Stackframe": {"function": {"name": "ip_forward"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cwKD6wgqD03tpuomHWA1VAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler$1.doRun()"}, "line": {"number": 291}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0z4LC06zUd4h7lC-Is9mxQAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap$HashIterator.(java.util.HashMap)", "offset": 6}, "line": {"number": 1572}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sDpfjMchcu11LmkvPxu-sgAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "Checkpoint.java"}, "function": {"name": "void org.elasticsearch.index.translog.Checkpoint.write(java.nio.channels.FileChannel, java.nio.file.Path, org.elasticsearch.index.translog.Checkpoint)", "offset": 4}, "line": {"number": 205}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NV1VjMHMtULGtSELk5F0rAAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "ImmutableCollections.java"}, "function": {"name": "int java.util.ImmutableCollections$MapN.probe(java.lang.Object)", "offset": 11}, "line": {"number": 1332}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jBeiHwwOyRIapBbs5J2OjgAAAAAAAABX"}} -{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.onResponse(java.lang.Object)", "offset": 7}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiFu1"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/netlink_linux.go"}, "function": {"name": "syscall.NetlinkRIB"}, "line": {"number": 72}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zVOM9aQ5aVWICjbBv8WgRAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.ClusterModule$$Lambda$2092.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACNjqH"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/io/ioutil/ioutil.go"}, "function": {"name": "github.com/prometheus/procfs/internal/util.ReadFileNoStat"}, "line": {"number": 45}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nMeuu1XJcvZvKLj3D6xu_gAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.access$000(org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator)"}, "line": {"number": 261}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler$1.doRun()"}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IqN2WUYs3wmQHew8PMeaAQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeRead()"}, "line": {"number": 827}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwzd"}} -{"Stackframe": {"function": {"name": "__schedule"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.action.ActionListener)", "offset": 8}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mNcvK3j5TmgK1SiwkNfREwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 21}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.access$100(org.elasticsearch.cluster.service.ClusterApplierService, org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask)"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EV2z03IGmRdabl9lhu9L2gAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.publishFlushedSegments(boolean)"}, "line": {"number": 5362}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ndEQ33n0g-5wOVAR1VMEjgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "CompositeBytesReference.java"}, "function": {"name": "int org.elasticsearch.common.bytes.CompositeBytesReference.length()"}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgka2"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.markroot.func1"}, "line": {"number": 223}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "le8VfryMtJlEyXJeMd-6oAAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "NodeInfo.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.node.info.NodeInfo.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 15}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uVPwAmWdpd4P9G8VqauGiAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "void org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction$1.doRun()"}, "line": {"number": 369}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I6mzpa6QLzu6Ui05urz3bQAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.lambda$innerAcquireReplicaOperationPermit$32(long, long, long, org.elasticsearch.action.ActionListener, org.elasticsearch.core.Releasable)", "offset": 20}, "line": {"number": 3541}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VJPzmLqKchEMtC2t_bsRSwAAAAAAAABH"}} -{"Stackframe": {"file": {"name": "ByteBuffersDataOutput.java"}, "function": {"name": "void org.apache.lucene.store.ByteBuffersDataOutput.writeBytes(byte[], int, int)", "offset": 10}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "RoleReferenceIntersection.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authz.store.RoleReferenceIntersection.lambda$buildRole$0(org.elasticsearch.action.ActionListener, java.util.Collection)", "offset": 6}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K1f6nnp5He4VLr7usCCM7gAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "void org.elasticsearch.index.store.ByteSizeCachingDirectory$2.close()"}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h4Lh6GnasWPDlVelT8lJQgAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "IngestService.java"}, "function": {"name": "void org.elasticsearch.ingest.IngestService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 9}, "line": {"number": 1007}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HJqIGeZuYXQ1QAO7hC-CpgAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "org.elasticsearch.index.translog.TranslogStats org.elasticsearch.index.translog.Translog.stats()", "offset": 3}, "line": {"number": 838}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADHm4c"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/pipeline/output.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/pipeline.(*netClientWorker).publishBatch"}, "line": {"number": 184}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "edTeS1Ofrj8KEn1olv0sJAAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.implWrite(byte[], int, int)", "offset": 3}, "line": {"number": 413}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Xsky9cTDpKcm_kOUJgRO_wAAAAAAAAE7"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.handleIncomingPublishRequest(org.elasticsearch.transport.BytesTransportRequest)", "offset": 38}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LZh34Qe9WZt7ydt6m_9sHgAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.softUpdateDocument(org.apache.lucene.index.Term, java.lang.Iterable, org.apache.lucene.document.Field[])", "offset": 6}, "line": {"number": 1799}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7KiGB3QuQ0TSydl142kv4gAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "UnicodeUtil.java"}, "function": {"name": "int org.apache.lucene.util.UnicodeUtil.UTF16toUTF8(java.lang.CharSequence, int, int, byte[])"}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cGBPCS3aPXXlmHmrx5RsEQAAAAAAAAFN"}} -{"Stackframe": {"file": {"name": "JvmStats.java"}, "function": {"name": "org.elasticsearch.monitor.jvm.JvmStats org.elasticsearch.monitor.jvm.JvmStats.jvmStats()", "offset": 28}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w8GVRjAwPMFQC_D_wSJ9HQAAAAAAAACa"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "void java.io.FilePermission.init(int)", "offset": 32}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eywVrPneVfi3Wiw2E45CkwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "boolean org.elasticsearch.common.io.stream.StreamInput.readBoolean()"}, "line": {"number": 577}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "int org.apache.lucene.index.ReadersAndUpdates.numDeletesToMerge(org.apache.lucene.index.MergePolicy)"}, "line": {"number": 238}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Kn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "void org.apache.lucene.search.ReferenceManager.doMaybeRefresh()", "offset": 6}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N5ZK1nWkJq6rfaIi2EC6agAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "void org.elasticsearch.index.engine.Engine.fillSegmentStats(org.apache.lucene.index.SegmentReader, boolean, org.elasticsearch.index.engine.SegmentsStats)"}, "line": {"number": 816}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-byYMBbn5TlOaT7FgjNIZAAAAAAAAACc"}} -{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "boolean org.apache.lucene.util.bkd.BKDWriter$MergeReader.next()", "offset": 30}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QvX4nXI6Gswid-z6_oLOoQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "AbstractRestChannel.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.rest.AbstractRestChannel.newBuilder()"}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAi3Gs"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/reporter/reporter.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/reporter.ctxWithMetadata"}, "line": {"number": 595}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "P85-ZHhT2OrY2C13tzUCcgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "java.lang.String java.lang.String.intern()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yav7N1kdPMXfEfZ1xXIznAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "boolean java.util.concurrent.LinkedTransferQueue$Node.tryMatch(java.lang.Object, java.lang.Object)", "offset": 1}, "line": {"number": 521}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tM8VFC-6NwJWsTojOgeMHQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator$$Lambda$4704.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TRhpk6PKb-XKPVFywUkq0AAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndexRoutingTable.java"}, "function": {"name": "org.elasticsearch.cluster.routing.IndexShardRoutingTable org.elasticsearch.cluster.routing.IndexRoutingTable.shard(int)"}, "line": {"number": 218}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eNbj51SwVufxZ4R3ztSduAAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline$3$1.accept(java.lang.Object)"}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xOQQVBa0fz_OyHq--SoFNAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "Lucene80NormsProducer.java"}, "function": {"name": "long org.apache.lucene.codecs.lucene80.Lucene80NormsProducer$3.longValue()"}, "line": {"number": 349}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z8yDYNMJULt1ApZ8kqZamAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannel.writeAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 311}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jg3LdO4DNz9FsefjUG1F1gAAAAAAAAEg"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 35}, "line": {"number": 664}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-Y56DW_ZsCkojgmcTnRH0AAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ObjectName.java"}, "function": {"name": "javax.management.ObjectName javax.management.ObjectName.getInstance(java.lang.String)"}, "line": {"number": 1297}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACuQWF"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/http/transport.go"}, "function": {"name": "net/http.(*persistConn).readLoop.func4"}, "line": {"number": 2182}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sZpPWBZ2sVOy9PmQsNzK_AAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeString(java.lang.String)"}, "line": {"number": 402}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGB"}} -{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "boolean org.elasticsearch.search.query.QueryPhase.executeInternal(org.elasticsearch.search.internal.SearchContext)", "offset": 80}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAABmfO"}} -{"Stackframe": {"function": {"name": "xfs_file_fsync"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABWCa2"}} -{"Stackframe": {"file": {"name": "github.com/cilium/ebpf/perf"}, "function": {"name": "github.com/cilium/ebpf/perf.(*ringReader).Read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yzF6hkXAWj2zsycLYYGV0AAAAAAAAABm"}} -{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode$GCMEncrypt.doFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 11}, "line": {"number": 1311}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VPtMofZCgqrw-l9pGX7aHgAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "Regex.java"}, "function": {"name": "boolean org.elasticsearch.common.regex.Regex.simpleMatch(java.lang.String, java.lang.String)"}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Mjtyswsr5RSXvAnPmILipAAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "DataOutput.java"}, "function": {"name": "void org.apache.lucene.store.DataOutput.writeInt(int)", "offset": 2}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IJwWkOp6ZFrpAuS1jmILqQAAAAAAAABB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 65}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjnSC"}} -{"Stackframe": {"function": {"name": "rtnl_fill_ifinfo"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pI3Jd4BkOvMo6mjauYfS1gAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.moveToNextPhase(org.elasticsearch.action.search.SearchPhaseController, org.elasticsearch.common.util.concurrent.AtomicArray, org.elasticsearch.action.search.SearchPhaseController$ReducedQueryPhase, org.elasticsearch.common.util.concurrent.AtomicArray)", "offset": 2}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACla1e"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/error.go"}, "function": {"name": "net.interfaceTable"}, "line": {"number": 73}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XadgtJFQ10pxn_-sij7tlQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "void java.util.stream.AbstractPipeline.copyInto(java.util.stream.Sink, java.util.Spliterator)", "offset": 3}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VL1CEjKQwCA4bmkBcj-7kAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter$1.afterSegmentsFlushed()"}, "line": {"number": 431}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMWu"}} -{"Stackframe": {"function": {"name": "ip_finish_output2"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACuBrn"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/io/io.go"}, "function": {"name": "net/http.readTransfer"}, "line": {"number": 458}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mu1DpnH8iZDzucrjLh5s6gAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ReleasableLock.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ReleasableLock.close()"}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "61vrmCVoJZp3HjBxIMFrNAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.nio.channels.FileChannel sun.nio.fs.UnixChannelFactory.newFileChannel(sun.nio.fs.UnixPath, java.util.Set, int)"}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "srK4jFHN_yr7CRCkobJCaAAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "IndexOrDocValuesQuery.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.IndexOrDocValuesQuery$1$1.get(long)", "offset": 2}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OGNisCVAiLjPbH6wXAJp8gAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "Socket.java"}, "function": {"name": "void java.net.Socket.setSoTimeout(int)", "offset": 5}, "line": {"number": 1159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S75DkUYHGa18F1kYhZ0XYwAAAAAAAACl"}} -{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 26}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sT2auOc8bc0KVm2FFBu5hgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "OutboundMessage.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundMessage.writeVariableHeader(org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vcYBAX0wrEtcMYtYg1kNKgAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "void org.elasticsearch.search.internal.ContextIndexSearcher.searchLeaf(org.apache.lucene.index.LeafReaderContext, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 16}, "line": {"number": 194}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jtfbz0me8CwX66rYfJIFGwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.support.StringMatcher$Builder$$Lambda$4104+0x0000000801e7b8e0.test(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TLqAsTBzc6qnYrDt7qkTzgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.IndexWriter$$Lambda$6289+0x00000008023a39c8.process(org.apache.lucene.index.IndexWriter)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-B12Kn1z2WbdinXULBUwvgAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "PrioritizedEsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.run()", "offset": 6}, "line": {"number": 215}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FOl8kYcR1mmcdP7Pq8NykQAAAAAAAABb"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.lambda$static$15(org.elasticsearch.common.io.stream.StreamOutput, java.lang.Object)", "offset": 10}, "line": {"number": 696}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8NDDGpC6h_glZsYGhl3bbQAAAAAAAADu"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorize(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 31}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACO_JQ"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/prometheus/procfs@v0.0.11/proc_stat.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.(*process).Info"}, "line": {"number": 111}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACETQ8"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map_faststr.go"}, "function": {"name": "runtime.mapassign_faststr"}, "line": {"number": 214}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6KSNndy85gBTgVQEjf0SaQAAAAAAAAPX"}} -{"Stackframe": {"file": {"name": "ClientHello.java"}, "function": {"name": "byte[] sun.security.ssl.ClientHello$ClientHelloKickstartProducer.produce(sun.security.ssl.ConnectionContext)", "offset": 249}, "line": {"number": 649}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lZ2_MNa9nszmyg6dsxjjfQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SocketOutputStream.java"}, "function": {"name": "void java.net.SocketOutputStream.write(byte[], int, int)"}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "q7a3uuDRiWAkc5xsKI_lLAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.apache.lucene.store.ByteBuffersDataOutput$$Lambda$5239+0x0000000801a35340.apply(int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1YJsqYQ67tYh5uGGg0UldAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "int org.apache.lucene.codecs.DocValuesConsumer$SortedDocValuesSub.nextDoc()"}, "line": {"number": 606}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0Og38EZo1V7Xaj5UHUpXuQAAAAAAAABF"}} -{"Stackframe": {"file": {"name": "OTelSpanBuilder.java"}, "function": {"name": "io.opentelemetry.api.trace.Span co.elastic.apm.agent.opentelemetry.sdk.OTelSpanBuilder.startSpan()", "offset": 8}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AhC6Xj-K1vOC4yqhcS2tRAAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "void io.netty.channel.AbstractChannel$AbstractUnsafe.flush()", "offset": 8}, "line": {"number": 895}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mVg5ImyOXWtTMPsPyAoJFAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler.lambda$new$0(org.elasticsearch.transport.BytesTransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TS5J7VqDVSdEc1qna5uquQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "RestCancellableNodeClient.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestCancellableNodeClient.(org.elasticsearch.client.node.NodeClient, org.elasticsearch.http.HttpChannel)"}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "krGbMu8JHiKkyENUYIKBywAAAAAAAABn"}} -{"Stackframe": {"file": {"name": "Channels.java"}, "function": {"name": "void java.nio.channels.Channels$1.write(byte[], int, int)", "offset": 13}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW09"}} -{"Stackframe": {"function": {"name": "ksys_write"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "414vwxwFz0HV2Ku4dzYYowAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "Lucene90CompoundFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90CompoundFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 8}, "line": {"number": 98}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gY8iAbEca1ZX2HerDEwM7QAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Lucene90NormsProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90NormsProducer.close()"}, "line": {"number": 475}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k99M4bkjfKmg3-yt9HFm8AAAAAAAAAD1"}} -{"Stackframe": {"file": {"name": "Lucene84PostingsReader.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene84.Lucene84PostingsReader$BlockDocsEnum.advance(int)", "offset": 42}, "line": {"number": 508}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR"}} -{"Stackframe": {"function": {"name": "audit_filter_syscall.constprop.19"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LDzxKitLXg1NPN9Jo9msaAAAAAAAAAB3"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.deleteFiles(java.util.Collection)", "offset": 15}, "line": {"number": 692}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Pwh6hSQTQ9v1UQs62plj-AAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$DelegatingActionListener.onResponse(java.lang.Object)"}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GGpT9fby2ritc6GcRAuqCQAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "BufferedWriter.java"}, "function": {"name": "void java.io.BufferedWriter.flushBuffer()", "offset": 4}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DeZeZUmb5Nqj1ViRUVUMrQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "NestedDocuments.java"}, "function": {"name": "void org.elasticsearch.search.NestedDocuments$HasNestedDocuments.(org.elasticsearch.search.NestedDocuments, org.apache.lucene.index.LeafReaderContext, org.elasticsearch.search.NestedDocuments$1)"}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABVxy0"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/processmanager/manager.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/processmanager.collectInterpreterMetrics.func1"}, "line": {"number": 189}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MIoZ_QqnU4D7k02YmLIdSwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "SecurityIndexManager.java"}, "function": {"name": "org.elasticsearch.Version org.elasticsearch.xpack.security.support.SecurityIndexManager.readMappingVersion(java.lang.String, org.elasticsearch.cluster.metadata.MappingMetadata, org.apache.logging.log4j.Logger)"}, "line": {"number": 319}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXuj"}} -{"Stackframe": {"function": {"name": "__fput"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "W9D_ahUN7evrE8NIbI96ywAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "DirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.DirectoryReader.openIfChanged(org.apache.lucene.index.DirectoryReader)"}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KR-WH4Dt9wqCAZg-sRSj6AAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "MessageAggregator.java"}, "function": {"name": "void io.netty.handler.codec.MessageAggregator.finishAggregation0(io.netty.buffer.ByteBufHolder)", "offset": 1}, "line": {"number": 390}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ucg8lCUKHDJi43v2r9fcDAAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.index.SegmentMerger.merge()", "offset": 5}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JYKWeVXd18GtPKr_b5YhEAAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "boolean java.util.stream.AbstractPipeline.copyIntoWithCancel(java.util.stream.Sink, java.util.Spliterator)", "offset": 6}, "line": {"number": 527}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KYUKYe5FJokP-mDuLYX4tQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.put(java.lang.Object, java.lang.Object)"}, "line": {"number": 618}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "er7IYYpYGm8FuaYV6j9_KgAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "DeflaterOutputStream.java"}, "function": {"name": "void java.util.zip.DeflaterOutputStream.deflate()"}, "line": {"number": 250}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-wCE"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.SupportedSubsystems"}, "line": {"number": 127}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oIYS8oKywxk33PzxrExveAAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$3(org.elasticsearch.action.support.ActionFilterChain, org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener, java.lang.Void)"}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Fx4xnJ8Bvv3cqGQOknqJJwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$4684.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7-"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/memory.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.memoryData"}, "line": {"number": 121}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChWoT"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/slice.go"}, "function": {"name": "runtime.growslice"}, "line": {"number": 166}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "abF625vSd3aYC1EQK4HCawAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "AbstractCollection.java"}, "function": {"name": "boolean java.util.AbstractCollection.isEmpty()"}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E9iltmxxnvYn82cyFFZ0KwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "void io.netty.util.concurrent.DefaultPromise.notifyListener0(io.netty.util.concurrent.Future, io.netty.util.concurrent.GenericFutureListener)"}, "line": {"number": 577}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lH7EdNhUWMEu-Xw0OnFCsgAAAAAAAADK"}} -{"Stackframe": {"file": {"name": "LRUQueryCache.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight.bulkScorer(org.apache.lucene.index.LeafReaderContext)", "offset": 38}, "line": {"number": 932}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SU7fNzMC3NazhQDT5xGXYgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.util.TreeMap$Entry java.util.TreeMap.getEntry(java.lang.Object)", "offset": 1}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I4ti_2zppL2XUF0qAEuVPgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Searcher org.elasticsearch.index.engine.Engine.acquireSearcher(java.lang.String, org.elasticsearch.index.engine.Engine$SearcherScope)"}, "line": {"number": 676}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "D0rVr9r2i8CRuvzOSp3RnAAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "EsExecutors.java"}, "function": {"name": "boolean org.elasticsearch.common.util.concurrent.EsExecutors$ExecutorScalingQueue.offer(java.lang.Object)", "offset": 12}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ndgn5AcwNt45ePjHQiCx9gAAAAAAAABH"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.List org.elasticsearch.common.io.stream.StreamInput.readImmutableList(org.elasticsearch.common.io.stream.Writeable$Reader)", "offset": 11}, "line": {"number": 1170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "21OviUyRbmnxs6uitnTC3wAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "void org.elasticsearch.index.store.Store$StoreDirectory.deleteFile(java.lang.String, java.lang.String)", "offset": 1}, "line": {"number": 714}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2lBy9bZIX0DDo0HgF4wFHAAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "Lucene84PostingsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.Lucene84PostingsReader$EverythingEnum.refillDocs()", "offset": 4}, "line": {"number": 717}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nLlEYtkzwUT2CAaOaAzLCwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "org.elasticsearch.indices.cluster.IndicesClusterStateService$Shard org.elasticsearch.indices.cluster.IndicesClusterStateService$AllocatedIndices.getShardOrNull(org.elasticsearch.index.shard.ShardId)"}, "line": {"number": 914}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXcYo"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/tracer.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.(*Tracer).StartMapMonitors.func1"}, "line": {"number": 1169}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OjvPQ5fmr7USI7dgYlFDbgAAAAAAAADT"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$authorizeIndexAction$3(org.elasticsearch.transport.TransportRequest, org.elasticsearch.xpack.core.security.authz.permission.Role, java.lang.String, org.elasticsearch.action.ActionListener, java.util.Map, org.elasticsearch.xpack.core.security.authz.ResolvedIndices)", "offset": 19}, "line": {"number": 377}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuPs"}} -{"Stackframe": {"function": {"name": "__x64_sys_epoll_ctl"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YZBmumN7B74DCts0HLEQGQAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run()", "offset": 2}, "line": {"number": 673}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "98LsLiouX0rmXrzuri1JNQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 325}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iTy0H527yiJJbCWjdQs3bgAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "ZipFile.java"}, "function": {"name": "java.util.zip.ZipEntry java.util.zip.ZipFile.getEntry(java.lang.String, java.util.function.Function)", "offset": 4}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rV1JNblxRI5fLicyinWLbQAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 277}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "W9vTZkLai1FHQImj51gVvAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "MethodHandlers.java"}, "function": {"name": "org.elasticsearch.rest.RestHandler org.elasticsearch.rest.MethodHandlers.getHandler(org.elasticsearch.rest.RestRequest$Method)"}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qGEeDhl6KqfI2gdmNoRAbAAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "int java.util.Arrays.compareUnsigned(byte[], int, int, byte[], int, int)", "offset": 5}, "line": {"number": 5923}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASg5x"}} -{"Stackframe": {"function": {"name": "aa_path_perm"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.(*GenericEventConverter).normalizeValue"}, "line": {"number": 217}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1JcixA9b936fLO2mJkSSxAAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.elasticsearch.core.IOUtils.close(java.lang.Exception, java.io.Closeable[])", "offset": 3}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V2djfK9racz03jSvbrsX2gAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ImmutableOpenMap.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.collect.ImmutableOpenMap.get(java.lang.Object)"}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sWCnrMF0Arlnv58qX-TThwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "FileDescriptor.java"}, "function": {"name": "void java.io.FileDescriptor$1.close(java.io.FileDescriptor)"}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0J5kDpLU5fTc_ktpkygGRwAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "JavaDateFormatter.java"}, "function": {"name": "java.time.temporal.TemporalAccessor org.elasticsearch.common.time.JavaDateFormatter.doParse(java.lang.String)", "offset": 3}, "line": {"number": 233}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bg7sAxk7-DRFbqsjDXXUPgAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "RunOnce.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.RunOnce.run()", "offset": 1}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABv"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "boolean org.elasticsearch.index.shard.IndexShard.scheduledRefresh()", "offset": 18}, "line": {"number": 3910}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bTdYcn7KOYzHw4Ya7GGyqAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "InputFactory.java"}, "function": {"name": "org.elasticsearch.xpack.core.watcher.input.ExecutableInput org.elasticsearch.xpack.watcher.input.InputFactory.parseExecutable(java.lang.String, org.elasticsearch.xcontent.XContentParser)"}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0zb6LbjdUqiSUXWCnQCmegAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$runRequestInterceptors$15(org.elasticsearch.action.ActionListener, java.lang.Void)"}, "line": {"number": 352}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LqD7ENQ-oxpbwiEg5RuQyAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "boolean java.util.concurrent.LinkedTransferQueue.offer(java.lang.Object)"}, "line": {"number": 1293}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFGYY"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.runqsteal"}, "line": {"number": 5351}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9i4yH5hvA0rp4RuaXVKyFQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.deleteFile(java.lang.String)"}, "line": {"number": 763}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yCobMKYVK6NH4e8Xyl9V-gAAAAAAAAC2"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.publishFlushedSegment(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.FieldInfos, org.apache.lucene.index.FrozenBufferedUpdates, org.apache.lucene.index.FrozenBufferedUpdates, org.apache.lucene.index.Sorter$DocMap)", "offset": 31}, "line": {"number": 2794}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALz_p"}} -{"Stackframe": {"function": {"name": "__d_lookup_rcu"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d7WHaUB-G_1vhvjxabxBMQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler$$Lambda$5344+0x0000000801a68800.operationComplete(io.netty.util.concurrent.Future)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y3NOAgXgXC4eoDwKLaDAiAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Reflection.java"}, "function": {"name": "java.lang.Class jdk.internal.reflect.Reflection.getCallerClass()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E8eWyrBZlA7opO3_P5T8sAAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "LoggerContext.java"}, "function": {"name": "ch.qos.logback.core.spi.FilterReply ch.qos.logback.classic.LoggerContext.getTurboFilterChainDecision_0_3OrMore(org.slf4j.Marker, ch.qos.logback.classic.Logger, ch.qos.logback.classic.Level, java.lang.String, java.lang.Object[], java.lang.Throwable)", "offset": 3}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MkPOQzkxpTZfvC1z0rAMgAAAAAAAAAGS"}} -{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.DocumentsWriter.doFlush(org.apache.lucene.index.DocumentsWriterPerThread)", "offset": 83}, "line": {"number": 539}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "q8oeUnom1kLdnKUL2vqzYwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "MultiValueMapAccessor.java"}, "function": {"name": "java.lang.Object co.elastic.apm.agent.impl.transaction.MultiValueMapAccessor.getFirstHeader(java.lang.String, java.lang.Object)"}, "line": {"number": 25}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADo1"}} -{"Stackframe": {"function": {"name": "syscall_trace_enter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_8CkmXN7rMP1z1mWZ4cysQAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "SSLEngineInputRecord.java"}, "function": {"name": "sun.security.ssl.Plaintext[] sun.security.ssl.SSLEngineInputRecord.decode(java.nio.ByteBuffer[], int, int)", "offset": 3}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tW1ONDyoCZkpOb4VQBh9egAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "SegmentCommitInfo.java"}, "function": {"name": "java.util.Collection org.apache.lucene.index.SegmentCommitInfo.files()"}, "line": {"number": 238}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TS2QkeOTCuWRkvxnP3njcgAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "WatchParser.java"}, "function": {"name": "org.elasticsearch.xpack.core.watcher.watch.Watch org.elasticsearch.xpack.watcher.watch.WatchParser.parseWithSecrets(java.lang.String, boolean, org.elasticsearch.common.bytes.BytesReference, java.time.ZonedDateTime, org.elasticsearch.xcontent.XContentType, long, long)"}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NyFYG970OiNszXfRwkg2OwAAAAAAAAHe"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.startCommit(org.apache.lucene.index.SegmentInfos)", "offset": 70}, "line": {"number": 4805}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Jw6J8qgr1pYHKUa0xZ1MdwAAAAAAAABZ"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.index(org.elasticsearch.index.engine.Engine, org.elasticsearch.index.engine.Engine$Index)", "offset": 10}, "line": {"number": 885}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAZDRd"}} -{"Stackframe": {"file": {"name": "google.golang.org/grpc@v1.46.0/internal/transport/http2_client.go"}, "function": {"name": "google.golang.org/grpc/internal/transport.(*http2Client).reader"}, "line": {"number": 1530}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dxRWp_ajvwfVnp7V1wqDwQAAAAAAAABf"}} -{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "void org.elasticsearch.search.query.QueryPhase.execute(org.elasticsearch.search.internal.SearchContext)", "offset": 18}, "line": {"number": 98}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HRnmOObX7UEhjneXDGbG8gAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "NamedWriteableAwareStreamInput.java"}, "function": {"name": "org.elasticsearch.common.io.stream.NamedWriteable org.elasticsearch.common.io.stream.NamedWriteableAwareStreamInput.readNamedWriteable(java.lang.Class, java.lang.String)", "offset": 1}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lDyk6Uq4gaykehAZS079QwAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeGenericValue(java.lang.Object)", "offset": 8}, "line": {"number": 820}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N0nOeOJdjggSFx_cpb47egAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "void org.apache.lucene.index.SegmentMerger.mergeTerms(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.codecs.NormsProducer)", "offset": 1}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Wyrs0b2Xeu1gDeFw9u_zswAAAAAAAAB0"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermissionCollection.implies(java.security.Permission)", "offset": 18}, "line": {"number": 1216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MloxjkGrc98a8yNAf_i6HAAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "boolean java.util.ArrayList.equalsRange(java.util.List, int, int)", "offset": 6}, "line": {"number": 542}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QtMelJKn2GMpVgIdbCShVAAAAAAAAADd"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermission.impliesIgnoreMask(java.io.FilePermission)", "offset": 40}, "line": {"number": 629}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ryiaiFPVyjm4XARK10gZ3QAAAAAAAAEL"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.rest.RestHandler, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 42}, "line": {"number": 274}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1AP5rFDRA4TZi1tau3luUgAAAAAAAACy"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 178}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pE_XF-eq0tBl0fP7Y7zrSwAAAAAAAAB7"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.xfer(java.lang.Object, boolean, int, long)", "offset": 11}, "line": {"number": 674}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3SXPYXOZwoUrGnDYqu8ttAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Reference.java"}, "function": {"name": "void java.lang.ref.Reference$ReferenceHandler.run()"}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACy_Vq"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.(*GenericEventConverter).normalizeValue"}, "line": {"number": 254}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HrXUpqEQk4VDnpaZKgdbiAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.fetch.ScrollQueryFetchSearchResult org.elasticsearch.search.SearchService.lambda$executeFetchPhase$6(org.elasticsearch.search.internal.LegacyReaderContext, org.elasticsearch.action.search.SearchShardTask, org.elasticsearch.search.internal.InternalScrollSearchRequest)", "offset": 2}, "line": {"number": 777}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-ubL"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/reader.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.(*Reader).GetV2StatsForProcess"}, "line": {"number": 209}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ytZblqIBEsQV2ku_vlKaDgAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext org.elasticsearch.common.util.concurrent.ThreadContext.stashContext()", "offset": 8}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi_lM"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/dir_unix.go"}, "function": {"name": "os.(*File).seek"}, "line": {"number": 39}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT"}} -{"Stackframe": {"function": {"name": "syscall_slow_exit_work"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1_TZoRpWT4eGJlelAJFangAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "ResourceWatcherService.java"}, "function": {"name": "void org.elasticsearch.watcher.ResourceWatcherService$ResourceMonitor.run()", "offset": 2}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.getRoles(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)"}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Xey4TSJt8z1Y1xeGVvkdYgAAAAAAAADB"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.rest.RestHandler)", "offset": 26}, "line": {"number": 236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WYLRZt9i7H-NuOl3RpqEjQAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "StringLatin1.java"}, "function": {"name": "int java.lang.StringLatin1.hashCode(byte[])", "offset": 1}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cQQ34bxUXEh5yMbxZRcv5AAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "void org.elasticsearch.tracing.apm.APMTracer.updateThreadContext(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.tracing.apm.APMTracer$APMServices, io.opentelemetry.context.Context)", "offset": 4}, "line": {"number": 207}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "woaSXtApD-PrSWDZ_aE3VwAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "Spliterators.java"}, "function": {"name": "void java.util.Spliterators$IteratorSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 6}, "line": {"number": 1801}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "90UIqO2n6jPWAsY9C7Jk5wAAAAAAAAD2"}} -{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode$GCMEngine.doLastBlock(com.sun.crypto.provider.GaloisCounterMode$GCMOperation, java.nio.ByteBuffer, java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 49}, "line": {"number": 902}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgqGq"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcscavenge.go"}, "function": {"name": "runtime.fillAligned"}, "line": {"number": 824}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KBNthOxdN-LeSLQeW0hbAwAAAAAAAAEI"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 51}, "line": {"number": 289}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rUtwn4XIa7ORmBTA-LlbnwAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "Index.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.index.Index.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 2}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rc_xGtzicdYsAs4DRTfidAAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object no.found.http.HighLevelHttpClient$$Lambda$916.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hlv_ksAXxTQ2GTBcbRb2JwAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "java.util.concurrent.ScheduledFuture java.util.concurrent.ScheduledThreadPoolExecutor.schedule(java.lang.Runnable, long, java.util.concurrent.TimeUnit)", "offset": 6}, "line": {"number": 562}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s__kQ2m1V3bn-9gwOriqPQAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "RateLimitedIndexOutput.java"}, "function": {"name": "void org.apache.lucene.store.RateLimitedIndexOutput.writeByte(byte)", "offset": 2}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PlE8FXr5PelWy7FpXlhElAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "sun.nio.fs.UnixPath sun.nio.fs.UnixPath.normalize()"}, "line": {"number": 511}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-pEO"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/memory.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.memoryData"}, "line": {"number": 123}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IAmibLp7KG0h7B5eTXlZoQAAAAAAAAA_"}} -{"Stackframe": {"file": {"name": "ByteBuffersDataOutput.java"}, "function": {"name": "void org.apache.lucene.store.ByteBuffersDataOutput.appendBlock()", "offset": 8}, "line": {"number": 455}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACuDGb"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/http/transfer.go"}, "function": {"name": "net/http.(*body).readLocked"}, "line": {"number": 842}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AIW-lPQXo1TdAE_hNw_PqQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.translog.TranslogStats org.elasticsearch.index.shard.IndexShard.translogStats()"}, "line": {"number": 1141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8s5hM6TvWnoP9XP3e8VVVwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene90.IndexedDISI.nextDoc()"}, "line": {"number": 529}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN6ND"}} -{"Stackframe": {"function": {"name": "kernfs_sop_show_path"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0EB0YrT2CeDq7NY6IvT5QgAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.write(int)", "offset": 1}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4FIDw-3ayXF9qDhcdai9CQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.IndexWriter$$Lambda$5954+0x0000000802292798.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "p2sMGETgbECWKni3JXQKzgAAAAAAAAC2"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.innerParseObject(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper)", "offset": 30}, "line": {"number": 331}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdLN"}} -{"Stackframe": {"function": {"name": "common_file_perm"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "p7qKIzzn4w0j5_vK-B0EmwAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.dataformat.smile.SmileParser.getText()", "offset": 6}, "line": {"number": 996}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w3qTM6Aby-qZXMm0XUnzgwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleResponse(java.net.InetSocketAddress, org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.transport.TransportResponseHandler)"}, "line": {"number": 311}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiJjo"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/syscall.go"}, "function": {"name": "syscall.symlinkat"}, "line": {"number": 48}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiGWE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/netlink_linux.go"}, "function": {"name": "syscall.ParseNetlinkRouteAttr"}, "line": {"number": 151}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "brZ3Te3vvAhp7zDc6cv-xAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ReentrantLock.java"}, "function": {"name": "void java.util.concurrent.locks.ReentrantLock.lockInterruptibly()"}, "line": {"number": 372}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l7MRN84z7GBONDE4j4f6FQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher.doCheckAndNotify()"}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-MfE"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/auparse.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.execveArgs"}, "line": {"number": 501}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Z-CiexQVqL-aPBYv4uHXWAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, sun.nio.ch.NativeDispatcher)"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H-wSa23kc3U3gWusbQ0H7AAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "ByteBuffersDataOutput.java"}, "function": {"name": "void org.apache.lucene.store.ByteBuffersDataOutput.copyTo(org.apache.lucene.store.DataOutput)", "offset": 2}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFbO"}} -{"Stackframe": {"function": {"name": "generic_exec_single"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j6lTWpvLdhLMziAIojgZ2QAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "boolean java.lang.String.matches(java.lang.String)"}, "line": {"number": 2024}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$1.onResponse(java.lang.Object)"}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "AbstractResourceWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.AbstractResourceWatcher.checkAndNotify()", "offset": 1}, "line": {"number": 33}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e2lx94qSnxpcppE-MHpptAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "PeerFinder.java"}, "function": {"name": "void org.elasticsearch.discovery.PeerFinder.lambda$new$0(org.elasticsearch.discovery.PeersRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C6hdCXqj0oyVHhHOvhKmxQAAAAAAAABJ"}} -{"Stackframe": {"file": {"name": "ApmServerConfigurationSource.java"}, "function": {"name": "java.lang.String co.elastic.apm.agent.configuration.ApmServerConfigurationSource.tryFetchConfig(org.stagemonitor.configuration.ConfigurationRegistry, java.net.HttpURLConnection)", "offset": 9}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w4HCkSSBzJOd2ZGjGE9mQQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "Formatter.java"}, "function": {"name": "void java.util.Formatter.(java.util.Locale, java.lang.Appendable)", "offset": 3}, "line": {"number": 1956}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V6_MdAvjC_nYviBM-9k2MwAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "RestSearchAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction.lambda$prepareRequest$2(org.elasticsearch.client.node.NodeClient, org.elasticsearch.rest.RestRequest, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.rest.RestChannel)", "offset": 1}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dJZnxxfSj1TBzD3FyyfeDQAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.write(org.apache.lucene.util.BytesRef, org.apache.lucene.index.TermsEnum, org.apache.lucene.codecs.NormsProducer)"}, "line": {"number": 907}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-1vAQjjmcxtS89oSQoP2nAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap$ValueIterator.next()"}, "line": {"number": 1539}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lhvHkorjDXPGNzTfFtintgAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler.lambda$messageReceived$0(java.lang.Thread, org.elasticsearch.common.util.concurrent.AbstractRunnable, java.lang.Void)", "offset": 13}, "line": {"number": 306}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgmNT"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.gcDrain"}, "line": {"number": 1042}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIqjd"}} -{"Stackframe": {"function": {"name": "release_pages"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E-UV4Q5gHz5xBV_lbP0MMgAAAAAAAADZ"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node[] java.util.HashMap.resize()", "offset": 36}, "line": {"number": 714}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "void java.lang.Throwable.(java.lang.String)", "offset": 72}, "line": {"number": 270}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "le8VfryMtJlEyXJeMd-6oAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "NodeInfo.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.node.info.NodeInfo.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 6}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5EQ6InbW5lh3HIuXdyrqwQAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.incRef(org.apache.lucene.index.SegmentInfos, boolean)", "offset": 3}, "line": {"number": 616}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FhB955OLKEut8ODAZcajDgAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.callDecode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 19}, "line": {"number": 440}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XgJxJ-tB1qb-u2fqUxCQQAAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateAppliers(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder, java.util.Collection)", "offset": 4}, "line": {"number": 538}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qA6aTmYIY5XQ-D5SlmSYOwAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "Netty4MessageChannelHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler.lambda$doFlush$0(io.netty.channel.ChannelHandlerContext, org.elasticsearch.transport.netty4.Netty4MessageChannelHandler$WriteOperation, io.netty.util.concurrent.Future)", "offset": 2}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL8cd"}} -{"Stackframe": {"function": {"name": "__legitimize_mnt"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "26QmnZ2WZWEP0oQ5prgnugAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "IdentityHashMap.java"}, "function": {"name": "java.lang.Object java.util.IdentityHashMap.put(java.lang.Object, java.lang.Object)", "offset": 5}, "line": {"number": 426}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf"}} -{"Stackframe": {"function": {"name": "futex_wait"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LiaLGbucpqFQXncldF_Y7gAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.putTransientIfNonExisting(java.lang.String, java.lang.Object)", "offset": 2}, "line": {"number": 837}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-OuZ_zFnMJsV4zFgjL7inAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "boolean org.elasticsearch.common.settings.Setting.exists(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 437}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bOb86QTSjl0Tbgl6WGMPVwAAAAAAAADN"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken()", "offset": 51}, "line": {"number": 758}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-7bc"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/process/process.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/process.newProcess"}, "line": {"number": 269}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "INOcODSqL3JdpbkJIMXMVwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile$$Lambda$5423+0x00000008019e77c0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CdiM_N4hdaPvSJwq3P6azwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.internal.support.AbstractClient.execute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 380}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAD8TAr"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_docker_metadata/add_docker_metadata.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_docker_metadata.(*addDockerMetadata).Run"}, "line": {"number": 184}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACwtaJ"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/prometheus/procfs@v0.6.0/proc.go"}, "function": {"name": "github.com/prometheus/procfs.Proc.MountStats"}, "line": {"number": 251}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KvOfKs64pdR6LUo_fLNwpAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "GCTR.java"}, "function": {"name": "int com.sun.crypto.provider.GCTR.update(byte[], int, int, byte[], int)"}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_bWrQJSE9QDRqMSbes6HHAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermission.impliesIgnoreMask(java.io.FilePermission)"}, "line": {"number": 588}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gBrjfo5HG90MpKR0CnEkegAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "long org.elasticsearch.index.engine.SoftDeletesPolicy$$Lambda$7011+0x0000000801d4dda8.applyAsLong(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALoOG"}} -{"Stackframe": {"function": {"name": "filename_parentat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OXXUWi3HnGXyNYANATzbXgAAAAAAAAGy"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.IndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 63}, "line": {"number": 302}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA_n0"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.findRunnable"}, "line": {"number": 2624}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "g8LMnazDb6d6ompk9kprbwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "DockerContainerInspectionComparator.scala"}, "function": {"name": "boolean no.found.runner.docker.DockerContainerInspectionComparator$.isEquivalent(com.fasterxml.jackson.databind.node.ObjectNode, com.fasterxml.jackson.databind.node.ObjectNode)"}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AFgNmbMpan7AOvr1RHjTvAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "DocIdsWriter.java"}, "function": {"name": "void org.apache.lucene.util.bkd.DocIdsWriter.readInts(org.apache.lucene.store.IndexInput, int, org.apache.lucene.index.PointValues$IntersectVisitor)"}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K_N78LhUkthI1fnHsP1_6gAAAAAAAACt"}} -{"Stackframe": {"file": {"name": "Regex.java"}, "function": {"name": "boolean org.elasticsearch.common.regex.Regex.simpleMatchWithNormalizedStrings(java.lang.String, java.lang.String)", "offset": 28}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjYS"}} -{"Stackframe": {"function": {"name": "lookup_fast"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACIS3Q"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/strings.go"}, "function": {"name": "strings.genSplit"}, "line": {"number": 247}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Vwe_72Rv4VHVlHKolSYlNQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "MergePolicy.java"}, "function": {"name": "long org.apache.lucene.index.MergePolicy.size(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 1}, "line": {"number": 745}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 393}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RomRVdnE3C95h6xZqdKjpQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "NioSocketChannel.java"}, "function": {"name": "boolean io.netty.channel.socket.nio.NioSocketChannel.isInputShutdown()"}, "line": {"number": 137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bv8FdXOrnnAB5gTPcCRfQgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ReflectionMethodInvoker.java"}, "function": {"name": "java.lang.Object com.amazonaws.util.ReflectionMethodInvoker.invoke(java.lang.Object, java.lang.Object[])"}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yBWSGqiiI_VOVi3uSjsniwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.CopyBytesSocketChannel.readFromSocketChannel(java.nio.channels.SocketChannel, java.nio.ByteBuffer)"}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6IU8CVJsljq2c-RkQafrKgAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction.execute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 11}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OFcZvVV_kykM3iTp1pb85QAAAAAAAABF"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$authorizeIndexAction$3(org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, java.util.Map, org.elasticsearch.xpack.core.security.authz.ResolvedIndices)", "offset": 7}, "line": {"number": 314}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KQub_5l0sZDFiW2VPwqmFAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "void org.apache.lucene.store.LockValidatingDirectoryWrapper.deleteFile(java.lang.String)", "offset": 1}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XsPRRgjkXM-VJurhpYWAKgAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelReadComplete()", "offset": 12}, "line": {"number": 486}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8DgYxzl_EXTxjPKMNwP9uAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.ReadersAndUpdates.getReadOnlyClone(org.apache.lucene.store.IOContext)", "offset": 1}, "line": {"number": 221}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pboNPSluja75Bcicb918zwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "void org.elasticsearch.index.store.ByteSizeCachingDirectory$2.close()"}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pxFz17lb-voh9uZicvdXWAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI$BitSetConjunctionDISI.advance(int)"}, "line": {"number": 309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O9IjcD5d1rTcG4kkieTvLAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.addDocs(java.util.List, org.apache.lucene.index.IndexWriter)", "offset": 1}, "line": {"number": 1249}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALQox"}} -{"Stackframe": {"function": {"name": "__x64_sys_close"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tUugY2gAhpWf99wEorV4JgAAAAAAAABY"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.read(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 15}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF"}} -{"Stackframe": {"function": {"name": "user_path_at_empty"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACWzxk"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/gopkg.in/yaml.v2@v2.3.0/decode.go"}, "function": {"name": "gopkg.in/yaml%2ev2.(*parser).peek"}, "line": {"number": 105}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hHI8fycCSE9gTrpxwlqNFAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DocIDMerger.java"}, "function": {"name": "org.apache.lucene.index.DocIDMerger$Sub org.apache.lucene.index.DocIDMerger$SequentialDocIDMerger.next()"}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "FilterOutputStream.java"}, "function": {"name": "void java.io.FilterOutputStream.close()", "offset": 12}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nbGCAVuMLFxSx37S0qgXIQAAAAAAAAB0"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 7}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALka7"}} -{"Stackframe": {"function": {"name": "link_path_walk.part.33"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_SITIpii9O2qgAJ_aGq_uwAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ConcreteShardRequest.(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.StreamInput)", "offset": 5}, "line": {"number": 1326}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "21z4Mx3dOykPYQ45FXN3RgAAAAAAAABF"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.value(java.lang.Iterable, boolean)", "offset": 16}, "line": {"number": 1111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M2BXupKk-ecTJedmRPFuNgAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "HexUtils.java"}, "function": {"name": "java.lang.String co.elastic.apm.agent.util.HexUtils.bytesToHex(byte[])", "offset": 1}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACX"}} -{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.SoftDeletesRetentionMergePolicy.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.util.IOSupplier)", "offset": 15}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lP_2TC89YKD5hpxethArxgAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "Transaction.java"}, "function": {"name": "void co.elastic.apm.agent.impl.transaction.Transaction.(co.elastic.apm.agent.impl.ElasticApmTracer)"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sekohEm28rHxpRudfXENQgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "BufferedChecksumIndexInput.java"}, "function": {"name": "byte org.apache.lucene.store.BufferedChecksumIndexInput.readByte()"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KFMAbRw5zGuXuHUM7MdcgAAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "ApacheHttpRequestFactory.java"}, "function": {"name": "org.apache.http.client.methods.HttpRequestBase com.amazonaws.http.apache.request.impl.ApacheHttpRequestFactory.createApacheRequest(com.amazonaws.Request, java.lang.String, java.lang.String)", "offset": 14}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XmgLknRmXWrjNm14n69KUAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.forceFlush(io.netty.channel.ChannelHandlerContext)", "offset": 1}, "line": {"number": 2077}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d_mdgff0kSRs-ewuuAGS-AAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$extractToken$11(java.util.function.Consumer, org.elasticsearch.xpack.core.security.authc.AuthenticationToken)"}, "line": {"number": 416}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z1q9rF3ceWm3ZLvu4I6PuwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-o8v"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/memory.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.memoryData"}, "line": {"number": 122}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mqZxgkeFxfHgS32BvLbCOQAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$11(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult)"}, "line": {"number": 450}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gcwvSoMpg-MLbRLF5e2AlwAAAAAAAALN"}} -{"Stackframe": {"file": {"name": "ClientHello.java"}, "function": {"name": "void sun.security.ssl.ClientHello$T12ClientHelloConsumer.consume(sun.security.ssl.ConnectionContext, sun.security.ssl.SSLHandshake$HandshakeMessage)", "offset": 182}, "line": {"number": 1120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XQAhaCnyqkeCfjLm4h_8UQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "RestBuilderListener.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestBuilderListener.buildResponse(java.lang.Object)"}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7qmVvURTWTJ6lErQQmLiNAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "InternalAggregations.java"}, "function": {"name": "org.elasticsearch.search.aggregations.InternalAggregations org.elasticsearch.search.aggregations.InternalAggregations.topLevelReduce(java.util.List, org.elasticsearch.search.aggregations.AggregationReduceContext)"}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eRopNDS3ANx--GCaBwfnRwAAAAAAAABT"}} -{"Stackframe": {"file": {"name": "MultiLevelSkipListWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.MultiLevelSkipListWriter.bufferSkip(int)", "offset": 13}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DliY6tssVncRZTUK_C4ajAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ReferenceCountUtil.java"}, "function": {"name": "java.lang.Object io.netty.util.ReferenceCountUtil.touch(java.lang.Object, java.lang.Object)", "offset": 1}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Zx-0tvUxoac--Xj0F0phiwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "AbstractNamedDiffable.java"}, "function": {"name": "org.elasticsearch.cluster.NamedDiff org.elasticsearch.cluster.AbstractNamedDiffable.readDiffFrom(java.lang.Class, java.lang.String, org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8OiJZHURIK_gi5RsAiMk3QAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "Lucene84PostingsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.Lucene84PostingsWriter.startDoc(int, int)", "offset": 1}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.maybeMerge(org.apache.lucene.index.MergePolicy, org.apache.lucene.index.MergeTrigger, int)", "offset": 1}, "line": {"number": 2291}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AHE52dyzEEDlVbgj_xFoxwAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$writeAuthToContext$24(org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 1}, "line": {"number": 682}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChj9y"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/traceback.go"}, "function": {"name": "runtime.gentraceback"}, "line": {"number": 485}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LV9G5ZxtEfojbVKjeQ9ZFAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "MappingMultiPostingsEnum.java"}, "function": {"name": "int org.apache.lucene.index.MappingMultiPostingsEnum$MappingPostingsSub.nextDoc()"}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EwEFenwePxaQrzAkWy0a_gAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object java.lang.management.ManagementFactory$$Lambda$158+0x00000008010fa610.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vvyTgrU_6muGYvZMzPOoMgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.RemoteClusterAwareClient$$Lambda$8999+0x00000008027fb9a8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAADhDQt"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/mb/module/wrapper.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/mb/module.reporterV2.Event"}, "line": {"number": 408}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "198FZCTxq16d0UJlhg9MrgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "DataInput.java"}, "function": {"name": "java.lang.String org.apache.lucene.store.DataInput.readString()"}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nFec0jDdaqJcSPL265lPiAAAAAAAAAD1"}} -{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.handleIncomingRequest(org.elasticsearch.http.HttpRequest, org.elasticsearch.http.HttpChannel, java.lang.Exception)", "offset": 75}, "line": {"number": 460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9RZkYL0fVSfLG-HsYblWBQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.decRefDeleter(org.apache.lucene.index.SegmentInfos)", "offset": 1}, "line": {"number": 5407}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Lu4BbYQNxvrnJvSur5jWAAAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 3}, "line": {"number": 218}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YWS9Usg0M4wsAp_Kwi6pJQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "DataInput.java"}, "function": {"name": "long org.apache.lucene.store.DataInput.readLong()"}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lkKMSIn7LhSdQ5lTlqE-GgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "RAMOutputStream.java"}, "function": {"name": "void org.apache.lucene.store.RAMOutputStream.writeByte(byte)"}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ElasticsearchReaderManager.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.engine.ElasticsearchReaderManager.refreshIfNeeded(java.lang.Object)"}, "line": {"number": 28}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qdWawJbVNdMBrG9mDAPkpwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "NodeClient.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.client.internal.node.NodeClient.executeLocally(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7lvJvioq7YVUkmI7Eon3jwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "long org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$1.longValue()"}, "line": {"number": 490}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard$$Lambda$8425+0x0000000802757080.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OD88rfBmy4BfCXerLT5e5QAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "long org.apache.lucene.store.FSDirectory.fileLength(java.lang.String)", "offset": 4}, "line": {"number": 242}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "83-j4R13bIPFHIwJnf4UlAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "org.elasticsearch.threadpool.Scheduler$ScheduledCancellable org.elasticsearch.threadpool.ThreadPool.schedule(java.lang.Runnable, org.elasticsearch.core.TimeValue, java.lang.String)"}, "line": {"number": 429}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X3vNLlXVyKftCeY5HzEuDAAAAAAAAAVv"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.mergeMiddle(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergePolicy)", "offset": 171}, "line": {"number": 4858}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7unxWA5Hj3DUaWAMH4NXUgAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.sync(org.elasticsearch.index.translog.Translog$Location, java.util.function.Consumer)", "offset": 1}, "line": {"number": 3644}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ8"}} -{"Stackframe": {"function": {"name": "audit_filter_syscall.constprop.19"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uRqVOAp48I1Ur34p5gxEsQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DzEvX6Uki-3l_8Ej84P7KwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState.reset(int)", "offset": 2}, "line": {"number": 424}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YQ_8e8jbfnaSxzTbLcpNZQAAAAAAAAFi"}} -{"Stackframe": {"file": {"name": "ExpandSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.ExpandSearchPhase.run()", "offset": 52}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEuqL"}} -{"Stackframe": {"function": {"name": "__hrtimer_init"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAapyn"}} -{"Stackframe": {"file": {"name": "google.golang.org/grpc@v1.46.0/call.go"}, "function": {"name": "google.golang.org/grpc.invoke"}, "line": {"number": 70}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UepoRzuMTBR-jFpLlu_fPgAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "SegmentInfos.java"}, "function": {"name": "java.util.Collection org.apache.lucene.index.SegmentInfos.files(boolean)", "offset": 10}, "line": {"number": 820}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NUmJ5QmloEgI0M4MXoldOgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TraceContext.java"}, "function": {"name": "boolean co.elastic.apm.agent.impl.transaction.TraceContext$4.asChildOf(co.elastic.apm.agent.impl.transaction.TraceContext, java.lang.Object, java.lang.Object)"}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uimFkk5UuxbH1IL630LmngAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Regex.java"}, "function": {"name": "boolean org.elasticsearch.common.regex.Regex.simpleMatch(java.lang.String[], java.lang.String)"}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QNlOUvE0ZxUnjZSRXtro_gAAAAAAAACj"}} -{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.innerRun()", "offset": 16}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lH7EdNhUWMEu-Xw0OnFCsgAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "LRUQueryCache.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight.bulkScorer(org.apache.lucene.index.LeafReaderContext)", "offset": 12}, "line": {"number": 906}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fedIGTz7oXcPN7rVsxHwdwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.addListener(org.elasticsearch.action.ActionListener, java.util.concurrent.ExecutorService, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 2}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnlu5"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/encode.go"}, "function": {"name": "encoding/json.(*encodeState).error"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PvuLdl9vutGJ_aJAxcvTvgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "HttpUtils.java"}, "function": {"name": "void co.elastic.apm.agent.report.HttpUtils.consumeAndClose(java.net.HttpURLConnection)", "offset": 3}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vEf82IDRTNtSKS_YS3157QAAAAAAAAFI"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4.compressWithDictionary(byte[], int, int, int, org.apache.lucene.store.DataOutput, org.apache.lucene.util.compress.LZ4$HashTable)", "offset": 54}, "line": {"number": 576}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD5W6y"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/go.etcd.io/bbolt@v1.3.4/bucket.go"}, "function": {"name": "go.etcd.io/bbolt.(*Bucket).Put"}, "line": {"number": 304}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dT5WZm8-ag4VFDZf0HaaMAAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "Lucene60FieldInfosFormat.java"}, "function": {"name": "org.apache.lucene.index.FieldInfos org.apache.lucene.codecs.lucene60.Lucene60FieldInfosFormat.read(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.store.IOContext)", "offset": 1}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jZ9kRw1QvW-8GEY-d73XeAAAAAAAAABO"}} -{"Stackframe": {"file": {"name": "PerFieldMergeState.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldMergeState$FilterFieldInfos.(org.apache.lucene.index.FieldInfos, java.util.Collection)", "offset": 13}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFlPq"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgc.go"}, "function": {"name": "runtime.gcBgMarkWorker.func2"}, "line": {"number": 1983}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yudj5Wbjz98rahOhutg5KwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "NamedWriteableAwareStreamInput.java"}, "function": {"name": "org.elasticsearch.common.io.stream.NamedWriteable org.elasticsearch.common.io.stream.NamedWriteableAwareStreamInput.readNamedWriteable(java.lang.Class, java.lang.String)", "offset": 1}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2"}} -{"Stackframe": {"file": {"name": "NativeFSLockFactory.java"}, "function": {"name": "void org.apache.lucene.store.NativeFSLockFactory$NativeFSLock.ensureValid()", "offset": 21}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RXmMEZ6O1OxzfD_HMxPVPgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ParserBase.java"}, "function": {"name": "java.lang.Number com.fasterxml.jackson.core.base.ParserBase.getNumberValue()", "offset": 1}, "line": {"number": 584}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LOPIUumYsiogVvRsdSkRxwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 536}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACso6V"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/processing/processors.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/processing.(*processorFn).Run"}, "line": {"number": 151}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "niWpQ0umyYwSRcIZZ4STpgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Thread.java"}, "function": {"name": "boolean java.lang.Thread.interrupted()"}, "line": {"number": 1016}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Wz4vwQw1vGCziif1EnghTAAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "SpinedBuffer.java"}, "function": {"name": "java.lang.Object[] java.util.stream.SpinedBuffer.asArray(java.util.function.IntFunction)", "offset": 3}, "line": {"number": 214}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Zxyf5INnJibBb8rT_yMcsAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.access$000(org.elasticsearch.cluster.service.ClusterApplierService, java.lang.String, java.util.function.Function, org.elasticsearch.action.ActionListener)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ehfrv6pp0yJIe59dBGi7sAAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "IndexingMemoryController.java"}, "function": {"name": "void org.elasticsearch.indices.IndexingMemoryController$ShardsIndicesStatusChecker.runUnlocked()", "offset": 2}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLjD5"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.Unmarshal"}, "line": {"number": 107}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3xCWfq507FWOndXXpuD96wAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Releasables.java"}, "function": {"name": "void org.elasticsearch.core.Releasables.close(java.lang.Iterable)"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fKMNI-vz54Qowk84IKMX4gAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "NamedGroup.java"}, "function": {"name": "sun.security.ssl.SSLPossession sun.security.ssl.NamedGroup.createPossession(java.security.SecureRandom)"}, "line": {"number": 431}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi5iP"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/dirent_linux.go"}, "function": {"name": "os.(*File).readdir"}, "line": {"number": 21}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACgxMz"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/conditions/or.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/conditions.Or.Check"}, "line": {"number": 33}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0tMMU1TF6u7gDtnl45AtDQAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "long org.apache.lucene.codecs.DocValuesConsumer$5$1.nextOrd()", "offset": 4}, "line": {"number": 874}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H0yNC4W33CkkqJfkrGFEhAAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.Engine.refreshNeeded()", "offset": 9}, "line": {"number": 972}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEXzb"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mcentral.go"}, "function": {"name": "runtime.(*mcentral).uncacheSpan"}, "line": {"number": 391}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1XsKZz2qQFSDIhWfdGBZ5wAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "sun.nio.fs.UnixPath sun.nio.fs.UnixPath.normalize()"}, "line": {"number": 480}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pBWDMEkxECoqFEbuF_aawAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService$$Lambda$4335.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IXQQ44cok-T_SndfV84TzAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.support.AbstractXContentParser.readValue(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier)"}, "line": {"number": 371}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7OmS9SwYpCYbOPw4YxA-2QAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "RestSearchAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction.lambda$prepareRequest$2(org.elasticsearch.client.node.NodeClient, org.elasticsearch.rest.RestRequest, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.rest.RestChannel)"}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xzBkQCtjYmztrrm3hxqn5AAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "IndexSearcher.java"}, "function": {"name": "org.apache.lucene.search.Query org.apache.lucene.search.IndexSearcher.rewrite(org.apache.lucene.search.Query)", "offset": 1}, "line": {"number": 676}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAiyFq"}} -{"Stackframe": {"function": {"name": "__alloc_skb"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAD9EhE"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/mb/event.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/mb.AddMetricSetInfo"}, "line": {"number": 163}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3F2z0U59C1y3O1vSXqnJygAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.nextDoc()", "offset": 2}, "line": {"number": 218}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "q9QOGHBEh6GQgY-VLBFr7QAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "DecimalFormatSymbols.java"}, "function": {"name": "java.text.DecimalFormatSymbols java.text.DecimalFormatSymbols.getInstance(java.util.Locale)", "offset": 2}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHafM"}} -{"Stackframe": {"function": {"name": "__do_sys_bpf"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qX0rVEaAW5zi3bvcEZHkUgAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "URI.java"}, "function": {"name": "int java.net.URI$Parser.parseHierarchical(int, int)", "offset": 5}, "line": {"number": 3183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "c7Y6qNf105blezu_vIWQRAAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "ForkJoinPool.java"}, "function": {"name": "void java.util.concurrent.ForkJoinPool.unmanagedBlock(java.util.concurrent.ForkJoinPool$ManagedBlocker)", "offset": 1}, "line": {"number": 3744}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "449MNg-Y_ftqVzjxrtZ_gwAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.checkpoint()", "offset": 1}, "line": {"number": 2716}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pZFZt3AmSRe8cuNGaxoM2QAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 24}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AyQblFWxoSNP2bxYt2XrVgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer$2$1.nextDoc()"}, "line": {"number": 524}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FHmqnwoRLZTiOtbOugfu1wAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.resolveAuthorizationInfo(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mTv-kEvVfHLbasIc3cI7eAAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "UpdateResponse.java"}, "function": {"name": "void org.elasticsearch.action.update.UpdateResponse.(org.elasticsearch.index.shard.ShardId, org.elasticsearch.common.io.stream.StreamInput)", "offset": 2}, "line": {"number": 33}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkl9"}} -{"Stackframe": {"function": {"name": "path_parentat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yanW-NWn1yU-ZmISz8_K-wAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$RequestFilterChain.proceed(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IdcuHIIOwylJBv5_p9-5oQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "AbstractLogger.java"}, "function": {"name": "void org.apache.logging.log4j.spi.AbstractLogger.tryLogMessage(java.lang.String, org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message, java.lang.Throwable)"}, "line": {"number": 2170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-7vE"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/process/process.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/process.(*Process).getDetails"}, "line": {"number": 178}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8k_6lvbs-tYFU0BS1Pnk5QAAAAAAAABI"}} -{"Stackframe": {"file": {"name": "DeleteAction.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.DeleteAction.toSteps(org.elasticsearch.client.Client, java.lang.String, org.elasticsearch.xpack.core.ilm.Step$StepKey)", "offset": 6}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jl0Few0KXqirBZp0WuOd2wAAAAAAAACj"}} -{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$snapshotShard$57(org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.apache.lucene.index.IndexCommit, org.elasticsearch.snapshots.SnapshotId, java.util.List, org.elasticsearch.index.shard.ShardId, org.elasticsearch.common.blobstore.BlobContainer, java.lang.String, org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots, org.elasticsearch.Version, java.lang.String, java.util.Set, org.elasticsearch.action.ActionListener, java.util.Collection)", "offset": 22}, "line": {"number": 1780}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZkLsycxKPf36jJRxnsYRXgAAAAAAAAB1"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.support.AbstractXContentParser.readValueUnsafe(org.elasticsearch.common.xcontent.XContentParser$Token, org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier)", "offset": 3}, "line": {"number": 382}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.getRole(org.elasticsearch.xpack.core.security.authc.Subject, org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qX8-oC5V0WLBgQpW-imEyQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesProducer org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat.fieldsProducer(org.apache.lucene.index.SegmentReadState)"}, "line": {"number": 380}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8IycasHuDpn892i9ex9phAAAAAAAAAFz"}} -{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "org.elasticsearch.cluster.SnapshotsInProgress$Entry org.elasticsearch.cluster.SnapshotsInProgress$Entry.readFrom(org.elasticsearch.common.io.stream.StreamInput)", "offset": 58}, "line": {"number": 872}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "etr0v-F_gZF8yXV_t-VgIQAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.CopyBytesSocketChannel.doReadBytes(io.netty.buffer.ByteBuf)", "offset": 5}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 758}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rQKocOh2yWdZngQePl3VrgAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$8952+0x00000008027fe218.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mLfjq87DJtmgQUOWZb8qsAAAAAAAAAHc"}} -{"Stackframe": {"file": {"name": "Coordinator.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.Coordinator.handlePublishRequest(org.elasticsearch.cluster.coordination.PublishRequest)", "offset": 38}, "line": {"number": 326}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e7YYWaQTMh8P2PCVzA2a8gAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "boolean java.util.AbstractMap.containsKey(java.lang.Object)", "offset": 10}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxo"}} -{"Stackframe": {"file": {"name": "runtime/asm_amd64.s"}, "function": {"name": "runtime.systemstack"}, "line": {"number": 496}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-mbd"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/blkio.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.blkioThrottle"}, "line": {"number": 167}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PJTlw6VeTaTK6Ugh88lHIwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$ConsumerAndSuffix.close()"}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vuphyS_BZoVnngMBUX1lRwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$6988+0x0000000801e50620.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALQsy"}} -{"Stackframe": {"function": {"name": "do_dentry_open"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-wRN"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.SubsystemMountpoints"}, "line": {"number": 179}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyTI"}} -{"Stackframe": {"function": {"name": "audit_filter_rules.constprop.21"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3z1OOsQnAKpS1yct9MEg-wAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "AbstractSet.java"}, "function": {"name": "int java.util.AbstractSet.hashCode()", "offset": 3}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Es-JdNswBBYy0dgOuoAxgQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "FilterDirectoryReader.java"}, "function": {"name": "boolean org.apache.lucene.index.FilterDirectoryReader.isCurrent()"}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iXE09wsufQpbcJFrBbH5RAAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$authenticateAsync$0(org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 4}, "line": {"number": 338}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6SPcjSM_2i5VedtZVzcDIgAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "NodeService.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.node.NodeService.stats(org.elasticsearch.action.admin.indices.stats.CommonStatsFlags, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean)", "offset": 3}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChGUE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.pollWork"}, "line": {"number": 5655}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjMqP"}} -{"Stackframe": {"function": {"name": "dev_queue_xmit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ekcp8NUShDNkkW-gpN04awAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "void org.elasticsearch.search.internal.ContextIndexSearcher.searchLeaf(org.apache.lucene.index.LeafReaderContext, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 13}, "line": {"number": 209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hngRbg0m5bOuUtxBnj8KMgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.ReadersAndUpdates org.apache.lucene.index.IndexWriter.getPooledInstance(org.apache.lucene.index.SegmentCommitInfo, boolean)", "offset": 1}, "line": {"number": 5553}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnGox"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/math/big/nat.go"}, "function": {"name": "math/big.nat.montgomery"}, "line": {"number": 243}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ELq11kdAb5wONWvy2t3XBwAAAAAAAACu"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "int io.netty.handler.ssl.SslHandler.unwrap(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, int)", "offset": 39}, "line": {"number": 1373}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABq0H"}} -{"Stackframe": {"file": {"name": "runtime/sys_linux_amd64.s"}, "function": {"name": "runtime.futex"}, "line": {"number": 561}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iXWHNd_y-hSLbIW9XiqyhgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap$KeyIterator.next()"}, "line": {"number": 1628}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dXCCMJJCG6SB0NI-JLXs-wAAAAAAAABx"}} -{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "com.carrotsearch.hppc.cursors.ObjectObjectCursor com.carrotsearch.hppc.ObjectObjectHashMap$EntryIterator.fetch()", "offset": 12}, "line": {"number": 664}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "y2325DY1ugdPcN9iudwKYQAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "org.apache.lucene.document.Document org.elasticsearch.gateway.PersistedClusterStateService$Writer.makeDocument(java.lang.String, org.elasticsearch.common.xcontent.ToXContent, org.elasticsearch.gateway.PersistedClusterStateService$DocumentBuffer)", "offset": 7}, "line": {"number": 851}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JnSEm3EzEl71vBewWd-MegAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "TransportIndicesStatsAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation(org.elasticsearch.action.admin.indices.stats.IndicesStatsRequest, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionListener)"}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABWWaK"}} -{"Stackframe": {"file": {"name": "encoding/gob/decode.go"}, "function": {"name": "encoding/gob.(*Decoder).decodeStruct"}, "line": {"number": 472}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lxHcaURO-m3kXQ7hisaTggAAAAAAAACe"}} -{"Stackframe": {"file": {"name": "InputRegistry.java"}, "function": {"name": "org.elasticsearch.xpack.core.watcher.input.ExecutableInput org.elasticsearch.xpack.watcher.input.InputRegistry.parse(java.lang.String, org.elasticsearch.xcontent.XContentParser)", "offset": 26}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mW2YX0W7f8kHZ9OF_UwxgwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.exists(java.nio.file.Path)", "offset": 1}, "line": {"number": 536}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$7101+0x0000000801d75ce0.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2c9TATIrCMgoDoZOxrWO6gAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction$$Lambda$7421+0x000000080252ca08.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j_DalQzm9M9lsrdxKoLeDwAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 222}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dn1QdHTtENizBvfQq0rJpgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Rewriteable.java"}, "function": {"name": "void org.elasticsearch.index.query.Rewriteable.rewriteAndFetch(org.elasticsearch.index.query.Rewriteable, org.elasticsearch.index.query.QueryRewriteContext, org.elasticsearch.action.ActionListener)"}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-3GPQQ-ojQ0K4P5ZthFkFAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient.execute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 399}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V_KspK9nh8LJS_EE9pIxxwAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$ContextRestoreResponseHandler.handleResponse(org.elasticsearch.transport.TransportResponse)", "offset": 3}, "line": {"number": 1361}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZNYIIcZKEhelw-qPJkZowQAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "void org.elasticsearch.common.settings.Settings.processSetting(java.util.Map, java.lang.String, java.lang.String, java.lang.Object)", "offset": 3}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dbv2Og8KrWCsZroHwhSYbAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$RunAfterActionListener.onResponse(java.lang.Object)"}, "line": {"number": 349}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xVOmAk0hLEywDTna7YZ20QAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "Spliterators.java"}, "function": {"name": "boolean java.util.Spliterators$1Adapter.hasNext()", "offset": 1}, "line": {"number": 681}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACN4dL"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/exec.go"}, "function": {"name": "regexp.freeBitState"}, "line": {"number": 81}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEynF"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/os_linux.go"}, "function": {"name": "runtime.futexsleep"}, "line": {"number": 46}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lrNuGOqZ1W2gPcoSPK5FRwAAAAAAAACd"}} -{"Stackframe": {"file": {"name": "BaseRestHandler.java"}, "function": {"name": "void org.elasticsearch.rest.BaseRestHandler.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.internal.node.NodeClient)", "offset": 23}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yTm-9MNIZqJ4aOXilobOGwAAAAAAAADR"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 10}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACET9i"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map_faststr.go"}, "function": {"name": "runtime.evacuate_faststr"}, "line": {"number": 432}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABZ"}} -{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.scoreRange(org.apache.lucene.search.LeafCollector, org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.search.TwoPhaseIterator, org.apache.lucene.util.Bits, int, int)", "offset": 13}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgu5O"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/stubs.go"}, "function": {"name": "runtime.(*mheap).grow"}, "line": {"number": 370}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Upqzzk59PbxypyRs4QkNMAAAAAAAAABT"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "org.elasticsearch.index.mapper.ParsedDocument org.elasticsearch.index.mapper.DocumentParser.parseDocument(org.elasticsearch.index.mapper.SourceToParse, org.elasticsearch.index.mapper.MappingLookup)", "offset": 14}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gpzmfljwMvF6axjuntzBmAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.lang.Object java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$1.next()"}, "line": {"number": 1672}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "void java.util.stream.AbstractPipeline.copyInto(java.util.stream.Sink, java.util.Spliterator)", "offset": 3}, "line": {"number": 508}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.refresh(java.lang.String)", "offset": 4}, "line": {"number": 1030}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OQPUK8Hf6q8Ps2puP24YPgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 750}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n31e6JshNEWpv-_jwPINigAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction$$Lambda$6118+0x0000000801c465a0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dDhANFYAPCtduwtLEJ3JjwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jckGVFRAvWURR3kz1QpfwQAAAAAAAABZ"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.index(org.elasticsearch.index.engine.Engine, org.elasticsearch.index.engine.Engine$Index)", "offset": 17}, "line": {"number": 1054}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OexwgsSre7AMRf1QkoBsGAAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "BulkShardRequest.java"}, "function": {"name": "java.lang.String org.elasticsearch.action.bulk.BulkShardRequest.getDescription()"}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vyA8zlEU2Uoo1SKAKvagqQAAAAAAAABS"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Setting.innerGetRaw(org.elasticsearch.common.settings.Settings)", "offset": 5}, "line": {"number": 508}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TqtNNgn49BDdRi-fF4UZbAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ECDHServerKeyExchange.java"}, "function": {"name": "void sun.security.ssl.ECDHServerKeyExchange$ECDHServerKeyExchangeConsumer.consume(sun.security.ssl.ConnectionContext, java.nio.ByteBuffer)", "offset": 3}, "line": {"number": 521}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gBLxJrtyci28b-8zCYT3hgAAAAAAAAEm"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.io.stream.StreamInput.readString()", "offset": 58}, "line": {"number": 477}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ExOLHpMtDJgNCMVUQOkZYwAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.lambda$innerRun$1(org.elasticsearch.action.search.SearchPhaseController$ReducedQueryPhase, boolean)"}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAALWJk"}} -{"Stackframe": {"file": {"name": "crypto/tls/conn.go"}, "function": {"name": "crypto/tls.(*Conn).readFromUntil"}, "line": {"number": 810}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4JQqkFvm0YZvatJnibQXiAAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run()", "offset": 2}, "line": {"number": 718}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7ko5nSdnNlUP_d2pOnRKIAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ManagementFactory.java"}, "function": {"name": "java.util.List java.lang.management.ManagementFactory.getMemoryPoolMXBeans()"}, "line": {"number": 401}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CMOLX12QynGJCu7CxyKH2AAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$1.onResponse(org.elasticsearch.action.ActionResponse)", "offset": 2}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vJ9aY3SiI_VOViscMoUSuwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.CopyBytesSocketChannel.readFromSocketChannel(java.nio.channels.SocketChannel, java.nio.ByteBuffer)"}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xpf67p7tjON1QEeEp4iyEwAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.io.stream.StreamInput.readMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader, java.util.function.IntFunction)", "offset": 7}, "line": {"number": 622}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SnuscF0tbXb_zlnank6kxwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 537}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EnrPf6p1agEWo7abpHSWVAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$AsyncAfterWriteAction$$Lambda$6945+0x000000080247d450.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WFBxAERZNClfuNDueoaytgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Policy.java"}, "function": {"name": "boolean java.security.Policy$PolicyDelegate.implies(java.security.ProtectionDomain, java.security.Permission)"}, "line": {"number": 801}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dSoizOL6hk_mFFoq9MTU3QAAAAAAAABu"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.IndexingChain.writeDocValues(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)", "offset": 21}, "line": {"number": 391}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_HewcgijIMPowgCu2JuUaAAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$8(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.xpack.security.audit.AuditTrail, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, org.elasticsearch.action.ActionListener)"}, "line": {"number": 290}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "koqMTfqkuD6zwA-Wl7ESpAAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "JsonReadContext.java"}, "function": {"name": "com.fasterxml.jackson.core.json.JsonReadContext com.fasterxml.jackson.core.json.JsonReadContext.createChildObjectContext(int, int)", "offset": 6}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE7lU"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.stopTheWorldWithSema"}, "line": {"number": 990}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACJPQw"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/fd_posix.go"}, "function": {"name": "net.(*netFD).Read"}, "line": {"number": 55}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aTntpUYXQHYLwEr9g5SFgAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object java.lang.management.ManagementFactory$$Lambda$269+0x0000000800d59798.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Eud0aohygkGfExKi-EplqgAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "org.apache.lucene.index.TermsEnum org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$BaseSortedDocValues.termsEnum()"}, "line": {"number": 1000}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-vgX2c4oYcqGSJf1kx8Z-wAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.AbstractObjectParser$$Lambda$507.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.handleCachedAuthentication(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.action.ActionListener)"}, "line": {"number": 242}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXssu"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.(*GenericEventConverter).normalizeSlice"}, "line": {"number": 138}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qnNsUsoPsI60n_EtYkImaQAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "int org.apache.lucene.codecs.DocValuesConsumer$6.nextDoc()", "offset": 6}, "line": {"number": 727}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Uc3Hxu80nWajDYNI1RALIwAAAAAAAAGg"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.handleIndexActionAuthorizationResult(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener)", "offset": 71}, "line": {"number": 556}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xy6LXnpeKuV7b6XhH-kLUgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "OutputStreamIndexOutput.java"}, "function": {"name": "long org.apache.lucene.store.OutputStreamIndexOutput.getChecksum()"}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9ZOKtWsgasz8zygdckTZDQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.translog.TranslogStats org.elasticsearch.index.engine.InternalEngine.getTranslogStats()"}, "line": {"number": 575}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApG0S"}} -{"Stackframe": {"function": {"name": "idr_find"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mEOjRyvX6NLlEbefqnccIAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 220}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oEGQwA1Ox2WrtN7jhn-tGgAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "Cipher.java"}, "function": {"name": "void javax.crypto.Cipher.updateAAD(byte[], int, int)", "offset": 12}, "line": {"number": 2755}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eVW9lCqHxlTfD5Rt7tiZeQAAAAAAAACG"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.netty.channel.ChannelPromise)", "offset": 24}, "line": {"number": 972}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0cZiHBBWN2vYtEyCZ5X5wgAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$2(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener, org.elasticsearch.common.util.concurrent.ListenableFuture, org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$CachedResult)", "offset": 4}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fMXwmZZHoKY5ug0oBlnUxwAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "NIOFSDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.apache.lucene.store.NIOFSDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 3}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d5PNRNmadD6y-RfTc60V4wAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ByteBufferIndexInput.java"}, "function": {"name": "byte org.apache.lucene.store.ByteBufferIndexInput.readByte()"}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7uo6HnEu95TqHvEix8e-NAAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "FileRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.file.FileRealm.doAuthenticate(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener)"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$1.onResponse(java.lang.Object)"}, "line": {"number": 553}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADRFy"}} -{"Stackframe": {"function": {"name": "do_sched_yield"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mB85Af8LXB7vdQUnyF54IQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Lucene90CompoundReader.java"}, "function": {"name": "java.util.Map org.apache.lucene.codecs.lucene90.Lucene90CompoundReader.readEntries(byte[], org.apache.lucene.store.Directory, java.lang.String)", "offset": 2}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "56J_quP6E7ubMy0oFC4pVgAAAAAAAADY"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.lang.Object java.util.TreeMap.put(java.lang.Object, java.lang.Object, boolean)", "offset": 45}, "line": {"number": 828}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7LziU26eINk4gGAzQhjzRAAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.close(java.lang.Iterable)", "offset": 4}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hRAq7thJYnzPQjHjUPFm_gAAAAAAAAFn"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 359}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgaWJ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map_faststr.go"}, "function": {"name": "runtime.mapassign_faststr"}, "line": {"number": 240}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "INnwYO06xl8vuzb_d4iUwwAAAAAAAAB4"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 4}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KQLbwVQkKDdGennGDte8qAAAAAAAAACz"}} -{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "java.util.List org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$WildcardExpressionResolver.resolve(org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$Context, java.util.List)", "offset": 25}, "line": {"number": 916}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0s7uxPt4C0neZhw5beiboQAAAAAAAABZ"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.xcontent.support.AbstractXContentParser.readValueUnsafe(org.elasticsearch.xcontent.XContentParser$Token, org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier)", "offset": 4}, "line": {"number": 392}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TQ2LRd-v1-9930ZjrEFsRwAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "DeprecationLogger.java"}, "function": {"name": "org.elasticsearch.common.logging.DeprecationLogger org.elasticsearch.common.logging.DeprecationLogger.logDeprecation(org.apache.logging.log4j.Level, org.elasticsearch.common.logging.DeprecationCategory, java.lang.String, java.lang.String, java.lang.Object[])", "offset": 4}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1iIrWruhhrdv7Wrz1lbNJwAAAAAAAAER"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 273}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.refresh(java.lang.String, org.elasticsearch.index.engine.Engine$SearcherScope, boolean)", "offset": 12}, "line": {"number": 1888}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e2lx94qSnxpcppE-MHpptAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "PeerFinder.java"}, "function": {"name": "void org.elasticsearch.discovery.PeerFinder.lambda$new$0(org.elasticsearch.discovery.PeersRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9TmwK4T30h3U0B1lbih6TQAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.checkpoint()", "offset": 1}, "line": {"number": 2751}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Vb0C_sYOU5d3eeu0yalLowAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.coordination.Coordinator$$Lambda$4225+0x000000080187a4a8.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAAEaN"}} -{"Stackframe": {"file": {"name": "runtime/internal/syscall/asm_linux_amd64.s"}, "function": {"name": "runtime/internal/syscall.Syscall6"}, "line": {"number": 36}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ayB8QFQKdLd4s2sIWaVqPgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ThreadImpl.java"}, "function": {"name": "int sun.management.ThreadImpl.getPeakThreadCount()"}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m1DxIW9JZBLmNb4AyJUmVAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "SingletonSortedNumericDocValues.java"}, "function": {"name": "long org.apache.lucene.index.SingletonSortedNumericDocValues.nextValue()"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4vwWTuaA5W0Uq7WSODTSAQAAAAAAAAB8"}} -{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.merge(org.apache.lucene.index.MergeState, org.apache.lucene.codecs.NormsProducer)", "offset": 15}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F-l3z806Z2whMxir9gnRcgAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.nrtIsCurrent(org.apache.lucene.index.SegmentInfos)", "offset": 5}, "line": {"number": 5248}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AsYLPOMVTEJOeDxuyLY7KQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.flushBuffer()", "offset": 1}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LDdYUFmfmBXmyn1AQ_9arwAAAAAAAAC8"}} -{"Stackframe": {"file": {"name": "OutboundMessage.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.transport.OutboundMessage.serialize(org.elasticsearch.common.io.stream.BytesStreamOutput)", "offset": 33}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "je1jG-SMcDP5bWyoezk-tgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "PendingSoftDeletes.java"}, "function": {"name": "int org.apache.lucene.index.PendingSoftDeletes.numDeletesToMerge(org.apache.lucene.index.MergePolicy, org.apache.lucene.util.IOSupplier)", "offset": 1}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kMyJwSU-xdaoa_ZTenDCugAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "DocIdSetBuilder.java"}, "function": {"name": "org.apache.lucene.util.DocIdSetBuilder$BulkAdder org.apache.lucene.util.DocIdSetBuilder.grow(int)", "offset": 4}, "line": {"number": 192}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uOnnx6SeIoNtMNoAEEWY5QAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.IndexingChain.writeNorms(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)", "offset": 6}, "line": {"number": 440}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7brVxbd8D0tgw87ijWYE7gAAAAAAAADI"}} -{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.forwardFragments(org.elasticsearch.transport.TcpChannel, java.util.ArrayList)", "offset": 12}, "line": {"number": 147}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABWBOe"}} -{"Stackframe": {"file": {"name": "github.com/cilium/ebpf@v0.9.1/perf/reader.go"}, "function": {"name": "github.com/cilium/ebpf/perf.(*Reader).ReadInto"}, "line": {"number": 329}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xj0ZaJOqA6C8jp0rhkv2qAAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "PagedGrowableWriter.java"}, "function": {"name": "void org.apache.lucene.util.packed.PagedGrowableWriter.(long, int, int, float, boolean)", "offset": 3}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5XwPSHlCFfN_R3hNCEsGggAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.nrtIsCurrent(org.apache.lucene.index.SegmentInfos)", "offset": 4}, "line": {"number": 5245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2AKyo8gq7bsW8f5lUqQNswAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 43}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9gjRuxRdRyq16xbNcyHimgAAAAAAAAA_"}} -{"Stackframe": {"file": {"name": "BKDReader.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDReader$BKDPointTree.addAll(org.apache.lucene.index.PointValues$IntersectVisitor, boolean)", "offset": 13}, "line": {"number": 575}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Xw9SMMauw-oBWYANca-iwQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.ObjectParser.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object, java.lang.Object)", "offset": 3}, "line": {"number": 272}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2s_lBdMgasz8z2CHTH7llQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.translog.TranslogStats org.elasticsearch.index.engine.InternalEngine.getTranslogStats()"}, "line": {"number": 595}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "T3lk77LF4G-nQZW_WRBUXQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "SSLTransport.java"}, "function": {"name": "sun.security.ssl.Plaintext sun.security.ssl.SSLTransport.decode(sun.security.ssl.TransportContext, java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 1}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLn1n"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).literalStore"}, "line": {"number": 858}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e1ExWfDjJsrVt-lPUdyYlwAAAAAAAABj"}} -{"Stackframe": {"file": {"name": "JdkZlibEncoder.java"}, "function": {"name": "void io.netty.handler.codec.compression.JdkZlibEncoder.encode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, io.netty.buffer.ByteBuf)", "offset": 19}, "line": {"number": 236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFdkI"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/traceback.go"}, "function": {"name": "runtime.gentraceback"}, "line": {"number": 364}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f52Afepgpr9n2wytPbK_kAAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "void org.elasticsearch.threadpool.ThreadPool$CachedTimeThread.run()", "offset": 4}, "line": {"number": 588}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "utEPZPcb9QkY1sT0al86CwAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "PrintStream.java"}, "function": {"name": "void java.io.PrintStream.write(java.lang.String)", "offset": 3}, "line": {"number": 605}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bpFrLpp87SutwNDP7V3ibQAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.Settings.readSettingsFromStream(org.elasticsearch.common.io.stream.StreamInput)", "offset": 13}, "line": {"number": 596}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KJ37s7EDDJOHBJXAHjrP5gAAAAAAAADL"}} -{"Stackframe": {"file": {"name": "IndicesStore.java"}, "function": {"name": "void org.elasticsearch.indices.store.IndicesStore.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 27}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACmKML"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bufio/scan.go"}, "function": {"name": "bufio.ScanWords"}, "line": {"number": 401}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S2CYgbm2TSSx5DQSXabwsAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "io.netty.channel.ChannelPipeline io.netty.channel.DefaultChannelPipeline.fireChannelReadComplete()"}, "line": {"number": 925}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gF3s8iawat4dnHe7vGZ-UAAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "MetadataStateFormat.java"}, "function": {"name": "void org.elasticsearch.gateway.MetadataStateFormat.cleanupOldFiles(long, java.nio.file.Path[])", "offset": 4}, "line": {"number": 317}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zR0NjJPPs8zyWwwQG_LNGQAAAAAAAACk"}} -{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.DocumentsWriter.doFlush(org.apache.lucene.index.DocumentsWriterPerThread)", "offset": 33}, "line": {"number": 476}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2wgGDGWUYKAius-1IxNgMQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Lucene84PostingsReader.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene84.Lucene84PostingsReader$BlockDocsEnum.nextDoc()"}, "line": {"number": 453}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0Dua3wYmaGvRx9kIXglBGQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ForUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.ForUtil.decode4(org.apache.lucene.store.DataInput, long[], long[])"}, "line": {"number": 656}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACvEIo"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/backtrack.go"}, "function": {"name": "regexp.(*Regexp).tryBacktrack"}, "line": {"number": 121}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gbCFQS2suYv46rP_aUsebAAAAAAAAAH2"}} -{"Stackframe": {"file": {"name": "FieldsIndexWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.FieldsIndexWriter.finish(int, long, org.apache.lucene.store.IndexOutput)", "offset": 40}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iERjY1emNpBsfKAZbsHzfQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "DateTimeParserBucket.java"}, "function": {"name": "void org.joda.time.format.DateTimeParserBucket.saveField(org.joda.time.DateTimeFieldType, java.lang.String, java.util.Locale)"}, "line": {"number": 320}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-ZNzcIfRK431xz3NkzIyzQAAAAAAAAET"}} -{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.getRoles(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)", "offset": 36}, "line": {"number": 250}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_hdDMPyeQEiftRkSsra8RwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "java.lang.Object org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction$1.read(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 248}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VFPq4x0a0zu-FLg9t0IvUgAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "NativeBuffers.java"}, "function": {"name": "void sun.nio.fs.NativeBuffers.releaseNativeBuffer(sun.nio.fs.NativeBuffer)", "offset": 4}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIcE5"}} -{"Stackframe": {"function": {"name": "pagecache_get_page"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_94E"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/file_integrity/scanner.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/file_integrity.(*scanner).walkDir.func1"}, "line": {"number": 145}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7brVxbd8D0tgw87ijWYE7gAAAAAAAADn"}} -{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.forwardFragments(org.elasticsearch.transport.TcpChannel, java.util.ArrayList)", "offset": 15}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABV1uZ"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/processmanager/manager.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/processmanager.(*ProcessManager).loadDeltas"}, "line": {"number": 727}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz9V"}} -{"Stackframe": {"function": {"name": "__audit_syscall_exit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SukveDUyW0FsV0NSBVVfTAAAAAAAAADX"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 215}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RWzenT1WkhswQWbfG0kxvwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "boolean org.apache.lucene.codecs.lucene90.IndexedDISI$Method$2.advanceExactWithinBlock(org.apache.lucene.codecs.lucene90.IndexedDISI, int)"}, "line": {"number": 629}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACELM4"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/lock_futex.go"}, "function": {"name": "runtime.notetsleep_internal"}, "line": {"number": 202}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OgepeYBdrKmAGikZZHzjywAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.support.nodes.TransportNodesAction.nodeOperation(org.elasticsearch.action.support.nodes.BaseNodeRequest, org.elasticsearch.tasks.Task)"}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y3ftK9mWklQQE1dRC8tbhwAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "InputStreamStreamInput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.InputStreamStreamInput.readBytes(byte[], int, int)", "offset": 2}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_MKsb53X8OFm_0hl3h9AZgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.admin.cluster.stats.AnalysisStats$$Lambda$5262.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D"}} -{"Stackframe": {"function": {"name": "__x64_sys_epoll_pwait"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zt"}} -{"Stackframe": {"function": {"name": "__d_lookup"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QMO0tOc9LHhoVe-iumAfmwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Searcher org.elasticsearch.index.engine.Engine$SearcherSupplier.acquireSearcher(java.lang.String)"}, "line": {"number": 1253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gAjLw4sEs_2ehMm81jWXvQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "DefaultMaxMessagesRecvByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.channel.DefaultMaxMessagesRecvByteBufAllocator$MaxMessageHandle.allocate(io.netty.buffer.ByteBufAllocator)"}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_6rkq2S7o8rMRQJ9AofzJAAAAAAAAACL"}} -{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.bytes.BytesReference, boolean, org.elasticsearch.common.xcontent.XContentType)", "offset": 14}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAC523E"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/docker/engine@v0.0.0-20191113042239-ea84732a7725/client/events.go"}, "function": {"name": "github.com/docker/docker/client.(*Client).Events.func1"}, "line": {"number": 53}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OmwXLYgK4mB4VPSorht2jwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "HttpContentEncoder.java"}, "function": {"name": "boolean io.netty.handler.codec.http.HttpContentEncoder.encodeContent(io.netty.handler.codec.http.HttpContent, java.util.List)", "offset": 2}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QE1C6oZLYffge09QUEmCwQAAAAAAAADU"}} -{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 42}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y4GXBcWnfQyta5ocrIdtBQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$6(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener, java.util.Set)"}, "line": {"number": 291}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fEQIE_iCpRRbJjB1GxzDMwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.core.Releasables$$Lambda$6071+0x000000080235d340.close()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "68iZXv_8xxb53ICXrvQepAAAAAAAAAGh"}} -{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.writeRecord(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 83}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABWaJt"}} -{"Stackframe": {"file": {"name": "encoding/gob/decode.go"}, "function": {"name": "encoding/gob.(*Decoder).decOpFor.func4"}, "line": {"number": 861}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x72T8kxYZuozQaY_lcc1WQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$AuthorizationResultListener.onResponse(java.lang.Object)"}, "line": {"number": 931}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApawn"}} -{"Stackframe": {"function": {"name": "memcpy_erms"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L2fogWAk2fT2X-7WKN7ESwAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$checkPrivileges$1(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$PrivilegesToCheck, java.util.Collection, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo)"}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "utn7B_e8CjiON2nJb1OPvgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Header.java"}, "function": {"name": "void org.elasticsearch.transport.Header.finishParsingHeader(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8oQ_ZJ3ImiZWOZcNHv_WYwAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.implDelete(java.nio.file.Path, boolean)", "offset": 10}, "line": {"number": 236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JzNd9DaLcJtE1FJX2lvlEQAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "boolean org.apache.lucene.search.ReferenceManager.maybeRefresh()", "offset": 6}, "line": {"number": 225}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_"}} -{"Stackframe": {"function": {"name": "__x64_sys_openat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLxkk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/encode.go"}, "function": {"name": "encoding/json.(*encodeState).string"}, "line": {"number": 1068}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0GDZ0kstVgc85_nBZh3f0QAAAAAAAADA"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 93}, "line": {"number": 592}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4MmFlXNlAaTTYzJu9ZvlFQAAAAAAAACo"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.checkpoint(org.apache.lucene.index.SegmentInfos, boolean)", "offset": 29}, "line": {"number": 593}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fl80KEygC0q2Noyd1zAXYAAAAAAAAABU"}} -{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "org.elasticsearch.threadpool.Scheduler$ScheduledCancellable org.elasticsearch.threadpool.ThreadPool.schedule(java.lang.Runnable, org.elasticsearch.core.TimeValue, java.lang.String)", "offset": 32}, "line": {"number": 424}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0Cdt9wyWxnG2B-xGXMO6owAAAAAAAADY"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.xfer(java.lang.Object, boolean, int, long)", "offset": 21}, "line": {"number": 616}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Blwqo9fDZkc_G71NBmK4kwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.ApiKeyService$$Lambda$8895+0x00000008027d1140.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MHpbHEXmLVEAH-OYEtnUKAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bxw5V4q8KBJtXdgQby7U_AAAAAAAAACo"}} -{"Stackframe": {"file": {"name": "Netty4HttpPipeliningHandler.java"}, "function": {"name": "boolean org.elasticsearch.http.netty4.Netty4HttpPipeliningHandler.doFlush(io.netty.channel.ChannelHandlerContext)", "offset": 27}, "line": {"number": 303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ti0_HSSde_QUQCNhNWBhQgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportUpdateByQueryAction.java"}, "function": {"name": "void org.elasticsearch.reindex.TransportUpdateByQueryAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LEf7xTPa92fa-lrUaMUkPQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$2(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener, org.elasticsearch.common.util.concurrent.ListenableFuture, org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$CachedResult)"}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HqIT4swMwQ6J-7meyTeYpAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportHasPrivilegesAction.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.user.TransportHasPrivilegesAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbfA"}} -{"Stackframe": {"function": {"name": "vfs_getattr"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9-9BWMl1zWi7QmYHC4Pa9QAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "IndexWarmer.java"}, "function": {"name": "org.elasticsearch.index.IndexWarmer$TerminationHandle org.elasticsearch.index.IndexWarmer$FieldDataWarmer.warmReader(org.elasticsearch.index.shard.IndexShard, org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)", "offset": 2}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bdLIO9fg6Bsro1ZepYBZlQAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter.close()", "offset": 10}, "line": {"number": 1045}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Vd9q-B75g7LzoHcNvuGt6AAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction$$Lambda$7267+0x0000000802505950.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Mn5TdyGE5kHT5IZPOwhjjQAAAAAAAAEA"}} -{"Stackframe": {"file": {"name": "AbstractInternalTerms.java"}, "function": {"name": "org.elasticsearch.search.aggregations.InternalAggregation org.elasticsearch.search.aggregations.bucket.terms.AbstractInternalTerms.reduce(java.util.List, org.elasticsearch.search.aggregations.AggregationReduceContext)", "offset": 49}, "line": {"number": 309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nnQahSyjZjcubFBBmANNkAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ByteBufferIndexInput.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.apache.lucene.store.ByteBufferIndexInput$SingleBufferImpl.clone()"}, "line": {"number": 524}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yPvQnIOQUh6g8jc0H5_FCAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.ensureTranslogSynced(java.util.stream.Stream)"}, "line": {"number": 538}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_20iQw_1BgBh9m8HkEpgSwAAAAAAAABm"}} -{"Stackframe": {"file": {"name": "Lucene90BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.blocktree.Lucene90BlockTreeTermsWriter$TermsWriter.write(org.apache.lucene.util.BytesRef, org.apache.lucene.index.TermsEnum, org.apache.lucene.codecs.NormsProducer)", "offset": 7}, "line": {"number": 1031}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MFwffZyZJtav25MJBMtHFQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.CommitStats org.elasticsearch.index.shard.IndexShard.commitStats()"}, "line": {"number": 997}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "q6h8WxXFV1hXZzG4J6n18QAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "boolean java.nio.file.Files.exists(java.nio.file.Path, java.nio.file.LinkOption[])", "offset": 3}, "line": {"number": 2523}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "G_-zTfXD8My3SKYW7i2zfgAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "BulkByScrollParallelizationHelper.java"}, "function": {"name": "void org.elasticsearch.reindex.BulkByScrollParallelizationHelper.lambda$startSlicedAction$0(org.elasticsearch.index.reindex.BulkByScrollTask, org.elasticsearch.index.reindex.AbstractBulkByScrollRequest, org.elasticsearch.action.ActionType, org.elasticsearch.client.internal.Client, org.elasticsearch.cluster.node.DiscoveryNode, java.lang.Runnable, org.elasticsearch.action.ActionListener, java.lang.Void)"}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dVre-yWU3wOgyoQuLjZhuwAAAAAAAADc"}} -{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "java.lang.Runnable org.apache.lucene.util.bkd.BKDWriter.merge(org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, java.util.List, java.util.List)", "offset": 32}, "line": {"number": 512}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.core.security.authz.store.RoleReferenceIntersection$$Lambda$6598+0x00000008023c7d20.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJXMJ"}} -{"Stackframe": {"function": {"name": "zap_page_range"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JyqbvOZOS-cPzwOG-e359wAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "Retry.java"}, "function": {"name": "void org.elasticsearch.action.bulk.Retry$RetryHandler.execute(org.elasticsearch.action.bulk.BulkRequest)", "offset": 1}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3Di6rJSRIS5hkrkWGdmaSAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "CgroupV1SubsystemController.java"}, "function": {"name": "long jdk.internal.platform.cgroupv1.CgroupV1SubsystemController.getLongEntry(jdk.internal.platform.CgroupSubsystemController, java.lang.String, java.lang.String)"}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I0sQlDh6FUXeNLWFZDQN2wAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "JarFile.java"}, "function": {"name": "java.util.jar.JarFile$JarFileEntry java.util.jar.JarFile.getEntry0(java.lang.String)", "offset": 6}, "line": {"number": 578}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5e20AsvoCctGya4WV0ZQuwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.tracing.apm.APMTracer$$Lambda$6314+0x00000008022f0448.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6Oa3Gw3a2qG6TW8zVkC5sQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "BKDReader.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDReader$BKDPointTree.visitDocIDs(org.apache.lucene.index.PointValues$IntersectVisitor)", "offset": 1}, "line": {"number": 558}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlqJ"}} -{"Stackframe": {"function": {"name": "show_mountinfo"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a7duT-3ekt0-CTy-Ttf1FAAAAAAAAABY"}} -{"Stackframe": {"file": {"name": "JdkZlibEncoder.java"}, "function": {"name": "void io.netty.handler.codec.compression.JdkZlibEncoder.encodeSome(io.netty.buffer.ByteBuf, io.netty.buffer.ByteBuf)", "offset": 17}, "line": {"number": 267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sv_426CMlRs6plmdzYS7CwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Lucene50CompoundReader.java"}, "function": {"name": "java.util.Map org.apache.lucene.codecs.lucene50.Lucene50CompoundReader.readEntries(byte[], org.apache.lucene.store.Directory, java.lang.String)", "offset": 1}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a1rORv6uw2uAWC1se05SoQAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.lambda$handleRequest$2(java.lang.String, org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 5}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiwtE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/internal/poll/fd_unix.go"}, "function": {"name": "internal/poll.(*FD).Pread"}, "line": {"number": 178}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gD9pAArQSXL9gPSyVhbpxgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiwZu"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/internal/poll/fd_unix.go"}, "function": {"name": "internal/poll.(*FD).SetBlocking"}, "line": {"number": 132}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANcy7"}} -{"Stackframe": {"function": {"name": "iomap_write_actor"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ui0zBdPWvUVNqTnLKt7UfAAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "LambdaForm$MH"}, "function": {"name": "long java.lang.invoke.LambdaForm$MH+0x0000000801158c00.invoke(java.lang.Object, long, java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AU1UxR09cGAZB2y_cCThHQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "int org.apache.lucene.util.compress.LZ4.decompress(org.apache.lucene.store.DataInput, int, byte[], int)"}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N2e_V1FnhaoAEo890khZ-QAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "SdkHttpClient.java"}, "function": {"name": "org.apache.http.HttpResponse com.amazonaws.http.apache.client.impl.SdkHttpClient.execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.protocol.HttpContext)"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KB4O6teQl5VhWOOWlMIubQAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "void java.util.Arrays.fill(int[], int)"}, "line": {"number": 3180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApG0e"}} -{"Stackframe": {"function": {"name": "idr_find"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "opFI2iPPQrSoKgHSzuYsiwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "AbstractNioChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.flush0()", "offset": 1}, "line": {"number": 354}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4j39GsPrnYzZC8CsZdf-xgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ClientHandshakeContext.java"}, "function": {"name": "void sun.security.ssl.ClientHandshakeContext.kickstart()", "offset": 4}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXxtM"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/mapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.MapStr.GetValue"}, "line": {"number": 175}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SDMpSFhIouPZUvVwPhkiwwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "XContentType.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentType org.elasticsearch.xcontent.XContentType.fromMediaType(java.lang.String)"}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QX9AnwqbqejZFguJMvmClQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object no.found.runner.allocation.common.probe.InstanceProbe$$Lambda$3545.apply()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wn_WhsjtejkuoSs44OKzyAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "Cache.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.cache.Cache.get(java.lang.Object, long, boolean)", "offset": 1}, "line": {"number": 350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALts6"}} -{"Stackframe": {"function": {"name": "__x64_sys_getdents"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LMhs_MdxnqcQW9tN9tUCJAAAAAAAAADe"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.engine.InternalEngine.indexIntoLucene(org.elasticsearch.index.engine.Engine$Index, org.elasticsearch.index.engine.InternalEngine$IndexingStrategy)", "offset": 14}, "line": {"number": 1123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jNbJJD0szUDlnbhrWsIGkAAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.finishAuthentication(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)", "offset": 6}, "line": {"number": 325}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi9bk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file.go"}, "function": {"name": "os.(*File).wrapErr"}, "line": {"number": 377}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iZ81fGBmbgk1lRiTm25tUwAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.resolveAuthorizationInfo(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Jzl0rnZ8WwwkD280lWXtQwAAAAAAAADa"}} -{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "void org.apache.lucene.index.SegmentReader.(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.store.IOContext)", "offset": 26}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o-j45UNS6a4i2FH3VTZTCAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ReentrantLock.java"}, "function": {"name": "void java.util.concurrent.locks.ReentrantLock.unlock()"}, "line": {"number": 494}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vNebmjSwemT2pcHYKHFrrAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "java.lang.String org.elasticsearch.xcontent.provider.json.JsonXContentParser.text()"}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PiOrKx8ttRLABiq6GioeqAAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$1.onResponse(java.lang.Void)", "offset": 3}, "line": {"number": 559}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXc0k"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/tracer.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.(*Tracer).ConvertTrace"}, "line": {"number": 1366}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OxC1h7jFCaEBcIuprX6lQwAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zpP80T6FdaTGeY1BUSMu-AAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.metadata.Metadata$MetadataDiff.apply(java.lang.Object)"}, "line": {"number": 943}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5644+0x0000000801abdab0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjNJs"}} -{"Stackframe": {"function": {"name": "__netif_receive_skb_core"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALgLi"}} -{"Stackframe": {"function": {"name": "pipe_write"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b0AoyduVJ3t1JvB8AtIQXgAAAAAAAACQ"}} -{"Stackframe": {"file": {"name": "JvmInfo.java"}, "function": {"name": "void org.elasticsearch.monitor.jvm.JvmInfo.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 18}, "line": {"number": 283}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d55u1lPodAfLflRouVTMDQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "TrackingDirectoryWrapper.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.TrackingDirectoryWrapper.createOutput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz87"}} -{"Stackframe": {"function": {"name": "__audit_syscall_exit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9nOB-L_uGBJNchhukwELSQAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "BaseSSLSocketImpl.java"}, "function": {"name": "void sun.security.ssl.BaseSSLSocketImpl.setSoTimeout(int)", "offset": 1}, "line": {"number": 637}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vYLK8EfczhpoVt2UKE9CowAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "OtelEncodingUtils.java"}, "function": {"name": "boolean io.opentelemetry.api.internal.OtelEncodingUtils.isValidBase16String(java.lang.CharSequence)", "offset": 1}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L7GARYWDuHz8bjbnlOYgQQAAAAAAAACt"}} -{"Stackframe": {"file": {"name": "BulkOperationPacked.java"}, "function": {"name": "void org.apache.lucene.util.packed.BulkOperationPacked.encode(long[], int, byte[], int, int)", "offset": 2}, "line": {"number": 222}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ybCcUk4-fZcYJk9ygl24tgAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.executeQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)"}, "line": {"number": 428}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 2}, "line": {"number": 507}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f5TZuolTm8PTdIr3znBu7AAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "NormsConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.NormsConsumer.merge(org.apache.lucene.index.MergeState)", "offset": 7}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TIqYHzSLJiXVx4krD2dbMgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Double.java"}, "function": {"name": "double java.lang.Double.parseDouble(java.lang.String)"}, "line": {"number": 543}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChrzn"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map.go"}, "function": {"name": "reflect.mapiterinit"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_c66iRIhxEMceXexHDGFpwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "boolean io.netty.util.concurrent.DefaultPromise.trySuccess(java.lang.Object)"}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ7gC"}} -{"Stackframe": {"function": {"name": "madvise_free_single_vma"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGsF2"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/syscall_unix.go"}, "function": {"name": "internal/poll.(*FD).Write.func1"}, "line": {"number": 212}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Sz9vLWSfEDywRabkpQbmLgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesProducer.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene80.Lucene80DocValuesProducer$DenseNumericDocValues.docID()"}, "line": {"number": 435}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L6vfdtdAVlFc2SCnm_d6sAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "DefaultHttpHeaders.java"}, "function": {"name": "io.netty.handler.codec.http.HttpHeaders io.netty.handler.codec.http.DefaultHttpHeaders.set(java.lang.CharSequence, java.lang.Object)"}, "line": {"number": 169}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JN-dgFkoqSE-dHBUib5RMAAAAAAAAAB-"}} -{"Stackframe": {"file": {"name": "LifecyclePolicy.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.LifecyclePolicy.toSteps(org.elasticsearch.client.Client)", "offset": 23}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-MYp"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/auparse.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.hexDecode"}, "line": {"number": 471}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RMYtu6lQVhfanHasngCNQAAAAAAAAAB4"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.settings.Settings.getAsStructuredMap()", "offset": 8}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dxSK3xE1ZB_w58ylB87r2QAAAAAAAAP4"}} -{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment org.apache.lucene.index.DocumentsWriterPerThread.flush(org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 86}, "line": {"number": 395}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JYDGNyrxwMciptwAXDUuRwAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "AbstractAsyncTask.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractAsyncTask.run()", "offset": 8}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fqMuFCyw6Ke6rdEcCkNIrAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "org.elasticsearch.transport.TransportRequest org.elasticsearch.transport.RequestHandlerRegistry.newRequest(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBeQ"}} -{"Stackframe": {"function": {"name": "get_futex_key"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-I0qeKDe1hMr58wzZHuN2wAAAAAAAABi"}} -{"Stackframe": {"file": {"name": "HttpRequestExecutor.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.protocol.HttpRequestExecutor.doSendRequest(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext)", "offset": 20}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pa6Ztq8N2NUyA7Y8HvxliwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.publishFlushedSegments(boolean)"}, "line": {"number": 5791}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YqilTZwyrgCHxD7ZEdwnpAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ElasticsearchReaderManager.java"}, "function": {"name": "org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader org.elasticsearch.index.engine.ElasticsearchReaderManager.refreshIfNeeded(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)"}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nPXIxd1Knp6dqjD3Kv4egwAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "Formatter.java"}, "function": {"name": "char java.util.Formatter.getZero(java.util.Locale)", "offset": 1}, "line": {"number": 2437}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AMk_trcRDqgWwE9O1EQdVAAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)", "offset": 1}, "line": {"number": 576}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABV59P"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/processmanager/ebpf.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/processmanager.(*ebpfMapsImpl).UpdateExeIDToStackDeltas"}, "line": {"number": 565}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2H6lDfKeOu7VKKUjaM45wgAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Rq9zkaF6sUD5FfpUB-KQEwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "QuotaAwareFileSystemProvider.java"}, "function": {"name": "void co.elastic.cloud.quotaawarefs.QuotaAwareFileSystemProvider.checkAccess(java.nio.file.Path, java.nio.file.AccessMode[])"}, "line": {"number": 326}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi9xK"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file.go"}, "function": {"name": "os.ReadFile"}, "line": {"number": 705}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "stWZFEwn_P2axA2CCLL2dAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "BulkScorer.java"}, "function": {"name": "void org.apache.lucene.search.BulkScorer.score(org.apache.lucene.search.LeafCollector, org.apache.lucene.util.Bits)"}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IG23e_HaXuz8McPqppVmPgAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.updateDocument(org.apache.lucene.index.Term, java.lang.Iterable)"}, "line": {"number": 1757}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S0Vcinvs4UXd1rhNSjovpwAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.acceptState(org.elasticsearch.cluster.ClusterState)", "offset": 5}, "line": {"number": 449}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xpf67p7tjON1QEeEp4iyEwAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.io.stream.StreamInput.readMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader, java.util.function.IntFunction)", "offset": 6}, "line": {"number": 621}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RTvkaysuyXpxT9w4uvkQVwAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObjectOrField(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.Mapper)", "offset": 1}, "line": {"number": 415}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_YKuYdYS6GrfldL4xVlQpAAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.shard.DocsStats org.elasticsearch.index.engine.Engine.docStats()", "offset": 1}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "alOzD_OIsLxTGArRLVDCpAAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "Retry.java"}, "function": {"name": "void org.elasticsearch.action.bulk.Retry.withBackoff(java.util.function.BiConsumer, org.elasticsearch.action.bulk.BulkRequest, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HgscutZGPI6M_OmJZjfOqwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "org.elasticsearch.transport.TransportResponse org.elasticsearch.transport.TransportService$4.read(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 863}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sDpfjMchcu11LmkvPxu-sgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Checkpoint.java"}, "function": {"name": "void org.elasticsearch.index.translog.Checkpoint.write(java.nio.channels.FileChannel, java.nio.file.Path, org.elasticsearch.index.translog.Checkpoint)"}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_iCcRlhs7iF8GyQDr_i9yQAAAAAAAADW"}} -{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.indices.NodeIndicesStats org.elasticsearch.indices.IndicesService.stats(org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 28}, "line": {"number": 411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9zPkZE4RJJmPlROxnxkxmwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.s3.SocketAccess$$Lambda$4883.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LNiGyjoSSwLd2vmEwDcgqQAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.commit(long, long)", "offset": 3}, "line": {"number": 737}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_-XUdumhTxHCVZ0GQJxIggAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ChannelActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.ChannelActionListener.onResponse(java.lang.Object)"}, "line": {"number": 16}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CiUrWPmnDMXwCZTK8RzHHAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$1.hasNext()"}, "line": {"number": 1708}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACjCG3"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/syscall_linux_amd64.go"}, "function": {"name": "os.lstatNolog"}, "line": {"number": 68}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-VgZWZvvoe_9HhGDZJCzLgAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.processEvents(boolean)", "offset": 1}, "line": {"number": 5426}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M9mknNUv7hMcc_nUxX8nQwAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.index.SoftDeletesRetentionMergePolicy.getScorer(org.apache.lucene.search.Query, org.apache.lucene.index.CodecReader)", "offset": 3}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACniOn"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).literalStore"}, "line": {"number": 247}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yu_6L4HRShupVCJ8N-cmXQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "NodeClient.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.client.node.NodeClient.executeLocally(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hhKEJNzg5B_JhARG4cFP2QAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "ThreadLocal.java"}, "function": {"name": "java.lang.ThreadLocal$ThreadLocalMap$Entry java.lang.ThreadLocal$ThreadLocalMap.getEntryAfterMiss(java.lang.ThreadLocal, int, java.lang.ThreadLocal$ThreadLocalMap$Entry)", "offset": 10}, "line": {"number": 534}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MU7gfP_SLESDVzu3Rjfw3gAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.lambda$writeCollection$34(org.elasticsearch.common.io.stream.StreamOutput, org.elasticsearch.common.io.stream.Writeable)"}, "line": {"number": 1141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nnQpNJwjtxRmq8gs2W8P-wAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "FieldInfos.java"}, "function": {"name": "org.apache.lucene.index.FieldInfos org.apache.lucene.index.FieldInfos$Builder.finish()", "offset": 1}, "line": {"number": 586}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6IAXoYeI62bQppY-qjqJ0AAAAAAAAADC"}} -{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.executeOneRequest(com.amazonaws.http.AmazonHttpClient$RequestExecutor$ExecOneRequestParams)", "offset": 32}, "line": {"number": 1297}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "frJcVQQvYZxinCGo-1mmtQAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "void org.elasticsearch.index.store.Store$StoreDirectory.deleteFile(java.lang.String, java.lang.String)", "offset": 1}, "line": {"number": 745}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-SYk"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.addExecveRecord"}, "line": {"number": 396}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LDND5h4OnyzOTzZE3cQ4PQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "MappedByteBufferIndexInputProvider.java"}, "function": {"name": "java.lang.Throwable org.apache.lucene.store.MappedByteBufferIndexInputProvider.lambda$newBufferCleaner$0(java.lang.invoke.MethodHandle, java.nio.ByteBuffer)"}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vCfdueLOBjh39THnpz1A2AAAAAAAAABq"}} -{"Stackframe": {"file": {"name": "CodecUtil.java"}, "function": {"name": "long org.apache.lucene.codecs.CodecUtil.checksumEntireFile(org.apache.lucene.store.IndexInput)", "offset": 7}, "line": {"number": 546}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LY7tgvqAn-qe9CkDVBt8XQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress.(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAClqdE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/net.go"}, "function": {"name": "net.(*conn).Read"}, "line": {"number": 179}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACwXCP"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/prometheus/procfs@v0.6.0/internal/util/readfile.go"}, "function": {"name": "github.com/prometheus/procfs/internal/util.ReadFileNoStat.func1"}, "line": {"number": 34}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipGH"}} -{"Stackframe": {"function": {"name": "__x64_sys_recvfrom"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 2}, "line": {"number": 519}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gLxo4P9G1lrSGzP2Az28-wAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.util.Iterator java.util.Collections$SynchronizedCollection.iterator()"}, "line": {"number": 2062}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DaLOu1u8r2OzUEp60ph7fAAAAAAAAAB3"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.innerParseObject(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, org.elasticsearch.xcontent.XContentParser, java.lang.String, org.elasticsearch.xcontent.XContentParser$Token)", "offset": 13}, "line": {"number": 504}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Zr-QUGQ5d7tVx5lbmJB5XAAAAAAAAACO"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult io.netty.handler.ssl.SslHandler.wrap(io.netty.buffer.ByteBufAllocator, javax.net.ssl.SSLEngine, io.netty.buffer.ByteBuf, io.netty.buffer.ByteBuf)", "offset": 33}, "line": {"number": 1042}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XcCMywL5s8Msv7wl9SHdqgAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.tracing.apm.APMTracer$$Lambda$6311+0x00000008022f0218.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6"}} -{"Stackframe": {"file": {"name": "FieldAndDocumentLevelSecurityRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.FieldAndDocumentLevelSecurityRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 35}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QgvGkTCGw4jVdmztyjCs0wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ImmutableOpenMap.java"}, "function": {"name": "int org.elasticsearch.common.collect.ImmutableOpenMap$Builder.putAll(java.lang.Iterable)"}, "line": {"number": 291}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQI"}} -{"Stackframe": {"function": {"name": "audit_filter_rules.constprop.21"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ReecyGgWWJgzc543tXNeIAAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "SecondaryAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator.authenticateAndAttachToContext(org.elasticsearch.rest.RestRequest, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "df77oR1muCgX-foWG34qJQAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "java.util.Set org.elasticsearch.cluster.metadata.IndexNameExpressionResolver.resolveExpressions(org.elasticsearch.cluster.ClusterState, java.lang.String[])", "offset": 3}, "line": {"number": 390}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1NKEit4WFBpS_IB-fxuxYQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ParserBase.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.base.ParserBase.getCurrentName()"}, "line": {"number": 338}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "chydKuVqrfNMM3N0EvrXLQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.StandardDirectoryReader$$Lambda$6962+0x0000000801d40000.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1Gk-3aGO58JRRoKz-_WOKAAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void com.amazonaws.http.conn.$Proxy30.connect(org.apache.http.HttpClientConnection, org.apache.http.conn.routing.HttpRoute, int, org.apache.http.protocol.HttpContext)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi8U6"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file.go"}, "function": {"name": "os.(*File).ReadAt"}, "line": {"number": 128}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RwOT5knpVM2c7mDKFGRRsgAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "boolean org.apache.lucene.codecs.lucene90.IndexedDISI.advanceExact(int)", "offset": 4}, "line": {"number": 460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEOMY"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map.go"}, "function": {"name": "runtime.makeBucketArray"}, "line": {"number": 362}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Be3_J5NuUP54cqMure6K4AAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "PerFieldMapperCodec.java"}, "function": {"name": "boolean org.elasticsearch.index.codec.PerFieldMapperCodec.useBloomFilter(java.lang.String)", "offset": 2}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "80G6zvzFPytbRyfwuXWQcAAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "sun.nio.fs.UnixPath sun.nio.fs.UnixPath.getName(int)", "offset": 15}, "line": {"number": 347}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rovdyrVTiLcrORXAjvCRXwAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "HttpContentEncoder.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpContentEncoder.encode(io.netty.buffer.ByteBuf, java.util.List)"}, "line": {"number": 336}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcBE"}} -{"Stackframe": {"function": {"name": "__do_sys_newfstatat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9IYt1kTyVwHBmL5XBentkwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$$Lambda$6134+0x0000000802374ef0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JslOyX-wUGFxc5cwIg6Z3wAAAAAAAAB9"}} -{"Stackframe": {"file": {"name": "BufferedIndexInput.java"}, "function": {"name": "void org.apache.lucene.store.BufferedIndexInput.refill()", "offset": 15}, "line": {"number": 291}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UM3h48-oBMi00mRAqhB4IAAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.implDelete(java.nio.file.Path, boolean)", "offset": 6}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BNrNtUxjbxaAxGXdc-eVXAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkPermission(java.security.Permission)"}, "line": {"number": 408}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8ijKSIS-axMtZNAQCt9HjQAAAAAAAABJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 39}, "line": {"number": 390}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kUPrBmtG7HWSEiOu1vXGZgAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "RestMainAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestMainAction.lambda$prepareRequest$0(org.elasticsearch.client.node.NodeClient, org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel)"}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAi46V"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/reporter/reporter.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/reporter.Start.func3"}, "line": {"number": 771}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4M7YPHJs-s48WlQKqWc80QAAAAAAAABN"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 12}, "line": {"number": 292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IlEPoKEe0ASUdOdY0aYQ-AAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "WeakHashMap.java"}, "function": {"name": "void java.util.WeakHashMap.expungeStaleEntries()"}, "line": {"number": 323}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5ClizBEH2YtrmYjg0ZZ1kgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$RunAfterActionListener.onResponse(java.lang.Object)"}, "line": {"number": 339}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACOoWc"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/prometheus/procfs@v0.0.11/proc_stat.go"}, "function": {"name": "github.com/prometheus/procfs.Proc.Stat"}, "line": {"number": 116}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-i2c"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/numcpu/numcpu.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/opt.Uint.ValueOr"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtAp"}} -{"Stackframe": {"function": {"name": "ep_item_poll.isra.16"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vFHpuMfxurJGYl7N87FnEAAAAAAAAADC"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node[] java.util.HashMap.resize()", "offset": 34}, "line": {"number": 718}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i2b0pXSJCuV5_a0WzWWWswAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "boolean org.apache.lucene.index.ReadersAndUpdates.isFullyDeleted()"}, "line": {"number": 748}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cqDrFg2lVIlEaumPl_y8qQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "ProtectionDomain.java"}, "function": {"name": "boolean java.security.ProtectionDomain.implies(java.security.Permission)", "offset": 7}, "line": {"number": 321}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vDU7E1ww8G9noy7HUAb7kQAAAAAAAABa"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.writeIncrementalStateAndCommit(long, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)", "offset": 11}, "line": {"number": 777}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XQ2XGiubG5Brz-m8r0iBRQAAAAAAAACK"}} -{"Stackframe": {"file": {"name": "ReaderPool.java"}, "function": {"name": "org.apache.lucene.index.ReadersAndUpdates org.apache.lucene.index.ReaderPool.get(org.apache.lucene.index.SegmentCommitInfo, boolean)", "offset": 6}, "line": {"number": 370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eIKZHUnkOnlIeLcFKA7B_wAAAAAAAACc"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.checkpoint(org.apache.lucene.index.SegmentInfos, boolean)", "offset": 13}, "line": {"number": 529}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pKLBb0_sPdt_IxvNqtQh6AAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.apache.lucene.search.Weight.bulkScorer(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FeTq3grQxZLpQxyGC-4wQQAAAAAAAABF"}} -{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "void co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.onEvent(co.elastic.apm.agent.report.ReportingEvent, long, boolean)", "offset": 9}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.scoreRange(org.apache.lucene.search.LeafCollector, org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.search.TwoPhaseIterator, org.apache.lucene.util.Bits, int, int)", "offset": 5}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1qPLJVVQ8TzPBEa8EsrzjgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain$$Lambda$7301+0x000000080250e258.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LlS_2xs10ssihc5Uh6NqzgAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "DataOutput.java"}, "function": {"name": "void org.apache.lucene.store.DataOutput.writeVInt(int)", "offset": 4}, "line": {"number": 191}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "IndexShardOperationPermits.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShardOperationPermits.acquire(org.elasticsearch.action.ActionListener, java.lang.String, boolean, java.lang.Object)", "offset": 5}, "line": {"number": 198}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lfyZgP4wM9C7TqiQm2XJ9AAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeBytes(byte[], int)"}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WRcdI0lls5vzaErIK0sorwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "TermStates.java"}, "function": {"name": "org.apache.lucene.index.TermsEnum org.apache.lucene.index.TermStates.loadTermsEnum(org.apache.lucene.index.LeafReaderContext, org.apache.lucene.index.Term)"}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Zb4pGe2cTLCA76HvxkNMNwAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "ByteBuffer.java"}, "function": {"name": "java.nio.ByteBuffer java.nio.ByteBuffer.getArray(int, byte[], int, int)", "offset": 18}, "line": {"number": 932}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACinNY"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/sort/zfuncversion.go"}, "function": {"name": "sort.doPivot_func"}, "line": {"number": 119}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OI-IULopKcZX-PRLno1wGAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Setting.get(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 427}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$AuthorizationResultListener.onResponse(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationResult)", "offset": 12}, "line": {"number": 967}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x6pjgiIKZLxWUGJeU9baiQAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "Lucene90PostingsReader.java"}, "function": {"name": "org.apache.lucene.index.PostingsEnum org.apache.lucene.codecs.lucene90.Lucene90PostingsReader$BlockDocsEnum.reset(org.apache.lucene.codecs.lucene90.Lucene90PostingsFormat$IntBlockTermState, int)", "offset": 8}, "line": {"number": 388}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qWdmqD7_YZgrJlkim5VjDgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.onResponse(java.lang.Object)"}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f5pCmW13zl5OWUDLG_ClrwAAAAAAAABN"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.executeQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)", "offset": 9}, "line": {"number": 635}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bSqWaYKtavFZqjY4T_025wAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "ThreadLocal.java"}, "function": {"name": "java.lang.Object java.lang.ThreadLocal.get()", "offset": 3}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mIhHJLRWLV08bvGOk_MaUQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.flush()", "offset": 1}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E5mpbycjP0OXdJ_6cK6YywAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "ClearScrollController.java"}, "function": {"name": "void org.elasticsearch.action.search.ClearScrollController.onFreedContext(boolean)", "offset": 5}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XlbiXkr6-Uo-2NyXQ7Mp2wAAAAAAAACP"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap.getNode(int, java.lang.Object)", "offset": 12}, "line": {"number": 582}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V5Uh0xtRoRXFV0_Z12MAFgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "AbstractQueuedSynchronizer.java"}, "function": {"name": "int java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node, int, boolean, boolean, boolean, long)"}, "line": {"number": 638}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9sYnFbigFrf_-fozodwm9QAAAAAAAABx"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "int org.apache.lucene.index.DefaultIndexingChain.processField(int, org.apache.lucene.index.IndexableField, long, int)", "offset": 13}, "line": {"number": 527}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bFNBCgHVi2ZK2yGNK4LXZgAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "OutboundMessage.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.transport.OutboundMessage.serialize(org.elasticsearch.common.io.stream.RecyclerBytesStreamOutput)", "offset": 9}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACOBYT"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/regexp.go"}, "function": {"name": "regexp.(*Regexp).allMatches"}, "line": {"number": 776}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Vvfb_5gZPiPIHF6du6V50AAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap.putAll(java.util.Map)"}, "line": {"number": 786}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "USMjRBbrrLhAC7pTy9H_CQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "java.lang.Throwable java.lang.Throwable.fillInStackTrace()", "offset": 2}, "line": {"number": 799}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACW0qk"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/gopkg.in/yaml.v2@v2.3.0/decode.go"}, "function": {"name": "gopkg.in/yaml%2ev2.(*parser).mapping"}, "line": {"number": 217}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADHhwH"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/pipeline/client.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/pipeline.(*client).publish"}, "line": {"number": 120}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_NQ"}} -{"Stackframe": {"function": {"name": "__do_page_fault"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8PLzoB-u4hzDZ_WKIg8FxQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.read(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)"}, "line": {"number": 230}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "teJJV9EemN5sVZsuqSNgHQAAAAAAAABj"}} -{"Stackframe": {"file": {"name": "CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.finishDocument()", "offset": 10}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL73j"}} -{"Stackframe": {"function": {"name": "mntput"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGMNk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.recvfrom"}, "line": {"number": 1578}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA0P1"}} -{"Stackframe": {"file": {"name": "runtime/os_linux.go"}, "function": {"name": "runtime.futexwakeup"}, "line": {"number": 82}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o9I8XHop3y7uLb8wdADAN______Aibs5"}} -{"Stackframe": {"function": {"name": "__this_module"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAABhsC"}} -{"Stackframe": {"function": {"name": "xfs_buf_get_map"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n7D9rF39YwNZHp3pgAyGywAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "java.lang.String com.typesafe.config.impl.SimpleConfig.getString(java.lang.String)"}, "line": {"number": 250}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nK7Uuz4qfuv-NRdHGyIKnQAAAAAAAACF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 133}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "udDAwwA9xVYrw2iCThm3zwAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction.lambda$finishHim$1()"}, "line": {"number": 302}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uos5blq03yBGQs7NU0gUPAAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 28}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEh"}} -{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.getRoles(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)", "offset": 48}, "line": {"number": 252}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oiHXy47Qw5euydEoPUexRgAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "PrioritizedEsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.run()", "offset": 6}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j_lFur9yXr9K2vH2fseIFgAAAAAAAAFd"}} -{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.dataformat.smile.SmileParser.nextFieldName()", "offset": 58}, "line": {"number": 830}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD5t-I"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/datastore/datastore.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/datastore.(*boltBucket).Store"}, "line": {"number": 142}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASSle"}} -{"Stackframe": {"function": {"name": "aa_path_name"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pdsn9uDbWKBy5gTXvVifLAAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "void org.elasticsearch.common.settings.Setting.checkDeprecation(org.elasticsearch.common.settings.Settings)", "offset": 7}, "line": {"number": 563}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAGv"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.index.SegmentMerger.merge()", "offset": 42}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Kufl841KLBEdWpuT5bLXSwAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "LockSupport.java"}, "function": {"name": "void java.util.concurrent.locks.LockSupport.parkUntil(java.lang.Object, long)", "offset": 2}, "line": {"number": 275}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zqr5tutmGWQ5UPY6c0BG6QAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "int org.apache.lucene.index.ReadersAndUpdates$2$1.nextDoc()"}, "line": {"number": 427}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3FmF0iegYInyRffZHSr8AwAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.flush(io.netty.channel.ChannelHandlerContext)", "offset": 15}, "line": {"number": 792}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dZbEvj5KNLRaqtv4ShlGOgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "ConfigException.java"}, "function": {"name": "void com.typesafe.config.ConfigException$WrongType.(com.typesafe.config.ConfigOrigin, java.lang.String, java.lang.String, java.lang.String)"}, "line": {"number": 98}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oFsDQT5fo33-zFKmVhzmdQAAAAAAAAGI"}} -{"Stackframe": {"file": {"name": "IntroSorter.java"}, "function": {"name": "void org.apache.lucene.util.IntroSorter.sort(int, int, int)", "offset": 71}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "doiA6ULFI1JAjBDnJzvkxwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "Signature.java"}, "function": {"name": "boolean java.security.Signature.verify(byte[])", "offset": 1}, "line": {"number": 790}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NP8XT_pS7hy5hCFdTj7XugAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Lucene90NormsProducer.java"}, "function": {"name": "boolean org.apache.lucene.codecs.lucene90.Lucene90NormsProducer$SparseNormsIterator.advanceExact(int)"}, "line": {"number": 205}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cQ6Qsfe6NvfD6UlZmix01AAAAAAAAAC6"}} -{"Stackframe": {"file": {"name": "AbstractNioByteChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read()", "offset": 35}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X3vNLlXVyKftCeY5HzEuDAAAAAAAAARj"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.mergeMiddle(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergePolicy)", "offset": 136}, "line": {"number": 4823}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WVw4-tNMtcGbe_AUExiiqwAAAAAAAAFT"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 339}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f_a_qdoBA55O8a7qgwDK7gAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ID7BrwgJSBosWED19qH1QgAAAAAAAAEu"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 302}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjoVf"}} -{"Stackframe": {"function": {"name": "rtnl_dump_ifinfo"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction)"}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACHfKN"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/reflect/value.go"}, "function": {"name": "reflect.Value.MapIndex"}, "line": {"number": 1189}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ce11JNj6CHxvgvTjEqpINAAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 27}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8JoAbV1Ay-japSZaScpfIgAAAAAAAABy"}} -{"Stackframe": {"file": {"name": "AbstractInternalTerms.java"}, "function": {"name": "void org.elasticsearch.search.aggregations.bucket.terms.AbstractInternalTerms.reduceMergeSort(java.util.List, org.elasticsearch.search.aggregations.BucketOrder, org.elasticsearch.search.aggregations.AggregationReduceContext, java.util.function.Function)", "offset": 12}, "line": {"number": 194}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MjWXlV4UHIC8t2yCFMu9sQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$2.onResponse(java.lang.Object)"}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cuz7PAFLw8DoVVSTVsTZvwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "FilterIndexOutput.java"}, "function": {"name": "long org.elasticsearch.common.lucene.store.FilterIndexOutput.getChecksum()"}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MsK4Bwxs_uq10wCeumAdWQAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 2}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RTsb0P_jn8QDundSxhSuUQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 222}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RjkBo2z96NcmW7YwRrcnBQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "CompositeValuesCollectorQueue.java"}, "function": {"name": "org.elasticsearch.search.aggregations.LeafBucketCollector org.elasticsearch.search.aggregations.bucket.composite.CompositeValuesCollectorQueue.getLeafCollector(org.apache.lucene.index.LeafReaderContext, org.elasticsearch.search.aggregations.LeafBucketCollector)"}, "line": {"number": 224}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2NbC_OVFN-ISjk_Zldz8JAAAAAAAAAEi"}} -{"Stackframe": {"file": {"name": "DefaultRestChannel.java"}, "function": {"name": "void org.elasticsearch.http.DefaultRestChannel.sendResponse(org.elasticsearch.rest.RestResponse)", "offset": 50}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hBoRfaQldB4X-nJDu-sQZwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.CopyBytesSocketChannel.doReadBytes(io.netty.buffer.ByteBuf)"}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAADP-E"}} -{"Stackframe": {"file": {"name": "internal/poll/fd_unix.go"}, "function": {"name": "internal/poll.(*FD).Read"}, "line": {"number": 167}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u39hB2o_bkkn64I33Zf2OAAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "BufferedInputStream.java"}, "function": {"name": "int java.io.BufferedInputStream.read(byte[], int, int)", "offset": 9}, "line": {"number": 343}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NECbNy4YVdAOEMCpP2EgZgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 1293}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a67hy6D4_aH__IrzfMid7wAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "PrioritizedEsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.runAndClean(java.lang.Runnable)"}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIRA"}} -{"Stackframe": {"function": {"name": "ip_protocol_deliver_rcu"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACETwk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map.go"}, "function": {"name": "runtime.growWork_faststr"}, "line": {"number": 1082}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxRdb"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.(*linuxSystem).Self"}, "line": {"number": 1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EzXhqpVZbBVZ4WOGuhdAKgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.lambda$null$0(org.apache.lucene.util.IOUtils$IOConsumer, java.lang.Object)"}, "line": {"number": 645}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2RtTnfBMr_4uuoJgeW3L3AAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.discovery.PeerFinder$$Lambda$4205+0x000000080186d400.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-9vJvNaoETo4mFOCIvFveQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "FilterCodecReader.java"}, "function": {"name": "int org.apache.lucene.index.FilterCodecReader.maxDoc()"}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGLyS"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.fstatat"}, "line": {"number": 1480}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7fRblGdKRlNY9QjBlaIJIgAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "Lucene94FieldInfosFormat.java"}, "function": {"name": "org.apache.lucene.index.FieldInfos org.apache.lucene.codecs.lucene94.Lucene94FieldInfosFormat.read(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.store.IOContext)", "offset": 2}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B1984Ng46sq2rHP9JYVyYgAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.updateDocument(org.apache.lucene.index.Term, java.lang.Iterable)"}, "line": {"number": 1818}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j0VsjQ_de28UC7IMpEE77QAAAAAAAABp"}} -{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "org.apache.lucene.index.CodecReader org.apache.lucene.index.SoftDeletesRetentionMergePolicy.applyRetentionQuery(java.lang.String, org.apache.lucene.search.Query, org.apache.lucene.index.CodecReader)", "offset": 27}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1Dm6rh0RP-6XJIANW7bI0wAAAAAAAABy"}} -{"Stackframe": {"file": {"name": "IndexLifecycleService.java"}, "function": {"name": "void org.elasticsearch.xpack.ilm.IndexLifecycleService.triggerPolicies(org.elasticsearch.cluster.ClusterState, boolean)", "offset": 21}, "line": {"number": 306}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJY-y"}} -{"Stackframe": {"function": {"name": "__pmd_alloc"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y5AhuW5zTFbvkEYRGrJ6zgAAAAAAAAEX"}} -{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.fs.UnixChannelFactory.open(int, sun.nio.fs.UnixPath, java.lang.String, sun.nio.fs.UnixChannelFactory$Flags, int)", "offset": 60}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PPvCYyu5yFBBY965mL2tSwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.AbstractObjectParser$$Lambda$459.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8eUtMUHOvPaofxtlsaqIIgAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "SetPriorityAction.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.SetPriorityAction.toSteps(org.elasticsearch.client.Client, java.lang.String, org.elasticsearch.xpack.core.ilm.Step$StepKey)", "offset": 3}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)", "offset": 5}, "line": {"number": 753}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ihprad0bkU-u2IU9StodIgAAAAAAAAEq"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.applyChanges(org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState, java.lang.String, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder)", "offset": 25}, "line": {"number": 497}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NoQs3VwaHMDOBwQpEEXNvQAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "BaseNodeResponse.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.BaseNodeResponse.(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.node.DiscoveryNode)", "offset": 1}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HPEMdrfmmMUp_F2geV_WtQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.reindex.ScrollableHitSource$$Lambda$9075+0x000000080282ae68.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jtLclmz91Mno-H7piVAA2QAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "void org.elasticsearch.index.translog.Translog$Index.write(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 6}, "line": {"number": 1243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bbwmv37dMI1yN-YGmVVIuwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "HandledTransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.HandledTransportAction$TransportHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RvgpC2THNLDZ9bIizRZhbwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "SessionOutputBufferImpl.java"}, "function": {"name": "void org.apache.http.impl.io.SessionOutputBufferImpl.streamWrite(byte[], int, int)", "offset": 1}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIq79"}} -{"Stackframe": {"function": {"name": "lru_cache_add"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ToVtc2P50kV-QGj3la9_ZAAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.store.StoreStats org.elasticsearch.index.shard.IndexShard.storeStats()", "offset": 7}, "line": {"number": 1110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YBsRiOSYyzJilvtbmeHiPwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "void io.netty.channel.DefaultChannelPipeline$HeadContext.channelReadComplete(io.netty.channel.ChannelHandlerContext)", "offset": 2}, "line": {"number": 1417}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NB9Wtr18BllcC8telVa6ewAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "NativeThread.java"}, "function": {"name": "long sun.nio.ch.NativeThread.current()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x69oGDnn9-Q70zg0yENhkwAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", "offset": 6}, "line": {"number": 1130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zXY2fMPD2q8JxxSeQ4an4AAAAAAAAADb"}} -{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.forwardFragments(org.elasticsearch.transport.TcpChannel, java.util.ArrayList)", "offset": 14}, "line": {"number": 147}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XadgtJFQ10pxn_-sij7tlQAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "void java.util.stream.AbstractPipeline.copyInto(java.util.stream.Sink, java.util.Spliterator)", "offset": 3}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_QheDKcYlWwsFE4koFnZNgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "void org.elasticsearch.common.settings.Settings.toXContentFlat(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.common.settings.Settings)"}, "line": {"number": 692}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NyEmK1WeS5zJElmJz1lALAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ArrayUtil.java"}, "function": {"name": "byte[] org.apache.lucene.util.ArrayUtil.growExact(byte[], int)"}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NK6q-mYZhWe1E7afoKkwiQAAAAAAAADY"}} -{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.doHandleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 27}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACli4"}} -{"Stackframe": {"function": {"name": "capable"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-0JV"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/gosigar@v0.14.2/sigar_linux_common.go"}, "function": {"name": "github.com/elastic/gosigar.(*ProcMem).Get"}, "line": {"number": 240}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H"}} -{"Stackframe": {"function": {"name": "__netif_receive_skb"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageInboundHandler$$Lambda$6062+0x0000000802359260.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADQjKN"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-lumber@v0.1.0/client/v2/client.go"}, "function": {"name": "github.com/elastic/go-lumber/client/v2.(*Client).Send"}, "line": {"number": 145}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FD67YgaFeLuqBai5R0qQdQAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "ThreadLocal.java"}, "function": {"name": "java.lang.ThreadLocal$ThreadLocalMap$Entry java.lang.ThreadLocal$ThreadLocalMap.getEntry(java.lang.ThreadLocal)", "offset": 5}, "line": {"number": 439}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bHBG5nCjuJ3R3DK71capIAAAAAAAAAD3"}} -{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ObjectParser.parseSub(org.elasticsearch.common.xcontent.XContentParser, org.elasticsearch.common.xcontent.ObjectParser$FieldParser, java.lang.String, java.lang.Object, java.lang.Object)", "offset": 39}, "line": {"number": 577}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABGF-"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.preemptone"}, "line": {"number": 5404}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Vo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "int sun.nio.fs.UnixNativeDispatcher.open0(long, int, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y_qFQxT1b6IwL0Y-bhoIvAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.close(java.io.Closeable[])"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "psNLvt90kdVq_EPYAmn_WAAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.lambda$writeAtomic$0(org.elasticsearch.common.blobstore.BlobContainer, java.lang.String, org.elasticsearch.common.bytes.BytesReference)", "offset": 1}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lk2v4TOQ7YAIfcZCzhq0cgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ShardPath.java"}, "function": {"name": "java.nio.file.Path org.elasticsearch.index.shard.ShardPath.getRootStatePath()"}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile.lambda$inbound$1(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.Version, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 8}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uZeXOJajIKqLKk4-05Cj8gAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FB2lbICPeg4uVJ_bp0LkUgAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.Engine.refreshNeeded()", "offset": 7}, "line": {"number": 1017}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hmcQZSO0MWvUeViJZfR2DwAAAAAAAABI"}} -{"Stackframe": {"file": {"name": "Lucene90PointsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90PointsWriter.(org.apache.lucene.index.SegmentWriteState, int, double)", "offset": 10}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACIXaZ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/binary/binary.go"}, "function": {"name": "encoding/binary.Read"}, "line": {"number": 260}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgc.go"}, "function": {"name": "runtime.gcBgMarkWorker.func2"}, "line": {"number": 1981}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x2xX1866WR_d0Ce6QrSS_gAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext.lambda$captureAsWriteable$3(org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct, org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi6nN"}} -{"Stackframe": {"function": {"name": "__skb_datagram_iter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FqLNhJuVNl0vdzJ9vBCqwQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "OutboundMessage.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundMessage$Response.writeVariableHeader(org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gbCFQS2suYv46rP_aUsebAAAAAAAAABp"}} -{"Stackframe": {"file": {"name": "FieldsIndexWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.FieldsIndexWriter.finish(int, long, org.apache.lucene.store.IndexOutput)", "offset": 7}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACKCak"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bufio/bufio.go"}, "function": {"name": "bufio.(*Reader).fill"}, "line": {"number": 101}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACY8z"}} -{"Stackframe": {"function": {"name": "__x64_sys_clone"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChWmL"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/msize.go"}, "function": {"name": "runtime.growslice"}, "line": {"number": 16}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3eFqxdiFdaTGeVIFXzFrRAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.metadata.Metadata$MetadataDiff.apply(java.lang.Object)"}, "line": {"number": 896}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wd8N2TZ-uzaPC06YON_j_AAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "PrioritizedEsThreadPoolExecutor.java"}, "function": {"name": "java.lang.Runnable org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor.wrapRunnable(java.lang.Runnable)", "offset": 5}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_AVVUX91IwF8UFsgz3IpgAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkDelete(java.lang.String)"}, "line": {"number": 870}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlj9e"}} -{"Stackframe": {"function": {"name": "tcp_rearm_rto"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B045cMDWxd0Mcqn40XkfOwAAAAAAAACt"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "org.elasticsearch.index.translog.Translog$Location org.elasticsearch.action.bulk.TransportShardBulkAction.performOnReplica(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard)", "offset": 24}, "line": {"number": 446}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OVKwi55Br_WT9fxVyQu6PgAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.apache.lucene.search.BooleanWeight.bulkScorer(org.apache.lucene.index.LeafReaderContext)", "offset": 11}, "line": {"number": 338}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiHvp"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/syscall_linux.go"}, "function": {"name": "syscall.recvmsgRaw"}, "line": {"number": 672}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZJjsD24vVeIB2Mk_BbDMOgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "java.nio.file.Path sun.nio.fs.UnixPath.normalize()"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DZddfBvYb4vbUguYaeOZzAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.bulk.TransportShardBulkAction$$Lambda$4773+0x0000000801969e10.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Za0P_0e34shcw6VJJ_B5XgAAAAAAAACW"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.deleteNewFiles(java.util.Collection)", "offset": 17}, "line": {"number": 673}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACHxlp"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/sort/zfuncversion.go"}, "function": {"name": "sort.doPivot_func"}, "line": {"number": 82}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wfZvWlUxslpVTthudbQVZQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction$$Lambda$6953+0x0000000801d3ab30.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AgDBLOoQos6HZ8JoaefNzQAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "org.elasticsearch.common.text.Text org.elasticsearch.common.io.stream.StreamInput.readOptionalText()", "offset": 4}, "line": {"number": 355}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB0"}} -{"Stackframe": {"file": {"name": "SettingsFilter.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.SettingsFilter.filterSettings(java.lang.Iterable, org.elasticsearch.common.settings.Settings)", "offset": 11}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LWxbmjqw9fP9oqHxogAn9gAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.FilterDirectory.createOutput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EljCaLNs8oyF8fQALGTMLQAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.map(java.util.Map, boolean, boolean)", "offset": 16}, "line": {"number": 1082}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WQA5eJbOfqc-MpVNXC1Q9wAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4.encodeSequence(byte[], int, int, int, int, org.apache.lucene.store.DataOutput)", "offset": 4}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAB11z"}} -{"Stackframe": {"function": {"name": "xfs_vn_mknod"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "P39cIawm-GXmvXDrjAf_kQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.channels.SeekableByteChannel sun.nio.fs.UnixFileSystemProvider.newByteChannel(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])", "offset": 4}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANudK"}} -{"Stackframe": {"function": {"name": "proc_fill_cache"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mfgswW5tnP--5haDnNTmnwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer$$Lambda$4882.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nyMCPt5M-rbb158Tnrz3sgAAAAAAAAB3"}} -{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriterPerThread.sealFlushedSegment(org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 13}, "line": {"number": 457}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fu728DpYfA0Sz18mhDy96QAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "void java.util.TreeMap.putAll(java.util.Map)", "offset": 12}, "line": {"number": 326}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pXcgZrvJVOZC-snysoKYpAAAAAAAAABc"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4$FastCompressionHashTable.reset(byte[], int, int)", "offset": 14}, "line": {"number": 325}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction.onOperation(int, org.elasticsearch.action.support.nodes.BaseNodeResponse)", "offset": 2}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "T93qUW7twBf0xQlQpFHQIgAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": "OrdinalMap.java"}, "function": {"name": "org.apache.lucene.index.OrdinalMap org.apache.lucene.index.OrdinalMap.build(org.apache.lucene.index.IndexReader$CacheKey, org.apache.lucene.index.TermsEnum[], long[], float)", "offset": 6}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YdHosvXns41-8YRbLcrtpgAAAAAAAAKf"}} -{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "boolean org.elasticsearch.search.query.QueryPhase.executeInternal(org.elasticsearch.search.internal.SearchContext)", "offset": 127}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mKHXf_yVcw9ZXg_JH2MAwgAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "ByteBufferGuard.java"}, "function": {"name": "void org.apache.lucene.store.ByteBufferGuard.invalidateAndUnmap(java.nio.ByteBuffer[])", "offset": 14}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SvEA_niVYaY-OpBNTk8XvAAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "SingleObjectCache.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.SingleObjectCache.getOrRefresh()", "offset": 4}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlZ-E"}} -{"Stackframe": {"function": {"name": "tcp_recvmsg"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IAnIcQ3bOqZLIYVOjvKR0wAAAAAAAADS"}} -{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "void org.elasticsearch.cluster.metadata.Metadata$Builder.toXContent(org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 24}, "line": {"number": 1759}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CBEprBuB4AK7YgJytOvjqwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "void com.sun.crypto.provider.GaloisCounterMode$GCMEngine.processAAD()"}, "line": {"number": 826}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7BD104ngFu6-H7wuSNrQawAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.util.IOUtils$$Lambda$6987+0x000000080249bc48.close()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eM9hv92GEnhzXrJtFANypAAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "ShardSearchRequest.java"}, "function": {"name": "org.elasticsearch.index.query.Rewriteable org.elasticsearch.search.internal.ShardSearchRequest$RequestRewritable.rewrite(org.elasticsearch.index.query.QueryRewriteContext)"}, "line": {"number": 463}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YmsifTqF7cioaxmVry5lBwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateListeners(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder)"}, "line": {"number": 544}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.notifyListenerDirectly(org.elasticsearch.action.ActionListener)", "offset": 2}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pjqGM7KMsD-ZH_lV2sc9MgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.apache.lucene.store.MappedByteBufferIndexInputProvider$$Lambda$6962+0x000000080248c000.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBwt"}} -{"Stackframe": {"function": {"name": "futex_wake"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SZIzrSBBPBO2zJj0aqaKggAAAAAAAAEv"}} -{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "com.amazonaws.services.s3.model.S3Object com.amazonaws.services.s3.AmazonS3Client.getObject(com.amazonaws.services.s3.model.GetObjectRequest)", "offset": 51}, "line": {"number": 1498}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FB2lbICPeg4uVJ_bp0LkUgAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.Engine.refreshNeeded()", "offset": 8}, "line": {"number": 1018}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lv5p_7PvmAcAMuvPOHN84wAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "MSBRadixSorter.java"}, "function": {"name": "void org.apache.lucene.util.MSBRadixSorter.sort(int, int)", "offset": 1}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0TgQLjmaHK0PQsXTtJXJrwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "HandshakeContext.java"}, "function": {"name": "boolean sun.security.ssl.HandshakeContext.isActivatable(sun.security.ssl.CipherSuite, java.security.AlgorithmConstraints, java.util.Map)"}, "line": {"number": 515}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1iwmLz9f5lKCUTwNTHYeTQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "PromiseCombiner.java"}, "function": {"name": "boolean io.netty.util.concurrent.PromiseCombiner.tryPromise()"}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wdRZBOgt1iAFeehFpb20mAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.poll(long, java.util.concurrent.TimeUnit)"}, "line": {"number": 1294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.xcontent.support.AbstractXContentParser.readMapEntries(org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier, java.util.Map, java.lang.String)", "offset": 1}, "line": {"number": 323}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uhX1qfoGgATHLd0SFlL86gAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "ByteBufferIndexInput.java"}, "function": {"name": "org.apache.lucene.store.ByteBufferIndexInput org.apache.lucene.store.ByteBufferIndexInput.buildSlice(java.lang.String, long, long)", "offset": 8}, "line": {"number": 447}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "12wqq0CZSFWXQTyNvq7lawAAAAAAAABq"}} -{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.SoftDeletesRetentionMergePolicy.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.util.IOSupplier)", "offset": 7}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASgxU"}} -{"Stackframe": {"function": {"name": "__aa_path_perm"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABA_9"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.schedule"}, "line": {"number": 3206}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADCZLX"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/conditionals.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors.addCondition"}, "line": {"number": 93}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L1OydAndq8IT7nNSF3yNbAAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "long org.elasticsearch.index.store.ByteSizeCachingDirectory.estimateSizeInBytes(org.apache.lucene.store.Directory)", "offset": 4}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EW9nZaN8BShvrLqYMPouGgAAAAAAAABv"}} -{"Stackframe": {"file": {"name": "FieldCapabilitiesIndexResponse.java"}, "function": {"name": "void org.elasticsearch.action.fieldcaps.FieldCapabilitiesIndexResponse.writeList(org.elasticsearch.common.io.stream.StreamOutput, java.util.List)", "offset": 19}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "syuAMg3RShupVDY63eHfbQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "NodeClient.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.client.node.NodeClient.executeLocally(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1WwaSXc6MUqSl16CLws0XwAAAAAAAACW"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "int java.io.FilePermission.containsPath(java.nio.file.Path, java.nio.file.Path)", "offset": 43}, "line": {"number": 744}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x8ONEAKOA7gOqa-gLgUIFAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "PotentiallyMultiValuedMap.java"}, "function": {"name": "java.lang.Object co.elastic.apm.agent.util.PotentiallyMultiValuedMap.get(java.lang.String)"}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j-4Fo7n5WhAD53e6_il1rgAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction$$Lambda$8684+0x00000008027a55f0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BFGjgFTdK1xnfs0xj5apUwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "java.lang.Object[] java.util.stream.ReferencePipeline.toArray(java.util.function.IntFunction)", "offset": 2}, "line": {"number": 617}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ArgQxoFMuVMQRaGk6f0gvwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.document.RestGetAction$$Lambda$8746+0x00000008027befe0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEMu-"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/malloc.go"}, "function": {"name": "runtime.mallocgc"}, "line": {"number": 1091}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMcD"}} -{"Stackframe": {"function": {"name": "ip_finish_output2"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cJ5VgsZvSbEBF2_k2qcfnAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "Scheduler.java"}, "function": {"name": "void org.elasticsearch.threadpool.Scheduler$ReschedulingRunnable.doRun()", "offset": 1}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pZFZt3AmSRe8cuNGaxoM2QAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 24}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q"}} -{"Stackframe": {"function": {"name": "StubRoutines (1)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rko_YbcnDiBZxFuLrPp4EQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener.completeWith(org.elasticsearch.action.ActionListener, org.elasticsearch.common.CheckedSupplier)"}, "line": {"number": 434}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Sjz2MvPusgDd7v_6YUXcPAAAAAAAAAC1"}} -{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.merge(org.apache.lucene.index.MergeState)", "offset": 21}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACVZ2"}} -{"Stackframe": {"function": {"name": "mmput"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "USV55yZg8dR921Rrum2migAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "byte[] sun.nio.fs.UnixNativeDispatcher.readdir(long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rg_W9Iz5X4vBEiSyGYl41QAAAAAAAABe"}} -{"Stackframe": {"file": {"name": "TransportBroadcastByNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.onShardOperation(org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$NodeRequest, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionListener)", "offset": 31}, "line": {"number": 544}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Jiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.writeIncrementalStateAndCommit(long, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)", "offset": 6}, "line": {"number": 628}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7Pks3WwDJB4STiCP7SQMmAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.FilterDirectory.createTempOutput(java.lang.String, java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sxY3YlWatuuJPF_xRQYPtwAAAAAAAACY"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction.start()", "offset": 19}, "line": {"number": 243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABAXE"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.stealWork"}, "line": {"number": 2932}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iUpbth7c94ENpnn5oohq_gAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "FilterStreamInput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.FilterStreamInput.readBytes(byte[], int, int)"}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xztGdRdeA4QtQpYqq2H8IQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat$$Lambda$5895.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ijeboCn6LOt0NOcmaRcGZAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "InboundDecoder.java"}, "function": {"name": "int org.elasticsearch.transport.InboundDecoder.decode(org.elasticsearch.common.bytes.ReleasableBytesReference, java.util.function.Consumer)", "offset": 2}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWrK"}} -{"Stackframe": {"function": {"name": "inet6_fill_ifla6_attrs"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACTqYk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/http/internal/chunked.go"}, "function": {"name": "net/http/internal.(*chunkedReader).Read"}, "line": {"number": 96}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F0PU7bQ8aSr5vRj-z9gSNQAAAAAAAAB8"}} -{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "java.util.concurrent.RunnableScheduledFuture java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()", "offset": 18}, "line": {"number": 1182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V9nsBUwQwMn84PajbyjYtAAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$4689.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j7x7In8uVSNkO5Lw9JJ5EAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ReaderContext.java"}, "function": {"name": "void org.elasticsearch.search.internal.ReaderContext$1.closeInternal()"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi0dj"}} -{"Stackframe": {"function": {"name": "skb_release_head_state"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "crJxfOZekEO297SoXoFNvwAAAAAAAABE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 2}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7EAsiDF3uoTXazC89bRxpAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "DefaultBHttpClientConnection.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.impl.DefaultBHttpClientConnection.receiveResponseHeader()", "offset": 1}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EQ1dNWbPl2h7mKqBY2NB1QAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter$$Lambda$7293+0x000000080250d170.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gbCFQS2suYv46rP_aUsebAAAAAAAAADH"}} -{"Stackframe": {"file": {"name": "FieldsIndexWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.FieldsIndexWriter.finish(int, long, org.apache.lucene.store.IndexOutput)", "offset": 15}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXfZ"}} -{"Stackframe": {"function": {"name": "alloc_empty_file"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FpzkaILHEHFK9_CtVqwp4AAAAAAAAABg"}} -{"Stackframe": {"file": {"name": "ReplicationTracker.java"}, "function": {"name": "void org.elasticsearch.index.seqno.ReplicationTracker.persistRetentionLeases(java.nio.file.Path)", "offset": 10}, "line": {"number": 482}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApL8M"}} -{"Stackframe": {"function": {"name": "radix_tree_lookup"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAilCU"}} -{"Stackframe": {"function": {"name": "sock_poll"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAAIcE"}} -{"Stackframe": {"file": {"name": "runtime/chan.go"}, "function": {"name": "runtime.selectnbrecv"}, "line": {"number": 714}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iFAYNfqV6QjD5agVNfBragAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "UnpooledSlicedByteBuf.java"}, "function": {"name": "int io.netty.buffer.UnpooledSlicedByteBuf.capacity()"}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IfyGrmJO4TRdP2mxshA5zwAAAAAAAADY"}} -{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "void org.apache.lucene.index.SegmentReader.(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.SegmentReader, org.apache.lucene.util.Bits, org.apache.lucene.util.Bits, int, boolean)", "offset": 22}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xKt9upfh1P21jh6PrOPtogAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "Netty4TcpChannel.java"}, "function": {"name": "io.netty.channel.ChannelPromise org.elasticsearch.transport.netty4.Netty4TcpChannel.addPromise(org.elasticsearch.action.ActionListener, io.netty.channel.Channel)", "offset": 1}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8tJujVK0pdTWlucWIQYskAAAAAAAAADW"}} -{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.indices.NodeIndicesStats org.elasticsearch.indices.IndicesService.stats(org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 28}, "line": {"number": 428}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NleCed7iD5lY9FUQABqcFQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.lang.Object java.util.TreeMap.put(java.lang.Object, java.lang.Object)"}, "line": {"number": 534}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6gZHeFcPF3p_p9hsnsuK4AAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$6663+0x000000080242eed8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rLjBo_k19vor7LkQgiOErwAAAAAAAAC8"}} -{"Stackframe": {"file": {"name": "FreqProxTermsWriter.java"}, "function": {"name": "void org.apache.lucene.index.FreqProxTermsWriter.flush(java.util.Map, org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.NormsProducer)", "offset": 39}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eNbj51SwVufxZ4R3ztSduAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline$3$1.accept(java.lang.Object)"}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Dav0V-nM1jJ-7VtDnKysdgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ReleasableBytesReference.java"}, "function": {"name": "int org.elasticsearch.common.bytes.ReleasableBytesReference.length()"}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FtJD5VGhTxHCVaKqcAhyIgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ChannelActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.ChannelActionListener.onResponse(java.lang.Object)"}, "line": {"number": 30}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "r6Fg_DPZ96geKIjDaUl37wAAAAAAAACs"}} -{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.forwardFragments(org.elasticsearch.transport.TcpChannel, java.util.ArrayList)", "offset": 11}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LDzxKitLXg1NPN9Jo9msaAAAAAAAAACm"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.deleteFiles(java.util.Collection)", "offset": 22}, "line": {"number": 699}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rsOzw2kIzDdbA4UPrMrIpQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "RetentionLeaseBackgroundSyncAction.java"}, "function": {"name": "void org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction.shardOperationOnReplica(org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction$Request, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IdkGKdrrMvbrgpaqyJ-rigAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "DocumentMapper.java"}, "function": {"name": "org.elasticsearch.index.mapper.ParsedDocument org.elasticsearch.index.mapper.DocumentMapper.parse(org.elasticsearch.index.mapper.SourceToParse)"}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACHhtb"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/reflect/value.go"}, "function": {"name": "reflect.Value.SetMapIndex"}, "line": {"number": 1707}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXtfd"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.(*GenericEventConverter).normalizeValue"}, "line": {"number": 250}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Xh5gRfaLKG0GpmJd1WwirwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "HashSet.java"}, "function": {"name": "java.util.Iterator java.util.HashSet.iterator()"}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAir-H"}} -{"Stackframe": {"function": {"name": "sk_reset_timer"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mPYuAeY50sWJtfl4IqMCrwAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI$BitSetConjunctionDISI.nextDoc()", "offset": 2}, "line": {"number": 270}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AC6sIDdQuWlno6mhwaFiZwAAAAAAAADP"}} -{"Stackframe": {"file": {"name": "Lucene60FieldInfosFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene60.Lucene60FieldInfosFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.index.FieldInfos, org.apache.lucene.store.IOContext)", "offset": 21}, "line": {"number": 291}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9iPPrg1Y9vtWhMk7mXQ_KgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ConfigException.java"}, "function": {"name": "void com.typesafe.config.ConfigException.(com.typesafe.config.ConfigOrigin, java.lang.String, java.lang.Throwable)"}, "line": {"number": 23}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFpPE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map.go"}, "function": {"name": "reflect.mapassign"}, "line": {"number": 1319}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FOIMQnzYiyYPDxKOnMW5yQAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.io.stream.StreamInput.readMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader, java.util.function.IntFunction)", "offset": 7}, "line": {"number": 656}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qlujNL7db72ZwWHkSPq1iAAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "NodeService.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.node.NodeService.stats(org.elasticsearch.action.admin.indices.stats.CommonStatsFlags, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean)", "offset": 1}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iPBQQV_bSctL9bFqTIgQ4QAAAAAAAADM"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "void org.elasticsearch.search.SearchService.parseSource(org.elasticsearch.search.DefaultSearchContext, org.elasticsearch.search.builder.SearchSourceBuilder)", "offset": 27}, "line": {"number": 861}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nJkPGfb2Tj4bh-Cfxtx3_AAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry$$Lambda$6132+0x0000000802382000.close()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-wOb"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.SupportedSubsystems.func1"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ta-wbK0BNd9K2A470omx8wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor$Worker.run()"}, "line": {"number": 642}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACg2qO"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/conditionals.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors.(*WhenProcessor).Run"}, "line": {"number": 83}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yK0o6ycp1Ca_eC07ixxymAAAAAAAAADg"}} -{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$writeIndexGen$51(org.elasticsearch.action.StepListener, boolean, long, java.util.function.Function, org.elasticsearch.action.ActionListener, org.elasticsearch.repositories.RepositoryData)", "offset": 19}, "line": {"number": 1509}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "q44xf6HFj4nbephvvOr6vAAAAAAAAAA8"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeBulkItems$22(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationContext, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener, java.lang.String, java.util.Set)", "offset": 6}, "line": {"number": 819}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iVAG_A7s0Zt5xBxFujwmsQAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6075+0x0000000801c4f270.getAsync(org.elasticsearch.action.ActionListener)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GfgXxrIArRsIuGBVivq5BwAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "SearchInput.java"}, "function": {"name": "org.elasticsearch.xpack.watcher.input.search.SearchInput org.elasticsearch.xpack.watcher.input.search.SearchInput.parse(java.lang.String, org.elasticsearch.xcontent.XContentParser)", "offset": 12}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UX0maaM_jFdAmFMbhLpaSgAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.updateDocuments(org.apache.lucene.index.DocumentsWriterDeleteQueue$Node, java.lang.Iterable)", "offset": 3}, "line": {"number": 1471}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xLOLXg5EKZgSVcI5Dw46ugAAAAAAAAC4"}} -{"Stackframe": {"file": {"name": "BufferedInputStream.java"}, "function": {"name": "void java.io.BufferedInputStream.fill()", "offset": 32}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kjXgs8D2Kkzf5ihgmCmCYQAAAAAAAADD"}} -{"Stackframe": {"file": {"name": "NestedDocuments.java"}, "function": {"name": "void org.elasticsearch.search.NestedDocuments$HasNestedDocuments.(org.elasticsearch.search.NestedDocuments, org.apache.lucene.index.LeafReaderContext)", "offset": 17}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wQ_ty31z3DmE5XjxpCpS5QAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": "PackedLongValues.java"}, "function": {"name": "void org.apache.lucene.util.packed.PackedLongValues$Iterator.fillBlock()", "offset": 3}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uELAISpfeC7vnR_35Y6JuQAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "SortedSetDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedSetDocValuesWriter.(org.apache.lucene.index.FieldInfo, org.apache.lucene.util.Counter, org.apache.lucene.util.ByteBlockPool)", "offset": 18}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAC1hSV"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/queue/diskqueue/state_file.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/queue/diskqueue.writeQueuePositionToHandle"}, "line": {"number": 85}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService.maybeRefreshEngine(boolean)", "offset": 3}, "line": {"number": 917}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jEBVtdqhsioEQwhXyNMdhgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "CPoolProxy.java"}, "function": {"name": "void org.apache.http.impl.conn.CPoolProxy.flush()"}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gemaIHpLM2s8vpy8JymkuAAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "SSLConfiguration.java"}, "function": {"name": "sun.security.ssl.SSLExtension[] sun.security.ssl.SSLConfiguration.getEnabledExtensions(sun.security.ssl.SSLHandshake)", "offset": 3}, "line": {"number": 332}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sHLSFSTa5gNf7tFhVmYJKgAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "DirectWriter.java"}, "function": {"name": "void org.apache.lucene.util.packed.DirectWriter.flush()"}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Eo37R4TG_ubE_su8nzeliwAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeClusterAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ywBCHGInrMG3m_siljBhPgAAAAAAAAEq"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.writeTermsIndex(org.apache.lucene.index.SortedSetDocValues)", "offset": 37}, "line": {"number": 841}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kcag7NiY8ksaOVZ_fEj-cwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "int java.lang.String$CaseInsensitiveComparator.compare(java.lang.Object, java.lang.Object)"}, "line": {"number": 1243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ0CJ"}} -{"Stackframe": {"function": {"name": "prep_new_page"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABV_73"}} -{"Stackframe": {"file": {"name": "github.com/cilium/ebpf@v0.9.1/perf/reader.go"}, "function": {"name": "github.com/cilium/ebpf/perf.readRecord"}, "line": {"number": 72}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-KaQJqCpvd-fD6hn3-xL4AAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "void io.netty.util.concurrent.DefaultPromise.notifyListenersNow()", "offset": 11}, "line": {"number": 549}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACw14e"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/prometheus/procfs@v0.6.0/stat.go"}, "function": {"name": "github.com/prometheus/procfs.FS.Stat"}, "line": {"number": 204}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/auditd/audit_linux.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/auditd.buildMetricbeatEvent"}, "line": {"number": 512}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QreFBfyVW4qdUQkd5r6QKwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ClientScrollableHitSource.java"}, "function": {"name": "void org.elasticsearch.index.reindex.ClientScrollableHitSource$1.onResponse(java.lang.Object)"}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N9PMe4dCPllLdnaTDHMAZgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "MapBuilder.java"}, "function": {"name": "org.elasticsearch.common.collect.MapBuilder org.elasticsearch.common.collect.MapBuilder.putAll(java.util.Map)"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "NodeService.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.node.NodeService.stats(org.elasticsearch.action.admin.indices.stats.CommonStatsFlags, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean)", "offset": 3}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nJ3CJ-4sbFdwGRQw8eLynwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.onPhaseDone()"}, "line": {"number": 582}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.refresh(java.lang.String)"}, "line": {"number": 1865}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OjvPQ5fmr7USI7dgYlFDbgAAAAAAAADQ"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$authorizeIndexAction$3(org.elasticsearch.transport.TransportRequest, org.elasticsearch.xpack.core.security.authz.permission.Role, java.lang.String, org.elasticsearch.action.ActionListener, java.util.Map, org.elasticsearch.xpack.core.security.authz.ResolvedIndices)", "offset": 19}, "line": {"number": 377}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_sBOjhkm41Z-F6jj1JRPwAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.mergeSortedNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.index.MergeState)"}, "line": {"number": 393}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-n73"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/cpu.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.cpuStat"}, "line": {"number": 109}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lF0402c3xDTaGy1WpLy7vwAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "Lucene90CompoundFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90CompoundFormat.writeCompoundFile(org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo)", "offset": 1}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEuzk"}} -{"Stackframe": {"function": {"name": "hrtimer_cancel"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_"}} -{"Stackframe": {"file": {"name": "ElasticsearchConcurrentMergeScheduler.java"}, "function": {"name": "void org.elasticsearch.index.engine.ElasticsearchConcurrentMergeScheduler.doMerge(org.apache.lucene.index.MergeScheduler$MergeSource, org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 22}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAAO3m"}} -{"Stackframe": {"file": {"name": "runtime/malloc.go"}, "function": {"name": "runtime.newobject"}, "line": {"number": 1192}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EAsnGDi8BgLuqi6OO-DMPwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ThreadContextDataInjector.java"}, "function": {"name": "org.apache.logging.log4j.util.StringMap org.apache.logging.log4j.core.impl.ThreadContextDataInjector$ForCopyOnWriteThreadContextMap.injectContextData(java.util.List, org.apache.logging.log4j.util.StringMap)"}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAwc4"}} -{"Stackframe": {"function": {"name": "restore_sigcontext"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM2"}} -{"Stackframe": {"function": {"name": "do_syscall_64"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZJ8K2Oaj8kiHS_MZmGQy-gAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$MetadataIndexWriter.updateGlobalMetadata(org.apache.lucene.document.Document)", "offset": 1}, "line": {"number": 506}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8g5GgzaRtndh1_mhtIHztwAAAAAAAACV"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 9}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UBdJIbTGqfFiEfNMLru_ywAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "BulkByScrollParallelizationHelper.java"}, "function": {"name": "void org.elasticsearch.index.reindex.BulkByScrollParallelizationHelper$1.onResponse(java.lang.Object)"}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFd8k"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/traceback.go"}, "function": {"name": "runtime.gentraceback"}, "line": {"number": 220}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACHFY"}} -{"Stackframe": {"function": {"name": "flush_tlb_mm_range"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oWAu7yjPEQWDBpYB2hRLjAAAAAAAAACE"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.deleteNewFiles(java.util.Collection)", "offset": 17}, "line": {"number": 729}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4sYynbT0zwSRuZS8reU0hgAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "RestRequest.java"}, "function": {"name": "java.lang.String org.elasticsearch.rest.RestRequest.param(java.lang.String)", "offset": 1}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iN7YDy9yd7ARVJltHW-2lgAAAAAAAAC_"}} -{"Stackframe": {"file": {"name": "BlobStoreIndexShardSnapshots.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 15}, "line": {"number": 222}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qWBohVpV0WLBgoRPY3ha5QAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesProducer org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat.fieldsProducer(org.apache.lucene.index.SegmentReadState)"}, "line": {"number": 386}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qNJEYOU_rsu8C3MrrBIk8AAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.endObject()"}, "line": {"number": 264}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RMYtu6lQVhfanHasngCNQAAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.settings.Settings.getAsStructuredMap()", "offset": 2}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zvfqW8f55ol26SA6WHxr3QAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "org.elasticsearch.index.shard.IndexShard org.elasticsearch.index.IndexService.getShard(int)"}, "line": {"number": 280}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NrikprALerrSkH1iKFm6zQAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, java.lang.Throwable)", "offset": 5}, "line": {"number": 382}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACENL5"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/malloc.go"}, "function": {"name": "runtime.newobject"}, "line": {"number": 1195}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lnUCyqDyVJYAXu-upQeomAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sBSF-zNTyH-m9C8wF8gFOAAAAAAAAABj"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct.putResponseHeaders(java.util.Map)", "offset": 6}, "line": {"number": 725}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sPRIu4G_UqOumyaMlOEsUwAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", "offset": 6}, "line": {"number": 1114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ynHqfILVzOOqJs-5yJf4gwAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "void org.elasticsearch.search.SearchService.loadOrExecuteQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.search.internal.SearchContext)", "offset": 5}, "line": {"number": 470}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nxv9fnyzQgRP5y-sCtMEGwAAAAAAAAEn"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 36}, "line": {"number": 664}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HFjqNQEy358ADuSpfuj3RQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ShardSearchRequest.java"}, "function": {"name": "java.lang.Object org.elasticsearch.search.internal.ShardSearchRequest$RequestRewritable.rewrite(org.elasticsearch.index.query.QueryRewriteContext)"}, "line": {"number": 453}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Wd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5706+0x0000000801b20da0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXGLk"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/gopkg.in/yaml.v2@v2.3.0/parserc.go"}, "function": {"name": "gopkg.in/yaml%2ev2.yaml_parser_state_machine"}, "line": {"number": 134}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "--kE6heoLJJu74wTldTO0wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "RecoverySourcePruneMergePolicy.java"}, "function": {"name": "org.apache.lucene.index.CodecReader org.elasticsearch.index.engine.RecoverySourcePruneMergePolicy$1.wrapForMerge(org.apache.lucene.index.CodecReader)"}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "v2q-aMoRsK4FEWYxY8DtewAAAAAAAAHn"}} -{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.doInternalExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.bulk.BulkRequest, java.lang.String, org.elasticsearch.action.ActionListener)", "offset": 72}, "line": {"number": 241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-H6asz_OpoepB2Mu5EngrQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 16}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAACG6B"}} -{"Stackframe": {"function": {"name": "__xfs_trans_commit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dymPrMwSHJkE00arRNB68AAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction.lambda$finishHim$0()"}, "line": {"number": 267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABC3-"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.exitsyscall0"}, "line": {"number": 3969}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAAxs"}} -{"Stackframe": {"function": {"name": "aufs_read_unlock"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aMdAw5F6bqw1nsXGt00a9AAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory$FSIndexOutput.(org.apache.lucene.store.FSDirectory, java.lang.String)"}, "line": {"number": 406}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F0PU7bQ8aSr5vRj-z9gSNQAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "java.util.concurrent.RunnableScheduledFuture java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()", "offset": 10}, "line": {"number": 1174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8oQ_ZJ3ImiZWOZcNHv_WYwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.implDelete(java.nio.file.Path, boolean)", "offset": 1}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "br2--kP1CFOKTkt8v_v_UwAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKeysPlain(java.util.Set)", "offset": 11}, "line": {"number": 615}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3rLZd5lPThQHbPceRXAomQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "MessageToMessageCodec.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageCodec.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFoxx"}} -{"Stackframe": {"function": {"name": "from_kgid_munged"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dI8-OJhANgCFvmdsEiuUygAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "BytesRefBuilder.java"}, "function": {"name": "void org.apache.lucene.util.BytesRefBuilder.append(byte[], int, int)"}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA4vS"}} -{"Stackframe": {"file": {"name": "runtime/panic.go"}, "function": {"name": "runtime.isAbortPC"}, "line": {"number": 1365}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIkM"}} -{"Stackframe": {"function": {"name": "__seccomp_filter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IGmhR4Fd5cfyKn1bs4cy0AAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "Headers.java"}, "function": {"name": "void co.elastic.apm.agent.impl.context.Headers.()", "offset": 3}, "line": {"number": 34}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-ovkWHozpN2-8iNzayvixwAAAAAAAABw"}} -{"Stackframe": {"file": {"name": "ChainInput.java"}, "function": {"name": "org.elasticsearch.xpack.watcher.input.chain.ChainInput org.elasticsearch.xpack.watcher.input.chain.ChainInput.parse(java.lang.String, org.elasticsearch.xcontent.XContentParser, org.elasticsearch.xpack.watcher.input.InputRegistry)", "offset": 12}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFWjM"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/time.go"}, "function": {"name": "runtime.addtimer"}, "line": {"number": 268}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5Ri24JfQ3hOfAMeWMo31rAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "AbstractDelegateHttpsURLConnection.java"}, "function": {"name": "sun.net.www.http.HttpClient sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(java.net.URL, java.net.Proxy, int)"}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X07BBA9DtGJkvzMD2Oh2sQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "SimpleFSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.SimpleFSDirectory.(java.nio.file.Path, org.apache.lucene.store.LockFactory)"}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x1HQQpXsV1Mzj5_MteA7BgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object)"}, "line": {"number": 851}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE-vE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.findrunnable"}, "line": {"number": 2206}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H_kFRY9JjSC9Lp-jWm0JcgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "CgroupV1Subsystem.java"}, "function": {"name": "long jdk.internal.platform.cgroupv1.CgroupV1Subsystem.getCpuNumPeriods()"}, "line": {"number": 336}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABFqk"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.sysmon"}, "line": {"number": 5145}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oSoGUxBn_MfT_4Ncm-yGtQAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.writeIncrementalStateAndCommit(long, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)", "offset": 10}, "line": {"number": 911}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "so1d_4OoBGn25QD_tK0ZhwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ShardSearchRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.ShardSearchRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)"}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u10yYHuZY1dpf375Wx2UVAAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "boolean java.util.ArrayList.equals(java.lang.Object)", "offset": 12}, "line": {"number": 529}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SAAkutGejeRImCZXeWZ-1wAAAAAAAABy"}} -{"Stackframe": {"file": {"name": "PolicyStepsRegistry.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.Step org.elasticsearch.xpack.ilm.PolicyStepsRegistry.getStep(org.elasticsearch.cluster.metadata.IndexMetadata, org.elasticsearch.xpack.core.ilm.Step$StepKey)", "offset": 13}, "line": {"number": 198}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VtVXhl6s6URamlTOMTdcGgAAAAAAAADc"}} -{"Stackframe": {"file": {"name": "FreqProxTermsWriter.java"}, "function": {"name": "void org.apache.lucene.index.FreqProxTermsWriter.flush(java.util.Map, org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.NormsProducer)", "offset": 44}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-7Xm"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/error.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/process.newProcess"}, "line": {"number": 93}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnxk6"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/stream.go"}, "function": {"name": "encoding/json.(*Decoder).readValue"}, "line": {"number": 127}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sTm2NJa4oF2xjv4OCkRO2AAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "AbstractByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.AbstractByteBufAllocator.toLeakAwareBuffer(io.netty.buffer.ByteBuf)", "offset": 2}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qN4Vqjijt0HHN8TkXT1dVwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SocketDispatcher.java"}, "function": {"name": "int sun.nio.ch.SocketDispatcher.write(java.io.FileDescriptor, long, int)"}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ConcurrentMergeScheduler.java"}, "function": {"name": "void org.apache.lucene.index.ConcurrentMergeScheduler.doMerge(org.apache.lucene.index.MergeScheduler$MergeSource, org.apache.lucene.index.MergePolicy$OneMerge)"}, "line": {"number": 638}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$resolveAuthorizationInfo$1(org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.permission.Role)", "offset": 10}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "D5lAQaLy9ATYrsXm9SsubAAAAAAAAAE_"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesProducer.(org.apache.lucene.index.SegmentReadState, java.lang.String, java.lang.String, java.lang.String, java.lang.String)", "offset": 39}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TbI11ipOuRPV1oq3v1R7ugAAAAAAAAFR"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ReroutePhase.doRun()", "offset": 53}, "line": {"number": 863}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rn6MTH_GcOdtJ7YxIeV5gwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.forceFlush(io.netty.channel.ChannelHandlerContext)", "offset": 1}, "line": {"number": 2138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dZMgZbiGsBlv5VLmdKT3TAAAAAAAAAKN"}} -{"Stackframe": {"file": {"name": "Lz4TransportDecompressor.java"}, "function": {"name": "int org.elasticsearch.transport.Lz4TransportDecompressor.decodeBlock(org.elasticsearch.common.bytes.BytesReference)", "offset": 99}, "line": {"number": 276}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACipFE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/io/io.go"}, "function": {"name": "io.(*SectionReader).Seek"}, "line": {"number": 534}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hyDoVUWwwXEvgB5sKTLeXQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.lambda$publishFrozenUpdates$10(org.apache.lucene.index.FrozenBufferedUpdates, org.apache.lucene.index.IndexWriter)"}, "line": {"number": 2742}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JmNHPBl7DNTU3iu90SpbRwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "int java.lang.String.compareTo(java.lang.Object)"}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rhByk0cUR55VCYmz688yAQAAAAAAAABw"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun()", "offset": 6}, "line": {"number": 643}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kyX4HuuLIjtT78u3tBP5uAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "java.lang.Object com.amazonaws.services.s3.AmazonS3Client.access$300(com.amazonaws.services.s3.AmazonS3Client, com.amazonaws.Request, com.amazonaws.http.HttpResponseHandler, java.lang.String, java.lang.String)"}, "line": {"number": 394}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k9qlBuUUuQaRGtKxyO_pagAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SocketAccess.java"}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.s3.SocketAccess.doPrivileged(java.security.PrivilegedAction)", "offset": 1}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6_xlTgG59vnh1ZByxJjaSwAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "DisjunctionDISIApproximation.java"}, "function": {"name": "int org.apache.lucene.search.DisjunctionDISIApproximation.nextDoc()", "offset": 3}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PZls10GkrVBps7xBGX0acwAAAAAAAACT"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer.(org.apache.lucene.index.SegmentReadState, java.lang.String, java.lang.String, java.lang.String, java.lang.String)", "offset": 35}, "line": {"number": 98}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iXE09wsufQpbcJFrBbH5RAAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$authenticateAsync$0(org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 2}, "line": {"number": 336}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8ZRk8SyYMUcoYIl9aB0UjwAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "SecondaryAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator.authenticate(java.util.function.Consumer, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 94}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACwt8N"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/prometheus/procfs@v0.6.0/proc.go"}, "function": {"name": "github.com/prometheus/procfs.Proc.FileDescriptorsInfo"}, "line": {"number": 301}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener.completeWith(org.elasticsearch.action.ActionListener, org.elasticsearch.common.CheckedSupplier)"}, "line": {"number": 444}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMqa"}} -{"Stackframe": {"function": {"name": "__ip_finish_output"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lX6mSHrc_Ev2W8ntyZyhlAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction$$Lambda$8430+0x0000000802757b00.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-KaQJqCpvd-fD6hn3-xL4AAAAAAAAABF"}} -{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "void io.netty.util.concurrent.DefaultPromise.notifyListenersNow()", "offset": 13}, "line": {"number": 551}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a2wo01BPmGnsvdZiPU_NZAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Tokenizer.java"}, "function": {"name": "void org.apache.lucene.analysis.Tokenizer.close()"}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jNnn0Cs8-QNABXdA7q71mAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.IndexModule$$Lambda$661+0x0000000800f7e858.acquireIndexCommitForSnapshot(org.elasticsearch.index.engine.Engine)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction$$Lambda$7717+0x0000000801f5f3f8.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes java.nio.file.Files.readAttributes(java.nio.file.Path, java.lang.Class, java.nio.file.LinkOption[])"}, "line": {"number": 1843}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAiwHv"}} -{"Stackframe": {"function": {"name": "skb_dequeue"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iaYGOKrCYzeQFPvSFK3LGwAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "LoggingHandler.java"}, "function": {"name": "void io.netty.handler.logging.LoggingHandler.flush(io.netty.channel.ChannelHandlerContext)", "offset": 3}, "line": {"number": 295}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8KfvTX_45EkfeqjFTJPGMwAAAAAAAABH"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.internalParseDocument(org.elasticsearch.index.mapper.RootObjectMapper, org.elasticsearch.index.mapper.MetadataFieldMapper[], org.elasticsearch.index.mapper.DocumentParserContext)", "offset": 10}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VydXcSmOqICsVxLpiPFyCAAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "long org.apache.lucene.index.DocumentsWriter.updateDocuments(java.lang.Iterable, org.apache.lucene.index.DocumentsWriterDeleteQueue$Node)", "offset": 12}, "line": {"number": 415}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MMS0RO7cVprhLjJ-ErmFbAAAAAAAAABJ"}} -{"Stackframe": {"file": {"name": "NodeEnvironment.java"}, "function": {"name": "java.util.Set org.elasticsearch.env.NodeEnvironment.availableIndexFoldersForPath(org.elasticsearch.env.NodeEnvironment$NodePath, java.util.function.Predicate)", "offset": 8}, "line": {"number": 921}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PD3cOudib0XQsq9y3nJeyAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$7664+0x0000000801f46210.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADTlS"}} -{"Stackframe": {"function": {"name": "wake_up_new_task"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eZn3IOB-FE1r74FZypzHhAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "TreeSet.java"}, "function": {"name": "void java.util.TreeSet.(java.util.Collection)", "offset": 1}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "619AixYrQOa22PQj1GrSdAAAAAAAAABi"}} -{"Stackframe": {"file": {"name": "threading.py"}, "function": {"name": "_bootstrap_inner", "offset": 15}, "line": {"number": 916}, "source": {"type": 2}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXtwF"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.(*GenericEventConverter).normalizeValue"}, "line": {"number": 175}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IpdJ0jKEIlGYoFbGaUItnwAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "SegmentInfos.java"}, "function": {"name": "void org.apache.lucene.index.SegmentInfos.write(org.apache.lucene.store.Directory)", "offset": 12}, "line": {"number": 484}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD4i"}} -{"Stackframe": {"function": {"name": "exit_to_usermode_loop"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChIUb"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.reentersyscall"}, "line": {"number": 3635}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "saQMoybuzFVjjc--sDFqLgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "PendingSoftDeletes.java"}, "function": {"name": "boolean org.apache.lucene.index.PendingSoftDeletes.isFullyDeleted(org.apache.lucene.util.IOSupplier)"}, "line": {"number": 200}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "p0NllssmkIFYCtR-zwGrPgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.internal.support.AbstractClient$ClusterAdmin.nodesStats(org.elasticsearch.action.admin.cluster.node.stats.NodesStatsRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 774}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4io8TQpKnhHcoJs_H_nFpQAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "ExponentionallyIncreasingSleepingWaitStrategy.java"}, "function": {"name": "int co.elastic.apm.agent.report.disruptor.ExponentionallyIncreasingSleepingWaitStrategy.applyWaitMethod(com.lmax.disruptor.SequenceBarrier, int)", "offset": 6}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sYYc1wpJMhBB0VxP9JiigwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "FileDispatcherImpl.java"}, "function": {"name": "long sun.nio.ch.FileDispatcherImpl.size0(java.io.FileDescriptor)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C4_nW4w-KrPrvs0Bho4_8QAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ReaderBasedJsonParser.java"}, "function": {"name": "int com.fasterxml.jackson.core.json.ReaderBasedJsonParser._skipWSOrEnd()", "offset": 1}, "line": {"number": 2353}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-0SQ"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/gosigar@v0.14.2/sigar_linux_common.go"}, "function": {"name": "github.com/elastic/gosigar.(*ProcTime).Get"}, "line": {"number": 263}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bu6t-WTb-nsfb-QwFBEV_QAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.execute(java.lang.Runnable)", "offset": 28}, "line": {"number": 1349}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4KFAFxj-eVsHHZBNgRjHOAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "PagedGrowableWriter.java"}, "function": {"name": "void org.apache.lucene.util.packed.PagedGrowableWriter.(long, int, int, float, boolean)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAD9EJ9"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/beat/event.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/mb.(*Event).BeatEvent"}, "line": {"number": 54}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLuk1"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/encode.go"}, "function": {"name": "encoding/json.stringEncoder"}, "line": {"number": 645}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3dDba49XiHgWShnZz1Je1QAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MDjyE5AlqASoc6cxfe5K2wAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory.deleteFile(java.lang.String)", "offset": 3}, "line": {"number": 339}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter$IndexWriterMergeSource.merge(org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 1}, "line": {"number": 6430}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BYvTdSjRR3mRiJL5PtR_XgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "FileDispatcherImpl.java"}, "function": {"name": "int sun.nio.ch.FileDispatcherImpl.pread0(java.io.FileDescriptor, long, int, long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PAhPB3FcJuVjzN80xcR52AAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.Object[] org.elasticsearch.common.io.stream.StreamInput.readArray(org.elasticsearch.common.io.stream.Writeable$Reader, java.util.function.IntFunction)", "offset": 3}, "line": {"number": 980}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADQTr-"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/klauspost/compress@v1.13.6/flate/deflate.go"}, "function": {"name": "github.com/klauspost/compress/flate.(*Writer).Write"}, "line": {"number": 774}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ETEs_vJj_-q4WFpNiG_LRQAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$RequestFilterChain.proceed(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dqm9tJM0l7NfU9GmtGT_UgAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 2}, "line": {"number": 888}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-pHv"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/path/filepath/path.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.memoryStats"}, "line": {"number": 213}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i_JW0SMBS0hXEJxPvmBaaAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "SingletonSortedNumericDocValues.java"}, "function": {"name": "int org.apache.lucene.index.SingletonSortedNumericDocValues.nextDoc()"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-Qm9"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.CoalesceMessages"}, "line": {"number": 385}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Z9hje1cbFu-XpVYNW9SlywAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "boolean java.util.stream.ReferencePipeline.forEachWithCancel(java.util.Spliterator, java.util.stream.Sink)"}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "AbstractRunnable.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractRunnable.run()"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUktY"}} -{"Stackframe": {"function": {"name": "string_escape_mem"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_pb_V8KDz_2bUtibVIhXagAAAAAAAAD0"}} -{"Stackframe": {"file": {"name": "ObjectName.java"}, "function": {"name": "void javax.management.ObjectName.setCanonicalName(char[], char[], java.lang.String[], java.util.Map, int, int)", "offset": 44}, "line": {"number": 836}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rPTEKLm7EEAHja1HwfFSAgAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsReader.checkIntegrity()", "offset": 1}, "line": {"number": 371}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiF-k"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/netlink_linux.go"}, "function": {"name": "syscall.NetlinkRIB"}, "line": {"number": 81}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_F"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/asm_amd64.s"}, "function": {"name": "runtime.spillArgs"}, "line": {"number": 578}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KKq9hFu_HcVwkAnnzs7gcwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportBroadcastByNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 427}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXzeE"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/mapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.mapFind"}, "line": {"number": 453}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcoN"}} -{"Stackframe": {"function": {"name": "__x64_sys_readlinkat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8Q4lBCQ6qhqWPpxfEcKZ9AAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "PackedInts.java"}, "function": {"name": "long org.apache.lucene.util.packed.PackedInts$NullReader.get(int)"}, "line": {"number": 667}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bFLL83EKKCGyH9Z7dsfG-gAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.search.SearchTransportService$$Lambda$4355+0x0000000801923160.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "40ES46dU7pwVTIhZzOkjPwAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermissionCollection.implies(java.security.Permission)", "offset": 9}, "line": {"number": 1202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxDqO"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/host_linux.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.(*reader).architecture"}, "line": {"number": 151}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALsuZ"}} -{"Stackframe": {"function": {"name": "iterate_dir"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "q-1hRqixdFsMC6pRwQeiWgAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "VersionsAndSeqNoResolver.java"}, "function": {"name": "org.elasticsearch.common.lucene.uid.PerThreadIDVersionAndSeqNoLookup[] org.elasticsearch.common.lucene.uid.VersionsAndSeqNoResolver.getLookupState(org.apache.lucene.index.IndexReader, java.lang.String)", "offset": 15}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SYkJzmoIj88lWJBBdLWTtAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(io.netty.channel.ChannelHandlerContext, io.netty.handler.codec.CodecOutputList, int)", "offset": 1}, "line": {"number": 336}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ElasticsearchReaderManager.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.engine.ElasticsearchReaderManager.refreshIfNeeded(java.lang.Object)"}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EKWhQ1NGJOd2rM9L7jxkPwAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "void sun.nio.ch.FileChannelImpl.force(boolean)", "offset": 11}, "line": {"number": 531}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.innerAcquireReplicaOperationPermit(long, long, long, org.elasticsearch.action.ActionListener, boolean, java.util.function.Consumer)", "offset": 70}, "line": {"number": 3583}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mCGHhhnGFCjrXxZQKNdCegAAAAAAAAC3"}} -{"Stackframe": {"file": {"name": "TransportContext.java"}, "function": {"name": "void sun.security.ssl.TransportContext.kickstart()", "offset": 33}, "line": {"number": 233}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VjQ_FQp6k18TaTquadHRfAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 2020}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5fTMNPZsSlOmaDklO1sfuAAAAAAAAAL5"}} -{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction$BulkOperation.doRun()", "offset": 89}, "line": {"number": 600}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dIMMnGL1faAAaBMwLJOT-wAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAARNxe"}} -{"Stackframe": {"function": {"name": "security_capable"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlHrC"}} -{"Stackframe": {"function": {"name": "ip_rcv_finish_core.isra.18"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qjaz-3R5MGuHG8xBpiPquAAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "SegmentDocValues.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesProducer org.apache.lucene.index.SegmentDocValues.getDocValuesProducer(long, org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos)", "offset": 2}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChFAs"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.startm"}, "line": {"number": 2305}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e7YYWaQTMh8P2PCVzA2a8gAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "boolean java.util.AbstractMap.containsKey(java.lang.Object)", "offset": 9}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4UCPpue6CVok_lbZI08fLQAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.write(byte[], int, int)", "offset": 3}, "line": {"number": 199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Lu4BbYQNxvrnJvSur5jWAAAAAAAAAAG3"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 49}, "line": {"number": 264}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sN77BAFALn_JGvGvXrSjywAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "java.lang.Object java.util.concurrent.ConcurrentHashMap.put(java.lang.Object, java.lang.Object)"}, "line": {"number": 1006}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dB8rpvXeU-U7j8zoRqc_lgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 1}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACney9"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).init"}, "line": {"number": 232}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALMvq"}} -{"Stackframe": {"function": {"name": "__check_object_size"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZkLsycxKPf36jJRxnsYRXgAAAAAAAACX"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.support.AbstractXContentParser.readValueUnsafe(org.elasticsearch.common.xcontent.XContentParser$Token, org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier)", "offset": 8}, "line": {"number": 387}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ucg8lCUKHDJi43v2r9fcDAAAAAAAAAC9"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.index.SegmentMerger.merge()", "offset": 32}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD5oNa"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/go.etcd.io/bbolt@v1.3.4/tx.go"}, "function": {"name": "go.etcd.io/bbolt.(*Tx).Commit"}, "line": {"number": 209}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cDDKtM-30WtgKUZUhSPZowAAAAAAAAEf"}} -{"Stackframe": {"file": {"name": "PolicyStepsRegistry.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.ilm.PolicyStepsRegistry.parseStepsFromPhase(java.lang.String, java.lang.String, java.lang.String)", "offset": 32}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e89rAelRyhs80QcBMQo8BgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService.access$000(org.elasticsearch.cluster.service.MasterService, org.elasticsearch.cluster.service.MasterService$TaskInputs)"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "v7GKAWxeXNZbjk8Dw8GzZgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "void org.elasticsearch.index.store.ByteSizeCachingDirectory$2.writeByte(byte)"}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD7KN"}} -{"Stackframe": {"function": {"name": "mutex_spin_on_owner"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "p3b79q4pLaPKd9iPm6PsMAAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "UnassignedInfo.java"}, "function": {"name": "long org.elasticsearch.cluster.routing.UnassignedInfo.findNextDelayedAllocation(long, org.elasticsearch.cluster.ClusterState)", "offset": 3}, "line": {"number": 421}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3KtHAXnUn2qKToxsxyFz6wAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$6515+0x0000000801c93068.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAARLUs"}} -{"Stackframe": {"function": {"name": "get_vfs_caps_from_disk"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlaw"}} -{"Stackframe": {"function": {"name": "show_type.isra.3"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL7vG"}} -{"Stackframe": {"function": {"name": "mntput_no_expire"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nKhcql1SQ7g-aNYXxz6k1AAAAAAAAACd"}} -{"Stackframe": {"file": {"name": "ApacheHttpRequestFactory.java"}, "function": {"name": "org.apache.http.client.methods.HttpRequestBase com.amazonaws.http.apache.request.impl.ApacheHttpRequestFactory.create(com.amazonaws.Request, com.amazonaws.http.settings.HttpClientSettings)", "offset": 31}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk5bI"}} -{"Stackframe": {"function": {"name": "__netlink_dump_start"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOK4"}} -{"Stackframe": {"function": {"name": "inet_sendmsg"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZp"}} -{"Stackframe": {"function": {"name": "audit_filter_syscall.constprop.19"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACilgx"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/sort/sort.go"}, "function": {"name": "sort.doPivot"}, "line": {"number": 134}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun()", "offset": 7}, "line": {"number": 917}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yLcvbV13CtkdfmXNFFed3QAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.addSortedSetField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)"}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-nbQ"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/blkio.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.readBlkioValues"}, "line": {"number": 261}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_js9oXEovuvcenIstBqeVgAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "void org.elasticsearch.common.settings.Settings.(java.util.Map, org.elasticsearch.common.settings.SecureSettings)", "offset": 3}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a9q5BOyKgSLsDOKlsdaljQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory.syncMetaData()", "offset": 1}, "line": {"number": 309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kF013d7SRgnu6DFlDFnV_wAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 2}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S06qc2WWdjyLzzAdWuSUuwAAAAAAAADm"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.io.stream.StreamInput.readString()", "offset": 45}, "line": {"number": 473}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0_GAKGTqJwuaf0qvI3OAnQAAAAAAAAB0"}} -{"Stackframe": {"file": {"name": "AbstractIntakeApiHandler.java"}, "function": {"name": "java.net.HttpURLConnection co.elastic.apm.agent.report.AbstractIntakeApiHandler.startRequest(java.lang.String)", "offset": 17}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADK"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorize(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 45}, "line": {"number": 267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAsRN"}} -{"Stackframe": {"function": {"name": "xen_smp_send_call_function_ipi"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$AuthorizationResultListener.onResponse(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationResult)", "offset": 6}, "line": {"number": 628}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4-lSY69fXDm_fOs77Q9KJgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.get(java.lang.Object)"}, "line": {"number": 564}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4t7oCp0G3Jy3f6AIzJEnWgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.coordination.PublicationTransportHandler$$Lambda$4547+0x000000080182d268.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4jSOeojX1HJ7UtWM_nspTAAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "QuotaAwareFileSystemProvider.java"}, "function": {"name": "void co.elastic.cloud.quotaawarefs.QuotaAwareFileSystemProvider$RefreshLimitsTask.run()", "offset": 1}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1qPLJVVQ8TzPBEa8EsrzjgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain$$Lambda$7301+0x000000080250e258.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d3kpVhLsdwM004-RCJ5KgwAAAAAAAABR"}} -{"Stackframe": {"file": {"name": "SegmentDocValues.java"}, "function": {"name": "org.apache.lucene.util.RefCount org.apache.lucene.index.SegmentDocValues.newDocValuesProducer(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.Directory, java.lang.Long, org.apache.lucene.index.FieldInfos)", "offset": 10}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJi7"}} -{"Stackframe": {"function": {"name": "__secure_computing"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mj7OrL6QrJ8gvIjThzQydwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain$$Lambda$6916+0x0000000801e26c88.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.merge(org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 14}, "line": {"number": 4681}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VuG2U7rTYEwKN7F7WV-I-QAAAAAAAAGZ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 7}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AJ20S4nqf6FfjqdXzTnTNQAAAAAAAAD_"}} -{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "java.lang.Runnable org.apache.lucene.util.bkd.BKDWriter.merge(org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, java.util.List, java.util.List)", "offset": 29}, "line": {"number": 660}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "J_7XHXn8FwXx9wY7ybCb_QAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.io.stream.StreamInput.readImmutableMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader)", "offset": 9}, "line": {"number": 699}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ednam-wfOejL7SBt7Wl1oQAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "Lucene80NormsConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80NormsConsumer.close()", "offset": 7}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f6OHtxWEEYSKC5jCOpZRYwAAAAAAAADZ"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node[] java.util.HashMap.resize()", "offset": 36}, "line": {"number": 715}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.doAuthenticate(org.elasticsearch.xpack.security.authc.Authenticator$Context, boolean, org.elasticsearch.action.ActionListener)", "offset": 20}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ONnGxKE-Oac3NFLO-8Lg0AAAAAAAAABz"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 21}, "line": {"number": 526}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnl_3"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/encode.go"}, "function": {"name": "encoding/json.typeEncoder"}, "line": {"number": 392}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3PWYwmr8WKiucw6_bVd_pwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "long org.elasticsearch.index.store.Store$StoreDirectory.estimateSize()"}, "line": {"number": 697}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UZGxTQT9lvy8CloCZlJmVwAAAAAAAABc"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct.writeTo(org.elasticsearch.common.io.stream.StreamOutput, java.util.Map)", "offset": 9}, "line": {"number": 694}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S94jqfhAvkqAPmPbXQSKAAAAAAAAAAB2"}} -{"Stackframe": {"file": {"name": "AbstractIntakeApiHandler.java"}, "function": {"name": "void co.elastic.apm.agent.report.AbstractIntakeApiHandler.endRequest()", "offset": 23}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAilGr"}} -{"Stackframe": {"function": {"name": "sock_alloc"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-G-jKyr5A3MRrC_vNgLsBAAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": "Lucene80NormsConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80NormsConsumer.addNormsField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.NormsProducer)", "offset": 6}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QkkDXMhATwTB2K8md9w1pwAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseValue(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, org.elasticsearch.xcontent.XContentParser$Token)", "offset": 5}, "line": {"number": 621}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nX5EwLqa4-7opgPxIg4PZAAAAAAAAABw"}} -{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "void io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()", "offset": 31}, "line": {"number": 931}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "int io.netty.handler.ssl.SslHandler.unwrap(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, int, int)", "offset": 155}, "line": {"number": 1518}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "W8KitKDxc0kQen0Hckl4hAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.cluster.node.info.NodeInfo$$Lambda$6962+0x0000000801e598b8.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eWgCXarjxP6P3NIXnb2q5gAAAAAAAADs"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 236}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ELgG2hGXmLLx5cp8ISD83wAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "ThreadLocal.java"}, "function": {"name": "void java.lang.ThreadLocal.set(java.lang.Object)", "offset": 3}, "line": {"number": 222}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-w7k"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.Reader.ProcessCgroupPaths"}, "line": {"number": 276}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m5-Un0na0bSGJs4I2yfHnwAAAAAAAACD"}} -{"Stackframe": {"file": {"name": "TaskBatcher.java"}, "function": {"name": "void org.elasticsearch.cluster.service.TaskBatcher.runIfNotProcessed(org.elasticsearch.cluster.service.TaskBatcher$BatchedTask)", "offset": 10}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uQZ-VEFAF3fOxbxICP7PhwAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.checkPrivileges(org.elasticsearch.xpack.core.security.authc.Subject, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$PrivilegesToCheck, java.util.Collection, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uIpQ1uRexMdnpWaro5896wAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "StoredFieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.index.StoredFieldsConsumer.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)"}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABAHH"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.findRunnable"}, "line": {"number": 2867}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8uVqqmQs2krZT40-iqFC3AAAAAAAAABd"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.awaitMatch(java.util.concurrent.LinkedTransferQueue$Node, java.util.concurrent.LinkedTransferQueue$Node, java.lang.Object, boolean, long)", "offset": 16}, "line": {"number": 720}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fEKUJczxV0wWF5_qwXHZAQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.util.Set org.elasticsearch.common.settings.Settings.keySet()"}, "line": {"number": 708}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mllMkD4eko6f_K5A8Y-7xgAAAAAAAABz"}} -{"Stackframe": {"file": {"name": "NestedDocuments.java"}, "function": {"name": "org.apache.lucene.search.Weight org.elasticsearch.search.NestedDocuments.getNestedChildWeight(org.apache.lucene.index.LeafReaderContext, java.lang.String)", "offset": 6}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "void java.util.stream.AbstractPipeline.copyInto(java.util.stream.Sink, java.util.Spliterator)", "offset": 3}, "line": {"number": 508}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sCdW6ghslIPajpgsdfjVWAAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "ProcessingSequenceBarrier.java"}, "function": {"name": "long com.lmax.disruptor.ProcessingSequenceBarrier.waitFor(long)", "offset": 2}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Hk3kLbfOPknxEv8_LIcXawAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelHandlerContext io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(java.lang.Object)"}, "line": {"number": 412}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADQiHk"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/klauspost/compress@v1.13.6/zlib/writer.go"}, "function": {"name": "github.com/klauspost/compress/zlib.(*Writer).Write"}, "line": {"number": 161}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DHkKlJyvSzYWZrxA7eo4aAAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "PromiseCombiner.java"}, "function": {"name": "void io.netty.util.concurrent.PromiseCombiner$1.operationComplete(io.netty.util.concurrent.Future)", "offset": 1}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACjCQS"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/sys_linux.go"}, "function": {"name": "os.hostname"}, "line": {"number": 22}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WRFfIxsq2Q79ALvapo1dCgAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator$$Lambda$6922+0x0000000801e27b70.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "D8SuOAHHuRsEe9MWrwApVgAAAAAAAABU"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.messageReceived(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage, long)", "offset": 10}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VxlwUtXHQJ-6YwCZd_dtKgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "boolean java.util.TreeMap$KeySet.contains(java.lang.Object)"}, "line": {"number": 1406}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_qijKAoIrj192_UIiHcBhwAAAAAAAABj"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.writeValuesSingleBlock(org.apache.lucene.index.SortedNumericDocValues, long, int, long, long, java.util.Map)", "offset": 1}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2wnY5LHpXWwzeDfG9W1LxgAAAAAAAADG"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeString(java.lang.String)", "offset": 24}, "line": {"number": 447}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hWe0txF4VTCnpPCin56NIAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$BaseSortedDocValues.(org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer, org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$SortedEntry)", "offset": 2}, "line": {"number": 971}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iPoF_Ui5YRD0sJmeHgRlZgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 856}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7bWgTFa6WR_dzzUmS4mVHgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext.lambda$captureAsWriteable$3(org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct, org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 145}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gnQnX6SwfbYb7NNG7A5MbgAAAAAAAAEX"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 279}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACjq2Q"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/reflect/value.go"}, "function": {"name": "reflect.Value.Method"}, "line": {"number": 87}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_eQZ"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/auditd/audit_linux.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/auditd.(*MetricSet).Run.func2"}, "line": {"number": 237}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oHTsfbgA1Z8-0E_rI_bqswAAAAAAAABi"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 98}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mVg5ImyOXWtTMPsPyAoJFAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler.lambda$new$0(org.elasticsearch.transport.BytesTransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Cm3FF_uDQeutHnQs3UGjlgAAAAAAAADA"}} -{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 36}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XLN55eJ2HplxP0Fb2YBmOQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "PipelineConfiguration.java"}, "function": {"name": "java.util.Map org.elasticsearch.ingest.PipelineConfiguration.getConfigAsMap()"}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CBHuHFEZWQ-fJ4IkYrsh7gAAAAAAAAB2"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 118}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zLx6iJ9ANFZvdAJHeiPhJwAAAAAAAAC_"}} -{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter.flush(boolean)", "offset": 17}, "line": {"number": 249}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LH5Rq2KMtk8z3fPDJ8fY-QAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "PathParser.java"}, "function": {"name": "com.typesafe.config.impl.Path com.typesafe.config.impl.PathParser.speculativeFastParsePath(java.lang.String)", "offset": 1}, "line": {"number": 276}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zxIhSYMrYCNgOD4FFp83ywAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "SSLSocketOutputRecord.java"}, "function": {"name": "void sun.security.ssl.SSLSocketOutputRecord.flush()"}, "line": {"number": 253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VoQ5AJHHG4Z_KZgZidNsZQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "org.elasticsearch.common.xcontent.ToXContent org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.readBlob(org.elasticsearch.common.blobstore.BlobContainer, java.lang.String)"}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_wts"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/file_integrity/event.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/file_integrity.NewEventFromFileInfo"}, "line": {"number": 188}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Q9iVqOAjuUhPCVXdqyfA4wAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "java.lang.String org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.blobName(java.lang.String)"}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgVN"}} -{"Stackframe": {"function": {"name": "irq_exit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HmyLhU9RcHRbUlpw2pkosAAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object no.found.docker.DockerContainerManager$$Lambda$1413.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6VYF5N-BuQJFpRAEJ6HL5gAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct$$Lambda$7362+0x0000000802518ab8.apply(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrkJ"}} -{"Stackframe": {"function": {"name": "htab_map_get_next_key"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-tMk"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgstats.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.(*StatsV1).FillPercentages"}, "line": {"number": 61}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hMfFCW9t8HVIov0xp1yDjQAAAAAAAABo"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObjectOrNested(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper)", "offset": 29}, "line": {"number": 282}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlNsK"}} -{"Stackframe": {"function": {"name": "ip_local_out"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BpjC-8pIlVVLzRZabfYgbwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "SegmentCommitInfo.java"}, "function": {"name": "java.util.Collection org.apache.lucene.index.SegmentCommitInfo.files()"}, "line": {"number": 241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "96ekPc0pNvq68mLyXCOFbgAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "NestedDocuments.java"}, "function": {"name": "org.apache.lucene.search.Weight org.elasticsearch.search.NestedDocuments.access$400(org.elasticsearch.search.NestedDocuments, org.apache.lucene.index.LeafReaderContext, java.lang.String)"}, "line": {"number": 34}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "T9rAuKzjpsGWuACV2eUk6AAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Releasables.java"}, "function": {"name": "void org.elasticsearch.core.Releasables.close(org.elasticsearch.core.Releasable)"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gh_K7CtMZSwMT_r293oSrwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SearchExecutionStatsCollector.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchExecutionStatsCollector.onResponse(java.lang.Object)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Xw9SMMauw-oBWYANca-iwQAAAAAAAAHm"}} -{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.ObjectParser.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object, java.lang.Object)", "offset": 55}, "line": {"number": 324}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "t1J8MwohlN0N8mOD0D4M9AAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.search.SearchService$$Lambda$5394.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASenT"}} -{"Stackframe": {"function": {"name": "apparmor_file_open"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANr3F"}} -{"Stackframe": {"function": {"name": "proc_single_show"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jg3LdO4DNz9FsefjUG1F1gAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)"}, "line": {"number": 629}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i98a9V97mb3FGgZG6edCFQAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.Settings$Builder.build()", "offset": 5}, "line": {"number": 1337}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaQ6"}} -{"Stackframe": {"function": {"name": "handle_mm_fault"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jxC-yJ269vYCy31KbC4fCwAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "ForkJoinPool.java"}, "function": {"name": "void java.util.concurrent.ForkJoinPool.managedBlock(java.util.concurrent.ForkJoinPool$ManagedBlocker)", "offset": 4}, "line": {"number": 3689}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABRc5"}} -{"Stackframe": {"file": {"name": "runtime/stack.go"}, "function": {"name": "runtime.newstack"}, "line": {"number": 1074}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEfpK"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.gcDrain"}, "line": {"number": 1148}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MsLhtgluwqlsWifr9EhIqwAAAAAAAABv"}} -{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "void org.elasticsearch.cluster.ClusterState$ClusterStateDiff.(org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)", "offset": 9}, "line": {"number": 771}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MbaOnaCMmj3Z2Dka8DRidwAAAAAAAAEn"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.mergeSortedSetField(org.apache.lucene.index.FieldInfo, org.apache.lucene.index.MergeState)", "offset": 41}, "line": {"number": 850}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fEiYEja4VdiU8ifU8vItEAAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.maybeAuthorizeRunAs(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 27}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BEHb4enMXpAQTkYNH-EvIgAAAAAAAACD"}} -{"Stackframe": {"file": {"name": "BKDReader.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDReader.visitCompressedDocValues(int[], byte[], org.apache.lucene.store.IndexInput, org.apache.lucene.util.bkd.BKDReader$BKDReaderDocIDSetIterator, int, org.apache.lucene.index.PointValues$IntersectVisitor, int)", "offset": 11}, "line": {"number": 586}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "56J_quP6E7ubMy0oFC4pVgAAAAAAAABq"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.lang.Object java.util.TreeMap.put(java.lang.Object, java.lang.Object, boolean)", "offset": 24}, "line": {"number": 807}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eC1ezKjb5n0AmQucckax6gAAAAAAAAB8"}} -{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "long com.typesafe.config.impl.SimpleConfig.parseBytes(java.lang.String, com.typesafe.config.ConfigOrigin, java.lang.String)", "offset": 24}, "line": {"number": 877}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Xqo7-ger7Rh6Qo72br9qjwAAAAAAAABj"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.lambda$onResponse$0(org.elasticsearch.core.Releasable, java.lang.Void)", "offset": 14}, "line": {"number": 684}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cRoGFhrzTt6STyxXzS_QFgAAAAAAAACz"}} -{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer.executeSingleUpload(org.elasticsearch.repositories.s3.S3BlobStore, java.lang.String, java.io.InputStream, long)", "offset": 17}, "line": {"number": 345}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yhF9CEzH60wdDBblzY1FcQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "long java.nio.file.Files.size(java.nio.file.Path)"}, "line": {"number": 2460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fkbxUTZgljnk71ZMnqJnyAAAAAAAAAPS"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "long[] org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.writeValues(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer, boolean)", "offset": 138}, "line": {"number": 328}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sWO8JE0tCt_to2b5Aa2uZAAAAAAAAAET"}} -{"Stackframe": {"file": {"name": "CoordinationState.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishResponse org.elasticsearch.cluster.coordination.CoordinationState.handlePublishRequest(org.elasticsearch.cluster.coordination.PublishRequest)", "offset": 22}, "line": {"number": 346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAAWka"}} -{"Stackframe": {"function": {"name": "xfs_attr_get"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACqVVk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/path/filepath/match.go"}, "function": {"name": "path/filepath.matchChunk"}, "line": {"number": 124}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yFlR39-25JyGM4rHrh-UQgAAAAAAAAA_"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 14}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8V6XK3FeexwVTaF25UCL_QAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "IndexSearcher.java"}, "function": {"name": "void org.apache.lucene.search.IndexSearcher.search(org.apache.lucene.search.Query, org.apache.lucene.search.Collector)", "offset": 1}, "line": {"number": 519}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MAV03uVftX-j0VYOYLhjMAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "long com.typesafe.config.impl.SimpleConfig.getLong(java.lang.String)"}, "line": {"number": 240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "r8runDm4rOcHO76XR-D7jAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.commit()", "offset": 1}, "line": {"number": 3728}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACl"}} -{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.SoftDeletesRetentionMergePolicy.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.util.IOSupplier)", "offset": 16}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7cmb22whxY0bA1iJW0qJnQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "java.lang.Runnable org.elasticsearch.common.util.concurrent.ThreadContext.preserveContext(java.lang.Runnable)"}, "line": {"number": 540}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I0QtQ3x5Qtt-qibQRB-qEAAAAAAAAACE"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()", "offset": 26}, "line": {"number": 1069}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j6I1JIHpAL-9bOzL7P9UBAAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "SystemPrivilege.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authz.privilege.SystemPrivilege.lambda$static$0(java.lang.String)", "offset": 3}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABWCYO"}} -{"Stackframe": {"file": {"name": "github.com/cilium/ebpf@v0.9.1/perf/ring.go"}, "function": {"name": "github.com/cilium/ebpf/perf.(*ringReader).writeTail"}, "line": {"number": 136}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6KM6RK-sq5wYpyjnMfBa7AAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "BufferedInputStream.java"}, "function": {"name": "int java.io.BufferedInputStream.read1(byte[], int, int)", "offset": 9}, "line": {"number": 284}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rBhH0j2VK5-SoJFag65jhQAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "DataInput.java"}, "function": {"name": "java.util.Map org.apache.lucene.store.DataInput.readMapOfStrings()", "offset": 9}, "line": {"number": 295}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkLvx"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).scanOne"}, "line": {"number": 1003}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DzZ0dEa7XDjtQVGFBWf08wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation$2.onResponse(java.lang.Object)"}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AlyGmh1B04rpTwKhuQi5WgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "boolean org.apache.lucene.codecs.lucene80.IndexedDISI$Method$3.advanceWithinBlock(org.apache.lucene.codecs.lucene80.IndexedDISI, int)"}, "line": {"number": 582}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_MQes3sHvEekr3K4ZbAgxQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AuthenticationContextSerializer.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authc.support.AuthenticationContextSerializer.writeToContext(org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 1}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FfM3fVYqFhj_g4shLOoSnQAAAAAAAAHo"}} -{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.doInternalExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.bulk.BulkRequest, java.lang.String, org.elasticsearch.action.ActionListener)", "offset": 73}, "line": {"number": 295}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FTxQJid-O66-FuYdEDBjgwAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequest(org.elasticsearch.cluster.node.DiscoveryNode, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 6}, "line": {"number": 690}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bSOCnQZhb4DGUD41yl3cIwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.index.engine.InternalEngine$$Lambda$6303+0x0000000801c4f980.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "java.lang.Throwable java.lang.Throwable.fillInStackTrace(int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d6vLc-6LmdJJqEBrvxNh0AAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object[] java.util.HashMap.valuesToArray(java.lang.Object[])", "offset": 4}, "line": {"number": 973}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0MW66HYbW_rij8hwBxmYwgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object[] java.util.HashMap$Values.toArray(java.lang.Object[])"}, "line": {"number": 1056}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2Z0wUnO7PTDrZjS1nqYP3gAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5098.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3yZRDT05_hGvUj8jRvChFAAAAAAAAAIW"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "boolean org.apache.lucene.index.ReadersAndUpdates.writeFieldUpdates(org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos$FieldNumbers, long, org.apache.lucene.util.InfoStream)", "offset": 74}, "line": {"number": 579}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACotD"}} -{"Stackframe": {"function": {"name": "check_kill_permission"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV"}} -{"Stackframe": {"function": {"name": "vfs_statx"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IVO-RQda5ZeHpRn5q2HynQAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "DecimalFormatSymbols.java"}, "function": {"name": "char java.text.DecimalFormatSymbols.findNonFormatChar(java.lang.String, char)", "offset": 2}, "line": {"number": 778}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7eP3POMzJHenXrvglsJksAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "SSLSocketInputRecord.java"}, "function": {"name": "int sun.security.ssl.SSLSocketInputRecord.bytesInCompletePacket()"}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QZsHYw-ADMXvukPIf-hnuwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "MessageDigest.java"}, "function": {"name": "void java.security.MessageDigest$Delegate.engineUpdate(byte[], int, int)"}, "line": {"number": 612}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uraoWhBOdiQ6iFFB6Pd3KQAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "KeywordFieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.KeywordFieldMapper.indexValue(org.elasticsearch.index.mapper.DocumentParserContext, java.lang.String)", "offset": 12}, "line": {"number": 587}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4MmFlXNlAaTTYzJu9ZvlFQAAAAAAAABi"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.checkpoint(org.apache.lucene.index.SegmentInfos, boolean)", "offset": 18}, "line": {"number": 582}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChlYs"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/traceback.go"}, "function": {"name": "runtime.gentraceback"}, "line": {"number": 384}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L-qs_NfIroV4qP0e80fCMQAAAAAAAAHT"}} -{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "boolean org.elasticsearch.search.query.QueryPhase.executeInternal(org.elasticsearch.search.internal.SearchContext)", "offset": 95}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l24TKPxY5vj1MuNBElA0bwAAAAAAAACO"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.computeIfAbsent(java.lang.Object, java.util.function.Function)", "offset": 17}, "line": {"number": 1206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "P0AToR6W6s0AJL4UK2BztAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "HeaderWarning.java"}, "function": {"name": "void org.elasticsearch.common.logging.HeaderWarning.addWarning(java.lang.String, java.lang.Object[])"}, "line": {"number": 322}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YpGsHkxceiVZ0xhRrwJS4QAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "java.util.regex.Pattern$Node java.util.regex.Pattern.expr(java.util.regex.Pattern$Node)", "offset": 6}, "line": {"number": 2086}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChkN8"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/traceback.go"}, "function": {"name": "runtime.gentraceback"}, "line": {"number": 292}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "D8SuOAHHuRsEe9MWrwApVgAAAAAAAAEC"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.messageReceived(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage, long)", "offset": 36}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R0nUK_3cT-awvSJLlH7CqQAAAAAAAAGv"}} -{"Stackframe": {"file": {"name": "MessageAggregator.java"}, "function": {"name": "void io.netty.handler.codec.MessageAggregator.decode(io.netty.channel.ChannelHandlerContext, java.lang.Object, java.util.List)", "offset": 92}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgIR"}} -{"Stackframe": {"function": {"name": "kmem_cache_alloc"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hBjrA2c_oiTJGPK0-zWQDgAAAAAAAAGg"}} -{"Stackframe": {"file": {"name": "ScriptService.java"}, "function": {"name": "java.lang.Object org.elasticsearch.script.ScriptService.compile(org.elasticsearch.script.Script, org.elasticsearch.script.ScriptContext)", "offset": 49}, "line": {"number": 404}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-608Y9iRXt2aMla4TEV9NgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "DocIdSetIterator.java"}, "function": {"name": "int org.apache.lucene.search.DocIdSetIterator$2.advance(int)"}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jFdJcMgaSFpzbEGK5Q4RcQAAAAAAAADl"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeBulkItems$19(org.elasticsearch.action.bulk.BulkShardRequest, java.util.Map, org.elasticsearch.xpack.security.audit.AuditTrail, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, java.util.Collection)", "offset": 56}, "line": {"number": 803}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACELGk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/lock_futex.go"}, "function": {"name": "runtime.notesleep"}, "line": {"number": 160}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M87JWO6FKSokmgyC0_oEgQAAAAAAAADf"}} -{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "void org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction.prepareBulkRequest(long, org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction$ScrollConsumableHitsResponse)", "offset": 33}, "line": {"number": 396}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qJLvg5a2zeGb6EcYZpSyBAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaResult org.elasticsearch.action.bulk.TransportShardBulkAction.lambda$dispatchedShardOperationOnReplica$4(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard)"}, "line": {"number": 411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VAdqcINUx5DgjncB0yc-XAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "LoggerInfoStream.java"}, "function": {"name": "org.apache.logging.log4j.Logger org.elasticsearch.common.lucene.LoggerInfoStream.getLogger(java.lang.String)"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMb6z"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/shirou/gopsutil@v3.20.12+incompatible/net/net_linux.go"}, "function": {"name": "github.com/shirou/gopsutil/net.getProcInodesAll"}, "line": {"number": 875}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mBUMQufVJBVVG00JrcabBwAAAAAAAABQ"}} -{"Stackframe": {"file": {"name": "MappingVisitor.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.stats.MappingVisitor.visitMapping(java.util.Map, java.util.function.Consumer)", "offset": 9}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7wb_zxGk1rY1-IahtRCQAQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.field(java.lang.String, java.lang.String)", "offset": 4}, "line": {"number": 714}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DLrWTvtAPDh4Uv4u2shragAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4$HighCompressionHashTable.()", "offset": 4}, "line": {"number": 309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Er2yE5HxkoOQjHTSQIF_kwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentParser$Token org.elasticsearch.common.xcontent.json.JsonXContentParser.nextToken()"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hUPoNBA6kXjhPYaRSr0adwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 765}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApUY5"}} -{"Stackframe": {"function": {"name": "vsnprintf"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XnoSB634C4csFM2aSGubHwAAAAAAAABN"}} -{"Stackframe": {"file": {"name": "HttpURLConnection.java"}, "function": {"name": "void sun.net.www.protocol.http.HttpURLConnection.plainConnect()", "offset": 24}, "line": {"number": 1127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUktl"}} -{"Stackframe": {"function": {"name": "string_escape_mem"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgUck"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/malloc.go"}, "function": {"name": "runtime.mallocgc"}, "line": {"number": 909}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wS1mUKPWrSXa8bILcIpcpAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "AbstractBaseReindexRestHandler.java"}, "function": {"name": "void org.elasticsearch.reindex.AbstractBaseReindexRestHandler.lambda$doPrepareRequest$0(org.elasticsearch.client.internal.node.NodeClient, org.elasticsearch.index.reindex.AbstractBulkByScrollRequest, java.util.Map, org.elasticsearch.rest.RestChannel)"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL4VU"}} -{"Stackframe": {"function": {"name": "__fget"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CvC3lIC7E70AiCoZ7DVYSQAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline$2$1.accept(java.lang.Object)", "offset": 1}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RrX6FPh752CbnoVoAqm8RAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.unknownValue(java.lang.Object, boolean)"}, "line": {"number": 809}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "giwOUz_dwg5QpZ6rn_mtEAAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "void org.apache.lucene.index.SegmentMerger.mergeWithLogging(org.apache.lucene.index.SegmentMerger$VoidMerger, org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.SegmentReadState, java.lang.String, int)", "offset": 4}, "line": {"number": 293}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wwh143L4mTM-msioEjaOPQAAAAAAAACO"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult io.netty.handler.ssl.SslHandler.wrap(io.netty.buffer.ByteBufAllocator, javax.net.ssl.SSLEngine, io.netty.buffer.ByteBuf, io.netty.buffer.ByteBuf)", "offset": 33}, "line": {"number": 1041}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Lo4vekCHinjF7Q5VWYdDHgAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "RetentionLeaseBackgroundSyncAction.java"}, "function": {"name": "org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaResult org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction.lambda$shardOperationOnReplica$1(org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction$Request, org.elasticsearch.index.shard.IndexShard)", "offset": 3}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_JGVtHUnAlXD1QiapB_OyQAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 326}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jQWANZrMPDFk0n7awqzZRAAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.onResponse(org.elasticsearch.core.Releasable)", "offset": 2}, "line": {"number": 666}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFX-E"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/time.go"}, "function": {"name": "runtime.runtimer"}, "line": {"number": 771}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mW2YX0W7f8kHZ9OF_UwxgwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.exists(java.nio.file.Path)", "offset": 2}, "line": {"number": 537}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-uK72e9VYGmyoGlh8BBvZwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$6508+0x0000000801c92340.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ChGc_KlbDChxhbLYz-xpPwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "TimedRunnable.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.TimedRunnable.doRun()", "offset": 1}, "line": {"number": 33}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesProducer.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene80.Lucene80DocValuesProducer$SparseNumericDocValues.nextDoc()"}, "line": {"number": 484}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Sptm9dTy_pulUFIplJc3bgAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "ResolveStatus.java"}, "function": {"name": "com.typesafe.config.impl.ResolveStatus com.typesafe.config.impl.ResolveStatus.fromValues(java.util.Collection)"}, "line": {"number": 16}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DV8z6pYe1ipSuOK8g57sSwAAAAAAAABv"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 111}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vtOmTuUGvKYiQRK_O9kHuwAAAAAAAANh"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "long[] org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.writeValues(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 116}, "line": {"number": 286}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-pGE"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/memory.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.memoryStats"}, "line": {"number": 144}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2RAgh2aeFxosXWCzh6AZWQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "PoolArena.java"}, "function": {"name": "void io.netty.buffer.PoolArena.free(io.netty.buffer.PoolChunk, java.nio.ByteBuffer, long, int, io.netty.buffer.PoolThreadCache)"}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACqWC4"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/path/filepath/match.go"}, "function": {"name": "path/filepath.glob"}, "line": {"number": 346}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KT1k868eD2qQmUzA-ezg2wAAAAAAAACn"}} -{"Stackframe": {"file": {"name": "CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush()", "offset": 15}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZqFdsc4dQ8tQzsRqUhERGQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "HttpPut.java"}, "function": {"name": "void org.apache.http.client.methods.HttpPut.(java.lang.String)", "offset": 1}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZXdWkChUCjmBhCYfjJANcwAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.List org.elasticsearch.xcontent.support.AbstractXContentParser.readListUnsafe(org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier)", "offset": 3}, "line": {"number": 370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j28kOyi7SuaCDi2YxjsqIQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$2.onResponse(java.lang.Object)"}, "line": {"number": 386}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HDK8__dlE-AoQGBiDmXadwAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$7062+0x00000008024ae650.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAFzhz"}} -{"Stackframe": {"file": {"name": "github.com/cilium/ebpf@v0.9.1/map.go"}, "function": {"name": "github.com/cilium/ebpf.(*Map).Delete"}, "line": {"number": 716}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinDe"}} -{"Stackframe": {"function": {"name": "sock_read_iter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i-4IPl_ionHN39EKN5HXmQAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Object)", "offset": 2}, "line": {"number": 1032}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m8XR0uqpcqn95w8XyT3DZQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction$$Lambda$9074+0x000000080282c730.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QjcJgCUAsytsXGSmYCNuVgAAAAAAAACL"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 70}, "line": {"number": 605}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ytp3uU49O__eOELoHoYHXgAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.lambda$onResponse$2(org.elasticsearch.core.Releasable, org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaResult)"}, "line": {"number": 568}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "boolean org.elasticsearch.search.query.QueryPhase.searchWithCollector(org.elasticsearch.search.internal.SearchContext, org.elasticsearch.search.internal.ContextIndexSearcher, org.apache.lucene.search.Query, java.util.LinkedList, boolean, boolean)", "offset": 14}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VKihQg4JvcN4yNj-XA9HxgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.internal.support.AbstractClient.bulk(org.elasticsearch.action.bulk.BulkRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEYG0"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mem_linux.go"}, "function": {"name": "runtime.sysUnused"}, "line": {"number": 92}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I0USoma0OWjdGMGSaTNhgQAAAAAAAABO"}} -{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.scoreRange(org.apache.lucene.search.LeafCollector, org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.search.TwoPhaseIterator, org.apache.lucene.util.Bits, int, int)", "offset": 11}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qv94DrtQsXldqyi1u95XpQAAAAAAAABz"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.lambda$executeRequest$3(org.elasticsearch.tasks.Task, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.action.ActionListener, org.elasticsearch.action.search.TransportSearchAction$SearchAsyncActionProvider, org.elasticsearch.action.search.SearchRequest)", "offset": 13}, "line": {"number": 288}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2vX1VQ8rxHA7GBHUrWVCPQAAAAAAAAE6"}} -{"Stackframe": {"file": {"name": "AccessControlContext.java"}, "function": {"name": "java.security.AccessControlContext java.security.AccessControlContext.optimize()", "offset": 88}, "line": {"number": 656}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yr4X--AwYxsbC6m4-WPbMwAAAAAAAABk"}} -{"Stackframe": {"file": {"name": "W3CTraceContextPropagator.java"}, "function": {"name": "void io.opentelemetry.api.trace.propagation.W3CTraceContextPropagator.inject(io.opentelemetry.context.Context, java.lang.Object, io.opentelemetry.context.propagation.TextMapSetter)", "offset": 19}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sIwqahRkjtW0nY-bGfyZwwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Exception.java"}, "function": {"name": "void java.lang.Exception.(java.lang.String)"}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ucg8lCUKHDJi43v2r9fcDAAAAAAAAAD1"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.index.SegmentMerger.merge()", "offset": 40}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF"}} -{"Stackframe": {"function": {"name": "do_syscall_64"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WFVy8ut4LPnLUpwUFH-HpAAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 43}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h3PxPMxQ128l0j8OgQ1S2QAAAAAAAAEK"}} -{"Stackframe": {"file": {"name": "BoolQueryBuilder.java"}, "function": {"name": "org.elasticsearch.index.query.QueryBuilder org.elasticsearch.index.query.BoolQueryBuilder.doRewrite(org.elasticsearch.index.query.QueryRewriteContext)", "offset": 18}, "line": {"number": 372}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eVW9lCqHxlTfD5Rt7tiZeQAAAAAAAABa"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.netty.channel.ChannelPromise)", "offset": 18}, "line": {"number": 966}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_V8LkuZDYhsRC_uInyycHQAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.ApiKeyService$$Lambda$8978+0x00000008027ff918.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rKrxC_ObXyDlTrCXeVg8QAAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "int java.lang.String$CaseInsensitiveComparator.compare(java.lang.String, java.lang.String)", "offset": 4}, "line": {"number": 1254}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KGVSBMVyriI5T93UZw1WLgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 758}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Arz1MMWCC2fkAl6FCL43rAAAAAAAAABQ"}} -{"Stackframe": {"file": {"name": "PushPostingsWriterBase.java"}, "function": {"name": "org.apache.lucene.codecs.BlockTermState org.apache.lucene.codecs.PushPostingsWriterBase.writeTerm(org.apache.lucene.util.BytesRef, org.apache.lucene.index.TermsEnum, org.apache.lucene.util.FixedBitSet, org.apache.lucene.codecs.NormsProducer)", "offset": 12}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "int org.apache.lucene.index.SegmentMerger.mergeFields()"}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MrVvriJqF-HOpa8js-mFagAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.action.support.TransportAction.execute(org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 8}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ThHx02WSVIFKDSz-RNDkKgAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "InputStreamStreamInput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.InputStreamStreamInput.readBytes(byte[], int, int)", "offset": 2}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L-_tQCaPRoXtazKap89hsgAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 1}, "line": {"number": 940}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACsosc"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/processing/processors.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/processing.(*group).Run"}, "line": {"number": 121}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-xil"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.(*StatsV1).Format"}, "line": {"number": 1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEea2"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.gcAssistAlloc1"}, "line": {"number": 636}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ag97EyDW0l6c06ZZZZmfNQAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "void java.util.AbstractMap.putAll(java.util.Map)", "offset": 1}, "line": {"number": 280}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACtsUE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/http/request.go"}, "function": {"name": "net/http.ReadResponse"}, "line": {"number": 86}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "40ES46dU7pwVTIhZzOkjPwAAAAAAAAB3"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermissionCollection.implies(java.security.Permission)", "offset": 16}, "line": {"number": 1209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AAAAAAAAV4sAAAAAAAAAHWqIu3LwO1Gg"}} -{"Stackframe": {"function": {"name": "ExceptionBlob"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vXVOM0RUNPbhG-uGpBKXiQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "HierarchyCircuitBreakerService.java"}, "function": {"name": "long org.elasticsearch.indices.breaker.HierarchyCircuitBreakerService.currentMemoryUsage()"}, "line": {"number": 372}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qVR5DaLjXEU8jLMRHSvKKAAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.dataformat.smile.SmileParser._findOrDecodeShortAsciiName(int)", "offset": 4}, "line": {"number": 1465}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bXAL0Ge_HcVwkBrUXRRiLwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportBroadcastByNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 437}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s6_uo1oDaVy6YH62gW5X5AAAAAAAAAOq"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 938}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADHSa5"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/actions/add_labels.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/actions.init.1"}, "line": {"number": 35}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X9lpa9TN84k-aLBSFJ8EgQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "CheckedOutputStream.java"}, "function": {"name": "void java.util.zip.CheckedOutputStream.write(byte[], int, int)"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s1rBQ7BuxkQsXZem_2risAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "void java.lang.String.(byte[], int, int, java.nio.charset.Charset)"}, "line": {"number": 521}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2"}} -{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.score(org.apache.lucene.search.LeafCollector, org.apache.lucene.util.Bits, int, int)", "offset": 28}, "line": {"number": 254}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4WfxSZZOhaeF5aBtMr0YVQAAAAAAAACN"}} -{"Stackframe": {"file": {"name": "TranslogWriter.java"}, "function": {"name": "void org.elasticsearch.index.translog.TranslogWriter.writeAndReleaseOps(org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 20}, "line": {"number": 480}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ETOJ-3ScyIWVpISjqClk8AAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "SegmentTermsEnum.java"}, "function": {"name": "org.apache.lucene.index.PostingsEnum org.apache.lucene.codecs.lucene90.blocktree.SegmentTermsEnum.postings(org.apache.lucene.index.PostingsEnum, int)", "offset": 8}, "line": {"number": 1137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMR0m"}} -{"Stackframe": {"function": {"name": "__x64_sys_fdatasync"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XzWVAFfWPkx_-5DzBgosgQAAAAAAAADa"}} -{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "void org.apache.lucene.index.SegmentReader.(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.store.IOContext)", "offset": 24}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hbsDty_3N_qXQWlmH_SsFwAAAAAAAAC8"}} -{"Stackframe": {"file": {"name": "LoggerConfig.java"}, "function": {"name": "void org.apache.logging.log4j.core.config.LoggerConfig.log(java.lang.String, java.lang.String, org.apache.logging.log4j.Marker, org.apache.logging.log4j.Level, org.apache.logging.log4j.message.Message, java.lang.Throwable)", "offset": 23}, "line": {"number": 404}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_BbE"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/audit.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2.parseNetlinkAuditMessage"}, "line": {"number": 558}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zYneCjUHNgP0y9mK3A4z3wAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "SegmentDocValues.java"}, "function": {"name": "void org.apache.lucene.index.SegmentDocValues.decRef(java.util.List)"}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjoZw"}} -{"Stackframe": {"function": {"name": "rtnl_dump_ifinfo"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "45C-Q8d2gQJCMIvUacUWRQAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "ReaderBasedJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.ReaderBasedJsonParser.nextToken()", "offset": 9}, "line": {"number": 671}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bFNBCgHVi2ZK2yGNK4LXZgAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "OutboundMessage.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.transport.OutboundMessage.serialize(org.elasticsearch.common.io.stream.RecyclerBytesStreamOutput)", "offset": 1}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l7U3ml7f2_vVtVCQjrIATgAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$resolveAuthorizationInfo$0(org.elasticsearch.action.ActionListener, org.elasticsearch.core.Tuple)"}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nnCec0a2-ZcuYpnWUHHz2AAAAAAAAACK"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 10}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4yG9IdLfPOQJQp1BxdOq7wAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.apply(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.support.ActionFilterChain)", "offset": 24}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "voerPJynIqAClUlmnxZ2egAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AbstractRestChannel.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.rest.AbstractRestChannel.newBuilder(org.elasticsearch.common.xcontent.XContentType, boolean)"}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgURk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/malloc.go"}, "function": {"name": "runtime.mallocgc"}, "line": {"number": 1117}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ge0L0SwsSbyUWsXqVMbKswAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.io.OutputStream java.nio.file.Files.newOutputStream(java.nio.file.Path, java.nio.file.OpenOption[])"}, "line": {"number": 224}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bs_Gat2VhUkd7zBBQ8J8ogAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "Thread.java"}, "function": {"name": "void java.lang.Thread.start()", "offset": 10}, "line": {"number": 800}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$3.onResponse(java.lang.Void)", "offset": 7}, "line": {"number": 404}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wsEP3PfgbWsvPc4Y_rpLYQAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "ActionRunnable.java"}, "function": {"name": "void org.elasticsearch.action.ActionRunnable$1.doRun()", "offset": 1}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA8p"}} -{"Stackframe": {"function": {"name": "mangle_path"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACu6iE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/syntax/parse.go"}, "function": {"name": "regexp/syntax.cleanClass"}, "line": {"number": 1711}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiMqk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/syscall_unix.go"}, "function": {"name": "syscall.recvfrom"}, "line": {"number": 163}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BYItgZpVD2E3ydG9PJ9meAAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter$CommitPoint.(java.util.Collection, org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfos)", "offset": 6}, "line": {"number": 771}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M123ooeMvaMWHcBRAZSRjgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "void org.elasticsearch.index.engine.Engine$Searcher.close()"}, "line": {"number": 1257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sQjNkxldKaQX3UjPy9RAMAAAAAAAAADG"}} -{"Stackframe": {"file": {"name": "HandshakeContext.java"}, "function": {"name": "void sun.security.ssl.HandshakeContext.(sun.security.ssl.SSLContextImpl, sun.security.ssl.TransportContext)", "offset": 80}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAFzcM"}} -{"Stackframe": {"file": {"name": "github.com/cilium/ebpf@v0.9.1/map.go"}, "function": {"name": "github.com/cilium/ebpf.(*Map).Update"}, "line": {"number": 695}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "U5s7FYWEmhjGUiz8TfmatwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "QuotaAwareFileSystemProvider.java"}, "function": {"name": "java.io.InputStream co.elastic.cloud.quotaawarefs.QuotaAwareFileSystemProvider$2.run()"}, "line": {"number": 207}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L6NB6jwnRxtULB7hcgQnbAAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "void io.netty.util.concurrent.DefaultPromise.notifyListenersNow()", "offset": 11}, "line": {"number": 550}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACm_d4"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/math/big/int.go"}, "function": {"name": "math/big.(*Int).GCD"}, "line": {"number": 532}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4QIIx_RTI-U6Jemfp5_ozQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ReentrantReadWriteLock.java"}, "function": {"name": "void java.util.concurrent.locks.ReentrantReadWriteLock$ReadLock.lock()"}, "line": {"number": 738}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hDF35J9yuBLmXhpu5RmYAgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void co.elastic.apm.agent.opentelemetry.sdk.OTelSpanBuilder$$Lambda$6319+0x00000008023bc3b8.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIqqV"}} -{"Stackframe": {"function": {"name": "pagevec_lru_move_fn"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACeoV"}} -{"Stackframe": {"function": {"name": "do_exit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TjxFc0HQ96iL53C9T5C2dwAAAAAAAAB4"}} -{"Stackframe": {"file": {"name": "SegmentCommitInfo.java"}, "function": {"name": "org.apache.lucene.index.SegmentCommitInfo org.apache.lucene.index.SegmentCommitInfo.clone()", "offset": 13}, "line": {"number": 392}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AC6sIDdQuWlno6mhwaFiZwAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "Lucene60FieldInfosFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene60.Lucene60FieldInfosFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.index.FieldInfos, org.apache.lucene.store.IOContext)", "offset": 1}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard$$Lambda$6948+0x0000000801d39ff8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3yZRDT05_hGvUj8jRvChFAAAAAAAAAOx"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "boolean org.apache.lucene.index.ReadersAndUpdates.writeFieldUpdates(org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos$FieldNumbers, long, org.apache.lucene.util.InfoStream)", "offset": 126}, "line": {"number": 631}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xECaySoRVFo6IJeFd4k5qQAAAAAAAACJ"}} -{"Stackframe": {"file": {"name": "SortedSetDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedSetDocValuesWriter.addValue(int, org.apache.lucene.util.BytesRef)", "offset": 13}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.roles(java.util.Set, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiGjJ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/syscall_unix.go"}, "function": {"name": "syscall.cloexecSocket"}, "line": {"number": 466}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JuabnPpYUK9LMftD27r04AAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "GlobalOrdinalsIndexFieldData.java"}, "function": {"name": "org.apache.lucene.index.SortedSetDocValues org.elasticsearch.index.fielddata.ordinals.GlobalOrdinalsIndexFieldData$Consumer$1.getOrdinalsValues()", "offset": 5}, "line": {"number": 226}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "isG4XFXxe-F-cnbJLaRjfQAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 2}, "line": {"number": 542}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi_Z0"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file_unix.go"}, "function": {"name": "os.openFileNolog"}, "line": {"number": 226}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAADoDk"}} -{"Stackframe": {"file": {"name": "fmt/print.go"}, "function": {"name": "fmt.(*pp).printArg"}, "line": {"number": 691}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkR-s"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/strings.go"}, "function": {"name": "strings.genSplit"}, "line": {"number": 259}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HDtxjNJh5HryAaa7uCACXgAAAAAAAAIL"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 523}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l-sBEPXDA8ztd_41Qie1FgAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "boolean org.elasticsearch.index.translog.Translog.ensureSynced(org.elasticsearch.index.translog.Translog$Location)", "offset": 3}, "line": {"number": 844}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wZt4QZd5Wl87QA05fN5iDQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$4259.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4pD3shcvlMj_8ybo7T2TVAAAAAAAAAFC"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.handleIncomingPublishRequest(org.elasticsearch.transport.BytesTransportRequest)", "offset": 44}, "line": {"number": 432}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 5}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MMAujfe9xzktoHyDqw_cGgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.DefaultChannelPipeline.writeAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 1020}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAit8t"}} -{"Stackframe": {"function": {"name": "sock_wfree"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD7KI"}} -{"Stackframe": {"function": {"name": "mutex_spin_on_owner"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4jvBbXAN_lim48YacoDW_QAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACjI5e"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strconv/atoi.go"}, "function": {"name": "strconv.ParseUint"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$4485.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R43ZllDvnEdmnbtgRhdSeAAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.onResponse(java.lang.Object)", "offset": 7}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4Li8JminJT1Mx1CXzLpHdAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Hasher.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authc.support.Hasher.verifyHash(org.elasticsearch.common.settings.SecureString, char[])"}, "line": {"number": 585}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iBJkiXL4jbMXTevP0sFGowAAAAAAAAB3"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Result org.elasticsearch.action.bulk.TransportShardBulkAction.performOpOnReplica(org.elasticsearch.action.DocWriteResponse, org.elasticsearch.action.DocWriteRequest, org.elasticsearch.index.shard.IndexShard)", "offset": 7}, "line": {"number": 464}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BevrzSlVkhIOt2sEBqNUcwAAAAAAAABH"}} -{"Stackframe": {"file": {"name": "HttpURLConnection.java"}, "function": {"name": "void sun.net.www.protocol.http.HttpURLConnection.plainConnect()", "offset": 21}, "line": {"number": 1081}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AKsZrYpx9x7YIwCoD9d3dgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "NodeClient.java"}, "function": {"name": "void org.elasticsearch.client.node.NodeClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QbvBm5K9FvRcVX9RX9KOswAAAAAAAACK"}} -{"Stackframe": {"file": {"name": "threading.py"}, "function": {"name": "wait", "offset": 44}, "line": {"number": 307}, "source": {"type": 2}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ1"}} -{"Stackframe": {"function": {"name": "audit_filter_syscall.constprop.19"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OHrN2X11En4TANmmvWeSsgAAAAAAAADv"}} -{"Stackframe": {"file": {"name": "BulkShardRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.BulkShardRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 31}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RQ20oTZ6pwni6paND2updwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "DefaultTransformer.java"}, "function": {"name": "com.typesafe.config.impl.AbstractConfigValue com.typesafe.config.impl.DefaultTransformer.transform(com.typesafe.config.impl.AbstractConfigValue, com.typesafe.config.ConfigValueType)"}, "line": {"number": 21}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fHaZ001JZ1ywpBrkutBhrQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "UnpooledByteBufAllocator.java"}, "function": {"name": "void io.netty.buffer.UnpooledByteBufAllocator$InstrumentedUnpooledHeapByteBuf.(io.netty.buffer.UnpooledByteBufAllocator, int, int)"}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Z41z-remt7jPNWprM_rymwAAAAAAAAOA"}} -{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "org.elasticsearch.cluster.metadata.Metadata org.elasticsearch.cluster.metadata.Metadata$Builder.build()", "offset": 78}, "line": {"number": 1606}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j9q5artJZBLmNbsusN-vBAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SingletonSortedNumericDocValues.java"}, "function": {"name": "long org.apache.lucene.index.SingletonSortedNumericDocValues.nextValue()"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jkfqsU9w34yk0ipcsxq5HgAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.processEvents(boolean)", "offset": 1}, "line": {"number": 5428}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ieVPbh3z67ZFj7IGoqq7zgAAAAAAAACT"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()", "offset": 27}, "line": {"number": 1056}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TCRTnetVFgN_OTjaaZWcmwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard$$Lambda$8426+0x00000008027572a0.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "113KL9tnNlUP_dgFCwl99AAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ManagementFactory.java"}, "function": {"name": "java.util.List java.lang.management.ManagementFactory.getMemoryPoolMXBeans()"}, "line": {"number": 403}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jYKah-GaJpbI-jAwYcFi1QAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "EsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor.execute(java.lang.Runnable)", "offset": 2}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SwknGjaLKG0Gph6rnFuRjwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "HashSet.java"}, "function": {"name": "java.util.Iterator java.util.HashSet.iterator()"}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL47I"}} -{"Stackframe": {"function": {"name": "__fget_light"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MaP-XSbJ_jD1SaDSikvAxwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.bulk.TransportShardBulkAction$$Lambda$8922+0x00000008027ecef0.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "le8VfryMtJlEyXJeMd-6oAAAAAAAAADQ"}} -{"Stackframe": {"file": {"name": "NodeInfo.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.node.info.NodeInfo.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 24}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hqXNzEhstHfsC9RzpUliJAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4T36F6x5VY7h67XAH0CiAgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 419}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1rHoPMq-mpf_DwJrvHqYAwAAAAAAAACK"}} -{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress$Entry.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 17}, "line": {"number": 604}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3"}} -{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.onResponse(java.lang.Object)", "offset": 13}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Bbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.callDecode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 18}, "line": {"number": 446}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pSVcwHLkS-nxPYoJIIKFcQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Iterator.java"}, "function": {"name": "void java.util.Iterator.forEachRemaining(java.util.function.Consumer)", "offset": 1}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAATezw"}} -{"Stackframe": {"function": {"name": "blk_flush_plug_list"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N1PQDu1Ay8cMXPJ8jF7fCAAAAAAAAAD6"}} -{"Stackframe": {"file": {"name": "CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.store.IOContext, java.lang.String, org.apache.lucene.codecs.compressing.CompressionMode, int, int, int)", "offset": 23}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mZdi8xuJDhfKKe9rvO4vxgAAAAAAAAD6"}} -{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.store.IOContext, java.lang.String, org.apache.lucene.codecs.compressing.CompressionMode, int, int, int)", "offset": 38}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KPkSbIa3FpEsdEGi2AxIeAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "PackedInts.java"}, "function": {"name": "org.apache.lucene.util.packed.PackedInts$Mutable org.apache.lucene.util.packed.PackedInts.getMutable(int, int, float)", "offset": 1}, "line": {"number": 941}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "finhoQfoECf6Q4HPC08YkAAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "boolean io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)", "offset": 11}, "line": {"number": 470}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O5U6U5WhZze-OA0bZxv4kQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction.access$000(org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction, int, org.elasticsearch.action.support.nodes.BaseNodeResponse)"}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wzvWQyXT6P841Whzz8TSaAAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.tasks.TaskManager.registerAndExecute(java.lang.String, org.elasticsearch.action.support.TransportAction, org.elasticsearch.action.ActionRequest, org.elasticsearch.transport.Transport$Connection, org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "roTQ2x4u1u0ROVEifn0kaQAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.commit(long, long)", "offset": 18}, "line": {"number": 794}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ntMOc5-j0JOD44p2574E9AAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct$$Lambda$6071+0x000000080235e2d8.write(org.elasticsearch.common.io.stream.StreamOutput, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vNebmjSwemT2pcHYKHFrrAAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "java.lang.String org.elasticsearch.xcontent.provider.json.JsonXContentParser.text()", "offset": 3}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACHxQx"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/sort/zfuncversion.go"}, "function": {"name": "sort.insertionSort_func"}, "line": {"number": 12}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3qSPMlp9gJAXtNU4CfrprgAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "TopFieldCollector.java"}, "function": {"name": "org.apache.lucene.search.LeafCollector org.apache.lucene.search.TopFieldCollector$SimpleFieldCollector.getLeafCollector(org.apache.lucene.index.LeafReaderContext)", "offset": 2}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAEXhX"}} -{"Stackframe": {"file": {"name": "golang.org/x/sys@v0.0.0-20220817070843-5a390386f1f2/unix/zsyscall_linux_amd64.go"}, "function": {"name": "golang.org/x/sys/unix.EpollWait"}, "line": {"number": 56}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n5uztEwS7m6JKpJbGoHSGwAAAAAAAABK"}} -{"Stackframe": {"file": {"name": "SocketChannelImpl.java"}, "function": {"name": "int sun.nio.ch.SocketChannelImpl.write(java.nio.ByteBuffer)", "offset": 13}, "line": {"number": 462}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kJCg5l0wTnKMeEYikbvwfwAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "void org.apache.lucene.search.ReferenceManager.doMaybeRefresh()", "offset": 20}, "line": {"number": 181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YfWVtOr-M3KdNymRhenToAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.cluster.metadata.Metadata.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)"}, "line": {"number": 939}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3WlbNt9bmyJw_k2Ygz1zOwAAAAAAAAEd"}} -{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDWriter$OneDimensionBKDWriter.add(byte[], int)", "offset": 18}, "line": {"number": 579}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-w8s"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.Reader.ProcessCgroupPaths"}, "line": {"number": 276}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eEsPvNGYH982Mv0mPexpzgAAAAAAAABK"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap.forEach(java.util.function.BiConsumer)", "offset": 6}, "line": {"number": 1429}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QjcJgCUAsytsXGSmYCNuVgAAAAAAAADA"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 89}, "line": {"number": 624}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AAnABuJtrWflPvotxCoPjQAAAAAAAAFD"}} -{"Stackframe": {"file": {"name": "AccessControlContext.java"}, "function": {"name": "void java.security.AccessControlContext.checkPermission(java.security.Permission)", "offset": 56}, "line": {"number": 463}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN1t"}} -{"Stackframe": {"function": {"name": "__netif_receive_skb_one_core"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n6pk2kHJCAUsXzT61-UNuwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.IndexWriter$$Lambda$5247+0x0000000801a43668.process(org.apache.lucene.index.IndexWriter)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALRsu"}} -{"Stackframe": {"function": {"name": "do_faccessat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dkbt9cshahtdHiiR3C8VHwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Log4jContextFactory.java"}, "function": {"name": "org.apache.logging.log4j.spi.LoggerContext org.apache.logging.log4j.core.impl.Log4jContextFactory.getContext(java.lang.String, java.lang.ClassLoader, java.lang.Object, boolean)"}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAANKm"}} -{"Stackframe": {"file": {"name": "runtime/lock_futex.go"}, "function": {"name": "runtime.notesleep"}, "line": {"number": 161}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s9MntjdT5XiNr-rHeRcTvQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "DocIDMerger.java"}, "function": {"name": "int org.apache.lucene.index.DocIDMerger$Sub.nextMappedDoc()"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CgJZVmHIAgB37lk491gHHwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "UTF8JsonGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.UTF8JsonGenerator.writeString(java.lang.String)"}, "line": {"number": 509}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H1KUm8kRHR6ux5zgq2-v-AAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.fetch.ScrollQueryFetchSearchResult org.elasticsearch.search.SearchService.lambda$executeFetchPhase$6(org.elasticsearch.search.internal.LegacyReaderContext, org.elasticsearch.action.search.SearchShardTask, org.elasticsearch.search.internal.InternalScrollSearchRequest)", "offset": 1}, "line": {"number": 570}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZRJqXZkAD2RTn7JPCFWhywAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings$Builder org.elasticsearch.common.settings.Settings$Builder.put(org.elasticsearch.common.settings.Settings, boolean)", "offset": 2}, "line": {"number": 1131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEOEeP"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/module/system/socket/socket.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/module/system/socket.(*MetricSet).Fetch"}, "line": {"number": 127}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "D31e08MRiulVFEesC2oTTQAAAAAAAABe"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.executeSearch(org.elasticsearch.action.search.SearchTask, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.OriginalIndices, java.util.List, java.util.function.BiFunction, org.elasticsearch.cluster.ClusterState, java.util.Map, org.elasticsearch.action.ActionListener, org.elasticsearch.action.search.SearchResponse$Clusters, org.elasticsearch.action.search.SearchContextId, org.elasticsearch.action.search.TransportSearchAction$SearchAsyncActionProvider)", "offset": 16}, "line": {"number": 621}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FxtpJ_NWQpPJ5FLumU0ojgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.file.DirectoryStream java.nio.file.Files.newDirectoryStream(java.nio.file.Path)"}, "line": {"number": 482}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kQIfOKgH7suSILPob4uOXAAAAAAAAAEj"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$CommitId org.elasticsearch.index.engine.InternalEngine.flush(boolean, boolean)", "offset": 38}, "line": {"number": 2075}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXc-2"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.(*Tracer).triggerPidEvent-fm"}, "line": {"number": 1}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aYj1lJVcj2evf25XkNflVQAAAAAAAABS"}} -{"Stackframe": {"file": {"name": "InternalAggregation.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.search.aggregations.InternalAggregation.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 10}, "line": {"number": 202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cXlweJcTpRnUmFxwZ3wPIwAAAAAAAADH"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 57}, "line": {"number": 493}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b_H4r1ZHF2YYgctDVUNAUQAAAAAAAABR"}} -{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "void org.elasticsearch.cluster.ClusterState$ClusterStateDiff.(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.node.DiscoveryNode)", "offset": 9}, "line": {"number": 784}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PzgNbb9CcFUQqKGC4zwW-wAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "Strings.java"}, "function": {"name": "java.lang.String[] org.elasticsearch.common.Strings.commaDelimitedListToStringArray(java.lang.String)"}, "line": {"number": 527}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FzRiu7WoiAEZKSMqwfwi8wAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "boolean sun.nio.fs.UnixPath.equals(java.lang.Object)", "offset": 1}, "line": {"number": 766}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MWoDBcMPHdoRgqigdmrdNwAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "IndexLifecycleRunner.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.Step org.elasticsearch.xpack.ilm.IndexLifecycleRunner.getCurrentStep(org.elasticsearch.xpack.ilm.PolicyStepsRegistry, java.lang.String, org.elasticsearch.cluster.metadata.IndexMetadata)", "offset": 6}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SsODsFdp0k4d_SSQAFmIUQAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext$WriteTask.run()", "offset": 4}, "line": {"number": 1071}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wnDqzjdjMz5CchEHZ6EsYQAAAAAAAACt"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 173}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkK8E"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).scanOne"}, "line": {"number": 984}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAPU"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.index.SegmentMerger.merge()", "offset": 87}, "line": {"number": 184}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABPJR"}} -{"Stackframe": {"file": {"name": "runtime/slice.go"}, "function": {"name": "runtime.makeslice"}, "line": {"number": 103}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "y86E6w-NUJfYYLcFp2N4MQAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "boolean org.apache.lucene.search.ReferenceManager.maybeRefresh()", "offset": 6}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DJrVAhIsrM7D63maCxrMRwAAAAAAAAFL"}} -{"Stackframe": {"file": {"name": "UnicodeUtil.java"}, "function": {"name": "int org.apache.lucene.util.UnicodeUtil.UTF16toUTF8(java.lang.CharSequence, int, int, byte[], int)", "offset": 3}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b5D4G32aP0YH2ukb-bXGLgAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "AbstractCollection.java"}, "function": {"name": "boolean java.util.AbstractCollection.addAll(java.util.Collection)", "offset": 2}, "line": {"number": 338}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACuEk"}} -{"Stackframe": {"function": {"name": "get_signal"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "void org.elasticsearch.search.SearchService.loadOrExecuteQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.search.internal.SearchContext)", "offset": 5}, "line": {"number": 390}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpy2"}} -{"Stackframe": {"function": {"name": "do_unlinkat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E6MnxSqa_E-LrR_kexpT4wAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "AbstractPagedMutable.java"}, "function": {"name": "void org.apache.lucene.util.packed.AbstractPagedMutable.(int, long, int)", "offset": 5}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OvY4gWKUyFLZ_oYetFS67gAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "DeprecationLogger.java"}, "function": {"name": "java.lang.Void org.elasticsearch.common.logging.DeprecationLogger.lambda$doPrivilegedLog$0(org.apache.logging.log4j.Level, org.elasticsearch.common.logging.ESLogMessage)"}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi6uf"}} -{"Stackframe": {"function": {"name": "skb_copy_datagram_iter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0Z_VwTD3wxxcASrUBbgpZAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "StringBuilder.java"}, "function": {"name": "java.lang.String java.lang.StringBuilder.toString()"}, "line": {"number": 453}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAC1MEH"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/outputs/logstash/async.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/outputs/logstash.(*msgRef).callback-fm"}, "line": {"number": 232}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5WPbf-FG-SOzFOVzdJD5owAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.file.DirectoryStream sun.nio.fs.UnixFileSystemProvider.newDirectoryStream(java.nio.file.Path, java.nio.file.DirectoryStream$Filter)", "offset": 1}, "line": {"number": 399}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxDpk"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/host_linux.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.(*reader).architecture"}, "line": {"number": 171}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "idAHvTfpCa_Lill3CvLIKwAAAAAAAABU"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.messageReceived(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage, long)", "offset": 10}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PF46WYS52oqKW28TVdZwhwAAAAAAAABl"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 101}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rsp0NwAkIMLMzLa54E-jWQAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "NodeHash.java"}, "function": {"name": "void org.apache.lucene.util.fst.NodeHash.(org.apache.lucene.util.fst.FST, org.apache.lucene.util.fst.FST$BytesReader)", "offset": 4}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yrynjr7wkKxyqWOPiuvTRwAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "ProtectionDomain.java"}, "function": {"name": "java.security.PermissionCollection java.security.ProtectionDomain$JavaSecurityAccessImpl$1.get(java.security.ProtectionDomain)"}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkMuN"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).doScanf"}, "line": {"number": 1225}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k4Xm7YLE1W0WZao9WzNqzAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "MetaStateService.java"}, "function": {"name": "java.util.List org.elasticsearch.gateway.MetaStateService.loadIndicesStates(java.util.function.Predicate)", "offset": 1}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iDpjCnxG963ajmZCaRJh8gAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "HeaderWarning.java"}, "function": {"name": "void org.elasticsearch.common.logging.HeaderWarning.addWarning(java.util.Set, java.lang.String, java.lang.Object[])", "offset": 3}, "line": {"number": 330}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5lMOS-uR8dIYqGV5qpX_JAAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeBytesReference(org.elasticsearch.common.bytes.BytesReference)", "offset": 5}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NRDLk_Rx1lxMZtktExJbDQAAAAAAAAB_"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.InternalEngine$IndexingStrategy org.elasticsearch.index.engine.InternalEngine.planIndexingAsNonPrimary(org.elasticsearch.index.engine.Engine$Index)", "offset": 25}, "line": {"number": 1079}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ynXhOaW9UjBRblOosfZ1UgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jDJzz1R3fHRGs25yj3SB1AAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_s_HoNMyOU2vaD_y8xi_RQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 373}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGxgX"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file_unix.go"}, "function": {"name": "os.newFile"}, "line": {"number": 155}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MGtUNdnqqYq_ltKdCWZbugAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "SearchTransportService.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchTransportService$ConnectionCountingHandler.handleResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 394}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RLzW6L-lmkUcBl9Z894PowAAAAAAAACC"}} -{"Stackframe": {"file": {"name": "FieldCapabilitiesFetcher.java"}, "function": {"name": "java.util.Map org.elasticsearch.action.fieldcaps.FieldCapabilitiesFetcher.retrieveFieldCaps(org.elasticsearch.index.query.SearchExecutionContext, java.lang.String[], java.lang.String[], java.lang.String[], java.util.function.Predicate)", "offset": 11}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UxF4eodNrRz9YekFWR4hsgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authz.privilege.SystemPrivilege$$Lambda$6251+0x00000008022e3090.test(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Fw4N_DGYxmWJY3G6VlrCLwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "PolicySpiFile.java"}, "function": {"name": "boolean sun.security.provider.PolicySpiFile.engineImplies(java.security.ProtectionDomain, java.security.Permission)"}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Sxgb26oKQwlt07if9woPTQAAAAAAACOR"}} -{"Stackframe": {"function": {"name": "br_nf_pre_routing"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h9uKx3HFLoY7Xs1QyYtYSwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.value(org.elasticsearch.xcontent.ToXContent, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 3}, "line": {"number": 958}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFAOV"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.gosched_m"}, "line": {"number": 2875}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5or6ZJBEZua4KUaICTGCrQAAAAAAAABC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 3}, "line": {"number": 565}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s"}} -{"Stackframe": {"function": {"name": "__do_sys_newstat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4LHVxTfMxrCiyLGXgT43dAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.reindex.AbstractAsyncBulkByScrollAction$$Lambda$6602+0x0000000801cc9b60.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QunNj1oMDkHtmA3AacNPUAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.file.attribute.FileTime java.nio.file.Files.getLastModifiedTime(java.nio.file.Path, java.nio.file.LinkOption[])"}, "line": {"number": 2400}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RRd3e-o3R1duojNBW8i_OgAAAAAAAACz"}} -{"Stackframe": {"file": {"name": "ReusableLogEventFactory.java"}, "function": {"name": "org.apache.logging.log4j.core.LogEvent org.apache.logging.log4j.core.impl.ReusableLogEventFactory.createEvent(java.lang.String, org.apache.logging.log4j.Marker, java.lang.String, org.apache.logging.log4j.Level, org.apache.logging.log4j.message.Message, java.util.List, java.lang.Throwable)", "offset": 23}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H6yPOYEnXV1gkHCNY0CftwAAAAAAAACs"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter.(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.codecs.PostingsWriterBase, int, int)", "offset": 31}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-0_3"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/gosigar@v0.14.2/sigar_linux_common.go"}, "function": {"name": "github.com/elastic/gosigar.readProcFile"}, "line": {"number": 408}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oaGS8UtcL3140G7ruReD3QAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "IngestService.java"}, "function": {"name": "void org.elasticsearch.ingest.IngestService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 17}, "line": {"number": 553}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-npl"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/blkio.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.parseBlkioValue"}, "line": {"number": 278}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3iAnOsiaJz5FxI1Ct-Vd4QAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "org.elasticsearch.index.shard.IndexShard org.elasticsearch.action.support.replication.TransportReplicationAction.getIndexShard(org.elasticsearch.index.shard.ShardId)", "offset": 1}, "line": {"number": 592}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBtY"}} -{"Stackframe": {"function": {"name": "futex_wake"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA9F"}} -{"Stackframe": {"function": {"name": "mangle_path"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KH5_QfKIKeUIlFImab-3OAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Collection.java"}, "function": {"name": "java.util.stream.Stream java.util.Collection.stream()"}, "line": {"number": 743}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAHqSI"}} -{"Stackframe": {"file": {"name": "net/fd_posix.go"}, "function": {"name": "net.(*netFD).Read"}, "line": {"number": 55}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oTL_szAX2KeN5vc-O2hirAAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "DateTimeFormatter.java"}, "function": {"name": "org.joda.time.DateTime org.joda.time.format.DateTimeFormatter.parseDateTime(java.lang.String)", "offset": 4}, "line": {"number": 925}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lPmJLRVTgSCHAuJa9ynBFwAAAAAAAAB6"}} -{"Stackframe": {"file": {"name": "IndicesPermission.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authz.accesscontrol.IndicesAccessControl org.elasticsearch.xpack.core.security.authz.permission.IndicesPermission.authorize(java.lang.String, java.util.Set, java.util.Map, org.elasticsearch.xpack.core.security.authz.permission.FieldPermissionsCache)", "offset": 13}, "line": {"number": 384}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACO_Oe"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.6.0/providers/linux/process_linux.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.(*process).Info"}, "line": {"number": 119}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qz6N-6DM06uuF3n6UYF3qgAAAAAAAABQ"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "org.elasticsearch.gateway.PersistedClusterStateService$Writer$WriterStats org.elasticsearch.gateway.PersistedClusterStateService$Writer.updateMetadata(org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.cluster.metadata.Metadata)", "offset": 8}, "line": {"number": 668}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dB8rpvXeU-U7j8zoRqc_lgAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 4}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "g3zp3_FmxVdkBvQvIgZyaAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "RestActions.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestActions$NodesResponseRestListener.buildResponse(java.lang.Object, org.elasticsearch.common.xcontent.XContentBuilder)"}, "line": {"number": 217}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CyFPDZBEiXoheKAUx-Kq0wAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeString(java.lang.String)", "offset": 1}, "line": {"number": 423}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL8fB"}} -{"Stackframe": {"function": {"name": "legitimize_mnt"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZUr3dhHUtWV20cKiiRwRTAAAAAAAAACI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 136}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter$EventQueue.processEvents()", "offset": 2}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fngmakIlFuW-DPwlYWq95AAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "LRUQueryCache.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight.scorerSupplier(org.apache.lucene.index.LeafReaderContext)", "offset": 12}, "line": {"number": 739}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xAOD9OPULw2i04-6Qp3yVgAAAAAAAABe"}} -{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.finish()", "offset": 9}, "line": {"number": 425}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RrXasmojz0ojjKVFAz-eswAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jA6JkQ0PFn46mJYMDk3jtwAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readGenericMap(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier, org.elasticsearch.common.CheckedFunction)", "offset": 12}, "line": {"number": 341}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CsbV9k-bf9vouE4JAWSvYQAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "void org.apache.lucene.index.SegmentMerger.mergeTerms(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.SegmentReadState)", "offset": 11}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "63nMu76IftokzOnGnfVTJwAAAAAAAADd"}} -{"Stackframe": {"file": {"name": "IndexLifecycleRunner.java"}, "function": {"name": "void org.elasticsearch.xpack.ilm.IndexLifecycleRunner.runPolicyAfterStateChange(java.lang.String, org.elasticsearch.cluster.metadata.IndexMetadata)", "offset": 44}, "line": {"number": 370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XaQ23qLqcYG8xTfG0MeEHwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "HashSet.java"}, "function": {"name": "boolean java.util.HashSet.contains(java.lang.Object)"}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMub"}} -{"Stackframe": {"function": {"name": "ip_finish_output"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9lpztkfS1SN6AbyUgwU8QwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Socket.java"}, "function": {"name": "int java.net.Socket$SocketInputStream.read(byte[], int, int)"}, "line": {"number": 1025}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACe"}} -{"Stackframe": {"file": {"name": "Netty4MessageChannelHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 8}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KOtS45rRLJPAswGO5vDBxQAAAAAAAABH"}} -{"Stackframe": {"file": {"name": "SearchSourceBuilder.java"}, "function": {"name": "org.elasticsearch.search.builder.SearchSourceBuilder org.elasticsearch.search.builder.SearchSourceBuilder.rewrite(org.elasticsearch.index.query.QueryRewriteContext)", "offset": 5}, "line": {"number": 1036}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE_N5"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.wakeNetPoller"}, "line": {"number": 2514}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lSN_wOi6EtlLmPRGOv3HiAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Sink.java"}, "function": {"name": "void java.util.stream.Sink$ChainedReference.begin(long)"}, "line": {"number": 253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZYD_8d6PhAJoBCS08Vyb2QAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "org.apache.lucene.index.SortedSetDocValues org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer.getSortedSet(org.apache.lucene.index.FieldInfo)", "offset": 2}, "line": {"number": 1432}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6OqUFDo-whukimJI-B2pMgAAAAAAAACX"}} -{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.updateShard(org.elasticsearch.cluster.node.DiscoveryNodes, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.indices.cluster.IndicesClusterStateService$Shard, org.elasticsearch.cluster.routing.RoutingTable, org.elasticsearch.cluster.ClusterState)", "offset": 11}, "line": {"number": 619}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACH8Km"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/print.go"}, "function": {"name": "fmt.(*pp).printArg"}, "line": {"number": 664}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iPXr6f3Mf7KR5iK4gq24eAAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.tasks.TaskManager.unregister(org.elasticsearch.tasks.Task)", "offset": 17}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "94c0iuzzyiq2admvir0-DQAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.execute(java.lang.Runnable)", "offset": 28}, "line": {"number": 1357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qY84h_YcT5LuA60uIbYf6wAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Authentication.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.user.User org.elasticsearch.xpack.core.security.authc.Authentication$AuthenticationSerializationHelper.readUserWithoutTrailingBoolean(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 995}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7R6x72-svzDCuQmBwNt9-AAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "ByteBuffersDataOutput.java"}, "function": {"name": "void org.apache.lucene.store.ByteBuffersDataOutput.rewriteToBlockSize(int)", "offset": 9}, "line": {"number": 471}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JukEk6AOkVTKVg5GZtrbFQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.document.RestBulkAction$$Lambda$8907+0x00000008027ec858.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACOHON"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/regexp.go"}, "function": {"name": "regexp.(*Regexp).FindAllStringSubmatch.func1"}, "line": {"number": 1200}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BvE20tx_aKDX9k1QBsUKsgAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.processDocument(int, java.lang.Iterable)", "offset": 16}, "line": {"number": 488}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Khjys_tqUowZalyaQ3fQDAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 19}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFlZU"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.gcAssistAlloc.func1"}, "line": {"number": 550}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DoAs8yRy3iUsFk4iWCcNsgAAAAAAAABx"}} -{"Stackframe": {"file": {"name": "ThreadLocal.java"}, "function": {"name": "void java.lang.ThreadLocal$ThreadLocalMap.set(java.lang.ThreadLocal, java.lang.Object)", "offset": 20}, "line": {"number": 572}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RIm8jbjeC3SfOmyAcdCaLgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "void java.util.regex.Pattern.compile()"}, "line": {"number": 1743}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hkuoT5vPX48TIHx5hSrXWgAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "TransportHasPrivilegesAction.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.user.TransportHasPrivilegesAction.lambda$doExecute$1(org.elasticsearch.xpack.core.security.authc.Subject, org.elasticsearch.xpack.core.security.action.user.HasPrivilegesRequest, org.elasticsearch.action.ActionListener, java.util.Collection)"}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vCgrHQgh4sLRBYpPt01ZggAAAAAAAACd"}} -{"Stackframe": {"file": {"name": "BooleanQuery.java"}, "function": {"name": "void org.apache.lucene.search.BooleanQuery.(int, org.apache.lucene.search.BooleanClause[])", "offset": 11}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MrLUPjD52Cb8CegNxh_R7gAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "boolean java.util.stream.ReferencePipeline.allMatch(java.util.function.Predicate)"}, "line": {"number": 637}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F-UVz7qWVUzScRv1FhkbzQAAAAAAAAJi"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 60}, "line": {"number": 278}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "30O6VQjnGgkxLjQ6W-h4eQAAAAAAAAC3"}} -{"Stackframe": {"file": {"name": "NativePrivilegeStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.NativePrivilegeStore.getPrivileges(java.util.Collection, java.util.Collection, org.elasticsearch.action.ActionListener)", "offset": 28}, "line": {"number": 162}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wi6IGN8qc6k-a5Oge6MluAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "DefaultHttpResponseParser.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(org.apache.http.io.SessionInputBuffer)", "offset": 5}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LhW3fwsI1bTY9FvrcexFjwAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "PointValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.PointValuesWriter.(org.apache.lucene.util.ByteBlockPool$Allocator, org.apache.lucene.util.Counter, org.apache.lucene.index.FieldInfo)", "offset": 8}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.refreshIfNeeded(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)"}, "line": {"number": 358}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs-i"}} -{"Stackframe": {"function": {"name": "__wake_up"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VxedDtBJDHBT3py1Po37JwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SystemUser.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.user.SystemUser.isAuthorized(java.lang.String)"}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gyCLaoZ33VoOuRW0bXNTvAAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "OutputStreamIndexOutput.java"}, "function": {"name": "void org.apache.lucene.store.OutputStreamIndexOutput.close()", "offset": 9}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BP-_XyWsrdc9u8RJlsCt-QAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "KeywordFieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.KeywordFieldMapper.parseCreateField(org.elasticsearch.index.mapper.DocumentParserContext)", "offset": 4}, "line": {"number": 557}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtJB"}} -{"Stackframe": {"function": {"name": "__x64_sys_tgkill"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnfVE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).valueQuoted"}, "line": {"number": 410}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hm1m5RbQi5GyPX_zeSnkSQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "java.lang.Object sun.security.ssl.SSLEngineImpl$DelegatedTask$DelegatedAction.run()"}, "line": {"number": 1247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACNFBb"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/pkg/errors@v0.9.1/errors.go"}, "function": {"name": "github.com/pkg/errors.Errorf"}, "line": {"number": 114}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ohexHSo9lTu7x6PwNwY6_gAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.executePhase(org.elasticsearch.action.search.SearchPhase)"}, "line": {"number": 350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_yGigQXLGMRH830Q299U-QAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseNonDynamicArray(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, java.lang.String)", "offset": 4}, "line": {"number": 586}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YqGCdZ1cNEoHUUaGHzWSqQAAAAAAAABq"}} -{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.SoftDeletesRetentionMergePolicy.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.util.IOSupplier)", "offset": 8}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QO3p3TG-d9_GDkJGiXDItQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "org.elasticsearch.cluster.Diff org.elasticsearch.cluster.ClusterState.readDiffFrom(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.node.DiscoveryNode)"}, "line": {"number": 752}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vB5-VFNxmRTipezH9t4OWQAAAAAAAABX"}} -{"Stackframe": {"file": {"name": "SSLEngineInputRecord.java"}, "function": {"name": "sun.security.ssl.Plaintext[] sun.security.ssl.SSLEngineInputRecord.decode(java.nio.ByteBuffer)", "offset": 25}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD5qin"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/go.etcd.io/bbolt@v1.3.4/tx.go"}, "function": {"name": "go.etcd.io/bbolt.(*Tx).writeMeta"}, "line": {"number": 603}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VtVXhl6s6URamlTOMTdcGgAAAAAAAADm"}} -{"Stackframe": {"file": {"name": "FreqProxTermsWriter.java"}, "function": {"name": "void org.apache.lucene.index.FreqProxTermsWriter.flush(java.util.Map, org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.NormsProducer)", "offset": 45}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a25s4LfAOQ9ngFhwu3kfZAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "AbstractConfigObject.java"}, "function": {"name": "com.typesafe.config.impl.AbstractConfigObject com.typesafe.config.impl.AbstractConfigObject.withFallback(com.typesafe.config.ConfigMergeable)"}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LJuheAAsn3wtTorrVTYnTwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.StandardDirectoryReader.doOpenIfChanged()"}, "line": {"number": 345}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-_pxyioXpgCkEBfDmOQhmQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.apache.lucene.search.Weight.scorerSupplier(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8eNwq_KWMgzEjBR2SK0NcgAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain$$Lambda$7296+0x000000080250d7b0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UPz7zqvj7qG3g5BG64v5TAAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.maybePruneDeletes()", "offset": 2}, "line": {"number": 1775}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5sUnLSuwRmrBaZh_rdcc6AAAAAAAAABx"}} -{"Stackframe": {"file": {"name": "S3ObjectResponseHandler.java"}, "function": {"name": "com.amazonaws.AmazonWebServiceResponse com.amazonaws.services.s3.internal.S3ObjectResponseHandler.handle(com.amazonaws.http.HttpResponse)", "offset": 16}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tesLO0DFJtDYF8-a7dNUxAAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": "MessageDigest.java"}, "function": {"name": "void java.security.MessageDigest.update(byte[], int, int)", "offset": 6}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZNIMXBN7NKTXUfXb93okMgAAAAAAAACf"}} -{"Stackframe": {"file": {"name": "AbstractNioByteChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read()", "offset": 30}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACH562"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/print.go"}, "function": {"name": "fmt.(*pp).fmtString"}, "line": {"number": 447}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAATxBf"}} -{"Stackframe": {"function": {"name": "diskstats_show"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp15j"}} -{"Stackframe": {"function": {"name": "_raw_spin_lock"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkMsN"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).doScanf"}, "line": {"number": 1195}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3R6peF1IdwfQqmb119dyMQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FilterDirectory.deleteFile(java.lang.String)"}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jj4EO_grm_cOEklAp23b9QAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ByteBufferGuard.java"}, "function": {"name": "void org.apache.lucene.store.ByteBufferGuard.getBytes(java.nio.ByteBuffer, byte[], int, int)", "offset": 1}, "line": {"number": 94}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-057"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/gosigar@v0.14.2/sigar_linux_common.go"}, "function": {"name": "github.com/elastic/gosigar.readFile"}, "line": {"number": 383}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "03EpVG5Jkc7cUf6Cuf3bpwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "LambdaForm$DMH"}, "function": {"name": "void java.lang.invoke.LambdaForm$DMH+0x0000000801000c00.invokeSpecial(java.lang.Object, java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABU"}} -{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.scoreRange(org.apache.lucene.search.LeafCollector, org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.search.TwoPhaseIterator, org.apache.lucene.util.Bits, int, int)", "offset": 13}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEW1Ru"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/module/docker/diskio/diskio.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/module/docker/diskio.(*MetricSet).Close"}, "line": {"number": 80}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AC6sIDdQuWlno6mhwaFiZwAAAAAAAADZ"}} -{"Stackframe": {"file": {"name": "Lucene60FieldInfosFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene60.Lucene60FieldInfosFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.index.FieldInfos, org.apache.lucene.store.IOContext)", "offset": 22}, "line": {"number": 292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UjLrmOxWyU0gMgQgMJyFHwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "void java.util.Collections.swap(java.util.List, int, int)"}, "line": {"number": 500}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S75DkUYHGa18F1kYhZ0XYwAAAAAAAABK"}} -{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 6}, "line": {"number": 276}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1ajhlpq_ffaY9SZwO_yFvwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler$$Lambda$5648+0x0000000801b89440.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2dpbQm6Su1jn5rEv9F3sMwAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "ExitableDirectoryReader.java"}, "function": {"name": "void org.elasticsearch.search.internal.ExitableDirectoryReader$ExitablePointValues.intersect(org.apache.lucene.index.PointValues$IntersectVisitor)", "offset": 1}, "line": {"number": 190}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qZ3DjQNz2pv5LxLVcd8KGQAAAAAAAAB_"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.InternalEngine$OpVsLuceneDocStatus org.elasticsearch.index.engine.InternalEngine.compareOpToLuceneDocBasedOnSeqNo(org.elasticsearch.index.engine.Engine$Operation)", "offset": 10}, "line": {"number": 790}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "omaTFkJcQqn9_c4IoN5bogAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ByteBufferIndexInput.java"}, "function": {"name": "int org.apache.lucene.store.ByteBufferIndexInput.readInt()"}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "NumberFormatException.java"}, "function": {"name": "java.lang.NumberFormatException java.lang.NumberFormatException.forInputString(java.lang.String)"}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFlcE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcscavenge.go"}, "function": {"name": "runtime.bgscavenge.func1"}, "line": {"number": 262}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAllGK"}} -{"Stackframe": {"function": {"name": "tcp_data_ready"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QUM3v4ew-jMVuKkpISsPEAAAAAAAAAGi"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.engine.InternalEngine.index(org.elasticsearch.index.engine.Engine$Index)", "offset": 74}, "line": {"number": 1051}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACIFOM"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).scanOne"}, "line": {"number": 976}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VrkGa1SbyRj73L3L9NE1XAAAAAAAAABg"}} -{"Stackframe": {"file": {"name": "TransportIndicesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.ShardStats org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.lambda$shardOperation$0(org.elasticsearch.tasks.Task, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.action.admin.indices.stats.IndicesStatsRequest)", "offset": 13}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkLwJ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).scanOne"}, "line": {"number": 1003}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7jYCNzkb9MmHUrU5CHQXAwAAAAAAAACk"}} -{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendRequest(org.elasticsearch.cluster.node.DiscoveryNode, org.elasticsearch.transport.TcpChannel, long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.Version, boolean, boolean)", "offset": 21}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m5rnlBM51oea-h9ZD0jXEQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "MessageToMessageCodec.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageCodec$2.decode(io.netty.channel.ChannelHandlerContext, java.lang.Object, java.util.List)"}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L8RflRLqXUtEedgUFWXJNQAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "int java.util.Arrays.hashCode(java.lang.Object[])", "offset": 6}, "line": {"number": 4499}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMS4s"}} -{"Stackframe": {"function": {"name": "prepend_name"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nZcAdwBOPPRQ2hQm4YWwWgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkWrite(java.lang.String)"}, "line": {"number": 842}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UNGw3CMbzLd076AqAd0BMQAAAAAAAABJ"}} -{"Stackframe": {"file": {"name": "ElasticApmTracer.java"}, "function": {"name": "void co.elastic.apm.agent.impl.ElasticApmTracer.endTransaction(co.elastic.apm.agent.impl.transaction.Transaction)", "offset": 8}, "line": {"number": 382}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKeys()", "offset": 3}, "line": {"number": 583}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLvbW"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/encode.go"}, "function": {"name": "encoding/json.mapEncoder.encode"}, "line": {"number": 787}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PhHweSUk-rcHLCvi4mySwgAAAAAAAAEs"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.tryAllHandlers(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 44}, "line": {"number": 356}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxDo5"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/host_linux.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.(*reader).architecture"}, "line": {"number": 166}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACvEik"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/exec.go"}, "function": {"name": "regexp.(*inputs).newBytes"}, "line": {"number": 57}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "TransportShardRefreshAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction.shardOperationOnReplica(org.elasticsearch.action.support.replication.BasicReplicationRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H7WyLr5kViJlw1LNVs8T6wAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.xcontent.provider.json.JsonXContentGenerator.writeNumberField(java.lang.String, int)"}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LSP4v8PTGJ1rxAKSIAoeCwAAAAAAAASK"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsReader.(org.apache.lucene.codecs.PostingsReaderBase, org.apache.lucene.index.SegmentReadState)", "offset": 112}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9PmXvHucczCVlI0S70oJBQAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.action.support.TransportAction.execute(org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 8}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWsF"}} -{"Stackframe": {"function": {"name": "vfs_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Jwot1Ipt7neEx_K5t-jm1QAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "ConstructingObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ConstructingObjectParser$Target.constructorArg(int, java.lang.Object)", "offset": 3}, "line": {"number": 460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_NrJ8Q-i9cRRxMzl4paxGAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "boolean sun.nio.fs.UnixNativeDispatcher.exists0(long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QpbAWxlPpoqksDcSufT1vwAAAAAAAABf"}} -{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "boolean org.elasticsearch.cluster.SnapshotsInProgress$Entry.equals(java.lang.Object)", "offset": 9}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R0nUK_3cT-awvSJLlH7CqQAAAAAAAAIP"}} -{"Stackframe": {"file": {"name": "MessageAggregator.java"}, "function": {"name": "void io.netty.handler.codec.MessageAggregator.decode(io.netty.channel.ChannelHandlerContext, java.lang.Object, java.util.List)", "offset": 111}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eOXjDtmISDDtSL4dEzZt-wAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.bytes.BytesReference, boolean)"}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "59i-wMdSlFTE9FP7ALC-fwAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "MergePolicy.java"}, "function": {"name": "boolean org.apache.lucene.index.MergePolicy.useCompoundFile(org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 12}, "line": {"number": 669}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vhMTgwXcJBbn9i99hn5MzAAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "Spliterator.java"}, "function": {"name": "long java.util.Spliterator.getExactSizeIfKnown()"}, "line": {"number": 408}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAAWoj"}} -{"Stackframe": {"function": {"name": "xfs_attr_get"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlOPs"}} -{"Stackframe": {"function": {"name": "ip_output"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gh3_dq-X3ps5hlW-NYikEwAAAAAAAABc"}} -{"Stackframe": {"file": {"name": "InboundDecoder.java"}, "function": {"name": "org.elasticsearch.transport.Header org.elasticsearch.transport.InboundDecoder.readHeader(org.elasticsearch.Version, int, org.elasticsearch.common.bytes.BytesReference)", "offset": 13}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jtEB8q7ZNk5LwicDPNbPVQAAAAAAAABO"}} -{"Stackframe": {"file": {"name": "Lucene90BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.blocktree.Lucene90BlockTreeTermsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 11}, "line": {"number": 355}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACmJ4k"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bufio/scan.go"}, "function": {"name": "bufio.(*Scanner).advance"}, "line": {"number": 244}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oyUgxxOY520Rj3U8w5GHoQAAAAAAAADS"}} -{"Stackframe": {"file": {"name": "Long.java"}, "function": {"name": "long java.lang.Long.parseLong(java.lang.String, int)", "offset": 38}, "line": {"number": 692}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.authenticate(org.elasticsearch.xpack.core.security.authc.AuthenticationToken, org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JYb5JOqnMPOCcF7fd5apugAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "SocketDispatcher.java"}, "function": {"name": "int sun.nio.ch.SocketDispatcher.read0(java.io.FileDescriptor, long, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACngKl"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).array"}, "line": {"number": 596}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GFR3FEpwUl5GjzVK189OpAAAAAAAAAIy"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 562}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oAl3S1UdiCfcB1msAHRleQAAAAAAAADY"}} -{"Stackframe": {"file": {"name": "SSLCipher.java"}, "function": {"name": "int sun.security.ssl.SSLCipher$T13GcmWriteCipherGenerator$GcmWriteCipher.encrypt(byte, java.nio.ByteBuffer)", "offset": 44}, "line": {"number": 2124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FJK04KoaHMn06MM5Zc-sLAAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "DslJsonSerializer.java"}, "function": {"name": "void co.elastic.apm.agent.report.serialize.DslJsonSerializer.fullFlush()", "offset": 3}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "A6Xvpm2Mx6c3SME2gNZFyQAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "IndexMetadata.java"}, "function": {"name": "java.util.Set org.elasticsearch.cluster.metadata.IndexMetadata.inSyncAllocationIds(int)", "offset": 1}, "line": {"number": 578}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgUXy"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/malloc.go"}, "function": {"name": "runtime.mallocgc"}, "line": {"number": 1193}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sLW5MVrNYr3JDIzLAQcc3AAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "ManagementFactory.java"}, "function": {"name": "java.util.List java.lang.management.ManagementFactory.getPlatformMXBeans(java.lang.Class)", "offset": 8}, "line": {"number": 731}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ"}} -{"Stackframe": {"function": {"name": "do_sys_open"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACy9SH"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/logp/logger.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.(*GenericEventConverter).normalizeMap"}, "line": {"number": 120}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fPgoUHJQjLNhQU22r1cGEQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SearchExecutionContext.java"}, "function": {"name": "org.elasticsearch.index.mapper.MappedFieldType org.elasticsearch.index.query.SearchExecutionContext.getFieldType(java.lang.String)"}, "line": {"number": 360}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADHfZK"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/processing/processors.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/processing.(*group).add"}, "line": {"number": 78}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ek41BoFnp4M1u-Ik9d-gsQAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$7026+0x0000000801e51f58.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9iEsaZI76W1WejkwhmTFwQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "org.elasticsearch.cluster.DiffableUtils$MapDiff org.elasticsearch.cluster.DiffableUtils.readImmutableOpenMapDiff(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)"}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bRe-bTXmo-KMTRcTpmBm1QAAAAAAAAGO"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "int org.apache.lucene.index.DefaultIndexingChain.processField(int, org.apache.lucene.index.IndexableField, long, int)", "offset": 56}, "line": {"number": 567}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZUWFO7_P5RCkVQo5ktvTUQAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.tryWrite(java.io.FileDescriptor, byte[], int, int)", "offset": 4}, "line": {"number": 398}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ueVIyRbgaIXTTwloG1e5bwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$7029+0x0000000801e525a8.getAsync(org.elasticsearch.action.ActionListener)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "00K83mDEaMrraYI9F5octQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "IndexLifecycleRunner.java"}, "function": {"name": "boolean org.elasticsearch.xpack.ilm.IndexLifecycleRunner.isReadyToTransitionToThisPhase(java.lang.String, org.elasticsearch.cluster.metadata.IndexMetadata, java.lang.String)"}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAALXd"}} -{"Stackframe": {"function": {"name": "vfsub_dentry_open"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ztHnkwVOP9LxgkQsriQwqgAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeCollection(java.util.Collection, org.elasticsearch.common.io.stream.Writeable$Writer)", "offset": 2}, "line": {"number": 1199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3v2TU8A01iCPuVWdiUVv8QAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext$WriteTask.run()", "offset": 4}, "line": {"number": 1247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N3iNjVmP1b90Y_Au3khyRAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "void org.elasticsearch.threadpool.ThreadPool$1.run()", "offset": 2}, "line": {"number": 402}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACguWE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mheap.go"}, "function": {"name": "runtime.(*mheap).allocNeedsZero"}, "line": {"number": 970}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YbAg0T8eOr8SvAbjK52BYAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.IndexingChain.startStoredFields(int)"}, "line": {"number": 502}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cdTS-RIJ4OkgwXwrA9jyIAAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "ApiKeyAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.ApiKeyAuthenticator.authenticate(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 6}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uPDlCsNFx9xRx8s1Byg9TwAAAAAAAABK"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction.finishHim()", "offset": 5}, "line": {"number": 300}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5U0I4816qcVB1WQCk1679wAAAAAAAAJ2"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.addTermsDict(org.apache.lucene.index.SortedSetDocValues)", "offset": 93}, "line": {"number": 779}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O1rBMVYyHx9sb0ab7BExzAAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "WorkerBulkByScrollTaskState.java"}, "function": {"name": "void org.elasticsearch.index.reindex.WorkerBulkByScrollTaskState.delayPrepareBulkRequest(org.elasticsearch.threadpool.ThreadPool, long, int, org.elasticsearch.common.util.concurrent.AbstractRunnable)", "offset": 4}, "line": {"number": 181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dRMG3BjNfH2se-egabnU-QAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "IngestService.java"}, "function": {"name": "void org.elasticsearch.ingest.IngestService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 9}, "line": {"number": 693}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "djyMPZKC5WBOgAHuGtQGlwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AbstractByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.AbstractByteBufAllocator.heapBuffer(int)"}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pR4MC0BxsLTXAJeNLn7p9QAAAAAAAABy"}} -{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "org.elasticsearch.index.Index[] org.elasticsearch.cluster.metadata.IndexNameExpressionResolver.concreteIndices(org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$Context, java.lang.String[])", "offset": 13}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChFLI"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgc.go"}, "function": {"name": "runtime.handoffp"}, "line": {"number": 1346}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFF5X"}} -{"Stackframe": {"function": {"name": "on_each_cpu_mask"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$$Lambda$4255.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dvT_WttTqRzxVS1mJ109CAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$6067+0x0000000801c4db60.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aLOl6FCWtZ16Qk1Y0IIBGgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "RestResponseListener.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestResponseListener.processResponse(java.lang.Object)"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3SSuw7AKPJ9yFEVSwC_lbAAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "PipelineConfiguration.java"}, "function": {"name": "boolean org.elasticsearch.ingest.PipelineConfiguration.equals(java.lang.Object)", "offset": 6}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bOb86QTSjl0Tbgl6WGMPVwAAAAAAAADD"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken()", "offset": 47}, "line": {"number": 754}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3G7WvpXqPGO04rbAV9CJtQAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "SecondaryAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator.authenticateAndAttachToContext(org.elasticsearch.rest.RestRequest, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V0DLOPGY9h7VEozIU7B7OQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore$$Lambda$6595+0x000000080241c000.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i9vQUYFyqiRwc7z93wKeGwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction$$Lambda$7226+0x0000000801eadb40.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0YvYYZqpoRVqaulkjga7JQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.decRef(java.lang.Object)"}, "line": {"number": 350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PWYGELIW3SqFoRNmW7QBAgAAAAAAAACT"}} -{"Stackframe": {"file": {"name": "BigByteArray.java"}, "function": {"name": "void org.elasticsearch.common.util.BigByteArray.set(long, byte[], int, int)", "offset": 14}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oVgqesHjGm-3vT2l3h9tegAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor.sendWithUser(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportInterceptor$AsyncSender)", "offset": 8}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E2vcDylOjsVhj9cPIWwJGQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$$Lambda$5663+0x0000000801b94ab0.writeTo(org.elasticsearch.common.io.stream.StreamOutput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChxB_"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/asm_amd64.s"}, "function": {"name": "runtime.unspillArgs"}, "line": {"number": 605}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BXpLHI5fj3oBYjvlqi6ftAAAAAAAAABF"}} -{"Stackframe": {"file": {"name": "RSAPSSSignature.java"}, "function": {"name": "boolean sun.security.rsa.RSAPSSSignature.engineVerify(byte[])", "offset": 9}, "line": {"number": 444}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "omt3Uh86jhN6UzDM_NIHbAAAAAAAAACS"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 18}, "line": {"number": 1297}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_ecY"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/auditd/audit_linux.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/auditd.(*MetricSet).receiveEvents.func1"}, "line": {"number": 464}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1oy5TLITDFo_6XpzirRo2QAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexActionName(java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.accesscontrol.IndicesAccessControl, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 330}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ActionRunnable.java"}, "function": {"name": "void org.elasticsearch.action.ActionRunnable$2.accept(org.elasticsearch.action.ActionListener)"}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fe69QX5O_EOqLGiPEFzIuwAAAAAAAAGB"}} -{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.executeNextPhase(org.elasticsearch.action.search.SearchPhase, org.elasticsearch.action.search.SearchPhase)", "offset": 52}, "line": {"number": 463}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABx"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKey(java.nio.channels.SelectionKey, io.netty.channel.nio.AbstractNioChannel)", "offset": 45}, "line": {"number": 719}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bOb86QTSjl0Tbgl6WGMPVwAAAAAAAAGW"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken()", "offset": 83}, "line": {"number": 790}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ngJW-mG0syMkjT4A0Lg1GwAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "DateFieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DateFieldMapper.parseCreateField(org.elasticsearch.index.mapper.DocumentParserContext)", "offset": 10}, "line": {"number": 891}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CIYguVhaxe0J-8ClJsrUlAAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "Parsed.java"}, "function": {"name": "java.time.temporal.TemporalAccessor java.time.format.Parsed.resolve(java.time.format.ResolverStyle, java.util.Set)", "offset": 5}, "line": {"number": 266}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QD7cQDN4ZVYyfKZ4lfNsvgAAAAAAAABw"}} -{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "void io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()", "offset": 31}, "line": {"number": 949}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZkLsycxKPf36jJRxnsYRXgAAAAAAAACv"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.support.AbstractXContentParser.readValueUnsafe(org.elasticsearch.common.xcontent.XContentParser$Token, org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier)", "offset": 10}, "line": {"number": 389}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACgz-E"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "github.com/elastic/beats/v7/libbeat/conditions.(*And).Check"}, "line": {"number": 1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hM2MvVjBki678lZWhHxDlgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "boolean org.apache.lucene.codecs.lucene80.IndexedDISI$Method$2.advanceWithinBlock(org.apache.lucene.codecs.lucene80.IndexedDISI, int)"}, "line": {"number": 515}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x8AuKhfH77nHx6X5aPthhAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction$1.innerOnResponse(org.elasticsearch.search.SearchPhaseResult)"}, "line": {"number": 236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ybzB9D1DmBNUwOV0iR5UtAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "AbstractObjectPool.java"}, "function": {"name": "java.lang.Object co.elastic.apm.agent.objectpool.impl.AbstractObjectPool.createInstance()", "offset": 3}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7KOSerr1KVdKNnuLaLw3rgAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "SegmentInfos.java"}, "function": {"name": "java.lang.String org.apache.lucene.index.SegmentInfos.finishCommit(org.apache.lucene.store.Directory)", "offset": 9}, "line": {"number": 798}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JootPmzqoooIzgXdd2xH2AAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.acquireReplicaOperationPermit(long, long, long, org.elasticsearch.action.ActionListener, java.lang.String, java.lang.Object)"}, "line": {"number": 3465}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4bMiunlFzrtT5uG63xGsXwAAAAAAAADE"}} -{"Stackframe": {"file": {"name": "SSLSocketInputRecord.java"}, "function": {"name": "sun.security.ssl.Plaintext[] sun.security.ssl.SSLSocketInputRecord.decodeInputRecord(byte[])", "offset": 31}, "line": {"number": 237}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACuDAI"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_process_metadata/add_process_metadata.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_process_metadata.(*addProcessMetadata).enrich"}, "line": {"number": 206}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xEM3SPWHKNN9K-p8mV5GkwAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "HeaderWarningAppender.java"}, "function": {"name": "void org.elasticsearch.common.logging.HeaderWarningAppender.append(org.apache.logging.log4j.core.LogEvent)", "offset": 8}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcDw"}} -{"Stackframe": {"function": {"name": "__do_sys_newfstat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-pCk"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/memory.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.memoryData"}, "line": {"number": 141}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m_m1DDbzlNuMTD9gy1hMUAAAAAAAAAFJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 329}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0gz1mhmhTxHCVZG94cP1QgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ChannelActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.ChannelActionListener.onResponse(java.lang.Object)"}, "line": {"number": 20}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EYGjlLJCu-Vl57yx-_7_hwAAAAAAAABc"}} -{"Stackframe": {"file": {"name": "PoolingHttpClientConnectionManager.java"}, "function": {"name": "void org.apache.http.impl.conn.PoolingHttpClientConnectionManager.connect(org.apache.http.HttpClientConnection, org.apache.http.conn.routing.HttpRoute, int, org.apache.http.protocol.HttpContext)", "offset": 13}, "line": {"number": 374}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9iX4SmKa9981kP5-s9Tn_QAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 561}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DzwHbI_hkQLoR-b5ZwurJAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "HttpClient.java"}, "function": {"name": "void sun.net.www.http.HttpClient.writeRequests(sun.net.www.MessageHeader, sun.net.www.http.PosterOutputStream)", "offset": 1}, "line": {"number": 689}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "g7nBWJWVuG2AG8wBW0GvVwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction$$Lambda$8427+0x00000008027574c0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuTA"}} -{"Stackframe": {"function": {"name": "__x64_sys_epoll_ctl"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tyxlgW2MSm0fLKof7M0dQwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "LoggerInfoStream.java"}, "function": {"name": "boolean org.elasticsearch.common.lucene.LoggerInfoStream.isEnabled(java.lang.String)"}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMS41"}} -{"Stackframe": {"function": {"name": "prepend_name"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Qd5BzOrQqNPF2dbzaWCiSgAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "AbstractBulkByQueryRestHandler.java"}, "function": {"name": "void org.elasticsearch.index.reindex.AbstractBulkByQueryRestHandler.parseInternalRequest(org.elasticsearch.index.reindex.AbstractBulkByScrollRequest, org.elasticsearch.rest.RestRequest, java.util.Map)", "offset": 5}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gsRY5SfC1FLceKELS1WAxwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$5650+0x0000000801abe7d0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIcsy"}} -{"Stackframe": {"function": {"name": "grab_cache_page_write_begin"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tKRI47gaUATre6hVOVRyHwAAAAAAAABC"}} -{"Stackframe": {"file": {"name": "OutputRecord.java"}, "function": {"name": "long sun.security.ssl.OutputRecord.encrypt(sun.security.ssl.SSLCipher$SSLWriteCipher, byte, java.nio.ByteBuffer, int, int, int, sun.security.ssl.ProtocolVersion)", "offset": 13}, "line": {"number": 341}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hMFUfSdfKq62EgaVo5SA4gAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5097.getAsync(org.elasticsearch.action.ActionListener)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1F_4eN2zNglbo7R6puFiTgAAAAAAAABb"}} -{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode.implGCMCrypt(byte[], int, int, byte[], int, byte[], int, com.sun.crypto.provider.GCTR, com.sun.crypto.provider.GHASH)", "offset": 10}, "line": {"number": 592}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgS3m"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/lock_futex.go"}, "function": {"name": "runtime.notetsleep_internal"}, "line": {"number": 206}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJ"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/mb/module/publish.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/mb/module.PublishChannels.func1"}, "line": {"number": 41}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAC22E"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "syscall.Syscall6"}, "line": {"number": 1}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x0ahWaj52_bOkFwUURNgMgAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "AwaitCompletionReliabilityStrategy.java"}, "function": {"name": "void org.apache.logging.log4j.core.config.AwaitCompletionReliabilityStrategy.log(org.apache.logging.log4j.util.Supplier, java.lang.String, java.lang.String, java.lang.StackTraceElement, org.apache.logging.log4j.Marker, org.apache.logging.log4j.Level, org.apache.logging.log4j.message.Message, java.lang.Throwable)", "offset": 2}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NoHYPrTZmPNoSjD2lRtEvAAAAAAAAABZ"}} -{"Stackframe": {"file": {"name": "SecurityIndexManager.java"}, "function": {"name": "java.util.Set org.elasticsearch.xpack.security.support.SecurityIndexManager.loadIndexMappingVersions(java.lang.String, org.elasticsearch.cluster.ClusterState, org.apache.logging.log4j.Logger)", "offset": 8}, "line": {"number": 270}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z_ZeRXCxHeNXTu6DB2OR1gAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "EsExecutors.java"}, "function": {"name": "boolean org.elasticsearch.common.util.concurrent.EsExecutors$ExecutorScalingQueue.offer(java.lang.Object)"}, "line": {"number": 363}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m_fovQn4AGOMspslPI_8iQAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.incRef(org.apache.lucene.index.SegmentInfos, boolean)", "offset": 4}, "line": {"number": 560}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2lvbA4sUB4gmNAq2D3ePmAAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "BKDReader.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDReader$BKDPointTree.visitDocValues(org.apache.lucene.index.PointValues$IntersectVisitor, long)", "offset": 2}, "line": {"number": 610}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KSw8zuPmFtB2wtekS6g_agAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AbstractRestChannel.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.rest.AbstractRestChannel.newBuilder(org.elasticsearch.xcontent.XContentType, boolean)"}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxFRZ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bytes/reader.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.parseOSRelease"}, "line": {"number": 160}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "q884D3SrvWum6J_31_DxKgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$4(org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationResult)", "offset": 1}, "line": {"number": 249}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC0xFx"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/transport/stats.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common/transport.(*statsConn).Write"}, "line": {"number": 56}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tIB1dxGnX0oRcLl9Hw7ZbAAAAAAAAABw"}} -{"Stackframe": {"file": {"name": "SocketChannelImpl.java"}, "function": {"name": "int sun.nio.ch.SocketChannelImpl.read(java.nio.ByteBuffer)", "offset": 19}, "line": {"number": 425}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "peI4q4l4-jzxMAY6KnhlVgAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "AbstractMessageParser.java"}, "function": {"name": "org.apache.http.HttpMessage org.apache.http.impl.io.AbstractMessageParser.parse()", "offset": 4}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j0GTyJD3lYhDegN7k1VG_wAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.ingest.IngestService$$Lambda$6420+0x00000008023cc6a0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i3cpry5G-AUeVV5d50JrmQAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "DateFieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DateFieldMapper.parseCreateField(org.elasticsearch.index.mapper.DocumentParserContext)", "offset": 10}, "line": {"number": 766}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAbh0S"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/libpf/periodiccaller/periodiccaller.go"}, "function": {"name": "github.com/optimyze/prodfiler/libpf/periodiccaller.Start.func1"}, "line": {"number": 21}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACzCe1"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/mapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.MapStr.GetValue"}, "line": {"number": 174}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CHiDq53TCUjpMKBV4yWE0gAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "boolean java.util.stream.Streams$ConcatSpliterator.tryAdvance(java.util.function.Consumer)", "offset": 1}, "line": {"number": 720}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VthdIAkyIWxV-e9fI9rVBQAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 1}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iuCJSQNox98NgtgeRfzc4gAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "Rewriteable.java"}, "function": {"name": "org.elasticsearch.index.query.Rewriteable org.elasticsearch.index.query.Rewriteable.rewrite(org.elasticsearch.index.query.Rewriteable, org.elasticsearch.index.query.QueryRewriteContext)"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAD9Eat"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/mb/event.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/mb.AddMetricSetInfo"}, "line": {"number": 144}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IZxfi1iuafWxPwuumad8uwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "org.elasticsearch.transport.TransportResponse org.elasticsearch.transport.TransportService$ContextRestoreResponseHandler.read(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 1353}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "67ZApSKF_tBH-bAhOXBNxAAAAAAAAAHe"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.startCommit(org.apache.lucene.index.SegmentInfos)", "offset": 70}, "line": {"number": 5099}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5XlE5KvRrfbNOpt-JVgrOAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Setting.getRaw(org.elasticsearch.common.settings.Settings)", "offset": 1}, "line": {"number": 535}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IQfZB-VRGlNehu2EmCzO0wAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "OutputStreamStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.OutputStreamStreamOutput.close()"}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4gllBwxobraKpNHjylla1wAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator$$Lambda$7303+0x000000080250e690.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oz9GJ_qlf4pBIKy8mHtWYAAAAAAAAACL"}} -{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.req(java.util.Collection, java.util.Collection, long)", "offset": 33}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMcE7"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/shirou/gopsutil@v3.20.12+incompatible/net/net_linux.go"}, "function": {"name": "github.com/shirou/gopsutil/net.decodeAddress"}, "line": {"number": 729}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "void org.elasticsearch.search.internal.ContextIndexSearcher.search(java.util.List, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 3}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgeSu"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mcache.go"}, "function": {"name": "runtime.(*mcache).refill"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bpFrLpp87SutwNDP7V3ibQAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.Settings.readSettingsFromStream(org.elasticsearch.common.io.stream.StreamInput)", "offset": 7}, "line": {"number": 590}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MNBUdOvdRoUWx-4HjbY3TgAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "AbstractQueuedSynchronizer.java"}, "function": {"name": "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireShared(int)", "offset": 1}, "line": {"number": 1026}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAFJ"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 64}, "line": {"number": 569}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4vmruhuX9yE9PQmpwNqDLQAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "Lucene84SkipWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.Lucene84SkipWriter.bufferSkip(int, org.apache.lucene.codecs.CompetitiveImpactAccumulator, int, long, long, int, int)", "offset": 8}, "line": {"number": 162}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RIYqG8R7SOQv287DSnsK9QAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "HttpContentEncoder.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpContentEncoder.decode(io.netty.channel.ChannelHandlerContext, java.lang.Object, java.util.List)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7Oz"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/crypto/sha512/sha512block_amd64.go"}, "function": {"name": "crypto/sha512.block"}, "line": {"number": 21}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lF0402c3xDTaGy1WpLy7vwAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "Lucene90CompoundFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90CompoundFormat.writeCompoundFile(org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo)", "offset": 5}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApQ6A"}} -{"Stackframe": {"function": {"name": "number"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NtCGtgNOSKjf89hTQ9pKCgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ParentTaskAssigningClient.java"}, "function": {"name": "void org.elasticsearch.client.internal.ParentTaskAssigningClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAb-w"}} -{"Stackframe": {"function": {"name": "aufs_permission"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WKgIYDUz_ddL2CfdVikPPgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TransportNodesInfoAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction.nodeOperation(org.elasticsearch.action.support.nodes.BaseNodeRequest)"}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8mitJsUwZQQfy83zw459dgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "AbstractInternalTerms.java"}, "function": {"name": "boolean org.elasticsearch.search.aggregations.bucket.terms.AbstractInternalTerms$1.lessThan(java.lang.Object, java.lang.Object)"}, "line": {"number": 184}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hvoLs_S85r0RS2Fhd-3zRQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Builder.java"}, "function": {"name": "void org.apache.lucene.util.fst.Builder.(org.apache.lucene.util.fst.FST$INPUT_TYPE, int, int, boolean, boolean, int, org.apache.lucene.util.fst.Outputs, boolean, int)", "offset": 87}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwco"}} -{"Stackframe": {"function": {"name": "__schedule"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B68XzYJFVnny1no-xetM6QAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKeys()", "offset": 3}, "line": {"number": 578}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAQg"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.mergeMiddle(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergePolicy)", "offset": 127}, "line": {"number": 4812}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAATttG"}} -{"Stackframe": {"function": {"name": "blk_mq_do_dispatch_sched"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L8R2W0h5kIRkmSOynN7f9AAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.SnapshotsInProgress$$Lambda$5561+0x0000000801ab7c48.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gBfy_HlKLdmt8WRkHo7DCQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object jdk.internal.loader.BuiltinClassLoader$$Lambda$276.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F3-Ih9R2IC33i53mcQo_kQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.inboundMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage)"}, "line": {"number": 808}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7ubOsYlEqTZxYNoZCROO1wAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 535}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nZBjsnB5E1LeQoJuhOhOIgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient.bulk(org.elasticsearch.action.bulk.BulkRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 492}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qlujNL7db72ZwWHkSPq1iAAAAAAAAABR"}} -{"Stackframe": {"file": {"name": "NodeService.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.node.NodeService.stats(org.elasticsearch.action.admin.indices.stats.CommonStatsFlags, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean)", "offset": 4}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cfkTE_69BLMq-Apv4ZuXTQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.aggregations.bucket.terms.AbstractInternalTerms$$Lambda$9030+0x000000080281e2b8.apply(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEH-"}} -{"Stackframe": {"function": {"name": "do_syscall_64"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RMYtu6lQVhfanHasngCNQAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.settings.Settings.getAsStructuredMap()"}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x8ERETcapIt78IXSEO8DRwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "RestActionListener.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestActionListener.onResponse(java.lang.Object)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE_-q"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.park_m"}, "line": {"number": 2852}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwvG"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/asm_amd64.s"}, "function": {"name": "runtime.gcWriteBarrierCX"}, "line": {"number": 1482}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "57Lr69jen66ZA0OdTMcNWAAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "Netty4HttpPipeliningHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpPipeliningHandler.doWrite(io.netty.channel.ChannelHandlerContext, org.elasticsearch.http.netty4.Netty4RestResponse, io.netty.channel.ChannelPromise)", "offset": 2}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bWZWPptWisqbpRDA9X8cNgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6446+0x00000008023d7348.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iuO2s7QH0lwNSSHQ7UxLHgAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "ControllableExecutionContextWrapper.scala"}, "function": {"name": "void no.found.concurrent.WrappedRunnable.run()", "offset": 1}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACuDQN"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_process_metadata/add_process_metadata.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_process_metadata.(*addProcessMetadata).enrich"}, "line": {"number": 248}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jg3LdO4DNz9FsefjUG1F1gAAAAAAAACY"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 14}, "line": {"number": 643}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xo4rC3y2CcS6B7wZyQHREAAAAAAAAADP"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.lambda$executeRequest$6(org.elasticsearch.action.search.SearchTask, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.action.ActionListener, org.elasticsearch.action.search.TransportSearchAction$SearchAsyncActionProvider, org.elasticsearch.action.search.SearchRequest)", "offset": 26}, "line": {"number": 403}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMsqZ"}} -{"Stackframe": {"function": {"name": "ep_remove"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WRCEJYby4Xn_9pTh74c14gAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 833}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACj9ZG"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/format.go"}, "function": {"name": "fmt.(*fmt).fmtUnicode"}, "line": {"number": 147}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABWALY"}} -{"Stackframe": {"file": {"name": "github.com/cilium/ebpf@v0.9.1/perf/reader.go"}, "function": {"name": "github.com/cilium/ebpf/perf.readRawSample"}, "line": {"number": 127}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jYtuEYuQb3JZww9R88UtFwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "StringConcatHelper.java"}, "function": {"name": "long java.lang.StringConcatHelper.prepend(long, byte[], java.lang.String, java.lang.String)", "offset": 1}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAACR"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 43}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ccxzbb-8gf25alsKrnG4nQAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "TransportHasPrivilegesAction.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.user.TransportHasPrivilegesAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.xpack.core.security.action.user.HasPrivilegesRequest, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M_MfJrZLrX3P0R0dWrP49AAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "SecondaryAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator.lambda$authenticateAndAttachToContext$2(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.support.SecondaryAuthentication)", "offset": 3}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-UhaCeSU-dCz_4f6MzT6YgAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$TreeNode java.util.HashMap$TreeNode.find(int, java.lang.Object, java.lang.Class)", "offset": 8}, "line": {"number": 2005}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uF_V7TH-mukdED5BHxc90gAAAAAAAAHc"}} -{"Stackframe": {"file": {"name": "Coordinator.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.Coordinator.handlePublishRequest(org.elasticsearch.cluster.coordination.PublishRequest)", "offset": 51}, "line": {"number": 437}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0qjoqZl267F0DC5OJqPG4gAAAAAAAABp"}} -{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel)", "offset": 9}, "line": {"number": 61}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1xeqGUZm5RNvukFb2REJKQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "boolean org.elasticsearch.common.settings.SettingsFilter$$Lambda$7662+0x00000008025f9df8.test(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.lambda$executeQueryPhase$2(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)"}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4M7YPHJs-s48WlQKqWc80QAAAAAAAAFt"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 77}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uchUv6RRAwtUDrZKhO2h8QAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.lambda$consumeToken$2(org.elasticsearch.xpack.core.security.authc.AuthenticationToken, java.util.concurrent.atomic.AtomicReference, java.util.concurrent.atomic.AtomicReference, long, org.elasticsearch.xpack.security.authc.Authenticator$Context, java.util.Map, org.elasticsearch.xpack.core.security.authc.Realm, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dhiUmvfDk2OXbcgaknkEMgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.io.stream.StreamInput.readMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader)"}, "line": {"number": 638}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nOwqeD6ZJtavy7VDpIbTlQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.CommitStats org.elasticsearch.index.shard.IndexShard.commitStats()"}, "line": {"number": 1068}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UcMrTkRqTyiU1A-4TStXKgAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "FileChannel.java"}, "function": {"name": "java.nio.channels.FileChannel java.nio.channels.FileChannel.open(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])", "offset": 1}, "line": {"number": 292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cDaMbfg0wpwI_azkSWasQwAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "java.lang.Runnable org.elasticsearch.common.util.concurrent.ThreadContext.preserveContext(java.lang.Runnable)", "offset": 9}, "line": {"number": 425}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJXLE"}} -{"Stackframe": {"function": {"name": "zap_page_range"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mN5y2bB03UPv-f6SkPrk4AAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$authorizeIndexAction$4(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, java.util.Map, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult)", "offset": 1}, "line": {"number": 306}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4GZfdSdo79rYS6pQyNIftAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "BytesRefHash.java"}, "function": {"name": "int org.apache.lucene.util.BytesRefHash.add(org.apache.lucene.util.BytesRef)"}, "line": {"number": 270}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wCpBU_hbPURNgU-TZJTtNAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.monitoring.rest.action.RestMonitoringBulkAction$$Lambda$7981+0x000000080141b258.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi0ex"}} -{"Stackframe": {"function": {"name": "skb_release_all"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C8Ood-fN0I2wBL5ZOhOj2QAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.setDiagnostics(org.apache.lucene.index.SegmentInfo, java.lang.String)"}, "line": {"number": 4580}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEjtk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcsweep.go"}, "function": {"name": "runtime.bgsweep"}, "line": {"number": 166}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1pEcO9CYkxI799CldX3uowAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "BatchEventProcessor.java"}, "function": {"name": "void com.lmax.disruptor.BatchEventProcessor.processEvents()", "offset": 7}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FnZ5nyC3u-_ymUvUXAQZLQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "PeerFinder.java"}, "function": {"name": "java.util.List org.elasticsearch.discovery.PeerFinder.getFoundPeersUnderLock()"}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8j5cUdTnc2xWo1otBaDFqgAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "org.elasticsearch.index.translog.TranslogStats org.elasticsearch.index.translog.Translog.stats()", "offset": 9}, "line": {"number": 912}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACg"}} -{"Stackframe": {"file": {"name": "IndexShardOperationPermits.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShardOperationPermits.acquire(org.elasticsearch.action.ActionListener, java.lang.String, boolean, java.lang.Object, java.lang.StackTraceElement[])", "offset": 44}, "line": {"number": 252}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NpN50MeDuguOnm7L2nqCmAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TransportNodesInfoAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.info.NodeInfo org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction.newNodeResponse(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.node.DiscoveryNode)"}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bpFrLpp87SutwNDP7V3ibQAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.Settings.readSettingsFromStream(org.elasticsearch.common.io.stream.StreamInput)", "offset": 6}, "line": {"number": 589}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Db-q8zuXZ0pfYlBFFHtllQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase$$Lambda$6239+0x0000000801c38b30.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXbOO"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/tracer.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.(*Tracer).monitorPIDEventsMap"}, "line": {"number": 1027}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD5tDT"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file.go"}, "function": {"name": "os.(*File).WriteAt-fm"}, "line": {"number": 197}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dLYbCx2wQodX9zVMLTmHSwAAAAAAAADV"}} -{"Stackframe": {"file": {"name": "FieldCapabilitiesFetcher.java"}, "function": {"name": "org.elasticsearch.action.fieldcaps.FieldCapabilitiesIndexResponse org.elasticsearch.action.fieldcaps.FieldCapabilitiesFetcher.fetch(org.elasticsearch.index.shard.ShardId, java.lang.String[], java.lang.String[], java.lang.String[], org.elasticsearch.index.query.QueryBuilder, long, java.util.Map)", "offset": 27}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChCYU"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.ready"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OzFeuLNSMVWvCPrgnxwbuAAAAAAAAAFW"}} -{"Stackframe": {"file": {"name": "ExpandSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.ExpandSearchPhase.run()", "offset": 49}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VMp-DPdE7CyTgnB0G1ncJAAAAAAAAAMk"}} -{"Stackframe": {"file": {"name": "SegmentTermsEnum.java"}, "function": {"name": "boolean org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact(org.apache.lucene.util.BytesRef)", "offset": 189}, "line": {"number": 509}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zkuTI7SSlQvBEKKdkI0V6wAAAAAAAAHd"}} -{"Stackframe": {"file": {"name": "MetadataStateFormat.java"}, "function": {"name": "long org.elasticsearch.gateway.MetadataStateFormat.write(java.lang.Object, boolean, java.nio.file.Path[])", "offset": 47}, "line": {"number": 249}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PBpfn0f1eKNcXZ1C2eJmZwAAAAAAAADr"}} -{"Stackframe": {"file": {"name": "ApiKeyService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.ApiKeyService.validateApiKeyCredentials(java.lang.String, org.elasticsearch.xpack.security.authc.ApiKeyService$ApiKeyDoc, org.elasticsearch.xpack.security.authc.ApiKeyService$ApiKeyCredentials, java.time.Clock, org.elasticsearch.action.ActionListener)", "offset": 30}, "line": {"number": 877}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QKRyqWZIJ5_z0G07UwBzeAAAAAAAAABS"}} -{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient)", "offset": 8}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EfRqa-7Lw23Pq9cBac4oVgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator$$Lambda$6937+0x0000000801e4fb48.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ftjh-A3lytsNmmUroc108AAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "SettingsFilter.java"}, "function": {"name": "boolean org.elasticsearch.common.settings.SettingsFilter.lambda$filterSettings$0(java.lang.String[], java.lang.String)"}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sIDuB2QR5vYhFugo8XKq2AAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "StepListener.java"}, "function": {"name": "void org.elasticsearch.action.StepListener.innerOnResponse(java.lang.Object)"}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mxNhetCUxYQZQBlbqXLWtAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "java.lang.Object com.carrotsearch.hppc.ObjectObjectHashMap$ValuesIterator.fetch()"}, "line": {"number": 943}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jH-Kh7eMoVAEa99gkdQ-YQAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.addSortedNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 3}, "line": {"number": 850}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAADhEEZ"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/mb/module/publish.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/mb/module.PublishChannels.func1"}, "line": {"number": 40}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L4Zieid3nVkNJbdYJumC3wAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "void org.elasticsearch.index.store.Store$StoreDirectory.deleteFile(java.lang.String, java.lang.String)", "offset": 1}, "line": {"number": 746}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OXXUWi3HnGXyNYANATzbXgAAAAAAAAG8"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.IndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 64}, "line": {"number": 303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC0yQG"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/transport/tls.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common/transport.tlsDialWith"}, "line": {"number": 133}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JdzifoogbCc6mi3NTv7PigAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.acquireReplicaOperationPermit(org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.action.ActionListener, long, long, long)"}, "line": {"number": 1105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K_orwo-ReXdAKwCzsovqwQAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x8bq_xVN-rpqARxMICWBtQAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "DocumentsWriterDeleteQueue.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriterDeleteQueue$DeleteSlice.apply(org.apache.lucene.index.BufferedUpdates, int)", "offset": 15}, "line": {"number": 360}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X3vNLlXVyKftCeY5HzEuDAAAAAAAAAXl"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.mergeMiddle(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergePolicy)", "offset": 197}, "line": {"number": 4884}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6l3Q3lLwvaP7rhVtdi_RoAAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode$DecryptOp.doFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 3}, "line": {"number": 1813}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEOC56"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/helper/socket/ptable.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/helper/socket.(*ProcTable).accessibleProcs"}, "line": {"number": 159}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tGdjZjM6jJA23WbdtVpvAwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.util.Map$Entry java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$1.next()"}, "line": {"number": 1679}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXa_"}} -{"Stackframe": {"function": {"name": "__alloc_file"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UZdaVaW-2bK-DsjNGfQ38gAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction$RequestWrapper org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction$ScriptApplier.apply(org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction$RequestWrapper, org.elasticsearch.index.reindex.ScrollableHitSource$Hit)", "offset": 4}, "line": {"number": 850}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LQDSx6vga0zDZ5JbsP5kmgAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "ChannelOutboundBuffer.java"}, "function": {"name": "boolean io.netty.channel.ChannelOutboundBuffer.remove()", "offset": 14}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eP0KBVXjuFe0e0V-8WYorwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.xcontent.json.JsonXContentGenerator.writeStringField(java.lang.String, java.lang.String)"}, "line": {"number": 266}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bOb86QTSjl0Tbgl6WGMPVwAAAAAAAACS"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken()", "offset": 33}, "line": {"number": 740}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "phOxaUqs-517Yh0oy5O-fAAAAAAAAABi"}} -{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesProducer org.apache.lucene.index.SegmentReader.initDocValuesProducer()", "offset": 13}, "line": {"number": 192}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JpF4VKbpMhUktx47gSQ0vwAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "PluginDescriptor.java"}, "function": {"name": "void org.elasticsearch.plugins.PluginDescriptor.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 2}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFWWy"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/symtab.go"}, "function": {"name": "runtime.step"}, "line": {"number": 958}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TIPcuO_13mszaKfYH7-tlAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportShardRefreshAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction.shardOperationOnReplica(org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ynf_MUQkDQVzhniQz6muHgAAAAAAAACF"}} -{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.snapshotShard(org.elasticsearch.index.store.Store, org.elasticsearch.index.mapper.MapperService, org.elasticsearch.snapshots.SnapshotId, org.elasticsearch.repositories.IndexId, org.apache.lucene.index.IndexCommit, java.lang.String, org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.elasticsearch.Version, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 17}, "line": {"number": 1657}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7At3N6jUaTq91gUXMCcsgwAAAAAAAAFD"}} -{"Stackframe": {"file": {"name": "AccessControlContext.java"}, "function": {"name": "void java.security.AccessControlContext.checkPermission(java.security.Permission)", "offset": 56}, "line": {"number": 450}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nogIwK3AchEnWGOPGCN6LQAAAAAAAADL"}} -{"Stackframe": {"file": {"name": "BulkShardRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.BulkShardRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 35}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0qdPtfCOXWtTMQkqPpfTpAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler.lambda$new$0(org.elasticsearch.transport.BytesTransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "srA9BuEIer7jJq6izjVFjgAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.AbstractRunnable org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler.getReceiveRunnable(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 1}, "line": {"number": 238}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CcT16vX599qNhHdTkpCDlQAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "HeaderWarning.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.logging.HeaderWarning.formatWarning(java.lang.String)", "offset": 2}, "line": {"number": 199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HdbjDGqcyeXdawK4ayl-8QAAAAAAAACv"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequestInternal(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 28}, "line": {"number": 850}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACICw-"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).scanInt"}, "line": {"number": 657}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IZeQ4Is_b2zZyg3CavaZ-QAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Setting.get(org.elasticsearch.common.settings.Settings, boolean)", "offset": 2}, "line": {"number": 518}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Jiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.writeIncrementalStateAndCommit(long, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)", "offset": 5}, "line": {"number": 627}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OXXUWi3HnGXyNYANATzbXgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.IndexingChain.flush(org.apache.lucene.index.SegmentWriteState)"}, "line": {"number": 239}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BXoNavmSXM1WHYfmBeTWIgAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "AppenderControl.java"}, "function": {"name": "void org.apache.logging.log4j.core.config.AppenderControl.callAppender0(org.apache.logging.log4j.core.LogEvent)", "offset": 2}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YOvHVd-Brx3w_G9pFAJpJwAAAAAAAAEo"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.doFlush(boolean)", "offset": 45}, "line": {"number": 3618}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YY_5A_qFX2rphOrkConrFwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "StoredFieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.index.StoredFieldsConsumer.finishDocument()"}, "line": {"number": 59}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZbvmFtHvqv74jokq3XvBkgAAAAAAAADL"}} -{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.bytes.BytesReference, boolean, org.elasticsearch.xcontent.XContentType, java.util.Set, java.util.Set)", "offset": 24}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N1PQDu1Ay8cMXPJ8jF7fCAAAAAAAAABr"}} -{"Stackframe": {"file": {"name": "CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.store.IOContext, java.lang.String, org.apache.lucene.codecs.compressing.CompressionMode, int, int, int)", "offset": 15}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u_5zCMK3PLNUfmu5e0wjpgAAAAAAAAB2"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction.newResponse(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.nodes.BaseNodesRequest, java.util.concurrent.atomic.AtomicReferenceArray, org.elasticsearch.action.ActionListener)", "offset": 18}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bLRnm0K2LnF8O3sUIvVtEQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "CPoolProxy.java"}, "function": {"name": "void org.apache.http.impl.conn.CPoolProxy.sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest)"}, "line": {"number": 152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PvmhnzBPbydWF_wVFKbYMwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser._parsePosNumber(int)"}, "line": {"number": 1369}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SbaWcO00B2zTHJCaL1t-KAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "int org.apache.lucene.util.compress.LZ4.decompress(org.apache.lucene.store.DataInput, int, byte[], int)", "offset": 4}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i8xLrghLCR3CLFjtylOjjAAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 3}, "line": {"number": 800}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CRfXdVRXBus2UmwV-rdG8AAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "CodecUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.CodecUtil.writeBELong(org.apache.lucene.store.DataOutput, long)", "offset": 1}, "line": {"number": 662}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qwPQ_i5WGexQYU8q8eVTyQAAAAAAAABz"}} -{"Stackframe": {"file": {"name": "GatewayMetaState.java"}, "function": {"name": "void org.elasticsearch.gateway.GatewayMetaState$LucenePersistedState.setLastAcceptedState(org.elasticsearch.cluster.ClusterState)", "offset": 11}, "line": {"number": 506}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qaOad9DhPf06i1uiI7rW7gAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "Lucene90NormsConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90NormsConsumer.(org.apache.lucene.index.SegmentWriteState, java.lang.String, java.lang.String, java.lang.String, java.lang.String)", "offset": 6}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sFcmeqpqCTbxwoba0aJoQQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TrackingDirectoryWrapper.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.TrackingDirectoryWrapper.createTempOutput(java.lang.String, java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA8D0"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.ready"}, "line": {"number": 862}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AZGriLcxLoYYv_Z-GwPFpwAAAAAAAABn"}} -{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "com.carrotsearch.hppc.cursors.ObjectCursor com.carrotsearch.hppc.ObjectObjectHashMap$ValuesIterator.fetch()", "offset": 10}, "line": {"number": 964}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ETpIT_bENno5-VoDS6FQuQAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.persistRetentionLeases()", "offset": 1}, "line": {"number": 2377}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZd"}} -{"Stackframe": {"function": {"name": "audit_filter_syscall.constprop.19"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler$$Lambda$4228+0x000000080187b430.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2RfKfVPwyqKh_r9U1oFgUwAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.xcontent.XContent, byte[], int, int, boolean, java.util.Set, java.util.Set)", "offset": 8}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZuiJGdMTgqCiSwiPmMfXSQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "boolean java.util.regex.Pattern.matches(java.lang.String, java.lang.CharSequence)", "offset": 2}, "line": {"number": 1175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CR4o6NKah7mNKb4RDMOc_gAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "PeersResponse.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.PeersResponse.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 1}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ljijwxlolNIlc2z0nvWGRwAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "boolean java.nio.file.Files.exists(java.nio.file.Path, java.nio.file.LinkOption[])", "offset": 3}, "line": {"number": 2521}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7mriOKfPxEedu-U5xcOHzQAAAAAAAADo"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 29}, "line": {"number": 301}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAl0Um"}} -{"Stackframe": {"function": {"name": "tcp_v4_early_demux"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nJl2AH9gxW75QO4qTYoGMwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ClientScrollableHitSource.java"}, "function": {"name": "void org.elasticsearch.index.reindex.ClientScrollableHitSource$1.onResponse(org.elasticsearch.action.search.SearchResponse)"}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z8MLotfDzYWkcVjCT9EUBQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction$$Lambda$6980+0x0000000801e5e640.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACH4Wn"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/print.go"}, "function": {"name": "fmt.Sprintf"}, "line": {"number": 220}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkRead(java.lang.String)"}, "line": {"number": 747}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Jn0UNoyB8RODf8CSewSSrwAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "NodeService.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.info.NodeInfo org.elasticsearch.node.NodeService.info(boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean)", "offset": 4}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8j5cUdTnc2xWo1otBaDFqgAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "org.elasticsearch.index.translog.TranslogStats org.elasticsearch.index.translog.Translog.stats()", "offset": 7}, "line": {"number": 910}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RJXjPkp22gaQo9vwY-85JAAAAAAAAAB1"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.(org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter, org.apache.lucene.index.FieldInfo)", "offset": 497}, "line": {"number": 1028}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABq8f"}} -{"Stackframe": {"file": {"name": "runtime/sys_linux_amd64.s"}, "function": {"name": "runtime.epollwait"}, "line": {"number": 706}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ewjh2tD1sTDOEtY5aAlH_QAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.reindex.AbstractBaseReindexRestHandler$$Lambda$6202.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AmTcFForv1r91KDhJjsuQQAAAAAAAADd"}} -{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.writeTo(org.elasticsearch.common.xcontent.ToXContent, java.lang.String, org.elasticsearch.common.CheckedConsumer)", "offset": 21}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IXplr-54s0Yjdov93QB7eQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "URI.java"}, "function": {"name": "java.net.URI java.net.URI.create(java.lang.String)"}, "line": {"number": 904}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADU1D0"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/safemapstr/safemapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common/safemapstr.mapFind"}, "line": {"number": 95}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXxnL"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/mapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.MapStr.Clone"}, "line": {"number": 159}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tJvp7gDkktg9hHJv6LrXYAAAAAAAAAJI"}} -{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$BlockState.doReset(int)", "offset": 61}, "line": {"number": 500}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-Lgx"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/auparse.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.enrichData"}, "line": {"number": 375}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "r61dzvnqIlRPanoJT2RUwwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "DeflateCompressor.java"}, "function": {"name": "void org.elasticsearch.common.compress.DeflateCompressor$2.close()"}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tyxlgW2MSm0fLKof7M0dQwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "LoggerInfoStream.java"}, "function": {"name": "boolean org.elasticsearch.common.lucene.LoggerInfoStream.isEnabled(java.lang.String)"}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kbwZp-6Ay4IDg4dEajE5PwAAAAAAAAJu"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$DeleteResult org.elasticsearch.index.engine.InternalEngine.delete(org.elasticsearch.index.engine.Engine$Delete)", "offset": 71}, "line": {"number": 1521}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ihn5y3aUSH0SbJMgByz2sQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "Thread.java"}, "function": {"name": "void java.lang.Thread.run()", "offset": 1}, "line": {"number": 831}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACwzdb"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/strings.go"}, "function": {"name": "github.com/prometheus/procfs.Proc.NewStatus"}, "line": {"number": 275}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1pEcO9CYkxI799CldX3uowAAAAAAAABS"}} -{"Stackframe": {"file": {"name": "BatchEventProcessor.java"}, "function": {"name": "void com.lmax.disruptor.BatchEventProcessor.processEvents()", "offset": 16}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "savPbEF5C7JhfS7sqrnMYwAAAAAAAABN"}} -{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.IndexShardStats org.elasticsearch.indices.IndicesService.indexShardStats(org.elasticsearch.indices.IndicesService, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 24}, "line": {"number": 519}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XQih0feiHcRhpLZTXruLcwAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.engine.InternalEngine.acquireLastIndexCommit(boolean)", "offset": 2}, "line": {"number": 2328}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.roles(java.util.Set, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZIenda5b7lnvaeoaoU0sRgAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "org.elasticsearch.index.translog.TranslogStats org.elasticsearch.index.translog.Translog.stats()", "offset": 3}, "line": {"number": 847}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$4260.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dwSKEmLpSL_KD1TF83FH0AAAAAAAAAB2"}} -{"Stackframe": {"file": {"name": "RetentionLeases.java"}, "function": {"name": "void org.elasticsearch.index.seqno.RetentionLeases.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 14}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w_AjU4Xe1XDB3bYRcLPccAAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$4.handleResponse(org.elasticsearch.transport.TransportResponse)", "offset": 1}, "line": {"number": 847}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA1HO"}} -{"Stackframe": {"file": {"name": "runtime/os_linux.go"}, "function": {"name": "runtime.signalM"}, "line": {"number": 553}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnI8b"}} -{"Stackframe": {"function": {"name": "unix_write_space"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pW8useNRLFWJHbQ9ncrSDQAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.maybeAuthorizeRunAs(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 27}, "line": {"number": 266}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2DhRBXrBsPziUW_wAGlaqQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.nio.channels.FileChannel sun.nio.fs.UnixChannelFactory.newFileChannel(int, sun.nio.fs.UnixPath, java.lang.String, java.util.Set, int)"}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jItM8pU-ziW2ZhusxnxM4AAAAAAAAADR"}} -{"Stackframe": {"file": {"name": "WatcherSearchTemplateRequest.java"}, "function": {"name": "org.elasticsearch.xpack.watcher.support.search.WatcherSearchTemplateRequest org.elasticsearch.xpack.watcher.support.search.WatcherSearchTemplateRequest.fromXContent(org.elasticsearch.xcontent.XContentParser, org.elasticsearch.action.search.SearchType)", "offset": 29}, "line": {"number": 220}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "void org.elasticsearch.tasks.TaskManager$1.onResponse(org.elasticsearch.action.ActionResponse)"}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YVeB-lvoG9jGEyCvHLllLAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.common.io.Streams.readFully(java.io.InputStream)", "offset": 2}, "line": {"number": 272}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pELSNcyJlp2iMZUFEFcrBQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "OsProbe.java"}, "function": {"name": "org.elasticsearch.monitor.os.OsStats$Cgroup org.elasticsearch.monitor.os.OsProbe.getCgroup()"}, "line": {"number": 516}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jUQ333J6q5QnvdvZozB0kQAAAAAAAAB2"}} -{"Stackframe": {"file": {"name": "DirectWriter.java"}, "function": {"name": "void org.apache.lucene.util.packed.DirectWriter.add(long)", "offset": 7}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kjX67_WPwwjOmve4ZUSb3AAAAAAAAAF8"}} -{"Stackframe": {"file": {"name": "HttpURLConnection.java"}, "function": {"name": "void sun.net.www.protocol.http.HttpURLConnection.plainConnect0()", "offset": 66}, "line": {"number": 1241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "25iHP2_EzWmqN7aoEEouTQAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.executeLocalSearch(org.elasticsearch.tasks.Task, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.OriginalIndices, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener, org.elasticsearch.action.search.SearchContextId, org.elasticsearch.action.search.TransportSearchAction$SearchAsyncActionProvider)"}, "line": {"number": 494}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SEAz2xfqrNiGYU5T_aIXXgAAAAAAAADw"}} -{"Stackframe": {"file": {"name": "ResizeRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.ResizeRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 39}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "as9xuB4p9CGD_lnalV79jwAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "MergeState.java"}, "function": {"name": "int org.apache.lucene.index.MergeState$1.get(int)", "offset": 3}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Sl8QmNBWhfPFBDZ-zT5cegAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "AwsResponseHandlerAdapter.java"}, "function": {"name": "java.lang.Object com.amazonaws.http.response.AwsResponseHandlerAdapter.handle(com.amazonaws.http.HttpResponse)"}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sueTM-LYsBZU9Btl9NKTwAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "long org.elasticsearch.index.store.ByteSizeCachingDirectory.estimateSizeInBytes()"}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BsEpo0mOhzMcrZG6n13KVwAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "TieredMergePolicy.java"}, "function": {"name": "java.util.List org.apache.lucene.index.TieredMergePolicy.getSortedBySegmentSize(org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 5}, "line": {"number": 295}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SZAt-g5Y9rkRhquz_kA7tQAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$1.onResponse(org.elasticsearch.action.ActionResponse)", "offset": 2}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a2J1cxfK2aVs0Suyt6w9OQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "InputStreamStreamInput.java"}, "function": {"name": "int org.elasticsearch.common.io.stream.InputStreamStreamInput.read(byte[])"}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_uyhRV-Mxtsf8L_5aSDZ3QAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "DelayedBucket.java"}, "function": {"name": "org.elasticsearch.search.aggregations.InternalMultiBucketAggregation$InternalBucket org.elasticsearch.search.aggregations.DelayedBucket.reduced()", "offset": 2}, "line": {"number": 59}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAbiCp"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/libpf/periodiccaller/periodiccaller.go"}, "function": {"name": "github.com/optimyze/prodfiler/libpf/periodiccaller.StartWithManualTrigger.func1"}, "line": {"number": 43}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA8DQ"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.ready"}, "line": {"number": 860}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PNrR2YKoj7goxCjWQi1QhgAAAAAAAACJ"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.internal.SearchContext org.elasticsearch.search.SearchService.createContext(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)", "offset": 13}, "line": {"number": 681}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBrv"}} -{"Stackframe": {"function": {"name": "futex_wake"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgT3k"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/malloc.go"}, "function": {"name": "runtime.(*mcache).nextFree"}, "line": {"number": 876}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9IGwadGvlAAvyNhDmAhjdQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "ShardStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.ShardStats.(org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.index.shard.ShardPath, org.elasticsearch.action.admin.indices.stats.CommonStats, org.elasticsearch.index.engine.CommitStats, org.elasticsearch.index.seqno.SeqNoStats, org.elasticsearch.index.seqno.RetentionLeaseStats)", "offset": 3}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nnCec0a2-ZcuYpnWUHHz2AAAAAAAAAD_"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 18}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIZiK"}} -{"Stackframe": {"function": {"name": "unlock_page"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oaP5o4C3s6OD5zOUUgRXpQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "DocIDMerger.java"}, "function": {"name": "int org.apache.lucene.index.DocIDMerger$Sub.nextMappedDoc()"}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o_VxHugz7KdIpjN6xJI0VgAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.internal.SearchContext org.elasticsearch.search.SearchService.createAndPutContext(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)"}, "line": {"number": 631}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZBmcQL98TXLA7smZymDadQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "org.elasticsearch.cluster.SnapshotsInProgress$ShardSnapshotStatus org.elasticsearch.cluster.SnapshotsInProgress$ShardSnapshotStatus.readFrom(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 413}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "W4GHsDWvwLw2xRoJLl9_7AAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CMCWh32oer3bDaYggVtoUQAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "Netty4HttpRequestHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpRequestHandler.channelRead0(io.netty.channel.ChannelHandlerContext, org.elasticsearch.http.HttpPipelinedRequest)", "offset": 14}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7Ri4HFWgKP29WX5jactbGQAAAAAAAACW"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObjectOrNested(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper)", "offset": 35}, "line": {"number": 477}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XoQBAZDyQM5EalVK0DT7vwAAAAAAAABI"}} -{"Stackframe": {"file": {"name": "SSLEngineOutputRecord.java"}, "function": {"name": "sun.security.ssl.Ciphertext sun.security.ssl.SSLEngineOutputRecord.encode(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 16}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m67rWWW37luflFNJMq37QQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ImmutableOpenIntMap.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.collect.ImmutableOpenIntMap.get(int)"}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wevjuAwpKcZX-ptlgzlTeAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Setting.get(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 512}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bbGN8BAo2uKiDwhsRH6ZiQAAAAAAAADV"}} -{"Stackframe": {"file": {"name": "CompositeAggregator.java"}, "function": {"name": "org.elasticsearch.search.aggregations.LeafBucketCollector org.elasticsearch.search.aggregations.bucket.composite.CompositeAggregator.getLeafCollector(org.elasticsearch.search.aggregations.AggregationExecutionContext, org.elasticsearch.search.aggregations.LeafBucketCollector)", "offset": 44}, "line": {"number": 485}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5utt2dQ8HKrTepHdNpprxQAAAAAAAADL"}} -{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.CommonStats org.elasticsearch.action.admin.indices.stats.CommonStats.getShardLevelStats(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 10}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ucg8lCUKHDJi43v2r9fcDAAAAAAAAADZ"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.index.SegmentMerger.merge()", "offset": 35}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b_SxAGFEqcDYGOt1bLICYgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "DeflaterOutputStream.java"}, "function": {"name": "void java.util.zip.DeflaterOutputStream.flush()"}, "line": {"number": 282}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUXri"}} -{"Stackframe": {"function": {"name": "lockref_get"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N1FJQJEQ02oDggDvBxaoVgAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": "IngestInfo.java"}, "function": {"name": "void org.elasticsearch.ingest.IngestInfo.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 4}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAACp-5"}} -{"Stackframe": {"file": {"name": "io/io.go"}, "function": {"name": "io.ReadAtLeast"}, "line": {"number": 333}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFAxd"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.reentersyscall"}, "line": {"number": 3093}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApP87"}} -{"Stackframe": {"function": {"name": "strlen"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApawl"}} -{"Stackframe": {"function": {"name": "memcpy_erms"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3XF24SoEgTcpQuPEJgZwngAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDWriter$MergeReader$1.visit(int, byte[])"}, "line": {"number": 264}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AMk_trcRDqgWwE9O1EQdVAAAAAAAAACR"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)", "offset": 12}, "line": {"number": 587}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "74qEjIejJXcKrFSlQB8PhgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IngestService.java"}, "function": {"name": "void org.elasticsearch.ingest.IngestService.lambda$applyClusterState$11(java.util.function.Consumer)"}, "line": {"number": 1007}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ljpmjACwvo52D1nC2cyFxQAAAAAAAACD"}} -{"Stackframe": {"file": {"name": "GatewayMetaState.java"}, "function": {"name": "void org.elasticsearch.gateway.GatewayMetaState$LucenePersistedState.setLastAcceptedState(org.elasticsearch.cluster.ClusterState)", "offset": 11}, "line": {"number": 593}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7aCMYIsXT7qQBXR7iNdgwAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.aggregations.bucket.composite.TermsValuesSourceBuilder$$Lambda$9910+0x000000080298d408.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "enhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv"}} -{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.executeHelper()", "offset": 61}, "line": {"number": 1139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApa94"}} -{"Stackframe": {"function": {"name": "memset_erms"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7VqLwLJItvEm4yutk0qVmgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "org.elasticsearch.action.support.replication.TransportReplicationAction$ConcreteReplicaRequest org.elasticsearch.action.support.replication.TransportReplicationAction.lambda$new$1(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N1xfNXt_cEW2sMA8rTIs2gAAAAAAAAA8"}} -{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "io.opentelemetry.context.Context org.elasticsearch.tracing.apm.APMTracer.lambda$startTrace$1(java.lang.String, java.lang.String, org.elasticsearch.tracing.apm.APMTracer$APMServices, org.elasticsearch.common.util.concurrent.ThreadContext, java.util.Map)", "offset": 11}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEdyP"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.markroot"}, "line": {"number": 218}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.handleIndexActionAuthorizationResult(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener)", "offset": 69}, "line": {"number": 538}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2YGkbnIdlKIhbsTbMV-kWAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.apache.lucene.search.Weight.bulkScorer(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "y0h14uYNgXVbjfNG4dRx0gAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "Cache.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.cache.Cache.get(java.lang.Object, long, java.util.function.Consumer)", "offset": 1}, "line": {"number": 365}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LzfLWbRa1RV_hc6RWQwjdQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DateTimeUtils.java"}, "function": {"name": "org.joda.time.Chronology org.joda.time.DateTimeUtils.getChronology(org.joda.time.Chronology)", "offset": 1}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_93WPbrUDW14kcLWmrpKPQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "NamedDiffableValueSerializer.java"}, "function": {"name": "org.elasticsearch.cluster.Diff org.elasticsearch.cluster.NamedDiffableValueSerializer.readDiff(org.elasticsearch.common.io.stream.StreamInput, java.lang.Object)"}, "line": {"number": 19}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_qkVJm0NxTF9ak3kQe9veQAAAAAAAABl"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.netty.channel.ChannelPromise)", "offset": 20}, "line": {"number": 792}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XCoBIRW2zeIv8Jr12c2SPwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter$1.lambda$deleteUnusedFiles$0(java.util.Collection, org.apache.lucene.index.IndexWriter)"}, "line": {"number": 421}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XWhZGeSVw3QL-gA2NjTItQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PHkw6KCW6WHcDhD0gWZvxQAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.incomingRequest(org.elasticsearch.http.HttpRequest, org.elasticsearch.http.HttpChannel)", "offset": 3}, "line": {"number": 378}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e9VBoOb6ap6y2iBqQXec9wAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.doAddSortedField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 2}, "line": {"number": 639}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N1xfNXt_cEW2sMA8rTIs2gAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "io.opentelemetry.context.Context org.elasticsearch.tracing.apm.APMTracer.lambda$startTrace$1(java.lang.String, java.lang.String, org.elasticsearch.tracing.apm.APMTracer$APMServices, org.elasticsearch.common.util.concurrent.ThreadContext, java.util.Map)", "offset": 5}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6wI8-CYhvUQZGoLAE5tQIwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeGenericMap(java.util.Map)"}, "line": {"number": 541}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TZwep2BdnG6Mdu9AQocnMQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Netty4HttpRequestHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpRequestHandler.channelRead0(io.netty.channel.ChannelHandlerContext, java.lang.Object)"}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXcRU"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/tracer.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.(*Tracer).StartMapMonitors.func2"}, "line": {"number": 1176}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vc_2qIuahQ6DM3LWEJ9q5QAAAAAAAACE"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.writeFromNativeBuffer(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 18}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0Og38EZo1V7Xaj5UHUpXuQAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "OTelSpanBuilder.java"}, "function": {"name": "io.opentelemetry.api.trace.Span co.elastic.apm.agent.opentelemetry.sdk.OTelSpanBuilder.startSpan()", "offset": 7}, "line": {"number": 152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-mf9"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/blkio.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.blkioThrottle"}, "line": {"number": 179}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XnYKGifjjBQNyUfuNIzfgwAAAAAAAABj"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 99}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w7WOWZs79Wz210098loDzAAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "Netty4HttpPipeliningHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpPipeliningHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 2}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgmUe"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.gcDrainN"}, "line": {"number": 1138}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VQoK7BVzszXqPUi0cc2ufgAAAAAAAABC"}} -{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$1(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 15}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GxNkRnRGgJivqaGah_DkCAAAAAAAAAA_"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$DeleteResult org.elasticsearch.index.shard.IndexShard.delete(org.elasticsearch.index.engine.Engine, org.elasticsearch.index.engine.Engine$Delete)", "offset": 7}, "line": {"number": 1246}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "daK6dN7k3z0trpRB14mRWgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "NormsConsumer.java"}, "function": {"name": "long org.apache.lucene.codecs.NormsConsumer$1$1.longValue()"}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-vNq"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/reader.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.getCommonCgroupMetadata"}, "line": {"number": 318}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_o16MMgGIHtHHW6cqc3kcwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeWrite(java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 1}, "line": {"number": 709}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.stat0(long, sun.nio.fs.UnixFileAttributes)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S"}} -{"Stackframe": {"function": {"name": "schedule"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$RequestFilterChain.proceed(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UfxXcxW45qOYyGpzFqajkwAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "DeprecationLogger.java"}, "function": {"name": "org.elasticsearch.common.logging.DeprecationLogger org.elasticsearch.common.logging.DeprecationLogger.deprecate(org.elasticsearch.common.logging.DeprecationCategory, java.lang.String, java.lang.String, java.lang.Object[])", "offset": 1}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACsoxn"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/http/internal/chunked.go"}, "function": {"name": "net/http/internal.(*chunkedReader).Read"}, "line": {"number": 70}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ7fO"}} -{"Stackframe": {"function": {"name": "madvise_free_single_vma"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Jj6ja2Wbkf1_R1a9nVWcUAAAAAAAAAEe"}} -{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.CommonStats.(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 42}, "line": {"number": 199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2uEWBluAjlG6YATEmwlaSAAAAAAAAAFI"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.IndexingChain.processDocument(int, java.lang.Iterable)", "offset": 57}, "line": {"number": 578}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S5BR2ueGoaAxkLIj_xT88AAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.authenticateAsync()", "offset": 6}, "line": {"number": 320}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAC1JZm"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/outputs/logstash/async.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/outputs/logstash.(*msgRef).done"}, "line": {"number": 247}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "njwAfng-rrJkcdAyGpb5kAAAAAAAAABS"}} -{"Stackframe": {"file": {"name": "SocketOutputStream.java"}, "function": {"name": "void java.net.SocketOutputStream.socketWrite(byte[], int, int)", "offset": 10}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0s7uxPt4C0neZhw5beiboQAAAAAAAACQ"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.xcontent.support.AbstractXContentParser.readValueUnsafe(org.elasticsearch.xcontent.XContentParser$Token, org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier)", "offset": 12}, "line": {"number": 400}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ekRab6x2nuu_bqD7IimG9QAAAAAAAACm"}} -{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "void org.elasticsearch.cluster.DiffableUtils$ImmutableOpenMapDiff.(org.elasticsearch.common.collect.ImmutableOpenMap, org.elasticsearch.common.collect.ImmutableOpenMap, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)", "offset": 13}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MkdIM5v2AdjytK2Wcn6wZwAAAAAAAACt"}} -{"Stackframe": {"file": {"name": "BlobStoreIndexShardSnapshots.java"}, "function": {"name": "void org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots.(java.util.List)", "offset": 16}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LPUt4IiihpgVMsHfOZohwAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$4458.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VCZTpLkuh_k-G5uf32ejyAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.cluster.metadata.Metadata.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)"}, "line": {"number": 1361}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMs6N"}} -{"Stackframe": {"function": {"name": "ep_scan_ready_list.constprop.20"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nnCec0a2-ZcuYpnWUHHz2AAAAAAAAAC3"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 13}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2lqT74CaceoLHVL-Vgll-wAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "DateTimeFormatter.java"}, "function": {"name": "long org.joda.time.format.DateTimeFormatter.parseMillis(java.lang.String)", "offset": 3}, "line": {"number": 826}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Na_PpP7_oJyidmLVUAzc9QAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction.shardOperationOnReplica(org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00i"}} -{"Stackframe": {"function": {"name": "schedule_hrtimeout_range"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALiOf"}} -{"Stackframe": {"function": {"name": "inode_permission"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IWCarP2Cg-zGilSmP2FwvAAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 49}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YqGCdZ1cNEoHUUaGHzWSqQAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.SoftDeletesRetentionMergePolicy.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.util.IOSupplier)", "offset": 6}, "line": {"number": 162}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTBI"}} -{"Stackframe": {"function": {"name": "prepend_path"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EbDp5Ji3y8uTKzXL0h4-JQAAAAAAAAB8"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 22}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cidxU1IQprySS7Fh7255fAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.elasticsearch.core.IOUtils.close(java.io.Closeable[])"}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "__e_ReExoac--V-RQeNXewAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "AbstractNamedDiffable.java"}, "function": {"name": "org.elasticsearch.cluster.NamedDiff org.elasticsearch.cluster.AbstractNamedDiffable.readDiffFrom(java.lang.Class, java.lang.String, org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAANUz"}} -{"Stackframe": {"file": {"name": "runtime/lock_futex.go"}, "function": {"name": "runtime.notetsleep"}, "line": {"number": 225}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHaAd"}} -{"Stackframe": {"function": {"name": "__do_sys_bpf"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bpFrLpp87SutwNDP7V3ibQAAAAAAAABa"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.Settings.readSettingsFromStream(org.elasticsearch.common.io.stream.StreamInput)", "offset": 15}, "line": {"number": 598}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qIdHU9P-nSAC0k7-GO5p3gAAAAAAAABU"}} -{"Stackframe": {"file": {"name": "BulkRequestHandler.java"}, "function": {"name": "void org.elasticsearch.action.bulk.BulkRequestHandler.execute(org.elasticsearch.action.bulk.BulkRequest, long)", "offset": 7}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3R8pvj9gYzDPyi0jNqDOsAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.cluster.node.info.NodeInfo$$Lambda$7420+0x000000080252c800.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ppgfijHl7Ldlarmt7iuvVQAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeRead()", "offset": 2}, "line": {"number": 686}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lPFcxZmqiy0vqSr3tr4NBAAAAAAAAACF"}} -{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "void org.elasticsearch.transport.CopyBytesSocketChannel.doWrite(io.netty.channel.ChannelOutboundBuffer)", "offset": 31}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIX"}} -{"Stackframe": {"function": {"name": "do_syscall_64"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Du5NCmZX6BYluhUNS5CMCAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$SparseNumericDocValues.docID()"}, "line": {"number": 462}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a38j856FxIPiwroWnutPzgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ChannelOutputStream.java"}, "function": {"name": "void sun.nio.ch.ChannelOutputStream.writeFully(java.nio.ByteBuffer)", "offset": 1}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "p3aJQvC9ntwzd5eHq1bIYgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "BulkProcessor.java"}, "function": {"name": "org.elasticsearch.action.bulk.BulkProcessor org.elasticsearch.action.bulk.BulkProcessor.add(org.elasticsearch.action.DocWriteRequest)"}, "line": {"number": 444}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-ONwHRu7OfgV9W2gyM5rZQAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "ThreadLocal.java"}, "function": {"name": "java.lang.ThreadLocal$ThreadLocalMap$Entry java.lang.ThreadLocal$ThreadLocalMap.getEntry(java.lang.ThreadLocal)", "offset": 5}, "line": {"number": 511}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAADgbuk"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_docker_metadata/add_docker_metadata.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_docker_metadata.(*addDockerMetadata).Run"}, "line": {"number": 193}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALqAi"}} -{"Stackframe": {"function": {"name": "__x64_sys_unlink"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$10(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult)"}, "line": {"number": 434}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cufAAT85HPQ26Jp5bbvtDgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "io.netty.util.concurrent.Promise io.netty.util.concurrent.DefaultPromise.addListener(io.netty.util.concurrent.GenericFutureListener)"}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXrhy"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.(*GenericEventConverter).Convert"}, "line": {"number": 63}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "g8uTn1yVw1EYmPA-d4Jf8QAAAAAAAAFt"}} -{"Stackframe": {"file": {"name": "SSLConnectionSocketFactory.java"}, "function": {"name": "java.net.Socket org.apache.http.conn.ssl.SSLConnectionSocketFactory.createLayeredSocket(java.net.Socket, java.lang.String, int, org.apache.http.protocol.HttpContext)", "offset": 43}, "line": {"number": 436}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "y9wAruXr5eENJ6q-yQaEgwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Lucene90PointsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90PointsWriter.(org.apache.lucene.index.SegmentWriteState)"}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-TcRbQGxOxYw9x9ta5Q4zwAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.lambda$handleRequest$0(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.internal.node.NodeClient, org.elasticsearch.xpack.core.security.authc.support.SecondaryAuthentication)", "offset": 5}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8M1BLNGIf7nUxDe3LzOquQAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.util.stream.Sink java.util.stream.AbstractPipeline.wrapSink(java.util.stream.Sink)", "offset": 3}, "line": {"number": 522}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAChhtk"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/gosigar@v0.14.1/cgroup/util.go"}, "function": {"name": "github.com/elastic/gosigar/cgroup.ProcessCgroupPaths"}, "line": {"number": 243}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS"}} -{"Stackframe": {"function": {"name": "syscall_trace_enter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnhGk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).object"}, "line": {"number": 794}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "51V0D1TzyqMrtHMI3LHdDwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ReferenceCountUtil.java"}, "function": {"name": "void io.netty.util.ReferenceCountUtil.safeRelease(java.lang.Object)"}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 2}, "line": {"number": 501}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADUPOk"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/docker/engine@v0.0.0-20191113042239-ea84732a7725/client/container_list.go"}, "function": {"name": "github.com/docker/docker/client.(*Client).ContainerList"}, "line": {"number": 41}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "J4hlCy86cfj7Xf4p4Ah8UwAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 459}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "80G6zvzFPytbRyfwuXWQcAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "sun.nio.fs.UnixPath sun.nio.fs.UnixPath.getName(int)"}, "line": {"number": 332}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bPGPRDv1mVfrLWODFwT_VQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HL8EuHVSmvyyvO0QJQzjvAAAAAAAAABl"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.deleteFiles(java.util.Collection)", "offset": 17}, "line": {"number": 750}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZgROkWlvV9ujJA-aNSGhMwAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "Cipher.java"}, "function": {"name": "int javax.crypto.Cipher.doFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 14}, "line": {"number": 2502}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "java.nio.file.Path sun.nio.fs.UnixPath.getName(int)"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEQGk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map.go"}, "function": {"name": "runtime.growWork"}, "line": {"number": 1082}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedExceptionAction)", "offset": 3}, "line": {"number": 554}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "szt2k0ovsr12IZ0RfLNzWAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "TokenFilter.java"}, "function": {"name": "void org.apache.lucene.analysis.TokenFilter.close()"}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WqkYLbMlJrW2Y713zy5U0wAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "RestGetAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.document.RestGetAction.lambda$prepareRequest$0(org.elasticsearch.client.node.NodeClient, org.elasticsearch.action.get.GetRequest, org.elasticsearch.rest.RestChannel)"}, "line": {"number": 98}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5utt2dQ8HKrTepHdNpprxQAAAAAAAAC_"}} -{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.CommonStats org.elasticsearch.action.admin.indices.stats.CommonStats.getShardLevelStats(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 9}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8otNRdSDOkmJHkAHEZdMrAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 9}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApa96"}} -{"Stackframe": {"function": {"name": "memset_erms"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zLRHJmK7SuaCDIOsydGjpQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$2.onResponse(java.lang.Object)"}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E1jDbcQSOqd7Pzoo2vcUAQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$apply$0(org.elasticsearch.action.support.ActionFilterChain, org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, java.lang.Void)"}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KUlo4jHv-fgbgE-4hH_iUAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Direct16.java"}, "function": {"name": "void org.apache.lucene.util.packed.Direct16.set(int, long)"}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tdD8ypwjz292XloefbIz1AAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "ByteSequenceOutputs.java"}, "function": {"name": "void org.apache.lucene.util.fst.ByteSequenceOutputs.write(org.apache.lucene.util.BytesRef, org.apache.lucene.store.DataOutput)", "offset": 1}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACVUIh"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/http/transport.go"}, "function": {"name": "net/http.(*bodyEOFSignal).Read"}, "line": {"number": 2727}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gm8AuUNO9K8eEDhJQ1w7agAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "QueuedThreadPool.java"}, "function": {"name": "void org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(java.lang.Runnable)"}, "line": {"number": 883}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACfMS"}} -{"Stackframe": {"function": {"name": "do_group_exit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "izOapIecEtKD0W0KOjIC-gAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "DateTimeFormatter.java"}, "function": {"name": "java.time.format.DateTimeParseContext java.time.format.DateTimeFormatter.parseUnresolved0(java.lang.CharSequence, java.text.ParsePosition)", "offset": 4}, "line": {"number": 2167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WJQwXsMRv_RvORZli-UqwwAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "DateUtils.java"}, "function": {"name": "java.util.Date com.amazonaws.util.DateUtils.parseRFC822Date(java.lang.String)", "offset": 4}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M-q_yN6BkZgGVL7TrJEMggAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "Lucene84PostingsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.FieldsConsumer org.apache.lucene.codecs.lucene84.Lucene84PostingsFormat.fieldsConsumer(org.apache.lucene.index.SegmentWriteState)", "offset": 3}, "line": {"number": 423}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAARNnn"}} -{"Stackframe": {"function": {"name": "security_file_permission"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vMgb9ybFueXylUIb_E_TiQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "SearchRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.SearchRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)"}, "line": {"number": 25}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rOOdiLJX-1B7cLCvfMwHQQAAAAAAAAED"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 62}, "line": {"number": 443}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MM51VTv27UToLPXymIJTGwAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesFormat.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesProducer org.apache.lucene.codecs.lucene90.Lucene90DocValuesFormat.fieldsProducer(org.apache.lucene.index.SegmentReadState)"}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LE9059JushFpT02ldF8LBAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "void sun.nio.fs.UnixPath.checkRead()", "offset": 2}, "line": {"number": 780}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CpvjWyzlv7sy206ARLr_PwAAAAAAAABU"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI$BitSetConjunctionDISI.doNext(int)", "offset": 9}, "line": {"number": 323}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LdJVHM3jWUnd1dzZ7uYM4QAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "UnpooledByteBufAllocator.java"}, "function": {"name": "byte[] io.netty.buffer.UnpooledByteBufAllocator$InstrumentedUnpooledHeapByteBuf.allocateArray(int)"}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m38Gzass7BaV99IOvdPsWgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.startStoredFields(int)"}, "line": {"number": 452}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S_GmAS-sCtPOI6egY6LXiwAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$4(org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationResult)", "offset": 1}, "line": {"number": 391}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S1h39AxVLLMg2CHSmY1AGwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.run()"}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "86qquxKKoeIW8IO4fsfrQAAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "ThreadPoolInfo.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.threadpool.ThreadPoolInfo.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 2}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "c95b0xugd132zom56_A3XAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Settings$Builder.remove(java.lang.String)"}, "line": {"number": 867}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S8EUD4p5Uqc9upyNv2OqKwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "TransportHasPrivilegesAction.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.user.TransportHasPrivilegesAction.resolveApplicationPrivileges(org.elasticsearch.xpack.core.security.action.user.HasPrivilegesRequest, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I0USoma0OWjdGMGSaTNhgQAAAAAAAABZ"}} -{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.scoreRange(org.apache.lucene.search.LeafCollector, org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.search.TwoPhaseIterator, org.apache.lucene.util.Bits, int, int)", "offset": 13}, "line": {"number": 262}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mL_UI4nPuRhvUWgvxCaoSwAAAAAAAAJa"}} -{"Stackframe": {"file": {"name": "RoutingNodes.java"}, "function": {"name": "void org.elasticsearch.cluster.routing.RoutingNodes.(org.elasticsearch.cluster.ClusterState, boolean)", "offset": 78}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X_KArw2lYZFY-9kCvtv9JwAAAAAAAADq"}} -{"Stackframe": {"file": {"name": "LRUQueryCache.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight.scorerSupplier(org.apache.lucene.index.LeafReaderContext)", "offset": 68}, "line": {"number": 783}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iWgDlwY4VhfAGTKvvPjL1AAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeWrite(java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 1}, "line": {"number": 863}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChWnJ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/slice.go"}, "function": {"name": "runtime.growslice"}, "line": {"number": 199}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACzCUr"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/mapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.MapStr.Clone"}, "line": {"number": 155}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "883bdFy7P76blVO1v_2KNQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "OsService.java"}, "function": {"name": "java.lang.Object org.elasticsearch.monitor.os.OsService$OsStatsCache.refresh()"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bxUfVnyBZI_pROsv4HjqngAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$5907.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "q6dG50P9zlO2POIXATNq5gAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "QuotaAwareFileSystemProvider.java"}, "function": {"name": "void co.elastic.cloud.quotaawarefs.QuotaAwareFileSystemProvider.refreshLimits()"}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Hucgtk7VtYNos1qfIpcPAwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap$EntryIterator.(java.util.HashMap)"}, "line": {"number": 1615}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEgN7"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.scanobject"}, "line": {"number": 1386}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5rMKFxe1PcyzU3VKeDU86AAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.field(java.lang.String, java.util.Map)"}, "line": {"number": 1023}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CqHdoNRupr5ud0SEqGGzcgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ResourceWatcherService.java"}, "function": {"name": "void org.elasticsearch.watcher.ResourceWatcherService$ResourceMonitor.run()"}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "q9mzJi_3huRfaH8KQrmXgAAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$$Lambda$4981+0x00000008020af6c0.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGsDN"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/syscall_unix.go"}, "function": {"name": "internal/poll.(*FD).Read.func1"}, "line": {"number": 187}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFlwF"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mheap.go"}, "function": {"name": "runtime.(*mheap).alloc.func1"}, "line": {"number": 907}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFW5E"}} -{"Stackframe": {"function": {"name": "cgroup_show_path"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV"}} -{"Stackframe": {"function": {"name": "audit_filter_syscall.constprop.19"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I3yeYI3jggKwXLfShIlMywAAAAAAAABU"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "java.util.Set org.apache.lucene.index.ReadersAndUpdates.writeFieldInfosGen(org.apache.lucene.index.FieldInfos, org.apache.lucene.store.Directory, org.apache.lucene.codecs.FieldInfosFormat)", "offset": 9}, "line": {"number": 499}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M1U5MRplArg1qeEAEk5MlAAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.handleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 4}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "p3fO6R-HhQcKmmzP8aNv3gAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "StoredFieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.index.StoredFieldsConsumer.finishDocument()"}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KiKQXI5stF5N-InJuXrsjgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "void org.elasticsearch.index.store.Store$StoreDirectory.deleteFile(java.lang.String)"}, "line": {"number": 751}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kPOuFMPm2_j7vX6Q_7bKcAAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.index.SoftDeletesRetentionMergePolicy.getScorer(org.apache.lucene.search.Query, org.apache.lucene.index.CodecReader)", "offset": 3}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hQ5cY6hqm-eI3Hf-Do5rXgAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "boolean org.elasticsearch.index.translog.Translog.ensureSynced(org.elasticsearch.index.translog.Translog$Location)", "offset": 3}, "line": {"number": 776}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2bocF2PaQb-4x21c82XN2wAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "BufferedInputStream.java"}, "function": {"name": "int java.io.BufferedInputStream.implRead()", "offset": 1}, "line": {"number": 289}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iZB69y95UmqqnSAe20xlSAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ManagementFactory.java"}, "function": {"name": "java.util.stream.Stream java.lang.management.ManagementFactory.lambda$getPlatformMXBeans$3(java.lang.Class, sun.management.spi.PlatformMBeanProvider$PlatformComponent)"}, "line": {"number": 726}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo)", "offset": 6}, "line": {"number": 5528}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "prgmxWXKbn-DhdZY8RSwqQAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.onShardResult(org.elasticsearch.search.SearchPhaseResult, org.elasticsearch.action.search.SearchShardIterator)", "offset": 20}, "line": {"number": 491}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-fjjEkAfmyzFl6-yS30t0gAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.lambda$closeMergeReaders$18(boolean, org.apache.lucene.index.MergePolicy$MergeReader)", "offset": 1}, "line": {"number": 4633}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fzLzWZQgzth4yv0Aw0PoLgAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "BatchEventProcessor.java"}, "function": {"name": "void com.lmax.disruptor.BatchEventProcessor.run()", "offset": 9}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2qYZMbn2dbHGF73xhejdBwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "DecimalFormatSymbols.java"}, "function": {"name": "void java.text.DecimalFormatSymbols.(java.util.Locale)", "offset": 1}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PyY6qsH4ByVjV1tK07pF9AAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$6510+0x0000000801c927a0.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sXYsfWKSXv-0U7gobefHRgAAAAAAAAEM"}} -{"Stackframe": {"file": {"name": "IndexMetadata.java"}, "function": {"name": "void org.elasticsearch.cluster.metadata.IndexMetadata$Builder.toXContent(org.elasticsearch.cluster.metadata.IndexMetadata, org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 29}, "line": {"number": 1312}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7OmS9SwYpCYbOPw4YxA-2QAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "RestSearchAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction.lambda$prepareRequest$2(org.elasticsearch.client.node.NodeClient, org.elasticsearch.rest.RestRequest, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.rest.RestChannel)", "offset": 1}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o-P7WUweJOXxjcBwKXko5AAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "Netty4TcpChannel.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4TcpChannel.sendMessage(org.elasticsearch.common.bytes.BytesReference, org.elasticsearch.action.ActionListener)"}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mdgXK8UgXxJq-aF0PWZBWQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler$$Lambda$5323+0x0000000801a5d6e0.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6XSmObFSSfKQphH28GHZfAAAAAAAAALd"}} -{"Stackframe": {"file": {"name": "MainClientExec.java"}, "function": {"name": "org.apache.http.client.methods.CloseableHttpResponse org.apache.http.impl.execchain.MainClientExec.execute(org.apache.http.conn.routing.HttpRoute, org.apache.http.client.methods.HttpRequestWrapper, org.apache.http.client.protocol.HttpClientContext, org.apache.http.client.methods.HttpExecutionAware)", "offset": 120}, "line": {"number": 275}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Sxgb26oKQwlt07if9woPTQAAAAAAABLv"}} -{"Stackframe": {"function": {"name": "br_nf_hook_thresh"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZZqFVPfJM-LkfzPbeaoP8QAAAAAAAAIJ"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "boolean org.apache.lucene.index.ReadersAndUpdates.writeFieldUpdates(org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos$FieldNumbers, long, org.apache.lucene.util.InfoStream)", "offset": 73}, "line": {"number": 624}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yzF6hkXAWj2zsycLYYGV0AAAAAAAAACY"}} -{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode$GCMEncrypt.doFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 13}, "line": {"number": 1313}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DFiXReuwhx9_RqSSjQw5PgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction$1.handleResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 248}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXSQt"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/elfinfo.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.(*Tracer).getELFInfoForMapping"}, "line": {"number": 158}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvyz"}} -{"Stackframe": {"function": {"name": "__x64_sys_nanosleep"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DaLOu1u8r2OzUEp60ph7fAAAAAAAAADX"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.innerParseObject(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, org.elasticsearch.xcontent.XContentParser, java.lang.String, org.elasticsearch.xcontent.XContentParser$Token)", "offset": 27}, "line": {"number": 518}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z4mpI5kmO39mMZUBEmo57QAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncPrimaryAction.doRun()", "offset": 1}, "line": {"number": 274}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XI-CkvdugUy8Hfgp4tFlQgAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "CodecUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.CodecUtil.writeIndexHeader(org.apache.lucene.store.DataOutput, java.lang.String, int, byte[], java.lang.String)", "offset": 5}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rTxaKzkbha_JID224cs5EwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl$1.read(byte[], int, int)"}, "line": {"number": 803}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "PendingSoftDeletes.java"}, "function": {"name": "int org.apache.lucene.index.PendingSoftDeletes.numDeletesToMerge(org.apache.lucene.index.MergePolicy, org.apache.lucene.util.IOSupplier)", "offset": 1}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "J4eQqgwFH8hGziiVTbtiYwAAAAAAAACO"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.merge(org.apache.lucene.index.MergeState)", "offset": 16}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5jX00vRveA-bSGKVbRAzeQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.xcontent.ObjectParser$$Lambda$460.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GT3vc6Zy2FsC0X3TBWoX8gAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "void org.elasticsearch.search.SearchService.loadOrExecuteQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.search.internal.SearchContext)", "offset": 5}, "line": {"number": 361}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1vmWfRl7JvnIelrwmbOFDwAAAAAAAAB2"}} -{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 31}, "line": {"number": 230}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yVj-DhlWsbRwk1ix0xTSnAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "java.lang.Object java.util.concurrent.ConcurrentHashMap.get(java.lang.Object)"}, "line": {"number": 936}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgaRE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map_faststr.go"}, "function": {"name": "runtime.mapassign_faststr"}, "line": {"number": 277}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "T9jB4qnc_5xFsdcbo1_ZFQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.finishStoredFields()"}, "line": {"number": 463}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vIUAbyMW7bf80Va51E6QcQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TransportNodesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation(org.elasticsearch.action.support.nodes.BaseNodeRequest)"}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXcST"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/tracer.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.(*Tracer).StartMapMonitors.func2"}, "line": {"number": 1179}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0qjoqZl267F0DC5OJqPG4gAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel)"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkHP8"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).UnreadRune"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEPqk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map.go"}, "function": {"name": "runtime.mapiternext"}, "line": {"number": 939}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJips"}} -{"Stackframe": {"function": {"name": "exit_mmap"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OD70Y_FJ9InM174djAQyRwAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.executeLocalSearch(org.elasticsearch.tasks.Task, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.OriginalIndices, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener, org.elasticsearch.action.search.SearchContextId, org.elasticsearch.action.search.TransportSearchAction$SearchAsyncActionProvider)"}, "line": {"number": 763}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fZfGpgZFJokP-jaeydrs0QAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.put(java.lang.Object, java.lang.Object)"}, "line": {"number": 613}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_7fh"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/file_integrity/metricset.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/file_integrity.store"}, "line": {"number": 372}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UNc2mXE-rC1br_1LecPIQAAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "java.util.List org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$WildcardExpressionResolver.resolve(org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$Context, java.util.List)", "offset": 15}, "line": {"number": 733}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxFlN"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/os.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.makeOSInfo"}, "line": {"number": 153}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEWwtU"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/module/docker/docker.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/module/docker.FetchStats.func1"}, "line": {"number": 120}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 3}, "line": {"number": 333}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "clhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJ"}} -{"Stackframe": {"file": {"name": "CompressingStoredFieldsWriter.java"}, "function": {"name": "int org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.merge(org.apache.lucene.index.MergeState)", "offset": 32}, "line": {"number": 636}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LTyLcxCjCWE0-UMDXjVNpQAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "boolean java.util.ArrayList$ArrayListSpliterator.tryAdvance(java.util.function.Consumer)", "offset": 6}, "line": {"number": 1602}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChWRR"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/msize.go"}, "function": {"name": "runtime.growslice"}, "line": {"number": 18}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xDECjxfRDF0SAcicHv7yIgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "AbstractEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)"}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z_WaY2pXtLyni7L_8jKtBgAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "StoredFieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.index.StoredFieldsConsumer.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)"}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAa4Mo"}} -{"Stackframe": {"file": {"name": "google.golang.org/grpc@v1.46.0/rpc_util.go"}, "function": {"name": "google.golang.org/grpc.compress"}, "line": {"number": 624}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pxFz17lb-voh9uZicvdXWAAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI$BitSetConjunctionDISI.advance(int)", "offset": 1}, "line": {"number": 310}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABWXC3"}} -{"Stackframe": {"file": {"name": "encoding/gob/decode.go"}, "function": {"name": "encoding/gob.(*Decoder).decodeArrayHelper"}, "line": {"number": 522}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "atxNg2wB0yTwBdq5mQELkAAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.store.StoreStats org.elasticsearch.index.shard.IndexShard.storeStats()", "offset": 7}, "line": {"number": 1358}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5rk_UJ-u8N3KSTCupmswwgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "Scheduler.java"}, "function": {"name": "void org.elasticsearch.threadpool.Scheduler$ReschedulingRunnable.doRun()", "offset": 1}, "line": {"number": 214}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-G-jKyr5A3MRrC_vNgLsBAAAAAAAAAFP"}} -{"Stackframe": {"file": {"name": "Lucene80NormsConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80NormsConsumer.addNormsField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.NormsProducer)", "offset": 43}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gLXkvrJ336XxS82ftcJqhAAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "FieldValueHitQueue.java"}, "function": {"name": "org.apache.lucene.search.LeafFieldComparator[] org.apache.lucene.search.FieldValueHitQueue.getComparators(org.apache.lucene.index.LeafReaderContext)", "offset": 2}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EA1OKjiVXEAGGRXpRU8t5QAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.get(long)"}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAbh1u"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/libpf/periodiccaller/periodiccaller.go"}, "function": {"name": "github.com/optimyze/prodfiler/libpf/periodiccaller.Start.func1"}, "line": {"number": 21}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFpXk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mbarrier.go"}, "function": {"name": "reflect.typedmemmove"}, "line": {"number": 187}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mZdi8xuJDhfKKe9rvO4vxgAAAAAAAACu"}} -{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.store.IOContext, java.lang.String, org.apache.lucene.codecs.compressing.CompressionMode, int, int, int)", "offset": 24}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o9I8XHop3y7uLb8wdADAN______AjWVh"}} -{"Stackframe": {"function": {"name": "__this_module"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fZ3COijH60wdDIIVUpSInQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "long java.nio.file.Files.size(java.nio.file.Path)"}, "line": {"number": 2466}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "71tcgbBjsGAuVt1WGfcc1wAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.writeShardIndexBlob(org.elasticsearch.common.blobstore.BlobContainer, java.lang.String, org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots)", "offset": 2}, "line": {"number": 2051}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8uVqqmQs2krZT40-iqFC3AAAAAAAAADD"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.awaitMatch(java.util.concurrent.LinkedTransferQueue$Node, java.util.concurrent.LinkedTransferQueue$Node, java.lang.Object, boolean, long)", "offset": 39}, "line": {"number": 743}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5U"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.normalizeCompound"}, "line": {"number": 232}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EIpTc6zorXqtTjOVazk4HwAAAAAAAABo"}} -{"Stackframe": {"file": {"name": "CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.finish(org.apache.lucene.index.FieldInfos, int)", "offset": 8}, "line": {"number": 489}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WJOADfwpHxtseudP4RVyOQAAAAAAAAIB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 513}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "r9OA6z6ywxk33MG1uly6aAAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$3(org.elasticsearch.action.support.ActionFilterChain, org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener, java.lang.Void)"}, "line": {"number": 190}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xB00KDzyoofk7hNv-bTuugAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "ES85BloomFilterPostingsFormat.java"}, "function": {"name": "void org.elasticsearch.index.codec.bloomfilter.ES85BloomFilterPostingsFormat$FieldsWriter.close()", "offset": 7}, "line": {"number": 214}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FYp6NrRQUdcxcMQHOiZr7QAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "boolean io.netty.util.concurrent.DefaultPromise.setValue0(java.lang.Object)", "offset": 3}, "line": {"number": 615}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s3WzjwILXubccsM-D_ZgMwAAAAAAAABi"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.ActionListener)", "offset": 45}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACwzdW"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/strings.go"}, "function": {"name": "github.com/prometheus/procfs.Proc.NewStatus"}, "line": {"number": 275}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nhhjya476W1WfBuGXQUi0QAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "org.elasticsearch.cluster.DiffableUtils$MapDiff org.elasticsearch.cluster.DiffableUtils.readImmutableOpenMapDiff(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)"}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yImdtjjCMZhJ-nQQIrKkrAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct.putTransient(java.lang.String, java.lang.Object)"}, "line": {"number": 807}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f15ZZuvJposXWOcmbKQgxAAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "FileChannel.java"}, "function": {"name": "java.nio.channels.FileChannel java.nio.channels.FileChannel.open(java.nio.file.Path, java.nio.file.OpenOption[])", "offset": 6}, "line": {"number": 363}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Qgmxh3uDuguOnnGd8i_56AAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TransportNodesInfoAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.info.NodeInfo org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction.newNodeResponse(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.node.DiscoveryNode)"}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIcB7"}} -{"Stackframe": {"function": {"name": "pagecache_get_page"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xP8BEtTROcQjINLBdr_0HQAAAAAAAAB6"}} -{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "void sun.security.ssl.SSLSocketImpl.startHandshake(boolean)", "offset": 25}, "line": {"number": 456}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChu98"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/sema.go"}, "function": {"name": "sync.runtime_notifyListWait"}, "line": {"number": 514}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K-xWzbOpXq--Qycbjj-mDwAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "org.elasticsearch.index.store.ByteSizeCachingDirectory$SizeAndModCount org.elasticsearch.index.store.ByteSizeCachingDirectory$1.refresh()", "offset": 7}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I8IIyf6YX8Obq6OO40d5JwAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "MSBRadixSorter.java"}, "function": {"name": "void org.apache.lucene.util.MSBRadixSorter.sort(int, int, int, int)", "offset": 1}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC8tjl"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-structform@v0.0.9/gotype/fold_reflect.go"}, "function": {"name": "github.com/elastic/go-structform/gotype.(*typeFoldRegistry).set"}, "line": {"number": 590}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "avU6NIsopUe3RLXmOLaJogAAAAAAAABB"}} -{"Stackframe": {"file": {"name": "JarFileFactory.java"}, "function": {"name": "java.util.jar.JarFile sun.net.www.protocol.jar.JarFileFactory.getCachedJarFile(java.net.URL)", "offset": 10}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GOcPlET8lxz6w9LoJqKjeAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "java.util.regex.Pattern java.util.regex.Pattern.compile(java.lang.String)"}, "line": {"number": 1068}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADQjWB"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-lumber@v0.1.0/client/v2/client.go"}, "function": {"name": "github.com/elastic/go-lumber/client/v2.(*Client).serialize"}, "line": {"number": 205}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "W7av6kFBL38jd5m72xNnHgAAAAAAAABg"}} -{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "org.elasticsearch.common.collect.Tuple org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.bytes.BytesReference, boolean, org.elasticsearch.common.xcontent.XContentType)", "offset": 13}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UB5naxIrTLZU1AplJeKCHwAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "AbstractIntakeApiHandler.java"}, "function": {"name": "void co.elastic.apm.agent.report.AbstractIntakeApiHandler.endRequest(boolean)", "offset": 3}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N8DqgWjeLIV_lXyhwD6riAAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "void org.elasticsearch.search.query.QueryPhase.preProcess(org.elasticsearch.search.internal.SearchContext)", "offset": 11}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e5aBCOhKC4RY6MYEGFpjzwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ReleasableBytesReference.java"}, "function": {"name": "void org.elasticsearch.common.bytes.ReleasableBytesReference$RefCountedReleasable.closeInternal()"}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nNtnD4PGULazJAtCILoEFQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "HexUtils.java"}, "function": {"name": "void co.elastic.apm.agent.util.HexUtils.writeBytesAsHex(byte[], java.lang.StringBuilder)"}, "line": {"number": 59}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3JOiPEBqME3dIDTotL2-UQAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.lambda$handleRequest$0(java.lang.String, org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient, org.elasticsearch.xpack.core.security.authc.support.SecondaryAuthentication)", "offset": 4}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qU4kioVgX1sNw5K2FC6P0AAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5402+0x0000000801ab4ce0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WSancnmbX3N0mzUrLDNaPQAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(io.netty.channel.AbstractChannelHandlerContext, java.lang.Object)", "offset": 3}, "line": {"number": 365}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.xcontent.support.AbstractXContentParser.readMapEntries(org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier, java.util.Map, java.lang.String)", "offset": 2}, "line": {"number": 324}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAADrOo"}} -{"Stackframe": {"file": {"name": "fmt/print.go"}, "function": {"name": "fmt.(*pp).doPrintf"}, "line": {"number": 1154}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACETKc"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map_faststr.go"}, "function": {"name": "runtime.mapaccess2_faststr"}, "line": {"number": 194}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vc-j1E8HSTKofoqXgmmEFQAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "int java.lang.String.hashCode()", "offset": 3}, "line": {"number": 1543}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XoncVs_RZ0C2CaElSEtZqgAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "LZ4WithPresetDictCompressionMode.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene87.LZ4WithPresetDictCompressionMode$LZ4WithPresetDictCompressor.doCompress(byte[], int, int, org.apache.lucene.store.DataOutput)", "offset": 1}, "line": {"number": 162}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "icPJ7tOGKK7zFdZdegZdLQAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.stat(sun.nio.fs.UnixPath, sun.nio.fs.UnixFileAttributes)", "offset": 3}, "line": {"number": 321}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZy"}} -{"Stackframe": {"file": {"name": "runtime/internal/syscall/syscall_linux.go"}, "function": {"name": "syscall.RawSyscall6"}, "line": {"number": 38}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f6OHtxWEEYSKC5jCOpZRYwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node[] java.util.HashMap.resize()"}, "line": {"number": 679}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h_r9uFHZsC57ztTXanIIagAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "BuiltinClassLoader.java"}, "function": {"name": "java.net.URL jdk.internal.loader.BuiltinClassLoader.findResourceOnClassPath(java.lang.String)", "offset": 5}, "line": {"number": 502}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6iGlQzoTSIEYgwqxP3PUNAAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "AbstractQueuedSynchronizer.java"}, "function": {"name": "void java.util.concurrent.locks.AbstractQueuedSynchronizer.signalNext(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node)", "offset": 2}, "line": {"number": 610}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KKci4M_8u3lv7Ydwxf31oQAAAAAAAABh"}} -{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "void org.elasticsearch.transport.CopyBytesSocketChannel.doWrite(io.netty.channel.ChannelOutboundBuffer)", "offset": 24}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4LWodyiv9Hy4HicwczMhQwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.exists(java.nio.file.Path)", "offset": 2}, "line": {"number": 533}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AAahb89jp2nXTHxX6vfDVgAAAAAAAAIa"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.writeBlocks(int, int)", "offset": 88}, "line": {"number": 637}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ivg_JPEBUKm57VWt-FY04AAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator$$Lambda$7317+0x0000000802513440.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUfWS"}} -{"Stackframe": {"function": {"name": "copy_page_to_iter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.dispatchedShardOperationOnPrimary(org.elasticsearch.action.support.replication.ReplicatedWriteRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile.lambda$inbound$1(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.Version, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 7}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aMt98PU3KeD3UYywrCFAzQAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "BulkByScrollParallelizationHelper.java"}, "function": {"name": "void org.elasticsearch.reindex.BulkByScrollParallelizationHelper.initTaskState(org.elasticsearch.index.reindex.BulkByScrollTask, org.elasticsearch.index.reindex.AbstractBulkByScrollRequest, org.elasticsearch.client.internal.Client, org.elasticsearch.action.ActionListener)", "offset": 10}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eRkjYZu2KBOHIp1IQSjwWAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "int sun.security.ssl.SSLSocketImpl.readHandshakeRecord()", "offset": 2}, "line": {"number": 1416}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ngEDfMGa2k3LBps0tpgYRAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "ChannelOutboundBuffer.java"}, "function": {"name": "void io.netty.channel.ChannelOutboundBuffer.safeSuccess(io.netty.channel.ChannelPromise)"}, "line": {"number": 717}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkMZ4"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).advance"}, "line": {"number": 244}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QeWQ8zEKs_UQG-L_4x7HuQAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 3}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CBErNceWpqx1qGdHmNHHIQAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 127}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hw17zzDItUnj1sn_WjZmnAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "MemoryImpl.java"}, "function": {"name": "java.lang.management.MemoryUsage sun.management.MemoryImpl.getMemoryUsage0(boolean)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Zf4KmPLa6_uw8gRgiw9EUAAAAAAAAAE4"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.runTask(java.lang.String, java.util.function.Function, org.elasticsearch.action.ActionListener)", "offset": 44}, "line": {"number": 428}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wKq13sxbA1Q177k-e_lIpgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.decRef(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)"}, "line": {"number": 393}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qRvG2N9iYeFyl-3xULRJEgAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "Collection.java"}, "function": {"name": "boolean java.util.Collection.removeIf(java.util.function.Predicate)", "offset": 4}, "line": {"number": 576}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OKEtUix2HJWtvCrDrfheVwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(java.lang.String, org.elasticsearch.transport.TransportRequest, boolean, org.elasticsearch.action.ActionListener)"}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADQTpn"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/klauspost/compress@v1.13.6/flate/deflate.go"}, "function": {"name": "github.com/klauspost/compress/flate.NewWriterDict"}, "line": {"number": 760}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XEL8uypdAacLWMwpaKSA9AAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lZTvs585vMzXjn3UHln0NQAAAAAAAAGi"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.engine.InternalEngine.index(org.elasticsearch.index.engine.Engine$Index)", "offset": 61}, "line": {"number": 954}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnefE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*UnmarshalTypeError).Error"}, "line": {"number": 134}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "75IWNz1U6sA2E6485MVZ9QAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 1252}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "57qQ1R3XdDePpd1R3nodLQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ynFllp5CrPbAGyx1JneoOgAAAAAAAAEq"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleRequest(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.Header, org.elasticsearch.transport.InboundMessage)", "offset": 58}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "PrioritizedEsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.run()", "offset": 6}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACipi9"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/io/multi.go"}, "function": {"name": "io.(*multiReader).Read"}, "line": {"number": 26}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgfc0"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mem_linux.go"}, "function": {"name": "runtime.sysUsed"}, "line": {"number": 130}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DLCbvuPzV5FNep-fYYK5KAAAAAAAAACE"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()", "offset": 26}, "line": {"number": 1061}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4J4WxzKvOwTg2PxoPnS9CQAAAAAAAAEJ"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.parseMediumName(int)", "offset": 35}, "line": {"number": 1768}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-z7k"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/gosigar@v0.14.2/sigar_linux_common.go"}, "function": {"name": "github.com/elastic/gosigar.(*ProcState).Get"}, "line": {"number": 209}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChHRd"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.schedule"}, "line": {"number": 3111}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y42fk-Ms4CyfeVg3LVDZpQAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "URLClassLoader.java"}, "function": {"name": "java.io.InputStream java.net.URLClassLoader.getResourceAsStream(java.lang.String)", "offset": 7}, "line": {"number": 292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1eJRaBH6BEAs6vwpOcsNnAAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.warnAboutSlowTaskIfNeeded(org.elasticsearch.core.TimeValue, java.lang.String, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder)", "offset": 9}, "line": {"number": 631}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACW0hr"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/gopkg.in/yaml.v2@v2.3.0/decode.go"}, "function": {"name": "gopkg.in/yaml%2ev2.(*parser).sequence"}, "line": {"number": 206}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YX6jd4K2CK6gVQH6DsXh-AAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "SSLAlgorithmConstraints.java"}, "function": {"name": "boolean sun.security.ssl.SSLAlgorithmConstraints.permits(java.util.Set, java.lang.String, java.security.AlgorithmParameters)", "offset": 18}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgp_t"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mranges.go"}, "function": {"name": "runtime.(*pageAlloc).scavengeRangeLocked"}, "line": {"number": 123}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qYsHCAcImIUjmmO1gdenlQAAAAAAAAE_"}} -{"Stackframe": {"file": {"name": "ForkJoinPool.java"}, "function": {"name": "void java.util.concurrent.ForkJoinPool.runWorker(java.util.concurrent.ForkJoinPool$WorkQueue)", "offset": 41}, "line": {"number": 1631}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL4gS"}} -{"Stackframe": {"function": {"name": "__close_fd"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cQdhEWDAdj5z0-tf6N74UwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACh0zS"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/sys_linux_amd64.s"}, "function": {"name": "runtime.sigtramp"}, "line": {"number": 364}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_ui1AAIySrYc7ZeYb73nFQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 2}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 275}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAChhvX"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/strings.go"}, "function": {"name": "github.com/elastic/gosigar/cgroup.ProcessCgroupPaths"}, "line": {"number": 299}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u4IYC5TN1ydgkWzSPfggOAAAAAAAAABS"}} -{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient)", "offset": 8}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-RAl"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.newEvent"}, "line": {"number": 249}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xrm08oJc5xqpM1VweLZNZwAAAAAAAABm"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.rest.RestHandler, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 23}, "line": {"number": 371}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACHfSr"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/reflect/value.go"}, "function": {"name": "reflect.Value.MapKeys"}, "line": {"number": 1218}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ULOVjhd5u9ORCGzZdeAHEQAAAAAAAAFK"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 330}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj"}} -{"Stackframe": {"function": {"name": "__softirqentry_text_start"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "T6T73qLaSYHKy04_O0cJkQAAAAAAAABZ"}} -{"Stackframe": {"file": {"name": "HttpChannel.java"}, "function": {"name": "void org.eclipse.jetty.server.HttpChannel.(org.eclipse.jetty.server.Connector, org.eclipse.jetty.server.HttpConfiguration, org.eclipse.jetty.io.EndPoint, org.eclipse.jetty.server.HttpTransport)", "offset": 31}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2B7DXV7RQApU6uBxIPxnnAAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$UnregisterChildTransportResponseHandler.handleResponse(org.elasticsearch.transport.TransportResponse)", "offset": 1}, "line": {"number": 1640}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAFy1k"}} -{"Stackframe": {"file": {"name": "github.com/cilium/ebpf@v0.9.1/map.go"}, "function": {"name": "github.com/cilium/ebpf.(*Map).Lookup"}, "line": {"number": 553}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WKOnV4dhtUKFY7wtM7-RyAAAAAAAAABR"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.updateDocs(org.apache.lucene.index.Term, java.util.List, org.apache.lucene.index.IndexWriter)", "offset": 8}, "line": {"number": 1440}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yy3Agye5NCtIdg4CP1bBiQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$$Lambda$6124+0x0000000802373718.close()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EYg23MDW9OugrMeHK86augAAAAAAAAFi"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.runTask(org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask)", "offset": 38}, "line": {"number": 407}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Gik95pZoMK4gpk3Bg_qiegAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "RestActions.java"}, "function": {"name": "org.elasticsearch.rest.BytesRestResponse org.elasticsearch.rest.action.RestActions.nodesResponse(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params, org.elasticsearch.action.support.nodes.BaseNodesResponse)", "offset": 3}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "c3EzDx8Ryaa8XN9zuZ2ajQAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "RestBulkAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.document.RestBulkAction.lambda$prepareRequest$0(org.elasticsearch.client.internal.node.NodeClient, org.elasticsearch.action.bulk.BulkRequest, org.elasticsearch.rest.RestChannel)"}, "line": {"number": 94}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gRMnqp8BzO8vF6IGZv8EFwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "RestUpdateByQueryAction.java"}, "function": {"name": "org.elasticsearch.rest.BaseRestHandler$RestChannelConsumer org.elasticsearch.index.reindex.RestUpdateByQueryAction.prepareRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.client.node.NodeClient)"}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yFBJd9cdNdUZI2XG5UyXfQAAAAAAAACU"}} -{"Stackframe": {"file": {"name": "FSTCompiler.java"}, "function": {"name": "void org.apache.lucene.util.fst.FSTCompiler.(org.apache.lucene.util.fst.FST$INPUT_TYPE, int, int, boolean, boolean, int, org.apache.lucene.util.fst.Outputs, boolean, int, float)", "offset": 59}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dBN2CKYaBpOUbIV1BspF0QAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction$$Lambda$6977+0x0000000801e5e000.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DZvlF3IdU-9TjIbcA47GUgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "CodecUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.CodecUtil.writeCRC(org.apache.lucene.store.IndexOutput)"}, "line": {"number": 569}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PtVMQQcIleOLw4oEyd-xxwAAAAAAAADt"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 29}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pCzfcBWmfuBy5Y8wBxn9kQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.ml.utils.InferenceProcessorInfoExtractor$$Lambda$7976+0x00000008022bdc50.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAADhBO4"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/mb/module/wrapper.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/mb/module.(*metricSetWrapper).run"}, "line": {"number": 199}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "java.util.Map org.elasticsearch.indices.IndicesService.statsByShard(org.elasticsearch.indices.IndicesService, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 5}, "line": {"number": 486}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WDifHywfLuQd8Yh-DIvScgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "ApiKeyService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.ApiKeyService.lambda$loadApiKeyAndValidateCredentials$15(java.lang.String, org.elasticsearch.xpack.security.authc.ApiKeyService$ApiKeyCredentials, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.authc.ApiKeyService$ApiKeyDoc)"}, "line": {"number": 668}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rVJnJ5WgkAAuxcvebNsXPwAAAAAAAACu"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "int io.netty.handler.ssl.SslHandler.unwrap(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, int)", "offset": 39}, "line": {"number": 1374}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1UTcnvrGL6DJ9fHh2aa2fAAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "SegmentDocValuesProducer.java"}, "function": {"name": "org.apache.lucene.index.SortedSetDocValues org.apache.lucene.index.SegmentDocValuesProducer.getSortedSet(org.apache.lucene.index.FieldInfo)", "offset": 2}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rVJnJ5WgkAAuxcvebNsXPwAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "int io.netty.handler.ssl.SslHandler.unwrap(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, int)", "offset": 9}, "line": {"number": 1344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbfV"}} -{"Stackframe": {"function": {"name": "vfs_getattr"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qlujNL7db72ZwWHkSPq1iAAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "NodeService.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.node.NodeService.stats(org.elasticsearch.action.admin.indices.stats.CommonStatsFlags, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean)", "offset": 2}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yp5XhnumIA1hOFfY9hkiEQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "org.apache.lucene.index.CodecReader org.apache.lucene.index.ReadersAndUpdates.getLatestReader()", "offset": 2}, "line": {"number": 235}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xeLkxlCJbD-jtS5CPDsFnwAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "void co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.dispatchEvent(co.elastic.apm.agent.report.ReportingEvent, long, boolean)", "offset": 15}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eSIi3bkabA8CnVTS1s4XRwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "boolean java.lang.String.equals(java.lang.Object)"}, "line": {"number": 1833}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "27T_d9_NZvjzOCNXkPMeLQAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.security.authc.RealmsAuthenticator.getRealmList(org.elasticsearch.xpack.security.authc.Authenticator$Context, java.lang.String)", "offset": 2}, "line": {"number": 336}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DsmnB-99lpR3jSBsZQO0JQAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "byte[] org.elasticsearch.xpack.core.security.authc.support.BCrypt.crypt_raw(byte[], byte[], int, int[])", "offset": 11}, "line": {"number": 1563}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "p3TMvdaUbW_u3mETl1j4jwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "org.elasticsearch.index.shard.IndexShard org.elasticsearch.action.support.replication.TransportReplicationAction.access$000(org.elasticsearch.action.support.replication.TransportReplicationAction, org.elasticsearch.index.shard.ShardId)"}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DSOoGD8SRS6OmwWTUaeXgwAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "SearchSourceBuilder.java"}, "function": {"name": "org.elasticsearch.search.builder.SearchSourceBuilder org.elasticsearch.search.builder.SearchSourceBuilder.rewrite(org.elasticsearch.index.query.QueryRewriteContext)", "offset": 4}, "line": {"number": 1053}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fEf2U4TLcZ6jkTz3kXzr0AAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.maybeLookupRunAsUser(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "J4eQqgwFH8hGziiVTbtiYwAAAAAAAABb"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.merge(org.apache.lucene.index.MergeState)", "offset": 10}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ozR7rHeowembmV8tqrkzHQAAAAAAAAF_"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.startCommit(org.apache.lucene.index.SegmentInfos)", "offset": 55}, "line": {"number": 5086}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4YjK3XUf-x_amsWvbAE40AAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "BoolQueryBuilder.java"}, "function": {"name": "boolean org.elasticsearch.index.query.BoolQueryBuilder.rewriteClauses(org.elasticsearch.index.query.QueryRewriteContext, java.util.List, java.util.function.Consumer)", "offset": 2}, "line": {"number": 402}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dB8rpvXeU-U7j8zoRqc_lgAAAAAAAAFl"}} -{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 39}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gs-Dp-bkHGP2EKd53eqOEgAAAAAAAAB-"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$MetadataIndexWriter.prepareCommit(java.lang.String, long, long, org.elasticsearch.Version)", "offset": 10}, "line": {"number": 654}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4PqH4j7efYkP_yazDFqQFwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.executePhase(org.elasticsearch.action.search.SearchPhase)"}, "line": {"number": 469}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GfR-G0A6W4tT6AihrYq3cQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.tasks.TaskManager$1$$Lambda$6632+0x000000080241a4e8.close()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Uls0JHJ0eURv_ZZmvf5vJAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "AppenderControl.java"}, "function": {"name": "void org.apache.logging.log4j.core.config.AppenderControl.callAppender(org.apache.logging.log4j.core.LogEvent)", "offset": 3}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OVyw8gVqzTShmjN9h4q85gAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "void org.elasticsearch.threadpool.ThreadPool$ThreadedRunnable.run()"}, "line": {"number": 571}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m2ILrEK1YmDxo9niRj31tgAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient.execute(com.amazonaws.Request, com.amazonaws.http.HttpResponseHandler, com.amazonaws.http.HttpResponseHandler, com.amazonaws.http.ExecutionContext, com.amazonaws.RequestConfig)", "offset": 10}, "line": {"number": 544}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASfO6"}} -{"Stackframe": {"function": {"name": "apparmor_task_kill"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OVfypgynaMZkEy3Zi3BjlQAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "RoutingTable.java"}, "function": {"name": "org.elasticsearch.cluster.routing.IndexShardRoutingTable org.elasticsearch.cluster.routing.RoutingTable.shardRoutingTable(org.elasticsearch.index.shard.ShardId)", "offset": 4}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DCyFvnkzok7lK265t-00UQAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "IntroSorter.java"}, "function": {"name": "void org.apache.lucene.util.IntroSorter.sort(int, int)", "offset": 1}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4_Wu3cP_1KUTQF00Htx73gAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.writeAuthToContext(org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 17}, "line": {"number": 696}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yHxJa10zF8jCmhZDUlRioQAAAAAAAACJ"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.consumeToken(org.elasticsearch.xpack.core.security.authc.AuthenticationToken)", "offset": 67}, "line": {"number": 504}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEM4X"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/malloc.go"}, "function": {"name": "runtime.mallocgc"}, "line": {"number": 1157}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LG5NyGjVtdJtfQ5dmd2VGwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Thread.java"}, "function": {"name": "void java.lang.Thread.yield()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fClDzFj1dlODSHJedjtnCgAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard$$Lambda$6950+0x0000000801d3a468.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0nIutoZyVIRyZOb9YWx3UgAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "TopBucketBuilder.java"}, "function": {"name": "java.util.List org.elasticsearch.search.aggregations.TopBucketBuilder$PriorityQueueTopBucketBuilder.build()", "offset": 4}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "prbfaPuvU_n-ucbpjQxQ_AAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.IndexWriter.lambda$getReader$0(long, java.util.Map, org.apache.lucene.index.SegmentCommitInfo)", "offset": 3}, "line": {"number": 536}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jDWb-JzykmDZwFq_yGRkXQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "threading.py"}, "function": {"name": "_bootstrap", "offset": 14}, "line": {"number": 884}, "source": {"type": 2}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACG-k"}} -{"Stackframe": {"function": {"name": "native_flush_tlb_others"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YNvLePk3bv25BUHN3KzEXQAAAAAAAACh"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 30}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8I3EtewC4dcEYoiRpxzXpgAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "SSLSocketInputRecord.java"}, "function": {"name": "int sun.security.ssl.SSLSocketInputRecord.bytesInCompletePacket()", "offset": 3}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMh29"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/module/system/process_summary/process_summary.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/module/system/process_summary.(*MetricSet).Fetch"}, "line": {"number": 119}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LD6UzhZ_oYl4ljutvvYPEgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$lookForExistingAuthentication$8(java.util.function.Consumer, org.elasticsearch.xpack.core.security.authc.Authentication)"}, "line": {"number": 414}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi_Y9"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file_unix.go"}, "function": {"name": "os.openFileNolog"}, "line": {"number": 226}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8rqvEU9OEIIP3f56OU7ZnAAAAAAAAABO"}} -{"Stackframe": {"file": {"name": "NumericDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.NumericDocValuesWriter.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.DocValuesConsumer)", "offset": 12}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_ikMhsFvsridclqqGNKU9gAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "AbstractLogger.java"}, "function": {"name": "void org.apache.logging.log4j.spi.AbstractLogger.log(org.apache.logging.log4j.Level, org.apache.logging.log4j.message.Message)"}, "line": {"number": 1613}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "45C-Q8d2gQJCMIvUacUWRQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ReaderBasedJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.ReaderBasedJsonParser.nextToken()", "offset": 1}, "line": {"number": 663}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L-_tQCaPRoXtazKap89hsgAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 2}, "line": {"number": 941}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "laj3qCsdTqFe3GzncSEQ0wAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.reindex.ScrollableHitSource$$Lambda$6606+0x0000000801cd2a30.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD5uf-"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/datastore/datastore.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/datastore.(*boltBucket).Store.func1"}, "line": {"number": 144}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAVth"}} -{"Stackframe": {"function": {"name": "au_do_open"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Mo8MRZcTTA5MSH5mIc8c7wAAAAAAAABi"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.updateChildren()", "offset": 18}, "line": {"number": 247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LZh55WiQA4pYUO2PyDs0LQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "OutputStreamIndexOutput.java"}, "function": {"name": "void org.apache.lucene.store.OutputStreamIndexOutput.writeBytes(byte[], int, int)"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportShardRefreshAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction.shardOperationOnReplica(org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 28}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-1XO"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/gosigar@v0.14.2/sigar_linux_common.go"}, "function": {"name": "github.com/elastic/gosigar.getUIDs"}, "line": {"number": 445}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACN5Qm"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/syntax/prog.go"}, "function": {"name": "regexp.(*Regexp).tryBacktrack"}, "line": {"number": 193}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HClQhgDqheRz8dbmDc8dxAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction$$Lambda$6711+0x0000000801cf94a8.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "U3zFVJqAk_6RIGxkrHaHegAAAAAAAADY"}} -{"Stackframe": {"file": {"name": "SSLCipher.java"}, "function": {"name": "int sun.security.ssl.SSLCipher$T13GcmWriteCipherGenerator$GcmWriteCipher.encrypt(byte, java.nio.ByteBuffer)", "offset": 44}, "line": {"number": 2082}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "es2NwpstvkIN6VhWmzkTBQAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "DecimalFormatSymbolsProviderImpl.java"}, "function": {"name": "java.text.DecimalFormatSymbols sun.util.locale.provider.DecimalFormatSymbolsProviderImpl.getInstance(java.util.Locale)", "offset": 4}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K4q5bjj7FsLI8bLo_hB_IAAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$RunBeforeActionListener.onResponse(java.lang.Object)", "offset": 5}, "line": {"number": 389}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChsdp"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/netpoll.go"}, "function": {"name": "internal/poll.runtime_pollWait"}, "line": {"number": 302}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_56OZ5ZdGG3mX9wz1zNHYgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "LockSupport.java"}, "function": {"name": "void java.util.concurrent.locks.LockSupport.park()", "offset": 3}, "line": {"number": 371}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hQvt9SGcnRC8tVEB_Tur9QAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "AbstractIterator.java"}, "function": {"name": "boolean com.carrotsearch.hppc.AbstractIterator.hasNext()", "offset": 2}, "line": {"number": 30}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgPo"}} -{"Stackframe": {"function": {"name": "kmem_cache_alloc"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-gcPk4qV9SANWTcSsCqOPwAAAAAAAAEJ"}} -{"Stackframe": {"file": {"name": "WatcherLifeCycleService.java"}, "function": {"name": "void org.elasticsearch.xpack.watcher.WatcherLifeCycleService.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 58}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChFbZ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.stoplockedm"}, "line": {"number": 753}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h9JxRYZ-Y8EVIiI8sDoSGAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.implRead(byte[], int, int)", "offset": 1}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1XS2aFbrMvbrgkTeGP6LGgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "DocumentMapper.java"}, "function": {"name": "org.elasticsearch.index.mapper.ParsedDocument org.elasticsearch.index.mapper.DocumentMapper.parse(org.elasticsearch.index.mapper.SourceToParse)"}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Urj27ZFZeZ-3lsT-8mj4RAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Setting$$Lambda$33+0x0000000800c1dda0.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WlXNhw3AYUWx-PnwHDU2vAAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "boolean java.lang.String.equalsIgnoreCase(java.lang.String)", "offset": 3}, "line": {"number": 1974}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pDmevRXuPcE63RgyWWd9hwAAAAAAAAC0"}} -{"Stackframe": {"file": {"name": "TimeseriesLifecycleType.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.TimeseriesLifecycleType.getOrderedActions(org.elasticsearch.xpack.core.ilm.Phase)", "offset": 4}, "line": {"number": 137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Al_h9gC68463XnWmby4-QgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.commit(long, long, org.elasticsearch.Version)", "offset": 1}, "line": {"number": 1151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgjOk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgc.go"}, "function": {"name": "runtime.gcMark"}, "line": {"number": 1376}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RrirhtozDrKAAydohpmvZgAAAAAAAABX"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$MetadataIndexWriter.prepareCommit(java.lang.String, long, long)", "offset": 6}, "line": {"number": 526}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OBr97qUzqwJUSLJ5h_ag7QAAAAAAAAFq"}} -{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "void org.elasticsearch.cluster.metadata.Metadata$Builder.toXContent(org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 39}, "line": {"number": 2555}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Hey8fifUJOv2rbW7np0VDwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "RestBuilderListener.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestBuilderListener.buildResponse(java.lang.Object)"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACng1n"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).object"}, "line": {"number": 752}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cFSUR7JR40wEvhb1_RE-WAAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "boolean org.elasticsearch.index.translog.Translog.ensureSynced(java.util.stream.Stream)", "offset": 4}, "line": {"number": 872}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pz26RZIIszjYMjtzkRg4ogAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.doAddSortedField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 42}, "line": {"number": 541}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-Q25YN3mx81c5h9FyskSVQAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.finishAuthentication(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 352}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACguwT"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/conditions/has_fields.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/conditions.HasFields.Check"}, "line": {"number": 33}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "P0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "Iterable.java"}, "function": {"name": "void java.lang.Iterable.forEach(java.util.function.Consumer)", "offset": 2}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ihprad0bkU-u2IU9StodIgAAAAAAAAFX"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.applyChanges(org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState, java.lang.String, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder)", "offset": 32}, "line": {"number": 504}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIbSV"}} -{"Stackframe": {"function": {"name": "filemap_map_pages"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "osZ_HzuZu659HcV8_fdWogAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ReaderPool.java"}, "function": {"name": "boolean org.apache.lucene.index.ReaderPool.commit(org.apache.lucene.index.SegmentInfos)"}, "line": {"number": 321}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f9rhWt1EzalXyXMX3OGNPgAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendResponse(org.elasticsearch.Version, org.elasticsearch.transport.TcpChannel, long, java.lang.String, org.elasticsearch.transport.TransportResponse, org.elasticsearch.transport.Compression$Scheme, boolean)", "offset": 9}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-G-jKyr5A3MRrC_vNgLsBAAAAAAAAAA8"}} -{"Stackframe": {"file": {"name": "Lucene80NormsConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80NormsConsumer.addNormsField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.NormsProducer)", "offset": 4}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 14}, "line": {"number": 388}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7y5feDZCfxwthGiPIaTFFgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.xcontent.json.JsonXContentParser.currentName()"}, "line": {"number": 61}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ABipyEawAgbPQx-X36vFuQAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "SocketChannelImpl.java"}, "function": {"name": "int sun.nio.ch.SocketChannelImpl.write(java.nio.ByteBuffer)", "offset": 8}, "line": {"number": 532}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.maybeMerge(org.apache.lucene.index.MergePolicy, org.apache.lucene.index.MergeTrigger, int)", "offset": 1}, "line": {"number": 2287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ8R5"}} -{"Stackframe": {"function": {"name": "__do_sys_madvise"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9IQduOGHR91uLopyhByioAAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "StreamEncoder.java"}, "function": {"name": "void sun.nio.cs.StreamEncoder.implWrite(java.nio.CharBuffer)", "offset": 5}, "line": {"number": 292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.resolveAuthorizationInfo(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vfb9aCFliLFmJCtvbLn8hAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "ApmServerConfigurationSource.java"}, "function": {"name": "java.lang.String co.elastic.apm.agent.configuration.ApmServerConfigurationSource.access$100(co.elastic.apm.agent.configuration.ApmServerConfigurationSource, org.stagemonitor.configuration.ConfigurationRegistry, java.net.HttpURLConnection)"}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "W0KRKkGodsQWw5SQhLGc1AAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "FileChannel.java"}, "function": {"name": "java.nio.channels.FileChannel java.nio.channels.FileChannel.open(java.nio.file.Path, java.nio.file.OpenOption[])", "offset": 6}, "line": {"number": 345}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FJWh2TWpjKPS8F7va_-E8QAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "GHASH.java"}, "function": {"name": "int com.sun.crypto.provider.GHASH.update(java.nio.ByteBuffer, int)", "offset": 12}, "line": {"number": 198}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BrUFbWJQXA38LKOgrDwJigAAAAAAAABJ"}} -{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 17}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0f5"}} -{"Stackframe": {"function": {"name": "d_hash_and_lookup"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gT8nUPqqRrRw5ZClYoJx6gAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wJqaBDaMzd7bA1sXw38hRwAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "FoundZooKeeperFilter.scala"}, "function": {"name": "ch.qos.logback.core.spi.FilterReply no.found.logging.FoundZooKeeperFilter.decide(org.slf4j.Marker, ch.qos.logback.classic.Logger, ch.qos.logback.classic.Level, java.lang.String, java.lang.Object[], java.lang.Throwable)"}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BlsD0vwi6JMAfkvyXFogjwAAAAAAAACJ"}} -{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 16}, "line": {"number": 521}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5pJbc4ld-dqU0cbENH5UewAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "ResourceLeakDetector.java"}, "function": {"name": "io.netty.util.ResourceLeakDetector$DefaultResourceLeak io.netty.util.ResourceLeakDetector.track0(java.lang.Object)", "offset": 8}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_n66vMwdTIxqmrxb925TNgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "CompressionMode.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressionMode$LZ4FastCompressor.compress(byte[], int, int, org.apache.lucene.store.DataOutput)"}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RrX6FPh752CbnoVoAqm8RAAAAAAAAABi"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.unknownValue(java.lang.Object, boolean)", "offset": 15}, "line": {"number": 824}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sNM_x7UckJxkEvzk5airYwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.channels.SeekableByteChannel java.nio.file.Files.newByteChannel(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])"}, "line": {"number": 375}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFVZ1"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/symtab.go"}, "function": {"name": "runtime.pcvalue"}, "line": {"number": 769}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sS7jth5JTt44kOBPBp-PqQAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5663+0x0000000801b168f0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFnL5"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.goready.func1"}, "line": {"number": 318}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADHZDa"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/actions/rename.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/actions.(*renameFields).Run"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzS"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/asm_amd64.s"}, "function": {"name": "runtime.mcall"}, "line": {"number": 319}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Cl1kgGCrmfrEoupeT-su1wAAAAAAAABH"}} -{"Stackframe": {"file": {"name": "FileSystemProvider.java"}, "function": {"name": "java.io.OutputStream java.nio.file.spi.FileSystemProvider.newOutputStream(java.nio.file.Path, java.nio.file.OpenOption[])", "offset": 9}, "line": {"number": 480}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mm7pA8Vo6frfLprU_GjPaQAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "FieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.FieldsConsumer.merge(org.apache.lucene.index.MergeState, org.apache.lucene.codecs.NormsProducer)", "offset": 9}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "r6ZigwkDaNPkVLYkDaTfYAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SegmentInfo.java"}, "function": {"name": "int org.apache.lucene.index.SegmentInfo.maxDoc()"}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vPYk0SjnlrT8lBtv8AT1zwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SearchTransportService.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchTransportService.lambda$registerRequestHandler$1(org.elasticsearch.search.SearchService, org.elasticsearch.action.search.SearchTransportService$ScrollFreeContextRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 282}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MRWXwWKl_fPnxgwH09TqSwAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "void org.elasticsearch.search.internal.ContextIndexSearcher.searchLeaf(org.apache.lucene.index.LeafReaderContext, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 12}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tMFQonwMMVIME8GAL5Zm3QAAAAAAAADS"}} -{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 35}, "line": {"number": 308}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JDeoMDAF4zRp8m9fg1ttGQAAAAAAAACB"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.authenticateAsync(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 29}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k2Vd7cm7l6vxlSy0gXOaPwAAAAAAAACm"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "void java.io.FilePermission.init(int)", "offset": 34}, "line": {"number": 347}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XENWJPYGUyfafb6FgvyauQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "FreqProxTermsWriterPerField.java"}, "function": {"name": "boolean org.apache.lucene.index.FreqProxTermsWriterPerField.start(org.apache.lucene.index.IndexableField, boolean)"}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKay_"}} -{"Stackframe": {"function": {"name": "kernel_poison_pages"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "be8zzWLemlQSVhalewd_pwAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "IngestMetadata.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.ingest.IngestMetadata.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 2}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wf9mrqZKrjw_yhc1kSPntQAAAAAAAACE"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.readIntoNativeBuffer(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 18}, "line": {"number": 339}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAxNn"}} -{"Stackframe": {"function": {"name": "__x64_sys_rt_sigreturn"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIZUS"}} -{"Stackframe": {"function": {"name": "__filemap_fdatawait_range"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "g5HW81gVegsp2uHOoheefQAAAAAAAAB1"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "org.elasticsearch.gateway.PersistedClusterStateService$Writer$WriterStats org.elasticsearch.gateway.PersistedClusterStateService$Writer.updateMetadata(org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.cluster.metadata.Metadata)", "offset": 8}, "line": {"number": 647}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IgoUEL7HFiDxU9Re7MPrtAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "int java.util.Collections$SynchronizedCollection.size()"}, "line": {"number": 2081}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5j2bttkvltKbwfcKsqCLqAAAAAAAAAEB"}} -{"Stackframe": {"file": {"name": "TransportContext.java"}, "function": {"name": "void sun.security.ssl.TransportContext.dispatch(sun.security.ssl.Plaintext)", "offset": 38}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RrX6FPh752CbnoVoAqm8RAAAAAAAAABO"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.unknownValue(java.lang.Object, boolean)", "offset": 13}, "line": {"number": 822}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fcwlJZe3vp7o1kWId0rqugAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.util.Set java.util.Collections$UnmodifiableMap.entrySet()", "offset": 1}, "line": {"number": 1497}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UUg1eX6XD3kMg9XTzAxNlgAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "java.net.HttpURLConnection co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.startRequest(java.lang.String)", "offset": 6}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yGP4qHVV9gP7oOP9pntYfAAAAAAAAACI"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "void sun.nio.fs.UnixFileSystemProvider.checkAccess(java.nio.file.Path, java.nio.file.AccessMode[])", "offset": 21}, "line": {"number": 295}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACoA6y"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/pkg/errors@v0.9.1/errors.go"}, "function": {"name": "github.com/pkg/errors.(*withMessage).Error"}, "line": {"number": 244}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HVhQ434ZUWqRQ1_LQX_XpwAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "StreamSpliterators.java"}, "function": {"name": "boolean java.util.stream.StreamSpliterators$AbstractWrappingSpliterator.doAdvance()", "offset": 8}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nLb8frZOVnOUSlDo45we-gAAAAAAAABD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 67}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AAAAAAAAV4sAAAAAAAAAHfzYObTVs5Lv"}} -{"Stackframe": {"function": {"name": "resolve_virtual_call"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eaxqIXl3aqTPUyYN_6PKBgAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "AbstractWeakConcurrentMap.java"}, "function": {"name": "void com.blogspot.mydailyjava.weaklockfree.AbstractWeakConcurrentMap.expungeStaleEntries()", "offset": 1}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pxHkQ9M1dNDXsuZ3PuZiaQAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.run()", "offset": 6}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AzxlhtMMySYrabepp4O8EgAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.executeRequest(org.elasticsearch.action.search.SearchTask, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.search.TransportSearchAction$SearchAsyncActionProvider, org.elasticsearch.action.ActionListener)", "offset": 110}, "line": {"number": 478}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-IkF2lJObgb8Mzx62fBshAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.(org.elasticsearch.common.util.concurrent.ThreadContext, java.lang.Runnable, org.elasticsearch.common.util.concurrent.ThreadContext$1)"}, "line": {"number": 660}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "siCTJzrkNS8HPcHNBHnmewAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "NumberFormatException.java"}, "function": {"name": "void java.lang.NumberFormatException.(java.lang.String)"}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QE1C6oZLYffge09QUEmCwQAAAAAAAADJ"}} -{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 42}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NDGUkTNzYliplrbeoxRj7QAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "PointRangeQuery.java"}, "function": {"name": "void org.apache.lucene.search.PointRangeQuery$1$1.grow(int)"}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnfYl"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.indirect"}, "line": {"number": 425}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "co4kdxqTWMp4ZBVBAoUGKQAAAAAAAABN"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lookForExistingAuthentication(java.util.function.Consumer)", "offset": 15}, "line": {"number": 425}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5m5J32z338iItYAy0IlfPgAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Collection org.elasticsearch.common.io.stream.StreamInput.readCollection(org.elasticsearch.common.io.stream.Writeable$Reader, java.util.function.IntFunction, java.util.Collection)", "offset": 6}, "line": {"number": 1254}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGImT"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/syscall_unix.go"}, "function": {"name": "syscall.Recvfrom"}, "line": {"number": 284}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ctmMOnzOFMQjuPFQFR1IjgAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "UnixDirectoryStream.java"}, "function": {"name": "java.nio.file.Path sun.nio.fs.UnixDirectoryStream$UnixDirectoryIterator.readNextEntry()", "offset": 9}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OMiVtBlQQcibD2YBJFlM2AAAAAAAAACD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 11}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZXguWb1db5OZ-xUb0e4ZqQAAAAAAAAM2"}} -{"Stackframe": {"file": {"name": "FloatingDecimal.java"}, "function": {"name": "jdk.internal.math.FloatingDecimal$ASCIIToBinaryConverter jdk.internal.math.FloatingDecimal.readJavaFormatString(java.lang.String)", "offset": 223}, "line": {"number": 2054}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PHOUiNkmrb6lymlNuXSU6gAAAAAAAABC"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.fetch.ScrollQueryFetchSearchResult org.elasticsearch.search.SearchService.lambda$executeFetchPhase$6(org.elasticsearch.search.internal.LegacyReaderContext, org.elasticsearch.action.search.SearchShardTask, org.elasticsearch.search.internal.InternalScrollSearchRequest)", "offset": 8}, "line": {"number": 765}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xfK7mU49uvf767hhXL1_ZQAAAAAAAACE"}} -{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "void org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction.refreshAndFinish(java.util.List, java.util.List, boolean)", "offset": 7}, "line": {"number": 528}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", "offset": 20}, "line": {"number": 1136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WwMMb3ohLb_rKhgSQf418gAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "HttpObjectAggregator.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpObjectAggregator.aggregate(io.netty.buffer.ByteBufHolder, io.netty.buffer.ByteBufHolder)"}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XjbeTJfqrorYtlzkHQBT0AAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "TranslogWriter.java"}, "function": {"name": "void org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint(java.nio.channels.FileChannel, java.nio.file.Path, org.elasticsearch.index.translog.Checkpoint)"}, "line": {"number": 514}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACinct"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/sort/zfuncversion.go"}, "function": {"name": "sort.stable_func"}, "line": {"number": 172}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yyaOFo6onf9R0s4GNfBLeAAAAAAAAAB0"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.indexPoint(int, org.apache.lucene.index.DefaultIndexingChain$PerField, org.apache.lucene.index.IndexableField)", "offset": 14}, "line": {"number": 608}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DAUA7GSw6Ke6rbTnHSbHTAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "org.elasticsearch.transport.TransportRequest org.elasticsearch.transport.RequestHandlerRegistry.newRequest(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_zxyi-wgtH_Wz8ut-WKY9wAAAAAAAAA_"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Setting.innerGetRaw(org.elasticsearch.common.settings.Settings)", "offset": 4}, "line": {"number": 550}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DbSG9xbs7jnAEiHiVrKb1AAAAAAAAABn"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.tryAllHandlers(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 21}, "line": {"number": 386}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TXS-M7XDD4DedgFr7B7PEgAAAAAAAABT"}} -{"Stackframe": {"file": {"name": "BytesStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.BytesStreamOutput.writeBytes(byte[], int, int)", "offset": 13}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9_kYMkAwrJL1hFiE7tTalwAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "Lucene90PostingsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90PostingsWriter.close()", "offset": 14}, "line": {"number": 529}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H6yPOYEnXV1gkHCNY0CftwAAAAAAAADh"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter.(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.codecs.PostingsWriterBase, int, int)", "offset": 37}, "line": {"number": 262}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9PEEvj8uQU3NK5CAFA7F9AAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$5917.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "p4O5LDI-aR1e3AL1YpnWyAAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "MergePolicy.java"}, "function": {"name": "void org.apache.lucene.index.MergePolicy$OneMerge.close(boolean, boolean, org.apache.lucene.util.IOUtils$IOConsumer)", "offset": 8}, "line": {"number": 278}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pH8Xx_BhKNPHo1081a8tVQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.rest.RestController$ResourceHandlingHttpChannel.newBuilder()"}, "line": {"number": 706}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zgPOLagbbKE8s9-BYiE3XgAAAAAAAADH"}} -{"Stackframe": {"file": {"name": "NodeService.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.info.NodeInfo org.elasticsearch.node.NodeService.info(boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean)", "offset": 9}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 7}, "line": {"number": 547}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACzAHw"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/reflect/value.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.followPointer"}, "line": {"number": 148}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LGU1cv44dOYAfRJb2zZUygAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "IndexingOperationListener.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexingOperationListener$CompositeListener.postIndex(org.elasticsearch.index.shard.ShardId, org.elasticsearch.index.engine.Engine$Index, org.elasticsearch.index.engine.Engine$IndexResult)", "offset": 3}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CY166VCeQEiftRvkym4zdwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "java.lang.Object org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction$1.read(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YMf1vN4Xj82X8azesbKqWQAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 3}, "line": {"number": 629}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bEss39af3XvhM0266Ejx8QAAAAAAAABo"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 104}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e6kOmtq4UMf8z_9CSSuPhwAAAAAAAABU"}} -{"Stackframe": {"file": {"name": "TopBucketBuilder.java"}, "function": {"name": "java.util.List org.elasticsearch.search.aggregations.TopBucketBuilder$BufferingTopBucketBuilder.build()", "offset": 6}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi_hP"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file_unix.go"}, "function": {"name": "os.(*file).close"}, "line": {"number": 256}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gsKik-dyH5F_XwvFqaDorgAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "PForUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.PForUtil.decodeAndPrefixSum(org.apache.lucene.store.DataInput, long, long[])", "offset": 7}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAADgb1t"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_docker_metadata/add_docker_metadata.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_docker_metadata.(*addDockerMetadata).Run"}, "line": {"number": 203}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lJ9U-bOLpOdP9uh9E2s7UgAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "IndicesPermission.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authz.permission.IndicesPermission$Group.checkIndex(java.lang.String)", "offset": 1}, "line": {"number": 671}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R7Hj9yPeT2EDyEr2K8ONTgAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter$$Lambda$4680.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-mn2"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/blkio.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.blkioThrottle"}, "line": {"number": 131}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABCp3"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.exitsyscallfast.func1"}, "line": {"number": 3869}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NgmlLhxvERG4WTGcweKAVwAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "AbstractLogger.java"}, "function": {"name": "void org.apache.logging.log4j.spi.AbstractLogger.log(org.apache.logging.log4j.Level, org.apache.logging.log4j.message.Message)"}, "line": {"number": 1622}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RC_KrztF4TVSedblwPXAsgAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.json.JsonXContentGenerator.writeEndObject()", "offset": 6}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yG37FB0KxAHWwRacRE0LMwAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "void sun.nio.ch.FileChannelImpl$Unmapper.unmap()", "offset": 2}, "line": {"number": 1081}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uIpQ1uRexMdnpWaro5896wAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "StoredFieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.index.StoredFieldsConsumer.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)", "offset": 2}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEusr"}} -{"Stackframe": {"function": {"name": "hrtimer_init_sleeper"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nD25wdhZLWE2nkSvAA770QAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Reference.java"}, "function": {"name": "void java.lang.ref.Reference.clear0()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lrNuGOqZ1W2gPcoSPK5FRwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "BaseRestHandler.java"}, "function": {"name": "void org.elasticsearch.rest.BaseRestHandler.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.internal.node.NodeClient)"}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9J54Rq68TS7B5VvAGA76dQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "int io.netty.channel.nio.NioEventLoop.select(long)", "offset": 1}, "line": {"number": 810}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iZg5QETm-DfAeWtvNobLmQAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "DataStream.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.cluster.metadata.DataStream.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 3}, "line": {"number": 610}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJp2k"}} -{"Stackframe": {"function": {"name": "__walk_page_range"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qv2lArN7QPfX_8vxJbcbpgAAAAAAAAFa"}} -{"Stackframe": {"file": {"name": "IndicesAliasesRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.IndicesAliasesRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 70}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7zPKGV-eM0z3BYd8xdD0NwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.addSortedNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)"}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACL5bs"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/stream.go"}, "function": {"name": "encoding/json.(*Decoder).refill"}, "line": {"number": 165}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hAAL8LO2BH6yQB61J_fHrQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "BufferedIndexInput.java"}, "function": {"name": "void org.apache.lucene.store.BufferedIndexInput.readBytes(byte[], int, int)"}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cbl91mRg6g3lnUBctWVUVAAAAAAAAADi"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 226}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7Mpv8-OJrOs12MgQuVgEZwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "java.lang.String[] java.util.regex.Pattern.split(java.lang.CharSequence)"}, "line": {"number": 1350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADB-g3"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/conditions/matcher.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/conditions.Matcher.Check"}, "line": {"number": 100}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAAFMT"}} -{"Stackframe": {"file": {"name": "runtime/alg.go"}, "function": {"name": "runtime.nilinterequal"}, "line": {"number": 241}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXub"}} -{"Stackframe": {"function": {"name": "__fput"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADGbB"}} -{"Stackframe": {"function": {"name": "prepare_creds"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x6EX384tUENsFfsbnVkfwQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$2.doRun()"}, "line": {"number": 240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "asfjD62HMHzrp-TIN-8V-gAAAAAAAABB"}} -{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "boolean java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.offer(java.lang.Runnable)", "offset": 11}, "line": {"number": 1107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7uXfXu1sz-tQaHmopCX9sAAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "java.lang.String org.elasticsearch.xcontent.json.JsonXContentParser.text()", "offset": 1}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgytE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mpagealloc.go"}, "function": {"name": "runtime.pallocSum.end"}, "line": {"number": 968}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fKGMWjXtJBieYoVCFNENrgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "IntegerPolynomial.java"}, "function": {"name": "sun.security.util.math.intpoly.IntegerPolynomial$MutableElement sun.security.util.math.intpoly.IntegerPolynomial$MutableElement.setSquare()"}, "line": {"number": 714}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-LFk"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/auparse.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.extractKeyValuePairs"}, "line": {"number": 294}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S0dOLAZr8QGkbiq1JR6IbwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "void sun.security.ssl.SSLSocketImpl.setSoTimeout(int)"}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFpHk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map.go"}, "function": {"name": "reflect.makemap"}, "line": {"number": 1304}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ychTAfEOBJMLCeyZEQuJMgAAAAAAAACg"}} -{"Stackframe": {"file": {"name": "JvmInfo.java"}, "function": {"name": "void org.elasticsearch.monitor.jvm.JvmInfo.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 20}, "line": {"number": 293}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JnDY6WP1Y1s1iCjgn5zoPwAAAAAAAAEq"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$DeleteResult org.elasticsearch.index.shard.IndexShard.applyDeleteOperation(org.elasticsearch.index.engine.Engine, long, long, long, java.lang.String, java.lang.String, org.elasticsearch.index.VersionType, long, long, org.elasticsearch.index.engine.Engine$Operation$Origin)", "offset": 44}, "line": {"number": 1219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHZdw"}} -{"Stackframe": {"function": {"name": "__do_sys_bpf"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEuxw"}} -{"Stackframe": {"function": {"name": "hrtimer_try_to_cancel"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tlnK3_wdqHiODNJ7-wRpAQAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "StoredFieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.index.StoredFieldsConsumer.startDocument(int)", "offset": 1}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SbdWgpvL6xLkDpUt_yoH7QAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ChannelOutputStream.java"}, "function": {"name": "void sun.nio.ch.ChannelOutputStream.close()"}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-8Ua"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/process/process.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/process.(*Stats).getProcessEvent"}, "line": {"number": 312}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F-UVz7qWVUzScRv1FhkbzQAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 3}, "line": {"number": 221}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Fl55xnlLSMqnve6foRfHTAAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$WriteReplicaResult.runPostReplicaActions(org.elasticsearch.action.ActionListener)", "offset": 13}, "line": {"number": 379}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L5WXZxht1BkMcaHlA7BeFgAAAAAAAABo"}} -{"Stackframe": {"file": {"name": "FollowersChecker.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.FollowersChecker.handleFollowerCheck(org.elasticsearch.cluster.coordination.FollowersChecker$FollowerCheckRequest, org.elasticsearch.action.ActionListener)", "offset": 13}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASgiP"}} -{"Stackframe": {"function": {"name": "aa_str_perms"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$1.onResponse(java.lang.Object)"}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3c5m8cD9re2vtvvwMoBnFAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "int com.fasterxml.jackson.core.json.UTF8StreamJsonParser._skipWS()"}, "line": {"number": 2899}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iN7YDy9yd7ARVJltHW-2lgAAAAAAAADE"}} -{"Stackframe": {"file": {"name": "BlobStoreIndexShardSnapshots.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 17}, "line": {"number": 224}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9JTwb1xrnBs0wRDjaFu6OQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AbstractBaseReindexRestHandler.java"}, "function": {"name": "org.elasticsearch.rest.BaseRestHandler$RestChannelConsumer org.elasticsearch.index.reindex.AbstractBaseReindexRestHandler.doPrepareRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.client.node.NodeClient, boolean, boolean)"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UUg1eX6XD3kMg9XTzAxNlgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "java.net.HttpURLConnection co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.startRequest(java.lang.String)"}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pn5qfmUJVVaxacBhAps3IQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "DirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.DirectoryReader.openIfChanged(org.apache.lucene.index.DirectoryReader)"}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACqYdJ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/path/filepath/match.go"}, "function": {"name": "crypto/x509.(*CertPool).cert"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JPIp3Ldr9CKvPQbh-s8AhAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.tryApply(org.apache.lucene.index.FrozenBufferedUpdates)", "offset": 2}, "line": {"number": 6036}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Z53eDlI8CoDip7DSk_R4-wAAAAAAAAKf"}} -{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "boolean org.elasticsearch.search.query.QueryPhase.executeInternal(org.elasticsearch.search.internal.SearchContext)", "offset": 127}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "J4eQqgwFH8hGziiVTbtiYwAAAAAAAACf"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.merge(org.apache.lucene.index.MergeState)", "offset": 18}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gyVw_U5FOQ18KFg79gJcQQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "void org.elasticsearch.tracing.apm.APMTracer.stopTrace(java.lang.String)"}, "line": {"number": 352}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rEnON3ZlkGqwhN9n9GMtyQAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$authorizeIndexAction$4(org.elasticsearch.action.ActionListener, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, java.util.Map, org.elasticsearch.xpack.core.security.authz.ResolvedIndices)", "offset": 7}, "line": {"number": 378}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dsAk2KNLTRhoL-DCKK7EHgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "TermsAggregationBuilder.java"}, "function": {"name": "int org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder.hashCode()", "offset": 1}, "line": {"number": 408}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL5ew"}} -{"Stackframe": {"function": {"name": "__fdget_pos"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACuQi1"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/http/transport.go"}, "function": {"name": "net/http.(*persistConn).readLoopPeekFailLocked"}, "line": {"number": 2251}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lff4bfceUG2apmCG5TYY-AAAAAAAAAEd"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 285}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "umQIucIioKjldscxi712SAAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.fsync(java.nio.file.Path, boolean)", "offset": 9}, "line": {"number": 465}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE_P8"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.resetspinning"}, "line": {"number": 2540}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_-w0jN8EBuSyBPLluRtS_AAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "void java.util.Arrays.fill(int[], int)"}, "line": {"number": 3181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AYbWOxZmjqP_JjIcE2B9BAAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "com.typesafe.config.impl.AbstractConfigValue com.typesafe.config.impl.SimpleConfig.findKeyOrNull(com.typesafe.config.impl.AbstractConfigObject, java.lang.String, com.typesafe.config.ConfigValueType, com.typesafe.config.impl.Path)", "offset": 9}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NK6q-mYZhWe1E7afoKkwiQAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.doHandleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 1}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cqdeXsJObgb8NROIUbndoAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.(org.elasticsearch.common.util.concurrent.ThreadContext, java.lang.Runnable, org.elasticsearch.common.util.concurrent.ThreadContext$1)"}, "line": {"number": 623}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAFzIe"}} -{"Stackframe": {"file": {"name": "github.com/cilium/ebpf@v0.9.1/map.go"}, "function": {"name": "github.com/cilium/ebpf.(*Map).lookup"}, "line": {"number": 618}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hpS1QtdrBQjGg-LCbfqeSAAAAAAAAF7Q"}} -{"Stackframe": {"function": {"name": "br_handle_frame"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFGhY"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.doInit"}, "line": {"number": 5644}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MRefKuQ15Y6eStqPQ3JqewAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "GHASH.java"}, "function": {"name": "int com.sun.crypto.provider.GHASH.doFinal(java.nio.ByteBuffer, int)", "offset": 3}, "line": {"number": 222}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j-mrBXNBqeJC8DfUo5tvmAAAAAAAAAFR"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.handleIndexActionAuthorizationResult(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener)", "offset": 42}, "line": {"number": 330}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-03J"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bufio/bufio.go"}, "function": {"name": "github.com/elastic/gosigar.readFile"}, "line": {"number": 81}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "igDwMdAXo1TdAS62iEyAAQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.translog.TranslogStats org.elasticsearch.index.shard.IndexShard.translogStats()"}, "line": {"number": 1062}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "c1baMmgVqL-aPBkB-pgTiAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, sun.nio.ch.NativeDispatcher)"}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACuTKh"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/http/transport.go"}, "function": {"name": "net/http.(*bodyEOFSignal).Read"}, "line": {"number": 2768}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6iEsgvvP90gMt6d2DPHcugAAAAAAAAB2"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction.newResponse(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.nodes.BaseNodesRequest, java.util.concurrent.atomic.AtomicReferenceArray, org.elasticsearch.action.ActionListener)", "offset": 18}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sF6k3xulBINXj_kpe4m7bQAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction.shardOperationOnReplica(org.elasticsearch.action.support.replication.ReplicatedWriteRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 194}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2yMXVAJmTG6J5VZ48pu33QAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.applyToAll(java.util.Collection, org.apache.lucene.util.IOUtils$IOConsumer)"}, "line": {"number": 504}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hYwcxK1EdaxISUobp_tMjwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ByteBufferIndexInput.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.apache.lucene.store.ByteBufferIndexInput$SingleBufferImpl.slice(java.lang.String, long, long)"}, "line": {"number": 524}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAATuJs"}} -{"Stackframe": {"function": {"name": "blk_mq_sched_dispatch_requests"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SH88ErM62X03uvl7agbg-gAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "void co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.handleIntakeEvent(co.elastic.apm.agent.report.ReportingEvent, long, boolean)", "offset": 4}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DONweA9992Oe2oiaVQ3GlgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.bulk.BulkShardRequest$$Lambda$7069+0x0000000801d70448.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LsrK9E-EO_ynQk-yDhFFiQAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "LZ4WithPresetDictCompressionMode.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.LZ4WithPresetDictCompressionMode$LZ4WithPresetDictCompressor.doCompress(byte[], int, int, org.apache.lucene.store.DataOutput)", "offset": 1}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uV9VJttm0goUzsky7YZbIwAAAAAAAACV"}} -{"Stackframe": {"file": {"name": "LZ4WithPresetDictCompressionMode.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene87.LZ4WithPresetDictCompressionMode$LZ4WithPresetDictCompressor.compress(byte[], int, int, org.apache.lucene.store.DataOutput)", "offset": 13}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pfFrejV5_d2JafhorerbtgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "int sun.nio.fs.UnixPath.getNameCount()"}, "line": {"number": 326}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0s7uxPt4C0neZhw5beiboQAAAAAAAACW"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.xcontent.support.AbstractXContentParser.readValueUnsafe(org.elasticsearch.xcontent.XContentParser$Token, org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier)", "offset": 15}, "line": {"number": 403}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiFHo"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/exec_unix.go"}, "function": {"name": "syscall.forkExec"}, "line": {"number": 164}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dVre-yWU3wOgyoQuLjZhuwAAAAAAAADP"}} -{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "java.lang.Runnable org.apache.lucene.util.bkd.BKDWriter.merge(org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, java.util.List, java.util.List)", "offset": 27}, "line": {"number": 507}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0I8cAvoTemt9EvN943sckAAAAAAAAAA_"}} -{"Stackframe": {"file": {"name": "InboundDecoder.java"}, "function": {"name": "int org.elasticsearch.transport.InboundDecoder.internalDecode(org.elasticsearch.common.bytes.ReleasableBytesReference, java.util.function.Consumer)", "offset": 14}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dJ2sHJS_vHp5BLfliwHuTQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "int org.apache.lucene.codecs.DocValuesConsumer$SortedNumericDocValuesSub.nextDoc()"}, "line": {"number": 363}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEP-q"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map.go"}, "function": {"name": "runtime.hashGrow"}, "line": {"number": 1027}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CpvjWyzlv7sy206ARLr_PwAAAAAAAABh"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI$BitSetConjunctionDISI.doNext(int)"}, "line": {"number": 314}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f9tQ-FDBLtIC3ufWwyt_SQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "TimedRunnable.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.TimedRunnable.doRun()", "offset": 1}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I4bHbdqu4NiomiXC-qdndgAAAAAAAAFg"}} -{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "com.amazonaws.services.s3.model.PutObjectResult com.amazonaws.services.s3.AmazonS3Client.putObject(com.amazonaws.services.s3.model.PutObjectRequest)", "offset": 57}, "line": {"number": 1768}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4KFAFxj-eVsHHZBNgRjHOAAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "PagedGrowableWriter.java"}, "function": {"name": "void org.apache.lucene.util.packed.PagedGrowableWriter.(long, int, int, float, boolean)", "offset": 3}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7TeTTV59eKgI4B5n7wuKkgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter$$Lambda$7314+0x000000080250fd98.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rAdo-T5uvjwZ2Mw_-9pxxQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 1}, "line": {"number": 364}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jp89ntsvEyhpH5Dc3mZilAAAAAAAAAE5"}} -{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsWriter.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter.merge(org.apache.lucene.index.MergeState)", "offset": 32}, "line": {"number": 638}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vCu9X0uCcaidMKlT-pmTNgAAAAAAAALc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 732}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vhMTgwXcJBbn9i99hn5MzAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Spliterator.java"}, "function": {"name": "long java.util.Spliterator.getExactSizeIfKnown()"}, "line": {"number": 408}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aTDLmmx5i_FySiS_tBfkmwAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.StoredFieldsWriter org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsFormat.fieldsWriter(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)"}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAVPWS"}} -{"Stackframe": {"function": {"name": "nla_put"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XNiEFVfexcwhuzJE2wFqSQAAAAAAAACo"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.consumeUser(org.elasticsearch.xpack.core.security.user.User, java.util.Map)", "offset": 22}, "line": {"number": 653}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnxWX"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/stream.go"}, "function": {"name": "encoding/json.(*Decoder).Decode"}, "line": {"number": 59}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "boolean org.elasticsearch.search.query.QueryPhase.searchWithCollector(org.elasticsearch.search.internal.SearchContext, org.elasticsearch.search.internal.ContextIndexSearcher, org.apache.lucene.search.Query, java.util.LinkedList, boolean, boolean)", "offset": 14}, "line": {"number": 332}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MmsIoJcb1KokyvztUKEbAwAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "org.elasticsearch.index.translog.Translog$Location org.elasticsearch.index.translog.Translog.add(org.elasticsearch.index.translog.Translog$Operation)", "offset": 4}, "line": {"number": 575}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$authorizeIndexAction$5(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, java.util.Map, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult)", "offset": 1}, "line": {"number": 327}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hdcTMvh3urC-ZcaAAmdtEQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.reindex.AbstractBaseReindexRestHandler$$Lambda$9057+0x0000000802257c80.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Czl97HOuZsC56nBqCPt3QgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "AbstractContext.java"}, "function": {"name": "void co.elastic.apm.agent.impl.context.AbstractContext.()", "offset": 16}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aI4WGBylZKojnODB6segAAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.incRef(java.util.Collection)"}, "line": {"number": 565}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZDeC5caqI_6hNXlbdI9VxAAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "void org.apache.lucene.index.SegmentMerger.mergePoints(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.SegmentReadState)", "offset": 1}, "line": {"number": 184}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8T1U1Mk0_z7jRWhB49ZqDAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "RestCancellableNodeClient.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestCancellableNodeClient$1.onResponse(java.lang.Object)"}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SSGGC14VYxcFAL3lGtENzQAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation$2.onResponse(org.elasticsearch.action.support.replication.ReplicationOperation$ReplicaResponse)", "offset": 4}, "line": {"number": 226}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASc3-"}} -{"Stackframe": {"function": {"name": "apparmor_capable"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ISo198vJQrYNdynfqzotagAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.lang.Object java.util.TreeMap.get(java.lang.Object)"}, "line": {"number": 279}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VRV3OqaPHH0CL0c13xlvAwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.dispatchedShardOperationOnReplica(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 525}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FJBAv_ZG17EaYJPkcMS1YQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "HashSet.java"}, "function": {"name": "void java.util.HashSet.(java.util.Collection)", "offset": 2}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0bX9_rdLKY7cMkfz9daTcAAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.fetch.QueryFetchSearchResult org.elasticsearch.search.SearchService.executeFetchPhase(org.elasticsearch.search.internal.ReaderContext, org.elasticsearch.search.internal.SearchContext, long)", "offset": 2}, "line": {"number": 475}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bBQ2fsMcPLjZdwrVTr6aMgAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter.copyOneDoc(org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader, int)", "offset": 1}, "line": {"number": 516}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NHZIb934ydih1IKLBqCI5gAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ApmServerConfigurationSource.java"}, "function": {"name": "java.lang.Object co.elastic.apm.agent.configuration.ApmServerConfigurationSource$2.withConnection(java.net.HttpURLConnection)"}, "line": {"number": 162}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxBgt"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/shared/network.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/shared.Network"}, "line": {"number": 38}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "y6q2h-KABgNNoURajGS5ewAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ASCII.java"}, "function": {"name": "int java.util.regex.ASCII.toUpper(int)"}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAB6J3"}} -{"Stackframe": {"function": {"name": "xfs_inactive"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$DirectResponseChannel.sendResponse(org.elasticsearch.transport.TransportResponse)", "offset": 6}, "line": {"number": 1221}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "19awHBrw5zOybAJS9IMTOAAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.buildIndicesAccessControl(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, java.util.Set, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 568}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiFx3"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/netlink_linux.go"}, "function": {"name": "syscall.NetlinkRIB"}, "line": {"number": 64}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TMX8OZDxXZh0ScV8nix7FAAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "ImmutableOpenMap.java"}, "function": {"name": "boolean org.elasticsearch.common.collect.ImmutableOpenMap.equals(java.lang.Object)", "offset": 5}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "575WKZsJOrf8RDDJpG_1WgAAAAAAAABh"}} -{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.CopyBytesSocketChannel.doWrite(io.netty.channel.ChannelOutboundBuffer)", "offset": 24}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NMpC60tGKaJ25O0qF-RzlQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.lambda$writeCollection$35(org.elasticsearch.common.io.stream.StreamOutput, org.elasticsearch.common.io.stream.Writeable)"}, "line": {"number": 1180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KUjaYktHrIITSxj2V6qw-QAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "org.elasticsearch.action.bulk.BulkRequest org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction.buildBulk(java.lang.Iterable)", "offset": 3}, "line": {"number": 274}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAACQ84"}} -{"Stackframe": {"function": {"name": "xfs_inode_item_push"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMbHu"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/shirou/gopsutil@v3.20.12+incompatible/net/net_linux.go"}, "function": {"name": "github.com/shirou/gopsutil/net.getProcInodes"}, "line": {"number": 553}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fjtW9vtmDWgO1Pk6zjyUWAAAAAAAAACO"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "void sun.nio.ch.FileChannelImpl.implCloseChannel()", "offset": 30}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hZyer2Nt_qqVYvWZIR494gAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$AsyncAfterWriteAction.maybeFinish()", "offset": 5}, "line": {"number": 477}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6Z22H_xn76khllJMdfZQswAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sXYsfWKSXv-0U7gobefHRgAAAAAAAAET"}} -{"Stackframe": {"file": {"name": "IndexMetadata.java"}, "function": {"name": "void org.elasticsearch.cluster.metadata.IndexMetadata$Builder.toXContent(org.elasticsearch.cluster.metadata.IndexMetadata, org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 29}, "line": {"number": 1312}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApyVc"}} -{"Stackframe": {"function": {"name": "__mutex_lock.isra.10"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pRPV5-hOaPCGuVueTBL9ogAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "boolean java.util.TreeMap.containsKey(java.lang.Object)"}, "line": {"number": 233}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0"}} -{"Stackframe": {"file": {"name": "TransportNodesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation(org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction$NodeStatsRequest)", "offset": 2}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4JQqkFvm0YZvatJnibQXiAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run()"}, "line": {"number": 716}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IfYj4waw9fP9op8fikoTJgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.FilterDirectory.createOutput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TuJIedgiwpK9-3BbSgy5QgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "MappingMetadata.java"}, "function": {"name": "java.util.Map org.elasticsearch.cluster.metadata.MappingMetadata.getSourceAsMap()"}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WMBQH2cqudnz0nG322UKdQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "int com.fasterxml.jackson.core.json.UTF8StreamJsonParser._skipWSOrEnd()", "offset": 1}, "line": {"number": 2957}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACuFXk"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_process_metadata/gosysinfo_provider.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_process_metadata.gosysinfoProvider.GetProcessMetadata"}, "line": {"number": 31}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qU_w4fJ1H2b1Z7QXEMrwbwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "boolean org.elasticsearch.index.IndexService$BaseAsyncTask.mustReschedule()"}, "line": {"number": 967}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7fRblGdKRlNY9QjBlaIJIgAAAAAAAAFT"}} -{"Stackframe": {"file": {"name": "Lucene94FieldInfosFormat.java"}, "function": {"name": "org.apache.lucene.index.FieldInfos org.apache.lucene.codecs.lucene94.Lucene94FieldInfosFormat.read(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.store.IOContext)", "offset": 58}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xDXeTINsutWQ3L9FCGjV5QAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "void org.elasticsearch.index.store.Store$StoreDirectory.deleteFile(java.lang.String)"}, "line": {"number": 750}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzyw"}} -{"Stackframe": {"function": {"name": "__audit_syscall_entry"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dxb67a9pdOnwKSyUl3yo7gAAAAAAAABu"}} -{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 20}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.schedule"}, "line": {"number": 3126}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACu3W2"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/syntax/parse.go"}, "function": {"name": "regexp/syntax.parse"}, "line": {"number": 791}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2CW-pqTEXFOPl1io7AqJBQAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "CompositeByteBuf.java"}, "function": {"name": "int io.netty.buffer.CompositeByteBuf.addComponent0(boolean, int, io.netty.buffer.ByteBuf)", "offset": 6}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4W_nR-pxff53D0BjoKGHbwAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "WorkerBulkByScrollTaskState.java"}, "function": {"name": "void org.elasticsearch.index.reindex.WorkerBulkByScrollTaskState$DelayedPrepareBulkRequest.(org.elasticsearch.index.reindex.WorkerBulkByScrollTaskState, org.elasticsearch.threadpool.ThreadPool, float, org.elasticsearch.core.TimeValue, java.lang.Runnable)", "offset": 4}, "line": {"number": 246}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cMXYJMRG12GUF62IrJS85QAAAAAAAABe"}} -{"Stackframe": {"file": {"name": "Lucene90PostingsReader.java"}, "function": {"name": "org.apache.lucene.index.PostingsEnum org.apache.lucene.codecs.lucene90.Lucene90PostingsReader.postings(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.BlockTermState, org.apache.lucene.index.PostingsEnum, int)", "offset": 14}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BDSdiy0x3rJPCL22Rb7_AgAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "RoutingNode.java"}, "function": {"name": "void org.elasticsearch.cluster.routing.RoutingNode.(java.lang.String, org.elasticsearch.cluster.node.DiscoveryNode, java.util.LinkedHashMap)", "offset": 7}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tsS1EtD0AN9RREU7M9BEeAAAAAAAAADZ"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node[] java.util.HashMap.resize()", "offset": 36}, "line": {"number": 712}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k0ECrHyaBQYN9EA2YbnUsgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SettingsFilter.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.SettingsFilter.filterSettings(java.lang.Iterable, org.elasticsearch.common.settings.Settings)"}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iDeUqi9fXDm_fNSrL17LBgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.get(java.lang.Object)"}, "line": {"number": 556}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vXkwfvj7jlhBJyKg0XGvywAAAAAAAABT"}} -{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 17}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KCxCvDIXtl0ClBmM3hNiLgAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6212+0x0000000801cb1c40.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VOUNVzVyt4QutMt6oZxNlQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.updateDocs(org.apache.lucene.index.Term, java.util.List, org.apache.lucene.index.IndexWriter)", "offset": 1}, "line": {"number": 1370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Zq"}} -{"Stackframe": {"function": {"name": "netlink_recvmsg"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-h8BLQ0xRkdP3SzRSIk95QAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "URI.java"}, "function": {"name": "int java.net.URI$Parser.parseIPv4Address(int, int)"}, "line": {"number": 3418}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Tlm2yos2yNMmUywsA990NAAAAAAAAARr"}} -{"Stackframe": {"file": {"name": "ObjectName.java"}, "function": {"name": "void javax.management.ObjectName.construct(java.lang.String)", "offset": 241}, "line": {"number": 664}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GqShcrW-d9_GDzTagKIU9QAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "org.elasticsearch.cluster.Diff org.elasticsearch.cluster.ClusterState.readDiffFrom(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.node.DiscoveryNode)"}, "line": {"number": 686}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABHjE"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.runqgrab"}, "line": {"number": 5977}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ7vM"}} -{"Stackframe": {"function": {"name": "__do_sys_madvise"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CIJa2mPNm8b1wwJ_UCRwpAAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "Lucene90PostingsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.FieldsConsumer org.apache.lucene.codecs.lucene90.Lucene90PostingsFormat.fieldsConsumer(org.apache.lucene.index.SegmentWriteState)", "offset": 3}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxGRz"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/os.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.parseDistribRelease"}, "line": {"number": 250}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E6ANAua91VJJE640-7WdqAAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "DocumentsWriterFlushQueue.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriterFlushQueue.tryPurge(org.apache.lucene.util.IOUtils$IOConsumer)", "offset": 3}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXxoN"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/mapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.MapStr.Clone"}, "line": {"number": 157}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l6EJcOAPQpkLiYeKJCOWVQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler$$Lambda$5298+0x0000000801a5fd60.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWwd"}} -{"Stackframe": {"function": {"name": "ksys_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V-DianfzaKA9nJbiuMkhXQAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "SoftDeletesPolicy.java"}, "function": {"name": "long org.elasticsearch.index.engine.SoftDeletesPolicy.getMinRetainedSeqNo()", "offset": 18}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Zc4-4la3f3ERFdOZuKRlgwAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$6512+0x00000008023c3cc0.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChrhm"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map.go"}, "function": {"name": "reflect.makemap"}, "line": {"number": 1300}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1Mo8VSr4ExgPLu63UteaagAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "BytesRef.java"}, "function": {"name": "void org.apache.lucene.util.BytesRef.(java.lang.CharSequence)", "offset": 1}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cjIhOkmIqJlptkEMROl1nQAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "Lucene50CompoundReader.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene50.Lucene50CompoundReader.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 5}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0YpHRX6ZLVSO127u68ifLAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.Map$Entry java.util.HashMap$EntryIterator.next()"}, "line": {"number": 1617}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wsB1hNhVAWAL2RPJHKnfPwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.xpack.core.ilm.PhaseExecutionInfo$$Lambda$5067.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zR0NjJPPs8zyWwwQG_LNGQAAAAAAAAGv"}} -{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.DocumentsWriter.doFlush(org.apache.lucene.index.DocumentsWriterPerThread)", "offset": 78}, "line": {"number": 521}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALR2K"}} -{"Stackframe": {"function": {"name": "__x64_sys_access"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEN8u"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/stubs.go"}, "function": {"name": "runtime.makemap_small"}, "line": {"number": 110}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACzCnI"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/mapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.MapStr.String"}, "line": {"number": 215}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R8XqrHwsSbyUWtEys51FcwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.io.OutputStream java.nio.file.Files.newOutputStream(java.nio.file.Path, java.nio.file.OpenOption[])"}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RJXjPkp22gaQo9vwY-85JAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.(org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter, org.apache.lucene.index.FieldInfo)", "offset": 359}, "line": {"number": 890}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAFzx5"}} -{"Stackframe": {"file": {"name": "github.com/cilium/ebpf@v0.9.1/map.go"}, "function": {"name": "github.com/cilium/ebpf.(*Map).nextKey"}, "line": {"number": 772}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E__m11jwVVwOsNYG95RSxgAAAAAAAAIJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 521}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iQ3-U2pFJokP-jlw4Yr9FQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.put(java.lang.Object, java.lang.Object)"}, "line": {"number": 612}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JE27ij9kev0kcTbJ4XEAFAAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "QuotaAwareFileSystemProvider.java"}, "function": {"name": "void co.elastic.cloud.quotaawarefs.QuotaAwareFileSystemProvider$3.(co.elastic.cloud.quotaawarefs.QuotaAwareFileSystemProvider, java.nio.file.Path, java.nio.file.DirectoryStream$Filter)", "offset": 1}, "line": {"number": 270}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DvnksL7QDssoGl1VYPV1EwAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes sun.nio.fs.UnixFileSystemProvider.readAttributes(java.nio.file.Path, java.lang.Class, java.nio.file.LinkOption[])", "offset": 8}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XMklUHzHCnlEsWM76-8VbQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput$$Lambda$6278+0x00000008023a66b0.write(org.elasticsearch.common.io.stream.StreamOutput, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "galH3SQEgM8V50ZaRLSobQAAAAAAAADU"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.innerAcquireReplicaOperationPermit(long, long, long, org.elasticsearch.action.ActionListener, boolean, java.util.function.Consumer)", "offset": 70}, "line": {"number": 3693}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ehfrv6pp0yJIe59dBGi7sAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "IndexingMemoryController.java"}, "function": {"name": "void org.elasticsearch.indices.IndexingMemoryController$ShardsIndicesStatusChecker.runUnlocked()", "offset": 2}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HplXktiQEHOlMsPkVEOy3AAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "NettyAllocator.java"}, "function": {"name": "org.elasticsearch.common.recycler.Recycler$V org.elasticsearch.transport.netty4.NettyAllocator$1.obtain()"}, "line": {"number": 137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-tNE"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgstats.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.(*StatsV1).FillPercentages"}, "line": {"number": 67}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChXuy"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/stack.go"}, "function": {"name": "runtime.adjustframe"}, "line": {"number": 1413}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-1HE"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/gosigar@v0.14.2/sigar_linux_common.go"}, "function": {"name": "github.com/elastic/gosigar.readProcFile.func1"}, "line": {"number": 408}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uV9VJttm0goUzsky7YZbIwAAAAAAAACL"}} -{"Stackframe": {"file": {"name": "LZ4WithPresetDictCompressionMode.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene87.LZ4WithPresetDictCompressionMode$LZ4WithPresetDictCompressor.compress(byte[], int, int, org.apache.lucene.store.DataOutput)", "offset": 16}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gkppypvMO9S8VR3D3H8lzgAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "ApiKeyService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.ApiKeyService.authenticateWithApiKeyIfPresent(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.action.ActionListener)", "offset": 21}, "line": {"number": 422}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener.completeWith(org.elasticsearch.action.ActionListener, org.elasticsearch.common.CheckedSupplier)", "offset": 11}, "line": {"number": 455}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZdUbGP_mgayUcKBjt5p9GgAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "BulkItemRequest.java"}, "function": {"name": "void org.elasticsearch.action.bulk.BulkItemRequest.(org.elasticsearch.index.shard.ShardId, org.elasticsearch.common.io.stream.StreamInput)", "offset": 7}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yGyvzFIL_mg5LB3DsyUhRQAAAAAAAABN"}} -{"Stackframe": {"file": {"name": "CompositeValuesCollectorQueue.java"}, "function": {"name": "org.elasticsearch.search.aggregations.LeafBucketCollector org.elasticsearch.search.aggregations.bucket.composite.CompositeValuesCollectorQueue.getLeafCollector(java.lang.Comparable, org.apache.lucene.index.LeafReaderContext, org.elasticsearch.search.aggregations.LeafBucketCollector)", "offset": 8}, "line": {"number": 243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgDv"}} -{"Stackframe": {"function": {"name": "__local_bh_enable_ip"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f_rIvCQMW5oayMPHCj4aUgAAAAAAAAC-"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "int java.io.FilePermission.containsPath(java.nio.file.Path, java.nio.file.Path)", "offset": 51}, "line": {"number": 753}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C3YHHmbL8eIan7BKq7-sqQAAAAAAAAH6"}} -{"Stackframe": {"file": {"name": "AbstractPlainSocketImpl.java"}, "function": {"name": "void java.net.AbstractPlainSocketImpl.setOption(int, java.lang.Object)", "offset": 71}, "line": {"number": 331}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "syvMOGxiS-YYNSrwBRgBYwAAAAAAAABa"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "int org.apache.lucene.util.compress.LZ4$FastCompressionHashTable.get(int)", "offset": 7}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "utn8crTuA55RNoKld3txuQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "UTF8JsonGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.UTF8JsonGenerator.writeFieldName(java.lang.String)"}, "line": {"number": 211}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "flNTKXUVadjdmvcqN0AFxgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$5338+0x0000000801a8c000.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC8rwC"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-structform@v0.0.9/gotype/fold_reflect.go"}, "function": {"name": "github.com/elastic/go-structform/gotype.makeFieldsFold.func1"}, "line": {"number": 198}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hGSV5zKrRFpCoM5XmwxNpAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "boolean java.util.concurrent.LinkedTransferQueue$Node.block()"}, "line": {"number": 470}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgiZl"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgc.go"}, "function": {"name": "runtime.gcMarkTermination"}, "line": {"number": 1588}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "igbwprokH3CDrh8StLnYiwAAAAAAAABd"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4.encodeSequence(byte[], int, int, int, int, org.apache.lucene.store.DataOutput)", "offset": 9}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "365bkCPTYmyPAOblneeRAgAAAAAAAAIr"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 555}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4M0Ud4qlvTvF27Rhplk7mAAAAAAAAABz"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 115}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OFwxlpot2kNL7xB3s-P8GwAAAAAAAAC1"}} -{"Stackframe": {"file": {"name": "TransportFieldCapabilitiesAction.java"}, "function": {"name": "org.elasticsearch.action.fieldcaps.FieldCapabilitiesNodeResponse org.elasticsearch.action.fieldcaps.TransportFieldCapabilitiesAction$NodeTransportHandler.lambda$messageReceived$0(org.elasticsearch.action.fieldcaps.FieldCapabilitiesNodeRequest)", "offset": 14}, "line": {"number": 406}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bhHNyFTnsHyVRuVMOsfalAAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "Aggregations.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.search.aggregations.Aggregations.toXContentInternal(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 1}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SdUzkeL9_v2VezVxWgWRqAAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.flush()", "offset": 9}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "ActionRunnable.java"}, "function": {"name": "void org.elasticsearch.action.ActionRunnable$2.accept(org.elasticsearch.action.ActionListener)"}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ND1081BRZFYaMVgvbwz-GQAAAAAAAAFY"}} -{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment org.apache.lucene.index.DocumentsWriterPerThread.flush(org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 49}, "line": {"number": 391}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$MappedActionListener.onResponse(java.lang.Object)", "offset": 6}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6502+0x00000008023c2328.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l00Z5a3xKQTn8W8_ANiQ2gAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.deleteNewFiles(java.util.Collection)"}, "line": {"number": 5333}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABBH9"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.checkTimers"}, "line": {"number": 3286}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7RFhYe_NpS241I1rFVDmNAAAAAAAAABN"}} -{"Stackframe": {"file": {"name": "SortedSetDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedSetDocValuesWriter.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.DocValuesConsumer)", "offset": 11}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e6HlflPyKAlNlF7JPJCNJQAAAAAAAAF3"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.runTask(java.lang.String, java.util.function.Function, org.elasticsearch.action.ActionListener)", "offset": 53}, "line": {"number": 437}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgmrv"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.scanobject"}, "line": {"number": 1250}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tv2GitaUyrjotiOalo5pXgAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "org.elasticsearch.common.collect.Tuple org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.bytes.BytesReference, boolean)"}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UPXqeiDjsTt0fgWi6CFaqgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ElasticApmTracer.java"}, "function": {"name": "co.elastic.apm.agent.impl.transaction.Transaction co.elastic.apm.agent.impl.ElasticApmTracer.createTransaction()"}, "line": {"number": 254}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kTJVCBjDfmFAPRrGLStltQAAAAAAAACP"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.extractToken(java.util.function.Consumer)", "offset": 20}, "line": {"number": 455}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-LY5"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/auparse.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.enrichData"}, "line": {"number": 337}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GWzMNjwobqDWBa4HT5N-_AAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "AggregatorFactories.java"}, "function": {"name": "org.elasticsearch.search.aggregations.AggregatorFactories$Builder org.elasticsearch.search.aggregations.AggregatorFactories$Builder.rewrite(org.elasticsearch.index.query.QueryRewriteContext)", "offset": 5}, "line": {"number": 583}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VKeIi2MKWzeJ-DxWf1HkPQAAAAAAAABn"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrap(io.netty.channel.ChannelHandlerContext, boolean)", "offset": 19}, "line": {"number": 829}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "com.typesafe.config.impl.AbstractConfigValue com.typesafe.config.impl.SimpleConfig.findOrNull(com.typesafe.config.impl.AbstractConfigObject, com.typesafe.config.impl.Path, com.typesafe.config.ConfigValueType, com.typesafe.config.impl.Path)", "offset": 3}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Iy5aTLM6jJA23cEgrB0JAwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.util.Map$Entry java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$1.next()"}, "line": {"number": 1711}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "q3LBWQgbRfOKGPCCiNuVoAAAAAAAAAB_"}} -{"Stackframe": {"file": {"name": "ComparableTimSort.java"}, "function": {"name": "void java.util.ComparableTimSort.mergeCollapse()", "offset": 9}, "line": {"number": 413}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8tuuWTUZUYmZJZRhv0SpoQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap.putAll(java.util.Map)"}, "line": {"number": 785}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BA250vvzivD0xU5n0tBlVQAAAAAAAABn"}} -{"Stackframe": {"file": {"name": "HttpURLConnection.java"}, "function": {"name": "java.io.OutputStream sun.net.www.protocol.http.HttpURLConnection.getOutputStream0()", "offset": 19}, "line": {"number": 1367}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ke01XMwSHJkE0w5BapbuYAAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction.lambda$finishHim$0()"}, "line": {"number": 295}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bm1gP3yGnFKBFczLxT3-LQAAAAAAAABE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 5}, "line": {"number": 787}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ql5LFJIFzBtywZjp054QqQAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.SingleThreadEventExecutor.execute0(java.lang.Runnable)", "offset": 1}, "line": {"number": 827}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAATe1L"}} -{"Stackframe": {"function": {"name": "blk_finish_plug"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "El8e1KDnRSx78JGf4h_r2gAAAAAAAAD0"}} -{"Stackframe": {"file": {"name": "ObjectName.java"}, "function": {"name": "void javax.management.ObjectName.setCanonicalName(char[], char[], java.lang.String[], java.util.Map, int, int)", "offset": 44}, "line": {"number": 837}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5r8KpdovvRTGdEVpy5WVpAAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "JsonReadContext.java"}, "function": {"name": "com.fasterxml.jackson.core.json.JsonReadContext com.fasterxml.jackson.core.json.JsonReadContext.createChildArrayContext(int, int)", "offset": 5}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gIVE_He_HcVwkF6GliVVvwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportBroadcastByNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 397}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.MergePolicy$MergeSpecification org.apache.lucene.index.IndexWriter.updatePendingMerges(org.apache.lucene.index.MergePolicy, org.apache.lucene.index.MergeTrigger, int)", "offset": 45}, "line": {"number": 2350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "void java.util.stream.AbstractPipeline.copyInto(java.util.stream.Sink, java.util.Spliterator)", "offset": 4}, "line": {"number": 509}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HDR9S3uHHXddIiGMGd1LPwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.tryApply(org.apache.lucene.index.FrozenBufferedUpdates)", "offset": 2}, "line": {"number": 5567}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8S_Sv-2Ysy5dt1ARF624ywAAAAAAAACZ"}} -{"Stackframe": {"file": {"name": "Strings.java"}, "function": {"name": "java.lang.String[] org.elasticsearch.common.Strings.delimitedListToStringArray(java.lang.String, java.lang.String, java.lang.String)", "offset": 25}, "line": {"number": 509}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-S9E"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.addFieldsToEventData"}, "line": {"number": 437}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bncHe-mA3hsO-pdShFcnzQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "boolean java.util.stream.StreamSpliterators$WrappingSpliterator$$Lambda$5089+0x0000000801d17a78.getAsBoolean()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h9-tF-jimjyWyDY615aa4wAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction$$Lambda$7099+0x0000000801e80d78.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u8snKZkB2oBs9KSPImw4twAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext org.elasticsearch.common.util.concurrent.ThreadContext.lambda$wrapRestorable$5(org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext)"}, "line": {"number": 376}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Nm4yGO8KqhyI7yinlO-YEwAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "ObjectNode.java"}, "function": {"name": "boolean com.fasterxml.jackson.databind.node.ObjectNode.equals(java.lang.Object)", "offset": 3}, "line": {"number": 920}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE9eT"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.startm"}, "line": {"number": 1996}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lMCLsuvwtl5Ienaf8gCxzgAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "IndexRoutingTable.java"}, "function": {"name": "java.util.List org.elasticsearch.cluster.routing.IndexRoutingTable.shardsWithState(org.elasticsearch.cluster.routing.ShardRoutingState)", "offset": 2}, "line": {"number": 263}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7EHeuRz0CLtKEuoB-_zIQAAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "TcpTransportChannel.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransportChannel.sendResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 61}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YpbiNBYY9QiMtZyIIOk6lgAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.cluster.coordination.FollowersChecker$$Lambda$4559+0x000000080182fc18.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADUVK3"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/docker/engine@v0.0.0-20191113042239-ea84732a7725/client/events.go"}, "function": {"name": "github.com/docker/docker/client.(*Client).Events.func1"}, "line": {"number": 55}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3kqKIOk7SslvcfRGmqs1wAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes java.nio.file.Files.readAttributes(java.nio.file.Path, java.lang.Class, java.nio.file.LinkOption[])"}, "line": {"number": 1851}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M5dg018SyR5wq8ziifZ2mQAAAAAAAACD"}} -{"Stackframe": {"file": {"name": "GatewayMetaState.java"}, "function": {"name": "void org.elasticsearch.gateway.GatewayMetaState$LucenePersistedState.setLastAcceptedState(org.elasticsearch.cluster.ClusterState)", "offset": 11}, "line": {"number": 534}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fNTDCm_3eVgEHous9evUWgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction$1.doRun()"}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJqR5"}} -{"Stackframe": {"function": {"name": "walk_page_range"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Pm8yvojd4enECfI_5pXoCAAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "PolicyFile.java"}, "function": {"name": "boolean sun.security.provider.PolicyFile.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 1}, "line": {"number": 1000}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jimseSpjBNWbZ4eHcfFIAwAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$1.lambda$sendRequest$0(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportInterceptor$AsyncSender, boolean, org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext)"}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAEg"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.index.SegmentMerger.merge()", "offset": 24}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "106B1iulZ9qNy42ENkYaCwAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$5641+0x0000000801abd878.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NatKHnzuddBuR5ARu7T06AAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$8(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.transport.TransportRequest, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.xpack.security.audit.AuditTrail, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, org.elasticsearch.action.ActionListener)"}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "U0eTKdsDxlOsU56i41jsOgAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "boolean java.util.stream.AbstractPipeline.copyIntoWithCancel(java.util.stream.Sink, java.util.Spliterator)", "offset": 5}, "line": {"number": 501}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dc4yAbUO9lpCF1fQzJ_dbQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "void org.elasticsearch.tasks.TaskManager$1.lambda$release$0(org.elasticsearch.tasks.Task)"}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xKl6Inh-0EiNiO6fokn7-AAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.nrtIsCurrent(org.apache.lucene.index.SegmentInfos)", "offset": 6}, "line": {"number": 5667}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VyyKaeEtdlraCgV3b2jJawAAAAAAAAEJ"}} -{"Stackframe": {"file": {"name": "LZ4WithPresetDictCompressionMode.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.LZ4WithPresetDictCompressionMode$LZ4WithPresetDictDecompressor.decompress(org.apache.lucene.store.DataInput, int, int, int, org.apache.lucene.util.BytesRef)", "offset": 43}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC-58"}} -{"Stackframe": {"function": {"name": "task_work_run"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cDDKtM-30WtgKUZUhSPZowAAAAAAAABn"}} -{"Stackframe": {"file": {"name": "PolicyStepsRegistry.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.ilm.PolicyStepsRegistry.parseStepsFromPhase(java.lang.String, java.lang.String, java.lang.String)", "offset": 14}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9hZdX3cgI2b0eP52YXGHgQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "OsProbe.java"}, "function": {"name": "org.elasticsearch.monitor.os.OsStats org.elasticsearch.monitor.os.OsProbe.osStats()"}, "line": {"number": 699}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zjgMi0OYibUoh7tbcHBcrQAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "org.apache.lucene.index.SortedSetDocValues org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsReader.getSortedSet(org.apache.lucene.index.FieldInfo)", "offset": 1}, "line": {"number": 352}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7yAgGhSKYf_7c7LTzITpCAAAAAAAAACM"}} -{"Stackframe": {"file": {"name": "Lucene84SkipWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.Lucene84SkipWriter.writeImpacts(org.apache.lucene.codecs.CompetitiveImpactAccumulator, org.apache.lucene.store.DataOutput)", "offset": 9}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "g5HW81gVegsp2uHOoheefQAAAAAAAAFo"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "org.elasticsearch.gateway.PersistedClusterStateService$Writer$WriterStats org.elasticsearch.gateway.PersistedClusterStateService$Writer.updateMetadata(org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.cluster.metadata.Metadata)", "offset": 24}, "line": {"number": 663}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kImYZca_xa4YrQs4jcLrKAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "SSLHandshake.java"}, "function": {"name": "byte[] sun.security.ssl.SSLHandshake.produce(sun.security.ssl.ConnectionContext, sun.security.ssl.SSLHandshake$HandshakeMessage)", "offset": 2}, "line": {"number": 436}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cqdSAx5Uej3ncVA_SUVjsQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "PhantomCleanable.java"}, "function": {"name": "void jdk.internal.ref.PhantomCleanable.clean()", "offset": 2}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Di1tF-WqPjDxduRVa-p3HAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 2}, "line": {"number": 313}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABCxa"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.exitsyscallfast_pidle"}, "line": {"number": 3918}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pu-N4aBOZsn4VU4z7Imv8AAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "InferenceProcessor.java"}, "function": {"name": "void org.elasticsearch.xpack.ml.inference.ingest.InferenceProcessor$Factory.accept(java.lang.Object)"}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YgsSLUYpiS9cWv6amzrEpAAAAAAAAABY"}} -{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 17}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACa"}} -{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.SoftDeletesRetentionMergePolicy.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.util.IOSupplier)", "offset": 15}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "W1Mnd_1YqneVzWUadRzjPwAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Iterable, java.lang.Object, java.util.Set)", "offset": 5}, "line": {"number": 1283}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IU8u--NbxjOeMw1G028-GgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "NettyAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf org.elasticsearch.transport.NettyAllocator$NoDirectBuffers.heapBuffer(int)"}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HmNoHhoSjlKHYuhVnL7tmgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.support.AbstractXContentParser.lambda$readMap$0(java.util.function.Supplier, org.elasticsearch.common.xcontent.XContentParser)"}, "line": {"number": 322}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mVBN-6O2zeIv8GsCRrlSswAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter$1.lambda$deleteUnusedFiles$0(java.util.Collection, org.apache.lucene.index.IndexWriter)"}, "line": {"number": 436}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9ya1L8kCLTVFwaNMIq6e6wAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.Settings$Builder.build()", "offset": 1}, "line": {"number": 1203}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JQLcS-Sow-71hXmB1Wrz2wAAAAAAAADo"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 232}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bC4xUO3cZ_wW8IEDAJ-BNgAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction.execute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 11}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uWCpZlX3JGJm412J5IFsLgAAAAAAAABS"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 6}, "line": {"number": 775}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFfSD"}} -{"Stackframe": {"function": {"name": "cgroup1_show_options"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w8YyBE6YuJVW0xgQWj8zJQAAAAAAAAC6"}} -{"Stackframe": {"file": {"name": "TranslogWriter.java"}, "function": {"name": "boolean org.elasticsearch.index.translog.TranslogWriter.syncUpTo(long)", "offset": 29}, "line": {"number": 418}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALmkK"}} -{"Stackframe": {"function": {"name": "path_openat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction)"}, "line": {"number": 312}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nZwXh40FR8SZC_XL30MMlAAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "Logger.java"}, "function": {"name": "void org.apache.logging.log4j.core.Logger.log(org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, java.lang.String, java.lang.StackTraceElement, org.apache.logging.log4j.message.Message, java.lang.Throwable)", "offset": 2}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLvhl"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/encode.go"}, "function": {"name": "encoding/json.mapEncoder.encode"}, "line": {"number": 795}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNk"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/reader.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.(*Reader).GetV1StatsForProcess"}, "line": {"number": 185}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3Ry2LaRN3x17PfGmARPd7AAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "ManagementFactory.java"}, "function": {"name": "java.util.List java.lang.management.ManagementFactory.getPlatformMXBeans(java.lang.Class)", "offset": 8}, "line": {"number": 727}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9ueOMZ5LDXwfOj3sK1vl8QAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "RSACore.java"}, "function": {"name": "byte[] sun.security.rsa.RSACore.rsa(byte[], java.security.interfaces.RSAPrivateKey, boolean)", "offset": 1}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bDNu25BwvOEIoFl6fwqL_wAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "Checkpoint.java"}, "function": {"name": "java.lang.String org.elasticsearch.index.translog.Checkpoint.toString()"}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAC2nR"}} -{"Stackframe": {"file": {"name": "syscall/syscall_linux.go"}, "function": {"name": "syscall.Syscall6"}, "line": {"number": 93}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gSPeGElM62wUjW_qOFb83QAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "RecyclerBytesStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.RecyclerBytesStreamOutput.seek(long)"}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "12wqq0CZSFWXQTyNvq7lawAAAAAAAACL"}} -{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.SoftDeletesRetentionMergePolicy.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.util.IOSupplier)", "offset": 12}, "line": {"number": 145}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAADgcaE"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_docker_metadata/add_docker_metadata.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_docker_metadata.(*addDockerMetadata).lookupContainerIDByPID"}, "line": {"number": 248}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PmdOVhDmQHY_qzC5-senSAAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "void io.netty.channel.DefaultChannelPipeline$HeadContext.readIfIsAutoRead()", "offset": 1}, "line": {"number": 1422}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TsD0RrBnIgAER8sz4r-hTwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "void org.apache.lucene.index.StandardDirectoryReader.doClose()", "offset": 16}, "line": {"number": 386}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABWaL5"}} -{"Stackframe": {"file": {"name": "encoding/gob/decode.go"}, "function": {"name": "encoding/gob.(*Decoder).decOpFor.func3"}, "line": {"number": 849}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-pQ7u4Ee6imT9PbqfC5keAAAAAAAAACI"}} -{"Stackframe": {"file": {"name": "FieldsIndexWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.FieldsIndexWriter.(org.apache.lucene.store.Directory, java.lang.String, java.lang.String, java.lang.String, java.lang.String, byte[], int, org.apache.lucene.store.IOContext)", "offset": 13}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dlfntofA5ohST-yRkUwXxAAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.dispatchedShardOperationOnPrimary(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "U9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore$$Lambda$7326+0x0000000802513a60.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgSUc"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/iface.go"}, "function": {"name": "runtime.assertE2I2"}, "line": {"number": 459}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SAcr2k56H-0uXVdYyC2m8AAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "boolean java.util.AbstractMap.equals(java.lang.Object)", "offset": 6}, "line": {"number": 482}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$9(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult)"}, "line": {"number": 303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "P299PotjoPCE9wTQuko6qwAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "PriorityQueue.java"}, "function": {"name": "java.lang.Object org.apache.lucene.util.PriorityQueue.add(java.lang.Object)", "offset": 3}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BTDQHzxuOEAYM78jOAyAQAAAAAAAAAB3"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Result org.elasticsearch.action.bulk.TransportShardBulkAction.performOpOnReplica(org.elasticsearch.action.DocWriteResponse, org.elasticsearch.action.DocWriteRequest, org.elasticsearch.index.shard.IndexShard)", "offset": 14}, "line": {"number": 592}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7c7rgpFHY6rxkjCoiUY2PgAAAAAAAACW"}} -{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.consumeToken(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 103}, "line": {"number": 233}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Q664u2_E3_pA1LoHw-VWiQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.commit()", "offset": 1}, "line": {"number": 3410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2Gjxa8Lemwix5NrE6xBsvAAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "Method.java"}, "function": {"name": "java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[])", "offset": 10}, "line": {"number": 567}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HE_nCux7-rXEI92ZPZtZGwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.reindex.WorkerBulkByScrollTaskState$DelayedPrepareBulkRequest$$Lambda$9071+0x000000080282a208.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YSzdot5irIEtgjwr_afKbgAAAAAAAABH"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext org.elasticsearch.common.util.concurrent.ThreadContext.newStoredContext(boolean, java.util.Collection)", "offset": 6}, "line": {"number": 199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pPNm9AI1ZNvQH4mQWyTdNwAAAAAAAABw"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 12}, "line": {"number": 467}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-MUk"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/auparse.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.hexDecode"}, "line": {"number": 475}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Uf-A5VXETtdrRhSmwt74rgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.index.IndexService org.elasticsearch.indices.IndicesService.indexServiceSafe(org.elasticsearch.index.Index)"}, "line": {"number": 506}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgwKW"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mheap.go"}, "function": {"name": "runtime.freeSpecial"}, "line": {"number": 1922}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "upzfQOX2x9UY22glBQnzkwAAAAAAAAC9"}} -{"Stackframe": {"file": {"name": "SSLCipher.java"}, "function": {"name": "sun.security.ssl.Plaintext sun.security.ssl.SSLCipher$T12GcmReadCipherGenerator$GcmReadCipher.decrypt(byte, java.nio.ByteBuffer, byte[])", "offset": 26}, "line": {"number": 1676}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nbsBVHmpV2luDgffbdJNFAAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.s3.S3BlobContainer.lambda$writeBlob$0(long, java.lang.String, java.io.InputStream)", "offset": 1}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEnPe"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mheap.go"}, "function": {"name": "runtime.(*mheap).allocSpan"}, "line": {"number": 489}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8RQyRW_fqLsoJLvr6Yk7xQAAAAAAAABz"}} -{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.apache.lucene.search.BooleanWeight.scorerSupplier(org.apache.lucene.index.LeafReaderContext)", "offset": 10}, "line": {"number": 379}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RW7C8N1q94TuMskdRCHbYwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$1.onResponse(java.lang.Object)"}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rjxo1s0lXgdLM5jX2lBu3QAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext.putHeader(java.lang.String, java.lang.String)"}, "line": {"number": 488}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wyhhefqrtGhwsD6tVI0adQAAAAAAAACz"}} -{"Stackframe": {"file": {"name": "MainResponse.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.action.main.MainResponse.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 15}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5Dz1NwJhW8tUTolfpVyg2gAAAAAAAADh"}} -{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "int sun.nio.ch.EPollSelectorImpl.doSelect(java.util.function.Consumer, long)", "offset": 37}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$DelegatingFailureActionListener.onResponse(java.lang.Object)"}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAABayB"}} -{"Stackframe": {"function": {"name": "xfs_destroy_ioend"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UjP9b9Gi1n1teIJJDyIQ2gAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService$Batcher.run(java.lang.Object, java.util.List, java.lang.String)", "offset": 2}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "agRSV97vL0634eqbTCb3zgAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "Authentication.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authc.Authentication$AuthenticationSerializationHelper.writeUserTo(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.common.io.stream.StreamOutput)", "offset": 3}, "line": {"number": 989}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkVZq"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/strings.go"}, "function": {"name": "strings.Index"}, "line": {"number": 1153}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "P4g4_9BzHxlC4xn_CE268wAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "org.elasticsearch.cluster.DiffableUtils$MapDiff org.elasticsearch.cluster.DiffableUtils.diff(org.elasticsearch.common.collect.ImmutableOpenMap, org.elasticsearch.common.collect.ImmutableOpenMap, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)", "offset": 1}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XrBpNAskp4LhvHyToQuFVgAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "BaseFuture.java"}, "function": {"name": "boolean org.elasticsearch.common.util.concurrent.BaseFuture.set(java.lang.Object)", "offset": 2}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-qxlzhISrkt3aTDb6YnIBwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ThreadPoolInfo.java"}, "function": {"name": "void org.elasticsearch.threadpool.ThreadPoolInfo.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 2}, "line": {"number": 765}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iKaxpLusdxwd55Cj-SfoCQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MxRnrnRp5fRRlUEkyuK1rQAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.writeIncrementalStateAndCommit(long, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)", "offset": 4}, "line": {"number": 615}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PWHtAgxFHSv52ned2xJgQwAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "AggregatorFactories.java"}, "function": {"name": "int org.elasticsearch.search.aggregations.AggregatorFactories$Builder.hashCode()"}, "line": {"number": 558}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_VfdOguzzRs6cxcAnL726gAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService.publish(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.MasterService$TaskOutputs, long)", "offset": 6}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gdxhRsFINIcXjL8ov24MeQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "UpdateRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.UpdateRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)"}, "line": {"number": 23}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi_9X"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file_unix.go"}, "function": {"name": "os.(*unixDirent).Type"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RpSDTug63es5x1j9yGrZyAAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "ChannelInputStream.java"}, "function": {"name": "int sun.nio.ch.ChannelInputStream.read()", "offset": 2}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 57}, "line": {"number": 493}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANcaV"}} -{"Stackframe": {"function": {"name": "iomap_write_begin.constprop.35"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HxVJAZIu3O0jFVqzh80-TAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "BufferedIndexInput.java"}, "function": {"name": "byte org.apache.lucene.store.BufferedIndexInput.readByte()", "offset": 1}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aT95r9ZsxBzFjwCzRgP5uQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.forceFlush(io.netty.channel.ChannelHandlerContext)", "offset": 1}, "line": {"number": 2137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiKQz"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.Flock"}, "line": {"number": 417}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RWZ9G1N69fMZnc8QMvYsrQAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$2(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener, org.elasticsearch.common.util.concurrent.ListenableFuture, org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$CachedResult)", "offset": 4}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m90x-IDkYTtkxx7JZAYrFAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "boolean io.netty.util.concurrent.DefaultPromise.setSuccess0(java.lang.Object)"}, "line": {"number": 604}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GY3kN9FLXVkd_WUycTkKyQAAAAAAAAFG"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 326}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pSIXlNYnJYwCILAJFTEzSwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "TransportNodesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation(org.elasticsearch.action.support.nodes.BaseNodeRequest, org.elasticsearch.tasks.Task)"}, "line": {"number": 31}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lu3U19P1ddOrJLDu-spLOgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(org.elasticsearch.rest.RestRequest, boolean, org.elasticsearch.action.ActionListener)"}, "line": {"number": 152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-z6X"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/gosigar@v0.14.2/sigar_linux_common.go"}, "function": {"name": "github.com/elastic/gosigar.(*ProcState).Get"}, "line": {"number": 213}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "v0pDU_Bmq425s1_kUBpK1QAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "StringUTF16.java"}, "function": {"name": "long java.lang.StringUTF16$CharsSpliterator.estimateSize()"}, "line": {"number": 1202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JYDGNyrxwMciptwAXDUuRwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "AbstractAsyncTask.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractAsyncTask.run()"}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAA7k3"}} -{"Stackframe": {"function": {"name": "xfs_dir2_leaf_lookup_int"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GPK7pyl3RjtyKa9WtooOGgAAAAAAAABa"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap$HashIterator.nextNode()", "offset": 6}, "line": {"number": 1588}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9pb4Lxy57-qFLAi366TLkgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "JodaDateFormatter.java"}, "function": {"name": "java.time.temporal.TemporalAccessor org.elasticsearch.common.joda.JodaDateFormatter.parse(java.lang.String)"}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AfmtWvbwy96-Rbl9WqnxlgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "StringMatcher.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.support.StringMatcher.test(java.lang.String)"}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Rdn0erNFvyK5zbBgfOdkIAAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "AbstractAggregationBuilder.java"}, "function": {"name": "int org.elasticsearch.search.aggregations.AbstractAggregationBuilder.hashCode()"}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k4CwdU4CSTQIafuMOuHuIAAAAAAAAABO"}} -{"Stackframe": {"file": {"name": "ServerHello.java"}, "function": {"name": "void sun.security.ssl.ServerHello$ServerHelloConsumer.consume(sun.security.ssl.ConnectionContext, java.nio.ByteBuffer)", "offset": 14}, "line": {"number": 865}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADQmur"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/outputs/logstash/sync.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/outputs/logstash.(*syncClient).Publish"}, "line": {"number": 142}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tEh-T90uBvlQfHt8UOCI5QAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run()", "offset": 4}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4iaBbZIIwXRBOYMSVscz2wAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.lambda$executeQueryPhase$2(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)"}, "line": {"number": 495}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ExnHmSyNgBER3hqgAfGNQAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Request.java"}, "function": {"name": "void org.eclipse.jetty.server.Request.(org.eclipse.jetty.server.HttpChannel, org.eclipse.jetty.server.HttpInput)", "offset": 40}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADQm1k"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/outputs/logstash/sync.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/outputs/logstash.(*syncClient).Publish"}, "line": {"number": 152}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEH"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 57}, "line": {"number": 562}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlwjf"}} -{"Stackframe": {"function": {"name": "ip_queue_xmit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_W56"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/auditd/audit_linux.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/auditd.buildMetricbeatEvent"}, "line": {"number": 524}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZBmcQL98TXLA7smZymDadQAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "org.elasticsearch.cluster.SnapshotsInProgress$ShardSnapshotStatus org.elasticsearch.cluster.SnapshotsInProgress$ShardSnapshotStatus.readFrom(org.elasticsearch.common.io.stream.StreamInput)", "offset": 8}, "line": {"number": 421}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YFEVU3rItUdMx9h2E0eYWAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "GrowableWriter.java"}, "function": {"name": "void org.apache.lucene.util.packed.GrowableWriter.(int, int, float)", "offset": 2}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JyDxDN68Rk17DgoptX6Z0QAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$$Lambda$6441+0x0000000801d1f7e0.apply(int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "329FQG0FRbGaRCox_CO5kwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$CachingAsyncSupplier$$Lambda$5104.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dRMG3BjNfH2se-egabnU-QAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "IngestService.java"}, "function": {"name": "void org.elasticsearch.ingest.IngestService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 17}, "line": {"number": 701}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9VuDy0oxai1wAfuGIiy1DQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "RestGetAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.document.RestGetAction.lambda$prepareRequest$0(org.elasticsearch.client.internal.node.NodeClient, org.elasticsearch.action.get.GetRequest, org.elasticsearch.rest.RestChannel)"}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QsYPvVY-RhG369aX-1lxEAAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "PerFieldMergeState.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.codecs.perfield.PerFieldMergeState.apply(java.util.Collection)", "offset": 2}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vfQyY8YDfkSdAL5L2iEyeAAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "ResourceLeakDetector.java"}, "function": {"name": "void io.netty.util.ResourceLeakDetector$DefaultResourceLeak.(java.lang.Object, java.lang.ref.ReferenceQueue, java.util.Set)", "offset": 10}, "line": {"number": 382}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAbg23"}} -{"Stackframe": {"file": {"name": "google.golang.org/grpc@v1.46.0/encoding/gzip/gzip.go"}, "function": {"name": "google.golang.org/grpc/encoding/gzip.(*writer).Close"}, "line": {"number": 83}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nHwJwC72NgoqK3ksZQ-0uQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "NamedGroup.java"}, "function": {"name": "sun.security.ssl.SSLPossession sun.security.ssl.NamedGroup$XDHScheme.createPossession(sun.security.ssl.NamedGroup, java.security.SecureRandom)"}, "line": {"number": 661}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mzExXCPAxvBlsYOcwqbUPAAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "LZ4WithPresetDictCompressionMode.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.LZ4WithPresetDictCompressionMode$LZ4WithPresetDictCompressor.compress(org.apache.lucene.store.ByteBuffersDataInput, org.apache.lucene.store.DataOutput)", "offset": 10}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7BvwwtuvWC96Hl7IBrycDgAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.write(org.elasticsearch.common.xcontent.ToXContent, java.io.OutputStream)", "offset": 4}, "line": {"number": 222}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0GDZ0kstVgc85_nBZh3f0QAAAAAAAACu"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 78}, "line": {"number": 577}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC0yEq"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/crypto/tls/tls.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common/transport.tlsDialWith"}, "line": {"number": 49}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Executors.java"}, "function": {"name": "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()"}, "line": {"number": 515}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HRZBzmi--pIW2SbSHQb5jgAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutionBuilderImpl.execute(com.amazonaws.http.HttpResponseHandler)", "offset": 7}, "line": {"number": 680}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Wft0IPWpEm0-yVfU_de9-wAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.access0(long, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4HKPFWqowSOx5a9GNnD5HAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "BulkShardRequest.java"}, "function": {"name": "org.elasticsearch.action.bulk.BulkItemRequest org.elasticsearch.action.bulk.BulkShardRequest.lambda$new$0(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "idAHvTfpCa_Lill3CvLIKwAAAAAAAAEC"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.messageReceived(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage, long)", "offset": 38}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OXXUWi3HnGXyNYANATzbXgAAAAAAAAD8"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.IndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 36}, "line": {"number": 275}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "v1W7ytIELFGX03kVi2GdeQAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "BulkByScrollParallelizationHelper.java"}, "function": {"name": "void org.elasticsearch.reindex.BulkByScrollParallelizationHelper.executeSlicedAction(org.elasticsearch.index.reindex.BulkByScrollTask, org.elasticsearch.index.reindex.AbstractBulkByScrollRequest, org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionListener, org.elasticsearch.client.internal.Client, org.elasticsearch.cluster.node.DiscoveryNode, java.lang.Runnable)", "offset": 3}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uw22TVsJZa9-V4t68di_cwAAAAAAAADK"}} -{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "void sun.security.ssl.SSLSocketImpl$AppOutputStream.write(byte[], int, int)", "offset": 35}, "line": {"number": 1253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-oi4"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/cpuacct.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.cpuacctStat"}, "line": {"number": 92}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABqcc"}} -{"Stackframe": {"file": {"name": "runtime/sys_linux_amd64.s"}, "function": {"name": "runtime.usleep"}, "line": {"number": 140}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XCfwHQ5uwsQ6p8AkMjNIUQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "OutputStreamIndexOutput.java"}, "function": {"name": "void org.apache.lucene.store.OutputStreamIndexOutput.writeByte(byte)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ"}} -{"Stackframe": {"function": {"name": "ep_insert"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5mFfstASu8Qeky6I-gL8pgAAAAAAAAEX"}} -{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.fs.UnixChannelFactory.open(int, sun.nio.fs.UnixPath, java.lang.String, sun.nio.fs.UnixChannelFactory$Flags, int)", "offset": 61}, "line": {"number": 248}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CZA6kFgNxUpf9UEoiwzNCgAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "InboundMessage.java"}, "function": {"name": "void org.elasticsearch.transport.InboundMessage.close()"}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lfjVNXK_x0C4X5O62984zgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.bytes.BytesReference, boolean, org.elasticsearch.xcontent.XContentType)"}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TQHHjILJSS1Y0hdQ8MODHQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.lang.Object java.util.TreeMap.get(java.lang.Object)"}, "line": {"number": 278}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8uVqqmQs2krZT40-iqFC3AAAAAAAAACP"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.awaitMatch(java.util.concurrent.LinkedTransferQueue$Node, java.util.concurrent.LinkedTransferQueue$Node, java.lang.Object, boolean, long)", "offset": 28}, "line": {"number": 732}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I_i_3enTR60S4qDgQ3zxCQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.dataformat.smile.SmileParser._findDecodedFromSymbols(int)"}, "line": {"number": 1696}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADk6"}} -{"Stackframe": {"function": {"name": "syscall_trace_enter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "t7HZvD3A-BdlZ9nZFUQKcwAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "DeflaterOutputStream.java"}, "function": {"name": "void java.util.zip.DeflaterOutputStream.close()", "offset": 7}, "line": {"number": 249}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gQianSpTZDlq5RnHMXwrkgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "SecondaryAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator.lambda$authenticateAndAttachToContext$2(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.support.SecondaryAuthentication)", "offset": 3}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "q9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 5}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACHg7-"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/reflect/value.go"}, "function": {"name": "reflect.Value.Set"}, "line": {"number": 1564}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_yyE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/io/io.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/file_integrity.hashFile"}, "line": {"number": 368}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YHYMTHTGkZ_iIp8kHq0sngAAAAAAAADB"}} -{"Stackframe": {"file": {"name": "ESLZ4Decompressor.java"}, "function": {"name": "int org.elasticsearch.lz4.ESLZ4Decompressor.decompress(byte[], int, byte[], int, int)", "offset": 36}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JN-dgFkoqSE-dHBUib5RMAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "LifecyclePolicy.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.LifecyclePolicy.toSteps(org.elasticsearch.client.Client)", "offset": 1}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "D0rVr9r2i8CRuvzOSp3RnAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "EsExecutors.java"}, "function": {"name": "boolean org.elasticsearch.common.util.concurrent.EsExecutors$ExecutorScalingQueue.offer(java.lang.Object)"}, "line": {"number": 293}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WY2_M7eCNrhZsLoJqmwFKwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 934}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tLATSye44dZj5qP3wd7yWgAAAAAAAAEp"}} -{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.CommonStats.(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 45}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mRpiA072sWnuzRZFuwjVhQAAAAAAAADh"}} -{"Stackframe": {"file": {"name": "FieldAndDocumentLevelSecurityRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.FieldAndDocumentLevelSecurityRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 31}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "auNwTX46Nq4EeEhNv4i6ZgAAAAAAAABf"}} -{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "java.nio.ByteBuffer sun.security.ssl.SSLSocketImpl.readApplicationRecord(java.nio.ByteBuffer)", "offset": 31}, "line": {"number": 1433}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y0WL2JQBITcSYBIL9j4tqwAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "HttpConnectionFactory.java"}, "function": {"name": "org.eclipse.jetty.io.Connection org.eclipse.jetty.server.HttpConnectionFactory.newConnection(org.eclipse.jetty.server.Connector, org.eclipse.jetty.io.EndPoint)"}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XK-bXPz5NoBIbF2mbBOD9AAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "int com.typesafe.config.impl.SimpleConfig.getInt(java.lang.String)"}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XmcQ4_6bleDFvrRZ47Cq9wAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.lambda$handleRequest$2(java.lang.String, org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 5}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChGI0"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.findrunnable"}, "line": {"number": 2720}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dAFeP-7qnlJ1DOWrOEwn8gAAAAAAAABh"}} -{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "void org.elasticsearch.transport.CopyBytesSocketChannel.doWrite(io.netty.channel.ChannelOutboundBuffer)", "offset": 24}, "line": {"number": 94}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLj_Y"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).value"}, "line": {"number": 370}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-7czc4vxjqwqbvj74H3wHQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ConcurrentHashMapLong.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.concurrent.ConcurrentHashMapLong.put(long, java.lang.Object)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 579}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7dD5p3Ho0u0ej68WdAREGgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 833}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M-j8415ZfwDLKgLNdquIVwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "NodesInfoRequest.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.node.info.NodesInfoRequest.(java.lang.String[])"}, "line": {"number": 27}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YIW3ncvjtyZJ9wUJFfRCfQAAAAAAAAB2"}} -{"Stackframe": {"file": {"name": "Lucene90BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.blocktree.Lucene90BlockTreeTermsWriter$TermsWriter.pushTerm(org.apache.lucene.util.BytesRef)", "offset": 24}, "line": {"number": 1075}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzeZ"}} -{"Stackframe": {"function": {"name": "audit_filter_inodes"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rBzmYlGYOYZti9GsU43JzAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "Scheduler.java"}, "function": {"name": "void org.elasticsearch.threadpool.Scheduler$ReschedulingRunnable.doRun()", "offset": 1}, "line": {"number": 203}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zihU2tJAUMTE3AA4bF0R6gAAAAAAAACA"}} -{"Stackframe": {"file": {"name": "queue.py"}, "function": {"name": "get", "offset": 26}, "line": {"number": 173}, "source": {"type": 2}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "12jTto5lOC7673Q37QQLjQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Phase.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.Phase org.elasticsearch.xpack.core.ilm.Phase.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.String)"}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tEh-T90uBvlQfHt8UOCI5QAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run()", "offset": 3}, "line": {"number": 304}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YUwJS6kVpV4XvYu7ZD33UwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "MatchOps.java"}, "function": {"name": "java.lang.Object java.util.stream.MatchOps$MatchOp.evaluateSequential(java.util.stream.PipelineHelper, java.util.Spliterator)"}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RORjHmtUEjxfs01h1UiB-QAAAAAAAAFW"}} -{"Stackframe": {"file": {"name": "IndicesAliasesRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.IndicesAliasesRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 55}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6kGFmWTpr-Q8AP6IAJSbNAAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 4}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgR_z"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/iface.go"}, "function": {"name": "runtime.convT32"}, "line": {"number": 372}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.LockValidatingDirectoryWrapper.createOutput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAADk_Y"}} -{"Stackframe": {"file": {"name": "fmt/print.go"}, "function": {"name": "fmt.Sprintf"}, "line": {"number": 220}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABBAk"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.schedule"}, "line": {"number": 3237}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLqEd"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).literalStore"}, "line": {"number": 958}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL3g3"}} -{"Stackframe": {"function": {"name": "new_inode_pseudo"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s0wdF_TZChStCFZRo1NX4wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "AbstractReferenceCountedByteBuf.java"}, "function": {"name": "boolean io.netty.buffer.AbstractReferenceCountedByteBuf.handleRelease(boolean)", "offset": 1}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC"}} -{"Stackframe": {"function": {"name": "sock_write_iter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gyQVNj6p9QSSg0Kib22CpQAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeMap(java.util.Map, org.elasticsearch.common.io.stream.Writeable$Writer, org.elasticsearch.common.io.stream.Writeable$Writer)", "offset": 2}, "line": {"number": 623}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "huy3RilOiTqQSYKV3mmOsAAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "boolean io.netty.handler.ssl.SslHandler.runDelegatedTasks(boolean)", "offset": 2}, "line": {"number": 1556}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABWWe2"}} -{"Stackframe": {"file": {"name": "encoding/gob/decode.go"}, "function": {"name": "encoding/gob.(*Decoder).decodeStruct"}, "line": {"number": 474}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_js9oXEovuvcenIstBqeVgAAAAAAAACu"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "void org.elasticsearch.common.settings.Settings.(java.util.Map, org.elasticsearch.common.settings.SecureSettings)", "offset": 20}, "line": {"number": 123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fiqNEC4hTNfpjbFJ8zPtkAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.ClusterState$ClusterStateDiff.apply(java.lang.Object)"}, "line": {"number": 734}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rko_YbcnDiBZxFuLrPp4EQAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener.completeWith(org.elasticsearch.action.ActionListener, org.elasticsearch.common.CheckedSupplier)", "offset": 11}, "line": {"number": 445}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K24S1jUATvUFIEv3zAUZHgAAAAAAAAEV"}} -{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.tasks.TaskManager.register(java.lang.String, java.lang.String, org.elasticsearch.tasks.TaskAwareRequest, boolean)", "offset": 25}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DkUR0XHgP6Lm04e4ruEe3AAAAAAAAABN"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lookForExistingAuthentication(java.util.function.Consumer)", "offset": 15}, "line": {"number": 396}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "ForkJoinPool.java"}, "function": {"name": "void java.util.concurrent.ForkJoinPool.runWorker(java.util.concurrent.ForkJoinPool$WorkQueue)", "offset": 4}, "line": {"number": 1594}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_I187UwkDjABEvmHmR4uSwAAAAAAAABt"}} -{"Stackframe": {"file": {"name": "TransportNodesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation(org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction$NodeStatsRequest)", "offset": 2}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V1XYcC3pffYSxQUCpFSICQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "TransportIndicesStatsAction.java"}, "function": {"name": "org.elasticsearch.common.io.stream.Writeable org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation(org.elasticsearch.action.support.broadcast.BroadcastRequest, org.elasticsearch.cluster.routing.ShardRouting)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ActionRunnable.java"}, "function": {"name": "void org.elasticsearch.action.ActionRunnable$2.accept(java.lang.Object)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N_yYwV3UjysQqW64LfGQIgAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 3}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChtv8"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.exitsyscall"}, "line": {"number": 3785}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eXYWOJkkdfixgb7a2cb3dgAAAAAAAALA"}} -{"Stackframe": {"file": {"name": "BigInteger.java"}, "function": {"name": "java.math.BigInteger java.math.BigInteger.oddModPow(java.math.BigInteger, java.math.BigInteger)", "offset": 155}, "line": {"number": 3081}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s7vZritmiKufeJDzCX_JRAAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.lambda$doAuthenticate$1(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.authc.Authenticator$Result)", "offset": 1}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lFZNtRp_xBkoen7V_iPn8QAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "LambdaForm$MH"}, "function": {"name": "java.lang.Object java.lang.invoke.LambdaForm$MH+0x00000008013b1800.invoke(java.lang.Object, long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxClI"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/container.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.isContainerizedCgroup"}, "line": {"number": 47}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAiyFW"}} -{"Stackframe": {"function": {"name": "__alloc_skb"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ieGArmeUfP8nhRBcw-dF4QAAAAAAAACl"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.writePoints(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)", "offset": 17}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jl0Few0KXqirBZp0WuOd2wAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$snapshotShard$57(org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.apache.lucene.index.IndexCommit, org.elasticsearch.snapshots.SnapshotId, java.util.List, org.elasticsearch.index.shard.ShardId, org.elasticsearch.common.blobstore.BlobContainer, java.lang.String, org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots, org.elasticsearch.Version, java.lang.String, java.util.Set, org.elasticsearch.action.ActionListener, java.util.Collection)", "offset": 15}, "line": {"number": 1773}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IlQ1XNLSC8AG8SGKzC1MsQAAAAAAAABN"}} -{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.IndexShardStats org.elasticsearch.indices.IndicesService.indexShardStats(org.elasticsearch.indices.IndicesService, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 24}, "line": {"number": 466}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAC1itT"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/queue/diskqueue/queue.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/queue/diskqueue.NewQueue.func2"}, "line": {"number": 212}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6lofCsTYrZTgxumxKdLXaAAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "RateLimitedIndexOutput.java"}, "function": {"name": "void org.apache.lucene.store.RateLimitedIndexOutput.writeBytes(byte[], int, int)", "offset": 2}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m7bYZJVGKqBJCDFyvYRsbQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "java.lang.String[] java.lang.String.split(java.lang.String)"}, "line": {"number": 3207}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E7IGle0kfvhelE-3QmeBCwAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaResult.runPostReplicaActions(org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 598}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "T5Q31GDfksV6CJ4DGSPDfwAAAAAAAABU"}} -{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "java.util.concurrent.ConcurrentHashMap$Node java.util.concurrent.ConcurrentHashMap$Traverser.advance()", "offset": 9}, "line": {"number": 3367}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bRe-bTXmo-KMTRcTpmBm1QAAAAAAAAFs"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "int org.apache.lucene.index.DefaultIndexingChain.processField(int, org.apache.lucene.index.IndexableField, long, int)", "offset": 50}, "line": {"number": 561}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w4xuPSDCtEkAq2ZfrK0cBgAAAAAAAACo"}} -{"Stackframe": {"file": {"name": "ServerKeyExchange.java"}, "function": {"name": "void sun.security.ssl.ServerKeyExchange$ServerKeyExchangeConsumer.consume(sun.security.ssl.ConnectionContext, java.nio.ByteBuffer)", "offset": 32}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tiFd8nRg2cPSJT6QKmttjQAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "OutputStreamIndexOutput.java"}, "function": {"name": "void org.apache.lucene.store.OutputStreamIndexOutput.close()", "offset": 11}, "line": {"number": 94}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H-M-AAeStmxxhLg98P43KwAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "FutureTask.java"}, "function": {"name": "boolean java.util.concurrent.FutureTask.runAndReset()", "offset": 9}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TTvJ5_z-0po5hbnYEq-wrAAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.handleSuccessResponse(com.amazonaws.http.AmazonHttpClient$RequestExecutor$ExecOneRequestParams, org.apache.http.client.protocol.HttpClientContext, int)", "offset": 7}, "line": {"number": 1434}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChdmz"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/symtab.go"}, "function": {"name": "runtime.funcMaxSPDelta"}, "line": {"number": 1057}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAF0Ia"}} -{"Stackframe": {"function": {"name": "__audit_inode"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cjAwaTx5jh8YbU_H2wVBmwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "HttpObjectAggregator.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpObjectAggregator.finishAggregation(io.netty.buffer.ByteBufHolder)"}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GYKajMbKzWsBIH7EDOQOuwAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "TermsHashPerField.java"}, "function": {"name": "boolean org.apache.lucene.index.TermsHashPerField.start(org.apache.lucene.index.IndexableField, boolean)", "offset": 1}, "line": {"number": 345}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8T0AfTas4UaJM-evU8y7oQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.lambda$write$1(org.elasticsearch.common.blobstore.BlobContainer, java.lang.String, boolean, org.elasticsearch.common.bytes.BytesReference)", "offset": 1}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TymAEDD545ov_oP4db3SYQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ForUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.ForUtil.prefixSum32(long[], long)", "offset": 1}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uxWu7bOCGuvy3Ir42torwwAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$6450+0x00000008023d7bb8.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m2-tH33cq1FP2Q7Is62J0gAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$extractToken$13(java.util.function.Consumer, org.elasticsearch.xpack.core.security.authc.AuthenticationToken)"}, "line": {"number": 445}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kV6TzGOHAAtubwqgXU0dkAAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "RestCancellableNodeClient.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestCancellableNodeClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 2}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(java.lang.String, org.elasticsearch.transport.TransportRequest, boolean, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLLiE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/path/filepath/path.go"}, "function": {"name": "path/filepath.Walk"}, "line": {"number": 406}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lICW2gRy3TXlIYomtjSJtwAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.copyOneDoc(org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader, int)", "offset": 5}, "line": {"number": 518}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rr9ydfUnJMumBkVuKO3DEQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "HttpContentEncoder.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpContentEncoder.encodeFullResponse(io.netty.handler.codec.http.HttpResponse, io.netty.handler.codec.http.HttpContent, java.util.List)", "offset": 1}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "W_JPjd1DkAyoubIfHSaORAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$4690.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3xESPGl_P5B1-cPmnX20jwAAAAAAAABI"}} -{"Stackframe": {"file": {"name": "HandshakeContext.java"}, "function": {"name": "void sun.security.ssl.HandshakeContext.dispatch(byte, java.nio.ByteBuffer)", "offset": 15}, "line": {"number": 443}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xRkFHepRLQFnp0xjaPT5XgAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeBulkItems$21(org.elasticsearch.action.ActionListener, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult)"}, "line": {"number": 825}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1vmWfRl7JvnIelrwmbOFDwAAAAAAAABi"}} -{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 23}, "line": {"number": 222}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAH96E"}} -{"Stackframe": {"file": {"name": "net/net.go"}, "function": {"name": "net.(*conn).Read"}, "line": {"number": 184}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rGGuFHDbckOYS7UNGM0EFAAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "ReplicationTracker.java"}, "function": {"name": "org.elasticsearch.index.shard.ReplicationGroup org.elasticsearch.index.seqno.ReplicationTracker.calculateReplicationGroup()", "offset": 1}, "line": {"number": 931}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l9UahhdYTNQ-nashs5vHOQAAAAAAAABy"}} -{"Stackframe": {"file": {"name": "HierarchyCircuitBreakerService.java"}, "function": {"name": "org.elasticsearch.indices.breaker.HierarchyCircuitBreakerService$MemoryUsage org.elasticsearch.indices.breaker.HierarchyCircuitBreakerService.memoryUsed(long)", "offset": 12}, "line": {"number": 362}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cGBPCS3aPXXlmHmrx5RsEQAAAAAAAABv"}} -{"Stackframe": {"file": {"name": "JvmStats.java"}, "function": {"name": "org.elasticsearch.monitor.jvm.JvmStats org.elasticsearch.monitor.jvm.JvmStats.jvmStats()", "offset": 7}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FiQMwA9XcchO9iDh-bURNQAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$resolveAuthorizationInfo$1(org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.permission.Role)", "offset": 5}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jA6JkQ0PFn46mJYMDk3jtwAAAAAAAABU"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readGenericMap(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier, org.elasticsearch.common.CheckedFunction)", "offset": 14}, "line": {"number": 343}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pDmevRXuPcE63RgyWWd9hwAAAAAAAADd"}} -{"Stackframe": {"file": {"name": "TimeseriesLifecycleType.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.TimeseriesLifecycleType.getOrderedActions(org.elasticsearch.xpack.core.ilm.Phase)", "offset": 7}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vXkwfvj7jlhBJyKg0XGvywAAAAAAAABi"}} -{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 23}, "line": {"number": 240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qGs-5c7rr1dopGxSByMUNAAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "ThreadLocal.java"}, "function": {"name": "java.lang.Object java.lang.ThreadLocal.get(java.lang.Thread)", "offset": 5}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X5thV8nz4pOhojw-NPFjewAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "BulkItemResponse.java"}, "function": {"name": "void org.elasticsearch.action.bulk.BulkItemResponse.(org.elasticsearch.index.shard.ShardId, org.elasticsearch.common.io.stream.StreamInput)", "offset": 3}, "line": {"number": 361}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z06Bh8Aq03gZLJqjiOLqkQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "BulkProcessor.java"}, "function": {"name": "void org.elasticsearch.action.bulk.BulkProcessor.execute(org.elasticsearch.action.bulk.BulkRequest, long)"}, "line": {"number": 540}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6_xlTgG59vnh1ZByxJjaSwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "DisjunctionDISIApproximation.java"}, "function": {"name": "int org.apache.lucene.search.DisjunctionDISIApproximation.nextDoc()"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFrXl"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.entersyscall"}, "line": {"number": 3142}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nXVSnd1Oj_luwmbCDoUZ0AAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "GlobalCheckpointSyncAction.java"}, "function": {"name": "void org.elasticsearch.index.seqno.GlobalCheckpointSyncAction.shardOperationOnReplica(org.elasticsearch.index.seqno.GlobalCheckpointSyncAction$Request, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AU1UxR09cGAZB2y_cCThHQAAAAAAAACO"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "int org.apache.lucene.util.compress.LZ4.decompress(org.apache.lucene.store.DataInput, int, byte[], int)", "offset": 30}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6HagrPNegEb1JoaDvxlnywAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseNonDynamicArray(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, java.lang.String)", "offset": 5}, "line": {"number": 702}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w52v69QzC-f_wTnaeDz8vwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "TransportIndicesStatsAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation(org.elasticsearch.action.admin.indices.stats.IndicesStatsRequest, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionListener)"}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACsroG"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/pipeline/client.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/pipeline.(*client).publish"}, "line": {"number": 101}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hpS1QtdrBQjGg-LCbfqeSAAAAAAAAFrc"}} -{"Stackframe": {"function": {"name": "br_handle_frame_finish"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h4PkPbRpl4MeEF3x9WpPVAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Releasables.java"}, "function": {"name": "void org.elasticsearch.core.Releasables.close(org.elasticsearch.core.Releasable)"}, "line": {"number": 32}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vtOmTuUGvKYiQRK_O9kHuwAAAAAAAACt"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "long[] org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.writeValues(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 28}, "line": {"number": 198}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "blY2Zoz09t8zvWWEkNwQ4QAAAAAAAACu"}} -{"Stackframe": {"file": {"name": "SSLEngineInputRecord.java"}, "function": {"name": "sun.security.ssl.Plaintext[] sun.security.ssl.SSLEngineInputRecord.decodeInputRecord(java.nio.ByteBuffer)", "offset": 35}, "line": {"number": 239}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3le9lVb1YZlOVDHLOf4bawAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "ElasticsearchConcurrentMergeScheduler.java"}, "function": {"name": "void org.elasticsearch.index.engine.ElasticsearchConcurrentMergeScheduler.doMerge(org.apache.lucene.index.MergeScheduler$MergeSource, org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 22}, "line": {"number": 94}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LrFpoAJGQs12Bwm9KGK0lgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Lucene86PointsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene86.Lucene86PointsWriter.(org.apache.lucene.index.SegmentWriteState)"}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oufsJu2_HcVwkGb83UqFOwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportBroadcastByNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 392}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kSpDtM4aoNKYBm9KH33NoQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SearchActionListener.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchActionListener.onResponse(java.lang.Object)"}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACvLMw"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/regexp.go"}, "function": {"name": "regexp.quote"}, "line": {"number": 333}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEj7M"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcsweep.go"}, "function": {"name": "runtime.sweepone"}, "line": {"number": 233}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fwrSDgHrTXpAEmJ4bHy8MwAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "IndicesQueryCache.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.elasticsearch.indices.IndicesQueryCache$CachingWeightWrapper.bulkScorer(org.apache.lucene.index.LeafReaderContext)", "offset": 1}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2vX1VQ8rxHA7GBHUrWVCPQAAAAAAAAD1"}} -{"Stackframe": {"file": {"name": "AccessControlContext.java"}, "function": {"name": "java.security.AccessControlContext java.security.AccessControlContext.optimize()", "offset": 74}, "line": {"number": 642}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LRnop9vMb-AhS9R35OjpowAAAAAAAABz"}} -{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "void org.elasticsearch.cluster.DiffableUtils$MapDiff.(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)", "offset": 13}, "line": {"number": 406}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "REOZDMGevKohDmxWFx6eeAAAAAAAAACa"}} -{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.lambda$consumeToken$0(org.elasticsearch.xpack.core.security.authc.Realm, org.elasticsearch.xpack.core.security.authc.AuthenticationToken, java.util.concurrent.atomic.AtomicReference, java.util.concurrent.atomic.AtomicReference, long, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.authc.Authenticator$Context, java.util.Map, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 15}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "A09bGE-41ttRDohqtXSIwgAAAAAAAAFz"}} -{"Stackframe": {"file": {"name": "HttpURLConnection.java"}, "function": {"name": "void sun.net.www.protocol.http.HttpURLConnection.plainConnect0()", "offset": 60}, "line": {"number": 1188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CuV4zhXsbstpo0uwp_uAFgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "SessionOutputBufferImpl.java"}, "function": {"name": "void org.apache.http.impl.io.SessionOutputBufferImpl.flush()"}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nj1qzrl6L5k069vQYWrfDwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ChainInputFactory.java"}, "function": {"name": "org.elasticsearch.xpack.watcher.input.chain.ChainInput org.elasticsearch.xpack.watcher.input.chain.ChainInputFactory.parseInput(java.lang.String, org.elasticsearch.xcontent.XContentParser)"}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Z-a7RegEMU1bJQCzduDXAwAAAAAAAABI"}} -{"Stackframe": {"file": {"name": "ClusterApplierRecordingService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierRecordingService.updateStats(org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder)", "offset": 5}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.decodeJdkCompatible(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf)", "offset": 37}, "line": {"number": 1267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mMCAr2lIhv406zmoHkIB0AAAAAAAAABY"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.shard.DocsStats org.elasticsearch.index.engine.Engine.docsStats(org.apache.lucene.index.IndexReader)", "offset": 12}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IXD9DfG2D0upvhc5-UHkHQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "WorkerBulkByScrollTaskState.java"}, "function": {"name": "void org.elasticsearch.index.reindex.WorkerBulkByScrollTaskState$DelayedPrepareBulkRequest.lambda$new$0(org.elasticsearch.core.TimeValue, java.lang.Runnable)", "offset": 1}, "line": {"number": 254}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApymx"}} -{"Stackframe": {"function": {"name": "mutex_lock"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGKP7"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.read"}, "line": {"number": 686}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD7KK"}} -{"Stackframe": {"function": {"name": "mutex_spin_on_owner"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8IFclPxnlaUsspb5D_RRJwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "org.elasticsearch.cluster.metadata.Metadata$Builder org.elasticsearch.cluster.metadata.Metadata$Builder.indices(org.elasticsearch.common.collect.ImmutableOpenMap)"}, "line": {"number": 1145}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN9MB"}} -{"Stackframe": {"function": {"name": "kernfs_seq_start"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TmF3E40HD59IshdvdO9cWAAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "EmbeddedChannel.java"}, "function": {"name": "boolean io.netty.channel.embedded.EmbeddedChannel.writeOutbound(java.lang.Object[])", "offset": 11}, "line": {"number": 411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VOUNVzVyt4QutMt6oZxNlQAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.updateDocs(org.apache.lucene.index.Term, java.util.List, org.apache.lucene.index.IndexWriter)", "offset": 3}, "line": {"number": 1372}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGxrE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file_unix.go"}, "function": {"name": "os.openFileNolog"}, "line": {"number": 224}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OWoia3OO91L6Q6k2Ypn2XgAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "boolean java.nio.file.Files.exists(java.nio.file.Path, java.nio.file.LinkOption[])", "offset": 3}, "line": {"number": 2514}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCXY"}} -{"Stackframe": {"function": {"name": "__vfs_getxattr"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABF7I"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.retake"}, "line": {"number": 5307}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACHEw"}} -{"Stackframe": {"function": {"name": "flush_tlb_mm_range"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QN4Q0wqGRE_9JxLmhmELwwAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.map(java.util.Map, boolean, boolean)", "offset": 7}, "line": {"number": 886}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSUu"}} -{"Stackframe": {"function": {"name": "vfs_open"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zH7ILzPBEqmN9DwEaweygQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gk079EBdEVh5ErpJ6XBaYwAAAAAAAABi"}} -{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesProducer org.apache.lucene.index.SegmentReader.initDocValuesProducer()", "offset": 13}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pvwvvHhCfLnK-ZS2bhWZ3gAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "BytesRefBuilder.java"}, "function": {"name": "void org.apache.lucene.util.BytesRefBuilder.copyBytes(org.apache.lucene.util.BytesRef)", "offset": 1}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-Q6o"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.normalizeCompound"}, "line": {"number": 236}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K_1eR84MDkHtmAgcOm681AAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.file.attribute.FileTime java.nio.file.Files.getLastModifiedTime(java.nio.file.Path, java.nio.file.LinkOption[])"}, "line": {"number": 2402}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OXWqC4F9CbM_9TaYs7enGQAAAAAAAAC6"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.apply(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.support.ActionFilterChain)", "offset": 32}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XsPRRgjkXM-VJurhpYWAKgAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelReadComplete()", "offset": 8}, "line": {"number": 482}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mUB0X1duvhm3HnTYomF_uwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "BKDReader.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDReader.visitDocIDs(org.apache.lucene.store.IndexInput, long, org.apache.lucene.index.PointValues$IntersectVisitor)", "offset": 6}, "line": {"number": 424}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiKus"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.Sysinfo"}, "line": {"number": 837}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dits_fp6Jn13y-sS-prOMgAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.inboundMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage)", "offset": 7}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nob3zMVK_yh-lnKj6J3qXwAAAAAAAABT"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.doNext(int)", "offset": 17}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GvkVYsvx7fa-bH8PVl3QfQAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.decPendingAndFinishIfNeeded()", "offset": 2}, "line": {"number": 411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TCG4af_JTpWiKD6yl45wSwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$$Lambda$6324+0x00000008023c0260.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "r8jPkIagwkcKu3VFH_5eFQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.elasticsearch.search.internal.ContextIndexSearcher$1.bulkScorer(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 233}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9P399qv1PUm-fcjEeECPlgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "SocketAccess.java"}, "function": {"name": "java.lang.Void org.elasticsearch.repositories.s3.SocketAccess.lambda$doPrivilegedVoid$0(java.lang.Runnable)"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EjqVtFve0NBSahnBSZ385QAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "boolean java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.add(java.lang.Runnable)"}, "line": {"number": 1127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "void org.apache.lucene.search.ReferenceManager.maybeRefreshBlocking()", "offset": 5}, "line": {"number": 253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nnCec0a2-ZcuYpnWUHHz2AAAAAAAAACZ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 11}, "line": {"number": 94}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "37FBA0FpXnoFexN6EMFOzwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "HeaderWarning.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.logging.HeaderWarning.escapeBackslashesAndQuotes(java.lang.String)", "offset": 1}, "line": {"number": 225}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.LockValidatingDirectoryWrapper.createOutput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 1}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADH9wk"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/queue/memqueue/eventloop.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/queue/memqueue.(*bufferingEventLoop).run"}, "line": {"number": 310}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0WHxvAaEQdTf5grBjCUuBgAAAAAAAABS"}} -{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "java.lang.Object com.carrotsearch.hppc.ObjectObjectHashMap.get(java.lang.Object)", "offset": 12}, "line": {"number": 389}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IMZdWEyJZPNwgzA4EPZIdwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$WriteReplicaResult$1.onSuccess(boolean)"}, "line": {"number": 372}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4RMjMvBCxMjR_OY2K7clCwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "DelegatingChannelPromiseNotifier.java"}, "function": {"name": "void io.netty.channel.DelegatingChannelPromiseNotifier.operationComplete(io.netty.util.concurrent.Future)"}, "line": {"number": 31}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "J5iIW5NrOxoU8Bgf5qpxrAAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "IndexShardRoutingTable.java"}, "function": {"name": "java.util.List org.elasticsearch.cluster.routing.IndexShardRoutingTable.shardsWithState(org.elasticsearch.cluster.routing.ShardRoutingState)", "offset": 4}, "line": {"number": 657}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "t7DkRGcQiDMfHx06PCzMpQAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.applyIndexOperationOnReplica(long, long, long, long, boolean, org.elasticsearch.index.mapper.SourceToParse)"}, "line": {"number": 911}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACET5Y"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map_faststr.go"}, "function": {"name": "runtime.evacuate_faststr"}, "line": {"number": 453}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "BulkScorer.java"}, "function": {"name": "void org.apache.lucene.search.BulkScorer.score(org.apache.lucene.search.LeafCollector, org.apache.lucene.util.Bits)"}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b-SvsIOA8Aq1x7Kof8KBfgAAAAAAAADu"}} -{"Stackframe": {"file": {"name": "IndexRequest.java"}, "function": {"name": "void org.elasticsearch.action.index.IndexRequest.(org.elasticsearch.index.shard.ShardId, org.elasticsearch.common.io.stream.StreamInput)", "offset": 58}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACjILG"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strconv/atof.go"}, "function": {"name": "strconv.ParseFloat"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TphZkORhkBDEbRDMofKltAAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 9}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AY1qQl7FueXylVMIipRQaQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "SearchRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.SearchRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)"}, "line": {"number": 19}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cgIdU-uvJLoO1WrtsV2P8gAAAAAAAFf4"}} -{"Stackframe": {"function": {"name": "ena_io_poll"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "omA88yQfT91566xoyEY7sAAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "SingleObjectCache.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.SingleObjectCache.getOrRefresh()", "offset": 4}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w8RCLjmiiHWrWWaQIkgrJgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ByteBufferStreamInput.java"}, "function": {"name": "byte org.elasticsearch.common.io.stream.ByteBufferStreamInput.readByte()"}, "line": {"number": 34}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAADgcq2"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_docker_metadata/add_docker_metadata.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_docker_metadata.(*addDockerMetadata).getProcessCgroups"}, "line": {"number": 276}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x3IEgecNM_mSugRYX-4FsAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.dispatchedShardOperationOnPrimary(org.elasticsearch.action.support.replication.ReplicatedWriteRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h3PxPMxQ128l0j8OgQ1S2QAAAAAAAABi"}} -{"Stackframe": {"file": {"name": "BoolQueryBuilder.java"}, "function": {"name": "org.elasticsearch.index.query.QueryBuilder org.elasticsearch.index.query.BoolQueryBuilder.doRewrite(org.elasticsearch.index.query.QueryRewriteContext)", "offset": 6}, "line": {"number": 360}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OCs2nprooswP3rgr4wSJMQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "TranslogWriter.java"}, "function": {"name": "void org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint(java.nio.channels.FileChannel, java.nio.file.Path, org.elasticsearch.index.translog.Checkpoint)"}, "line": {"number": 597}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a6Hga5OmTDWSqeaHOaTNdgAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "BulkByScrollParallelizationHelper.java"}, "function": {"name": "void org.elasticsearch.index.reindex.BulkByScrollParallelizationHelper$1.onResponse(java.lang.Void)"}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ro0xTS_XLS48c7gOvsUW-QAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "LockSupport.java"}, "function": {"name": "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)", "offset": 7}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gEtqzxSW2T09YOfj4Wq1OQAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient.execute(com.amazonaws.Request, com.amazonaws.http.HttpResponseHandler, com.amazonaws.http.HttpResponseHandler, com.amazonaws.http.ExecutionContext)"}, "line": {"number": 524}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JVUh1Ywzr4ZpnNjFATC-0QAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIfED"}} -{"Stackframe": {"function": {"name": "file_write_and_wait_range"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4v1ONonFI0iGn5c_bvMoqgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "LongPipeline.java"}, "function": {"name": "long java.util.stream.LongPipeline.sum()"}, "line": {"number": 456}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Mo8MRZcTTA5MSH5mIc8c7wAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.updateChildren()"}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-o6k"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/memory.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.memoryData"}, "line": {"number": 119}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RHCo9S6JLvJhQuHnIgHq_AAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "Hasher.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authc.support.Hasher.verifyBcryptHash(org.elasticsearch.common.settings.SecureString, char[])", "offset": 4}, "line": {"number": 695}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PaUpsB-9YmjyzvUTmCWUJQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ReplicationOperation.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.ReplicationOperation.access$300(org.elasticsearch.action.support.replication.ReplicationOperation)"}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ao-qbhwnTsLVPtnLeVPHtgAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "DanglingIndicesState.java"}, "function": {"name": "void org.elasticsearch.gateway.DanglingIndicesState.processDanglingIndices(org.elasticsearch.cluster.metadata.Metadata)", "offset": 4}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iTk3U2-62NFOFRUZ1dKBrwAAAAAAAABt"}} -{"Stackframe": {"file": {"name": "Rewriteable.java"}, "function": {"name": "void org.elasticsearch.index.query.Rewriteable.rewriteAndFetch(org.elasticsearch.index.query.Rewriteable, org.elasticsearch.index.query.QueryRewriteContext, org.elasticsearch.action.ActionListener, int)", "offset": 19}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0uQfhygt3iA5h-6EqK0MPAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SocketDispatcher.java"}, "function": {"name": "int sun.nio.ch.SocketDispatcher.read(java.io.FileDescriptor, long, int)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXKVS"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/gopkg.in/yaml.v2@v2.3.0/parserc.go"}, "function": {"name": "gopkg.in/yaml%2ev2.yaml_parser_parse_block_mapping_key"}, "line": {"number": 47}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aTMNVHETyzaTiTA3xRl8fgAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "org.elasticsearch.cluster.routing.RoutingNodes org.elasticsearch.cluster.ClusterState.getRoutingNodes()", "offset": 3}, "line": {"number": 307}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.applyInternal(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.ActionFilterChain, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 21}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DJAMC8tUl4_oL0LoeNoUgQAAAAAAAACV"}} -{"Stackframe": {"file": {"name": "TransportBroadcastByNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived(org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$NodeRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 12}, "line": {"number": 442}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bojlkH6U8-uq6rXJn3yJDAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$7344+0x0000000802518e48.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GpDSkvmGYDUeFcHbEkrWpwAAAAAAAACC"}} -{"Stackframe": {"file": {"name": "CompositeByteBuf.java"}, "function": {"name": "io.netty.buffer.CompositeByteBuf$Component io.netty.buffer.CompositeByteBuf.newComponent(io.netty.buffer.ByteBuf, int)", "offset": 23}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CsFZyzJjUXmiy5xzST-i9QAAAAAAAAEr"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 16}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACq5ok"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/crypto/tls/conn.go"}, "function": {"name": "crypto/tls.(*Conn).sendAlertLocked"}, "line": {"number": 193}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlWJ3"}} -{"Stackframe": {"function": {"name": "tcp_push"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction$1.handleResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YgvoZ6DleZJd_ACRhoNarAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Netty4WriteThrottlingHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4WriteThrottlingHandler.flush(io.netty.channel.ChannelHandlerContext)"}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FGIyujYFiBFB20lehksXnQAAAAAAAABu"}} -{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "void co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.onEvent(co.elastic.apm.agent.report.ReportingEvent, long, boolean)", "offset": 13}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIer"}} -{"Stackframe": {"function": {"name": "ip_rcv"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b"}} -{"Stackframe": {"function": {"name": "__wake_up_common_lock"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXvWE"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.marshalUnmarshal"}, "line": {"number": 273}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7Slkc3C9A3eZsO9dv0O2hwAAAAAAAAB3"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap.putMapEntries(java.util.Map, boolean)", "offset": 16}, "line": {"number": 513}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEiiH"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcscavenge.go"}, "function": {"name": "runtime.(*pageAlloc).scavengeOne"}, "line": {"number": 612}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACw1iY"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/prometheus/procfs@v0.6.0/stat.go"}, "function": {"name": "github.com/prometheus/procfs.FS.NewStat"}, "line": {"number": 161}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H-li-VPX4V5GB-C8EGJQQwAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "MessageToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 6}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD7pU"}} -{"Stackframe": {"function": {"name": "up_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YMf1vN4Xj82X8azesbKqWQAAAAAAAACp"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 16}, "line": {"number": 642}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGn3V"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/internal/poll/fd_unix.go"}, "function": {"name": "internal/poll.(*FD).Pwrite"}, "line": {"number": 303}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACp0JQ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/math/big/int.go"}, "function": {"name": "crypto/rsa.DecryptOAEP"}, "line": {"number": 473}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aRenpQIgJLChKRBMZRmqWwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesProducer.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene80.Lucene80DocValuesProducer$SparseNumericDocValues.docID()"}, "line": {"number": 489}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iGiRuqMs11HNWy379BhNywAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction$$Lambda$6149.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CKu0PvYQAatp5R-zTCMMbwAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "SimpleConfigObject.java"}, "function": {"name": "void com.typesafe.config.impl.SimpleConfigObject.(com.typesafe.config.ConfigOrigin, java.util.Map, com.typesafe.config.impl.ResolveStatus, boolean)", "offset": 9}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7W2_sm2QgBa4k9InHLd1AwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$22.nextDoc()"}, "line": {"number": 949}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DjB9rnpR9s2OI-jlVfuXnAAAAAAAAADm"}} -{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.handleIncomingRequest(org.elasticsearch.http.HttpRequest, org.elasticsearch.http.HttpChannel, java.lang.Exception)", "offset": 73}, "line": {"number": 461}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lW9g6oXBy08ikQZIsz5UggAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Objects.java"}, "function": {"name": "int java.util.Objects.hash(java.lang.Object[])"}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9Szc52M1pmmLilEhw1pwVgAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "BytesRefBuilder.java"}, "function": {"name": "void org.apache.lucene.util.BytesRefBuilder.append(org.apache.lucene.util.BytesRef)"}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MArU81s9Ac0mGAWPlJOmoQAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "BytesArray.java"}, "function": {"name": "void org.elasticsearch.common.bytes.BytesArray.writeTo(java.io.OutputStream)"}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC3"}} -{"Stackframe": {"file": {"name": "NativeFSLockFactory.java"}, "function": {"name": "void org.apache.lucene.store.NativeFSLockFactory$NativeFSLock.ensureValid()", "offset": 20}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hbxxvxJOxfsV5OtWN8pLQQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "NativeBuffer.java"}, "function": {"name": "void sun.nio.fs.NativeBuffer.release()"}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Vrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "NotifyOnceListener.java"}, "function": {"name": "void org.elasticsearch.action.NotifyOnceListener.onResponse(java.lang.Object)", "offset": 1}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLL0S"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/path/filepath/path_unix.go"}, "function": {"name": "path/filepath.join"}, "line": {"number": 45}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "47MrLZnclADY7wpsxDgPSQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.lang.Object java.util.TreeMap$EntryIterator.next()"}, "line": {"number": 1511}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAD9SJT"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/mb/module/wrapper.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/mb/module.(*metricSetWrapper).fetch"}, "line": {"number": 242}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OgrnocamUAo62UJ-c4BU1gAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ChannelDuplexHandler.java"}, "function": {"name": "void io.netty.channel.ChannelDuplexHandler.flush(io.netty.channel.ChannelHandlerContext)"}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rthKnkNDFgynN38bWPneAgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction$$Lambda$8472+0x0000000802768488.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IJGZm_kDZxOYo3A2Fee1WQAAAAAAAAEg"}} -{"Stackframe": {"file": {"name": "SSLCipher.java"}, "function": {"name": "sun.security.ssl.Plaintext sun.security.ssl.SSLCipher$T13GcmReadCipherGenerator$GcmReadCipher.decrypt(byte, java.nio.ByteBuffer, byte[])", "offset": 53}, "line": {"number": 1976}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4tQB4iVnNlUP_drXIryOCAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ManagementFactory.java"}, "function": {"name": "java.util.List java.lang.management.ManagementFactory.getMemoryPoolMXBeans()"}, "line": {"number": 402}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9HDIkFP73AO7MKaHUGb_UgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Invokers$Holder"}, "function": {"name": "java.lang.Object java.lang.invoke.Invokers$Holder.linkToTargetMethod(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M4kfuweTCRjkzuYcFSqUswAAAAAAAABg"}} -{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.done(boolean)", "offset": 12}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yYF5YWbjTLokor9oKz_A5AAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "boolean java.util.concurrent.LinkedTransferQueue$Node.tryMatch(java.lang.Object, java.lang.Object)", "offset": 1}, "line": {"number": 448}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4pQmnbdVKlEPbRd3rB3jwgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ScheduledThreadPoolExecutor.delayedExecute(java.util.concurrent.RunnableScheduledFuture)", "offset": 3}, "line": {"number": 342}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "931sEtpcdsHnD8gPYzKXOAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "void org.elasticsearch.search.SearchService.lambda$runAsync$0(org.elasticsearch.common.CheckedSupplier, org.elasticsearch.action.ActionListener)"}, "line": {"number": 411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kFTUbCsMYWmt2VjXiiHPZgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ForUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.ForUtil.prefixSum16(long[], long)", "offset": 1}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H-oaVIyxpxvd746mlUjD3gAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "java.lang.String java.lang.String.valueOf(java.lang.Object)"}, "line": {"number": 3365}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WHt2sjXXBXmxk_WhY3xuqQAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "java.nio.ByteBuffer sun.security.ssl.SSLSocketImpl.readApplicationRecord(java.nio.ByteBuffer)", "offset": 9}, "line": {"number": 1465}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zFSfhqKIl5qiNKPNSf1fYgAAAAAAAAB_"}} -{"Stackframe": {"file": {"name": "AccessControlContext.java"}, "function": {"name": "java.security.ProtectionDomain[] java.security.AccessControlContext.combine(java.security.ProtectionDomain[], java.security.ProtectionDomain[])", "offset": 30}, "line": {"number": 699}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "umQIucIioKjldscxi712SAAAAAAAAACC"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.fsync(java.nio.file.Path, boolean)", "offset": 24}, "line": {"number": 480}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rMv9JWdc6JopZomV3ZBYdAAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "ThreadLocal.java"}, "function": {"name": "boolean java.lang.ThreadLocal$ThreadLocalMap.cleanSomeSlots(int, int)", "offset": 11}, "line": {"number": 748}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u84jH0Fi4giPpR8JCVg2uQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "void java.util.Collections$UnmodifiableMap.forEach(java.util.function.BiConsumer)"}, "line": {"number": 1553}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACNjn4"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file.go"}, "function": {"name": "github.com/prometheus/procfs/internal/util.ReadFileNoStat"}, "line": {"number": 307}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7Ovp0wGRNiYYUgy1OfOtbAAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$5102.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0GDZ0kstVgc85_nBZh3f0QAAAAAAAADM"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 99}, "line": {"number": 598}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WaWdxNGxRcZaZiNc-MTFHwAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseArray(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String)", "offset": 8}, "line": {"number": 546}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABAvk"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.resetspinning"}, "line": {"number": 3103}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cgIdU-uvJLoO1WrtsV2P8gAAAAAAAE4F"}} -{"Stackframe": {"function": {"name": "ena_clean_rx_irq"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nftB2PmJZcz7DZJedLNipgAAAAAAAABQ"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "void sun.nio.ch.FileChannelImpl.force(boolean)", "offset": 9}, "line": {"number": 465}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACO-hH"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/prometheus/procfs@v0.0.11/proc.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.linuxSystem.Process"}, "line": {"number": 87}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eArtR0l_EHpVAL1EduOBQAAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "SecurityContext.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.SecurityContext.executeAsUser(org.elasticsearch.xpack.core.security.user.User, java.util.function.Consumer, org.elasticsearch.Version)", "offset": 3}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFtss"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/time.go"}, "function": {"name": "time.startTimer"}, "line": {"number": 208}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$3.onResponse(java.lang.Object)"}, "line": {"number": 307}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YNvLePk3bv25BUHN3KzEXQAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 9}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAABEcU"}} -{"Stackframe": {"function": {"name": "xfs_difree"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Oazs1a6HL_fA3OaTTAYczgAAAAAAAABt"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "org.apache.lucene.index.SortedSetDocValues org.apache.lucene.codecs.DocValuesConsumer$7.getSortedSet(org.apache.lucene.index.FieldInfo)", "offset": 17}, "line": {"number": 875}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtKD"}} -{"Stackframe": {"function": {"name": "ep_send_events_proc"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uV9VJttm0goUzsky7YZbIwAAAAAAAACe"}} -{"Stackframe": {"file": {"name": "LZ4WithPresetDictCompressionMode.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene87.LZ4WithPresetDictCompressionMode$LZ4WithPresetDictCompressor.compress(byte[], int, int, org.apache.lucene.store.DataOutput)", "offset": 20}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Olb164JexhSMm0UtBL_VygAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "OutputStreamIndexOutput.java"}, "function": {"name": "long org.apache.lucene.store.OutputStreamIndexOutput.getChecksum()"}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H0yNC4W33CkkqJfkrGFEhAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.Engine.refreshNeeded()"}, "line": {"number": 963}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pNkwmPEaVAW4yiwUp-qSTQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "java.lang.String[] org.apache.lucene.store.FSDirectory.listAll()", "offset": 1}, "line": {"number": 233}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X3vNLlXVyKftCeY5HzEuDAAAAAAAAAbg"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.mergeMiddle(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergePolicy)", "offset": 228}, "line": {"number": 4915}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dA5iCrFphDUKlC3vygm0DQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ConcreteReplicaRequest.(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 1426}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjoqR"}} -{"Stackframe": {"function": {"name": "rtnl_getlink"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIcD6"}} -{"Stackframe": {"function": {"name": "pagecache_get_page"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pYYnlcC5MRKImDilmGoYsQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.dataformat.smile.SmileParser._decodeShortAsciiValue(int)"}, "line": {"number": 2398}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MgnzgTUwSrjft9SA3YZTtAAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.flush(io.netty.channel.ChannelHandlerContext)", "offset": 15}, "line": {"number": 781}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANuJv"}} -{"Stackframe": {"function": {"name": "pid_revalidate"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QTk6i4kGz-zDlc1CgyBszAAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "void org.elasticsearch.tasks.TaskManager.startTrace(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.tasks.Task)", "offset": 7}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tiJNC5TRsJ2Po6yB9hj7ugAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction.execute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 11}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-wjzZ8qXQZ6UzRT2E-g1tAAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "ThreadedActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.ThreadedActionListener$Wrapper.(org.apache.logging.log4j.Logger, org.elasticsearch.common.settings.Settings, org.elasticsearch.threadpool.ThreadPool)", "offset": 5}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-clL77pdbmWRRQ_xzhnVFQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.executeMerge(org.apache.lucene.index.MergeTrigger)"}, "line": {"number": 2293}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QN4Q0wqGRE_9JxLmhmELwwAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.map(java.util.Map, boolean, boolean)", "offset": 13}, "line": {"number": 892}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "apLx4IvDk2OXboJEr3DXkgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.io.stream.StreamInput.readMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader)"}, "line": {"number": 640}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-5JZZ12JbTNmT71XiBz0JwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "RoutingNodes.java"}, "function": {"name": "void org.elasticsearch.cluster.routing.RoutingNodes.(org.elasticsearch.cluster.ClusterState)"}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h3gGqWFKeM0FT-wjtm8F8QAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "IndexMetadata.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.cluster.metadata.IndexMetadata.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)"}, "line": {"number": 685}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD5oHN"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/go.etcd.io/bbolt@v1.3.4/tx.go"}, "function": {"name": "go.etcd.io/bbolt.(*Tx).Commit"}, "line": {"number": 186}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipDo"}} -{"Stackframe": {"function": {"name": "__sys_recvfrom"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEWw9Z"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/module/docker/fields.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/module/docker.init.1"}, "line": {"number": 27}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABV0xl"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/processmanager/manager.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/processmanager.(*ProcessManager).ConvertTrace"}, "line": {"number": 577}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sqDXpBl-RD8OlHhZazkDcgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 618}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkl1M"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bytes/bytes.go"}, "function": {"name": "bytes.Fields"}, "line": {"number": 412}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K61z3xaGK-rHqmHBTOYNcwAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "void org.apache.lucene.index.SegmentMerger.mergeDocValues(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.SegmentReadState)", "offset": 1}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OXXUWi3HnGXyNYANATzbXgAAAAAAAABh"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.IndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 16}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C7K-us0mqSTOC05nudRrpwAAAAAAAABn"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "long sun.nio.ch.FileChannelImpl.size()", "offset": 10}, "line": {"number": 387}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UIy2Q7YM4c27tuS1_ztJlAAAAAAAAACV"}} -{"Stackframe": {"file": {"name": "TransportBroadcastByNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived(org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$NodeRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 12}, "line": {"number": 412}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8ijKSIS-axMtZNAQCt9HjQAAAAAAAACt"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 72}, "line": {"number": 423}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACmJlT"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bufio/scan.go"}, "function": {"name": "bufio.(*Scanner).Scan"}, "line": {"number": 255}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "loNxquzuzn2Bq3kr01g2ngAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "StreamSpliterators.java"}, "function": {"name": "boolean java.util.stream.StreamSpliterators$WrappingSpliterator.tryAdvance(java.util.function.Consumer)", "offset": 1}, "line": {"number": 300}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC6Xu"}} -{"Stackframe": {"function": {"name": "process_one_work"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bOb86QTSjl0Tbgl6WGMPVwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken()", "offset": 1}, "line": {"number": 708}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sspLyqwqKpD8wnMR9ugciQAAAAAAAABg"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.decRef(java.util.Collection)", "offset": 14}, "line": {"number": 655}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mKHXf_yVcw9ZXg_JH2MAwgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "ByteBufferGuard.java"}, "function": {"name": "void org.apache.lucene.store.ByteBufferGuard.invalidateAndUnmap(java.nio.ByteBuffer[])", "offset": 11}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mU1sjFC3gdUeQiL-LXu1AAAAAAAAAACg"}} -{"Stackframe": {"file": {"name": "DisiPriorityQueue.java"}, "function": {"name": "void org.apache.lucene.search.DisiPriorityQueue.downHeap(int)", "offset": 17}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bOb86QTSjl0Tbgl6WGMPVwAAAAAAAADW"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken()", "offset": 52}, "line": {"number": 759}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaAU"}} -{"Stackframe": {"function": {"name": "__handle_mm_fault"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EOTpfUqJOuaAVD3AKgKtLgAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "BytesStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.BytesStreamOutput.ensureCapacity(long)", "offset": 6}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QDX8GJXtT-aXEUh_iXGDAQAAAAAAAABY"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequest(org.elasticsearch.cluster.node.DiscoveryNode, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 12}, "line": {"number": 727}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sCOApbaKyYNIvwXSt1bEIAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "BytesReferenceStreamInput.java"}, "function": {"name": "int org.elasticsearch.common.bytes.BytesReferenceStreamInput.read(byte[], int, int)"}, "line": {"number": 226}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dTUQgMidpAG-CxvYJHG_7AAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "org.elasticsearch.core.Releasable org.elasticsearch.action.support.replication.TransportReplicationAction.checkReplicaLimits(org.elasticsearch.action.support.replication.ReplicationRequest)"}, "line": {"number": 622}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9T5nB0Ij4FClwlFOdtPcSwAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6674+0x000000080240c000.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zRDIOP6EizqQ97szY8MMXwAAAAAAAAB0"}} -{"Stackframe": {"file": {"name": "SearchQueryThenFetchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchQueryThenFetchAsyncAction.onShardResult(org.elasticsearch.search.SearchPhaseResult, org.elasticsearch.action.search.SearchShardIterator)", "offset": 15}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7Y1w3rnAlb8IgzViwUdGygAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "java.util.concurrent.RunnableScheduledFuture java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.finishPoll(java.util.concurrent.RunnableScheduledFuture)", "offset": 4}, "line": {"number": 1145}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Eo4iTXjSGrYjUV3g9HGWNQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.file.DirectoryStream sun.nio.fs.UnixFileSystemProvider.newDirectoryStream(java.nio.file.Path, java.nio.file.DirectoryStream$Filter)", "offset": 1}, "line": {"number": 406}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Iy6_S92mK2p0BK8GakLo-wAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "CleanerImpl.java"}, "function": {"name": "void jdk.internal.ref.CleanerImpl$PhantomCleanableRef.(java.lang.Object, java.lang.ref.Cleaner, java.lang.Runnable)"}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 421}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA9j"}} -{"Stackframe": {"function": {"name": "mangle_path"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zV-zz_SMeRtFDojkROWSSwAAAAAAAACI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 136}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "02PTq9Jtr4iKE59hgBxlagAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 4}, "line": {"number": 270}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4Xo5xO6o0uoSyrwdbZHbJgAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "java.util.Map org.elasticsearch.action.search.TransportSearchAction.buildPerIndexAliasFilter(org.elasticsearch.action.search.SearchRequest, org.elasticsearch.cluster.ClusterState, org.elasticsearch.index.Index[], java.util.Map)", "offset": 1}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vwVacZyAmI4I5xgPCj5r7AAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "StringMatcher.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.support.StringMatcher.test(java.lang.Object)"}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ftfEAOBekZboI1FEtGHG8gAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$4(java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.support.ActionFilterChain, org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 3}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YVcFEflggWCRxtIyAFnYrgAAAAAAAABK"}} -{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.timedRead(java.io.FileDescriptor, byte[], int, int, long)", "offset": 8}, "line": {"number": 276}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JYDhCBqV4GPq7uqp50dsDwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Lucene90CompoundFormat.java"}, "function": {"name": "org.apache.lucene.codecs.CompoundDirectory org.apache.lucene.codecs.lucene90.Lucene90CompoundFormat.getCompoundReader(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)"}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uHtNlz2aITYon4vfb6MWngAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "MappingLookup.java"}, "function": {"name": "org.elasticsearch.index.mapper.MappedFieldType org.elasticsearch.index.mapper.MappingLookup.getFieldType(java.lang.String)"}, "line": {"number": 389}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_mL1aduzv0ZGPHUWlRlmAwAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "ByteBuffersDataOutput.java"}, "function": {"name": "java.nio.ByteBuffer org.apache.lucene.store.ByteBuffersDataOutput$ByteBufferRecycler.allocate(int)", "offset": 6}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABCPF"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.entersyscall_sysmon"}, "line": {"number": 3680}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZhtNJYoOwm655zArM3sIngAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()", "offset": 5}, "line": {"number": 923}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUj4f"}} -{"Stackframe": {"function": {"name": "_copy_from_user"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "G1OnoGXN6zXJZoQUHRmxAwAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.applyIndexOperationOnPrimary(long, org.elasticsearch.index.VersionType, org.elasticsearch.index.mapper.SourceToParse, long, long, long, boolean)", "offset": 1}, "line": {"number": 888}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WekP7cILEpMGZHEc4JbsIQAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelReadComplete(io.netty.channel.AbstractChannelHandlerContext)", "offset": 2}, "line": {"number": 397}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SLTycpvJcvZvKONGc1TOvgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.access$000(org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator)"}, "line": {"number": 274}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-AfB72--alphLE8FS3h2PAAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "SocketChannelImpl.java"}, "function": {"name": "int sun.nio.ch.SocketChannelImpl.write(java.nio.ByteBuffer)", "offset": 8}, "line": {"number": 484}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xfayWUULnTu-rJFbbgqAHAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "DocIdsWriter.java"}, "function": {"name": "void org.apache.lucene.util.bkd.DocIdsWriter.readDelta16(org.apache.lucene.store.IndexInput, int, org.apache.lucene.index.PointValues$IntersectVisitor)"}, "line": {"number": 320}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QVeLj_oPnEjl_jKTv8aQqAAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "LoggingHandler.java"}, "function": {"name": "void io.netty.handler.logging.LoggingHandler.flush(io.netty.channel.ChannelHandlerContext)", "offset": 3}, "line": {"number": 304}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_KqTDruiyV4c3OEtyANHTAAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "BufferedUpdatesStream.java"}, "function": {"name": "void org.apache.lucene.index.BufferedUpdatesStream$SegmentState.(org.apache.lucene.index.ReadersAndUpdates, org.apache.lucene.util.IOConsumer, org.apache.lucene.index.SegmentCommitInfo)", "offset": 2}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACVEoB"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/http/transfer.go"}, "function": {"name": "net/http.(*body).readLocked"}, "line": {"number": 833}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Iaxtrhqw7QYaF83kiQkybgAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(io.netty.channel.AbstractChannelHandlerContext, java.lang.Object)", "offset": 3}, "line": {"number": 420}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, java.lang.Throwable)", "offset": 5}, "line": {"number": 379}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Xzo8AP-f-a1xKbRltbpi-gAAAAAAAADL"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.merge(java.lang.Object, java.lang.Object, java.util.function.BiFunction)", "offset": 29}, "line": {"number": 1391}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MRWXwWKl_fPnxgwH09TqSwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "void org.elasticsearch.search.internal.ContextIndexSearcher.searchLeaf(org.apache.lucene.index.LeafReaderContext, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 3}, "line": {"number": 184}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E88q3f6CLZHMzDvH26OA2gAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$6084+0x0000000801c54880.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XGJH0JyzaogzCYKHcvHBvgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ActionListenerResponseHandler.java"}, "function": {"name": "java.lang.Object org.elasticsearch.action.ActionListenerResponseHandler.read(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 25}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L8kwyqQOD4YHIoLA6nJxNgAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult org.elasticsearch.xpack.security.authz.RBACEngine.buildIndicesAccessControl(java.lang.String, org.elasticsearch.xpack.core.security.authz.permission.Role, org.elasticsearch.xpack.core.security.authz.ResolvedIndices, java.util.Map)"}, "line": {"number": 811}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ooWfvmuPvRIfiWIystor5AAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "NettyAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf org.elasticsearch.transport.NettyAllocator$NoDirectBuffers.ioBuffer(int)"}, "line": {"number": 236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C2bcwNqql_gFwky6XpRggwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkRead(java.lang.String)"}, "line": {"number": 751}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3kqb9iL-AByP8rRfsVhi_QAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.exists(java.nio.file.Path)", "offset": 2}, "line": {"number": 538}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "12wqq0CZSFWXQTyNvq7lawAAAAAAAACl"}} -{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.SoftDeletesRetentionMergePolicy.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.util.IOSupplier)", "offset": 14}, "line": {"number": 147}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DXjVP64kCgn9M1yvOAXqQQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.bulk.BulkShardRequest$$Lambda$7056+0x00000008024a6f68.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4d9zx7j7aak67AnnUI1JmAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "java.lang.Object io.netty.channel.DefaultChannelPipeline.touch(java.lang.Object, io.netty.channel.AbstractChannelHandlerContext)"}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z2RK8OiMonW_o4pECFqoegAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.executeBulk(org.elasticsearch.tasks.Task, org.elasticsearch.action.bulk.BulkRequest, long, org.elasticsearch.action.ActionListener, org.elasticsearch.common.util.concurrent.AtomicArray, java.util.Map)"}, "line": {"number": 736}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7kZxFgbuXnmF5RM9H_z_ggAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "FsDirectoryFactory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.elasticsearch.index.store.FsDirectoryFactory$HybridDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 10}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K4GtFsHu3sEiObk5SkQ6NgAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "PolicyFile.java"}, "function": {"name": "boolean sun.security.provider.PolicyFile.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 4}, "line": {"number": 994}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pD64Y8dYs0KzJcRfejjvpQAAAAAAAAHn"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleRequest(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.Header, org.elasticsearch.transport.InboundMessage)", "offset": 56}, "line": {"number": 209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sDDJ1mJ2kaA-GysNkBR82gAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "boolean java.util.ArrayList$Itr.hasNext()"}, "line": {"number": 961}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIfEv"}} -{"Stackframe": {"function": {"name": "file_write_and_wait_range"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-8u8"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/process/process.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/process.(*Stats).getProcessEvent"}, "line": {"number": 342}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tLWCyKrEBYGzX2N5W13-8QAAAAAAAACn"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$consumeToken$15(org.elasticsearch.xpack.core.security.authc.Realm, org.elasticsearch.xpack.core.security.authc.AuthenticationToken, long, org.elasticsearch.action.ActionListener, java.util.Map, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 10}, "line": {"number": 489}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gL0sNJyG3L826RryrsTHqQAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "PointValues.java"}, "function": {"name": "void org.apache.lucene.index.PointValues.intersect(org.apache.lucene.index.PointValues$IntersectVisitor, org.apache.lucene.index.PointValues$PointTree)", "offset": 8}, "line": {"number": 350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "p7qKIzzn4w0j5_vK-B0EmwAAAAAAAABR"}} -{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.dataformat.smile.SmileParser.getText()", "offset": 15}, "line": {"number": 1005}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m4PVqyGtfp9xtjU5ONg6ZQAAAAAAAABz"}} -{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.apache.lucene.search.BooleanWeight.scorerSupplier(org.apache.lucene.index.LeafReaderContext)", "offset": 10}, "line": {"number": 533}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zMfrrVBbbdAsJkD0YJE_vAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.bulk.TransportShardBulkAction$$Lambda$4774+0x000000080196a030.apply(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM"}} -{"Stackframe": {"file": {"name": "Netty4HttpPipeliningHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpPipeliningHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 16}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kM5OTfXaaIaAuKd35fVzSwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "UnixSocketConnector.java"}, "function": {"name": "org.eclipse.jetty.io.Connection org.eclipse.jetty.unixsocket.UnixSocketConnector$UnixSocketConnectorManager.newConnection(java.nio.channels.SelectableChannel, org.eclipse.jetty.io.EndPoint, java.lang.Object)"}, "line": {"number": 373}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R9RrB-Of3quGaN6TDSrAyQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.bulk.BulkShardRequest$$Lambda$7054+0x00000008024a64b0.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XxkZGDV3NKvFYWV6PsOLkAAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory.(java.nio.file.Path, org.apache.lucene.store.LockFactory)", "offset": 23}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YuO8negre7Sf-lmPoxxRFQAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "ClusterStatsResponse.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.stats.ClusterStatsResponse.(long, java.lang.String, org.elasticsearch.cluster.ClusterName, java.util.List, java.util.List, org.elasticsearch.cluster.ClusterState)", "offset": 4}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BSGYbOS21g5XOXq-oh30UwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "QuotaAwareFileSystemProvider.java"}, "function": {"name": "java.nio.file.DirectoryStream co.elastic.cloud.quotaawarefs.QuotaAwareFileSystemProvider.newDirectoryStream(java.nio.file.Path, java.nio.file.DirectoryStream$Filter)"}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8HclVn0TTGhRLlMuMst62QAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.updateDocument(org.apache.lucene.index.DocumentsWriterDeleteQueue$Node, java.lang.Iterable)", "offset": 3}, "line": {"number": 1594}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wn4niB8FwIlhJ5LBYr9JzQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$6506+0x0000000801c91ee0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.refresh(java.lang.String, org.elasticsearch.index.engine.Engine$SearcherScope, boolean)", "offset": 15}, "line": {"number": 1891}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ND1081BRZFYaMVgvbwz-GQAAAAAAAANS"}} -{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment org.apache.lucene.index.DocumentsWriterPerThread.flush(org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 131}, "line": {"number": 473}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALX09"}} -{"Stackframe": {"function": {"name": "____fput"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-zds"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/gosigar@v0.14.2/sigar_linux_common.go"}, "function": {"name": "github.com/elastic/gosigar.(*ProcState).Get"}, "line": {"number": 169}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "c0OkgT3_p45M6FsCvH3WnQAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "ProtectionDomain.java"}, "function": {"name": "boolean java.security.ProtectionDomain.implies(java.security.Permission)", "offset": 7}, "line": {"number": 325}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "D6RUjOI12PdX-ntiQc0cxgAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "AbstractObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.AbstractObjectParser.lambda$declareObject$1(org.elasticsearch.common.xcontent.ContextParser, org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)"}, "line": {"number": 169}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zGZ_gCn-Ge9oHmah2m0JWwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "Exception.java"}, "function": {"name": "void java.lang.Exception.(java.lang.String, java.lang.Throwable)"}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FNq_EdcWL5MTMJYOwYzaCwAAAAAAAABF"}} -{"Stackframe": {"file": {"name": "ES85BloomFilterPostingsFormat.java"}, "function": {"name": "void org.elasticsearch.index.codec.bloomfilter.ES85BloomFilterPostingsFormat$FieldsWriter.(org.elasticsearch.index.codec.bloomfilter.ES85BloomFilterPostingsFormat, org.apache.lucene.index.SegmentWriteState)", "offset": 9}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QhoYQKX1e8Qrxu1NmsxA4wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "java.util.Optional java.util.stream.ReferencePipeline.findAny()"}, "line": {"number": 652}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.SingleThreadEventExecutor$4.run()", "offset": 8}, "line": {"number": 997}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FS55TSwq0w7KNb6oqdqsJwAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$RequestFilterChain.proceed(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zwiX7AgVqL-aPC-SuEi6CAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, sun.nio.ch.NativeDispatcher)"}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dvPwH8wVUiIeR9c3FhzYeQAAAAAAAADq"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 234}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3FmF0iegYInyRffZHSr8AwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.flush(io.netty.channel.ChannelHandlerContext)"}, "line": {"number": 777}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABBkU"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.gopreempt_m"}, "line": {"number": 3399}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N1xfNXt_cEW2sMA8rTIs2gAAAAAAAABU"}} -{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "io.opentelemetry.context.Context org.elasticsearch.tracing.apm.APMTracer.lambda$startTrace$1(java.lang.String, java.lang.String, org.elasticsearch.tracing.apm.APMTracer$APMServices, org.elasticsearch.common.util.concurrent.ThreadContext, java.util.Map)", "offset": 14}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi98F"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file_posix.go"}, "function": {"name": "os.(*File).Close"}, "line": {"number": 25}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n-BD459aSOA4JmuYxWtZ3gAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Socket.java"}, "function": {"name": "int java.net.Socket$SocketInputStream.read(byte[], int, int)"}, "line": {"number": 982}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAioJZ"}} -{"Stackframe": {"function": {"name": "__x64_sys_socket"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f5p_PMJgJDLSgaMg1oCNpgAAAAAAAABi"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.xcontent.XContentBuilder.unknownValue(java.lang.Object, boolean)", "offset": 15}, "line": {"number": 925}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JTmH79W37luflHUiTzb1AQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ImmutableOpenIntMap.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.collect.ImmutableOpenIntMap.get(int)"}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJlhJ"}} -{"Stackframe": {"function": {"name": "tlb_flush_mmu"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lPFcxZmqiy0vqSr3tr4NBAAAAAAAAABh"}} -{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "void org.elasticsearch.transport.CopyBytesSocketChannel.doWrite(io.netty.channel.ChannelOutboundBuffer)", "offset": 24}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UjZjHDsJddCCPswXJh9zOAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "org.elasticsearch.cluster.NamedDiff org.elasticsearch.cluster.SnapshotsInProgress.readDiffFrom(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XaFizeT40CKpdI_o5Zrw0QAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateAppliers(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.common.StopWatch)"}, "line": {"number": 514}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k2QfmGpbwZfMFpur9DTalwAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator$$Lambda$6926+0x0000000801e4e220.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Iz3Q33pJiq_ClAMVOwKorAAAAAAAAABU"}} -{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.scoreRange(org.apache.lucene.search.LeafCollector, org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.search.TwoPhaseIterator, org.apache.lucene.util.Bits, int, int)", "offset": 13}, "line": {"number": 284}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DYrMILhc4lwyEL8JryGqLQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "java.lang.String java.lang.String.substring(int, int)"}, "line": {"number": 1873}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aDyBXusCSgxGJvBxfJIWPwAAAAAAAACI"}} -{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileParser._loadToHaveAtLeast(int)", "offset": 15}, "line": {"number": 289}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OMiVtBlQQcibD2YBJFlM2AAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 1}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "ForkJoinTask.java"}, "function": {"name": "int java.util.concurrent.ForkJoinTask.doExec()", "offset": 2}, "line": {"number": 290}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJv"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.index.SegmentMerger.merge()", "offset": 53}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YNTunKybilcdruNbkYh4bAAAAAAAAAEo"}} -{"Stackframe": {"file": {"name": "ForUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.ForUtil.decodeAndPrefixSum(int, org.apache.lucene.store.DataInput, long, long[])", "offset": 39}, "line": {"number": 556}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HAPuRG_LRRYFUeA5sYpd1gAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "SessionInputBufferImpl.java"}, "function": {"name": "int org.apache.http.impl.io.SessionInputBufferImpl.fillBuffer()", "offset": 11}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8YL_vyRbXOmeWsqsogIGXgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.apache.lucene.index.ReadersAndUpdates$$Lambda$6377+0x0000000801c76a80.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "r2p-9d0QpDfcdk32QsPfVQAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.read(byte[], int, int)", "offset": 11}, "line": {"number": 350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fxsdTfj4D_fa8ryqJS4OhwAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "Lucene84PostingsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.Lucene84PostingsReader.checkIntegrity()", "offset": 4}, "line": {"number": 1993}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fRZxgjNrvwoHRGv8g3hlLgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Signature.java"}, "function": {"name": "byte[] java.security.Signature$Delegate.engineSign()", "offset": 1}, "line": {"number": 1403}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R1GkjoPI5Yxt9CGoDpaaGwAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": "AbstractList.java"}, "function": {"name": "int java.util.AbstractList.hashCode()", "offset": 2}, "line": {"number": 569}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FFBo4766LxTMArq2lpjbGgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "boolean java.util.HashMap.containsKey(java.lang.Object)"}, "line": {"number": 602}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABWeW2"}} -{"Stackframe": {"file": {"name": "encoding/gob/decoder.go"}, "function": {"name": "encoding/gob.(*Decoder).DecodeValue"}, "line": {"number": 229}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z-hu6cNT1Ftqgnka76QdWAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.BooleanWeight.scorer(org.apache.lucene.index.LeafReaderContext)", "offset": 4}, "line": {"number": 348}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sZpPWBZ2sVOy9PmQsNzK_AAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeString(java.lang.String)"}, "line": {"number": 402}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5nv8VwbAa4588SEaQHNTuwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext.lambda$stashContext$2(org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct)"}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_coc0yQmibHSYbczgpafrwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "int org.apache.lucene.codecs.DocValuesConsumer$3$1.nextDoc()"}, "line": {"number": 418}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZr"}} -{"Stackframe": {"function": {"name": "audit_filter_syscall.constprop.19"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFLs"}} -{"Stackframe": {"function": {"name": "__x64_sys_futex"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DmXwtW3wD4Vo-NlgA4cgywAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "Signature.java"}, "function": {"name": "boolean java.security.Signature$Delegate.engineVerify(byte[])", "offset": 1}, "line": {"number": 1416}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1WwaSXc6MUqSl16CLws0XwAAAAAAAADZ"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "int java.io.FilePermission.containsPath(java.nio.file.Path, java.nio.file.Path)", "offset": 55}, "line": {"number": 756}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$8.doRun()"}, "line": {"number": 801}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9"}} -{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter.inbound(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.action.ActionListener)", "offset": 33}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "T3AJGJKrsX6LrshXC_HMuQAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Object)", "offset": 2}, "line": {"number": 1258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f5p_PMJgJDLSgaMg1oCNpgAAAAAAAABO"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.xcontent.XContentBuilder.unknownValue(java.lang.Object, boolean)", "offset": 13}, "line": {"number": 923}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFxu7"}} -{"Stackframe": {"function": {"name": "audit_log_exit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qsf4oB191Ejhqczjg1I-pAAAAAAAAACS"}} -{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "boolean org.apache.lucene.util.bkd.BKDWriter$MergeReader.next()", "offset": 9}, "line": {"number": 254}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "puTftzD6vsNSbiwrKhDqRwAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "ThreadPoolInfo.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.threadpool.ThreadPoolInfo.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 2}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rmSs41XtF0_135XyexZ4IQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Rewriteable.java"}, "function": {"name": "void org.elasticsearch.index.query.Rewriteable.rewriteAndFetch(org.elasticsearch.index.query.Rewriteable, org.elasticsearch.index.query.QueryRewriteContext, org.elasticsearch.action.ActionListener)"}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FedFnYQW8bHf16nVrC3eNgAAAAAAAAGo"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 102}, "line": {"number": 370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pD64Y8dYs0KzJcRfejjvpQAAAAAAAAE6"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleRequest(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.Header, org.elasticsearch.transport.InboundMessage)", "offset": 35}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "egxYzGb2aYe2691ohXwNJgAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeSystemUser(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 421}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2Vpl4JCXI4Pj7QXAxuNxegAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "SegmentInfos.java"}, "function": {"name": "java.util.Collection org.apache.lucene.index.SegmentInfos.files(boolean)", "offset": 10}, "line": {"number": 919}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "68Kd2F2G5cbeqk2uYg-UgAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Directory.java"}, "function": {"name": "org.apache.lucene.store.ChecksumIndexInput org.apache.lucene.store.Directory.openChecksumInput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rukD5963lGO3Ma9AI2LXWgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "void org.apache.lucene.store.LockValidatingDirectoryWrapper.deleteFile(java.lang.String)", "offset": 1}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Hm_u4C7nG4SW--AUfPJuGwAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "NamedGroup.java"}, "function": {"name": "sun.security.ssl.SSLPossession sun.security.ssl.NamedGroup$NamedGroupSpec.createPossession(sun.security.ssl.NamedGroup, java.security.SecureRandom)", "offset": 1}, "line": {"number": 543}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "G_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "RoleReferenceIntersection.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authz.store.RoleReferenceIntersection.buildRole(java.util.function.BiConsumer, org.elasticsearch.action.ActionListener)", "offset": 10}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8gCX4yiEJccsUYm2373XlQAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "Netty4TcpChannel.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4TcpChannel.sendMessage(org.elasticsearch.common.bytes.BytesReference, org.elasticsearch.action.ActionListener)"}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YMf1vN4Xj82X8azesbKqWQAAAAAAAAB7"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 10}, "line": {"number": 636}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EVcmFq_4edpopY2aEzriOwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "GetInstance.java"}, "function": {"name": "sun.security.jca.GetInstance$Instance sun.security.jca.GetInstance.getInstance(java.security.Provider$Service, java.lang.Class)"}, "line": {"number": 236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rT6Wpj_D6biwR0z1hrGxmwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "void java.util.ArrayList.add(java.lang.Object, java.lang.Object[], int)", "offset": 1}, "line": {"number": 454}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HVaOZ98k9w6g8cizBWxmJQAAAAAAAAC_"}} -{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsReader.(org.apache.lucene.index.SegmentReadState)", "offset": 43}, "line": {"number": 315}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.fetch.ScrollQueryFetchSearchResult org.elasticsearch.search.SearchService.lambda$executeFetchPhase$6(org.elasticsearch.search.internal.LegacyReaderContext, org.elasticsearch.action.search.SearchShardTask, org.elasticsearch.search.internal.InternalScrollSearchRequest)", "offset": 6}, "line": {"number": 575}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_WhLMAElKfp9RHy9XD-HOQAAAAAAAAC3"}} -{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.handleIncomingRequest(org.elasticsearch.http.HttpRequest, org.elasticsearch.http.HttpChannel, java.lang.Exception)", "offset": 48}, "line": {"number": 383}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.handleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 4}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANw3k"}} -{"Stackframe": {"function": {"name": "do_task_stat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiwUF"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/internal/poll/fd_unix.go"}, "function": {"name": "internal/poll.(*FD).Close"}, "line": {"number": 116}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACuQz5"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/errors/errors.go"}, "function": {"name": "net/http.(*persistConn).readResponse"}, "line": {"number": 59}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-wZO"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.SubsystemMountpoints"}, "line": {"number": 197}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "W3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler$1.doRun()"}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QJ-JVADSuuonf59sOKCy_wAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.unwrap(java.nio.ByteBuffer, java.nio.ByteBuffer[], int, int)"}, "line": {"number": 482}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkHMY"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).getRune"}, "line": {"number": 210}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Xjhdv_h9QN2xNJLPLw-Q9QAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "IndexingMemoryController.java"}, "function": {"name": "void org.elasticsearch.indices.IndexingMemoryController$ShardsIndicesStatusChecker.run()", "offset": 2}, "line": {"number": 291}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Sidn5oJ7A2M_efsiHDz05QAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory$FSIndexOutput.(org.apache.lucene.store.FSDirectory, java.lang.String)"}, "line": {"number": 385}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACng-r"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).object"}, "line": {"number": 763}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aDG3558gasz8z0RSX2ge7QAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.translog.TranslogStats org.elasticsearch.index.engine.InternalEngine.getTranslogStats()"}, "line": {"number": 585}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2XDg5u84AThLncvQweEa6wAAAAAAAAI5"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.handleIncomingPublishRequest(org.elasticsearch.transport.BytesTransportRequest)", "offset": 74}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RbwJfDNWDVXH1ixAk80o7AAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "PrintStream.java"}, "function": {"name": "void java.io.PrintStream.print(java.lang.Object)"}, "line": {"number": 759}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEf3-"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.gcDrainN"}, "line": {"number": 1240}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I1OVDwHxKOBX3DZpWt-oxAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.reindex.TransportUpdateByQueryAction$$Lambda$9058+0x0000000802822278.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NMPX1MdtzuRZ2k27VY7qAQAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "boolean org.apache.lucene.index.StandardDirectoryReader.isCurrent()", "offset": 12}, "line": {"number": 363}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kC4ZWtnGZdVrn9r8RWDIrgAAAAAAAABB"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.writePages(org.elasticsearch.xcontent.ToXContentFragment, org.elasticsearch.gateway.PersistedClusterStateService$PageWriter)", "offset": 8}, "line": {"number": 1106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGugy"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file_posix.go"}, "function": {"name": "os.(*File).Read"}, "line": {"number": 31}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8fD8MYf3rRLn0p51wgRpQgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction$1.doRun()"}, "line": {"number": 192}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hpdrA0BwX9k4wpq28cpa-QAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "PeerFinder.java"}, "function": {"name": "void org.elasticsearch.discovery.PeerFinder$1.doRun()", "offset": 1}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "FilterMergePolicy.java"}, "function": {"name": "org.apache.lucene.index.MergePolicy$MergeSpecification org.apache.lucene.index.FilterMergePolicy.findMerges(org.apache.lucene.index.MergeTrigger, org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)"}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXbg"}} -{"Stackframe": {"function": {"name": "__alloc_file"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NK6q-mYZhWe1E7afoKkwiQAAAAAAAAFD"}} -{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.doHandleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 37}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y1sWmlA0pQA0NwSqi6MlaAAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "boolean org.elasticsearch.search.SearchService.freeReaderContext(org.elasticsearch.search.internal.ShardSearchContextId)", "offset": 3}, "line": {"number": 858}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_84c"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/file_integrity/scanner.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/file_integrity.(*scanner).walkDir"}, "line": {"number": 128}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YNctlk7ApQX4WP711vJI-QAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 266}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WsCQmTSDw0k0qcC-8oiYqgAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "int java.lang.String.hashCode()", "offset": 2}, "line": {"number": 2350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bkcdRMoapp3BEGDSfW477AAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction$1.read(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 254}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.MergePolicy$MergeSpecification org.apache.lucene.index.IndexWriter.updatePendingMerges(org.apache.lucene.index.MergePolicy, org.apache.lucene.index.MergeTrigger, int)", "offset": 33}, "line": {"number": 2334}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFddu"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/traceback.go"}, "function": {"name": "runtime.gentraceback"}, "line": {"number": 361}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAi1O1"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/reporter/reporter.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/reporter.flushFramesForTraces"}, "line": {"number": 363}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ENOom58sisHBM_5bqD06xgAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "org.elasticsearch.index.Index[] org.elasticsearch.cluster.metadata.IndexNameExpressionResolver.concreteIndices(org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.IndicesRequest, long)", "offset": 2}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2CeUnC69fX6OTXt_k2BUegAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "boolean org.elasticsearch.xpack.security.authz.RBACEngine.allowsRemoteIndices(org.elasticsearch.transport.TransportRequest)"}, "line": {"number": 386}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u2WVw07zPKE8tjDW7uq3_AAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "org.apache.lucene.index.SortedDocValues org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer$3.getSorted(org.apache.lucene.index.FieldInfo)", "offset": 1}, "line": {"number": 765}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACil8S"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/sort/sort.go"}, "function": {"name": "sort.IntSlice.Less"}, "line": {"number": 285}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-xVV"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/strings.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.Reader.ProcessCgroupPaths"}, "line": {"number": 986}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LHQIqPZNDAtBb5Urr3NFHgAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.maybeLookupRunAsUser(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 205}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-w3N"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.Reader.ProcessCgroupPaths"}, "line": {"number": 260}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Sa5UQWeQwQhAwnRSyvXN6QAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "ReaderContext.java"}, "function": {"name": "void org.elasticsearch.search.internal.ReaderContext.close()", "offset": 1}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h7etdb4LVAEPlLKOTYCzyQAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "void org.apache.lucene.index.StandardDirectoryReader.doClose()", "offset": 20}, "line": {"number": 482}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5jKl2boRvdaLH-efD88QQwAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "LinkedHashSet.java"}, "function": {"name": "void java.util.LinkedHashSet.(java.util.Collection)", "offset": 1}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-S-k"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.addFieldsToEventData"}, "line": {"number": 444}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8bRONCZ2HplxP2YHDcA5qQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "PipelineConfiguration.java"}, "function": {"name": "java.util.Map org.elasticsearch.ingest.PipelineConfiguration.getConfigAsMap()"}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1ZGGfnUIDt7Cq-tNI5WEzwAAAAAAAAC6"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequestInternal(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 29}, "line": {"number": 898}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4ZG6-YGelmJ-HvYGGP11fAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.writeAuthToContext(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)"}, "line": {"number": 335}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Eie98KdnMd-ClRCBPsfNjgAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "void org.elasticsearch.index.translog.Translog$Operation.writeOperation(org.elasticsearch.common.io.stream.StreamOutput, org.elasticsearch.index.translog.Translog$Operation)", "offset": 3}, "line": {"number": 1122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LAL42pZYlfWNqKBod68vMgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "RestHandler.java"}, "function": {"name": "boolean org.elasticsearch.rest.RestHandler.canTripCircuitBreaker()"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qzANNbjSWZP-ph81nL9IdgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ScrollableHitSource.java"}, "function": {"name": "void org.elasticsearch.index.reindex.ScrollableHitSource.start()"}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L1XXNJqVZu5D9nZxbUfD2gAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "MultiLevelSkipListReader.java"}, "function": {"name": "int org.apache.lucene.codecs.MultiLevelSkipListReader.skipTo(int)"}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V_KspK9nh8LJS_EE9pIxxwAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$ContextRestoreResponseHandler.handleResponse(org.elasticsearch.transport.TransportResponse)", "offset": 4}, "line": {"number": 1362}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5uGB4PbBFcS_c1Q_L9s5wgAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "ExpandSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.ExpandSearchPhase.onPhaseDone()"}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iRzNGxTlTqWMN66MrMvwHAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "void org.apache.lucene.index.SegmentReader.doClose()"}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IXQQ44cok-T_SndfV84TzAAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.support.AbstractXContentParser.readValue(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier)", "offset": 1}, "line": {"number": 372}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACq_Y3"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/crypto/tls/handshake_client.go"}, "function": {"name": "crypto/tls.(*Conn).clientHandshake"}, "line": {"number": 240}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIZj-"}} -{"Stackframe": {"function": {"name": "end_page_writeback"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b6FCVkRSabVMmeb8NDr2oAAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "DelayedAllocationService.java"}, "function": {"name": "void org.elasticsearch.cluster.routing.DelayedAllocationService.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 2}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-7DooF_BqEazp1UGVZs9GwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ChannelActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.ChannelActionListener.onResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "v5H4heqrG-RfSN6JZIDgLwAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU"}} -{"Stackframe": {"function": {"name": "new_sync_write"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_l_kTW4fIxkvu3nH51178QAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "BooleanQuery.java"}, "function": {"name": "int org.apache.lucene.search.BooleanQuery.computeHashCode()"}, "line": {"number": 597}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ForkJoinPool.java"}, "function": {"name": "void java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(java.util.concurrent.ForkJoinTask, java.util.concurrent.ForkJoinPool$WorkQueue, int)", "offset": 3}, "line": {"number": 1020}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApUaF"}} -{"Stackframe": {"function": {"name": "vsnprintf"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tazfCeoJf0Do6sHz60FXRwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.access$300(org.apache.lucene.index.IndexWriter, boolean)"}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "So3FGd7WJjIO_5ktfF2gpQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "OutputStreamIndexOutput.java"}, "function": {"name": "void org.apache.lucene.store.OutputStreamIndexOutput.writeByte(byte)"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9MpGRFx2q8exnHXBo-9PrwAAAAAAAADe"}} -{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "void java.util.regex.Pattern.compile()", "offset": 39}, "line": {"number": 1798}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACvHJR"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/exec.go"}, "function": {"name": "regexp.(*Regexp).doExecute"}, "line": {"number": 543}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-kwQ5tzIMTia7ESgS4_wzAAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "TcpTransportChannel.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransportChannel.sendResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HL6OuA5BriS2w42aq9WRNQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6443+0x0000000801c911b0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JdsVUcUmyn-AMSKnqEmoAgAAAAAAAABu"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 215}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AS0eDWg20YjC_s884Pp-RQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$DelegatingFailureActionListener.onResponse(java.lang.Object)"}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wagf_HCTAbfVE_k37p5bHwAAAAAAAAE4"}} -{"Stackframe": {"file": {"name": "IndicesAliasesRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.IndicesAliasesRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 64}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oS9KAhghkFEGNblCDhC2FAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaResponse.writeTo(org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 1216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o3UqAAOe1TvTgoeUjoa-ogAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline$2$1.begin(long)"}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi91a"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file.go"}, "function": {"name": "os.ReadFile"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cP1LJXs0npB6pviZiQZxrAAAAAAAAABl"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4$FastCompressionHashTable.reset(byte[], int, int)", "offset": 8}, "line": {"number": 241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zbjoTM6fVBg8CyNBFi4-kgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "DefaultHttpResponseParser.java"}, "function": {"name": "org.apache.http.HttpMessage org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(org.apache.http.io.SessionInputBuffer)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 214}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "89LXE30sIspbXWCSHRWXmQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeBytes(byte[], int)"}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "plH_V-PEqLjaIWhbgt3E_AAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "SSLConfiguration.java"}, "function": {"name": "boolean sun.security.ssl.SSLConfiguration.isAvailable(sun.security.ssl.SSLExtension)", "offset": 3}, "line": {"number": 303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ik02Bt0VZFoUYdNhARf6ugAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "FilterClient.java"}, "function": {"name": "void org.elasticsearch.client.FilterClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Q490KBNtb0llAbQcXfbmJQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "java.lang.String java.lang.String.format(java.util.Locale, java.lang.String, java.lang.Object[])"}, "line": {"number": 3343}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nB6_4jUC-8Udf2LLExTzSQAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$$Lambda$4981+0x00000008020b77e8.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M-5SaQQW4M2ZK-t2dL_K0gAAAAAAAABf"}} -{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.implRead(byte[], int, int)", "offset": 11}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cFp_kIOB2k1JeprfG7gPIAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$$Lambda$6068+0x000000080235da50.writeTo(org.elasticsearch.common.io.stream.StreamOutput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZyityGDpQJw1YigaXArSXwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Lucene90PointsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.PointsWriter org.apache.lucene.codecs.lucene90.Lucene90PointsFormat.fieldsWriter(org.apache.lucene.index.SegmentWriteState)"}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PvmhnzBPbydWF_wVFKbYMwAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser._parsePosNumber(int)", "offset": 14}, "line": {"number": 1383}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xfgBzvNqXjtLo-fOw_LghAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_h880XQOq8mngzMZR-nPlwAAAAAAAABR"}} -{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "void org.elasticsearch.cluster.ClusterState$ClusterStateDiff.(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.node.DiscoveryNode)", "offset": 9}, "line": {"number": 778}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo)", "offset": 6}, "line": {"number": 5526}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k8128AKbUGB0smWYBgRB6AAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "java.lang.Object com.carrotsearch.hppc.ObjectObjectHashMap$EntryIterator.fetch()"}, "line": {"number": 641}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgkmE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.markrootSpans"}, "line": {"number": 326}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAABB"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.fsync(java.nio.file.Path, boolean)", "offset": 10}, "line": {"number": 471}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACso8t"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/errors/errors.go"}, "function": {"name": "net/http/internal.(*chunkedReader).Read"}, "line": {"number": 59}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EWlXSFV2r49Q0xRbGVHSQwAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 51}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAB6C6"}} -{"Stackframe": {"function": {"name": "xfs_inactive_ifree"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1WwaSXc6MUqSl16CLws0XwAAAAAAAAC-"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "int java.io.FilePermission.containsPath(java.nio.file.Path, java.nio.file.Path)", "offset": 51}, "line": {"number": 752}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEzfk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/os_linux.go"}, "function": {"name": "runtime.signalM"}, "line": {"number": 501}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1Dm6rh0RP-6XJIANW7bI0wAAAAAAAABg"}} -{"Stackframe": {"file": {"name": "IndexLifecycleService.java"}, "function": {"name": "void org.elasticsearch.xpack.ilm.IndexLifecycleService.triggerPolicies(org.elasticsearch.cluster.ClusterState, boolean)", "offset": 19}, "line": {"number": 304}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "980-iSS9S0F-vkRag1FHZwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "DataOutput.java"}, "function": {"name": "void org.apache.lucene.store.DataOutput.writeMapOfStrings(java.util.Map)"}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "U4lpDWiuR28XLSFBPsNR-AAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "MappedByteBufferIndexInputProvider.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.apache.lucene.store.MappedByteBufferIndexInputProvider.openInput(java.nio.file.Path, org.apache.lucene.store.IOContext, int, boolean, boolean)", "offset": 7}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-yjE"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/gosigar@v0.14.2/sigar_linux.go"}, "function": {"name": "github.com/elastic/gosigar.(*ProcFDUsage).Get.func1"}, "line": {"number": 82}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M-sXhvfna68VyqP_ipf--wAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 4}, "line": {"number": 233}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iPXr6f3Mf7KR5iK4gq24eAAAAAAAAACn"}} -{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.tasks.TaskManager.unregister(org.elasticsearch.tasks.Task)", "offset": 17}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N1R-9DGIZrDXK9x_wnFgtgAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.internalParseDocument(org.elasticsearch.index.mapper.RootObjectMapper, org.elasticsearch.index.mapper.MetadataFieldMapper[], org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.xcontent.XContentParser)", "offset": 10}, "line": {"number": 145}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qv1D_nQ6KTBrcV7EL71OswAAAAAAAADW"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.lambda$publishFlushedSegments$22(org.apache.lucene.index.DocumentsWriterFlushQueue$FlushTicket)", "offset": 19}, "line": {"number": 5382}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jAUUTsaizAq3j3J2fzUHPgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "AbstractQueuedSynchronizer.java"}, "function": {"name": "boolean java.util.concurrent.locks.AbstractQueuedSynchronizer.release(int)", "offset": 1}, "line": {"number": 1007}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "TieredMergePolicy.java"}, "function": {"name": "java.util.List org.apache.lucene.index.TieredMergePolicy.getSortedBySegmentSize(org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 3}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QjcJgCUAsytsXGSmYCNuVgAAAAAAAACu"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 77}, "line": {"number": 612}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAD8TnE"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_docker_metadata/add_docker_metadata.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_docker_metadata.(*addDockerMetadata).lookupContainerIDByPID"}, "line": {"number": 257}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL47y"}} -{"Stackframe": {"function": {"name": "__fdget"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAAhCT"}} -{"Stackframe": {"file": {"name": "runtime/mgcmark.go"}, "function": {"name": "runtime.gcDrain"}, "line": {"number": 1108}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgJ7"}} -{"Stackframe": {"function": {"name": "kmem_cache_alloc"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ewU9RfzsPed7JATT94aw-wAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "long org.apache.lucene.store.FSDirectory.fileLength(java.lang.String)", "offset": 4}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rywk-6b8WKiuckZ62dxSSwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "long org.elasticsearch.index.store.Store$StoreDirectory.estimateSize()"}, "line": {"number": 736}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Xs-XIWLkaULMSkIxus6RkgAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$WriteReplicaResult.runPostReplicaActions(org.elasticsearch.action.ActionListener)", "offset": 13}, "line": {"number": 336}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6MrpMhLvTaclBlHJblL7qgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "PendingSoftDeletes.java"}, "function": {"name": "boolean org.apache.lucene.index.PendingSoftDeletes.isFullyDeleted(org.apache.lucene.util.IOSupplier)"}, "line": {"number": 220}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACi"}} -{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.score(org.apache.lucene.search.LeafCollector, org.apache.lucene.util.Bits, int, int)", "offset": 22}, "line": {"number": 239}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObject(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, java.lang.String[])", "offset": 4}, "line": {"number": 608}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACg6fV"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/os_linux.go"}, "function": {"name": "runtime.futexwakeup.func1"}, "line": {"number": 86}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3wdhQLwtGKOtIUlA7MN19wAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.ClusterModule$$Lambda$2093.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun()", "offset": 10}, "line": {"number": 757}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACq5g8"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bytes/buffer.go"}, "function": {"name": "crypto/tls.(*Conn).readFromUntil"}, "line": {"number": 162}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIjG"}} -{"Stackframe": {"function": {"name": "__seccomp_filter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "36oRMyUvgSK3WoVHEmkD5AAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory.fsync(java.lang.String)"}, "line": {"number": 331}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uHXk96D_H0MjX0tAh6AHfQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.inboundMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage)"}, "line": {"number": 710}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMg4P"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/module/system/process/process.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/module/system/process.(*MetricSet).Fetch"}, "line": {"number": 182}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hq6I_LYL4I-0sHu-9iU7vQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "CommitStats.java"}, "function": {"name": "void org.elasticsearch.index.engine.CommitStats.(org.apache.lucene.index.SegmentInfos)", "offset": 2}, "line": {"number": 33}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MwH6WLoZft7-zWHlQ0-nZgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "boolean org.apache.lucene.util.bkd.BKDWriter$BKDMergeQueue.lessThan(java.lang.Object, java.lang.Object)"}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nAEagQQcCrvY7LHUFhFC8wAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "void sun.nio.ch.NioSocketImpl.write(byte[], int, int)", "offset": 9}, "line": {"number": 440}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xrm08oJc5xqpM1VweLZNZwAAAAAAAAEI"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.rest.RestHandler, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 50}, "line": {"number": 398}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MEhiVOl8P_UEDmr9rO_BjwAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "FollowersChecker.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.FollowersChecker.lambda$new$0(org.elasticsearch.cluster.coordination.FollowersChecker$FollowerCheckRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-ntU"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/blkio.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.parseBlkioValue"}, "line": {"number": 299}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5wvg9HwVtMHbuTIgL8Ac7QAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.TransportService$$Lambda$4790+0x0000000801fcee20.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j_uVzimJAp5UX5EgaOgFoAAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QO-5MHLWnDuhL1CD1b7BCAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "void sun.nio.ch.FileChannelImpl$Unmapper.run()"}, "line": {"number": 1071}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o-e_eFOPJ5Y3ujrj9LYFpQAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "OperatingSystemImpl.java"}, "function": {"name": "double com.sun.management.internal.OperatingSystemImpl.getCpuLoad()", "offset": 4}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3xSivts4s-tBo1MMFQEENgAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.lambda$doAuthenticate$1(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 3}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ouyr9JMrulJxBnFXlkNTeAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Lucene84PostingsReader.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene84.Lucene84PostingsReader$EverythingEnum.nextDoc()"}, "line": {"number": 807}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAALZMO"}} -{"Stackframe": {"file": {"name": "crypto/tls/conn.go"}, "function": {"name": "crypto/tls.(*Conn).Read"}, "line": {"number": 1287}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QR0Rwo9WQpPJ5JxFAcpyCgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.file.DirectoryStream java.nio.file.Files.newDirectoryStream(java.nio.file.Path)"}, "line": {"number": 476}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "ConcurrentMergeScheduler.java"}, "function": {"name": "void org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread.run()", "offset": 4}, "line": {"number": 699}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ntgZha7-wW1dtg73nm5MkwAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "BytesReferenceStreamInput.java"}, "function": {"name": "void org.elasticsearch.common.bytes.BytesReferenceStreamInput.readBytes(byte[], int, int)", "offset": 5}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "NodeClient.java"}, "function": {"name": "void org.elasticsearch.client.internal.node.NodeClient$SafelyWrappedActionListener.onResponse(java.lang.Object)"}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Kx8_JifYLsyt8nlVLT1q4gAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ApiKeyService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.ApiKeyService.lambda$tryAuthenticate$12(org.elasticsearch.xpack.security.authc.ApiKeyService$ApiKeyCredentials, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 1}, "line": {"number": 654}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe"}} -{"Stackframe": {"function": {"name": "__x64_sys_futex"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4n-tP9QoIYIbfuv5fy3s6wAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "OsProbe.java"}, "function": {"name": "boolean org.elasticsearch.monitor.os.OsProbe.areCgroupStatsAvailable()", "offset": 3}, "line": {"number": 497}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACHyB1"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/sort/zfuncversion.go"}, "function": {"name": "sort.quickSort_func"}, "line": {"number": 158}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_FSZcOsFCsjkQUrZFpijiQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "ActionRunnable.java"}, "function": {"name": "void org.elasticsearch.action.ActionRunnable$2.doRun()"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAATuX5"}} -{"Stackframe": {"function": {"name": "blk_mq_sched_insert_requests"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChaU9"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/string.go"}, "function": {"name": "runtime.stringtoslicerune"}, "line": {"number": 201}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr"}} -{"Stackframe": {"function": {"name": "do_page_fault"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAI9cQ"}} -{"Stackframe": {"function": {"name": "kvmalloc_node"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O04YvPLOWUzgQB2ZG7ZshQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ProcessorInfo.java"}, "function": {"name": "int org.elasticsearch.ingest.ProcessorInfo.compareTo(java.lang.Object)"}, "line": {"number": 31}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iFkuHlkQPsBsMnUTpjsUKgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "boolean java.util.concurrent.LinkedTransferQueue.tryTransfer(java.lang.Object)"}, "line": {"number": 1241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vBoVUlhIFzzElOeQU4CcwgAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "FetchLookupFieldsPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchLookupFieldsPhase.run()", "offset": 2}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KP7ul0MvWr6g2vIy7Z-XSgAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "StoredFieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.index.StoredFieldsConsumer.initStoredFieldsWriter()", "offset": 1}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DvdfU48u2QTcLtk5MzruUgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory.fsync(java.lang.String)"}, "line": {"number": 301}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE-_1"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.findrunnable"}, "line": {"number": 2240}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAi2DI"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/reporter/reporter.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/reporter.flushFrameMetadata"}, "line": {"number": 475}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "g4mGiFInhcIQCenccesSCAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "PagedGrowableWriter.java"}, "function": {"name": "void org.apache.lucene.util.packed.PagedGrowableWriter.(long, int, int, float)"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_HPaY4WWXqG7Q6LLBzQZsgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ClearScrollController.java"}, "function": {"name": "void org.elasticsearch.action.search.ClearScrollController.lambda$cleanScrollIds$2(org.elasticsearch.action.search.SearchTransportService$SearchFreeContextResponse)"}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L3BC_TY76W1WekdK_PK3sQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "org.elasticsearch.cluster.DiffableUtils$MapDiff org.elasticsearch.cluster.DiffableUtils.readImmutableOpenMapDiff(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)"}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K9OCWqS5SAb4cJdL5ezbRgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "SearchInputFactory.java"}, "function": {"name": "org.elasticsearch.xpack.watcher.input.search.SearchInput org.elasticsearch.xpack.watcher.input.search.SearchInputFactory.parseInput(java.lang.String, org.elasticsearch.xcontent.XContentParser)"}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dGje15Yliqywq8MDI5FmQQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "void org.elasticsearch.cluster.DiffableUtils$ImmutableOpenMapDiff.(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)"}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KKci4M_8u3lv7Ydwxf31oQAAAAAAAACF"}} -{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "void org.elasticsearch.transport.CopyBytesSocketChannel.doWrite(io.netty.channel.ChannelOutboundBuffer)", "offset": 31}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u1A1mq4_NM3j2_15WwdIbwAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.run()", "offset": 6}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-7AzPTKQkaPts8LuNXMNDQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter$$Lambda$6934+0x0000000801e4f4f8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y5AhuW5zTFbvkEYRGrJ6zgAAAAAAAAEK"}} -{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.fs.UnixChannelFactory.open(int, sun.nio.fs.UnixPath, java.lang.String, sun.nio.fs.UnixChannelFactory$Flags, int)", "offset": 58}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w_BqsnPHylj4BERvm4tv_wAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "AbstractStringBuilder.java"}, "function": {"name": "java.lang.AbstractStringBuilder java.lang.AbstractStringBuilder.append(long)"}, "line": {"number": 852}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLMXk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/io/ioutil/ioutil.go"}, "function": {"name": "io/ioutil.readAll"}, "line": {"number": 36}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1XJVZLI-4RrFbJxSYrx6RgAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "sun.security.ssl.Plaintext sun.security.ssl.SSLSocketImpl.decode(java.nio.ByteBuffer)", "offset": 4}, "line": {"number": 1465}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXwm"}} -{"Stackframe": {"function": {"name": "__fput"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pnzPou3gFrGrThBtxQHp_AAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "TransportShardRefreshAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction.shardOperationOnReplica(org.elasticsearch.action.support.replication.BasicReplicationRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xzEX_ryOXWtTMQZYJuG-1AAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler.lambda$new$0(org.elasticsearch.transport.BytesTransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2WuDX_7V5y0Pc0pDkF5WNQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "EPoll.java"}, "function": {"name": "int sun.nio.ch.EPoll.wait(int, long, int, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7mriOKfPxEedu-U5xcOHzQAAAAAAAABa"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 11}, "line": {"number": 283}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bcjqSMuxBT-dvJSjCv8ndQAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.runRequestInterceptors(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 571}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gJGX9YLt4oQVT1mGe0oQGgAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "AbstractDelegateHttpsURLConnection.java"}, "function": {"name": "void sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect()", "offset": 2}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mNST8o45bfhZN7s02QoOeAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 1292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dpyOM9W9jw9r880o5Ov72gAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "MappingLookup.java"}, "function": {"name": "java.util.List org.elasticsearch.index.mapper.MappingLookup.getNestedParentMappers()", "offset": 2}, "line": {"number": 457}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i2OZ9-P_pjOFSV36486xoQAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 3}, "line": {"number": 637}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CqHdoNRupr5ud0SEqGGzcgAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "ResourceWatcherService.java"}, "function": {"name": "void org.elasticsearch.watcher.ResourceWatcherService$ResourceMonitor.run()", "offset": 2}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XV1Ou4HZia8HNGp4Rd93bAAAAAAAAAE-"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "java.lang.String[] java.lang.String.split(java.lang.String, int)", "offset": 45}, "line": {"number": 3161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-xUJ"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.Reader.ProcessCgroupPaths"}, "line": {"number": 293}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABqfG"}} -{"Stackframe": {"file": {"name": "runtime/sys_linux_amd64.s"}, "function": {"name": "runtime.getpid"}, "line": {"number": 173}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wfMlOb4AFY0poDJbAxrocwAAAAAAAABF"}} -{"Stackframe": {"file": {"name": "PeerFinder.java"}, "function": {"name": "boolean org.elasticsearch.discovery.PeerFinder$Peer.handleWakeUp()", "offset": 12}, "line": {"number": 354}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZG8Pp6zNb-XHIUlPQm4blAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.bulk.BulkShardRequest$$Lambda$7067+0x0000000801d70000.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "082hmHaVcsUtei0Hc5kRVQAAAAAAAABR"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.BufferedUpdatesStream$SegmentState[] org.apache.lucene.index.IndexWriter.openSegmentStates(java.util.List, java.util.Set, long)", "offset": 6}, "line": {"number": 6328}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFyT9"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/sys_linux_amd64.s"}, "function": {"name": "runtime.nanotime1"}, "line": {"number": 317}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mBpiFuvmv7Bhv5yWRlHpOwAAAAAAAACG"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 134}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BwKQEmS_WcRXepUV2YDQ6QAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "SSLAlgorithmDecomposer.java"}, "function": {"name": "java.util.Set sun.security.ssl.SSLAlgorithmDecomposer.decompose(java.lang.String)", "offset": 10}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "com.typesafe.config.impl.AbstractConfigValue com.typesafe.config.impl.SimpleConfig.find(com.typesafe.config.impl.Path, com.typesafe.config.ConfigValueType, com.typesafe.config.impl.Path)"}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OppFSDODTzgTHYJG_GWJMwAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.io.stream.StreamInput.readMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader, java.util.function.IntFunction)", "offset": 7}, "line": {"number": 654}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5XlE5KvRrfbNOpt-JVgrOAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Setting.getRaw(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 534}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uhX1qfoGgATHLd0SFlL86gAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "ByteBufferIndexInput.java"}, "function": {"name": "org.apache.lucene.store.ByteBufferIndexInput org.apache.lucene.store.ByteBufferIndexInput.buildSlice(java.lang.String, long, long)", "offset": 4}, "line": {"number": 443}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxFzk"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/os.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.makeOSInfo"}, "line": {"number": 185}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UeUQgO6mk4v2Tf2h_dZ3VAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "MessageToMessageCodec.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageCodec$1.encode(io.netty.channel.ChannelHandlerContext, java.lang.Object, java.util.List)"}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC8B_Y"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/strings.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/beat.(*Event).PutValue"}, "line": {"number": 449}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIbq7"}} -{"Stackframe": {"function": {"name": "add_to_page_cache_lru"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oAl3S1UdiCfcB1msAHRleQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "SSLCipher.java"}, "function": {"name": "int sun.security.ssl.SSLCipher$T13GcmWriteCipherGenerator$GcmWriteCipher.encrypt(byte, java.nio.ByteBuffer)"}, "line": {"number": 2080}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AB23CMaiG5qxUv7Vd8TMWgAAAAAAAADh"}} -{"Stackframe": {"file": {"name": "BKDReader.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDReader$BKDPointTree.visitDocValuesWithCardinality(int[], byte[], byte[], byte[], org.apache.lucene.store.IndexInput, org.apache.lucene.util.bkd.BKDReader$BKDReaderDocIDSetIterator, int, org.apache.lucene.index.PointValues$IntersectVisitor)", "offset": 44}, "line": {"number": 840}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6himjS-PpAivu9i1Bhv6aAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.consumeToken(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DafhJmPeATcw-S0FkflB2wAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.rest.action.user.RestHasPrivilegesAction$$Lambda$8918+0x00000008027d3478.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kmuRR9C9QPDwdSynVWZfBAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "CommitStats.java"}, "function": {"name": "void org.elasticsearch.index.engine.CommitStats.(org.apache.lucene.index.SegmentInfos)", "offset": 2}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pTQwlw111ksRO8rVWFQy5wAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrapAndFlush(io.netty.channel.ChannelHandlerContext)", "offset": 15}, "line": {"number": 804}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WSancnmbX3N0mzUrLDNaPQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(io.netty.channel.AbstractChannelHandlerContext, java.lang.Object)"}, "line": {"number": 362}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YuFRqUWC2dt608XUwtEIRQAAAAAAAABw"}} -{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.buildRoleFromRoleReference(org.elasticsearch.xpack.core.security.authz.store.RoleReference, org.elasticsearch.action.ActionListener)", "offset": 50}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACVEkY"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/http/transfer.go"}, "function": {"name": "net/http.(*body).Read"}, "line": {"number": 825}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y42fk-Ms4CyfeVg3LVDZpQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "URLClassLoader.java"}, "function": {"name": "java.io.InputStream java.net.URLClassLoader.getResourceAsStream(java.lang.String)", "offset": 1}, "line": {"number": 286}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h36HgL3bbvDsQtV-NCGi2AAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter$$Lambda$6502+0x0000000801c91620.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sUo4V5ggmQmDpXEq3uSXMQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.CopyBytesSocketChannel.writeToSocketChannel(java.nio.channels.SocketChannel, java.nio.ByteBuffer)"}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTPq"}} -{"Stackframe": {"function": {"name": "d_path"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1JFJglGYKFEdOODML6v_9QAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "int org.apache.lucene.index.ReadersAndUpdates.numDeletesToMerge(org.apache.lucene.index.MergePolicy)"}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0aWdJRfj2n3sVYiPeIlMAgAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "Netty4HttpPipeliningHandler.java"}, "function": {"name": "boolean org.elasticsearch.http.netty4.Netty4HttpPipeliningHandler.enqueueWrite(io.netty.channel.ChannelHandlerContext, io.netty.handler.codec.http.HttpObject, io.netty.channel.ChannelPromise)", "offset": 1}, "line": {"number": 366}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7hl5kfi4bDUY-IGjjF1I9QAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "HistoryStore.java"}, "function": {"name": "void org.elasticsearch.xpack.watcher.history.HistoryStore.put(org.elasticsearch.xpack.core.watcher.history.WatchRecord)", "offset": 6}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ISo198vJQrYNdynfqzotagAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.lang.Object java.util.TreeMap.get(java.lang.Object)"}, "line": {"number": 279}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAB1xd"}} -{"Stackframe": {"function": {"name": "xfs_generic_create"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "c9PnOdDPyU4oBYBeuUJKDQAAAAAAAAFe"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesProducer.readFields(java.lang.String, org.apache.lucene.store.ChecksumIndexInput, org.apache.lucene.index.FieldInfos)"}, "line": {"number": 123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "42z5TUZVQMx41Jhs9inuSgAAAAAAAAF6"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "int io.netty.handler.ssl.SslHandler.unwrap(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, int, int)", "offset": 77}, "line": {"number": 1440}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n1iVFjBzfESOHprfqoe0LwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "DateFieldMapper.java"}, "function": {"name": "long org.elasticsearch.index.mapper.DateFieldMapper$DateFieldType.parse(java.lang.String)"}, "line": {"number": 479}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FDp23rE1CceEicB2tyC3EgAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$5(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationResult)", "offset": 9}, "line": {"number": 405}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JxeuDmtaTXb_lCXNaZWRFAAAAAAAAAEQ"}} -{"Stackframe": {"file": {"name": "StandardTokenizerImpl.java"}, "function": {"name": "int org.apache.lucene.analysis.standard.StandardTokenizerImpl.getNextToken()", "offset": 66}, "line": {"number": 1059}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oms6Ttrfu1M4pZRKD0ZUGAAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "TermStates.java"}, "function": {"name": "org.apache.lucene.index.TermState org.apache.lucene.index.TermStates.get(org.apache.lucene.index.LeafReaderContext)", "offset": 4}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uof2oKCX86V-_cQCuGg7EwAAAAAAAGuE"}} -{"Stackframe": {"function": {"name": "ipv4_conntrack_in"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4EfOVjZ8UDEWtY1KnqslYAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ForDeltaUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.ForDeltaUtil.decodeAndPrefixSum(org.apache.lucene.store.DataInput, long, long[])"}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jyHYRKpoKiz_YdnlTFddHgAAAAAAAACY"}} -{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "long org.apache.lucene.index.DocumentsWriter.flushAllThreads()", "offset": 22}, "line": {"number": 656}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mDwqxOA1aWXm0v9SUcRWrwAAAAAAAACR"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.publishFlushedSegment(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.FieldInfos, org.apache.lucene.index.FrozenBufferedUpdates, org.apache.lucene.index.FrozenBufferedUpdates, org.apache.lucene.index.Sorter$DocMap)", "offset": 32}, "line": {"number": 2837}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAis3L"}} -{"Stackframe": {"function": {"name": "sock_alloc_send_pskb"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k11AiDI6CCFbyQU3K5sSGQAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "RestCancellableNodeClient.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestCancellableNodeClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 2}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SQjdgx2wqIxyPHp2kbwpQQAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "AbstractAsyncTask.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractAsyncTask.rescheduleIfNecessary()", "offset": 6}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJ"}} -{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile.inbound(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.action.ActionListener)", "offset": 33}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAACJpE"}} -{"Stackframe": {"function": {"name": "xlog_state_done_syncing"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Lcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2"}} -{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.score(org.apache.lucene.search.LeafCollector, org.apache.lucene.util.Bits, int, int)", "offset": 28}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YnTzskd9MCNgm1sHtB0zJAAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "IngestService.java"}, "function": {"name": "void org.elasticsearch.ingest.IngestService.innerUpdatePipelines(org.elasticsearch.ingest.IngestMetadata)", "offset": 9}, "line": {"number": 569}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AKA_xNbMD2YwYHRAUU-hzAAAAAAAAACC"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.commitInternal(org.apache.lucene.index.MergePolicy)", "offset": 25}, "line": {"number": 4052}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UPaaTbIsDz4Tx1YpiwEZMQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ApmServerClient.java"}, "function": {"name": "boolean co.elastic.apm.agent.report.ApmServerClient.supportsKeepingUnsampledTransaction()"}, "line": {"number": 345}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "v-dzrDzLbKAbYGTnBhfr9gAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$7111+0x00000008024c15d0.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vj1iCYbFivBIOzaEHhjU-gAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "VMManagementImpl.java"}, "function": {"name": "int sun.management.VMManagementImpl.getPeakThreadCount()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "krRTeyA1V-X3nZVYjnbwWAAAAAAAAAE8"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 316}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiMiT"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.getpeername"}, "line": {"number": 1514}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PxG4kqBtC76qisSIA3IEOgAAAAAAAABz"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser._finishAndReturnString()", "offset": 22}, "line": {"number": 2436}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DNMSP4UcXImUndf71pg8FQAAAAAAAABh"}} -{"Stackframe": {"file": {"name": "S3RetryingInputStream.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3RetryingInputStream.(org.elasticsearch.repositories.s3.S3BlobStore, java.lang.String, long, long)", "offset": 22}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABqpl"}} -{"Stackframe": {"file": {"name": "runtime/sys_linux_amd64.s"}, "function": {"name": "runtime.sigtramp"}, "line": {"number": 361}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JSGf2yEAEhxiBfW1U6B9NgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$7112+0x00000008024c17e0.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlrp9"}} -{"Stackframe": {"function": {"name": "tcp_write_xmit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAYEQ"}} -{"Stackframe": {"function": {"name": "do_open_dir"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAADgcoO"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_docker_metadata/add_docker_metadata.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_docker_metadata.(*addDockerMetadata).getProcessCgroups"}, "line": {"number": 274}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LFO-G1Dos0toht1-zeuhBwAAAAAAAAB6"}} -{"Stackframe": {"file": {"name": "PeerFinder.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PeersResponse org.elasticsearch.discovery.PeerFinder.handlePeersRequest(org.elasticsearch.discovery.PeersRequest)", "offset": 9}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tBGZzB5ZNClfuCqDA5LS5gAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Policy.java"}, "function": {"name": "boolean java.security.Policy$PolicyDelegate.implies(java.security.ProtectionDomain, java.security.Permission)"}, "line": {"number": 796}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TIkb6zg3gle8GrEEDlxEHwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.IndexReader$$Lambda$6489+0x0000000801ca1d90.close()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uixEkl-WfyMHq9fe86bwhwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "HttpContentEncoder.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpContentEncoder.decode(io.netty.channel.ChannelHandlerContext, io.netty.handler.codec.http.HttpRequest, java.util.List)", "offset": 1}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFgX"}} -{"Stackframe": {"function": {"name": "smp_call_function_single"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-KRdnkPu2lSKWAoWjDevIAAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "SearchExecutionContext.java"}, "function": {"name": "org.elasticsearch.index.mapper.MappedFieldType org.elasticsearch.index.query.SearchExecutionContext.fieldType(java.lang.String)", "offset": 4}, "line": {"number": 376}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b2XRkTRSoWuyX3U4lJkMnAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$6521+0x0000000801cbc000.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Jj6ja2Wbkf1_R1a9nVWcUAAAAAAAAACJ"}} -{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.CommonStats.(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 9}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxC9R"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/host_linux.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.(*host).NetworkCounters"}, "line": {"number": 86}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LU8s6co8D-NXVKl_o0XrzQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "void io.netty.util.concurrent.DefaultPromise.notifyListeners0(io.netty.util.concurrent.DefaultFutureListeners)", "offset": 3}, "line": {"number": 571}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z8MLotfDzYWkcVjCT9EUBQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction$$Lambda$6980+0x0000000801e5e640.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALko9"}} -{"Stackframe": {"function": {"name": "path_lookupat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-7qKHNvuu4dQ-NSojX-1nAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SortedSetSelector.java"}, "function": {"name": "int org.apache.lucene.search.SortedSetSelector$MinValue.nextDoc()"}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4gY0Alqd97J9BqG1Fh3sXQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ScrollableHitSource.java"}, "function": {"name": "void org.elasticsearch.index.reindex.ScrollableHitSource.lambda$close$2(java.lang.Runnable)"}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VjcbdnnQUMfgz1UYqKyDaQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "sun.nio.fs.UnixPath sun.nio.fs.UnixPath.getName(int)"}, "line": {"number": 301}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApQK3"}} -{"Stackframe": {"function": {"name": "strchr"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBAu"}} -{"Stackframe": {"function": {"name": "xen_hvm_callback_vector"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9gjRuxRdRyq16xbNcyHimgAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "BKDReader.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDReader$BKDPointTree.addAll(org.apache.lucene.index.PointValues$IntersectVisitor, boolean)", "offset": 16}, "line": {"number": 578}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BvLbND_0DrAH3Z_KTjqNwwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "HashSet.java"}, "function": {"name": "boolean java.util.HashSet.add(java.lang.Object)"}, "line": {"number": 221}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0WnhDfOMt_1bQ20KgdrvJQAAAAAAAAB7"}} -{"Stackframe": {"file": {"name": "Coordinator.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.Coordinator.handleApplyCommit(org.elasticsearch.cluster.coordination.ApplyCommitRequest, org.elasticsearch.action.ActionListener)", "offset": 10}, "line": {"number": 270}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-mQS"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/blkio.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.blkioThrottle"}, "line": {"number": 137}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEXTn"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mcache.go"}, "function": {"name": "runtime.(*mcache).refill"}, "line": {"number": 142}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cDDKtM-30WtgKUZUhSPZowAAAAAAAAEM"}} -{"Stackframe": {"file": {"name": "PolicyStepsRegistry.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.ilm.PolicyStepsRegistry.parseStepsFromPhase(java.lang.String, java.lang.String, java.lang.String)", "offset": 30}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m2bU0P2xZXc_YHF7mglt9gAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "OTelSpan.java"}, "function": {"name": "void co.elastic.apm.agent.opentelemetry.sdk.OTelSpan.end()", "offset": 6}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyPe"}} -{"Stackframe": {"function": {"name": "audit_filter_rules.constprop.21"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0XRh6h_ZEVDJ7HRd-FzeqwAAAAAAAABT"}} -{"Stackframe": {"file": {"name": "IngestService.java"}, "function": {"name": "org.elasticsearch.ingest.IngestInfo org.elasticsearch.ingest.IngestService.info()", "offset": 5}, "line": {"number": 266}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nB7ASI-agyjwniBzr5SZ-QAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "RepeatableInputStreamRequestEntity.java"}, "function": {"name": "void com.amazonaws.http.RepeatableInputStreamRequestEntity.writeTo(java.io.OutputStream)", "offset": 3}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "46OBP4AiIuvPByLPCVNeuQAAAAAAAAFI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 328}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAiyat"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-collection-agent/collectionagent/collection_agent_grpc.pb.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-collection-agent/collectionagent.(*collectionAgentClient).SetFramesForTraces"}, "line": {"number": 88}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3fLdTF4ecUJhitKTdv8I9QAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4.encodeLiterals(byte[], int, int, int, org.apache.lucene.store.DataOutput)"}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCOK"}} -{"Stackframe": {"function": {"name": "futex_wait"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kXBknDWGbdkbMu0fWipa9wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.bulk.TransportShardBulkAction$$Lambda$5694+0x00000008022364d8.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$1.doRun()"}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bdcjH1IduvC01JhGXDULzgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "BufferedChecksumIndexInput.java"}, "function": {"name": "byte org.apache.lucene.store.BufferedChecksumIndexInput.readByte()"}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgrPk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcsweep.go"}, "function": {"name": "runtime.sweepone"}, "line": {"number": 337}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hPwkdaFQjwJn-BRCl2XakwAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "InternalMappedTerms.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.search.aggregations.bucket.terms.InternalMappedTerms.doXContentBody(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)"}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACW0AL"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/gopkg.in/yaml.v2@v2.3.0/decode.go"}, "function": {"name": "gopkg.in/yaml%2ev2.(*parser).parse"}, "line": {"number": 149}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pn9POQXvPZ6AJ72pwmniEgAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5656+0x0000000801abf970.getAsync(org.elasticsearch.action.ActionListener)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZLdnJScMMbJz4xNn2ogw5AAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "MatchOps.java"}, "function": {"name": "java.lang.Boolean java.util.stream.MatchOps$MatchOp.evaluateSequential(java.util.stream.PipelineHelper, java.util.Spliterator)"}, "line": {"number": 230}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qThtgbHprFVYaxHnWJ5r2AAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$authenticateAsync$0(org.elasticsearch.xpack.security.authc.UserToken)", "offset": 3}, "line": {"number": 329}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WB9GVskeRyK4_o3XD61XIAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$7541+0x0000000801ef8440.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGmeE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/internal/poll/fd_unix.go"}, "function": {"name": "internal/poll.(*FD).Init"}, "line": {"number": 62}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "J8ucvlAYlVV3voUZhd041QAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.refreshIfNeeded(java.lang.Object)"}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Rlevsb4n_7FYgGFsfkD1QgAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "PipelineConfiguration.java"}, "function": {"name": "boolean org.elasticsearch.ingest.PipelineConfiguration.equals(java.lang.Object)", "offset": 6}, "line": {"number": 147}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nd8ByWx0Um8uF6bezxKuxAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "java.nio.file.Path[] org.elasticsearch.watcher.FileWatcher$FileObserver.listFiles()"}, "line": {"number": 210}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "v9PefBDDy2o7h2ynvK6BYwAAAAAAAABa"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.file.DirectoryStream sun.nio.fs.UnixFileSystemProvider.newDirectoryStream(java.nio.file.Path, java.nio.file.DirectoryStream$Filter)", "offset": 24}, "line": {"number": 430}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o0OVH2LBiDEc9yJITJL7oAAAAAAAAABu"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$TermsDict.(org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer, org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$TermsDictEntry, org.apache.lucene.store.IndexInput)", "offset": 16}, "line": {"number": 1072}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XxWCxpGmCS2l2h5qK0WBAQAAAAAAAACN"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.lang.Object java.util.TreeMap.put(java.lang.Object, java.lang.Object)", "offset": 32}, "line": {"number": 566}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yDhpbqgW_DW17T8_Sh39QgAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.authenticateAsync()", "offset": 6}, "line": {"number": 333}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yOGQcz1HlHMBFat5qSpZkQAAAAAAAABK"}} -{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "void org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction.start()", "offset": 8}, "line": {"number": 320}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGKd7"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.write"}, "line": {"number": 914}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uny6BSDonpAkKlB1LldfXAAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 496}, "line": {"number": 497}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cH5e-m7C0kdpVcIwQVOfDgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ES85BloomFilterPostingsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.FieldsProducer org.elasticsearch.index.codec.bloomfilter.ES85BloomFilterPostingsFormat.fieldsProducer(org.apache.lucene.index.SegmentReadState)"}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MFna6GF40zYSy1dmTg0DBAAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "PForUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.PForUtil.encode(long[], org.apache.lucene.store.DataOutput)", "offset": 5}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-wsG"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.Reader.ProcessCgroupPaths"}, "line": {"number": 239}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Jl43jsYwl7W0BBNHUsQZ-gAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "MultiValueMapAccessor.java"}, "function": {"name": "java.lang.String co.elastic.apm.agent.impl.transaction.MultiValueMapAccessor.getFirstHeader(java.lang.String, co.elastic.apm.agent.util.PotentiallyMultiValuedMap)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LtwWMtOCVYMwVl8TS_MduQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "BaseTranslogReader.java"}, "function": {"name": "long org.elasticsearch.index.translog.BaseTranslogReader.getLastModifiedTime()"}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H7o77ANtSaWU3Ypp865GJwAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "void org.elasticsearch.cluster.DiffableUtils$MapDiff.(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)", "offset": 8}, "line": {"number": 390}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZ"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.parseMountinfoLine"}, "line": {"number": 104}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wbaLv8BbexWnwmBDRi5IZgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "SpanContext.java"}, "function": {"name": "boolean io.opentelemetry.api.trace.SpanContext.isValid()"}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Z5bymihzf4CQyWGMQZAZdQAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "UnixFileAttributes.java"}, "function": {"name": "sun.nio.fs.UnixFileAttributes sun.nio.fs.UnixFileAttributes.get(sun.nio.fs.UnixPath, boolean)", "offset": 2}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nmOYE2Kt3__TKktJn_mzpAAAAAAAAAGb"}} -{"Stackframe": {"file": {"name": "DefaultSearchContext.java"}, "function": {"name": "void org.elasticsearch.search.DefaultSearchContext.preProcess()", "offset": 84}, "line": {"number": 264}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DhNdw_t14XCu9KX4KEk8MgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction$$Lambda$7001+0x00000008024a2078.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAC1Jkz"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/outputs/logstash/async.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/outputs/logstash.(*msgRef).dec"}, "line": {"number": 276}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hpS1QtdrBQjGg-LCbfqeSAAAAAAAAFcz"}} -{"Stackframe": {"function": {"name": "br_netif_receive_skb"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlE4S"}} -{"Stackframe": {"function": {"name": "ip_route_input_slow"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UoX-ughXNd_AmddejeY_6gAAAAAAAACL"}} -{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.req(java.util.Collection, java.util.Collection, long)", "offset": 28}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s5CzqyR6_GmBEGxwpC8zNAAAAAAAAABK"}} -{"Stackframe": {"file": {"name": "Lucene84PostingsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.Lucene84PostingsReader$BlockDocsEnum.refillDocs()", "offset": 9}, "line": {"number": 424}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OWLUoD3Zz_z6tcDrQ1MGHAAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "ScrollableHitSource.java"}, "function": {"name": "void org.elasticsearch.index.reindex.ScrollableHitSource.onResponse(org.elasticsearch.index.reindex.ScrollableHitSource$Response)", "offset": 2}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CfRf9TyA02mWCsGnRge77gAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "ChainInput.java"}, "function": {"name": "org.elasticsearch.xpack.core.watcher.input.Input org.elasticsearch.xpack.watcher.input.chain.ChainInput.parseSingleInput(java.lang.String, java.lang.String, org.elasticsearch.xcontent.XContentParser, org.elasticsearch.xpack.watcher.input.InputRegistry)", "offset": 4}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pTQwlw111ksRO8rVWFQy5wAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrapAndFlush(io.netty.channel.ChannelHandlerContext)", "offset": 11}, "line": {"number": 800}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BzUZDRcpQTRRSSLENpOpZgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "LifecyclePolicyConfig.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecyclePolicy org.elasticsearch.xpack.core.template.LifecyclePolicyConfig.load(org.elasticsearch.common.xcontent.NamedXContentRegistry)"}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZkLsycxKPf36jJRxnsYRXgAAAAAAAACp"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.support.AbstractXContentParser.readValueUnsafe(org.elasticsearch.common.xcontent.XContentParser$Token, org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier)", "offset": 8}, "line": {"number": 387}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cJx4E-nTUnf49zwDorSgIwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.SegmentMerger$$Lambda$8374+0x0000000802744400.merge(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.SegmentReadState)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-uTv"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/reader.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.(*Reader).GetV1StatsForProcess"}, "line": {"number": 194}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFrZP"}} -{"Stackframe": {"function": {"name": "auditd_test_task"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA0OO"}} -{"Stackframe": {"file": {"name": "runtime/os_linux.go"}, "function": {"name": "runtime.futexsleep"}, "line": {"number": 75}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qsf4oB191Ejhqczjg1I-pAAAAAAAAADJ"}} -{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "boolean org.apache.lucene.util.bkd.BKDWriter$MergeReader.next()", "offset": 41}, "line": {"number": 286}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h9JxRYZ-Y8EVIiI8sDoSGAAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.implRead(byte[], int, int)", "offset": 11}, "line": {"number": 309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMltB"}} -{"Stackframe": {"function": {"name": "show_mountinfo"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IWb6KEDEet9GjRbj5wCi1gAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "void java.io.FilePermission.(java.lang.String, java.lang.String)", "offset": 1}, "line": {"number": 490}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJbu_"}} -{"Stackframe": {"function": {"name": "copy_page_range"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mBUMQufVJBVVG00JrcabBwAAAAAAAAC1"}} -{"Stackframe": {"file": {"name": "MappingVisitor.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.stats.MappingVisitor.visitMapping(java.util.Map, java.util.function.Consumer)", "offset": 26}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3F2z0U59C1y3O1vSXqnJygAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.nextDoc()", "offset": 2}, "line": {"number": 218}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pYMvKU2r2nETpEeIP80PQQAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$2(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener, org.elasticsearch.common.util.concurrent.ListenableFuture, org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$CachedResult)", "offset": 4}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-ob5"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/cpuacct.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.cpuacctStat"}, "line": {"number": 74}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lOB_jfofKxCvxNOf2aL3qQAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "PotentiallyMultiValuedMap.java"}, "function": {"name": "int co.elastic.apm.agent.util.PotentiallyMultiValuedMap.indexOfIgnoreCase(java.lang.String)", "offset": 1}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TdeG-HhQrtyN0JpgHcoYowAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeBulkItems$19(java.util.Set, org.elasticsearch.action.ActionListener)"}, "line": {"number": 804}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uoS8VlPflz8QSK7BPMOvQQAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "Lucene90CompoundReader.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90CompoundReader.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 7}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uoS8VlPflz8QSK7BPMOvQQAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "Lucene90CompoundReader.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90CompoundReader.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 12}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zeD4Sc2IabUdV1xLspp0EgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.threadpool.ThreadPool$Info.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)"}, "line": {"number": 838}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACjBzz"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/time/time.go"}, "function": {"name": "os.fillFileStatFromSys"}, "line": {"number": 1341}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NB3KICW80r4krIyGFXIJIgAAAAAAAAB8"}} -{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "long org.apache.lucene.index.DocumentsWriterPerThread.updateDocuments(java.lang.Iterable, org.apache.lucene.index.DocumentsWriterDeleteQueue$Node, org.apache.lucene.index.DocumentsWriter$FlushNotifications, java.lang.Runnable)", "offset": 31}, "line": {"number": 247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k-iHhugN07psoCA3oD8uAgAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "DeflaterOutputStream.java"}, "function": {"name": "void java.util.zip.DeflaterOutputStream.deflate()"}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL2nC"}} -{"Stackframe": {"function": {"name": "iput"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a6qkY_hGF4SgNNFbdqPl-wAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "Lucene90SkipWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90SkipWriter.(int, int, int, org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput)", "offset": 101}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "A-l7rVlo-Q0lIzJjDruhtQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "IndicesStore.java"}, "function": {"name": "boolean org.elasticsearch.indices.store.IndicesStore.shardCanBeDeleted(java.lang.String, org.elasticsearch.cluster.routing.IndexShardRoutingTable)", "offset": 6}, "line": {"number": 181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pz26RZIIszjYMjtzkRg4ogAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.doAddSortedField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)"}, "line": {"number": 499}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.onResponse(java.lang.Object)"}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Vwe_72Rv4VHVlHKolSYlNQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "MergePolicy.java"}, "function": {"name": "long org.apache.lucene.index.MergePolicy.size(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.MergePolicy$MergeContext)"}, "line": {"number": 744}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WKOnV4dhtUKFY7wtM7-RyAAAAAAAAABk"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.updateDocs(org.apache.lucene.index.Term, java.util.List, org.apache.lucene.index.IndexWriter)", "offset": 10}, "line": {"number": 1442}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hQjSp-1ZnEm-DqAW6B75BQAAAAAAAAJB"}} -{"Stackframe": {"file": {"name": "DefaultSearchContext.java"}, "function": {"name": "void org.elasticsearch.search.DefaultSearchContext.preProcess(boolean)", "offset": 63}, "line": {"number": 263}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "P_-wvKocvBVnuoJ9__YUKgAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "ApacheHttpRequestFactory.java"}, "function": {"name": "void com.amazonaws.http.apache.request.impl.ApacheHttpRequestFactory.addHeadersToRequest(org.apache.http.client.methods.HttpRequestBase, com.amazonaws.Request)"}, "line": {"number": 248}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9zTS8BJo8yF8ShqN_mSp8AAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "java.nio.file.Path sun.nio.fs.UnixPath.getFileName()"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6Nl0gY43nPPrQT3jaCG99QAAAAAAAAB5"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.lambda$addGlobalMetadataDocuments$6(org.apache.lucene.util.BytesRef, int, boolean)", "offset": 6}, "line": {"number": 1092}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PMxohprh7424nqIeiyi3LAAAAAAAAAB1"}} -{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode.implGCMCrypt0(byte[], int, int, byte[], int, byte[], int, com.sun.crypto.provider.GCTR, com.sun.crypto.provider.GHASH)", "offset": 18}, "line": {"number": 639}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k1o6cGLS1FzksoHJvPKdFQAAAAAAAAEp"}} -{"Stackframe": {"file": {"name": "Lucene94FieldInfosFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene94.Lucene94FieldInfosFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.index.FieldInfos, org.apache.lucene.store.IOContext)", "offset": 38}, "line": {"number": 368}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4U_zL7awL15Zhtkek0gtnAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "DataOutput.java"}, "function": {"name": "void org.apache.lucene.store.DataOutput.writeLong(long)"}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2OyxZS1eUR3RgEBXZu5OrAAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "RestMainAction.java"}, "function": {"name": "org.elasticsearch.rest.BytesRestResponse org.elasticsearch.rest.action.RestMainAction.convertMainResponse(org.elasticsearch.action.main.MainResponse, org.elasticsearch.rest.RestRequest, org.elasticsearch.xcontent.XContentBuilder)", "offset": 3}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BrUFbWJQXA38LKOgrDwJigAAAAAAAADk"}} -{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 45}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I0USoma0OWjdGMGSaTNhgQAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.scoreRange(org.apache.lucene.search.LeafCollector, org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.search.TwoPhaseIterator, org.apache.lucene.util.Bits, int, int)", "offset": 5}, "line": {"number": 254}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FDHy--PvgHpUWFquuqO7RAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.docID()"}, "line": {"number": 211}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gG-E_4fA-ZwbNoblYcK9MwAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "ByteBufferIndexInput.java"}, "function": {"name": "void org.apache.lucene.store.ByteBufferIndexInput.close()", "offset": 9}, "line": {"number": 508}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YDrovqwdGSszhpqY3JNzmQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "CompressorFactory.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.common.compress.CompressorFactory.uncompress(org.elasticsearch.common.bytes.BytesReference, org.elasticsearch.common.compress.Compressor)"}, "line": {"number": 94}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_zxyi-wgtH_Wz8ut-WKY9wAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Setting.innerGetRaw(org.elasticsearch.common.settings.Settings)", "offset": 4}, "line": {"number": 550}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "enCT2wT4vOCHFvMHhBSliQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService$AsyncRefreshTask.runInternal()"}, "line": {"number": 1012}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "HttpRequestExecutor.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.protocol.HttpRequestExecutor.execute(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext)", "offset": 4}, "line": {"number": 123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL8kq"}} -{"Stackframe": {"function": {"name": "lookup_mnt"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QJ-JVADSuuonf59sOKCy_wAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.unwrap(java.nio.ByteBuffer, java.nio.ByteBuffer[], int, int)"}, "line": {"number": 482}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObjectOrField(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.Mapper)", "offset": 4}, "line": {"number": 577}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gJo6kaLmCyBmWcpTZxcJwQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Reference.java"}, "function": {"name": "void java.lang.ref.Reference.processPendingReferences()"}, "line": {"number": 241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGMsk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/asm_linux_amd64.s"}, "function": {"name": "syscall.Syscall"}, "line": {"number": 19}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VTaMtF9TNwwiR5vZiTRm2AAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "LowerCaseFilter.java"}, "function": {"name": "boolean org.apache.lucene.analysis.LowerCaseFilter.incrementToken()"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jWxMhVzBeHM3bqEF5ueSZwAAAAAAAACO"}} -{"Stackframe": {"file": {"name": "Lucene90PostingsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90PostingsWriter.(org.apache.lucene.index.SegmentWriteState)", "offset": 22}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "07D5zPmq5WKTujCLawFNUQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$authorizeRequest$4(org.elasticsearch.action.ActionListener, java.lang.Void)"}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Li--jNLhFbogbPx7uUpcfwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$9(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult)"}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DkUb3XtVJF4DvOzLdzKoEQAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.lambda$handleRequest$0(java.lang.String, org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient, org.elasticsearch.xpack.core.security.authc.support.SecondaryAuthentication)", "offset": 4}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nbxghp8tZ6br5orRTpLdNAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "StringLiteralDeduplicator.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.util.StringLiteralDeduplicator.deduplicate(java.lang.String)"}, "line": {"number": 28}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fxhAZVfrZSTvh4Ktxrpz7AAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "DisiPriorityQueue.java"}, "function": {"name": "org.apache.lucene.search.DisiWrapper org.apache.lucene.search.DisiPriorityQueue.updateTop()", "offset": 1}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "igbwprokH3CDrh8StLnYiwAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4.encodeSequence(byte[], int, int, int, int, org.apache.lucene.store.DataOutput)", "offset": 4}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "58PnEv0FiTCmFiCnV0BHcAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ReaderBasedJsonParser.java"}, "function": {"name": "boolean com.fasterxml.jackson.core.json.ReaderBasedJsonParser._loadMore()"}, "line": {"number": 247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_DBE"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/reassembler.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2.(*Reassembler).Push"}, "line": {"number": 108}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xZkBv_-w_d4qYkT59inZ_AAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.ActionRunnable$$Lambda$7105+0x0000000801e7d0c0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jOvgYa7shL23WbA9QtpbWQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "DeprecationLogger.java"}, "function": {"name": "org.elasticsearch.common.logging.DeprecationLogger org.elasticsearch.common.logging.DeprecationLogger.critical(org.elasticsearch.common.logging.DeprecationCategory, java.lang.String, java.lang.String, java.lang.Object[])"}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zbjhk7iO4zKDe_CtTcO5FQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "JvmGcMonitorService.java"}, "function": {"name": "void org.elasticsearch.monitor.jvm.JvmGcMonitorService$JvmMonitor.run()"}, "line": {"number": 392}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXV8E"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/events.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.startPerfEventMonitor.func1"}, "line": {"number": 257}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gpel-2y6MT8HpZSUXeX6xwAAAAAAAABH"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "org.elasticsearch.index.mapper.ParsedDocument org.elasticsearch.index.mapper.DocumentParser.parseDocument(org.elasticsearch.index.mapper.SourceToParse, org.elasticsearch.index.mapper.MappingLookup)", "offset": 5}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iJUKeKW0xaqGpTp8va8hSwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "FilterClient.java"}, "function": {"name": "void org.elasticsearch.client.FilterClient.(org.elasticsearch.common.settings.Settings, org.elasticsearch.threadpool.ThreadPool, org.elasticsearch.client.Client)"}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "v6FgBz4wNTmr_DkVJTekGwAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "ES85BloomFilterPostingsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.FieldsConsumer org.elasticsearch.index.codec.bloomfilter.ES85BloomFilterPostingsFormat.fieldsConsumer(org.apache.lucene.index.SegmentWriteState)", "offset": 4}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAF0JU"}} -{"Stackframe": {"function": {"name": "__audit_inode"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Rr8mF3o9czEU_lrcVazITQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$2.doRun()"}, "line": {"number": 224}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAChhqt"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file.go"}, "function": {"name": "github.com/elastic/gosigar/cgroup.ProcessCgroupPaths"}, "line": {"number": 307}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Pp5-6LF2RVa41kvu_cOd1QAAAAAAAAC5"}} -{"Stackframe": {"file": {"name": "IndexReader.java"}, "function": {"name": "void org.apache.lucene.index.IndexReader.decRef()", "offset": 10}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgjNt"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgc.go"}, "function": {"name": "runtime.gcMark"}, "line": {"number": 1366}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EGqyFI4UBcYw0uODaUlP_QAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Executors.java"}, "function": {"name": "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()"}, "line": {"number": 539}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e9bWXgbQU55mRVKn1epp1wAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "BytesReferenceStreamInput.java"}, "function": {"name": "void org.elasticsearch.common.bytes.BytesReferenceStreamInput.ensureCanReadBytes(int)"}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pE_XF-eq0tBl0fP7Y7zrSwAAAAAAAABp"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.xfer(java.lang.Object, boolean, int, long)", "offset": 10}, "line": {"number": 673}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene80.IndexedDISI.advance(int)", "offset": 5}, "line": {"number": 384}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m_vFRi2fRRTLPHNf1t7ZcQAAAAAAAABJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 5}, "line": {"number": 521}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H9qHSakbha_JIFnrzuJJjwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl$1.read(byte[], int, int)"}, "line": {"number": 789}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mZdi8xuJDhfKKe9rvO4vxgAAAAAAAABr"}} -{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.store.IOContext, java.lang.String, org.apache.lucene.codecs.compressing.CompressionMode, int, int, int)", "offset": 16}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EguNCcnmVGnXNe9OvbpF2wAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.writeReaderPool(boolean)", "offset": 7}, "line": {"number": 3917}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object no.found.docker.DockerApi$$Lambda$1415.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i2OZ9-P_pjOFSV36486xoQAAAAAAAABb"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 7}, "line": {"number": 641}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk-pX"}} -{"Stackframe": {"function": {"name": "nf_hook_slow"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fhpDQNd5UmqqnR1Mw5dfLAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ManagementFactory.java"}, "function": {"name": "java.util.stream.Stream java.lang.management.ManagementFactory.lambda$getPlatformMXBeans$3(java.lang.Class, sun.management.spi.PlatformMBeanProvider$PlatformComponent)"}, "line": {"number": 729}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACslz"}} -{"Stackframe": {"function": {"name": "do_send_sig_info"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ehck1kQlii3oPbpiGh3PAAAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "ChecksumIndexInput.java"}, "function": {"name": "void org.apache.lucene.store.ChecksumIndexInput.seek(long)", "offset": 5}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0UWcGuv4HeepGHFbr48-rAAAAAAAAAC5"}} -{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsReader.(org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat, org.apache.lucene.index.SegmentReadState)", "offset": 44}, "line": {"number": 311}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7EnnOhShMGZ9Te5BWwjtoAAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "void io.netty.channel.AbstractChannel$AbstractUnsafe.flush()", "offset": 8}, "line": {"number": 897}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEYEM"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mem_linux.go"}, "function": {"name": "runtime.sysUnused"}, "line": {"number": 111}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LN9aFd032i89TLv2ODKNoQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient.search(org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 532}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M-l0IodVUrBpenUEnOhL1QAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "CodecReader.java"}, "function": {"name": "org.apache.lucene.index.Terms org.apache.lucene.index.CodecReader.terms(java.lang.String)"}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "quuFP3PpjgMMJtSpk-27cwAAAAAAAABc"}} -{"Stackframe": {"file": {"name": "StringUtils.java"}, "function": {"name": "java.lang.String[] org.stagemonitor.util.StringUtils.split(java.lang.String, char)", "offset": 20}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdy"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.SubsystemMountpoints"}, "line": {"number": 199}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bYqQKQVuynaJd6xwXcCprgAAAAAAAADg"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.writeNorms(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)", "offset": 24}, "line": {"number": 404}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEf7L"}} -{"Stackframe": {"function": {"name": "__call_rcu"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "42jtS3FvXfZ-TK8RDOu5eQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "PerFieldMapperCodec.java"}, "function": {"name": "org.apache.lucene.codecs.PostingsFormat org.elasticsearch.index.codec.PerFieldMapperCodec.getPostingsFormatForField(java.lang.String)"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dJZnxxfSj1TBzD3FyyfeDQAAAAAAAAB0"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.write(org.apache.lucene.util.BytesRef, org.apache.lucene.index.TermsEnum, org.apache.lucene.codecs.NormsProducer)", "offset": 5}, "line": {"number": 912}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE6u7"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.ready"}, "line": {"number": 710}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wFolLawtZ8KIPHu9VlFy3wAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.createCompoundFile(org.apache.lucene.util.InfoStream, org.apache.lucene.store.TrackingDirectoryWrapper, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext, org.apache.lucene.util.IOUtils$IOConsumer)", "offset": 10}, "line": {"number": 5315}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb35"}} -{"Stackframe": {"function": {"name": "cp_new_stat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZRv6R5-Wsj1i57MVMaKXtQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator$$Lambda$6586+0x0000000802417890.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACIF_3"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).doScan"}, "line": {"number": 1074}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEzK6HfXk1srPlYKWH6y-wAAAAAAAAJB"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.prepareCommitInternal()", "offset": 109}, "line": {"number": 3277}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1c7wfSzTBWNtKP8vA7BBsAAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.tryRead(java.io.FileDescriptor, byte[], int, int)", "offset": 3}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fOvbXkq5emlxJGl5W6ErrAAAAAAAAADD"}} -{"Stackframe": {"file": {"name": "SSLConnectionSocketFactory.java"}, "function": {"name": "java.net.Socket org.apache.http.conn.ssl.SSLConnectionSocketFactory.connectSocket(int, java.net.Socket, org.apache.http.HttpHost, java.net.InetSocketAddress, java.net.InetSocketAddress, org.apache.http.protocol.HttpContext)", "offset": 29}, "line": {"number": 384}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wBQ22JyFQnHRm3n5bZdxcgAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "SearchHit.java"}, "function": {"name": "void org.elasticsearch.search.SearchHit.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 58}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NUHO_iNZCc-7_52gTmxhTQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.engine.CommitStats org.elasticsearch.index.engine.Engine.commitStats()"}, "line": {"number": 770}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3tUjisCVy6q_y-ey91GjKwAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "RSAPSSSignature.java"}, "function": {"name": "byte[] sun.security.rsa.RSAPSSSignature.engineSign()", "offset": 4}, "line": {"number": 371}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1kRkZENrD0C0zg-5j1NV2AAAAAAAAACf"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.tryAllHandlers(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 32}, "line": {"number": 532}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACE"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorize(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 37}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EYZ8PNZPmqz6_Un9Ip-JvgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "AbstractNioByteChannel.java"}, "function": {"name": "boolean io.netty.channel.nio.AbstractNioByteChannel.shouldBreakReadReady(io.netty.channel.ChannelConfig)"}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApQKz"}} -{"Stackframe": {"function": {"name": "strchr"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi09J"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/internal/poll/fd_mutex.go"}, "function": {"name": "internal/poll.(*FD).Fchmod"}, "line": {"number": 60}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0YsnzQnMKXvFIy6EpgfjkAAAAAAAAACz"}} -{"Stackframe": {"file": {"name": "BaseRestHandler.java"}, "function": {"name": "void org.elasticsearch.rest.BaseRestHandler.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient)", "offset": 23}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD5dfV"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/go.etcd.io/bbolt@v1.3.4/db.go"}, "function": {"name": "go.etcd.io/bbolt.(*DB).Update"}, "line": {"number": 694}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGvIk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file_posix.go"}, "function": {"name": "os.(*File).Write"}, "line": {"number": 48}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "69NpEFDNvAeCd2RwbOmIAAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.StandardDirectoryReader$$Lambda$6961+0x0000000801d3e400.close()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC8suK"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-structform@v0.0.9/gotype/fold_reflect.go"}, "function": {"name": "github.com/elastic/go-structform/gotype.makeResolveNonEmptyValue.func4"}, "line": {"number": 361}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FOAg8bj-FD7Cz_S21bzZIgAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "BulkShardRequest.java"}, "function": {"name": "void org.elasticsearch.action.bulk.BulkShardRequest.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 2}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LAK76I-B1_Yz983QLnH1WgAAAAAAAABg"}} -{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "org.elasticsearch.cluster.metadata.Metadata org.elasticsearch.cluster.metadata.Metadata$MetadataDiff.apply(org.elasticsearch.cluster.metadata.Metadata)", "offset": 8}, "line": {"number": 977}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MgCpDbfqkuF0Au3Mi2jaeQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentParser$Token org.elasticsearch.xcontent.json.JsonXContentParser.nextToken()"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DNJw_Ya3dFZ94ASbPZxv6gAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "StreamSpliterators.java"}, "function": {"name": "boolean java.util.stream.StreamSpliterators$WrappingSpliterator.tryAdvance(java.util.function.Consumer)", "offset": 1}, "line": {"number": 298}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dZJqLbnZoLLAQE84W2w3uwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "RemoteClusterAwareClient.java"}, "function": {"name": "void org.elasticsearch.transport.RemoteClusterAwareClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n2n5oFvwiEYRBCQEnFNEhQAAAAAAAACs"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.lambda$publishFlushedSegments$24(org.apache.lucene.index.DocumentsWriterFlushQueue$FlushTicket)", "offset": 21}, "line": {"number": 5815}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YI83FPfxizYRL1l5UWZPbwAAAAAAAADB"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeString(java.lang.String, byte[], int)", "offset": 22}, "line": {"number": 437}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4pD3shcvlMj_8ybo7T2TVAAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.handleIncomingPublishRequest(org.elasticsearch.transport.BytesTransportRequest)", "offset": 9}, "line": {"number": 397}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(org.elasticsearch.rest.RestRequest, boolean, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NADamcz6VgHxdsqQ-H3gJwAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "void org.apache.lucene.search.ReferenceManager.maybeRefreshBlocking()", "offset": 5}, "line": {"number": 240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIsW"}} -{"Stackframe": {"function": {"name": "__seccomp_filter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uB_3Gzwjvj1RjZpSgTL9mwAAAAAAAABH"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.finishAuthentication(org.elasticsearch.xpack.core.security.user.User)", "offset": 6}, "line": {"number": 706}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HfMb4ib8WKiucqC90J7sSwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "long org.elasticsearch.index.store.Store$StoreDirectory.estimateSize()"}, "line": {"number": 704}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA_rY"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.findRunnable"}, "line": {"number": 2662}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "koTuL0mfWVaphXgG09bN1QAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "Multiset.java"}, "function": {"name": "java.util.Iterator org.apache.lucene.search.Multiset.iterator()"}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TlT5gmlJsqTSqXNWcGzMkwAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "java.lang.Runnable org.elasticsearch.common.util.concurrent.ThreadContext.preserveContext(java.lang.Runnable)", "offset": 9}, "line": {"number": 385}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MFLGuesq0wZWR_oHbHkvYwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "AbstractRestChannel.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.rest.AbstractRestChannel.newBuilder()"}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BYJNn-MoBSRU3jGgndKCfQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "BHttpConnectionBase.java"}, "function": {"name": "void org.apache.http.impl.BHttpConnectionBase.doFlush()"}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAENeX"}} -{"Stackframe": {"file": {"name": "bytes/buffer.go"}, "function": {"name": "bytes.(*Buffer).ReadFrom"}, "line": {"number": 202}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iVdXxMnQTC0ojn_eNDg1AwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ReleasableBytesReference.java"}, "function": {"name": "void org.elasticsearch.common.bytes.ReleasableBytesReference.close()"}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XmED6DCBgU_nxWWvvj2FeQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "boolean org.apache.lucene.codecs.lucene90.IndexedDISI$Method$2.advanceWithinBlock(org.apache.lucene.codecs.lucene90.IndexedDISI, int)"}, "line": {"number": 586}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BlsD0vwi6JMAfkvyXFogjwAAAAAAAABX"}} -{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 10}, "line": {"number": 515}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXxk0"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/mapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.MapStr.Clone"}, "line": {"number": 155}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F1e5zesyAN4da8CO9uVKkQAAAAAAAAGa"}} -{"Stackframe": {"file": {"name": "FetchPhase.java"}, "function": {"name": "void org.elasticsearch.search.fetch.FetchPhase.execute(org.elasticsearch.search.internal.SearchContext)", "offset": 61}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8FjjrR6hoKl9dbLHAiDZggAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ExecutionService.java"}, "function": {"name": "void org.elasticsearch.xpack.watcher.execution.ExecutionService$WatchExecutionTask.run()"}, "line": {"number": 670}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6-qLd4f8SqNttst5P-8E1AAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "BufferedChecksumIndexInput.java"}, "function": {"name": "void org.apache.lucene.store.BufferedChecksumIndexInput.readBytes(byte[], int, int)"}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SLm5iQaRU0eNqFhBMIrYxgAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "long org.elasticsearch.index.translog.Translog.earliestLastModifiedAge()", "offset": 2}, "line": {"number": 446}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgtBk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcwork.go"}, "function": {"name": "runtime.getempty"}, "line": {"number": 349}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vhbUWdup3LzDBy6wV9oftQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "FieldTypeLookup.java"}, "function": {"name": "org.elasticsearch.index.mapper.MappedFieldType org.elasticsearch.index.mapper.FieldTypeLookup.get(java.lang.String)"}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADQjwN"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "net.(*Dialer).Dial-fm"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eCaKzXzVKYqqs4wMxzAp3AAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler$$Lambda$4875+0x0000000801fe75e0.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4yG9IdLfPOQJQp1BxdOq7wAAAAAAAACf"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.apply(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.support.ActionFilterChain)", "offset": 31}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fyAp1WT9KzH8_Hf3u16gEQAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "SearchActionListener.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchActionListener.onResponse(org.elasticsearch.search.SearchPhaseResult)", "offset": 2}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXxjV"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/mapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.MapStr.Clone"}, "line": {"number": 153}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HhsNl7wscjEZJCN3HPRqcQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "QueryShardContext.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.query.QueryShardContext.compile(org.elasticsearch.script.Script, org.elasticsearch.script.ScriptContext)"}, "line": {"number": 381}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0-FMNmBtJhXiOOVhpPfdUAAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "RestMonitoringBulkAction.java"}, "function": {"name": "void org.elasticsearch.xpack.monitoring.rest.action.RestMonitoringBulkAction.lambda$doPrepareRequest$0(org.elasticsearch.xpack.core.monitoring.action.MonitoringBulkRequestBuilder, org.elasticsearch.rest.RestChannel)"}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFV9E"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/symtab.go"}, "function": {"name": "runtime.funcspdelta"}, "line": {"number": 871}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sXYsfWKSXv-0U7gobefHRgAAAAAAAAEc"}} -{"Stackframe": {"file": {"name": "IndexMetadata.java"}, "function": {"name": "void org.elasticsearch.cluster.metadata.IndexMetadata$Builder.toXContent(org.elasticsearch.cluster.metadata.IndexMetadata, org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 29}, "line": {"number": 1312}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Z41z-remt7jPNWprM_rymwAAAAAAAAC6"}} -{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "org.elasticsearch.cluster.metadata.Metadata org.elasticsearch.cluster.metadata.Metadata$Builder.build()", "offset": 12}, "line": {"number": 1540}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MVq8YmAwgBj5NPTL5fNTvQAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "void java.util.ArrayList.forEach(java.util.function.Consumer)", "offset": 4}, "line": {"number": 1509}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l3wIW085N_Ek_ld6xhO_FAAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uxx5lyE0g_XxW6q2Z6gefwAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "CompletionStatsCache.java"}, "function": {"name": "org.elasticsearch.search.suggest.completion.CompletionStats org.elasticsearch.index.engine.CompletionStatsCache.get(java.lang.String[])", "offset": 20}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B4whtrfnaTSHGModLedLLwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService$AsyncRefreshTask.runInternal()"}, "line": {"number": 1043}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pRTg5ZWEbp3JJIuMWP-nnQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.read(java.io.FileDescriptor, java.nio.ByteBuffer, long, sun.nio.ch.NativeDispatcher)"}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SfB-oeBcWpraHjBGdigjZQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.getRoles(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)"}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KoPSx-4xtPc0ysy04w1-LQAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "NodeHash.java"}, "function": {"name": "void org.apache.lucene.util.fst.NodeHash.(org.apache.lucene.util.fst.FST, org.apache.lucene.util.fst.FST$BytesReader)", "offset": 4}, "line": {"number": 34}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun()", "offset": 5}, "line": {"number": 915}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SrUBoSo_U1vNdZi0jlnWSQAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$5349.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAADgbs0"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_docker_metadata.(*addDockerMetadata).Run"}, "line": {"number": 315}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN9jw"}} -{"Stackframe": {"function": {"name": "kernfs_fop_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nQRJ3xr79n3cY6qS99IffwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "void io.netty.channel.DefaultChannelPipeline$HeadContext.flush(io.netty.channel.ChannelHandlerContext)"}, "line": {"number": 1372}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dR3x5XgBILj3h9lg7-5DwQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "LinkedHashMap.java"}, "function": {"name": "java.lang.Object java.util.LinkedHashMap.get(java.lang.Object)"}, "line": {"number": 441}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "c7Bl3AoAEupOG7hWyg8xCAAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "TreeSet.java"}, "function": {"name": "boolean java.util.TreeSet.addAll(java.util.Collection)", "offset": 10}, "line": {"number": 310}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CpvjWyzlv7sy206ARLr_PwAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI$BitSetConjunctionDISI.doNext(int)", "offset": 4}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AAAAAAAAV4sAAAAAAAAAHSs8i6sJ9R6r"}} -{"Stackframe": {"function": {"name": "_new_array_nozero_Java"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkKC4"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).convertFloat"}, "line": {"number": 785}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2MOoayvGW4k0HotkdD0WWwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "AbstractFileSystemProvider.java"}, "function": {"name": "void sun.nio.fs.AbstractFileSystemProvider.delete(java.nio.file.Path)"}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7GPptfUGH-1Hs-IBSvWbWwAAAAAAAABr"}} -{"Stackframe": {"file": {"name": "DataOutput.java"}, "function": {"name": "void org.apache.lucene.store.DataOutput.copyBytes(org.apache.lucene.store.DataInput, long)", "offset": 11}, "line": {"number": 278}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE75u"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.mstart"}, "line": {"number": 1119}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TyjOQJEVS6q07p3TumnstAAAAAAAAAA8"}} -{"Stackframe": {"file": {"name": "JarFile.java"}, "function": {"name": "java.util.jar.JarEntry java.util.jar.JarFile.getVersionedEntry(java.lang.String, java.util.jar.JarEntry)", "offset": 5}, "line": {"number": 607}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2b11pFdgexgvnDe9S0ASzwAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "void org.elasticsearch.tasks.TaskManager.registerCancellableTask(org.elasticsearch.tasks.Task, boolean)", "offset": 4}, "line": {"number": 239}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5Ib9omL2d9xqdBKBL9VmGwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Thread.java"}, "function": {"name": "void java.lang.Thread.sleep(long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5pFhsElnVl9ab7AtYBHzuAAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "org.elasticsearch.cluster.routing.RoutingNodes org.elasticsearch.cluster.ClusterState.getRoutingNodes()", "offset": 3}, "line": {"number": 313}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACq9XQ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/crypto/tls/conn.go"}, "function": {"name": "crypto/tls.(*Conn).handshakeContext"}, "line": {"number": 1405}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iw7IRM_-U1QtOyzVBZcwIQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "GlobalCheckpointSyncAction.java"}, "function": {"name": "void org.elasticsearch.index.seqno.GlobalCheckpointSyncAction.shardOperationOnReplica(org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Uyl96nbKrz6UOSXSc3iffwAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$4(java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.support.ActionFilterChain, org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 3}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mHLbruajf1ewhD5eRLIwPQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.elasticsearch.index.store.ByteSizeCachingDirectory.createOutput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bFNBCgHVi2ZK2yGNK4LXZgAAAAAAAACv"}} -{"Stackframe": {"file": {"name": "OutboundMessage.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.transport.OutboundMessage.serialize(org.elasticsearch.common.io.stream.RecyclerBytesStreamOutput)", "offset": 28}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HT9Oc7iZydOQfHjFbopksAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ClientScrollableHitSource.java"}, "function": {"name": "void org.elasticsearch.index.reindex.ClientScrollableHitSource$2.onResponse(java.lang.Object)"}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3kqb9iL-AByP8rRfsVhi_QAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.exists(java.nio.file.Path)", "offset": 1}, "line": {"number": 537}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABFLr"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.acquirep"}, "line": {"number": 4946}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Gp8pW5B40BblKfSIWk6M6gAAAAAAAACN"}} -{"Stackframe": {"file": {"name": "ChannelOutputStream.java"}, "function": {"name": "void sun.nio.ch.ChannelOutputStream.write(byte[], int, int)", "offset": 19}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fujokLEB7RFa9gGF_WxCPQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "HttpChannelOverHttp.java"}, "function": {"name": "void org.eclipse.jetty.server.HttpChannelOverHttp.(org.eclipse.jetty.server.HttpConnection, org.eclipse.jetty.server.Connector, org.eclipse.jetty.server.HttpConfiguration, org.eclipse.jetty.io.EndPoint, org.eclipse.jetty.server.HttpTransport)", "offset": 14}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1nUYh2eGPvLFIFvGK4PRZwAAAAAAAABJ"}} -{"Stackframe": {"file": {"name": "BulkByScrollParallelizationHelper.java"}, "function": {"name": "void org.elasticsearch.index.reindex.BulkByScrollParallelizationHelper.initTaskState(org.elasticsearch.index.reindex.BulkByScrollTask, org.elasticsearch.index.reindex.AbstractBulkByScrollRequest, org.elasticsearch.client.Client, org.elasticsearch.action.ActionListener)", "offset": 18}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hpS1QtdrBQjGg-LCbfqeSAAAAAAAAF9M"}} -{"Stackframe": {"function": {"name": "br_handle_frame"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HT1vQdc0XC0RoSXqyJlYhgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-Qyk"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.CoalesceMessages"}, "line": {"number": 183}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YNTunKybilcdruNbkYh4bAAAAAAAAACw"}} -{"Stackframe": {"file": {"name": "ForUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.ForUtil.decodeAndPrefixSum(int, org.apache.lucene.store.DataInput, long, long[])", "offset": 14}, "line": {"number": 531}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vtOmTuUGvKYiQRK_O9kHuwAAAAAAAABF"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "long[] org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.writeValues(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 8}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i2OZ9-P_pjOFSV36486xoQAAAAAAAAEn"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 36}, "line": {"number": 670}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k-oYEuE0qNzcsmMdylxs5gAAAAAAAAFB"}} -{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.fs.UnixChannelFactory.open(int, sun.nio.fs.UnixPath, java.lang.String, sun.nio.fs.UnixChannelFactory$Flags, int)", "offset": 70}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cPOJzBCB0Kj7fFrlhVftWAAAAAAAAADE"}} -{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "void org.elasticsearch.index.reindex.AbstractAsyncBulkByScrollAction.onScrollResponse(long, int, org.elasticsearch.index.reindex.AbstractAsyncBulkByScrollAction$ScrollConsumableHitsResponse)", "offset": 36}, "line": {"number": 309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAB0k0"}} -{"Stackframe": {"function": {"name": "xfs_vn_unlink"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cXlweJcTpRnUmFxwZ3wPIwAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 21}, "line": {"number": 457}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DIXLq0T8W9YXkU06dSKA0QAAAAAAAAB6"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4$HighCompressionHashTable.reset(byte[], int, int)", "offset": 18}, "line": {"number": 323}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e2uWgKIDMT4N-L-tsrAnsAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 16}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uKtxR47OvzSUNd1AWsYPGgAAAAAAAAOo"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.mergeMiddle(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergePolicy)", "offset": 148}, "line": {"number": 5208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Z8eDanRMy6l7sesw4dYkqQAAAAAAAACz"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$checkForApiKey$5(org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 18}, "line": {"number": 396}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1vQ1eKhRorTFv2y8gOteowAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DateTimeFormatterBuilder.java"}, "function": {"name": "int org.joda.time.format.DateTimeFormatterBuilder$FixedNumber.parseInto(org.joda.time.format.DateTimeParserBucket, java.lang.CharSequence, int)"}, "line": {"number": 1457}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-YIS"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/gopkg.in/yaml.v2@v2.3.0/yaml.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.LoadNormalizationConfig"}, "line": {"number": 81}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eqCpUc1esI9kYzT9QuAxZwAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "AbstractHttpMessage.java"}, "function": {"name": "void org.apache.http.message.AbstractHttpMessage.addHeader(java.lang.String, java.lang.String)", "offset": 1}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANyj0"}} -{"Stackframe": {"function": {"name": "proc_readfd"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkJ0L"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).complexTokens"}, "line": {"number": 754}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fxozbW1f7eISy31L8tIIWgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "DateFieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DateFieldMapper.indexValue(org.elasticsearch.index.mapper.DocumentParserContext, long)"}, "line": {"number": 906}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lXtobYWbaZPFQjeFOSYgKwAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "AggregatorFactories.java"}, "function": {"name": "org.elasticsearch.search.aggregations.AggregatorFactories$Builder org.elasticsearch.search.aggregations.AggregatorFactories$Builder.addAggregator(org.elasticsearch.search.aggregations.AggregationBuilder)", "offset": 3}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3z1OOsQnAKpS1yct9MEg-wAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "AbstractSet.java"}, "function": {"name": "int java.util.AbstractSet.hashCode()", "offset": 6}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cGBPCS3aPXXlmHmrx5RsEQAAAAAAAADA"}} -{"Stackframe": {"file": {"name": "JvmStats.java"}, "function": {"name": "org.elasticsearch.monitor.jvm.JvmStats org.elasticsearch.monitor.jvm.JvmStats.jvmStats()", "offset": 15}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LB9eOsHutmp91_cC1dZYGwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.json.JsonXContentGenerator.writeStringField(java.lang.String, java.lang.String)"}, "line": {"number": 276}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile$$Lambda$5826+0x0000000801b0e850.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "J919VuiOC4MpabrN9cL2NwAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6060+0x0000000801c4ced0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "56J_quP6E7ubMy0oFC4pVgAAAAAAAACG"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.lang.Object java.util.TreeMap.put(java.lang.Object, java.lang.Object, boolean)", "offset": 31}, "line": {"number": 814}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dB8rpvXeU-U7j8zoRqc_lgAAAAAAAABY"}} -{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 10}, "line": {"number": 147}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OZbqb4tQmA5EHMDCsCNqZwAAAAAAAABy"}} -{"Stackframe": {"file": {"name": "DateTimeFormatterBuilder.java"}, "function": {"name": "int java.time.format.DateTimeFormatterBuilder$CompositePrinterParser.parse(java.time.format.DateTimeParseContext, java.lang.CharSequence, int)", "offset": 14}, "line": {"number": 2554}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TdvyEkBALxwDoycOnD-RjgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.updateChildren()"}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fSKmBIT9ZsfwEX0Byq43wwAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode$EncryptOp.doFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 3}, "line": {"number": 1756}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIZhK"}} -{"Stackframe": {"function": {"name": "wake_up_page_bit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JvScc-kAblhDe3HgLZgGAwAAAAAAAACN"}} -{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.CommonStats.(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 9}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eftXc2DfUEMZsRM-gUqJSQAAAAAAAABe"}} -{"Stackframe": {"file": {"name": "Span.java"}, "function": {"name": "void co.elastic.apm.agent.impl.transaction.Span.afterEnd()", "offset": 9}, "line": {"number": 274}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3J9sxS-e4x4-VIIgWjujUAAAAAAAAACq"}} -{"Stackframe": {"file": {"name": "S3RetryingInputStream.java"}, "function": {"name": "java.io.InputStream org.elasticsearch.repositories.s3.S3RetryingInputStream.openStream()", "offset": 8}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WQoT5TvZ3eOmkl3OPEBMywAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.prepareCommit(long, long, org.elasticsearch.Version)", "offset": 3}, "line": {"number": 1175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZTYW2hueb8qo9sBuOsIdRgAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseArray(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, java.lang.String[])", "offset": 10}, "line": {"number": 652}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 48}, "line": {"number": 328}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qYsHCAcImIUjmmO1gdenlQAAAAAAAAD7"}} -{"Stackframe": {"file": {"name": "ForkJoinPool.java"}, "function": {"name": "void java.util.concurrent.ForkJoinPool.runWorker(java.util.concurrent.ForkJoinPool$WorkQueue)", "offset": 29}, "line": {"number": 1619}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E2NlszEGRXNxKeW09blqBAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient.execute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 402}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.nio.channels.FileChannel sun.nio.fs.UnixChannelFactory.newFileChannel(sun.nio.fs.UnixPath, java.util.Set, int)"}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rp3sprQtO8hOwekVupMQwgAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.flush(io.netty.channel.ChannelHandlerContext)", "offset": 15}, "line": {"number": 780}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YzN7F6tLZe6mM7H1OD-sRgAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "void sun.nio.fs.UnixPath.checkRead()", "offset": 2}, "line": {"number": 810}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4SjPzL5sRJ4NoaPppbKRXQAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 50}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I0QtQ3x5Qtt-qibQRB-qEAAAAAAAAACY"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()", "offset": 27}, "line": {"number": 1070}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UcK27RktHL-xk7HDBdRqeAAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeZLong(long)", "offset": 9}, "line": {"number": 312}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9el7M_UR9xauXf1NAy606QAAAAAAAABq"}} -{"Stackframe": {"file": {"name": "ApiKeyService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.ApiKeyService.lambda$loadApiKeyAndValidateCredentials$16(long, java.lang.String, java.util.function.Consumer, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.authc.ApiKeyService$ApiKeyCredentials, org.elasticsearch.action.get.GetResponse)", "offset": 14}, "line": {"number": 711}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nPCAxeiqMcZau3eqPVPDPQAAAAAAAACj"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.lambda$getAuthenticatorConsumer$5(boolean, org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.security.authc.Authenticator, org.elasticsearch.action.ActionListener)", "offset": 20}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "r0t7-JEfKzqH4jpSCD5GMgAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "SoftDeletesPolicy.java"}, "function": {"name": "org.apache.lucene.search.Query org.elasticsearch.index.engine.SoftDeletesPolicy.getRetentionQuery()"}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EnRoHyZazasm_zTjL5tnOgAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.stat(sun.nio.fs.UnixPath, sun.nio.fs.UnixFileAttributes)", "offset": 2}, "line": {"number": 277}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Hkzvs5GEXB5P73bf_lHYLwAAAAAAAABT"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.IndexingChain$PerField.invert(int, org.apache.lucene.index.IndexableField, boolean)", "offset": 16}, "line": {"number": 1107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wJby9rfWt95O-DRO0mDYjAAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "java.util.Set org.apache.lucene.index.ReadersAndUpdates.writeFieldInfosGen(org.apache.lucene.index.FieldInfos, org.apache.lucene.store.Directory, org.apache.lucene.codecs.FieldInfosFormat)", "offset": 9}, "line": {"number": 543}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7R"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/memory.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.memoryData"}, "line": {"number": 121}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DaFgF7psHPRRCj-YQpJFLAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "FilterXContentParser.java"}, "function": {"name": "java.lang.String org.elasticsearch.xcontent.FilterXContentParser.textOrNull()"}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline$Head.forEach(java.util.function.Consumer)", "offset": 1}, "line": {"number": 658}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rukD5963lGO3Ma9AI2LXWgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "void org.apache.lucene.store.LockValidatingDirectoryWrapper.deleteFile(java.lang.String)"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "roTQ2x4u1u0ROVEifn0kaQAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.commit(long, long)", "offset": 3}, "line": {"number": 779}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Bot4vusrAslwRTJN-1GqPAAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$6594+0x0000000801cbdc48.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Pm8yvojd4enECfI_5pXoCAAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "PolicyFile.java"}, "function": {"name": "boolean sun.security.provider.PolicyFile.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 4}, "line": {"number": 1003}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2KV_VaafQZuYC-E-4iUNYwAAAAAAAAFL"}} -{"Stackframe": {"file": {"name": "UnicodeUtil.java"}, "function": {"name": "int org.apache.lucene.util.UnicodeUtil.UTF16toUTF8(java.lang.CharSequence, int, int, byte[], int)", "offset": 3}, "line": {"number": 200}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LYJWnM2aEBeu4YzFbSHmgAAAAAAAAAB_"}} -{"Stackframe": {"file": {"name": "TimeseriesLifecycleType.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.core.ilm.TimeseriesLifecycleType.getOrderedPhases(java.util.Map)", "offset": 8}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PtVMQQcIleOLw4oEyd-xxwAAAAAAAABa"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 11}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JYe70J6f_R3-V5ur6gAZUAAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.merge(org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 12}, "line": {"number": 4361}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sojwV5c2Sh1TPlO_pjbUPAAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "BytesStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.BytesStreamOutput.writeBytes(byte[], int, int)", "offset": 10}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zSsi2NqIQt2uWzMgbkvEIQAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 7}, "line": {"number": 881}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AszzcogM1j3W5M9Q6_fCOQAAAAAAAAEE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 14}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3z1OOsQnAKpS1yct9MEg-wAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "AbstractSet.java"}, "function": {"name": "int java.util.AbstractSet.hashCode()", "offset": 5}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAB6"}} -{"Stackframe": {"file": {"name": "NativeFSLockFactory.java"}, "function": {"name": "void org.apache.lucene.store.NativeFSLockFactory$NativeFSLock.ensureValid()", "offset": 13}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "c_22Mbyt4HEFc1XP6wRkMwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.lambda$publishFrozenUpdates$10(org.apache.lucene.index.FrozenBufferedUpdates, org.apache.lucene.index.IndexWriter)"}, "line": {"number": 2780}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eIY-qGqHg9cG3y43iZ4UtwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.cluster.node.info.NodeInfo$$Lambda$7479+0x000000080254d4d0.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vWPcSmxkbXO7SwVFO_alxAAAAAAAAACJ"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "void sun.nio.ch.FileChannelImpl.(java.io.FileDescriptor, java.lang.String, boolean, boolean, boolean, java.lang.Object)", "offset": 56}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VTfbcIJC4j-MNC5M8fX4oQAAAAAAAAFR"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.startCommit(org.apache.lucene.index.SegmentInfos)", "offset": 60}, "line": {"number": 5496}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Tl_Iodjc0LWexYa5MoBoHAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "FilterStreamInput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.FilterStreamInput.readBytes(byte[], int, int)"}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cjIhOkmIqJlptkEMROl1nQAAAAAAAACq"}} -{"Stackframe": {"file": {"name": "Lucene50CompoundReader.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene50.Lucene50CompoundReader.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 16}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEll"}} -{"Stackframe": {"function": {"name": "do_futex"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dqnqmQCuqq6t9rUDKsZ8owAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "RestActions.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestActions.buildNodesHeader(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params, int, int, int, java.util.List)", "offset": 1}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uRdDYN4dn3zdbxjGT-WsgwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "DelayedAllocationService.java"}, "function": {"name": "void org.elasticsearch.cluster.routing.DelayedAllocationService.scheduleIfNeeded(long, org.elasticsearch.cluster.ClusterState)", "offset": 1}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Cm3FF_uDQeutHnQs3UGjlgAAAAAAAAC1"}} -{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 36}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC-5o"}} -{"Stackframe": {"function": {"name": "task_work_run"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y5AhuW5zTFbvkEYRGrJ6zgAAAAAAAAFB"}} -{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.fs.UnixChannelFactory.open(int, sun.nio.fs.UnixPath, java.lang.String, sun.nio.fs.UnixChannelFactory$Flags, int)", "offset": 70}, "line": {"number": 267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADHh60"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/pipeline/client.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/pipeline.(*client).publish"}, "line": {"number": 83}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "htvgcgAW24Rn4q34GnPYLQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.elasticsearch.search.internal.ContextIndexSearcher$1.bulkScorer(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-l0CA__xQUD7yFObowoRZAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "DisiPriorityQueue.java"}, "function": {"name": "org.apache.lucene.search.DisiWrapper org.apache.lucene.search.DisiPriorityQueue.updateTop()"}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fTAss9wSqMPQUI2HD05f3wAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "PackedLongValues.java"}, "function": {"name": "long org.apache.lucene.util.packed.PackedLongValues.get(long)", "offset": 3}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ax3mnWVTgXSKH4VrpSLxMwAAAAAAAAOE"}} -{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction$BulkOperation.doRun()", "offset": 93}, "line": {"number": 508}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IJh2m7sI5abovI4uFKTgAAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5113.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "spzm-_Ca31VwijYVQAZSLAAAAAAAAAB7"}} -{"Stackframe": {"file": {"name": "AnalysisStats.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.stats.AnalysisStats org.elasticsearch.action.admin.cluster.stats.AnalysisStats.of(org.elasticsearch.cluster.ClusterState)", "offset": 13}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh"}} -{"Stackframe": {"function": {"name": "path_openat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JFjrrma9d3xoHGyr40fShQAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "java.lang.Runnable org.elasticsearch.common.util.concurrent.ThreadContext.doPreserveContext(java.lang.Runnable, boolean)", "offset": 9}, "line": {"number": 561}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Pi-02an-VcSObLNuz_uUNQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "PackedLongValues.java"}, "function": {"name": "org.apache.lucene.util.packed.PackedLongValues$Iterator org.apache.lucene.util.packed.PackedLongValues.iterator()"}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAio7-"}} -{"Stackframe": {"function": {"name": "__sys_sendto"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIdyq"}} -{"Stackframe": {"function": {"name": "__filemap_fdatawrite_range"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKeysPlain(java.util.Set)", "offset": 11}, "line": {"number": 620}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eHnN2Txvq-iOALceSe76EgAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "int[] org.elasticsearch.transport.TcpTransport.defaultPortRange()", "offset": 3}, "line": {"number": 512}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8wD-gPluKMQIfqERZsOlnAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.(org.elasticsearch.common.util.concurrent.ThreadContext, java.lang.Runnable)", "offset": 1}, "line": {"number": 842}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "y8Y9sOCgS4ezmCzQojnXBQAAAAAAAABf"}} -{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "void java.util.ArrayList$ArrayListSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 12}, "line": {"number": 1624}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zKHS4hsJddCCPPI3lqHKuAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "org.elasticsearch.cluster.NamedDiff org.elasticsearch.cluster.SnapshotsInProgress.readDiffFrom(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAD9Tr0"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/mb/module/wrapper.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/mb/module.writeEvent"}, "line": {"number": 422}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PvsuEs2c6C6ecuTF-xQOfQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.addDocument(java.lang.Iterable)"}, "line": {"number": 1471}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2s_Q7gaAVum2n4lgmkRNuAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.value(org.elasticsearch.xcontent.ToXContent)"}, "line": {"number": 951}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BTYksaSRO8AJ9nY6uneb7wAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4$FastCompressionHashTable.initDictionary(int)", "offset": 3}, "line": {"number": 254}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h2McnzqwfbL5yBZRK65EugAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline$3$1.accept(java.lang.Object)"}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgumU"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mheap.go"}, "function": {"name": "runtime.(*mheap).allocSpan"}, "line": {"number": 1205}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XyIB1JXxkoOQjMae8CICgwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentParser$Token org.elasticsearch.common.xcontent.json.JsonXContentParser.nextToken()"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bFnDceRyUrwrxpx2LB-2swAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "void org.elasticsearch.tracing.apm.APMTracer.startTrace(org.elasticsearch.common.util.concurrent.ThreadContext, java.lang.String, java.lang.String, java.util.Map)", "offset": 15}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rvyMTZSiiFB-vYn8VxJUiQAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "Id.java"}, "function": {"name": "java.lang.String co.elastic.apm.agent.impl.transaction.Id.toString()", "offset": 2}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lG2LQX6wnpHhsyvHjDeznQAAAAAAAABt"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.DefaultSearchContext org.elasticsearch.search.SearchService.createSearchContext(org.elasticsearch.search.internal.ReaderContext, org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.core.TimeValue)", "offset": 12}, "line": {"number": 822}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvo_"}} -{"Stackframe": {"function": {"name": "hrtimer_nanosleep"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkJzP"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).complexTokens"}, "line": {"number": 749}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EyQZHtzRv_03o0l-NXmg-QAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.softUpdateDocument(org.apache.lucene.index.Term, java.lang.Iterable, org.apache.lucene.document.Field[])", "offset": 6}, "line": {"number": 1850}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Xsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.handleIncomingPublishRequest(org.elasticsearch.transport.BytesTransportRequest)", "offset": 49}, "line": {"number": 199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iynY3Vpl2yeKIqRo2Ld9YAAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.write(byte[], int, int)", "offset": 5}, "line": {"number": 123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTgd"}} -{"Stackframe": {"function": {"name": "new_sync_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o0OVH2LBiDEc9yJITJL7oAAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$TermsDict.(org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer, org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$TermsDictEntry, org.apache.lucene.store.IndexInput)", "offset": 10}, "line": {"number": 1066}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACETT2"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map_faststr.go"}, "function": {"name": "runtime.mapassign_faststr"}, "line": {"number": 273}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rUHBgSz_SQE-q7C0lnDupQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.ReadersAndUpdates.getReadOnlyClone(org.apache.lucene.store.IOContext)", "offset": 1}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Pp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "IndexReader.java"}, "function": {"name": "void org.apache.lucene.index.IndexReader.decRef()", "offset": 9}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B194pGdcDESvb9ZUksXmvAAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "System.java"}, "function": {"name": "java.lang.String java.lang.System.getProperty(java.lang.String, java.lang.String)", "offset": 4}, "line": {"number": 967}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MWF-ta49FweBhvwuhsiFKwAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "DisjunctionDISIApproximation.java"}, "function": {"name": "int org.apache.lucene.search.DisjunctionDISIApproximation.advance(int)", "offset": 2}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACgs1T"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/conditions/and.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/conditions.And.Check"}, "line": {"number": 33}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BeJWXrhFEHEEfJyzcHF3mgAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "URI.java"}, "function": {"name": "void java.net.URI$Parser.parse(boolean)", "offset": 11}, "line": {"number": 3139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1bYVLJaC5WBOgJdtA4ffZwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AbstractByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.AbstractByteBufAllocator.heapBuffer(int)"}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLlsW"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).object"}, "line": {"number": 691}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABVXkk"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/interpreter/hotspot/hotspot.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/interpreter/hotspot.(*hotspotJITInfo).symbolize"}, "line": {"number": 994}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FG8XxZTt95D0AfN5i_723QAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": "Authentication.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authc.Authentication$AuthenticationSerializationHelper.writeInternalUser(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.common.io.stream.StreamOutput)", "offset": 3}, "line": {"number": 1023}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Z5bymihzf4CQyWGMQZAZdQAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "UnixFileAttributes.java"}, "function": {"name": "sun.nio.fs.UnixFileAttributes sun.nio.fs.UnixFileAttributes.get(sun.nio.fs.UnixPath, boolean)", "offset": 4}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hUTCUJp2TXU8cmsY31FJGAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.access$000(org.elasticsearch.action.search.FetchSearchPhase)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u_S1z746sqHjwZgqfYjebgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "LogManager.java"}, "function": {"name": "org.apache.logging.log4j.spi.LoggerContext org.apache.logging.log4j.LogManager.getContext(java.lang.ClassLoader, boolean)"}, "line": {"number": 194}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nhmHJ7tDh78T1V4XRxeuHgAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "NIOFSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.NIOFSDirectory$NIOFSIndexInput.(java.lang.String, java.nio.channels.FileChannel, org.apache.lucene.store.IOContext)", "offset": 10}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JTnRsTPd7AHDTE96DfHcfgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ApmServerConfigurationSource.java"}, "function": {"name": "void co.elastic.apm.agent.configuration.ApmServerConfigurationSource.access$000(co.elastic.apm.agent.configuration.ApmServerConfigurationSource, org.stagemonitor.configuration.ConfigurationRegistry)"}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vEf82IDRTNtSKS_YS3157QAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4.compressWithDictionary(byte[], int, int, int, org.apache.lucene.store.DataOutput, org.apache.lucene.util.compress.LZ4$HashTable)", "offset": 16}, "line": {"number": 538}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TAR6l89VN_4_uhrTdir1MgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$5426+0x0000000801a93b88.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$3.onResponse(java.lang.Void)", "offset": 7}, "line": {"number": 317}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2kNP-fbSjTC_hm1jEY6s0QAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.addNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)"}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wD7qCDk3lqH0hpTFDQk1YQAAAAAAAABY"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readMapEntries(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier, java.util.Map)", "offset": 7}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFkjH"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/malloc.go"}, "function": {"name": "runtime.mallocgc.func1"}, "line": {"number": 1071}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_zxyi-wgtH_Wz8ut-WKY9wAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Setting.innerGetRaw(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 546}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgmjT"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.scanobject"}, "line": {"number": 1246}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GLsxJEBpGzbIAzUio3qiqgAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 42}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAD8TVN"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_docker_metadata/add_docker_metadata.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_docker_metadata.(*addDockerMetadata).Close"}, "line": {"number": 222}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "void java.util.stream.AbstractPipeline.copyInto(java.util.stream.Sink, java.util.Spliterator)", "offset": 8}, "line": {"number": 513}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4pD3shcvlMj_8ybo7T2TVAAAAAAAAADe"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.handleIncomingPublishRequest(org.elasticsearch.transport.BytesTransportRequest)", "offset": 32}, "line": {"number": 420}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bLnL60YwFV1mMq9hr4cGaQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DiffableStringMap.java"}, "function": {"name": "java.util.Set org.elasticsearch.cluster.metadata.DiffableStringMap.entrySet()"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BjlJsqbP8JVKqX4kEEcyIAAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$UnmodifiableMap.equals(java.lang.Object)"}, "line": {"number": 1507}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACwzmV"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/strings.go"}, "function": {"name": "github.com/prometheus/procfs.(*ProcStatus).fillStatus"}, "line": {"number": 303}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S0Xp2_3vk0PCR7xQ7YS7IQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer.writeBlobAtomic(java.lang.String, java.io.InputStream, long, boolean)"}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WwwY-nbac4bLVYmvyQeL7gAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "ByteBuffersDataOutput.java"}, "function": {"name": "void org.apache.lucene.store.ByteBuffersDataOutput.writeShort(short)", "offset": 3}, "line": {"number": 378}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAiygN"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-collection-agent/collectionagent/collection_agent_grpc.pb.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-collection-agent/collectionagent.(*collectionAgentClient).AddFrameMetadata"}, "line": {"number": 97}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xgPPuzI1J0KcF5WhFpW09gAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "IndexReader.java"}, "function": {"name": "void org.apache.lucene.index.IndexReader.decRef()", "offset": 9}, "line": {"number": 265}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$AuthorizationResultListener.onResponse(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationResult)", "offset": 10}, "line": {"number": 941}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FeTq3grQxZLpQxyGC-4wQQAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "void co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.onEvent(co.elastic.apm.agent.report.ReportingEvent, long, boolean)", "offset": 7}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAK6uI"}} -{"Stackframe": {"function": {"name": "get_mem_cgroup_from_mm"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "37kdvsyygZea642hUZCb9QAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.checkForApiKey()"}, "line": {"number": 347}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HrTR2HOpYyb-pQjcAKVn-wAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "boolean com.carrotsearch.hppc.ObjectObjectHashMap.equals(java.lang.Object)", "offset": 2}, "line": {"number": 595}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NrvcSCGNEuayQcoP_4CXWQAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.unlink(sun.nio.fs.UnixPath)", "offset": 3}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "J6u6Y179J4dS1eDE4nIEEwAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "DefaultPlatformMBeanProvider.java"}, "function": {"name": "java.util.Map java.lang.management.DefaultPlatformMBeanProvider$6.nameToMBeanMap()", "offset": 7}, "line": {"number": 283}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-xp-"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.(*StatsV2).Format"}, "line": {"number": 1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlH26"}} -{"Stackframe": {"function": {"name": "ip_rcv_finish"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKkAu"}} -{"Stackframe": {"function": {"name": "__kmalloc_node_track_caller"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALt0Z"}} -{"Stackframe": {"function": {"name": "__x64_sys_getdents64"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXbv"}} -{"Stackframe": {"function": {"name": "__alloc_file"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sYti6chh3H8KzXctZah7uwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "CPoolProxy.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.impl.conn.CPoolProxy.receiveResponseHeader()"}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ryv-L8Z4ce9G80LfTnsZhQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.threadpool.ThreadPoolInfo$$Lambda$7515+0x0000000802556cf8.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QzMU8x58pu8LAFTJ6bQCOwAAAAAAAABn"}} -{"Stackframe": {"file": {"name": "Lucene90BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.blocktree.Lucene90BlockTreeTermsWriter.(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.codecs.PostingsWriterBase, int, int)", "offset": 27}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TozXD2NzMy0dEH0e02djYAAAAAAAAAEK"}} -{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesConsumer org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.getInstance(org.apache.lucene.index.FieldInfo, boolean)", "offset": 56}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Amq1Q_OWnEFyfJsbIWLjHgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ActionListenerResponseHandler.java"}, "function": {"name": "void org.elasticsearch.action.ActionListenerResponseHandler.handleResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAA_58"}} -{"Stackframe": {"function": {"name": "fpu__restore_sig"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EMyu4kjP7CMJCtMZjoFNnQAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "void java.util.regex.Pattern.(java.lang.String, int)", "offset": 22}, "line": {"number": 1428}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1fE-A15-sG5pm2Nv6tb9vgAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient.execute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 407}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0v3fw3R6M9K5pBw9frSxowAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "MMapDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.apache.lucene.store.MMapDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 3}, "line": {"number": 238}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mCuWv-KqRrRw5ZZJke85CgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjjMP"}} -{"Stackframe": {"function": {"name": "rtnetlink_rcv_msg"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFE4F"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.retake"}, "line": {"number": 4797}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABHoc"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.runqsteal"}, "line": {"number": 6012}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6OAqAmsWvuVmNt1cNurDiAAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "boolean org.elasticsearch.index.translog.Translog.ensureSynced(org.elasticsearch.index.translog.Translog$Location)", "offset": 3}, "line": {"number": 851}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HzkYyi2C6L3vJegaT4d3DQAAAAAAAABZ"}} -{"Stackframe": {"file": {"name": "AbstractAsyncTask.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractAsyncTask.rescheduleIfNecessary()", "offset": 10}, "line": {"number": 94}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GY8FzW1zmT9O6Iy3KHcGZQAAAAAAAAFJ"}} -{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode$GCMDecrypt.doFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 48}, "line": {"number": 1567}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChkkO"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/symtab.go"}, "function": {"name": "runtime.gentraceback"}, "line": {"number": 1097}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$CachingAsyncSupplier.getAsync(org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 725}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi-CE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file_posix.go"}, "function": {"name": "os.(*File).write"}, "line": {"number": 47}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEf_K"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.scanblock"}, "line": {"number": 1281}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QN4Q0wqGRE_9JxLmhmELwwAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.map(java.util.Map, boolean, boolean)", "offset": 16}, "line": {"number": 895}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "W0z6xNHqHLcQrQ1Rr4ojGwAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "JarFileFactory.java"}, "function": {"name": "java.util.jar.JarFile sun.net.www.protocol.jar.JarFileFactory.get(java.net.URL, boolean)", "offset": 2}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "112Fwha7UwifvTTtdUMggAAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.ApiKeyService$$Lambda$8897+0x00000008027d1570.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q"}} -{"Stackframe": {"function": {"name": "StubRoutines (2)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XoNqQsMeesgJkRR-qQrvugAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrapAndFlush(io.netty.channel.ChannelHandlerContext)", "offset": 11}, "line": {"number": 799}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0G_ljx-j83i-Qy2lIULhUQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "AbstractBaseReindexRestHandler.java"}, "function": {"name": "void org.elasticsearch.index.reindex.AbstractBaseReindexRestHandler.lambda$doPrepareRequest$0(org.elasticsearch.client.node.NodeClient, org.elasticsearch.index.reindex.AbstractBulkByScrollRequest, java.util.Map, org.elasticsearch.rest.RestChannel)"}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JZl0dXaaLjOD0ff_wyAqWwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$SynchronizedCollection.contains(java.lang.Object)"}, "line": {"number": 2087}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "12nEeMsH00wjguIyHXaYDwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "NamedDiffableValueSerializer.java"}, "function": {"name": "org.elasticsearch.cluster.Diff org.elasticsearch.cluster.NamedDiffableValueSerializer.readDiff(org.elasticsearch.common.io.stream.StreamInput, java.lang.String)"}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAB7NE"}} -{"Stackframe": {"function": {"name": "xfs_iflush_cluster"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "T6ZbxRdA5gK0JhigDlprHgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.TransportService$$Lambda$4790+0x0000000801fc9bf8.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eX9iAJM3toZWX3uGKIS4WwAAAAAAAAJa"}} -{"Stackframe": {"file": {"name": "RoutingNodes.java"}, "function": {"name": "void org.elasticsearch.cluster.routing.RoutingNodes.(org.elasticsearch.cluster.ClusterState, boolean)", "offset": 78}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l02Rky0rhr7e1TqmERHkOQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ReaderBasedJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.ReaderBasedJsonParser._nextAfterName()"}, "line": {"number": 786}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uC86pFXXnBLCj6eRRljPDwAAAAAAAACE"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 22}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMB-T"}} -{"Stackframe": {"function": {"name": "seq_escape"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.addListener(org.elasticsearch.action.ActionListener, java.util.concurrent.ExecutorService, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 2}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dAeX1d421DMJ2cC6FX3tvwAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "ElasticApmTracer.java"}, "function": {"name": "co.elastic.apm.agent.impl.transaction.Transaction co.elastic.apm.agent.impl.ElasticApmTracer.startChildTransaction(java.lang.Object, co.elastic.apm.agent.impl.transaction.TextHeaderGetter, co.elastic.apm.agent.impl.sampling.Sampler, long, java.lang.ClassLoader)", "offset": 2}, "line": {"number": 209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZuakkYQH3cBV7wefZCqVAwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "Thread.java"}, "function": {"name": "void java.lang.Thread.run()", "offset": 1}, "line": {"number": 832}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sPRIu4G_UqOumyaMlOEsUwAAAAAAAABc"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", "offset": 20}, "line": {"number": 1128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TWlgCotVAvCNPwZcQGJDTAAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelReadComplete()", "offset": 2}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-wI9"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.SupportedSubsystems"}, "line": {"number": 156}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u80wzeYkSnSlt8hhdfSXpgAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.FSDirectory.createOutput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 7}, "line": {"number": 254}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.decode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 4}, "line": {"number": 1286}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ng5XaeoBUnLdWeaVrR6CtwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "DefaultBHttpClientConnection.java"}, "function": {"name": "void org.apache.http.impl.DefaultBHttpClientConnection.flush()", "offset": 1}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Uc3Hxu80nWajDYNI1RALIwAAAAAAAAGQ"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.handleIndexActionAuthorizationResult(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener)", "offset": 55}, "line": {"number": 540}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxGYO"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/os.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.parseDistribRelease"}, "line": {"number": 263}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YzuyZtq5JqKuzKWHMEIfSwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "void org.elasticsearch.tracing.apm.APMTracer.lambda$updateThreadContext$3(org.elasticsearch.common.util.concurrent.ThreadContext, java.lang.String, java.lang.String)", "offset": 1}, "line": {"number": 209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "47Ynctdwhr8Q34WGwpCU8wAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "InputStreamStreamInput.java"}, "function": {"name": "int org.elasticsearch.common.io.stream.InputStreamStreamInput.read(byte[], int, int)"}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5GG3t6O35HTmUeUOGuPmCwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.commit()", "offset": 1}, "line": {"number": 4006}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.refresh(java.lang.String)"}, "line": {"number": 1796}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-QiR"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.CoalesceMessages"}, "line": {"number": 381}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mON6E-sGKxCDq9_2hgYb0gAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ForUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.ForUtil.innerPrefixSum32(long[])"}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kCbL_O4te-WAGQK-GOmsBgAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "SecurityIndexManager.java"}, "function": {"name": "boolean org.elasticsearch.xpack.security.support.SecurityIndexManager.checkIndexMappingVersionMatches(java.lang.String, org.elasticsearch.cluster.ClusterState, org.apache.logging.log4j.Logger, java.util.function.Predicate)"}, "line": {"number": 253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3fBcCtdpXw43VTJq86uhwAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "StringConcatHelper.java"}, "function": {"name": "long java.lang.StringConcatHelper.prepend(long, byte[], long)", "offset": 1}, "line": {"number": 262}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AgfDpV6vLB3qRqGnzt8JNAAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "UnpooledByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.UnpooledByteBufAllocator.newHeapBuffer(int, int)"}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EV432BMViBVOh4tE-1yPOAAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "HttpURLConnection.java"}, "function": {"name": "java.io.InputStream sun.net.www.protocol.http.HttpURLConnection.getInputStream()", "offset": 3}, "line": {"number": 1570}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "FilterMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.FilterMergePolicy.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.util.IOSupplier)"}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_Ngz1ncxudXrxSqiWBxoaAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher.doCheckAndNotify()"}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UT1CLo52HplxPz6JwcoqCQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "PipelineConfiguration.java"}, "function": {"name": "java.util.Map org.elasticsearch.ingest.PipelineConfiguration.getConfigAsMap()"}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6JqSjZUfKzqH4khsfs3pQgAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "SoftDeletesPolicy.java"}, "function": {"name": "org.apache.lucene.search.Query org.elasticsearch.index.engine.SoftDeletesPolicy.getRetentionQuery()"}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAFBLG"}} -{"Stackframe": {"file": {"name": "compress/gzip/gzip.go"}, "function": {"name": "compress/gzip.(*Writer).Close"}, "line": {"number": 242}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8wyHWaiozlb8fICne_VIJAAAAAAAAADr"}} -{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress$Entry.(org.elasticsearch.snapshots.Snapshot, boolean, boolean, org.elasticsearch.cluster.SnapshotsInProgress$State, java.util.Map, java.util.List, java.util.List, long, long, org.elasticsearch.common.collect.ImmutableOpenMap, java.lang.String, java.util.Map, org.elasticsearch.Version, org.elasticsearch.snapshots.SnapshotId, org.elasticsearch.common.collect.ImmutableOpenMap)", "offset": 24}, "line": {"number": 797}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BQSx00nZsCkojgxuZjNNTAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ObjectName.java"}, "function": {"name": "javax.management.ObjectName javax.management.ObjectName.getInstance(java.lang.String)"}, "line": {"number": 1296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xH7fDwWrFq_DRtbR8yK9XwAAAAAAAAME"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.prepareCommitInternal()", "offset": 143}, "line": {"number": 3716}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ug_WrvzfiSx7or5yGxERuQAAAAAAAABr"}} -{"Stackframe": {"file": {"name": "CompletionStatsCache.java"}, "function": {"name": "org.elasticsearch.search.suggest.completion.CompletionStats org.elasticsearch.index.engine.CompletionStatsCache.lambda$get$0()", "offset": 7}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zTmlqGcldzHyZLUOVZks5AAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "IndexAbstraction.java"}, "function": {"name": "boolean org.elasticsearch.cluster.metadata.IndexAbstraction$Index.isHidden()"}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BBv-21qRgT6sS06vQ0duDgAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeCollection(java.util.Collection, org.elasticsearch.common.io.stream.Writeable$Writer)", "offset": 1}, "line": {"number": 1159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KB0KS3hQ9ShgNXNnOutrBwAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "AWS4Signer.java"}, "function": {"name": "java.lang.String com.amazonaws.auth.AWS4Signer.createCanonicalRequest(com.amazonaws.SignableRequest, java.lang.String)", "offset": 12}, "line": {"number": 339}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo"}} -{"Stackframe": {"function": {"name": "walk_component"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.lambda$done$0(org.elasticsearch.common.collect.Tuple)"}, "line": {"number": 98}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OUV_Man7LKpLI_xXeAvtgAAAAAAAAACe"}} -{"Stackframe": {"file": {"name": "Netty4MessageChannelHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 8}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACHfvb"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/reflect/value.go"}, "function": {"name": "reflect.copyVal"}, "line": {"number": 1311}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HhIaqq60njiI-TSR6IpvaAAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "MultiLevelSkipListReader.java"}, "function": {"name": "int org.apache.lucene.codecs.MultiLevelSkipListReader.skipTo(int)", "offset": 7}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "c2fBPtlvsbRN7RlI5PkEjQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "CgroupUtil.java"}, "function": {"name": "java.util.stream.Stream jdk.internal.platform.CgroupUtil.readFilePrivileged(java.nio.file.Path)", "offset": 1}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NClnX-WugtIozBMJf4sI2AAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext.putTransient(java.lang.String, java.lang.Object)"}, "line": {"number": 502}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACpxsF"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/crypto/rsa/rsa.go"}, "function": {"name": "crypto/rsa.(*PrivateKey).Decrypt"}, "line": {"number": 162}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XkwrwjOS6nVGpR6C__HdAgAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile$$Lambda$4257.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n5za8ZXh7UbY67xU_M9aoAAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "AbstractLogger.java"}, "function": {"name": "void org.apache.logging.log4j.spi.AbstractLogger.logIfEnabled(java.lang.String, org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message, java.lang.Throwable)", "offset": 1}, "line": {"number": 1827}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "63nMu76IftokzOnGnfVTJwAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "IndexLifecycleRunner.java"}, "function": {"name": "void org.elasticsearch.xpack.ilm.IndexLifecycleRunner.runPolicyAfterStateChange(java.lang.String, org.elasticsearch.cluster.metadata.IndexMetadata)", "offset": 4}, "line": {"number": 330}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.handleIndexActionAuthorizationResult(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener)", "offset": 43}, "line": {"number": 363}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qsOdwnOfdpGhy1Ny492aAwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "org.elasticsearch.cluster.SnapshotsInProgress$Entry org.elasticsearch.cluster.SnapshotsInProgress.lambda$new$0(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I_i_3enTR60S4qDgQ3zxCQAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.dataformat.smile.SmileParser._findDecodedFromSymbols(int)", "offset": 1}, "line": {"number": 1697}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "49P_FduVXL-1HnETkDgpjwAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$4693.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMust"}} -{"Stackframe": {"function": {"name": "__x64_sys_epoll_wait"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s2LTirMvOXiDsBun6I-UyQAAAAAAAACf"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.apply(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.support.ActionFilterChain)", "offset": 22}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "D7zIyFZUzmF7jQNkOr5POgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FQMAbTidsrwqSy_PmMI2AwAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "MultiCollector.java"}, "function": {"name": "org.apache.lucene.search.LeafCollector org.apache.lucene.search.MultiCollector.getLeafCollector(org.apache.lucene.index.LeafReaderContext)", "offset": 5}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA9UY"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.mstart0"}, "line": {"number": 1359}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb81"}} -{"Stackframe": {"function": {"name": "__x64_sys_newstat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sLlgLb_29ibKij3P60tXfwAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "ApiKeyService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.ApiKeyService.loadApiKeyAndValidateCredentials(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.xpack.security.authc.ApiKeyService$ApiKeyCredentials, org.elasticsearch.action.ActionListener)", "offset": 20}, "line": {"number": 686}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6himjS-PpAivu9i1Bhv6aAAAAAAAAACV"}} -{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.consumeToken(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 105}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Z54PjEfQsrC0ZgxONgiYbAAAAAAAAAB9"}} -{"Stackframe": {"file": {"name": "HandshakeContext.java"}, "function": {"name": "java.util.List sun.security.ssl.HandshakeContext.getActiveCipherSuites(java.util.List, java.util.List, java.security.AlgorithmConstraints)", "offset": 14}, "line": {"number": 339}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9HJw1AcNel0sxysI8t-wFAAAAAAAAADd"}} -{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService.lambda$startNewShards$1(org.elasticsearch.cluster.SnapshotsInProgress$Entry, java.util.Map)", "offset": 10}, "line": {"number": 286}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApQK-"}} -{"Stackframe": {"function": {"name": "strchr"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiu_y"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/internal/poll/fd.go"}, "function": {"name": "internal/poll.(*FD).writeLock"}, "line": {"number": 43}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zklodWMmXJtUPwoAk2fB-QAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "Netty4HttpPipeliningHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpPipeliningHandler.doWrite(io.netty.channel.ChannelHandlerContext, org.elasticsearch.http.netty4.Netty4HttpResponse, io.netty.channel.ChannelPromise)", "offset": 1}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BAFCxmSCoEwAEfgMw2al3wAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Reference.java"}, "function": {"name": "void java.lang.ref.Reference.clear()"}, "line": {"number": 397}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tcWktgSeaLVx-oyyudqAZQAAAAAAAACV"}} -{"Stackframe": {"file": {"name": "BKDReader.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDReader$BKDPointTree.visitCompressedDocValues(int[], byte[], org.apache.lucene.store.IndexInput, org.apache.lucene.util.bkd.BKDReader$BKDReaderDocIDSetIterator, int, org.apache.lucene.index.PointValues$IntersectVisitor, int)", "offset": 16}, "line": {"number": 929}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xF4yGyA2KnTCi8zdSVp9ZAAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction$CCSActionListener.maybeFinish()", "offset": 10}, "line": {"number": 1380}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BFGjgFTdK1xnfs0xj5apUwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "java.lang.Object[] java.util.stream.ReferencePipeline.toArray(java.util.function.IntFunction)", "offset": 1}, "line": {"number": 616}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXvU6"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.marshalUnmarshal"}, "line": {"number": 269}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACp70o"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/io/ioutil/ioutil.go"}, "function": {"name": "io/ioutil.ReadDir.func1"}, "line": {"number": 68}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UP7wzdQXo1Tc_iFi4DuZQQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.translog.TranslogStats org.elasticsearch.index.shard.IndexShard.translogStats()"}, "line": {"number": 1344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Sxgb26oKQwlt07if9woPTQAAAAAAAALo"}} -{"Stackframe": {"function": {"name": "ip_sabotage_in"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GoyWYLMjSVkhprMVlMHfKQAAAAAAAAHk"}} -{"Stackframe": {"file": {"name": "NodesInfoResponse.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.action.admin.cluster.node.info.NodesInfoResponse.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 49}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qxNbkYBEVNPqwztSIOjX5wAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "DefaultChannelPromise.java"}, "function": {"name": "io.netty.channel.ChannelPromise io.netty.channel.DefaultChannelPromise.addListener(io.netty.util.concurrent.GenericFutureListener)"}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VJPzmLqKchEMtC2t_bsRSwAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "ByteBuffersDataOutput.java"}, "function": {"name": "void org.apache.lucene.store.ByteBuffersDataOutput.writeBytes(byte[], int, int)", "offset": 3}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ifuzCpl1zo6zLw_paxkEdQAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "SdkHttpRequestExecutor.java"}, "function": {"name": "org.apache.http.HttpResponse com.amazonaws.http.protocol.SdkHttpRequestExecutor.doSendRequest(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext)", "offset": 19}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiMJa"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.connect"}, "line": {"number": 1439}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TdLBc1JJ3J60d1mSzjojBgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "java.lang.String java.lang.String.substring(int)"}, "line": {"number": 2688}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xOuzl7cRmBw0-tjVF12FGAAAAAAAAAH6"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 506}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TyBQ_JW-YvcEILwljki-UgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "FieldComparator.java"}, "function": {"name": "void org.apache.lucene.search.FieldComparator$NumericComparator.doSetNextReader(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Wj5v705AK3wrQkpP9C_wfwAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "RetryableAction.java"}, "function": {"name": "void org.elasticsearch.action.support.RetryableAction$RetryingListener.onResponse(java.lang.Object)", "offset": 2}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WNSWOp_4Iqt56ZuW1XrPJwAAAAAAAABn"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrap(io.netty.channel.ChannelHandlerContext, boolean)", "offset": 19}, "line": {"number": 828}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cWLoRlpieZwX6W_wbmlZ5AAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "RestMainAction.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestMainAction$1.buildResponse(org.elasticsearch.action.main.MainResponse, org.elasticsearch.xcontent.XContentBuilder)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_132SCE97-YKPPIxyOJtGgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gzS2gTOADieg_5WoIadp-AAAAAAAAAEV"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 277}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Kn7ai6R2nHAWrTfNWdUdrgAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "void org.apache.lucene.search.ReferenceManager.doMaybeRefresh()", "offset": 19}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6kDbTiAUEwXMkrLqyhAU-AAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ExecutionService.java"}, "function": {"name": "void org.elasticsearch.xpack.watcher.execution.ExecutionService.lambda$executeAsync$5(org.elasticsearch.xpack.core.watcher.execution.WatchExecutionContext)"}, "line": {"number": 441}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQL"}} -{"Stackframe": {"function": {"name": "audit_filter_rules.constprop.21"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Slb8MNVKIFfE9HJqtN3BhwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Inflater.java"}, "function": {"name": "long java.util.zip.Inflater.inflateBytesBytes(long, byte[], int, int, byte[], int, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgUVu"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/runtime1.go"}, "function": {"name": "runtime.mallocgc"}, "line": {"number": 477}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hWTBWfz-Houd9OXpVmNNGAAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator$$Lambda$6570+0x0000000802412608.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BUIjEExV8zypjFmSEDklUAAAAAAAAAA8"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 60}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFEcO"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.sysmon"}, "line": {"number": 4661}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VUYArEzzNVQi01EogS1TBAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "JarFile.java"}, "function": {"name": "java.util.zip.ZipEntry java.util.jar.JarFile.getEntry(java.lang.String)", "offset": 2}, "line": {"number": 509}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACwsaK"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/prometheus/procfs@v0.6.0/proc.go"}, "function": {"name": "github.com/prometheus/procfs.FS.AllProcs"}, "line": {"number": 106}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3dUfWzJ67_jxjMUga0sxYwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "BaseNodeResponse.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.BaseNodeResponse.(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN21"}} -{"Stackframe": {"function": {"name": "__netif_receive_skb_one_core"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nnCec0a2-ZcuYpnWUHHz2AAAAAAAAAC9"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 14}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z4saotK6LxTMAqnKCFr7WgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "boolean java.util.HashMap.containsKey(java.lang.Object)"}, "line": {"number": 596}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Zou-EwmpdzrcXx7eij10xwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Index org.elasticsearch.index.shard.IndexShard.prepareIndex(org.elasticsearch.index.mapper.MapperService, java.lang.String, org.elasticsearch.index.mapper.SourceToParse, long, long, long, org.elasticsearch.index.VersionType, org.elasticsearch.index.engine.Engine$Operation$Origin, long, boolean, long, long)"}, "line": {"number": 1003}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZ"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/mb/module/runner.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/mb/module.init.0"}, "line": {"number": 34}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6JL9Zb5wYEadxJXUwBTXrgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "InboundDecoder.java"}, "function": {"name": "int org.elasticsearch.transport.InboundDecoder.decode(org.elasticsearch.common.bytes.ReleasableBytesReference, java.util.function.Consumer)", "offset": 2}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0ncC8n8oxaSJwvZ2J0pqxAAAAAAAAAEX"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser._nextTokenNotInObject(int)", "offset": 37}, "line": {"number": 857}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABFva"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.sysmon"}, "line": {"number": 5186}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ODJxpePHpW__WCCRpgG0AQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.StandardDirectoryReader$$Lambda$7233+0x0000000802500220.close()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "npTdx_CQ1T4tQiYqxJjBqgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext.restore()"}, "line": {"number": 624}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "ClassLoader.java"}, "function": {"name": "java.net.URL java.lang.ClassLoader.getResource(java.lang.String)", "offset": 8}, "line": {"number": 1401}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JuCfdWrRLOsm707HTwRsEQAAAAAAAACd"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.runRequestInterceptors(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.action.ActionListener)", "offset": 17}, "line": {"number": 353}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "U0G4u2sI84e-qKwkGwX3CAAAAAAAAABI"}} -{"Stackframe": {"file": {"name": "Lucene86PointsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene86.Lucene86PointsWriter.(org.apache.lucene.index.SegmentWriteState, int, double)", "offset": 8}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3APbfJs5SvbH_F9r5lo_3wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "AbstractResourceWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.AbstractResourceWatcher.checkAndNotify()", "offset": 1}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "void java.security.AccessController.checkPermission(java.security.Permission)", "offset": 4}, "line": {"number": 1042}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hVIXRptYWdYbTtDZhNkyZQAAAAAAAAJE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 580}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4aWABwF73Np6FFZYc2m-kwAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "Spliterators.java"}, "function": {"name": "void java.util.Spliterators$IteratorSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 6}, "line": {"number": 1845}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bwI70XUfdOG1VquNZTS_IwAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.closeMergeReaders(org.apache.lucene.index.MergePolicy$OneMerge, boolean, boolean)", "offset": 3}, "line": {"number": 4631}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "It3O82Qt-f1-LUtaeKWOtgAAAAAAAABi"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.updateChildren()", "offset": 18}, "line": {"number": 205}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NI5ssdzklBlpxY8lq_1U_AAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "IngestInfo.java"}, "function": {"name": "void org.elasticsearch.ingest.IngestInfo.(java.util.List)", "offset": 1}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Vg8LgIqDa3ypsQ0qV00ZvAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "PathParser.java"}, "function": {"name": "com.typesafe.config.impl.Path com.typesafe.config.impl.PathParser.parsePath(java.lang.String)"}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Lk5CiyX7v99dORWhD5rxWQAAAAAAAADQ"}} -{"Stackframe": {"file": {"name": "TextBuffer.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.util.TextBuffer.contentsAsString()", "offset": 29}, "line": {"number": 426}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5vMyVxaxXbqzsaKVqZzo9wAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "OutputStreamStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.OutputStreamStreamOutput.writeBytes(byte[], int, int)"}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dwALkUYgGLRGfUWD1MdpDgAAAAAAAACB"}} -{"Stackframe": {"file": {"name": "SelectorImpl.java"}, "function": {"name": "void sun.nio.ch.SelectorImpl.processDeregisterQueue()", "offset": 18}, "line": {"number": 278}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "exJScA8VoHDKCf5qkT397AAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.node.DiscoveryNode$$Lambda$801+0x000000080166d3d0.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "W01rO5NZCc-8AO1JVA9huQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.engine.CommitStats org.elasticsearch.index.engine.Engine.commitStats()"}, "line": {"number": 762}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA8y"}} -{"Stackframe": {"function": {"name": "mangle_path"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QQdm725dN4gfQaI1Q2V-1wAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "void org.elasticsearch.cluster.DiffableUtils$MapDiff.(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)", "offset": 8}, "line": {"number": 448}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACrEaE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/crypto/tls/handshake_client_tls13.go"}, "function": {"name": "crypto/tls.(*clientHandshakeStateTLS13).checkServerHelloOrHRR"}, "line": {"number": 123}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bem31qqzjUFpI7bh8w8-nQAAAAAAAACj"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.finishCommit()", "offset": 30}, "line": {"number": 3822}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Sxgb26oKQwlt07if9woPTQAAAAAAAB5c"}} -{"Stackframe": {"function": {"name": "br_nf_pre_routing_finish"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-ZUigVp6H-HqH1lR0smw4gAAAAAAAADm"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.applyIndexOperation(org.elasticsearch.index.engine.Engine, long, long, long, org.elasticsearch.index.VersionType, long, long, long, boolean, org.elasticsearch.index.engine.Engine$Operation$Origin, org.elasticsearch.index.mapper.SourceToParse)", "offset": 28}, "line": {"number": 847}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANcyB"}} -{"Stackframe": {"function": {"name": "iomap_write_actor"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEOC7X"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/helper/socket/ptable.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/helper/socket.(*ProcTable).accessibleProcs"}, "line": {"number": 163}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2vzhsTPfkVRKbOkBMFFkggAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "long org.apache.lucene.codecs.DocValuesConsumer$2.longValue()"}, "line": {"number": 261}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ThO8_KuTmwWmBlUmunfBRQAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "SortedSetDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedSetDocValuesWriter$BufferedSortedSetDocValues.(int[], int[], org.apache.lucene.util.BytesRefHash, org.apache.lucene.util.packed.PackedLongValues, org.apache.lucene.util.packed.PackedLongValues, int, org.apache.lucene.search.DocIdSetIterator)", "offset": 14}, "line": {"number": 235}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QEcoaK1PiA1axEyBRqzL3AAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "MappedByteBufferIndexInputProvider.java"}, "function": {"name": "void org.apache.lucene.store.MappedByteBufferIndexInputProvider.lambda$newBufferCleaner$1(java.lang.invoke.MethodHandle, java.lang.String, java.nio.ByteBuffer)", "offset": 4}, "line": {"number": 184}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YNkW7ldpj8VMrufMGJqX2QAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "DirectMethodHandle$Holder"}, "function": {"name": "long java.lang.invoke.DirectMethodHandle$Holder.invokeStatic(java.lang.Object, long, java.lang.Object, long, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Fq-Wp_fKqnzituNc-kKOtAAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$4758.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FjooOB7UnLRNkyMXgznjWwAAAAAAAACS"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "org.elasticsearch.gateway.PersistedClusterStateService$Writer$WriterStats org.elasticsearch.gateway.PersistedClusterStateService$Writer.updateMetadata(org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.cluster.metadata.Metadata)", "offset": 13}, "line": {"number": 957}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlId_"}} -{"Stackframe": {"function": {"name": "ip_rcv"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IJnlXZgP58FpcOOLo104QAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Invokers$Holder"}, "function": {"name": "java.lang.Object java.lang.invoke.Invokers$Holder.linkToTargetMethod(long, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_iDZMCcFI7BA-AS_7zsasAAAAAAAAACN"}} -{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.doExecute()", "offset": 19}, "line": {"number": 796}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7a_Pg8hS47zrtH0Ax4DfZAAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "InternalOrder.java"}, "function": {"name": "int org.elasticsearch.search.aggregations.InternalOrder$SimpleOrder.hashCode()"}, "line": {"number": 304}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACglEk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.gcAssistAlloc1"}, "line": {"number": 574}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cgvbeZuClZL5_u10G3w_3QAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "TransportFieldCapabilitiesAction.java"}, "function": {"name": "void org.elasticsearch.action.fieldcaps.TransportFieldCapabilitiesAction$NodeTransportHandler.messageReceived(org.elasticsearch.action.fieldcaps.FieldCapabilitiesNodeRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 1}, "line": {"number": 391}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VYXzVa4RgSiIVP87R36OaAAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelHandlerContext io.netty.channel.AbstractChannelHandlerContext.read()", "offset": 3}, "line": {"number": 671}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Qux0OsKGNxatt2eDble7JgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.StandardDirectoryReader$$Lambda$7234+0x0000000802500448.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QF0gmeIjjmTZUhdMFgr_4AAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "S3RetryingInputStream.java"}, "function": {"name": "com.amazonaws.services.s3.model.S3Object org.elasticsearch.repositories.s3.S3RetryingInputStream.lambda$openStream$0(org.elasticsearch.repositories.s3.AmazonS3Reference, com.amazonaws.services.s3.model.GetObjectRequest)"}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FIZ4zV4_EOAY9km9TuDmdQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "CRC32.java"}, "function": {"name": "void java.util.zip.CRC32.update(byte[], int, int)"}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5dyaLj4wEVzUhd0CK34gIwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient.get(org.elasticsearch.action.get.GetRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 497}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACzAIE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/reflect/value.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.followPointer"}, "line": {"number": 153}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jgYSmvlKH4a0ntABTu16dwAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.util.TreeMap$Entry java.util.TreeMap.getEntryUsingComparator(java.lang.Object)", "offset": 5}, "line": {"number": 374}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SXl2S9Cin3OSJJ8QmrqVDwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "StreamSpliterators.java"}, "function": {"name": "boolean java.util.stream.StreamSpliterators$WrappingSpliterator.lambda$initPartialTraversalState$0()"}, "line": {"number": 292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANyMV"}} -{"Stackframe": {"function": {"name": "tid_fd_update_inode"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JYDGNyrxwMciptwAXDUuRwAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "AbstractAsyncTask.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractAsyncTask.run()", "offset": 20}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x-4qlwW9IjSs55gfy0yclgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "IntegerPolynomial.java"}, "function": {"name": "sun.security.util.math.MutableIntegerModuloP sun.security.util.math.intpoly.IntegerPolynomial$MutableElement.setSquare()"}, "line": {"number": 602}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QWMUCGTmuZKLmyhq5UAxugAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController$ResourceHandlingHttpChannel.sendResponse(org.elasticsearch.rest.RestResponse)", "offset": 1}, "line": {"number": 588}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NAhjTsNYxdMXNJqlZxlO_gAAAAAAAABe"}} -{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport$NodeChannels.sendRequest(long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions)", "offset": 14}, "line": {"number": 328}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SnaUGunAu44_z4c8VkZQlgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 641}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8PySOWxdeTvWtl74Iv620AAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "void org.elasticsearch.threadpool.ThreadPool$1.run()", "offset": 2}, "line": {"number": 439}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QjcJgCUAsytsXGSmYCNuVgAAAAAAAAJR"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 164}, "line": {"number": 699}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kVAvGW6ck8Qya8Jl3jwVtAAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object jdk.internal.reflect.GeneratedMethodAccessor6.invoke(java.lang.Object, java.lang.Object[])"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2quOp8hc50m96mwW1dVSowAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "void org.elasticsearch.threadpool.ThreadPool$ThreadedRunnable.run()"}, "line": {"number": 595}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xqShXzeV04JRO86le94zJQAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "XDHKeyExchange.java"}, "function": {"name": "void sun.security.ssl.XDHKeyExchange$XDHEPossession.(sun.security.ssl.NamedGroup, java.security.SecureRandom)", "offset": 5}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrj6"}} -{"Stackframe": {"function": {"name": "htab_map_get_next_key"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VyyKaeEtdlraCgV3b2jJawAAAAAAAABY"}} -{"Stackframe": {"file": {"name": "LZ4WithPresetDictCompressionMode.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.LZ4WithPresetDictCompressionMode$LZ4WithPresetDictDecompressor.decompress(org.apache.lucene.store.DataInput, int, int, int, org.apache.lucene.util.BytesRef)", "offset": 15}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ovizBkEZlKLe_M07oeCLhAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "RestStatusToXContentListener.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestStatusToXContentListener.buildResponse(java.lang.Object, org.elasticsearch.xcontent.XContentBuilder)"}, "line": {"number": 21}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANysa"}} -{"Stackframe": {"function": {"name": "tid_fd_revalidate"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Lll_E1k3FfR43EQBXwU1dgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "org.elasticsearch.index.store.StoreStats org.elasticsearch.index.store.Store.stats(long, java.util.function.LongUnaryOperator)", "offset": 1}, "line": {"number": 360}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "emnA4GIO594kGgGOGkqRhgAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "TermQuery.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.TermQuery$TermWeight.scorer(org.apache.lucene.index.LeafReaderContext)", "offset": 1}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DvxORZxoFkDRuJT-GJ72RwAAAAAAAABR"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.BufferedUpdatesStream$SegmentState[] org.apache.lucene.index.IndexWriter.openSegmentStates(java.util.List, java.util.Set, long)", "offset": 4}, "line": {"number": 5816}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qFqaIMeNfw2myzP6eZ7KkAAAAAAAAAB4"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 120}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h-mcFcSefWaXpPLGLAmk8gAAAAAAAADY"}} -{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.doHandleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 27}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_qijKAoIrj192_UIiHcBhwAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.writeValuesSingleBlock(org.apache.lucene.index.SortedNumericDocValues, long, int, long, long, java.util.Map)", "offset": 3}, "line": {"number": 298}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aIbc7x3jFTfe0iAcPpU-EQAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "LongAdder.java"}, "function": {"name": "void java.util.concurrent.atomic.LongAdder.add(long)", "offset": 5}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Dj6tiMRmBqF44gNTINilawAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DataInput.java"}, "function": {"name": "void org.apache.lucene.store.DataInput.readBytes(byte[], int, int, boolean)"}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7aQoN_s8X04jyh4gpnKxaAAAAAAAAABR"}} -{"Stackframe": {"file": {"name": "TLSFallbackSSLSocket.java"}, "function": {"name": "void co.elastic.apm.agent.report.ssl.TLSFallbackSSLSocket.startHandshake()", "offset": 9}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABV222"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/processmanager/manager.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/processmanager.(*ProcessManager).ProcNewMapping"}, "line": {"number": 886}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_eaU"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/auditd/audit_linux.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/auditd.(*MetricSet).receiveEvents.func1"}, "line": {"number": 451}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJXFc"}} -{"Stackframe": {"function": {"name": "unmap_single_vma"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OhagOqtTZKJX4CiHYdPxlAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "SecurityIndexManager.java"}, "function": {"name": "boolean org.elasticsearch.xpack.security.support.SecurityIndexManager.checkIndexMappingVersionMatches(org.elasticsearch.cluster.ClusterState, java.util.function.Predicate)"}, "line": {"number": 248}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BDXazX7fgZuH_ompyZTPawAAAAAAAABj"}} -{"Stackframe": {"file": {"name": "LeaderChecker.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.LeaderChecker$CheckScheduler.handleWakeUp()", "offset": 7}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_aLNQj4NizwmYCt1Iy9dBQAAAAAAAAB1"}} -{"Stackframe": {"file": {"name": "AbstractQueuedSynchronizer.java"}, "function": {"name": "long java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(long)", "offset": 13}, "line": {"number": 1661}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXRvJ"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/elfinfo.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.(*Tracer).getELFInfoForFile"}, "line": {"number": 73}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5l-2W9KB4tO_4MUXJhjp9AAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "RestCancellableNodeClient.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestCancellableNodeClient$1.onResponse(org.elasticsearch.action.ActionResponse)", "offset": 2}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R8Unr-8xOl9YfaVb1B0yFAAAAAAAAABv"}} -{"Stackframe": {"file": {"name": "PointRangeQuery.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.PointRangeQuery$1$4.get(long)", "offset": 9}, "line": {"number": 343}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H46oOheCVYMwVppPPeLSyQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "BaseTranslogReader.java"}, "function": {"name": "long org.elasticsearch.index.translog.BaseTranslogReader.getLastModifiedTime()"}, "line": {"number": 147}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DRApe1cPTh2-wFVHvKmI-QAAAAAAAABl"}} -{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.authenticateWithCache(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).unmarshal"}, "line": {"number": 180}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "IndexSearcher.java"}, "function": {"name": "void org.apache.lucene.search.IndexSearcher.search(org.apache.lucene.search.Query, org.apache.lucene.search.Collector)", "offset": 1}, "line": {"number": 443}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5Dz1NwJhW8tUTolfpVyg2gAAAAAAAABn"}} -{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "int sun.nio.ch.EPollSelectorImpl.doSelect(java.util.function.Consumer, long)", "offset": 17}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9sYnFbigFrf_-fozodwm9QAAAAAAAAFs"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "int org.apache.lucene.index.DefaultIndexingChain.processField(int, org.apache.lucene.index.IndexableField, long, int)", "offset": 50}, "line": {"number": 564}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ko4n5NZw4p1DfA2ZbzrmbQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "GlobalOrdinalValuesSource.java"}, "function": {"name": "org.elasticsearch.search.aggregations.LeafBucketCollector org.elasticsearch.search.aggregations.bucket.composite.GlobalOrdinalValuesSource.getLeafCollector(org.apache.lucene.index.LeafReaderContext, org.elasticsearch.search.aggregations.LeafBucketCollector)"}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Vru4hpAw_7_usxGosAlYKQAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateAppliers(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.common.StopWatch)", "offset": 1}, "line": {"number": 490}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TwgGrxrsq_cPJuqNig0G7gAAAAAAAADS"}} -{"Stackframe": {"file": {"name": "FieldAndDocumentLevelSecurityRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.FieldAndDocumentLevelSecurityRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 23}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JxNwQdNQ2KhjkcKvr9OxfAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "MSBRadixSorter.java"}, "function": {"name": "void org.apache.lucene.util.MSBRadixSorter.introSort(int, int, int)"}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z-hu6cNT1Ftqgnka76QdWAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.BooleanWeight.scorer(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABVxxG"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/processmanager/manager.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/processmanager.collectInterpreterMetrics.func1"}, "line": {"number": 176}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HuXAxzkkHdhfQcvxJ-zR2gAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "LZ4SafeUtils.java"}, "function": {"name": "void org.elasticsearch.lz4.LZ4SafeUtils.wildArraycopy(byte[], int, byte[], int, int)"}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "feYj-gxH446kk14zhma-hAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "AbstractDelegateHttpsURLConnection.java"}, "function": {"name": "void sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect()", "offset": 2}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m_XXHcAY7GMXwX2ivt7_5QAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$6439+0x00000008023d6000.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Vr464Hci92DwulADwvd6QgAAAAAAAACX"}} -{"Stackframe": {"file": {"name": "TransportIndicesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.ShardStats org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.lambda$shardOperation$0(org.elasticsearch.tasks.Task, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.action.admin.indices.stats.IndicesStatsRequest)", "offset": 24}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OK_pFA1aQYnHbbVPufNrOQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "AbstractLogger.java"}, "function": {"name": "void org.apache.logging.log4j.spi.AbstractLogger.logMessageTrackRecursion(java.lang.String, org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message, java.lang.Throwable)", "offset": 1}, "line": {"number": 2125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6VgifDx_vRg8rUeffXssrQAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser._nextAfterName()", "offset": 10}, "line": {"number": 872}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kUJgVxIXgDBTomuPsxvCVwAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "java.lang.Object java.util.AbstractMap.get(java.lang.Object)", "offset": 9}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL4VK"}} -{"Stackframe": {"function": {"name": "__fget"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pv2BnGF3DU5EF7_9vBhh5wAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "CopyOnWriteArrayList.java"}, "function": {"name": "void java.util.concurrent.CopyOnWriteArrayList.forEach(java.util.function.Consumer)", "offset": 3}, "line": {"number": 807}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8Tc4heOqvkkU3j8yuc3AAQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.dispatchedShardOperationOnReplica(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fhgJSRyZo0mzCCDZd--ywQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "int java.util.Collections$UnmodifiableSet.hashCode()"}, "line": {"number": 1148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BnVm-5KvPy1J6pivjqO0oQAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "NotifyOnceListener.java"}, "function": {"name": "void org.elasticsearch.action.NotifyOnceListener.onResponse(java.lang.Object)", "offset": 1}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "D0g0ITB6vPs-JMXU6kB_IgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(org.elasticsearch.rest.RestRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA9N"}} -{"Stackframe": {"function": {"name": "mangle_path"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ouxUnI8gftdBjNsXrXpTMQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelHandlerContext io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(java.lang.Object)"}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJ"}} -{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile.inbound(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.action.ActionListener)", "offset": 33}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlmsw"}} -{"Stackframe": {"function": {"name": "tcp_rcv_established"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9XwjjOJWF0a2KrYN7mYvpwAAAAAAAADS"}} -{"Stackframe": {"file": {"name": "Lucene84SkipWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.Lucene84SkipWriter.writeSkipData(int, org.apache.lucene.store.IndexOutput)", "offset": 29}, "line": {"number": 199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NVuG_wmq9ueHuiQhJ2X7TgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "Netty4TcpChannel.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4TcpChannel.lambda$addPromise$1(org.elasticsearch.action.ActionListener, io.netty.util.concurrent.Future)", "offset": 1}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAROdc"}} -{"Stackframe": {"function": {"name": "security_inode_getattr"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.channels.FileChannel sun.nio.fs.UnixFileSystemProvider.newFileChannel(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])", "offset": 4}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACj82r"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/errors.go"}, "function": {"name": "fmt.(*wrapError).Unwrap"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M-sXhvfna68VyqP_ipf--wAAAAAAAACC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 10}, "line": {"number": 239}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgeSR"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mcache.go"}, "function": {"name": "runtime.(*mcache).refill"}, "line": {"number": 146}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nJb6IY06KTWp6IJDHyYuGgAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "TransportBroadcastByNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.onShardOperation(org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$NodeRequest, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionListener)", "offset": 25}, "line": {"number": 489}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Rq1eFN8SiXxM79ZsydqqqAAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "SizeBlockingQueue.java"}, "function": {"name": "boolean org.elasticsearch.common.util.concurrent.SizeBlockingQueue.offer(java.lang.Object)", "offset": 8}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EgnEAYVJO6evUZwnNI7NMgAAAAAAAAB0"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.applyInternal(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.ActionFilterChain, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 21}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EzFCZzsYnBjQn2ZgGN1k-gAAAAAAAAEO"}} -{"Stackframe": {"file": {"name": "ExecutionService.java"}, "function": {"name": "org.elasticsearch.xpack.core.watcher.history.WatchRecord org.elasticsearch.xpack.watcher.execution.ExecutionService.execute(org.elasticsearch.xpack.core.watcher.execution.WatchExecutionContext)", "offset": 58}, "line": {"number": 360}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pzTcRcencDxd0mEO6HA0bAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.handleCachedAuthentication(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.action.ActionListener)"}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEOCYy"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/helper/socket/ptable.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/helper/socket.(*ProcTable).Refresh"}, "line": {"number": 93}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fqaDj1pN5-CyodNN44HbZQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.shard.IndexShard.acquireIndexCommitForSnapshot()", "offset": 3}, "line": {"number": 1519}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "88-Z439dOdp5GpDKUJubowAAAAAAAAA_"}} -{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$1(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 15}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s7QK80FVtYwQj3h1fpBcbwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Settings.get(java.lang.String)"}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC8B8S"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/beat/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/beat.(*Event).PutValue"}, "line": {"number": 74}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ii3DfKc87aEj3ekkrQzbAwAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "TraceContext.java"}, "function": {"name": "boolean co.elastic.apm.agent.impl.transaction.TraceContext$4.asChildOf(co.elastic.apm.agent.impl.transaction.TraceContext, java.lang.Object, co.elastic.apm.agent.impl.transaction.TextHeaderGetter)", "offset": 5}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cGV0DDfmSpIZxUAKnFlOoQAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "void org.apache.lucene.index.StandardDirectoryReader.lambda$doClose$1()", "offset": 2}, "line": {"number": 373}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tY5fHNfhF2VRLe_6BhL5dgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$SparseNumericDocValues.advance(int)"}, "line": {"number": 447}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8DpGuCi7bIl_Uoo8EbsUWwAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.InternalEngine$IndexingStrategy org.elasticsearch.index.engine.InternalEngine.indexingStrategyForOperation(org.elasticsearch.index.engine.Engine$Index)", "offset": 4}, "line": {"number": 1154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o9I8XHop3y7uLb8wdADAN______AVoSN"}} -{"Stackframe": {"function": {"name": "__key.78117"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxE_E"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/os.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.init.1"}, "line": {"number": 62}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uqwCsRNPiFKrqHYXLGpv-wAAAAAAAAB8"}} -{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.merge(org.apache.lucene.index.MergeState, org.apache.lucene.codecs.NormsProducer)", "offset": 20}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "void java.util.ArrayList.forEach(java.util.function.Consumer)", "offset": 5}, "line": {"number": 1510}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SW61JLQpyiY8JZQITDlLwQAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "AnalysisStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.stats.AnalysisStats.lambda$of$0(java.util.Map, java.util.Set, java.util.Map)", "offset": 1}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAD8UKY"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_kubernetes_metadata/cache.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_kubernetes_metadata.newCache"}, "line": {"number": 46}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EYzjRFYzs1PS5SqhLPJ7TQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "boolean java.util.concurrent.LinkedTransferQueue.offer(java.lang.Object)"}, "line": {"number": 1213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B6mir8n4FiOVoo_Mi_OXUAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Invokers$Holder"}, "function": {"name": "java.lang.Object java.lang.invoke.Invokers$Holder.linkToTargetMethod(java.lang.Object, java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-I0qeKDe1hMr58wzZHuN2wAAAAAAAADf"}} -{"Stackframe": {"file": {"name": "HttpRequestExecutor.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.protocol.HttpRequestExecutor.doSendRequest(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext)", "offset": 42}, "line": {"number": 238}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAABfic"}} -{"Stackframe": {"function": {"name": "_xfs_buf_obj_cmp"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qmhrzhROIxdFfT_O0ufQNgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkWrite(java.lang.String)"}, "line": {"number": 838}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZccN0t7i0EOtwJSEeQbbkQAAAAAAAAIF"}} -{"Stackframe": {"file": {"name": "Lucene90BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.blocktree.Lucene90BlockTreeTermsWriter$TermsWriter.writeBlocks(int, int)", "offset": 111}, "line": {"number": 725}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-Jf6"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/auparse.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.(*AuditMessage).Data"}, "line": {"number": 106}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WLRYt6jYSNQJwcK07eg4FQAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.copyRestHeaders(org.elasticsearch.rest.RestRequest, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 3}, "line": {"number": 559}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ynk6E9ReVsUsstHFtTIiXQAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.writeReaderPool(boolean)", "offset": 6}, "line": {"number": 3629}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Z7iCsB1-GXkmEKIXzn-sOQAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterState org.elasticsearch.cluster.ClusterState$ClusterStateDiff.apply(org.elasticsearch.cluster.ClusterState)", "offset": 12}, "line": {"number": 818}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABkE8"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.entersyscall"}, "line": {"number": 3672}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zxSXOqjkgRFq6yblYso02AAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "SSLTransport.java"}, "function": {"name": "sun.security.ssl.Plaintext sun.security.ssl.SSLTransport.decode(sun.security.ssl.TransportContext, java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 3}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1_mPjWB6YzhY5DVg62peFAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "RetentionLeaseBackgroundSyncAction.java"}, "function": {"name": "void org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction$Request.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANqQn"}} -{"Stackframe": {"function": {"name": "proc_root_readdir"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bY3RtTMNEnhvgonzWleY4wAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.implWrite(byte[], int, int)", "offset": 5}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ-6Y"}} -{"Stackframe": {"function": {"name": "free_pages_and_swap_cache"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L15jjWwEOMTeauZtyYx75wAAAAAAAACV"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 149}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NbfRwCvGgojCF2erim_QkgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.ensureTranslogSynced(java.util.stream.Stream)"}, "line": {"number": 560}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PNrR2YKoj7goxCjWQi1QhgAAAAAAAAC7"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.internal.SearchContext org.elasticsearch.search.SearchService.createContext(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)", "offset": 26}, "line": {"number": 694}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K32j1k5JJMGDXqIHMqy_DQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "Class.java"}, "function": {"name": "java.lang.reflect.Constructor java.lang.Class.getConstructor(java.lang.Class[])", "offset": 2}, "line": {"number": 2162}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkH4y"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).free"}, "line": {"number": 402}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CzDxY4-T6r5w8odVH9tQEwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.updateFailedShardsCache(org.elasticsearch.cluster.ClusterState)"}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZWVXkJ8qrKOhTkKXzBlP4wAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "FileSystemUtils.java"}, "function": {"name": "java.nio.file.Path[] org.elasticsearch.common.io.FileSystemUtils.files(java.nio.file.Path)", "offset": 1}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlo7"}} -{"Stackframe": {"function": {"name": "show_mountinfo"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2uEWBluAjlG6YATEmwlaSAAAAAAAAABQ"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.IndexingChain.processDocument(int, java.lang.Iterable)", "offset": 18}, "line": {"number": 539}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cTku3JEuIQYlUuKgo_W7qgAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.common.settings.Settings.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 2}, "line": {"number": 665}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dB8rpvXeU-U7j8zoRqc_lgAAAAAAAAEh"}} -{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 31}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_BzhwSJVnQNfmYfVTdNgsAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "java.lang.Throwable java.lang.Throwable.fillInStackTrace()", "offset": 2}, "line": {"number": 798}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s3uwzuO0NE2riia09oyF7wAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 222}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OOfgbFUyyyBf7NiIDQweHAAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "DeflaterOutputStream.java"}, "function": {"name": "void java.util.zip.DeflaterOutputStream.flush()", "offset": 2}, "line": {"number": 274}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ivwGRowW9rKiGlQ5mGZyOQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.nodes.BaseNodesRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ngJW-mG0syMkjT4A0Lg1GwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DateFieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DateFieldMapper.parseCreateField(org.elasticsearch.index.mapper.DocumentParserContext)"}, "line": {"number": 881}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Z9zVvo9ZVSv6fTd0yjvLYgAAAAAAAAEb"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 19}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I0MmO0q1Sl0Qsu7Q5liiZwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "IndexReader.java"}, "function": {"name": "void org.apache.lucene.index.IndexReader.reportCloseToParentReaders()", "offset": 1}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RTvkaysuyXpxT9w4uvkQVwAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObjectOrField(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.Mapper)", "offset": 3}, "line": {"number": 417}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ajGOqPZ-j63yhkOuwDhkJwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "SmileParserBase.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.dataformat.smile.SmileParserBase.getCurrentName()"}, "line": {"number": 355}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e9VBoOb6ap6y2iBqQXec9wAAAAAAAACZ"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.doAddSortedField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 20}, "line": {"number": 657}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BTDQHzxuOEAYM78jOAyAQAAAAAAAAACb"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Result org.elasticsearch.action.bulk.TransportShardBulkAction.performOpOnReplica(org.elasticsearch.action.DocWriteResponse, org.elasticsearch.action.DocWriteRequest, org.elasticsearch.index.shard.IndexShard)", "offset": 25}, "line": {"number": 603}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMB-t"}} -{"Stackframe": {"function": {"name": "seq_escape"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vCGd3lsIz-VHcGmd-xEM8QAAAAAAAABp"}} -{"Stackframe": {"file": {"name": "IndexWarmer.java"}, "function": {"name": "void org.elasticsearch.index.IndexWarmer.warm(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.index.IndexSettings)", "offset": 14}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "veyrOe2Ye9QKtQm85e4-1QAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.tryApply(org.apache.lucene.index.FrozenBufferedUpdates)", "offset": 2}, "line": {"number": 5569}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nKc55B3__dngRZpQx4dj-gAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "PooledByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.PooledByteBufAllocator.newHeapBuffer(int, int)"}, "line": {"number": 373}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "69yL8deQ8D4yvM0c6kujsgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "StringBuilder.java"}, "function": {"name": "java.lang.StringBuilder java.lang.StringBuilder.append(long)"}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-vBNy6YNq9pF5j5Mm7smkwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 487}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PC7g5B1i9o9S-ujXLSZgkQAAAAAAAAIC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 514}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5vj2qWMYXopIAHMeOOhgxAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "DiscoveryNode.java"}, "function": {"name": "void org.elasticsearch.cluster.node.DiscoveryNode.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 302}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iVWKY6rhVINbnHDGNYqFwQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "DataInput.java"}, "function": {"name": "int org.apache.lucene.store.DataInput.readInt()", "offset": 2}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eH9YIUBLytwrD_b5ToaRPAAAAAAAAACg"}} -{"Stackframe": {"file": {"name": "DisiPriorityQueue.java"}, "function": {"name": "void org.apache.lucene.search.DisiPriorityQueue.downHeap(int)", "offset": 17}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7D9I01It2-2bxvojQpWiIgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "AbstractIterator.java"}, "function": {"name": "java.lang.Object com.carrotsearch.hppc.AbstractIterator.next()"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1tuGWwL6_w4YhNq4ejEUHQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.beforeExecute(java.lang.Thread, java.lang.Runnable)"}, "line": {"number": 1958}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rQHoQu322PXTottWvRIsAQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.SegmentsStats org.elasticsearch.index.shard.IndexShard.segmentStats(boolean, boolean)"}, "line": {"number": 1127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-wnF"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.SubsystemMountpoints"}, "line": {"number": 219}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADH_Gr"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/queue/memqueue/eventloop.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/queue/memqueue.(*bufferingEventLoop).handleACK"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pJhQ33-O5_U6c6eMCtOthAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.xcontent.ConstructingObjectParser$$Lambda$4414.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACrw0Y"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "crypto/tls.(*listener).Close"}, "line": {"number": 1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACETeK"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/malloc.go"}, "function": {"name": "runtime.mapassign_faststr"}, "line": {"number": 1195}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tOnLYqQcEe077mBYB3aqxAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "void org.elasticsearch.cluster.DiffableUtils$ImmutableOpenMapDiff.(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)"}, "line": {"number": 290}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JzR1Che7ZkqwAcPrDIhJHQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.createCompoundFile(org.apache.lucene.util.InfoStream, org.apache.lucene.store.TrackingDirectoryWrapper, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext, org.apache.lucene.util.IOConsumer)"}, "line": {"number": 5730}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACIHr6"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bytes/buffer.go"}, "function": {"name": "bytes.(*Buffer).ReadFrom"}, "line": {"number": 204}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA_pP"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.findRunnable"}, "line": {"number": 2639}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXtc2"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.(*GenericEventConverter).normalizeValue"}, "line": {"number": 247}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hCDtT-9vDXD-e8HuC9915wAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "Channels.java"}, "function": {"name": "void java.nio.channels.Channels.writeFully(java.nio.channels.WritableByteChannel, java.nio.ByteBuffer)", "offset": 8}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtDv"}} -{"Stackframe": {"function": {"name": "do_send_specific"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "McOo9SSCfgqj14t3xDm01gAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "SSLSocketInputRecord.java"}, "function": {"name": "int sun.security.ssl.SSLSocketInputRecord.read(java.io.InputStream, byte[], int, int)", "offset": 2}, "line": {"number": 457}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pY2MvdN80J-OPBSDYZs_8gAAAAAAAABS"}} -{"Stackframe": {"file": {"name": "Netty4HttpRequestHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpRequestHandler.channelRead0(io.netty.channel.ChannelHandlerContext, org.elasticsearch.http.HttpPipelinedRequest)", "offset": 5}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7sjdM8tHLt2PY9MFMGkKvAAAAAAAAABT"}} -{"Stackframe": {"file": {"name": "NativeFSLockFactory.java"}, "function": {"name": "void org.apache.lucene.store.NativeFSLockFactory$NativeFSLock.ensureValid()", "offset": 13}, "line": {"number": 169}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Zju6rAGbAtHQitND_873BgAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter$IndexWriterMergeSource.merge(org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 1}, "line": {"number": 5920}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8NDDGpC6h_glZsYGhl3bbQAAAAAAAACq"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorize(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 22}, "line": {"number": 192}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wD7qCDk3lqH0hpTFDQk1YQAAAAAAAABB"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readMapEntries(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier, java.util.Map)", "offset": 5}, "line": {"number": 316}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAAQ3f"}} -{"Stackframe": {"file": {"name": "runtime/map.go"}, "function": {"name": "runtime.mapiterinit"}, "line": {"number": 822}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dVre-yWU3wOgyoQuLjZhuwAAAAAAAADH"}} -{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "java.lang.Runnable org.apache.lucene.util.bkd.BKDWriter.merge(org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, java.util.List, java.util.List)", "offset": 26}, "line": {"number": 506}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALAzx"}} -{"Stackframe": {"function": {"name": "mem_cgroup_try_charge_delay"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXF_0"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/gopkg.in/yaml.v2@v2.3.0/parserc.go"}, "function": {"name": "gopkg.in/yaml%2ev2.yaml_parser_parse"}, "line": {"number": 72}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VyOLA7gcQbLBF83xaM4GaAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7mYeFjFR9Yoe2nMw0EFMCQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.resolveIndexNames(org.elasticsearch.transport.TransportRequest, org.elasticsearch.cluster.metadata.Metadata, java.util.List, org.elasticsearch.action.ActionListener)"}, "line": {"number": 566}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o3vzfAt4odMDYmk4_A3rWQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.lambda$acquireReplicaOperationPermit$26(java.lang.String, java.lang.Object, org.elasticsearch.action.ActionListener)"}, "line": {"number": 3164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChWmo"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/slice.go"}, "function": {"name": "runtime.growslice"}, "line": {"number": 203}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gb6St-WZOjchnj7GWUpEkAAAAAAAAABa"}} -{"Stackframe": {"file": {"name": "ClientKeyExchange.java"}, "function": {"name": "byte[] sun.security.ssl.ClientKeyExchange$ClientKeyExchangeProducer.produce(sun.security.ssl.ConnectionContext, sun.security.ssl.SSLHandshake$HandshakeMessage)", "offset": 8}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "T6UGgcQ3__wRtVrr_rk05wAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "SearchInputFactory.java"}, "function": {"name": "org.elasticsearch.xpack.core.watcher.input.Input org.elasticsearch.xpack.watcher.input.search.SearchInputFactory.parseInput(java.lang.String, org.elasticsearch.xcontent.XContentParser)"}, "line": {"number": 20}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_LS"}} -{"Stackframe": {"function": {"name": "__do_page_fault"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WmW-xg6zZWXaaoD7z4m3qwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mO8Ep2yh8naX77AaM6OoawAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.action.support.TransportAction.execute(org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 8}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EfKJGuBgKIxolHX_eDBcXQAAAAAAAADA"}} -{"Stackframe": {"file": {"name": "ECDHClientKeyExchange.java"}, "function": {"name": "byte[] sun.security.ssl.ECDHClientKeyExchange$ECDHEClientKeyExchangeProducer.produce(sun.security.ssl.ConnectionContext, sun.security.ssl.SSLHandshake$HandshakeMessage)", "offset": 40}, "line": {"number": 416}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kpBi8LFR3RTjSJqFuljOuQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Deflater.java"}, "function": {"name": "long java.util.zip.Deflater.deflateBytesBytes(long, byte[], int, int, byte[], int, int, int, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7lQYb7WO824SCyaFg6KrvgAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "boolean com.carrotsearch.hppc.ObjectObjectHashMap.equalElements(com.carrotsearch.hppc.ObjectObjectHashMap)", "offset": 4}, "line": {"number": 609}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKcPa"}} -{"Stackframe": {"function": {"name": "__ksize"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4qy1OhHC2klcRs4XgL9D7QAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "TermsHashPerField.java"}, "function": {"name": "void org.apache.lucene.index.TermsHashPerField.add(org.apache.lucene.util.BytesRef, int)", "offset": 4}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChIgl"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.entersyscallblock"}, "line": {"number": 3698}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALp37"}} -{"Stackframe": {"function": {"name": "do_unlinkat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CrlW_hPmVEABk0TgZmUnuQAAAAAAAAGj"}} -{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.executeNextPhase(org.elasticsearch.action.search.SearchPhase, org.elasticsearch.action.search.SearchPhase)", "offset": 40}, "line": {"number": 418}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eAxdHY-4DbDT_cuHjXXw_gAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult io.netty.handler.ssl.SslHandler$SslEngineType$3.unwrap(io.netty.handler.ssl.SslHandler, io.netty.buffer.ByteBuf, int, io.netty.buffer.ByteBuf)", "offset": 3}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.refresh(java.lang.String, org.elasticsearch.index.engine.Engine$SearcherScope, boolean)", "offset": 12}, "line": {"number": 1685}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA8Dv"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.ready"}, "line": {"number": 861}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Ei"}} -{"Stackframe": {"function": {"name": "netlink_dump"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gDav7mSa1H0kLuPzayJt0QAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "AbstractAsyncTask.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractAsyncTask.run()", "offset": 21}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m-JqTOPsI6f7Ul_-cxfp2AAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$1.doRun()"}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jCOJVbTIbfgz_c_uOqkTuQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "NormsConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.NormsConsumer.mergeNormsField(org.apache.lucene.index.FieldInfo, org.apache.lucene.index.MergeState)"}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KeBP9AZq-WJuSjnOYvnw5wAAAAAAAABQ"}} -{"Stackframe": {"file": {"name": "SegmentTermsEnum.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.blocktree.SegmentTermsEnum.(org.apache.lucene.codecs.lucene90.blocktree.FieldReader)", "offset": 30}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IcdeXxipoRVqav0jM_5DLQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.decRef(java.lang.Object)"}, "line": {"number": 341}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rYhA0b-9yMkVsX5xvflSrAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "void org.elasticsearch.common.settings.Settings$Builder.(org.elasticsearch.common.settings.Settings$1)"}, "line": {"number": 741}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hSe7ADGJd4Crz1ii7b3EbAAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "DocumentsWriterFlushQueue.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriterFlushQueue.innerPurge(org.apache.lucene.util.IOConsumer)", "offset": 16}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nG9wLCiLPO8YY97L1OXEbAAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "IndexTemplateRegistry.java"}, "function": {"name": "void org.elasticsearch.xpack.core.template.IndexTemplateRegistry.addIndexLifecyclePoliciesIfMissing(org.elasticsearch.cluster.ClusterState)", "offset": 3}, "line": {"number": 209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Q0LtmM9f4n5HWy4lj1NqnwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction$$Lambda$4988+0x00000008020bc830.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_OOeQuiXtvgynmE43QMbEAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "FileDispatcherImpl.java"}, "function": {"name": "int sun.nio.ch.FileDispatcherImpl.force0(java.io.FileDescriptor, boolean)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYK2"}} -{"Stackframe": {"function": {"name": "clear_page_erms"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C-NMw9vE7-rFK10EWQYO_wAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.authorizeRequest(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$resolveAuthorizationInfo$1(org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.permission.Role)", "offset": 5}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_5NM"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/file_integrity/metricset.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/file_integrity.(*MetricSet).Run"}, "line": {"number": 130}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXapk"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/tracer.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.(*Tracer).monitorHashToTraceMap"}, "line": {"number": 947}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "q5-VNNWJnEe4GvJK3_qvJwAAAAAAAADF"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser._parseName(int)", "offset": 32}, "line": {"number": 1703}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rAByv-GRtkxE8yHpYMsDeQAAAAAAAACW"}} -{"Stackframe": {"file": {"name": "AbstractInternalTerms.java"}, "function": {"name": "org.elasticsearch.search.aggregations.bucket.terms.AbstractInternalTerms$AbstractTermsBucket org.elasticsearch.search.aggregations.bucket.terms.AbstractInternalTerms.reduceBucket(java.util.List, org.elasticsearch.search.aggregations.AggregationReduceContext)", "offset": 19}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gyVw_U5FOQ18KFg79gJcQQAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "void org.elasticsearch.tracing.apm.APMTracer.stopTrace(java.lang.String)", "offset": 3}, "line": {"number": 355}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eXimxJw4055xWDImg8DzoQAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "SelectorImpl.java"}, "function": {"name": "int sun.nio.ch.SelectorImpl.lockAndDoSelect(java.util.function.Consumer, long)", "offset": 7}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5piy223KGYDAFqOxbMZxAgAAAAAAAALz"}} -{"Stackframe": {"file": {"name": "ECDHServerKeyExchange.java"}, "function": {"name": "void sun.security.ssl.ECDHServerKeyExchange$ECDHServerKeyExchangeMessage.(sun.security.ssl.HandshakeContext, java.nio.ByteBuffer)", "offset": 125}, "line": {"number": 313}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vOoArOQsiI-woapVIk9zYgAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "long org.elasticsearch.index.translog.Translog.findEarliestLastModifiedAge(long, java.lang.Iterable, org.elasticsearch.index.translog.TranslogWriter)", "offset": 4}, "line": {"number": 460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0LGXmFocz46kL18OXWxszwAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "InflaterInputStream.java"}, "function": {"name": "int java.util.zip.InflaterInputStream.read(byte[], int, int)", "offset": 10}, "line": {"number": 152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3h3xcA1CjbBUsMTV4AM4_QAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Util.java"}, "function": {"name": "javax.management.ObjectName sun.management.Util.newObjectName(java.lang.String, java.lang.String)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5Sd1lDXLKOOMpS2BYBot_gAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "OrdinalMap.java"}, "function": {"name": "long org.apache.lucene.index.OrdinalMap$2.get(long)"}, "line": {"number": 346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M-sXhvfna68VyqP_ipf--wAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 3}, "line": {"number": 232}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yH_ohM36PxcsspBj9HiisAAAAAAAAABU"}} -{"Stackframe": {"file": {"name": "ReaderPool.java"}, "function": {"name": "boolean org.apache.lucene.index.ReaderPool.writeAllDocValuesUpdates()", "offset": 8}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VhUIBMnDjpGauL-PhicCqgAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "ResourceWatcherService.java"}, "function": {"name": "void org.elasticsearch.watcher.ResourceWatcherService$ResourceMonitor.run()", "offset": 2}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OfiLOYlq94TuMsZLLGufMwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$1.onResponse(java.lang.Object)"}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CsLX3bRds6mXA7wt5jzrFwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "LeaderChecker.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.LeaderChecker$CheckScheduler$3.run()"}, "line": {"number": 381}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XlbiXkr6-Uo-2NyXQ7Mp2wAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap.getNode(int, java.lang.Object)", "offset": 3}, "line": {"number": 573}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dB8rpvXeU-U7j8zoRqc_lgAAAAAAAAG1"}} -{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 49}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nnUdNj2uBRgH8hkAFjfx5gAAAAAAAABK"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap.forEach(java.util.function.BiConsumer)", "offset": 6}, "line": {"number": 1421}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Pwt7pP-aI82aWD0sQr02awAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Lucene90PostingsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90PostingsWriter.startDoc(int, int)"}, "line": {"number": 215}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2DhRBXrBsPziUW_wAGlaqQAAAAAAAACD"}} -{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.nio.channels.FileChannel sun.nio.fs.UnixChannelFactory.newFileChannel(int, sun.nio.fs.UnixPath, java.lang.String, java.util.Set, int)", "offset": 18}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACjCM6"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/sys_linux.go"}, "function": {"name": "os.hostname"}, "line": {"number": 12}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "p2sMGETgbECWKni3JXQKzgAAAAAAAACQ"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.innerParseObject(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper)", "offset": 20}, "line": {"number": 321}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADHX0k"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/actions/drop_fields.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/actions.(*dropFields).Run"}, "line": {"number": 71}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiGo2"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/sock_cloexec_linux.go"}, "function": {"name": "syscall.cloexecSocket"}, "line": {"number": 8}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADHmXq"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/pipeline/output.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/pipeline.(*clientWorker).run"}, "line": {"number": 105}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Vru4hpAw_7_usxGosAlYKQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateAppliers(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.common.StopWatch)"}, "line": {"number": 489}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bjYv_loUJfP4bAxHmRpfBQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.bulk.TransportShardBulkAction$$Lambda$7178+0x0000000801e9b520.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZhtNJYoOwm655zArM3sIngAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()", "offset": 3}, "line": {"number": 921}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgvL-"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mheap.go"}, "function": {"name": "runtime.(*mheap).freeSpanLocked"}, "line": {"number": 1488}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7RFhYe_NpS241I1rFVDmNAAAAAAAAADf"}} -{"Stackframe": {"file": {"name": "SortedSetDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedSetDocValuesWriter.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.DocValuesConsumer)", "offset": 30}, "line": {"number": 199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tmXftvn8hrcleDLJfptXeAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.deleteNewFiles(java.util.Collection)"}, "line": {"number": 5761}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6sFIukgY7ho7yax5BMPJNQAAAAAAAABf"}} -{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "void org.elasticsearch.search.query.QueryPhase.execute(org.elasticsearch.search.internal.SearchContext)", "offset": 16}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk63z"}} -{"Stackframe": {"function": {"name": "netlink_unicast"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LfFK_IF6-0ZmYbxI38JwJgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.get(long)"}, "line": {"number": 96}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1z71Un1VHSd46-saNDpLAAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.AbstractChannel.write(java.lang.Object)"}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADB6Qh"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/outputs/backoff.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/outputs.(*backoffClient).Test"}, "line": {"number": 73}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WBVMcdZBjWrypfo7wLwFQAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4TcpChannel$$Lambda$4747.operationComplete(io.netty.util.concurrent.Future)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zyYGVRP_YB-nnwhjpkxemgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "InputStream.java"}, "function": {"name": "int java.io.InputStream.read(byte[])"}, "line": {"number": 218}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QnopTe1pxTR1kVhVN4qn2QAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.IndexWriter.lambda$getReader$0(long, java.util.Map, org.apache.lucene.index.SegmentCommitInfo)", "offset": 3}, "line": {"number": 571}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R8_MBJLaIg47PaVKlvzT-wAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "java.lang.Object org.elasticsearch.transport.TransportService$UnregisterChildTransportResponseHandler.read(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 1631}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Zj5QB5uhPrJNwjVP12ZBowAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "AbstractLogger.java"}, "function": {"name": "void org.apache.logging.log4j.spi.AbstractLogger.tryLogMessage(java.lang.String, java.lang.StackTraceElement, org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message, java.lang.Throwable)"}, "line": {"number": 2205}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1HdQtQPIHHUB1Kmk0mwvJgAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "ThreadLocal.java"}, "function": {"name": "java.lang.Object java.lang.ThreadLocal.setInitialValue(java.lang.Thread)", "offset": 4}, "line": {"number": 230}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXVjk"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/events.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.(*Tracer).processPIDEvents"}, "line": {"number": 152}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4BHyios_sf5mi1p4OqQ41gAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.lang.Object java.util.Collections$SynchronizedMap.get(java.lang.Object)"}, "line": {"number": 2672}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nuo_TPMaY49kAwBo7E4YSAAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "long org.elasticsearch.index.store.ByteSizeCachingDirectory.estimateSizeInBytes(org.apache.lucene.store.Directory)", "offset": 4}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3bzfPK0NZtH4PhiksXncvgAAAAAAAACO"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.extractToken(java.util.function.Consumer)", "offset": 20}, "line": {"number": 426}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SVYBVG1fCfTODpNzLfPxlQAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.lambda$handleRequest$0(java.lang.String, org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient, org.elasticsearch.xpack.core.security.authc.support.SecondaryAuthentication)", "offset": 4}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uVG7cx1nxFFek80YurByWQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "FilteringTokenFilter.java"}, "function": {"name": "boolean org.apache.lucene.analysis.FilteringTokenFilter.incrementToken()", "offset": 1}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oqFEu_d-dr_U6eLuARTQOQAAAAAAAABk"}} -{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendRequest(org.elasticsearch.cluster.node.DiscoveryNode, org.elasticsearch.transport.TcpChannel, long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.Version, org.elasticsearch.transport.Compression$Scheme, boolean)", "offset": 14}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RQ20oTZ6pwni6paND2updwAAAAAAAABb"}} -{"Stackframe": {"file": {"name": "DefaultTransformer.java"}, "function": {"name": "com.typesafe.config.impl.AbstractConfigValue com.typesafe.config.impl.DefaultTransformer.transform(com.typesafe.config.impl.AbstractConfigValue, com.typesafe.config.ConfigValueType)", "offset": 11}, "line": {"number": 32}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sH-naZGGlL1gvozk6SwjQQAAAAAAAAB0"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.processDocument()", "offset": 24}, "line": {"number": 414}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Z80ToqoZC1OOBoR__NmsnwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.IndexWriter$1$$Lambda$6004+0x0000000802345330.process(org.apache.lucene.index.IndexWriter)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_WBW"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/auditd/audit_linux.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/auditd.buildMetricbeatEvent"}, "line": {"number": 550}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00D"}} -{"Stackframe": {"function": {"name": "schedule_hrtimeout_range_clock"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7z_aEEIbY0SHAlNQDTWPQwAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "RSACore.java"}, "function": {"name": "byte[] sun.security.rsa.RSACore.rsa(byte[], java.security.interfaces.RSAPublicKey)"}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N7oX4z7s3z58fgItwqnPUwAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "DocumentsWriterFlushQueue.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriterFlushQueue.tryPurge(org.apache.lucene.util.IOConsumer)", "offset": 3}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "p1NpuNTkYTtkxyGbe8Fr4AAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "boolean io.netty.util.concurrent.DefaultPromise.setSuccess0(java.lang.Object)"}, "line": {"number": 605}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE79p"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.mstart1"}, "line": {"number": 1172}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vxAO4ozw0ZRvb8q4djSlogAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "ApiKeyService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.ApiKeyService.authenticateWithApiKeyIfPresent(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.action.ActionListener)", "offset": 21}, "line": {"number": 322}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YHvoCxdR4GM-ot1OUIn44QAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.done(boolean)", "offset": 1}, "line": {"number": 98}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2KV_VaafQZuYC-E-4iUNYwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "UnicodeUtil.java"}, "function": {"name": "int org.apache.lucene.util.UnicodeUtil.UTF16toUTF8(java.lang.CharSequence, int, int, byte[], int)"}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nxv9fnyzQgRP5y-sCtMEGwAAAAAAAAEg"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 35}, "line": {"number": 663}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qnkrTiN5YCts6ND7O0BX2QAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "AbstractNamedDiffable.java"}, "function": {"name": "void org.elasticsearch.cluster.AbstractNamedDiffable$CompleteNamedDiff.(java.lang.Class, java.lang.String, org.elasticsearch.common.io.stream.StreamInput)", "offset": 2}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvMr"}} -{"Stackframe": {"function": {"name": "hrtimer_start_range_ns"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.merge(org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 12}, "line": {"number": 4363}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i_JW0SMBS0hXEJxPvmBaaAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SingletonSortedNumericDocValues.java"}, "function": {"name": "int org.apache.lucene.index.SingletonSortedNumericDocValues.nextDoc()"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LO0kqCJ5sLnPx_SwGJYFEQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.channels.SeekableByteChannel sun.nio.fs.UnixFileSystemProvider.newByteChannel(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])", "offset": 4}, "line": {"number": 217}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAI-JN"}} -{"Stackframe": {"function": {"name": "__next_zones_zonelist"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fiNry6aywxk33PR7ZSinSAAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$3(org.elasticsearch.action.support.ActionFilterChain, org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener, java.lang.Void)"}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KU_l7oGL7N35bnBXHoHVpAAAAAAAAAB3"}} -{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.lambda$consumeToken$1(org.elasticsearch.xpack.core.security.authc.Realm, org.elasticsearch.xpack.core.security.authc.AuthenticationToken, java.util.concurrent.atomic.AtomicReference, java.util.concurrent.atomic.AtomicReference, long, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.authc.Authenticator$Context, java.util.Map, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 15}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UM3h48-oBMi00mRAqhB4IAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.implDelete(java.nio.file.Path, boolean)", "offset": 1}, "line": {"number": 226}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mjTPXIM8UpZjZn93sb0tAgAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "boolean org.elasticsearch.common.settings.Setting.isSecure(org.elasticsearch.common.settings.Settings)", "offset": 1}, "line": {"number": 341}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jydH41zj5Xx4jS3ZDDIhSgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SSLSocketInputRecord.java"}, "function": {"name": "int sun.security.ssl.SSLSocketInputRecord.read(java.io.InputStream, byte[], int, int)"}, "line": {"number": 477}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Tsx0vqyY9P-yze5xYzq4cQAAAAAAAAW_"}} -{"Stackframe": {"file": {"name": "BooleanQuery.java"}, "function": {"name": "org.apache.lucene.search.Query org.apache.lucene.search.BooleanQuery.rewrite(org.apache.lucene.index.IndexReader)", "offset": 166}, "line": {"number": 402}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WZyJLjGK3Rrc56nHtXuAzQAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "FieldCapabilitiesIndexResponse.java"}, "function": {"name": "void org.elasticsearch.action.fieldcaps.FieldCapabilitiesIndexResponse$GroupByMappingHash.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 2}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jkv3Ukz-2gwhoW8LOpekdAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "GetResult.java"}, "function": {"name": "void org.elasticsearch.index.get.GetResult.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBGg"}} -{"Stackframe": {"function": {"name": "mark_wake_futex"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LH5Rq2KMtk8z3fPDJ8fY-QAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "PathParser.java"}, "function": {"name": "com.typesafe.config.impl.Path com.typesafe.config.impl.PathParser.speculativeFastParsePath(java.lang.String)"}, "line": {"number": 275}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-r9PdXX1mVfrKM4cjx98VQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nQWGdRxvqVjwlLmQWH1PhwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "FileDispatcherImpl.java"}, "function": {"name": "int sun.nio.ch.FileDispatcherImpl.write(java.io.FileDescriptor, long, int)"}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VwaGRjsI3iJyn8klEZc0AgAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "StreamSpliterators.java"}, "function": {"name": "boolean java.util.stream.StreamSpliterators$AbstractWrappingSpliterator.fillBuffer()", "offset": 1}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rgAjIQySCix3y3Kbq5dkvwAAAAAAAABl"}} -{"Stackframe": {"file": {"name": "NIOFSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.NIOFSDirectory$NIOFSIndexInput.readInternal(java.nio.ByteBuffer)", "offset": 12}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4ZG6-YGelmJ-HvYGGP11fAAAAAAAAABa"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.writeAuthToContext(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)", "offset": 11}, "line": {"number": 346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFlT5"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.markroot.func1"}, "line": {"number": 237}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC8k6-"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-structform@v0.0.9/gotype/fold.go"}, "function": {"name": "github.com/elastic/go-structform/gotype.getFoldConvert"}, "line": {"number": 141}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_Ire-VQUS1VTfaZnl01nEAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ZipFile.java"}, "function": {"name": "int java.util.zip.ZipFile$Source.getEntryPos(byte[], boolean)"}, "line": {"number": 1490}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANbNN"}} -{"Stackframe": {"function": {"name": "iomap_file_buffered_write"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorize$1(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo)", "offset": 1}, "line": {"number": 199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLl-Z"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).object"}, "line": {"number": 807}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMbOk"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/shirou/gopsutil@v3.20.12+incompatible/net/net_linux.go"}, "function": {"name": "github.com/shirou/gopsutil/net.getProcInodes"}, "line": {"number": 578}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxEFG"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/host_linux.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.(*reader).kernelVersion"}, "line": {"number": 207}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK"}} -{"Stackframe": {"function": {"name": "__vfs_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KpITysyc01IYxgnwc53UiQAAAAAAAACl"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.writePoints(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)", "offset": 17}, "line": {"number": 302}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3emR3wAczdneyIcsgLKFpQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction$$Lambda$7447+0x00000008025370a0.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACH_OH"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/print.go"}, "function": {"name": "fmt.(*pp).doPrintf"}, "line": {"number": 1031}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HhIaqq60njiI-TSR6IpvaAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "MultiLevelSkipListReader.java"}, "function": {"name": "int org.apache.lucene.codecs.MultiLevelSkipListReader.skipTo(int)"}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALmu4"}} -{"Stackframe": {"function": {"name": "path_openat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Hyraq5uNnLhexcfH6jeoJQAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "MonotonicLongValues.java"}, "function": {"name": "long org.apache.lucene.util.packed.MonotonicLongValues.get(int, int)"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R8694xCVhTAWRd-apeUFDAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.startObject(java.lang.String)"}, "line": {"number": 333}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IYyFbgqASogbSUNUuP6bUwAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "CloseableHttpClient.java"}, "function": {"name": "org.apache.http.client.methods.CloseableHttpResponse org.apache.http.impl.client.CloseableHttpClient.execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.protocol.HttpContext)", "offset": 1}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f_rIvCQMW5oayMPHCj4aUgAAAAAAAAB8"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "int java.io.FilePermission.containsPath(java.nio.file.Path, java.nio.file.Path)", "offset": 38}, "line": {"number": 740}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bLOY0QAUT1PFyS4m6DuvzQAAAAAAAADN"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$1.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 45}, "line": {"number": 137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YuFRqUWC2dt608XUwtEIRQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.buildRoleFromRoleReference(org.elasticsearch.xpack.core.security.authz.store.RoleReference, org.elasticsearch.action.ActionListener)"}, "line": {"number": 249}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Kqmd4_qSYjz2y1UHS09p3wAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelReadComplete(io.netty.channel.AbstractChannelHandlerContext)", "offset": 2}, "line": {"number": 463}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAARPAS"}} -{"Stackframe": {"function": {"name": "security_file_open"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cn_0Dt8F1JGwazqn6MVOnAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "AbstractEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.AbstractEventExecutor.safeExecute(java.lang.Runnable)"}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgzwT"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mpallocbits.go"}, "function": {"name": "runtime.(*pageBits).set"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZoIJ9wmRjuVv79Zo3eRnMAAAAAAAAAB2"}} -{"Stackframe": {"file": {"name": "Lucene80NormsConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80NormsConsumer.writeValues(org.apache.lucene.index.NumericDocValues, int, org.apache.lucene.store.IndexOutput)"}, "line": {"number": 145}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKQhJ"}} -{"Stackframe": {"function": {"name": "alloc_pages_current"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7mqPc5ch4cFcQJn3b5WHKQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "FileDescriptor.java"}, "function": {"name": "void java.io.FileDescriptor.close()", "offset": 1}, "line": {"number": 297}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a9xJ5FQfUEQO7I4aLnTqGgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ChannelInputStream.java"}, "function": {"name": "int sun.nio.ch.ChannelInputStream.read(java.nio.ByteBuffer)"}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9LmRws9vwhydmyx1d6VkywAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "DateTimeFieldType.java"}, "function": {"name": "org.joda.time.DateTimeField org.joda.time.DateTimeFieldType$StandardDateTimeFieldType.getField(org.joda.time.Chronology)"}, "line": {"number": 492}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACHfLp"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/reflect/value.go"}, "function": {"name": "reflect.Value.MapIndex"}, "line": {"number": 1196}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAACaTW"}} -{"Stackframe": {"function": {"name": "xfsaild"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ddiXJR5BwRqvq-FjPjsVhQAAAAAAAACV"}} -{"Stackframe": {"file": {"name": "InboundAggregator.java"}, "function": {"name": "org.elasticsearch.transport.InboundMessage org.elasticsearch.transport.InboundAggregator.finishAggregation()", "offset": 23}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EXm1hlIrQc2WIKO4W87lDAAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "FileChannel.java"}, "function": {"name": "java.nio.channels.FileChannel java.nio.channels.FileChannel.open(java.nio.file.Path, java.nio.file.OpenOption[])", "offset": 6}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "36WCeR5NbgRZnRrGA9E9SgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "BaseRestHandler.java"}, "function": {"name": "void org.elasticsearch.rest.BaseRestHandler.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient)", "offset": 5}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2H_k10YmXOqVPwF2TEKeFgAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "FieldInfo.java"}, "function": {"name": "void org.apache.lucene.index.FieldInfo.(java.lang.String, int, boolean, boolean, boolean, org.apache.lucene.index.IndexOptions, org.apache.lucene.index.DocValuesType, long, java.util.Map, int, int, int, int, org.apache.lucene.index.VectorEncoding, org.apache.lucene.index.VectorSimilarityFunction, boolean)", "offset": 55}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEM5T"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/malloc.go"}, "function": {"name": "runtime.mallocgc"}, "line": {"number": 1061}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nIDAAgSWIWbaOw5PSvnTfQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ActionListenerResponseHandler.java"}, "function": {"name": "void org.elasticsearch.action.ActionListenerResponseHandler.handleResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AkiiW-5yqxly9YBXWMYPFwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$4869.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MrX9RrZV2hawszlQLpBC4wAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object no.found.runner.allocation.common.probe.InstanceProbe$$Lambda$3529.apply()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_X72"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/auditd/audit_linux.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/auditd.addUser"}, "line": {"number": 740}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0wmhgaiG_YNdcri9cpVpogAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "RoleReferenceIntersection.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authz.store.RoleReferenceIntersection.lambda$buildRole$1(java.util.function.BiConsumer, org.elasticsearch.action.support.GroupedActionListener, org.elasticsearch.xpack.core.security.authz.store.RoleReference)"}, "line": {"number": 50}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1DL81KYIuhFbaCdMgmm0VgAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.stat(sun.nio.fs.UnixPath, sun.nio.fs.UnixFileAttributes)", "offset": 2}, "line": {"number": 298}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZNIMXBN7NKTXUfXb93okMgAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "AbstractNioByteChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read()", "offset": 1}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 2}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEPAT"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map.go"}, "function": {"name": "runtime.mapassign"}, "line": {"number": 195}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-JAdXc6ZieAkMq7GDln2EwAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.StandardDirectoryReader.doOpenIfChanged(org.apache.lucene.index.IndexCommit)", "offset": 5}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFgh"}} -{"Stackframe": {"function": {"name": "smp_call_function_single"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iynY3Vpl2yeKIqRo2Ld9YAAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.write(byte[], int, int)", "offset": 9}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F-UVz7qWVUzScRv1FhkbzQAAAAAAAABu"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 10}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DXStuM9FGoRVIzn6iyb_SQAAAAAAAABm"}} -{"Stackframe": {"file": {"name": "FileSystemProvider.java"}, "function": {"name": "java.io.OutputStream java.nio.file.spi.FileSystemProvider.newOutputStream(java.nio.file.Path, java.nio.file.OpenOption[])", "offset": 13}, "line": {"number": 478}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1t24RQWJoO3BXaJLZVT8fwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "RoutingNodes.java"}, "function": {"name": "void org.elasticsearch.cluster.routing.RoutingNodes.(org.elasticsearch.cluster.ClusterState)"}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.handleReplicaRequest(org.elasticsearch.action.support.replication.TransportReplicationAction$ConcreteReplicaRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 7}, "line": {"number": 615}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZbvmFtHvqv74jokq3XvBkgAAAAAAAACS"}} -{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.bytes.BytesReference, boolean, org.elasticsearch.xcontent.XContentType, java.util.Set, java.util.Set)", "offset": 15}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC--IH"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/process/process.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/process.(*Stats).GetOne"}, "line": {"number": 501}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "To5h_VPG74jZVr_rPWhSXwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "org.elasticsearch.index.mapper.Mapper org.elasticsearch.index.mapper.DocumentParser.getLeafMapper(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, java.lang.String[])"}, "line": {"number": 971}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FJIqUFyYQ3Kah4wvUZEsEwAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "ActionRequestBuilder.java"}, "function": {"name": "void org.elasticsearch.action.ActionRequestBuilder.execute(org.elasticsearch.action.ActionListener)"}, "line": {"number": 59}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACoA7I"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/pkg/errors@v0.9.1/errors.go"}, "function": {"name": "github.com/pkg/errors.(*withMessage).Error"}, "line": {"number": 244}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "31FeSeHaXuz8M6vkrKE20gAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.updateDocument(org.apache.lucene.index.Term, java.lang.Iterable)"}, "line": {"number": 1586}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wElNAN9vgDs3rPZPUryb8wAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$SetFromMap.add(java.lang.Object)"}, "line": {"number": 5654}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "inLOk0HF57VFPnnmdfF_VwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.cluster.coordination.FollowersChecker$$Lambda$4882+0x0000000801fe92b0.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_MDJRvi6Jq1Z52zMjVFvBgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ParentTaskAssigningClient.java"}, "function": {"name": "void org.elasticsearch.client.ParentTaskAssigningClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACL48a"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/stream.go"}, "function": {"name": "encoding/json.(*Decoder).Decode"}, "line": {"number": 63}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7dZbzLINeewhS7u7jNnbxwAAAAAAAABB"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.lambda$getAuthenticatorConsumer$4(java.util.function.Consumer, org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.security.authc.Authenticator, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 7}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "P8XeEpnP5-7OC7qQMco_kQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "PrioritizedEsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.runAndClean(java.lang.Runnable)"}, "line": {"number": 252}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "raFDPXwgmQmDo3hESpMdgQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.CopyBytesSocketChannel.writeToSocketChannel(java.nio.channels.SocketChannel, java.nio.ByteBuffer)"}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MWF-ta49FweBhvwuhsiFKwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "DisjunctionDISIApproximation.java"}, "function": {"name": "int org.apache.lucene.search.DisjunctionDISIApproximation.advance(int)"}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BrUFbWJQXA38LKOgrDwJigAAAAAAAADv"}} -{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 45}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yy3Agye5NCtIdg4CP1bBiQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$$Lambda$6124+0x0000000802373718.close()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CqCFKFquafWxP8MGnvInCwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "org.elasticsearch.transport.TransportResponse org.elasticsearch.transport.TransportService$ContextRestoreResponseHandler.read(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 1462}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(org.elasticsearch.rest.RestRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "soDH8bd2wWpLm2BftvmAngAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.json.JsonXContentGenerator.writeEndObject()"}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABBFS"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.schedule"}, "line": {"number": 3245}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene80.IndexedDISI.nextDoc()"}, "line": {"number": 459}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AYZZP3m0WChzsqrc9vy9qQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.TransportService$$Lambda$4128+0x000000080185a158.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mdk6GXreYf1FfT2SjVM7cgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "HttpsURLConnectionImpl.java"}, "function": {"name": "void sun.net.www.protocol.https.HttpsURLConnectionImpl.connect()"}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAsCt"}} -{"Stackframe": {"function": {"name": "__xen_send_IPI_mask"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fQmBDS59foxFPsSMJZb9xQAAAAAAAAE_"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 319}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BFzsvc2FJJqJ7MOfSIYcgwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "SecondaryAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator.lambda$authenticateAndAttachToContext$2(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.support.SecondaryAuthentication)", "offset": 3}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "osL-AROuaDqXe2LFy29GUwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "long org.elasticsearch.index.store.ByteSizeCachingDirectory.access$200(org.apache.lucene.store.Directory)"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TaNUUQ8ZfJlbsPC7iaqLvwAAAAAAAAFN"}} -{"Stackframe": {"file": {"name": "JvmStats.java"}, "function": {"name": "org.elasticsearch.monitor.jvm.JvmStats org.elasticsearch.monitor.jvm.JvmStats.jvmStats()", "offset": 31}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dc3K4Tj27vRv16izOvZ0OwAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "CharsetEncoder.java"}, "function": {"name": "java.nio.charset.CoderResult java.nio.charset.CharsetEncoder.encode(java.nio.CharBuffer, java.nio.ByteBuffer, boolean)", "offset": 1}, "line": {"number": 567}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b0xTM4MM0lp7PX9t_5EbBwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "AppenderControl.java"}, "function": {"name": "void org.apache.logging.log4j.core.config.AppenderControl.tryCallAppender(org.apache.logging.log4j.core.LogEvent)"}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fNBUTxafk7cWQGRCQErWrwAAAAAAAABi"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.updateChildren()", "offset": 18}, "line": {"number": 246}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "obA_YN1BhcTIsrqf5XOlGQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "SocketAccess.java"}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.s3.SocketAccess.doPrivilegedIOException(java.security.PrivilegedExceptionAction)"}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xHKAjQI4z_QmWS_76dx5rgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.ClusterModule$$Lambda$2484+0x00000008012daec8.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M87JWO6FKSokmgyC0_oEgQAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "void org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction.prepareBulkRequest(long, org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction$ScrollConsumableHitsResponse)", "offset": 7}, "line": {"number": 370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "W6VFNqF9RkHoTx54MZ0wBwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "StringMSBRadixSorter.java"}, "function": {"name": "int org.apache.lucene.util.StringMSBRadixSorter$1.compare(int, int)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2CjidhF2o1l9AQQZ7O2_8wAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.write(org.elasticsearch.common.xcontent.ToXContent, org.elasticsearch.common.blobstore.BlobContainer, java.lang.String, boolean)"}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KSV5zpqX5uS8pJ0jF65uTgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeList(java.util.List)"}, "line": {"number": 1187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DfAhz8euD6ZTnESDBmFe4QAAAAAAAACR"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap$KeySpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 18}, "line": {"number": 1707}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jWxMhVzBeHM3bqEF5ueSZwAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "Lucene90PostingsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90PostingsWriter.(org.apache.lucene.index.SegmentWriteState)", "offset": 9}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Lcui3wqgG5J4MV3ON_Xv2gAAAAAAAACl"}} -{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.score(org.apache.lucene.search.LeafCollector, org.apache.lucene.util.Bits, int, int)", "offset": 26}, "line": {"number": 243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-8B3"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/gosigar@v0.14.2/sigar_interface.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/process.getProcEnv"}, "line": {"number": 19}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-hZZ"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/transform/typeconv/typeconv.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common/transform/typeconv.Convert"}, "line": {"number": 126}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s7VKGxcbaRsZOEk0pfn1eQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "EventFD.java"}, "function": {"name": "void sun.nio.ch.EventFD.reset()"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5D7Dq5haAPalBjEP77UscQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.StandardDirectoryReader$$Lambda$7161+0x0000000801e9eb30.close()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wkO70J8PTUJpfPh4iq24QgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.refreshIfNeeded(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)"}, "line": {"number": 361}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAClbII"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/interface_linux.go"}, "function": {"name": "net.interfaceAddrTable"}, "line": {"number": 127}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADkY"}} -{"Stackframe": {"function": {"name": "syscall_trace_enter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9wONEswsASRmLn53bq8pOwAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.writeNorms(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)", "offset": 6}, "line": {"number": 389}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jc_gTRhKuHzYfRRa6SeBIwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "LoggerConfig.java"}, "function": {"name": "void org.apache.logging.log4j.core.config.LoggerConfig.log(org.apache.logging.log4j.core.LogEvent, org.apache.logging.log4j.core.config.LoggerConfig$LoggerConfigPredicate)", "offset": 1}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iJ0SYUZPRIULwpFw894hbwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct.putSingleHeader(java.lang.String, java.lang.Object, java.util.Map)"}, "line": {"number": 701}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACKFbI"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bufio/scan.go"}, "function": {"name": "bufio.(*Scanner).Scan"}, "line": {"number": 214}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lSZa8zsk4QhoSwhXWLlSWwAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "org.apache.lucene.index.FieldInfos org.apache.lucene.index.SegmentReader.initFieldInfos()", "offset": 6}, "line": {"number": 205}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B6QzH7IpuJwFbrtDLFp9JwAAAAAAAADs"}} -{"Stackframe": {"file": {"name": "SortedSetDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedSetDocValuesWriter.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.DocValuesConsumer)", "offset": 35}, "line": {"number": 236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Q4jw5JHGkPC3MdanjDSu0gAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "SecurityContext.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.SecurityContext.executeAsUser(org.elasticsearch.xpack.core.security.user.User, java.util.function.Consumer, org.elasticsearch.Version)", "offset": 3}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADCB9O"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "github.com/elastic/beats/v7/libbeat/conditions.(*Range).Check"}, "line": {"number": 1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "W7ecGdd5UmqqnRTWfHNqsAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ManagementFactory.java"}, "function": {"name": "java.util.stream.Stream java.lang.management.ManagementFactory.lambda$getPlatformMXBeans$3(java.lang.Class, sun.management.spi.PlatformMBeanProvider$PlatformComponent)"}, "line": {"number": 730}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uhX1qfoGgATHLd0SFlL86gAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ByteBufferIndexInput.java"}, "function": {"name": "org.apache.lucene.store.ByteBufferIndexInput org.apache.lucene.store.ByteBufferIndexInput.buildSlice(java.lang.String, long, long)"}, "line": {"number": 439}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-neE"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/blkio.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.readBlkioValues"}, "line": {"number": 258}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgUox"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/stubs.go"}, "function": {"name": "runtime.fastexprand"}, "line": {"number": 134}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Eq50LgqGqKjaa52J2nxgrwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$UnmodifiableCollection$1.hasNext()"}, "line": {"number": 1048}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o5wkfsdfaC5wrA0weqXc-gAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "NodesInfoRequest.java"}, "function": {"name": "java.util.Set org.elasticsearch.action.admin.cluster.node.info.NodesInfoRequest$Metric.allMetrics()"}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_Mj0l5QoylIkj8uQiHBbSgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.doHandleResponse(org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "reibzva0w_a6QPBPCu7Z3QAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "DirectMethodHandle$Holder"}, "function": {"name": "long java.lang.invoke.DirectMethodHandle$Holder.invokeStatic(java.lang.Object, long, java.lang.Object, java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BA250vvzivD0xU5n0tBlVQAAAAAAAACh"}} -{"Stackframe": {"file": {"name": "HttpURLConnection.java"}, "function": {"name": "java.io.OutputStream sun.net.www.protocol.http.HttpURLConnection.getOutputStream0()", "offset": 29}, "line": {"number": 1377}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEgL9"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.scanobject"}, "line": {"number": 1385}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zyzhCrZbqF57B5IigsG_tAAAAAAAAADN"}} -{"Stackframe": {"file": {"name": "DecimalFormatSymbols.java"}, "function": {"name": "void java.text.DecimalFormatSymbols.initialize(java.util.Locale)", "offset": 28}, "line": {"number": 758}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xP8BEtTROcQjINLBdr_0HQAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "void sun.security.ssl.SSLSocketImpl.startHandshake(boolean)", "offset": 18}, "line": {"number": 449}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xAhlVWErYnSgk5BtC2imuwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "RetentionLeaseBackgroundSyncAction.java"}, "function": {"name": "void org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction.shardOperationOnReplica(org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEkfc"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcsweep.go"}, "function": {"name": "runtime.(*mspan).sweep"}, "line": {"number": 532}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ycx3jsOzoddyVXaGAexG9AAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "OneMergeWrappingMergePolicy.java"}, "function": {"name": "org.apache.lucene.index.MergePolicy$MergeSpecification org.apache.lucene.index.OneMergeWrappingMergePolicy.findMerges(org.apache.lucene.index.MergeTrigger, org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WVVfmS8H00wjgsMrGKM8_wAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "NamedDiffableValueSerializer.java"}, "function": {"name": "org.elasticsearch.cluster.Diff org.elasticsearch.cluster.NamedDiffableValueSerializer.readDiff(org.elasticsearch.common.io.stream.StreamInput, java.lang.String)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8Za76x2-HbyUrGFN40BPPQAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "PagedGrowableWriter.java"}, "function": {"name": "org.apache.lucene.util.packed.PackedInts$Mutable org.apache.lucene.util.packed.PagedGrowableWriter.newMutable(int, int)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAD9RFp"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/mb/module/wrapper.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/mb/module.(*Wrapper).Start.func1"}, "line": {"number": 141}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eBd1im1l00HUxw6VyZjyeAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.channelReadComplete(io.netty.channel.ChannelHandlerContext)"}, "line": {"number": 1322}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6lTs6tzqWRzfV1LHX1Np9gAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Lucene90PostingsReader.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene90.Lucene90PostingsReader$BlockDocsEnum.docID()"}, "line": {"number": 440}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gnJwzGqt8VBlxXZgx4dmowAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "void org.elasticsearch.search.internal.ContextIndexSearcher.search(java.util.List, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 1}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "G03owtPMOb_BDAuY6rOWogAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.IndexWriter$1$$Lambda$6004+0x000000080233c598.process(org.apache.lucene.index.IndexWriter)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zXf1O_8jknZjcKGu5cQjJQAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "Netty4HttpRequestHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpRequestHandler.channelRead0(io.netty.channel.ChannelHandlerContext, org.elasticsearch.http.HttpPipelinedRequest)", "offset": 3}, "line": {"number": 31}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9SJbWDmIwLKygKyg6FjqpAAAAAAAAABe"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler.buildDiffAndSerializeStates(org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.node.DiscoveryNodes, boolean, java.util.Map, java.util.Map)", "offset": 10}, "line": {"number": 331}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wzMH_4T8_2TQ5oMMj_87zQAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 61}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAA7vA"}} -{"Stackframe": {"function": {"name": "xfs_dir2_leaf_removename"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "beD_C7F44xTKzF8_Am3s6AAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.access$200(org.elasticsearch.search.SearchService, org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)"}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dQSJSZ8UDwBhKFRr5NGLQAAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "void java.lang.Throwable.()", "offset": 58}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkSBM"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/strings.go"}, "function": {"name": "strings.Fields"}, "line": {"number": 331}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O0su08t7CkXEbxTCeQJRtwAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "TurboFilterList.java"}, "function": {"name": "ch.qos.logback.core.spi.FilterReply ch.qos.logback.classic.spi.TurboFilterList.getTurboFilterChainDecision(org.slf4j.Marker, ch.qos.logback.classic.Logger, ch.qos.logback.classic.Level, java.lang.String, java.lang.Object[], java.lang.Throwable)", "offset": 7}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0eQ"}} -{"Stackframe": {"function": {"name": "d_lookup"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkG-5"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.Fscanf"}, "line": {"number": 142}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApym-"}} -{"Stackframe": {"function": {"name": "mutex_lock"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "q5-VNNWJnEe4GvJK3_qvJwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser._parseName(int)"}, "line": {"number": 1671}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MkPOQzkxpTZfvC1z0rAMgAAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.DocumentsWriter.doFlush(org.apache.lucene.index.DocumentsWriterPerThread)", "offset": 37}, "line": {"number": 493}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACJkVv"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/net.go"}, "function": {"name": "net.(*conn).Read"}, "line": {"number": 182}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IBvpxzq2FCdpwwaru_ISGwAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "MessageDigest.java"}, "function": {"name": "java.security.MessageDigest java.security.MessageDigest.getInstance(java.lang.String)", "offset": 3}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cYJ9nWNm3-qt-5qL0cCZuAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$22.(org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer, org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$SortedEntry, org.apache.lucene.index.NumericDocValues)"}, "line": {"number": 930}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f_rIvCQMW5oayMPHCj4aUgAAAAAAAABN"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "int java.io.FilePermission.containsPath(java.nio.file.Path, java.nio.file.Path)", "offset": 21}, "line": {"number": 723}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KYUKYe5FJokP-mDuLYX4tQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.put(java.lang.Object, java.lang.Object)"}, "line": {"number": 618}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.run()", "offset": 6}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "udgPCGqbKhChfal6WK47OgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.S3BlobContainer.lambda$executeSingleUpload$17(org.elasticsearch.repositories.s3.AmazonS3Reference, com.amazonaws.services.s3.model.PutObjectRequest)"}, "line": {"number": 346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6IAXoYeI62bQppY-qjqJ0AAAAAAAAAJM"}} -{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.executeOneRequest(com.amazonaws.http.AmazonHttpClient$RequestExecutor$ExecOneRequestParams)", "offset": 91}, "line": {"number": 1356}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtH1"}} -{"Stackframe": {"function": {"name": "do_tkill"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADQTpO"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/klauspost/compress@v1.13.6/flate/deflate.go"}, "function": {"name": "github.com/klauspost/compress/flate.NewWriterDict"}, "line": {"number": 760}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ePh-EVmYwcpuvkYfVwI3pAAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.executeSearch(org.elasticsearch.action.search.SearchTask, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.OriginalIndices, java.util.List, java.util.function.BiFunction, org.elasticsearch.cluster.ClusterState, java.util.Map, org.elasticsearch.action.ActionListener, org.elasticsearch.action.search.SearchResponse$Clusters)", "offset": 5}, "line": {"number": 475}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cVCWdIPyBbQitZhcw5plhQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TrackingDirectoryWrapper.java"}, "function": {"name": "void org.apache.lucene.store.TrackingDirectoryWrapper.deleteFile(java.lang.String)"}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "24DpypDxQEzaPhdmYMeiPAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.indices.SystemIndices$$Lambda$6104+0x0000000801c15aa0.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jJ1ozPLEubzrPTK_HIIAngAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "FilterIndexOutput.java"}, "function": {"name": "void org.elasticsearch.common.lucene.store.FilterIndexOutput.close()"}, "line": {"number": 28}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3UhEgz7OpPfEUA0r5eC73QAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "StatsTracker.java"}, "function": {"name": "void org.elasticsearch.transport.StatsTracker.markBytesRead(long)"}, "line": {"number": 22}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tTrifkDB6bwqRgBWJi-QngAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository$$Lambda$5915.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oTSE_oNQnyDobsV2KdmHewAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "java.lang.Object org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction$ScriptApplier.apply(java.lang.Object, java.lang.Object)"}, "line": {"number": 817}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WLOUsm-IsQxvoTcefLktBQAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "java.lang.Object java.util.stream.ReferencePipeline.collect(java.util.stream.Collector)", "offset": 8}, "line": {"number": 682}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h6SWrdSzXfBtMfWpEhL_SQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.LockValidatingDirectoryWrapper.createOutput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_V7O"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/auditd/audit_linux.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/auditd.buildMetricbeatEvent"}, "line": {"number": 541}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAOW7N"}} -{"Stackframe": {"function": {"name": "ext4_sync_file"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "keo_5JSp8b1-B1CFNSlcjwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "LiveVersionMap.java"}, "function": {"name": "void org.elasticsearch.index.engine.LiveVersionMap.pruneTombstones(long, long)"}, "line": {"number": 380}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2UxNT-C0z0jLu_9A1XqURAAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel)"}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RE9XcD6w8sLmd64StWro7AAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.engine.Engine$$Lambda$6967+0x0000000802492a90.close()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiM0o"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.recvmsg"}, "line": {"number": 1568}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7VuKWRyOXWtTMY28mQZqtAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler.lambda$new$0(org.elasticsearch.transport.BytesTransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk7GK"}} -{"Stackframe": {"function": {"name": "netlink_sendmsg"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YUqlosets6-rXKgChfDXoQAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "DefaultBHttpClientConnection.java"}, "function": {"name": "void org.apache.http.impl.DefaultBHttpClientConnection.sendRequestEntity(org.apache.http.HttpEntityEnclosingRequest)", "offset": 7}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "T5MVi_BSLsnWRbdoA3QO6gAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "int org.apache.lucene.index.ReadersAndUpdates$MergedDocValues.nextDoc()", "offset": 6}, "line": {"number": 463}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EhOR7yPQHXO-jH0oh7-CWQAAAAAAAABK"}} -{"Stackframe": {"file": {"name": "Lucene90PostingsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90PostingsReader$BlockDocsEnum.refillDocs()", "offset": 9}, "line": {"number": 455}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANbJX"}} -{"Stackframe": {"function": {"name": "iomap_apply"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZEmTi7arcnnQUqeW8qzKIgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.handleReplicaRequest(org.elasticsearch.action.support.replication.TransportReplicationAction$ConcreteReplicaRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 608}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N8m8CePk-4OpwRMFdL5meQAAAAAAAACq"}} -{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsReader.(org.apache.lucene.index.SegmentReadState)", "offset": 46}, "line": {"number": 329}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NdcMtjPjb-t4Qu-6ZpkmHAAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "void io.netty.util.concurrent.DefaultPromise.notifyListeners()", "offset": 7}, "line": {"number": 491}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DVSkUfLwOzQuwgYi6TvurAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "AbstractCollection.java"}, "function": {"name": "boolean java.util.AbstractCollection.addAll(java.util.Collection)", "offset": 1}, "line": {"number": 335}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WdP0jKvbSW-F3IXqFZzXpQAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$CachingAsyncSupplier.getAsync(org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 1012}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "midOaweFMMarPTWzdmC3NgAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "MergePolicy.java"}, "function": {"name": "boolean org.apache.lucene.index.MergePolicy.useCompoundFile(org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 12}, "line": {"number": 734}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b0AoyduVJ3t1JvB8AtIQXgAAAAAAAAC0"}} -{"Stackframe": {"file": {"name": "JvmInfo.java"}, "function": {"name": "void org.elasticsearch.monitor.jvm.JvmInfo.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 22}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z0TmQagVnHgFdAowAPCojQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "java.lang.Long com.typesafe.config.impl.SimpleConfig.getBytes(java.lang.String)", "offset": 4}, "line": {"number": 289}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 189}, "line": {"number": 190}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "c5-7gdnYLTwkmcP6UpaZTQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ClientScrollableHitSource.java"}, "function": {"name": "void org.elasticsearch.index.reindex.ClientScrollableHitSource.cleanup(java.lang.Runnable)"}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ArHoFYyXVsZt6HAc7EjVzgAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.doAuthenticate(org.elasticsearch.xpack.security.authc.Authenticator$Context, boolean, org.elasticsearch.action.ActionListener)", "offset": 18}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N816FYHTOtc_r-SKnQbFZwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.cluster.node.info.NodeInfo$$Lambda$7475+0x000000080254ccb0.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kyvUYCRKjzRk5yhkSe66CwAAAAAAAABe"}} -{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "java.util.regex.Pattern$CharPredicate java.util.regex.Pattern.bitsOrSingle(java.util.regex.Pattern$BitClass, int)", "offset": 7}, "line": {"number": 2765}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jwkBY0s-EHDmaMTnMHI2lgAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.xcontent.XContent, byte[], int, int, boolean)", "offset": 2}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h8ulXQ0PqCWi8WjndyD3QAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authc.support.BCrypt.encipher(int[], int)"}, "line": {"number": 1430}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp"}} -{"Stackframe": {"function": {"name": "__schedule"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eFaXX7H_gmfoLAN8WX-xDQAAAAAAAACO"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "void sun.nio.ch.FileChannelImpl.implCloseChannel()", "offset": 30}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CSQIcg5qzfHUGZiT4d9R6wAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "FileSystemUtils.java"}, "function": {"name": "java.nio.file.Path[] org.elasticsearch.common.io.FileSystemUtils.files(java.nio.file.Path)"}, "line": {"number": 162}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7avj2SrkwzZsc2-hPiEAHQAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "int java.util.Arrays.hashCode(java.lang.Object[])", "offset": 6}, "line": {"number": 4498}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "egpNbNcxtEqICrqK7IpKIAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "ManagedSelector.java"}, "function": {"name": "void org.eclipse.jetty.io.ManagedSelector.access$2100(org.eclipse.jetty.io.ManagedSelector, java.nio.channels.SelectableChannel, java.nio.channels.SelectionKey)"}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rMNYV5KroKXsOMeuZv5hxgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "JvmGcMonitorService.java"}, "function": {"name": "org.elasticsearch.monitor.jvm.JvmStats org.elasticsearch.monitor.jvm.JvmGcMonitorService$JvmMonitor.jvmStats()"}, "line": {"number": 522}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQO"}} -{"Stackframe": {"function": {"name": "audit_filter_rules.constprop.21"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gfC602LFbKzsHJ9-hYzAWgAAAAAAAAA8"}} -{"Stackframe": {"file": {"name": "ConfigImplUtil.java"}, "function": {"name": "java.lang.String com.typesafe.config.impl.ConfigImplUtil.unicodeTrim(java.lang.String)", "offset": 12}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dVy9F2EzSTySFtvhDROVAQAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "Cache.java"}, "function": {"name": "org.elasticsearch.common.cache.Cache$Entry org.elasticsearch.common.cache.Cache$CacheSegment.get(java.lang.Object, long, java.util.function.Predicate, java.util.function.Consumer)", "offset": 1}, "line": {"number": 211}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA87"}} -{"Stackframe": {"function": {"name": "mangle_path"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O32XyvU5fpn5Sx9ZKKSnYQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$7390+0x00000008025266d0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BE0p8q_mh7enzgEoPVJKBQAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "AbstractQueuedSynchronizer.java"}, "function": {"name": "void java.util.concurrent.locks.AbstractQueuedSynchronizer.signalNext(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node)", "offset": 2}, "line": {"number": 611}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp"}} -{"Stackframe": {"function": {"name": "__x64_sys_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-LiF"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/auparse.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.enrichData"}, "line": {"number": 370}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAFznN"}} -{"Stackframe": {"file": {"name": "github.com/cilium/ebpf@v0.9.1/map.go"}, "function": {"name": "github.com/cilium/ebpf.(*Map).NextKey"}, "line": {"number": 730}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fkbxUTZgljnk71ZMnqJnyAAAAAAAAAH6"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "long[] org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.writeValues(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer, boolean)", "offset": 77}, "line": {"number": 267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACW0py"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/gopkg.in/yaml.v2@v2.3.0/decode.go"}, "function": {"name": "gopkg.in/yaml%2ev2.(*parser).mapping"}, "line": {"number": 216}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PCZtk4AIkgW9G69-tbcb4gAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "RetentionLeaseBackgroundSyncAction.java"}, "function": {"name": "void org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction.shardOperationOnReplica(org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction$Request, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ts8hV4NssS-wnbFO-C_TawAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$6(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationResult)", "offset": 9}, "line": {"number": 398}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oSV0vEfx2f4H442JtkKdLwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "SeedHostsResolver.java"}, "function": {"name": "org.elasticsearch.common.transport.TransportAddress[] org.elasticsearch.discovery.SeedHostsResolver.lambda$resolveHostsLists$0(org.elasticsearch.transport.TransportService, java.lang.String)"}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0tEAP3x_JoFH6wNaGZk0agAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.netty4.CopyBytesSocketChannel.doReadBytes(io.netty.buffer.ByteBuf)", "offset": 4}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-joK"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgcommon/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgcommon.ParseUint"}, "line": {"number": 65}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h-742067SuaCDHLAO41TEQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$2.onResponse(java.lang.Object)"}, "line": {"number": 301}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALnuK"}} -{"Stackframe": {"function": {"name": "path_openat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RuTViGJ9Pf477gXsTgiYyQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Unsafe.java"}, "function": {"name": "void jdk.internal.misc.Unsafe.park(boolean, long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NKoRe12iMWSiZOszytfhXAAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "MMapDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.apache.lucene.store.MMapDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 3}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MvukotDYrkDBhTIXVp6gJQAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "PooledByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.PooledByteBufAllocator.newHeapBuffer(int, int)", "offset": 12}, "line": {"number": 346}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Hkzvs5GEXB5P73bf_lHYLwAAAAAAAABZ"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.IndexingChain$PerField.invert(int, org.apache.lucene.index.IndexableField, boolean)", "offset": 18}, "line": {"number": 1109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGpoo"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/internal/poll/fd_unix.go"}, "function": {"name": "internal/poll.ignoringEINTR"}, "line": {"number": 567}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EI0nZWypt5jjgYB1wTwJeAAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.loadAuthorizedIndices(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 2}, "line": {"number": 476}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACgeR6"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/strings.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/beat.(*Event).GetValue"}, "line": {"number": 445}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ucM-Bj7qlZtPxh65nkVL9gAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.acquireReplicaOperationPermit(long, long, long, org.elasticsearch.action.ActionListener, java.lang.String, java.lang.Object)"}, "line": {"number": 3575}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFmUd"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mwbbuf.go"}, "function": {"name": "runtime.wbBufFlush.func1"}, "line": {"number": 220}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-LH5"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/auparse.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.extractKeyValuePairs"}, "line": {"number": 69}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "omklHAPZnqPNJHwVpvh2vQAAAAAAAACr"}} -{"Stackframe": {"file": {"name": "CoordinationState.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishResponse org.elasticsearch.cluster.coordination.CoordinationState.handlePublishRequest(org.elasticsearch.cluster.coordination.PublishRequest)", "offset": 27}, "line": {"number": 392}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZR"}} -{"Stackframe": {"function": {"name": "audit_filter_syscall.constprop.19"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "64MWmifmKvJOzrzegxyj4wAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "CgroupUtil.java"}, "function": {"name": "java.util.stream.Stream jdk.internal.platform.CgroupUtil.lambda$readFilePrivileged$0(java.nio.file.Path)"}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2twfznQckn-jqIyo_0_zVQAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "ByteBuffersDataOutput.java"}, "function": {"name": "void org.apache.lucene.store.ByteBuffersDataOutput.writeBytes(java.nio.ByteBuffer)", "offset": 4}, "line": {"number": 191}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EFoOI6BMp-b-Y3eJPVq_QQAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "MessageToByteEncoder.java"}, "function": {"name": "void io.netty.handler.codec.MessageToByteEncoder.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 7}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "adI05FeXl-z73o2NJPxYawAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "RestResponseListener.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestResponseListener.processResponse(java.lang.Object)"}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IfyGrmJO4TRdP2mxshA5zwAAAAAAAAB5"}} -{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "void org.apache.lucene.index.SegmentReader.(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.SegmentReader, org.apache.lucene.util.Bits, org.apache.lucene.util.Bits, int, boolean)", "offset": 8}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5D04LWfxRD5YVqvIVReLkwAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.dataformat.smile.SmileParser.getText()", "offset": 6}, "line": {"number": 1051}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgvVd"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mheap.go"}, "function": {"name": "runtime.(*mheap).freeSpanLocked"}, "line": {"number": 1474}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ffH4BrIPq_Gg0Z8uCbD2yQAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "WeakConcurrentProviderImpl.java"}, "function": {"name": "void co.elastic.apm.agent.collections.WeakConcurrentProviderImpl.expungeStaleEntries()", "offset": 1}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tgTcpaw1PHSeu1PntXA3fQAAAAAAAABt"}} -{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.onResponse(java.lang.Object)", "offset": 9}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ttnw8j0HRfVM17mHQNg8LAAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "SettingsFilter.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.SettingsFilter.filterSettings(org.elasticsearch.xcontent.ToXContent$Params, org.elasticsearch.common.settings.Settings)", "offset": 3}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NcpE6adeOVCfvBx4qpjhtwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeCollection(java.util.Collection)"}, "line": {"number": 1180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_wF9139OqoZQK8iwN7oJTAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "RestActionListener.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestActionListener.onResponse(java.lang.Object)", "offset": 1}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YegVEymiG8lw5t7wHfz6hwAAAAAAAAEm"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.io.stream.StreamInput.readString()", "offset": 58}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bUpZ48eu6eiEjFsuaTvsNgAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "IndexOrDocValuesQuery.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.IndexOrDocValuesQuery$1$1.get(long)", "offset": 2}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n15ykTmIo2lUA9RBVij7CgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "boolean org.elasticsearch.index.IndexService$BaseAsyncTask.mustReschedule()"}, "line": {"number": 994}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RSgrZm24iCMR6dfllqWutAAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "Regex.java"}, "function": {"name": "boolean org.elasticsearch.common.regex.Regex.simpleMatch(java.lang.String, java.lang.String, boolean)", "offset": 7}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "STCXCgkpQFsKfqtjMLFMHQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 30}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RIm8jbjeC3SfOmyAcdCaLgAAAAAAAACJ"}} -{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "void java.util.regex.Pattern.compile()", "offset": 25}, "line": {"number": 1768}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C1-BZTtjTU0Wu8oyxUu-uQAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "SSLHandshake.java"}, "function": {"name": "void sun.security.ssl.SSLHandshake.consume(sun.security.ssl.ConnectionContext, java.nio.ByteBuffer)", "offset": 2}, "line": {"number": 392}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CB3cooh_xs9YH9mUphGzWwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.prepareCommit()", "offset": 1}, "line": {"number": 3536}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aUB3uGSQkygVs6dVTTi2DgAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.executeBulk(org.elasticsearch.tasks.Task, org.elasticsearch.action.bulk.BulkRequest, long, org.elasticsearch.action.ActionListener, org.elasticsearch.common.util.concurrent.AtomicArray, java.util.Map)"}, "line": {"number": 636}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sr7KmiDQn3AwPKwUE1w3aQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.lang.Object java.util.Collections$UnmodifiableMap.get(java.lang.Object)"}, "line": {"number": 1470}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HHXa86-DPQH1mDdz3c0zTwAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "ArrayUtil.java"}, "function": {"name": "byte[] org.apache.lucene.util.ArrayUtil.grow(byte[], int)", "offset": 2}, "line": {"number": 353}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HXMKVH0vYlc6MTlUxPh-OgAAAAAAAACp"}} -{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.innerRun()", "offset": 12}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD8cD"}} -{"Stackframe": {"function": {"name": "__raw_callee_save___pv_queued_spin_unlock"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JzR1Che7ZkqwAcPrDIhJHQAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.createCompoundFile(org.apache.lucene.util.InfoStream, org.apache.lucene.store.TrackingDirectoryWrapper, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext, org.apache.lucene.util.IOConsumer)", "offset": 10}, "line": {"number": 5740}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9OSIwt7_UxT7zZoUvqu4WwAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 47}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fxhStAUWZv4f-7WJyivrsgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "FilterClient.java"}, "function": {"name": "void org.elasticsearch.client.FilterClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnKUV"}} -{"Stackframe": {"function": {"name": "unix_stream_sendmsg"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAACHUP"}} -{"Stackframe": {"function": {"name": "xfs_trans_commit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JFIMxFmW_GkD0BYEGdXswQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportUpdateByQueryAction.java"}, "function": {"name": "void org.elasticsearch.index.reindex.TransportUpdateByQueryAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMHx"}} -{"Stackframe": {"function": {"name": "__raw_spin_unlock_irq"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "g2QsAFXTBvNgOoqjaVtcfAAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "boolean java.nio.file.Files.isDirectory(java.nio.file.Path, java.nio.file.LinkOption[])", "offset": 3}, "line": {"number": 2310}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "A-41ReHkKXTbwuqT5HLDpQAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "OutboundMessage.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.transport.OutboundMessage.serialize(org.elasticsearch.common.io.stream.BytesStreamOutput)", "offset": 9}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yaq_ZPVYV8_Z-By5_vQaDgAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "WatcherIndexingListener.java"}, "function": {"name": "void org.elasticsearch.xpack.watcher.WatcherIndexingListener.postIndex(org.elasticsearch.index.shard.ShardId, org.elasticsearch.index.engine.Engine$Index, org.elasticsearch.index.engine.Engine$IndexResult)", "offset": 8}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qGs-5c7rr1dopGxSByMUNAAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "ThreadLocal.java"}, "function": {"name": "java.lang.Object java.lang.ThreadLocal.get(java.lang.Thread)", "offset": 13}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLkDE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/reflect/value.go"}, "function": {"name": "encoding/json.(*decodeState).value"}, "line": {"number": 1095}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pE_XF-eq0tBl0fP7Y7zrSwAAAAAAAADY"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.xfer(java.lang.Object, boolean, int, long)", "offset": 21}, "line": {"number": 684}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8DgYxzl_EXTxjPKMNwP9uAAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.ReadersAndUpdates.getReadOnlyClone(org.apache.lucene.store.IOContext)", "offset": 8}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBtp"}} -{"Stackframe": {"function": {"name": "futex_wake"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YMf1vN4Xj82X8azesbKqWQAAAAAAAAEg"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 35}, "line": {"number": 661}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "v79qGhig8jRBZdnkzM6uZgAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "long org.elasticsearch.common.io.Streams.copy(java.io.InputStream, java.io.OutputStream, byte[])", "offset": 5}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3QxPrhcD9ugSQPryZKe81gAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.close()"}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3CRBOsJXB3LH7TG2Pj7GugAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "PerThreadIDVersionAndSeqNoLookup.java"}, "function": {"name": "int org.elasticsearch.common.lucene.uid.PerThreadIDVersionAndSeqNoLookup.getDocID(org.apache.lucene.util.BytesRef, org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABWeOk"}} -{"Stackframe": {"file": {"name": "encoding/gob/decoder.go"}, "function": {"name": "encoding/gob.(*Decoder).Decode"}, "line": {"number": 202}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LvtElIo88ojEB4JNcfwHbAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.access$000(org.elasticsearch.cluster.service.ClusterApplierService, org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask)"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GOAeLBP6U_Nxv7LKjBKI9gAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "MatchOps.java"}, "function": {"name": "void java.util.stream.MatchOps$1MatchSink.accept(java.lang.Object)"}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bfWTJUKYANwcIsCQIfxvLQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress$Entry.(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.SnapshotsInProgress$1)"}, "line": {"number": 516}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "P_4qycvxHBZREHniLmgHbAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.deleteNewFiles(java.util.Collection)"}, "line": {"number": 5335}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA6d"}} -{"Stackframe": {"function": {"name": "seq_printf"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zdNMqH5FJokP-kpdb9WNRQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.put(java.lang.Object, java.lang.Object)"}, "line": {"number": 610}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnffV"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.indirect"}, "line": {"number": 450}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ev0SJ_PFdgv9NYHa9effJgAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "RestCancellableNodeClient.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestCancellableNodeClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 2}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B_TZlmg-i-MShObdqiYcyAAAAAAAAAK9"}} -{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.readRecord(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 154}, "line": {"number": 691}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFp"}} -{"Stackframe": {"file": {"name": "IndicesAliasesRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.IndicesAliasesRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 55}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VTfbcIJC4j-MNC5M8fX4oQAAAAAAAAGd"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.startCommit(org.apache.lucene.index.SegmentInfos)", "offset": 80}, "line": {"number": 5516}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-THx"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.addFieldsToEventData"}, "line": {"number": 450}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "saQ5ZOut9f2P2MZp-a05OwAAAAAAAACg"}} -{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.getInternal(long)", "offset": 9}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GpOJia9rC5mDpg562282RwAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "UnpooledHeapByteBuf.java"}, "function": {"name": "void io.netty.buffer.UnpooledHeapByteBuf.(io.netty.buffer.ByteBufAllocator, int, int)", "offset": 8}, "line": {"number": 59}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.incomingRequest(org.elasticsearch.http.HttpRequest, org.elasticsearch.http.HttpChannel)", "offset": 3}, "line": {"number": 353}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yJIhq1AV1i5dfSljhhE7KwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.prepareCommit()", "offset": 1}, "line": {"number": 3131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readOrderedMap(org.elasticsearch.common.xcontent.XContentParser)"}, "line": {"number": 306}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UjNkTX9EbdfPaqIYIxRySgAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "void java.util.TreeMap.putAll(java.util.Map)", "offset": 12}, "line": {"number": 325}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU7"}} -{"Stackframe": {"function": {"name": "try_to_wake_up"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACHxg3"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/sort/zfuncversion.go"}, "function": {"name": "sort.medianOfThree_func"}, "line": {"number": 54}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw"}} -{"Stackframe": {"function": {"name": "vfs_write"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F-UVz7qWVUzScRv1FhkbzQAAAAAAAADx"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 24}, "line": {"number": 242}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_qijKAoIrj192_UIiHcBhwAAAAAAAABo"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.writeValuesSingleBlock(org.apache.lucene.index.SortedNumericDocValues, long, int, long, long, java.util.Map)", "offset": 1}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1ssh5SjYJr3zimd_T_sc1AAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "RestActions.java"}, "function": {"name": "org.elasticsearch.rest.BytesRestResponse org.elasticsearch.rest.action.RestActions.nodesResponse(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params, org.elasticsearch.action.support.nodes.BaseNodesResponse)", "offset": 3}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UxUrGKaPEq08l4l3816TpwAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "InputStreamEntity.java"}, "function": {"name": "void org.apache.http.entity.InputStreamEntity.writeTo(java.io.OutputStream)", "offset": 14}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIj"}} -{"Stackframe": {"function": {"name": "do_syscall_64"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2wgGDGWUYKAius-1IxNgMQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "Lucene84PostingsReader.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene84.Lucene84PostingsReader$BlockDocsEnum.nextDoc()", "offset": 1}, "line": {"number": 454}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gHwfGc8BS0hXEJl9pqoeOAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SingletonSortedNumericDocValues.java"}, "function": {"name": "int org.apache.lucene.index.SingletonSortedNumericDocValues.nextDoc()"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFqnG"}} -{"Stackframe": {"function": {"name": "cpu_stopper_thread"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QCJaqzc5TAgQb6P0JIYhjgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "DataInput.java"}, "function": {"name": "int org.apache.lucene.store.DataInput.readInt()"}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kC7Xj_JtWjeOjNmigyLWMQAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.elasticsearch.core.internal.io.IOUtils.close(java.lang.Exception, java.lang.Iterable)", "offset": 3}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkJgk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).scanUint"}, "line": {"number": 244}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HW4-asF9W20WAgPf6bG3rwAAAAAAAACX"}} -{"Stackframe": {"file": {"name": "ComparableTimSort.java"}, "function": {"name": "void java.util.ComparableTimSort.sort(java.lang.Object[], int, int, java.lang.Object[], int, int)", "offset": 33}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SAcr2k56H-0uXVdYyC2m8AAAAAAAAAB2"}} -{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "boolean java.util.AbstractMap.equals(java.lang.Object)", "offset": 17}, "line": {"number": 493}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VTbtgu53oLczjFOJuD9puQAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$DeleteResult org.elasticsearch.index.shard.IndexShard.applyDeleteOperationOnReplica(long, long, long, java.lang.String, java.lang.String)"}, "line": {"number": 1149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "EsExecutors.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.EsExecutors$DirectExecutorService.execute(java.lang.Runnable)"}, "line": {"number": 226}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GcPRsxhoRfgOogp_1xvMXAAAAAAAAABc"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeBulkItems(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationContext, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, java.lang.String, org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 693}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBUR"}} -{"Stackframe": {"function": {"name": "hash_futex"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACN5vO"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/backtrack.go"}, "function": {"name": "regexp.(*Regexp).backtrack"}, "line": {"number": 353}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BRhxcWA8lAPF_eYm7lkGNgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "CgroupMetrics.java"}, "function": {"name": "long jdk.internal.platform.CgroupMetrics.getCpuNumPeriods()"}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-Nay"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/pkg/errors@v0.9.1/errors.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.exit"}, "line": {"number": 103}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mVAJ4WIfnsjyIG-kvE-1qQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.document.RestGetAction$$Lambda$6144.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBss"}} -{"Stackframe": {"function": {"name": "seq_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pKigbHe-xFMdGV6t_R9rjQAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "Lucene90NormsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.NormsConsumer org.apache.lucene.codecs.lucene90.Lucene90NormsFormat.normsConsumer(org.apache.lucene.index.SegmentWriteState)"}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChHwQ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.gopreempt_m"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VqFNxLjEmT8UPnG-1nVs-AAAAAAAAAB-"}} -{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "void org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction.sendBulkRequest(org.elasticsearch.action.bulk.BulkRequest, java.lang.Runnable)", "offset": 14}, "line": {"number": 417}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bBQ2fsMcPLjZdwrVTr6aMgAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter.copyOneDoc(org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader, int)", "offset": 5}, "line": {"number": 520}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LEf7xTPa92fa-lrUaMUkPQAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$2(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener, org.elasticsearch.common.util.concurrent.ListenableFuture, org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$CachedResult)", "offset": 4}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VeiXB0YRwCqhIZpdcAnulgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "StepListener.java"}, "function": {"name": "void org.elasticsearch.action.StepListener.innerOnResponse(java.lang.Object)"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tzBcwDe6SUq4Jkyew2O5egAAAAAAAAC4"}} -{"Stackframe": {"file": {"name": "SegmentCoreReaders.java"}, "function": {"name": "void org.apache.lucene.index.SegmentCoreReaders.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.IOContext)", "offset": 58}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EEfFWFsgasz8z6yvzLMmSQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.translog.TranslogStats org.elasticsearch.index.engine.InternalEngine.getTranslogStats()"}, "line": {"number": 620}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RLT8kD2Dv7n5Uv6GrwRORwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput$$Lambda$5349+0x0000000801a89d58.write(org.elasticsearch.common.io.stream.StreamOutput, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TB2m8X5zMpUXSjHjTIXJCwAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "BulkShardRequest.java"}, "function": {"name": "void org.elasticsearch.action.bulk.BulkShardRequest.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gur6r5-2VByGBeBFq9R4fQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 1}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jG8RV1XmTT7lPs6gbbzWEAAAAAAAAAOv"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 943}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cpNEDBxqXj30ru03AtezywAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "PackedLongValues.java"}, "function": {"name": "org.apache.lucene.util.packed.PackedLongValues$Builder org.apache.lucene.util.packed.PackedLongValues.packedBuilder(float)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiFxk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/netlink_linux.go"}, "function": {"name": "syscall.NetlinkRIB"}, "line": {"number": 64}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d6_wbVVkhoVoWtFoERzLagAAAAAAAAC1"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "org.apache.lucene.index.SortedDocValues org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer.getSorted(org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$SortedEntry)", "offset": 99}, "line": {"number": 930}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-Jbk"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/auparse.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.(*AuditMessage).Data"}, "line": {"number": 99}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MxRnrnRp5fRRlUEkyuK1rQAAAAAAAAA8"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.writeIncrementalStateAndCommit(long, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)", "offset": 5}, "line": {"number": 616}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.refresh(java.lang.String, org.elasticsearch.index.engine.Engine$SearcherScope, boolean)", "offset": 15}, "line": {"number": 1822}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4U-xAnLrdtDr0a69h0nqYgAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.decodeJdkCompatible(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf)", "offset": 37}, "line": {"number": 1237}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZLVm2Yq3JzpECVJuRqNdawAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$checkForBearerToken$3(org.elasticsearch.xpack.security.authc.UserToken)", "offset": 3}, "line": {"number": 361}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "t5sl_qj7EDFdA1b6w0-42gAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.Object[] org.elasticsearch.common.io.stream.StreamInput.readArray(org.elasticsearch.common.io.stream.Writeable$Reader, java.util.function.IntFunction)", "offset": 3}, "line": {"number": 1025}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LvJncLgOnYwpWuDnTLvtywAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.bulk.TransportShardBulkAction$$Lambda$8000+0x0000000801f3a000.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "665jeMvW0d41JQ06itCnpQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.search.SearchAction$$Lambda$4386+0x0000000801eeb9e0.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H0yNC4W33CkkqJfkrGFEhAAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.Engine.refreshNeeded()", "offset": 8}, "line": {"number": 971}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CvC3lIC7E70AiCoZ7DVYSQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline$2$1.accept(java.lang.Object)"}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cXlweJcTpRnUmFxwZ3wPIwAAAAAAAAEJ"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 64}, "line": {"number": 500}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SMh8IRbQlufFRqUZ5FoaFQAAAAAAAALY"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.index.SegmentMerger.merge()", "offset": 64}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-Nia"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/hex.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.hexToStrings"}, "line": {"number": 48}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory.sync(java.util.Collection)", "offset": 3}, "line": {"number": 286}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i6rwiPR5i6tnawOeD-YAvwAAAAAAAAPt"}} -{"Stackframe": {"file": {"name": "ClientHello.java"}, "function": {"name": "byte[] sun.security.ssl.ClientHello$ClientHelloKickstartProducer.produce(sun.security.ssl.ConnectionContext)", "offset": 246}, "line": {"number": 647}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore$$Lambda$6444+0x00000008023d6a80.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAC2kG"}} -{"Stackframe": {"file": {"name": "syscall/syscall_linux.go"}, "function": {"name": "syscall.Syscall"}, "line": {"number": 81}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACb"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 29}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O4XFBmuHlVXJh4TIk5LCDAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$6512+0x0000000801c92c08.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zXvjOvDFEHH50WhZ8-7e_gAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "int io.netty.channel.nio.NioEventLoop.select(long)", "offset": 1}, "line": {"number": 879}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.run()", "offset": 5}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KXYM0aVJDRSRVOuwZo8XMAAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateListener(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder, java.util.Collection)", "offset": 5}, "line": {"number": 558}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K_N78LhUkthI1fnHsP1_6gAAAAAAAACb"}} -{"Stackframe": {"file": {"name": "Regex.java"}, "function": {"name": "boolean org.elasticsearch.common.regex.Regex.simpleMatchWithNormalizedStrings(java.lang.String, java.lang.String)", "offset": 26}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6n-a5-if7K0DVFLofVTUEgAAAAAAAABS"}} -{"Stackframe": {"file": {"name": "Netty4HttpPipeliningHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpPipeliningHandler.handlePipelinedRequest(io.netty.channel.ChannelHandlerContext, org.elasticsearch.http.netty4.Netty4HttpRequest)", "offset": 5}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "73IOkhtZyjrZNnxzxVPYTQAAAAAAAACN"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.applyIndexOperation(org.elasticsearch.index.engine.Engine, long, long, long, org.elasticsearch.index.VersionType, long, long, long, boolean, org.elasticsearch.index.engine.Engine$Operation$Origin, org.elasticsearch.index.mapper.SourceToParse)", "offset": 32}, "line": {"number": 982}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6lCI6tAr7u1DrnIgR2YwwAAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "AbstractConfigValue.java"}, "function": {"name": "com.typesafe.config.impl.AbstractConfigValue com.typesafe.config.impl.AbstractConfigValue.withFallback(com.typesafe.config.ConfigMergeable)", "offset": 8}, "line": {"number": 279}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiGKm"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/netlink_linux.go"}, "function": {"name": "syscall.NetlinkRIB.func1"}, "line": {"number": 57}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9VTO5fILW3ae07RdzUPe3QAAAAAAAAJv"}} -{"Stackframe": {"file": {"name": "NodesInfoResponse.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.action.admin.cluster.node.info.NodesInfoResponse.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 63}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "r69bqYctcqbyJiTyvmojFAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "org.elasticsearch.common.xcontent.ToXContent org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.read(org.elasticsearch.common.blobstore.BlobContainer, java.lang.String)", "offset": 1}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cqbcw9VvzAfWyjGsJCyDPwAAAAAAAABz"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.submitStateUpdateTask(java.lang.String, org.elasticsearch.cluster.ClusterStateTaskConfig, java.util.function.Function, org.elasticsearch.cluster.service.ClusterApplier$ClusterApplyListener)", "offset": 14}, "line": {"number": 332}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACF-UE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/io/io.go"}, "function": {"name": "io.(*LimitedReader).Read"}, "line": {"number": 455}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "A9VwK6SroKXsQKAAWW8wJgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "JvmGcMonitorService.java"}, "function": {"name": "org.elasticsearch.monitor.jvm.JvmStats org.elasticsearch.monitor.jvm.JvmGcMonitorService$JvmMonitor.jvmStats()"}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZlDlad6ynrsOYua0gWLAAAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext org.elasticsearch.common.util.concurrent.ThreadContext.newStoredContext(boolean)"}, "line": {"number": 182}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xz8R4MTaPzD1CrgkfDi_QwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.IndexedDISI.flush(int, org.apache.lucene.util.FixedBitSet, int, byte, org.apache.lucene.store.IndexOutput)"}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-e9nMbB0qNMiMgwTOJCn3QAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "LoggerConfig.java"}, "function": {"name": "void org.apache.logging.log4j.core.config.LoggerConfig.log(java.lang.String, java.lang.String, java.lang.StackTraceElement, org.apache.logging.log4j.Marker, org.apache.logging.log4j.Level, org.apache.logging.log4j.message.Message, java.lang.Throwable)", "offset": 3}, "line": {"number": 417}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-xG9"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bufio/scan.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.Reader.ProcessCgroupPaths"}, "line": {"number": 98}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZaQmU-IXyGvFS9G6a9D4BQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "void java.nio.file.Files.delete(java.nio.file.Path)"}, "line": {"number": 1146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Sxgb26oKQwlt07if9woPTQAAAAAAACWp"}} -{"Stackframe": {"function": {"name": "br_nf_pre_routing"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i7ASJG3DvLBgruwj0ad0VQAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 1}, "line": {"number": 856}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA65F"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.goready.func1"}, "line": {"number": 375}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0WDpZKYg7XmmyjyStqqvFgAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.acquireReplicaOperationPermit(org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.action.ActionListener, long, long, long)"}, "line": {"number": 1101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qEljmOsHFo7__x1h9vqX9AAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SystemIndices.java"}, "function": {"name": "java.util.stream.Stream org.elasticsearch.indices.SystemIndices.lambda$findMatchingDescriptor$9(org.elasticsearch.indices.SystemIndices$Feature)"}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TaskBatcher.java"}, "function": {"name": "void org.elasticsearch.cluster.service.TaskBatcher$BatchedTask.run()"}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ceAXg6TZDkdNFtcE_O4vaQAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "BufferedUpdatesStream.java"}, "function": {"name": "void org.apache.lucene.index.BufferedUpdatesStream$SegmentState.(org.apache.lucene.index.ReadersAndUpdates, org.apache.lucene.util.IOUtils$IOConsumer, org.apache.lucene.index.SegmentCommitInfo)", "offset": 2}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACExXn"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mwbbuf.go"}, "function": {"name": "runtime.wbBufFlush1"}, "line": {"number": 288}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.doNext(int)", "offset": 7}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tLATSye44dZj5qP3wd7yWgAAAAAAAACJ"}} -{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.CommonStats.(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 9}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CZA6kFgNxUpf9UEoiwzNCgAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "InboundMessage.java"}, "function": {"name": "void org.elasticsearch.transport.InboundMessage.close()"}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChF4k"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.findrunnable"}, "line": {"number": 2657}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QQh0H_R0519E6LNe78VmDwAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "MergeState.java"}, "function": {"name": "int org.apache.lucene.index.MergeState$1.get(int)", "offset": 3}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mN5n7gVldcljtJtvz9OvlQAAAAAAAACC"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction.newResponse(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.nodes.BaseNodesRequest, org.elasticsearch.action.support.NodeResponseTracker, org.elasticsearch.action.ActionListener)", "offset": 17}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_iDZMCcFI7BA-AS_7zsasAAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.doExecute()", "offset": 7}, "line": {"number": 784}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "udTo70AymJSY5V7NrMKeuQAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "void java.util.TreeMap.addEntry(java.lang.Object, java.lang.Object, java.util.TreeMap$Entry, boolean)", "offset": 5}, "line": {"number": 770}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bKlVw9gLE4jRKTChgrEglAAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "int sun.nio.ch.EPollSelectorImpl.doSelect(java.util.function.Consumer, long)", "offset": 8}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cDDKtM-30WtgKUZUhSPZowAAAAAAAAD0"}} -{"Stackframe": {"file": {"name": "PolicyStepsRegistry.java"}, "function": {"name": "java.util.List org.elasticsearch.xpack.ilm.PolicyStepsRegistry.parseStepsFromPhase(java.lang.String, java.lang.String, java.lang.String)", "offset": 24}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CW_8hZlDvtu1eE0Pp2VwHAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "NodeClient.java"}, "function": {"name": "void org.elasticsearch.client.node.NodeClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-1WE"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/gosigar@v0.14.2/sigar_linux_common.go"}, "function": {"name": "github.com/elastic/gosigar.getUIDs"}, "line": {"number": 456}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w3qTM6Aby-qZXMm0XUnzgwAAAAAAAAB3"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleResponse(java.net.InetSocketAddress, org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.transport.TransportResponseHandler)", "offset": 13}, "line": {"number": 324}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "575WKZsJOrf8RDDJpG_1WgAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.CopyBytesSocketChannel.doWrite(io.netty.channel.ChannelOutboundBuffer)", "offset": 11}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s7hdxBbMHWQxy2GABBYaPQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "SocketAccess.java"}, "function": {"name": "void org.elasticsearch.repositories.s3.SocketAccess.doPrivilegedVoid(java.lang.Runnable)", "offset": 1}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABu"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKey(java.nio.channels.SelectionKey, io.netty.channel.nio.AbstractNioChannel)", "offset": 45}, "line": {"number": 788}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6XNnO9SeJ40ZM7baZ84oEgAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.store.StoreStats org.elasticsearch.index.shard.IndexShard.storeStats()", "offset": 7}, "line": {"number": 1313}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V3A14FfSyi9f2bwkJhRsiAAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.FSDirectory.createOutput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 7}, "line": {"number": 220}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1XRKT-mIPqTEPPQJ1OQKUwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "Provider.java"}, "function": {"name": "java.lang.Object java.security.Provider.newInstanceUtil(java.lang.Class, java.lang.Class, java.lang.Object)", "offset": 1}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ENXxAF8BVsp8AKhvQRK7mwAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "int java.lang.String.hashCode()", "offset": 2}, "line": {"number": 1537}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Zf0w4S_WIxaQJn4-TjKTOwAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "InferenceProcessorInfoExtractor.java"}, "function": {"name": "int org.elasticsearch.xpack.ml.utils.InferenceProcessorInfoExtractor.countInferenceProcessors(org.elasticsearch.cluster.ClusterState)", "offset": 9}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3MtR7J_itxjU9_a_C5GrDQAAAAAAAABX"}} -{"Stackframe": {"file": {"name": "IndicesPermission.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authz.permission.IndicesPermission.isActionGranted(java.lang.String, java.util.Map)", "offset": 12}, "line": {"number": 524}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rUm6eKXC2r517lo4-7MF6wAAAAAAAACK"}} -{"Stackframe": {"file": {"name": "RoutingNode.java"}, "function": {"name": "void org.elasticsearch.cluster.routing.RoutingNode.(java.lang.String, org.elasticsearch.cluster.node.DiscoveryNode, java.util.LinkedHashMap)", "offset": 13}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACinbE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/sort/zfuncversion.go"}, "function": {"name": "sort.stable_func"}, "line": {"number": 163}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "saQ5ZOut9f2P2MZp-a05OwAAAAAAAABB"}} -{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.getInternal(long)", "offset": 4}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEXtk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mcentral.go"}, "function": {"name": "runtime.(*mcentral).cacheSpan"}, "line": {"number": 177}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANp-o"}} -{"Stackframe": {"function": {"name": "proc_reg_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEODDq"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/helper/socket/ptable.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/helper/socket.socketInodes"}, "line": {"number": 173}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$2.onResponse(java.lang.Object)"}, "line": {"number": 162}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ck_MxLBdFaeX0Pe9TGo2LgAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "SessionOutputBufferImpl.java"}, "function": {"name": "void org.apache.http.impl.io.SessionOutputBufferImpl.flushBuffer()", "offset": 2}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uhX1qfoGgATHLd0SFlL86gAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "ByteBufferIndexInput.java"}, "function": {"name": "org.apache.lucene.store.ByteBufferIndexInput org.apache.lucene.store.ByteBufferIndexInput.buildSlice(java.lang.String, long, long)", "offset": 8}, "line": {"number": 447}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mxRwXt-8CQt60ehjLjpoTwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory.privateDeleteFile(java.lang.String, boolean)"}, "line": {"number": 370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bOb86QTSjl0Tbgl6WGMPVwAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken()", "offset": 9}, "line": {"number": 716}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AATo2Vqo1n4TLgDJq9tPgwAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "Netty4HttpPipeliningHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpPipeliningHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 2}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA_hX"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.findRunnable"}, "line": {"number": 2574}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uRiTFEuOH9sTOPq1GAghjgAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "MultiTerms.java"}, "function": {"name": "org.apache.lucene.index.TermsEnum org.apache.lucene.index.MultiTerms.iterator()", "offset": 2}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ATyTE6eUJy7GTizn3uhVBAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.action.support.replication.TransportReplicationAction$ConcreteShardRequest.createTask(long, java.lang.String, java.lang.String, org.elasticsearch.tasks.TaskId, java.util.Map)"}, "line": {"number": 1370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kc0y7jI01W-alpm68D6wKgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "ValuesSourceAggregationBuilder.java"}, "function": {"name": "int org.elasticsearch.search.aggregations.support.ValuesSourceAggregationBuilder.hashCode()"}, "line": {"number": 492}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SZD9YVGYcY6t7-F09t_klgAAAAAAAACD"}} -{"Stackframe": {"file": {"name": "GatewayMetaState.java"}, "function": {"name": "void org.elasticsearch.gateway.GatewayMetaState$LucenePersistedState.setLastAcceptedState(org.elasticsearch.cluster.ClusterState)", "offset": 11}, "line": {"number": 543}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADRGN"}} -{"Stackframe": {"function": {"name": "__x64_sys_sched_yield"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8WPdZNjwMvF6a3MxlZ9bmAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.lang.Object java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$1.next()"}, "line": {"number": 1704}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.applyIndexOperationOnReplica(long, long, long, long, boolean, org.elasticsearch.index.mapper.SourceToParse)"}, "line": {"number": 922}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hgHBLHU_ANUlwA90ks6yRwAAAAAAAADu"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 238}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ywRpFKHnyqIdEibpvZWLtAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "JsonReadContext.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.JsonReadContext._checkDup(com.fasterxml.jackson.core.json.DupDetector, java.lang.String)"}, "line": {"number": 202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GPv2ypC6givXZK29vBoBXAAAAAAAAAC6"}} -{"Stackframe": {"file": {"name": "ClientHello.java"}, "function": {"name": "void sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(sun.security.ssl.ServerHandshakeContext, sun.security.ssl.ClientHello$ClientHelloMessage)", "offset": 33}, "line": {"number": 853}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H0yNC4W33CkkqJfkrGFEhAAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.Engine.refreshNeeded()", "offset": 7}, "line": {"number": 970}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "25mp98L6MrKhqE8ccc5QLgAAAAAAAACz"}} -{"Stackframe": {"file": {"name": "BaseRestHandler.java"}, "function": {"name": "void org.elasticsearch.rest.BaseRestHandler.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient)", "offset": 23}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zxRubY_BE7yAKguZGCa7CAAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "BucketCollector.java"}, "function": {"name": "org.apache.lucene.search.LeafCollector org.elasticsearch.search.aggregations.BucketCollector$BucketCollectorWrapper.getLeafCollector(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MZlYx1M6Iw0T159uL_fuuwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Rewriteable.java"}, "function": {"name": "org.elasticsearch.index.query.Rewriteable org.elasticsearch.index.query.Rewriteable.rewrite(org.elasticsearch.index.query.Rewriteable, org.elasticsearch.index.query.QueryRewriteContext, boolean)", "offset": 2}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gFXgmnzAOaiXP0kcTIOBKAAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "BKDReader.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDReader.visitDocValues(int[], byte[], byte[], byte[], org.apache.lucene.store.IndexInput, org.apache.lucene.util.bkd.BKDReader$BKDReaderDocIDSetIterator, int, org.apache.lucene.index.PointValues$IntersectVisitor)", "offset": 1}, "line": {"number": 441}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XXew5C30L_JFu-wFNmdm1wAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "ClientHandshakeContext.java"}, "function": {"name": "void sun.security.ssl.ClientHandshakeContext.(sun.security.ssl.SSLContextImpl, sun.security.ssl.TransportContext)", "offset": 11}, "line": {"number": 98}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bYR0b7-vTQ0RKJD6ns3ClQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport.inboundMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage)"}, "line": {"number": 743}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALio7"}} -{"Stackframe": {"function": {"name": "follow_managed"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7GZTwvpUbvXa1H99e4ouwwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "TrackingDirectoryWrapper.java"}, "function": {"name": "java.util.Set org.apache.lucene.store.TrackingDirectoryWrapper.getCreatedFiles()"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SM_ELHsuqjmdLWLHOp2JxwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.xContentList(java.lang.String, java.util.Collection)"}, "line": {"number": 980}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iWRePpDnazIDVRSfj-NZEAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "SearchResponse.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.action.search.SearchResponse.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 1}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-jrR"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgcommon/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgcommon.ParseCgroupParamKeyValue"}, "line": {"number": 78}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Mj1fVO3bykQ8piLrLc5IFQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.unlink(sun.nio.fs.UnixPath)", "offset": 2}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y5_LBGyHlB-tfqMCYDKlJgAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "long sun.nio.ch.FileChannelImpl.size()", "offset": 12}, "line": {"number": 428}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-LMX"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/auparse.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.extractKeyValuePairs"}, "line": {"number": 309}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACHx8b"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/sort/zfuncversion.go"}, "function": {"name": "sort.quickSort_func"}, "line": {"number": 142}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bgWToCzheWak78gv4TQ_CgAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "AggregationInfo.java"}, "function": {"name": "void org.elasticsearch.search.aggregations.support.AggregationInfo.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 8}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WYJL1QABUd371a1-0ldehQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$CachingAsyncSupplier$$Lambda$5675+0x0000000801b1b000.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kgB4YpE00EMnCj_BxsUpZQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Logger.java"}, "function": {"name": "boolean ch.qos.logback.classic.Logger.isDebugEnabled()"}, "line": {"number": 465}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACjISX"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strconv/atoi.go"}, "function": {"name": "strconv.(*NumError).Error"}, "line": {"number": 31}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zrUlifJLvvERDLLhil2q8QAAAAAAAABB"}} -{"Stackframe": {"file": {"name": "RestUpdateByQueryAction.java"}, "function": {"name": "org.elasticsearch.index.reindex.UpdateByQueryRequest org.elasticsearch.index.reindex.RestUpdateByQueryAction.buildRequest(org.elasticsearch.rest.RestRequest)", "offset": 7}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ctuzHWR3fx1b_qq-6rL5pwAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "SSLHandshake.java"}, "function": {"name": "void sun.security.ssl.SSLHandshake.kickstart(sun.security.ssl.HandshakeContext)", "offset": 18}, "line": {"number": 525}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABF0k"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.sysmon"}, "line": {"number": 5250}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACioak"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "sort.(*StringSlice).Sort"}, "line": {"number": 1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F2N5JSZQ0bVks6BXRi_NggAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext.lambda$newStoredContextPreservingResponseHeaders$4(org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct)", "offset": 2}, "line": {"number": 300}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACNFgy"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/pkg/errors@v0.9.1/errors.go"}, "function": {"name": "github.com/pkg/errors.Wrapf"}, "line": {"number": 207}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACISbl"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/strings.go"}, "function": {"name": "strings.IndexRune"}, "line": {"number": 114}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "J1pfAEWmqWCNhh7R3GdmfAAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.lambda$onResponse$2(org.elasticsearch.core.Releasable, org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaResult)"}, "line": {"number": 669}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACOHR1"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/regexp.go"}, "function": {"name": "regexp.(*Regexp).FindAllStringSubmatch.func1"}, "line": {"number": 1197}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F3u75PFaKMThRw4BoUVwCAAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriterPerThread.sealFlushedSegment(org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 6}, "line": {"number": 534}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AmmotxQnAOVzMU8NulbCZwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.BooleanWeight.scorer(org.apache.lucene.index.LeafReaderContext)", "offset": 4}, "line": {"number": 503}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OBRbNy4-50c2c7kC3HqENAAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "org.elasticsearch.index.Index[] org.elasticsearch.action.search.TransportSearchAction.resolveLocalIndices(org.elasticsearch.action.OriginalIndices, org.elasticsearch.action.support.IndicesOptions, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider)", "offset": 3}, "line": {"number": 460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YphvFdC6Ku42TgGCAHzCrQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 4}, "line": {"number": 690}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sVHkQBLFueXylT9J5JnmGQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "SearchRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.SearchRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)"}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j9wdcHVIMBX64V9dKDLXoAAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "PrioritizedEsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.run()", "offset": 6}, "line": {"number": 225}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eU3FNtHcJBbn9h6Q-DiZ2AAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "Spliterator.java"}, "function": {"name": "long java.util.Spliterator.getExactSizeIfKnown()"}, "line": {"number": 414}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgll5"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.scanstack"}, "line": {"number": 804}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "A7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleResponse(java.net.InetSocketAddress, org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.transport.TransportResponseHandler)"}, "line": {"number": 342}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YwdW3gX5WZ-203-ZtRSpdAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "void org.apache.lucene.index.ReadersAndUpdates.swapNewReaderWithLatestLiveDocs()"}, "line": {"number": 682}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GUY8yORk3TZTSqSlBljzGQAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.Engine.refreshNeeded()", "offset": 8}, "line": {"number": 954}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kQUbCsFpz_WUDuYCE46idgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "OutboundMessage.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundMessage$Request.writeVariableHeader(org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nuo_TPMaY49kAwBo7E4YSAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "long org.elasticsearch.index.store.ByteSizeCachingDirectory.estimateSizeInBytes(org.apache.lucene.store.Directory)", "offset": 1}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANbmJ"}} -{"Stackframe": {"function": {"name": "iomap_set_range_uptodate"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FSfcXaocqiaJ94cn1Eg82gAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "PipelineConfiguration.java"}, "function": {"name": "boolean org.elasticsearch.ingest.PipelineConfiguration.equals(java.lang.Object)", "offset": 6}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "A7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAABt"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleResponse(java.net.InetSocketAddress, org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.transport.TransportResponseHandler)", "offset": 14}, "line": {"number": 356}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ywctG_sMzzXt8DhXRU3jGwAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader$SerializedDocument org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader.document(int)", "offset": 2}, "line": {"number": 656}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aZm3KCqAmEK8MKoRA8U8WgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction$1.handleResponse(org.elasticsearch.action.support.nodes.BaseNodeResponse)"}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uKtxR47OvzSUNd1AWsYPGgAAAAAAAACa"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.mergeMiddle(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergePolicy)", "offset": 27}, "line": {"number": 5087}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C9UVUqjRD64_RWyXHEtr7QAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.dataformat.smile.SmileParser._decodeShortAsciiValue(int)", "offset": 10}, "line": {"number": 2232}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CSBR8000mbn4kRcknKz6FgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.io.stream.StreamInput.readOptionalString()"}, "line": {"number": 373}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0_jShB-DuV77HIBPKqBRjgAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory$FSIndexOutput.(org.apache.lucene.store.FSDirectory, java.lang.String, java.nio.file.OpenOption[])", "offset": 4}, "line": {"number": 392}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7NQKJ0eHP8J4hISaRMWwxQAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.xcontent.XContent, java.io.InputStream, boolean)", "offset": 2}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BnjxOT6ecDtMNaRY7RgRQAAAAAAAAABn"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Result org.elasticsearch.action.bulk.TransportShardBulkAction.performOpOnReplica(org.elasticsearch.action.DocWriteResponse, org.elasticsearch.action.DocWriteRequest, org.elasticsearch.index.shard.IndexShard)", "offset": 10}, "line": {"number": 619}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cPy2QFuGdjzuVBNv2-JtzQAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "Netty4MessageChannelHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler.flush(io.netty.channel.ChannelHandlerContext)", "offset": 3}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M-sXhvfna68VyqP_ipf--wAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 2}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kRDRwBGBMalD6BcjnR3JbQAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "DocumentsWriterDeleteQueue.java"}, "function": {"name": "long org.apache.lucene.index.DocumentsWriterDeleteQueue.add(org.apache.lucene.index.DocumentsWriterDeleteQueue$Node, org.apache.lucene.index.DocumentsWriterDeleteQueue$DeleteSlice)", "offset": 13}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qRsaUHNh_qX8NJ7PJ8UPlgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "java.net.HttpURLConnection co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.startRequest(java.lang.String)"}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "07ULaFJE09HKZJ1N_kQueAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Releasables.java"}, "function": {"name": "void org.elasticsearch.core.Releasables.lambda$wrap$1(org.elasticsearch.core.Releasable[])"}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z2DVOjVRemP4hP2PhsveHQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "ImmutableCollections.java"}, "function": {"name": "java.lang.Object java.util.ImmutableCollections$MapN.get(java.lang.Object)", "offset": 4}, "line": {"number": 1235}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes java.nio.file.Files.readAttributes(java.nio.file.Path, java.lang.Class, java.nio.file.LinkOption[])"}, "line": {"number": 1849}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NuqcOqANutL4nD8JjGfmlwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "long org.elasticsearch.index.store.ByteSizeCachingDirectory.estimateSizeInBytes(org.apache.lucene.store.Directory)", "offset": 1}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vnwUPfbGgx6g5GWmZRB56wAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "IndicesOptions.java"}, "function": {"name": "boolean org.elasticsearch.action.support.IndicesOptions.expandWildcardsClosed()"}, "line": {"number": 184}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hVxXuiCYVnCxfdenaHpo6AAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "BulkByScrollParallelizationHelper.java"}, "function": {"name": "void org.elasticsearch.index.reindex.BulkByScrollParallelizationHelper.startSlicedAction(org.elasticsearch.index.reindex.AbstractBulkByScrollRequest, org.elasticsearch.index.reindex.BulkByScrollTask, org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionListener, org.elasticsearch.client.Client, org.elasticsearch.cluster.node.DiscoveryNode, java.lang.Runnable)"}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACYpZ"}} -{"Stackframe": {"function": {"name": "_do_fork"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAi5Bc"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/reporter/reporter.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/reporter.Start.func1"}, "line": {"number": 761}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTQA"}} -{"Stackframe": {"function": {"name": "d_path"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnLWR"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/math/big/nat.go"}, "function": {"name": "math/big.nat.expNN"}, "line": {"number": 913}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8S_Sv-2Ysy5dt1ARF624ywAAAAAAAACo"}} -{"Stackframe": {"file": {"name": "Strings.java"}, "function": {"name": "java.lang.String[] org.elasticsearch.common.Strings.delimitedListToStringArray(java.lang.String, java.lang.String, java.lang.String)", "offset": 26}, "line": {"number": 510}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m3tIqGWDOzCH_q4z0bYhiAAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.dataformat.smile.SmileParser.nextToken()", "offset": 11}, "line": {"number": 374}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxFg5"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/os.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.makeOSInfo"}, "line": {"number": 147}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-Xrp"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/normalize.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.init.0"}, "line": {"number": 41}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h2i8b6s7ABK28E4XdjB5FQAAAAAAAACR"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap$ValueSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 18}, "line": {"number": 1766}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sn05VCpzfESOHiGVrvO-_wAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "DateFieldMapper.java"}, "function": {"name": "long org.elasticsearch.index.mapper.DateFieldMapper$DateFieldType.parse(java.lang.String)"}, "line": {"number": 432}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEgB4"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.scanblock"}, "line": {"number": 1283}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "IndexShardOperationPermits.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShardOperationPermits.acquire(org.elasticsearch.action.ActionListener, java.lang.String, boolean, java.lang.Object)", "offset": 5}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mQVHcTFXg4JaHxKFUu2SNAAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler$$Lambda$3382.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qsf4oB191Ejhqczjg1I-pAAAAAAAAAD-"}} -{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "boolean org.apache.lucene.util.bkd.BKDWriter$MergeReader.next()", "offset": 50}, "line": {"number": 295}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7oXk3SjWJNcZekOtHIEvrAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "JsonGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.core.JsonGenerator.writeNumberField(java.lang.String, int)", "offset": 1}, "line": {"number": 2227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "UnixFileAttributeViews.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes sun.nio.fs.UnixFileAttributeViews$Basic.readAttributes()"}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FZMomjWJJ0nF52fd5MCJjwAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 27}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4qUpyq2gk_N4ezoFurwRPQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.user.TransportHasPrivilegesAction$$Lambda$8945+0x00000008027fd138.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nWkIGdO50axZ_Bk4M_K1cAAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$6057+0x0000000801c4c870.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w8yI5-2KLJ_g0ab6sXgWfAAAAAAAAAGh"}} -{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "java.util.regex.Pattern$CharPredicate java.util.regex.Pattern.clazz(boolean)", "offset": 91}, "line": {"number": 2727}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4g"}} -{"Stackframe": {"file": {"name": "runtime/asm_amd64.s"}, "function": {"name": "runtime.goexit"}, "line": {"number": 1595}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACil3R"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/sort/sort.go"}, "function": {"name": "sort.reverse.Less"}, "line": {"number": 259}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "buBVZznFiKOLEdwrahXtfgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler$$Lambda$5336+0x0000000801a5ba10.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBhq"}} -{"Stackframe": {"function": {"name": "seq_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dT5WZm8-ag4VFDZf0HaaMAAAAAAAAADo"}} -{"Stackframe": {"file": {"name": "Lucene60FieldInfosFormat.java"}, "function": {"name": "org.apache.lucene.index.FieldInfos org.apache.lucene.codecs.lucene60.Lucene60FieldInfosFormat.read(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.store.IOContext)", "offset": 34}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2uEWBluAjlG6YATEmwlaSAAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.IndexingChain.processDocument(int, java.lang.Iterable)", "offset": 12}, "line": {"number": 533}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcnH"}} -{"Stackframe": {"function": {"name": "do_readlinkat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lbfK5xAhyyH63Gphusud1AAAAAAAAABo"}} -{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$AsyncAfterWriteAction.run()", "offset": 15}, "line": {"number": 455}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAAx7Z"}} -{"Stackframe": {"function": {"name": "xfs_da_read_buf"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ8bZ"}} -{"Stackframe": {"function": {"name": "__x64_sys_madvise"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pFsUXmCuheRW93scdofEYwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.onResponse(java.lang.Object)"}, "line": {"number": 541}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "keUoLhS7DM0koqCsSOTsoQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "HandshakeOutStream.java"}, "function": {"name": "void sun.security.ssl.HandshakeOutStream.flush()", "offset": 1}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0nJ0ZCynuxYfemmjGHJ70QAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.support.replication.TransportReplicationAction$$Lambda$4980+0x00000008020b75d8.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PRgslp-mhiA259jp7eDUDAAAAAAAAAB6"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$MetadataIndexWriter.prepareCommit(java.lang.String, long, long, org.elasticsearch.Version)", "offset": 10}, "line": {"number": 799}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wsEP3PfgbWsvPc4Y_rpLYQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ActionRunnable.java"}, "function": {"name": "void org.elasticsearch.action.ActionRunnable$1.doRun()"}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hZDQmiqzQ4oD5JwGwWL6egAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Reference.java"}, "function": {"name": "void java.lang.ref.Reference.waitForReferencePendingList()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IaGOpXjXn5EHF-K9uwEUPQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "FilterDirectoryReader.java"}, "function": {"name": "void org.apache.lucene.index.FilterDirectoryReader.doClose()"}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-iiE"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/numcpu/cpu_linux.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/numcpu.getCPU"}, "line": {"number": 53}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACHkx7"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/reflect/value.go"}, "function": {"name": "reflect.Value.assignTo"}, "line": {"number": 2425}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YkIaRxuwdj6_l9jcQ8vj7AAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 22}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgUmm"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/malloc.go"}, "function": {"name": "runtime.profilealloc"}, "line": {"number": 1296}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dz3i4bkkYsjT-e-OYyoK1AAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 717}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LL2AmHorGMGLHFvQ3KWNRAAAAAAAAABy"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.addSortedSetField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 15}, "line": {"number": 891}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZYJrmLEjznzm7GSiXKeulgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.mergeSortedNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.index.MergeState)"}, "line": {"number": 375}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIeEQ"}} -{"Stackframe": {"function": {"name": "generic_file_read_iter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAAr6i"}} -{"Stackframe": {"function": {"name": "xfs_btree_lookup"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-98KX7lEQngZcvy7BcWxHgAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "PolicyFile.java"}, "function": {"name": "boolean sun.security.provider.PolicyFile.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 4}, "line": {"number": 1006}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xIfNH7oj8c26gQcDKc66DwAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "LockSupport.java"}, "function": {"name": "void java.util.concurrent.locks.LockSupport.parkNanos(java.lang.Object, long)", "offset": 3}, "line": {"number": 252}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nyMCPt5M-rbb158Tnrz3sgAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriterPerThread.sealFlushedSegment(org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 5}, "line": {"number": 449}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "PendingDeletes.java"}, "function": {"name": "int org.apache.lucene.index.PendingDeletes.numDeletesToMerge(org.apache.lucene.index.MergePolicy, org.apache.lucene.util.IOSupplier)"}, "line": {"number": 235}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-aF_zrsiEU254S2lEGLW0QAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "ThreadLocal.java"}, "function": {"name": "void java.lang.ThreadLocal.set(java.lang.Thread, java.lang.Object)", "offset": 5}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2p4Dyo36Ea--rGgiVt2H5QAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "void java.lang.Throwable.(java.lang.String, java.lang.Throwable)", "offset": 94}, "line": {"number": 292}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LaiexfPkXQfAGZNqswq44gAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "void java.util.Arrays.fill(short[], short)"}, "line": {"number": 3215}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAABCut"}} -{"Stackframe": {"function": {"name": "xfs_difree_finobt"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACELBk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/lock_futex.go"}, "function": {"name": "runtime.notewakeup"}, "line": {"number": 145}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4-ysLAXaTmrllCFWD4d16AAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5431+0x0000000801abd1e8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uPxLhcxLS--qmU5fqS3y8gAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "AbstractPagedMutable.java"}, "function": {"name": "void org.apache.lucene.util.packed.AbstractPagedMutable.fillPages()", "offset": 4}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gfC602LFbKzsHJ9-hYzAWgAAAAAAAACe"}} -{"Stackframe": {"file": {"name": "ConfigImplUtil.java"}, "function": {"name": "java.lang.String com.typesafe.config.impl.ConfigImplUtil.unicodeTrim(java.lang.String)", "offset": 39}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sNW5-Vl52DSdbgwAu7JkyQAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$$Lambda$3472.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HNFap0j4_fIXLZ9fEQkYlQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "NettyAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf org.elasticsearch.transport.netty4.NettyAllocator$NoDirectBuffers.heapBuffer(int)"}, "line": {"number": 284}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADQm0E"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/outputs/logstash/sync.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/outputs/logstash.(*syncClient).Publish"}, "line": {"number": 149}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_zTPw4W-fEbGBy_l_TaoKwAAAAAAAADH"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.merge(org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 35}, "line": {"number": 4386}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lxBbJT8CEpl1TogDqQt4QAAAAAAAAACT"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()", "offset": 27}, "line": {"number": 1054}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA1Gk"}} -{"Stackframe": {"file": {"name": "runtime/os_linux.go"}, "function": {"name": "runtime.signalM"}, "line": {"number": 553}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UU_rUMpu0OkNTbRlDbtiLQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "HttpsURLConnectionImpl.java"}, "function": {"name": "java.io.InputStream sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream()"}, "line": {"number": 224}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e7YYWaQTMh8P2PCVzA2a8gAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "boolean java.util.AbstractMap.containsKey(java.lang.Object)", "offset": 8}, "line": {"number": 152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FedFnYQW8bHf16nVrC3eNgAAAAAAAAFw"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 75}, "line": {"number": 343}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B1lRvacwBBYy0dU8osocsQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "FilterDirectoryReader.java"}, "function": {"name": "boolean org.apache.lucene.index.FilterDirectoryReader.isCurrent()"}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XadgtJFQ10pxn_-sij7tlQAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "void java.util.stream.AbstractPipeline.copyInto(java.util.stream.Sink, java.util.Spliterator)", "offset": 4}, "line": {"number": 484}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApymC"}} -{"Stackframe": {"function": {"name": "__mutex_lock_slowpath"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "96H7IcrFu8Zg3f7WMu_LagAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.acceptState(org.elasticsearch.cluster.ClusterState)", "offset": 2}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f-B_DnWkY3i33A_-cn2DVAAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "NodeService.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.node.NodeService.stats(org.elasticsearch.action.admin.indices.stats.CommonStatsFlags, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean, boolean)", "offset": 1}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FNGo1JfG2H2fZIcfqeCsfAAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$6499+0x00000008023c1cd8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M2N-LLw_gbVN-r7m25mjxQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "NamedWriteableAwareStreamInput.java"}, "function": {"name": "org.elasticsearch.common.io.stream.NamedWriteable org.elasticsearch.common.io.stream.NamedWriteableAwareStreamInput.readNamedWriteable(java.lang.Class, java.lang.String)", "offset": 1}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wf9mrqZKrjw_yhc1kSPntQAAAAAAAABv"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.readIntoNativeBuffer(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 16}, "line": {"number": 337}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "U9GMGSRcFRH-CQmb_n3Y0QAAAAAAAACk"}} -{"Stackframe": {"file": {"name": "PointRangeQuery.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.PointRangeQuery$1$4.get(long)", "offset": 14}, "line": {"number": 311}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8LFcVxuhgoewV1y0T433WgAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$SortedEntry org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer.readSorted(org.apache.lucene.store.IndexInput)", "offset": 2}, "line": {"number": 252}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiF9E"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/netlink_linux.go"}, "function": {"name": "syscall.NetlinkRIB"}, "line": {"number": 84}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAio9n"}} -{"Stackframe": {"function": {"name": "__x64_sys_sendto"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz01"}} -{"Stackframe": {"function": {"name": "__audit_syscall_exit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zFzboqO8__hpgAhYabPN_AAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "org.apache.lucene.document.Document org.elasticsearch.gateway.PersistedClusterStateService$Writer.makeGlobalMetadataDocument(org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.gateway.PersistedClusterStateService$DocumentBuffer)"}, "line": {"number": 840}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pl4QAnODL99kwWMDWeoC8wAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.resolveIndexNames(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.cluster.metadata.Metadata, java.util.Set, org.elasticsearch.action.ActionListener)"}, "line": {"number": 600}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bgWToCzheWak78gv4TQ_CgAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "AggregationInfo.java"}, "function": {"name": "void org.elasticsearch.search.aggregations.support.AggregationInfo.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 8}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimtb"}} -{"Stackframe": {"function": {"name": "sock_sendmsg"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABM5T"}} -{"Stackframe": {"file": {"name": "runtime/signal_unix.go"}, "function": {"name": "runtime.sigtrampgo"}, "line": {"number": 479}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tIv50-9ZsDFG8OmfEZawCwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.IndexingChain.finishStoredFields()"}, "line": {"number": 512}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5dykK372d7FA3wq7wP5b5gAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Thread.java"}, "function": {"name": "void java.lang.Thread.start0()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BZ6M98E7_jhQ9w9aCijThQAAAAAAAABj"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.writeAuthToContext(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)", "offset": 14}, "line": {"number": 376}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dVre-yWU3wOgyoQuLjZhuwAAAAAAAADC"}} -{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "java.lang.Runnable org.apache.lucene.util.bkd.BKDWriter.merge(org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, java.util.List, java.util.List)", "offset": 24}, "line": {"number": 504}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnhjW"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).object"}, "line": {"number": 775}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B3q4S4Ckg_Xt-OI4yuAyoQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "SdkFilterInputStream.java"}, "function": {"name": "int com.amazonaws.internal.SdkFilterInputStream.read(byte[], int, int)", "offset": 1}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b3S0id5hdpi1OvBSFMzajQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "S3ObjectResponseHandler.java"}, "function": {"name": "java.lang.Object com.amazonaws.services.s3.internal.S3ObjectResponseHandler.handle(com.amazonaws.http.HttpResponse)"}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEyqb"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/os_linux.go"}, "function": {"name": "runtime.futexwakeup"}, "line": {"number": 57}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAAQGj"}} -{"Stackframe": {"file": {"name": "runtime/map.go"}, "function": {"name": "runtime.mapaccess2"}, "line": {"number": 505}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "t9JKV-3NF5fx1acjPqrg_wAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "ISOChronology.java"}, "function": {"name": "org.joda.time.chrono.ISOChronology org.joda.time.chrono.ISOChronology.getInstance()"}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l4j5FXzkgekBCjhUSBt-mgAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "TransportUpdateByQueryAction.java"}, "function": {"name": "void org.elasticsearch.index.reindex.TransportUpdateByQueryAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.index.reindex.UpdateByQueryRequest, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wvXjE31kESML0je4-Me7hAAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.authenticate(org.elasticsearch.xpack.core.security.authc.AuthenticationToken, org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7WZtn3_4WSFXB9B9b5nqkgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "OperatingSystemMXBean.java"}, "function": {"name": "double com.sun.management.OperatingSystemMXBean.getSystemCpuLoad()"}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ro-nOR8Y6-xR_0NZHNxiswAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$consumeToken$16(java.util.Map, org.elasticsearch.xpack.core.security.user.User)"}, "line": {"number": 494}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "frr-8yCU41FP7ynT4TIpsQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object no.found.http.HighLevelHttpClient$$Lambda$920.apply()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiLJ8"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.Ftruncate"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "void org.elasticsearch.tasks.TaskManager$1.onResponse(org.elasticsearch.action.ActionResponse)", "offset": 2}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BQgPvwiw9NNbOJgDcqi8DAAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.inboundMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage)", "offset": 7}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OjnNxNUGxkldJX8RiAriBAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "SimpleFieldComparator.java"}, "function": {"name": "org.apache.lucene.search.LeafFieldComparator org.apache.lucene.search.SimpleFieldComparator.getLeafComparator(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$MappedActionListener.onResponse(java.lang.Object)", "offset": 6}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain$$Lambda$7298+0x000000080250dbe0.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BemXd-G6RDOwTOuPV3xpUwAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "AbstractByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.AbstractByteBufAllocator.heapBuffer(int, int)", "offset": 4}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADAxg"}} -{"Stackframe": {"function": {"name": "kthread"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorize(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 37}, "line": {"number": 250}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFzd"}} -{"Stackframe": {"function": {"name": "smp_call_function_many"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xSpwbsqGQ6j4Hi00WayBLAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.util.TreeMap$Entry java.util.TreeMap.getEntry(java.lang.Object)"}, "line": {"number": 342}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dxb67a9pdOnwKSyUl3yo7gAAAAAAAABY"}} -{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 18}, "line": {"number": 169}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChdvP"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/symtab.go"}, "function": {"name": "runtime.pcdatavalue2"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBF8"}} -{"Stackframe": {"function": {"name": "seq_puts"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VKeIi2MKWzeJ-DxWf1HkPQAAAAAAAACh"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrap(io.netty.channel.ChannelHandlerContext, boolean)", "offset": 35}, "line": {"number": 845}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1KEUqjFZLVnb5vw5WK42TgAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "void java.util.concurrent.LinkedTransferQueue.skipDeadNodesNearHead(java.util.concurrent.LinkedTransferQueue$Node, java.util.concurrent.LinkedTransferQueue$Node)", "offset": 3}, "line": {"number": 639}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vtOmTuUGvKYiQRK_O9kHuwAAAAAAAAGJ"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "long[] org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.writeValues(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 59}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mu5Oc1Hyn1NMNcvzChswswAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DocIDMerger.java"}, "function": {"name": "org.apache.lucene.index.DocIDMerger$Sub org.apache.lucene.index.DocIDMerger$SortedDocIDMerger.next()"}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABVX-N"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/interpreter/hotspot/hotspot.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/interpreter/hotspot.(*hotspotInstance).Symbolize"}, "line": {"number": 1075}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZKQvEbJPowmQD1WGxecrUgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "PriorityQueue.java"}, "function": {"name": "java.lang.Object org.apache.lucene.util.PriorityQueue.updateTop()"}, "line": {"number": 202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yfXyOODTodkdeiMKIIzHeQAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "BKDReader.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDReader.intersect(org.apache.lucene.util.bkd.BKDReader$IntersectState, byte[], byte[])", "offset": 6}, "line": {"number": 629}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O29IY8DvMWbkQBgldupHTQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "SpecialPermission.java"}, "function": {"name": "void org.elasticsearch.SpecialPermission.check()", "offset": 2}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GXqdtKZs0jCPru_AD4bs_AAAAAAAAAJc"}} -{"Stackframe": {"file": {"name": "FieldsIndexWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.FieldsIndexWriter.finish(int, long, org.apache.lucene.store.IndexOutput)", "offset": 67}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FDHy--PvgHpUWFquuqO7RAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.docID()"}, "line": {"number": 211}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n9pHjqEBxYX6b9EURk3zKQAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKeysPlain(java.util.Set)", "offset": 11}, "line": {"number": 689}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nnCec0a2-ZcuYpnWUHHz2AAAAAAAAAFy"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 23}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a4gTVv4Tk1ur056NgiSEtgAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "RestHasPrivilegesAction.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.action.user.RestHasPrivilegesAction.lambda$innerPrepareRequest$1(org.elasticsearch.xpack.core.security.action.user.HasPrivilegesRequestBuilder, org.elasticsearch.rest.RestChannel)"}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CIJa2mPNm8b1wwJ_UCRwpAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Lucene90PostingsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.FieldsConsumer org.apache.lucene.codecs.lucene90.Lucene90PostingsFormat.fieldsConsumer(org.apache.lucene.index.SegmentWriteState)"}, "line": {"number": 407}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mk3P52OFEqt1TZqklgylngAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "RuntimeException.java"}, "function": {"name": "void java.lang.RuntimeException.(java.lang.String)"}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF7"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 80}, "line": {"number": 324}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACWz_G"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/gopkg.in/yaml.v2@v2.3.0/decode.go"}, "function": {"name": "gopkg.in/yaml%2ev2.(*parser).parse"}, "line": {"number": 153}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "05ZcXiWsKDqabttSzfcYwgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "Cache.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.cache.Cache.get(java.lang.Object)"}, "line": {"number": 360}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MWoDBcMPHdoRgqigdmrdNwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "IndexLifecycleRunner.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.Step org.elasticsearch.xpack.ilm.IndexLifecycleRunner.getCurrentStep(org.elasticsearch.xpack.ilm.PolicyStepsRegistry, java.lang.String, org.elasticsearch.cluster.metadata.IndexMetadata)"}, "line": {"number": 61}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABWYKP"}} -{"Stackframe": {"file": {"name": "encoding/gob/decode.go"}, "function": {"name": "encoding/gob.(*Decoder).decodeSlice"}, "line": {"number": 631}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlpa"}} -{"Stackframe": {"function": {"name": "show_mountinfo"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F0PU7bQ8aSr5vRj-z9gSNQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "java.util.concurrent.RunnableScheduledFuture java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()", "offset": 1}, "line": {"number": 1165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAUUE"}} -{"Stackframe": {"function": {"name": "aufs_d_revalidate"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m9n_m2jwcbINltpN6wcTbQAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "JvmService.java"}, "function": {"name": "org.elasticsearch.monitor.jvm.JvmStats org.elasticsearch.monitor.jvm.JvmService.stats()", "offset": 1}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tO6JpVZeu0abSD0xpUFNBgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$UnmodifiableCollection.contains(java.lang.Object)"}, "line": {"number": 1038}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACENFT"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/malloc.go"}, "function": {"name": "runtime.largeAlloc"}, "line": {"number": 1177}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Dg9EjRff17PWRNomsbjntQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ObjectName.java"}, "function": {"name": "void javax.management.ObjectName.(java.lang.String)", "offset": 1010}, "line": {"number": 1407}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dawGhH-93Zf3Xci2M9UlFQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 2}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-pQ7u4Ee6imT9PbqfC5keAAAAAAAAABK"}} -{"Stackframe": {"file": {"name": "FieldsIndexWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.FieldsIndexWriter.(org.apache.lucene.store.Directory, java.lang.String, java.lang.String, java.lang.String, java.lang.String, byte[], int, org.apache.lucene.store.IOContext)", "offset": 9}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEipk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcscavenge.go"}, "function": {"name": "runtime.(*pageAlloc).scavengeRangeLocked"}, "line": {"number": 714}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "p3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.unlink0(long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjbU"}} -{"Stackframe": {"function": {"name": "lookup_fast"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorize(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 184}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ednam-wfOejL7SBt7Wl1oQAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "Lucene80NormsConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80NormsConsumer.close()", "offset": 12}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFxdb"}} -{"Stackframe": {"function": {"name": "audit_log_exit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xvGRLNtKcQKkLCOFKCOcbQAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "BaseNodeResponse.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.BaseNodeResponse.(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.node.DiscoveryNode)", "offset": 1}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4TKh8a7hNrhFLDYE3mR1_gAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct.writeTo(org.elasticsearch.common.io.stream.StreamOutput, java.util.Map)", "offset": 7}, "line": {"number": 829}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.refresh(java.lang.String)"}, "line": {"number": 1662}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ytZblqIBEsQV2ku_vlKaDgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext org.elasticsearch.common.util.concurrent.ThreadContext.stashContext()"}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Tyuf4RNGIxt-ueaCsLj22AAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "TransportNodesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation(org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction$NodeStatsRequest, org.elasticsearch.tasks.Task)", "offset": 1}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADHZB2"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/actions/rename.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/actions.(*renameFields).Run"}, "line": {"number": 89}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.xcontent.support.AbstractXContentParser.readMapEntries(org.elasticsearch.xcontent.XContentParser, java.util.function.Supplier, java.util.Map, java.lang.String)"}, "line": {"number": 322}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFlfQ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcscavenge.go"}, "function": {"name": "runtime.bgscavenge.func2"}, "line": {"number": 304}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "g8ia7_SjtnnoFsx8t6EVmgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "void java.util.Collections$2.forEachRemaining(java.util.function.Consumer)"}, "line": {"number": 4828}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h_QroixBMtZeI1zG0ozyLgAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "TieredMergePolicy.java"}, "function": {"name": "java.util.List org.apache.lucene.index.TieredMergePolicy.getSortedBySegmentSize(org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 3}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwxm"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/asm_amd64.s"}, "function": {"name": "runtime.gcWriteBarrierR9"}, "line": {"number": 1524}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GMNSe-6LTlpuiQTu86RdbwAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeSystemUser(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 388}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAClZot"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/interface.go"}, "function": {"name": "net.(*Interface).MulticastAddrs"}, "line": {"number": 93}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnJ0g"}} -{"Stackframe": {"function": {"name": "unix_stream_recvmsg"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9ScOlSS2fIyPZ7ygebwKSQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap$EntryIterator.next()"}, "line": {"number": 1636}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L1TsSv66pa2kBpdVIVNEAwAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "java.util.Map org.elasticsearch.indices.IndicesService.statsByShard(org.elasticsearch.indices.IndicesService, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 5}, "line": {"number": 473}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ok4zrk1T3mBLtObzPQcS-QAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Deflater.java"}, "function": {"name": "int java.util.zip.Deflater.deflate(byte[], int, int)"}, "line": {"number": 465}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApL5b"}} -{"Stackframe": {"function": {"name": "__radix_tree_lookup"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oQXmmb1DrrgmbEq20aTNxwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "MappingMetadata.java"}, "function": {"name": "java.util.Map org.elasticsearch.cluster.metadata.MappingMetadata.sourceAsMap()"}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V9-sS4P9BRPJVTYjJXTZmAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct$$Lambda$6072+0x000000080235e4e0.write(org.elasticsearch.common.io.stream.StreamOutput, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.acquireReplicaOperationPermit(org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.action.ActionListener, long, long, long)"}, "line": {"number": 909}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KFGBFnajTppUPwKMAfWXvQAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "AbstractInterruptibleChannel.java"}, "function": {"name": "void java.nio.channels.spi.AbstractInterruptibleChannel.close()", "offset": 4}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLkFQ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).value"}, "line": {"number": 384}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FqIP6aAzogD29fEjUaOqOgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "CompressedXContent.java"}, "function": {"name": "byte[] org.elasticsearch.common.compress.CompressedXContent.uncompressed()"}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8gHcyv-vf693oHdGbKQv-gAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "boolean sun.nio.fs.UnixNativeDispatcher.exists(sun.nio.fs.UnixPath)", "offset": 3}, "line": {"number": 626}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFYKx"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/time.go"}, "function": {"name": "runtime.runOneTimer"}, "line": {"number": 864}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w3nicYorzLhxwk36I5aTDAAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "RestStatusToXContentListener.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestStatusToXContentListener.buildResponse(org.elasticsearch.common.xcontent.StatusToXContentObject, org.elasticsearch.xcontent.XContentBuilder)", "offset": 1}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kHalUfEHqcn65y0_2ltybQAAAAAAAAHX"}} -{"Stackframe": {"file": {"name": "ECDHServerKeyExchange.java"}, "function": {"name": "void sun.security.ssl.ECDHServerKeyExchange$ECDHServerKeyExchangeMessage.(sun.security.ssl.HandshakeContext)", "offset": 90}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LuHkzb6R5yUPaGQOHswLWQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "void org.elasticsearch.index.reindex.AbstractAsyncBulkByScrollAction.onScrollResponse(org.elasticsearch.index.reindex.AbstractAsyncBulkByScrollAction$ScrollConsumableHitsResponse)"}, "line": {"number": 263}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lBCEtJpnWxH9YJv8ASXFIAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.SingleThreadEventExecutor.execute(java.lang.Runnable)"}, "line": {"number": 817}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dxAt0AmIp5IBXdkPF7QwwwAAAAAAAACe"}} -{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$writeIndexGen$49(org.elasticsearch.repositories.RepositoryData, org.elasticsearch.action.StepListener, org.elasticsearch.action.ActionListener)", "offset": 25}, "line": {"number": 1486}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s4zVuFE809K66EfKcw5rKwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "SessionInputBufferImpl.java"}, "function": {"name": "int org.apache.http.impl.io.SessionInputBufferImpl.streamRead(byte[], int, int)", "offset": 1}, "line": {"number": 137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "clhaWL_s4ImtmRo0m-0KrwAAAAAAAAGR"}} -{"Stackframe": {"file": {"name": "CompressingStoredFieldsWriter.java"}, "function": {"name": "int org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.merge(org.apache.lucene.index.MergeState)", "offset": 38}, "line": {"number": 642}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lqnkRSi2l38NtuG1By7gSwAAAAAAAABF"}} -{"Stackframe": {"file": {"name": "InferenceProcessor.java"}, "function": {"name": "int org.elasticsearch.xpack.ml.inference.ingest.InferenceProcessor$Factory.countNumberInferenceProcessors(org.elasticsearch.cluster.ClusterState)", "offset": 11}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s9MntjdT5XiNr-rHeRcTvQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "DocIDMerger.java"}, "function": {"name": "int org.apache.lucene.index.DocIDMerger$Sub.nextMappedDoc()", "offset": 4}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j1jm2CrNOrTZOKGqZZLAgAAAAAAAAABp"}} -{"Stackframe": {"file": {"name": "ByteQuadsCanonicalizer.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.findName(int)", "offset": 27}, "line": {"number": 497}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MUCtz2ZYSkqE7-3U3tP-UQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.util.stream.Stream java.nio.file.Files.lines(java.nio.file.Path)"}, "line": {"number": 4196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RFzJhIJVFZEvHYnGHLETBQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "OutputStreamWriter.java"}, "function": {"name": "void java.io.OutputStreamWriter.write(char[], int, int)"}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2OWtsBQW6DA4kXJxcJcc7QAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TrackingDirectoryWrapper.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.TrackingDirectoryWrapper.createTempOutput(java.lang.String, java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LrIRYiBR-UYkUB83bLJPgQAAAAAAAAFI"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "boolean org.elasticsearch.action.bulk.TransportShardBulkAction.executeBulkItemRequest(org.elasticsearch.action.bulk.BulkPrimaryExecutionContext, org.elasticsearch.action.update.UpdateHelper, java.util.function.LongSupplier, org.elasticsearch.action.bulk.MappingUpdatePerformer, java.util.function.Consumer, org.elasticsearch.action.ActionListener)", "offset": 52}, "line": {"number": 351}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMR4k"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/internal/metrics/cpu/metrics_procfs_common.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/internal/metrics/cpu.Get"}, "line": {"number": 40}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OXXUWi3HnGXyNYANATzbXgAAAAAAAACQ"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.IndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 22}, "line": {"number": 261}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.refresh(java.lang.String, org.elasticsearch.index.engine.Engine$SearcherScope, boolean)", "offset": 15}, "line": {"number": 1688}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4y1QLnOo_87Zcna0Yb8QdQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.util.stream.Stream java.util.Collections$UnmodifiableCollection.stream()"}, "line": {"number": 1106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Mb2_4IzFmsZu_sknCLXxAwAAAAAAAAHt"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 493}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XZQcoD_es-Sgi6qHZxwfkgAAAAAAAAA8"}} -{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "java.lang.Void sun.security.ssl.SSLEngineImpl$DelegatedTask$DelegatedAction.run()", "offset": 4}, "line": {"number": 1260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnx0-"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/stream.go"}, "function": {"name": "encoding/json.(*Encoder).Encode"}, "line": {"number": 222}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "U2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABX"}} -{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "void org.elasticsearch.search.query.QueryPhase.execute(org.elasticsearch.search.internal.SearchContext)", "offset": 18}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qk_n1ecQPsBsNva7iBiLPgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "boolean java.util.concurrent.LinkedTransferQueue.tryTransfer(java.lang.Object)"}, "line": {"number": 1321}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8S_Sv-2Ysy5dt1ARF624ywAAAAAAAADW"}} -{"Stackframe": {"file": {"name": "Strings.java"}, "function": {"name": "java.lang.String[] org.elasticsearch.common.Strings.delimitedListToStringArray(java.lang.String, java.lang.String, java.lang.String)", "offset": 33}, "line": {"number": 517}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5hUNzO0rXOpqCaRiC-l7EQAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "DefaultHeaders.java"}, "function": {"name": "io.netty.handler.codec.Headers io.netty.handler.codec.DefaultHeaders.setObject(java.lang.Object, java.lang.Object)", "offset": 1}, "line": {"number": 520}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2RFqiy_TIF9Ivmg849R6KQAAAAAAAABp"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.processDocument(int, java.lang.Iterable)", "offset": 24}, "line": {"number": 499}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXvR"}} -{"Stackframe": {"function": {"name": "__fput"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w8JhUSbi8Jzd0eYrf6ua0AAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BZ5FamAFNAUQLx8KcvDxCwAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$7022+0x0000000801e514e8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mHzD8kiYxVjek9AoaxFfnQAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 44}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACN8OM"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/exec.go"}, "function": {"name": "regexp.(*Regexp).doExecute"}, "line": {"number": 535}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUktc"}} -{"Stackframe": {"function": {"name": "string_escape_mem"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bf0kCNuLs46cBi-bJHb4dwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Matcher.java"}, "function": {"name": "boolean java.util.regex.Matcher.matches()"}, "line": {"number": 713}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Jd5oafTchAbMQyIPlk82tgAAAAAAAABu"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 2}, "line": {"number": 431}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgaVY"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map.go"}, "function": {"name": "runtime.mapassign_faststr"}, "line": {"number": 209}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YEThj3UEuGl2wDiJSq9vSAAAAAAAAACq"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.applyIndexOperation(org.elasticsearch.index.engine.Engine, long, long, long, org.elasticsearch.index.VersionType, long, long, long, boolean, org.elasticsearch.index.engine.Engine$Operation$Origin, org.elasticsearch.index.mapper.SourceToParse)", "offset": 20}, "line": {"number": 959}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFoMF"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/traceback.go"}, "function": {"name": "runtime.callers.func1"}, "line": {"number": 804}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAb-p"}} -{"Stackframe": {"function": {"name": "aufs_permission"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S91mTbQPR0Q9cILSZvoNyQAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "void org.elasticsearch.search.internal.ContextIndexSearcher.search(java.util.List, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 1}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u_jROqRUKuaOL2z7eoOrkQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Spliterators.java"}, "function": {"name": "long java.util.Spliterators$ArraySpliterator.estimateSize()"}, "line": {"number": 1024}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAF1iY"}} -{"Stackframe": {"function": {"name": "audit_watch_compare"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2MiI3b_EzPrgd_k9fjnuewAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "DefaultClientConnectionReuseStrategy.java"}, "function": {"name": "boolean org.apache.http.impl.client.DefaultClientConnectionReuseStrategy.keepAlive(org.apache.http.HttpResponse, org.apache.http.protocol.HttpContext)", "offset": 2}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HhNjFnMd70fZN07PFErnWAAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "ElasticApmTracer.java"}, "function": {"name": "co.elastic.apm.agent.impl.transaction.Transaction co.elastic.apm.agent.impl.ElasticApmTracer.startChildTransaction(java.lang.Object, co.elastic.apm.agent.impl.transaction.TextHeaderGetter, java.lang.ClassLoader, long)"}, "line": {"number": 200}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEm00"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mheap.go"}, "function": {"name": "runtime.(*mheap).alloc"}, "line": {"number": 912}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3SSuw7AKPJ9yFEVSwC_lbAAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "PipelineConfiguration.java"}, "function": {"name": "boolean org.elasticsearch.ingest.PipelineConfiguration.equals(java.lang.Object)", "offset": 6}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABm1K"}} -{"Stackframe": {"file": {"name": "runtime/asm_amd64.s"}, "function": {"name": "runtime.morestack"}, "line": {"number": 571}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk"}} -{"Stackframe": {"function": {"name": "path_lookupat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGwpN"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file_posix.go"}, "function": {"name": "os.(*File).Sync"}, "line": {"number": 158}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z7vmRnux3IvBpoyglzVLfwAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "void org.apache.lucene.index.StandardDirectoryReader.lambda$doClose$1()", "offset": 2}, "line": {"number": 466}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eUkU9BypIPkspOQFVVGLEQAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$$Lambda$4317+0x000000080191f768.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LL2AmHorGMGLHFvQ3KWNRAAAAAAAAABO"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.addSortedSetField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 6}, "line": {"number": 882}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FOIMQnzYiyYPDxKOnMW5yQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.io.stream.StreamInput.readMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader, java.util.function.IntFunction)"}, "line": {"number": 649}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B9_lWIfptWUZtktRAKblygAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.ch.NioSocketImpl.beginWrite()", "offset": 2}, "line": {"number": 367}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5_zddmyO37Dam1L6ekM5pgAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "SegmentInfos.java"}, "function": {"name": "void org.apache.lucene.index.SegmentInfos.prepareCommit(org.apache.lucene.store.Directory)", "offset": 4}, "line": {"number": 803}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ABk6RqRYy5QsiYS0AnfFrgAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "SecondaryAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator.authenticate(java.util.function.Consumer, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBJj"}} -{"Stackframe": {"function": {"name": "futex_wait_queue_me"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nyQEDtNfXDm_fNpPXsT-3gAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.get(java.lang.Object)"}, "line": {"number": 558}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YBsRiOSYyzJilvtbmeHiPwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "void io.netty.channel.DefaultChannelPipeline$HeadContext.channelReadComplete(io.netty.channel.ChannelHandlerContext)"}, "line": {"number": 1415}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x2cwCBtVASi5Ak0QtF5vPgAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexingChain.processField(int, org.apache.lucene.index.IndexableField, org.apache.lucene.index.IndexingChain$PerField)", "offset": 10}, "line": {"number": 685}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTjJ"}} -{"Stackframe": {"function": {"name": "d_absolute_path"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACqV6v"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/path/filepath/match.go"}, "function": {"name": "path/filepath.glob"}, "line": {"number": 328}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACsrSe"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/pipeline/client.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/pipeline.(*client).Publish"}, "line": {"number": 81}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACPIUq"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.(*linuxSystem).Process"}, "line": {"number": 1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ojijB29c8Lo_FuNL__qV0gAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5106.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "no2Lej56mJkbwdNYz7YGSQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 467}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kSbKpSG9UjBRbkWOO2dvwgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA-sr"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.stopm"}, "line": {"number": 2239}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qD5R7oUvp1CMIoWxp8Tz_gAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "System.java"}, "function": {"name": "int java.lang.System.identityHashCode(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FuKvOqGhHpe2jdLn9FK5DAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "AggregationBuilder.java"}, "function": {"name": "org.elasticsearch.search.aggregations.AggregationBuilder org.elasticsearch.search.aggregations.AggregationBuilder.rewrite(org.elasticsearch.index.query.QueryRewriteContext)", "offset": 1}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uMbV4kgTfjojzHhdWOM7pAAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "ApiKeyAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.ApiKeyAuthenticator.lambda$authenticate$2(org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 2}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bYxYe2jgm-ZVQ1wIKl60VgAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.unwrap(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)", "offset": 15}, "line": {"number": 506}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z0hdy73gJuxMxMUBOMHWTQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "FilterStreamInput.java"}, "function": {"name": "byte org.elasticsearch.common.io.stream.FilterStreamInput.readByte()"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_vlpQDle5dcOpop8VnX1jAAAAAAAAACI"}} -{"Stackframe": {"file": {"name": "TransportContext.java"}, "function": {"name": "void sun.security.ssl.TransportContext.kickstart()", "offset": 22}, "line": {"number": 221}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bAlNhxIUaCZOzq5Go2-fDwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.coordination.Coordinator$$Lambda$3379.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BY2rTx9iNIHoPLSaIk3jZQAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "HeaderGroup.java"}, "function": {"name": "org.apache.http.Header[] org.apache.http.message.HeaderGroup.getHeaders(java.lang.String)", "offset": 4}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMha1"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/module/system/process/process.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/module/system/process.init"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nyMCPt5M-rbb158Tnrz3sgAAAAAAAACh"}} -{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriterPerThread.sealFlushedSegment(org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 22}, "line": {"number": 466}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "76wxGzK61aMnsTPSzlLCrgAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.internalSend(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.BytesReference, org.elasticsearch.transport.OutboundMessage, org.elasticsearch.action.ActionListener)", "offset": 6}, "line": {"number": 203}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "btJR8uWrInrzn_sGkpIt3QAAAAAAAABN"}} -{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.lambda$consumeToken$5(org.elasticsearch.xpack.security.authc.Authenticator$Context, java.util.Map, org.elasticsearch.action.ActionListener, java.util.concurrent.atomic.AtomicReference, java.util.concurrent.atomic.AtomicReference, org.elasticsearch.xpack.core.security.user.User)", "offset": 6}, "line": {"number": 218}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AlqQms_TzO0YX80jaQfbNwAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "HttpObjectAggregator.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpObjectAggregator.finishAggregation(io.netty.handler.codec.http.FullHttpMessage)", "offset": 1}, "line": {"number": 237}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5C80h-knswVKajvAROSklQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "PagedGrowableWriter.java"}, "function": {"name": "void org.apache.lucene.util.packed.PagedGrowableWriter.(long, int, int, float)"}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x69oGDnn9-Q70zg0yENhkwAAAAAAAABc"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", "offset": 20}, "line": {"number": 1144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fT0k69QoWDcgSGG9DEbGKQAAAAAAAABU"}} -{"Stackframe": {"file": {"name": "ReaderPool.java"}, "function": {"name": "boolean org.apache.lucene.index.ReaderPool.writeAllDocValuesUpdates()", "offset": 6}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "T8onotV9lg89BkiEKBT7jQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ByteBufferIndexInput.java"}, "function": {"name": "void org.apache.lucene.store.ByteBufferIndexInput.readBytes(byte[], int, int)"}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgjRT"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcwork.go"}, "function": {"name": "runtime.gcMark"}, "line": {"number": 310}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jXA44eQDJB4STkgNORi52AAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.FilterDirectory.createTempOutput(java.lang.String, java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DXs2Dcw8wgLsBDwGazSZXwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase$$Lambda$7454+0x00000008025410f0.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LrlyDlaKHbC_8KNADvLjFAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.watcher.execution.ExecutionService$$Lambda$8004+0x0000000801fe23f8.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_WDQ"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/auditd/audit_linux.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/auditd.buildMetricbeatEvent"}, "line": {"number": 551}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YNTunKybilcdruNbkYh4bAAAAAAAAACj"}} -{"Stackframe": {"file": {"name": "ForUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.ForUtil.decodeAndPrefixSum(int, org.apache.lucene.store.DataInput, long, long[])", "offset": 11}, "line": {"number": 528}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dx_pTwJwhqQvjWAfMihgAgAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.softUpdateDocuments(org.apache.lucene.index.Term, java.lang.Iterable, org.apache.lucene.document.Field[])", "offset": 6}, "line": {"number": 1578}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZVmO-9I5h4LLobQ2tFZNqwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "URI.java"}, "function": {"name": "void java.net.URI$Parser.fail(java.lang.String, int)"}, "line": {"number": 2938}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eXjqYxLLRxedJxEiR8NT6wAAAAAAAACK"}} -{"Stackframe": {"file": {"name": "TermQuery.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.TermQuery$TermWeight.scorer(org.apache.lucene.index.LeafReaderContext)", "offset": 15}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5ocKe_xZhLoIMKsqpwD-EgAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesFormat.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesProducer org.apache.lucene.codecs.lucene80.Lucene80DocValuesFormat.fieldsProducer(org.apache.lucene.index.SegmentReadState)"}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "p28xmTKhHN748RCp6oEYtgAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "java.util.Set org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$WildcardExpressionResolver.expand(org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$Context, org.elasticsearch.cluster.metadata.IndexMetadata$State, java.util.Map, java.lang.String, boolean)", "offset": 2}, "line": {"number": 919}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vZvGTU2ISDDtSYwF1iMiKwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.bytes.BytesReference, boolean)"}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_js9oXEovuvcenIstBqeVgAAAAAAAACz"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "void org.elasticsearch.common.settings.Settings.(java.util.Map, org.elasticsearch.common.settings.SecureSettings)", "offset": 20}, "line": {"number": 123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OzfMwGMAUWlo9CHMDsxtzAAAAAAAAABm"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 3}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "liB_gjAyJgmggDkDXaj8yAAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6440+0x00000008023d6220.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GBdFFPybwEG5U3rnK__rYwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction$$Lambda$7150+0x0000000801e94238.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAYKh0"}} -{"Stackframe": {"file": {"name": "golang.org/x/net@v0.0.0-20220425223048-2871e0cb64e4/http2/frame.go"}, "function": {"name": "golang.org/x/net/http2.(*Framer).ReadFrame"}, "line": {"number": 498}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgk0n"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.gcAssistAlloc"}, "line": {"number": 414}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ABdFbtTJmESgWXLD37lp9wAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "Strings.java"}, "function": {"name": "java.lang.String[] org.elasticsearch.common.Strings.toStringArray(java.util.Collection)", "offset": 3}, "line": {"number": 332}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan"}} -{"Stackframe": {"function": {"name": "lookup_fast"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RAiSaKhtr8sKQyEQrLjoKAAAAAAAAAJC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 578}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KO8q_FdrMhQbU2N6WlSXhgAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.executeLocalSearch(org.elasticsearch.tasks.Task, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.OriginalIndices, org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.ActionListener)"}, "line": {"number": 403}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "idAHvTfpCa_Lill3CvLIKwAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.messageReceived(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage, long)", "offset": 5}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nFTZ4MXQlS-LtyA78dSw9wAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "void org.elasticsearch.search.internal.ContextIndexSearcher.searchLeaf(org.apache.lucene.index.LeafReaderContext, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 13}, "line": {"number": 184}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALoLB"}} -{"Stackframe": {"function": {"name": "getname"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADU1Eo"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/safemapstr/safemapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common/safemapstr.mapFind"}, "line": {"number": 99}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QkUG4hAHW6eayhUWWDPr0gAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "RetentionLeaseBackgroundSyncAction.java"}, "function": {"name": "void org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction.shardOperationOnReplica(org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction$Request, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAATotf"}} -{"Stackframe": {"function": {"name": "blk_mq_dispatch_rq_list"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oIbcZroK0mbxpVqmuMaywgAAAAAAAABt"}} -{"Stackframe": {"file": {"name": "Rewriteable.java"}, "function": {"name": "void org.elasticsearch.index.query.Rewriteable.rewriteAndFetch(org.elasticsearch.index.query.Rewriteable, org.elasticsearch.index.query.QueryRewriteContext, org.elasticsearch.action.ActionListener, int)", "offset": 23}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zaaCIflYBHWmB3T1CTSl8AAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "RSACore.java"}, "function": {"name": "byte[] sun.security.rsa.RSACore.crypt(byte[], java.math.BigInteger, java.math.BigInteger)", "offset": 1}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vFjykp-oi1aff5X8oBy8zQAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "AbstractSet.java"}, "function": {"name": "boolean java.util.AbstractSet.equals(java.lang.Object)", "offset": 9}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHaLV"}} -{"Stackframe": {"function": {"name": "__do_sys_bpf"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k1o6cGLS1FzksoHJvPKdFQAAAAAAAAEz"}} -{"Stackframe": {"file": {"name": "Lucene94FieldInfosFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene94.Lucene94FieldInfosFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.index.FieldInfos, org.apache.lucene.store.IOContext)", "offset": 39}, "line": {"number": 369}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jgFie9OcTMpMeBzHaR2iBgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "java.lang.Object java.util.concurrent.ConcurrentHashMap.remove(java.lang.Object)"}, "line": {"number": 1102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Is1HM5XBCjCrIyfmtQTsWwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.decRefDeleter(org.apache.lucene.index.SegmentInfos)", "offset": 1}, "line": {"number": 5851}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M9t3sX7Z2Nj1mpARCDGcawAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "EsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor.execute(java.lang.Runnable)", "offset": 2}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "inLD7FTDiZ9QX8bC0I9L_QAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "HttpRequestExecutor.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext)", "offset": 8}, "line": {"number": 273}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-vdV"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/strings.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.readControllerList"}, "line": {"number": 303}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gf0H1bW6-c25Pb5hOjZg3QAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "Lz4TransportDecompressor.java"}, "function": {"name": "int org.elasticsearch.transport.Lz4TransportDecompressor.decompress(org.elasticsearch.common.bytes.BytesReference)", "offset": 9}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGv5k"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file.go"}, "function": {"name": "os.OpenFile"}, "line": {"number": 327}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KIQUb_XVozsgp2JNepBooAAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "BooleanQuery.java"}, "function": {"name": "org.apache.lucene.search.BooleanQuery org.apache.lucene.search.BooleanQuery$Builder.build()"}, "line": {"number": 137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E8Eu4dk0m0vh1V_xwkOZ2AAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$UnmodifiableCollection.isEmpty()"}, "line": {"number": 1042}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Klyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "CancellableBulkScorer.java"}, "function": {"name": "int org.elasticsearch.search.internal.CancellableBulkScorer.score(org.apache.lucene.search.LeafCollector, org.apache.lucene.util.Bits, int, int)", "offset": 4}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V-BrlcNQ7BgfHtC7BLNw6QAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.lambda$newEngineConfig$22(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)", "offset": 3}, "line": {"number": 3356}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pkBGqhcKBroYcUtGIrc7fQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "AbstractHttpMessage.java"}, "function": {"name": "org.apache.http.Header[] org.apache.http.message.AbstractHttpMessage.getHeaders(java.lang.String)"}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TM5vHmZRGlLyNtB_jDhdvQAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "QuotaAwareFileSystemProvider.java"}, "function": {"name": "java.nio.channels.FileChannel co.elastic.cloud.quotaawarefs.QuotaAwareFileSystemProvider.newFileChannel(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])"}, "line": {"number": 373}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Iq0mlN2p-kwJDD_iNJOzpQAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "ExecutorUtils.java"}, "function": {"name": "void co.elastic.apm.agent.util.ExecutorUtils$2.run()", "offset": 6}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dAHd9ndNzEhU1GyagepTAQAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "SecondaryAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator.authenticateAndAttachToContext(org.elasticsearch.rest.RestRequest, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEd21"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.markrootBlock"}, "line": {"number": 282}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9FwE8rS4gVnMyyuwGs3-uQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "io.netty.channel.Channel io.netty.channel.AbstractChannel.read()"}, "line": {"number": 278}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3rmyHJndkO8hLNYIrTHVNgAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "BytesReferenceStreamInput.java"}, "function": {"name": "void org.elasticsearch.common.bytes.BytesReferenceStreamInput.maybeNextSlice()", "offset": 2}, "line": {"number": 184}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "notCAO7hd2H6aL2N3OdG9wAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.acquireReplicaOperationPermit(long, long, long, org.elasticsearch.action.ActionListener, java.lang.String, java.lang.Object)"}, "line": {"number": 3163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "akq4mF0mmQueFMEUlSNLxwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ResourceLeakDetector.java"}, "function": {"name": "io.netty.util.ResourceLeakTracker io.netty.util.ResourceLeakDetector.track(java.lang.Object)"}, "line": {"number": 246}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACL5Re"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/stream.go"}, "function": {"name": "encoding/json.(*Decoder).readValue"}, "line": {"number": 139}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HguOptCva-Qt5LF2U-NJjwAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile.lambda$inbound$1(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.Version, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 8}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nB1aJ0RC5jjZQRrK59KJIwAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", "offset": 6}, "line": {"number": 1122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZsD"}} -{"Stackframe": {"function": {"name": "__handle_mm_fault"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJje"}} -{"Stackframe": {"function": {"name": "__secure_computing"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FS55TSwq0w7KNb6oqdqsJwAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$RequestFilterChain.proceed(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAFN"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 66}, "line": {"number": 310}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f_rIvCQMW5oayMPHCj4aUgAAAAAAAACW"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "int java.io.FilePermission.containsPath(java.nio.file.Path, java.nio.file.Path)", "offset": 43}, "line": {"number": 745}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1uTD4MIo_4nBzNJux2_5GAAAAAAAAAB7"}} -{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.bulk.BulkRequest, org.elasticsearch.action.ActionListener)", "offset": 16}, "line": {"number": 200}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jtEB8q7ZNk5LwicDPNbPVQAAAAAAAAB8"}} -{"Stackframe": {"file": {"name": "Lucene90BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.blocktree.Lucene90BlockTreeTermsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 23}, "line": {"number": 367}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QM07la3NPp56y7hhD10OWQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.cluster.node.info.NodeInfo$$Lambda$7412+0x000000080252f548.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N_pUSQ-9lnubUvA5GPAV8AAAAAAAAABB"}} -{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.timedRead(java.io.FileDescriptor, byte[], int, int, long)", "offset": 7}, "line": {"number": 285}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "U5SYnpgA53sr9SLIWLBAVgAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$5100.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fVBoJfjASXSwBJ3d_2nbBwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "StringConcatHelper.java"}, "function": {"name": "long java.lang.StringConcatHelper.prepend(long, byte[], long, java.lang.String)"}, "line": {"number": 280}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "icPJ7tOGKK7zFdZdegZdLQAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.stat(sun.nio.fs.UnixPath, sun.nio.fs.UnixFileAttributes)", "offset": 7}, "line": {"number": 325}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-7zy"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/process/process.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/process.(*Process).getDetails"}, "line": {"number": 172}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-RQ4"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.newEvent"}, "line": {"number": 308}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WnFGlRCY3Ca1i33Xvhj0aQAAAAAAAAES"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 274}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GAKN4IA59Oyrw_sFixA19QAAAAAAAACo"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.consumeUser(org.elasticsearch.xpack.core.security.user.User, java.util.Map)", "offset": 22}, "line": {"number": 617}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Jig11yNM7a5spSitCN_iPQAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "ReentrantLock.java"}, "function": {"name": "void java.util.concurrent.locks.ReentrantLock$Sync.lockInterruptibly()", "offset": 3}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6gx5j99QwRXWvrkyBMUOQwAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "int java.util.Arrays.mismatch(byte[], int, int, byte[], int, int)", "offset": 6}, "line": {"number": 7661}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m5-Un0na0bSGJs4I2yfHnwAAAAAAAADv"}} -{"Stackframe": {"file": {"name": "TaskBatcher.java"}, "function": {"name": "void org.elasticsearch.cluster.service.TaskBatcher.runIfNotProcessed(org.elasticsearch.cluster.service.TaskBatcher$BatchedTask)", "offset": 24}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K98UXW_tqL7J08okqw576QAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ManagedSelector.java"}, "function": {"name": "void org.eclipse.jetty.io.ManagedSelector$Accept.run()"}, "line": {"number": 890}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ekcp8NUShDNkkW-gpN04awAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "void org.elasticsearch.search.internal.ContextIndexSearcher.searchLeaf(org.apache.lucene.index.LeafReaderContext, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 4}, "line": {"number": 200}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2XlsHONL_QzhduDW6kA7vQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5681+0x0000000801b1bd20.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xB00KDzyoofk7hNv-bTuugAAAAAAAABH"}} -{"Stackframe": {"file": {"name": "ES85BloomFilterPostingsFormat.java"}, "function": {"name": "void org.elasticsearch.index.codec.bloomfilter.ES85BloomFilterPostingsFormat$FieldsWriter.close()", "offset": 9}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MdMo4LAHA-xUI6S7kmKPeQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.field(java.lang.String, java.lang.String)", "offset": 4}, "line": {"number": 636}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KZ4H-fBW3C6Xndni_eSq5QAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.xcontent.XContent, java.io.InputStream, boolean)", "offset": 2}, "line": {"number": 145}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GFOnvQQJ7n9iY8p8KSFUvgAAAAAAAABr"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 7}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E412ubC6vIkVnhrQF2Kv0QAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "IndicesQueryCache.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.elasticsearch.indices.IndicesQueryCache$CachingWeightWrapper.scorerSupplier(org.apache.lucene.index.LeafReaderContext)", "offset": 1}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IAZZPPhwSRB780yxL5LMAQAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "AggregationInfo.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.search.aggregations.support.AggregationInfo.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 1}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yW94tVERi6q0VzIVjryqTQAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "SecurityIndexManager.java"}, "function": {"name": "java.util.Set org.elasticsearch.xpack.security.support.SecurityIndexManager.loadIndexMappingVersions(java.lang.String, org.elasticsearch.cluster.ClusterState, org.apache.logging.log4j.Logger)", "offset": 5}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpY"}} -{"Stackframe": {"function": {"name": "__vfs_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CM_7hwk6an6NZiLsKSNPdQAAAAAAAADE"}} -{"Stackframe": {"file": {"name": "BigInteger.java"}, "function": {"name": "java.math.BigInteger java.math.BigInteger.modPow(java.math.BigInteger, java.math.BigInteger)", "offset": 24}, "line": {"number": 2744}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TryWt-l_RGzsQHaX4nMucAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "DocIdSetIterator.java"}, "function": {"name": "int org.apache.lucene.search.DocIdSetIterator$2.advance(int)"}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zVl_JFLMBO6_XcJyl0ewxwAAAAAAAAEJ"}} -{"Stackframe": {"file": {"name": "LZ4WithPresetDictCompressionMode.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene87.LZ4WithPresetDictCompressionMode$LZ4WithPresetDictDecompressor.decompress(org.apache.lucene.store.DataInput, int, int, int, org.apache.lucene.util.BytesRef)", "offset": 43}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANpvh"}} -{"Stackframe": {"function": {"name": "unuse_pde"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GbNPtP2ptUhcICMoumcb2AAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "DateTimeParseContext.java"}, "function": {"name": "java.time.temporal.TemporalAccessor java.time.format.DateTimeParseContext.toResolved(java.time.format.ResolverStyle, java.util.Set)", "offset": 3}, "line": {"number": 331}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HG2DlCAsxV5n0t2UOol6kQAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "AbstractRestChannel.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.rest.AbstractRestChannel.newBuilder(org.elasticsearch.xcontent.XContentType, org.elasticsearch.xcontent.XContentType, boolean, java.io.OutputStream)", "offset": 5}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yanW-NWn1yU-ZmISz8_K-wAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$RequestFilterChain.proceed(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACjqYO"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/reflect/value.go"}, "function": {"name": "reflect.Value.SetIterKey"}, "line": {"number": 1712}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9mDLMaTYH1Sl5lqU83K8HQAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "TransportBroadcastByNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived(org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$NodeRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 10}, "line": {"number": 405}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jjKpARUU3mW6HQ-DZ0nY8AAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.xcontent.json.JsonXContentParser.text()", "offset": 1}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d1GrTiKrlelSEUD78AN9iwAAAAAAAAGr"}} -{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "int sun.security.ssl.SSLSocketImpl$AppInputStream.read(byte[], int, int)", "offset": 71}, "line": {"number": 1022}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-Jk808Lt2_DJJzrOxfeDYwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 28}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbeH"}} -{"Stackframe": {"function": {"name": "vfs_getattr_nosec"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "28nS3D_gIss5Dax50sSZRwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.runAllDelegatedTasks(javax.net.ssl.SSLEngine)", "offset": 4}, "line": {"number": 1542}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1sqZEeUsG3W43_x5Rw_H0wAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$5342+0x0000000801a8c238.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MlyHaLRJGNn2Vpy3WSPy_QAAAAAAAACh"}} -{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "void java.security.AccessController.checkPermission(java.security.Permission)", "offset": 30}, "line": {"number": 1068}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ2hj"}} -{"Stackframe": {"function": {"name": "free_unref_page_list"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "voqjqV6_-EldPWpE4Bg5QQAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "StringLatin1.java"}, "function": {"name": "int java.lang.StringLatin1.hashCode(byte[])", "offset": 1}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JwVc2kiULj1B71utLboyHgAAAAAAAADQ"}} -{"Stackframe": {"file": {"name": "ElasticApmTracer.java"}, "function": {"name": "void co.elastic.apm.agent.impl.ElasticApmTracer.endSpan(co.elastic.apm.agent.impl.transaction.Span)", "offset": 36}, "line": {"number": 427}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xGtP-sXIou6VkRlAu3EUfAAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$6437+0x00000008023779d0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ25w"}} -{"Stackframe": {"function": {"name": "get_page_from_freelist"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ARiuJRGB6HSb0roAv522dAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Join.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.Join.writeTo(org.elasticsearch.common.io.stream.StreamOutput)"}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_jcNhXlm_4ESbJ83f0qd9AAAAAAAAABn"}} -{"Stackframe": {"file": {"name": "DupDetector.java"}, "function": {"name": "boolean com.fasterxml.jackson.core.json.DupDetector.isDup(java.lang.String)", "offset": 19}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8s5hM6TvWnoP9XP3e8VVVwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene90.IndexedDISI.nextDoc()"}, "line": {"number": 529}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9eyFEANetCPzPOoO7Or-3gAAAAAAAAFt"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 365}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vKejTCyLyeKC1x5YlrNm2AAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "FilterClient.java"}, "function": {"name": "void org.elasticsearch.client.FilterClient.(org.elasticsearch.client.Client)"}, "line": {"number": 34}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAABnsX"}} -{"Stackframe": {"function": {"name": "xfs_file_write_iter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-wxF"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.Reader.ProcessCgroupPaths"}, "line": {"number": 318}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NcIQR2c5Ob8K5vbpAkilygAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Searcher org.elasticsearch.index.engine.Engine.acquireSearcher(java.lang.String, org.elasticsearch.index.engine.Engine$SearcherScope, java.util.function.Function)", "offset": 3}, "line": {"number": 706}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "G3HfgHGbcJX2XA6GSfaFxwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "BulkProcessor.java"}, "function": {"name": "org.elasticsearch.action.bulk.BulkProcessor org.elasticsearch.action.bulk.BulkProcessor.add(org.elasticsearch.action.index.IndexRequest)"}, "line": {"number": 430}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d__-FJDRZlyO8YWNJRXoCgAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "void java.util.concurrent.ConcurrentHashMap$BaseIterator.(java.util.concurrent.ConcurrentHashMap$Node[], int, int, int, java.util.concurrent.ConcurrentHashMap)", "offset": 2}, "line": {"number": 3435}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HFgO_FKtiSSlqZPdpNkneQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesProducer.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene80.Lucene80DocValuesProducer$SparseNumericDocValues.nextDoc()"}, "line": {"number": 484}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xIKWatY3TkDMmjhuCoY3zQAAAAAAAAEw"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.applyChanges(org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState, org.elasticsearch.common.StopWatch)", "offset": 26}, "line": {"number": 485}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kzPBPi0X-wl-PUEBtNL3SQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 33}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YEThj3UEuGl2wDiJSq9vSAAAAAAAAADm"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.applyIndexOperation(org.elasticsearch.index.engine.Engine, long, long, long, org.elasticsearch.index.VersionType, long, long, long, boolean, org.elasticsearch.index.engine.Engine$Operation$Origin, org.elasticsearch.index.mapper.SourceToParse)", "offset": 47}, "line": {"number": 986}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BlwtAEKFHXxtdYYHllc2EAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o6xXiDMzQeNlxyPaXRCCuQAAAAAAAAJi"}} -{"Stackframe": {"file": {"name": "AuthorizationUtils.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationUtils.switchUserBasedOnActionOriginAndExecute(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.xpack.core.security.SecurityContext, java.util.function.Consumer)", "offset": 26}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uraIFXU9GqBqmWbTlxjVJAAAAAAAAABi"}} -{"Stackframe": {"file": {"name": "ArraysSupport.java"}, "function": {"name": "int jdk.internal.util.ArraysSupport.mismatch(byte[], int, byte[], int, int)", "offset": 14}, "line": {"number": 298}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fa5CZf7FD-aM6Y-fCgxg9gAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "SecurityIndexManager.java"}, "function": {"name": "boolean org.elasticsearch.xpack.security.support.SecurityIndexManager.checkIndexMappingUpToDate(org.elasticsearch.cluster.ClusterState)", "offset": 13}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hQj1w50CfP8YweEdnC-JyAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$MetadataIndexWriter.commit()"}, "line": {"number": 537}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RYYzFwpA3ctX6AMeEeq4YAAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "PeersRequest.java"}, "function": {"name": "void org.elasticsearch.discovery.PeersRequest.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 2}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwvm"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/asm_amd64.s"}, "function": {"name": "runtime.gcWriteBarrierDX"}, "line": {"number": 1489}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_avzkz28Qok2WNYNUK8x_AAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaResult org.elasticsearch.action.bulk.TransportShardBulkAction.lambda$dispatchedShardOperationOnReplica$4(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard)"}, "line": {"number": 526}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACOHLR"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/regexp.go"}, "function": {"name": "regexp.(*Regexp).FindAllStringSubmatch.func1"}, "line": {"number": 1199}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_8_c"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/file_integrity/scanner.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/file_integrity.(*scanner).throttle"}, "line": {"number": 196}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "doUW6X4sD8xm3oZvX9vWAQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "org.elasticsearch.transport.TransportResponse org.elasticsearch.transport.TransportService$UnregisterChildTransportResponseHandler.read(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 1656}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1S9eFAopKcZX-VnW9ChdWAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Setting.get(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 463}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2G3Nb2wLZnYZcun2Wr4rBgAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "Cache.java"}, "function": {"name": "org.elasticsearch.common.cache.Cache$Entry org.elasticsearch.common.cache.Cache$CacheSegment.get(java.lang.Object, long, boolean)", "offset": 2}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DYR4nla6rR5CkjYgb2INPQAAAAAAAAC1"}} -{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.merge(org.apache.lucene.index.MergeState)", "offset": 21}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oSoGUxBn_MfT_4Ncm-yGtQAAAAAAAABa"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.writeIncrementalStateAndCommit(long, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState)", "offset": 11}, "line": {"number": 912}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AUZISASlK_du5NWyxApXBQAAAAAAAABH"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "java.util.Map org.elasticsearch.action.search.TransportSearchAction.buildPerIndexOriginalIndices(org.elasticsearch.cluster.ClusterState, java.util.Set, org.elasticsearch.index.Index[], org.elasticsearch.action.support.IndicesOptions)", "offset": 4}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BiF2R8dzjx0oL7OVY_TATwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.internal.support.AbstractClient$ClusterAdmin.execute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 676}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChYQU"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/stack.go"}, "function": {"name": "runtime.newstack"}, "line": {"number": 996}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DbGTcOBcDc6PQvK_yBwTrwAAAAAAAADK"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.computeIfAbsent(java.lang.Object, java.util.function.Function)", "offset": 31}, "line": {"number": 1228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE-Sp"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.findrunnable"}, "line": {"number": 2289}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OVGpodm8Dz5kn5wnnXKUIAAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "void io.netty.channel.AbstractChannel$AbstractUnsafe.flush()", "offset": 8}, "line": {"number": 913}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5utt2dQ8HKrTepHdNpprxQAAAAAAAAFz"}} -{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.CommonStats org.elasticsearch.action.admin.indices.stats.CommonStats.getShardLevelStats(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 25}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xVElUvgmdiF2hCNekoE9wgAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run()", "offset": 2}, "line": {"number": 636}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yl0e-EP0-MS7g2nq2fud-QAAAAAAAABB"}} -{"Stackframe": {"file": {"name": "SortedSetDocValuesWriter.java"}, "function": {"name": "org.apache.lucene.index.SortedSetDocValues org.apache.lucene.index.SortedSetDocValuesWriter$1.getSortedSet(org.apache.lucene.index.FieldInfo)", "offset": 4}, "line": {"number": 207}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YnHJlbHqayey0i5xkzFE0gAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.mergeNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.index.MergeState)"}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Nku1oPInJYwCIRLCUxYLuwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "TransportNodesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation(org.elasticsearch.action.support.nodes.BaseNodeRequest, org.elasticsearch.tasks.Task)"}, "line": {"number": 32}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JtZWm99a_rUaGtgjeQwOcQAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.FSDirectory.createTempOutput(java.lang.String, java.lang.String, org.apache.lucene.store.IOContext)", "offset": 8}, "line": {"number": 267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OqAQCuAGfY3TOkkaJwPNYAAAAAAAAABQ"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "void sun.nio.ch.FileChannelImpl.force(boolean)", "offset": 9}, "line": {"number": 467}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nr_UCagIf1Wt7zH1szcBYAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "long org.elasticsearch.common.io.Streams.copy(java.io.InputStream, java.io.OutputStream)"}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "diZf6hi5AquwbpyXsV-WVQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "io.netty.channel.Channel io.netty.channel.AbstractChannel.read()"}, "line": {"number": 290}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4Oh7C2JW2-6SkQ-_bQ2jPgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "BitSetIterator.java"}, "function": {"name": "int org.apache.lucene.util.BitSetIterator.docID()"}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JeP44NNCWCoJ01j9P5RllgAAAAAAAACg"}} -{"Stackframe": {"file": {"name": "SearchResponse.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.action.search.SearchResponse.innerToXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 24}, "line": {"number": 299}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cQ6Qsfe6NvfD6UlZmix01AAAAAAAAABB"}} -{"Stackframe": {"file": {"name": "AbstractNioByteChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read()", "offset": 14}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2mlzHMlWgLtS4AXchUZGuQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$4682.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc"}} -{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.internal.node.NodeClient)", "offset": 16}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXWj9"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/tracer.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.collectIntervalCacheMetrics.func1"}, "line": {"number": 177}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jRm5GYz0vdCovh1sp2XZ0AAAAAAAAAHz"}} -{"Stackframe": {"file": {"name": "ReplicationTracker.java"}, "function": {"name": "void org.elasticsearch.index.seqno.ReplicationTracker.updateFromMaster(long, java.util.Set, org.elasticsearch.cluster.routing.IndexShardRoutingTable)", "offset": 42}, "line": {"number": 1101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9YfSdWjTHtXOXD-P-YJ-oQAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.read(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 3}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAALTa1"}} -{"Stackframe": {"file": {"name": "crypto/tls/conn.go"}, "function": {"name": "crypto/tls.(*Conn).readRecordOrCCS"}, "line": {"number": 616}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dDeMCKGJE8xF0l02PyPQKgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.indices.cluster.IndicesClusterStateService$AllocatedIndex org.elasticsearch.indices.IndicesService.indexService(org.elasticsearch.index.Index)"}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rbwR-ACr3s5lHPzJRwgUNgAAAAAAAABl"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.io.stream.StreamInput.readString()", "offset": 18}, "line": {"number": 441}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8NNZPX4WzZU8wwEhaddYdwAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction$2.doRun()", "offset": 1}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BRiR5cdugYEExyMetUnOqAAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$7020+0x0000000801e510b8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3zXCUNpYxjlSLDJ08OaDVAAAAAAAAAOe"}} -{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction$BulkOperation.doRun()", "offset": 111}, "line": {"number": 590}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiFwc"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/netlink_linux.go"}, "function": {"name": "syscall.NetlinkRIB"}, "line": {"number": 68}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fGIJruj_Kk2wKVfC22qXQgAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.lambda$doExecute$3(org.elasticsearch.action.search.SearchRequest, org.elasticsearch.tasks.Task, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.action.ActionListener, org.elasticsearch.search.builder.SearchSourceBuilder)", "offset": 10}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlHoR"}} -{"Stackframe": {"function": {"name": "ip_rcv_finish_core.isra.18"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABx"}} -{"Stackframe": {"file": {"name": "BKDReader.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDReader.addAll(org.apache.lucene.util.bkd.BKDReader$IntersectState, boolean)", "offset": 17}, "line": {"number": 391}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0E4KEPyy66WCTzsuPGMCTgAAAAAAAABo"}} -{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$AsyncAfterWriteAction.run()", "offset": 17}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ub0yrV1DAC67s4TYqKh50AAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$handleIndexActionAuthorizationResult$15(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, java.lang.Void)"}, "line": {"number": 549}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZPIrAiTSLAkXO9AZm4sjdQAAAAAAAACN"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.io.stream.StreamInput.readGenericValue()", "offset": 3}, "line": {"number": 732}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "neOkLg7Birx-EWGBuoP5rgAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.incomingRequest(org.elasticsearch.http.HttpRequest, org.elasticsearch.http.HttpChannel)", "offset": 3}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Mt1DHzo1jNsmWdnQq5kJYwAAAAAAAABO"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CR_orhXYgPjlsF3bAh1bcAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "sun.security.ssl.Ciphertext sun.security.ssl.SSLEngineImpl.encode(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)"}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3gDxzJnNA7N984KflEQ98gAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeSystemUser(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 620}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B_IRgbCQC1IPEoVkHKMOTwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromIndexMetadata(org.elasticsearch.cluster.metadata.IndexMetadata)"}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BpjC-8pIlVVLzRZabfYgbwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "SegmentCommitInfo.java"}, "function": {"name": "java.util.Collection org.apache.lucene.index.SegmentCommitInfo.files()"}, "line": {"number": 241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hlBuXaLTryBXsnmcprSPLgAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "long org.elasticsearch.index.translog.Translog.findEarliestLastModifiedAge(long, java.lang.Iterable, org.elasticsearch.index.translog.TranslogWriter)", "offset": 2}, "line": {"number": 452}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-7Yc1j0nWYZ4ezqXtB5KlAAAAAAAAAEC"}} -{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "java.util.regex.Pattern$CharPredicate java.util.regex.Pattern.range(java.util.regex.Pattern$BitClass)", "offset": 49}, "line": {"number": 2850}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "16d9G7LjDZ-fFf5SdDfYnwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANp-d"}} -{"Stackframe": {"function": {"name": "proc_reg_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWZP"}} -{"Stackframe": {"function": {"name": "__snmp6_fill_stats64.isra.49"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uWTQ7-_O66qoMSOpzHyKowAAAAAAAAB5"}} -{"Stackframe": {"file": {"name": "Matcher.java"}, "function": {"name": "boolean java.util.regex.Matcher.match(int, int)", "offset": 12}, "line": {"number": 1756}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oY_bCiKFNh6Ywp_edkpgUQAAAAAAAABZ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 89}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "t_1EfTZ4mDx9E51ZLT70_wAAAAAAAAEg"}} -{"Stackframe": {"file": {"name": "TranslogWriter.java"}, "function": {"name": "boolean org.elasticsearch.index.translog.TranslogWriter.syncUpTo(long)", "offset": 37}, "line": {"number": 489}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VfERBKEBmx96DrPNYn5rRwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "RamUsageEstimator.java"}, "function": {"name": "long org.apache.lucene.util.RamUsageEstimator.shallowSizeOf(java.lang.Object)", "offset": 5}, "line": {"number": 573}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fNhSD70xDQrz7J48eeJThwAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.computeIfAbsent(java.lang.Object, java.util.function.Function)", "offset": 9}, "line": {"number": 1202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_ChZ"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/netlink.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2.(*NetlinkClient).Receive"}, "line": {"number": 189}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HYCPABbHg3v8ZSX1NQW6ywAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Header.java"}, "function": {"name": "void org.elasticsearch.transport.Header.finishParsingHeader(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YQywd7BcCE2h4hN9hN7NgAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "DocIdSetIterator.java"}, "function": {"name": "int org.apache.lucene.search.DocIdSetIterator$2.docID()"}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgCV"}} -{"Stackframe": {"function": {"name": "do_softirq.part.20"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wUZIVedHlYEif3XTrW4qUgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "LongPipeline.java"}, "function": {"name": "java.util.OptionalLong java.util.stream.LongPipeline.min()"}, "line": {"number": 461}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wbtJcWeJtbauPpFOHZDjTAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline$5$1.accept(java.lang.Object)"}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo"}} -{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.nio.channels.FileChannel sun.nio.fs.UnixChannelFactory.newFileChannel(int, sun.nio.fs.UnixPath, java.lang.String, java.util.Set, int)", "offset": 17}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qvNVcLOt_ffF8fUAgdlifgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "org.elasticsearch.common.transport.TransportAddress[] org.elasticsearch.transport.TcpTransport.addressesFromString(java.lang.String)"}, "line": {"number": 505}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KiuRpTMprQriC2lNirrb4wAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.runRequestInterceptors(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 553}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jA6JkQ0PFn46mJYMDk3jtwAAAAAAAABb"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readGenericMap(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier, org.elasticsearch.common.CheckedFunction)", "offset": 8}, "line": {"number": 337}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QmPhYIH1ktF1VKTQGS_97wAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4.encodeLiterals(byte[], int, int, int, org.apache.lucene.store.DataOutput)", "offset": 8}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmMhu"}} -{"Stackframe": {"function": {"name": "snmp_get_cpu_field"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorize(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 48}, "line": {"number": 232}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LUc8giwpRnW-thOUnKqKcgAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.writeValuesSingleBlock(org.apache.lucene.index.SortedNumericDocValues, long, int, long, long, java.util.Map)", "offset": 3}, "line": {"number": 347}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi6gJ"}} -{"Stackframe": {"function": {"name": "simple_copy_to_iter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo)", "offset": 6}, "line": {"number": 5994}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OPiEm7T39rpNQ5ImKH3G-QAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentParser$Token org.elasticsearch.xcontent.provider.json.JsonXContentParser.currentToken()"}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VGrDFWQNW44E9kj0nxmkbAAAAAAAAAB6"}} -{"Stackframe": {"file": {"name": "NodeInfo.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.node.info.NodeInfo.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 19}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pxFz17lb-voh9uZicvdXWAAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI$BitSetConjunctionDISI.advance(int)", "offset": 1}, "line": {"number": 310}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QKXbkKgbO161p-cpBhN6hwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "MessageToMessageCodec.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageCodec.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)"}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NERUEOUHR2SUErZWdQGwyQAAAAAAAACb"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "org.apache.lucene.index.IndexingChain$PerField org.apache.lucene.index.IndexingChain.getOrAddPerField(java.lang.String)", "offset": 26}, "line": {"number": 760}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R683kTk6tW8OrTWlS02nkwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.SegmentMerger$$Lambda$8789+0x000000080279e770.merge(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.SegmentReadState)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iwGeqNv30_OStpNiHW5afwAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Index org.elasticsearch.index.shard.IndexShard.prepareIndex(org.elasticsearch.index.mapper.MapperService, org.elasticsearch.index.mapper.SourceToParse, long, long, long, org.elasticsearch.index.VersionType, org.elasticsearch.index.engine.Engine$Operation$Origin, long, boolean, long, long, long)", "offset": 8}, "line": {"number": 1007}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AMk_trcRDqgWwE9O1EQdVAAAAAAAAABf"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)", "offset": 7}, "line": {"number": 582}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DoZEBlPjZAc4WVFAaDVkRAAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDWriter$OneDimensionBKDWriter.add(byte[], int)", "offset": 4}, "line": {"number": 717}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WLlhHIaUYEsZJXHayBSVSAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "BigInteger.java"}, "function": {"name": "java.math.BigInteger java.math.BigInteger.oddModPow(java.math.BigInteger, java.math.BigInteger)"}, "line": {"number": 2923}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAVPLh"}} -{"Stackframe": {"function": {"name": "__nla_parse"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LQDSx6vga0zDZ5JbsP5kmgAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "ChannelOutboundBuffer.java"}, "function": {"name": "boolean io.netty.channel.ChannelOutboundBuffer.remove()", "offset": 15}, "line": {"number": 272}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X31knMc676bIIEUjaHa0MQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesConsumer org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.getInstance(org.apache.lucene.index.FieldInfo)"}, "line": {"number": 162}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1F_4eN2zNglbo7R6puFiTgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode.implGCMCrypt(byte[], int, int, byte[], int, byte[], int, com.sun.crypto.provider.GCTR, com.sun.crypto.provider.GHASH)"}, "line": {"number": 582}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FlEmrMapoRVqavpRHEspQQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.decRef(java.lang.Object)"}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pBYfPcAVtuhSUlQSUeVhQwAAAAAAAACg"}} -{"Stackframe": {"file": {"name": "SSLKeyExchange.java"}, "function": {"name": "sun.security.ssl.SSLPossession[] sun.security.ssl.SSLKeyExchange.createPossessions(sun.security.ssl.HandshakeContext)", "offset": 35}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Gv_ayxKXPfWxpQJLOlFiZgAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "ThreadLocal.java"}, "function": {"name": "void java.lang.ThreadLocal$ThreadLocalMap.set(java.lang.ThreadLocal, java.lang.Object)", "offset": 6}, "line": {"number": 486}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WV6g6bHiSUaQ_18ghJ6gvwAAAAAAAAPq"}} -{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader$BlockState.doReset(int)", "offset": 83}, "line": {"number": 564}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "ProtectionDomain.java"}, "function": {"name": "boolean java.security.ProtectionDomain.impliesWithAltFilePerm(java.security.Permission)", "offset": 2}, "line": {"number": 353}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z3OVwE39ldWnCO3e3J2ChQAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "long org.elasticsearch.index.translog.Translog.earliestLastModifiedAge()", "offset": 2}, "line": {"number": 409}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1OmoiusCl7Us2blgt7LZvgAAAAAAAACA"}} -{"Stackframe": {"file": {"name": "HttpURLConnection.java"}, "function": {"name": "java.net.SocketPermission sun.net.www.protocol.http.HttpURLConnection.URLtoSocketPermission(java.net.URL)", "offset": 25}, "line": {"number": 1164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACuCy7"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_process_metadata/add_process_metadata.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_process_metadata.(*addProcessMetadata).Run"}, "line": {"number": 163}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "giO_M_zlu3womJVgYVikawAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "IndexLifecycleService.java"}, "function": {"name": "void org.elasticsearch.xpack.ilm.IndexLifecycleService.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 2}, "line": {"number": 242}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u7Sw2JLgMcObdTC5wHdXjgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$AsyncAfterWriteAction.lambda$run$1(java.lang.Exception)", "offset": 1}, "line": {"number": 506}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrkG"}} -{"Stackframe": {"function": {"name": "htab_map_get_next_key"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACjs1k"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/reflect/value.go"}, "function": {"name": "reflect.Value.SetMapIndex"}, "line": {"number": 98}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mm7pA8Vo6frfLprU_GjPaQAAAAAAAACR"}} -{"Stackframe": {"file": {"name": "FieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.FieldsConsumer.merge(org.apache.lucene.index.MergeState, org.apache.lucene.codecs.NormsProducer)", "offset": 18}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mElwt1Dp4YSxqVbIbt9WBgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "BufferedChecksumIndexInput.java"}, "function": {"name": "void org.apache.lucene.store.BufferedChecksumIndexInput.close()"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ML0pN8-bI2jezXitVRzNNgAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "ResourceWatcherService.java"}, "function": {"name": "void org.elasticsearch.watcher.ResourceWatcherService$ResourceMonitor.run()", "offset": 2}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zDs4yc-dGN2Q-peutZekXgAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 2}, "line": {"number": 552}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADH_-b"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/queue/memqueue/produce.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/queue/memqueue.(*forgetfulProducer).makeRequest"}, "line": {"number": 79}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG"}} -{"Stackframe": {"function": {"name": "do_syscall_64"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F0PU7bQ8aSr5vRj-z9gSNQAAAAAAAABR"}} -{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "java.util.concurrent.RunnableScheduledFuture java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()", "offset": 29}, "line": {"number": 1193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChYmW"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/stack.go"}, "function": {"name": "runtime.newstack"}, "line": {"number": 1082}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_vnxdlrLVdiyCEIVqNBMFAAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.OutboundMessage, org.elasticsearch.action.ActionListener)", "offset": 10}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VGrDFWQNW44E9kj0nxmkbAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "NodeInfo.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.node.info.NodeInfo.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 6}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABV0Jh"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/processmanager/manager.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/processmanager.(*ProcessManager).symbolizeFrame"}, "line": {"number": 503}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YgsSLUYpiS9cWv6amzrEpAAAAAAAAABu"}} -{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 19}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4pD3shcvlMj_8ybo7T2TVAAAAAAAAADn"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.handleIncomingPublishRequest(org.elasticsearch.transport.BytesTransportRequest)", "offset": 33}, "line": {"number": 421}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iRzNGxTlTqWMN66MrMvwHAAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "void org.apache.lucene.index.SegmentReader.doClose()", "offset": 3}, "line": {"number": 222}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QtMelJKn2GMpVgIdbCShVAAAAAAAAACK"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermission.impliesIgnoreMask(java.io.FilePermission)", "offset": 23}, "line": {"number": 612}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEyo2"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/os_linux.go"}, "function": {"name": "runtime.futexsleep"}, "line": {"number": 52}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Zq3LezbKFeLCpaj2U6KLuwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "TransportShardRefreshAction.java"}, "function": {"name": "org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaResult org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction.lambda$shardOperationOnReplica$1(org.elasticsearch.index.shard.IndexShard)"}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "36WCeR5NbgRZnRrGA9E9SgAAAAAAAACz"}} -{"Stackframe": {"file": {"name": "BaseRestHandler.java"}, "function": {"name": "void org.elasticsearch.rest.BaseRestHandler.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient)", "offset": 21}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTgt"}} -{"Stackframe": {"function": {"name": "__d_path"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pkodb9j7PRaXQDoDilSJigAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4.compress(byte[], int, int, org.apache.lucene.store.DataOutput, org.apache.lucene.util.compress.LZ4$HashTable)", "offset": 11}, "line": {"number": 409}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorize$2(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo)", "offset": 1}, "line": {"number": 265}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xF4yGyA2KnTCi8zdSVp9ZAAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction$CCSActionListener.maybeFinish()", "offset": 5}, "line": {"number": 1375}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgVqN"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map.go"}, "function": {"name": "runtime.mapaccess1"}, "line": {"number": 1109}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL2Y4"}} -{"Stackframe": {"function": {"name": "evict"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SQjdgx2wqIxyPHp2kbwpQQAAAAAAAABZ"}} -{"Stackframe": {"file": {"name": "AbstractAsyncTask.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractAsyncTask.rescheduleIfNecessary()", "offset": 10}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gvfqv8XsdCrMz1u0cPr7iwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Socket.java"}, "function": {"name": "void java.net.Socket$SocketOutputStream.write(byte[], int, int)"}, "line": {"number": 1052}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yu2rdEE9oNx2HZGvLTWAEQAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$SortedSetEntry org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer.readSortedSet(org.apache.lucene.store.IndexInput)", "offset": 4}, "line": {"number": 263}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TdwLOY0C6NYFuVVgfM0c5wAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "SocketChannelImpl.java"}, "function": {"name": "int sun.nio.ch.SocketChannelImpl.read(java.nio.ByteBuffer)", "offset": 18}, "line": {"number": 417}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h2KUe_utEVQ15vccn1q_UgAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "ChildMemoryCircuitBreaker.java"}, "function": {"name": "void org.elasticsearch.common.breaker.ChildMemoryCircuitBreaker.addEstimateBytesAndMaybeBreak(long, java.lang.String)", "offset": 20}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACw1EE"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/prometheus/procfs@v0.6.0/stat.go"}, "function": {"name": "github.com/prometheus/procfs.parseCPUStat"}, "line": {"number": 114}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "com.typesafe.config.impl.AbstractConfigValue com.typesafe.config.impl.SimpleConfig.findKeyOrNull(com.typesafe.config.impl.AbstractConfigObject, java.lang.String, com.typesafe.config.ConfigValueType, com.typesafe.config.impl.Path)"}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yC54Y8eHwlxSGpQoib9B3wAAAAAAAACN"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.finishCommit()", "offset": 32}, "line": {"number": 4098}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACjB1T"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/stat_linux.go"}, "function": {"name": "os.fillFileStatFromSys"}, "line": {"number": 16}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FYnnqLZr6bqb8GInWW-SpgAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "SystemIndices.java"}, "function": {"name": "org.elasticsearch.indices.SystemIndexDescriptor org.elasticsearch.indices.SystemIndices.findMatchingDescriptor(java.lang.String)", "offset": 3}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFE1i"}} -{"Stackframe": {"function": {"name": "do_futex"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gbCFQS2suYv46rP_aUsebAAAAAAAAAL_"}} -{"Stackframe": {"file": {"name": "FieldsIndexWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.FieldsIndexWriter.finish(int, long, org.apache.lucene.store.IndexOutput)", "offset": 61}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QEcHhqXCi5-qkJh0R6a7kgAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "CloseableHttpClient.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.impl.client.CloseableHttpClient.execute(org.apache.http.client.methods.HttpUriRequest, org.apache.http.protocol.HttpContext)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes sun.nio.fs.UnixFileSystemProvider.readAttributes(java.nio.file.Path, java.lang.Class, java.nio.file.LinkOption[])", "offset": 8}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI"}} -{"Stackframe": {"function": {"name": "futex_wait_queue_me"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9JMKs9KQTgczUAMQRnFzHQAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "DisjunctionDISIApproximation.java"}, "function": {"name": "int org.apache.lucene.search.DisjunctionDISIApproximation.advance(int)", "offset": 2}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwAoz"}} -{"Stackframe": {"function": {"name": "swapgs_restore_regs_and_return_to_usermode"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lLSqJ_lK-jxr01mEXBTexgAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.read(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)"}, "line": {"number": 282}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0Cdt9wyWxnG2B-xGXMO6owAAAAAAAABp"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.xfer(java.lang.Object, boolean, int, long)", "offset": 10}, "line": {"number": 605}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k2iriyOmr9_9GjSrH7z_jwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object java.lang.management.ManagementFactory$$Lambda$261+0x0000000800d5ac40.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m1DxIW9JZBLmNb4AyJUmVAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SingletonSortedNumericDocValues.java"}, "function": {"name": "long org.apache.lucene.index.SingletonSortedNumericDocValues.nextValue()"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nfqsljljgnxi4qqym6m8IQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkPermission(java.security.Permission)"}, "line": {"number": 411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "LinuxFileSystemProvider.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes sun.nio.fs.LinuxFileSystemProvider.readAttributes(java.nio.file.Path, java.lang.Class, java.nio.file.LinkOption[])", "offset": 5}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m-i3pqvNoPRjOJ3b3sEiiwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DocIDMerger.java"}, "function": {"name": "org.apache.lucene.index.DocIDMerger$Sub org.apache.lucene.index.DocIDMerger$SequentialDocIDMerger.next()"}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GaTWB84HBLHkoSJAOUFJ2gAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "int sun.nio.fs.UnixPath.compareTo(java.nio.file.Path)", "offset": 15}, "line": {"number": 759}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiKcM"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.Getrusage"}, "line": {"number": 490}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kS74ucMYVsOCEN6lWzqZlwAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.util.stream.Sink java.util.stream.AbstractPipeline.wrapAndCopyInto(java.util.stream.Sink, java.util.Spliterator)"}, "line": {"number": 499}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ntSOf1WNBk1BGpf0SzDxUQAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "ClientScrollableHitSource.java"}, "function": {"name": "void org.elasticsearch.index.reindex.ClientScrollableHitSource.doStart(org.elasticsearch.index.reindex.RejectAwareActionListener)", "offset": 5}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjs"}} -{"Stackframe": {"function": {"name": "vfs_statx"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LT5lr845yiJBLJcYHx5FbQAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "java.lang.Object java.util.stream.ReferencePipeline.collect(java.util.stream.Collector)", "offset": 8}, "line": {"number": 578}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACw2Ht"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/prometheus/procfs@v0.6.0/stat.go"}, "function": {"name": "github.com/prometheus/procfs.FS.Stat"}, "line": {"number": 187}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vcAmytl_wXdfdPt8SRSHZgAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "BKDReader.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDReader.intersect(org.apache.lucene.index.PointValues$IntersectVisitor)"}, "line": {"number": 362}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACIYpp"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/binary/binary.go"}, "function": {"name": "encoding/binary.Write"}, "line": {"number": 375}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rCyWXUWayzNVPTKj9LTqggAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$DirectResponseChannel.processResponse(org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 1461}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f-LSn9wX46A3CkgiZY0xDQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "boolean java.util.function.Predicate$$Lambda$4080+0x0000000801d14f78.test(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rULn636vgYlrbzWk6rvndwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6681+0x000000080240ced0.getAsync(org.elasticsearch.action.ActionListener)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DYR4nla6rR5CkjYgb2INPQAAAAAAAACy"}} -{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.merge(org.apache.lucene.index.MergeState)", "offset": 21}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L6zK1j3SbhClCg7g1r2ArwAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "boolean io.netty.channel.AbstractChannelHandlerContext.safeExecute(io.netty.util.concurrent.EventExecutor, java.lang.Runnable, io.netty.channel.ChannelPromise, java.lang.Object, boolean)", "offset": 3}, "line": {"number": 1165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGJ6E"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.Fsync"}, "line": {"number": 413}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IFHX6oXBjL3Y93SHOMXcKQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "FloatingDecimal.java"}, "function": {"name": "double jdk.internal.math.FloatingDecimal.parseDouble(java.lang.String)"}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL5eG"}} -{"Stackframe": {"function": {"name": "__fdget_pos"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z3imu7TppL2XUId5Y_cXQgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$Searcher org.elasticsearch.index.engine.Engine.acquireSearcher(java.lang.String, org.elasticsearch.index.engine.Engine$SearcherScope)"}, "line": {"number": 699}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4LaiotHNGYdIR8tBjAPtZwAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "java.util.Map org.elasticsearch.indices.IndicesService.statsByShard(org.elasticsearch.indices.IndicesService, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 5}, "line": {"number": 420}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vk0qeOGVpFFblHDZl22YrAAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "IndicesPermission.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authz.permission.IndicesPermission$IndexResource.checkIndex(org.elasticsearch.xpack.core.security.authz.permission.IndicesPermission$Group)", "offset": 6}, "line": {"number": 325}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YqT3WwhcvvvGwqhq_677_AAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ScopedMemoryAccess.java"}, "function": {"name": "void jdk.internal.misc.ScopedMemoryAccess.copyMemory(jdk.internal.misc.ScopedMemoryAccess$Scope, jdk.internal.misc.ScopedMemoryAccess$Scope, java.lang.Object, long, java.lang.Object, long, long)"}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Mjtyswsr5RSXvAnPmILipAAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "DataOutput.java"}, "function": {"name": "void org.apache.lucene.store.DataOutput.writeInt(int)", "offset": 1}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Sc-7DBv3SRDl6MaEnNIV4QAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "int org.apache.lucene.index.SegmentMerger.mergeFields()", "offset": 2}, "line": {"number": 233}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "isA5sAubGPm1mkHKsussQgAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-2jFRd2_IccI_VSYieucdgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.support.AbstractClient$IndicesAdmin.refresh(org.elasticsearch.action.admin.indices.refresh.RefreshRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 1614}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HCW9gICkV36t4oXsjBpsdAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.incomingRequest(org.elasticsearch.http.HttpRequest, org.elasticsearch.http.HttpChannel)"}, "line": {"number": 308}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4_itTHDWzn3EJU9PNzfGcQAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "W3CTraceContextPropagator.java"}, "function": {"name": "io.opentelemetry.api.trace.SpanContext io.opentelemetry.api.trace.propagation.W3CTraceContextPropagator.extractImpl(java.lang.Object, io.opentelemetry.context.propagation.TextMapGetter)", "offset": 16}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE__O"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.park_m"}, "line": {"number": 2841}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OZWIsj7OdjypSl8wEuRRwwAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$1.onResponse(org.elasticsearch.action.ActionResponse)", "offset": 2}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AnAOjAZd8DreOTLSozMbLwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "HeadersUtils.java"}, "function": {"name": "int io.netty.handler.codec.HeadersUtils$1.size()"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBIH"}} -{"Stackframe": {"function": {"name": "futex_wait_queue_me"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UzBLcYsYZ48ySlpYqqKUBAAAAAAAAABq"}} -{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator.close()", "offset": 22}, "line": {"number": 1894}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "ContextPreservingActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.ContextPreservingActionListener.onResponse(java.lang.Object)", "offset": 1}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gJGX9YLt4oQVT1mGe0oQGgAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "AbstractDelegateHttpsURLConnection.java"}, "function": {"name": "void sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect()", "offset": 10}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_vQnn5CoIgbYDdfeZ_Rm8AAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "BufferedChecksum.java"}, "function": {"name": "void org.apache.lucene.store.BufferedChecksum.update(byte[], int, int)", "offset": 2}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "A5mZoCh9Fo4QCzvJIQSExgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "FutureTask.java"}, "function": {"name": "boolean java.util.concurrent.FutureTask.isDone()"}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAARPAa"}} -{"Stackframe": {"function": {"name": "security_file_open"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "r0uAbXjKmNhayHmzQb9jXgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "DigestBase.java"}, "function": {"name": "int sun.security.provider.DigestBase.implCompressMultiBlock0(byte[], int, int)", "offset": 1}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-t3Y"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/reader.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.(*Reader).CgroupsVersion"}, "line": {"number": 136}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YNTunKybilcdruNbkYh4bAAAAAAAAAC2"}} -{"Stackframe": {"file": {"name": "ForUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.ForUtil.decodeAndPrefixSum(int, org.apache.lucene.store.DataInput, long, long[])", "offset": 15}, "line": {"number": 532}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O-g6fZuLGa_Kh7O9W7kHmgAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 7}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEW90O"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/module/docker/network/network.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/module/docker/network.(*MetricSet).FullyQualifiedName"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.refresh(java.lang.String, org.elasticsearch.index.engine.Engine$SearcherScope, boolean)", "offset": 12}, "line": {"number": 1819}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kNeaLNe7WMgsUgZLaHboxgAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "Lucene90StoredFieldsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.StoredFieldsWriter org.apache.lucene.codecs.lucene90.Lucene90StoredFieldsFormat.fieldsWriter(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 12}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAABhW1"}} -{"Stackframe": {"function": {"name": "xfs_buf_find.isra.34"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pdQAoUQgmQmDpW5Yxy-WAQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.CopyBytesSocketChannel.writeToSocketChannel(java.nio.channels.SocketChannel, java.nio.ByteBuffer)"}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qCAXb4nsA8MBowrcfqVWbwAAAAAAAABd"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.commitInternal(org.apache.lucene.index.MergePolicy)", "offset": 17}, "line": {"number": 3770}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEUGZ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mbarrier.go"}, "function": {"name": "runtime.typedmemmove"}, "line": {"number": 170}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x2kVSC5V1lfN8QwGzPUmeQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.apache.lucene.search.Weight.bulkScorer(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I-sh7YDA3eXRF3pcvPl6xQAAAAAAAACG"}} -{"Stackframe": {"file": {"name": "AbstractBulkByQueryRestHandler.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentParser org.elasticsearch.index.reindex.AbstractBulkByQueryRestHandler.extractRequestSpecificFields(org.elasticsearch.rest.RestRequest, java.util.Map)", "offset": 14}, "line": {"number": 94}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w9eswkC_-PMr64MCf3DiPgAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "StringLatin1.java"}, "function": {"name": "boolean java.lang.StringLatin1.regionMatchesCI(byte[], int, byte[], int, int)", "offset": 5}, "line": {"number": 394}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R8TyePzzZR53bFjp9vZQuAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Setting$$Lambda$369+0x00000008013b4f10.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DJ2lZS85ClNgTnnEk8XThgAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI$BitSetConjunctionDISI.nextDoc()", "offset": 1}, "line": {"number": 304}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5E"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.normalizeCompound"}, "line": {"number": 238}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1vmWfRl7JvnIelrwmbOFDwAAAAAAAABT"}} -{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 17}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8oHQ4oPK7To4Ft-o_Rf-MAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.elasticsearch.core.internal.io.IOUtils.close(java.io.Closeable)", "offset": 1}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uu7OMtYBRK0AiqH-dZgGHQAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "CodecReader.java"}, "function": {"name": "long org.apache.lucene.index.CodecReader.ramBytesUsed()", "offset": 17}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuZy"}} -{"Stackframe": {"function": {"name": "ep_poll"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iDeUqi9fXDm_fNSrL17LBgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.get(java.lang.Object)"}, "line": {"number": 556}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ilROEXfY2pUH01XyVGW7lgAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "void co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.handleIntakeEvent(co.elastic.apm.agent.report.ReportingEvent, long, boolean)", "offset": 3}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mW1QO3T5kZR72H8FRXCCwwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "FixedBits.java"}, "function": {"name": "boolean org.apache.lucene.util.FixedBits.get(int)"}, "line": {"number": 34}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j38H0Ei9z2KFpOxhIepE8gAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.common.util.concurrent.ThreadContext.readHeadersFromStream(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 283}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC8CS1"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/beat/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/beat.init"}, "line": {"number": 44}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uCrYcJJKClqXMP74KTJEhQAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "NIOFSDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.apache.lucene.store.NIOFSDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 3}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "le8VfryMtJlEyXJeMd-6oAAAAAAAAAC-"}} -{"Stackframe": {"file": {"name": "NodeInfo.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.node.info.NodeInfo.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 23}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-3Q9G0-gEaLYyR0fofTdFgAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.addGlobalMetadataDocuments(org.elasticsearch.cluster.metadata.Metadata)", "offset": 1}, "line": {"number": 1085}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7skvoqQ_JlmRN5w43B7kuQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.access$600(org.apache.lucene.index.IndexWriter, java.util.Collection)"}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Bgl4-X9YCYcvVnIszn2YNAAAAAAAAABN"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 77}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "um3P1hPKCaJ6ax0qMqoxPgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.util.IOUtils$$Lambda$6488+0x0000000801ca1b50.close()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sXskcBz0UtWfdqfu0TDSqQAAAAAAAAEa"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 282}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.addListener(org.elasticsearch.action.ActionListener)"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAjErl"}} -{"Stackframe": {"file": {"name": "github.com/hashicorp/golang-lru@v0.5.4/simplelru/lru.go"}, "function": {"name": "github.com/hashicorp/golang-lru/simplelru.(*LRU).Get"}, "line": {"number": 74}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8cgcru2hcpNC8YThxIr0JwAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "ByteBufferIndexInput.java"}, "function": {"name": "org.apache.lucene.store.ByteBufferIndexInput org.apache.lucene.store.ByteBufferIndexInput.slice(java.lang.String, long, long)", "offset": 14}, "line": {"number": 434}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Tsx0vqyY9P-yze5xYzq4cQAAAAAAAADa"}} -{"Stackframe": {"file": {"name": "BooleanQuery.java"}, "function": {"name": "org.apache.lucene.search.Query org.apache.lucene.search.BooleanQuery.rewrite(org.apache.lucene.index.IndexReader)", "offset": 34}, "line": {"number": 270}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkoP3"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bytes/bytes.go"}, "function": {"name": "bytes.Index"}, "line": {"number": 1261}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZNIMXBN7NKTXUfXb93okMgAAAAAAAAC6"}} -{"Stackframe": {"file": {"name": "AbstractNioByteChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read()", "offset": 35}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SMooaRB4Ix5PbbJFOeJy_AAAAAAAAAIq"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 554}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zB4IvgA7bsMPLgsuCANUUAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ObjectName.java"}, "function": {"name": "void javax.management.ObjectName.(java.lang.String)", "offset": 1010}, "line": {"number": 1406}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexActionName(java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.accesscontrol.IndicesAccessControl, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 351}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SjePYWwKalqPF7fBjhLglgAAAAAAAABe"}} -{"Stackframe": {"file": {"name": "TransportBroadcastByNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.onShardOperation(org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$NodeRequest, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionListener)", "offset": 39}, "line": {"number": 542}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.mergeMiddle(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergePolicy)", "offset": 72}, "line": {"number": 4759}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ContextPreservingActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.ContextPreservingActionListener.onResponse(java.lang.Object)"}, "line": {"number": 30}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzwr"}} -{"Stackframe": {"function": {"name": "__audit_syscall_entry"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sGQwMzA_WyDKcRW8mwvS7wAAAAAAAACE"}} -{"Stackframe": {"file": {"name": "ByteQuadsCanonicalizer.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._findSecondary(int, int)", "offset": 15}, "line": {"number": 641}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k-oYEuE0qNzcsmMdylxs5gAAAAAAAAEK"}} -{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.fs.UnixChannelFactory.open(int, sun.nio.fs.UnixPath, java.lang.String, sun.nio.fs.UnixChannelFactory$Flags, int)", "offset": 58}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CVegIjspc9VOluOpQVnKFgAAAAAAAABB"}} -{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.getInternal(long)", "offset": 5}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "t9WFJw2zltKHNxeYswbb1gAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "org.elasticsearch.indices.cluster.IndicesClusterStateService$Shard org.elasticsearch.indices.cluster.IndicesClusterStateService$AllocatedIndices.getShardOrNull(org.elasticsearch.index.shard.ShardId)"}, "line": {"number": 907}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "muP6clMnO_x87qmA5qXiUwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.close()"}, "line": {"number": 277}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YNvLePk3bv25BUHN3KzEXQAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 6}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACp77w"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/vendor/golang.org/x/sys/cpu/cpu.go"}, "function": {"name": "vendor/golang.org/x/sys/cpu.processOptions"}, "line": {"number": 230}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAB5NX"}} -{"Stackframe": {"function": {"name": "xfs_create"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "com.typesafe.config.impl.AbstractConfigValue com.typesafe.config.impl.SimpleConfig.findKeyOrNull(com.typesafe.config.impl.AbstractConfigObject, java.lang.String, com.typesafe.config.ConfigValueType, com.typesafe.config.impl.Path)", "offset": 5}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DsmnB-99lpR3jSBsZQO0JQAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "byte[] org.elasticsearch.xpack.core.security.authc.support.BCrypt.crypt_raw(byte[], byte[], int, int[])", "offset": 10}, "line": {"number": 1562}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Xz55hy-jKO48vnZBfsLxxgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext org.elasticsearch.common.util.concurrent.ThreadContext.newStoredContext()"}, "line": {"number": 309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UGAPUw2d5-4XxhgrPyPBigAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "int io.netty.channel.nio.NioEventLoop.select(long)", "offset": 1}, "line": {"number": 803}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ky2-9li99bYgpwxchq6l9gAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "AbstractCollection.java"}, "function": {"name": "boolean java.util.AbstractCollection.containsAll(java.util.Collection)", "offset": 1}, "line": {"number": 309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5HtrDNFxENN7do3MGsHylQAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 285}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeClusterAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFrPy"}} -{"Stackframe": {"function": {"name": "kauditd_send_queue"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sZpPWBZ2sVOy9PmQsNzK_AAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeString(java.lang.String)"}, "line": {"number": 402}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fkbxUTZgljnk71ZMnqJnyAAAAAAAAABv"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "long[] org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.writeValues(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer, boolean)", "offset": 15}, "line": {"number": 205}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACp73v"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/io/ioutil/ioutil.go"}, "function": {"name": "io/ioutil.init"}, "line": {"number": 84}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tqxIWD7h3nTRM9IIo79qNQAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "DateTimeFormatter.java"}, "function": {"name": "java.lang.Object java.time.format.DateTimeFormatter$ClassicFormat.parseObject(java.lang.String, java.text.ParsePosition)", "offset": 3}, "line": {"number": 2296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "20wTwcQoP3KLWSoSTerwRwAAAAAAAABm"}} -{"Stackframe": {"file": {"name": "AbstractSpan.java"}, "function": {"name": "void co.elastic.apm.agent.impl.transaction.AbstractSpan.end(long)", "offset": 17}, "line": {"number": 563}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA_6E"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.findRunnable"}, "line": {"number": 2829}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "RestActions.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestActions.nodesResponse(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params, org.elasticsearch.action.support.nodes.BaseNodesResponse)", "offset": 3}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sEvz-Dobk4l0YVMnZfboUgAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "java.lang.Throwable java.lang.Throwable.fillInStackTrace()", "offset": 2}, "line": {"number": 820}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h_QroixBMtZeI1zG0ozyLgAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "TieredMergePolicy.java"}, "function": {"name": "java.util.List org.apache.lucene.index.TieredMergePolicy.getSortedBySegmentSize(org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 3}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x1ribCUra3vmcF-jiTFORAAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "VersionsAndSeqNoResolver.java"}, "function": {"name": "org.elasticsearch.common.lucene.uid.VersionsAndSeqNoResolver$DocIdAndSeqNo org.elasticsearch.common.lucene.uid.VersionsAndSeqNoResolver.loadDocIdAndSeqNo(org.apache.lucene.index.IndexReader, org.apache.lucene.index.Term)", "offset": 7}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QVg0XAOEbp3JKK1NFLqVYQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.read(java.io.FileDescriptor, java.nio.ByteBuffer, long, sun.nio.ch.NativeDispatcher)"}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIYH"}} -{"Stackframe": {"function": {"name": "ip_local_deliver_finish"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jiqmNc5cRiav2wA-qp0PAgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndexOrDocValuesQuery.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.apache.lucene.search.IndexOrDocValuesQuery$1.scorerSupplier(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iODh53N_5E36y5qsIo39CQAAAAAAAABO"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 8}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wSyck1hQlqfoA9Ea8siSLAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "OTelSpanContext.java"}, "function": {"name": "java.lang.String co.elastic.apm.agent.opentelemetry.sdk.OTelSpanContext.getSpanId()"}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X8YzaoKCeAD8Cw8XQyFnXgAAAAAAAABt"}} -{"Stackframe": {"file": {"name": "KeywordFieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.KeywordFieldMapper.indexValue(org.elasticsearch.index.mapper.DocumentParserContext, java.lang.String)", "offset": 19}, "line": {"number": 1003}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gO6kDS9N3EuxPdxaJ2XycwAAAAAAAAIC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 514}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.mergeMiddle(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergePolicy)", "offset": 72}, "line": {"number": 4757}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gk079EBdEVh5ErpJ6XBaYwAAAAAAAABO"}} -{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesProducer org.apache.lucene.index.SegmentReader.initDocValuesProducer()", "offset": 10}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S_wRvQ6F6la5_75vMxMUGAAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "Lucene90SegmentInfoFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90SegmentInfoFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 2}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kFFdZ7msIKV-4ckdKk9uCgAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 2}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fKA-P04oGeqRcPbw_KcplwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "RestUpdateByQueryAction.java"}, "function": {"name": "org.elasticsearch.index.reindex.AbstractBulkByScrollRequest org.elasticsearch.index.reindex.RestUpdateByQueryAction.buildRequest(org.elasticsearch.rest.RestRequest)"}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uZsihCfm-GOZVCm4rBT6LQAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "org.elasticsearch.index.Index[] org.elasticsearch.cluster.metadata.IndexNameExpressionResolver.concreteIndices(org.elasticsearch.cluster.ClusterState, org.elasticsearch.action.support.IndicesOptions, boolean, long, java.lang.String[])", "offset": 1}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAl1AE"}} -{"Stackframe": {"function": {"name": "tcp_v4_rcv"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LzmLpiPfmTPhvDqa5Vct1AAAAAAAAABF"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.value(java.lang.Iterable, boolean)", "offset": 16}, "line": {"number": 924}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALp8M"}} -{"Stackframe": {"function": {"name": "do_unlinkat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE_1r"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.checkTimers"}, "line": {"number": 2782}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hpS1QtdrBQjGg-LCbfqeSAAAAAAAAFjZ"}} -{"Stackframe": {"function": {"name": "br_pass_frame_up"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4Nbh2qu5FSYDYvePocfslwAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", "offset": 6}, "line": {"number": 1116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1Rs5auAL8MkDEq2o8XvWFgAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.RestMainAction$$Lambda$6991+0x0000000801e5d668.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oYJNOP9WHbW7VDM0lQ752AAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "OsProbe.java"}, "function": {"name": "short org.elasticsearch.monitor.os.OsProbe.getSystemCpuPercent()"}, "line": {"number": 218}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IlG1oGvMr2iYvhrqxgQozwAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeBulkItems$20(java.util.Set, org.elasticsearch.action.ActionListener)"}, "line": {"number": 822}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fFtXuenTBEiIanE9ZLS9KQAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "org.elasticsearch.cluster.ClusterState org.elasticsearch.cluster.ClusterState$ClusterStateDiff.apply(org.elasticsearch.cluster.ClusterState)", "offset": 12}, "line": {"number": 812}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UZRVT3lZFuhEnF3-BZs7cwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction$$Lambda$6938+0x0000000802476750.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WAB0fvH6ioTO4VaJeYjuEAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "PeerFinder.java"}, "function": {"name": "boolean org.elasticsearch.discovery.PeerFinder.access$300(org.elasticsearch.discovery.PeerFinder)"}, "line": {"number": 59}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vXkwfvj7jlhBJyKg0XGvywAAAAAAAAB2"}} -{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 31}, "line": {"number": 248}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GBJ1zKS_b9jP7AxB92tjCQAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeClusterAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "clGseV0LGavUI1_g3b_OoAAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.lambda$getAuthenticatorConsumer$3(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.security.authc.Authenticator, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.security.authc.Authenticator$Result)", "offset": 3}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlaB"}} -{"Stackframe": {"function": {"name": "show_mnt_opts.isra.2"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4lmHgkrzdreyo27aTsC9aAAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.executeBulk(org.elasticsearch.tasks.Task, org.elasticsearch.action.bulk.BulkRequest, long, org.elasticsearch.action.ActionListener, java.lang.String, org.elasticsearch.common.util.concurrent.AtomicArray, java.util.Map)"}, "line": {"number": 742}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ljU-LP57RlgNPZ2rSqp_EAAAAAAAAACT"}} -{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "java.lang.Object java.util.concurrent.ConcurrentHashMap.replaceNode(java.lang.Object, java.lang.Object, java.lang.Object)", "offset": 19}, "line": {"number": 1130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DYw6-LyNoVsQdM43hcJCegAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "LockSupport.java"}, "function": {"name": "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)", "offset": 1}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADHhnO"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/pipeline/client.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/pipeline.(*client).publish"}, "line": {"number": 83}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "paeptaXHRDYD67F7ORC0twAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "org.elasticsearch.common.collect.ImmutableOpenMap org.elasticsearch.common.io.stream.StreamInput.readImmutableMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader)", "offset": 6}, "line": {"number": 710}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZnU"}} -{"Stackframe": {"function": {"name": "__handle_mm_fault"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hHi-c42PvbwAHHG7--kJBgAAAAAAAAC9"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 40}, "line": {"number": 313}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP6"}} -{"Stackframe": {"function": {"name": "do_filp_open"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFryM"}} -{"Stackframe": {"function": {"name": "audit_log_end"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lICW2gRy3TXlIYomtjSJtwAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.copyOneDoc(org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader, int)", "offset": 3}, "line": {"number": 516}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9JMKs9KQTgczUAMQRnFzHQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "DisjunctionDISIApproximation.java"}, "function": {"name": "int org.apache.lucene.search.DisjunctionDISIApproximation.advance(int)", "offset": 3}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAARNmC"}} -{"Stackframe": {"function": {"name": "security_file_permission"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b2ckm-0wQN1Adu_SQOHiPwAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "FsDirectoryFactory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.elasticsearch.index.store.FsDirectoryFactory$HybridDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 10}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "c8wp1Q45CdLtTNnj6qINTwAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "SingleObjectCache.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.SingleObjectCache.getOrRefresh()", "offset": 4}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Pe4TSqGUL-1bGrK2ZFpccQAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "int org.elasticsearch.common.io.stream.StreamInput.readArraySize()", "offset": 10}, "line": {"number": 1317}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DBSrey1hof91_f6sdRmT0AAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.getRoles(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)"}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YNG5rLJWIsjMTCOpoQz9TwAAAAAAAACG"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.readIntoNativeBuffer(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 16}, "line": {"number": 276}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMabP"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/shirou/gopsutil@v3.20.12+incompatible/net/net_linux.go"}, "function": {"name": "github.com/shirou/gopsutil/net.statsFromInodes"}, "line": {"number": 477}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j30Xm5pao1UwDtxwoCPwUwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "ZipFile.java"}, "function": {"name": "java.util.jar.JarEntry java.util.zip.ZipFile$1.getEntry(java.util.zip.ZipFile, java.lang.String, java.util.function.Function)"}, "line": {"number": 1068}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "p20xNjB13pFFci9UHZaQsQAAAAAAAABb"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.index(org.elasticsearch.index.engine.Engine, org.elasticsearch.index.engine.Engine$Index)", "offset": 16}, "line": {"number": 1049}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bcZVdmCVQZDECINuyQR_7AAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$authenticateAsync$2(org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 4}, "line": {"number": 325}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dR-5oewY63tH4fYLV5hc3AAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.util.stream.Sink java.util.stream.AbstractPipeline.wrapAndCopyInto(java.util.stream.Sink, java.util.Spliterator)"}, "line": {"number": 474}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fyGIqAgDCWT0HWMDhvlu5QAAAAAAAACV"}} -{"Stackframe": {"file": {"name": "TransportBroadcastByNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived(org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$NodeRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 12}, "line": {"number": 452}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iQFXlWBYeWLM55y23U7wowAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "ObjectPoolFactory.java"}, "function": {"name": "co.elastic.apm.agent.impl.transaction.Transaction co.elastic.apm.agent.objectpool.ObjectPoolFactory$1.createInstance()"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChBOF"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.acquireSudog"}, "line": {"number": 394}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObjectOrField(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.Mapper)", "offset": 1}, "line": {"number": 574}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0ZR"}} -{"Stackframe": {"function": {"name": "__d_lookup"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x5juxqyDQI_RM44G4oxplwAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "InternalTerms.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.search.aggregations.bucket.terms.InternalTerms$Bucket.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 6}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3IuREe07u899HoYIiTdQ_QAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "long org.apache.lucene.index.DocumentsWriter.updateDocument(java.lang.Iterable, org.apache.lucene.analysis.Analyzer, org.apache.lucene.index.DocumentsWriterDeleteQueue$Node)", "offset": 15}, "line": {"number": 495}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0qd"}} -{"Stackframe": {"function": {"name": "do_nanosleep"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BxR1c7-nLgrcHbXghB3o2wAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 21}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QVC0RcYLxpeBExTj5_6BpAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "ConstructingObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ConstructingObjectParser$Target.buildTarget()"}, "line": {"number": 521}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "60iALvVIT6xacnSmRvILXgAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.StandardDirectoryReader.doOpenIfChanged(org.apache.lucene.index.IndexCommit)", "offset": 5}, "line": {"number": 355}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwA8J"}} -{"Stackframe": {"function": {"name": "do_softirq_own_stack"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEWwSE"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/module/docker/docker.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/module/docker.FetchStats"}, "line": {"number": 130}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cemtT_LtuQxWV7j18_T0KgAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.writeAuthToContext(org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 20}, "line": {"number": 735}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hRsRUw78WKiucrogpgXANwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "long org.elasticsearch.index.store.Store$StoreDirectory.estimateSize()"}, "line": {"number": 735}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e7YYWaQTMh8P2PCVzA2a8gAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "boolean java.util.AbstractMap.containsKey(java.lang.Object)"}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QLk-iuB8TQgFzsPDaJQkPwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$2.onResponse(java.lang.Void)"}, "line": {"number": 304}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLsWT"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/encode.go"}, "function": {"name": "encoding/json.(*encodeState).marshal"}, "line": {"number": 331}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eIKZHUnkOnlIeLcFKA7B_wAAAAAAAACE"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.checkpoint(org.apache.lucene.index.SegmentInfos, boolean)", "offset": 9}, "line": {"number": 525}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter.lambda$inbound$1(java.lang.String, org.elasticsearch.Version, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 8}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACIXWk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/binary/binary.go"}, "function": {"name": "encoding/binary.Read"}, "line": {"number": 255}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.newEvent"}, "line": {"number": 261}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I90CtZp_BZBH2tSRSUMrrgAAAAAAAACF"}} -{"Stackframe": {"file": {"name": "Deflater.java"}, "function": {"name": "int java.util.zip.Deflater.deflate(byte[], int, int, int)", "offset": 25}, "line": {"number": 582}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "toFq3ZEluPsdmkX_fgfocgAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "TextBuffer.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.util.TextBuffer.setCurrentAndReturn(int)", "offset": 3}, "line": {"number": 714}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bOPRssmNFrmWAdneL5vM4wAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object no.found.runner.docker.ContainerInspectorService$$Lambda$2114.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nob3zMVK_yh-lnKj6J3qXwAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.doNext(int)", "offset": 5}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lpRCGlUta_cleZPDK4rgegAAAAAAAAEG"}} -{"Stackframe": {"file": {"name": "QueuedThreadPool.java"}, "function": {"name": "void org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run()", "offset": 54}, "line": {"number": 1034}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LGDqhGuMmpYzX6PMA8WiywAAAAAAAABS"}} -{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "boolean java.util.ArrayList.equalsArrayList(java.util.ArrayList)", "offset": 10}, "line": {"number": 561}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAA_c8"}} -{"Stackframe": {"function": {"name": "__fpu__restore_sig"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9goQ11F02KQtwdhcmO_EIwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "NettyAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf org.elasticsearch.transport.netty4.NettyAllocator$NoDirectBuffers.ioBuffer(int)"}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMasI"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/shirou/gopsutil@v3.20.12+incompatible/net/net_linux.go"}, "function": {"name": "github.com/shirou/gopsutil/net.statsFromInodes"}, "line": {"number": 503}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PdntB36p_DeKmNIFQmfwvQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "org.elasticsearch.index.mapper.Mapper org.elasticsearch.index.mapper.DocumentParser.getMapper(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, java.lang.String[])", "offset": 3}, "line": {"number": 938}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1IhEUKf_PDCxfheapNhvQQAAAAAAAACI"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.writeDocValues(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap)", "offset": 16}, "line": {"number": 348}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "41q7-Ld-6XK0fcC0fV9B7QAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter$$Lambda$6583+0x0000000802417240.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9PmXvHucczCVlI0S70oJBQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.action.support.TransportAction.execute(org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RzTRw1F8P_UEDnCh3FvrLwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "FollowersChecker.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.FollowersChecker.lambda$new$0(org.elasticsearch.cluster.coordination.FollowersChecker$FollowerCheckRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.elasticsearch.index.store.ByteSizeCachingDirectory.createOutput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cvpQVs3xbGpFXzIMrJu64QAAAAAAAAF6"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 378}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCI4"}} -{"Stackframe": {"function": {"name": "futex_wait"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgSZz"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/lfstack.go"}, "function": {"name": "runtime.(*lfstack).push"}, "line": {"number": 25}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCK0"}} -{"Stackframe": {"function": {"name": "futex_wait"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AMk_trcRDqgWwE9O1EQdVAAAAAAAAAA_"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)", "offset": 3}, "line": {"number": 578}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi94W"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file_posix.go"}, "function": {"name": "os.WriteFile"}, "line": {"number": 22}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACwt5k"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/prometheus/procfs@v0.6.0/proc.go"}, "function": {"name": "github.com/prometheus/procfs.Proc.FileDescriptorsInfo"}, "line": {"number": 293}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NoWLrp2Hx2HDcioYyHlIIwAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$6501+0x00000008023c2108.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgHX"}} -{"Stackframe": {"function": {"name": "__slab_alloc"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iPXr6f3Mf7KR5iK4gq24eAAAAAAAAACs"}} -{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.tasks.TaskManager.unregister(org.elasticsearch.tasks.Task)", "offset": 17}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QxTPNhFsgl-8e8i61Q7phQAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "FutureTask.java"}, "function": {"name": "void java.util.concurrent.FutureTask.run()", "offset": 9}, "line": {"number": 317}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w3TshcZYurjm6c72duqqcwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "JvmGcMonitorService.java"}, "function": {"name": "void org.elasticsearch.monitor.jvm.JvmGcMonitorService$JvmMonitor.monitorGc()", "offset": 2}, "line": {"number": 403}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiwXz"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/internal/poll/fd.go"}, "function": {"name": "internal/poll.(*FD).SetBlocking"}, "line": {"number": 43}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADQjY4"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-lumber@v0.1.0/client/v2/client.go"}, "function": {"name": "github.com/elastic/go-lumber/client/v2.(*Client).serialize"}, "line": {"number": 219}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HQlS1PvyNkxRJDriMlVDNQAAAAAAAABR"}} -{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "void org.elasticsearch.cluster.ClusterState$ClusterStateDiff.(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.node.DiscoveryNode)", "offset": 9}, "line": {"number": 844}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM"}} -{"Stackframe": {"function": {"name": "futex_wake"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EJBGGTpPuZfUGx9HiRMpuwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.isFullyDeleted(org.apache.lucene.index.ReadersAndUpdates)"}, "line": {"number": 5507}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "haoo6iIcRhTQB8iaLQ_g6gAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "Arrays.java"}, "function": {"name": "void java.util.Arrays.sort(java.lang.Object[])", "offset": 3}, "line": {"number": 1041}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SijfoOxEi2JmZuKT5_EM8wAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ByteBufferIndexInput.java"}, "function": {"name": "org.apache.lucene.store.ByteBufferIndexInput org.apache.lucene.store.ByteBufferIndexInput.newCloneInstance(java.lang.String, java.nio.ByteBuffer[], int, long)"}, "line": {"number": 459}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MHOHZ9dur_p0OUPsIclbdwAAAAAAAACL"}} -{"Stackframe": {"file": {"name": "PushPostingsWriterBase.java"}, "function": {"name": "org.apache.lucene.codecs.BlockTermState org.apache.lucene.codecs.PushPostingsWriterBase.writeTerm(org.apache.lucene.util.BytesRef, org.apache.lucene.index.TermsEnum, org.apache.lucene.util.FixedBitSet, org.apache.lucene.codecs.NormsProducer)", "offset": 25}, "line": {"number": 145}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "g0wTdS2A905MAcFK5ZCg6AAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "TransactionContext.java"}, "function": {"name": "void co.elastic.apm.agent.impl.context.TransactionContext.()"}, "line": {"number": 31}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABWyvT"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/libpf/nativeunwind/localintervalcache/localintervalcache.go"}, "function": {"name": "github.com/optimyze/prodfiler/libpf/nativeunwind/localintervalcache.(*Cache).GetIntervalData"}, "line": {"number": 286}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "ClassLoader.java"}, "function": {"name": "java.net.URL java.lang.ClassLoader.getResource(java.lang.String)", "offset": 3}, "line": {"number": 1396}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACL5AK"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/stream.go"}, "function": {"name": "encoding/json.(*Decoder).Decode"}, "line": {"number": 73}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHW7e"}} -{"Stackframe": {"function": {"name": "map_update_elem"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CYcvl_Frh_HsIh0rws0B8gAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "FilterIndexOutput.java"}, "function": {"name": "void org.elasticsearch.common.lucene.store.FilterIndexOutput.writeByte(byte)"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BvE20tx_aKDX9k1QBsUKsgAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.processDocument(int, java.lang.Iterable)", "offset": 13}, "line": {"number": 485}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EzrMYIIhTNfpjRj48sRsmAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ClusterState.java"}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.ClusterState$ClusterStateDiff.apply(java.lang.Object)"}, "line": {"number": 740}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABV_2n"}} -{"Stackframe": {"file": {"name": "github.com/cilium/ebpf@v0.9.1/perf/reader.go"}, "function": {"name": "github.com/cilium/ebpf/perf.readRecord"}, "line": {"number": 58}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "87K1CwzZK_F79-lNbbx9YgAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "TieredMergePolicy.java"}, "function": {"name": "org.apache.lucene.index.MergePolicy$MergeSpecification org.apache.lucene.index.TieredMergePolicy.findMerges(org.apache.lucene.index.MergeTrigger, org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 10}, "line": {"number": 324}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L2oiKrMrNQpik-_fBrO4owAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "DataInput.java"}, "function": {"name": "long org.apache.lucene.store.DataInput.readVLong()"}, "line": {"number": 209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiJIk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.fchmodat"}, "line": {"number": 30}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "llkihrRGUNbhCZ5QJqe2cAAAAAAAAACr"}} -{"Stackframe": {"file": {"name": "ConcurrentMergeScheduler.java"}, "function": {"name": "void org.apache.lucene.index.ConcurrentMergeScheduler.merge(org.apache.lucene.index.MergeScheduler$MergeSource, org.apache.lucene.index.MergeTrigger)", "offset": 47}, "line": {"number": 554}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qzRjXkTt4v-saae_nhunBwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "RestBulkAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.document.RestBulkAction.lambda$prepareRequest$0(org.elasticsearch.client.node.NodeClient, org.elasticsearch.action.bulk.BulkRequest, org.elasticsearch.rest.RestChannel)"}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_jOWl9rQ0a9rjiw4HiJl9AAAAAAAAAFV"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4.compressWithDictionary(byte[], int, int, int, org.apache.lucene.store.DataOutput, org.apache.lucene.util.compress.LZ4$HashTable)", "offset": 51}, "line": {"number": 482}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjMKw"}} -{"Stackframe": {"function": {"name": "__dev_queue_xmit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkAF4"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/print.go"}, "function": {"name": "fmt.Fprint"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Id-ripUWhn1V9drGRfOjGQAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "ReaderPool.java"}, "function": {"name": "boolean org.apache.lucene.index.ReaderPool.anyDocValuesChanges()", "offset": 5}, "line": {"number": 354}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0vYUuo04uCIksGcEjg9Q4AAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "EsExecutors.java"}, "function": {"name": "boolean org.elasticsearch.common.util.concurrent.EsExecutors$ExecutorScalingQueue.offer(java.lang.Object)"}, "line": {"number": 321}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2cxgkaQz6jHA-zT7PPZDvwAAAAAAAACz"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.prepareCommitInternal()", "offset": 34}, "line": {"number": 3364}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eIKZHUnkOnlIeLcFKA7B_wAAAAAAAADK"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.checkpoint(org.apache.lucene.index.SegmentInfos, boolean)", "offset": 20}, "line": {"number": 536}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vF3EXYALHmjQtcdOOO4edQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "com.amazonaws.services.s3.model.ObjectMetadata com.amazonaws.services.s3.AmazonS3Client$PutObjectStrategy.invokeServiceCall(com.amazonaws.Request)"}, "line": {"number": 5942}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ozR7rHeowembmV8tqrkzHQAAAAAAAAHe"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.startCommit(org.apache.lucene.index.SegmentInfos)", "offset": 70}, "line": {"number": 5101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "q-urC30zCOxm3KKqrbBBGwAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.channelReadComplete0(io.netty.channel.ChannelHandlerContext)", "offset": 6}, "line": {"number": 1333}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "le8VfryMtJlEyXJeMd-6oAAAAAAAAAB2"}} -{"Stackframe": {"file": {"name": "NodeInfo.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.node.info.NodeInfo.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 19}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nyQEDtNfXDm_fNpPXsT-3gAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.get(java.lang.Object)"}, "line": {"number": 558}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "IdleStateHandler.java"}, "function": {"name": "void io.netty.handler.timeout.IdleStateHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 4}, "line": {"number": 286}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6USsxK9B_4KIBPducSSyDQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "CodecUtil.java"}, "function": {"name": "int org.apache.lucene.codecs.CodecUtil.checkIndexHeader(org.apache.lucene.store.DataInput, java.lang.String, int, int, byte[], java.lang.String)"}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACpxP0"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/crypto/rsa/pss.go"}, "function": {"name": "crypto/rsa.VerifyPSS"}, "line": {"number": 294}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IoeloZzyqdJpjiJWbJ3FlAAAAAAAAAB8"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 124}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2YAyPbGc4xkMfE_oA8gaAQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "InboundDecoder.java"}, "function": {"name": "int org.elasticsearch.transport.InboundDecoder.decompress(org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 1}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GOrFnkqGTEzDlTO1qewmxwAAAAAAAABQ"}} -{"Stackframe": {"file": {"name": "HttpURLConnection.java"}, "function": {"name": "java.io.OutputStream sun.net.www.protocol.http.HttpURLConnection.getOutputStream()", "offset": 16}, "line": {"number": 1342}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADQjfD"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-lumber@v0.1.0/client/v2/client.go"}, "function": {"name": "github.com/elastic/go-lumber/client/v2.(*Client).setWriteDeadline"}, "line": {"number": 227}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gdK-Z7OiQJ4-Vu9mxjvSjwAAAAAAAAEW"}} -{"Stackframe": {"file": {"name": "HttpsClient.java"}, "function": {"name": "void sun.net.www.protocol.https.HttpsClient.afterConnect()", "offset": 132}, "line": {"number": 572}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gL0sNJyG3L826RryrsTHqQAAAAAAAABN"}} -{"Stackframe": {"file": {"name": "PointValues.java"}, "function": {"name": "void org.apache.lucene.index.PointValues.intersect(org.apache.lucene.index.PointValues$IntersectVisitor, org.apache.lucene.index.PointValues$PointTree)", "offset": 15}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YNR_kK3tcd5nuXG_-CFlnAAAAAAAAABZ"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.engine.SegmentsStats org.elasticsearch.index.engine.Engine.segmentsStats(boolean, boolean)", "offset": 6}, "line": {"number": 798}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8g8BRnBI4MuRYzLO3qW1UQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentParser$Token org.elasticsearch.common.xcontent.json.JsonXContentParser.currentToken()"}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QHGalGwq4QEL0pNo89eL_QAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$6.doRun()"}, "line": {"number": 971}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FH8EkDW7TkZM8UTvkf_KhgAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.sync(org.elasticsearch.index.translog.Translog$Location, java.util.function.Consumer)", "offset": 1}, "line": {"number": 3754}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "puzfYbB4wiXTg1X1jl7EPgAAAAAAAABx"}} -{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "int com.fasterxml.jackson.dataformat.smile.SmileGenerator._findSeenName(java.lang.String)", "offset": 24}, "line": {"number": 2684}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-LJv"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/auparse.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.extractKeyValuePairs"}, "line": {"number": 314}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Q0ZhGVGRXyXDgoFbVxRbBAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "java.nio.file.Path[] org.elasticsearch.watcher.FileWatcher$FileObserver.listFiles()"}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i8qUzmADhGx9PMH8RJ_tdAAAAAAAAACP"}} -{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "org.elasticsearch.cluster.metadata.Metadata org.elasticsearch.cluster.metadata.Metadata$MetadataDiff.apply(org.elasticsearch.cluster.metadata.Metadata)", "offset": 11}, "line": {"number": 1030}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Gq5m7YsN9AxAFbfEdlTTPwAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "void sun.nio.fs.UnixPath.checkDelete()", "offset": 2}, "line": {"number": 822}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2Vpl4JCXI4Pj7QXAxuNxegAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "SegmentInfos.java"}, "function": {"name": "java.util.Collection org.apache.lucene.index.SegmentInfos.files(boolean)", "offset": 10}, "line": {"number": 919}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N65RC-cyc39wNoAyxKtGjwAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "AbstractQueuedSynchronizer.java"}, "function": {"name": "void java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireInterruptibly(int)", "offset": 1}, "line": {"number": 958}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FedFnYQW8bHf16nVrC3eNgAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 6}, "line": {"number": 274}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "So79ssLqcYG8xPQUl7bLnwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "HashSet.java"}, "function": {"name": "boolean java.util.HashSet.contains(java.lang.Object)"}, "line": {"number": 205}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FKHeDCqWZknFBzCzGkASlwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard$$Lambda$6974+0x0000000801e5b8a0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k_y3LYF-5hABRlK2M6mO7wAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.apache.lucene.index.IndexWriter$$Lambda$6655+0x0000000801d573d0.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h-mcFcSefWaXpPLGLAmk8gAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.doHandleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 11}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CpMW_CS6i6ErtbeZjpah8AAAAAAAAABt"}} -{"Stackframe": {"file": {"name": "Rewriteable.java"}, "function": {"name": "void org.elasticsearch.index.query.Rewriteable.rewriteAndFetch(org.elasticsearch.index.query.Rewriteable, org.elasticsearch.index.query.QueryRewriteContext, org.elasticsearch.action.ActionListener, int)", "offset": 19}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S4pDMZQIDu6mVxa95R8FGQAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$2.tryAdvance(java.util.function.Consumer)", "offset": 3}, "line": {"number": 4820}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZtRK4uMy_Wfw-N_iQmSerQAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 53}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGxmw"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/syscall_linux.go"}, "function": {"name": "os.openFileNolog"}, "line": {"number": 152}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1jMIzao1j_0QiwXJErC9HAAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.writeTermsIndex(org.apache.lucene.index.SortedSetDocValues)", "offset": 15}, "line": {"number": 664}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gBLxJrtyci28b-8zCYT3hgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.io.stream.StreamInput.readString()"}, "line": {"number": 419}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NCAjj9ga_oZwZ7NBAV35jQAAAAAAAABg"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.decRef(java.util.Collection)", "offset": 14}, "line": {"number": 598}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0_JZyYR0Vno863IcUXpa7AAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$4761.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf"}} -{"Stackframe": {"function": {"name": "__d_lookup"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u6XfB-cCw0LqYf3LU2LbbAAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "Lucene84PostingsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.Lucene84PostingsWriter.(org.apache.lucene.index.SegmentWriteState)", "offset": 6}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAANGo"}} -{"Stackframe": {"file": {"name": "runtime/lock_futex.go"}, "function": {"name": "runtime.notewakeup"}, "line": {"number": 146}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O6j-APvwgdAIUIKMPStK3gAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "ConstructingObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.ConstructingObjectParser.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)"}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAC1JWt"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/outputs/logstash/async.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/outputs/logstash.(*msgRef).callback"}, "line": {"number": 236}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "45l-3EzV2pQer0tpzvWJuAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$RunBeforeActionListener.onResponse(java.lang.Object)"}, "line": {"number": 382}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ay5iQ4V42J1TpJ3_RpuIyAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.elasticsearch.core.internal.io.IOUtils.close(java.lang.Iterable)"}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "30O6VQjnGgkxLjQ6W-h4eQAAAAAAAACa"}} -{"Stackframe": {"file": {"name": "NativePrivilegeStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.NativePrivilegeStore.getPrivileges(java.util.Collection, java.util.Collection, org.elasticsearch.action.ActionListener)", "offset": 23}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-HqwSlv3LwloERZ2us_u9wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "EsThreadPoolExecutor.java"}, "function": {"name": "java.lang.Runnable org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor.wrapRunnable(java.lang.Runnable)"}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1PhVGIcoQAgleHhVcpf27gAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.CopyBytesSocketChannel.doReadBytes(io.netty.buffer.ByteBuf)", "offset": 5}, "line": {"number": 115}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UaXx0ql2gESykKhBYD_4zQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "W3CTraceContextPropagator.java"}, "function": {"name": "io.opentelemetry.context.Context io.opentelemetry.api.trace.propagation.W3CTraceContextPropagator.extract(io.opentelemetry.context.Context, java.lang.Object, io.opentelemetry.context.propagation.TextMapGetter)", "offset": 7}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YqGCdZ1cNEoHUUaGHzWSqQAAAAAAAABc"}} -{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.SoftDeletesRetentionMergePolicy.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.util.IOSupplier)", "offset": 9}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFnTc"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.injectglist.func1"}, "line": {"number": 2578}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZMe-9lFFoeGrIGi3f3NLiwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.internal.support.AbstractClient$ClusterAdmin.nodesInfo(org.elasticsearch.action.admin.cluster.node.info.NodesInfoRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 759}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4g3dadKJq-rh-Mlmi-1U5gAAAAAAAAEH"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.commitMerge(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergeState)", "offset": 49}, "line": {"number": 4233}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1uSylq76VHr8W99O31_CbwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$MetadataIndexWriter.commit()"}, "line": {"number": 803}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EzlTNMIGbx2ZiPDgwyoVKwAAAAAAAAE4"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$PendingBlock.compileIndex(java.util.List, org.apache.lucene.store.RAMOutputStream, org.apache.lucene.util.IntsRefBuilder)", "offset": 24}, "line": {"number": 431}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OD4desBFovJswG9NmeTHjQAAAAAAAAEc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 284}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FyG2HNXib0Q1YozSvSpDTQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SingletonSortedSetDocValues.java"}, "function": {"name": "org.apache.lucene.index.TermsEnum org.apache.lucene.index.SingletonSortedSetDocValues.termsEnum()"}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimti"}} -{"Stackframe": {"function": {"name": "sock_sendmsg"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ReduceOps.java"}, "function": {"name": "java.lang.Object java.util.stream.ReduceOps$ReduceOp.evaluateSequential(java.util.stream.PipelineHelper, java.util.Spliterator)"}, "line": {"number": 913}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjn7-"}} -{"Stackframe": {"function": {"name": "rtnl_fill_ifinfo"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j7DDlSF8lqr2vW0364KpMQAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 21}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SEJ4L9rNkUfC0VWzNbUViwAAAAAAAABI"}} -{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "java.lang.Object com.amazonaws.services.s3.AmazonS3Client.uploadObject(java.io.InputStream, java.io.File, com.amazonaws.services.s3.model.ObjectMetadata, com.amazonaws.event.ProgressListener, com.amazonaws.Request, com.amazonaws.services.s3.model.S3DataSource, boolean, boolean, com.amazonaws.services.s3.internal.UploadObjectStrategy, boolean)", "offset": 19}, "line": {"number": 1808}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gvBg_Q7r2IbP7JxDpdNETQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "FilterLeafReader.java"}, "function": {"name": "org.apache.lucene.index.Terms org.apache.lucene.index.FilterLeafReader.terms(java.lang.String)", "offset": 1}, "line": {"number": 366}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Vx2H7p06nNerPKpNR75HGQAAAAAAAADb"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.awaitMatch(java.util.concurrent.LinkedTransferQueue$Node, java.util.concurrent.LinkedTransferQueue$Node, java.lang.Object, boolean, long)", "offset": 39}, "line": {"number": 676}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I38BEvuOR5ZIj0xVCqeBhwAAAAAAAAC6"}} -{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.sendSearchResponse(org.elasticsearch.search.internal.InternalSearchResponse, org.elasticsearch.common.util.concurrent.AtomicArray)", "offset": 18}, "line": {"number": 722}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Q6_txoGw_guH_gJuuKUkJgAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "SegmentInfos.java"}, "function": {"name": "void org.apache.lucene.index.SegmentInfos.prepareCommit(org.apache.lucene.store.Directory)", "offset": 4}, "line": {"number": 901}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$2(java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.ActionResponse)", "offset": 1}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACjPuk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strconv/bytealg.go"}, "function": {"name": "strconv.unquote"}, "line": {"number": 14}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9hTMtdP-Kaf579B6Djqy8QAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.execute()", "offset": 5}, "line": {"number": 738}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4SaczMOcyKF5Gqg5WKpyoAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "org.elasticsearch.threadpool.Scheduler$ScheduledCancellable org.elasticsearch.threadpool.ThreadPool.schedule(java.lang.Runnable, org.elasticsearch.common.unit.TimeValue, java.lang.String)"}, "line": {"number": 354}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gIhOskhYYQYheVtFzZwofwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "RecyclerBytesStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.RecyclerBytesStreamOutput.skip(int)"}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h3PxPMxQ128l0j8OgQ1S2QAAAAAAAACk"}} -{"Stackframe": {"file": {"name": "BoolQueryBuilder.java"}, "function": {"name": "org.elasticsearch.index.query.QueryBuilder org.elasticsearch.index.query.BoolQueryBuilder.doRewrite(org.elasticsearch.index.query.QueryRewriteContext)", "offset": 9}, "line": {"number": 363}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8UqGTNx_lSKM0JhywBi_yQAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "RestSearchAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction.lambda$prepareRequest$2(org.elasticsearch.client.node.NodeClient, org.elasticsearch.rest.RestRequest, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.rest.RestChannel)", "offset": 1}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.dispatchedShardOperationOnReplica(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 549}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DcQMgtZQLqwr_0Ox7dSTjAAAAAAAAAC8"}} -{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.sendSearchResponse(org.elasticsearch.search.internal.InternalSearchResponse, org.elasticsearch.common.util.concurrent.AtomicArray)", "offset": 18}, "line": {"number": 655}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3QM5OJWdXJOtFw8erEL5XwAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "S3BlobContainer.java"}, "function": {"name": "java.io.InputStream org.elasticsearch.repositories.s3.S3BlobContainer.readBlob(java.lang.String)"}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l34EZ8xDHNxGTCOWJeXKigAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "int org.elasticsearch.transport.netty4.CopyBytesSocketChannel.readFromSocketChannel(java.nio.channels.SocketChannel, java.nio.ByteBuffer)"}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj"}} -{"Stackframe": {"function": {"name": "do_syscall_64"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAASvk"}} -{"Stackframe": {"function": {"name": "au_digen_test"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "euIw_I7HzcVMEcOaEL-XEgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageInboundHandler$$Lambda$6063+0x0000000802351080.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACilbh"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/sort/sort.go"}, "function": {"name": "sort.doPivot"}, "line": {"number": 114}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Nc9gj1rv2NerZVTmjxTx9AAAAAAAAACG"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.writeFromNativeBuffer(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 18}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OgqUwQnJ8dHk1caAvQvJAgAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "AsyncIOProcessor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AsyncIOProcessor.notifyList(java.util.List, java.lang.Exception)", "offset": 3}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WZkYii9iyVkeBe2z6gMragAAAAAAAAFf"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 351}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KPpxotOCYeqDDhsW8FuHhgAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.apache.lucene.store.FSDirectory.createTempOutput(java.lang.String, java.lang.String, org.apache.lucene.store.IOContext)", "offset": 8}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M4KBRS9q0Edna2hel2w25wAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "AbstractLogger.java"}, "function": {"name": "void org.apache.logging.log4j.spi.AbstractLogger.logMessageSafely(java.lang.String, org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message, java.lang.Throwable)"}, "line": {"number": 2142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TrMlwvWvPdEuGYc2sFMcswAAAAAAAAFD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 323}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "y12uoeETtO1vfLZn6kOlKAAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "IndexShardOperationPermits.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShardOperationPermits.acquire(org.elasticsearch.action.ActionListener, java.lang.String, boolean, java.lang.Object)", "offset": 5}, "line": {"number": 199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dy9m8b1oF2u3h9LUXHjYIAAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "Security.java"}, "function": {"name": "java.lang.Object[] java.security.Security.getImpl(java.lang.String, java.lang.String, java.lang.String)", "offset": 2}, "line": {"number": 700}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3-NDnOSIA1Y6TA9a10uSjAAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "MappingLookup.java"}, "function": {"name": "java.lang.String org.elasticsearch.index.mapper.MappingLookup.getNestedParent(java.lang.String)", "offset": 9}, "line": {"number": 486}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "twASLq5QV6PtFM2KeIje5wAAAAAAAADM"}} -{"Stackframe": {"file": {"name": "DiscoveryNode.java"}, "function": {"name": "void org.elasticsearch.cluster.node.DiscoveryNode.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 16}, "line": {"number": 347}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ENntOW0JrT8nDLuyp74yqwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.search.suggest.completion.CompletionStats org.elasticsearch.index.engine.InternalEngine.completionStats(java.lang.String[])"}, "line": {"number": 336}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7fRblGdKRlNY9QjBlaIJIgAAAAAAAADP"}} -{"Stackframe": {"file": {"name": "Lucene94FieldInfosFormat.java"}, "function": {"name": "org.apache.lucene.index.FieldInfos org.apache.lucene.codecs.lucene94.Lucene94FieldInfosFormat.read(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.store.IOContext)", "offset": 38}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture$1.doRun()", "offset": 1}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAC0sE"}} -{"Stackframe": {"file": {"name": "syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.read"}, "line": {"number": 698}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgUTF"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/malloc.go"}, "function": {"name": "runtime.mallocgc"}, "line": {"number": 1137}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9gjRuxRdRyq16xbNcyHimgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "BKDReader.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDReader$BKDPointTree.addAll(org.apache.lucene.index.PointValues$IntersectVisitor, boolean)", "offset": 3}, "line": {"number": 565}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kmstX56kPKNs-NIw0EbCtgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SimpleFSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.SimpleFSDirectory.(java.nio.file.Path)"}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tu6yRjvR9y5TsA8gfp3aWQAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "PeerFinder.java"}, "function": {"name": "boolean org.elasticsearch.discovery.PeerFinder.handleWakeUp()", "offset": 2}, "line": {"number": 261}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vfptMi4S77lqCSIEPA0cAgAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "OffHeapFSTStore.java"}, "function": {"name": "org.apache.lucene.util.fst.FST$BytesReader org.apache.lucene.util.fst.OffHeapFSTStore.getReverseBytesReader()"}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lF0402c3xDTaGy1WpLy7vwAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "Lucene90CompoundFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90CompoundFormat.writeCompoundFile(org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo)", "offset": 23}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hEyUosxQ0vIlkjW1VI-NgAAAAAAAAABf"}} -{"Stackframe": {"file": {"name": "WatchParser.java"}, "function": {"name": "org.elasticsearch.xpack.core.watcher.watch.Watch org.elasticsearch.xpack.watcher.watch.WatchParser.parse(java.lang.String, boolean, boolean, org.elasticsearch.common.bytes.BytesReference, java.time.ZonedDateTime, org.elasticsearch.xcontent.XContentType, boolean, long, long)", "offset": 14}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fTwZCtYUPjuUjzekBF9iZwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.elasticsearch.index.store.ByteSizeCachingDirectory.createTempOutput(java.lang.String, java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN7WH"}} -{"Stackframe": {"function": {"name": "kernfs_dop_revalidate"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GMA756PSHo5B_YmPM9fH1AAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "ApmServerConfigurationSource.java"}, "function": {"name": "java.lang.String co.elastic.apm.agent.configuration.ApmServerConfigurationSource.fetchConfig(org.stagemonitor.configuration.ConfigurationRegistry)", "offset": 6}, "line": {"number": 162}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlH3T"}} -{"Stackframe": {"function": {"name": "ip_rcv_finish"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JpTsQQlmGWQ5UI3dBfHw_QAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "int org.apache.lucene.index.ReadersAndUpdates$2$1.nextDoc()"}, "line": {"number": 390}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAABiMr"}} -{"Stackframe": {"function": {"name": "xfs_buf_read_map"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w_8HYglWw-0jqUUlUeMgagAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Setting.get(org.elasticsearch.common.settings.Settings, boolean)", "offset": 2}, "line": {"number": 469}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zpu39D9DSBdd-do-yuUlGAAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext org.elasticsearch.common.util.concurrent.ThreadContext.newTraceContext()", "offset": 6}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LaFl4epk0Q6S_D_8elQACwAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.(org.apache.lucene.index.SegmentWriteState, java.lang.String, java.lang.String, java.lang.String, java.lang.String)", "offset": 7}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qqHmu8HxsYgSsu-ccoja0AAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput$$Lambda$1122+0x00000008016ea618.write(org.elasticsearch.common.io.stream.StreamOutput, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACsqqF"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/pipeline/batch.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/pipeline.(*batch).ACK"}, "line": {"number": 67}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2RFqiy_TIF9Ivmg849R6KQAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.processDocument(int, java.lang.Iterable)", "offset": 16}, "line": {"number": 491}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Z6kGBA_SCop1OktUb4lGHgAAAAAAAAB_"}} -{"Stackframe": {"file": {"name": "AbstractS3ResponseHandler.java"}, "function": {"name": "void com.amazonaws.services.s3.internal.AbstractS3ResponseHandler.populateObjectMetadata(com.amazonaws.http.HttpResponse, com.amazonaws.services.s3.model.ObjectMetadata)", "offset": 9}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-7r0"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/process/process.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/process.(*Process).getDetails"}, "line": {"number": 164}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C87NV7kL69jQPmyqDubIUAAAAAAAAAIN"}} -{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDWriter$OneDimensionBKDWriter.writeLeafBlock(int)", "offset": 42}, "line": {"number": 677}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADHgAh"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/processing/processors.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/processing.clientEventMeta.func1"}, "line": {"number": 154}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pPgMkcd05E3JFlk63z410gAAAAAAAAHo"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 19}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "emtx417xjizVLzzaBLAalQAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator$$Lambda$7306+0x000000080250eac0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qEBUjzYNkS1ejSIGCCvPLQAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "AbstractAlgorithmConstraints.java"}, "function": {"name": "boolean sun.security.util.AbstractAlgorithmConstraints.checkAlgorithm(java.util.List, java.lang.String, sun.security.util.AlgorithmDecomposer)", "offset": 17}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Qdsa8CodEr3BBR20SawlOgAAAAAAAAIr"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "void org.apache.lucene.index.ReadersAndUpdates.handleDVUpdates(org.apache.lucene.index.FieldInfos, org.apache.lucene.store.Directory, org.apache.lucene.codecs.DocValuesFormat, org.apache.lucene.index.SegmentReader, java.util.Map, long, org.apache.lucene.util.InfoStream)", "offset": 124}, "line": {"number": 404}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI"}} -{"Stackframe": {"function": {"name": "finish_task_switch"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgmKk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.gcDrain"}, "line": {"number": 1092}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGx3M"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/syscall_linux.go"}, "function": {"name": "os.Remove"}, "line": {"number": 182}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EZPgqIf-WI9idn-2eZidkgAAAAAAAABZ"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.internal.SearchContext org.elasticsearch.search.SearchService.createContext(org.elasticsearch.search.internal.ReaderContext, org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask, boolean)", "offset": 17}, "line": {"number": 997}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CVegIjspc9VOluOpQVnKFgAAAAAAAACg"}} -{"Stackframe": {"file": {"name": "Boolean2ScorerSupplier.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.Boolean2ScorerSupplier.getInternal(long)", "offset": 13}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PTQRd_ysoLKG-jbK5cWGNQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "long org.apache.lucene.codecs.DocValuesConsumer$3$1.nextValue()"}, "line": {"number": 450}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACuEFv"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_process_metadata/cache.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_process_metadata.(*processCache).GetProcessMetadata"}, "line": {"number": 64}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFW5n"}} -{"Stackframe": {"function": {"name": "cgroup_show_path"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DaLOu1u8r2OzUEp60ph7fAAAAAAAAADT"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.innerParseObject(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, org.elasticsearch.xcontent.XContentParser, java.lang.String, org.elasticsearch.xcontent.XContentParser$Token)", "offset": 25}, "line": {"number": 516}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M-q_yN6BkZgGVL7TrJEMggAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Lucene84PostingsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.FieldsConsumer org.apache.lucene.codecs.lucene84.Lucene84PostingsFormat.fieldsConsumer(org.apache.lucene.index.SegmentWriteState)"}, "line": {"number": 420}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5utt2dQ8HKrTepHdNpprxQAAAAAAAAD_"}} -{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.CommonStats org.elasticsearch.action.admin.indices.stats.CommonStats.getShardLevelStats(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 14}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTfw"}} -{"Stackframe": {"function": {"name": "new_sync_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_6rkq2S7o8rMRQJ9AofzJAAAAAAAAAC-"}} -{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.common.bytes.BytesReference, boolean, org.elasticsearch.common.xcontent.XContentType)", "offset": 21}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a_OIxG7FMGXAdgtXd0LibgAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "LockSupport.java"}, "function": {"name": "void java.util.concurrent.locks.LockSupport.parkNanos(long)", "offset": 4}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABWB4E"}} -{"Stackframe": {"file": {"name": "github.com/cilium/ebpf@v0.9.1/perf/reader.go"}, "function": {"name": "github.com/cilium/ebpf/perf.(*Reader).readRecordFromRing"}, "line": {"number": 392}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1kRkZENrD0C0zg-5j1NV2AAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.tryAllHandlers(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)"}, "line": {"number": 500}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pDdH2I4ITPlwXLt-L5JoUAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(io.netty.channel.ChannelHandlerContext, io.netty.handler.codec.CodecOutputList, int)", "offset": 1}, "line": {"number": 324}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8XyHXMQijJkNwu4Uf2gtWgAAAAAAAABT"}} -{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeString(java.lang.String)", "offset": 27}, "line": {"number": 1025}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD5qds"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/go.etcd.io/bbolt@v1.3.4/tx.go"}, "function": {"name": "go.etcd.io/bbolt.(*Tx).write"}, "line": {"number": 566}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sEPQK3dI_zdTRw3NGGeCnQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "com.typesafe.config.impl.SimpleConfig com.typesafe.config.impl.SimpleConfig.withFallback(com.typesafe.config.ConfigMergeable)"}, "line": {"number": 569}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-4TiGjxLRDmQK0-4omdldQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeGenericList(java.util.List, org.elasticsearch.common.io.stream.Writeable$Writer)", "offset": 1}, "line": {"number": 775}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAOnlz"}} -{"Stackframe": {"function": {"name": "ext4_writepages"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANcnq"}} -{"Stackframe": {"function": {"name": "iomap_write_end"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALmo4"}} -{"Stackframe": {"function": {"name": "path_openat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GO1QDVqG-4CNnMRn2v_9VAAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "boolean com.fasterxml.jackson.core.json.UTF8StreamJsonParser._loadMore()", "offset": 6}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEtZ0"}} -{"Stackframe": {"function": {"name": "mod_timer"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACil1r"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/sort/sort.go"}, "function": {"name": "sort.Sort"}, "line": {"number": 238}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TBtZO3-vmynkHlKuzsN9UQAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 7}, "line": {"number": 300}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ot0HsYHQPmkwmtZkyeI5MQAAAAAAAAC8"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "short org.apache.lucene.codecs.lucene90.IndexedDISI.writeBitSet(org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.store.IndexOutput, byte)", "offset": 17}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "v7NZn75ARbCs3HYY9Fl9agAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "ReferencePipeline.java"}, "function": {"name": "void java.util.stream.ReferencePipeline$7$1.accept(java.lang.Object)"}, "line": {"number": 273}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UTB2ADQFxXISnXcFBKNbeQAAAAAAAABT"}} -{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeString(java.lang.String)", "offset": 27}, "line": {"number": 977}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vVBGzy8SXBVkwYb6TicxXQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "Objects.java"}, "function": {"name": "boolean java.util.Objects.equals(java.lang.Object, java.lang.Object)"}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiJXE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.pipe2"}, "line": {"number": 81}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pJc1t0rYHwzFGXGR9ZsrtQAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "NetworkClient.java"}, "function": {"name": "void sun.net.NetworkClient.setReadTimeout(int)", "offset": 5}, "line": {"number": 264}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J"}} -{"Stackframe": {"function": {"name": "__x64_sys_write"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QNXy4XeFFzKACGQInZNhgwAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$6113+0x0000000801c56eb0.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GmYMrqcymh2Li0OrBJcg8AAAAAAAAAB-"}} -{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "int sun.nio.ch.EPollSelectorImpl.processEvents(int, java.util.function.Consumer)", "offset": 19}, "line": {"number": 207}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACy-aO"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.(*GenericEventConverter).normalizeValue"}, "line": {"number": 229}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACuDLZ"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_process_metadata/add_process_metadata.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_process_metadata.(*addProcessMetadata).enrich"}, "line": {"number": 229}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PRfaBPZq0R7PCyNb40ePOAAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 653}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACIVgE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/strings.go"}, "function": {"name": "strings.Trim"}, "line": {"number": 840}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcCd"}} -{"Stackframe": {"function": {"name": "__x64_sys_newfstatat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Gw9H1l67yAnzlh8ZHG_VaQAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.authenticate(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "org.apache.lucene.index.MergeState org.apache.lucene.index.SegmentMerger.merge()", "offset": 8}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "v6lCGSl14n67sS0TtXz2KQAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.onResponse(org.elasticsearch.core.Releasable)", "offset": 2}, "line": {"number": 567}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wzvWQyXT6P841Whzz8TSaAAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.tasks.TaskManager.registerAndExecute(java.lang.String, org.elasticsearch.action.support.TransportAction, org.elasticsearch.action.ActionRequest, org.elasticsearch.transport.Transport$Connection, org.elasticsearch.action.ActionListener)", "offset": 14}, "line": {"number": 202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fNq1xcdgQyMKMcU704EIcwAAAAAAAAXH"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$PendingBlock org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.writeBlock(int, boolean, int, int, int, boolean, boolean)", "offset": 208}, "line": {"number": 874}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6_xlTgG59vnh1ZByxJjaSwAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "DisjunctionDISIApproximation.java"}, "function": {"name": "int org.apache.lucene.search.DisjunctionDISIApproximation.nextDoc()", "offset": 4}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLvYJ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/encode.go"}, "function": {"name": "encoding/json.mapEncoder.encode"}, "line": {"number": 785}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIkH"}} -{"Stackframe": {"function": {"name": "__seccomp_filter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "axmxxkAHJC4ByiJioWLPsAAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$7(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wD7qCDk3lqH0hpTFDQk1YQAAAAAAAABI"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readMapEntries(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier, java.util.Map)", "offset": 5}, "line": {"number": 316}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nnN2-U_s8SdanlpQLAPXRAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "DefaultChannelPromise.java"}, "function": {"name": "boolean io.netty.channel.DefaultChannelPromise.trySuccess()"}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a95o5CjzIEIOn8inlU1vCgAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "BufferedUpdates.java"}, "function": {"name": "void org.apache.lucene.index.BufferedUpdates.addNumericUpdate(org.apache.lucene.index.DocValuesUpdate$NumericDocValuesUpdate, int)", "offset": 1}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SqMYTYY1wH85xWrEyUrl_AAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "AbstractCollection.java"}, "function": {"name": "boolean java.util.AbstractCollection.addAll(java.util.Collection)", "offset": 1}, "line": {"number": 351}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yq5qVgU-uF5HOA3V-qXF7QAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.flush(boolean, boolean)", "offset": 1}, "line": {"number": 3566}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7qz18bHgG-Zc_fVo9Dsh7AAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.OutboundMessage, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i8uuylUIH4F1Fcj0a85AGgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "com.typesafe.config.impl.ConfigNumber com.typesafe.config.impl.SimpleConfig.getConfigNumber(java.lang.String)"}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YM_gl0OeNbTAtY8GRC8UVgAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 5}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAiyBw"}} -{"Stackframe": {"function": {"name": "__kmalloc_reserve.isra.62"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PqkKpz2WDphJH5ROhuDMyAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "IndexId.java"}, "function": {"name": "void org.elasticsearch.repositories.IndexId.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cx_5Zli6ZQBZEsnw0z8RFAAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "HashSet.java"}, "function": {"name": "void java.util.HashSet.(java.util.Collection)", "offset": 2}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACuGfd"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_process_metadata.(*gosysinfoProvider).GetProcessMetadata"}, "line": {"number": 1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEX3b"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mcentral.go"}, "function": {"name": "runtime.(*mcentral).grow"}, "line": {"number": 506}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kJCg5l0wTnKMeEYikbvwfwAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "ReferenceManager.java"}, "function": {"name": "void org.apache.lucene.search.ReferenceManager.doMaybeRefresh()", "offset": 6}, "line": {"number": 167}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IT_-mTvwNxwEOSrUYZ5mqAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACglIu"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.gcAssistAlloc1"}, "line": {"number": 575}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cFmpMO1uLzgwAgdcIO17FwAAAAAAAABr"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$DirectResponseChannel.sendResponse(org.elasticsearch.transport.TransportResponse)", "offset": 13}, "line": {"number": 1432}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGJSk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.unlinkat"}, "line": {"number": 126}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Q1b7jdbtxavHFLXq_nCrrgAAAAAAAACK"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.consumeToken(org.elasticsearch.xpack.core.security.authc.AuthenticationToken)", "offset": 67}, "line": {"number": 533}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WBKrGzwz7SG6nZHQCew75AAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "InputStreamStreamInput.java"}, "function": {"name": "byte org.elasticsearch.common.io.stream.InputStreamStreamInput.readByte()"}, "line": {"number": 46}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QTOrQSYTYRh-yjbunkD12QAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$5(org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationResult)", "offset": 1}, "line": {"number": 384}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z2VnMzkPQ5tcla-26h5_wAAAAAAAAACK"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object jdk.internal.reflect.GeneratedMethodAccessor19.invoke(java.lang.Object, java.lang.Object[])"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HBFcmWqYWFH0QpoGRymingAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ByteQuadsCanonicalizer.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.findName(int, int, int)"}, "line": {"number": 632}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mJoi3SFo_n6E9osuGr5LCwAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "ParsedMediaType.java"}, "function": {"name": "org.elasticsearch.xcontent.ParsedMediaType org.elasticsearch.xcontent.ParsedMediaType.parseMediaType(java.lang.String)", "offset": 4}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_nvNcRJCfxwthC1TL7U3ZgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.xcontent.json.JsonXContentParser.currentName()"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XB92ZqmjSf6eYVY2gfZzzQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "LoggerConfig.java"}, "function": {"name": "void org.apache.logging.log4j.core.config.LoggerConfig.processLogEvent(org.apache.logging.log4j.core.LogEvent, org.apache.logging.log4j.core.config.LoggerConfig$LoggerConfigPredicate)", "offset": 2}, "line": {"number": 500}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dCnMOj8mcIDYox1J0hIoXQAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Settings.convertMapsToArrays(java.util.Map)", "offset": 24}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADQiL2"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/klauspost/compress@v1.13.6/zlib/writer.go"}, "function": {"name": "github.com/klauspost/compress/zlib.(*Writer).Flush"}, "line": {"number": 171}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cTku3JEuIQYlUuKgo_W7qgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.common.settings.Settings.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)"}, "line": {"number": 663}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACITtG"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/builder.go"}, "function": {"name": "strings.Join"}, "line": {"number": 69}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Z4NiN5Rb-vuXXHY-ZQp6fQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.discovery.SeedHostsResolver$$Lambda$5250+0x0000000801a54fd8.call()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OgXCZlr_5lhpTZQoSrxsMQAAAAAAAABd"}} -{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "java.lang.Object com.carrotsearch.hppc.ObjectObjectHashMap.put(java.lang.Object, java.lang.Object)", "offset": 14}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j_szotBjFArpC5TNR-8gUQAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$2(java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.ActionResponse)", "offset": 2}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dcjvmaaqRrRw5Y3TSsw1ugAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B03VKLwMCOkdekCjVSQyrQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2Kue-E0ocGjlBrYARCI6iAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase$1.doRun()"}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9BsFwV8tobvksYfuNpORcQAAAAAAAABJ"}} -{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 17}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QnmyhEe5Bxx-e8-BvuOf-wAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gNahpaWcgGeu0iqUthbPiQAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6072+0x0000000801c4ec40.getAsync(org.elasticsearch.action.ActionListener)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NFoti7zeivEyGvfQ3_ANTgAAAAAAAACQ"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.engine.InternalEngine.index(org.elasticsearch.index.engine.Engine$Index)", "offset": 37}, "line": {"number": 953}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "p5Yz2m4app3BEG7s8_6j3AAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction$1.read(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6clJsdr8vxLfgVYlQz2V-wAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$1$$Lambda$5574+0x0000000801b268c0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4J"}} -{"Stackframe": {"function": {"name": "schedule"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMceT"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/shirou/gopsutil@v3.20.12+incompatible/net/net_linux.go"}, "function": {"name": "github.com/shirou/gopsutil/net.processInet"}, "line": {"number": 777}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_v4rMkGY9KRFPld8us290AAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ThreadLocal.java"}, "function": {"name": "java.lang.Object java.lang.ThreadLocal.get()"}, "line": {"number": 169}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DSeW5vniUG6RwPchwmi1uQAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.createCompoundFile(org.apache.lucene.util.InfoStream, org.apache.lucene.store.TrackingDirectoryWrapper, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext, org.apache.lucene.util.IOUtils$IOConsumer)", "offset": 10}, "line": {"number": 5313}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL"}} -{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.SoftDeletesRetentionMergePolicy.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.util.IOSupplier)", "offset": 14}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gF_nbXcMCNR_uoF7fTSJRwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "TransportNodesInfoAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodeResponse org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction.newNodeResponse(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.node.DiscoveryNode)"}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAARNoY"}} -{"Stackframe": {"function": {"name": "security_file_permission"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HkjUMaOAIgy5n-g5-Z7RMgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "int org.apache.lucene.codecs.DocValuesConsumer$NumericDocValuesSub.nextDoc()"}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACOD-4"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/regexp.go"}, "function": {"name": "regexp.(*Regexp).FindAllStringSubmatch"}, "line": {"number": 1207}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "P9BGxoNfJ5xFs47cHe23_gAAAAAAAABK"}} -{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.util.stream.Node java.util.stream.AbstractPipeline.evaluateToArrayNode(java.util.function.IntFunction)", "offset": 15}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ws0N6fTgPArljYYAC403MwAAAAAAAABq"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.acceptState(org.elasticsearch.cluster.ClusterState)", "offset": 8}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HCyZkqmT62qgBdcLDAK4rQAAAAAAAABN"}} -{"Stackframe": {"file": {"name": "NativePrivilegeStore.java"}, "function": {"name": "java.util.Set org.elasticsearch.xpack.security.authz.store.NativePrivilegeStore.cachedDescriptorsForApplicationNames(java.util.Set)", "offset": 14}, "line": {"number": 300}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u8snKZkB2oBs9KSPImw4twAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext org.elasticsearch.common.util.concurrent.ThreadContext.lambda$wrapRestorable$5(org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext)", "offset": 1}, "line": {"number": 377}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tpYrdrzxLxKEo0lof5nOvwAAAAAAAABT"}} -{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter.finish(int)", "offset": 9}, "line": {"number": 486}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA0Bb"}} -{"Stackframe": {"file": {"name": "runtime/netpoll_epoll.go"}, "function": {"name": "runtime.netpoll"}, "line": {"number": 126}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s4lxyv29UjBRbk4Egon88gAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFEgQ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.sysmon"}, "line": {"number": 4743}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5662+0x0000000801b16450.getAsync(org.elasticsearch.action.ActionListener)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACga4-"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map_faststr.go"}, "function": {"name": "runtime.evacuate_faststr"}, "line": {"number": 451}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.applyChanges(org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState, org.elasticsearch.common.StopWatch)", "offset": 39}, "line": {"number": 498}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi9vJ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file.go"}, "function": {"name": "os.ReadFile"}, "line": {"number": 699}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "82-lh_T5Vv0w2WAb_RJ1VgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.coordination.Coordinator$$Lambda$4541+0x000000080182c0f0.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2UxNT-C0z0jLu_9A1XqURAAAAAAAAABp"}} -{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel)", "offset": 9}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "93KKtPDSfPMvEhxj9OzJ1gAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "void sun.nio.ch.FileChannelImpl$Closer.run()"}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u6OwtCLdW9mdeDVYCmhkdgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ApplyCommitRequest.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.ApplyCommitRequest.(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 28}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4"}} -{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService.snapshot(org.elasticsearch.index.shard.ShardId, org.elasticsearch.snapshots.Snapshot, org.elasticsearch.repositories.IndexId, java.util.Map, org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.elasticsearch.Version, org.elasticsearch.action.ActionListener)", "offset": 21}, "line": {"number": 370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cYiYZLNw79YI2sv5ZzfISgAAAAAAAABn"}} -{"Stackframe": {"file": {"name": "CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.finishDocument()", "offset": 10}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tRaKCDne9fKuTHuPgmdhjQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Path.java"}, "function": {"name": "com.typesafe.config.impl.Path com.typesafe.config.impl.Path.newPath(java.lang.String)"}, "line": {"number": 230}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7Ths3BiTuG0WGA437KJd6AAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "Class.java"}, "function": {"name": "void java.lang.Class.checkMemberAccess(java.lang.SecurityManager, int, java.lang.Class, boolean)", "offset": 4}, "line": {"number": 3107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2CjidhF2o1l9AQQZ7O2_8wAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.write(org.elasticsearch.common.xcontent.ToXContent, org.elasticsearch.common.blobstore.BlobContainer, java.lang.String, boolean)", "offset": 1}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LbtJPgD2DsxuaRUZZI3jKQAAAAAAAAG1"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 437}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XYoHt3UROpdP-PTQpV__OQAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "AbstractAsyncTask.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AbstractAsyncTask.run()", "offset": 8}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACN4k4"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/backtrack.go"}, "function": {"name": "regexp.(*bitState).reset"}, "line": {"number": 99}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAbiCP"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/libpf/periodiccaller/periodiccaller.go"}, "function": {"name": "github.com/optimyze/prodfiler/libpf/periodiccaller.StartWithManualTrigger.func1"}, "line": {"number": 45}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Lcui3wqgG5J4MV3ON_Xv2gAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.score(org.apache.lucene.search.LeafCollector, org.apache.lucene.util.Bits, int, int)"}, "line": {"number": 217}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiorZ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/io/io.go"}, "function": {"name": "io.CopyN"}, "line": {"number": 458}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb_l"}} -{"Stackframe": {"function": {"name": "__x64_sys_newlstat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d7mGKLotsZOhr3BShS80ZQAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.ReadersAndUpdates.getReader(org.apache.lucene.store.IOContext)", "offset": 2}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cgIdU-uvJLoO1WrtsV2P8gAAAAAAAByW"}} -{"Stackframe": {"function": {"name": "ena_alloc_skb"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HVhQ434ZUWqRQ1_LQX_XpwAAAAAAAABk"}} -{"Stackframe": {"file": {"name": "StreamSpliterators.java"}, "function": {"name": "boolean java.util.stream.StreamSpliterators$AbstractWrappingSpliterator.doAdvance()", "offset": 16}, "line": {"number": 169}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "r4_QAcqwjJ7g99R5zkgAbwAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "Index.java"}, "function": {"name": "void org.elasticsearch.index.Index.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 2}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w1YwyK3qUUqndS_KOv4yZgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.mergeNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.index.MergeState)"}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-od4"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bufio/scan.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.cpuacctStat"}, "line": {"number": 89}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4oDbmTWkgq5vmj9DqDhsSgAAAAAAAACm"}} -{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "java.util.Set org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$WildcardExpressionResolver.expand(org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$Context, org.elasticsearch.cluster.metadata.IndexMetadata$State, java.util.Map, java.lang.String, boolean)", "offset": 17}, "line": {"number": 1112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgl07"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.scanstack"}, "line": {"number": 720}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "06iTdeRQmLekYAN7ySRKRgAAAAAAAAFM"}} -{"Stackframe": {"file": {"name": "MasterService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.MasterService.runTasks(org.elasticsearch.cluster.service.MasterService$TaskInputs)", "offset": 47}, "line": {"number": 250}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gB5BZqY7kCPDXjPyO-APoQAAAAAAAABQ"}} -{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.failMissingShards(org.elasticsearch.cluster.ClusterState)", "offset": 8}, "line": {"number": 409}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1910FhfK6lbOz1zNZXgiBAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "SearchRequest.java"}, "function": {"name": "java.lang.Object org.elasticsearch.action.search.SearchRequest.rewrite(org.elasticsearch.index.query.QueryRewriteContext)"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LQNvdk2rwKFliFR4T-RauwAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "int org.elasticsearch.common.io.Streams.readFully(java.io.InputStream, byte[], int, int)", "offset": 2}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "magbhCHeVfi3Wy-2mP5Q-wAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "boolean org.elasticsearch.common.io.stream.StreamInput.readBoolean()"}, "line": {"number": 549}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lttOzJDK7vp2gzlL7l9TywAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "boolean java.util.stream.StreamSpliterators$WrappingSpliterator$$Lambda$187.getAsBoolean()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4pvybjWiZ2z1nXODgO13BwAAAAAAAABi"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "boolean java.lang.String.regionMatches(boolean, int, java.lang.String, int, int)", "offset": 14}, "line": {"number": 2238}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XOANMxdhSEwzaUIzOG_mBQAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "Netty4HttpChannel.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpChannel.sendResponse(org.elasticsearch.http.HttpResponse, org.elasticsearch.action.ActionListener)"}, "line": {"number": 34}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.doNext(int)"}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY"}} -{"Stackframe": {"function": {"name": "__vfs_write"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLLdC"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/path/filepath/path.go"}, "function": {"name": "path/filepath.walk"}, "line": {"number": 360}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3b73aK2YxmWJY2Of38z3nwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "PolicySpiFile.java"}, "function": {"name": "boolean sun.security.provider.PolicySpiFile.engineImplies(java.security.ProtectionDomain, java.security.Permission)"}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PkXHEXW7ZdXzVhylrWjRfAAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "LambdaForm$MH"}, "function": {"name": "void java.lang.invoke.LambdaForm$MH+0x0000000801278c00.invokeExact_MT(java.lang.Object, java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fNq1xcdgQyMKMcU704EIcwAAAAAAAAFl"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$PendingBlock org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.writeBlock(int, boolean, int, int, int, boolean, boolean)", "offset": 61}, "line": {"number": 727}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j8cyxnhvgCmiV0wfzWt-5wAAAAAAAABH"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.finishAuthentication(org.elasticsearch.xpack.core.security.user.User)", "offset": 6}, "line": {"number": 670}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0_Qu9apMk2NBmlHgbr1B6AAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "HttpClient.java"}, "function": {"name": "void sun.net.www.http.HttpClient.writeRequests(sun.net.www.MessageHeader, sun.net.www.http.PosterOutputStream, boolean)", "offset": 1}, "line": {"number": 700}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1FOdQtgbdsA6Mn7Hl3d12gAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ParserMinimalBase.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.base.ParserMinimalBase.getCurrentToken()"}, "line": {"number": 192}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OUAIFP5dDEg6s1Mg3RJ3BwAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "AbstractInternalTerms.java"}, "function": {"name": "org.elasticsearch.search.aggregations.BucketOrder org.elasticsearch.search.aggregations.bucket.terms.AbstractInternalTerms.reduceBuckets(java.util.List, org.elasticsearch.search.aggregations.AggregationReduceContext, java.util.function.Function)", "offset": 4}, "line": {"number": 169}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACsp77"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/processing/processors.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/processing.newGeneralizeProcessor.func1"}, "line": {"number": 54}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZZqFVPfJM-LkfzPbeaoP8QAAAAAAAAIW"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "boolean org.apache.lucene.index.ReadersAndUpdates.writeFieldUpdates(org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos$FieldNumbers, long, org.apache.lucene.util.InfoStream)", "offset": 76}, "line": {"number": 627}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "D5lAQaLy9ATYrsXm9SsubAAAAAAAAACj"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesProducer.(org.apache.lucene.index.SegmentReadState, java.lang.String, java.lang.String, java.lang.String, java.lang.String)", "offset": 30}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AubeNF84QUpeTFnLAqLSHwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "BooleanQuery.java"}, "function": {"name": "int org.apache.lucene.search.BooleanQuery.hashCode()", "offset": 1}, "line": {"number": 611}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf"}} -{"Stackframe": {"file": {"name": "AbstractNioByteChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read()", "offset": 30}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAALWB8"}} -{"Stackframe": {"file": {"name": "crypto/tls/conn.go"}, "function": {"name": "crypto/tls.(*atLeastReader).Read"}, "line": {"number": 788}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "g97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$7.doRun()"}, "line": {"number": 912}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TzNCuGdPQLOM_n-NFGUyRAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "MemoryImpl.java"}, "function": {"name": "java.lang.management.MemoryUsage sun.management.MemoryImpl.getHeapMemoryUsage()"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eufT8zCegZUSBK09BAzk9wAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.doHandleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.internal.node.NodeClient)", "offset": 1}, "line": {"number": 123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JjiG_BroZFP40tpmv2LaAQAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "sun.security.ssl.Plaintext sun.security.ssl.SSLEngineImpl.decode(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer[], int, int)"}, "line": {"number": 736}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ayzEJn0yXJUnduJSj-TGpwAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.elasticsearch.core.IOUtils.close(java.lang.Iterable)", "offset": 3}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "orlPZCc2xkGLIiJeP3togwAAAAAAAABu"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.setDiagnostics(org.apache.lucene.index.SegmentInfo, java.lang.String, java.util.Map)", "offset": 9}, "line": {"number": 4593}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HPI2YWr4g9SqMbjuaH6qtgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.isDirectory(java.nio.file.Path)", "offset": 1}, "line": {"number": 516}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAROzI"}} -{"Stackframe": {"function": {"name": "security_file_alloc"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RG27-YI0581PEQWOvS3HXgAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "AbstractLogger.java"}, "function": {"name": "void org.apache.logging.log4j.spi.AbstractLogger.logIfEnabled(java.lang.String, org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message, java.lang.Throwable)", "offset": 1}, "line": {"number": 1836}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW"}} -{"Stackframe": {"function": {"name": "ksys_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lHZiv7a58px6Gumcpo-6yAAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.addNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 3}, "line": {"number": 135}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE-P2"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.findrunnable"}, "line": {"number": 2274}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "awew_bSRnubxb3pzzrP7yAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "FreqProxFields.java"}, "function": {"name": "int org.apache.lucene.index.FreqProxFields$FreqProxDocsEnum.nextDoc()"}, "line": {"number": 361}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UVlIDr_FMx_kZCYsc8A86AAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat$$Lambda$5894.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "itjDcpmd0UURokNo5gFmMwAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "SegmentCommitInfo.java"}, "function": {"name": "void org.apache.lucene.index.SegmentCommitInfo.setDocValuesUpdatesFiles(java.util.Map)", "offset": 1}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgaXE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map_faststr.go"}, "function": {"name": "runtime.mapassign_faststr"}, "line": {"number": 253}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yd6OSCVn-rYcvCrx8ZU3zQAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.internalSend(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.BytesReference, org.elasticsearch.transport.OutboundMessage, org.elasticsearch.action.ActionListener)", "offset": 44}, "line": {"number": 239}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GdhxFD1IejJtAWM_J6NGiQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ConcreteReplicaRequest.(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 1214}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "12n4kLu1zHbL__mlN4aSKQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ContainerInspectorService.scala"}, "function": {"name": "boolean no.found.runner.docker.ContainerInspectorService.isInspectionDataChanged(com.fasterxml.jackson.databind.node.ObjectNode, com.fasterxml.jackson.databind.node.ObjectNode)"}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAATnRm"}} -{"Stackframe": {"function": {"name": "__blk_mq_delay_run_hw_queue"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IlQ1XNLSC8AG8SGKzC1MsQAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.IndexShardStats org.elasticsearch.indices.IndicesService.indexShardStats(org.elasticsearch.indices.IndicesService, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 8}, "line": {"number": 450}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "c4tAsAimVlPgj7zIV9p01AAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Hasher.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authc.support.Hasher.verifyHash(org.elasticsearch.common.settings.SecureString, char[])", "offset": 1}, "line": {"number": 618}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACg2q2"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/conditionals.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors.(*WhenProcessor).Run"}, "line": {"number": 86}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD5VLl"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/go.etcd.io/bbolt@v1.3.4/bolt_linux.go"}, "function": {"name": "go.etcd.io/bbolt.fdatasync"}, "line": {"number": 9}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wTSbu1Pr78mJrU1RTg5RYgAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.commitIndexWriter(org.apache.lucene.index.IndexWriter, org.elasticsearch.index.translog.Translog, java.lang.String)", "offset": 34}, "line": {"number": 2793}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GTDz5BEJ5HMljeo0WMABIQAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "Netty4MessageChannelHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler.flush(io.netty.channel.ChannelHandlerContext)", "offset": 1}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qJ2vE1gl2eFBSUsZq5gB9gAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$UnmodifiableList.equals(java.lang.Object)"}, "line": {"number": 1318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "t00AyiEovcQQgPQRAnJDoQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ObjectParser.parseValue(org.elasticsearch.common.xcontent.XContentParser, org.elasticsearch.common.xcontent.ObjectParser$FieldParser, java.lang.String, java.lang.Object, java.lang.Object)"}, "line": {"number": 529}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2wqip68wJ7R4oQBTg-VpcgAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "ReaderContext.java"}, "function": {"name": "void org.elasticsearch.search.internal.ReaderContext.doClose()"}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0X3gxtaF6COySAPka5kw8AAAAAAAAABH"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.dispatchedShardOperationOnPrimary(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "D7No12t1lMzlOf32q04HAAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService.authenticate(java.lang.String, org.elasticsearch.transport.TransportRequest, boolean, org.elasticsearch.action.ActionListener)"}, "line": {"number": 184}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vtOmTuUGvKYiQRK_O9kHuwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "long[] org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.writeValues(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)"}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YM_gl0OeNbTAtY8GRC8UVgAAAAAAAACb"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 29}, "line": {"number": 117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VOTAjRbOztte8sAj2_6YtwAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "GetInstance.java"}, "function": {"name": "sun.security.jca.GetInstance$Instance sun.security.jca.GetInstance.getInstance(java.lang.String, java.lang.Class, java.lang.String)", "offset": 8}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rUHBgSz_SQE-q7C0lnDupQAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.ReadersAndUpdates.getReadOnlyClone(org.apache.lucene.store.IOContext)", "offset": 7}, "line": {"number": 219}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Jj6ja2Wbkf1_R1a9nVWcUAAAAAAAAAEp"}} -{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.CommonStats.(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 45}, "line": {"number": 202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n89kGiBdFucX6T4kdjXe_gAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "void sun.nio.fs.UnixPath.checkRead()", "offset": 2}, "line": {"number": 818}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w8YyBE6YuJVW0xgQWj8zJQAAAAAAAABv"}} -{"Stackframe": {"file": {"name": "TranslogWriter.java"}, "function": {"name": "boolean org.elasticsearch.index.translog.TranslogWriter.syncUpTo(long)", "offset": 19}, "line": {"number": 408}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zAIz7NuFqlw3h3Uiyx0xSAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Settings.internKeyOrValue(java.lang.String)"}, "line": {"number": 1547}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ms-x3fJ8QBk7y_Ax6kns5QAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$2.onResponse(java.lang.Void)"}, "line": {"number": 302}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkBSk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/print.go"}, "function": {"name": "fmt.(*pp).fmtBytes"}, "line": {"number": 82}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OfKlbKqoKpVidKq-tTe4JQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "int java.util.ArrayList$ArrayListSpliterator.characteristics()"}, "line": {"number": 1638}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ztOqW-PzPXXgelwqIpykOgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeFlush()", "offset": 1}, "line": {"number": 742}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5FI5oFvKw7q1gOKG3iUcCQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "ByteBuffersDataOutput.java"}, "function": {"name": "org.apache.lucene.store.ByteBuffersDataInput org.apache.lucene.store.ByteBuffersDataOutput.toDataInput()"}, "line": {"number": 279}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K_N78LhUkthI1fnHsP1_6gAAAAAAAAC1"}} -{"Stackframe": {"file": {"name": "Regex.java"}, "function": {"name": "boolean org.elasticsearch.common.regex.Regex.simpleMatchWithNormalizedStrings(java.lang.String, java.lang.String)", "offset": 28}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NB3KICW80r4krIyGFXIJIgAAAAAAAABZ"}} -{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "long org.apache.lucene.index.DocumentsWriterPerThread.updateDocuments(java.lang.Iterable, org.apache.lucene.index.DocumentsWriterDeleteQueue$Node, org.apache.lucene.index.DocumentsWriter$FlushNotifications, java.lang.Runnable)", "offset": 25}, "line": {"number": 241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "v7GKAWxeXNZbjk8Dw8GzZgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "void org.elasticsearch.index.store.ByteSizeCachingDirectory$2.writeByte(byte)"}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMs_k"}} -{"Stackframe": {"function": {"name": "ep_scan_ready_list.constprop.20"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M9Xltn711KKFcrKCAYh_ZgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$SparseNumericDocValues.nextDoc()"}, "line": {"number": 457}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAb0v3"}} -{"Stackframe": {"function": {"name": "blkif_queue_rq"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V0dDfKfk8_0OrffeLu2lkwAAAAAAAAMF"}} -{"Stackframe": {"file": {"name": "OrdinalMap.java"}, "function": {"name": "void org.apache.lucene.index.OrdinalMap.(org.apache.lucene.index.IndexReader$CacheKey, org.apache.lucene.index.TermsEnum[], org.apache.lucene.index.OrdinalMap$SegmentMap, float)", "offset": 151}, "line": {"number": 360}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9D5umgMyZZQX73v4UAWBowAAAAAAAAEL"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.messageReceived(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage, long)", "offset": 40}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXry3"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.(*GenericEventConverter).normalizeMap"}, "line": {"number": 92}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ev9mEltsHnyAh-1pwp44VgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "void org.elasticsearch.index.reindex.AbstractAsyncBulkByScrollAction.onScrollResponse(org.elasticsearch.index.reindex.ScrollableHitSource$AsyncResponse)"}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BLRskqAfxw4UNf9p7ldQOAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.common.io.stream.StreamInput.readBytesReference(int)", "offset": 4}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiwXQ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/internal/poll/fd_unix.go"}, "function": {"name": "internal/poll.(*FD).SetBlocking"}, "line": {"number": 127}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.apache.lucene.store.FilterDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OjvPQ5fmr7USI7dgYlFDbgAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$authorizeIndexAction$3(org.elasticsearch.transport.TransportRequest, org.elasticsearch.xpack.core.security.authz.permission.Role, java.lang.String, org.elasticsearch.action.ActionListener, java.util.Map, org.elasticsearch.xpack.core.security.authz.ResolvedIndices)", "offset": 8}, "line": {"number": 366}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PiOrKx8ttRLABiq6GioeqAAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$1.onResponse(java.lang.Void)", "offset": 1}, "line": {"number": 557}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7JN_tS6A_rP-FvBgm0sAlgAAAAAAAACh"}} -{"Stackframe": {"file": {"name": "IndexShardOperationPermits.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShardOperationPermits.acquire(org.elasticsearch.action.ActionListener, java.lang.String, boolean, java.lang.Object, java.lang.StackTraceElement[])", "offset": 43}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8WTNcSpaCvjR8mgFDe3uSAAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsReader.java"}, "function": {"name": "org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader$SerializedDocument org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsReader.document(int)", "offset": 2}, "line": {"number": 607}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zHOgb2zN-3HJtDx09H8hxgAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$5404+0x0000000801ab5140.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Hr7DaUVBf6Mvou5VCDAFbQAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "SecondaryAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator.authenticate(java.util.function.Consumer, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 94}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vBUXiATpzOM0BljEW_3RggAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$authorizeIndexAction$3(org.elasticsearch.action.ActionListener, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, java.util.Map, org.elasticsearch.xpack.core.security.authz.ResolvedIndices)", "offset": 8}, "line": {"number": 352}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qqNm7TjIy3nH3d170jURgAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry$$Lambda$6322+0x00000008023b5ff8.close()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cGonFmCxGC0dUZ5gEg0KQgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.take()"}, "line": {"number": 1286}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAVPVA"}} -{"Stackframe": {"function": {"name": "__nla_put"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xo8H4Xbu1dhktweO39ARgAAAAAAAAABJ"}} -{"Stackframe": {"file": {"name": "ChannelInputStream.java"}, "function": {"name": "int sun.nio.ch.ChannelInputStream.read(byte[], int, int)", "offset": 11}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "931sEtpcdsHnD8gPYzKXOAAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "void org.elasticsearch.search.SearchService.lambda$runAsync$0(org.elasticsearch.common.CheckedSupplier, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 416}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "shNXixs-94AywpTuAMqgvAAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.List org.elasticsearch.common.io.stream.StreamInput.readList(org.elasticsearch.common.io.stream.Writeable$Reader)"}, "line": {"number": 1204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-0VK45z04oVPTcwdwQBREQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "PhaseExecutionInfo.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.PhaseExecutionInfo org.elasticsearch.xpack.core.ilm.PhaseExecutionInfo.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.String)"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i82Zyo5E5T7CxIz0RyaEdwAAAAAAAABY"}} -{"Stackframe": {"file": {"name": "SegmentCoreReaders.java"}, "function": {"name": "void org.apache.lucene.index.SegmentCoreReaders.decRef()", "offset": 2}, "line": {"number": 192}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrj_"}} -{"Stackframe": {"function": {"name": "htab_map_get_next_key"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "doXLcevMUoeaLTEtb67onQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ChannelOutputStream.java"}, "function": {"name": "void sun.nio.ch.ChannelOutputStream.close()"}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d-yaMT2eqIGS5Mntl0M-0AAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "void org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction$1.doRun()"}, "line": {"number": 345}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "akHLSuC4R8vzlPIApTxuxAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "AsyncIOProcessor.java"}, "function": {"name": "java.lang.Exception org.elasticsearch.common.util.concurrent.AsyncIOProcessor.processList(java.util.List)", "offset": 3}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChaNv"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/string.go"}, "function": {"name": "runtime.stringtoslicebyte"}, "line": {"number": 175}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1OssVXIbkn5BQi4tGKSa8AAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "void java.io.FilePermission.(java.lang.String, java.lang.String)", "offset": 1}, "line": {"number": 489}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CeCTWGhzZ22dKgkK2rmozgAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "AuthenticationContextSerializer.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authc.Authentication org.elasticsearch.xpack.core.security.authc.support.AuthenticationContextSerializer.decode(java.lang.String)", "offset": 4}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f_CZN8iINQcDj7x0CPthQQAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "SegmentInfos.java"}, "function": {"name": "void org.apache.lucene.index.SegmentInfos.write(org.apache.lucene.store.Directory)", "offset": 12}, "line": {"number": 558}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi_V1"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file_unix.go"}, "function": {"name": "os.openFileNolog"}, "line": {"number": 205}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cFagk4BlhcbBvpuO0I98vQAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "XContentHelper.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.XContentHelper.convertToMap(org.elasticsearch.xcontent.XContent, java.io.InputStream, boolean, java.util.Set, java.util.Set)", "offset": 3}, "line": {"number": 232}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "scmKVHdEh9kSE1fqSoqaQwAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$4(org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationResult)", "offset": 1}, "line": {"number": 281}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yr4X--AwYxsbC6m4-WPbMwAAAAAAAADF"}} -{"Stackframe": {"file": {"name": "W3CTraceContextPropagator.java"}, "function": {"name": "void io.opentelemetry.api.trace.propagation.W3CTraceContextPropagator.inject(io.opentelemetry.context.Context, java.lang.Object, io.opentelemetry.context.propagation.TextMapSetter)", "offset": 27}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAArd4"}} -{"Stackframe": {"function": {"name": "xfs_btree_lookup_get_block"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZU5AuXlgdgIyHSjGyxSQTQAAAAAAAABc"}} -{"Stackframe": {"file": {"name": "BitsetFilterCache.java"}, "function": {"name": "org.elasticsearch.index.IndexWarmer$TerminationHandle org.elasticsearch.index.cache.bitset.BitsetFilterCache$BitSetProducerWarmer.warmReader(org.elasticsearch.index.shard.IndexShard, org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)", "offset": 14}, "line": {"number": 243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jRPUUEtO9tA38nKSenaVfwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "void org.elasticsearch.index.store.ByteSizeCachingDirectory.deleteFile(java.lang.String)"}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l_dBS8vWr6HOAt7h6uX29gAAAAAAAABz"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.lambda$executeRequest$6(org.elasticsearch.action.search.SearchTask, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.action.ActionListener, org.elasticsearch.action.search.TransportSearchAction$SearchAsyncActionProvider, org.elasticsearch.action.search.SearchRequest)", "offset": 16}, "line": {"number": 399}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQ"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.addPathRecord"}, "line": {"number": 370}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1vp7uJIrygtcfnEawBUBQQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 6}, "line": {"number": 496}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pu8D6sV8P__KgMNFVLf0qAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.http.DefaultRestChannel$$Lambda$6640+0x000000080241baa0.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xSMSLP0FCwY_wmCLQTamVgAAAAAAAACR"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap$ValueSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 18}, "line": {"number": 1787}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAilrf"}} -{"Stackframe": {"function": {"name": "__sock_create"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "Thread.java"}, "function": {"name": "void java.lang.Thread.run()", "offset": 1}, "line": {"number": 833}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AAAAAAAAV4sAAAAAAAAAHRE5XrAsaLVe"}} -{"Stackframe": {"function": {"name": "_rethrow_Java"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WUsgmXBmEYsZWCQlmPqU4wAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "LockSupport.java"}, "function": {"name": "void java.util.concurrent.locks.LockSupport.parkNanos(long)", "offset": 1}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-hiK"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/transform/typeconv/typeconv.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common/transform/typeconv.foldTimestamp"}, "line": {"number": 141}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CfIO15i68EO1AMNsYlotCQAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "IndicesQueryCache.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.elasticsearch.indices.IndicesQueryCache$CachingWeightWrapper.scorerSupplier(org.apache.lucene.index.LeafReaderContext)", "offset": 1}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cT0xsbXYEQkQw_3ez7RUcAAAAAAAAACc"}} -{"Stackframe": {"file": {"name": "HandshakeContext.java"}, "function": {"name": "void sun.security.ssl.HandshakeContext.dispatch(byte, sun.security.ssl.Plaintext)", "offset": 31}, "line": {"number": 421}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wD7qCDk3lqH0hpTFDQk1YQAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readMapEntries(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier, java.util.Map)", "offset": 3}, "line": {"number": 314}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bZRwWM7SmFPsrzq-cg210QAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "ActionFilter.java"}, "function": {"name": "void org.elasticsearch.action.support.ActionFilter$Simple.apply(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.support.ActionFilterChain)", "offset": 1}, "line": {"number": 42}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VY8isU5x9BO-Wo5ffXRMDwAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$ContextRestoreResponseHandler.handleResponse(org.elasticsearch.transport.TransportResponse)", "offset": 4}, "line": {"number": 1471}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_Ubg0iuUR3XcVAuRI3qBugAAAAAAAAA8"}} -{"Stackframe": {"file": {"name": "FilteringGeneratorDelegate.java"}, "function": {"name": "void com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate.writeString(java.lang.String)", "offset": 15}, "line": {"number": 478}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAapsi"}} -{"Stackframe": {"file": {"name": "google.golang.org/grpc@v1.46.0/call.go"}, "function": {"name": "google.golang.org/grpc.(*ClientConn).Invoke"}, "line": {"number": 35}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b6rO_tpQt622H0nBBuO6SAAAAAAAAABQ"}} -{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.StandardDirectoryReader org.apache.lucene.index.StandardDirectoryReader.open(org.apache.lucene.index.IndexWriter, org.apache.lucene.util.IOUtils$IOFunction, org.apache.lucene.index.SegmentInfos, boolean, boolean)", "offset": 15}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TxXdkaD1k2I8BNI8tO8C0QAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "SSLHandshake.java"}, "function": {"name": "void sun.security.ssl.SSLHandshake.consume(sun.security.ssl.ConnectionContext, java.nio.ByteBuffer)", "offset": 2}, "line": {"number": 396}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ybCcUk4-fZcYJk9ygl24tgAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.executeQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)", "offset": 6}, "line": {"number": 434}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PUOftuajAWpkSAzvofXrOAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "void io.netty.util.concurrent.DefaultPromise.notifyListener0(io.netty.util.concurrent.Future, io.netty.util.concurrent.GenericFutureListener)"}, "line": {"number": 578}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABV_9X"}} -{"Stackframe": {"file": {"name": "github.com/cilium/ebpf@v0.9.1/perf/reader.go"}, "function": {"name": "github.com/cilium/ebpf/perf.readRecord"}, "line": {"number": 80}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Hr4PYZ-sL6e-tu-94q7YcgAAAAAAAAEX"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.parseMediumName2(int, int)", "offset": 35}, "line": {"number": 1811}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACOos-"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/prometheus/procfs@v0.0.11/proc_stat.go"}, "function": {"name": "github.com/prometheus/procfs.Proc.Stat"}, "line": {"number": 137}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zgWJWAG4cU3Xrqg1zXbg-gAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "MultiBucketCollector.java"}, "function": {"name": "org.elasticsearch.search.aggregations.LeafBucketCollector org.elasticsearch.search.aggregations.MultiBucketCollector$1.getLeafCollector(org.elasticsearch.search.aggregations.AggregationExecutionContext)"}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4dIwNpyNQOyQPjDgfjNvLgAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "JarURLConnection.java"}, "function": {"name": "void sun.net.www.protocol.jar.JarURLConnection.connect()", "offset": 2}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ActionRunnable.java"}, "function": {"name": "void org.elasticsearch.action.ActionRunnable$2.accept(java.lang.Object)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4as0IgurEXJei_r6XmrPIAAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain$$Lambda$6569+0x00000008024123f8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAC1cHV"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/queue/diskqueue/deleter_loop.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/queue/diskqueue.(*deleterLoop).run"}, "line": {"number": 71}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANyFD"}} -{"Stackframe": {"function": {"name": "proc_tgid_stat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABWB4e"}} -{"Stackframe": {"file": {"name": "github.com/cilium/ebpf@v0.9.1/perf/reader.go"}, "function": {"name": "github.com/cilium/ebpf/perf.(*Reader).readRecordFromRing"}, "line": {"number": 392}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HqYb0PdiyN53WuhXPhqilAAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.reindex.BulkByScrollParallelizationHelper$$Lambda$9059+0x0000000802822678.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LJHrWrJn2NgzCwphqZHUTAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "IndexReader.java"}, "function": {"name": "void org.apache.lucene.index.IndexReader.close()", "offset": 1}, "line": {"number": 411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DXdMeaVdTCEAlfe2D9urYgAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "SortBuilder.java"}, "function": {"name": "java.util.Optional org.elasticsearch.search.sort.SortBuilder.buildSort(java.util.List, org.elasticsearch.index.query.QueryShardContext)", "offset": 3}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LaFl4epk0Q6S_D_8elQACwAAAAAAAAB7"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.(org.apache.lucene.index.SegmentWriteState, java.lang.String, java.lang.String, java.lang.String, java.lang.String)", "offset": 18}, "line": {"number": 92}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xf5Rtge3j9bwcFOKpX5KywAAAAAAAAFn"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 359}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zLx6iJ9ANFZvdAJHeiPhJwAAAAAAAAEb"}} -{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter.flush(boolean)", "offset": 28}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e90u-5fAd6zfZCzh34GJuQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "DeprecationLogger.java"}, "function": {"name": "void org.elasticsearch.common.logging.DeprecationLogger.doPrivilegedLog(org.apache.logging.log4j.Level, org.elasticsearch.common.logging.ESLogMessage)"}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bCBdTuDS0DbCDGTJHRgQHgAAAAAAAAC1"}} -{"Stackframe": {"file": {"name": "Lucene50CompoundFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene50.Lucene50CompoundFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 21}, "line": {"number": 97}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bHBG5nCjuJ3R3DK71capIAAAAAAAAABQ"}} -{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ObjectParser.parseSub(org.elasticsearch.common.xcontent.XContentParser, org.elasticsearch.common.xcontent.ObjectParser$FieldParser, java.lang.String, java.lang.Object, java.lang.Object)", "offset": 3}, "line": {"number": 541}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FJBAv_ZG17EaYJPkcMS1YQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "HashSet.java"}, "function": {"name": "void java.util.HashSet.(java.util.Collection)", "offset": 1}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACN5ob"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/backtrack.go"}, "function": {"name": "regexp.(*Regexp).backtrack"}, "line": {"number": 366}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yw6bxJhWZryqlInRYdFqbAAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.lambda$innerAcquireReplicaOperationPermit$29(long, long, long, org.elasticsearch.action.ActionListener, org.elasticsearch.core.Releasable)", "offset": 20}, "line": {"number": 3651}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.maybeMerge(org.apache.lucene.index.MergePolicy, org.apache.lucene.index.MergeTrigger, int)", "offset": 2}, "line": {"number": 2288}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b1XRsL3HnSmx1ytW_GO79wAAAAAAAAGd"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 413}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3J4xYgNuxGhatL0AuGYJCQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.cluster.coordination.Coordinator$$Lambda$4226+0x000000080187ace0.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_Y111vaJECHVrJHlW7bsXgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vbussj-QMZO635c5MGfv6AAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "c7fJv8qzYljmNQmIpTZNBgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$5(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener)"}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DcQnfqeciVDd9XNH90x5WgAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "PluginsAndModules.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.node.info.PluginsAndModules.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 2}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RRNTWis_73RpiEYdz0TaKgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.endObject()"}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SyH3A-L8GuYowpuZ08nsBwAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeFieldName(java.lang.String)", "offset": 3}, "line": {"number": 546}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5DGFi3MrQEDDo8fCYbA5hAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "org.elasticsearch.index.store.StoreStats org.elasticsearch.index.store.Store.stats(long, java.util.function.LongUnaryOperator)", "offset": 1}, "line": {"number": 353}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F0qxPYeb0myVD7w47s3EgAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction.newResponseAsync(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.nodes.BaseNodesRequest, java.util.List, java.util.List, org.elasticsearch.action.ActionListener)"}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TJNGpZ5zrxHIWzJGPowW7QAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.xcontent.support.AbstractXContentParser.mapOrdered()"}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KLVXRA0aP5RJcNHXSqhKGQAAAAAAAADs"}} -{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ObjectParser.lambda$declareNamedObjects$14(java.util.function.BiFunction, java.util.function.Consumer, org.elasticsearch.common.ParseField, java.util.function.BiConsumer, org.elasticsearch.common.xcontent.XContentParser, java.lang.Object, java.lang.Object)", "offset": 24}, "line": {"number": 474}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgg6F"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgc.go"}, "function": {"name": "runtime.GC"}, "line": {"number": 467}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5Ho0mKlqizkOap-L7lfOxAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 372}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qaJzYdoMxLLfgqJxrGOnFwAAAAAAAADr"}} -{"Stackframe": {"file": {"name": "NestedHelper.java"}, "function": {"name": "boolean org.elasticsearch.index.search.NestedHelper.mightMatchNestedDocs(org.apache.lucene.search.Query)", "offset": 32}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmcbu"}} -{"Stackframe": {"function": {"name": "fib_table_lookup"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VSALBRPvgHpUWKmpUo1khAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.docID()"}, "line": {"number": 247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnv"}} -{"Stackframe": {"function": {"name": "net_rx_action"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD9J"}} -{"Stackframe": {"function": {"name": "syscall_slow_exit_work"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi1U9"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/internal/poll/fd_unix.go"}, "function": {"name": "internal/poll.DupCloseOnExec"}, "line": {"number": 709}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Dfl7_VkgAlUBnXT98IPo0AAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()"}, "line": {"number": 750}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BL94eflI2jQw-ekg2oR2CwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "AggregationBuilder.java"}, "function": {"name": "java.lang.Object org.elasticsearch.search.aggregations.AggregationBuilder.rewrite(org.elasticsearch.index.query.QueryRewriteContext)"}, "line": {"number": 32}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE_nY"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.schedule"}, "line": {"number": 2715}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qrmk67kNwxQVIgdMvHYZ7AAAAAAAAABr"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 107}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "41brnCY5Cm2BMq931HQnJgAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.completeCommit()", "offset": 3}, "line": {"number": 1198}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-xFdqCD-duGNADV_YhlNPAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelHandlerContext io.netty.channel.AbstractChannelHandlerContext.fireChannelReadComplete()"}, "line": {"number": 390}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3bipPb-lPFytoX0zurH-oQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "BitSetIterator.java"}, "function": {"name": "int org.apache.lucene.util.BitSetIterator.advance(int)"}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aDG65F6vpUG6StE5BqosegAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.lambda$callClusterStateListeners$6(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.common.StopWatch, org.elasticsearch.cluster.ClusterStateListener)", "offset": 2}, "line": {"number": 527}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJloA"}} -{"Stackframe": {"function": {"name": "tlb_finish_mmu"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V7ZQpsmBMqxELCbB426IWgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Authentication.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authc.Authentication.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 2}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C_0aTeR6JBYKeG8Yqz7OGgAAAAAAAAET"}} -{"Stackframe": {"file": {"name": "CoordinationState.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishResponse org.elasticsearch.cluster.coordination.CoordinationState.handlePublishRequest(org.elasticsearch.cluster.coordination.PublishRequest)", "offset": 36}, "line": {"number": 413}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n2S0SyZv0DZ6ex1YiCzcfAAAAAAAAABH"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$1.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 8}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JvScc-kAblhDe3HgLZgGAwAAAAAAAAEP"}} -{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.CommonStats.(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 39}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CMh__DRjYW6WKuSO4E-9UAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$6.doRun()"}, "line": {"number": 1045}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuKD"}} -{"Stackframe": {"function": {"name": "__x64_sys_epoll_ctl"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "le8VfryMtJlEyXJeMd-6oAAAAAAAAADv"}} -{"Stackframe": {"file": {"name": "NodeInfo.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.node.info.NodeInfo.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 26}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ENx9tYcf3nwb1xixCRhg9QAAAAAAAACe"}} -{"Stackframe": {"file": {"name": "Lucene90BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.blocktree.Lucene90BlockTreeTermsWriter.close()", "offset": 19}, "line": {"number": 1186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcFF"}} -{"Stackframe": {"function": {"name": "__x64_sys_newfstat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGN"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 397}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Tsx0vqyY9P-yze5xYzq4cQAAAAAAAAhp"}} -{"Stackframe": {"file": {"name": "BooleanQuery.java"}, "function": {"name": "org.apache.lucene.search.Query org.apache.lucene.search.BooleanQuery.rewrite(org.apache.lucene.index.IndexReader)", "offset": 249}, "line": {"number": 485}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CRg6QlL2uey44K0aGTfMcwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Thread.java"}, "function": {"name": "void java.lang.Thread.yield0()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4mP1QUetE95tascrKJS6rQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.IndexWriter$$Lambda$5954+0x00000008022e23e0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LqWoZU6IFVF0r3seu7DqqgAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "SimpleConfigObject.java"}, "function": {"name": "com.typesafe.config.impl.SimpleConfigObject com.typesafe.config.impl.SimpleConfigObject.mergedWithObject(com.typesafe.config.impl.AbstractConfigObject)", "offset": 14}, "line": {"number": 263}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_wKjyluEXlCffpVzynun0AAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 16}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.markroot"}, "line": {"number": 181}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ofSe_Fg814BTHLq535yxtwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction$$Lambda$5355.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "klX8tI6RbguXhwa8P7ml8gAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$1.onResponse(java.lang.Void)", "offset": 3}, "line": {"number": 577}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8g3sLjFnKCF_JJchxYP5DAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "io.opentelemetry.context.Context org.elasticsearch.tracing.apm.APMTracer.lambda$startTrace$2(java.lang.String, java.lang.String, org.elasticsearch.tracing.apm.APMTracer$APMServices, org.elasticsearch.common.util.concurrent.ThreadContext, java.util.Map, java.lang.String)"}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9kietkvv7S77zKWxgixZjwAAAAAAAABp"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.maybeAuthorizeRunAs(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 20}, "line": {"number": 364}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 8}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$DirectResponseChannel.processResponse(org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 1241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtk"}} -{"Stackframe": {"file": {"name": "runtime/asm_amd64.s"}, "function": {"name": "runtime.mstart"}, "line": {"number": 391}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANs3E"}} -{"Stackframe": {"function": {"name": "proc_pid_readlink"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmvi"}} -{"Stackframe": {"file": {"name": "runtime/asm_amd64.s"}, "function": {"name": "runtime.mcall"}, "line": {"number": 449}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACO"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.merge(org.apache.lucene.index.MergeState)", "offset": 16}, "line": {"number": 145}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6DNz9unm7hTuRqznyhbqWwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Lucene94Codec.java"}, "function": {"name": "org.apache.lucene.codecs.PostingsFormat org.apache.lucene.codecs.lucene94.Lucene94Codec$1.getPostingsFormatForField(java.lang.String)"}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8sAjWSAryT3cfwTe10tROQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.apache.lucene.util.RamUsageEstimator$$Lambda$190+0x0000000801309ae8.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3QWEH8eApmH_ruugOKv76AAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "void org.elasticsearch.cluster.SnapshotsInProgress.(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "p44jm-0OOebdVB7Q5DYjxQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "org.apache.lucene.codecs.StoredFieldsReader org.apache.lucene.index.SegmentReader.getFieldsReader()"}, "line": {"number": 240}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACg6i1"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/os_linux.go"}, "function": {"name": "runtime.getproccount"}, "line": {"number": 103}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zcjbCSOxeTCClWpD2cCw2AAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "int org.elasticsearch.common.io.Streams.readFully(java.io.InputStream, byte[], int, int)", "offset": 2}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hW140Tsis8BPkUPY8KAOfQAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "Cleaner.java"}, "function": {"name": "java.lang.ref.Cleaner$Cleanable java.lang.ref.Cleaner.register(java.lang.Object, java.lang.Runnable)", "offset": 2}, "line": {"number": 220}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "U0G4u2sI84e-qKwkGwX3CAAAAAAAAAC7"}} -{"Stackframe": {"file": {"name": "Lucene86PointsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene86.Lucene86PointsWriter.(org.apache.lucene.index.SegmentWriteState, int, double)", "offset": 30}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tEh-T90uBvlQfHt8UOCI5QAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run()"}, "line": {"number": 301}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eCd7pmEC4QoP7FQm1ikosgAAAAAAAAGV"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.handleIncomingPublishRequest(org.elasticsearch.transport.BytesTransportRequest)", "offset": 52}, "line": {"number": 225}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Pbg3bxycAbj268bN7ebHNQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun()", "offset": 2}, "line": {"number": 732}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD5dhE"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/go.etcd.io/bbolt@v1.3.4/db.go"}, "function": {"name": "go.etcd.io/bbolt.(*DB).Update"}, "line": {"number": 701}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YM2ufQrITmG7Foeyof4SMQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "boolean org.elasticsearch.xpack.security.rest.SecurityRestFilter.canTripCircuitBreaker()"}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OwseWRXw34EACjeXCzoUYAAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "LambdaForm$MH"}, "function": {"name": "void java.lang.invoke.LambdaForm$MH+0x000000080263c000.invoke(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Mm8DVZJmh3QnOlkSNNPztQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "java.lang.Object org.elasticsearch.transport.TransportService$ContextRestoreResponseHandler.read(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 1449}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XRWaJCgm_fIuOHV97UH4-AAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.index.engine.InternalEngine$$Lambda$6902+0x0000000802463350.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_6LE"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/file_integrity/metricset.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/file_integrity.(*MetricSet).reportEvent"}, "line": {"number": 256}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASekk"}} -{"Stackframe": {"function": {"name": "apparmor_file_open"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GBjc5BtcCI9y4Tj_UjfChgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.FieldsProducer org.apache.lucene.codecs.perfield.PerFieldPostingsFormat.fieldsProducer(org.apache.lucene.index.SegmentReadState)"}, "line": {"number": 395}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BrTm1nkQ5S7puyf9RXq4JgAAAAAAAAGp"}} -{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.executeNextPhase(org.elasticsearch.action.search.SearchPhase, org.elasticsearch.action.search.SearchPhase)", "offset": 40}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Vr464Hci92DwulADwvd6QgAAAAAAAABZ"}} -{"Stackframe": {"file": {"name": "TransportIndicesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.ShardStats org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.lambda$shardOperation$0(org.elasticsearch.tasks.Task, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.action.admin.indices.stats.IndicesStatsRequest)", "offset": 8}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction.finishHim()"}, "line": {"number": 230}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ERQe6ysQs8a3Aewl2ODwbwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "void java.lang.Throwable.()", "offset": 58}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASg1n"}} -{"Stackframe": {"function": {"name": "profile_path_perm.part.9"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6KM6RK-sq5wYpyjnMfBa7AAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "BufferedInputStream.java"}, "function": {"name": "int java.io.BufferedInputStream.read1(byte[], int, int)", "offset": 7}, "line": {"number": 282}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAd3_"}} -{"Stackframe": {"function": {"name": "aufs_getattr"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuoD"}} -{"Stackframe": {"function": {"name": "ep_poll"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Mo0G3Ryin3OSJJlsa04N6wAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "StreamSpliterators.java"}, "function": {"name": "boolean java.util.stream.StreamSpliterators$WrappingSpliterator.lambda$initPartialTraversalState$0()"}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O_rJUg-ExRMyey3rp6PrZgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "NativeBuffer.java"}, "function": {"name": "void sun.nio.fs.NativeBuffer.close()"}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ar3kTqw-Oudh5lpaUPtE8AAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "TransportUpdateByQueryAction.java"}, "function": {"name": "void org.elasticsearch.reindex.TransportUpdateByQueryAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.index.reindex.UpdateByQueryRequest, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AmTcFForv1r91KDhJjsuQQAAAAAAAABh"}} -{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.writeTo(org.elasticsearch.common.xcontent.ToXContent, java.lang.String, org.elasticsearch.common.CheckedConsumer)", "offset": 13}, "line": {"number": 205}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qtxmuYYdQSJOiK5WcAGLhAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authc.Authentication org.elasticsearch.xpack.security.authc.AuthenticatorChain.lookForExistingAuthentication(org.elasticsearch.xpack.security.authc.Authenticator$Context)"}, "line": {"number": 238}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXhcp"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/gopkg.in/yaml.v2@v2.3.0/yaml.go"}, "function": {"name": "gopkg.in/yaml%2ev2.unmarshal"}, "line": {"number": 142}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rVaVDCkAMgbM8k1PcJk7MgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader.visitDocument(int, org.apache.lucene.index.StoredFieldVisitor)"}, "line": {"number": 678}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m-x5OkQlku9y3rztHSvTSQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$6661+0x000000080242eaa8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qLsiw4JHLZl4BOwJ47AG_AAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$PageWriterOutputStream.close()", "offset": 2}, "line": {"number": 1332}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-uwV"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/reader.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.getStatsV2"}, "line": {"number": 262}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-YmFpBY9dTZLqQtpdDHWOAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput$$Lambda$1124+0x00000008016eaa28.write(org.elasticsearch.common.io.stream.StreamOutput, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANvTJ"}} -{"Stackframe": {"function": {"name": "proc_pid_readdir"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.(*GenericEventConverter).normalizeMap"}, "line": {"number": 97}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B9gbZBZ1iVM7gT0HZmJLewAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Lucene50CompoundFormat.java"}, "function": {"name": "org.apache.lucene.codecs.CompoundDirectory org.apache.lucene.codecs.lucene50.Lucene50CompoundFormat.getCompoundReader(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)"}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hOdz_oBFNfeapSWodIrXRgAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "AbstractRefCounted.java"}, "function": {"name": "boolean org.elasticsearch.core.AbstractRefCounted.decRef()", "offset": 5}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaJ"}} -{"Stackframe": {"function": {"name": "audit_filter_syscall.constprop.19"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vY4Juco9pR_3BcHf_IcylAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.internal.support.AbstractClient.get(org.elasticsearch.action.get.GetRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 480}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YBDS5w3vAd7w2ndcl9HQSAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 405}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACTqh1"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/http/internal/chunked.go"}, "function": {"name": "net/http/internal.readChunkLine"}, "line": {"number": 122}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-n8Q"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/cpu.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.cpuStat"}, "line": {"number": 109}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a7hZfalsBRk3tlQt91V51AAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.authorizeRequest(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pgYgXi9p5Lr0nll2Tb2V0AAAAAAAAADo"}} -{"Stackframe": {"file": {"name": "Lucene90PostingsReader.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene90.Lucene90PostingsReader$BlockDocsEnum.advance(int)", "offset": 40}, "line": {"number": 538}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "08z_GmZxws47bWB13dfVQQAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "boolean java.util.regex.Pattern$BmpCharPropertyGreedy.match(java.util.regex.Matcher, int, java.lang.CharSequence)", "offset": 2}, "line": {"number": 4337}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XTw3R-sYO_A_Xp7R5R96rgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ReleasableLock.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ReleasableLock org.elasticsearch.common.util.concurrent.ReleasableLock.acquire()"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C6bLEkVA4cc4IWbaWyiumQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.monitor.jvm.JvmInfo$$Lambda$7514+0x0000000802556af0.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4RUgMlPWsuuY5K-fnQNJ_QAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "ConstructingObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.ConstructingObjectParser.apply(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object)"}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OcVENYdBUHkmXadCZbxMcQAAAAAAAABX"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$MetadataIndexWriter.prepareCommit(java.lang.String, long, long)", "offset": 6}, "line": {"number": 533}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sTkSDdDFzO-cWp9e_wq31gAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportMonitoringBulkAction.java"}, "function": {"name": "void org.elasticsearch.xpack.monitoring.action.TransportMonitoringBulkAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnNMk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/math/big/nat.go"}, "function": {"name": "math/big.nat.bytes"}, "line": {"number": 1164}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NDooAL42lwdUmpc4-AfzaQAAAAAAAABr"}} -{"Stackframe": {"file": {"name": "AbstractIntakeApiHandler.java"}, "function": {"name": "java.net.HttpURLConnection co.elastic.apm.agent.report.AbstractIntakeApiHandler.startRequest(java.lang.String)", "offset": 16}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Wyrs0b2Xeu1gDeFw9u_zswAAAAAAAABS"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermissionCollection.implies(java.security.Permission)", "offset": 11}, "line": {"number": 1209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAFl"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.handleIndexActionAuthorizationResult(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener)", "offset": 53}, "line": {"number": 522}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E73KHKAXpFF--gEMhIXshwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ReduceOps.java"}, "function": {"name": "void java.util.stream.ReduceOps$3ReducingSink.begin(long)"}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_tk_pJhUkQORC8bHHTFf2wAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 27}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtEe"}} -{"Stackframe": {"function": {"name": "do_send_specific"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l8by2NZ7WjCFmKmn5LkVDAAAAAAAAABN"}} -{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.IndexShardStats org.elasticsearch.indices.IndicesService.indexShardStats(org.elasticsearch.indices.IndicesService, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 24}, "line": {"number": 483}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEDQ"}} -{"Stackframe": {"function": {"name": "prepare_exit_to_usermode"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGI8n"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.openat"}, "line": {"number": 68}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "r-lBlGU-IcWILqVWjgb-BgAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$2.doRun()"}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACHlBb"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/reflect/value.go"}, "function": {"name": "reflect.Value.Convert"}, "line": {"number": 2449}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BP-_XyWsrdc9u8RJlsCt-QAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "KeywordFieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.KeywordFieldMapper.parseCreateField(org.elasticsearch.index.mapper.DocumentParserContext)", "offset": 7}, "line": {"number": 560}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SZIzrSBBPBO2zJj0aqaKggAAAAAAAAD_"}} -{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "com.amazonaws.services.s3.model.S3Object com.amazonaws.services.s3.AmazonS3Client.getObject(com.amazonaws.services.s3.model.GetObjectRequest)", "offset": 39}, "line": {"number": 1486}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Pc_BexFq94TuMog9IsXVUwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction$1.onResponse(java.lang.Object)"}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dkVJJbpwB2SYYzBmvyms9wAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "void org.elasticsearch.threadpool.ThreadPool$Info.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 792}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2wFSUCa6LxTMAqycIAr37gAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "boolean java.util.HashMap.containsKey(java.lang.Object)"}, "line": {"number": 597}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXRLE"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/gopkg.in/yaml.v2@v2.3.0/scannerc.go"}, "function": {"name": "gopkg.in/yaml%2ev2.yaml_parser_fetch_more_tokens"}, "line": {"number": 632}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cSK3QkQEScwA7ISZYZcmKgAAAAAAAAFD"}} -{"Stackframe": {"file": {"name": "DefaultHttpClientConnectionOperator.java"}, "function": {"name": "void org.apache.http.impl.conn.DefaultHttpClientConnectionOperator.connect(org.apache.http.conn.ManagedHttpClientConnection, org.apache.http.HttpHost, java.net.InetSocketAddress, int, org.apache.http.config.SocketConfig, org.apache.http.protocol.HttpContext)", "offset": 36}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9ZcPzi6i1uzjxExCGCn20AAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "InferenceProcessor.java"}, "function": {"name": "void org.elasticsearch.xpack.ml.inference.ingest.InferenceProcessor$Factory.accept(org.elasticsearch.cluster.ClusterState)", "offset": 1}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l_plqR4x5xi_qOVu9JWCxQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher.doCheckAndNotify()"}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACG1dP"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/syscall_linux_amd64.go"}, "function": {"name": "os.statNolog"}, "line": {"number": 65}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O4XFBmuHlVXJh4TIk5LCDAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$6512+0x0000000801c92c08.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oIbcZroK0mbxpVqmuMaywgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Rewriteable.java"}, "function": {"name": "void org.elasticsearch.index.query.Rewriteable.rewriteAndFetch(org.elasticsearch.index.query.Rewriteable, org.elasticsearch.index.query.QueryRewriteContext, org.elasticsearch.action.ActionListener, int)", "offset": 2}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TQJwJt0-vl6QQoIDFyT9WgAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 4}, "line": {"number": 819}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "02oNZHwNJOC-C3u6YrvXygAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.onNewClusterState(java.lang.String, java.util.function.Supplier, org.elasticsearch.cluster.service.ClusterApplier$ClusterApplyListener)", "offset": 8}, "line": {"number": 312}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4pQmnbdVKlEPbRd3rB3jwgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ScheduledThreadPoolExecutor.delayedExecute(java.util.concurrent.RunnableScheduledFuture)"}, "line": {"number": 339}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KeQlhHJn6E1s3oO-ioUxQwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "MappedByteBufferIndexInputProvider.java"}, "function": {"name": "java.lang.Object org.apache.lucene.store.MappedByteBufferIndexInputProvider.doPrivileged(java.security.PrivilegedAction)"}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tItoNsUMOSUuiEQl3xYhbQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "int sun.nio.fs.UnixNativeDispatcher.open(sun.nio.fs.UnixPath, int, int)", "offset": 2}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.nextDoc()", "offset": 1}, "line": {"number": 253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1TcD-cYA4xs7rqA_y0alsAAAAAAAAAA_"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseValue(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String, org.elasticsearch.xcontent.XContentParser$Token, java.lang.String[])", "offset": 10}, "line": {"number": 739}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KOtS45rRLJPAswGO5vDBxQAAAAAAAACE"}} -{"Stackframe": {"file": {"name": "SearchSourceBuilder.java"}, "function": {"name": "org.elasticsearch.search.builder.SearchSourceBuilder org.elasticsearch.search.builder.SearchSourceBuilder.rewrite(org.elasticsearch.index.query.QueryRewriteContext)", "offset": 17}, "line": {"number": 1048}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LNiGyjoSSwLd2vmEwDcgqQAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.commit(long, long)", "offset": 18}, "line": {"number": 752}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O3ydWmZnkgpNJ9lZa3PxSwAAAAAAAAB7"}} -{"Stackframe": {"file": {"name": "SecurityIndexManager.java"}, "function": {"name": "void org.elasticsearch.xpack.security.support.SecurityIndexManager.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 12}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NFoti7zeivEyGvfQ3_ANTgAAAAAAAAHe"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.engine.InternalEngine.index(org.elasticsearch.index.engine.Engine$Index)", "offset": 88}, "line": {"number": 1004}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PY94Ez-AShf7eTbyN8KgtwAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "IndexTemplateMetadata.java"}, "function": {"name": "void org.elasticsearch.cluster.metadata.IndexTemplateMetadata$Builder.toXContentWithTypes(org.elasticsearch.cluster.metadata.IndexTemplateMetadata, org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 1}, "line": {"number": 341}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "--8zas13uqm7i12C7ls-FAAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "CompressorFactory.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.common.compress.CompressorFactory.uncompress(org.elasticsearch.common.bytes.BytesReference)", "offset": 4}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACy-hZ"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.(*GenericEventConverter).normalizeValue"}, "line": {"number": 224}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Cl0-Oy1dcP5Qo_OOc99XHQAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "SizeBlockingQueue.java"}, "function": {"name": "boolean org.elasticsearch.common.util.concurrent.SizeBlockingQueue.offer(java.lang.Object)", "offset": 8}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gTeEDLJY99-H0mXPpOCwaAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.admin.cluster.RestNodesStatsAction$$Lambda$7670+0x00000008025fb380.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IY3kOFBxddrJzoZrzargTAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "FileDescriptor.java"}, "function": {"name": "void java.io.FileDescriptor.close0()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TtR77-iVwHd1W-dedkbBQAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.core.security.authz.store.RoleReferenceIntersection$$Lambda$6596+0x00000008023c78f0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dxSK3xE1ZB_w58ylB87r2QAAAAAAAAFt"}} -{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment org.apache.lucene.index.DocumentsWriterPerThread.flush(org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 41}, "line": {"number": 350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABVVnb"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/interpreter/hotspot/hotspot.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/interpreter/hotspot.(*hotspotInstance).getMethod"}, "line": {"number": 646}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XZxd66YF3ajQqQXBmIp92wAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "RestNodesInfoAction.java"}, "function": {"name": "org.elasticsearch.rest.BaseRestHandler$RestChannelConsumer org.elasticsearch.rest.action.admin.cluster.RestNodesInfoAction.prepareRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.client.internal.node.NodeClient)"}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3F2z0U59C1y3O1vSXqnJygAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.nextDoc()"}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlN5a"}} -{"Stackframe": {"function": {"name": "__ip_queue_xmit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hVKhVL3RShupVCryfwjurQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "NodeClient.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.client.node.NodeClient.executeLocally(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "c1Yo_OPgMzqB1GnTa4udVAAAAAAAAAEh"}} -{"Stackframe": {"file": {"name": "Lucene90BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.blocktree.Lucene90BlockTreeTermsWriter$PendingBlock.compileIndex(java.util.List, org.apache.lucene.store.ByteBuffersDataOutput, org.apache.lucene.util.IntsRefBuilder)", "offset": 29}, "line": {"number": 497}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ypb1GyaDgfO6SxUxbAvctQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$4686.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mSJ6fSPuHzsY_PJcgbXOQAAAAAAAAACX"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "void sun.nio.fs.UnixPath.initOffsets()", "offset": 31}, "line": {"number": 204}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-e8LcozZeVskf4VBCD583AAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "void io.netty.util.concurrent.DefaultPromise.notifyListeners0(io.netty.util.concurrent.DefaultFutureListeners)", "offset": 3}, "line": {"number": 570}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "g03klALlTA3DUKeyZZ-kYgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "FilterMergePolicy.java"}, "function": {"name": "boolean org.apache.lucene.index.FilterMergePolicy.useCompoundFile(org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.MergePolicy$MergeContext)"}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAD8T0S"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_docker_metadata/add_docker_metadata.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_docker_metadata.(*addDockerMetadata).getProcessCgroups"}, "line": {"number": 274}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACP"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 143}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ANUDzCguopTSw91qnI0ylAAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "TaskTransportChannel.java"}, "function": {"name": "void org.elasticsearch.transport.TaskTransportChannel.sendResponse(org.elasticsearch.transport.TransportResponse)", "offset": 2}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4LWodyiv9Hy4HicwczMhQwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "boolean sun.nio.fs.UnixFileSystemProvider.exists(java.nio.file.Path)", "offset": 1}, "line": {"number": 532}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1aDz61znUKxhB_Z29RmgmwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "CodecUtil.java"}, "function": {"name": "int org.apache.lucene.codecs.CodecUtil.checkHeader(org.apache.lucene.store.DataInput, java.lang.String, int, int)"}, "line": {"number": 194}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E0NO2Kh3-vt0YNozutGkCAAAAAAAAACL"}} -{"Stackframe": {"file": {"name": "DanglingIndicesState.java"}, "function": {"name": "java.util.Map org.elasticsearch.gateway.DanglingIndicesState.findNewDanglingIndices(org.elasticsearch.cluster.metadata.Metadata)", "offset": 6}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUfiN"}} -{"Stackframe": {"function": {"name": "_copy_from_iter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9hZdX3cgI2b0eP52YXGHgQAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "OsProbe.java"}, "function": {"name": "org.elasticsearch.monitor.os.OsStats org.elasticsearch.monitor.os.OsProbe.osStats()", "offset": 3}, "line": {"number": 702}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fkAuJpo8Y3KCTHzuTneWHgAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "OTelSpanContext.java"}, "function": {"name": "io.opentelemetry.api.trace.TraceState co.elastic.apm.agent.opentelemetry.sdk.OTelSpanContext.getTraceState()", "offset": 3}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lRH_2WrFNMk0Q5-iG5Wx3wAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "PlainSocketImpl.java"}, "function": {"name": "void java.net.PlainSocketImpl.socketSetOption(int, boolean, java.lang.Object)", "offset": 5}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkHpE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*readRune).ReadRune"}, "line": {"number": 349}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JDnO1OdT3mBLtMfsODhVKQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Deflater.java"}, "function": {"name": "int java.util.zip.Deflater.deflate(byte[], int, int)"}, "line": {"number": 462}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAY5Vl"}} -{"Stackframe": {"file": {"name": "google.golang.org/grpc@v1.46.0/internal/transport/http2_client.go"}, "function": {"name": "google.golang.org/grpc/internal/transport.newHTTP2Client.func7"}, "line": {"number": 365}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s84b9SvDFo5phkMP-bFo0wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "NormsConsumer.java"}, "function": {"name": "int org.apache.lucene.codecs.NormsConsumer$1$1.nextDoc()"}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD5jTE"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/go.etcd.io/bbolt@v1.3.4/node.go"}, "function": {"name": "go.etcd.io/bbolt.(*node).childAt"}, "line": {"number": 78}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Kr0QIGJ2ub9xqAd37eK2lwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "BulkShardRequest.java"}, "function": {"name": "org.elasticsearch.action.bulk.BulkItemRequest org.elasticsearch.action.bulk.BulkShardRequest.lambda$new$0(org.elasticsearch.index.shard.ShardId, org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l0hCUDJE9WA5zrDYnTjz6wAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "boolean java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.add(java.lang.Object)"}, "line": {"number": 899}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.decodeJdkCompatible(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf)", "offset": 37}, "line": {"number": 1236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "W2oz1IIhVizUUMC0MCRp0AAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.addSortedNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 2}, "line": {"number": 702}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFkuX"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mfinal.go"}, "function": {"name": "runtime.SetFinalizer.func2"}, "line": {"number": 418}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_uUgsVPv-NpZOU_YXxwnhQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "void java.util.concurrent.ConcurrentHashMap$EntryIterator.(java.util.concurrent.ConcurrentHashMap$Node[], int, int, int, java.util.concurrent.ConcurrentHashMap)"}, "line": {"number": 3494}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LyZJMdHx6B3ILhnNOrY3PgAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.ReadersAndUpdates.createNewReaderWithLatestLiveDocs(org.apache.lucene.index.SegmentReader)", "offset": 3}, "line": {"number": 667}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "T_dXLsYiuViNnH_I_KaClgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndexMetadata.java"}, "function": {"name": "java.util.Map org.elasticsearch.cluster.metadata.IndexMetadata.getCustomData(java.lang.String)"}, "line": {"number": 565}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bFLfWHcBsfD6O8lF_w0zzAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IntPipeline.java"}, "function": {"name": "java.util.OptionalInt java.util.stream.IntPipeline.findFirst()"}, "line": {"number": 528}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bFkS2Gslo__4bHhJEnxF5QAAAAAAAAB_"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.InternalEngine$OpVsLuceneDocStatus org.elasticsearch.index.engine.InternalEngine.compareOpToLuceneDocBasedOnSeqNo(org.elasticsearch.index.engine.Engine$Operation)", "offset": 10}, "line": {"number": 850}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "63nMu76IftokzOnGnfVTJwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "IndexLifecycleRunner.java"}, "function": {"name": "void org.elasticsearch.xpack.ilm.IndexLifecycleRunner.runPolicyAfterStateChange(java.lang.String, org.elasticsearch.cluster.metadata.IndexMetadata)", "offset": 1}, "line": {"number": 327}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "un6cBO6D7gNVatBvdCHO5wAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ClientConnectionManagerFactory.java"}, "function": {"name": "java.lang.Object com.amazonaws.http.conn.ClientConnectionManagerFactory$Handler.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])"}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MSyylYcoQGjZVZx9V5Qj1AAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "boolean io.netty.util.concurrent.DefaultPromise.setValue0(java.lang.Object)", "offset": 3}, "line": {"number": 616}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rVOBHTqI_0fprNIXiAG4OgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.action.support.nodes.BaseNodeRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-PQUN_pyhlD9sImALYeWawAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.concurrent.ThreadContext$$Lambda$6049+0x0000000802348440.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z0TmQagVnHgFdAowAPCojQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "java.lang.Long com.typesafe.config.impl.SimpleConfig.getBytes(java.lang.String)", "offset": 2}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACuDBk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/http/transfer.go"}, "function": {"name": "net/http.(*body).readLocked"}, "line": {"number": 863}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jl0Few0KXqirBZp0WuOd2wAAAAAAAAFb"}} -{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$snapshotShard$57(org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.apache.lucene.index.IndexCommit, org.elasticsearch.snapshots.SnapshotId, java.util.List, org.elasticsearch.index.shard.ShardId, org.elasticsearch.common.blobstore.BlobContainer, java.lang.String, org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots, org.elasticsearch.Version, java.lang.String, java.util.Set, org.elasticsearch.action.ActionListener, java.util.Collection)", "offset": 41}, "line": {"number": 1799}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mxrYYrG64FXkauTRv-4b5QAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.SnapshotsInProgress$Entry$$Lambda$7334+0x0000000801e73890.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YpO7Ao3Jp5dMNGkF6KXViwAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap.(java.util.Map)", "offset": 2}, "line": {"number": 486}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b_ElB1I-v_CyZZ9WkymqkQAAAAAAAAB0"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.applyInternal(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.ActionFilterChain, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 21}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xvo_iOg09zSCFO6AJ5txSwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ResourceLeakDetector.java"}, "function": {"name": "void io.netty.util.ResourceLeakDetector$Record.(io.netty.util.ResourceLeakDetector$Record)"}, "line": {"number": 607}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pYJXWbdqO_EwCki56aMNwwAAAAAAAAFs"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 22}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dCnMOj8mcIDYox1J0hIoXQAAAAAAAACQ"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Settings.convertMapsToArrays(java.util.Map)", "offset": 26}, "line": {"number": 215}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vPV4_tQe59nxpFxiADDYNgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ExtendedLoggerWrapper.java"}, "function": {"name": "boolean org.apache.logging.log4j.spi.ExtendedLoggerWrapper.isEnabled(org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, java.lang.Object, java.lang.Throwable)"}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_Ccd"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/netlink.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2.(*NetlinkClient).Receive"}, "line": {"number": 165}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEKlk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/iface.go"}, "function": {"name": "runtime.assertE2I2"}, "line": {"number": 499}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-OAb"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/hex.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.decodeUppercaseHexString"}, "line": {"number": 120}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ngJW-mG0syMkjT4A0Lg1GwAAAAAAAABI"}} -{"Stackframe": {"file": {"name": "DateFieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DateFieldMapper.parseCreateField(org.elasticsearch.index.mapper.DocumentParserContext)", "offset": 21}, "line": {"number": 902}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JKjf0pZHg3dzwDeAqfO16AAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "NodeClient.java"}, "function": {"name": "void org.elasticsearch.client.node.NodeClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgUj8"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/malloc.go"}, "function": {"name": "runtime.newarray"}, "line": {"number": 1273}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-LXe"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/auparse.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.enrichData"}, "line": {"number": 327}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "r98FFn1qa5eYYNwkaw4apgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$5425+0x0000000801a93950.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oBLCWsbzuuTLoV95VXOSiwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "MemoryPoolImpl.java"}, "function": {"name": "javax.management.ObjectName sun.management.MemoryPoolImpl.getObjectName()"}, "line": {"number": 339}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HAV7Zh5H5JQPHONsGvZ0PAAAAAAAAABX"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.checkForBearerToken()", "offset": 12}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bCBdTuDS0DbCDGTJHRgQHgAAAAAAAAHU"}} -{"Stackframe": {"file": {"name": "Lucene50CompoundFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene50.Lucene50CompoundFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 44}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnfV9"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).valueQuoted"}, "line": {"number": 413}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYft"}} -{"Stackframe": {"function": {"name": "copy_user_enhanced_fast_string"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "T5hiiNMlc9RKe2ptBi1-rgAAAAAAAAEM"}} -{"Stackframe": {"file": {"name": "ApiKeyService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.ApiKeyService.validateApiKeyExpiration(org.elasticsearch.xpack.security.authc.ApiKeyService$ApiKeyDoc, org.elasticsearch.xpack.security.authc.ApiKeyService$ApiKeyCredentials, java.time.Clock, org.elasticsearch.action.ActionListener)", "offset": 17}, "line": {"number": 960}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "orI6G4EZluDZPfJ37iPzggAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.applyIndexOperationOnReplica(long, long, long, long, boolean, org.elasticsearch.index.mapper.SourceToParse)"}, "line": {"number": 811}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAC1iFl"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/queue/diskqueue/writer_loop.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/queue/diskqueue.(*writerLoop).processRequest"}, "line": {"number": 209}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HOdHokvgjpBu5xzZyxjzAwAAAAAAAACG"}} -{"Stackframe": {"file": {"name": "TransportNodesInfoAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.info.NodeInfo org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction.nodeOperation(org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction$NodeInfoRequest)", "offset": 2}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7lmNnuzxdni_1ipoktVCugAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "DateTimeFormatterBuilder.java"}, "function": {"name": "int org.joda.time.format.DateTimeFormatterBuilder$MatchingParser.parseInto(org.joda.time.format.DateTimeParserBucket, java.lang.CharSequence, int)", "offset": 21}, "line": {"number": 2610}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "asfjD62HMHzrp-TIN-8V-gAAAAAAAABq"}} -{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "boolean java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.offer(java.lang.Runnable)", "offset": 21}, "line": {"number": 1117}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nFLCKDx8NAlt_5E9arxt2QAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "TermVersionRequest.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.TermVersionRequest.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 34}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kZKk9YVdr54f5u21hze0MgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ActionListenerResponseHandler.java"}, "function": {"name": "org.elasticsearch.transport.TransportResponse org.elasticsearch.action.ActionListenerResponseHandler.read(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oZPyfO4G7A3T6bm4SwvwsgAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "PendingSoftDeletes.java"}, "function": {"name": "void org.apache.lucene.index.PendingSoftDeletes.ensureInitialized(org.apache.lucene.util.IOSupplier)", "offset": 8}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6IAXoYeI62bQppY-qjqJ0AAAAAAAAAET"}} -{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.executeOneRequest(com.amazonaws.http.AmazonHttpClient$RequestExecutor$ExecOneRequestParams)", "offset": 44}, "line": {"number": 1309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgmsR"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.scanobject"}, "line": {"number": 1234}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "io.netty.channel.ChannelPipeline io.netty.channel.DefaultChannelPipeline.fireChannelRead(java.lang.Object)"}, "line": {"number": 919}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "W8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.core.security.authz.store.RoleReferenceIntersection$$Lambda$7329+0x0000000802515268.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACW0JG"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/gopkg.in/yaml.v2@v2.3.0/decode.go"}, "function": {"name": "gopkg.in/yaml%2ev2.(*parser).document"}, "line": {"number": 175}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e89Jv2oRIOxOuDnCIkX8tQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "java.lang.Object org.elasticsearch.transport.TransportService$4.read(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 843}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAirCv"}} -{"Stackframe": {"function": {"name": "sock_def_readable"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$AuthorizationResultListener.onResponse(java.lang.Object)"}, "line": {"number": 603}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3yZRDT05_hGvUj8jRvChFAAAAAAAAAIj"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "boolean org.apache.lucene.index.ReadersAndUpdates.writeFieldUpdates(org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos$FieldNumbers, long, org.apache.lucene.util.InfoStream)", "offset": 76}, "line": {"number": 581}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WNHUiu4BFqRVmqF_mtCsFQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "URLClassPath.java"}, "function": {"name": "java.net.URL jdk.internal.loader.URLClassPath$JarLoader.findResource(java.lang.String, boolean)"}, "line": {"number": 915}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tdOqY6OTZxvJnUR1-5iRKgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Releasables.java"}, "function": {"name": "void org.elasticsearch.core.Releasables.closeExpectNoException(org.elasticsearch.core.Releasable)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RwlmBsYzd8_j6zlabj1GBwAAAAAAAAHt"}} -{"Stackframe": {"file": {"name": "NodesInfoResponse.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.action.admin.cluster.node.info.NodesInfoResponse.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 48}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sFs-DxXlXTzn3bVNvCe0KwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.lang.Object java.util.Collections$UnmodifiableCollection$1.next()"}, "line": {"number": 1049}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vX-mC67g6JXGX3gq3Q5XWAAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$10(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.xpack.security.audit.AuditTrail, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 426}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADI"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorize(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 45}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TdvyEkBALxwDoycOnD-RjgAAAAAAAABk"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.updateChildren()", "offset": 18}, "line": {"number": 215}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LlX5hWF1CNUXm64M8UZFNQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.index.mapper.MapperService$$Lambda$6696+0x0000000801d65600.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgkiE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.markrootFreeGStacks"}, "line": {"number": 299}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8uVqqmQs2krZT40-iqFC3AAAAAAAAAC8"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.awaitMatch(java.util.concurrent.LinkedTransferQueue$Node, java.util.concurrent.LinkedTransferQueue$Node, java.lang.Object, boolean, long)", "offset": 36}, "line": {"number": 740}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iOlxEpOp2uis3J58yAaw6AAAAAAAAACQ"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.InternalEngine$IndexingStrategy org.elasticsearch.index.engine.InternalEngine.planIndexingAsNonPrimary(org.elasticsearch.index.engine.Engine$Index)", "offset": 25}, "line": {"number": 1139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACy8_r"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.(*GenericEventConverter).normalizeMap"}, "line": {"number": 84}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "int org.apache.lucene.index.SegmentMerger.mergeFields()", "offset": 1}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X3vNLlXVyKftCeY5HzEuDAAAAAAAAAQg"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.mergeMiddle(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergePolicy)", "offset": 127}, "line": {"number": 4814}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ75B"}} -{"Stackframe": {"function": {"name": "__do_sys_madvise"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE9WH"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.stopm"}, "line": {"number": 1925}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-jpl"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgcommon/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgcommon.ParseUint"}, "line": {"number": 53}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMaXE"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/shirou/gopsutil@v3.20.12+incompatible/net/net_linux.go"}, "function": {"name": "github.com/shirou/gopsutil/net.connectionsPidMaxWithoutUidsWithContext"}, "line": {"number": 456}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M09XeJtIuzWFgRLBSCNdGwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ElasticsearchReaderManager.java"}, "function": {"name": "org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader org.elasticsearch.index.engine.ElasticsearchReaderManager.refreshIfNeeded(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "java.lang.Object org.elasticsearch.transport.TransportService$ContextRestoreResponseHandler.read(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 1340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zdN3TXjTGHsNnZ0CpnUzmQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "java.io.FileDescriptor sun.nio.ch.NioSocketImpl.beginRead()", "offset": 2}, "line": {"number": 232}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEOIeu"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/module/system/socket_summary/sockstat_linux.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/module/system/socket_summary.applyEnhancements"}, "line": {"number": 64}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABAaR"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.stealWork"}, "line": {"number": 2953}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zFcbYVPkWIQt-A6YP6TRWQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "BytesRefHash.java"}, "function": {"name": "int[] org.apache.lucene.util.BytesRefHash.sort()"}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PEbpT_8Xljn7u1j5oJzfHQAAAAAAAAEz"}} -{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.dataformat.smile.SmileParser._handleFieldName()", "offset": 49}, "line": {"number": 1338}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uKtxR47OvzSUNd1AWsYPGgAAAAAAAAZo"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "int org.apache.lucene.index.IndexWriter.mergeMiddle(org.apache.lucene.index.MergePolicy$OneMerge, org.apache.lucene.index.MergePolicy)", "offset": 257}, "line": {"number": 5317}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RzKZhPihKQuVieebT-nApgAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GS-BM31ayIfhOMl6o8fHjwAAAAAAAABu"}} -{"Stackframe": {"file": {"name": "SortedNumericDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedNumericDocValuesWriter.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.DocValuesConsumer)", "offset": 17}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFrZg"}} -{"Stackframe": {"function": {"name": "auditd_test_task"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIklD"}} -{"Stackframe": {"function": {"name": "wait_on_page_writeback"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACA"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.authenticateAsync(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 23}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$7157+0x0000000801da6c60.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XKVuKabpK3GPUiPcRRV-xQAAAAAAAABS"}} -{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.bulk.BulkRequest, org.elasticsearch.action.ActionListener)", "offset": 6}, "line": {"number": 162}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j6ymeOp9wGkYFilkoBNaXgAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.nextDoc()", "offset": 1}, "line": {"number": 253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IAmibLp7KG0h7B5eTXlZoQAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "ByteBuffersDataOutput.java"}, "function": {"name": "void org.apache.lucene.store.ByteBuffersDataOutput.appendBlock()", "offset": 1}, "line": {"number": 448}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nhLCsxtbHdv174Fp0fB3AwAAAAAAAACv"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeBulkItems$22(org.elasticsearch.action.bulk.BulkShardRequest, java.util.Map, java.util.Map, org.elasticsearch.xpack.security.audit.AuditTrail, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationContext, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.xpack.core.security.authz.ResolvedIndices)", "offset": 100}, "line": {"number": 794}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JS0BtKRMk3xcaGJmg4uqaAAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "ChecksumBlobStoreFormat.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.ChecksumBlobStoreFormat.writeAtomic(org.elasticsearch.common.xcontent.ToXContent, org.elasticsearch.common.blobstore.BlobContainer, java.lang.String)", "offset": 1}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BnWw-Kwbk8U0kdCMhiF9pAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "SimpleRole.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authz.accesscontrol.IndicesAccessControl org.elasticsearch.xpack.core.security.authz.permission.SimpleRole.authorize(java.lang.String, java.util.Set, java.util.Map, org.elasticsearch.xpack.core.security.authz.permission.FieldPermissionsCache)"}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k0ECrHyaBQYN9EA2YbnUsgAAAAAAAABF"}} -{"Stackframe": {"file": {"name": "SettingsFilter.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.SettingsFilter.filterSettings(java.lang.Iterable, org.elasticsearch.common.settings.Settings)", "offset": 6}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "spzm-_Ca31VwijYVQAZSLAAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "AnalysisStats.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.stats.AnalysisStats org.elasticsearch.action.admin.cluster.stats.AnalysisStats.of(org.elasticsearch.cluster.ClusterState)", "offset": 13}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ekcy7So9YVOh7Q9iMhhrxQAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "IngestService.java"}, "function": {"name": "void org.elasticsearch.ingest.IngestService.innerUpdatePipelines(org.elasticsearch.ingest.IngestMetadata)", "offset": 9}, "line": {"number": 717}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-0Mu"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/gosigar@v0.14.2/sigar_linux_common.go"}, "function": {"name": "github.com/elastic/gosigar.(*ProcTime).Get"}, "line": {"number": 260}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "158Fvt8rNQpikt5ECrRzcwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "DataInput.java"}, "function": {"name": "long org.apache.lucene.store.DataInput.readVLong()"}, "line": {"number": 190}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fHicjb8IhyJmUDNrJFOj6AAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "PolicyFile.java"}, "function": {"name": "boolean sun.security.provider.PolicyFile.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 4}, "line": {"number": 995}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACg0Pk"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "github.com/elastic/beats/v7/libbeat/conditions.(*Or).Check"}, "line": {"number": 1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CgYc8rCJCuV599jzzhx8xwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "boolean org.apache.lucene.index.ReadersAndUpdates.isFullyDeleted()"}, "line": {"number": 822}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DHsnAoMYJiyf1W11jJ-_lgAAAAAAAADe"}} -{"Stackframe": {"file": {"name": "InboundDecoder.java"}, "function": {"name": "int org.elasticsearch.transport.InboundDecoder.internalDecode(org.elasticsearch.common.bytes.ReleasableBytesReference, java.util.function.Consumer)", "offset": 49}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f_rIvCQMW5oayMPHCj4aUgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "int java.io.FilePermission.containsPath(java.nio.file.Path, java.nio.file.Path)"}, "line": {"number": 702}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s5lZOggY7ZLnXpijZE8QXAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.shard.DocsStats org.elasticsearch.index.shard.IndexShard.docStats()", "offset": 1}, "line": {"number": 1253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eVW9lCqHxlTfD5Rt7tiZeQAAAAAAAABl"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.netty.channel.ChannelPromise)", "offset": 20}, "line": {"number": 968}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN6I"}} -{"Stackframe": {"function": {"name": "netif_receive_skb"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAAdeE"}} -{"Stackframe": {"file": {"name": "runtime/mgc.go"}, "function": {"name": "runtime.gcBgMarkWorker.func2"}, "line": {"number": 1309}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X5LQh34cvbQdsHArBGLyNgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "AggregatorBase.java"}, "function": {"name": "org.elasticsearch.search.aggregations.LeafBucketCollector org.elasticsearch.search.aggregations.AggregatorBase.getLeafCollector(org.elasticsearch.search.aggregations.AggregationExecutionContext)", "offset": 2}, "line": {"number": 220}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R50j_Fakx0mSC9-4NdTEsgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.store.ByteSizeCachingDirectory$1.refresh()"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAASkV"}} -{"Stackframe": {"function": {"name": "au_h_dptr"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADHX4w"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/actions/extract_field.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/actions.NewExtractField"}, "line": {"number": 60}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lICW2gRy3TXlIYomtjSJtwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.copyOneDoc(org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader, int)", "offset": 1}, "line": {"number": 514}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGvYW"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file_posix.go"}, "function": {"name": "os.(*File).WriteAt"}, "line": {"number": 56}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u5vAXtVp9d4wvRuocarrCAAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel)"}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "QuotaAwareFileSystemProvider.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes co.elastic.cloud.quotaawarefs.QuotaAwareFileSystemProvider.readAttributes(java.nio.file.Path, java.lang.Class, java.nio.file.LinkOption[])"}, "line": {"number": 337}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAi4Jk"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/reporter/reporter.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/reporter.setupGrpcConnection.func1"}, "line": {"number": 624}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S9C2chEMFxFBqLj7GKaT6gAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Releasables.java"}, "function": {"name": "void org.elasticsearch.core.Releasables.close(org.elasticsearch.core.Releasable[])"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F-MR5O4Hf8gA88-oz63uAgAAAAAAAACR"}} -{"Stackframe": {"file": {"name": "SSLExtensions.java"}, "function": {"name": "void sun.security.ssl.SSLExtensions.produce(sun.security.ssl.HandshakeContext, sun.security.ssl.SSLExtension[])", "offset": 19}, "line": {"number": 250}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIa2e"}} -{"Stackframe": {"function": {"name": "wait_on_page_bit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QYopm_LA9LUGGlvpkTDxCgAAAAAAAADf"}} -{"Stackframe": {"file": {"name": "ScriptSortBuilder.java"}, "function": {"name": "org.elasticsearch.index.fielddata.IndexFieldData$XFieldComparatorSource org.elasticsearch.search.sort.ScriptSortBuilder.fieldComparatorSource(org.elasticsearch.index.query.QueryShardContext)", "offset": 58}, "line": {"number": 381}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACTqMz"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/http/internal/chunked.go"}, "function": {"name": "net/http/internal.(*chunkedReader).beginChunk"}, "line": {"number": 48}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nnCec0a2-ZcuYpnWUHHz2AAAAAAAAAGZ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 29}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCIE"}} -{"Stackframe": {"function": {"name": "seq_path_root"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aMzea5YF1p9DWzFcmq3VzwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.s3.S3BlobContainer$$Lambda$4875.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_jOWl9rQ0a9rjiw4HiJl9AAAAAAAAABc"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4.compressWithDictionary(byte[], int, int, int, org.apache.lucene.store.DataOutput, org.apache.lucene.util.compress.LZ4$HashTable)", "offset": 15}, "line": {"number": 446}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Rxqe_zQBj7bxcQClfMPGZwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authc.support.BCrypt.checkpw(org.elasticsearch.common.settings.SecureString, java.lang.String)"}, "line": {"number": 1725}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H-li-VPX4V5GB-C8EGJQQwAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "MessageToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 21}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XzWVAFfWPkx_-5DzBgosgQAAAAAAAABh"}} -{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "void org.apache.lucene.index.SegmentReader.(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.store.IOContext)", "offset": 8}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0MuXFawPpICiJNh5yZEjjwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$$Lambda$4255.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NnsXqH-CVYMwVp_zbU78aQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "BaseTranslogReader.java"}, "function": {"name": "long org.elasticsearch.index.translog.BaseTranslogReader.getLastModifiedTime()"}, "line": {"number": 145}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B6QzH7IpuJwFbrtDLFp9JwAAAAAAAABY"}} -{"Stackframe": {"file": {"name": "SortedSetDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedSetDocValuesWriter.flush(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.DocValuesConsumer)", "offset": 11}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HrJFw2fNGtSMNrEAC2Z8tAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$8778+0x0000000802793558.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vTamegouNfgIEDQBtCfkUwAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.read(io.netty.channel.ChannelHandlerContext)", "offset": 4}, "line": {"number": 752}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ak65vRueKokoMr4abQv06wAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "CompositeByteBuf.java"}, "function": {"name": "io.netty.buffer.CompositeByteBuf io.netty.buffer.CompositeByteBuf.addComponents(boolean, java.lang.Iterable)"}, "line": {"number": 251}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABWAKu"}} -{"Stackframe": {"file": {"name": "github.com/cilium/ebpf@v0.9.1/perf/reader.go"}, "function": {"name": "github.com/cilium/ebpf/perf.readRawSample"}, "line": {"number": 122}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GiPQYuBqA4onG16OCBJr7wAAAAAAAAA_"}} -{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.lambda$authenticateWithCache$1(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 7}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAB58h"}} -{"Stackframe": {"function": {"name": "xfs_ifree"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXxxS"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/mapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.MapStr.Put"}, "line": {"number": 194}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMTtv"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/module/system/cpu/cpu.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/module/system/cpu.(*MetricSet).Fetch"}, "line": {"number": 91}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zqFMHaoRs24Uq4ggPiEIVgAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.resolveAuthorizationInfo(org.elasticsearch.xpack.core.security.authc.Subject, org.elasticsearch.action.ActionListener)"}, "line": {"number": 152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fbT9eHA5tj6rUvxqpnewLAAAAAAAAAEH"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "short org.apache.lucene.codecs.lucene80.IndexedDISI.writeBitSet(org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.store.IndexOutput, byte)", "offset": 32}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RKe7UKAjS6nb4NoNQa3O7AAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "InternalSearchResponse.java"}, "function": {"name": "void org.elasticsearch.search.internal.InternalSearchResponse.(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACA"}} -{"Stackframe": {"file": {"name": "TransportAction.java"}, "function": {"name": "void org.elasticsearch.action.support.TransportAction.execute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 16}, "line": {"number": 61}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OmCg7LeKFCxsCaIeFo50SAAAAAAAAAIj"}} -{"Stackframe": {"file": {"name": "IndexTemplateMetadata.java"}, "function": {"name": "void org.elasticsearch.cluster.metadata.IndexTemplateMetadata$Builder.toInnerXContent(org.elasticsearch.cluster.metadata.IndexTemplateMetadata, org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params, boolean)", "offset": 56}, "line": {"number": 441}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OafCgr0hD4E9T0qIcmaEvAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IFQ63StodoZrGlz6gu_xQwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "void org.elasticsearch.tasks.TaskManager$1.release()"}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADHgxr"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/pipeline/batch.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/pipeline.newBatch"}, "line": {"number": 60}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "r0SzipKiK5ehcJDBm9mclQAAAAAAAABU"}} -{"Stackframe": {"file": {"name": "FileSystemProvider.java"}, "function": {"name": "java.io.InputStream java.nio.file.spi.FileSystemProvider.newInputStream(java.nio.file.Path, java.nio.file.OpenOption[])", "offset": 8}, "line": {"number": 420}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD5qjn"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/go.etcd.io/bbolt@v1.3.4/tx.go"}, "function": {"name": "go.etcd.io/bbolt.(*Tx).writeMeta"}, "line": {"number": 607}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN"}} -{"Stackframe": {"function": {"name": "__wake_up_sync_key"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fkbxUTZgljnk71ZMnqJnyAAAAAAAAADt"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "long[] org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.writeValues(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer, boolean)", "offset": 13}, "line": {"number": 203}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwAIU"}} -{"Stackframe": {"function": {"name": "ret_from_fork"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uimFkk5UuxbH1IL630LmngAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "Regex.java"}, "function": {"name": "boolean org.elasticsearch.common.regex.Regex.simpleMatch(java.lang.String[], java.lang.String)", "offset": 2}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8Leyvkq15GzGuO_r6rbEqgAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.pruneDeletedTombstones()", "offset": 2}, "line": {"number": 2221}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ktm-nkDOWkX2ccJBYdY19QAAAAAAAAA_"}} -{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "void com.amazonaws.services.s3.AmazonS3Client.postProcessS3Object(com.amazonaws.services.s3.model.S3Object, boolean, com.amazonaws.event.ProgressListener)", "offset": 25}, "line": {"number": 1548}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AOMYFPBB9zjJ7mVVqy3g3QAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "MapBuilder.java"}, "function": {"name": "org.elasticsearch.common.collect.MapBuilder org.elasticsearch.common.collect.MapBuilder.putAll(java.util.Map)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACIVaO"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/strings.go"}, "function": {"name": "strings.makeCutsetFunc"}, "line": {"number": 827}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lGiuUKjDiEK6Em1dBmf8cQAAAAAAAAEk"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 292}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HSDGZj0USydZuhfh3oIIfAAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "LogManager.java"}, "function": {"name": "org.apache.logging.log4j.Logger org.apache.logging.log4j.LogManager.getLogger(java.lang.Class)", "offset": 1}, "line": {"number": 581}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ho9WujSzYljmN4932xjq9gAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeAction$5(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener)"}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qIox8vPmS5RJ3a2PQKCB8wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ExecutorSelector.java"}, "function": {"name": "java.lang.String org.elasticsearch.indices.ExecutorSelector.executorForWrite(java.lang.String)"}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAUU-"}} -{"Stackframe": {"function": {"name": "aufs_d_revalidate"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0kEvTApZUyUYCe0u-HVo9AAAAAAAAAB9"}} -{"Stackframe": {"file": {"name": "FollowersChecker.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.FollowersChecker.handleFollowerCheck(org.elasticsearch.cluster.coordination.FollowersChecker$FollowerCheckRequest, org.elasticsearch.transport.TransportChannel)", "offset": 13}, "line": {"number": 203}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAXafO"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "google.golang.org/grpc/internal/credentials.(*syscallConn).Read"}, "line": {"number": 1}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAVmG"}} -{"Stackframe": {"function": {"name": "au_h_open"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O0QBRq09v03gOY7wcqwe-QAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "CompressingStoredFieldsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader$BlockState.reset(int)", "offset": 2}, "line": {"number": 466}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXbQ5"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/tracer.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.(*Tracer).monitorPIDEventsMap"}, "line": {"number": 1035}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NBXbNoKXlpq4Av5OjCjqUgAAAAAAAABz"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "boolean java.lang.String.regionMatches(int, java.lang.String, int, int)", "offset": 16}, "line": {"number": 2150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YuO8negre7Sf-lmPoxxRFQAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "ClusterStatsResponse.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.stats.ClusterStatsResponse.(long, java.lang.String, org.elasticsearch.cluster.ClusterName, java.util.List, java.util.List, org.elasticsearch.cluster.ClusterState)", "offset": 4}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "le8VfryMtJlEyXJeMd-6oAAAAAAAAACI"}} -{"Stackframe": {"file": {"name": "NodeInfo.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.node.info.NodeInfo.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 20}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qV2mmTrpEkQhVYmxROK3HwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.ClusterModule$$Lambda$2483+0x00000008012dacc0.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Tlw414lD5V7AUUaR2nBa8gAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask.run()"}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zz8t1MKNT7r4fbicUkeb5QAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "Probes.java"}, "function": {"name": "short org.elasticsearch.monitor.Probes.getLoadAndScaleToPercent(java.lang.reflect.Method, java.lang.management.OperatingSystemMXBean)", "offset": 2}, "line": {"number": 18}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DLrWTvtAPDh4Uv4u2shragAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4$HighCompressionHashTable.()", "offset": 5}, "line": {"number": 310}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lvoth1Z8IMPusCEFP-Ut6wAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$ConcreteShardRequest.(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.StreamInput)", "offset": 5}, "line": {"number": 1120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kptqAf2DOdNTQQu52rpM3gAAAAAAAABt"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 15}, "line": {"number": 298}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B-Oe_OuJ2Xvt27AtRop-VwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor.access$300(org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor, org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportInterceptor$AsyncSender, boolean)"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vvtWC0gpZIogS3vICgbwcQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "BulkShardRequest.java"}, "function": {"name": "org.elasticsearch.action.bulk.BulkItemRequest org.elasticsearch.action.bulk.BulkShardRequest.lambda$new$1(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 35}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJU7a"}} -{"Stackframe": {"function": {"name": "wp_page_copy"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADH17"}} -{"Stackframe": {"function": {"name": "smpboot_thread_fn"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ByiJTXr_lGzkMclhjfq4OAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.IndexWriter$1$$Lambda$5245+0x0000000801a43220.process(org.apache.lucene.index.IndexWriter)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f_rIvCQMW5oayMPHCj4aUgAAAAAAAACe"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "int java.io.FilePermission.containsPath(java.nio.file.Path, java.nio.file.Path)", "offset": 43}, "line": {"number": 745}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZbUX4kuc0PJopw25LXJbRgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.write(byte[], int, int)"}, "line": {"number": 504}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xz8R4MTaPzD1CrgkfDi_QwAAAAAAAAC4"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.IndexedDISI.flush(int, org.apache.lucene.util.FixedBitSet, int, byte, org.apache.lucene.store.IndexOutput)", "offset": 16}, "line": {"number": 126}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFw9n"}} -{"Stackframe": {"function": {"name": "audit_copy_inode"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gSCcDWmELuplsa8VqJDXWAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TehVpU4OSSIJc9O233JRogAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "JsonGeneratorImpl.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.JsonGeneratorImpl.writeStringField(java.lang.String, java.lang.String)"}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-mlN"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/blkio.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.blkioThrottle"}, "line": {"number": 201}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_"}} -{"Stackframe": {"function": {"name": "do_epoll_wait"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlrpu"}} -{"Stackframe": {"function": {"name": "tcp_write_xmit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADno"}} -{"Stackframe": {"function": {"name": "syscall_trace_enter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6OEzoHpJIFWFvsPKbUCReQAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "GlobalOrdinalsIndexFieldData.java"}, "function": {"name": "org.apache.lucene.index.TermsEnum[] org.elasticsearch.index.fielddata.ordinals.GlobalOrdinalsIndexFieldData$Consumer.getOrLoadTermsEnums()", "offset": 4}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DVSkUfLwOzQuwgYi6TvurAAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "AbstractCollection.java"}, "function": {"name": "boolean java.util.AbstractCollection.addAll(java.util.Collection)", "offset": 2}, "line": {"number": 336}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABp3u"}} -{"Stackframe": {"file": {"name": "runtime/memmove_amd64.s"}, "function": {"name": "runtime.memmove"}, "line": {"number": 161}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TPLqyj5ItvEm4kc0Eq86ygAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "org.elasticsearch.action.support.replication.TransportReplicationAction$ConcreteReplicaRequest org.elasticsearch.action.support.replication.TransportReplicationAction.lambda$new$1(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XSMznkRt2WAdGjlwbap95QAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "HttpContentEncoder.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpContentEncoder.encode(io.netty.channel.ChannelHandlerContext, java.lang.Object, java.util.List)"}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "P_3hnqJdZ1Hqt1-CwCB1tQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.Enum org.elasticsearch.common.io.stream.StreamInput.readEnum(java.lang.Class)"}, "line": {"number": 1279}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u0qxTrkiZSat46G0GdrgmAAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "BytesRefHash.java"}, "function": {"name": "int[] org.apache.lucene.util.BytesRefHash.sort()", "offset": 18}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiIXM"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/syscall_unix.go"}, "function": {"name": "syscall.recvfromInet4"}, "line": {"number": 300}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5_zddmyO37Dam1L6ekM5pgAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "SegmentInfos.java"}, "function": {"name": "void org.apache.lucene.index.SegmentInfos.prepareCommit(org.apache.lucene.store.Directory)", "offset": 3}, "line": {"number": 802}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gkQuFSIA2UC_9Mknn8WGYQAAAAAAAAB6"}} -{"Stackframe": {"file": {"name": "BCrypt.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authc.support.BCrypt.key(byte[])", "offset": 14}, "line": {"number": 1501}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8lbOW9-D9FVTLW-mPAz8XgAAAAAAAABh"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleResponse(java.net.InetSocketAddress, org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.transport.TransportResponseHandler)", "offset": 9}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACzCmk"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/mapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.MapStr.String"}, "line": {"number": 213}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Hkzvs5GEXB5P73bf_lHYLwAAAAAAAAKT"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.IndexingChain$PerField.invert(int, org.apache.lucene.index.IndexableField, boolean)", "offset": 135}, "line": {"number": 1226}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASSMw"}} -{"Stackframe": {"function": {"name": "aa_dfa_match"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h46MgXLb9R9Rx7aN-IJqEwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "ShardId.java"}, "function": {"name": "void org.elasticsearch.index.shard.ShardId.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "at-8gl0X4S8unG2EWa7vCQAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "BufferedChecksumStreamOutput.java"}, "function": {"name": "void org.elasticsearch.index.translog.BufferedChecksumStreamOutput.writeBytes(byte[], int, int)", "offset": 1}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GiKdaO0NXWMcKAtg8WXWngAAAAAAAACO"}} -{"Stackframe": {"file": {"name": "Netty4MessageInboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageInboundHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 8}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-2jKAtgnT2KJwcbGIBrZTAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.close()"}, "line": {"number": 264}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "31KZyoXJL7RK8exMgh2GHAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct.access$800(org.elasticsearch.common.util.concurrent.ThreadContext$ThreadContextStruct, org.elasticsearch.common.io.stream.StreamOutput, java.util.Map)"}, "line": {"number": 496}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MLdMFGDeFJJvJRMDhyL8jwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkSTb"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/strings.go"}, "function": {"name": "strings.FieldsFunc"}, "line": {"number": 417}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O1v_wbuglNek1zs-lCG90QAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService$2.lambda$onResponse$0(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)"}, "line": {"number": 395}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ADx42ASEgg5CGZav2t-yuQAAAAAAAAEQ"}} -{"Stackframe": {"file": {"name": "FieldInfos.java"}, "function": {"name": "void org.apache.lucene.index.FieldInfos.(org.apache.lucene.index.FieldInfo[])", "offset": 33}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Dp15X8uOBNJVZimWDCZGiAAAAAAAAABn"}} -{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter.finishDocument()", "offset": 10}, "line": {"number": 192}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zC1z37qWlgbIB1dFpt4zjAAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(java.lang.Object)", "offset": 8}, "line": {"number": 440}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e9gExmkzbOijIY7LjXFDZQAAAAAAAAE9"}} -{"Stackframe": {"file": {"name": "XECOperations.java"}, "function": {"name": "sun.security.util.math.IntegerModuloP sun.security.ec.XECOperations.pointMultiply(byte[], sun.security.util.math.ImmutableIntegerModuloP)", "offset": 49}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA-tU"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.stopm"}, "line": {"number": 2241}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACrHKv"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/crypto/tls/handshake_client_tls13.go"}, "function": {"name": "crypto/tls.(*clientHandshakeStateTLS13).sendClientCertificate"}, "line": {"number": 580}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ejbc06Btu025yr3_JPXOAQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.fieldcaps.FieldCapabilitiesIndexResponse$GroupByMappingHash$$Lambda$9532+0x00000008028be480.write(org.elasticsearch.common.io.stream.StreamOutput, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qs9QVbSai1fV6zxJyggieQAAAAAAAABf"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 95}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S-bF0OQ5zu714NI9jV1-DQAAAAAAAADE"}} -{"Stackframe": {"file": {"name": "SnapshotShardsService.java"}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService.lambda$startNewShards$1(org.elasticsearch.cluster.SnapshotsInProgress$Entry, java.util.Map)", "offset": 11}, "line": {"number": 267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "D-1h8rWAA4g1SDoGOMQIKAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$2.onResponse(java.lang.Void)"}, "line": {"number": 389}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vkRVyRvn1KU329F76tmTVQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "JdkZlibEncoder.java"}, "function": {"name": "void io.netty.handler.codec.compression.JdkZlibEncoder.encode(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.buffer.ByteBuf)"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3SSuw7AKPJ9yFEVSwC_lbAAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "PipelineConfiguration.java"}, "function": {"name": "boolean org.elasticsearch.ingest.PipelineConfiguration.equals(java.lang.Object)", "offset": 6}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Mb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALo"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 744}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAA4Ti"}} -{"Stackframe": {"function": {"name": "xfs_dir3_data_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXuSN"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.(*GenericEventConverter).normalizeValue"}, "line": {"number": 220}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFpNE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map.go"}, "function": {"name": "reflect.mapaccess"}, "line": {"number": 1309}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4m9mTW_zDlDiftTb5WLt5wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.ensureTranslogSynced(java.util.stream.Stream)"}, "line": {"number": 569}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OWoia3OO91L6Q6k2Ypn2XgAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "boolean java.nio.file.Files.exists(java.nio.file.Path, java.nio.file.LinkOption[])", "offset": 8}, "line": {"number": 2519}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BZ80eZyhE0ZGJTcKVaaGgQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.field(java.lang.String, java.lang.String)", "offset": 4}, "line": {"number": 643}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChG6k"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/lockrank_off.go"}, "function": {"name": "runtime.injectglist"}, "line": {"number": 31}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAll9_"}} -{"Stackframe": {"function": {"name": "tcp_data_queue"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CjJC7YgrLROQv5HQSsKhfAAAAAAAAAGG"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.indexDocValue(int, org.apache.lucene.index.DefaultIndexingChain$PerField, org.apache.lucene.index.DocValuesType, org.apache.lucene.index.IndexableField)", "offset": 48}, "line": {"number": 722}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BBv-21qRgT6sS06vQ0duDgAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeCollection(java.util.Collection, org.elasticsearch.common.io.stream.Writeable$Writer)", "offset": 2}, "line": {"number": 1160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADqG"}} -{"Stackframe": {"function": {"name": "syscall_trace_enter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b_onKz7Xhj_Rg3Non4_rlwAAAAAAAAAy"}} -{"Stackframe": {"file": {"name": "RecyclerBytesStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.RecyclerBytesStreamOutput.ensureCapacityFromPosition(long)", "offset": 4}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EUNjihh0Re1G4wBFFz-KrgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readMap(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier)"}, "line": {"number": 322}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "64_gXbF7HyUCJo7LwmlTVAAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "ClassLoaderContextSelector.java"}, "function": {"name": "org.apache.logging.log4j.core.LoggerContext org.apache.logging.log4j.core.selector.ClassLoaderContextSelector.locateContext(java.lang.ClassLoader, java.net.URI)", "offset": 2}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OsLUWl8iegUfkov5V9GtpAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$runRequestInterceptors$14(org.elasticsearch.xpack.security.authz.interceptor.RequestInterceptor, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.StepListener, java.lang.Void)"}, "line": {"number": 380}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAB0Rm"}} -{"Stackframe": {"function": {"name": "xfs_vn_getattr"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.SubsystemMountpoints"}, "line": {"number": 199}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OzkHkS17HRu8c3H4oJbrdwAAAAAAAABl"}} -{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.authenticateWithCache(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8g5GgzaRtndh1_mhtIHztwAAAAAAAACk"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 10}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WQA5eJbOfqc-MpVNXC1Q9wAAAAAAAABd"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4.encodeSequence(byte[], int, int, int, int, org.apache.lucene.store.DataOutput)", "offset": 9}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jA6JkQ0PFn46mJYMDk3jtwAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readGenericMap(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier, org.elasticsearch.common.CheckedFunction)", "offset": 10}, "line": {"number": 339}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QUM3v4ew-jMVuKkpISsPEAAAAAAAAACQ"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.engine.InternalEngine.index(org.elasticsearch.index.engine.Engine$Index)", "offset": 37}, "line": {"number": 1014}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jXtmC4_G6XhSU0GNhzv7SQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "Formatter.java"}, "function": {"name": "void java.util.Formatter.(java.util.Locale)"}, "line": {"number": 2011}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AvY-8GTrHONLnLoYn_aUmwAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "ConfigException.java"}, "function": {"name": "void com.typesafe.config.ConfigException$WrongType.(com.typesafe.config.ConfigOrigin, java.lang.String, java.lang.String, java.lang.String, java.lang.Throwable)"}, "line": {"number": 94}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YYOUIKT8lxz6w6XGq0DgWAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "java.util.regex.Pattern java.util.regex.Pattern.compile(java.lang.String)"}, "line": {"number": 1084}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEUE6"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mbarrier.go"}, "function": {"name": "runtime.typedmemmove"}, "line": {"number": 171}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AV8wmuu_NnjgQM-gIicjoAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "void io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)"}, "line": {"number": 1410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UjOvEv24g3MqPytk-MIGDAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.monitor.jvm.JvmInfo$$Lambda$7249+0x0000000801eb2f38.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xnsyTYWEvcdITjIbsQ7fWgAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "MapperService.java"}, "function": {"name": "java.lang.Iterable org.elasticsearch.index.mapper.MapperService.getEagerGlobalOrdinalsFields()", "offset": 9}, "line": {"number": 705}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5w4q2mErvPJM1j09ut3VHwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.deleteFile(java.lang.String)"}, "line": {"number": 705}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zLx6iJ9ANFZvdAJHeiPhJwAAAAAAAAD_"}} -{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter.flush(boolean)", "offset": 25}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dswq7UFB-c5kE0TfryCD4gAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener$1.onResponse(java.lang.Object)"}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Xo7g-Y5QcR1vwA7ORZK_pAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "DataOutput.java"}, "function": {"name": "void org.apache.lucene.store.DataOutput.writeString(java.lang.String)"}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PemEHqTP_7PVbNCzQt-XlAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "CodecUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.CodecUtil.writeFooter(org.apache.lucene.store.IndexOutput)", "offset": 2}, "line": {"number": 393}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jo5ATqNcCI9y4RcmNa_57gAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.FieldsProducer org.apache.lucene.codecs.perfield.PerFieldPostingsFormat.fieldsProducer(org.apache.lucene.index.SegmentReadState)"}, "line": {"number": 391}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cna0HoKYEYAK50ooxzDINQAAAAAAAAB5"}} -{"Stackframe": {"file": {"name": "HttpConnection.java"}, "function": {"name": "void org.eclipse.jetty.server.HttpConnection.(org.eclipse.jetty.server.HttpConfiguration, org.eclipse.jetty.server.Connector, org.eclipse.jetty.io.EndPoint, org.eclipse.jetty.http.HttpCompliance, boolean)", "offset": 36}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z7a3KAMWouViNR---1h9KwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.lambda$static$13(org.elasticsearch.common.io.stream.StreamOutput, java.lang.Object)"}, "line": {"number": 676}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3M56M_g_f1gYgGNi_mtl_gAAAAAAAALf"}} -{"Stackframe": {"file": {"name": "Metadata.java"}, "function": {"name": "java.util.SortedMap org.elasticsearch.cluster.metadata.Metadata$Builder.buildIndicesLookup()", "offset": 54}, "line": {"number": 1681}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_C3zmgl0Bjr8nR0878NBsAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "org.elasticsearch.core.Tuple org.elasticsearch.common.util.concurrent.ThreadContext.readHeadersFromStream(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UepoRzuMTBR-jFpLlu_fPgAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "SegmentInfos.java"}, "function": {"name": "java.util.Collection org.apache.lucene.index.SegmentInfos.files(boolean)", "offset": 10}, "line": {"number": 820}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Lu4BbYQNxvrnJvSur5jWAAAAAAAAAADx"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 24}, "line": {"number": 239}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6dizidRtpqcGmpShAjzttQAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "org.apache.lucene.index.SegmentReader org.apache.lucene.index.ReadersAndUpdates.getReader(org.apache.lucene.store.IOContext)", "offset": 2}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tLN6FRqCApmsduxj5WK9JwAAAAAAAADC"}} -{"Stackframe": {"file": {"name": "SegmentCoreReaders.java"}, "function": {"name": "void org.apache.lucene.index.SegmentCoreReaders.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.IOContext)", "offset": 64}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gM-zvldT2mxZOhlxJvpRXwAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "ProtectionDomain.java"}, "function": {"name": "boolean java.security.ProtectionDomain.impliesWithAltFilePerm(java.security.Permission)", "offset": 2}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y65EnYgozb6jeUwvncJgMAAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "AbstractRefCounted.java"}, "function": {"name": "boolean org.elasticsearch.core.AbstractRefCounted.decRef()", "offset": 5}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pho5yY-CB4hDJ5PhyrESMQAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.loadAuthorizedIndices(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 2}, "line": {"number": 345}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL4Uz"}} -{"Stackframe": {"function": {"name": "__fget"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jg3LdO4DNz9FsefjUG1F1gAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 1}, "line": {"number": 630}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u4vqxWKlKO7QUS6KhfhZ-wAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "TermQuery.java"}, "function": {"name": "org.apache.lucene.index.TermsEnum org.apache.lucene.search.TermQuery$TermWeight.getTermsEnum(org.apache.lucene.index.LeafReaderContext)", "offset": 3}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fx2qpzR4SW8k6QF4h_x-lgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8nfosFX1MJIWgr2jXaIaYQAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.ApiKeyService$$Lambda$8898+0x00000008027d1790.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LOO7StXh6esxEXuTjm8T0gAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$6504+0x00000008023c2758.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-SQAt_091j0wh4lQu2r18QAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "PromiseNotificationUtil.java"}, "function": {"name": "void io.netty.util.internal.PromiseNotificationUtil.trySuccess(io.netty.util.concurrent.Promise, java.lang.Object, io.netty.util.internal.logging.InternalLogger)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Dsa9Q2QtioiM8dEKYkXBmAAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "MessageToMessageEncoder.java"}, "function": {"name": "void io.netty.handler.codec.MessageToMessageEncoder.write(io.netty.channel.ChannelHandlerContext, java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 7}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K3z6VlJKaoVH_PfNkbsLxgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "AbstractQueryBuilder.java"}, "function": {"name": "org.elasticsearch.index.query.QueryBuilder org.elasticsearch.index.query.AbstractQueryBuilder.rewrite(org.elasticsearch.index.query.QueryRewriteContext)"}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V0uPvqXECyvBGRzWbaaAUwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object java.util.stream.Collectors$$Lambda$58.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5"}} -{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.executeOneRequest(com.amazonaws.http.AmazonHttpClient$RequestExecutor$ExecOneRequestParams)", "offset": 58}, "line": {"number": 1323}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-esrZcmh9SBGSSEFHAV1fQAAAAAAAABx"}} -{"Stackframe": {"file": {"name": "Lucene87StoredFieldsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.StoredFieldsWriter org.apache.lucene.codecs.lucene87.Lucene87StoredFieldsFormat.fieldsWriter(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 5}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C64NVLkkZ7RW349y9srs0gAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DiffableUtils.java"}, "function": {"name": "void org.elasticsearch.cluster.DiffableUtils$ImmutableOpenMapDiff.(org.elasticsearch.common.io.stream.StreamInput, org.elasticsearch.cluster.DiffableUtils$KeySerializer, org.elasticsearch.cluster.DiffableUtils$ValueSerializer)"}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YTbqMp6p_Zd87b4Y9hNE0AAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.IndexWriter$$Lambda$5518+0x0000000801ad1e68.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K_N78LhUkthI1fnHsP1_6gAAAAAAAAC4"}} -{"Stackframe": {"file": {"name": "Regex.java"}, "function": {"name": "boolean org.elasticsearch.common.regex.Regex.simpleMatchWithNormalizedStrings(java.lang.String, java.lang.String)", "offset": 28}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACg1AS"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mprof.go"}, "function": {"name": "runtime.mProf_PostSweep"}, "line": {"number": 128}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QBbvUVLpPH8FdglduYsmOwAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "FSTCompiler.java"}, "function": {"name": "org.apache.lucene.util.fst.FSTCompiler org.apache.lucene.util.fst.FSTCompiler$Builder.build()"}, "line": {"number": 272}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFi"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.runTask(org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask)", "offset": 38}, "line": {"number": 432}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_lnMS5U7_cxWp1BoOwDZzgAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "ECDHServerKeyExchange.java"}, "function": {"name": "byte[] sun.security.ssl.ECDHServerKeyExchange$ECDHServerKeyExchangeProducer.produce(sun.security.ssl.ConnectionContext, sun.security.ssl.SSLHandshake$HandshakeMessage)", "offset": 1}, "line": {"number": 475}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-LYE"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/auparse.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.enrichData"}, "line": {"number": 333}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1oyY5_H1XDxnqxtQutVBSwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.close(java.io.Closeable[])"}, "line": {"number": 77}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0zR9Q82k-qokLA4At5aHZgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ReleasableLock.java"}, "function": {"name": "org.elasticsearch.common.util.concurrent.ReleasableLock org.elasticsearch.common.util.concurrent.ReleasableLock.acquire()"}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "575WKZsJOrf8RDDJpG_1WgAAAAAAAACF"}} -{"Stackframe": {"file": {"name": "CopyBytesSocketChannel.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.CopyBytesSocketChannel.doWrite(io.netty.channel.ChannelOutboundBuffer)", "offset": 31}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m1Aohg0JUy6QKOpEmgCfqAAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "RestNodesStatsAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.admin.cluster.RestNodesStatsAction.lambda$prepareRequest$3(org.elasticsearch.client.internal.node.NodeClient, org.elasticsearch.rest.RestRequest, org.elasticsearch.action.admin.cluster.node.stats.NodesStatsRequest, org.elasticsearch.rest.RestChannel)", "offset": 2}, "line": {"number": 185}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.maybeRefresh(java.lang.String)"}, "line": {"number": 1667}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1qEaQkPH6HGZ6UsDAJT9BgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "InternalParserDateTimeParser.java"}, "function": {"name": "int org.joda.time.format.InternalParserDateTimeParser.parseInto(org.joda.time.format.DateTimeParserBucket, java.lang.CharSequence, int)"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nKhcql1SQ7g-aNYXxz6k1AAAAAAAAACU"}} -{"Stackframe": {"file": {"name": "ApacheHttpRequestFactory.java"}, "function": {"name": "org.apache.http.client.methods.HttpRequestBase com.amazonaws.http.apache.request.impl.ApacheHttpRequestFactory.create(com.amazonaws.Request, com.amazonaws.http.settings.HttpClientSettings)", "offset": 30}, "line": {"number": 94}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACKDQ-"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bufio/bufio.go"}, "function": {"name": "bufio.(*Reader).ReadSlice"}, "line": {"number": 360}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-2Z_suCsLJaLieHY0L9AUwAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "Class.java"}, "function": {"name": "java.lang.reflect.Field[] java.lang.Class.getDeclaredFields()", "offset": 2}, "line": {"number": 2422}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K_N78LhUkthI1fnHsP1_6gAAAAAAAACy"}} -{"Stackframe": {"file": {"name": "Regex.java"}, "function": {"name": "boolean org.elasticsearch.common.regex.Regex.simpleMatchWithNormalizedStrings(java.lang.String, java.lang.String)", "offset": 28}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rXwuD2ZDCM1F8se01W9N5wAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 1}, "line": {"number": 507}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2tLNICxYZuozQenxztpj2QAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$AuthorizationResultListener.onResponse(java.lang.Object)"}, "line": {"number": 907}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aiYAeaOefGgb8Ek1UStS_gAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "StreamSupport.java"}, "function": {"name": "java.util.stream.Stream java.util.stream.StreamSupport.stream(java.util.Spliterator, boolean)", "offset": 2}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EI2ZG0yDy6LJc1opjkWatgAAAAAAAABz"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 21}, "line": {"number": 457}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CIuiiQ-JUySY2Z6jyT-aAgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 683}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2x9Jgge3yFGPJiCTMDFHSwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry.lambda$processMessageReceived$0(org.elasticsearch.tasks.Task)"}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-ILcQEUVPt-h8tsq1UB2sAAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction$$Lambda$5727+0x0000000801b28f68.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACHlr6"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/reflect/value.go"}, "function": {"name": "reflect.makeString"}, "line": {"number": 2595}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZvnSEZ6hxckmxa-z2abTjwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Strings.java"}, "function": {"name": "java.util.Set org.elasticsearch.common.Strings.commaDelimitedListToSet(java.lang.String)"}, "line": {"number": 538}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hp_iwwp1vhuCC_YLHJWlFQAAAAAAAAE_"}} -{"Stackframe": {"file": {"name": "Parsed.java"}, "function": {"name": "void java.time.format.Parsed.resolveFields()", "offset": 44}, "line": {"number": 321}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OU_VydMIAviE7nI4-Op03QAAAAAAAACN"}} -{"Stackframe": {"file": {"name": "SecurityIndexManager.java"}, "function": {"name": "void org.elasticsearch.xpack.security.support.SecurityIndexManager.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 13}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hoA0DA92BMfAA7apys6-iQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "FieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.FieldMapper.parse(org.elasticsearch.index.mapper.DocumentParserContext)", "offset": 3}, "line": {"number": 164}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ukkz7TICliMQmbQxZ0wSyQAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.StandardDirectoryReader.doOpenFromWriter(org.apache.lucene.index.IndexCommit)", "offset": 8}, "line": {"number": 293}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XQAhaCnyqkeCfjLm4h_8UQAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "RestBuilderListener.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestBuilderListener.buildResponse(java.lang.Object)", "offset": 1}, "line": {"number": 27}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Fy_oiZ-hvylcVoePLvWugwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Lucene84PostingsReader.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene84.Lucene84PostingsReader$BlockDocsEnum.docID()"}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "MergePolicy.java"}, "function": {"name": "long org.apache.lucene.index.MergePolicy.size(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 1}, "line": {"number": 679}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4gj0C7RMNmlQUbyfvqTY6AAAAAAAAABc"}} -{"Stackframe": {"file": {"name": "InboundDecoder.java"}, "function": {"name": "org.elasticsearch.transport.Header org.elasticsearch.transport.InboundDecoder.readHeader(org.elasticsearch.Version, int, org.elasticsearch.common.bytes.BytesReference)", "offset": 13}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "D6b8Sjd5CvSYx-QInyms_AAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.ActionRunnable$$Lambda$6665+0x0000000801ced230.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QmUBFmueS4MaOyw0OD29yQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter$$Lambda$6561+0x0000000802411310.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "awaK319bKiHtaKZV9KHt9QAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "StoredFieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.index.StoredFieldsConsumer.startDocument(int)", "offset": 1}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJlfo"}} -{"Stackframe": {"function": {"name": "tlb_flush_mmu"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LaFl4epk0Q6S_D_8elQACwAAAAAAAABj"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.(org.apache.lucene.index.SegmentWriteState, java.lang.String, java.lang.String, java.lang.String, java.lang.String)", "offset": 17}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL"}} -{"Stackframe": {"file": {"name": "IndexLifecycleService.java"}, "function": {"name": "void org.elasticsearch.xpack.ilm.IndexLifecycleService.triggerPolicies(org.elasticsearch.cluster.ClusterState, boolean)", "offset": 42}, "line": {"number": 327}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_ZSq"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/auditd/audit_linux.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/auditd.createAuditdData"}, "line": {"number": 883}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIbuM"}} -{"Stackframe": {"function": {"name": "find_get_entry"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BFI7c7JS1eVbUcz-CuyraAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.poll(long, java.util.concurrent.TimeUnit)"}, "line": {"number": 1374}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a4Ee0kL33laYREZz55sqWwAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$3.onResponse(java.lang.Void)", "offset": 7}, "line": {"number": 319}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fkbxUTZgljnk71ZMnqJnyAAAAAAAAAKT"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "long[] org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.writeValues(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer, boolean)", "offset": 97}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LWN9jIx2nEE6yZjMuaDPawAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 6}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-1A6"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/gosigar@v0.14.2/sigar_linux_common.go"}, "function": {"name": "github.com/elastic/gosigar.readProcFile"}, "line": {"number": 408}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALqeS"}} -{"Stackframe": {"function": {"name": "vfs_readlink"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TPgk3CweWzO9tVWjSu3t6AAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ApmServerConfigurationSource.java"}, "function": {"name": "void co.elastic.apm.agent.configuration.ApmServerConfigurationSource.pollConfig(org.stagemonitor.configuration.ConfigurationRegistry)", "offset": 1}, "line": {"number": 129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hhxE01XFPFaD7ysVa9fC9wAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.lambda$innerAcquireReplicaOperationPermit$28(long, long, long, org.elasticsearch.action.ActionListener, org.elasticsearch.core.Releasable)", "offset": 19}, "line": {"number": 3225}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d89ErkgwhH3MyjmF-37sXAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AbstractClient.java"}, "function": {"name": "void org.elasticsearch.client.internal.support.AbstractClient.search(org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 515}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ouMG0zvuVqxkxu8joRSJwQAAAAAAAABF"}} -{"Stackframe": {"file": {"name": "SearchExecutionStatsCollector.java"}, "function": {"name": "void org.elasticsearch.action.search.SearchExecutionStatsCollector.onResponse(org.elasticsearch.search.SearchPhaseResult)", "offset": 10}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3yZRDT05_hGvUj8jRvChFAAAAAAAAARB"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "boolean org.apache.lucene.index.ReadersAndUpdates.writeFieldUpdates(org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos$FieldNumbers, long, org.apache.lucene.util.InfoStream)", "offset": 143}, "line": {"number": 648}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "v6A2aEAJbkezThEe0LppjQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$4700.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "adP6bWu7ULef518P5KHVHgAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "Strings.java"}, "function": {"name": "java.lang.String[] org.elasticsearch.common.Strings.delimitedListToStringArray(java.lang.String, java.lang.String)"}, "line": {"number": 466}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFpUM"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map.go"}, "function": {"name": "reflect.mapiternext"}, "line": {"number": 1338}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jE-4Ja_8RAzuC-rb8IfgCgAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction$2.doRun()", "offset": 1}, "line": {"number": 181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rRV8xs3QPhMvkmhWl1HVVwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "long org.elasticsearch.common.io.Streams.doCopy(java.io.InputStream, java.io.OutputStream, byte[])", "offset": 2}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5WRkp3UGiY89oONYWWfHqAAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.inboundMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage)", "offset": 7}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rcw4O6fPwcfa_O50COvY1wAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "MD5DigestCalculatingInputStream.java"}, "function": {"name": "int com.amazonaws.services.s3.internal.MD5DigestCalculatingInputStream.read(byte[], int, int)", "offset": 2}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9tkS4mnLw0w9AmlGvd82SgAAAAAAAAA8"}} -{"Stackframe": {"file": {"name": "ClientScrollableHitSource.java"}, "function": {"name": "void org.elasticsearch.index.reindex.ClientScrollableHitSource.doStart(org.elasticsearch.index.reindex.RejectAwareActionListener)", "offset": 6}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFE7k"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.preemptall"}, "line": {"number": 4853}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oXdf8OJsiOhUkDzOQcZagQAAAAAAAABl"}} -{"Stackframe": {"file": {"name": "PromiseCombiner.java"}, "function": {"name": "void io.netty.util.concurrent.PromiseCombiner$1.operationComplete0(io.netty.util.concurrent.Future)", "offset": 6}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aSd0IwCHi35NcDjaC1kTWQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "StoredFieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.index.StoredFieldsConsumer.finishDocument()"}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qg4aqNV3oLa05HqI02FEkQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.monitor.jvm.JvmInfo$$Lambda$7663+0x00000008025fa2d0.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2EnQTIbnbhLRhysRFCft9gAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "SoftDeletesPolicy.java"}, "function": {"name": "long org.elasticsearch.index.engine.SoftDeletesPolicy.getMinRetainedSeqNo()", "offset": 15}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0sPzCpMt7CGYXseDPlYkhAAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "void java.util.regex.Pattern.(java.lang.String, int)", "offset": 22}, "line": {"number": 1445}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YegVEymiG8lw5t7wHfz6hwAAAAAAAAH2"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.io.stream.StreamInput.readString()", "offset": 62}, "line": {"number": 487}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NfM0LhQlSM_JpwKY-QxdBAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "org.elasticsearch.common.io.stream.Writeable org.elasticsearch.common.io.stream.StreamInput.readOptionalWriteable(org.elasticsearch.common.io.stream.Writeable$Reader)", "offset": 1}, "line": {"number": 1037}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oJ4uhqaGJXAzxTc8vQCVYwAAAAAAAABd"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.deleteCommits()", "offset": 13}, "line": {"number": 382}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h7etdb4LVAEPlLKOTYCzyQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "void org.apache.lucene.index.StandardDirectoryReader.doClose()", "offset": 19}, "line": {"number": 481}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "evwcpll6X6Wd1cgXpKnKiwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "UnpooledHeapByteBuf.java"}, "function": {"name": "byte[] io.netty.buffer.UnpooledHeapByteBuf.allocateArray(int)"}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "FilterOutputStream.java"}, "function": {"name": "void java.io.FilterOutputStream.close()", "offset": 18}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u39hB2o_bkkn64I33Zf2OAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "BufferedInputStream.java"}, "function": {"name": "int java.io.BufferedInputStream.read(byte[], int, int)"}, "line": {"number": 334}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rrWuYAakx0mSDLYXP-NBMgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.store.ByteSizeCachingDirectory$1.refresh()"}, "line": {"number": 60}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NpkAijRuPUgJZHGSXwsZ5AAAAAAAAAEd"}} -{"Stackframe": {"file": {"name": "ServerHello.java"}, "function": {"name": "void sun.security.ssl.ServerHello$ServerHelloMessage.(sun.security.ssl.HandshakeContext, java.nio.ByteBuffer)", "offset": 43}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NmbHbA3eVfi3WhtJhVBi0wAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "boolean org.elasticsearch.common.io.stream.StreamInput.readBoolean()"}, "line": {"number": 583}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cn26IoO-8y2a5yC5a1ibFQAAAAAAAABb"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "org.elasticsearch.action.support.nodes.BaseNodesResponse org.elasticsearch.action.support.nodes.TransportNodesAction.newResponse(org.elasticsearch.action.support.nodes.BaseNodesRequest, java.util.concurrent.atomic.AtomicReferenceArray)", "offset": 13}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o9I8XHop3y7uLb8wdADAN______AVoSM"}} -{"Stackframe": {"function": {"name": "__key.31071"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "deyQ05GmzOw19AUsDzeIcAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "BitSetIterator.java"}, "function": {"name": "int org.apache.lucene.util.BitSetIterator.nextDoc()"}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory$FSIndexOutput.(org.apache.lucene.store.FSDirectory, java.lang.String, java.nio.file.OpenOption[])", "offset": 1}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aqi6m5y2lIDVnw6ctINunwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "IndexLifecycleRunner.java"}, "function": {"name": "java.lang.Long org.elasticsearch.xpack.ilm.IndexLifecycleRunner.calculateOriginationMillis(org.elasticsearch.cluster.metadata.IndexMetadata)"}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "U0eTKdsDxlOsU56i41jsOgAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "boolean java.util.stream.AbstractPipeline.copyIntoWithCancel(java.util.stream.Sink, java.util.Spliterator)", "offset": 6}, "line": {"number": 502}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$1.doRun()"}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R_9SnG3su4ZfR3oq1nyragAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "BytesRef.java"}, "function": {"name": "void org.apache.lucene.util.BytesRef.(java.lang.CharSequence)", "offset": 1}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aPSRYZ8JddCCQFb8HbMBRAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "org.elasticsearch.cluster.NamedDiff org.elasticsearch.cluster.SnapshotsInProgress.readDiffFrom(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 502}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MHSpk2A96gaG9v5WnUwtSQAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.handlePrimaryRequest(org.elasticsearch.action.support.replication.TransportReplicationAction$ConcreteShardRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 1}, "line": {"number": 256}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMs6C"}} -{"Stackframe": {"function": {"name": "ep_scan_ready_list.constprop.20"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LLIx3z8GAHtBLc7C_miK_wAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.mapOrdered()"}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "12wqq0CZSFWXQTyNvq7lawAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.SoftDeletesRetentionMergePolicy.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.util.IOSupplier)", "offset": 6}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService.maybeRefreshEngine(boolean)", "offset": 3}, "line": {"number": 880}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KBNthOxdN-LeSLQeW0hbAwAAAAAAAAE2"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 65}, "line": {"number": 303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wh6xTQPkmoOUUrUOOnnNsQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene90.IndexedDISI.advance(int)"}, "line": {"number": 440}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n1Y254wxpQ3hq_nYz9gRWgAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$2(java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.ActionResponse)", "offset": 1}, "line": {"number": 192}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAwsz"}} -{"Stackframe": {"function": {"name": "do_signal"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Z6aAB62ipYf2Ff58TIbPwgAAAAAAAACW"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 150}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jD7laOo1GMdkduoKGoYbsgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ReplicationRequest.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.action.support.replication.ReplicationRequest.createTask(long, java.lang.String, java.lang.String, org.elasticsearch.tasks.TaskId, java.util.Map)"}, "line": {"number": 220}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M7vNoJf6UqNhbFs2k-N8egAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction$$Lambda$8036+0x0000000801f44068.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CyxJKWhz_iFYytJsQ45E4AAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "ApiKeyService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.ApiKeyService.tryAuthenticate(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.xpack.security.authc.ApiKeyService$ApiKeyCredentials, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 652}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "axgEJXApvqeO8NKYR7cB6AAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.IndexService$$Lambda$6380+0x0000000801d0d900.warm(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZY053goknQd2qtlUXwZuLgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.dispatchedShardOperationOnReplica(org.elasticsearch.action.support.replication.ReplicatedWriteRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GlC_4vxkxw2liQlwBvsuFwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "Signature.java"}, "function": {"name": "byte[] java.security.Signature.sign()", "offset": 1}, "line": {"number": 712}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4hOS6AZiF-c1H0nqUa2YTwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "JarFile.java"}, "function": {"name": "java.util.jar.JarEntry java.util.jar.JarFile.getJarEntry(java.lang.String)"}, "line": {"number": 469}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bxcuG5n0qJIaHX3wrksHOQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ForUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.ForUtil.prefixSum8(long[], long)", "offset": 1}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALQpf"}} -{"Stackframe": {"function": {"name": "do_dentry_open"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Hs84X9WR2gx5bBItVVyJWAAAAAAAAAB4"}} -{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.onResponse(java.lang.Object)", "offset": 13}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.lambda$acquireReplicaOperationPermit$30(java.lang.String, java.lang.Object, org.elasticsearch.action.ActionListener)"}, "line": {"number": 3471}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k99M4bkjfKmg3-yt9HFm8AAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Lucene84PostingsReader.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene84.Lucene84PostingsReader$BlockDocsEnum.advance(int)"}, "line": {"number": 466}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KPkSbIa3FpEsdEGi2AxIeAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "PackedInts.java"}, "function": {"name": "org.apache.lucene.util.packed.PackedInts$Mutable org.apache.lucene.util.packed.PackedInts.getMutable(int, int, float)"}, "line": {"number": 940}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RPFiojmndeu_4nmb3OGehAAAAAAAAABq"}} -{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator.close()", "offset": 22}, "line": {"number": 1846}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Exception.java"}, "function": {"name": "void java.lang.Exception.(java.lang.String)"}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HzY1pLcHHo9l4_6glZyDlQAAAAAAAADs"}} -{"Stackframe": {"file": {"name": "BlobStoreIndexShardSnapshots.java"}, "function": {"name": "org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots.fromXContent(org.elasticsearch.common.xcontent.XContentParser)", "offset": 27}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZVUm0BdPrxOejRxbp2Iq8AAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.wakeup(boolean)", "offset": 1}, "line": {"number": 853}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cvXAHIc2bboYaLZDpzNq0gAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "LoggerConfig.java"}, "function": {"name": "void org.apache.logging.log4j.core.config.LoggerConfig.callAppenders(org.apache.logging.log4j.core.LogEvent)", "offset": 3}, "line": {"number": 542}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9PVJEFMmm6N-gLnB0nQTgwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.rest.action.document.RestBulkAction$$Lambda$6990+0x0000000801d448c0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ysan-1fe0rs2JtegG8IkKQAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "StringTerms.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.search.aggregations.bucket.terms.StringTerms$Bucket.keyToXContent(org.elasticsearch.xcontent.XContentBuilder)", "offset": 3}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9lngTnmeSG1s7rdk_juSMAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaResult org.elasticsearch.action.bulk.TransportShardBulkAction.lambda$dispatchedShardOperationOnReplica$4(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard)", "offset": 1}, "line": {"number": 551}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-uEI"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/reader.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.(*Reader).CgroupsVersion"}, "line": {"number": 140}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jl0Few0KXqirBZp0WuOd2wAAAAAAAAFe"}} -{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.lambda$snapshotShard$57(org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.apache.lucene.index.IndexCommit, org.elasticsearch.snapshots.SnapshotId, java.util.List, org.elasticsearch.index.shard.ShardId, org.elasticsearch.common.blobstore.BlobContainer, java.lang.String, org.elasticsearch.index.snapshots.blobstore.BlobStoreIndexShardSnapshots, org.elasticsearch.Version, java.lang.String, java.util.Set, org.elasticsearch.action.ActionListener, java.util.Collection)", "offset": 41}, "line": {"number": 1799}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FcONxiLpVthzRpXYOxEMGQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$4465.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zvtGCZWh7Ji_VQTOB6BAGQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TrackingDirectoryWrapper.java"}, "function": {"name": "void org.apache.lucene.store.TrackingDirectoryWrapper.deleteFile(java.lang.String)"}, "line": {"number": 37}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HjwmgDoyi_FLJh0vwPhLsQAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "void sun.nio.ch.NioSocketImpl.park(java.io.FileDescriptor, int, long)", "offset": 5}, "line": {"number": 181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "polHY70rbYATV63SJl0rJwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Eu2eTQ_3gXX-hva2wFAN4AAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 1}, "line": {"number": 625}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V-kXvMT4K0SIRkTvXJDHrAAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "PublishWithJoinResponse.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublishWithJoinResponse.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 1}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACsqYV"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/processing/processors.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/processing.(*group).Run-fm"}, "line": {"number": 113}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x0P1r7I-Fx8UT8KavfTMGgAAAAAAAABW"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateAppliers(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.common.StopWatch, java.util.Collection)", "offset": 3}, "line": {"number": 499}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "91PGt5DRiEvcDWprSoWEvwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cU6wpPib2OOTkqnCmAIASwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction.newResponseAsync(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.nodes.BaseNodesRequest, java.util.List, java.util.List, org.elasticsearch.action.ActionListener)"}, "line": {"number": 181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeSystemUser(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 5}, "line": {"number": 604}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3qFLPs_uVDMl6_9vN2zP4QAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object jdk.internal.platform.CgroupUtil$$Lambda$283+0x0000000800d6ea50.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d9ocGHkZokXOJ8TnyiAkuQAAAAAAAACe"}} -{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "void org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction.prepareBulkRequest(long, org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction$ScrollConsumableHitsResponse)", "offset": 23}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "36WCeR5NbgRZnRrGA9E9SgAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "BaseRestHandler.java"}, "function": {"name": "void org.elasticsearch.rest.BaseRestHandler.handleRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient)"}, "line": {"number": 94}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dys1EWfSUaUc_VpYNxn9AwAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "void sun.nio.fs.UnixPath.checkDelete()", "offset": 2}, "line": {"number": 794}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALUbi"}} -{"Stackframe": {"function": {"name": "rw_verify_area"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAScuk"}} -{"Stackframe": {"function": {"name": "apparmor_file_free_security"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X6gm0xsGb0GSzuRqEOYouQAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "PerThreadIDVersionAndSeqNoLookup.java"}, "function": {"name": "org.elasticsearch.common.lucene.uid.VersionsAndSeqNoResolver$DocIdAndSeqNo org.elasticsearch.common.lucene.uid.PerThreadIDVersionAndSeqNoLookup.lookupSeqNo(org.apache.lucene.util.BytesRef, org.apache.lucene.index.LeafReaderContext)", "offset": 2}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALip-"}} -{"Stackframe": {"function": {"name": "follow_managed"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uCrYcJJKClqXMP74KTJEhQAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "NIOFSDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.apache.lucene.store.NIOFSDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 6}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnJsR"}} -{"Stackframe": {"function": {"name": "unix_stream_read_generic"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dB8rpvXeU-U7j8zoRqc_lgAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 7}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rSn_PuX3K7D2j0paQ2NF1QAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Logger.java"}, "function": {"name": "boolean ch.qos.logback.classic.Logger.isDebugEnabled(org.slf4j.Marker)"}, "line": {"number": 469}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tknRVtdrp8TkRV3X6AJ-KgAAAAAAAAE6"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleRequest(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.Header, org.elasticsearch.transport.InboundMessage)", "offset": 58}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SXFZShc93P7Br4wzVi_TSwAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "java.util.Map org.elasticsearch.indices.IndicesService.statsByShard(org.elasticsearch.indices.IndicesService, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 5}, "line": {"number": 437}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S9dDtXfGWlAbYJs-qAiNWAAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "org.elasticsearch.action.search.SearchResponse org.elasticsearch.action.search.TransportSearchAction$4.createFinalResponse()", "offset": 5}, "line": {"number": 754}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Rb5ObrmWUJbOO1wFU20z4AAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ObjectParser.lambda$declareField$9(java.util.function.BiConsumer, org.elasticsearch.common.xcontent.ContextParser, org.elasticsearch.common.xcontent.XContentParser, java.lang.Object, java.lang.Object)"}, "line": {"number": 386}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H4wLIDUJzMk9KyyjrPk2ygAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "IndexInput.java"}, "function": {"name": "java.lang.String org.apache.lucene.store.IndexInput.getFullSliceDescription(java.lang.String)", "offset": 4}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wh6xTQPkmoOUUrUOOnnNsQAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene90.IndexedDISI.advance(int)", "offset": 5}, "line": {"number": 445}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAC2m9"}} -{"Stackframe": {"file": {"name": "syscall/syscall_linux.go"}, "function": {"name": "syscall.Syscall6"}, "line": {"number": 91}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WNSWOp_4Iqt56ZuW1XrPJwAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrap(io.netty.channel.ChannelHandlerContext, boolean)", "offset": 9}, "line": {"number": 818}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MFqyYyMA6QeOFwV5IC1VmQAAAAAAAADX"}} -{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "java.lang.Object com.amazonaws.services.s3.AmazonS3Client.invoke(com.amazonaws.Request, com.amazonaws.http.HttpResponseHandler, java.lang.String, java.lang.String, boolean)", "offset": 46}, "line": {"number": 5054}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "U0Ay-od-wn9HrOZaci_ZcQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.fieldcaps.TransportFieldCapabilitiesAction$NodeTransportHandler$$Lambda$9521+0x00000008028bcaf0.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "G5W8IMyZCvr20cEkYhG1nQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.Iterator java.util.HashMap$EntrySet.iterator()"}, "line": {"number": 1101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EbmJdG2t-RBs3brSkct7HQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore$$Lambda$6506+0x00000008023c2b88.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAbIkV"}} -{"Stackframe": {"file": {"name": "google.golang.org/grpc@v1.46.0/stream.go"}, "function": {"name": "google.golang.org/grpc.(*clientStream).SendMsg"}, "line": {"number": 797}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ynf_MUQkDQVzhniQz6muHgAAAAAAAAMl"}} -{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "void org.elasticsearch.repositories.blobstore.BlobStoreRepository.snapshotShard(org.elasticsearch.index.store.Store, org.elasticsearch.index.mapper.MapperService, org.elasticsearch.snapshots.SnapshotId, org.elasticsearch.repositories.IndexId, org.apache.lucene.index.IndexCommit, java.lang.String, org.elasticsearch.index.snapshots.IndexShardSnapshotStatus, org.elasticsearch.Version, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 177}, "line": {"number": 1817}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEomE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mheap.go"}, "function": {"name": "runtime.addfinalizer"}, "line": {"number": 1772}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5iRxORzRIKB9jE6s7D0c6wAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "boolean java.lang.String.equals(java.lang.Object)"}, "line": {"number": 1821}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_orFLBX4vpmigxovAnXMlwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard$$Lambda$6633+0x0000000801d49208.warm(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0yh"}} -{"Stackframe": {"function": {"name": "schedule_hrtimeout_range_clock"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zxIhSYMrYCNgOD4FFp83ywAAAAAAAACI"}} -{"Stackframe": {"file": {"name": "SSLSocketOutputRecord.java"}, "function": {"name": "void sun.security.ssl.SSLSocketOutputRecord.flush()", "offset": 18}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "096LxVUimOhSRRaM4j1ZNwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$apply$1(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.ActionFilterChain, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.common.util.concurrent.ThreadContext$StoredContext)"}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7ZSNVpSilzBGhH0gQOfN-gAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "WeakHashMap.java"}, "function": {"name": "java.util.WeakHashMap$Entry[] java.util.WeakHashMap.getTable()"}, "line": {"number": 355}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QjcJgCUAsytsXGSmYCNuVgAAAAAAAADM"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 94}, "line": {"number": 629}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mYmuipE_JkxJYi6xuD4pIQAAAAAAAADZ"}} -{"Stackframe": {"file": {"name": "KeyShareExtension.java"}, "function": {"name": "byte[] sun.security.ssl.KeyShareExtension$CHKeyShareProducer.produce(sun.security.ssl.ConnectionContext, sun.security.ssl.SSLHandshake$HandshakeMessage)", "offset": 38}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FQVEqfdF3Gc5vOLVf8c4EAAAAAAAAAEp"}} -{"Stackframe": {"file": {"name": "Netty4MessageChannelHandler.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4MessageChannelHandler.doFlush(io.netty.channel.ChannelHandlerContext)", "offset": 52}, "line": {"number": 169}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMQCQ"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/internal/metrics/cpu/metrics.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/internal/metrics/cpu.(*Monitor).Fetch"}, "line": {"number": 92}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bsQjgCW9UjBRbj0X9EX2MgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$6592+0x0000000801cbd7e8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TphZkORhkBDEbRDMofKltAAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 6}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3iAnOsiaJz5FxI1Ct-Vd4QAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "org.elasticsearch.index.shard.IndexShard org.elasticsearch.action.support.replication.TransportReplicationAction.getIndexShard(org.elasticsearch.index.shard.ShardId)"}, "line": {"number": 591}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-1UK"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/gosigar@v0.14.2/sigar_linux_common.go"}, "function": {"name": "github.com/elastic/gosigar.getUIDs"}, "line": {"number": 446}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMRyc"}} -{"Stackframe": {"function": {"name": "do_fsync"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "Thread.java"}, "function": {"name": "void java.lang.Thread.run()", "offset": 1}, "line": {"number": 829}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "y3suxdda7-517ccPeU80LQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.decRef(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)"}, "line": {"number": 396}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IXQQ44cok-T_SndfV84TzAAAAAAAAABS"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.support.AbstractXContentParser.readValue(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier)", "offset": 4}, "line": {"number": 375}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cNfqzNIuM2moCdDAPZaMPwAAAAAAAAGh"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 417}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAChhqE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/path/filepath/path.go"}, "function": {"name": "github.com/elastic/gosigar/cgroup.ProcessCgroupPaths"}, "line": {"number": 212}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vtOmTuUGvKYiQRK_O9kHuwAAAAAAAADP"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "long[] org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.writeValues(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 6}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rAh73n3G8p4dXg695aDMigAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine$RefreshWarmerListener.accept(java.lang.Object, java.lang.Object)"}, "line": {"number": 2603}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Q2oQH3RYKxV8uqKhG5u00QAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "InboundAggregator.java"}, "function": {"name": "void org.elasticsearch.transport.InboundAggregator.checkBreaker(org.elasticsearch.transport.Header, int, org.elasticsearch.transport.InboundAggregator$BreakerControl)", "offset": 7}, "line": {"number": 215}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iPVGKFSJxOxxesodHaSqSwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "FixedBits.java"}, "function": {"name": "boolean org.apache.lucene.util.FixedBits.get(int)"}, "line": {"number": 32}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LyBybOIbjBveSXE802X-oQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "LinkedHashMap.java"}, "function": {"name": "java.lang.Object java.util.LinkedHashMap.get(java.lang.Object)"}, "line": {"number": 440}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5TiGwb-AyAC8UyQzxJ9-pQAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.channels.SeekableByteChannel java.nio.file.Files.newByteChannel(java.nio.file.Path, java.nio.file.OpenOption[])", "offset": 6}, "line": {"number": 426}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "515JXhvu-Tp0j9MvQAZtWgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "java.lang.Object[] java.util.ArrayList.grow()"}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "j6ymeOp9wGkYFilkoBNaXgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.nextDoc()"}, "line": {"number": 252}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xUoecROrzaoP-M_aH62GoQAAAAAAAABi"}} -{"Stackframe": {"file": {"name": "IndexTemplateRegistry.java"}, "function": {"name": "void org.elasticsearch.xpack.core.template.IndexTemplateRegistry.clusterChanged(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 26}, "line": {"number": 136}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wtUBrbVI_J5MyPpHxeWtLwAAAAAAAALT"}} -{"Stackframe": {"file": {"name": "HttpURLConnection.java"}, "function": {"name": "void sun.net.www.protocol.http.HttpURLConnection.writeRequests()", "offset": 130}, "line": {"number": 712}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UnH-1DVZR_3BxV6FYbbLRQAAAAAAAABf"}} -{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "void org.elasticsearch.search.query.QueryPhase.execute(org.elasticsearch.search.internal.SearchContext)", "offset": 16}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0hCUsEaLoSjrd09MdYd2ggAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.take()"}, "line": {"number": 1366}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h4Lh6GnasWPDlVelT8lJQgAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "IngestService.java"}, "function": {"name": "void org.elasticsearch.ingest.IngestService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)", "offset": 17}, "line": {"number": 1015}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gL0sNJyG3L826RryrsTHqQAAAAAAAABl"}} -{"Stackframe": {"file": {"name": "PointValues.java"}, "function": {"name": "void org.apache.lucene.index.PointValues.intersect(org.apache.lucene.index.PointValues$IntersectVisitor, org.apache.lucene.index.PointValues$PointTree)", "offset": 22}, "line": {"number": 364}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "P5gRtja4XWNHiYEqyG1bRQAAAAAAAABC"}} -{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "java.util.Map org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.buildFieldsGroupMapping(java.lang.Iterable)", "offset": 9}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OM9gozgq3V-c4gPwstZkSQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "java.lang.Object java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()"}, "line": {"number": 899}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FD5TB8FwgEkaTgViNnnC1gAAAAAAAABc"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeBulkItems(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationContext, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, java.lang.String, org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 708}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ytmnDvqR2kv8bcodWBOqIQAAAAAAAABn"}} -{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "void io.netty.channel.AbstractChannel$AbstractUnsafe.flush0()", "offset": 28}, "line": {"number": 930}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iQ3-U2pFJokP-jlw4Yr9FQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.put(java.lang.Object, java.lang.Object)"}, "line": {"number": 612}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8OiJZHURIK_gi5RsAiMk3QAAAAAAAADG"}} -{"Stackframe": {"file": {"name": "Lucene84PostingsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.Lucene84PostingsWriter.startDoc(int, int)", "offset": 21}, "line": {"number": 243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gyQVNj6p9QSSg0Kib22CpQAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeMap(java.util.Map, org.elasticsearch.common.io.stream.Writeable$Writer, org.elasticsearch.common.io.stream.Writeable$Writer)", "offset": 3}, "line": {"number": 624}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADIAY1"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/queue/memqueue/produce.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/queue/memqueue.(*openState).tryPublish"}, "line": {"number": 145}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8RnluWCl_polt-8MlyICAwAAAAAAAAFD"}} -{"Stackframe": {"file": {"name": "Coordinator.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.Coordinator.publish(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.action.ActionListener, org.elasticsearch.cluster.coordination.ClusterStatePublisher$AckListener)", "offset": 26}, "line": {"number": 1097}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uV9VJttm0goUzsky7YZbIwAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "LZ4WithPresetDictCompressionMode.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene87.LZ4WithPresetDictCompressionMode$LZ4WithPresetDictCompressor.compress(byte[], int, int, org.apache.lucene.store.DataOutput)", "offset": 10}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACIHnY"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bytes/buffer.go"}, "function": {"name": "bytes.(*Buffer).WriteString"}, "line": {"number": 186}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AyTG-N8jfL9IQkfGrftthQAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "XFSQuotaWatcher.scala"}, "function": {"name": "void no.found.runner.managers.XFSQuotaWatcher.no$found$runner$managers$XFSQuotaWatcher$$checkRemaining()", "offset": 8}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Qd2u0guBgJM1heDZ97a_eQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "int org.apache.lucene.codecs.DocValuesConsumer$5$1.nextDoc()"}, "line": {"number": 848}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSg7"}} -{"Stackframe": {"function": {"name": "do_sys_open"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TaNUUQ8ZfJlbsPC7iaqLvwAAAAAAAABv"}} -{"Stackframe": {"file": {"name": "JvmStats.java"}, "function": {"name": "org.elasticsearch.monitor.jvm.JvmStats org.elasticsearch.monitor.jvm.JvmStats.jvmStats()", "offset": 7}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F3u75PFaKMThRw4BoUVwCAAAAAAAAAB3"}} -{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriterPerThread.sealFlushedSegment(org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 14}, "line": {"number": 542}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFF86"}} -{"Stackframe": {"function": {"name": "on_each_cpu_cond_mask"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JqokGYujMWAw4siq0i868wAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "ConcurrentMergeScheduler.java"}, "function": {"name": "void org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread.run()", "offset": 4}, "line": {"number": 684}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cqdSAx5Uej3ncVA_SUVjsQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "PhantomCleanable.java"}, "function": {"name": "void jdk.internal.ref.PhantomCleanable.clean()", "offset": 1}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kkIKkAJGCZQ785pWcNIz5wAAAAAAAABx"}} -{"Stackframe": {"file": {"name": "DocIdSetBuilder.java"}, "function": {"name": "void org.apache.lucene.util.DocIdSetBuilder.upgradeToBitSet()", "offset": 10}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oOz1jSRZNClfuKPM_yWNFgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Policy.java"}, "function": {"name": "boolean java.security.Policy$PolicyDelegate.implies(java.security.ProtectionDomain, java.security.Permission)"}, "line": {"number": 817}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eCOhqsAwaXtoMEk8IgCdpQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "PointValues.java"}, "function": {"name": "void org.apache.lucene.index.PointValues.intersect(org.apache.lucene.index.PointValues$IntersectVisitor)", "offset": 1}, "line": {"number": 337}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OTgPgorI9jVQamrwiI2hgwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Netty4HttpPipeliningHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpPipeliningHandler.flush(io.netty.channel.ChannelHandlerContext)"}, "line": {"number": 259}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Lk-RuZWBbgkFTkFM8r-0pgAAAAAAAAB1"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$PageWriterOutputStream.flushPage(boolean)", "offset": 8}, "line": {"number": 1345}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Arz1MMWCC2fkAl6FCL43rAAAAAAAAADn"}} -{"Stackframe": {"file": {"name": "PushPostingsWriterBase.java"}, "function": {"name": "org.apache.lucene.codecs.BlockTermState org.apache.lucene.codecs.PushPostingsWriterBase.writeTerm(org.apache.lucene.util.BytesRef, org.apache.lucene.index.TermsEnum, org.apache.lucene.util.FixedBitSet, org.apache.lucene.codecs.NormsProducer)", "offset": 40}, "line": {"number": 161}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h_tr59QMOW6dTHM5L4xLDAAAAAAAAAGT"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.DefaultIndexingChain.indexDocValue(int, org.apache.lucene.index.DefaultIndexingChain$PerField, org.apache.lucene.index.DocValuesType, org.apache.lucene.index.IndexableField)", "offset": 50}, "line": {"number": 721}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M3bEBD1-ihID_7pB2t9jmQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 21}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9JMKs9KQTgczUAMQRnFzHQAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "DisjunctionDISIApproximation.java"}, "function": {"name": "int org.apache.lucene.search.DisjunctionDISIApproximation.advance(int)", "offset": 4}, "line": {"number": 69}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kVdvlQNmdDn0as3tg3u2tgAAAAAAAACM"}} -{"Stackframe": {"file": {"name": "Long.java"}, "function": {"name": "int java.lang.Long.getChars(long, int, byte[])", "offset": 24}, "line": {"number": 565}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgazl"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map_faststr.go"}, "function": {"name": "runtime.evacuate_faststr"}, "line": {"number": 425}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALQw-"}} -{"Stackframe": {"function": {"name": "do_dentry_open"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hQ2OXkHYZRXh3_WLXzxSBAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "NodeClient.java"}, "function": {"name": "void org.elasticsearch.client.internal.node.NodeClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8FITX_M8xZfe7i7TCZCgqgAAAAAAAABt"}} -{"Stackframe": {"file": {"name": "TcpTransport.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransport$NodeChannels.sendRequest(long, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions)", "offset": 11}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACq3A1"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/crypto/tls/conn.go"}, "function": {"name": "crypto/tls.(*Conn).readRecordOrCCS"}, "line": {"number": 191}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DC6Xdv_9C0YItr8EUl82zgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "LongPipeline.java"}, "function": {"name": "long java.util.stream.LongPipeline.reduce(long, java.util.function.LongBinaryOperator)"}, "line": {"number": 498}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "Streams.java"}, "function": {"name": "void java.util.stream.Streams$ConcatSpliterator.forEachRemaining(java.util.function.Consumer)", "offset": 1}, "line": {"number": 734}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DVSkUfLwOzQuwgYi6TvurAAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "AbstractCollection.java"}, "function": {"name": "boolean java.util.AbstractCollection.addAll(java.util.Collection)", "offset": 1}, "line": {"number": 335}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$3.onResponse(java.lang.Object)"}, "line": {"number": 309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nHKyvd8kdc_8d3u5YjO8iQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "MappingMultiPostingsEnum.java"}, "function": {"name": "int org.apache.lucene.index.MappingMultiPostingsEnum.nextDoc()"}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dPS-0h9z6Lm7-bg6yOerhwAAAAAAAAKF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 32}, "line": {"number": 302}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANtKC"}} -{"Stackframe": {"function": {"name": "next_tgid"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC8sfI"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-structform@v0.0.9/gotype/fold_reflect.go"}, "function": {"name": "github.com/elastic/go-structform/gotype.makeFieldInlineFold.func1"}, "line": {"number": 316}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFsI7"}} -{"Stackframe": {"function": {"name": "audit_log_start"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lBsFTWSf77aYVb9HHr9tcQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "long org.apache.lucene.store.FilterDirectory.fileLength(java.lang.String)"}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oAocDZn4BzWp64gjlgLSXwAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$7060+0x00000008024ae210.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5BKmgSNhj7fKpHFnrghtOAAAAAAAAACp"}} -{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.tasks.TaskManager.register(java.lang.String, java.lang.String, org.elasticsearch.tasks.TaskAwareRequest)", "offset": 14}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QE1C6oZLYffge09QUEmCwQAAAAAAAABJ"}} -{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 17}, "line": {"number": 75}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vcmbteT9Zn8Dn3HK9hT_jwAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "PlatformMBeanProvider.java"}, "function": {"name": "java.util.List sun.management.spi.PlatformMBeanProvider$PlatformComponent.getMBeans(java.lang.Class)", "offset": 6}, "line": {"number": 198}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Pwt7pP-aI82aWD0sQr02awAAAAAAAADg"}} -{"Stackframe": {"file": {"name": "Lucene90PostingsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90PostingsWriter.startDoc(int, int)", "offset": 43}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACwzlb"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/prometheus/procfs@v0.6.0/proc_status.go"}, "function": {"name": "github.com/prometheus/procfs.(*ProcStatus).fillStatus"}, "line": {"number": 125}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZuiJGdMTgqCiSwiPmMfXSQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "boolean java.util.regex.Pattern.matches(java.lang.String, java.lang.CharSequence)"}, "line": {"number": 1173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACjaYJ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/reflect/type.go"}, "function": {"name": "reflect.(*rtype).Kind"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0"}} -{"Stackframe": {"function": {"name": "__lock_text_start"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6XSmObFSSfKQphH28GHZfAAAAAAAAALR"}} -{"Stackframe": {"file": {"name": "MainClientExec.java"}, "function": {"name": "org.apache.http.client.methods.CloseableHttpResponse org.apache.http.impl.execchain.MainClientExec.execute(org.apache.http.conn.routing.HttpRoute, org.apache.http.client.methods.HttpRequestWrapper, org.apache.http.client.protocol.HttpClientContext, org.apache.http.client.methods.HttpExecutionAware)", "offset": 117}, "line": {"number": 272}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XjyaLTQPNDwnxeTIUaoLqAAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "void org.elasticsearch.index.engine.InternalEngine.updateDocs(org.apache.lucene.index.Term, java.util.List, org.apache.lucene.index.IndexWriter)", "offset": 4}, "line": {"number": 1294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2nfk7kd46D_56_vyY72dCQAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": "ClassLoaderContextSelector.java"}, "function": {"name": "org.apache.logging.log4j.core.LoggerContext org.apache.logging.log4j.core.selector.ClassLoaderContextSelector.getContext(java.lang.String, java.lang.ClassLoader, boolean, java.net.URI)", "offset": 7}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1dtimHb35RfEFCzsXx56LgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "FilterClient.java"}, "function": {"name": "void org.elasticsearch.client.internal.FilterClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OZxONNyjsCoLhus8PcYThQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "int org.apache.lucene.codecs.DocValuesConsumer$1$1.nextDoc()"}, "line": {"number": 220}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9E"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/asm_amd64.s"}, "function": {"name": "runtime.spillArgs"}, "line": {"number": 559}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXYzo"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/tracer.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.(*Tracer).reportNewMapping"}, "line": {"number": 624}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "v7KU4D139nBA6AxX3ds_IgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Predicate.java"}, "function": {"name": "boolean java.util.function.Predicate.lambda$or$2(java.util.function.Predicate, java.lang.Object)"}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-sDhPyIFWNtRFFnCz1wkdwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings$Builder org.elasticsearch.common.settings.Settings$Builder.putList(java.lang.String, java.util.List)"}, "line": {"number": 1111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5NaOR21tqmKb_2JdapT_egAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "PathParser.java"}, "function": {"name": "boolean com.typesafe.config.impl.PathParser.looksUnsafeForFastParser(java.lang.String)", "offset": 11}, "line": {"number": 236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHZyK"}} -{"Stackframe": {"function": {"name": "__do_sys_bpf"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-T9Lg86rw6wfZF6TMtAfcgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.StandardDirectoryReader$$Lambda$6986+0x000000080249ba40.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAAhhP"}} -{"Stackframe": {"file": {"name": "runtime/mgcmark.go"}, "function": {"name": "runtime.scanobject"}, "line": {"number": 1338}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAACbfU"}} -{"Stackframe": {"function": {"name": "xfs_trans_read_buf_map"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1aZ3_qa-GDGgUGJlxlWbzQAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5096.getAsync(org.elasticsearch.action.ActionListener)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ujf1FZuRy6fh56KQd1nyjQAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "java.lang.Iterable org.elasticsearch.xcontent.XContentBuilder.convert(java.lang.Object)", "offset": 4}, "line": {"number": 1267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE-1-"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.findrunnable"}, "line": {"number": 2197}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7tmpfOwowdJc5WfioZ8HRAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.monitor.jvm.JvmInfo$$Lambda$7664+0x00000008025fa4d8.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAC1hwk"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/queue/diskqueue/writer_loop.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/queue/diskqueue.(*writerLoop).run"}, "line": {"number": 108}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABW87Q"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/libpf/nativeunwind/localstackdeltaprovider/localstackdeltaprovider.go"}, "function": {"name": "github.com/optimyze/prodfiler/libpf/nativeunwind/localstackdeltaprovider.(*LocalStackDeltaProvider).GetIntervalStructuresForFile"}, "line": {"number": 47}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7Y3rOwqJS8StJ3gV4HpibgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Iterable, java.lang.Object, java.util.Set)", "offset": 1}, "line": {"number": 1053}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QpPozMwT9u3zC7nVdlyVMQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiNHk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/asm_linux_amd64.s"}, "function": {"name": "syscall.RawSyscall6"}, "line": {"number": 102}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mjjylTu53OzZzuGoh0VxGgAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "PriorityQueue.java"}, "function": {"name": "boolean org.apache.lucene.util.PriorityQueue.upHeap(int)", "offset": 3}, "line": {"number": 277}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R-jXMS6WanN9UyjIfsACEAAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$TreeNode java.util.HashMap$TreeNode.getTreeNode(int, java.lang.Object)"}, "line": {"number": 2027}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s50IQznqihitU-B8OhKHcgAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 1}, "line": {"number": 300}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jckGVFRAvWURR3kz1QpfwQAAAAAAAAE1"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.index(org.elasticsearch.index.engine.Engine, org.elasticsearch.index.engine.Engine$Index)", "offset": 53}, "line": {"number": 1090}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AJ8qrcXSoJbl_haPhlc4ogAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.addNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)"}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAD9Sac"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/mb/module/wrapper.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/mb/module.(*metricSetWrapper).fetch"}, "line": {"number": 262}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACilHe"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/sort/sort.go"}, "function": {"name": "sort.insertionSort"}, "line": {"number": 41}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TsD0RrBnIgAER8sz4r-hTwAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "void org.apache.lucene.index.StandardDirectoryReader.doClose()", "offset": 17}, "line": {"number": 387}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mzExXCPAxvBlsYOcwqbUPAAAAAAAAACE"}} -{"Stackframe": {"file": {"name": "LZ4WithPresetDictCompressionMode.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.LZ4WithPresetDictCompressionMode$LZ4WithPresetDictCompressor.compress(org.apache.lucene.store.ByteBuffersDataInput, org.apache.lucene.store.DataOutput)", "offset": 16}, "line": {"number": 188}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vPUU5i5r5XThwPX6RJsZ7gAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "void org.elasticsearch.index.store.Store$StoreDirectory.deleteFile(java.lang.String)"}, "line": {"number": 719}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "y3V4Wh9j61CfcWNgvt1uPgAAAAAAAABz"}} -{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "java.lang.Object java.util.concurrent.ConcurrentHashMap.computeIfAbsent(java.lang.Object, java.util.function.Function)", "offset": 16}, "line": {"number": 1708}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Inomcw5lLBPZn2abZV5SDQAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "BytesRefHash.java"}, "function": {"name": "int[] org.apache.lucene.util.BytesRefHash.compact()", "offset": 5}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACgt6P"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/conditions/equals.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/conditions.Equals.Check"}, "line": {"number": 97}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EljCaLNs8oyF8fQALGTMLQAAAAAAAABI"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.map(java.util.Map, boolean, boolean)", "offset": 14}, "line": {"number": 1080}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o23whHKZ51G6dL_e5u9zSAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "boolean org.elasticsearch.index.engine.InternalEngine.maybeRefresh(java.lang.String)"}, "line": {"number": 1801}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JBB8Y32Y7T0w9OJCs-3BZwAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "org.elasticsearch.index.store.ByteSizeCachingDirectory$SizeAndModCount org.elasticsearch.index.store.ByteSizeCachingDirectory$1.refresh()", "offset": 7}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L6NB6jwnRxtULB7hcgQnbAAAAAAAAABF"}} -{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "void io.netty.util.concurrent.DefaultPromise.notifyListenersNow()", "offset": 13}, "line": {"number": 552}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EgHBAsdbxjOeM0iCxV59CgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "NettyAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf org.elasticsearch.transport.NettyAllocator$NoDirectBuffers.heapBuffer(int)"}, "line": {"number": 228}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V0LEzKEJCTr2F7QdmvO8vQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "int org.apache.lucene.index.SegmentMerger$$Lambda$8554+0x0000000802752380.merge()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "UnixFileAttributeViews.java"}, "function": {"name": "java.nio.file.attribute.BasicFileAttributes sun.nio.fs.UnixFileAttributeViews$Basic.readAttributes()", "offset": 3}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Qzn1A6CqCIZUpcbEC_VoFgAAAAAAAABT"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.lambda$getAuthenticatorConsumer$5(boolean, org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.security.authc.Authenticator, org.elasticsearch.action.ActionListener)", "offset": 14}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3YIfAGaCMYqtVFhpvZ-uyAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.ClusterModule$$Lambda$2290+0x0000000801336000.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABCwk"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.exitsyscallfast_pidle"}, "line": {"number": 3913}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mGc5SCx8bcB0yyOsBwmj6QAAAAAAAABw"}} -{"Stackframe": {"file": {"name": "OutputRecord.java"}, "function": {"name": "long sun.security.ssl.OutputRecord.t13Encrypt(sun.security.ssl.SSLCipher$SSLWriteCipher, byte, java.nio.ByteBuffer, int, int, int, sun.security.ssl.ProtocolVersion)", "offset": 21}, "line": {"number": 418}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JvScc-kAblhDe3HgLZgGAwAAAAAAAAEt"}} -{"Stackframe": {"file": {"name": "CommonStats.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.CommonStats.(org.elasticsearch.indices.IndicesQueryCache, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 45}, "line": {"number": 210}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XwAhZSmmzOw18_-H38te0AAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "BitSetIterator.java"}, "function": {"name": "int org.apache.lucene.util.BitSetIterator.nextDoc()"}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACF"}} -{"Stackframe": {"file": {"name": "BKDReader.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDReader.addAll(org.apache.lucene.util.bkd.BKDReader$IntersectState, boolean)", "offset": 21}, "line": {"number": 395}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m4x84wu6bFWB-TE0PfqTWAAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler$$Lambda$4232+0x000000080187bcc0.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCHp"}} -{"Stackframe": {"function": {"name": "seq_path_root"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N-5WHXYOZdweEq4mLHyhqQAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.search.suggest.completion.CompletionStats org.elasticsearch.index.shard.IndexShard.completionStats(java.lang.String[])", "offset": 1}, "line": {"number": 1394}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAEXn7"}} -{"Stackframe": {"file": {"name": "golang.org/x/sys@v0.0.0-20220817070843-5a390386f1f2/unix/zsyscall_linux_amd64.go"}, "function": {"name": "golang.org/x/sys/unix.Fstatat"}, "line": {"number": 102}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LvEG81LTfCZ5bdc9cz3LlQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "java.nio.file.Path sun.nio.fs.UnixPath.getParent()"}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CWRGF1z6Wu9NWAthusKWFAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "NettyAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf org.elasticsearch.transport.netty4.NettyAllocator$NoDirectBuffers.heapBuffer(int, int)"}, "line": {"number": 289}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DbSG9xbs7jnAEiHiVrKb1AAAAAAAAACG"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.tryAllHandlers(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 28}, "line": {"number": 393}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_cm2-vGeYtB-v60e7C7a-wAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "MappingMetadata.java"}, "function": {"name": "java.util.Map org.elasticsearch.cluster.metadata.MappingMetadata.sourceAsMap()"}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vseJX0sppKrh3ZPWhmhGrwAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "URI.java"}, "function": {"name": "void java.net.URI.(java.lang.String)", "offset": 101}, "line": {"number": 623}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sRqFVRgtIpahqWj1VJMq5wAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "DelegatingChannelPromiseNotifier.java"}, "function": {"name": "void io.netty.channel.DelegatingChannelPromiseNotifier.operationComplete(io.netty.channel.ChannelFuture)", "offset": 3}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALAuj"}} -{"Stackframe": {"function": {"name": "mem_cgroup_try_charge"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "__zQN1KtajJ77R0aE48e2wAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "void java.util.AbstractMap.putAll(java.util.Map)"}, "line": {"number": 280}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLroT"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/encode.go"}, "function": {"name": "encoding/json.Marshal"}, "line": {"number": 161}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QNJBtmDNiP_chGYXJszyagAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.lambda$callClusterStateAppliers$5(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.common.StopWatch, org.elasticsearch.cluster.ClusterStateApplier)", "offset": 2}, "line": {"number": 517}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgSzo"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/lock_futex.go"}, "function": {"name": "runtime.notetsleep_internal"}, "line": {"number": 172}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9RiRfbyw6Ke6ra9C7bpO7AAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "org.elasticsearch.transport.TransportRequest org.elasticsearch.transport.RequestHandlerRegistry.newRequest(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_"}} -{"Stackframe": {"function": {"name": "do_futex"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ERsgf_Jy274svBwySMHeoQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "StringUtils.java"}, "function": {"name": "void com.amazonaws.util.StringUtils.appendCompactedString(java.lang.StringBuilder, java.lang.String)"}, "line": {"number": 301}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "void java.nio.file.Files.delete(java.nio.file.Path)"}, "line": {"number": 1152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACjaYE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/reflect/type.go"}, "function": {"name": "reflect.(*rtype).Kind"}, "line": {"number": 823}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Jzl0rnZ8WwwkD280lWXtQwAAAAAAAABh"}} -{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "void org.apache.lucene.index.SegmentReader.(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.store.IOContext)", "offset": 9}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QZucZeLQwMr7zKD51abCrwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6210+0x0000000801cb1800.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sKBTuplNrUDMhHIypHlY2gAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "int sun.nio.ch.FileChannelImpl.unmap0(long, long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6uM2A8w04xXsJuYJrLs3twAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.callDecode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)", "offset": 18}, "line": {"number": 458}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X6JlWwBbDvZZ7rFp8ffgSAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.tasks.TaskManager.register(java.lang.String, java.lang.String, org.elasticsearch.tasks.TaskAwareRequest)"}, "line": {"number": 123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tQBYLE5Qq3rn4uocqQBMfwAAAAAAAAB0"}} -{"Stackframe": {"file": {"name": "TransportNodesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation(org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction$NodeStatsRequest)", "offset": 2}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "void org.apache.lucene.index.SegmentMerger.mergeDocValues(org.apache.lucene.index.SegmentWriteState)", "offset": 1}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "296jA3bf79VTim-sy-Bl1AAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.node.Node$$Lambda$4115.publish(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.action.ActionListener, org.elasticsearch.cluster.coordination.ClusterStatePublisher$AckListener)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Dm9DG4ZqDn_4bGJnyMFN4AAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "FileChannel.java"}, "function": {"name": "java.nio.channels.FileChannel java.nio.channels.FileChannel.open(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])", "offset": 1}, "line": {"number": 298}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MKYZBkjibLy9f0ZOhg2iJQAAAAAAAADK"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.computeIfAbsent(java.lang.Object, java.util.function.Function)", "offset": 31}, "line": {"number": 1225}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yse1ZG7dtWZV3NYY2Q_B9AAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.executeRequest(org.elasticsearch.tasks.Task, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.search.TransportSearchAction$SearchAsyncActionProvider, org.elasticsearch.action.ActionListener)", "offset": 58}, "line": {"number": 329}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TphZkORhkBDEbRDMofKltAAAAAAAAACh"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher$FileObserver.checkAndNotify()", "offset": 30}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NZ-mE8VVtYwQj1lueb0ovwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Settings.get(java.lang.String)"}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jkTRqJ7aGYz188pKO6f2ugAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "SecurityContext.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.SecurityContext.putIndicesAccessControl(org.elasticsearch.xpack.core.security.authz.accesscontrol.IndicesAccessControl)", "offset": 4}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sNNdso5wt7XlylLOnED7sgAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "TransportBroadcastByNodeAction.java"}, "function": {"name": "void org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.onShardOperation(org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$NodeRequest, java.lang.Object[], int, org.elasticsearch.cluster.routing.ShardRouting)", "offset": 3}, "line": {"number": 427}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALlAg"}} -{"Stackframe": {"function": {"name": "vfs_unlink"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "G4cQid4Xo1Tc_dU6YBAwnQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.translog.TranslogStats org.elasticsearch.index.shard.IndexShard.translogStats()"}, "line": {"number": 1389}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdab"}} -{"Stackframe": {"function": {"name": "common_perm_cond"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lgHJDGGzcRkIr7tcnvgrpwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.watcher.Watcher$$Lambda$3814+0x0000000801695778.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cBRhMOn8c3t6EhpuS9K0vgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "long org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$6.longValue()"}, "line": {"number": 551}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD5P"}} -{"Stackframe": {"function": {"name": "exit_to_usermode_loop"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8Rg9C7sld8ZdU0EvjvCPkgAAAAAAAAHn"}} -{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.doInternalExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.bulk.BulkRequest, java.lang.String, org.elasticsearch.action.ActionListener)", "offset": 74}, "line": {"number": 279}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_AtN"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/audit.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2.(*AuditClient).Receive"}, "line": {"number": 417}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTih"}} -{"Stackframe": {"function": {"name": "new_sync_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "G2Gr0Endt8yd9TWwB25Y2AAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.map(java.util.Map)"}, "line": {"number": 870}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RansKhQujRxHOcRvt3EF6QAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "boolean java.util.ArrayList.equals(java.lang.Object)", "offset": 13}, "line": {"number": 529}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFObN"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/slice.go"}, "function": {"name": "runtime.makeslice"}, "line": {"number": 98}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yCsgTIwDC_hDJDfLFUPapAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "ActionRunnable.java"}, "function": {"name": "void org.elasticsearch.action.ActionRunnable$2.doRun()"}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JZ0Ddd6ZLVSO10SfiBFsqAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.Map$Entry java.util.HashMap$EntryIterator.next()"}, "line": {"number": 1638}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Jvo45Zz0twIPRpAdbsbH6gAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$5111.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WJJpq9A_dKE21YRpkoScFQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Channels.java"}, "function": {"name": "void java.nio.channels.Channels$1.close()"}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACw1x4"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bufio/scan.go"}, "function": {"name": "github.com/prometheus/procfs.FS.Stat"}, "line": {"number": 114}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZfqgPVQL3CZfrdBqCPTBoAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "MD5.java"}, "function": {"name": "void sun.security.provider.MD5.implCompress(byte[], int)"}, "line": {"number": 150}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bn4I8fRVcZKaFCSiMCvwGAAAAAAAAABv"}} -{"Stackframe": {"file": {"name": "HttpsClient.java"}, "function": {"name": "sun.net.www.http.HttpClient sun.net.www.protocol.https.HttpsClient.New(javax.net.ssl.SSLSocketFactory, java.net.URL, javax.net.ssl.HostnameVerifier, java.net.Proxy, boolean, int, sun.net.www.protocol.http.HttpURLConnection)", "offset": 15}, "line": {"number": 333}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AJ20S4nqf6FfjqdXzTnTNQAAAAAAAAD6"}} -{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "java.lang.Runnable org.apache.lucene.util.bkd.BKDWriter.merge(org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, org.apache.lucene.store.IndexOutput, java.util.List, java.util.List)", "offset": 27}, "line": {"number": 658}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UNi2PfJJ-vKG8q63OaknIAAAAAAAAAHc"}} -{"Stackframe": {"file": {"name": "Coordinator.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.Coordinator.handlePublishRequest(org.elasticsearch.cluster.coordination.PublishRequest)", "offset": 38}, "line": {"number": 330}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture$$Lambda$4327.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KyCwwRCAH9ygWwiIDxYOfgAAAAAAAADn"}} -{"Stackframe": {"file": {"name": "BulkShardRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.BulkShardRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 29}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "agRSV97vL0634eqbTCb3zgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "Authentication.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authc.Authentication$AuthenticationSerializationHelper.writeUserTo(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.common.io.stream.StreamOutput)", "offset": 1}, "line": {"number": 987}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9BsFwV8tobvksYfuNpORcQAAAAAAAABr"}} -{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 30}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QE1C6oZLYffge09QUEmCwQAAAAAAAAC7"}} -{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 37}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o-jqtuMSQjS4_DLqr5n5BwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Rewriteable.java"}, "function": {"name": "org.elasticsearch.index.query.Rewriteable org.elasticsearch.index.query.Rewriteable.rewrite(org.elasticsearch.index.query.Rewriteable, org.elasticsearch.index.query.QueryRewriteContext, boolean)", "offset": 2}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXbVn"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/tracer.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.(*Tracer).monitorPIDEventsMap"}, "line": {"number": 1046}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5mPZ7hP04mAof7_xhihCAwAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "TransportIndicesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.ShardStats org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.lambda$shardOperation$0(org.elasticsearch.tasks.Task, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.action.admin.indices.stats.IndicesStatsRequest)", "offset": 8}, "line": {"number": 123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACIa6k"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/binary/binary.go"}, "function": {"name": "encoding/binary.(*decoder).value"}, "line": {"number": 557}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIaN"}} -{"Stackframe": {"function": {"name": "ip_local_deliver"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qEeeXRmfDyuVGRvTU8S2wQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "ApacheUtils.java"}, "function": {"name": "void com.amazonaws.http.apache.utils.ApacheUtils.disableNormalizeUri(org.apache.http.client.config.RequestConfig$Builder)", "offset": 2}, "line": {"number": 191}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a3AmMsWYsv2DEhblA99iSQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.write(byte[], int, int)"}, "line": {"number": 528}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d0-tKbxN8EF2g5P7Jt87OAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 1300}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oyOPCAIGwaEIvRtPGG_P1AAAAAAAAABO"}} -{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.getRoles(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 249}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABU5SJ"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/libpf/simplelru/lru.go"}, "function": {"name": "github.com/optimyze/prodfiler/libpf/simplelru.(*LRU).Get"}, "line": {"number": 60}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2qo1eklRbvZeGY39-E27ywAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 42}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "T4TCkO3eKtFhkAq0CD0MTQAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "AuthenticationContextSerializer.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authc.Authentication org.elasticsearch.xpack.core.security.authc.support.AuthenticationContextSerializer.deserializeHeaderAndPutInContext(java.lang.String, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 2}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HHFOpjnZ4WKPvAvOzntVegAAAAAAAADD"}} -{"Stackframe": {"file": {"name": "BigInteger.java"}, "function": {"name": "java.math.BigInteger java.math.BigInteger.modPow(java.math.BigInteger, java.math.BigInteger)", "offset": 24}, "line": {"number": 2741}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gh5ZUK32QaLM1EoyY_BRswAAAAAAAADO"}} -{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsReader.(org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat, org.apache.lucene.index.SegmentReadState)", "offset": 40}, "line": {"number": 303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_mPV7Hp65KUOwvav9b8I9gAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ObjectPoolFactory.java"}, "function": {"name": "java.lang.Object co.elastic.apm.agent.objectpool.ObjectPoolFactory$1.createInstance()"}, "line": {"number": 38}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pgYgXi9p5Lr0nll2Tb2V0AAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Lucene90PostingsReader.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene90.Lucene90PostingsReader$BlockDocsEnum.advance(int)"}, "line": {"number": 498}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABV3Ak"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/processmanager/manager.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/processmanager.(*ProcessManager).ProcNewMapping"}, "line": {"number": 929}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CrZ1GQcrb97wGV5HmcUlJQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.cluster.node.info.NodeInfo$$Lambda$7480+0x000000080254d6d8.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_XyJLIwcdZbRz28GFFgD_gAAAAAAAABl"}} -{"Stackframe": {"file": {"name": "Netty4Utils.java"}, "function": {"name": "io.netty.buffer.ByteBuf org.elasticsearch.transport.netty4.Netty4Utils.toByteBuf(org.elasticsearch.common.bytes.BytesReference)", "offset": 16}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7CGJ9wKZV859MY5Og2curgAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "AbstractInternalTerms.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.search.aggregations.bucket.terms.AbstractInternalTerms.doXContentCommon(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params, java.lang.Long, long, java.util.List)", "offset": 4}, "line": {"number": 376}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hHI8fycCSE9gTrpxwlqNFAAAAAAAAABO"}} -{"Stackframe": {"file": {"name": "DocIDMerger.java"}, "function": {"name": "org.apache.lucene.index.DocIDMerger$Sub org.apache.lucene.index.DocIDMerger$SequentialDocIDMerger.next()", "offset": 11}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiGQF"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/netlink_linux.go"}, "function": {"name": "syscall.ParseNetlinkMessage"}, "line": {"number": 123}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLl8X"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).object"}, "line": {"number": 783}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZC4caaBbQcOc2WclRiklUwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "SSLEngine.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult javax.net.ssl.SSLEngine.unwrap(java.nio.ByteBuffer, java.nio.ByteBuffer)"}, "line": {"number": 679}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QYG1AtlxDZ9awyVXs1RveQAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 1}, "line": {"number": 23}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vK5xx5aYAx3dkNQ-31myKAAAAAAAAAB6"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "void java.util.HashMap.putMapEntries(java.util.Map, boolean)", "offset": 16}, "line": {"number": 519}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PzWHHZtoztKt5-_1UqSECAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "DanglingIndicesState.java"}, "function": {"name": "void org.elasticsearch.gateway.DanglingIndicesState.findNewAndAddDanglingIndices(org.elasticsearch.cluster.metadata.Metadata)"}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7-NWIMSLKY69QheXospWHQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "HttpsURLConnectionImpl.java"}, "function": {"name": "java.io.OutputStream sun.net.www.protocol.https.HttpsURLConnectionImpl.getOutputStream()"}, "line": {"number": 246}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kG8xQd-CQn-vHurDIfEJ-AAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "long org.elasticsearch.index.translog.Translog.earliestLastModifiedAge()", "offset": 2}, "line": {"number": 440}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkHkk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*readRune).ReadRune"}, "line": {"number": 349}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "48NTOm9REY9geqrnhLmtIQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "FilterIndexOutput.java"}, "function": {"name": "void org.elasticsearch.common.lucene.store.FilterIndexOutput.writeBytes(byte[], int, int)"}, "line": {"number": 48}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXeBc"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracehandler/tracehandler.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracehandler.(*traceHandler).HandleNewTraces"}, "line": {"number": 205}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAD8TkE"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_docker_metadata/add_docker_metadata.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_docker_metadata.(*addDockerMetadata).lookupContainerIDByPID"}, "line": {"number": 248}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8SiFRztz7qWKhaJN37TZ-wAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "boolean org.elasticsearch.cluster.SnapshotsInProgress.equals(java.lang.Object)", "offset": 2}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TcgdPjhC9iCW275BLQdVSwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask.run()"}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOBI"}} -{"Stackframe": {"function": {"name": "process_backlog"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$$Lambda$4635+0x00000008018fe5f8.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "woXLgCudpu5Igw4bPyCZzAAAAAAAAABz"}} -{"Stackframe": {"file": {"name": "ChannelOutboundBuffer.java"}, "function": {"name": "void io.netty.channel.ChannelOutboundBuffer.removeBytes(long)", "offset": 23}, "line": {"number": 360}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ud19zrXkNLiaFIKsYgavQQAAAAAAAABB"}} -{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.SingleThreadEventExecutor.execute(java.lang.Runnable, boolean)", "offset": 22}, "line": {"number": 857}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L74ZUdfItkQj1FNjlE0GyQAAAAAAAAPx"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 1009}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uj5fRTSdGJxlX0gfzctOogAAAAAAAAA_"}} -{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.lambda$handleRequest$2(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.internal.node.NodeClient, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 5}, "line": {"number": 107}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_bWrQJSE9QDRqMSbes6HHAAAAAAAAACK"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermission.impliesIgnoreMask(java.io.FilePermission)", "offset": 23}, "line": {"number": 611}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAF0IN"}} -{"Stackframe": {"function": {"name": "__audit_inode"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZGiclrIrsuL0m6y7E3kViwAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "ActionFilter.java"}, "function": {"name": "void org.elasticsearch.action.support.ActionFilter$Simple.apply(org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.support.ActionFilterChain)", "offset": 1}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFlNG"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgc.go"}, "function": {"name": "runtime.gcBgMarkWorker.func2"}, "line": {"number": 1959}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rDcHLjUrpvKg-XXDfFGKmAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6508+0x00000008023c3450.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6IAXoYeI62bQppY-qjqJ0AAAAAAAAAD6"}} -{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.executeOneRequest(com.amazonaws.http.AmazonHttpClient$RequestExecutor$ExecOneRequestParams)", "offset": 39}, "line": {"number": 1304}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h8_jrEiHamjn83oJaSJe9wAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.incRef(java.lang.String)", "offset": 1}, "line": {"number": 573}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sXZpSIBEOU_muIAf05ydPAAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$1.doRun()"}, "line": {"number": 341}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "G-xCglt1CSRw88p7F7VV9AAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkDelete(java.lang.String)"}, "line": {"number": 866}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 7}, "line": {"number": 280}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jA6JkQ0PFn46mJYMDk3jtwAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readGenericMap(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier, org.elasticsearch.common.CheckedFunction)", "offset": 6}, "line": {"number": 335}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VkHxfHJyyDbxUBSn_ME46wAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "sun.nio.fs.UnixChannelFactory$Flags sun.nio.fs.UnixChannelFactory$Flags.toFlags(java.util.Set)", "offset": 1}, "line": {"number": 71}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wfX4W43RcsvFornvkG6aiwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "boolean com.carrotsearch.hppc.ObjectObjectHashMap.equals(java.lang.Object, java.lang.Object)"}, "line": {"number": 1192}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "t2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAHI"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "boolean org.elasticsearch.action.bulk.TransportShardBulkAction.executeBulkItemRequest(org.elasticsearch.action.bulk.BulkPrimaryExecutionContext, org.elasticsearch.action.update.UpdateHelper, java.util.function.LongSupplier, org.elasticsearch.action.bulk.MappingUpdatePerformer, java.util.function.Consumer, org.elasticsearch.action.ActionListener)", "offset": 59}, "line": {"number": 320}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LShh-9O-ab8ob4gfeH5zhQAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "CompressingStoredFieldsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.StoredFieldsWriter org.apache.lucene.codecs.compressing.CompressingStoredFieldsFormat.fieldsWriter(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)"}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C8QdgwgSkcJQ2t5gTDXpxQAAAAAAAABG"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 15}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fGeO8E0dKkjTaq21mlOYCAAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "boolean org.elasticsearch.index.shard.IndexShard.scheduledRefresh()", "offset": 2}, "line": {"number": 3460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGz"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.applyChanges(org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState, org.elasticsearch.common.StopWatch)", "offset": 39}, "line": {"number": 473}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IiB8cBaeqjsuHSJhy6znXQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "org.apache.lucene.search.ScorerSupplier org.apache.lucene.search.Weight.scorerSupplier(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ac_21V0WNPy6Tqh3C5QMqQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeOptionalWriteable(org.elasticsearch.common.io.stream.Writeable)", "offset": 2}, "line": {"number": 978}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MZMTsWUUQKF_r8ij_JAjmAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$2$$Lambda$5393.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFAG9"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.goschedImpl"}, "line": {"number": 2867}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_eOX"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/auditd/audit_linux.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/auditd.(*MetricSet).Run.func2"}, "line": {"number": 240}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tzBcwDe6SUq4Jkyew2O5egAAAAAAAACS"}} -{"Stackframe": {"file": {"name": "SegmentCoreReaders.java"}, "function": {"name": "void org.apache.lucene.index.SegmentCoreReaders.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.IOContext)", "offset": 53}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgaYE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map_faststr.go"}, "function": {"name": "runtime.mapassign_faststr"}, "line": {"number": 280}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi9wR"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file.go"}, "function": {"name": "os.ReadFile"}, "line": {"number": 705}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Xw9SMMauw-oBWYANca-iwQAAAAAAAACb"}} -{"Stackframe": {"file": {"name": "ObjectParser.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.ObjectParser.parse(org.elasticsearch.common.xcontent.XContentParser, java.lang.Object, java.lang.Object)", "offset": 18}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "skGfd5BDAMA1fbyY3ykq7wAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "SecondaryAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.SecondaryAuthenticator.authenticate(java.util.function.Consumer, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "493G4lGxxLfYXMqOHIciJwAAAAAAAADZ"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "java.util.Set org.elasticsearch.xpack.security.authz.RBACEngine.resolveAuthorizedIndicesFromRole(org.elasticsearch.xpack.core.security.authz.permission.Role, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.util.Map)", "offset": 21}, "line": {"number": 552}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HZ3TvYLRG36_hU-jHCIzTQAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "RestSearchAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.search.RestSearchAction.lambda$prepareRequest$2(org.elasticsearch.client.internal.node.NodeClient, org.elasticsearch.rest.RestRequest, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.rest.RestChannel)", "offset": 1}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LG1iCWXc581Ya7-aKQE_xgAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.util.stream.Node java.util.stream.AbstractPipeline.evaluate(java.util.Spliterator, boolean, java.util.function.IntFunction)", "offset": 7}, "line": {"number": 575}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wZDKdLfvberhsaqVm0V7FgAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "PipelineConfiguration.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.ingest.PipelineConfiguration.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 2}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KYcgZWdWl27hMIBlgVEqhwAAAAAAAACM"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "int sun.nio.ch.FileChannelImpl.write(java.nio.ByteBuffer)", "offset": 14}, "line": {"number": 288}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGmwd"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/internal/poll/fd_unix.go"}, "function": {"name": "internal/poll.(*FD).Read"}, "line": {"number": 155}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k_s_ITRPELxw2Zk2jzGG8wAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "TreeSet.java"}, "function": {"name": "boolean java.util.TreeSet.add(java.lang.Object)"}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kO-Ae5TjUXpcjeeU1KB6WgAAAAAAAACI"}} -{"Stackframe": {"file": {"name": "ByteBuffersDataInput.java"}, "function": {"name": "void org.apache.lucene.store.ByteBuffersDataInput.(java.util.List)", "offset": 19}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "INf3qrj40tfRq5N_0-qbsgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "void sun.nio.ch.FileChannelImpl$Closer.run()"}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun()", "offset": 2}, "line": {"number": 777}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N_Re-7YVdSx-pIyGOId3awAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.InternalEngine$IndexingStrategy org.elasticsearch.index.engine.InternalEngine.indexingStrategyForOperation(org.elasticsearch.index.engine.Engine$Index)", "offset": 4}, "line": {"number": 1094}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QYlZyOUPnWBrleZpFunFJQAAAAAAAABm"}} -{"Stackframe": {"file": {"name": "ForDeltaUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene84.ForDeltaUtil.encodeDeltas(long[], org.apache.lucene.store.DataOutput)", "offset": 10}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E1fYhCC-W9hkMRzkOdu22QAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.advance(int)", "offset": 1}, "line": {"number": 242}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_qijKAoIrj192_UIiHcBhwAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.writeValuesSingleBlock(org.apache.lucene.index.SortedNumericDocValues, long, int, long, long, java.util.Map)", "offset": 5}, "line": {"number": 300}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "p2sMGETgbECWKni3JXQKzgAAAAAAAACa"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.innerParseObject(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper)", "offset": 23}, "line": {"number": 324}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard$$Lambda$6935+0x00000008024760d0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f6OHtxWEEYSKC5jCOpZRYwAAAAAAAAEy"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node[] java.util.HashMap.resize()", "offset": 57}, "line": {"number": 736}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k1o6cGLS1FzksoHJvPKdFQAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "Lucene94FieldInfosFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene94.Lucene94FieldInfosFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.index.FieldInfos, org.apache.lucene.store.IOContext)", "offset": 2}, "line": {"number": 332}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3ir-1yKStl3nukZF4xyXAQAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$4(java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.action.support.ActionFilterChain, org.elasticsearch.tasks.Task, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 3}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-odP"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/cpuacct.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.cpuacctStat"}, "line": {"number": 81}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC-0L"}} -{"Stackframe": {"function": {"name": "find_task_by_vpid"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m5p8puApNHgdtwb3aFhxPAAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "boolean io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)", "offset": 11}, "line": {"number": 472}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9D5umgMyZZQX73v4UAWBowAAAAAAAABd"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.messageReceived(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.InboundMessage, long)", "offset": 13}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5KDO11BWTfkkFO9MFEbTJwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "Long.java"}, "function": {"name": "long java.lang.Long.parseLong(java.lang.String)"}, "line": {"number": 817}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACOiXV"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/prometheus/procfs@v0.0.11/proc.go"}, "function": {"name": "github.com/prometheus/procfs.Proc.CmdLine"}, "line": {"number": 125}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tLN6FRqCApmsduxj5WK9JwAAAAAAAADy"}} -{"Stackframe": {"file": {"name": "SegmentCoreReaders.java"}, "function": {"name": "void org.apache.lucene.index.SegmentCoreReaders.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.IOContext)", "offset": 74}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ERCDx41eaqshzIEf6tpFyQAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "boolean org.apache.lucene.index.StandardDirectoryReader.isCurrent()", "offset": 12}, "line": {"number": 455}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yl3DUlOurecWUHGWEri9qgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "void sun.nio.ch.EPollSelectorImpl.clearInterrupt()", "offset": 1}, "line": {"number": 269}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Executors.java"}, "function": {"name": "java.lang.Object java.util.concurrent.Executors$RunnableAdapter.call()"}, "line": {"number": 577}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ghH-UNAYXMIaEqa4sWPFdwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.lambda$applyToAll$0(org.apache.lucene.util.IOUtils$IOConsumer, java.lang.Object)"}, "line": {"number": 505}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_qkVJm0NxTF9ak3kQe9veQAAAAAAAABa"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.write(java.lang.Object, boolean, io.netty.channel.ChannelPromise)", "offset": 18}, "line": {"number": 790}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "twASLq5QV6PtFM2KeIje5wAAAAAAAAB2"}} -{"Stackframe": {"file": {"name": "DiscoveryNode.java"}, "function": {"name": "void org.elasticsearch.cluster.node.DiscoveryNode.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 9}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wzZaceuyvwDXeTAM8IhEDwAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "RestCancellableNodeClient.java"}, "function": {"name": "void org.elasticsearch.rest.action.RestCancellableNodeClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 2}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sPO63moZmQeRDFosCGHfhQAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.close()", "offset": 12}, "line": {"number": 113}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hyEF2Wj5V1Rxjbi2r2WzAAAAAAAAAAA8"}} -{"Stackframe": {"file": {"name": "StreamEncoder.java"}, "function": {"name": "void sun.nio.cs.StreamEncoder.write(char[], int, int)", "offset": 8}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "g82PsytJks3Vn0_tWyJl5QAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "boolean org.elasticsearch.index.translog.Translog.ensureSynced(java.util.stream.Stream)", "offset": 4}, "line": {"number": 797}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4M7YPHJs-s48WlQKqWc80QAAAAAAAAE7"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeIndexAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 76}, "line": {"number": 356}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V1AAAJZxfA577guD2Mmh4AAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "SegmentDocValues.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesProducer org.apache.lucene.index.SegmentDocValues.getDocValuesProducer(long, org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos)", "offset": 2}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xkve8TpR3957l1VqIfu39gAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "org.elasticsearch.cluster.SnapshotsInProgress$Entry org.elasticsearch.cluster.SnapshotsInProgress$Entry.access$000(org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 684}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADH7dG"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/queue/memqueue/produce.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/queue/memqueue.(*broker).Producer"}, "line": {"number": 58}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vqs9jnSjNyh-nZ4ZqxUaIgAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator._flushBuffer()", "offset": 2}, "line": {"number": 2647}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zyZpAtY8QHu127Ag2ZcL9AAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.lstat(sun.nio.fs.UnixPath, sun.nio.fs.UnixFileAttributes)", "offset": 2}, "line": {"number": 308}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uq21nH8aDkYkyxiV0pgo9QAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "ClientScrollableHitSource.java"}, "function": {"name": "void org.elasticsearch.index.reindex.ClientScrollableHitSource$2.onResponse(org.elasticsearch.action.search.ClearScrollResponse)", "offset": 1}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jcM_4Dl2NGfu-G-e5pBI8wAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "boolean sun.nio.ch.IOUtil.drain(int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hDeNHR-uaDqXexxBeqdlYwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "long org.elasticsearch.index.store.ByteSizeCachingDirectory.access$200(org.apache.lucene.store.Directory)"}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb-c"}} -{"Stackframe": {"function": {"name": "__do_sys_newlstat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMukM"}} -{"Stackframe": {"function": {"name": "ep_poll"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEXUE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mcache.go"}, "function": {"name": "runtime.(*mcache).refill"}, "line": {"number": 142}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hPPBEZxjfFmd_9r0WtdWBQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiFzE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/netlink_linux.go"}, "function": {"name": "syscall.NetlinkRIB"}, "line": {"number": 60}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uPKuf0aWep_nE1tiBQO-1gAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 441}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CY7ztddcPo6ofReMjIW4KAAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "int org.apache.lucene.index.SegmentMerger.mergeWithLogging(org.apache.lucene.index.SegmentMerger$Merger, java.lang.String)", "offset": 4}, "line": {"number": 272}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMbPc"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/shirou/gopsutil@v3.20.12+incompatible/net/net_linux.go"}, "function": {"name": "github.com/shirou/gopsutil/net.getProcInodes"}, "line": {"number": 578}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MOgPAaY2At24Q0nLro4PXgAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator._writeFieldName(java.lang.String)", "offset": 7}, "line": {"number": 783}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DLCbvuPzV5FNep-fYYK5KAAAAAAAAACT"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()", "offset": 27}, "line": {"number": 1062}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlu6"}} -{"Stackframe": {"function": {"name": "show_mountinfo"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAROdk"}} -{"Stackframe": {"function": {"name": "security_inode_getattr"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "npc4jjpl4EREFoWe-jKicQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.(org.elasticsearch.common.util.concurrent.ThreadContext, java.lang.Runnable)", "offset": 1}, "line": {"number": 665}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fEW2ISlTz6bBNQ3Y_nEaswAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "org.apache.lucene.index.FieldInfos org.apache.lucene.index.SegmentReader.initFieldInfos()", "offset": 6}, "line": {"number": 190}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XoNqQsMeesgJkRR-qQrvugAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "void io.netty.handler.ssl.SslHandler.wrapAndFlush(io.netty.channel.ChannelHandlerContext)", "offset": 15}, "line": {"number": 803}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAABb"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.merge(org.apache.lucene.index.MergeState)", "offset": 10}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qKrM4v33j8Ui9JyIz2QXDgAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.List org.elasticsearch.common.xcontent.support.AbstractXContentParser.readListUnsafe(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier)", "offset": 2}, "line": {"number": 360}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rJUdSzEY4nBcXSavXvuL4QAAAAAAAACX"}} -{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.authenticateWithCache(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener)", "offset": 75}, "line": {"number": 200}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAATw-1"}} -{"Stackframe": {"function": {"name": "part_in_flight"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IzZjJeBcq6pQk1xgfHWRqwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "DirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.DirectoryReader.openIfChanged(org.apache.lucene.index.DirectoryReader)"}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj"}} -{"Stackframe": {"function": {"name": "page_fault"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yBBi5timxwFNiZSF0GVzHwAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "IndexingMemoryController.java"}, "function": {"name": "java.util.List org.elasticsearch.indices.IndexingMemoryController.availableShards()", "offset": 1}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sgtQzmVVhgNxUfY9I6sRbQAAAAAAAABX"}} -{"Stackframe": {"file": {"name": "ApacheUtils.java"}, "function": {"name": "org.apache.http.client.protocol.HttpClientContext com.amazonaws.http.apache.utils.ApacheUtils.newClientContext(com.amazonaws.http.settings.HttpClientSettings, java.util.Map)", "offset": 11}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Tm69BHhvzhA-OK8e2Udw5AAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "org.elasticsearch.index.store.StoreStats org.elasticsearch.index.store.Store.stats(long, java.util.function.LongUnaryOperator)", "offset": 1}, "line": {"number": 359}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JJwHXTkYed0lpeQhX1-f7AAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "boolean org.elasticsearch.index.shard.IndexShard.scheduledRefresh()", "offset": 2}, "line": {"number": 3784}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bMg00t8HYdDMZJ1TejgLywAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "ConcurrentHashMap.java"}, "function": {"name": "java.util.Iterator java.util.concurrent.ConcurrentHashMap$EntrySetView.iterator()", "offset": 3}, "line": {"number": 4819}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "void org.elasticsearch.tasks.TaskManager$1.onResponse(java.lang.Object)"}, "line": {"number": 202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ttnw8j0HRfVM17mHQNg8LAAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "SettingsFilter.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.SettingsFilter.filterSettings(org.elasticsearch.xcontent.ToXContent$Params, org.elasticsearch.common.settings.Settings)", "offset": 3}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hvoLs_S85r0RS2Fhd-3zRQAAAAAAAACT"}} -{"Stackframe": {"file": {"name": "Builder.java"}, "function": {"name": "void org.apache.lucene.util.fst.Builder.(org.apache.lucene.util.fst.FST$INPUT_TYPE, int, int, boolean, boolean, int, org.apache.lucene.util.fst.Outputs, boolean, int)", "offset": 97}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtBC"}} -{"Stackframe": {"function": {"name": "ep_item_poll.isra.16"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dp9YRBQYpWxlM26t-YlmAQAAAAAAAAD_"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "void java.util.TreeMap.fixAfterInsertion(java.util.TreeMap$Entry)", "offset": 35}, "line": {"number": 2612}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lJPvtRmqoQtUbCFGz0lhkwAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "AwaitCompletionReliabilityStrategy.java"}, "function": {"name": "void org.apache.logging.log4j.core.config.AwaitCompletionReliabilityStrategy.log(org.apache.logging.log4j.util.Supplier, java.lang.String, java.lang.String, org.apache.logging.log4j.Marker, org.apache.logging.log4j.Level, org.apache.logging.log4j.message.Message, java.lang.Throwable)", "offset": 2}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fdVymRP0v5Xa8xgKjz9rGwAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor.sendWithUser(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler, org.elasticsearch.transport.TransportInterceptor$AsyncSender, boolean)", "offset": 8}, "line": {"number": 162}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Kg-p48Ob-pDaS5XUMw0BuQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener.completeWith(org.elasticsearch.action.ActionListener, org.elasticsearch.common.CheckedSupplier)"}, "line": {"number": 436}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ryXkoj4-FLTKQHGPNi1F9QAAAAAAAABo"}} -{"Stackframe": {"file": {"name": "DiscoveryNode.java"}, "function": {"name": "void org.elasticsearch.cluster.node.DiscoveryNode.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 7}, "line": {"number": 392}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8hquOE5UjuqbQKed-OMfiwAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "URLClassPath.java"}, "function": {"name": "java.net.URL jdk.internal.loader.URLClassPath.findResource(java.lang.String, boolean)", "offset": 1}, "line": {"number": 294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F3u75PFaKMThRw4BoUVwCAAAAAAAAACh"}} -{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriterPerThread.sealFlushedSegment(org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 28}, "line": {"number": 556}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC6gT"}} -{"Stackframe": {"function": {"name": "worker_thread"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OtlZl4diRpDtcAsn79IxmgAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "void org.elasticsearch.search.internal.ContextIndexSearcher.search(java.util.List, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 1}, "line": {"number": 160}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GTGfXtPbBok8K2FnKoRb1gAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "void sun.security.ssl.SSLSocketImpl.startHandshake()", "offset": 18}, "line": {"number": 430}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rNtMuw4jybcwHekqtmQFUgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "PhantomCleanable.java"}, "function": {"name": "void jdk.internal.ref.PhantomCleanable.(java.lang.Object, java.lang.ref.Cleaner)", "offset": 17}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.fsync(java.nio.file.Path, boolean)", "offset": 8}, "line": {"number": 469}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pOUGa4nlXTzn3bJ7pH2ySwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.lang.Object java.util.Collections$UnmodifiableCollection$1.next()"}, "line": {"number": 1054}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKj-O"}} -{"Stackframe": {"function": {"name": "__kmalloc_node_track_caller"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-b6upR2nC0pjtRf2Z5Ia8AAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 434}, "line": {"number": 641}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Er2yE5HxkoOQjHTSQIF_kwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "JsonXContentParser.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentParser$Token org.elasticsearch.common.xcontent.json.JsonXContentParser.nextToken()"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL46K"}} -{"Stackframe": {"function": {"name": "__fget_light"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AJ8qrcXSoJbl_haPhlc4ogAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "PerFieldDocValuesFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.addNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)"}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zyvEc-oKyqCxZrCc-hDsvAAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer.readNumeric(org.apache.lucene.store.IndexInput, org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$NumericEntry)", "offset": 4}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEMuE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/malloc.go"}, "function": {"name": "runtime.mallocgc"}, "line": {"number": 1117}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7p_llGp9OZbFMQuhvSu13AAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "boolean org.elasticsearch.common.settings.SettingsFilter$$Lambda$7512+0x0000000802556410.test(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uwv5FksoxRofZo3XW2LdyAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4TcpChannel$$Lambda$6076+0x0000000802376820.operationComplete(io.netty.util.concurrent.Future)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wmQufSV4x-hAvGcaiegjeQAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "DefaultPromise.java"}, "function": {"name": "void io.netty.util.concurrent.DefaultPromise.notifyListeners()", "offset": 7}, "line": {"number": 490}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.prepareCommit()", "offset": 1}, "line": {"number": 3293}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wD7qCDk3lqH0hpTFDQk1YQAAAAAAAABR"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readMapEntries(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier, java.util.Map)", "offset": 6}, "line": {"number": 317}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E10X0hknNaV-tnjJE-hW7wAAAAAAAABq"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 106}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E1fYhCC-W9hkMRzkOdu22QAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.advance(int)"}, "line": {"number": 241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "414vwxwFz0HV2Ku4dzYYowAAAAAAAABU"}} -{"Stackframe": {"file": {"name": "Lucene90CompoundFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90CompoundFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 10}, "line": {"number": 100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vTiT6RQHSjUNEBuIvfofKgAAAAAAAABR"}} -{"Stackframe": {"file": {"name": "DeflaterOutputStream.java"}, "function": {"name": "void java.util.zip.DeflaterOutputStream.write(byte[], int, int)", "offset": 11}, "line": {"number": 210}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WGL3b6si_6bQM5Rqh6u3iwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "LifecyclePolicyUtils.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecyclePolicy org.elasticsearch.xpack.core.ilm.LifecyclePolicyUtils.loadPolicy(java.lang.String, java.lang.String, org.elasticsearch.common.xcontent.NamedXContentRegistry)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 53}, "line": {"number": 427}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB7"}} -{"Stackframe": {"file": {"name": "SettingsFilter.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.SettingsFilter.filterSettings(java.lang.Iterable, org.elasticsearch.common.settings.Settings)", "offset": 13}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rAlgDgUIPATMechrvqs-0gAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "sun.nio.fs.UnixPath sun.nio.fs.UnixPath.getFileName()"}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GWzMNjwobqDWBa4HT5N-_AAAAAAAAAAu"}} -{"Stackframe": {"file": {"name": "AggregatorFactories.java"}, "function": {"name": "org.elasticsearch.search.aggregations.AggregatorFactories$Builder org.elasticsearch.search.aggregations.AggregatorFactories$Builder.rewrite(org.elasticsearch.index.query.QueryRewriteContext)", "offset": 4}, "line": {"number": 582}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6XSmObFSSfKQphH28GHZfAAAAAAAAAG2"}} -{"Stackframe": {"file": {"name": "MainClientExec.java"}, "function": {"name": "org.apache.http.client.methods.CloseableHttpResponse org.apache.http.impl.execchain.MainClientExec.execute(org.apache.http.conn.routing.HttpRoute, org.apache.http.client.methods.HttpRequestWrapper, org.apache.http.client.protocol.HttpClientContext, org.apache.http.client.methods.HttpExecutionAware)", "offset": 81}, "line": {"number": 236}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YN0teMNDLgmhoUpmrqni9QAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain$$Lambda$6920+0x0000000801e27740.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "spvo-nxPRSOiDBPBck2YvwAAAAAAAACJ"}} -{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "org.elasticsearch.index.Index[] org.elasticsearch.cluster.metadata.IndexNameExpressionResolver.concreteIndices(org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$Context, java.lang.String[])", "offset": 12}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACgein"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/beat/event.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/beat.(*Event).PutValue"}, "line": {"number": 96}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "exjTdXfblWaIJFEnFxbGNQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "int org.apache.lucene.index.SegmentMerger$$Lambda$8373+0x0000000802747d80.merge()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Hk3kLbfOPknxEv8_LIcXawAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelHandlerContext io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(java.lang.Object)"}, "line": {"number": 412}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RZMfsbKLC34Px2zwyEaSpAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.SegmentMerger$$Lambda$8788+0x000000080279c000.merge(org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.SegmentReadState)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtE3"}} -{"Stackframe": {"function": {"name": "do_send_specific"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAi4LQ"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/reporter/reporter.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/reporter.setupGrpcConnection.func1"}, "line": {"number": 625}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GHfrWkNDTusMoI46fGLR6AAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "TransportNodesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation(org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction$NodeStatsRequest, org.elasticsearch.tasks.Task)", "offset": 1}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GXqdtKZs0jCPru_AD4bs_AAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "FieldsIndexWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.FieldsIndexWriter.finish(int, long, org.apache.lucene.store.IndexOutput)", "offset": 4}, "line": {"number": 111}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GR2FEpkknq9K1pcz6UJg9wAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.performOnPrimary(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.update.UpdateHelper, java.util.function.LongSupplier, org.elasticsearch.action.bulk.MappingUpdatePerformer, java.util.function.Consumer, org.elasticsearch.action.ActionListener, org.elasticsearch.threadpool.ThreadPool, java.lang.String)", "offset": 73}, "line": {"number": 245}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiF_v"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/netlink_linux.go"}, "function": {"name": "syscall.NetlinkRIB"}, "line": {"number": 92}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kLsSZQoqKXZJjggB-fM1dgAAAAAAAAEY"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.executeSearch(org.elasticsearch.action.search.SearchTask, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.OriginalIndices, java.util.List, java.util.function.BiFunction, org.elasticsearch.cluster.ClusterState, java.util.Map, org.elasticsearch.action.ActionListener, org.elasticsearch.action.search.SearchResponse$Clusters, org.elasticsearch.action.search.SearchContextId, org.elasticsearch.action.search.TransportSearchAction$SearchAsyncActionProvider)", "offset": 49}, "line": {"number": 978}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LrPBC0BVk768vSdX8rgftwAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "long org.elasticsearch.index.translog.Translog.earliestLastModifiedAge()", "offset": 2}, "line": {"number": 419}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "UpdateRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.UpdateRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)"}, "line": {"number": 27}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZhtNJYoOwm655zArM3sIngAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeFlush0()", "offset": 7}, "line": {"number": 925}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K28e_VmRLgv1j2R51m9VawAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter$1.afterSegmentsFlushed()"}, "line": {"number": 446}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TEfOCFPBfhCJGNGF8T-CCAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "DataStreamMetadata.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.cluster.metadata.DataStreamMetadata.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)"}, "line": {"number": 226}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "otzl_-UJZ6X4M1v7YRzHZgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator$$Lambda$4688.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACETdS"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map.go"}, "function": {"name": "runtime.mapassign_faststr"}, "line": {"number": 195}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZNYIIcZKEhelw-qPJkZowQAAAAAAAACZ"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "void org.elasticsearch.common.settings.Settings.processSetting(java.util.Map, java.lang.String, java.lang.String, java.lang.Object)", "offset": 14}, "line": {"number": 168}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "06W-_gYsVxvlZRgxvL-PiAAAAAAAAAEO"}} -{"Stackframe": {"file": {"name": "Netty4MessageChannelHandler.java"}, "function": {"name": "boolean org.elasticsearch.transport.netty4.Netty4MessageChannelHandler.doFlush(io.netty.channel.ChannelHandlerContext)", "offset": 53}, "line": {"number": 177}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ARLuf1htvrklOOxyKnOopAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 270}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kMerhGqwou_LAaQDIMY-9wAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "InputStreamStreamInput.java"}, "function": {"name": "byte org.elasticsearch.common.io.stream.InputStreamStreamInput.readByte()"}, "line": {"number": 57}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rJUdSzEY4nBcXSavXvuL4QAAAAAAAABl"}} -{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.authenticateWithCache(org.elasticsearch.xpack.core.security.authc.support.UsernamePasswordToken, org.elasticsearch.action.ActionListener)", "offset": 9}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8yw5xAkzQPNYncv2nxNJ2QAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "SdkHttpRequestExecutor.java"}, "function": {"name": "org.apache.http.HttpResponse com.amazonaws.http.protocol.SdkHttpRequestExecutor.doReceiveResponse(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext)", "offset": 7}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "e2K78dgmsrxIH1rDnjF-GwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "JsonGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.core.JsonGenerator.writeStringField(java.lang.String, java.lang.String)", "offset": 1}, "line": {"number": 2187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "73IOkhtZyjrZNnxzxVPYTQAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.applyIndexOperation(org.elasticsearch.index.engine.Engine, long, long, long, org.elasticsearch.index.VersionType, long, long, long, boolean, org.elasticsearch.index.engine.Engine$Operation$Origin, org.elasticsearch.index.mapper.SourceToParse)", "offset": 5}, "line": {"number": 955}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k0sJGEkyt_qFuQLjQ6-EOwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction$$Lambda$6558+0x0000000801cc6630.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iBROdefyYqo_oyuWWpBVogAAAAAAAABC"}} -{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.xcontent.provider.json.JsonXContentGenerator.close()", "offset": 12}, "line": {"number": 567}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4OJ0q7lEBruOrjBuZKiAaQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriter.purgeFlushTickets(boolean, org.apache.lucene.util.IOUtils$IOConsumer)", "offset": 3}, "line": {"number": 191}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SbAJldcfVqhtzBLuTqZe6AAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.refresh(java.lang.String)", "offset": 4}, "line": {"number": 1273}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RxrIezP-22ksZoeWEvsGOAAAAAAAAADb"}} -{"Stackframe": {"file": {"name": "SegmentDocValuesProducer.java"}, "function": {"name": "void org.apache.lucene.index.SegmentDocValuesProducer.(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.Directory, org.apache.lucene.index.FieldInfos, org.apache.lucene.index.FieldInfos, org.apache.lucene.index.SegmentDocValues)", "offset": 31}, "line": {"number": 76}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3GraiHROJsQD8vNYdRBuYQAAAAAAAADv"}} -{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.indices.NodeIndicesStats org.elasticsearch.indices.IndicesService.stats(org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 15}, "line": {"number": 460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cXlweJcTpRnUmFxwZ3wPIwAAAAAAAADe"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.run()", "offset": 61}, "line": {"number": 497}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FGIyujYFiBFB20lehksXnQAAAAAAAABm"}} -{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "void co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.onEvent(co.elastic.apm.agent.report.ReportingEvent, long, boolean)", "offset": 11}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IvkYVQpy0zuSMjSWKUUFtwAAAAAAAABp"}} -{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode$GCMEngine.implGCMCrypt(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 10}, "line": {"number": 733}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a30CL-eAQLPsoU0Rce3pPwAAAAAAAADV"}} -{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "java.util.regex.Pattern$Node java.util.regex.Pattern.sequence(java.util.regex.Pattern$Node)", "offset": 25}, "line": {"number": 2156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABJ2h"}} -{"Stackframe": {"file": {"name": "runtime/select.go"}, "function": {"name": "runtime.selectgo"}, "line": {"number": 508}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EbDp5Ji3y8uTKzXL0h4-JQAAAAAAAABh"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 12}, "line": {"number": 308}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEB"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorize(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)", "offset": 39}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAABngO"}} -{"Stackframe": {"function": {"name": "xfs_file_buffered_aio_write"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFWIH"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/symtab.go"}, "function": {"name": "runtime.pcdatavalue"}, "line": {"number": 905}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n-IlVo5-jcMpxFIQmT8ZXQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$consumeToken$18(java.util.Map, org.elasticsearch.xpack.core.security.user.User)"}, "line": {"number": 523}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vXD0yPGK6S99h_2jYDCdUQAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "BulkItemResponse.java"}, "function": {"name": "org.elasticsearch.action.DocWriteResponse org.elasticsearch.action.bulk.BulkItemResponse.readResponse(org.elasticsearch.index.shard.ShardId, org.elasticsearch.common.io.stream.StreamInput)", "offset": 5}, "line": {"number": 526}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL2TA"}} -{"Stackframe": {"function": {"name": "destroy_inode"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nLzojctp-_D1HjePyflZ-wAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "String.java"}, "function": {"name": "int java.lang.String.hashCode()"}, "line": {"number": 1502}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 49}, "line": {"number": 267}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "void io.netty.util.concurrent.SingleThreadEventExecutor$4.run()", "offset": 8}, "line": {"number": 986}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k6l9plTdsyuqVCJa0F4QYAAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$WriteReplicaResult.runPostReplicaActions(org.elasticsearch.action.ActionListener)", "offset": 13}, "line": {"number": 291}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aG38C7AQR-wEDFFefkRnfgAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, java.lang.Throwable)", "offset": 5}, "line": {"number": 451}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ggnQOvcjKaPXiEExp4DioQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "UnixPath.java"}, "function": {"name": "sun.nio.fs.UnixPath sun.nio.fs.UnixPath.getParent()"}, "line": {"number": 276}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_6HlhadF5t38EsWYAp9xkgAAAAAAAABi"}} -{"Stackframe": {"file": {"name": "ElasticApmTracer.java"}, "function": {"name": "void co.elastic.apm.agent.impl.ElasticApmTracer.reportSpan(co.elastic.apm.agent.impl.transaction.Span)", "offset": 14}, "line": {"number": 445}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACjP72"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strconv/quote.go"}, "function": {"name": "strconv.unquote"}, "line": {"number": 452}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAABnqs"}} -{"Stackframe": {"function": {"name": "xfs_file_write_iter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iM8LSJ_0DrAH3j2_fhBWQwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "HashSet.java"}, "function": {"name": "boolean java.util.HashSet.add(java.lang.Object)"}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OCBJ3b0yd0m46kgQppcopwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.xcontent.provider.json.JsonXContentGenerator.writeFieldName(java.lang.String)"}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vu1niHfy-hSLbNHl3l8G6gAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap$KeyIterator.next()"}, "line": {"number": 1607}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YpRFzwYvMLNVigDq-Ir6sgAAAAAAAADL"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.pushTerm(org.apache.lucene.util.BytesRef)", "offset": 30}, "line": {"number": 961}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aErKLCqrgChwG7C_tbQ7iAAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "ManagementFactory.java"}, "function": {"name": "java.util.List java.lang.management.ManagementFactory.getPlatformMXBeans(java.lang.Class)", "offset": 8}, "line": {"number": 730}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$1.doRun()"}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtsO"}} -{"Stackframe": {"function": {"name": "get_signal"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_vnxdlrLVdiyCEIVqNBMFAAAAAAAAAAi"}} -{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.OutboundMessage, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD5YkZ"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/go.etcd.io/bbolt@v1.3.4/bucket.go"}, "function": {"name": "go.etcd.io/bbolt.(*Bucket).node"}, "line": {"number": 647}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MkmisheVP0DaTeF1Tgq6BwAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write(byte[], int, int)", "offset": 2}, "line": {"number": 416}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OcWbb-q1xN2Vf27YY6_pjQAAAAAAAACC"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.commitInternal(org.apache.lucene.index.MergePolicy)", "offset": 25}, "line": {"number": 3453}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NU9wKt5F_9xzvEGErvec-QAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportShardBulkAction.performOnPrimary(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.update.UpdateHelper, java.util.function.LongSupplier, org.elasticsearch.action.bulk.MappingUpdatePerformer, java.util.function.Consumer, org.elasticsearch.action.ActionListener, org.elasticsearch.threadpool.ThreadPool, java.lang.String, java.util.function.Consumer)", "offset": 78}, "line": {"number": 283}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dsAk2KNLTRhoL-DCKK7EHgAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "TermsAggregationBuilder.java"}, "function": {"name": "int org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder.hashCode()"}, "line": {"number": 407}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.StandardDirectoryReader.doOpenIfChanged()"}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w_8HYglWw-0jqUUlUeMgagAAAAAAAADX"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Setting.get(org.elasticsearch.common.settings.Settings, boolean)", "offset": 26}, "line": {"number": 493}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QN3Ei4y0jjQeG3JY3GoqzgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "BufferedIndexInput.java"}, "function": {"name": "byte org.apache.lucene.store.BufferedIndexInput.readByte()", "offset": 1}, "line": {"number": 56}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i__VMh3MgmTJp7v_qMbssAAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "SegmentCommitInfo.java"}, "function": {"name": "long org.apache.lucene.index.SegmentCommitInfo.sizeInBytes()", "offset": 3}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oaW-L-UrYnSgk4f2xEaPqwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "RetentionLeaseBackgroundSyncAction.java"}, "function": {"name": "void org.elasticsearch.index.seqno.RetentionLeaseBackgroundSyncAction.shardOperationOnReplica(org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.ActionListener)"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EljCaLNs8oyF8fQALGTMLQAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.map(java.util.Map, boolean, boolean)", "offset": 7}, "line": {"number": 1073}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFGiL"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.doInit"}, "line": {"number": 5649}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hu0S-fYG_gY_Otgg4IzKXwAAAAAAAAEr"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.tryAllHandlers(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 44}, "line": {"number": 318}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "RestActions.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestActions.nodesResponse(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params, org.elasticsearch.action.support.nodes.BaseNodesResponse)", "offset": 1}, "line": {"number": 195}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vuG4cc3LDusa6uaj6q__HgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ExitableDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.Terms org.elasticsearch.search.internal.ExitableDirectoryReader$ExitableLeafReader.terms(java.lang.String)"}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ixcTnlj3GyJl_riemMVu5gAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "ObjectObjectHashMap.java"}, "function": {"name": "int com.carrotsearch.hppc.ObjectObjectHashMap.putAll(java.lang.Iterable)", "offset": 2}, "line": {"number": 212}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_9Ik"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/file_integrity/scanner.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/file_integrity.(*scanner).newScanEvent"}, "line": {"number": 205}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YrZd9T94EjPeHzMa6JOG2gAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Translog.java"}, "function": {"name": "void org.elasticsearch.index.translog.Translog.writeOperationNoSize(org.elasticsearch.index.translog.BufferedChecksumStreamOutput, org.elasticsearch.index.translog.Translog$Operation)", "offset": 1}, "line": {"number": 1612}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXZe1"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/tracer.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.(*Tracer).getUserspaceStack"}, "line": {"number": 718}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACOBbB"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/regexp.go"}, "function": {"name": "regexp.(*Regexp).allMatches"}, "line": {"number": 808}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nB1aJ0RC5jjZQRrK59KJIwAAAAAAAABY"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", "offset": 18}, "line": {"number": 1134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2vzhsTPfkVRKbOkBMFFkggAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "long org.apache.lucene.codecs.DocValuesConsumer$2.longValue()"}, "line": {"number": 261}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LTxw759oo7wfqcvtU1kXsgAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "org.apache.lucene.index.TermsEnum org.apache.lucene.codecs.DocValuesConsumer$6.termsEnum()", "offset": 2}, "line": {"number": 768}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABWyQ-"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/libpf/nativeunwind/localintervalcache/localintervalcache.go"}, "function": {"name": "github.com/optimyze/prodfiler/libpf/nativeunwind/localintervalcache.(*Cache).decompressAndDecode"}, "line": {"number": 251}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "QueryPhase.java"}, "function": {"name": "boolean org.elasticsearch.search.query.QueryPhase.searchWithCollector(org.elasticsearch.search.internal.SearchContext, org.elasticsearch.search.internal.ContextIndexSearcher, org.apache.lucene.search.Query, java.util.LinkedList, boolean, boolean)", "offset": 14}, "line": {"number": 224}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qzKFizPmtCgELqHUElsXqwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService$AsyncRefreshTask.runInternal()"}, "line": {"number": 1039}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3"}} -{"Stackframe": {"file": {"name": "NodesInfoResponse.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.action.admin.cluster.node.info.NodesInfoResponse.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 35}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4cQgXibr0xyrpChPCPWEWQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sd1-fzhWHGpZk5BbNZ95mAAAAAAAAAER"}} -{"Stackframe": {"file": {"name": "CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush(boolean)", "offset": 31}, "line": {"number": 260}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$4472.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dDVH2WdBQ243L1n4EnAIJwAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "Checkpoint.java"}, "function": {"name": "byte[] org.elasticsearch.index.translog.Checkpoint.createCheckpointBytes(java.nio.file.Path, org.elasticsearch.index.translog.Checkpoint)", "offset": 7}, "line": {"number": 216}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "J-1FlE9XNrEUl25WPyWchwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "HeaderWarning.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.logging.HeaderWarning.escapeAndEncode(java.lang.String)"}, "line": {"number": 210}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "PrioritizedEsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.runAndClean(java.lang.Runnable)"}, "line": {"number": 262}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAARPjO"}} -{"Stackframe": {"function": {"name": "security_task_kill"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n7DxyegwJYX-a6yw00GY5gAAAAAAAACh"}} -{"Stackframe": {"file": {"name": "IndexShardOperationPermits.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShardOperationPermits.acquire(org.elasticsearch.action.ActionListener, java.lang.String, boolean, java.lang.Object, java.lang.StackTraceElement[])", "offset": 44}, "line": {"number": 253}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Wb65uaTCBYe2MCZtuMHkqAAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "TokenService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.TokenService.tryAuthenticateToken(org.elasticsearch.common.settings.SecureString, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 393}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hD65pGBm95Jf4hT0MMUBMQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "ProcessorInfo.java"}, "function": {"name": "void org.elasticsearch.ingest.ProcessorInfo.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 1}, "line": {"number": 31}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnKXQ"}} -{"Stackframe": {"function": {"name": "unix_stream_sendmsg"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "na_q_qI2NNskyXQ7-L9cKwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$7392+0x0000000802526b00.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "baBm99KHpwHnMQW1MMiDCQAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 62}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dlfCY_5HI9k5YXP0NFRY_AAAAAAAAABL"}} -{"Stackframe": {"file": {"name": "GroupedActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.GroupedActionListener.onResponse(java.lang.Object)", "offset": 6}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACPJ_p"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.6.0/system.go"}, "function": {"name": "github.com/elastic/go-sysinfo.Process"}, "line": {"number": 63}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi_YS"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file_unix.go"}, "function": {"name": "os.openFileNolog"}, "line": {"number": 222}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Z0VKCUlXPuQLZpRL-T8iGwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction$$Lambda$6941+0x000000080247c3d8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-lloRzsC44KWcskRXy_mhAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "/opt/puppetlabs/puppet/bin/puppet"}, "function": {"name": "
    "}, "line": {"number": 5}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rROjWPSGsIF3P681sDbieAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService$$Lambda$4340.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6BfWdekjqfXKsC08sKjfGwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "AbstractQueuedSynchronizer.java"}, "function": {"name": "boolean java.util.concurrent.locks.AbstractQueuedSynchronizer.release(int)", "offset": 1}, "line": {"number": 1008}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dB8rpvXeU-U7j8zoRqc_lgAAAAAAAAGp"}} -{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromCustomMetadata(java.util.Map)", "offset": 47}, "line": {"number": 184}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-I0qeKDe1hMr58wzZHuN2wAAAAAAAADl"}} -{"Stackframe": {"file": {"name": "HttpRequestExecutor.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.protocol.HttpRequestExecutor.doSendRequest(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext)", "offset": 45}, "line": {"number": 241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "14InJKOec9dSO7frpfbiGwAAAAAAAABf"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap$HashIterator.nextNode()", "offset": 6}, "line": {"number": 1609}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QaVgyqdSKxBGbM75xg0o_gAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.flush()"}, "line": {"number": 3545}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACg0JE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "github.com/elastic/beats/v7/libbeat/conditions.(*HasFields).Check"}, "line": {"number": 1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_8uE"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/file_integrity/scanner.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/file_integrity.(*scanner).scan"}, "line": {"number": 108}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x3cFmRipcZyDdJFPRQEWSwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "JvmGcMonitorService.java"}, "function": {"name": "void org.elasticsearch.monitor.jvm.JvmGcMonitorService$JvmMonitor.monitorGc()", "offset": 2}, "line": {"number": 437}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MbaOnaCMmj3Z2Dka8DRidwAAAAAAAAE7"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.mergeSortedSetField(org.apache.lucene.index.FieldInfo, org.apache.lucene.index.MergeState)", "offset": 44}, "line": {"number": 853}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALRub"}} -{"Stackframe": {"function": {"name": "do_faccessat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8jMyW-WmlGRJvr5T2b-plgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm.handleCachedAuthentication(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.action.ActionListener)"}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bVXxpnmgIbO0K4TjtY7pDAAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "SocketChannelImpl.java"}, "function": {"name": "int sun.nio.ch.SocketChannelImpl.write(java.nio.ByteBuffer)", "offset": 9}, "line": {"number": 542}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fLRCJC-BBQ5RUiJ1GyTDaAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "AbstractRestChannel.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.rest.AbstractRestChannel.newBuilder(org.elasticsearch.xcontent.XContentType, org.elasticsearch.xcontent.XContentType, boolean)"}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jBeiHwwOyRIapBbs5J2OjgAAAAAAAAB4"}} -{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.onResponse(java.lang.Object)", "offset": 13}, "line": {"number": 141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rKivvO5Wzb2hHvlwH9qGKQAAAAAAAAB4"}} -{"Stackframe": {"file": {"name": "RestNodesInfoAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.info.NodesInfoRequest org.elasticsearch.rest.action.admin.cluster.RestNodesInfoAction.prepareRequest(org.elasticsearch.rest.RestRequest)", "offset": 16}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.handleIndexActionAuthorizationResult(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$IndexAuthorizationResult, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AsyncSupplier, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 472}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4XXTSxpcblY4XfsTMB8ZgQAAAAAAAAEs"}} -{"Stackframe": {"file": {"name": "SSLSocketOutputRecord.java"}, "function": {"name": "void sun.security.ssl.SSLSocketOutputRecord.deliver(byte[], int, int)", "offset": 57}, "line": {"number": 342}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l3JM1bjm-MAf8bfDQ-QCYAAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "KeywordFieldMapper.java"}, "function": {"name": "void org.elasticsearch.index.mapper.KeywordFieldMapper.parseCreateField(org.elasticsearch.index.mapper.DocumentParserContext)", "offset": 1}, "line": {"number": 970}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rVOBHTqI_0fprNIXiAG4OgAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.action.support.nodes.BaseNodeRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 244}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADS7g"}} -{"Stackframe": {"function": {"name": "migration_cpu_stop"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0oXMrtJgPp9xNBfTmr-cvwAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator$$Lambda$6923+0x0000000801e27d98.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S_CL2qp_hCoxo4NMBjattAAAAAAAAACn"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$consumeToken$13(org.elasticsearch.xpack.core.security.authc.Realm, org.elasticsearch.xpack.core.security.authc.AuthenticationToken, long, org.elasticsearch.action.ActionListener, java.util.Map, org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 10}, "line": {"number": 460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x_DspzXOpGBbLZpT9ztnugAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ConfigInt.java"}, "function": {"name": "com.typesafe.config.ConfigValueType com.typesafe.config.impl.ConfigInt.valueType()"}, "line": {"number": 25}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnJQc"}} -{"Stackframe": {"function": {"name": "unix_stream_read_generic"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cfzDHT2jYriKJ0LziJdaXQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "KeyStoreWrapper.java"}, "function": {"name": "java.util.Set org.elasticsearch.common.settings.KeyStoreWrapper.getSettingNames()"}, "line": {"number": 539}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9W0w4Zf7EaLrEqfpZeskwAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction$CCSActionListener.onResponse(java.lang.Object)", "offset": 1}, "line": {"number": 1345}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "crKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService.maybeRefreshEngine(boolean)", "offset": 3}, "line": {"number": 913}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Oa5CkhVOrx2r2YkOsLGOZwAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory.deleteFile(java.lang.String)", "offset": 3}, "line": {"number": 309}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dR-5oewY63tH4fYLV5hc3AAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "AbstractPipeline.java"}, "function": {"name": "java.util.stream.Sink java.util.stream.AbstractPipeline.wrapAndCopyInto(java.util.stream.Sink, java.util.Spliterator)"}, "line": {"number": 474}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Vesl-TqkdasS6qMPfjcnngAAAAAAAABV"}} -{"Stackframe": {"file": {"name": "BlobStoreRepository.java"}, "function": {"name": "org.elasticsearch.common.collect.Tuple org.elasticsearch.repositories.blobstore.BlobStoreRepository.buildBlobStoreIndexShardSnapshots(java.util.Set, org.elasticsearch.common.blobstore.BlobContainer, java.lang.String)", "offset": 6}, "line": {"number": 2100}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFrrj"}} -{"Stackframe": {"function": {"name": "kauditd_thread"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bQTnNZNiSnxa6gsFMalX2wAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "api.py"}, "function": {"name": "dispatch_events", "offset": 1}, "line": {"number": 368}, "source": {"type": 2}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ANmrmrqqJv18GWh_5HHQlgAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "SmileGenerator.java"}, "function": {"name": "void com.fasterxml.jackson.dataformat.smile.SmileGenerator.writeStringField(java.lang.String, java.lang.String)", "offset": 4}, "line": {"number": 534}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HegJ6iKTPwzhAbI5kz1vKgAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "ByteBuffersDataOutput.java"}, "function": {"name": "void org.apache.lucene.store.ByteBuffersDataOutput.writeByte(byte)", "offset": 3}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACHm1v"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/reflect/value.go"}, "function": {"name": "reflect.cvtBytesString"}, "line": {"number": 2678}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.authenticateAsync(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 27}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fQU6FiSgx3uHYx5GK6C2BAAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "TransportUpdateByQueryAction.java"}, "function": {"name": "void org.elasticsearch.reindex.TransportUpdateByQueryAction.lambda$doExecute$0(org.elasticsearch.index.reindex.BulkByScrollTask, org.elasticsearch.index.reindex.UpdateByQueryRequest, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jZR3Zs-2DwklqT9f8n4ycwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.String org.elasticsearch.xcontent.support.AbstractXContentParser.textOrNull()"}, "line": {"number": 247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qnNsUsoPsI60n_EtYkImaQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "int org.apache.lucene.codecs.DocValuesConsumer$6.nextDoc()"}, "line": {"number": 721}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JUqoXh4FCdEByaAYgHthzAAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory.privateDeleteFile(java.lang.String, boolean)"}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABh"}} -{"Stackframe": {"file": {"name": "BKDReader.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDReader.addAll(org.apache.lucene.util.bkd.BKDReader$IntersectState, boolean)", "offset": 12}, "line": {"number": 386}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vLpFDJjvnqkSyYla4kwO9gAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "AbstractRestChannel.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.rest.AbstractRestChannel.newBuilder(org.elasticsearch.common.xcontent.XContentType, org.elasticsearch.common.xcontent.XContentType, boolean)", "offset": 21}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w_8HYglWw-0jqUUlUeMgagAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Setting.get(org.elasticsearch.common.settings.Settings, boolean)"}, "line": {"number": 467}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jWxMhVzBeHM3bqEF5ueSZwAAAAAAAAHS"}} -{"Stackframe": {"file": {"name": "Lucene90PostingsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90PostingsWriter.(org.apache.lucene.index.SegmentWriteState)", "offset": 74}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjgt"}} -{"Stackframe": {"function": {"name": "lookup_fast"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz9G"}} -{"Stackframe": {"function": {"name": "__audit_syscall_exit"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWvZ"}} -{"Stackframe": {"function": {"name": "inet6_fill_link_af"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "koE-yAAYIqbvRVhFPQiQCAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesProducer.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene80.Lucene80DocValuesProducer$DenseNumericDocValues.nextDoc()"}, "line": {"number": 440}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMbGm"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/shirou/gopsutil@v3.20.12+incompatible/net/net_linux.go"}, "function": {"name": "github.com/shirou/gopsutil/net.getProcInodes"}, "line": {"number": 553}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FpINZr-8rrEbQKX9ekCdiQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "OTelSpanContext.java"}, "function": {"name": "java.lang.String co.elastic.apm.agent.opentelemetry.sdk.OTelSpanContext.getTraceId()"}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OVbzts78rozw73k3kwZElwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "TransportIndicesStatsAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation(org.elasticsearch.action.support.broadcast.BroadcastRequest, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionListener)"}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Vy0sHqjgzne7ZEdvWNqQJgAAAAAAAAC9"}} -{"Stackframe": {"file": {"name": "ThreadPool.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.threadpool.ThreadPool$Info.toXContent(org.elasticsearch.common.xcontent.XContentBuilder, org.elasticsearch.common.xcontent.ToXContent$Params)", "offset": 20}, "line": {"number": 838}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pZtO5swbmBuXsFE_uaxkVgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Releasables.java"}, "function": {"name": "void org.elasticsearch.core.Releasables.close(boolean, org.elasticsearch.core.Releasable[])"}, "line": {"number": 72}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3WlbNt9bmyJw_k2Ygz1zOwAAAAAAAABo"}} -{"Stackframe": {"file": {"name": "BKDWriter.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDWriter$OneDimensionBKDWriter.add(byte[], int)", "offset": 3}, "line": {"number": 564}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nP5Trt-dKjuqAt-_lVvSZAAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "Lucene80NormsConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80NormsConsumer.(org.apache.lucene.index.SegmentWriteState, java.lang.String, java.lang.String, java.lang.String, java.lang.String)", "offset": 4}, "line": {"number": 45}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S06qc2WWdjyLzzAdWuSUuwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.io.stream.StreamInput.readString()"}, "line": {"number": 428}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RQ20oTZ6pwni6paND2updwAAAAAAAABB"}} -{"Stackframe": {"file": {"name": "DefaultTransformer.java"}, "function": {"name": "com.typesafe.config.impl.AbstractConfigValue com.typesafe.config.impl.DefaultTransformer.transform(com.typesafe.config.impl.AbstractConfigValue, com.typesafe.config.ConfigValueType)", "offset": 5}, "line": {"number": 26}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAToQ_"}} -{"Stackframe": {"function": {"name": "blk_mq_in_flight"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5h1fxxJ6EO-OnrqL_BatiwAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "BufferedInputStream.java"}, "function": {"name": "int java.io.BufferedInputStream.read()", "offset": 3}, "line": {"number": 276}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DvxORZxoFkDRuJT-GJ72RwAAAAAAAAA0"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.BufferedUpdatesStream$SegmentState[] org.apache.lucene.index.IndexWriter.openSegmentStates(java.util.List, java.util.Set, long)", "offset": 3}, "line": {"number": 5815}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YWXIxk3SU50xKaZayCzMKAAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.executeWithTimer()", "offset": 6}, "line": {"number": 764}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ssKyyxC-Fi39XpSwjyky_QAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "AbstractPagedMutable.java"}, "function": {"name": "void org.apache.lucene.util.packed.AbstractPagedMutable.fillPages()", "offset": 4}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbdH"}} -{"Stackframe": {"function": {"name": "tcp_sendmsg_locked"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yZ_KJScGxr5LDbJgWcj5dQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "HierarchyCircuitBreakerService.java"}, "function": {"name": "void org.elasticsearch.indices.breaker.HierarchyCircuitBreakerService.checkParentLimit(long, java.lang.String)"}, "line": {"number": 396}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pqBRZ5qawZeLpdbbr6iQSgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "AbstractLogger.java"}, "function": {"name": "boolean org.apache.logging.log4j.spi.AbstractLogger.isTraceEnabled()"}, "line": {"number": 1553}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wcw67NCnOLTYutynHBvqowAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.execute(java.lang.Runnable)", "offset": 28}, "line": {"number": 1368}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(java.lang.Object)", "offset": 12}, "line": {"number": 444}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi8T9"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file.go"}, "function": {"name": "os.(*File).Read"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ecwioQzMHOqcvkujHEcA0QAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "IntObjectHashMap.java"}, "function": {"name": "java.lang.Object com.carrotsearch.hppc.IntObjectHashMap.get(int)", "offset": 8}, "line": {"number": 383}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi90E"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file.go"}, "function": {"name": "os.ReadFile"}, "line": {"number": 697}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2_uIdFF155ksITnJx5c3KgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "java.lang.String org.elasticsearch.transport.TransportService$ContextRestoreResponseHandler.executor()"}, "line": {"number": 1294}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hIPSIc3LxfgC93-3l1xbUgAAAAAAAABg"}} -{"Stackframe": {"file": {"name": "EPollSelectorImpl.java"}, "function": {"name": "int sun.nio.ch.EPollSelectorImpl.doSelect(java.util.function.Consumer, long)", "offset": 15}, "line": {"number": 120}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4U_zL7awL15Zhtkek0gtnAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "DataOutput.java"}, "function": {"name": "void org.apache.lucene.store.DataOutput.writeLong(long)", "offset": 1}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAbORu"}} -{"Stackframe": {"file": {"name": "google.golang.org/grpc@v1.46.0/stream.go"}, "function": {"name": "google.golang.org/grpc.prepareMsg"}, "line": {"number": 1633}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBF"}} -{"Stackframe": {"function": {"name": "sock_recvmsg"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEyZ4"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/netpoll_epoll.go"}, "function": {"name": "runtime.netpoll"}, "line": {"number": 126}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0p6SYUMKyLYCZKj0a_EWHwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ScriptSortBuilder.java"}, "function": {"name": "org.elasticsearch.search.sort.SortFieldAndFormat org.elasticsearch.search.sort.ScriptSortBuilder.build(org.elasticsearch.index.query.QueryShardContext)", "offset": 1}, "line": {"number": 313}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mBUMQufVJBVVG00JrcabBwAAAAAAAABY"}} -{"Stackframe": {"file": {"name": "MappingVisitor.java"}, "function": {"name": "void org.elasticsearch.action.admin.cluster.stats.MappingVisitor.visitMapping(java.util.Map, java.util.function.Consumer)", "offset": 10}, "line": {"number": 40}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MAeNVf9VknVgzLcDuw060QAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "GHASH.java"}, "function": {"name": "int com.sun.crypto.provider.GHASH.update(byte[], int, int)"}, "line": {"number": 175}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F0PU7bQ8aSr5vRj-z9gSNQAAAAAAAACm"}} -{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "java.util.concurrent.RunnableScheduledFuture java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take()", "offset": 25}, "line": {"number": 1189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre"}} -{"Stackframe": {"function": {"name": "do_futex"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HHvO0O_M7qxq_PkVq5p74wAAAAAAAAHm"}} -{"Stackframe": {"file": {"name": "SSLEngineOutputRecord.java"}, "function": {"name": "sun.security.ssl.Ciphertext sun.security.ssl.SSLEngineOutputRecord.encode(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer)", "offset": 92}, "line": {"number": 287}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Qzn1A6CqCIZUpcbEC_VoFgAAAAAAAACS"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.lambda$getAuthenticatorConsumer$5(boolean, org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.xpack.security.authc.Authenticator, org.elasticsearch.action.ActionListener)", "offset": 36}, "line": {"number": 180}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3fcXPwJc0rG6LqLVofdoTAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "TreeMap.java"}, "function": {"name": "java.util.Set java.util.TreeMap.entrySet()"}, "line": {"number": 1165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGJzE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.Fdatasync"}, "line": {"number": 393}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-AsoQW73iFI5fH1Iwzki_wAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Net.java"}, "function": {"name": "int sun.nio.ch.Net.poll(java.io.FileDescriptor, int, long)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "52XkZKHpOlq2TOi3L8YfPAAAAAAAAABd"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.doNext(int)", "offset": 18}, "line": {"number": 224}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ynFllp5CrPbAGyx1JneoOgAAAAAAAAIn"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleRequest(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.Header, org.elasticsearch.transport.InboundMessage)", "offset": 95}, "line": {"number": 288}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IgM5i6-lgpuzqOD789em9QAAAAAAAAGc"}} -{"Stackframe": {"file": {"name": "DefaultRestChannel.java"}, "function": {"name": "void org.elasticsearch.http.DefaultRestChannel.sendResponse(org.elasticsearch.rest.RestResponse)", "offset": 66}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BFA4SysMtx9fo02P0NGNMQAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 2}, "line": {"number": 650}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7kZxFgbuXnmF5RM9H_z_ggAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "FsDirectoryFactory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.elasticsearch.index.store.FsDirectoryFactory$HybridDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 8}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sF_YVRjBiPN5mfH4q_WehQAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$CachingAsyncSupplier.getAsync(org.elasticsearch.action.ActionListener)", "offset": 12}, "line": {"number": 987}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "usT72ztgJAqvKkG84I03GQAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "RestRequest.java"}, "function": {"name": "java.util.List org.elasticsearch.rest.RestRequest.unconsumedParams()", "offset": 4}, "line": {"number": 332}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4FEl6I3oLz61cCuBYEj4mgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.util.IOUtils$$Lambda$7235+0x0000000802500650.close()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1cGaBM0-rtiZfTyhOoVgPgAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "SSLSocketImpl.java"}, "function": {"name": "sun.security.ssl.Plaintext sun.security.ssl.SSLSocketImpl.decode(java.nio.ByteBuffer)", "offset": 1}, "line": {"number": 1506}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bpFrLpp87SutwNDP7V3ibQAAAAAAAABl"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.Settings.readSettingsFromStream(org.elasticsearch.common.io.stream.StreamInput)", "offset": 18}, "line": {"number": 601}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o8_zIcJ_jqi5-Mstw26jrgAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "SnapshotsInProgress.java"}, "function": {"name": "java.util.Map org.elasticsearch.cluster.SnapshotsInProgress.collectByRepo(org.elasticsearch.common.io.stream.StreamInput)", "offset": 6}, "line": {"number": 81}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ifN9r0wurhPb3dG8PudTpAAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "JsonReadContext.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.JsonReadContext.setCurrentName(java.lang.String)", "offset": 1}, "line": {"number": 198}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuqt"}} -{"Stackframe": {"function": {"name": "do_epoll_wait"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MsMB9yoGg6PjkQwG5yyoCwAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "ApiKeyService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.ApiKeyService.lambda$validateApiKeyCredentials$21(org.elasticsearch.xpack.security.authc.ApiKeyService$ApiKeyCredentials, org.elasticsearch.xpack.security.authc.ApiKeyService$ApiKeyDoc, java.time.Clock, org.elasticsearch.action.ActionListener, org.elasticsearch.common.util.concurrent.ListenableFuture, java.lang.String, org.elasticsearch.xpack.security.authc.ApiKeyService$CachedApiKeyHashResult)", "offset": 3}, "line": {"number": 881}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC0vPN"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/transport/client.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common/transport.(*Client).LocalAddr"}, "line": {"number": 156}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E1fYhCC-W9hkMRzkOdu22QAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.advance(int)", "offset": 1}, "line": {"number": 242}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cvKtJGgNPYlj-CA3c92J7wAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "FsDirectoryFactory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.elasticsearch.index.store.FsDirectoryFactory$HybridDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 10}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uJZrofYGiqBpYJJdGGtLHQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "RuntimeException.java"}, "function": {"name": "void java.lang.RuntimeException.(java.lang.String, java.lang.Throwable)"}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bsij8JYb_Ow0GSwmYI1N0gAAAAAAAABr"}} -{"Stackframe": {"file": {"name": "TransportBulkAction.java"}, "function": {"name": "void org.elasticsearch.action.bulk.TransportBulkAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.bulk.BulkRequest, org.elasticsearch.action.ActionListener)", "offset": 6}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nnCec0a2-ZcuYpnWUHHz2AAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 4}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ztj5Yc58Fi74AN4K12GxCQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.cluster.coordination.Coordinator$$Lambda$4873+0x0000000801fe6cb0.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ"}} -{"Stackframe": {"function": {"name": "m_show"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YegVEymiG8lw5t7wHfz6hwAAAAAAAABl"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.io.stream.StreamInput.readString()", "offset": 18}, "line": {"number": 443}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEMf"}} -{"Stackframe": {"function": {"name": "do_syscall_64"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uqwCsRNPiFKrqHYXLGpv-wAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "PerFieldPostingsFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsWriter.merge(org.apache.lucene.index.MergeState, org.apache.lucene.codecs.NormsProducer)", "offset": 8}, "line": {"number": 192}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m140cnmnDMXwCTqH-lotHAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$1.hasNext()"}, "line": {"number": 1676}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fbAbOZDzuuTLoVcDDlO2awAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "MemoryPoolImpl.java"}, "function": {"name": "javax.management.ObjectName sun.management.MemoryPoolImpl.getObjectName()"}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OJNgm7N9YyHDUhZhRRE9OAAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.successfulShardExecution(org.elasticsearch.action.search.SearchShardIterator)", "offset": 7}, "line": {"number": 503}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAEMfXs"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/module/system/network/network.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/module/system/network.(*MetricSet).GoString"}, "line": {"number": -1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H_PuNBZ2T3w752tR6SYTGgAAAAAAAAA_"}} -{"Stackframe": {"file": {"name": "RamUsageEstimator.java"}, "function": {"name": "long org.apache.lucene.util.RamUsageEstimator.shallowSizeOfInstance(java.lang.Class)", "offset": 12}, "line": {"number": 598}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ywRpFKHnyqIdEibpvZWLtAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "JsonReadContext.java"}, "function": {"name": "void com.fasterxml.jackson.core.json.JsonReadContext._checkDup(com.fasterxml.jackson.core.json.DupDetector, java.lang.String)"}, "line": {"number": 202}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FilterDirectory.deleteFile(java.lang.String)"}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACsg8W"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/actions/rename.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/actions.(*renameFields).Run"}, "line": {"number": 90}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xhOAoPbUvqtSdEcy7uoPXwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SelectorImpl.java"}, "function": {"name": "int sun.nio.ch.SelectorImpl.select()"}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NFoti7zeivEyGvfQ3_ANTgAAAAAAAAGU"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.engine.InternalEngine.index(org.elasticsearch.index.engine.Engine$Index)", "offset": 74}, "line": {"number": 990}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rRD3IAWNeA4GPRh7roh_BAAAAAAAAACR"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "int sun.nio.ch.FileChannelImpl.write(java.nio.ByteBuffer)", "offset": 16}, "line": {"number": 306}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXcSE"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/tracer.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.(*Tracer).StartMapMonitors.func2"}, "line": {"number": 1177}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "K24S1jUATvUFIEv3zAUZHgAAAAAAAAFQ"}} -{"Stackframe": {"file": {"name": "TaskManager.java"}, "function": {"name": "org.elasticsearch.tasks.Task org.elasticsearch.tasks.TaskManager.register(java.lang.String, java.lang.String, org.elasticsearch.tasks.TaskAwareRequest, boolean)", "offset": 30}, "line": {"number": 162}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l"}} -{"Stackframe": {"function": {"name": "filename_lookup"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pAJdtvbhFJyCiEJ26lbyGAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.addDocuments(java.lang.Iterable)"}, "line": {"number": 1504}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAAUHW"}} -{"Stackframe": {"file": {"name": "runtime/map_faststr.go"}, "function": {"name": "runtime.mapaccess1_faststr"}, "line": {"number": 100}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IIfTHMWc7TP15Dc2y8rocwAAAAAAAABG"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 3}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7IBmDOSH_dR0MHQWs_TXjQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.flushBuffer()", "offset": 1}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAC1YnE"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/queue/diskqueue/acks.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/queue/diskqueue.(*diskQueueACKs).addFrames"}, "line": {"number": 130}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WdP0jKvbSW-F3IXqFZzXpQAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$CachingAsyncSupplier.getAsync(org.elasticsearch.action.ActionListener)", "offset": 12}, "line": {"number": 1015}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASSNS"}} -{"Stackframe": {"function": {"name": "aa_dfa_match"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2uEWBluAjlG6YATEmwlaSAAAAAAAAAEi"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.IndexingChain.processDocument(int, java.lang.Iterable)", "offset": 50}, "line": {"number": 571}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeFlush()", "offset": 1}, "line": {"number": 907}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7brVxbd8D0tgw87ijWYE7gAAAAAAAADb"}} -{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.forwardFragments(org.elasticsearch.transport.TcpChannel, java.util.ArrayList)", "offset": 14}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DKW-i8K0WrMqnEk0kwNnYwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "PerFieldMergeState.java"}, "function": {"name": "void org.apache.lucene.codecs.perfield.PerFieldMergeState$FilterFieldsProducer.checkIntegrity()"}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALQ60"}} -{"Stackframe": {"function": {"name": "dentry_open"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2OqIxq9okDnhoWYrFU8L9gAAAAAAAAA_"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 63}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MwojP6II8_EGiMNSmdsFxAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$6565+0x0000000801cbd388.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Emp83XV0ORPGC9VjSudbcAAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 217}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk7XQ"}} -{"Stackframe": {"function": {"name": "netlink_rcv_skb"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HxwFNv8DwJmuLSpQ419gewAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedExceptionAction, java.security.AccessControlContext, java.lang.Class)", "offset": 5}, "line": {"number": 784}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLvgW"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/encode.go"}, "function": {"name": "encoding/json.mapEncoder.encode"}, "line": {"number": 801}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZDH4ZrfSeeQ_HQhbV8TcPQAAAAAAAADd"}} -{"Stackframe": {"file": {"name": "Timer.java"}, "function": {"name": "void java.util.TimerThread.mainLoop()", "offset": 32}, "line": {"number": 556}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zXMlTgtL55irR_wWhXKwuAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "PendingSoftDeletes.java"}, "function": {"name": "void org.apache.lucene.index.PendingSoftDeletes.ensureInitialized(org.apache.lucene.util.IOSupplier)", "offset": 1}, "line": {"number": 200}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uwoPmDSFFEAGC28V-_VbNwAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "HttpConnection.java"}, "function": {"name": "org.eclipse.jetty.server.HttpChannelOverHttp org.eclipse.jetty.server.HttpConnection.newHttpChannel()"}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA_b6"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.execute"}, "line": {"number": 2524}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BMe2lN-Yh_N_RcusQBaPPAAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "ByteBufferIndexInput.java"}, "function": {"name": "org.apache.lucene.store.ByteBufferIndexInput org.apache.lucene.store.ByteBufferIndexInput.clone()"}, "line": {"number": 404}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASg1G"}} -{"Stackframe": {"function": {"name": "profile_path_perm.part.9"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-Jct"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/auparse.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.(*AuditMessage).Data"}, "line": {"number": 104}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnKVp"}} -{"Stackframe": {"function": {"name": "unix_stream_sendmsg"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACXze7"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/mapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/common.mapFind"}, "line": {"number": 457}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkMo1"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).doScanf"}, "line": {"number": 1216}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nqpcbOZtBdInQqe7yr3UKgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "void java.util.ArrayList.(java.util.Collection)", "offset": 1}, "line": {"number": 181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXbY0"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/tracer.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.(*Tracer).monitorPIDEventsMap"}, "line": {"number": 1051}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vMJZLefDDDN7jSsJGIx5fAAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.addSortedSetField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 5}, "line": {"number": 759}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VV_tOlrSOt4YoMeLZbC6QAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "W3CTraceContextEncoding.java"}, "function": {"name": "io.opentelemetry.api.trace.TraceState io.opentelemetry.api.trace.propagation.internal.W3CTraceContextEncoding.decodeTraceState(java.lang.String)", "offset": 1}, "line": {"number": 43}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yr4X--AwYxsbC6m4-WPbMwAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "W3CTraceContextPropagator.java"}, "function": {"name": "void io.opentelemetry.api.trace.propagation.W3CTraceContextPropagator.inject(io.opentelemetry.context.Context, java.lang.Object, io.opentelemetry.context.propagation.TextMapSetter)", "offset": 5}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xb-AMoivB7u2Oz_cPaKU5QAAAAAAAABp"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 105}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BclABPaTGPcTz5H4BnHdywAAAAAAAABB"}} -{"Stackframe": {"file": {"name": "SdkTLSSocketFactory.java"}, "function": {"name": "java.net.Socket com.amazonaws.http.conn.ssl.SdkTLSSocketFactory.connectSocket(int, java.net.Socket, org.apache.http.HttpHost, java.net.InetSocketAddress, java.net.InetSocketAddress, org.apache.http.protocol.HttpContext)", "offset": 6}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WZoc9LDALgnb0WdOEBNL7gAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Settings.get(java.lang.String, java.lang.String)"}, "line": {"number": 231}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACil2o"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/sort/sort.go"}, "function": {"name": "sort.Sort"}, "line": {"number": 229}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QNZzHGnqskrqlEo3XdkqqwAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "IndicesQueryCache.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.elasticsearch.indices.IndicesQueryCache$CachingWeightWrapper.bulkScorer(org.apache.lucene.index.LeafReaderContext)", "offset": 1}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b_zn2wxYEJNQyu5arwWiUgAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$7028+0x0000000801e52388.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C2bcwNqql_gFwky6XpRggwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkRead(java.lang.String)"}, "line": {"number": 751}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpAY"}} -{"Stackframe": {"function": {"name": "filename_lookup"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6ACqmKWSUegYVOk5FRj2_AAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "ElasticsearchConcurrentMergeScheduler.java"}, "function": {"name": "void org.elasticsearch.index.engine.ElasticsearchConcurrentMergeScheduler.doMerge(org.apache.lucene.index.MergeScheduler$MergeSource, org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 17}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALUey"}} -{"Stackframe": {"function": {"name": "vfs_write"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEOE7"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map.go"}, "function": {"name": "runtime.makemap"}, "line": {"number": 311}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IJGZm_kDZxOYo3A2Fee1WQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "SSLCipher.java"}, "function": {"name": "sun.security.ssl.Plaintext sun.security.ssl.SSLCipher$T13GcmReadCipherGenerator$GcmReadCipher.decrypt(byte, java.nio.ByteBuffer, byte[])"}, "line": {"number": 1923}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KH5_QfKIKeUIlFImab-3OAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Collection.java"}, "function": {"name": "java.util.stream.Stream java.util.Collection.stream()"}, "line": {"number": 743}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9F2a_yzWrSmXRu6SZEKaiwAAAAAAAABd"}} -{"Stackframe": {"file": {"name": "IntakeV2ReportingEventHandler.java"}, "function": {"name": "void co.elastic.apm.agent.report.IntakeV2ReportingEventHandler.dispatchEvent(co.elastic.apm.agent.report.ReportingEvent, long, boolean)", "offset": 18}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "S5GNJ7rsUeVGePG_6A8S8gAAAAAAAABm"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.finishCommit()", "offset": 19}, "line": {"number": 3486}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZtfWODgA6w20T9TMv2NrwgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.lambda$applyInternal$3(java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 1}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgkUE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.markroot"}, "line": {"number": 177}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cMfqnb6mHe6lwomeyL_PcgAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "Lucene86SegmentInfoFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene86.Lucene86SegmentInfoFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 2}, "line": {"number": 153}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChGE8"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.findrunnable"}, "line": {"number": 2779}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M0HUcJIYlVV3vofrnZA_EQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.refreshIfNeeded(java.lang.Object)"}, "line": {"number": 341}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_RUQ8702rsuOcfHHin3xeQAAAAAAAABm"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "int sun.nio.ch.FileChannelImpl.read(java.nio.ByteBuffer, long)", "offset": 14}, "line": {"number": 959}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y8GNsuiR6IzsSj-GbWOIwwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.IndexWriter$1$$Lambda$5569+0x0000000801b705f0.process(org.apache.lucene.index.IndexWriter)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V6fcE1EsjMYG4ctzhztDBgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "CodecUtil.java"}, "function": {"name": "void org.apache.lucene.codecs.CodecUtil.writeFooter(org.apache.lucene.store.IndexOutput)", "offset": 2}, "line": {"number": 411}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_EVdVfyApPsVUy6u6pxduQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "Netty4TcpChannel.java"}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4TcpChannel.lambda$addPromise$1(org.elasticsearch.action.ActionListener, io.netty.util.concurrent.Future)", "offset": 1}, "line": {"number": 74}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QiTo58FObDGDVxhW5ylvXwAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "FileSystemUtils.java"}, "function": {"name": "java.nio.file.Path[] org.elasticsearch.common.io.FileSystemUtils.toArray(java.nio.file.DirectoryStream)"}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "c2nGYkSUqE3rxfTW8wK2fAAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "TransportMainAction.java"}, "function": {"name": "void org.elasticsearch.action.main.TransportMainAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.main.MainRequest, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 44}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACmHuG"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bufio/bufio.go"}, "function": {"name": "bufio.(*Reader).collectFragments"}, "line": {"number": 441}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yd6OSCVn-rYcvCrx8ZU3zQAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.internalSend(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.BytesReference, org.elasticsearch.transport.OutboundMessage, org.elasticsearch.action.ActionListener)", "offset": 6}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "90UIqO2n6jPWAsY9C7Jk5wAAAAAAAADq"}} -{"Stackframe": {"file": {"name": "GaloisCounterMode.java"}, "function": {"name": "int com.sun.crypto.provider.GaloisCounterMode$GCMEngine.doLastBlock(com.sun.crypto.provider.GaloisCounterMode$GCMOperation, java.nio.ByteBuffer, java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 46}, "line": {"number": 899}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEf-_"}} -{"Stackframe": {"function": {"name": "call_rcu"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O0jF3TifKLShZDrS9YtGjgAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService$6.handleResponse(org.elasticsearch.transport.TransportResponse)", "offset": 1}, "line": {"number": 633}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "24UJBfleeloBae8bP6cE0QAAAAAAAABC"}} -{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "void sun.security.ssl.SSLEngineImpl$DelegatedTask.run()", "offset": 8}, "line": {"number": 1192}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "y9r5AB5eu0abSELV1KFtjgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "boolean java.util.Collections$UnmodifiableCollection.contains(java.lang.Object)"}, "line": {"number": 1036}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2YIDsUvs1qcVI0bSlo-YUwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Rewriteable.java"}, "function": {"name": "void org.elasticsearch.index.query.Rewriteable.rewriteAndFetch(org.elasticsearch.index.query.Rewriteable, org.elasticsearch.index.query.QueryRewriteContext, org.elasticsearch.action.ActionListener)"}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yXWFMIbkwU7jqv0ggmjvVAAAAAAAAABH"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$consumeToken$17(org.elasticsearch.xpack.core.security.authc.AuthenticationToken, long, java.util.Map, org.elasticsearch.xpack.core.security.authc.Realm, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 478}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ciqEhcgmbAaZ5-wPT7iHYQAAAAAAAADG"}} -{"Stackframe": {"file": {"name": "PackedInts.java"}, "function": {"name": "org.apache.lucene.util.packed.PackedInts$FormatAndBits org.apache.lucene.util.packed.PackedInts.fastestFormatAndBits(int, int, float)", "offset": 28}, "line": {"number": 264}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EmratRDxeKcrsZYT5P-e9gAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.runReroutePhase(org.elasticsearch.tasks.Task, org.elasticsearch.action.support.replication.ReplicationRequest, org.elasticsearch.action.ActionListener, boolean)"}, "line": {"number": 227}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zrkZPFwCxB9V9Tn62C2GZQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$MetadataIndexWriter.commit()"}, "line": {"number": 530}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-uBq"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/reader.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.(*Reader).CgroupsVersion"}, "line": {"number": 155}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANt0M"}} -{"Stackframe": {"function": {"name": "task_dump_owner"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eU3FNtHcJBbn9h6Q-DiZ2AAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Spliterator.java"}, "function": {"name": "long java.util.Spliterator.getExactSizeIfKnown()"}, "line": {"number": 414}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EI2MlivQ_yGyq36LnLAGeQAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "LoggingHandler.java"}, "function": {"name": "void io.netty.handler.logging.LoggingHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 3}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UiUoRYGdR-DlFb1nVPjgzQAAAAAAAACN"}} -{"Stackframe": {"file": {"name": "TranslogWriter.java"}, "function": {"name": "void org.elasticsearch.index.translog.TranslogWriter.writeAndReleaseOps(org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 20}, "line": {"number": 544}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cuyNWlZFQkabnqdPXO_rXQAAAAAAAABN"}} -{"Stackframe": {"file": {"name": "Inflater.java"}, "function": {"name": "int java.util.zip.Inflater.inflate(byte[], int, int)", "offset": 12}, "line": {"number": 378}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "RestActions.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestActions$NodesResponseRestListener.buildResponse(java.lang.Object, org.elasticsearch.xcontent.XContentBuilder)"}, "line": {"number": 247}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAloik"}} -{"Stackframe": {"function": {"name": "tcp_event_new_data_sent"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LS1R7UgyIEin1lhHxRFFXwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.XContentBuilder.close()"}, "line": {"number": 1009}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZNYIIcZKEhelw-qPJkZowQAAAAAAAACy"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "void org.elasticsearch.common.settings.Settings.processSetting(java.util.Map, java.lang.String, java.lang.String, java.lang.Object)", "offset": 17}, "line": {"number": 171}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hi3CqQWpaFXK4L6DFCZgbwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "ConstructingObjectParser.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.ConstructingObjectParser.lambda$declareNamedObjects$6(int, org.elasticsearch.common.xcontent.ConstructingObjectParser$Target, java.util.List)"}, "line": {"number": 311}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgptE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcscavenge.go"}, "function": {"name": "runtime.(*pageAlloc).scavengeOne"}, "line": {"number": 697}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Gmz4msZ2ZDrLUqY2xbpOyQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportMainAction.java"}, "function": {"name": "void org.elasticsearch.action.main.TransportMainAction.doExecute(org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 24}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5Zs-CGA5xu2AVlc6Ce1rCgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "CachingUsernamePasswordRealm.java"}, "function": {"name": "boolean org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$CachedResult.verify(org.elasticsearch.common.settings.SecureString)"}, "line": {"number": 329}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "20wTwcQoP3KLWSoSTerwRwAAAAAAAACz"}} -{"Stackframe": {"file": {"name": "AbstractSpan.java"}, "function": {"name": "void co.elastic.apm.agent.impl.transaction.AbstractSpan.end(long)", "offset": 23}, "line": {"number": 569}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ol4NiJXXJMXv7q-6-A_O4QAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.reindex.WorkerBulkByScrollTaskState$DelayedPrepareBulkRequest$$Lambda$7090+0x0000000801e7c3e8.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rySGNEQySb7MA794oFUABwAAAAAAAACn"}} -{"Stackframe": {"file": {"name": "WatchParser.java"}, "function": {"name": "org.elasticsearch.xpack.core.watcher.watch.Watch org.elasticsearch.xpack.watcher.watch.WatchParser.parse(java.lang.String, boolean, org.elasticsearch.xpack.core.watcher.support.xcontent.WatcherXContentParser, long, long)", "offset": 21}, "line": {"number": 197}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8VQNjJHt4dBRU5VSN3KkiQAAAAAAAAEK"}} -{"Stackframe": {"file": {"name": "SegmentReader.java"}, "function": {"name": "void org.apache.lucene.index.SegmentReader.(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.index.SegmentReader, org.apache.lucene.util.Bits, org.apache.lucene.util.Bits, int, boolean)", "offset": 22}, "line": {"number": 139}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k5TkLEE2_KLOYiZzj3yZ9QAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 3}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O4PeelD0hmR0yiXQpUt-BAAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "RoutingTable.java"}, "function": {"name": "java.util.List org.elasticsearch.cluster.routing.RoutingTable.shardsWithState(org.elasticsearch.cluster.routing.ShardRoutingState)", "offset": 2}, "line": {"number": 181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L9gHiR-PvRIfigL5-mT1lAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "NettyAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf org.elasticsearch.transport.NettyAllocator$NoDirectBuffers.ioBuffer(int)"}, "line": {"number": 213}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IIfTHMWc7TP15Dc2y8rocwAAAAAAAABJ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 3}, "line": {"number": 157}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iH1rt2A0cDFvTr2IZcc8_wAAAAAAAACW"}} -{"Stackframe": {"file": {"name": "FieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.FieldsConsumer.merge(org.apache.lucene.index.MergeState, org.apache.lucene.codecs.NormsProducer)", "offset": 22}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAClatc"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/net/interface_linux.go"}, "function": {"name": "net.interfaceTable"}, "line": {"number": 27}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eBZv9AEe8LEuUNXk_42n2wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.cluster.node.info.NodeInfo$$Lambda$7474+0x000000080254caa8.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Al_h9gC68463XnWmby4-QgAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer.commit(long, long, org.elasticsearch.Version)", "offset": 2}, "line": {"number": 1152}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hYtZ-8uhAXJ4TLd-aq9ldwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "SearchSourceBuilder.java"}, "function": {"name": "java.lang.Object org.elasticsearch.search.builder.SearchSourceBuilder.rewrite(org.elasticsearch.index.query.QueryRewriteContext)"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACu6lr"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/syntax/parse.go"}, "function": {"name": "regexp/syntax.appendLiteral"}, "line": {"number": 1715}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cilUhzLRe6BxU3ZAi1NCYgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "java.lang.Object org.elasticsearch.action.search.TransportSearchAction$4.createFinalResponse()"}, "line": {"number": 741}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-QhM"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.CoalesceMessages"}, "line": {"number": 205}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "s32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "HttpRequestExecutor.java"}, "function": {"name": "org.apache.http.HttpResponse org.apache.http.protocol.HttpRequestExecutor.execute(org.apache.http.HttpRequest, org.apache.http.HttpClientConnection, org.apache.http.protocol.HttpContext)", "offset": 6}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAEnha"}} -{"Stackframe": {"file": {"name": "bufio/bufio.go"}, "function": {"name": "bufio.(*Reader).Read"}, "line": {"number": 237}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mZ6pM0OEbp3JJIi6QUyNsQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.read(java.io.FileDescriptor, java.nio.ByteBuffer, long, sun.nio.ch.NativeDispatcher)"}, "line": {"number": 268}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sGMl0uQdZmivfjDBknufQQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndexInput.java"}, "function": {"name": "org.apache.lucene.store.RandomAccessInput org.apache.lucene.store.IndexInput.randomAccessSlice(long, long)"}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgrYv"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcsweep.go"}, "function": {"name": "runtime.(*mspan).ensureSwept"}, "line": {"number": 428}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qKrM4v33j8Ui9JyIz2QXDgAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.List org.elasticsearch.common.xcontent.support.AbstractXContentParser.readListUnsafe(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier)", "offset": 3}, "line": {"number": 361}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iit9TEPWxIcbSUSJseypHwAAAAAAAACI"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 22}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "69a10viRFR3AXhPlmNm3-wAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.search.ClearScrollController$$Lambda$8501+0x0000000802771748.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HFnb_IVy4MjK7Vjuq2DN6gAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 1}, "line": {"number": 54}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-LR1"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/auparse.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.enrichData"}, "line": {"number": 457}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "stZinI9hO0TLC6i8zDKuigAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard$6.write(java.util.List)"}, "line": {"number": 3621}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction$1.handleResponse(org.elasticsearch.action.support.nodes.BaseNodeResponse)"}, "line": {"number": 191}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ibOgWMru0lEQy3d0V2jxaAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "BulkShardRequest.java"}, "function": {"name": "org.elasticsearch.action.bulk.BulkItemRequest org.elasticsearch.action.bulk.BulkShardRequest.lambda$new$1(org.elasticsearch.index.shard.ShardId, org.elasticsearch.common.io.stream.StreamInput)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT"}} -{"Stackframe": {"function": {"name": "wake_up_q"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABCwr"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.exitsyscallfast_pidle"}, "line": {"number": 3913}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fpY3a5I7d2TNV30MyBAVjAAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "ES85BloomFilterPostingsFormat.java"}, "function": {"name": "void org.elasticsearch.index.codec.bloomfilter.ES85BloomFilterPostingsFormat$FieldsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)"}, "line": {"number": 145}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB"}} -{"Stackframe": {"function": {"name": "seq_read"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mABShI7f7tic8wvc-ikJJAAAAAAAAABZ"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateListener(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.common.StopWatch, java.util.Collection)", "offset": 4}, "line": {"number": 515}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YGmNZ8E6uBNr-BxhHT7jPQAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "DocumentsWriterFlushQueue.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriterFlushQueue.innerPurge(org.apache.lucene.util.IOUtils$IOConsumer)", "offset": 16}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mEZ3CJcb_VMlpS4-WOOObwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "java.nio.channels.FileChannel sun.nio.ch.FileChannelImpl.open(java.io.FileDescriptor, java.lang.String, boolean, boolean, boolean, java.lang.Object)"}, "line": {"number": 151}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qkXC9AzfY8U3Ryc9g3OFDAAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "AbstractHttpServerTransport.java"}, "function": {"name": "void org.elasticsearch.http.AbstractHttpServerTransport.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, java.lang.Throwable)", "offset": 5}, "line": {"number": 329}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OZbqb4tQmA5EHMDCsCNqZwAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "DateTimeFormatterBuilder.java"}, "function": {"name": "int java.time.format.DateTimeFormatterBuilder$CompositePrinterParser.parse(java.time.format.DateTimeParseContext, java.lang.CharSequence, int)", "offset": 4}, "line": {"number": 2544}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dLwWk1CGjdl0nWT4XrDcdgAAAAAAAACS"}} -{"Stackframe": {"file": {"name": "Deflater.java"}, "function": {"name": "int java.util.zip.Deflater.deflate(byte[], int, int, int)", "offset": 27}, "line": {"number": 586}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACxERK"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-sysinfo@v1.7.1/providers/linux/host_linux.go"}, "function": {"name": "github.com/elastic/go-sysinfo/providers/linux.(*reader).time"}, "line": {"number": 224}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAApQKj"}} -{"Stackframe": {"function": {"name": "strchr"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Z0TAJMiD_AqT3npr7YiRAgAAAAAAAAH4"}} -{"Stackframe": {"file": {"name": "ReadersAndUpdates.java"}, "function": {"name": "void org.apache.lucene.index.ReadersAndUpdates.handleDVUpdates(org.apache.lucene.index.FieldInfos, org.apache.lucene.store.Directory, org.apache.lucene.codecs.DocValuesFormat, org.apache.lucene.index.SegmentReader, java.util.Map, long, org.apache.lucene.util.InfoStream)", "offset": 105}, "line": {"number": 397}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fB-E1mu6hJEFot7jB8X5ywAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "NioEventLoop.java"}, "function": {"name": "void io.netty.channel.nio.NioEventLoop.processSelectedKeys()", "offset": 3}, "line": {"number": 652}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NK6q-mYZhWe1E7afoKkwiQAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.doHandleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 11}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pD64Y8dYs0KzJcRfejjvpQAAAAAAAAGx"}} -{"Stackframe": {"file": {"name": "InboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.InboundHandler.handleRequest(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.Header, org.elasticsearch.transport.InboundMessage)", "offset": 48}, "line": {"number": 201}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xz8R4MTaPzD1CrgkfDi_QwAAAAAAAACD"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.IndexedDISI.flush(int, org.apache.lucene.util.FixedBitSet, int, byte, org.apache.lucene.store.IndexOutput)", "offset": 11}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-t39"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/reader.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.(*Reader).CgroupsVersion"}, "line": {"number": 137}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6hwCzvT6Vb_QLcKzOacpsAAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "JdkZlibEncoder.java"}, "function": {"name": "void io.netty.handler.codec.compression.JdkZlibEncoder.deflate(io.netty.buffer.ByteBuf)", "offset": 6}, "line": {"number": 373}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACG1Hu"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/stat.go"}, "function": {"name": "os.Stat"}, "line": {"number": 13}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gFA-ze8k4pgKqXyEpi4f1wAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "java.util.Map org.elasticsearch.reindex.AbstractAsyncBulkByScrollAction$IndexRequestWrapper.getSource()"}, "line": {"number": 714}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_vlpQDle5dcOpop8VnX1jAAAAAAAAAC5"}} -{"Stackframe": {"file": {"name": "TransportContext.java"}, "function": {"name": "void sun.security.ssl.TransportContext.kickstart()", "offset": 33}, "line": {"number": 232}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$1.onResponse(java.lang.Object)"}, "line": {"number": 571}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAInNq"}} -{"Stackframe": {"function": {"name": "do_writepages"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8NDDGpC6h_glZsYGhl3bbQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorize(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.action.ActionListener)"}, "line": {"number": 170}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi08L"}} -{"Stackframe": {"function": {"name": "consume_skb"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4pSviAR1XzzZ-pI5X9ouxwAAAAAAAADx"}} -{"Stackframe": {"file": {"name": "Provider.java"}, "function": {"name": "java.lang.Object java.security.Provider$Service.newInstance(java.lang.Object)", "offset": 37}, "line": {"number": 1820}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "m_vFRi2fRRTLPHNf1t7ZcQAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 1}, "line": {"number": 517}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YhLUfql-5LQM_JtfSo3-RwAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$6052+0x0000000801b0fde8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n1i5t45JYTVEWNvzb7yGTwAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "RestNodesInfoAction.java"}, "function": {"name": "void org.elasticsearch.rest.action.admin.cluster.RestNodesInfoAction.lambda$prepareRequest$0(org.elasticsearch.client.internal.node.NodeClient, org.elasticsearch.action.admin.cluster.node.info.NodesInfoRequest, org.elasticsearch.rest.RestChannel)"}, "line": {"number": 58}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "O9_JyaRKYBdkJrY8OUa6igAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "DisjunctionDISIApproximation.java"}, "function": {"name": "int org.apache.lucene.search.DisjunctionDISIApproximation.nextDoc()", "offset": 3}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "NiDnLg20WKoGqpOxgFc5-AAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.AbstractChannelHandlerContext io.netty.channel.AbstractChannelHandlerContext.findContextInbound(int)", "offset": 4}, "line": {"number": 1057}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a0W4SIobOysiPgaw1gv_JAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$8627+0x000000080279b0f0.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eiEAvRyyg7Q8ghJd6qO4ZQAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "SingleThreadEventExecutor.java"}, "function": {"name": "boolean io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(long)", "offset": 11}, "line": {"number": 469}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LqiOes3kysZtBc8totbsBAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "void sun.nio.fs.UnixNativeDispatcher.lstat0(long, sun.nio.fs.UnixFileAttributes)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I0USoma0OWjdGMGSaTNhgQAAAAAAAABU"}} -{"Stackframe": {"file": {"name": "Weight.java"}, "function": {"name": "int org.apache.lucene.search.Weight$DefaultBulkScorer.scoreRange(org.apache.lucene.search.LeafCollector, org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.search.TwoPhaseIterator, org.apache.lucene.util.Bits, int, int)", "offset": 13}, "line": {"number": 262}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_l0ywV2XZnYFamIDDP8kMQAAAAAAAADS"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.updateShardState(org.elasticsearch.cluster.routing.ShardRouting, long, java.util.function.BiConsumer, long, java.util.Set, org.elasticsearch.cluster.routing.IndexShardRoutingTable)", "offset": 18}, "line": {"number": 475}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "k1Dv3_XvAB6SsR0npdQeVgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "DocumentsWriter.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriter.purgeFlushTickets(boolean, org.apache.lucene.util.IOConsumer)", "offset": 3}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QBjfr5WcoAiicl019DqgDwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeList(java.util.List)"}, "line": {"number": 1148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "12wqq0CZSFWXQTyNvq7lawAAAAAAAACX"}} -{"Stackframe": {"file": {"name": "SoftDeletesRetentionMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.SoftDeletesRetentionMergePolicy.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.util.IOSupplier)", "offset": 13}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4Nbh2qu5FSYDYvePocfslwAAAAAAAABc"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)", "offset": 20}, "line": {"number": 1130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ULUcmJP7eCRtN2QDQ-fZtAAAAAAAAADd"}} -{"Stackframe": {"file": {"name": "ResizeRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.ResizeRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 39}, "line": {"number": 85}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iTk93rUXKUXkw5crMY_togAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard.sync(org.elasticsearch.index.translog.Translog$Location, java.util.function.Consumer)", "offset": 1}, "line": {"number": 3322}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nob3zMVK_yh-lnKj6J3qXwAAAAAAAABd"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.doNext(int)", "offset": 18}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7vbDea8YrHNc_wHLzDnfJgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$4449.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABNSE"}} -{"Stackframe": {"file": {"name": "runtime/signal_unix.go"}, "function": {"name": "runtime.sighandler"}, "line": {"number": 668}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HendR2k2A3kZgzQL6qeENgAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "AbstractLogger.java"}, "function": {"name": "void org.apache.logging.log4j.spi.AbstractLogger.logMessageTrackRecursion(java.lang.String, org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message, java.lang.Throwable)", "offset": 1}, "line": {"number": 2159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RsvOFqC3SNzn_pRUkwD1yQAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler$$Lambda$4544+0x000000080182cc40.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "h9KApxIztAVSR1ja67Q3vQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "TransportIndicesStatsAction.java"}, "function": {"name": "void org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation(org.elasticsearch.action.admin.indices.stats.IndicesStatsRequest, org.elasticsearch.cluster.routing.ShardRouting, org.elasticsearch.tasks.Task, org.elasticsearch.action.ActionListener)"}, "line": {"number": 91}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0woP3yhr02RmQR1xlVHsQAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "SocketOutputStream.java"}, "function": {"name": "void java.net.SocketOutputStream.socketWrite0(java.io.FileDescriptor, byte[], int, int)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ckdRYj6mGdEYJvYh_1v9CAAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "TransportNodesAction.java"}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived(org.elasticsearch.action.support.nodes.BaseNodeRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 3}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uwSrGXrIlilHG9LeAbu8sgAAAAAAAABG"}} -{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.lambda$consumeToken$4(org.elasticsearch.xpack.core.security.authc.AuthenticationToken, java.util.concurrent.atomic.AtomicReference, java.util.concurrent.atomic.AtomicReference, long, org.elasticsearch.xpack.security.authc.Authenticator$Context, java.util.Map, org.elasticsearch.xpack.core.security.authc.Realm, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 147}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACL74l"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/encode.go"}, "function": {"name": "encoding/json.mapEncoder.encode-fm"}, "line": {"number": 777}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PNgkS6gFWkrg6dMJKBlaswAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "boolean org.elasticsearch.common.xcontent.json.JsonXContentGenerator.inRoot()"}, "line": {"number": 134}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAANPk"}} -{"Stackframe": {"file": {"name": "runtime/lock_futex.go"}, "function": {"name": "runtime.notetsleep_internal"}, "line": {"number": 203}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hYJDXHe_tXWd6FUCpAvLJAAAAAAAAABE"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.parseObject(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, java.lang.String)", "offset": 9}, "line": {"number": 469}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ChyioBo-0KiAkz_RZsDsgAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ByteBufferIndexInput.java"}, "function": {"name": "byte org.apache.lucene.store.ByteBufferIndexInput.readByte()"}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2uEWBluAjlG6YATEmwlaSAAAAAAAAAEI"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "void org.apache.lucene.index.IndexingChain.processDocument(int, java.lang.Iterable)", "offset": 45}, "line": {"number": 566}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fxhAZVfrZSTvh4Ktxrpz7AAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "DisiPriorityQueue.java"}, "function": {"name": "org.apache.lucene.search.DisiWrapper org.apache.lucene.search.DisiPriorityQueue.updateTop()"}, "line": {"number": 119}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1i"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/asm_amd64.s"}, "function": {"name": "runtime.systemstack"}, "line": {"number": 373}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE_n2"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.schedule"}, "line": {"number": 2683}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5EX4bVVsmau4bCWHl4lx7gAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "Pattern.java"}, "function": {"name": "java.util.regex.Pattern$BitClass java.util.regex.Pattern$BitClass.add(int, int)", "offset": 3}, "line": {"number": 3511}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pSVcwHLkS-nxPYoJIIKFcQAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "Iterator.java"}, "function": {"name": "void java.util.Iterator.forEachRemaining(java.util.function.Consumer)", "offset": 2}, "line": {"number": 133}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ba23Sz2WIr-h3_3ywbXOAwAAAAAAAACY"}} -{"Stackframe": {"file": {"name": "TransportNodesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.stats.NodeStats org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation(org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction$NodeStatsRequest, org.elasticsearch.tasks.Task)", "offset": 4}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rOOdiLJX-1B7cLCvfMwHQQAAAAAAAAB2"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.authorizeAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 14}, "line": {"number": 395}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3h9ERuTySl5lKBwueq3lUgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "AbstractIntakeApiHandler.java"}, "function": {"name": "void co.elastic.apm.agent.report.AbstractIntakeApiHandler.endRequest()"}, "line": {"number": 163}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3XRljQhmLtSF3NXlsJwKOQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesProducer.java"}, "function": {"name": "long org.apache.lucene.codecs.lucene80.Lucene80DocValuesProducer$4.longValue()"}, "line": {"number": 539}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2oeSW9BMt2zZqP7i-3UsNAAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "SslHandler.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult io.netty.handler.ssl.SslHandler$SslEngineType$3.unwrap(io.netty.handler.ssl.SslHandler, io.netty.buffer.ByteBuf, int, io.netty.buffer.ByteBuf)", "offset": 3}, "line": {"number": 298}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ydGLSNwrZw-nu2sK1xpAIwAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard$7.write(java.util.List)"}, "line": {"number": 3731}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AiqU5uyyFhqXM3u-rAXm5gAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "RetryListener.java"}, "function": {"name": "void org.elasticsearch.index.reindex.RetryListener.onResponse(org.elasticsearch.index.reindex.ScrollableHitSource$Response)"}, "line": {"number": 41}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_qHZjL0mDC0dEXs_JSKQ0QAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "BytesRefBuilder.java"}, "function": {"name": "void org.apache.lucene.util.BytesRefBuilder.grow(int)"}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.authenticateAsync(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 21}, "line": {"number": 93}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nIOgveIKxj-h480kaCAkPQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Log4jContextFactory.java"}, "function": {"name": "org.apache.logging.log4j.core.LoggerContext org.apache.logging.log4j.core.impl.Log4jContextFactory.getContext(java.lang.String, java.lang.ClassLoader, java.lang.Object, boolean)"}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xWXbvqcob2cyNB-_TJKbYQAAAAAAAABZ"}} -{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "long org.apache.lucene.index.DocumentsWriterPerThread.updateDocuments(java.lang.Iterable, org.apache.lucene.index.DocumentsWriterDeleteQueue$Node, org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 16}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xNgBHgNqPNx9KViH_BIZBQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "LinkedHashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.LinkedHashMap.newNode(int, java.lang.Object, java.lang.Object, java.util.HashMap$Node)"}, "line": {"number": 257}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChsYy"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/netpoll.go"}, "function": {"name": "internal/poll.runtime_pollClose"}, "line": {"number": 254}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dxSK3xE1ZB_w58ylB87r2QAAAAAAAABp"}} -{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment org.apache.lucene.index.DocumentsWriterPerThread.flush(org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 4}, "line": {"number": 313}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3FAwHepaXASSavPbdTvCJAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeCollection(java.util.Collection)"}, "line": {"number": 1141}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B_IRgbCQC1IPEoVkHKMOTwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "LifecycleExecutionState.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecycleExecutionState org.elasticsearch.xpack.core.ilm.LifecycleExecutionState.fromIndexMetadata(org.elasticsearch.cluster.metadata.IndexMetadata)", "offset": 2}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi_d6"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/dir_unix.go"}, "function": {"name": "os.(*file).close"}, "line": {"number": 39}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZPj7hBwVwBgbmIyyLEMkNgAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "ParentTaskAssigningClient.java"}, "function": {"name": "void org.elasticsearch.client.ParentTaskAssigningClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 1}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CAYdtG0jGNYNtTA31gKoPAAAAAAAAABd"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 93}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGlIT"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/internal/poll/fd_fsync_posix.go"}, "function": {"name": "internal/poll.(*FD).Fsync"}, "line": {"number": 17}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JQMmJE_F9NfX8W1cx_V9pQAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "Logger.java"}, "function": {"name": "void org.apache.logging.log4j.core.Logger.logMessage(java.lang.String, org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message, java.lang.Throwable)", "offset": 2}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vOYsgO356rKWtYMDmDOhZwAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.xcontent.support.AbstractXContentParser$$Lambda$2719.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VAvNZVNEQJ7DRi6-LAWxKAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "MappedMultiFields.java"}, "function": {"name": "org.apache.lucene.index.TermsEnum org.apache.lucene.index.MappedMultiFields$MappedMultiTerms.iterator()"}, "line": {"number": 65}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JIJ67u_XI4-jnSyBIeegBAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "MappingMetadata.java"}, "function": {"name": "java.util.Map org.elasticsearch.cluster.metadata.MappingMetadata.sourceAsMap()"}, "line": {"number": 137}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UlLH1TtX81jau37svfBqgQAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelHandlerContext io.netty.channel.AbstractChannelHandlerContext.flush()", "offset": 3}, "line": {"number": 893}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnNIk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/math/big/nat.go"}, "function": {"name": "math/big.nat.expNNMontgomery"}, "line": {"number": 1063}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DMn9FojdV2izTQoAtfh_iwAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain$$Lambda$6566+0x0000000802411d80.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JLnEXoQY4hlx9fukF3_nfgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.map(java.util.Map)"}, "line": {"number": 1027}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "f7zfB261PmeVR0CVV6m2gAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "UnixNativeDispatcher.java"}, "function": {"name": "boolean sun.nio.fs.UnixNativeDispatcher.exists(sun.nio.fs.UnixPath)", "offset": 2}, "line": {"number": 493}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAANyhU"}} -{"Stackframe": {"function": {"name": "proc_readfd_common"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.lambda$executeQueryPhase$2(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)"}, "line": {"number": 416}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Vp62M-dk3XvfozDfnsnw9gAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6DlfVVNLUXbaT-YVLc5a8QAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "RecyclerBytesStreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.RecyclerBytesStreamOutput.writeBytes(byte[], int, int)"}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAC2kn"}} -{"Stackframe": {"file": {"name": "syscall/syscall_linux.go"}, "function": {"name": "syscall.Syscall"}, "line": {"number": 81}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WwLAq-OugYSy1Dj8k1-JewAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "org.apache.http.client.methods.HttpRequestBase com.amazonaws.http.AmazonHttpClient$RequestExecutor$ExecOneRequestParams.newApacheRequest(com.amazonaws.http.request.HttpRequestFactory, com.amazonaws.Request, com.amazonaws.http.settings.HttpClientSettings)"}, "line": {"number": 1946}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9FEV2SdJQpWoSqrehupKgQAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.shard.IndexShard.applyIndexOperationOnPrimary(long, org.elasticsearch.index.VersionType, org.elasticsearch.index.mapper.SourceToParse, long, long, long, boolean)", "offset": 1}, "line": {"number": 899}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MHOHZ9dur_p0OUPsIclbdwAAAAAAAABQ"}} -{"Stackframe": {"file": {"name": "PushPostingsWriterBase.java"}, "function": {"name": "org.apache.lucene.codecs.BlockTermState org.apache.lucene.codecs.PushPostingsWriterBase.writeTerm(org.apache.lucene.util.BytesRef, org.apache.lucene.index.TermsEnum, org.apache.lucene.util.FixedBitSet, org.apache.lucene.codecs.NormsProducer)", "offset": 12}, "line": {"number": 132}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzYv"}} -{"Stackframe": {"function": {"name": "audit_filter_syscall.constprop.19"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACjCA5"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/file_posix.go"}, "function": {"name": "os.statNolog"}, "line": {"number": 246}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Pyr97kasv6HR5lCuwdxIZgAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.support.CachingUsernamePasswordRealm$$Lambda$6986+0x0000000801e501f0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H1Egn-EFpe1RJwfUvO2vAAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "Cleaner.java"}, "function": {"name": "void jdk.internal.ref.Cleaner.clean()", "offset": 3}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABqjy"}} -{"Stackframe": {"file": {"name": "runtime/sys_linux_amd64.s"}, "function": {"name": "runtime.nanotime1"}, "line": {"number": 270}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5vj2qWMYXopIAHMeOOhgxAAAAAAAAAGC"}} -{"Stackframe": {"file": {"name": "DiscoveryNode.java"}, "function": {"name": "void org.elasticsearch.cluster.node.DiscoveryNode.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 31}, "line": {"number": 332}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACYgf"}} -{"Stackframe": {"function": {"name": "copy_process"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlFfH"}} -{"Stackframe": {"function": {"name": "ip_route_input_noref"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAClha"}} -{"Stackframe": {"function": {"name": "ns_capable_common"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pGnazsZ860KF5mJkmXxBtQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "io.netty.channel.ChannelPipeline io.netty.channel.DefaultChannelPipeline.read()"}, "line": {"number": 1004}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNG"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/reader.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.(*Reader).GetV1StatsForProcess"}, "line": {"number": 185}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "r9OM5jF9DDFNzREd89kE1QAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.xcontent.XContentBuilder.close()"}, "line": {"number": 1235}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iit9TEPWxIcbSUSJseypHwAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.write(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 1}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o-BIkkl-h7WSo_nEcXjOQQAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "NioSocketImpl.java"}, "function": {"name": "int sun.nio.ch.NioSocketImpl.read(byte[], int, int)", "offset": 11}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlqKz"}} -{"Stackframe": {"function": {"name": "__tcp_transmit_skb"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgkRW"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.markroot"}, "line": {"number": 200}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.refreshIfNeeded(java.lang.Object)"}, "line": {"number": 350}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLsmn"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/encode.go"}, "function": {"name": "encoding/json.(*encodeState).reflectValue"}, "line": {"number": 359}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yHHuqycCveqeSns0YOs2BAAAAAAAAABY"}} -{"Stackframe": {"file": {"name": "Authentication.java"}, "function": {"name": "void org.elasticsearch.xpack.core.security.authc.Authentication.writeTo(org.elasticsearch.common.io.stream.StreamOutput)", "offset": 11}, "line": {"number": 466}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZVcJW-QBFuC0ZqcN2G8RXQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 2}, "line": {"number": 664}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GRx4elZZ5Xpl6qP-vsIkdgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.store.StoreStats org.elasticsearch.index.shard.IndexShard.storeStats()"}, "line": {"number": 1032}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACIV3k"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/strings.go"}, "function": {"name": "strings.Replace"}, "line": {"number": 937}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MJcsrhwAFXYIvzoys3GDvAAAAAAAAAGQ"}} -{"Stackframe": {"file": {"name": "HttpContentEncoder.java"}, "function": {"name": "void io.netty.handler.codec.http.HttpContentEncoder.encode(io.netty.channel.ChannelHandlerContext, io.netty.handler.codec.http.HttpObject, java.util.List)", "offset": 82}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1"}} -{"Stackframe": {"file": {"name": "TieredMergePolicy.java"}, "function": {"name": "java.util.List org.apache.lucene.index.TieredMergePolicy.getSortedBySegmentSize(org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 5}, "line": {"number": 295}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "TransportShardRefreshAction.java"}, "function": {"name": "org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaResult org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction.lambda$shardOperationOnReplica$1(org.elasticsearch.index.shard.IndexShard)"}, "line": {"number": 61}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3HYeSFaP4bm-Z2NSJub6sAAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "ExponentionallyIncreasingSleepingWaitStrategy.java"}, "function": {"name": "long co.elastic.apm.agent.report.disruptor.ExponentionallyIncreasingSleepingWaitStrategy.waitFor(long, com.lmax.disruptor.Sequence, com.lmax.disruptor.Sequence, com.lmax.disruptor.SequenceBarrier)", "offset": 3}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YoBRvyLd18NJezoAzYDBWgAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "LifecyclePolicyUtils.java"}, "function": {"name": "org.elasticsearch.common.bytes.BytesReference org.elasticsearch.xpack.core.ilm.LifecyclePolicyUtils.load(java.lang.String)"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DaLOu1u8r2OzUEp60ph7fAAAAAAAAABk"}} -{"Stackframe": {"file": {"name": "DocumentParser.java"}, "function": {"name": "void org.elasticsearch.index.mapper.DocumentParser.innerParseObject(org.elasticsearch.index.mapper.DocumentParserContext, org.elasticsearch.index.mapper.ObjectMapper, org.elasticsearch.xcontent.XContentParser, java.lang.String, org.elasticsearch.xcontent.XContentParser$Token)", "offset": 11}, "line": {"number": 502}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "hlKDzMS4nmygKgJXIbJdqgAAAAAAAAB7"}} -{"Stackframe": {"file": {"name": "SearchService.java"}, "function": {"name": "org.elasticsearch.search.SearchPhaseResult org.elasticsearch.search.SearchService.executeQueryPhase(org.elasticsearch.search.internal.ShardSearchRequest, org.elasticsearch.action.search.SearchShardTask)", "offset": 12}, "line": {"number": 451}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VLNKXRlo71TPwzNBwGNhEQAAAAAAAADa"}} -{"Stackframe": {"file": {"name": "ES85BloomFilterPostingsFormat.java"}, "function": {"name": "void org.elasticsearch.index.codec.bloomfilter.ES85BloomFilterPostingsFormat$FieldsWriter.writePostings(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 15}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZvnSEZ6hxckmxa-z2abTjwAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "Strings.java"}, "function": {"name": "java.util.Set org.elasticsearch.common.Strings.commaDelimitedListToSet(java.lang.String)", "offset": 1}, "line": {"number": 539}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_IhPXrChwahxbJ63NZZANQAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6510+0x00000008023c3890.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZU5AuXlgdgIyHSjGyxSQTQAAAAAAAADn"}} -{"Stackframe": {"file": {"name": "BitsetFilterCache.java"}, "function": {"name": "org.elasticsearch.index.IndexWarmer$TerminationHandle org.elasticsearch.index.cache.bitset.BitsetFilterCache$BitSetProducerWarmer.warmReader(org.elasticsearch.index.shard.IndexShard, org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)", "offset": 20}, "line": {"number": 249}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ggf9kW-zoddyVYpEp-cnZAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "OneMergeWrappingMergePolicy.java"}, "function": {"name": "org.apache.lucene.index.MergePolicy$MergeSpecification org.apache.lucene.index.OneMergeWrappingMergePolicy.findMerges(org.apache.lucene.index.MergeTrigger, org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACnzWE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "encoding/json.(*encodeState).ReadFrom"}, "line": {"number": 1}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXVBs"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer/events.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.(*Tracer).processPIDMappings"}, "line": {"number": 112}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tpSvHuTpNaDxbDVGboxz7gAAAAAAAABT"}} -{"Stackframe": {"file": {"name": "SearchHits.java"}, "function": {"name": "void org.elasticsearch.search.SearchHits.(org.elasticsearch.common.io.stream.StreamInput)", "offset": 14}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OXXUWi3HnGXyNYANATzbXgAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "IndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.IndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 3}, "line": {"number": 242}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALm6B"}} -{"Stackframe": {"function": {"name": "path_openat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1S0MJndmjVXQH2LytrGE-QAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "org.elasticsearch.index.merge.MergeStats org.elasticsearch.index.shard.IndexShard.mergeStats()"}, "line": {"number": 1322}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GHHpN5Gh_olxRYjhH9GfeQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController$ResourceHandlingHttpChannel.sendResponse(org.elasticsearch.rest.RestResponse)", "offset": 3}, "line": {"number": 760}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bcZVdmCVQZDECINuyQR_7AAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$authenticateAsync$2(org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 2}, "line": {"number": 323}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RJDxTVlP24il9iEEPCo5ZwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "TransportShardRefreshAction.java"}, "function": {"name": "org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaResult org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction.lambda$shardOperationOnReplica$1(org.elasticsearch.index.shard.IndexShard)"}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bCBdTuDS0DbCDGTJHRgQHgAAAAAAAACK"}} -{"Stackframe": {"file": {"name": "Lucene50CompoundFormat.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene50.Lucene50CompoundFormat.write(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, org.apache.lucene.store.IOContext)", "offset": 14}, "line": {"number": 90}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiwWt"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/internal/poll/fd_unix.go"}, "function": {"name": "internal/poll.(*FD).SetBlocking"}, "line": {"number": 123}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXe87"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracehandler/tracehandler.go"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracehandler.Start.func1"}, "line": {"number": 312}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rXkHFJHXlVwu4t25QPtmYgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "AbstractSearchAsyncAction.java"}, "function": {"name": "void org.elasticsearch.action.search.AbstractSearchAsyncAction.executePhase(org.elasticsearch.action.search.SearchPhase)"}, "line": {"number": 424}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA9XS"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.mstart1"}, "line": {"number": 1425}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "TieredMergePolicy.java"}, "function": {"name": "org.apache.lucene.index.MergePolicy$MergeSpecification org.apache.lucene.index.TieredMergePolicy.findMerges(org.apache.lucene.index.MergeTrigger, org.apache.lucene.index.SegmentInfos, org.apache.lucene.index.MergePolicy$MergeContext)", "offset": 10}, "line": {"number": 323}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3HqvwpVK0RI_JfUC7AjGxgAAAAAAAABo"}} -{"Stackframe": {"file": {"name": "TransportWriteAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportWriteAction$AsyncAfterWriteAction.run()", "offset": 15}, "line": {"number": 504}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7NLXRYAsb_z9eb6-ioJ6zAAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.lambda$innerRun$2(org.elasticsearch.action.search.SearchPhaseController$ReducedQueryPhase, boolean)"}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACELQU"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/lock_futex.go"}, "function": {"name": "runtime.notetsleep"}, "line": {"number": 224}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOlt"}} -{"Stackframe": {"function": {"name": "inet_recvmsg"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEyVE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/time_nofake.go"}, "function": {"name": "runtime.netpollBreak"}, "line": {"number": 30}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAABa4J"}} -{"Stackframe": {"function": {"name": "xfs_end_ioend"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "ContextPreservingActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.ContextPreservingActionListener.onResponse(java.lang.Object)", "offset": 1}, "line": {"number": 31}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yaURufsFaYOdqMggV7gqrQAAAAAAAABF"}} -{"Stackframe": {"file": {"name": "BulkProcessor.java"}, "function": {"name": "void org.elasticsearch.action.bulk.BulkProcessor.internalAdd(org.elasticsearch.action.DocWriteRequest)", "offset": 11}, "line": {"number": 472}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EI5wLwdv0nxJGTj51HGsnwAAAAAAAABp"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 105}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lVsyFuscOmHlqElG78Lw6AAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "PriorityQueue.java"}, "function": {"name": "void org.apache.lucene.util.PriorityQueue.downHeap(int)", "offset": 6}, "line": {"number": 270}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SAcr2k56H-0uXVdYyC2m8AAAAAAAAAB7"}} -{"Stackframe": {"file": {"name": "AbstractMap.java"}, "function": {"name": "boolean java.util.AbstractMap.equals(java.lang.Object)", "offset": 17}, "line": {"number": 493}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyOk"}} -{"Stackframe": {"function": {"name": "audit_filter_rules.constprop.21"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JGwOKolTKq5VlZEF0AhOwwAAAAAAAADh"}} -{"Stackframe": {"file": {"name": "URI.java"}, "function": {"name": "int java.net.URI$Parser.parseServer(int, int)", "offset": 35}, "line": {"number": 3320}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WRqq4MtyLWZeVoi9EXj4zAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "Transaction.java"}, "function": {"name": "void co.elastic.apm.agent.impl.transaction.Transaction.afterEnd()", "offset": 1}, "line": {"number": 243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "c1uIuH7G_H0iDn31aPif-QAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "Engine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.engine.Engine.acquireIndexCommitForSnapshot()"}, "line": {"number": 1129}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACi5DE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/os/dir.go"}, "function": {"name": "os.ReadDir"}, "line": {"number": 115}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9Yx-v1soY3obBM9enH73ogAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase$1.doRun()"}, "line": {"number": 84}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yZ0m5K0hyRADeQkG90vP8AAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter$EventQueue.processEventsInternal()", "offset": 4}, "line": {"number": 329}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nFTZ4MXQlS-LtyA78dSw9wAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "void org.elasticsearch.search.internal.ContextIndexSearcher.searchLeaf(org.apache.lucene.index.LeafReaderContext, org.apache.lucene.search.Weight, org.apache.lucene.search.Collector)", "offset": 16}, "line": {"number": 187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.handleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 4}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAME"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.prepareCommitInternal()", "offset": 130}, "line": {"number": 3460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIeNo"}} -{"Stackframe": {"function": {"name": "generic_file_read_iter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEPcO"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map.go"}, "function": {"name": "runtime.mapiterinit"}, "line": {"number": 844}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fnFonGQxpm_e6wtqJ2HwRwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "FileWatcher.java"}, "function": {"name": "void org.elasticsearch.watcher.FileWatcher.doCheckAndNotify()"}, "line": {"number": 70}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rU2gYsZPORRvUmAaUHS0ngAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "IndexReader.java"}, "function": {"name": "void org.apache.lucene.index.IndexReader.close()", "offset": 1}, "line": {"number": 385}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UQaLDOWe0MNTzT0iMyAMZAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "AbstractChannel.java"}, "function": {"name": "void io.netty.channel.AbstractChannel$AbstractUnsafe.write(java.lang.Object, io.netty.channel.ChannelPromise)"}, "line": {"number": 866}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_zsJy5NbZstsQgE6U3tzVQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "void java.lang.Throwable.(java.lang.String)", "offset": 73}, "line": {"number": 272}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VgImNB_AseUMjfw9acwHDgAAAAAAAAE3"}} -{"Stackframe": {"file": {"name": "DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.DocValuesConsumer.mergeSortedSetField(org.apache.lucene.index.FieldInfo, org.apache.lucene.index.MergeState)", "offset": 45}, "line": {"number": 804}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KdC_Mj-l5hZHb-fmCsamaAAAAAAAAAA2"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.xcontent.XContentBuilder.xContentList(java.lang.String, java.util.Collection, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 6}, "line": {"number": 990}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ECJiBwp9HFDH08g79_31-gAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "boolean org.apache.lucene.codecs.lucene90.IndexedDISI$Method$3.advanceWithinBlock(org.apache.lucene.codecs.lucene90.IndexedDISI, int)"}, "line": {"number": 654}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b2ckm-0wQN1Adu_SQOHiPwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "FsDirectoryFactory.java"}, "function": {"name": "org.apache.lucene.store.IndexInput org.elasticsearch.index.store.FsDirectoryFactory$HybridDirectory.openInput(java.lang.String, org.apache.lucene.store.IOContext)", "offset": 8}, "line": {"number": 130}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Xsky9cTDpKcm_kOUJgRO_wAAAAAAAAEK"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.PublicationTransportHandler.handleIncomingPublishRequest(org.elasticsearch.transport.BytesTransportRequest)", "offset": 36}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "g5HW81gVegsp2uHOoheefQAAAAAAAAKg"}} -{"Stackframe": {"file": {"name": "PersistedClusterStateService.java"}, "function": {"name": "org.elasticsearch.gateway.PersistedClusterStateService$Writer$WriterStats org.elasticsearch.gateway.PersistedClusterStateService$Writer.updateMetadata(org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.cluster.metadata.Metadata)", "offset": 50}, "line": {"number": 689}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xyC-vyzgsDe_VuNG-DhfIQAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "FetchSearchPhase.java"}, "function": {"name": "void org.elasticsearch.action.search.FetchSearchPhase.moveToNextPhase(org.elasticsearch.common.util.concurrent.AtomicArray, org.elasticsearch.action.search.SearchPhaseController$ReducedQueryPhase, org.elasticsearch.common.util.concurrent.AtomicArray)", "offset": 6}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "L8zuaonez1SFKD0Z2pjJCgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Lucene90PostingsReader.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene90.Lucene90PostingsReader$BlockDocsEnum.nextDoc()"}, "line": {"number": 484}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eRQqY-uKn1zCanFBx5tpKgAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesFormat.java"}, "function": {"name": "org.apache.lucene.codecs.DocValuesConsumer org.apache.lucene.codecs.lucene90.Lucene90DocValuesFormat.fieldsConsumer(org.apache.lucene.index.SegmentWriteState)"}, "line": {"number": 148}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YfPhlM7fpOuKzX3zIJxLMAAAAAAAAABQ"}} -{"Stackframe": {"file": {"name": "StandardDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.StandardDirectoryReader org.apache.lucene.index.StandardDirectoryReader.open(org.apache.lucene.index.IndexWriter, org.apache.lucene.util.IOFunction, org.apache.lucene.index.SegmentInfos, boolean, boolean)", "offset": 15}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "g0Eg3DcPcY-ennfHmNiWvwAAAAAAAACO"}} -{"Stackframe": {"file": {"name": "FileChannelImpl.java"}, "function": {"name": "void sun.nio.ch.FileChannelImpl.implCloseChannel()", "offset": 30}, "line": {"number": 207}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "52XkZKHpOlq2TOi3L8YfPAAAAAAAAABT"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.doNext(int)", "offset": 17}, "line": {"number": 223}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tzBcwDe6SUq4Jkyew2O5egAAAAAAAABk"}} -{"Stackframe": {"file": {"name": "SegmentCoreReaders.java"}, "function": {"name": "void org.apache.lucene.index.SegmentCoreReaders.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.IOContext)", "offset": 45}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Kg-p48Ob-pDaS5XUMw0BuQAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "ActionListener.java"}, "function": {"name": "void org.elasticsearch.action.ActionListener.completeWith(org.elasticsearch.action.ActionListener, org.elasticsearch.common.CheckedSupplier)", "offset": 11}, "line": {"number": 447}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3J8Qg4KrH3ltQo_sj-EJzQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "HeaderGroup.java"}, "function": {"name": "void org.apache.http.message.HeaderGroup.addHeader(org.apache.http.Header)"}, "line": {"number": 78}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ti71ZxqCuVbwvaU7IrO7IgAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "AbstractNamedDiffable.java"}, "function": {"name": "void org.elasticsearch.cluster.AbstractNamedDiffable$CompleteNamedDiff.(java.lang.Class, java.lang.String, org.elasticsearch.common.io.stream.StreamInput)", "offset": 2}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM"}} -{"Stackframe": {"function": {"name": "__x64_sys_epoll_ctl"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SiQqkZi_PQebtsnQ4dVCJQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "java.lang.Number com.typesafe.config.impl.SimpleConfig.getNumber(java.lang.String)"}, "line": {"number": 229}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLLYd"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/path/filepath/path.go"}, "function": {"name": "path/filepath.walk"}, "line": {"number": 384}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACOh_E"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/prometheus/procfs@v0.0.11/proc.go"}, "function": {"name": "github.com/prometheus/procfs.FS.Proc"}, "line": {"number": 92}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "isaH-h45nfZl4J_NtapgSwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.action.support.nodes.TransportNodesAction$AsyncAction$$Lambda$7481+0x000000080254d8e0.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i-0Y2eyXmGTbqHsZAQaU7QAAAAAAAABD"}} -{"Stackframe": {"file": {"name": "NodeEnvironment.java"}, "function": {"name": "java.util.Set org.elasticsearch.env.NodeEnvironment.availableIndexFolders(java.util.function.Predicate)", "offset": 6}, "line": {"number": 886}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Gg8yWTMBWgWQ1-9YJzEFhAAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "ArrayList.java"}, "function": {"name": "java.lang.Object[] java.util.ArrayList.grow(int)", "offset": 5}, "line": {"number": 237}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLnOE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).object"}, "line": {"number": 648}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nnCec0a2-ZcuYpnWUHHz2AAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "aa7Eaxg4z59gzi_LDCDZBAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.apache.lucene.index.IndexWriter$$Lambda$6975+0x0000000802492638.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GIy5Mg_ksRG2OUR8ttDU2wAAAAAAAABA"}} -{"Stackframe": {"file": {"name": "Cipher.java"}, "function": {"name": "int javax.crypto.Cipher.doFinal(java.nio.ByteBuffer, java.nio.ByteBuffer)", "offset": 14}, "line": {"number": 2501}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gmylCg4my8_Ui_N1dUbhxwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "PublicationTransportHandler.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.PublicationTransportHandler.lambda$new$2(java.util.function.BiConsumer, org.elasticsearch.cluster.coordination.ApplyCommitRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 101}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "V9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.close(java.lang.Iterable)", "offset": 1}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-9R0"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/process/process.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/process.GetProcCPUPercentage"}, "line": {"number": 402}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZmt"}} -{"Stackframe": {"function": {"name": "__handle_mm_fault"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$6615+0x00000008023df3d0.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "FilterMergePolicy.java"}, "function": {"name": "int org.apache.lucene.index.FilterMergePolicy.numDeletesToMerge(org.apache.lucene.index.SegmentCommitInfo, int, org.apache.lucene.util.IOSupplier)"}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zC1z37qWlgbIB1dFpt4zjAAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(java.lang.Object)", "offset": 10}, "line": {"number": 442}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Z74AIbYzICy-xCAbnzF91gAAAAAAAABJ"}} -{"Stackframe": {"file": {"name": "HandshakeContext.java"}, "function": {"name": "void sun.security.ssl.HandshakeContext.dispatch(byte, java.nio.ByteBuffer)", "offset": 15}, "line": {"number": 445}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xyE5fvJvkACvfy-3UczF4QAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "LockSupport.java"}, "function": {"name": "void java.util.concurrent.locks.LockSupport.park(java.lang.Object)", "offset": 2}, "line": {"number": 211}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEga0"}} -{"Stackframe": {"function": {"name": "rcu_all_qs"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LL2AmHorGMGLHFvQ3KWNRAAAAAAAAAAw"}} -{"Stackframe": {"file": {"name": "Lucene80DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene80.Lucene80DocValuesConsumer.addSortedSetField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer)", "offset": 8}, "line": {"number": 884}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KLD8PZEt_1eVGIRfxlTGvgAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "IOUtils.java"}, "function": {"name": "void org.apache.lucene.util.IOUtils.applyToAll(java.util.Collection, org.apache.lucene.util.IOUtils$IOConsumer)"}, "line": {"number": 645}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG"}} -{"Stackframe": {"file": {"name": "ProtocolExec.java"}, "function": {"name": "org.apache.http.client.methods.CloseableHttpResponse org.apache.http.impl.execchain.ProtocolExec.execute(org.apache.http.conn.routing.HttpRoute, org.apache.http.client.methods.HttpRequestWrapper, org.apache.http.client.protocol.HttpClientContext, org.apache.http.client.methods.HttpExecutionAware)", "offset": 76}, "line": {"number": 186}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Y9mQUdyp86jQhHqOid6GcwAAAAAAAABF"}} -{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendMessage(org.elasticsearch.transport.TcpChannel, org.elasticsearch.transport.OutboundMessage, org.elasticsearch.core.Releasable)", "offset": 13}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADf"}} -{"Stackframe": {"file": {"name": "BulkShardRequestInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.interceptor.BulkShardRequestInterceptor.intercept(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 37}, "line": {"number": 87}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EPkRJFILsKGYvAhwh_S9kQAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "BufferedInputStream.java"}, "function": {"name": "int java.io.BufferedInputStream.read()", "offset": 1}, "line": {"number": 263}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E7J_ZVS2fIyPaAMkyne11QAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap$EntryIterator.next()"}, "line": {"number": 1615}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C2dSzxTtRtkEi44A6zm19wAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter$$Lambda$5635+0x0000000801abc6e8.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qwd0u0yf77aYVcTrTir5kQAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "FilterDirectory.java"}, "function": {"name": "long org.apache.lucene.store.FilterDirectory.fileLength(java.lang.String)"}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uUv_MevrS4tZNCvcXT5vlwAAAAAAAAE5"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.ccsRemoteReduce(org.elasticsearch.tasks.TaskId, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.OriginalIndices, java.util.Map, org.elasticsearch.action.search.TransportSearchAction$SearchTimeProvider, org.elasticsearch.search.aggregations.AggregationReduceContext$Builder, org.elasticsearch.transport.RemoteClusterService, org.elasticsearch.threadpool.ThreadPool, org.elasticsearch.action.ActionListener, java.util.function.BiConsumer)", "offset": 89}, "line": {"number": 625}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Wyrs0b2Xeu1gDeFw9u_zswAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "FilePermission.java"}, "function": {"name": "boolean java.io.FilePermissionCollection.implies(java.security.Permission)"}, "line": {"number": 1198}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Vx2H7p06nNerPKpNR75HGQAAAAAAAAC4"}} -{"Stackframe": {"file": {"name": "LinkedTransferQueue.java"}, "function": {"name": "java.lang.Object java.util.concurrent.LinkedTransferQueue.awaitMatch(java.util.concurrent.LinkedTransferQueue$Node, java.util.concurrent.LinkedTransferQueue$Node, java.lang.Object, boolean, long)", "offset": 32}, "line": {"number": 669}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACiMvP"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/zsyscall_linux_amd64.go"}, "function": {"name": "syscall.sendto"}, "line": {"number": 1557}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qtNW2Hg_2f_0M1iSBcGbyAAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 21}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "TWlgCotVAvCNPwZcQGJDTAAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeChannelReadComplete()", "offset": 2}, "line": {"number": 410}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x1ribCUra3vmcF-jiTFORAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "VersionsAndSeqNoResolver.java"}, "function": {"name": "org.elasticsearch.common.lucene.uid.VersionsAndSeqNoResolver$DocIdAndSeqNo org.elasticsearch.common.lucene.uid.VersionsAndSeqNoResolver.loadDocIdAndSeqNo(org.apache.lucene.index.IndexReader, org.apache.lucene.index.Term)"}, "line": {"number": 154}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAACJaR"}} -{"Stackframe": {"function": {"name": "xlog_state_clean_iclog.isra.23"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XFD9rtcq2dSwMN8BaHVjpQAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.writeReaderPool(boolean)", "offset": 2}, "line": {"number": 3307}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "g9D12vCHvqmadcctx-s3mQAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "SecurityRestFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.rest.SecurityRestFilter.lambda$handleRequest$2(java.lang.String, org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.client.node.NodeClient, org.elasticsearch.xpack.core.security.authc.Authentication)", "offset": 5}, "line": {"number": 68}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PqphE3VNnrhDJoaSmqBoIgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "RestActions.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestActions$NodesResponseRestListener.buildResponse(org.elasticsearch.action.support.nodes.BaseNodesResponse, org.elasticsearch.xcontent.XContentBuilder)"}, "line": {"number": 248}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Pwt7pP-aI82aWD0sQr02awAAAAAAAACs"}} -{"Stackframe": {"file": {"name": "Lucene90PostingsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90PostingsWriter.startDoc(int, int)", "offset": 28}, "line": {"number": 243}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rcaxiDZySELWCuXdWiYPQgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "IllegalArgumentException.java"}, "function": {"name": "void java.lang.IllegalArgumentException.(java.lang.String)"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QDJovm1V52QtGTryZ9-WtQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine$$Lambda$6442+0x00000008023d6650.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA-w1"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.startm"}, "line": {"number": 2282}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALtxs"}} -{"Stackframe": {"function": {"name": "ksys_getdents64"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xKz6OkGVzOf5KmhaoK3F7QAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.updateFailedShardsCache(org.elasticsearch.cluster.ClusterState)"}, "line": {"number": 241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gtX88AmaTOI_01lUU2TraAAAAAAAAAAo"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$authorizeIndexAction$3(java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.Authentication, java.util.Map, org.elasticsearch.xpack.core.security.authz.ResolvedIndices)", "offset": 6}, "line": {"number": 317}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8PLzoB-u4hzDZ_WKIg8FxQAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.read(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 3}, "line": {"number": 233}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5eYkmihge0H1qcdxo1aVVgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesConsumer.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.Lucene90DocValuesConsumer.doAddSortedNumericField(org.apache.lucene.index.FieldInfo, org.apache.lucene.codecs.DocValuesProducer, boolean)"}, "line": {"number": 707}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4Dt4PWF698AixBVjMbbA6QAAAAAAAAAX"}} -{"Stackframe": {"file": {"name": "SearchResponseSections.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.action.search.SearchResponseSections.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 2}, "line": {"number": 104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RNJevAy8zHjPqvqq_9wz6gAAAAAAAAAn"}} -{"Stackframe": {"file": {"name": "DocumentsWriterDeleteQueue.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriterDeleteQueue.tryApplyGlobalSlice()", "offset": 10}, "line": {"number": 205}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mwFhvPFJJoW91LX47BPDzwAAAAAAAABv"}} -{"Stackframe": {"file": {"name": "ClientHello.java"}, "function": {"name": "void sun.security.ssl.ClientHello$ClientHelloConsumer.consume(sun.security.ssl.ConnectionContext, java.nio.ByteBuffer)", "offset": 22}, "line": {"number": 812}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACFEsZ"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.sysmon"}, "line": {"number": 4683}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MXYcd3n7LsWw7I27yRI03QAAAAAAAARr"}} -{"Stackframe": {"file": {"name": "ObjectName.java"}, "function": {"name": "void javax.management.ObjectName.construct(java.lang.String)", "offset": 241}, "line": {"number": 663}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dslHeUY1fCFL5FjYTloQVAAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "TransportIndicesStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.ShardStats org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation(org.elasticsearch.action.admin.indices.stats.IndicesStatsRequest, org.elasticsearch.cluster.routing.ShardRouting)"}, "line": {"number": 103}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dVy9F2EzSTySFtvhDROVAQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Cache.java"}, "function": {"name": "org.elasticsearch.common.cache.Cache$Entry org.elasticsearch.common.cache.Cache$CacheSegment.get(java.lang.Object, long, java.util.function.Predicate, java.util.function.Consumer)"}, "line": {"number": 210}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "spUGqsCTGHPUynY6l3nRmwAAAAAAAAA9"}} -{"Stackframe": {"file": {"name": "AuthenticationContextSerializer.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authc.Authentication org.elasticsearch.xpack.core.security.authc.support.AuthenticationContextSerializer.readFromContext(org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 10}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "klX8tI6RbguXhwa8P7ml8gAAAAAAAAAl"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$1.onResponse(java.lang.Void)", "offset": 1}, "line": {"number": 575}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "u25MUdzPMiaQ2283ZYctDwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "void org.apache.lucene.store.LockValidatingDirectoryWrapper.syncMetaData()", "offset": 1}, "line": {"number": 62}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "N1PQDu1Ay8cMXPJ8jF7fCAAAAAAAAACu"}} -{"Stackframe": {"file": {"name": "CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.(org.apache.lucene.store.Directory, org.apache.lucene.index.SegmentInfo, java.lang.String, org.apache.lucene.store.IOContext, java.lang.String, org.apache.lucene.codecs.compressing.CompressionMode, int, int, int)", "offset": 19}, "line": {"number": 125}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rRgDrOD9mNwOES2mtujaQAAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.snapshots.SnapshotShardsService$$Lambda$5882.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW22"}} -{"Stackframe": {"function": {"name": "ksys_write"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JF1YwU4KTZYHW-s3znxHyQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "DigestBase.java"}, "function": {"name": "int sun.security.provider.DigestBase.implCompressMultiBlock(byte[], int, int)", "offset": 1}, "line": {"number": 144}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "PrioritizedEsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.runAndClean(java.lang.Runnable)"}, "line": {"number": 241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAACNky"}} -{"Stackframe": {"function": {"name": "xfs_log_commit_cil"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABXUpt"}} -{"Stackframe": {"file": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer"}, "function": {"name": "github.com/optimyze/prodfiler/pf-host-agent/tracer.(*Tracer).StartPIDEventProcessor.func1"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iAi_GDz2owh3bMIuZZl9TwAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Lucene94Codec.java"}, "function": {"name": "org.apache.lucene.codecs.NormsFormat org.apache.lucene.codecs.lucene94.Lucene94Codec.normsFormat()"}, "line": {"number": 214}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tfylNEM_JkJvBScOJPNFaAAAAAAAAABO"}} -{"Stackframe": {"file": {"name": "TransportService.java"}, "function": {"name": "void org.elasticsearch.transport.TransportService.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 21}, "line": {"number": 781}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3X9PCd1tVPhzrMiwigfodgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Unsafe.java"}, "function": {"name": "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Vf_nbNnd9l_SvZygEhGS0wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ThreadLocal.java"}, "function": {"name": "void java.lang.ThreadLocal.set(java.lang.Object)"}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN9Em"}} -{"Stackframe": {"function": {"name": "kernfs_seq_show"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Xg_iImOzH17AtHZPB5_7kAAAAAAAAABp"}} -{"Stackframe": {"file": {"name": "AbstractCoalescingBufferQueue.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.channel.AbstractCoalescingBufferQueue.remove(io.netty.buffer.ByteBufAllocator, int, io.netty.channel.ChannelPromise)", "offset": 21}, "line": {"number": 159}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Pm0heKLQECP0z9aACcjoRAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.String org.elasticsearch.common.settings.Setting.getRaw(org.elasticsearch.common.settings.Settings)", "offset": 1}, "line": {"number": 492}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readMapSafe(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier)", "offset": 1}, "line": {"number": 305}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DJ2lZS85ClNgTnnEk8XThgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI$BitSetConjunctionDISI.nextDoc()"}, "line": {"number": 303}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAUaj"}} -{"Stackframe": {"function": {"name": "aufs_d_revalidate"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z0TmQagVnHgFdAowAPCojQAAAAAAAAAr"}} -{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "java.lang.Long com.typesafe.config.impl.SimpleConfig.getBytes(java.lang.String)", "offset": 5}, "line": {"number": 290}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5BSLYKETsA6JrTET6azQQAAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "IdentityHashMap.java"}, "function": {"name": "int java.util.IdentityHashMap.hash(java.lang.Object, int)"}, "line": {"number": 295}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JYe70J6f_R3-V5ur6gAZUAAAAAAAAADH"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.merge(org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 35}, "line": {"number": 4384}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Zwv-_b7WeHEC8rYTp0PzyAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Policy.java"}, "function": {"name": "java.security.Policy java.security.Policy.getPolicyNoCheck()"}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-Q6H"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.normalizeCompound"}, "line": {"number": 230}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fbT9eHA5tj6rUvxqpnewLAAAAAAAAADW"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "short org.apache.lucene.codecs.lucene80.IndexedDISI.writeBitSet(org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.store.IndexOutput, byte)", "offset": 12}, "line": {"number": 196}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5N-LgXfDk2OXbiJdiTueMgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.io.stream.StreamInput.readMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader)"}, "line": {"number": 606}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tL230chqNUuroXAS-gtapgAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "FileChannel.java"}, "function": {"name": "java.nio.channels.FileChannel java.nio.channels.FileChannel.open(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])", "offset": 1}, "line": {"number": 304}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F7lATn_bFhRDcY0Z0OyPwQAAAAAAAABo"}} -{"Stackframe": {"file": {"name": "UnixChannelFactory.java"}, "function": {"name": "java.nio.channels.FileChannel sun.nio.fs.UnixChannelFactory.newFileChannel(int, sun.nio.fs.UnixPath, java.lang.String, java.util.Set, int)", "offset": 17}, "line": {"number": 143}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Id-ripUWhn1V9drGRfOjGQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ReaderPool.java"}, "function": {"name": "boolean org.apache.lucene.index.ReaderPool.anyDocValuesChanges()"}, "line": {"number": 349}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFDLh"}} -{"Stackframe": {"function": {"name": "futex_wake_op"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Lu4BbYQNxvrnJvSur5jWAAAAAAAAAAJi"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 60}, "line": {"number": 275}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0x-UDWXgJuxMxIbzLxwzzQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "FilterStreamInput.java"}, "function": {"name": "byte org.elasticsearch.common.io.stream.FilterStreamInput.readByte()"}, "line": {"number": 30}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fbT9eHA5tj6rUvxqpnewLAAAAAAAAAFK"}} -{"Stackframe": {"file": {"name": "IndexedDISI.java"}, "function": {"name": "short org.apache.lucene.codecs.lucene80.IndexedDISI.writeBitSet(org.apache.lucene.search.DocIdSetIterator, org.apache.lucene.store.IndexOutput, byte)", "offset": 42}, "line": {"number": 226}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kUAbs4Tm3_NRbBQPhQnuwwAAAAAAAABq"}} -{"Stackframe": {"file": {"name": "SecurityActionFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.action.filter.SecurityActionFilter.applyInternal(java.lang.String, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 21}, "line": {"number": 156}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fj4-Iv-y0L7zbcyIyLNeHwAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "IndexRequest.java"}, "function": {"name": "java.util.Map org.elasticsearch.action.index.IndexRequest.sourceAsMap()"}, "line": {"number": 364}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8nls3JqhhTUBkU5tmpZaqAAAAAAAAAAs"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.buildIndicesAccessControl(org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, java.util.Set, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 523}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC8r2p"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-structform@v0.0.9/gotype/fold_reflect.go"}, "function": {"name": "github.com/elastic/go-structform/gotype.buildFieldFold"}, "line": {"number": 218}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ObAvGYfNoTxUAvTLvbdSSgAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gM_mkkjpZG3amD_qRbaXxgAAAAAAAABK"}} -{"Stackframe": {"file": {"name": "AbstractAsyncBulkByScrollAction.java"}, "function": {"name": "void org.elasticsearch.index.reindex.AbstractAsyncBulkByScrollAction.start()", "offset": 8}, "line": {"number": 242}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACYn1"}} -{"Stackframe": {"function": {"name": "_do_fork"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAADgb3s"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/common/mapstr.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_docker_metadata.(*addDockerMetadata).Run"}, "line": {"number": 71}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFUwX"}} -{"Stackframe": {"function": {"name": "cgroup_seqfile_show"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnNGr"}} -{"Stackframe": {"function": {"name": "unix_destruct_scm"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkJ1E"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/scan.go"}, "function": {"name": "fmt.(*ss).complexTokens"}, "line": {"number": 516}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADQnNr"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/outputs/logstash/window.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/outputs/logstash.(*window).tryGrowWindow"}, "line": {"number": 51}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zfrc9GArcEMXOSddmdDIewAAAAAAAACw"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.lambda$authorizeBulkItems$23(org.elasticsearch.action.bulk.BulkShardRequest, java.util.Map, java.util.Map, org.elasticsearch.xpack.security.audit.AuditTrail, java.lang.String, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationContext, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine, org.elasticsearch.cluster.metadata.Metadata, org.elasticsearch.xpack.core.security.authz.ResolvedIndices)", "offset": 103}, "line": {"number": 812}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.authorizeClusterAction(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 178}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rLjBo_k19vor7LkQgiOErwAAAAAAAADQ"}} -{"Stackframe": {"file": {"name": "FreqProxTermsWriter.java"}, "function": {"name": "void org.apache.lucene.index.FreqProxTermsWriter.flush(java.util.Map, org.apache.lucene.index.SegmentWriteState, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.codecs.NormsProducer)", "offset": 43}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZVbH0iCZ_WxLa6dmlexVKgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "FilterLeafReader.java"}, "function": {"name": "org.apache.lucene.index.PostingsEnum org.apache.lucene.index.FilterLeafReader$FilterTermsEnum.postings(org.apache.lucene.index.PostingsEnum, int)"}, "line": {"number": 226}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LU9XPWYPC7EDhPUHuUV0HgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings$Builder org.elasticsearch.common.settings.Settings.builder()"}, "line": {"number": 586}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wbaLv8BbexWnwmBDRi5IZgAAAAAAAAAS"}} -{"Stackframe": {"file": {"name": "SpanContext.java"}, "function": {"name": "boolean io.opentelemetry.api.trace.SpanContext.isValid()"}, "line": {"number": 149}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IG5EpvTeHopVC9IqkA_kSgAAAAAAAUeC"}} -{"Stackframe": {"function": {"name": "aufs_d_revalidate"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "b0dgoqPkuWglB1BhrIMdSwAAAAAAAAGl"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 421}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ubP7WfdOklFmyNsO3NcaCAAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsReader.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsReader.checkIntegrity()", "offset": 6}, "line": {"number": 352}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "74O8rb6r6chx3WMINhKDgQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "StreamOpFlag.java"}, "function": {"name": "int java.util.stream.StreamOpFlag.fromCharacteristics(java.util.Spliterator)"}, "line": {"number": 733}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RK8a3DzcZMuwoK9TpGXQTwAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "org.elasticsearch.index.store.ByteSizeCachingDirectory$SizeAndModCount org.elasticsearch.index.store.ByteSizeCachingDirectory$1.refresh()", "offset": 7}, "line": {"number": 79}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "W1Mnd_1YqneVzWUadRzjPwAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "void org.elasticsearch.xcontent.XContentBuilder.ensureNoSelfReferences(java.lang.Iterable, java.lang.Object, java.util.Set)", "offset": 5}, "line": {"number": 1283}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-VwS"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.setFileObject"}, "line": {"number": 712}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "FilterDirectoryReader.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.FilterDirectoryReader.doOpenIfChanged()"}, "line": {"number": 112}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FGGSuaVpuuMHaXUzmpPEWQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "InferenceProcessorInfoExtractor.java"}, "function": {"name": "void org.elasticsearch.xpack.ml.utils.InferenceProcessorInfoExtractor.lambda$countInferenceProcessors$1(org.apache.lucene.util.Counter, java.lang.String, org.elasticsearch.ingest.PipelineConfiguration)"}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eLPEw3jnFkvsJ2aQiz21NAAAAAAAAABf"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)", "offset": 7}, "line": {"number": 576}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OSzs0d7UDW14kdDxEUjZrQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "NamedDiffableValueSerializer.java"}, "function": {"name": "org.elasticsearch.cluster.Diff org.elasticsearch.cluster.NamedDiffableValueSerializer.readDiff(org.elasticsearch.common.io.stream.StreamInput, java.lang.Object)"}, "line": {"number": 30}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUkts"}} -{"Stackframe": {"function": {"name": "string_escape_mem"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nyMCPt5M-rbb158Tnrz3sgAAAAAAAAAf"}} -{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "void org.apache.lucene.index.DocumentsWriterPerThread.sealFlushedSegment(org.apache.lucene.index.DocumentsWriterPerThread$FlushedSegment, org.apache.lucene.index.Sorter$DocMap, org.apache.lucene.index.DocumentsWriter$FlushNotifications)", "offset": 3}, "line": {"number": 447}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABqf2"}} -{"Stackframe": {"file": {"name": "runtime/sys_linux_amd64.s"}, "function": {"name": "runtime.tgkill"}, "line": {"number": 182}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChHmM"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.goschedImpl"}, "line": {"number": 753}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAACJkn"}} -{"Stackframe": {"function": {"name": "xlog_state_do_callback"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vTCeC5emrj-AxsrlIylNGwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "AbstractSpan.java"}, "function": {"name": "void co.elastic.apm.agent.impl.transaction.AbstractSpan.end()"}, "line": {"number": 542}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yPy_wko9njFronX8E7CcQgAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "ListenableFuture.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ListenableFuture.notifyListener(org.elasticsearch.action.ActionListener, java.util.concurrent.ExecutorService)"}, "line": {"number": 106}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0GDZ0kstVgc85_nBZh3f0QAAAAAAAACL"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "org.apache.lucene.index.DirectoryReader org.apache.lucene.index.IndexWriter.getReader(boolean, boolean)", "offset": 71}, "line": {"number": 570}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKj"}} -{"Stackframe": {"function": {"name": "futex_wait"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9gjRuxRdRyq16xbNcyHimgAAAAAAAABa"}} -{"Stackframe": {"file": {"name": "BKDReader.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDReader$BKDPointTree.addAll(org.apache.lucene.index.PointValues$IntersectVisitor, boolean)", "offset": 19}, "line": {"number": 581}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "uivmFtqkx0mSDLjpV5jf4gAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "java.lang.Object org.elasticsearch.index.store.ByteSizeCachingDirectory$1.refresh()"}, "line": {"number": 61}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_jOWl9rQ0a9rjiw4HiJl9AAAAAAAAABi"}} -{"Stackframe": {"file": {"name": "LZ4.java"}, "function": {"name": "void org.apache.lucene.util.compress.LZ4.compressWithDictionary(byte[], int, int, int, org.apache.lucene.store.DataOutput, org.apache.lucene.util.compress.LZ4$HashTable)", "offset": 16}, "line": {"number": 447}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RfwCDAkybtrSMQru6GZd7AAAAAAAAADH"}} -{"Stackframe": {"file": {"name": "SecurityServerTransportInterceptor.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.SecurityServerTransportInterceptor$ProfileSecuredRequestHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 48}, "line": {"number": 415}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkSIe"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/strings/strings.go"}, "function": {"name": "strings.Fields"}, "line": {"number": 358}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3d"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/aucoalesce/coalesce.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/aucoalesce.normalizeCompound"}, "line": {"number": 225}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-M6L"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/auparse.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.parseSELinuxContext"}, "line": {"number": 519}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Ekre_h4w6uLsxTrYKbKEJQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "UnixDirectoryStream.java"}, "function": {"name": "boolean sun.nio.fs.UnixDirectoryStream$UnixDirectoryIterator.hasNext()", "offset": 1}, "line": {"number": 198}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAB4Dl"}} -{"Stackframe": {"function": {"name": "xfs_ilock_attr_map_shared"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PEbpT_8Xljn7u1j5oJzfHQAAAAAAAAEV"}} -{"Stackframe": {"file": {"name": "SmileParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.dataformat.smile.SmileParser._handleFieldName()", "offset": 44}, "line": {"number": 1333}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zcfKpbpAZN9qkm-T9sCmgAAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory.sync(java.util.Collection)", "offset": 3}, "line": {"number": 255}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9qVi_GBt6qKT_kgVvmjrsgAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "java.lang.String[] org.apache.lucene.store.FSDirectory.listAll(java.nio.file.Path, java.util.Set)", "offset": 2}, "line": {"number": 214}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3Y-shQolAFk-b5-RgjAxvQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Releasables.java"}, "function": {"name": "void org.elasticsearch.core.Releasables.close(java.lang.Iterable, boolean)"}, "line": {"number": 27}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5PpBkm0bW7w99cVCb10w6AAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "FST.java"}, "function": {"name": "org.apache.lucene.util.fst.FST$BytesReader org.apache.lucene.util.fst.FST.getBytesReader()", "offset": 1}, "line": {"number": 1530}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "MtGAvn_SbPmLYweYcqu9xwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "ScrollableHitSource.java"}, "function": {"name": "void org.elasticsearch.index.reindex.ScrollableHitSource.start()"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8oqUqvPmlDtvkIzoqHODkwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ChannelActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.ChannelActionListener.onResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 33}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HA3TD5377NJUVWpcrnF53AAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "InboundPipeline.java"}, "function": {"name": "void org.elasticsearch.transport.InboundPipeline.doHandleBytes(org.elasticsearch.transport.TcpChannel, org.elasticsearch.common.bytes.ReleasableBytesReference)", "offset": 11}, "line": {"number": 105}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5LM1UONk0pxINez5h5E_DAAAAAAAAABF"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.lambda$authorizeIndexAction$4(org.elasticsearch.action.ActionListener, org.elasticsearch.xpack.core.security.authc.Authentication, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, java.util.Map, org.elasticsearch.xpack.core.security.authz.ResolvedIndices)", "offset": 7}, "line": {"number": 335}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_QheDKcYlWwsFE4koFnZNgAAAAAAAABf"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "void org.elasticsearch.common.settings.Settings.toXContentFlat(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.common.settings.Settings)", "offset": 7}, "line": {"number": 699}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJ"}} -{"Stackframe": {"file": {"name": "ServerTransportFilter.java"}, "function": {"name": "void org.elasticsearch.xpack.security.transport.ServerTransportFilter$NodeProfile.inbound(java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.action.ActionListener)", "offset": 33}, "line": {"number": 128}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9iPPrg1Y9vtWhMk7mXQ_KgAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "ConfigException.java"}, "function": {"name": "void com.typesafe.config.ConfigException.(com.typesafe.config.ConfigOrigin, java.lang.String, java.lang.Throwable)"}, "line": {"number": 23}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gthr_nA39dcb6LQBtOEWRwAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "HierarchyCircuitBreakerService.java"}, "function": {"name": "long org.elasticsearch.indices.breaker.HierarchyCircuitBreakerService.realMemoryUsage()"}, "line": {"number": 377}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "g709N2jv23X7Lqzuyik52AAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "UsageTrackingQueryCachingPolicy.java"}, "function": {"name": "void org.apache.lucene.search.UsageTrackingQueryCachingPolicy.onUse(org.apache.lucene.search.Query)", "offset": 9}, "line": {"number": 155}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Arz1MMWCC2fkAl6FCL43rAAAAAAAAACL"}} -{"Stackframe": {"file": {"name": "PushPostingsWriterBase.java"}, "function": {"name": "org.apache.lucene.codecs.BlockTermState org.apache.lucene.codecs.PushPostingsWriterBase.writeTerm(org.apache.lucene.util.BytesRef, org.apache.lucene.index.TermsEnum, org.apache.lucene.util.FixedBitSet, org.apache.lucene.codecs.NormsProducer)", "offset": 25}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD7I"}} -{"Stackframe": {"function": {"name": "exit_to_usermode_loop"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "980-iSS9S0F-vkRag1FHZwAAAAAAAAAz"}} -{"Stackframe": {"file": {"name": "DataOutput.java"}, "function": {"name": "void org.apache.lucene.store.DataOutput.writeMapOfStrings(java.util.Map)", "offset": 2}, "line": {"number": 296}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oyOPCAIGwaEIvRtPGG_P1AAAAAAAAAER"}} -{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.getRoles(org.elasticsearch.xpack.core.security.user.User, org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)", "offset": 37}, "line": {"number": 279}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fNviosb4qVFLp7sfJPNLzAAAAAAAAADl"}} -{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.createOrUpdateShards(org.elasticsearch.cluster.ClusterState)", "offset": 18}, "line": {"number": 570}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACE5NE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.main"}, "line": {"number": 193}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2G3Nb2wLZnYZcun2Wr4rBgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Cache.java"}, "function": {"name": "org.elasticsearch.common.cache.Cache$Entry org.elasticsearch.common.cache.Cache$CacheSegment.get(java.lang.Object, long, boolean)"}, "line": {"number": 199}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GuZB5Wgu-FT76GdSG34TIAAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "Message.java"}, "function": {"name": "void co.elastic.apm.agent.impl.context.Message.()", "offset": 34}, "line": {"number": 66}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DuXITtzB7JQM2p8eLBRYdgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "long org.elasticsearch.index.store.ByteSizeCachingDirectory.estimateSizeInBytes()"}, "line": {"number": 121}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zT7XZSg98RfDNP1VNIfEEgAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "SegmentMerger.java"}, "function": {"name": "void org.apache.lucene.index.SegmentMerger.mergeNorms(org.apache.lucene.index.SegmentWriteState)", "offset": 1}, "line": {"number": 207}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "a3LlvY-lX7QFxqyniBgi3AAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "Timer.java"}, "function": {"name": "void java.util.TimerThread.run()"}, "line": {"number": 506}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "B_8pLWeFHllvmKE3jcPnmgAAAAAAAACg"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 160}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-OuZ_zFnMJsV4zFgjL7inAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "boolean org.elasticsearch.common.settings.Setting.exists(org.elasticsearch.common.settings.Settings)"}, "line": {"number": 437}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAAB12y"}} -{"Stackframe": {"function": {"name": "xfs_vn_create"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fZ1SoGSE80OZ2t9ks5kZMwAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "TcpTransportChannel.java"}, "function": {"name": "void org.elasticsearch.transport.TcpTransportChannel.sendResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 52}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H2QTzkKMf4VE2_HyfX9GywAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "long org.apache.lucene.index.IndexWriter.updateDocuments(org.apache.lucene.index.Term, java.lang.Iterable)"}, "line": {"number": 1464}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tto_m7yhvKemNcMa3xbR2QAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "CleanupSnapshotStep.java"}, "function": {"name": "void org.elasticsearch.xpack.core.ilm.CleanupSnapshotStep.(org.elasticsearch.xpack.core.ilm.Step$StepKey, org.elasticsearch.xpack.core.ilm.Step$StepKey, org.elasticsearch.client.Client)"}, "line": {"number": 28}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "chxwUR6w92YjI0NegVXDTAAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xBGCEPBdnG6Mds1nJf4tcQAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Netty4HttpRequestHandler.java"}, "function": {"name": "void org.elasticsearch.http.netty4.Netty4HttpRequestHandler.channelRead0(io.netty.channel.ChannelHandlerContext, java.lang.Object)"}, "line": {"number": 17}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "M9Xltn711KKFcrKCAYh_ZgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Lucene90DocValuesProducer.java"}, "function": {"name": "int org.apache.lucene.codecs.lucene90.Lucene90DocValuesProducer$SparseNumericDocValues.nextDoc()"}, "line": {"number": 457}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "W4fRUywM1R6k-YZN0urJjAAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "Transaction.java"}, "function": {"name": "co.elastic.apm.agent.impl.transaction.Transaction co.elastic.apm.agent.impl.transaction.Transaction.start(co.elastic.apm.agent.impl.transaction.TraceContext$ChildContextCreatorTwoArg, java.lang.Object, java.lang.Object, long, co.elastic.apm.agent.impl.sampling.Sampler)"}, "line": {"number": 127}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAADHf1p"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/publisher/processing/processors.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/publisher/processing.newAnnotateProcessor"}, "line": {"number": 140}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IfZRnPhrdzvTisUcmvGcBgAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 2}, "line": {"number": 138}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "rRpenI7GD9Sw_c3K81rvVQAAAAAAAAEg"}} -{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "java.util.Set org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$WildcardExpressionResolver.innerResolve(org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$Context, java.util.List, org.elasticsearch.action.support.IndicesOptions, org.elasticsearch.cluster.metadata.Metadata)", "offset": 48}, "line": {"number": 978}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tVyYJ7ZoM4kN95rJYlvO-AAAAAAAAABa"}} -{"Stackframe": {"file": {"name": "DocIdsWriter.java"}, "function": {"name": "void org.apache.lucene.util.bkd.DocIdsWriter.readInts(org.apache.lucene.store.IndexInput, int, org.apache.lucene.index.PointValues$IntersectVisitor)", "offset": 9}, "line": {"number": 277}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "eXp6ZabxmzABDzP1KpFPrwAAAAAAAAE4"}} -{"Stackframe": {"file": {"name": "Coordinator.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishWithJoinResponse org.elasticsearch.cluster.coordination.Coordinator.handlePublishRequest(org.elasticsearch.cluster.coordination.PublishRequest)", "offset": 46}, "line": {"number": 464}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pxlY_-ncZ2Y7rTuLs-CwHwAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "EnumMap.java"}, "function": {"name": "int java.util.EnumMap.hashCode()", "offset": 4}, "line": {"number": 709}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1YwmAWjsK6oD1Qs8m4ZuaQAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "LockSupport.java"}, "function": {"name": "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)", "offset": 4}, "line": {"number": 181}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6uM2A8w04xXsJuYJrLs3twAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "ByteToMessageDecoder.java"}, "function": {"name": "void io.netty.handler.codec.ByteToMessageDecoder.callDecode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List)"}, "line": {"number": 440}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN-Mt"}} -{"Stackframe": {"function": {"name": "kernfs_fop_poll"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "dZtiAg2DG5nZJD2FzttFQwAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.gateway.PersistedClusterStateService$Writer$$Lambda$5991+0x0000000802322388.consumePage(org.apache.lucene.util.BytesRef, int, boolean)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qGl8xd2kFJcXjztpGDAS3QAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.lang.String org.elasticsearch.xcontent.support.AbstractXContentParser.textOrNull()", "offset": 3}, "line": {"number": 241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lq6ldg5kLS4U3D5BeWHLKQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "StringBuilder.java"}, "function": {"name": "java.lang.StringBuilder java.lang.StringBuilder.append(java.lang.Object)"}, "line": {"number": 169}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "lucqrQU7Z14srssOIU6J1AAAAAAAAABf"}} -{"Stackframe": {"file": {"name": "VotingOnlyNodePlugin.java"}, "function": {"name": "void org.elasticsearch.cluster.coordination.votingonly.VotingOnlyNodePlugin$VotingOnlyNodeAsyncSender.sendRequest(org.elasticsearch.transport.Transport$Connection, java.lang.String, org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportRequestOptions, org.elasticsearch.transport.TransportResponseHandler)", "offset": 42}, "line": {"number": 278}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fGeO8E0dKkjTaq21mlOYCAAAAAAAAABv"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "boolean org.elasticsearch.index.shard.IndexShard.scheduledRefresh()", "offset": 18}, "line": {"number": 3476}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pmPXYMcSXBVkwYFWHrsHvQAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "Objects.java"}, "function": {"name": "boolean java.util.Objects.equals(java.lang.Object, java.lang.Object)"}, "line": {"number": 64}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN8Pw"}} -{"Stackframe": {"function": {"name": "kernfs_get_active"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EbDp5Ji3y8uTKzXL0h4-JQAAAAAAAACE"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter.write(org.apache.lucene.index.Fields, org.apache.lucene.codecs.NormsProducer)", "offset": 25}, "line": {"number": 321}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oeKTE2BZ0H1nPN79dKoz1wAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "AsyncRetryDuringSnapshotActionStep.java"}, "function": {"name": "void org.elasticsearch.xpack.core.ilm.AsyncRetryDuringSnapshotActionStep.(org.elasticsearch.xpack.core.ilm.Step$StepKey, org.elasticsearch.xpack.core.ilm.Step$StepKey, org.elasticsearch.client.Client)"}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "2V38fgKb92YKVRfK0ZK-OgAAAAAAAABn"}} -{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.siftDown(int, java.util.concurrent.RunnableScheduledFuture)", "offset": 12}, "line": {"number": 998}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAD9EIO"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/metricbeat/mb/event.go"}, "function": {"name": "github.com/elastic/beats/v7/metricbeat/mb.(*Event).BeatEvent"}, "line": {"number": 96}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD5bDU"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/go.etcd.io/bbolt@v1.3.4/cursor.go"}, "function": {"name": "go.etcd.io/bbolt.(*Cursor).node"}, "line": {"number": 367}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "T_HZPc4nEhQTTwxclKtUYQAAAAAAAAAR"}} -{"Stackframe": {"file": {"name": "SimpleChannelInboundHandler.java"}, "function": {"name": "void io.netty.channel.SimpleChannelInboundHandler.channelRead(io.netty.channel.ChannelHandlerContext, java.lang.Object)", "offset": 5}, "line": {"number": 99}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "o0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.getRoles(org.elasticsearch.xpack.core.security.authc.Authentication, org.elasticsearch.action.ActionListener)"}, "line": {"number": 191}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pYJXWbdqO_EwCki56aMNwwAAAAAAAAFU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 21}, "line": {"number": 172}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PDxaYxBC-l8PtK0orl2RQwAAAAAAAAET"}} -{"Stackframe": {"file": {"name": "CoordinationState.java"}, "function": {"name": "org.elasticsearch.cluster.coordination.PublishResponse org.elasticsearch.cluster.coordination.CoordinationState.handlePublishRequest(org.elasticsearch.cluster.coordination.PublishRequest)", "offset": 22}, "line": {"number": 357}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-98KX7lEQngZcvy7BcWxHgAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "PolicyFile.java"}, "function": {"name": "boolean sun.security.provider.PolicyFile.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 1}, "line": {"number": 1003}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pNhA5PPScB-Dc6ZnkBqX6gAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "Hasher.java"}, "function": {"name": "org.elasticsearch.xpack.core.security.authc.support.Hasher org.elasticsearch.xpack.core.security.authc.support.Hasher.resolveFromHash(char[])"}, "line": {"number": 544}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qo29mIfMk6g9kMPy8tsbogAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.roles(java.util.Set, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 165}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3r-tlbWKH7Bh4O96M6j3bgAAAAAAAAAW"}} -{"Stackframe": {"file": {"name": "URLClassPath.java"}, "function": {"name": "jdk.internal.loader.Resource jdk.internal.loader.URLClassPath$JarLoader.getResource(java.lang.String, boolean)", "offset": 4}, "line": {"number": 932}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "I0QtQ3x5Qtt-qibQRB-qEAAAAAAAAACT"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "java.lang.Runnable java.util.concurrent.ThreadPoolExecutor.getTask()", "offset": 27}, "line": {"number": 1070}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "yDr4NX9JefkQzdyG2fqGhAAAAAAAAABM"}} -{"Stackframe": {"file": {"name": "TransportSearchAction.java"}, "function": {"name": "void org.elasticsearch.action.search.TransportSearchAction.executeRequest(org.elasticsearch.action.search.SearchTask, org.elasticsearch.action.search.SearchRequest, org.elasticsearch.action.search.TransportSearchAction$SearchAsyncActionProvider, org.elasticsearch.action.ActionListener)", "offset": 111}, "line": {"number": 487}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "43zwHM83cnr3ffAyvl-y3AAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.util.stream.Stream java.nio.file.Files.lines(java.nio.file.Path, java.nio.charset.Charset)", "offset": 2}, "line": {"number": 4104}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "qmhrzhROIxdFfT_O0ufQNgAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "SecurityManager.java"}, "function": {"name": "void java.lang.SecurityManager.checkWrite(java.lang.String)"}, "line": {"number": 838}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALckr"}} -{"Stackframe": {"function": {"name": "do_readlinkat"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "WWjCfoHiLs6x77qSQOVJgQAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": "ApacheHttpRequestFactory.java"}, "function": {"name": "java.lang.Object com.amazonaws.http.apache.request.impl.ApacheHttpRequestFactory.create(com.amazonaws.Request, com.amazonaws.http.settings.HttpClientSettings)"}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChF6r"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/proc.go"}, "function": {"name": "runtime.findrunnable"}, "line": {"number": 2671}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "kwRiyOp4rW0qzxA_tBFHXAAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "AbstractByteBufAllocator.java"}, "function": {"name": "io.netty.buffer.ByteBuf io.netty.buffer.AbstractByteBufAllocator.heapBuffer(int, int)", "offset": 4}, "line": {"number": 169}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "GXqdtKZs0jCPru_AD4bs_AAAAAAAAAFy"}} -{"Stackframe": {"file": {"name": "FieldsIndexWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.FieldsIndexWriter.finish(int, long, org.apache.lucene.store.IndexOutput)", "offset": 39}, "line": {"number": 146}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RA0eMPP8ZpAprwovmWh-MQAAAAAAAABR"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 81}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JJwHXTkYed0lpeQhX1-f7AAAAAAAAABv"}} -{"Stackframe": {"file": {"name": "IndexShard.java"}, "function": {"name": "boolean org.elasticsearch.index.shard.IndexShard.scheduledRefresh()", "offset": 18}, "line": {"number": 3800}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-nUy"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/cgv1/blkio.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup/cgv1.readBlkioValues"}, "line": {"number": 264}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "82bVFvNJjyqNoRuEig4DTAAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "BKDReader.java"}, "function": {"name": "void org.apache.lucene.util.bkd.BKDReader$BKDPointTree.visitLeavesOneByOne(org.apache.lucene.index.PointValues$IntersectVisitor)", "offset": 2}, "line": {"number": 595}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "IwsijQDbvPiBVknFzNnSRAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "ApmServerConfigurationSource.java"}, "function": {"name": "java.lang.String co.elastic.apm.agent.configuration.ApmServerConfigurationSource$2.withConnection(java.net.HttpURLConnection)"}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "P_qKgj6OkmYBLfen5yPH6AAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "IndicesClusterStateService.java"}, "function": {"name": "void org.elasticsearch.indices.cluster.IndicesClusterStateService.createOrUpdateShards(org.elasticsearch.cluster.ClusterState)", "offset": 8}, "line": {"number": 534}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Q5prAre2OuRCakrlnLYmSwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IngestService.java"}, "function": {"name": "void org.elasticsearch.ingest.IngestService.lambda$applyClusterState$7(java.util.function.Consumer)"}, "line": {"number": 693}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "w_8HYglWw-0jqUUlUeMgagAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Setting.get(org.elasticsearch.common.settings.Settings, boolean)", "offset": 4}, "line": {"number": 471}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "YV3mbdAeVZ7JBUkmx7TpHgAAAAAAAACf"}} -{"Stackframe": {"file": {"name": "DigestBase.java"}, "function": {"name": "void sun.security.provider.DigestBase.engineUpdate(byte[], int, int)", "offset": 26}, "line": {"number": 131}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "KQub_5l0sZDFiW2VPwqmFAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "LockValidatingDirectoryWrapper.java"}, "function": {"name": "void org.apache.lucene.store.LockValidatingDirectoryWrapper.deleteFile(java.lang.String)"}, "line": {"number": 36}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "xYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.mapOrdered()"}, "line": {"number": 271}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l0hCUDJE9WA5zrDYnTjz6wAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ScheduledThreadPoolExecutor.java"}, "function": {"name": "boolean java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.add(java.lang.Object)"}, "line": {"number": 899}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Jd5vYukqPDxekGbnpnM_MQAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain$$Lambda$6918+0x0000000801e270b8.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HL8EuHVSmvyyvO0QJQzjvAAAAAAAAACU"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.deleteFiles(java.util.Collection)", "offset": 24}, "line": {"number": 757}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9xzxWCGZcOvhLUSFF27srAAAAAAAAADp"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 233}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlsoG"}} -{"Stackframe": {"function": {"name": "__tcp_push_pending_frames"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "URrpT79Wm1-567n5aqJlbQAAAAAAAADL"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$checkForApiKey$3(org.elasticsearch.xpack.core.security.authc.AuthenticationResult)", "offset": 19}, "line": {"number": 367}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEjzE"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcsweep.go"}, "function": {"name": "runtime.sweepone"}, "line": {"number": 206}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "n2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader org.elasticsearch.index.engine.InternalEngine$ExternalReaderManager.refreshIfNeeded(org.elasticsearch.common.lucene.index.ElasticsearchDirectoryReader)"}, "line": {"number": 370}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "ThreadContext.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun()", "offset": 2}, "line": {"number": 695}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgvMK"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mheap.go"}, "function": {"name": "runtime.(*mheap).freeSpanLocked"}, "line": {"number": 1489}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-SO86A4OCGXvMKT2cG5TXQAAAAAAAAHx"}} -{"Stackframe": {"file": {"name": "DateTimeFormatterBuilder.java"}, "function": {"name": "int org.joda.time.format.DateTimeFormatterBuilder$TextField.parseInto(org.joda.time.format.DateTimeParserBucket, java.lang.CharSequence, int)", "offset": 49}, "line": {"number": 1767}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tIoSY_1vT_j29F717EmR3AAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "SSLEngineImpl.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult sun.security.ssl.SSLEngineImpl.wrap(java.nio.ByteBuffer[], int, int, java.nio.ByteBuffer)"}, "line": {"number": 123}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAABFvN"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.sysmon"}, "line": {"number": 5185}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA_IZ"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.wakep"}, "line": {"number": 2423}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Q-0CdzIUPjuUjymJjdFwdwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ByteSizeCachingDirectory.java"}, "function": {"name": "org.apache.lucene.store.IndexOutput org.elasticsearch.index.store.ByteSizeCachingDirectory.createTempOutput(java.lang.String, java.lang.String, org.apache.lucene.store.IOContext)"}, "line": {"number": 124}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "1sVcUE03VxGgQdwfB3ActwAAAAAAAAAv"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 2}, "line": {"number": 206}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7aqMkhc14ipFteNGQMekfwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndexTemplateRegistry.java"}, "function": {"name": "org.elasticsearch.xpack.core.ilm.LifecyclePolicy org.elasticsearch.xpack.core.template.IndexTemplateRegistry.lambda$addIndexLifecyclePoliciesIfMissing$2(org.elasticsearch.xpack.core.template.LifecyclePolicyConfig)"}, "line": {"number": 208}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fgaYIqlr3WukpkSnNwIbKwAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.apache.lucene.index.IndexWriter$$Lambda$6487+0x0000000801ca1928.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "79oV5sP-J3yps9pMow1qNAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ThreadPoolExecutor.java"}, "function": {"name": "void java.util.concurrent.ThreadPoolExecutor$Worker.run()"}, "line": {"number": 635}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdV4"}} -{"Stackframe": {"function": {"name": "common_perm"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "wtgpZp9SPQlV85UePoIRQgAAAAAAAAAZ"}} -{"Stackframe": {"file": {"name": "RBACEngine.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.RBACEngine.loadAuthorizedIndices(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, java.util.Map, org.elasticsearch.action.ActionListener)", "offset": 2}, "line": {"number": 366}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAASg_e"}} -{"Stackframe": {"function": {"name": "aa_file_perm"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ke7oj2vSigw0xd1VYjL-qwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ContextIndexSearcher.java"}, "function": {"name": "org.apache.lucene.search.BulkScorer org.elasticsearch.search.internal.ContextIndexSearcher$1.bulkScorer(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 258}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "EVqCqcMqZlQ0w1_HMPbgrgAAAAAAAABN"}} -{"Stackframe": {"file": {"name": "OutboundHandler.java"}, "function": {"name": "void org.elasticsearch.transport.OutboundHandler.sendResponse(org.elasticsearch.Version, java.util.Set, org.elasticsearch.transport.TcpChannel, long, java.lang.String, org.elasticsearch.transport.TransportResponse, boolean, boolean)", "offset": 10}, "line": {"number": 118}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACg1B6"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mprof.go"}, "function": {"name": "runtime.mProf_PostSweep"}, "line": {"number": 338}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAC-xR9"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/metric/system/cgroup/util.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/metric/system/cgroup.Reader.ProcessCgroupPaths"}, "line": {"number": 302}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Cx5RC8g9OTz7PgiGSeLtvwAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.processEvents(boolean)", "offset": 1}, "line": {"number": 5879}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "exDpNQOMLw9Yf7a5aYjaDAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Lucene86PointsFormat.java"}, "function": {"name": "org.apache.lucene.codecs.PointsWriter org.apache.lucene.codecs.lucene86.Lucene86PointsFormat.fieldsWriter(org.apache.lucene.index.SegmentWriteState)"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMVXg"}} -{"Stackframe": {"function": {"name": "nsfs_show_path"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jA6JkQ0PFn46mJYMDk3jtwAAAAAAAAAL"}} -{"Stackframe": {"file": {"name": "AbstractXContentParser.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.xcontent.support.AbstractXContentParser.readGenericMap(org.elasticsearch.common.xcontent.XContentParser, java.util.function.Supplier, org.elasticsearch.common.CheckedFunction)", "offset": 1}, "line": {"number": 330}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6"}} -{"Stackframe": {"file": {"name": "TransportReplicationAction.java"}, "function": {"name": "void org.elasticsearch.action.support.replication.TransportReplicationAction.handleReplicaRequest(org.elasticsearch.action.support.replication.TransportReplicationAction$ConcreteReplicaRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)", "offset": 5}, "line": {"number": 519}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "8Yk_yt_nArkN1DTfkl8kWgAAAAAAAAF0"}} -{"Stackframe": {"file": {"name": "SegmentInfos.java"}, "function": {"name": "void org.apache.lucene.index.SegmentInfos.write(org.apache.lucene.store.IndexOutput)", "offset": 69}, "line": {"number": 647}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAC20T"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "syscall.Syscall"}, "line": {"number": 1}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "iSUtuDFidZ_ArB9M-KYzuwAAAAAAAAAq"}} -{"Stackframe": {"file": {"name": "BlockTreeTermsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.BlockTreeTermsWriter$TermsWriter.finish()", "offset": 10}, "line": {"number": 976}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6XZVqwgpvPEDrDCTrE9iAgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.xpack.core.template.IndexTemplateRegistry$$Lambda$4408.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mIhHJLRWLV08bvGOk_MaUQAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "BufferedOutputStream.java"}, "function": {"name": "void java.io.BufferedOutputStream.flush()"}, "line": {"number": 142}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACF-Ir"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/io/io.go"}, "function": {"name": "io.copyBuffer"}, "line": {"number": 409}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD_-ES"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/auditbeat/module/file_integrity/scanner.go"}, "function": {"name": "github.com/elastic/beats/v7/auditbeat/module/file_integrity.(*scanner).walkDir.func1"}, "line": {"number": 155}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAd"}} -{"Stackframe": {"file": {"name": "AccessController.java"}, "function": {"name": "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)", "offset": 5}, "line": {"number": 776}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAChdCo"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/symtab.go"}, "function": {"name": "runtime.pcvalue"}, "line": {"number": 949}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEOCT"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map.go"}, "function": {"name": "runtime.makemap"}, "line": {"number": 328}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "omt3Uh86jhN6UzDM_NIHbAAAAAAAAACC"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 19}, "line": {"number": 1298}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACgkVt"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.markroot"}, "line": {"number": 176}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pq-mOW6eRIollfh7ZsI7mwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "ChannelActionListener.java"}, "function": {"name": "void org.elasticsearch.action.support.ChannelActionListener.onResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 47}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ttnw8j0HRfVM17mHQNg8LAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "SettingsFilter.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings org.elasticsearch.common.settings.SettingsFilter.filterSettings(org.elasticsearch.xcontent.ToXContent$Params, org.elasticsearch.common.settings.Settings)"}, "line": {"number": 67}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "UbK4uezrplMLlSw0h87XfgAAAAAACJzx"}} -{"Stackframe": {"function": {"name": "xlog_ioend_work"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIj8"}} -{"Stackframe": {"function": {"name": "__seccomp_filter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gC1zzVI3GFMD6nesCimzrgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Setting.java"}, "function": {"name": "java.lang.Object org.elasticsearch.common.settings.Setting.get(org.elasticsearch.common.settings.Settings, boolean)"}, "line": {"number": 431}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i-4GrP60Jbwood3rLzWi1AAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "AuthenticationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticationService$Authenticator.lambda$lookForExistingAuthentication$6(java.util.function.Consumer, org.elasticsearch.xpack.core.security.authc.Authentication)"}, "line": {"number": 385}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-7qKHNvuu4dQ-NSojX-1nAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "SortedSetSelector.java"}, "function": {"name": "int org.apache.lucene.search.SortedSetSelector$MinValue.nextDoc()"}, "line": {"number": 108}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkkI3"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/bytes/buffer.go"}, "function": {"name": "bytes.makeSlice"}, "line": {"number": 222}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FH4SH_uTiEszu4Eono2UAQAAAAAAAABs"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService.maybeAuthorizeRunAs(org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$RequestInfo, java.lang.String, org.elasticsearch.xpack.core.security.authz.AuthorizationEngine$AuthorizationInfo, org.elasticsearch.action.ActionListener)", "offset": 36}, "line": {"number": 371}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "-EMbO6MQ9CzSH9RcHPYaqgAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "Method.java"}, "function": {"name": "java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[])", "offset": 10}, "line": {"number": 564}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4m-0zgTNuwngv66j7dc5XAAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "UnixFileSystemProvider.java"}, "function": {"name": "java.nio.channels.FileChannel sun.nio.fs.UnixFileSystemProvider.newFileChannel(java.nio.file.Path, java.util.Set, java.nio.file.attribute.FileAttribute[])", "offset": 4}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAOVIl"}} -{"Stackframe": {"function": {"name": "ext4_file_read_iter"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlR_v"}} -{"Stackframe": {"function": {"name": "inet_ehashfn"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFdKO"}} -{"Stackframe": {"function": {"name": "proc_cgroup_show"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6lx-lYWKJmBO9umjh2EvcwAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "Aggregations.java"}, "function": {"name": "org.elasticsearch.xcontent.XContentBuilder org.elasticsearch.search.aggregations.Aggregations.toXContent(org.elasticsearch.xcontent.XContentBuilder, org.elasticsearch.xcontent.ToXContent$Params)", "offset": 4}, "line": {"number": 110}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AAn_OLmzgN0q8Ywe9O03FgAAAAAAAAAb"}} -{"Stackframe": {"file": {"name": "IndexFileDeleter.java"}, "function": {"name": "void org.apache.lucene.index.IndexFileDeleter.decRef(org.apache.lucene.index.SegmentInfos)", "offset": 1}, "line": {"number": 629}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAABWBMv"}} -{"Stackframe": {"file": {"name": "github.com/cilium/ebpf@v0.9.1/perf/reader.go"}, "function": {"name": "github.com/cilium/ebpf/perf.(*Reader).ReadInto"}, "line": {"number": 310}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "F-UVz7qWVUzScRv1FhkbzQAAAAAAAACq"}} -{"Stackframe": {"file": {"name": "DefaultIndexingChain.java"}, "function": {"name": "org.apache.lucene.index.Sorter$DocMap org.apache.lucene.index.DefaultIndexingChain.flush(org.apache.lucene.index.SegmentWriteState)", "offset": 16}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FvsddNGxnOi8XVXGV8dYgQAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": "ForkJoinWorkerThread.java"}, "function": {"name": "void java.util.concurrent.ForkJoinWorkerThread.run()", "offset": 4}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "4b6Y6AxjtjqP_pey1p_yKgAAAAAAAAA4"}} -{"Stackframe": {"file": {"name": "RealmsAuthenticator.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.RealmsAuthenticator.authenticate(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 7}, "line": {"number": 83}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HRX5ZF5fIW1GKCXf3a6CmwAAAAAAAACt"}} -{"Stackframe": {"file": {"name": "TransportShardBulkAction.java"}, "function": {"name": "org.elasticsearch.index.translog.Translog$Location org.elasticsearch.action.bulk.TransportShardBulkAction.performOnReplica(org.elasticsearch.action.bulk.BulkShardRequest, org.elasticsearch.index.shard.IndexShard)", "offset": 27}, "line": {"number": 564}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "smjp5sI7cy9_VZ8AgeA6PwAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "ServiceUtils.java"}, "function": {"name": "java.util.Date com.amazonaws.services.s3.internal.ServiceUtils.parseRfc822Date(java.lang.String)", "offset": 3}, "line": {"number": 88}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "sHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAY"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.shard.IndexShard$$Lambda$6936+0x00000008024762f0.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ANUDzCguopTSw91qnI0ylAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "TaskTransportChannel.java"}, "function": {"name": "void org.elasticsearch.transport.TaskTransportChannel.sendResponse(org.elasticsearch.transport.TransportResponse)"}, "line": {"number": 39}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CIYguVhaxe0J-8ClJsrUlAAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "Parsed.java"}, "function": {"name": "java.time.temporal.TemporalAccessor java.time.format.Parsed.resolve(java.time.format.ResolverStyle, java.util.Set)", "offset": 4}, "line": {"number": 265}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QoETQaJh4hk1PJNhgxG6YQAAAAAAAACe"}} -{"Stackframe": {"file": {"name": "TransportNodesInfoAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.node.info.NodeInfo org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction.nodeOperation(org.elasticsearch.action.admin.cluster.node.info.TransportNodesInfoAction$NodeInfoRequest, org.elasticsearch.tasks.Task)", "offset": 2}, "line": {"number": 82}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vxG-WVYFZTc5aU17HIQx7gAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "Settings.java"}, "function": {"name": "org.elasticsearch.common.settings.Settings$Builder org.elasticsearch.common.settings.Settings$Builder.put(java.lang.String, java.lang.String)"}, "line": {"number": 972}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter$EventQueue.processEvents()", "offset": 2}, "line": {"number": 344}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9BsFwV8tobvksYfuNpORcQAAAAAAAABd"}} -{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 25}, "line": {"number": 98}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAACWe0"}} -{"Stackframe": {"function": {"name": "dup_mm"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACuFZc"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_process_metadata/gosysinfo_provider.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_process_metadata.gosysinfoProvider.GetProcessMetadata"}, "line": {"number": 37}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEfk3"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/mgcmark.go"}, "function": {"name": "runtime.gcDrain"}, "line": {"number": 1110}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QN3Ei4y0jjQeG3JY3GoqzgAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "BufferedIndexInput.java"}, "function": {"name": "byte org.apache.lucene.store.BufferedIndexInput.readByte()"}, "line": {"number": 55}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "QN4Q0wqGRE_9JxLmhmELwwAAAAAAAABP"}} -{"Stackframe": {"file": {"name": "XContentBuilder.java"}, "function": {"name": "org.elasticsearch.common.xcontent.XContentBuilder org.elasticsearch.common.xcontent.XContentBuilder.map(java.util.Map, boolean, boolean)", "offset": 16}, "line": {"number": 895}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACkDPL"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/print.go"}, "function": {"name": "fmt.(*pp).printArg"}, "line": {"number": 645}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "REzUm9-kG4oY6GqBh6QfVAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "MetadataStateFormat.java"}, "function": {"name": "long org.elasticsearch.gateway.MetadataStateFormat.writeAndCleanup(java.lang.Object, java.nio.file.Path[])"}, "line": {"number": 174}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oFRYJDbPvQJOSZxJm2FyygAAAAAAAABm"}} -{"Stackframe": {"file": {"name": "APMTracer.java"}, "function": {"name": "io.opentelemetry.context.Context org.elasticsearch.tracing.apm.APMTracer.getParentContext(org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 14}, "line": {"number": 234}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "LZh55WiQA4pYUO2PyDs0LQAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "OutputStreamIndexOutput.java"}, "function": {"name": "void org.apache.lucene.store.OutputStreamIndexOutput.writeBytes(byte[], int, int)"}, "line": {"number": 53}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "i2OZ9-P_pjOFSV36486xoQAAAAAAAAEg"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)", "offset": 35}, "line": {"number": 669}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JQPywLxOZsn4VW068VxtgAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "InferenceProcessor.java"}, "function": {"name": "void org.elasticsearch.xpack.ml.inference.ingest.InferenceProcessor$Factory.accept(java.lang.Object)"}, "line": {"number": 189}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJXgA"}} -{"Stackframe": {"function": {"name": "do_wp_page"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_xZpr9TGIZucU6bt2UiKVAAAAAAAAAEj"}} -{"Stackframe": {"file": {"name": "IndexNameExpressionResolver.java"}, "function": {"name": "java.util.Set org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$WildcardExpressionResolver.innerResolve(org.elasticsearch.cluster.metadata.IndexNameExpressionResolver$Context, java.util.List, org.elasticsearch.action.support.IndicesOptions, org.elasticsearch.cluster.metadata.Metadata)", "offset": 48}, "line": {"number": 795}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_4WcH53TxNRbyklfT7cbEwAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "JavaDateFormatter.java"}, "function": {"name": "java.time.temporal.TemporalAccessor org.elasticsearch.common.time.JavaDateFormatter.parse(java.lang.String)", "offset": 5}, "line": {"number": 209}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAAD8TU4"}} -{"Stackframe": {"file": {"name": "/go/src/github.com/elastic/beats/libbeat/processors/add_docker_metadata/add_docker_metadata.go"}, "function": {"name": "github.com/elastic/beats/v7/libbeat/processors/add_docker_metadata.(*addDockerMetadata).Close"}, "line": {"number": 221}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "E7J_ZVS2fIyPaAMkyne11QAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.lang.Object java.util.HashMap$EntryIterator.next()"}, "line": {"number": 1615}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "q3Tjfka8pNswMm1Yg7BN5wAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction$$Lambda$7506+0x0000000802552f68.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9BsFwV8tobvksYfuNpORcQAAAAAAAAB6"}} -{"Stackframe": {"file": {"name": "ESPolicy.java"}, "function": {"name": "boolean org.elasticsearch.bootstrap.ESPolicy.implies(java.security.ProtectionDomain, java.security.Permission)", "offset": 36}, "line": {"number": 109}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAABQH"}} -{"Stackframe": {"function": {"name": "xen_hypercall_event_channel_op"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "5h_x3DWmOz8VIG9_VAD0HAAAAAAAAAA7"}} -{"Stackframe": {"file": {"name": "AuthenticatorChain.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.AuthenticatorChain.authenticateAsync(org.elasticsearch.xpack.security.authc.Authenticator$Context, org.elasticsearch.action.ActionListener)", "offset": 14}, "line": {"number": 86}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fEfXEAdeoPaW4CEh2_iKSwAAAAAAAAAN"}} -{"Stackframe": {"file": {"name": "DocumentsWriterPerThread.java"}, "function": {"name": "long org.apache.lucene.index.DocumentsWriterPerThread.finishDocuments(org.apache.lucene.index.DocumentsWriterDeleteQueue$Node, int)", "offset": 1}, "line": {"number": 274}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HNuVj5I-SSkA73KWVF2D8AAAAAAAAACw"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.merge(org.apache.lucene.index.MergePolicy$OneMerge)", "offset": 38}, "line": {"number": 4705}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "X6lQOeqkpDSSxUYYwJb8TAAAAAAAAABC"}} -{"Stackframe": {"file": {"name": "JsonXContentGenerator.java"}, "function": {"name": "void org.elasticsearch.common.xcontent.json.JsonXContentGenerator.close()", "offset": 12}, "line": {"number": 476}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACEOw2"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/runtime/map.go"}, "function": {"name": "runtime.mapassign"}, "line": {"number": 649}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAATnvF"}} -{"Stackframe": {"function": {"name": "blk_mq_run_hw_queue"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "edP2chSf3068PVlMnJWsegAAAAAAAAEe"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 286}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6dU5a7uUwZ-RI2PmJ37RzgAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "RestActions.java"}, "function": {"name": "org.elasticsearch.rest.RestResponse org.elasticsearch.rest.action.RestActions$NodesResponseRestListener.buildResponse(java.lang.Object, org.elasticsearch.xcontent.XContentBuilder)"}, "line": {"number": 239}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "ConjunctionDISI.java"}, "function": {"name": "int org.apache.lucene.search.ConjunctionDISI.doNext(int)", "offset": 5}, "line": {"number": 211}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "mVZC5ucQ9s0QMwQ6Cu6VqwAAAAAAAAAm"}} -{"Stackframe": {"file": {"name": "AsyncIOProcessor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.AsyncIOProcessor.drainAndProcessAndRelease(java.util.List)", "offset": 5}, "line": {"number": 89}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEw"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.applyChanges(org.elasticsearch.cluster.service.ClusterApplierService$UpdateTask, org.elasticsearch.cluster.ClusterState, org.elasticsearch.cluster.ClusterState, org.elasticsearch.common.StopWatch)", "offset": 26}, "line": {"number": 460}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OppFSDODTzgTHYJG_GWJMwAAAAAAAAA-"}} -{"Stackframe": {"file": {"name": "StreamInput.java"}, "function": {"name": "java.util.Map org.elasticsearch.common.io.stream.StreamInput.readMap(org.elasticsearch.common.io.stream.Writeable$Reader, org.elasticsearch.common.io.stream.Writeable$Reader, java.util.function.IntFunction)", "offset": 8}, "line": {"number": 655}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Nx4R-NQ5XTI0aj_ko-HU5AAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.index.reindex.TransportUpdateByQueryAction$$Lambda$6203.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C4CcYG0dw-sjNwKzo6iFpgAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "OsService.java"}, "function": {"name": "org.elasticsearch.monitor.os.OsStats org.elasticsearch.monitor.os.OsService$OsStatsCache.refresh()"}, "line": {"number": 59}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "zSsi2NqIQt2uWzMgbkvEIQAAAAAAAAAt"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "void io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(java.lang.Object, io.netty.channel.ChannelPromise)", "offset": 5}, "line": {"number": 879}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAk"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6596+0x00000008023ded30.accept(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "l5QwIv7i0mQIqhQ7__9UiQAAAAAAAAAc"}} -{"Stackframe": {"file": {"name": "StringUTF16.java"}, "function": {"name": "int java.lang.StringUTF16.hashCode(byte[])", "offset": 2}, "line": {"number": 417}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_CjTv6kUGwXvM8Sos-Kh-wAAAAAAAAAO"}} -{"Stackframe": {"file": {"name": "ExitableDirectoryReader.java"}, "function": {"name": "void org.elasticsearch.search.internal.ExitableDirectoryReader$ExitablePointTree.visitDocIDs(org.apache.lucene.index.PointValues$IntersectVisitor)", "offset": 1}, "line": {"number": 356}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "z5HuulsAB8YTAdgrpUuY4gAAAAAAAAAG"}} -{"Stackframe": {"file": {"name": "AbstractChannelHandlerContext.java"}, "function": {"name": "io.netty.channel.ChannelHandlerContext io.netty.channel.AbstractChannelHandlerContext.fireChannelReadComplete()"}, "line": {"number": 456}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PbXXr1ohgiKjdKmG8bXqXAAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "IndexModule.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexCommitRef org.elasticsearch.index.IndexModule.lambda$static$1(org.elasticsearch.index.engine.Engine)"}, "line": {"number": 547}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAj"}} -{"Stackframe": {"file": {"name": "TransportClusterStatsAction.java"}, "function": {"name": "org.elasticsearch.action.admin.cluster.stats.ClusterStatsResponse org.elasticsearch.action.admin.cluster.stats.TransportClusterStatsAction.newResponse(org.elasticsearch.action.admin.cluster.stats.ClusterStatsRequest, java.util.List, java.util.List)", "offset": 4}, "line": {"number": 80}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PxKXTV4MDkHtmEvOc2iKdAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "Files.java"}, "function": {"name": "java.nio.file.attribute.FileTime java.nio.file.Files.getLastModifiedTime(java.nio.file.Path, java.nio.file.LinkOption[])"}, "line": {"number": 2394}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "HfFlM3axnhO28EteQn-2WAAAAAAAAABJ"}} -{"Stackframe": {"file": {"name": "IndicesService.java"}, "function": {"name": "org.elasticsearch.action.admin.indices.stats.IndexShardStats org.elasticsearch.indices.IndicesService.indexShardStats(org.elasticsearch.indices.IndicesService, org.elasticsearch.index.shard.IndexShard, org.elasticsearch.action.admin.indices.stats.CommonStatsFlags)", "offset": 24}, "line": {"number": 532}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAErgk"}} -{"Stackframe": {"file": {"name": "compress/flate/deflate.go"}, "function": {"name": "compress/flate.(*compressor).deflate"}, "line": {"number": 436}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "abVgSSWhd-7g7F13ivHMFwAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$$Lambda$6680+0x000000080240ccb0.accept(java.lang.Object, java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "67ZApSKF_tBH-bAhOXBNxAAAAAAAAAF_"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "void org.apache.lucene.index.IndexWriter.startCommit(org.apache.lucene.index.SegmentInfos)", "offset": 55}, "line": {"number": 5084}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACwtaE"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/prometheus/procfs@v0.6.0/proc.go"}, "function": {"name": "github.com/prometheus/procfs.Proc.MountStats"}, "line": {"number": 251}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh"}} -{"Stackframe": {"file": {"name": "CompositeRolesStore.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.store.CompositeRolesStore.roles(java.util.Set, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 173}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3kg82-0D3eZ1bo-oCBlTCgAAAAAAAAD0"}} -{"Stackframe": {"file": {"name": "InternalEngine.java"}, "function": {"name": "org.elasticsearch.index.engine.Engine$IndexResult org.elasticsearch.index.engine.InternalEngine.indexIntoLucene(org.elasticsearch.index.engine.Engine$Index, org.elasticsearch.index.engine.InternalEngine$IndexingStrategy)", "offset": 18}, "line": {"number": 1187}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACqVRk"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/path/filepath/match.go"}, "function": {"name": "path/filepath.scanChunk"}, "line": {"number": 91}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "x0M0pE8Yl1KsW-gNW5M8PwAAAAAAAACA"}} -{"Stackframe": {"file": {"name": "URI.java"}, "function": {"name": "int java.net.URI$Parser.parseAuthority(int, int)", "offset": 26}, "line": {"number": 3241}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "9y6T0XjNIrAyHZHcTXEkswAAAAAAAADO"}} -{"Stackframe": {"file": {"name": "SegmentTermsEnumFrame.java"}, "function": {"name": "void org.apache.lucene.codecs.blocktree.SegmentTermsEnumFrame.loadBlock()", "offset": 24}, "line": {"number": 183}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "H7UuqwN000YfavdusMYbuAAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "void org.elasticsearch.transport.netty4.Netty4TcpChannel$$Lambda$5342+0x0000000801a771d8.operationComplete(io.netty.util.concurrent.Future)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "SeV4KhxoLTaZZsVPppSmnQAAAAAAAAEE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 260}, "source": {"type": 6}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jUOioEgL9y6klFiTOk4p0AAAAAAAAAAD"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": ""}, "line": {"number": 114}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nia7whBbxOvwBeZB8fnAXQAAAAAAAACE"}} -{"Stackframe": {"file": {"name": "IOUtil.java"}, "function": {"name": "int sun.nio.ch.IOUtil.readIntoNativeBuffer(java.io.FileDescriptor, java.nio.ByteBuffer, long, boolean, boolean, int, sun.nio.ch.NativeDispatcher)", "offset": 18}, "line": {"number": 340}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "R8J-NKdRXmfXHHCKNIVxpAAAAAAAAAB7"}} -{"Stackframe": {"file": {"name": "Class.java"}, "function": {"name": "java.io.InputStream java.lang.Class.getResourceAsStream(java.lang.String)", "offset": 36}, "line": {"number": 2728}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Vdgwu2yTb01w3GcQPIyz_wAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "DeflateCompressor.java"}, "function": {"name": "void org.elasticsearch.common.compress.DeflateCompressor$2.close()"}, "line": {"number": 122}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ZNIMXBN7NKTXUfXb93okMgAAAAAAAABB"}} -{"Stackframe": {"file": {"name": "AbstractNioByteChannel.java"}, "function": {"name": "void io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read()", "offset": 14}, "line": {"number": 147}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Qx5b3IPW0UBs9KCWRFhqvwAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.index.engine.CompletionStatsCache$$Lambda$7188+0x0000000801ea3c28.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "DaVWIofPTETqopDkVERGkAAAAAAAAAAT"}} -{"Stackframe": {"file": {"name": "TokenService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authc.TokenService.getAndValidateToken(org.elasticsearch.common.util.concurrent.ThreadContext, org.elasticsearch.action.ActionListener)", "offset": 3}, "line": {"number": 388}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "oAZFW9wMcUMYVEEE5ZtkLwAAAAAAAAAa"}} -{"Stackframe": {"file": {"name": "StoredFieldsConsumer.java"}, "function": {"name": "void org.apache.lucene.index.StoredFieldsConsumer.initStoredFieldsWriter()", "offset": 3}, "line": {"number": 49}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bOb86QTSjl0Tbgl6WGMPVwAAAAAAAAHO"}} -{"Stackframe": {"file": {"name": "UTF8StreamJsonParser.java"}, "function": {"name": "com.fasterxml.jackson.core.JsonToken com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken()", "offset": 105}, "line": {"number": 812}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_p12Y0DOk4cFEn5gGz9psgAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "Collections.java"}, "function": {"name": "java.lang.Object java.util.Collections$UnmodifiableMap$UnmodifiableEntrySet$UnmodifiableEntry.getKey()"}, "line": {"number": 1767}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "D1Pplq_qKhq6dsYD8eLgmQAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "TransportFieldCapabilitiesAction.java"}, "function": {"name": "void org.elasticsearch.action.fieldcaps.TransportFieldCapabilitiesAction$NodeTransportHandler.messageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel, org.elasticsearch.tasks.Task)"}, "line": {"number": 387}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACvKd1"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/regexp/regexp.go"}, "function": {"name": "regexp.compile"}, "line": {"number": 190}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbP"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-libaudit/v2@v2.2.0/auparse/auparse.go"}, "function": {"name": "github.com/elastic/go-libaudit/v2/auparse.(*AuditMessage).Data"}, "line": {"number": 99}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jOKHIn-OfmVASZP9y1NSfAAAAAAAAACH"}} -{"Stackframe": {"file": {"name": "IteratingActionListener.java"}, "function": {"name": "void org.elasticsearch.xpack.core.common.IteratingActionListener.run()", "offset": 6}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Dk85LW9HyxD9vcA1wyDoDgAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "IndexService.java"}, "function": {"name": "void org.elasticsearch.index.IndexService.access$200(org.elasticsearch.index.IndexService, boolean)"}, "line": {"number": 102}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Yxe-SHgukLEpCkawSk1QWAAAAAAAA-wk"}} -{"Stackframe": {"file": {"name": "runtime/proc.go"}, "function": {"name": "runtime.startm"}, "line": {"number": 2280}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAsTF"}} -{"Stackframe": {"function": {"name": "xen_smp_send_call_function_single_ipi"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Fgku_l8XxpuCKm1rHnux7gAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "Cipher.java"}, "function": {"name": "void javax.crypto.Cipher.updateAAD(byte[])", "offset": 4}, "line": {"number": 2709}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AmmotxQnAOVzMU8NulbCZwAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "BooleanWeight.java"}, "function": {"name": "org.apache.lucene.search.Scorer org.apache.lucene.search.BooleanWeight.scorer(org.apache.lucene.index.LeafReaderContext)"}, "line": {"number": 499}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACLmm9"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/encoding/json/decode.go"}, "function": {"name": "encoding/json.(*decodeState).object"}, "line": {"number": 765}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fPIDGh47_zu8kEHtQ2rNTQAAAAAAAAA3"}} -{"Stackframe": {"file": {"name": "OriginSettingClient.java"}, "function": {"name": "void org.elasticsearch.client.OriginSettingClient.doExecute(org.elasticsearch.action.ActionType, org.elasticsearch.action.ActionRequest, org.elasticsearch.action.ActionListener)", "offset": 4}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAACGIku"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/syscall/syscall_unix.go"}, "function": {"name": "syscall.Recvfrom"}, "line": {"number": 282}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "PdUW9luC01twMTSwlltVwwAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "ApplicationPrivilegeDescriptor.java"}, "function": {"name": "int org.elasticsearch.xpack.core.security.authz.privilege.ApplicationPrivilegeDescriptor.hashCode()"}, "line": {"number": 158}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "cEvvhuguaGYCmGWrnWRz1QAAAAAC1GrR"}} -{"Stackframe": {"file": {"name": "/go/pkg/mod/github.com/elastic/go-lumber@v0.1.0/client/v2/async.go"}, "function": {"name": "github.com/elastic/go-lumber/client/v2.(*AsyncClient).ackLoop"}, "line": {"number": 158}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vCYukS89lPAo0Tgs1462rgAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.repositories.s3.S3RetryingInputStream$$Lambda$4892.run()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "bWvwaQ-L9lsicFq6vqiqCAAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.common.util.iterable.Iterables$FlattenedIterables$$Lambda$5086+0x00000008020fc000.apply(java.lang.Object)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "r9cOIG3luKhozeJLjvBOSQAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "DateTimeParserBucket.java"}, "function": {"name": "long org.joda.time.format.DateTimeParserBucket.doParseMillis(org.joda.time.format.InternalParser, java.lang.CharSequence)"}, "line": {"number": 179}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OqYUrIQFA_Z4Hrury2e3YwAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.action.admin.cluster.node.info.NodeInfo$$Lambda$7478+0x000000080254d2c8.read(org.elasticsearch.common.io.stream.StreamInput)"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "XT4fd_WKeR1cE-hlLelCQAAAAAACj-K-"}} -{"Stackframe": {"file": {"name": "/usr/local/go/src/fmt/format.go"}, "function": {"name": "fmt.(*fmt).fmtSbx"}, "line": {"number": 370}, "source": {"type": 4}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nzw4AVNutfhHt7T-gQii5AAAAAAAAABf"}} -{"Stackframe": {"file": {"name": "HashMap.java"}, "function": {"name": "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)", "offset": 7}, "line": {"number": 574}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "AOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAH"}} -{"Stackframe": {"file": {"name": "AmazonS3Client.java"}, "function": {"name": "java.lang.Object com.amazonaws.services.s3.AmazonS3Client.invoke(com.amazonaws.Request, com.amazonaws.http.HttpResponseHandler, java.lang.String, java.lang.String)"}, "line": {"number": 5000}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pmDPo90patYnML-NuPnblgAAAAAAAAAp"}} -{"Stackframe": {"file": {"name": "RequestHandlerRegistry.java"}, "function": {"name": "void org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived(org.elasticsearch.transport.TransportRequest, org.elasticsearch.transport.TransportChannel)", "offset": 3}, "line": {"number": 63}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "gVQfyTUjnDx6YGZ7YyYMDwAAAAAAAAAV"}} -{"Stackframe": {"file": {"name": "FSDirectory.java"}, "function": {"name": "void org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write(byte[], int, int)", "offset": 2}, "line": {"number": 398}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "RcY_MPrR3HbPvGMVCVyH7wAAAAAAAAAg"}} -{"Stackframe": {"file": {"name": "Lucene90CompressingStoredFieldsWriter.java"}, "function": {"name": "void org.apache.lucene.codecs.lucene90.compressing.Lucene90CompressingStoredFieldsWriter.close()"}, "line": {"number": 166}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "BZDyipXP5bFEE55HWZ3NWQAAAAAAAAAC"}} -{"Stackframe": {"file": {"name": "Hasher.java"}, "function": {"name": "boolean org.elasticsearch.xpack.core.security.authc.support.Hasher.access$100(org.elasticsearch.common.settings.SecureString, char[])"}, "line": {"number": 29}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "_Yyh0AjlZUFswafIHC3ytAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "InternalOrder.java"}, "function": {"name": "int org.elasticsearch.search.aggregations.InternalOrder.lambda$comparingKeys$0(org.elasticsearch.search.aggregations.bucket.MultiBucketsAggregation$Bucket, org.elasticsearch.search.aggregations.bucket.MultiBucketsAggregation$Bucket)"}, "line": {"number": 383}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "d2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJ"}} -{"Stackframe": {"file": {"name": "SimpleConfig.java"}, "function": {"name": "com.typesafe.config.impl.AbstractConfigValue com.typesafe.config.impl.SimpleConfig.find(java.lang.String, com.typesafe.config.ConfigValueType)", "offset": 1}, "line": {"number": 193}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "ccTvkbbzG7ITlutNR0SvYwAAAAAAAAAe"}} -{"Stackframe": {"file": {"name": "RestController.java"}, "function": {"name": "void org.elasticsearch.rest.RestController.dispatchRequest(org.elasticsearch.rest.RestRequest, org.elasticsearch.rest.RestChannel, org.elasticsearch.common.util.concurrent.ThreadContext)", "offset": 5}, "line": {"number": 176}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "C6Cl1mEselPLNxdVax9QrgAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "IndexWriter.java"}, "function": {"name": "boolean org.apache.lucene.index.IndexWriter.isFullyDeleted(org.apache.lucene.index.ReadersAndUpdates)"}, "line": {"number": 5972}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "0xjqN2eHOKsjzvKPeuH6xQAAAAAAAAAI"}} -{"Stackframe": {"file": {"name": "EsThreadPoolExecutor.java"}, "function": {"name": "void org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor.execute(java.lang.Runnable)", "offset": 2}, "line": {"number": 95}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "tG2KtxjrEKbGvy_Zisi6LwAAAAAAAABR"}} -{"Stackframe": {"file": {"name": "SegmentDocValues.java"}, "function": {"name": "org.apache.lucene.util.RefCount org.apache.lucene.index.SegmentDocValues.newDocValuesProducer(org.apache.lucene.index.SegmentCommitInfo, org.apache.lucene.store.Directory, java.lang.Long, org.apache.lucene.index.FieldInfos)", "offset": 11}, "line": {"number": 51}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "vQFAJpUcUdYpyCu-g_-B-QAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "EnumMap.java"}, "function": {"name": "int java.util.EnumMap.entryHashCode(int)"}, "line": {"number": 717}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "fmVqFyGK_erbPbR830tm8gAAAAAAAAAP"}} -{"Stackframe": {"file": {"name": "ClusterApplierService.java"}, "function": {"name": "void org.elasticsearch.cluster.service.ClusterApplierService.callClusterStateAppliers(org.elasticsearch.cluster.ClusterChangedEvent, org.elasticsearch.cluster.service.ClusterApplierRecordingService$Recorder)", "offset": 1}, "line": {"number": 525}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OtUYN1cmmeSm89C4ESuZUQAAAAAAAAB1"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "", "offset": 4}, "line": {"number": 140}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2"}} -{"Stackframe": {"file": {"name": "ForkJoinPool.java"}, "function": {"name": "boolean java.util.concurrent.ForkJoinPool.scan(java.util.concurrent.ForkJoinPool$WorkQueue, int)", "offset": 14}, "line": {"number": 1656}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "CyFPDZBEiXoheKAUx-Kq0wAAAAAAAAAA"}} -{"Stackframe": {"file": {"name": "StreamOutput.java"}, "function": {"name": "void org.elasticsearch.common.io.stream.StreamOutput.writeString(java.lang.String)"}, "line": {"number": 422}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "Reyju0By9wxqZBnf2BDPsgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "DefaultChannelPipeline.java"}, "function": {"name": "io.netty.channel.ChannelFuture io.netty.channel.DefaultChannelPipeline.write(java.lang.Object)"}, "line": {"number": 1010}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jGpW5CwHOoA7hIucEbiLmQAAAAAAAAAx"}} -{"Stackframe": {"file": {"name": "Spliterators.java"}, "function": {"name": "boolean java.util.Spliterators$ArraySpliterator.tryAdvance(java.util.function.Consumer)", "offset": 4}, "line": {"number": 1016}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "VPYOHzahM8nW-lI6iDLCtgAAAAAAAAAK"}} -{"Stackframe": {"file": {"name": "AuthorizationService.java"}, "function": {"name": "void org.elasticsearch.xpack.security.authz.AuthorizationService$CachingAsyncSupplier.lambda$getAsync$0(org.elasticsearch.action.ActionListener, java.lang.Object)", "offset": 1}, "line": {"number": 727}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "OGothoSS_VGQxhefQGBOogAAAAAAAAAM"}} -{"Stackframe": {"file": {"name": "Store.java"}, "function": {"name": "org.elasticsearch.index.store.StoreStats org.elasticsearch.index.store.Store.stats()", "offset": 1}, "line": {"number": 360}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "nKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQ"}} -{"Stackframe": {"file": {"name": "Throwable.java"}, "function": {"name": "java.lang.Throwable java.lang.Throwable.fillInStackTrace()", "offset": 2}, "line": {"number": 787}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "jiFBP8aULjLbsVdXEn7rugAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": ""}, "function": {"name": "java.lang.Object org.elasticsearch.search.SearchService$$Lambda$7102+0x0000000801d75f08.get()"}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "JdCwn38kQFolt808Z0rZSwAAAAAAAAAB"}} -{"Stackframe": {"file": {"name": "AmazonHttpClient.java"}, "function": {"name": "com.amazonaws.Response com.amazonaws.http.AmazonHttpClient$RequestExecutor.access$500(com.amazonaws.http.AmazonHttpClient$RequestExecutor)"}, "line": {"number": 698}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "pBAXMFgFarqt_e84PodhnAAAAAAAAAAU"}} -{"Stackframe": {"file": {"name": "SSLEngine.java"}, "function": {"name": "javax.net.ssl.SSLEngineResult javax.net.ssl.SSLEngine.wrap(java.nio.ByteBuffer[], java.nio.ByteBuffer)", "offset": 3}, "line": {"number": 564}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJWlh"}} -{"Stackframe": {"function": {"name": "unmap_page_range"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAALiNy"}} -{"Stackframe": {"function": {"name": "inode_permission"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "FwuyP0Ci_HZ2VTm-IYuHdgAAAAAAAAAF"}} -{"Stackframe": {"file": {"name": "SortedSetDocValuesWriter.java"}, "function": {"name": "void org.apache.lucene.index.SortedSetDocValuesWriter.addOneValue(org.apache.lucene.util.BytesRef)"}, "line": {"number": 116}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stackframes", "_id": "grlzyYVVprN3PhxXr__ghAAAAAAAAAAE"}} -{"Stackframe": {"file": {"name": "PrunePostingsMergePolicy.java"}, "function": {"name": "void org.elasticsearch.index.engine.PrunePostingsMergePolicy$2$1.checkIntegrity()"}, "line": {"number": 73}, "source": {"type": 5}}, "ecs": {"version": "1.12.0"}} diff --git a/x-pack/plugins/profiling/e2e/es_archivers/profiling_stacktraces.json b/x-pack/plugins/profiling/e2e/es_archivers/profiling_stacktraces.json deleted file mode 100644 index 0db94b34898fc..0000000000000 --- a/x-pack/plugins/profiling/e2e/es_archivers/profiling_stacktraces.json +++ /dev/null @@ -1,5982 +0,0 @@ -{"create": {"_index": "profiling-stacktraces", "_id": "QnM8HV7T1nK2sOOhDjm8wQ"}} -{"Stacktrace": {"frame": {"ids": "pqmEMTIUDz-nhY9YtlE3YAAAAAAAZJUgpqmEMTIUDz-nhY9YtlE3YAAAAAAA_iOypqmEMTIUDz-nhY9YtlE3YAAAAAABAICQpqmEMTIUDz-nhY9YtlE3YAAAAAABAAv6pqmEMTIUDz-nhY9YtlE3YAAAAAABAC1QpqmEMTIUDz-nhY9YtlE3YAAAAAABAC_tpqmEMTIUDz-nhY9YtlE3YAAAAAABADelpqmEMTIUDz-nhY9YtlE3YAAAAAABAEZ0pqmEMTIUDz-nhY9YtlE3YAAAAAAAj31FpqmEMTIUDz-nhY9YtlE3YAAAAAAAj0fApqmEMTIUDz-nhY9YtlE3YAAAAAAAj0sUpqmEMTIUDz-nhY9YtlE3YAAAAAAAjyNq", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "50PoVbLjF0hCNpsgtuMl5g"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABazfcz5k14PsCcDvFyUC1kmlV3QAAAAABaQLqz5k14PsCcDvFyUC1kmlV3QAAAAABauKFz5k14PsCcDvFyUC1kmlV3QAAAAABLLaZz5k14PsCcDvFyUC1kmlV3QAAAAABK3dwz5k14PsCcDvFyUC1kmlV3QAAAAABHfOyz5k14PsCcDvFyUC1kmlV3QAAAAABHAaLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG", "types": "CQMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XOEcWEB-1gR5VA6Y_JnK8A"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADB0YTZ3CKaS4aU08RhYA19y5ITQAAAAADA21XZ3CKaS4aU08RhYA19y5ITQAAAAADAz4DZ3CKaS4aU08RhYA19y5ITQAAAAACsr6sZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyn-Z3CKaS4aU08RhYA19y5ITQAAAAABzzZNZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz0HTZ3CKaS4aU08RhYA19y5ITQAAAAABzy3vZ3CKaS4aU08RhYA19y5ITQAAAAABvB6k", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Pl4gIyM-ZJ0uHaZ1UHaSeQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAAX3IqZSkKN3zNxr0HYuO2pqe5hQAAAAAAdnyHZSkKN3zNxr0HYuO2pqe5hQAAAAAAdnxkZSkKN3zNxr0HYuO2pqe5hQAAAAAAdU3GZSkKN3zNxr0HYuO2pqe5hQAAAAAAb-pr", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Q1rqIqW9LrYYmMwOZmvxpQ"}} -{"Stacktrace": {"frame": {"ids": "2gc0AZFX7cRANst-IF7zQAAAAAAAAcnd2gc0AZFX7cRANst-IF7zQAAAAAAAAeN02gc0AZFX7cRANst-IF7zQAAAAAAAAz092gc0AZFX7cRANst-IF7zQAAAAAAAAzFM2gc0AZFX7cRANst-IF7zQAAAAAAAAz092gc0AZFX7cRANst-IF7zQAAAAAAAAynC2gc0AZFX7cRANst-IF7zQAAAAAAAAyRg2gc0AZFX7cRANst-IF7zQAAAAAAAAz092gc0AZFX7cRANst-IF7zQAAAAAAAAymG2gc0AZFX7cRANst-IF7zQAAAAAAAAz092gc0AZFX7cRANst-IF7zQAAAAAAAAynC2gc0AZFX7cRANst-IF7zQAAAAAAAAyNS2gc0AZFX7cRANst-IF7zQAAAAAAAAwwv2gc0AZFX7cRANst-IF7zQAAAAAAABSTF2gc0AZFX7cRANst-IF7zQAAAAAAABLlO2gc0AZFX7cRANst-IF7zQAAAAAAABLVN2gc0AZFX7cRANst-IF7zQAAAAAAABRgJ2gc0AZFX7cRANst-IF7zQAAAAAAABRNr2gc0AZFX7cRANst-IF7zQAAAAAAABP4G2gc0AZFX7cRANst-IF7zQAAAAAAABMw82gc0AZFX7cRANst-IF7zQAAAAAAABJ9n2gc0AZFX7cRANst-IF7zQAAAAAAABBp36tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_NQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaQ66tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZsD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJXgA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJU7a6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKTe36tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ5Qy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ4C76tVKI4mSYDEJ-ABAIpYXcgAAAAAAKay_", "types": "FgMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aYIIEFIIPBZMufRatARTng"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCYyXT4fd_WKeR1cE-hlLelCQAAAAAAEOC7XXT4fd_WKeR1cE-hlLelCQAAAAAACwzdbXT4fd_WKeR1cE-hlLelCQAAAAAACwXCPXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADk6", "types": "DwMDBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RrLvz0R4S4ONxlxpZkei3Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAACFVesl-TqkdasS6qMPfjcnngAAAAAAAABVr69bqYctcqbyJiTyvmojFAAAAAAAAAAJVoQ5AJHHG4Z_KZgZidNsZQAAAAAAAACfAkiiW-5yqxly9YBXWMYPFwAAAAAAAAAEHzY1pLcHHo9l4_6glZyDlQAAAAAAAADsXyIB1JXxkoOQjMae8CICgwAAAAAAAAAFm3tIqGWDOzCH_q4z0bYhiAAAAAAAAAAzPEbpT_8Xljn7u1j5oJzfHQAAAAAAAAEVI_i_3enTR60S4qDgQ3zxCQAAAAAAAAAPaDyBXusCSgxGJvBxfJIWPwAAAAAAAACI47Ynctdwhr8Q34WGwpCU8wAAAAAAAAAHu39hB2o_bkkn64I33Zf2OAAAAAAAAAAx6KM6RK-sq5wYpyjnMfBa7AAAAAAAAAAn0LGXmFocz46kL18OXWxszwAAAAAAAAA1cuyNWlZFQkabnqdPXO_rXQAAAAAAAABNSlb8MNVKIFfE9HJqtN3BhwAAAAAAAAAATRhdHOKO7GmLMAaUL3Xw6QAAAAAAACyu9BM25vr762IbGPHbtur65gAAAAAAAJNn9BM25vr762IbGPHbtur65gAAAAAAAHdR", "types": "CAMZBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "agxJ4qtH42heXKOg02CiKQ"}} -{"Stacktrace": {"frame": {"ids": "CHB6oSdNIPFu3CdR74BZKQAAAAAAAWJM3aS07d9PG4lc4UzuBbVWzQAAAAAAAiVUCHB6oSdNIPFu3CdR74BZKQAAAAAAAV9bCHB6oSdNIPFu3CdR74BZKQAAAAAAAYh2CHB6oSdNIPFu3CdR74BZKQAAAAAAAXUECHB6oSdNIPFu3CdR74BZKQAAAAAAAf4QCHB6oSdNIPFu3CdR74BZKQAAAAAAA1izCHB6oSdNIPFu3CdR74BZKQAAAAAAA7YE3aS07d9PG4lc4UzuBbVWzQAAAAAADvuf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimti6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnKXQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAirCv6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CQMOBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PR0G3Br-iqix1uCUZkKS_A"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAGRrVaVDCkAMgbM8k1PcJk7MgAAAAAAAAACywctG_sMzzXt8DhXRU3jGwAAAAAAAAAfO0QBRq09v03gOY7wcqwe-QAAAAAAAAAEWV6g6bHiSUaQ_18ghJ6gvwAAAAAAAAPqzVl_JFLMBO6_XcJyl0ewxwAAAAAAAAEJ", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EZ2YsSTqh3amiqmt5jrW4A"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgms-", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KEKnZX1SRSUSzJoangOL-g"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-Qm9cEvvhuguaGYCmGWrnWRz1QAAAAACETjv", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "n8NV_5qPZ2yDzkxHAj-OJQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcM9Xltn711KKFcrKCAYh_ZgAAAAAAAAAE8s5hM6TvWnoP9XP3e8VVVwAAAAAAAAAHwh6xTQPkmoOUUrUOOnnNsQAAAAAAAAAgk8mM9-oIv-QkPetXAh_aVAAAAAAAAAA-", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jPkF12I7d8n_WLfO9tfRDQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAADxz_WaY2pXtLyni7L_8jKtBgAAAAAAAAAPEIpTc6zorXqtTjOVazk4HwAAAAAAAABogbCFQS2suYv46rP_aUsebAAAAAAAAAH268Kd2F2G5cbeqk2uYg-UgAAAAAAAAAAHy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGcvKtJGgNPYlj-CA3c92J7wAAAAAAAAAfuCrYcJJKClqXMP74KTJEhQAAAAAAAAAfEXm1hlIrQc2WIKO4W87lDAAAAAAAAAAfDm9DG4ZqDn_4bGJnyMFN4AAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAANJa8NlMClggx8jaziUTJXlmWAAAAAAAATrU", "types": "CAMwBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "An9XjOoTbvCjFLzBdFgpcw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAAC6S2CYgbm2TSSx5DQSXabwsAAAAAAAAAAEWekP7cILEpMGZHEc4JbsIQAAAAAAAAAPTWlgCotVAvCNPwZcQGJDTAAAAAAAAAAPYBsRiOSYyzJilvtbmeHiPwAAAAAAAAAB-xFdqCD-duGNADV_YhlNPAAAAAAAAAAGWekP7cILEpMGZHEc4JbsIQAAAAAAAAAPTWlgCotVAvCNPwZcQGJDTAAAAAAAAAAPeBd1im1l00HUxw6VyZjyeAAAAAAAAAACq-urC30zCOxm3KKqrbBBGwAAAAAAAAAU-xFdqCD-duGNADV_YhlNPAAAAAAAAAAGWekP7cILEpMGZHEc4JbsIQAAAAAAAAAPTWlgCotVAvCNPwZcQGJDTAAAAAAAAAAI", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2XYwJraBsCBYM0BQZOxBbg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAACwH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACLmPYuAeY50sWJtfl4IqMCrwAAAAAAAAAf", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bYFx-SR9JjDh3LNKYdmEBg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAC523EcEvvhuguaGYCmGWrnWRz1QAAAAACL5AKcEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLmm9cEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLmm9cEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLmm9cEvvhuguaGYCmGWrnWRz1QAAAAACLkFQcEvvhuguaGYCmGWrnWRz1QAAAAACLn1ncEvvhuguaGYCmGWrnWRz1QAAAAACLkl6", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YP8JnSQ_Ut135bkI0n3-mA"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACRuzKgtQ4kMk_MBWrPUAFqVnYywAAAAACRvAEgtQ4kMk_MBWrPUAFqVnYywAAAAACRvT8gtQ4kMk_MBWrPUAFqVnYywAAAAACMCnBgtQ4kMk_MBWrPUAFqVnYywAAAAACbQAkgtQ4kMk_MBWrPUAFqVnYywAAAAACbQYrgtQ4kMk_MBWrPUAFqVnYywAAAAACbM7NgtQ4kMk_MBWrPUAFqVnYywAAAAACbMVkgtQ4kMk_MBWrPUAFqVnYywAAAAACbLgsgtQ4kMk_MBWrPUAFqVnYywAAAAACa8u9gtQ4kMk_MBWrPUAFqVnYywAAAAACa76dgtQ4kMk_MBWrPUAFqVnYywAAAAACbFMpgtQ4kMk_MBWrPUAFqVnYywAAAAABrKGxgtQ4kMk_MBWrPUAFqVnYywAAAAABqISEgtQ4kMk_MBWrPUAFqVnYywAAAAABqIZcgtQ4kMk_MBWrPUAFqVnYywAAAAABrnw76tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_NQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaQ66tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZmt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKTe36tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ5Qy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ4C76tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ0CJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYK2", "types": "EQMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Y3XyMSK9tPI3_U0zY2ps0Q"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSEYxe-SHgukLEpCkawSk1QWAAAAAAAFzhzYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyTI", "types": "CQMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PRszVWqkXDpjwjOG8s8zHg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAABQ1PhVGIcoQAgleHhVcpf27gAAAAAAAAAvyBWSGqiiI_VOVi3uSjsniwAAAAAAAAACTdwLOY0C6NYFuVVgfM0c5wAAAAAAAABsQVg0XAOEbp3JKK1NFLqVYQAAAAAAAAAH8PLzoB-u4hzDZ_WKIg8FxQAAAAAAAAAA", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yY8YFryVNm9WZVvrCSeuww"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAqeSs1xpPdaQi6BA9wz10SrwAAAAAAAAA5TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAAAE8g8BRnBI4MuRYzLO3qW1UQAAAAAAAAAF", "types": "CANrBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nK-VQLHeSCyigrjH5wLGZA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjD5cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLlsWcEvvhuguaGYCmGWrnWRz1QAAAAACHkoC", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yyOgLKUZuSQUa5BkL2jvpg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAADHgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAHX_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAghM2MvVjBki678lZWhHxDlgAAAAAAAAAA", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "y7-fVN4a3INYDwPmaOS0Og"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAALScfiJzEgZCbPFwhs1NPukAAAAAAAAAACsEPQK3dI_zdTRw3NGGeCnQAAAAAAAAAFa25s4LfAOQ9ngFhwu3kfZAAAAAAAAAAC6lCI6tAr7u1DrnIgR2YwwAAAAAAAAAAvrtMndsSFjJOa_fj_uPxNBwAAAAAAAAACLqWoZU6IFVF0r3seu7DqqgAAAAAAAAD5CKu0PvYQAatp5R-zTCMMbwAAAAAAAAA1Sptm9dTy_pulUFIplJc3bgAAAAAAAAAR-1vAQjjmcxtS89oSQoP2nAAAAAAAAAAA", "types": "CANEBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "F_APHoeVxOWNqwDMoBgBUQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "FAMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "me0oRgVcR_uBmJ_kCe-VfA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChNm4", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "B2cQtnpQnOanc1V2PQKbyA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEex1", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ppE0asB2Tjvm1WVJwx6bDw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABBAkYxe-SHgukLEpCkawSk1QWAAAAAAABAvkYxe-SHgukLEpCkawSk1QWAAAAAAAA_IZYxe-SHgukLEpCkawSk1QWAAAAAAAA-3HYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBtp", "types": "CQMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hIfw2Nju3QIW5tv0qLI6DQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmmJ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "U9D_YJUEsrwBEswWxHC35w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADAEguNCcnmVGnXNe9OvbpF2wAAAAAAAAA59TmwK4T30h3U0B1lbih6TQAAAAAAAAAN4MmFlXNlAaTTYzJu9ZvlFQAAAAAAAABi5EQ6InbW5lh3HIuXdyrqwQAAAAAAAAAX2Vpl4JCXI4Pj7QXAxuNxegAAAAAAAAA3b5D4G32aP0YH2ukb-bXGLgAAAAAAAAADXh5gRfaLKG0GpmJd1WwirwAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAODBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yLwY_MOsydDU7XEbyC_1EQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADAEguNCcnmVGnXNe9OvbpF2wAAAAAAAAAyyH_ohM36PxcsspBj9HiisAAAAAAAAABUZZqFVPfJM-LkfzPbeaoP8QAAAAAAAAIWwJby9rfWt95O-DRO0mDYjAAAAAAAAABWk1o6cGLS1FzksoHJvPKdFQAAAAAAAAEpV6fcE1EsjMYG4ctzhztDBgAAAAAAAAAMhicgrP6yr_-9qRDPdRH1UQAAAAAAAAABcuz7PAFLw8DoVVSTVsTZvwAAAAAAAAAExy6LXnpeKuV7b6XhH-kLUgAAAAAAAAAESdUzkeL9_v2VezVxWgWRqAAAAAAAAAAuzNcsGRHhxrtoMbOTGij46QAAAAAAAAAB7IBmDOSH_dR0MHQWs_TXjQAAAAAAAAAUX9lpa9TN84k-aLBSFJ8EgQAAAAAAAAAHgVQfyTUjnDx6YGZ7YyYMDwAAAAAAAAAVGp8pW5B40BblKfSIWk6M6gAAAAAAAACNa38j856FxIPiwroWnutPzgAAAAAAAAAMrRD3IAWNeA4GPRh7roh_BAAAAAAAAACRagZiqOTeFJJvJSEd_bICHwAAAAAAAAAKiit9TEPWxIcbSUSJseypHwAAAAAAAACIvc_2qIuahQ6DM3LWEJ9q5QAAAAAAAACEnQWGdRxvqVjwlLmQWH1PhwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAHs6vQ7EacG6CR4rzcFaNFEsTQAAAAAAATMv", "types": "CAMvBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "d_upsguCu_7bMgt4lbFjaA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACuCx5RC8g9OTz7PgiGSeLtvwAAAAAAAAAOgY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAFyZ0m5K0hyRADeQkG90vP8AAAAAAAAAAzZ80ToqoZC1OOBoR__NmsnwAAAAAAAAAFXCoBIRW2zeIv8Jr12c2SPwAAAAAAAAACtmXftvn8hrcleDLJfptXeAAAAAAAAAAFoWAu7yjPEQWDBpYB2hRLjAAAAAAAAACEHL8EuHVSmvyyvO0QJQzjvAAAAAAAAACU9i4yH5hvA0rp4RuaXVKyFQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAMKiKQXI5stF5N-InJuXrsjgAAAAAAAAAEL4Zieid3nVkNJbdYJumC3wAAAAAAAAAPMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFTU7DQ3uAw_xM7DAGYMk_cQAAAAAAAAACMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFOa5CkhVOrx2r2YkOsLGOZwAAAAAAAAAeJUqoXh4FCdEByaAYgHthzAAAAAAAAAAKl_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAADUM3h48-oBMi00mRAqhB4IAAAAAAAAAAjNrvcSCGNEuayQcoP_4CXWQAAAAAAAAANp3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAANqUqjB_amR59Lv13Nhle_NwbwAAAAAAEPzb", "types": "CAMvBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "a3rA5HVT6PyGXCEVq07mnw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmqH", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iAORKE733KRegC2qyifuEQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACL", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9eJFc1RqWTK4Nh5sHxlOdg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFyT91NmuNXqOaWlDl-ljfvsBcwAAAAAAAAlQ", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2ZpjYqKFeza_P-0E6-9HQQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgne", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7Vtiv4jrMy8dqqN7pIRDXg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzScEvvhuguaGYCmGWrnWRz1QAAAAACE_-qcEvvhuguaGYCmGWrnWRz1QAAAAACE_n2cEvvhuguaGYCmGWrnWRz1QAAAAACE-vEcEvvhuguaGYCmGWrnWRz1QAAAAACE_1rcEvvhuguaGYCmGWrnWRz1QAAAAACFX-EcEvvhuguaGYCmGWrnWRz1QAAAAACFYKxcEvvhuguaGYCmGWrnWRz1QAAAAACFlcEcEvvhuguaGYCmGWrnWRz1QAAAAACEhmIcEvvhuguaGYCmGWrnWRz1QAAAAACE_YncEvvhuguaGYCmGWrnWRz1QAAAAACFnTccEvvhuguaGYCmGWrnWRz1QAAAAACE9eTcEvvhuguaGYCmGWrnWRz1QAAAAACELBkcEvvhuguaGYCmGWrnWRz1QAAAAACEyqbcEvvhuguaGYCmGWrnWRz1QAAAAACFyki6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "DwMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3jw0LVPxt2I2Zcn1jBHHTQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAABu1IhEUKf_PDCxfheapNhvQQAAAAAAAACI7RFhYe_NpS241I1rFVDmNAAAAAAAAADfyLcvbV13CtkdfmXNFFed3QAAAAAAAAAHLL2AmHorGMGLHFvQ3KWNRAAAAAAAAABye9VBoOb6ap6y2iBqQXec9wAAAAAAAAFo5U0I4816qcVB1WQCk1679wAAAAAAAAJ2ywBCHGInrMG3m_siljBhPgAAAAAAAAEq4U_zL7awL15Zhtkek0gtnAAAAAAAAAAGMjtyswsr5RSXvAnPmILipAAAAAAAAAAYv7GKAWxeXNZbjk8Dw8GzZgAAAAAAAAAA", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8e2eKxLMr45T-uq51LWiRQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACuCx5RC8g9OTz7PgiGSeLtvwAAAAAAAAAOgY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAFyZ0m5K0hyRADeQkG90vP8AAAAAAAAAAzG03owtPMOb_BDAuY6rOWogAAAAAAAAAFXCoBIRW2zeIv8Jr12c2SPwAAAAAAAAACtmXftvn8hrcleDLJfptXeAAAAAAAAAAFoWAu7yjPEQWDBpYB2hRLjAAAAAAAAACEHL8EuHVSmvyyvO0QJQzjvAAAAAAAAACU9i4yH5hvA0rp4RuaXVKyFQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlsbpYsnZ_Lwaqr0cHEPo0D185QAAAAAAX3CxYsnZ_Lwaqr0cHEPo0D185QAAAAAA5SCvYsnZ_Lwaqr0cHEPo0D185QAAAAAAXAO1YsnZ_Lwaqr0cHEPo0D185QAAAAAAXQUw", "types": "CAMtBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_VzxKSgG_e2BNdUl-pfPBA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABF0kYxe-SHgukLEpCkawSk1QWAAAAAAABF7IYxe-SHgukLEpCkawSk1QWAAAAAAABGF-Yxe-SHgukLEpCkawSk1QWAAAAAAAA1HOYxe-SHgukLEpCkawSk1QWAAAAAAABqf16tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtJB6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtH16tVKI4mSYDEJ-ABAIpYXcgAAAAAACtE36tVKI4mSYDEJ-ABAIpYXcgAAAAAACslz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0_0t2poX7i0kjQvasvtSEg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAABgOI-IULopKcZX-PRLno1wGAAAAAAAAAAD", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Egb8M192QRouZ1YPjNwqmQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUl9", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iNwZltOIYGIMPbPaWa-8GQ"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD49fSZxl-YF9wOaedogsBMtvRAAAAAAADiW6SZxl-YF9wOaedogsBMtvRAAAAAAAEXO9SZxl-YF9wOaedogsBMtvRAAAAAAADSVQSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0Q7", "types": "OgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wc2YJ7FTpO6RxJmi8R3V5A"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZO3ydWmZnkgpNJ9lZa3PxSwAAAAAAAAB7fa5CZf7FD-aM6Y-fCgxg9gAAAAAAAAAnOhagOqtTZKJX4CiHYdPxlAAAAAAAAAAMkCbL_O4te-WAGQK-GOmsBgAAAAAAAAADNoHYPrTZmPNoSjD2lRtEvAAAAAAAAABZIYxMGZtokcobbdGBrqK_iwAAAAAAAAABJIJ67u_XI4-jnSyBIeegBAAAAAAAAAAIeOXjDtmISDDtSL4dEzZt-wAAAAAAAAAD_6rkq2S7o8rMRQJ9AofzJAAAAAAAAAC-7NQKJ0eHP8J4hISaRMWwxQAAAAAAAAATLLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABBEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAAAL6VgifDx_vRg8rUeffXssrQAAAAAAAABAkoqMTfqkuD6zwA-Wl7ESpAAAAAAAAAAy", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EMABXmd9W1xztmohmhT4jw"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAAA40YL9Bd3XIiGWasJdN8trI5tgAAAAAAAWqlL9Bd3XIiGWasJdN8trI5tgAAAAAAAWoqL9Bd3XIiGWasJdN8trI5tgAAAAAAAXCwL9Bd3XIiGWasJdN8trI5tgAAAAAAAKS6", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UeKlcYjnbAHyjaIKIYLphA"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSDFGgtQ4kMk_MBWrPUAFqVnYywAAAAACSFSbgtQ4kMk_MBWrPUAFqVnYywAAAAABrE7a", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KiwE-vKZHKC3n7ALbEtWxg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_HL6OuA5BriS2w42aq9WRNQAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAcpSIXlNYnJYwCILAJFTEzSwAAAAAAAAAGTyuf4RNGIxt-ueaCsLj22AAAAAAAAAAXvSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0qlujNL7db72ZwWHkSPq1iAAAAAAAAAAa8tJujVK0pdTWlucWIQYskAAAAAAAAADWSXFZShc93P7Br4wzVi_TSwAAAAAAAABGl8by2NZ7WjCFmKmn5LkVDAAAAAAAAABNJj6ja2Wbkf1_R1a9nVWcUAAAAAAAAAEpAIW-lPQXo1TdAE_hNw_PqQAAAAAAAAAEaDG3558gasz8z0RSX2ge7QAAAAAAAAAEHJqIGeZuYXQ1QAO7hC-CpgAAAAAAAAAwz3OVwE39ldWnCO3e3J2ChQAAAAAAAAAXvNIlRmFlIZi4eEeFbJkdJgAAAAAAAAA1LtwWMtOCVYMwVl8TS_MduQAAAAAAAAAIPxKXTV4MDkHtmEvOc2iKdAAAAAAAAAAFOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyGEsTGLCNH21piOrMPoln5uBQAAAAAAg4VysTGLCNH21piOrMPoln5uBQAAAAAAKOC0", "types": "CANHBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0GXb3m0wsHZfeNuzhQyTYg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIQDpp6LgRqCGeGjs7cnnwItcAAAAAAAD3iq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ8bZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ8R56tVKI4mSYDEJ-ABAIpYXcgAAAAAAJXMJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJloA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJlhJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAACHEw6tVKI4mSYDEJ-ABAIpYXcgAAAAAACG-k6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFF866tVKI4mSYDEJ-ABAIpYXcgAAAAAAFF5X6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFzd6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFgh", "types": "AwMNBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pXRClGC06I9e9KXulLXsSQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChF6rXT4fd_WKeR1cE-hlLelCQAAAAAAChGmxXT4fd_WKeR1cE-hlLelCQAAAAAAChN0cXT4fd_WKeR1cE-hlLelCQAAAAAAChNxn", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zLdPokHD2Z2SVrMjPVZbgg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgJxz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFlg0z5k14PsCcDvFyUC1kmlV3QAAAAABFlxw", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IdBN0EzRB0f6Qp7f7scKtw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAABtlFmnG5E5GwmKFptmUf-qtgAAAAAAAAACV_KspK9nh8LJS_EE9pIxxwAAAAAAAAAgAmq1Q_OWnEFyfJsbIWLjHgAAAAAAAAAFRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF69a10viRFR3AXhPlmNm3-wAAAAAAAAAI_HPaY4WWXqG7Q6LLBzQZsgAAAAAAAAAFE5mpbycjP0OXdJ_6cK6YywAAAAAAAAA5UWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAFHT9Oc7iZydOQfHjFbopksAAAAAAAAAAFuq21nH8aDkYkyxiV0pgo9QAAAAAAAAAZHPEMdrfmmMUp_F2geV_WtQAAAAAAAAAI4gY0Alqd97J9BqG1Fh3sXQAAAAAAAAACc5-7gdnYLTwkmcP6UpaZTQAAAAAAAAABruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVm8XR0uqpcqn95w8XyT3DZQAAAAAAAAAUObL9miA56U-u0eTT3_kszwAAAAAAAAAiUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAJGHHpN5Gh_olxRYjhH9GfeQAAAAAAAAALIgM5i6-lgpuzqOD789em9QAAAAAAAAGcXOANMxdhSEwzaUIzOG_mBQAAAAAAAAANz8yDYNMJULt1ApZ8kqZamAAAAAAAAAAGMMAujfe9xzktoHyDqw_cGgAAAAAAAAAGWY2_M7eCNrhZsLoJqmwFKwAAAAAAAAAEeVW9lCqHxlTfD5Rt7tiZeQAAAAAAAABaL-_tQCaPRoXtazKap89hsgAAAAAAAAAOZhtNJYoOwm655zArM3sIngAAAAAAAAAmOTgPgorI9jVQamrwiI2hgwAAAAAAAAACbxw5V4q8KBJtXdgQby7U_AAAAAAAAACoUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAmYgvoZ6DleZJd_ACRhoNarAAAAAAAAAACUT4r1woqEdacoKDuZFw-vgAAAAAAAADtUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAxrp3sprQtO8hOwekVupMQwgAAAAAAAAA0XoNqQsMeesgJkRR-qQrvugAAAAAAAAAzrn6MTH_GcOdtJ7YxIeV5gwAAAAAAAAAHUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAUnQRJ3xr79n3cY6qS99IffwAAAAAAAAAEAhC6Xj-K1vOC4yqhcS2tRAAAAAAAAAATopFI2iPPQrSoKgHSzuYsiwAAAAAAAAAInX5EwLqa4-7opgPxIg4PZAAAAAAAAABw575WKZsJOrf8RDDJpG_1WgAAAAAAAACFwoXLgCudpu5Igw4bPyCZzAAAAAAAAABTLQDSx6vga0zDZ5JbsP5kmgAAAAAAAAAwngEDfMGa2k3LBps0tpgYRAAAAAAAAAAQ-SQAt_091j0wh4lQu2r18QAAAAAAAAAC_c66iRIhxEMceXexHDGFpwAAAAAAAAACp1NpuNTkYTtkxyGbe8Fr4AAAAAAAAAAMMSyylYcoQGjZVZx9V5Qj1AAAAAAAAAAiNdcMtjPjb-t4Qu-6ZpkmHAAAAAAAAAAmL6NB6jwnRxtULB7hcgQnbAAAAAAAAAA6LU8s6co8D-NXVKl_o0XrzQAAAAAAAAAYPUOftuajAWpkSAzvofXrOAAAAAAAAAAC4RMjMvBCxMjR_OY2K7clCwAAAAAAAAAFsRqFVRgtIpahqWj1VJMq5wAAAAAAAAAo-SQAt_091j0wh4lQu2r18QAAAAAAAAAC_c66iRIhxEMceXexHDGFpwAAAAAAAAACp1NpuNTkYTtkxyGbe8Fr4AAAAAAAAAAMMSyylYcoQGjZVZx9V5Qj1AAAAAAAAAAiNdcMtjPjb-t4Qu-6ZpkmHAAAAAAAAAAmL6NB6jwnRxtULB7hcgQnbAAAAAAAAABFPUOftuajAWpkSAzvofXrOAAAAAAAAAACDHkKlJyvSzYWZrxA7eo4aAAAAAAAAAARoXdf8OJsiOhUkDzOQcZagQAAAAAAAABlV6F4RoY4Wqi3heGJHCHC7wAAAAAAAAAB1iwmLz9f5lKCUTwNTHYeTQAAAAAAAAAM_c66iRIhxEMceXexHDGFpwAAAAAAAAACp1NpuNTkYTtkxyGbe8Fr4AAAAAAAAAAMMSyylYcoQGjZVZx9V5Qj1AAAAAAAAAAiNdcMtjPjb-t4Qu-6ZpkmHAAAAAAAAAAmL6NB6jwnRxtULB7hcgQnbAAAAAAAAABFPUOftuajAWpkSAzvofXrOAAAAAAAAAACuwv5FksoxRofZo3XW2LdyAAAAAAAAAAFNVuG_wmq9ueHuiQhJ2X7TgAAAAAAAAALOen1qEmpHofe9SVAg4ioRwAAAAAAAAAEpu8D6sV8P__KgMNFVLf0qAAAAAAAAAAA", "types": "CAOJBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AgBnLrnFQyEiB71eITD44g"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgMRz5k14PsCcDvFyUC1kmlV3QAAAAABFk6jz5k14PsCcDvFyUC1kmlV3QAAAAABFjYEz5k14PsCcDvFyUC1kmlV3QAAAAABGgQQz5k14PsCcDvFyUC1kmlV3QAAAAABF400z5k14PsCcDvFyUC1kmlV3QAAAAABFkWAz5k14PsCcDvFyUC1kmlV3QAAAAABGZEQz5k14PsCcDvFyUC1kmlV3QAAAAABGgUez5k14PsCcDvFyUC1kmlV3QAAAAABFk1lz5k14PsCcDvFyUC1kmlV3QAAAAABFlR_", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "H8A3dYuSIPwxTp-xzJya1g"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChF4kXT4fd_WKeR1cE-hlLelCQAAAAAACg6T7XT4fd_WKeR1cE-hlLelCQAAAAAACh1L_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ1", "types": "BgMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DhfNoyryOAVBksH9W9zZsA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN5QmcEvvhuguaGYCmGWrnWRz1QAAAAACNw41", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "r1HvPKUhWfo1c_dGIcqb1A"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcdeyQ05GmzOw19AUsDzeIcAAAAAAAAAAA", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nsjTmLeWgJZGEXKE2bGYPQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgJxz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFleC", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "l8dMyIgFlKWEMYc0z_PTTw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-uTvXT4fd_WKeR1cE-hlLelCQAAAAAAC-xG9XT4fd_WKeR1cE-hlLelCQAAAAAACp71EXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCM6XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "y7KI8KMMWDvf5U1WSCufNA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAALY69pONqxP8-okyxfNdJq0BgAAAAAAAAAT84y2a9q7-onYC7ofRQhclAAAAAAAAAHbdVre-yWU3wOgyoQuLjZhuwAAAAAAAADHqsf4oB191Ejhqczjg1I-pAAAAAAAAACSgFXgmnzAOaiXP0kcTIOBKAAAAAAAAAAXRvwWnGu8aNVctUqI75kRlAAAAAAAAADhBEHb4enMXpAQTkYNH-EvIgAAAAAAAACD3XF24SoEgTcpQuPEJgZwngAAAAAAAAAA", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Of2hetgQ4G3EMs-obnxUFg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ_N", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6uN-YY_i1gvVmqACLDXQMw"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuXwZZ3CKaS4aU08RhYA19y5ITQAAAAABttckZ3CKaS4aU08RhYA19y5ITQAAAAABtwT0Z3CKaS4aU08RhYA19y5ITQAAAAABtFpzZ3CKaS4aU08RhYA19y5ITQAAAAABtnwrZ3CKaS4aU08RhYA19y5ITQAAAAABudBy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BwMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SwjluL3-fAPsYBuygjQN9A"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2qOcEvvhuguaGYCmGWrnWRz1QAAAAACg0PkcEvvhuguaGYCmGWrnWRz1QAAAAACgxMzcEvvhuguaGYCmGWrnWRz1QAAAAACgt6PcEvvhuguaGYCmGWrnWRz1QAAAAACgePncEvvhuguaGYCmGWrnWRz1QAAAAACXxtMcEvvhuguaGYCmGWrnWRz1QAAAAACXzeEcEvvhuguaGYCmGWrnWRz1QAAAAACES_h", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8i6BiToPKTJjFIRVyGCmXQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAADHgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAHX_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAg", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FbKeTovw8ZZ-HdSWJ6n-2A"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAEwXaFizeT40CKpdI_o5Zrw0QAAAAAAAAALP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAepBWDMEkxECoqFEbuF_aawAAAAAAAAAAMQNJBtmDNiP_chGYXJszyagAAAAAAAAA3vXkwfvj7jlhBJyKg0XGvywAAAAAAAABigB5BZqY7kCPDXjPyO-APoQAAAAAAAABQnLlEYtkzwUT2CAaOaAzLCwAAAAAAAAAFdDeMCKGJE8xF0l02PyPQKgAAAAAAAAAC", "types": "CAMTBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mSsTbj23GsDgy2L_ys-j9Q"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAPx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABWdRMG3BjNfH2se-egabnU-QAAAAAAAABAEkcy7So9YVOh7Q9iMhhrxQAAAAAAAABM3SSuw7AKPJ9yFEVSwC_lbAAAAAAAAAA1SAcr2k56H-0uXVdYyC2m8AAAAAAAAAB7u10yYHuZY1dpf375Wx2UVAAAAAAAAAAjLGDqhGuMmpYzX6PMA8WiywAAAAAAAABSpmPXYMcSXBVkwYFWHrsHvQAAAAAAAAALSAcr2k56H-0uXVdYyC2m8AAAAAAAAAAc", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vzzAkS68b-k5mSq1f5rBNA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA8Q1rqFV6xhVekP5-uToPI32ragAAAAAA8QfAqFV6xhVekP5-uToPI32ragAAAAAA0VGNqFV6xhVekP5-uToPI32ragAAAAAA0RkrqFV6xhVekP5-uToPI32ragAAAAAArMaeqFV6xhVekP5-uToPI32ragAAAAAAq-JpqFV6xhVekP5-uToPI32ragAAAAAAq-7v3aS07d9PG4lc4UzuBbVWzQAAAAAABudC3aS07d9PG4lc4UzuBbVWzQAAAAAAB5lH3aS07d9PG4lc4UzuBbVWzQAAAAAAB7sN3aS07d9PG4lc4UzuBbVWzQAAAAAAB6Ly3aS07d9PG4lc4UzuBbVWzQAAAAAADvu9", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MNoOASNIU68SUFgbeLW58A"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlPqcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgLJ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aVn8RcB-QxhkQWDJX_CUMg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOE1fYhCC-W9hkMRzkOdu22QAAAAAAAAAA", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ffFMdQwpHORekV2ieknMEQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9DdIz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHpmIz5k14PsCcDvFyUC1kmlV3QAAAAABHpbXz5k14PsCcDvFyUC1kmlV3QAAAAABHeDgz5k14PsCcDvFyUC1kmlV3QAAAAABHdVCz5k14PsCcDvFyUC1kmlV3QAAAAABFwHxz5k14PsCcDvFyUC1kmlV3QAAAAABFxYLz5k14PsCcDvFyUC1kmlV3QAAAAABGnao", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g4wOsBXMok0GNueh82GdWg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR5S", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iZrZGh0SZx7vPDLJtsMxOQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAC0XP_Z3CKaS4aU08RhYA19y5ITQAAAAADBlWmZ3CKaS4aU08RhYA19y5ITQAAAAADBlmSZ3CKaS4aU08RhYA19y5ITQAAAAACmakZZ3CKaS4aU08RhYA19y5ITQAAAAACbLprZ3CKaS4aU08RhYA19y5ITQAAAAACaVOOZ3CKaS4aU08RhYA19y5ITQAAAAACaV6AZ3CKaS4aU08RhYA19y5ITQAAAAACZng5Z3CKaS4aU08RhYA19y5ITQAAAAACZon1Z3CKaS4aU08RhYA19y5ITQAAAAABzpRdZ3CKaS4aU08RhYA19y5ITQAAAAABztUDZ3CKaS4aU08RhYA19y5ITQAAAAABv3V56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAio9n6tVKI4mSYDEJ-ABAIpYXcgAAAAAAio7-6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimti6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk7GK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk63z6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjigE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk7XQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjjOl6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjoqR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjn7-6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWvZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWrK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmMhu", "types": "DQMPBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5hj4hVJglP1Q0S9uCaavXw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_8uEcEvvhuguaGYCmGWrnWRz1QAAAAAD_84ccEvvhuguaGYCmGWrnWRz1QAAAAACLLiEcEvvhuguaGYCmGWrnWRz1QAAAAACLLYdcEvvhuguaGYCmGWrnWRz1QAAAAACLLdCcEvvhuguaGYCmGWrnWRz1QAAAAAD_94EcEvvhuguaGYCmGWrnWRz1QAAAAAD_9IkcEvvhuguaGYCmGWrnWRz1QAAAAAD_wtscEvvhuguaGYCmGWrnWRz1QAAAAAD_yyEcEvvhuguaGYCmGWrnWRz1QAAAAACF-IrcEvvhuguaGYCmGWrnWRz1QAAAAACF-UEcEvvhuguaGYCmGWrnWRz1QAAAAACGugycEvvhuguaGYCmGWrnWRz1QAAAAACGmwdcEvvhuguaGYCmGWrnWRz1QAAAAACGpoocEvvhuguaGYCmGWrnWRz1QAAAAACGsDNcEvvhuguaGYCmGWrnWRz1QAAAAACGKP7cEvvhuguaGYCmGWrnWRz1QAAAAACGMs66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTih6tVKI4mSYDEJ-ABAIpYXcgAAAAAAOVIl6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIeNo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUfWS6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYft", "types": "EgMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oihk6v8OvTDdD6N0NY6YVA"}} -{"Stacktrace": {"frame": {"ids": "X3vNLlXVyKftCeY5HzEuDAAAAAAAAAVvP_4qycvxHBZREHniLmgHbAAAAAAAAAAFZa0P_0e34shcw6VJJ_B5XgAAAAAAAACWLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC3OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOEnRoHyZazasm_zTjL5tnOgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMfDpp6LgRqCGeGjs7cnnwItcAAAAAAADsp5", "types": "DgUCAw"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gbjQ3Y9_diPygyamcLKI4w"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADHmXqXT4fd_WKeR1cE-hlLelCQAAAAAADHmkkXT4fd_WKeR1cE-hlLelCQAAAAAADHm4cXT4fd_WKeR1cE-hlLelCQAAAAAADB6QhXT4fd_WKeR1cE-hlLelCQAAAAAADQm1kXT4fd_WKeR1cE-hlLelCQAAAAAADQnNrXT4fd_WKeR1cE-hlLelCQAAAAAADQjwNXT4fd_WKeR1cE-hlLelCQAAAAAADQjKNXT4fd_WKeR1cE-hlLelCQAAAAAADQjfDXT4fd_WKeR1cE-hlLelCQAAAAAADQiL2XT4fd_WKeR1cE-hlLelCQAAAAAADQiHkXT4fd_WKeR1cE-hlLelCQAAAAAADQTr-XT4fd_WKeR1cE-hlLelCQAAAAAADQTpOXT4fd_WKeR1cE-hlLelCQAAAAAACgUmmXT4fd_WKeR1cE-hlLelCQAAAAAACgUVuXT4fd_WKeR1cE-hlLelCQAAAAAAChz7b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_NQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaQ66tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZmt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKTe36tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ5Qy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ4C76tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ0CJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYK2", "types": "EQMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IKyFLy9N9kOhn3GGAEvAMQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAAtSAAkutGejeRImCZXeWZ-1wAAAAAAAAByB_IRgbCQC1IPEoVkHKMOTwAAAAAAAAAYdB8rpvXeU-U7j8zoRqc_lgAAAAAAAAA9e7YYWaQTMh8P2PCVzA2a8gAAAAAAAAA5gpzmfljwMvF6axjuntzBmAAAAAAAAAABtGdjZjM6jJA23WbdtVpvAwAAAAAAAAAI", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4r8rDC-HuMcBsJ3v8w5X0w"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmLY", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WZ-D2nB7GiIQ9IS_G8xApA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAvspzm-_Ca31VwijYVQAZSLAAAAAAAAAB7TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABUfZfGpgZFJokP-jaeydrs0QAAAAAAAAAJjg3LdO4DNz9FsefjUG1F1gAAAAAAAAAA", "types": "CANpBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GhO-Q7jxmabu9xQq_grssg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFJSGf2yEAEhxiBfW1U6B9NgAAAAAAAAAEv-dzrDzLbKAbYGTnBhfr9gAAAAAAAAAM4iaBbZIIwXRBOYMSVscz2wAAAAAAAAADf5pCmW13zl5OWUDLG_ClrwAAAAAAAABNynHqfILVzOOqJs-5yJf4gwAAAAAAAAAeU2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAAthtvgcgAW24Rn4q34GnPYLQAAAAAAAAAFQNZzHGnqskrqlEo3XdkqqwAAAAAAAAATlH7EdNhUWMEu-Xw0OnFCsgAAAAAAAAA6PT8Qhq3pE7S7UQ5pBb6dmAAAAAAAAAAOpKLBb0_sPdt_IxvNqtQh6AAAAAAAAAACAmmotxQnAOVzMU8NulbCZwAAAAAAAAACm4PVqyGtfp9xtjU5ONg6ZQAAAAAAAABzCfIO15i68EO1AMNsYlotCQAAAAAAAAATfngmakIlFuW-DPwlYWq95AAAAAAAAAA6m4PVqyGtfp9xtjU5ONg6ZQAAAAAAAABzCfIO15i68EO1AMNsYlotCQAAAAAAAAATfngmakIlFuW-DPwlYWq95AAAAAAAAAA6-_pxyioXpgCkEBfDmOQhmQAAAAAAAAACeXjqYxLLRxedJxEiR8NT6wAAAAAAAACKZVbH0iCZ_WxLa6dmlexVKgAAAAAAAAAGyor4W3IQWfyHOSvJynlnLgAAAAAAAAADZVbH0iCZ_WxLa6dmlexVKgAAAAAAAAAGETOJ-3ScyIWVpISjqClk8AAAAAAAAAA2cMXYJMRG12GUF62IrJS85QAAAAAAAABex6pjgiIKZLxWUGJeU9baiQAAAAAAAABLnnQahSyjZjcubFBBmANNkAAAAAAAAAABBMe2lN-Yh_N_RcusQBaPPAAAAAAAAAAKuhX1qfoGgATHLd0SFlL86gAAAAAAAAAV", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CUGk5Rcar1NXFwPiGIQVJw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFJSGf2yEAEhxiBfW1U6B9NgAAAAAAAAAEHrJFw2fNGtSMNrEAC2Z8tAAAAAAAAAAQHrXUpqEQk4VDnpaZKgdbiAAAAAAAAAA9U2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAABU3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAAAepgYgXi9p5Lr0nll2Tb2V0AAAAAAAAAAA", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fay02h057oipAap2CpcvzA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAODBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5ssUCcghlPpbufn_FI7lhA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEWB9GVskeRyK4_o3XD61XIAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAqJzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAqdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcO9_JyaRKYBdkJrY8OUa6igAAAAAAAAASj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-G7AAW8oqT97cLlLLBEEKQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAABQ1PhVGIcoQAgleHhVcpf27gAAAAAAAAAvyBWSGqiiI_VOVi3uSjsniwAAAAAAAAACTdwLOY0C6NYFuVVgfM0c5wAAAAAAAABsQVg0XAOEbp3JKK1NFLqVYQAAAAAAAAAH8PLzoB-u4hzDZ_WKIg8FxQAAAAAAAAAhYNG5rLJWIsjMTCOpoQz9TwAAAAAAAACG0uQfhygt3iA5h-6EqK0MPAAAAAAAAAAEJYb5JOqnMPOCcF7fd5apugAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAK7KeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARjk", "types": "CAMRBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "L-P4L1LyUnq2IHmuakdfLA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7m0EsTGLCNH21piOrMPoln5uBQAAAAAA7muTeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAMGFeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARb56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJje6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIj8", "types": "CAMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9AhQj1Cjybxb6G_U8nBwuQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf9_", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3y5nAKYNm-1QPvIH6-wLoQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmUeXT4fd_WKeR1cE-hlLelCQAAAAAACgkUEXT4fd_WKeR1cE-hlLelCQAAAAAACgkiEXT4fd_WKeR1cE-hlLelCQAAAAAACgll5XT4fd_WKeR1cE-hlLelCQAAAAAAChkkOXT4fd_WKeR1cE-hlLelCQAAAAAACgl8EXT4fd_WKeR1cE-hlLelCQAAAAAACgl_8XT4fd_WKeR1cE-hlLelCQAAAAAACgmjTXT4fd_WKeR1cE-hlLelCQAAAAAACgnAc", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ViM-Jm475_B9Vqa7GKjNDg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAA", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vwNl340FtK4II3OTHfAxDw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACuCx5RC8g9OTz7PgiGSeLtvwAAAAAAAAAOgY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAFyZ0m5K0hyRADeQkG90vP8AAAAAAAAAAzZ80ToqoZC1OOBoR__NmsnwAAAAAAAAAFXCoBIRW2zeIv8Jr12c2SPwAAAAAAAAACtmXftvn8hrcleDLJfptXeAAAAAAAAAAFoWAu7yjPEQWDBpYB2hRLjAAAAAAAAACEHL8EuHVSmvyyvO0QJQzjvAAAAAAAAACU9i4yH5hvA0rp4RuaXVKyFQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlsd-YsnZ_Lwaqr0cHEPo0D185QAAAAAAX19XYsnZ_Lwaqr0cHEPo0D185QAAAAAAXAOkYsnZ_Lwaqr0cHEPo0D185QAAAAAAgVVk", "types": "CAOPBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "70l8tnr4W3Z0mVbnzrtQHg"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA8Q1rqFV6xhVekP5-uToPI32ragAAAAAA8QssqFV6xhVekP5-uToPI32ragAAAAAA0VStqFV6xhVekP5-uToPI32ragAAAAAA0UfqqFV6xhVekP5-uToPI32ragAAAAAA0XMyqFV6xhVekP5-uToPI32ragAAAAAA6YnHqFV6xhVekP5-uToPI32ragAAAAAA6R_NqFV6xhVekP5-uToPI32ragAAAAAAe4yGqFV6xhVekP5-uToPI32ragAAAAAAZgEXqFV6xhVekP5-uToPI32ragAAAAAAwhNI", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_cwyhujbNFnjVbOtCoyQwg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlfQcEvvhuguaGYCmGWrnWRz1QAAAAACEh4acEvvhuguaGYCmGWrnWRz1QAAAAACEiiHcEvvhuguaGYCmGWrnWRz1QAAAAACEipkcEvvhuguaGYCmGWrnWRz1QAAAAACEYEMcEvvhuguaGYCmGWrnWRz1QAAAAACFyj3", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vRLmJJNBX8J2JJ9imi8dPw"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyrfZ3CKaS4aU08RhYA19y5ITQAAAAABz2l1Z3CKaS4aU08RhYA19y5ITQAAAAABzyy3", "types": "HwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kJNVQg8pccfKm6nYhuiPHA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAa_bpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAbCfmSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcYmSSNDzWiYDmLZi_Z1ZVETLoAAAAAAAbLRz", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ADkra47La3HpwdD_ixkQqA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMh29XT4fd_WKeR1cE-hlLelCQAAAAAAC-z7kXT4fd_WKeR1cE-hlLelCQAAAAAAC-1UKXT4fd_WKeR1cE-hlLelCQAAAAAAC-057XT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBss6tVKI4mSYDEJ-ABAIpYXcgAAAAAAI9cQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAApa94", "types": "DwMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-D2Xan0xr7Iyy5r8CY20RA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAY5VlYxe-SHgukLEpCkawSk1QWAAAAAAAZDRdYxe-SHgukLEpCkawSk1QWAAAAAAAYKh0Yxe-SHgukLEpCkawSk1QWAAAAAAAYKANYxe-SHgukLEpCkawSk1QWAAAAAAACp-5Yxe-SHgukLEpCkawSk1QWAAAAAAAEnhaYxe-SHgukLEpCkawSk1QWAAAAAAAXafOYxe-SHgukLEpCkawSk1QWAAAAAAALZMOYxe-SHgukLEpCkawSk1QWAAAAAAALTa1Yxe-SHgukLEpCkawSk1QWAAAAAAALWJkYxe-SHgukLEpCkawSk1QWAAAAAAAENeXYxe-SHgukLEpCkawSk1QWAAAAAAALWB8Yxe-SHgukLEpCkawSk1QWAAAAAAAH96EYxe-SHgukLEpCkawSk1QWAAAAAAAHqSIYxe-SHgukLEpCkawSk1QWAAAAAAADP-EYxe-SHgukLEpCkawSk1QWAAAAAAAC0sEYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj", "types": "FAMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "S64TDAyJLSWTBaPN1VT2qg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAByB_IRgbCQC1IPEoVkHKMOTwAAAAAAAAAYdB8rpvXeU-U7j8zoRqc_lgAAAAAAAAAHe7YYWaQTMh8P2PCVzA2a8gAAAAAAAAABbLnL60YwFV1mMq9hr4cGaQAAAAAAAAAEfcwlJZe3vp7o1kWId0rqugAAAAAAAAAQ", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "T037yNb7uXswtCEJqGAhHg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPUn", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Y-972spXlr1Uz9Eo6KX-Ow"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDo5XT4fd_WKeR1cE-hlLelCQAAAAAACxD6XXT4fd_WKeR1cE-hlLelCQAAAAAACxClIXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSg76tVKI4mSYDEJ-ABAIpYXcgAAAAAALoLB6tVKI4mSYDEJ-ABAIpYXcgAAAAAALoEa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgIR", "types": "EwMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-wPT7HKHltRvqN1m-PQHbg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQ9zOECVMFUE-sRNeQZ1HM6gAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARTZwep2BdnG6Mdu9AQocnMQAAAAAAAAAGCMCWh32oer3bDaYggVtoUQAAAAAAAACHHCW9gICkV36t4oXsjBpsdAAAAAAAAAAE_WhLMAElKfp9RHy9XD-HOQAAAAAAAAC3qkXC9AzfY8U3Ryc9g3OFDAAAAAAAAAAsccTvkbbzG7ITlutNR0SvYwAAAAAAAAAehu0S-fYG_gY_Otgg4IzKXwAAAAAAAAErXey4TSJt8z1Y1xeGVvkdYgAAAAAAAADB6fJMpXGng7X5bTc2KsPuMgAAAAAAAABSD0g0ITB6vPs-JMXU6kB_IgAAAAAAAAAETnmpwdT1yeLDbWlRnUic2QAAAAAAAAAHnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAA-DaVWIofPTETqopDkVERGkAAAAAAAAAATwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF2mlzHMlWgLtS4AXchUZGuQAAAAAAAAAIqThtgbHprFVYaxHnWJ5r2AAAAAAAAAAQ37kdvsyygZea642hUZCb9QAAAAAAAAAdvxAO4ozw0ZRvb8q4djSlogAAAAAAAABEwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFx4xnJ8Bvv3cqGQOknqJJwAAAAAAAAAIURrpT79Wm1-567n5aqJlbQAAAAAAAADL3bzfPK0NZtH4PhiksXncvgAAAAAAAACOotzl_-UJZ6X4M1v7YRzHZgAAAAAAAAAId_mdgff0kSRs-ewuuAGS-AAAAAAAAAACYpb1GyaDgfO6SxUxbAvctQAAAAAAAAAIyHxJa10zF8jCmhZDUlRioQAAAAAAAACJjOKHIn-OfmVASZP9y1NSfAAAAAAAAACHV9nsBUwQwMn84PajbyjYtAAAAAAAAAAYX6qt9XlU0IqttZBt4TnwZwAAAAAAAABHwvXjE31kESML0je4-Me7hAAAAAAAAAApDRApe1cPTh2-wFVHvKmI-QAAAAAAAABlfedIGTz7oXcPN7rVsxHwdwAAAAAAAAAMyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFq-Wp_fKqnzituNc-kKOtAAAAAAAAAAUpYMvKU2r2nETpEeIP80PQQAAAAAAAAA38jMyW-WmlGRJvr5T2b-plgAAAAAAAAAFwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0_JZyYR0Vno863IcUXpa7AAAAAAAAAAQGiPQYuBqA4onG16OCBJr7wAAAAAAAAA_wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF49P_FduVXL-1HnETkDgpjwAAAAAAAAAcS_CL2qp_hCoxo4NMBjattAAAAAAAAACntgTcpaw1PHSeu1PntXA3fQAAAAAAAABtVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFW_JPjd1DkAyoubIfHSaORAAAAAAAAAAMro-nOR8Y6-xR_0NZHNxiswAAAAAAAAADGAKN4IA59Oyrw_sFixA19QAAAAAAAACoj8cyxnhvgCmiV0wfzWt-5wAAAAAAAABH4_Wu3cP_1KUTQF00Htx73gAAAAAAAAA6v6A2aEAJbkezThEe0LppjQAAAAAAAAAIAHE52dyzEEDlVbgj_xFoxwAAAAAAAAAVwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFR7Hj9yPeT2EDyEr2K8ONTgAAAAAAAAAYg9D12vCHvqmadcctx-s3mQAAAAAAAAA7dAHd9ndNzEhU1GyagepTAQAAAAAAAAAlABk6RqRYy5QsiYS0AnfFrgAAAAAAAAApwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFtM8VFC-6NwJWsTojOgeMHQAAAAAAAAAMgQianSpTZDlq5RnHMXwrkgAAAAAAAAALwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFIg4O8IWFanKbF_VU4hFAfgAAAAAAAAAY3JOiPEBqME3dIDTotL2-UQAAAAAAAAAi36WCeR5NbgRZnRrGA9E9SgAAAAAAAACzmVAJ4WIfnsjyIG-kvE-1qQAAAAAAAAAQWqkYLbMlJrW2Y713zy5U0wAAAAAAAAAL5dyaLj4wEVzUhd0CK34gIwAAAAAAAAAG-3GPQQ-ojQ0K4P5ZthFkFAAAAAAAAAANAKsZrYpx9x7YIwCoD9d3dgAAAAAAAAAEhVKhVL3RShupVCryfwjurQAAAAAAAAAHmO8Ep2yh8naX77AaM6OoawAAAAAAAAA36IU8CVJsljq2c-RkQafrKgAAAAAAAABGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmOXWqC4F9CbM_9TaYs7enGQAAAAAAAAC6kUAbs4Tm3_NRbBQPhQnuwwAAAAAAAABqBlwtAEKFHXxtdYYHllc2EAAAAAAAAAAQnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF7vbDea8YrHNc_wHLzDnfJgAAAAAAAAAUZtfWODgA6w20T9TMv2NrwgAAAAAAAAALa7hZfalsBRk3tlQt91V51AAAAAAAAAA18NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAADtKBNthOxdN-LeSLQeW0hbAwAAAAAAAAE21oy5TLITDFo_6XpzirRo2QAAAAAAAAAkwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFU5SYnpgA53sr9SLIWLBAVgAAAAAAAAAgmN5y2bB03UPv-f6SkPrk4AAAAAAAAAAl-mKRCTh8AFw2quERsAqZdwAAAAAAAAAghMFUfSdfKq62EgaVo5SA4gAAAAAAAAApNatKHnzuddBuR5ARu7T06AAAAAAAAAAh-mKRCTh8AFw2quERsAqZdwAAAAAAAAAg1aZ3_qa-GDGgUGJlxlWbzQAAAAAAAAARc7fJv8qzYljmNQmIpTZNBgAAAAAAAAAJpho5yY-CB4hDJ5PhyrESMQAAAAAAAAAcwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF329FQG0FRbGaRCox_CO5kwAAAAAAAAAJ8V6RThS4xLGvyBskf3U-ngAAAAAAAAAKwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFojijB29c8Lo_FuNL__qV0gAAAAAAAAAUzsmqElNKWoxAiguA-24XnwAAAAAAAAAG7mYeFjFR9Yoe2nMw0EFMCQAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF329FQG0FRbGaRCox_CO5kwAAAAAAAAAJ8V6RThS4xLGvyBskf3U-ngAAAAAAAAAKwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF7Ovp0wGRNiYYUgy1OfOtbAAAAAAAAAAcOFcZvVV_kykM3iTp1pb85QAAAAAAAABF8nls3JqhhTUBkU5tmpZaqAAAAAAAAAAsVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_2Z0wUnO7PTDrZjS1nqYP3gAAAAAAAAAoLi--jNLhFbogbPx7uUpcfwAAAAAAAAAQj-mrBXNBqeJC8DfUo5tvmAAAAAAAAAFRJuCfdWrRLOsm707HTwRsEQAAAAAAAACdAY1qQl7FueXylVMIipRQaQAAAAAAAAAGTwgGrxrsq_cPJuqNig0G7gAAAAAAAADSBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAA2", "types": "CAPMBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MnHzRqCV09wC0f_3_YNq7A"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-BdSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZv2", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "H6aVRP1XZGxW_TNZpAozgA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApygiinZb-VL-5X6K63nWolQAAAAAAAAAFsPRIu4G_UqOumyaMlOEsUwAAAAAAAABco__lFhTsOKstKDAfxbDtFgAAAAAAAAALJTnRsTPd7AHDTE96DfHcfgAAAAAAAAACTPgk3CweWzO9tVWjSu3t6AAAAAAAAAALGMA756PSHo5B_YmPM9fH1AAAAAAAAAA0w9EvqgSUrfSjTDJRVa3cFQAAAAAAAABNNHZIb934ydih1IKLBqCI5gAAAAAAAAACIwsijQDbvPiBVknFzNnSRAAAAAAAAAAJvfb9aCFliLFmJCtvbLn8hAAAAAAAAAADC6hdCXqj0oyVHhHOvhKmxQAAAAAAAABJ7-NWIMSLKY69QheXospWHQAAAAAAAAAEGOrFnkqGTEzDlTO1qewmxwAAAAAAAABQBA250vvzivD0xU5n0tBlVQAAAAAAAABngJGX9YLt4oQVT1mGe0oQGgAAAAAAAABPgdK-Z7OiQJ4-Vu9mxjvSjwAAAAAAAAEW7aQoN_s8X04jyh4gpnKxaAAAAAAAAABRcblhwFQdNeQr9L4l7DVdpgAAAAAAAAACxP8BEtTROcQjINLBdr_0HQAAAAAAAAB6eRkjYZu2KBOHIp1IQSjwWAAAAAAAAAAM1cGaBM0-rtiZfTyhOoVgPgAAAAAAAAAO7kmZ2O6hOV9dpjs-47j1SQAAAAAAAAEc5j2bttkvltKbwfcKsqCLqAAAAAAAAAEBcT0xsbXYEQkQw_3ez7RUcAAAAAAAAACc3xESPGl_P5B1-cPmnX20jwAAAAAAAABIC1-BZTtjTU0Wu8oyxUu-uQAAAAAAAAANOeZPvMFxczJ5KM1xFhyNlgAAAAAAAADUkImYZca_xa4YrQs4jcLrKAAAAAAAAAANgb6St-WZOjchnj7GWUpEkAAAAAAAAABaEfKJGuBgKIxolHX_eDBcXQAAAAAAAADAkeUoLhS7DM0koqCsSOTsoQAAAAAAAAALzxIhSYMrYCNgOD4FFp83ywAAAAAAAACIlZ2_MNa9nszmyg6dsxjjfQAAAAAAAAAEnjwAfng-rrJkcdAyGpb5kAAAAAAAAABS0woP3yhr02RmQR1xlVHsQAAAAAAAAAAAqYXyCTfSoRiD_M2RLVXihAAAAAAAAOohqYXyCTfSoRiD_M2RLVXihAAAAAAAAPQNtQgAmBJBgPLrkikSPRsmtgAAAAAAAOxb", "types": "CAMmBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "w2cA5pFSzeyVJ9Di06ODVA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbFTZ3CKaS4aU08RhYA19y5ITQAAAAABtZi0Z3CKaS4aU08RhYA19y5ITQAAAAABuV_gZ3CKaS4aU08RhYA19y5ITQAAAAABtuKUZ3CKaS4aU08RhYA19y5ITQAAAAABtagwZ3CKaS4aU08RhYA19y5ITQAAAAABuOzgZ3CKaS4aU08RhYA19y5ITQAAAAABuWDuZ3CKaS4aU08RhYA19y5ITQAAAAABta-6Z3CKaS4aU08RhYA19y5ITQAAAAABtbf8Z3CKaS4aU08RhYA19y5ITQAAAAABtb89", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SjE2Ni6CAQyLI_0LOuh-XQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAacLc", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vMqHPs9EIjuvSlEC4OiiMg"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADB0YTZ3CKaS4aU08RhYA19y5ITQAAAAADA21XZ3CKaS4aU08RhYA19y5ITQAAAAADA0KdZ3CKaS4aU08RhYA19y5ITQAAAAAC11yLZ3CKaS4aU08RhYA19y5ITQAAAAACs621Z3CKaS4aU08RhYA19y5ITQAAAAACqlDgZ3CKaS4aU08RhYA19y5ITQAAAAACIAqaZ3CKaS4aU08RhYA19y5ITQAAAAACtAiPZ3CKaS4aU08RhYA19y5ITQAAAAACsxfDZ3CKaS4aU08RhYA19y5ITQAAAAACIA1aZ3CKaS4aU08RhYA19y5ITQAAAAACIbhQZ3CKaS4aU08RhYA19y5ITQAAAAACIdftZ3CKaS4aU08RhYA19y5ITQAAAAACIm58Z3CKaS4aU08RhYA19y5ITQAAAAACIcqPZ3CKaS4aU08RhYA19y5ITQAAAAACGweEZ3CKaS4aU08RhYA19y5ITQAAAAACGvRaZ3CKaS4aU08RhYA19y5ITQAAAAABuBiN", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "k4HJrAiqQ3V4Sy2tIInxZQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAA5cYiYZLNw79YI2sv5ZzfISgAAAAAAAABnsd1-fzhWHGpZk5BbNZ95mAAAAAAAAAERuV9VJttm0goUzsky7YZbIwAAAAAAAACLXoncVs_RZ0C2CaElSEtZqgAAAAAAAAAV_jOWl9rQ0a9rjiw4HiJl9AAAAAAAAAFHigbwprokH3CDrh8StLnYiwAAAAAAAAA2QmPhYIH1ktF1VKTQGS_97wAAAAAAAAAbVJPzmLqKchEMtC2t_bsRSwAAAAAAAABH", "types": "CAMTBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GG472XEEVdeqeiwioTPVvw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcQxTPNhFsgl-8e8i61Q7phQAAAAAAAAAnwnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAE8PySOWxdeTvWtl74Iv620AAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAn5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALCqHdoNRupr5ud0SEqGGzcgAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAF_Ngz1ncxudXrxSqiWBxoaAAAAAAAAAAETphZkORhkBDEbRDMofKltAAAAAAAAAAkljijwxlolNIlc2z0nvWGRwAAAAAAAAAW3kqb9iL-AByP8rRfsVhi_QAAAAAAAAAK8gHcyv-vf693oHdGbKQv-gAAAAAAAAAN_NrJ8Q-i9cRRxMzl4paxGAAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAN9zqjB_amR59Lv13Nhle_NwbwAAAAAAEOE7", "types": "CAMTBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WZzgSlsPZ6clXTiCMgWgdQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAAAzr8jPkIagwkcKu3VFH_5eFQAAAAAAAAAFfwrSDgHrTXpAEmJ4bHy8MwAAAAAAAAATTq2A_ghNgr4Sgbd4ToSeBgAAAAAAAADKOVKwi55Br_WT9fxVyQu6PgAAAAAAAAAe2YGkbnIdlKIhbsTbMV-kWAAAAAAAAAACz-hu6cNT1Ftqgnka76QdWAAAAAAAAAAQEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAABBUoX-ughXNd_AmddejeY_6gAAAAAAAACLEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAABBUoX-ughXNd_AmddejeY_6gAAAAAAAACLEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAACgjxBO7ihhtfLOOEuDlHwmIAAAAAAAAABLEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAABBUoX-ughXNd_AmddejeY_6gAAAAAAAACLsrK4jFHN_yr7CRCkobJCaAAAAAAAAAASU9GMGSRcFRH-CQmb_n3Y0QAAAAAAAACk2dpbQm6Su1jn5rEv9F3sMwAAAAAAAAAavcAmytl_wXdfdPt8SRSHZgAAAAAAAAAOyfXyOODTodkdeiMKIIzHeQAAAAAAAAAjCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABhmUB0X1duvhm3HnTYomF_uwAAAAAAAAAQAFgNmbMpan7AOvr1RHjTvAAAAAAAAAAA", "types": "CAM2BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0mM0lZYG8GYmeCMXMbETOw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADMb6rO_tpQt622H0nBBuO6SAAAAAAAAABQk_y3LYF-5hABRlK2M6mO7wAAAAAAAAAQQnopTe1pxTR1kVhVN4qn2QAAAAAAAAAjrUHBgSz_SQE-q7C0lnDupQAAAAAAAAAJ6dizidRtpqcGmpShAjzttQAAAAAAAAAVXzWVAFfWPkx_-5DzBgosgQAAAAAAAADagk079EBdEVh5ErpJ6XBaYwAAAAAAAABiV1AAAJZxfA577guD2Mmh4AAAAAAAAAAhd3kpVhLsdwM004-RCJ5KgwAAAAAAAABRqWBohVpV0WLBgoRPY3ha5QAAAAAAAAAGgh5ZUK32QaLM1EoyY_BRswAAAAAAAADO5ocKe_xZhLoIMKsqpwD-EgAAAAAAAAAND5lAQaLy9ATYrsXm9SsubAAAAAAAAACjc9PnOdDPyU4oBYBeuUJKDQAAAAAAAAFeQCJaqzc5TAgQb6P0JIYhjgAAAAAAAAABsekohEm28rHxpRudfXENQgAAAAAAAAAEd5PNRNmadD6y-RfTc60V4wAAAAAAAAAA", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Yc_2GTJ_IVPE7f4u8QXDeQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANfzLzWZQgzth4yv0Aw0PoLgAAAAAAAAAl1pEcO9CYkxI799CldX3uowAAAAAAAABSeRhJRvHm727VHuGPDJpA3AAAAAAAAAAIFeTq3grQxZLpQxyGC-4wQQAAAAAAAABF9F2a_yzWrSmXRu6SZEKaiwAAAAAAAABdilROEXfY2pUH01XyVGW7lgAAAAAAAAAWUUg1eX6XD3kMg9XTzAxNlgAAAAAAAAACNDooAL42lwdUmpc4-AfzaQAAAAAAAABrmdk6GXreYf1FfT2SjVM7cgAAAAAAAAAEfeYj-gxH446kk14zhma-hAAAAAAAAAAJXnoSB634C4csFM2aSGubHwAAAAAAAABNkjX67_WPwwjOmve4ZUSb3AAAAAAAAAF85Ri24JfQ3hOfAMeWMo31rAAAAAAAAAANbn4I8fRVcZKaFCSiMCvwGAAAAAAAAABvaYaXPq6Lv-HexLpgIGC1HgAAAAAAAAAo5h1fxxJ6EO-OnrqL_BatiwAAAAAAAAAP2bocF2PaQb-4x21c82XN2wAAAAAAAAAMYbNld3zpk2N0cA7cPFuWGAAAAAAAAAC4kwGfYhr1GsPl-q9KOVF6bQAAAAAAAAGsWHt2sjXXBXmxk_WhY3xuqQAAAAAAAAAW7eP3POMzJHenXrvglsJksAAAAAAAAAAB546Ofl7I0zrzRa1FOgUxIAAAAAAAAAAfjydH41zj5Xx4jS3ZDDIhSgAAAAAAAAAE9lpztkfS1SN6AbyUgwU8QwAAAAAAAAAHH9qHSakbha_JIFnrzuJJjwAAAAAAAAAHo-BIkkl-h7WSo_nEcXjOQQAAAAAAAAA2M-5SaQQW4M2ZK-t2dL_K0gAAAAAAAABfYVcFEflggWCRxtIyAFnYrgAAAAAAAABK1c7wfSzTBWNtKP8vA7BBsAAAAAAAAAAt0uQfhygt3iA5h-6EqK0MPAAAAAAAAAAEJYb5JOqnMPOCcF7fd5apugAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAALTqvQ7EacG6CR4rzcFaNFEsTQAAAAAAATPM", "types": "CAMhBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "x92QEPdFkYeW4x8Mit4TyQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChIglXT4fd_WKeR1cE-hlLelCQAAAAAACgSzoXT4fd_WKeR1cE-hlLelCQAAAAAACg6i1XT4fd_WKeR1cE-hlLelCQAAAAAACh1Di6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BQMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "puIsGFT9D9ie7OaAMWkigA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEWB9GVskeRyK4_o3XD61XIAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAqJzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAqdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zYVMGADUhvH0MNK-_5jLUw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAAC9giwOUz_dwg5QpZ6rn_mtEAAAAAAAAAAaVuN94T655MWJDhWvTQiB6QAAAAAAAAAGCsbV9k-bf9vouE4JAWSvYQAAAAAAAABMuqwCsRNPiFKrqHYXLGpv-wAAAAAAAAB8iH1rt2A0cDFvTr2IZcc8_wAAAAAAAACWjtEB8q7ZNk5LwicDPNbPVQAAAAAAAAB8_20iQw_1BgBh9m8HkEpgSwAAAAAAAAAOMHOHZ9dur_p0OUPsIclbdwAAAAAAAACLPwt7pP-aI82aWD0sQr02awAAAAAAAADgNP8XT_pS7hy5hCFdTj7XugAAAAAAAAAFRwOT5knpVM2c7mDKFGRRsgAAAAAAAAAgRWzenT1WkhswQWbfG0kxvwAAAAAAAAAA", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gZcWJlRvTnEPU2SoN15zhA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACuCx5RC8g9OTz7PgiGSeLtvwAAAAAAAAAOgY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAFyZ0m5K0hyRADeQkG90vP8AAAAAAAAAAzZ80ToqoZC1OOBoR__NmsnwAAAAAAAAAFXCoBIRW2zeIv8Jr12c2SPwAAAAAAAAACtmXftvn8hrcleDLJfptXeAAAAAAAAAAFoWAu7yjPEQWDBpYB2hRLjAAAAAAAAACEHL8EuHVSmvyyvO0QJQzjvAAAAAAAAACU9i4yH5hvA0rp4RuaXVKyFQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAAhJZl0dXaaLjOD0ff_wyAqWwAAAAAAAAAMXaQ23qLqcYG8xTfG0MeEHwAAAAAAAAAFFFBo4766LxTMArq2lpjbGgAAAAAAAAACAMk_trcRDqgWwE9O1EQdVAAAAAAAAAAXXpviWYO7CFQF88r_qvK5hQAAAAAAAAAJWsCQmTSDw0k0qcC-8oiYqgAAAAAAAAAbvoqjqV6_-EldPWpE4Bg5QQAAAAAAAAAl", "types": "CAONBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2uW4N0T57kNGJTVG5_1zTQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFVZ1cEvvhuguaGYCmGWrnWRz1QAAAAACFWWycEvvhuguaGYCmGWrnWRz1QAAAAACFWaC", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fqlDalQnR0z4CfFMV3Mv9Q"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlZUcEvvhuguaGYCmGWrnWRz1QAAAAACEea2cEvvhuguaGYCmGWrnWRz1QAAAAACEf3-cEvvhuguaGYCmGWrnWRz1QAAAAACEgKO", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-7ex70r3IhidNSVrzLcqAA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChy6gXT4fd_WKeR1cE-hlLelCQAAAAAAFRYL03aS07d9PG4lc4UzuBbVWzQAAAAAADE19rtOWfs-RaxXWHIPyRB9RAAAAAAAAAGDArtOWfs-RaxXWHIPyRB9RAAAAAAAAAFu-3aS07d9PG4lc4UzuBbVWzQAAAAAAB5ec3aS07d9PG4lc4UzuBbVWzQAAAAAABvzT3aS07d9PG4lc4UzuBbVWzQAAAAAAB88h3aS07d9PG4lc4UzuBbVWzQAAAAAAB73b3aS07d9PG4lc4UzuBbVWzQAAAAAAB85W3aS07d9PG4lc4UzuBbVWzQAAAAAABt_X3aS07d9PG4lc4UzuBbVWzQAAAAAADvSz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcDw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbgp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbfV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbeHIG5EpvTeHopVC9IqkA_kSgAAAAAAAd3_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbfV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbeHUbK4uezrplMLlSw0h87XfgAAAAAAB0Rm", "types": "DAMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aRl5mcquqOzq3HPlHFumow"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAFyd0-tKbxN8EF2g5P7Jt87OAAAAAAAAAACmNST8o45bfhZN7s02QoOeAAAAAAAAAACNECbNy4YVdAOEMCpP2EgZgAAAAAAAAAH-b6upR2nC0pjtRf2Z5Ia8AAAAAAAAAArYphvFdC6Ku42TgGCAHzCrQAAAAAAAAAU91PGt5DRiEvcDWprSoWEvwAAAAAAAAAC5CnhWwVFqzjrPVkS7NFWEAAAAAAAAAAtSnaUGunAu44_z4c8VkZQlgAAAAAAAAAFCIuiiQ-JUySY2Z6jyT-aAgAAAAAAAAAJZVcJW-QBFuC0ZqcN2G8RXQAAAAAAAAAYAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CANGBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iKhp4VrunMdJZkEZm9IkqQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEWB9GVskeRyK4_o3XD61XIAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAqJzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAqdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAAAjj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABdMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOk99M4bkjfKmg3-yt9HFm8AAAAAAAAAB9L1XXNJqVZu5D9nZxbUfD2gAAAAAAAAAA", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ydVfMca4pTKtV_nMQvo2kQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAGx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABW1vmWfRl7JvnIelrwmbOFDwAAAAAAAAB2P_qKgj6OkmYBLfen5yPH6AAAAAAAAAAxsFs-DxXlXTzn3bVNvCe0KwAAAAAAAAAE", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "a5-obKRYvJiw7VDkIkKBqg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAACqGMNSe-6LTlpuiQTu86RdbwAAAAAAAAA1wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATsNW5-Vl52DSdbgwAu7JkyQAAAAAAAAAKMHSpk2A96gaG9v5WnUwtSQAAAAAAAAAa_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABz4mpI5kmO39mMZUBEmo57QAAAAAAAAATp3TMvdaUbW_u3mETl1j4jwAAAAAAAAAC3iAnOsiaJz5FxI1Ct-Vd4QAAAAAAAAARzvfqW8f55ol26SA6WHxr3QAAAAAAAAACFa-SLJc7wdpw_q90es9vFQAAAAAAAAAIsr7KmiDQn3AwPKwUE1w3aQAAAAAAAAAFnyQEDtNfXDm_fNpPXsT-3gAAAAAAAAAGXlbiXkr6-Uo-2NyXQ7Mp2wAAAAAAAACP", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OoPYq5Aw6d1wKTV_c9_UOA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAABCxaYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADno", "types": "BgMDBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tEf9Ie5yokrYlSGE7DLxmQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAEgzT7XZSg98RfDNP1VNIfEEgAAAAAAAAATf5TZuolTm8PTdIr3znBu7AAAAAAAAABMjCOJVbTIbfgz_c_uOqkTuQAAAAAAAAAM-G-jKyr5A3MRrC_vNgLsBAAAAAAAAAFPZoIJ9wmRjuVv79Zo3eRnMAAAAAAAAAB2s84b9SvDFo5phkMP-bFo0wAAAAAAAAAFhHI8fycCSE9gTrpxwlqNFAAAAAAAAABOQQh0H_R0519E6LNe78VmDwAAAAAAAAAlfTAss9wSqMPQUI2HD05f3wAAAAAAAAAzHyraq5uNnLhexcfH6jeoJQAAAAAAAAAX8Q4lBCQ6qhqWPpxfEcKZ9AAAAAAAAAAA", "types": "CAMTBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PgTdyJ7xx8fAccK2NtQowQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADAYnk6E9ReVsUsstHFtTIiXQAAAAAAAAAyfT0k69QoWDcgSGG9DEbGKQAAAAAAAABU3yZRDT05_hGvUj8jRvChFAAAAAAAAAIWQdsa8CodEr3BBR20SawlOgAAAAAAAAII2kNP-fbSjTC_hm1jEY6s0QAAAAAAAAAH9hAOHgmwWWwZTwO4K132QgAAAAAAAAAevtOmTuUGvKYiQRK_O9kHuwAAAAAAAAGJfbT9eHA5tj6rUvxqpnewLAAAAAAAAADWi_JW0SMBS0hXEJxPvmBaaAAAAAAAAAAEJpTsQQlmGWQ5UI3dBfHw_QAAAAAAAAAET5MVi_BSLsnWRbdoA3QO6gAAAAAAAAAi", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4FMEbu46FVTF9FY-0Ogn2w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAacw3", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "n-PAN0ssaXvJ6kY18i9tog"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAPx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABWdRMG3BjNfH2se-egabnU-QAAAAAAAABAEkcy7So9YVOh7Q9iMhhrxQAAAAAAAABM3SSuw7AKPJ9yFEVSwC_lbAAAAAAAAAAuXLN55eJ2HplxP0Fb2YBmOQAAAAAAAAAJ_6rkq2S7o8rMRQJ9AofzJAAAAAAAAACLjwkBY0s-EHDmaMTnMHI2lgAAAAAAAAAYLLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACvqKrM4v33j8Ui9JyIz2QXDgAAAAAAAAA4ZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAAB1buaxzZBrb6WHETKUkwVYegAAAAAAAAAOp7qKIzzn4w0j5_vK-B0EmwAAAAAAAAAmC9UVUqjRD64_RWyXHEtr7QAAAAAAAABE", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pUot7h45U8B9b9S1T5stzQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Fs1_jCyW9_zAyxKO8CT9iw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACXVSALBRPvgHpUWKmpUo1khAAAAAAAAAAE", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_BHWrMWBlVU6-0DD2Kvl5g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAak0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB0qRvG2N9iYeFyl-3xULRJEgAAAAAAAAAe7p_llGp9OZbFMQuhvSu13AAAAAAAAAAIFtjh-A3lytsNmmUroc108AAAAAAAAAACuimFkk5UuxbH1IL630LmngAAAAAAAAAbVPtMofZCgqrw-l9pGX7aHgAAAAAAAAADRSgrZm24iCMR6dfllqWutAAAAAAAAAAaK_N78LhUkthI1fnHsP1_6gAAAAAAAACbNBXbNoKXlpq4Av5OjCjqUgAAAAAAAABz", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mknpTKgXrVcTrP0y-Vu4pA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAAAeCY7ztddcPo6ofReMjIW4KAAAAAAAAAAWV0LEzKEJCTr2F7QdmvO8vQAAAAAAAAAESc-7DBv3SRDl6MaEnNIV4QAAAAAAAAAfjp89ntsvEyhpH5Dc3mZilAAAAAAAAAE5bBQ2fsMcPLjZdwrVTr6aMgAAAAAAAAAY8WTNcSpaCvjR8mgFDe3uSAAAAAAAAAAfDzEvX6Uki-3l_8Ej84P7KwAAAAAAAAAEtJvp7gDkktg9hHJv6LrXYAAAAAAAAAJIVyyKaeEtdlraCgV3b2jJawAAAAAAAAEJSbaWcO00B2zTHJCaL1t-KAAAAAAAAAAGHxVJAZIu3O0jFVqzh80-TAAAAAAAAAALJslOyX-wUGFxc5cwIg6Z3wAAAAAAAAB9rgAjIQySCix3y3Kbq5dkvwAAAAAAAABl_RUQ8702rsuOcfHHin3xeQAAAAAAAABmDQnuXF6pjLzI_ydpQiFW0QAAAAAAAACGlLSqJ_lK-jxr01mEXBTexgAAAAAAAAAKtUugY2gAhpWf99wEorV4JgAAAAAAAABYwf9mrqZKrjw_yhc1kSPntQAAAAAAAABvhFR94sc2fPjalZlQgZv1dAAAAAAAAAAGBYvTdSjRR3mRiJL5PtR_XgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAHqevQ7EacG6CR4rzcFaNFEsTQAAAAAAATxv", "types": "CAMcBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "w_gVd-AvWZmQ3WMy6t6XAg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAacbU", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GpWKihnKGLWcQ6H8XP4Cdg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TkEXT4fd_WKeR1cE-hlLelCQAAAAAAD8UKYXT4fd_WKeR1cE-hlLelCQAAAAAACvLMwXT4fd_WKeR1cE-hlLelCQAAAAAACvKd1XT4fd_WKeR1cE-hlLelCQAAAAAACu3W2XT4fd_WKeR1cE-hlLelCQAAAAAACu6iEXT4fd_WKeR1cE-hlLelCQAAAAAACu6lrXT4fd_WKeR1cE-hlLelCQAAAAAACil8SXT4fd_WKeR1cE-hlLelCQAAAAAACilLg", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OD4R30IpW0nvOt_G6qR8Lw"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgJxz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFlW6", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "htfRCBFoc4VoJwgN8Ytl-w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAHOgepeYBdrKmAGikZZHzjywAAAAAAAAACvIUAbyMW7bf80Va51E6QcQAAAAAAAAAF_I187UwkDjABEvmHmR4uSwAAAAAAAABtf-B_DnWkY3i33A_-cn2DVAAAAAAAAAAa_iCcRlhs7iF8GyQDr_i9yQAAAAAAAADW4LaiotHNGYdIR8tBjAPtZwAAAAAAAABGIlQ1XNLSC8AG8SGKzC1MsQAAAAAAAABNtLATSye44dZj5qP3wd7yWgAAAAAAAACJGRx4elZZ5Xpl6qP-vsIkdgAAAAAAAAAEOGothoSS_VGQxhefQGBOogAAAAAAAAAM3PWYwmr8WKiucw6_bVd_pwAAAAAAAAAHDuXITtzB7JQM2p8eLBRYdgAAAAAAAAAESvEA_niVYaY-OpBNTk8XvAAAAAAAAAAcR50j_Fakx0mSC9-4NdTEsgAAAAAAAAABJBB8Y32Y7T0w9OJCs-3BZwAAAAAAAAA3osL-AROuaDqXe2LFy29GUwAAAAAAAAABnuo_TPMaY49kAwBo7E4YSAAAAAAAAAAkOD88rfBmy4BfCXerLT5e5QAAAAAAAAA7yhF9CEzH60wdDBblzY1FcQAAAAAAAAAIOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEn89kGiBdFucX6T4kdjXe_gAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVCm3FF_uDQeutHnQs3UGjlgAAAAAAAADAwMduPEe0g_53DcRkATCeKAAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAAC-6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC80G6zvzFPytbRyfwuXWQcAAAAAAAAAAB", "types": "CANXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "n0M5HPUARuaG-cOZx59FHQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5WiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATeCaKzXzVKYqqs4wMxzAp3AAAAAAAAAAKxzEX_ryOXWtTMQZYJuG-1AAAAAAAAAAD2XDg5u84AThLncvQweEa6wAAAAAAAAI596H7IcrFu8Zg3f7WMu_LagAAAAAAAAAqztj5Yc58Fi74AN4K12GxCQAAAAAAAAAIeXp6ZabxmzABDzP1KpFPrwAAAAAAAAE4omklHAPZnqPNJHwVpvh2vQAAAAAAAACrqwPQ_i5WGexQYU8q8eVTyQAAAAAAAABzoSoGUxBn_MfT_4Ncm-yGtQAAAAAAAABaAl_h9gC68463XnWmby4-QgAAAAAAAAAJWQoT5TvZ3eOmkl3OPEBMywAAAAAAAAAuPRgslp-mhiA259jp7eDUDAAAAAAAAAB6CB3cooh_xs9YH9mUphGzWwAAAAAAAAAGxH7fDwWrFq_DRtbR8yK9XwAAAAAAAAMEVTfbcIJC4j-MNC5M8fX4oQAAAAAAAAGd5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAMzcfKpbpAZN9qkm-T9sCmgAAAAAAAAAAgDvdfU48u2QTcLtk5MzruUgAAAAAAAAALumQIucIioKjldscxi712SAAAAAAAAACCKFGBFnajTppUPwKMAfWXvQAAAAAAAAAXeFaXX7H_gmfoLAN8WX-xDQAAAAAAAACOcqdSAx5Uej3ncVA_SUVjsQAAAAAAAAAMPrNII2l46oclr0RXWTYMUAAAAAAAAAAE93KKtPDSfPMvEhxj9OzJ1gAAAAAAAAAHsWCnrMF0Arlnv58qX-TThwAAAAAAAAAB7mqPc5ch4cFcQJn3b5WHKQAAAAAAAAAFIY3kOFBxddrJzoZrzargTAAAAAAAAAAAMP5HRDaDTxfL7AK376UJ7gAAAAAAAXffvQ7EacG6CR4rzcFaNFEsTQAAAAAAATRb", "types": "CAMxBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5Tf-YsisMn-8BkdhwRUXpQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_WBWcEvvhuguaGYCmGWrnWRz1QAAAAAD_X72cEvvhuguaGYCmGWrnWRz1QAAAAACXxxScEvvhuguaGYCmGWrnWRz1QAAAAACXzgEcEvvhuguaGYCmGWrnWRz1QAAAAACES-X", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ku3dJg7uoNqA3OiimkD9KQ"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABq1DlgtQ4kMk_MBWrPUAFqVnYywAAAAABq2N0gtQ4kMk_MBWrPUAFqVnYywAAAAABq5Q5gtQ4kMk_MBWrPUAFqVnYywAAAAABq5AogtQ4kMk_MBWrPUAFqVnYywAAAAABqGpIgtQ4kMk_MBWrPUAFqVnYywAAAAABquYVgtQ4kMk_MBWrPUAFqVnYywAAAAABro5C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFLs", "types": "CAMDBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-FgHfu9tQhYTgpwF5irr9w"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAx1WldWE0hyfvqjPz-ty_czQAAAAAAAAAmqU_w4fJ1H2b1Z7QXEMrwbwAAAAAAAAAA", "types": "CAMIBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7xwMOd4RJ8Ot1XrcX4r_8g"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgMz", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hicFPnqcgI-QATM_d1RRhg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABdAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8wMbNj2bmC_k-f1sjP1tvg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q3SXPYXOZwoUrGnDYqu8ttAAAAAAAAAAAgJo6kaLmCyBmWcpTZxcJwQAAAAAAAAAAhZDQmiqzQ4oD5JwGwWL6egAAAAAAAAAASNDzWiYDmLZi_Z1ZVETLoAAAAAAAiiwrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt02JSNDzWiYDmLZi_Z1ZVETLoAAAAAAAnFFw", "types": "CAMEBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4O45TJyRIp_Dj0IxvNdxwA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABTYQywd7BcCE2h4hN9hN7NgAAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZgDBfvwbGE_xfAHsOQTl1Q"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAAAzr8jPkIagwkcKu3VFH_5eFQAAAAAAAAAFfwrSDgHrTXpAEmJ4bHy8MwAAAAAAAAATTq2A_ghNgr4Sgbd4ToSeBgAAAAAAAADKOVKwi55Br_WT9fxVyQu6PgAAAAAAAAAe2YGkbnIdlKIhbsTbMV-kWAAAAAAAAAACz-hu6cNT1Ftqgnka76QdWAAAAAAAAAAQEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAABBUoX-ughXNd_AmddejeY_6gAAAAAAAACLEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAABBUoX-ughXNd_AmddejeY_6gAAAAAAAACLEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAACgjxBO7ihhtfLOOEuDlHwmIAAAAAAAAABLEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAABBUoX-ughXNd_AmddejeY_6gAAAAAAAACLsrK4jFHN_yr7CRCkobJCaAAAAAAAAAASU9GMGSRcFRH-CQmb_n3Y0QAAAAAAAACk2dpbQm6Su1jn5rEv9F3sMwAAAAAAAAAavcAmytl_wXdfdPt8SRSHZgAAAAAAAAAOyfXyOODTodkdeiMKIIzHeQAAAAAAAAAjCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABhmUB0X1duvhm3HnTYomF_uwAAAAAAAAAQAFgNmbMpan7AOvr1RHjTvAAAAAAAAAAA", "types": "CAM0BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "f2RJTDjOG3CtdSv8hOKanw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEt6cEvvhuguaGYCmGWrnWRz1QAAAAADhBO4cEvvhuguaGYCmGWrnWRz1QAAAAAD_5NMcEvvhuguaGYCmGWrnWRz1QAAAAAD_6LEcEvvhuguaGYCmGWrnWRz1QAAAAAD_7fhcEvvhuguaGYCmGWrnWRz1QAAAAAD5t-IcEvvhuguaGYCmGWrnWRz1QAAAAAD5dhEcEvvhuguaGYCmGWrnWRz1QAAAAAD5oNacEvvhuguaGYCmGWrnWRz1QAAAAAD5qincEvvhuguaGYCmGWrnWRz1QAAAAAD5tDTcEvvhuguaGYCmGWrnWRz1QAAAAACGvYWcEvvhuguaGYCmGWrnWRz1QAAAAACGn3VcEvvhuguaGYCmGWrnWRz1QAAAAACGLBzcEvvhuguaGYCmGWrnWRz1QAAAAACGMuq", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "S5-br3efshNyjcSWox2NvA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAqeSs1xpPdaQi6BA9wz10SrwAAAAAAAAA5TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABUfZfGpgZFJokP-jaeydrs0QAAAAAAAAAJjg3LdO4DNz9FsefjUG1F1gAAAAAAAAAUf6OHtxWEEYSKC5jCOpZRYwAAAAAAAAAA", "types": "CANqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_EsHnjdKV8IAlrfbLT931Q"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIoVZ3CKaS4aU08RhYA19y5ITQAAAAACtIeEZ3CKaS4aU08RhYA19y5ITQAAAAACtOs8Z3CKaS4aU08RhYA19y5ITQAAAAACtOQ7Z3CKaS4aU08RhYA19y5ITQAAAAAB0tbFZ3CKaS4aU08RhYA19y5ITQAAAAAB0mf0Z3CKaS4aU08RhYA19y5ITQAAAAAB0j-IZ3CKaS4aU08RhYA19y5ITQAAAAABuBdPZ3CKaS4aU08RhYA19y5ITQAAAAABtHRP", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3PF9c3wvWuSHWSRQ7lpy-Q"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAAB2I10upgJihUkX5rBuiOc-YwAAAAAAAAAJeBZv9AEe8LEuUNXk_42n2wAAAAAAAAAFb0AoyduVJ3t1JvB8AtIQXgAAAAAAAAC0", "types": "CAM0BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JrtGgsej_ZvMvypTCZY9mg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAGvN0nOeOJdjggSFx_cpb47egAAAAAAAAAV4vwWTuaA5W0Uq7WSODTSAQAAAAAAAAB8mm7pA8Vo6frfLprU_GjPaQAAAAAAAAA1DKW-i8K0WrMqnEk0kwNnYwAAAAAAAAAEgrlzyYVVprN3PhxXr__ghAAAAAAAAAAErPTEKLm7EEAHja1HwfFSAgAAAAAAAAAjubP7WfdOklFmyNsO3NcaCAAAAAAAAAAUfxsdTfj4D_fa8ryqJS4OhwAAAAAAAAAavCfdueLOBjh39THnpz1A2AAAAAAAAABqEhck1kQlii3oPbpiGh3PAAAAAAAAAABEMrkHP-uLdnGR6BMej6TH1gAAAAAAAABnDj6tiMRmBqF44gNTINilawAAAAAAAAAE6-qLd4f8SqNttst5P-8E1AAAAAAAAAAHT8onotV9lg89BkiEKBT7jQAAAAAAAAALjj4EO_grm_cOEklAp23b9QAAAAAAAAAJvAJHjqNGr3CUZ2XaU7rPiQAAAAAAAAAnZb4pGe2cTLCA76HvxkNMNwAAAAAAAAA7YqT3WwhcvvvGwqhq_677_AAAAAAAAAAMAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jP--MF88HszSEEHJkdZMeA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAAAjj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABTFy_oiZ-hvylcVoePLvWugwAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YQv8Jjxrz6pIHbJnxDZTDw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN4uo", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zOiM2iaG3zJbqgtGW26o0w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACuCx5RC8g9OTz7PgiGSeLtvwAAAAAAAAAOgY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAFyZ0m5K0hyRADeQkG90vP8AAAAAAAAAAzG03owtPMOb_BDAuY6rOWogAAAAAAAAAFXCoBIRW2zeIv8Jr12c2SPwAAAAAAAAACtmXftvn8hrcleDLJfptXeAAAAAAAAAAFoWAu7yjPEQWDBpYB2hRLjAAAAAAAAACEHL8EuHVSmvyyvO0QJQzjvAAAAAAAAACU9i4yH5hvA0rp4RuaXVKyFQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAOPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMzzqjB_amR59Lv13Nhle_NwbwAAAAAAENS56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjs6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbfA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAROdk6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdbc6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdab6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdV46tVKI4mSYDEJ-ABAIpYXcgAAAAAASg5x6tVKI4mSYDEJ-ABAIpYXcgAAAAAASg1n6tVKI4mSYDEJ-ABAIpYXcgAAAAAASgxU6tVKI4mSYDEJ-ABAIpYXcgAAAAAASgiP6tVKI4mSYDEJ-ABAIpYXcgAAAAAASSNS", "types": "CAONBQIDDwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "L9mej-PTu4SZGfpi083-2g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB7rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa6y4SNDzWiYDmLZi_Z1ZVETLoAAAAAAAvCgLogCgWMgT5mMAMhpNA0IMiQAAAAAAD02G6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "DAMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qChF1b-F4ZHuRR8vMI_y5w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAADZgiwOUz_dwg5QpZ6rn_mtEAAAAAAAAAAaRZMfsbKLC34Px2zwyEaSpAAAAAAAAAAGK61z3xaGK-rHqmHBTOYNcwAAAAAAAAARSjz2MvPusgDd7v_6YUXcPAAAAAAAAAC1J4eQqgwFH8hGziiVTbtiYwAAAAAAAACOMbaOnaCMmj3Z2Dka8DRidwAAAAAAAAE7vMJZLefDDDN7jSsJGIx5fAAAAAAAAAAxpz26RZIIszjYMjtzkRg4ogAAAAAAAAAMfkbxUTZgljnk71ZMnqJnyAAAAAAAAAPSLUc8giwpRnW-thOUnKqKcgAAAAAAAAAqj9q5artJZBLmNbsusN-vBAAAAAAAAAAE", "types": "CAMTBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XuoRBwH8D9PqSHFLLM0iiA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmsS", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "T5Cn4ZcI85w-SXFfrytVPg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMcE7XT4fd_WKeR1cE-hlLelCQAAAAAACgagB", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WBHQM4NBGzoZVLedZma7Ig"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAABdynFllp5CrPbAGyx1JneoOgAAAAAAAAInM9t3sX7Z2Nj1mpARCDGcawAAAAAAAAAIwcw67NCnOLTYutynHBvqowAAAAAAAAA90vYUuo04uCIksGcEjg9Q4AAAAAAAAAACiFkuHlkQPsBsMnUTpjsUKgAAAAAAAAAF0Cdt9wyWxnG2B-xGXMO6owAAAAAAAABpyYF5YWbjTLokor9oKz_A5AAAAAAAAAAN1YwmAWjsK6oD1Qs8m4ZuaQAAAAAAAAAW3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAA5yATvQ7EacG6CR4rzcFaNFEsTQAAAAAAAQGM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMyBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "c09KLYvfDtrLePqGFrZGFQ"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHiCEgtQ4kMk_MBWrPUAFqVnYywAAAAADHiVygtQ4kMk_MBWrPUAFqVnYywAAAAADHdlvgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4V0gtQ4kMk_MBWrPUAFqVnYywAAAAACG15kgtQ4kMk_MBWrPUAFqVnYywAAAAACG2E8gtQ4kMk_MBWrPUAFqVnYywAAAAACG15LgtQ4kMk_MBWrPUAFqVnYywAAAAACG2UHgtQ4kMk_MBWrPUAFqVnYywAAAAACG2ZKgtQ4kMk_MBWrPUAFqVnYywAAAAACG2xogtQ4kMk_MBWrPUAFqVnYywAAAAACG1wbgtQ4kMk_MBWrPUAFqVnYywAAAAACInNA", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IoJlfiMVuBuG6DfHS2d0IA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-KF", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PkkcFOm60ARum3t1RkmFhg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAACqKpITysyc01IYxgnwc53UiQAAAAAAAAClexDpNQOMLw9Yf7a5aYjaDAAAAAAAAAAFLrFpoAJGQs12Bwm9KGK0lgAAAAAAAAAIU0G4u2sI84e-qKwkGwX3CAAAAAAAAAC7mbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAANIfYj4waw9fP9op8fikoTJgAAAAAAAAAGmHLbruajf1ewhD5eRLIwPQAAAAAAAAAEIfYj4waw9fP9op8fikoTJgAAAAAAAAAGu80wzeYkSnSlt8hhdfSXpgAAAAAAAAAsaMdAw5F6bqw1nsXGt00a9AAAAAAAAAAT5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3Ge0L0SwsSbyUWsXqVMbKswAAAAAAAAAGDXStuM9FGoRVIzn6iyb_SQAAAAAAAABmLO0kqCJ5sLnPx_SwGJYFEQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMTbeJ7BYIhIN72fM2Cz8k8m9QAAAAAAASDW", "types": "CAPCBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cM0djH2TU0zlpYvTIkqfrA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk6jz5k14PsCcDvFyUC1kmlV3QAAAAABFjYEz5k14PsCcDvFyUC1kmlV3QAAAAABGgQQz5k14PsCcDvFyUC1kmlV3QAAAAABF400z5k14PsCcDvFyUC1kmlV3QAAAAABFkWAz5k14PsCcDvFyUC1kmlV3QAAAAABGZKB", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZiZ1khLLMUzgYWGwfUZAEw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABN1sqZEeUsG3W43_x5Rw_H0wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACflNTKXUVadjdmvcqN0AFxgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF992j67iVEP_ZCQRVTejCUwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFzHOgb2zN-3HJtDx09H8hxgAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFqU4kioVgX1sNw5K2FC6P0AAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_4-ysLAXaTmrllCFWD4d16AAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAcpSIXlNYnJYwCILAJFTEzSwAAAAAAAAAGTyuf4RNGIxt-ueaCsLj22AAAAAAAAAAXvSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0qlujNL7db72ZwWHkSPq1iAAAAAAAAAAsYp9yfnSFmXqLZeNxJrwegQAAAAAAAAAEc8wp1Q45CdLtTNnj6qINTwAAAAAAAAAc883bdFy7P76blVO1v_2KNQAAAAAAAAABC4CcYG0dw-sjNwKzo6iFpgAAAAAAAAAH9hZdX3cgI2b0eP52YXGHgQAAAAAAAAA3pELSNcyJlp2iMZUFEFcrBQAAAAAAAAAB4n-tP9QoIYIbfuv5fy3s6wAAAAAAAAAjOWoia3OO91L6Q6k2Ypn2XgAAAAAAAAAW4LWodyiv9Hy4HicwczMhQwAAAAAAAAAGYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyI0sTGLCNH21piOrMPoln5uBQAAAAAAb4wHsTGLCNH21piOrMPoln5uBQAAAAAAb5WAsTGLCNH21piOrMPoln5uBQAAAAAAXItIsTGLCNH21piOrMPoln5uBQAAAAAAf3me", "types": "CANBBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VrBz5ulfwdPTqnMaGIpcBg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN4wP", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "P4UuSsDKCXWF3oh3R7oZEQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAAAPX6JlWwBbDvZZ7rFp8ffgSAAAAAAAAAAFK24S1jUATvUFIEv3zAUZHgAAAAAAAAFQQTk6i4kGz-zDlc1CgyBszAAAAAAAAAAubFnDceRyUrwrxpx2LB-2swAAAAAAAABsy3V4Wh9j61CfcWNgvt1uPgAAAAAAAABzXcCMywL5s8Msv7wl9SHdqgAAAAAAAAAc8g3sLjFnKCF_JJchxYP5DAAAAAAAAAAN0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAd5e20AsvoCctGya4WV0ZQuwAAAAAAAAAYN1xfNXt_cEW2sMA8rTIs2gAAAAAAAAAcoFRYJDbPvQJOSZxJm2FyygAAAAAAAABmUaXx0ql2gESykKhBYD_4zQAAAAAAAAAQ4_itTHDWzn3EJU9PNzfGcQAAAAAAAAA-VV_tOlrSOt4YoMeLZbC6QAAAAAAAAAAI7Mpv8-OJrOs12MgQuVgEZwAAAAAAAAAD", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "E8q5-T4I0EEq3oPd2J28VA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcNB7", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "X_DergfmxCZYVsT8aG5xQQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABMaP-XSbJ_jD1SaDSikvAxwAAAAAAAAAM9lngTnmeSG1s7rdk_juSMAAAAAAAAAAGHrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACtBnjxOT6ecDtMNaRY7RgRQAAAAAAAAABnzd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX73IOkhtZyjrZNnxzxVPYTQAAAAAAAACNp20xNjB13pFFci9UHZaQsQAAAAAAAABbNFoti7zeivEyGvfQ3_ANTgAAAAAAAAGU3kg82-0D3eZ1bo-oCBlTCgAAAAAAAADCVOUNVzVyt4QutMt6oZxNlQAAAAAAAAAYdx_pTwJwhqQvjWAfMihgAgAAAAAAAAAuNdnOauNqYT-cKE84qEP2jwAAAAAAAAANlsX2eCLSr4Q70_mA1t3KeQAAAAAAAAAoNB3KICW80r4krIyGFXIJIgAAAAAAAABZ2uEWBluAjlG6YATEmwlaSAAAAAAAAAEIx2cwCBtVASi5Ak0QtF5vPgAAAAAAAAA1Hkzvs5GEXB5P73bf_lHYLwAAAAAAAABTXENWJPYGUyfafb6FgvyauQAAAAAAAAADGYKajMbKzWsBIH7EDOQOuwAAAAAAAAAO", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5Y5-o0gkUhbrP54-KmzBRg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFWS1", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "laLiuCpHKHuOVWhZk5dt9A"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACG0OeZ3CKaS4aU08RhYA19y5ITQAAAAACGzb4Z3CKaS4aU08RhYA19y5ITQAAAAACG-gOZ3CKaS4aU08RhYA19y5ITQAAAAACG_itZ3CKaS4aU08RhYA19y5ITQAAAAABtOOSZ3CKaS4aU08RhYA19y5ITQAAAAABtHRL", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GIXoZcc-rO2_QJqWdyhQCg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAOog03klALlTA3DUKeyZZ-kYgAAAAAAAAAHg03klALlTA3DUKeyZZ-kYgAAAAAAAAAHg03klALlTA3DUKeyZZ-kYgAAAAAAAAAHg03klALlTA3DUKeyZZ-kYgAAAAAAAAAHmidOaweFMMarPTWzdmC3NgAAAAAAAABPVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcM9Xltn711KKFcrKCAYh_ZgAAAAAAAAAE8s5hM6TvWnoP9XP3e8VVVwAAAAAAAAAHwh6xTQPkmoOUUrUOOnnNsQAAAAAAAAAgAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "G2qSXnyvIGQkSNpP5wPgdA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAA5JaQSNDzWiYDmLZi_Z1ZVETLoAAAAAAA5JFkSNDzWiYDmLZi_Z1ZVETLoAAAAAAA5InESNDzWiYDmLZi_Z1ZVETLoAAAAAAAVhsDSNDzWiYDmLZi_Z1ZVETLoAAAAAAAd7Z5", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8aa5KIF0DFsrJsoVvEfajg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlZUcEvvhuguaGYCmGWrnWRz1QAAAAACEea2cEvvhuguaGYCmGWrnWRz1QAAAAACEf3-cEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUjA", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UOeWC8fAGloWbHEYVuqcaw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHfZKXT4fd_WKeR1cE-hlLelCQAAAAAACy8_rXT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-hZXT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy_VqXT4fd_WKeR1cE-hlLelCQAAAAAACzAHwXT4fd_WKeR1cE-hlLelCQAAAAAACnlJEXT4fd_WKeR1cE-hlLelCQAAAAAACnlu5XT4fd_WKeR1cE-hlLelCQAAAAAACnl_3XT4fd_WKeR1cE-hlLelCQAAAAAACnzWEXT4fd_WKeR1cE-hlLelCQAAAAAACnooIXT4fd_WKeR1cE-hlLelCQAAAAAACjqYOXT4fd_WKeR1cE-hlLelCQAAAAAACjq2QXT4fd_WKeR1cE-hlLelCQAAAAAAChrhmXT4fd_WKeR1cE-hlLelCQAAAAAACgUY0", "types": "HQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fkFINeCBMiTJSpNxRsOdew"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAACEjtkcEvvhuguaGYCmGWrnWRz1QAAAAACEjgL", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RUNYTUN-F_zv9oJ0DjEKwQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbeuIw_I7HzcVMEcOaEL-XEgAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAABdynFllp5CrPbAGyx1JneoOgAAAAAAAAG7u5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAAAB9iQ4R94V7tu58rNrkW4m0AAAAAAAAAAXFJBAv_ZG17EaYJPkcMS1YQAAAAAAAAAYb5D4G32aP0YH2ukb-bXGLgAAAAAAAAAdiM8LSJ_0DrAH3j2_fhBWQwAAAAAAAAAIKYUKYe5FJokP-mDuLYX4tQAAAAAAAAAJi2OZ9-P_pjOFSV36486xoQAAAAAAAABb", "types": "CANDBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ips6IyoH5NuP1Ttgu1Etow"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAACqGMNSe-6LTlpuiQTu86RdbwAAAAAAAAA1wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATmQVHcTFXg4JaHxKFUu2SNAAAAAAAAAAK0qdPtfCOXWtTMQkqPpfTpAAAAAAAAAAD4pD3shcvlMj_8ybo7T2TVAAAAAAAAAFCS0Vcinvs4UXd1rhNSjovpwAAAAAAAABVbAlNhxIUaCZOzq5Go2-fDwAAAAAAAAAIUNi2PfJJ-vKG8q63OaknIAAAAAAAAAHcPDxaYxBC-l8PtK0orl2RQwAAAAAAAAETSZD9YVGYcY6t7-F09t_klgAAAAAAAACDMxRnrnRp5fRRlUEkyuK1rQAAAAAAAAAwg5HW81gVegsp2uHOoheefQAAAAAAAAKgE-_k0LukEF9-LD3AxVa3NgAAAAAAAAAPQaVgyqdSKxBGbM75xg0o_gAAAAAAAAADYq5qVgU-uF5HOA3V-qXF7QAAAAAAAAAHYOvHVd-Brx3w_G9pFAJpJwAAAAAAAAEoXFD9rtcq2dSwMN8BaHVjpQAAAAAAAAAhosZ_HzuZu659HcV8_fdWogAAAAAAAAAA", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bQ285knnYYuMww0WgMbI2A"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADMb6rO_tpQt622H0nBBuO6SAAAAAAAAABQUpQJVab1XLdEqsPt4Ey6RwAAAAAAAAAQQnopTe1pxTR1kVhVN4qn2QAAAAAAAAAjrUHBgSz_SQE-q7C0lnDupQAAAAAAAABM8VQNjJHt4dBRU5VSN3KkiQAAAAAAAAECfEW2ISlTz6bBNQ3Y_nEaswAAAAAAAABDdT5WZm8-ag4VFDZf0HaaMAAAAAAAAAGyADx42ASEgg5CGZav2t-yuQAAAAAAAAKl", "types": "CAOyBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pRkjCHqKoFZiqVbDY-3hgw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACggnEXT4fd_WKeR1cE-hlLelCQAAAAAACgwKWXT4fd_WKeR1cE-hlLelCQAAAAAACgSxf", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xFHH2tMDnbWLZHLGtCUC2w"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCYyXT4fd_WKeR1cE-hlLelCQAAAAAAEOC7XXT4fd_WKeR1cE-hlLelCQAAAAAACwzmVXT4fd_WKeR1cE-hlLelCQAAAAAACjI5eXT4fd_WKeR1cE-hlLelCQAAAAAACgUmmXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdAv", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VVLBSGTuYWH3O356lNUySg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAABHav", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GQHZ33M2r9CWZs0ylfnGiw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYwsEP3PfgbWsvPc4Y_rpLYQAAAAAAAAAEbxUfVnyBZI_pROsv4HjqngAAAAAAAAAQku9JPnt9w-bpii9tERrqJQAAAAAAAAAW2CjidhF2o1l9AQQZ7O2_8wAAAAAAAAAVAmTcFForv1r91KDhJjsuQQAAAAAAAADdUVlIDr_FMx_kZCYsc8A86AAAAAAAAAAQ8T0AfTas4UaJM-evU8y7oQAAAAAAAAAU_zDk_N7NUcNRTqIuzYKxDgAAAAAAAAAgobA_YN1BhcTIsrqf5XOlGQAAAAAAAAAAO29IY8DvMWbkQBgldupHTQAAAAAAAAAMBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAASNDzWiYDmLZi_Z1ZVETLoAAAAAAAil1RSNDzWiYDmLZi_Z1ZVETLoAAAAAAAisz6SNDzWiYDmLZi_Z1ZVETLoAAAAAAA7BXiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAViB1", "types": "CAMTBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-EkvDjA94Zr1iIohgty7mQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf9o", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ORYJnd66MJOP1pD9p0bgYQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPRzKZhPihKQuVieebT-nApgAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_hqXNzEhstHfsC9RzpUliJAAAAAAAAAAI6kGFmWTpr-Q8AP6IAJSbNAAAAAAAAAAlAyTG-N8jfL9IQkfGrftthQAAAAAAAABMC8QdgwgSkcJQ2t5gTDXpxQAAAAAAAABG", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "H0rCzOrKLVxIax6VmWoTig"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHiCEgtQ4kMk_MBWrPUAFqVnYywAAAAADHiVygtQ4kMk_MBWrPUAFqVnYywAAAAADHdkwgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4V0gtQ4kMk_MBWrPUAFqVnYywAAAAACG15LgtQ4kMk_MBWrPUAFqVnYywAAAAACG2UHgtQ4kMk_MBWrPUAFqVnYywAAAAACG2ZKgtQ4kMk_MBWrPUAFqVnYywAAAAABtP4w", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YC25zlLJYeBTwotVPhLafg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAAAWbYqQKQVuynaJd6xwXcCprgAAAAAAAADg1oyY5_H1XDxnqxtQutVBSwAAAAAAAAAE7LziU26eINk4gGAzQhjzRAAAAAAAAAAhednam-wfOejL7SBt7Wl1oQAAAAAAAAAjPemEHqTP_7PVbNCzQt-XlAAAAAAAAAAMDZvlF3IdU-9TjIbcA47GUgAAAAAAAAABcuz7PAFLw8DoVVSTVsTZvwAAAAAAAAAEOlb164JexhSMm0UtBL_VygAAAAAAAAAEmIhHJLRWLV08bvGOk_MaUQAAAAAAAAABAsYLPOMVTEJOeDxuyLY7KQAAAAAAAAAUX9lpa9TN84k-aLBSFJ8EgQAAAAAAAAAHMkmisheVP0DaTeF1Tgq6BwAAAAAAAAAVkrGbMu8JHiKkyENUYIKBywAAAAAAAABnhCDtT-9vDXD-e8HuC9915wAAAAAAAAA4GP9DcZgvFsVU-FrimfbKfQAAAAAAAAAJ4X1D0bE8dXWnBHefwzL1KgAAAAAAAACMuC86pFXXnBLCj6eRRljPDwAAAAAAAACENc9gj1rv2NerZVTmjxTx9AAAAAAAAACGnQWGdRxvqVjwlLmQWH1PhwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAHCKeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARhG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpUUbK4uezrplMLlSw0h87XfgAAAAAABnsXUbK4uezrplMLlSw0h87XfgAAAAAABngO6tVKI4mSYDEJ-ABAIpYXcgAAAAAANbNN6tVKI4mSYDEJ-ABAIpYXcgAAAAAANbJX6tVKI4mSYDEJ-ABAIpYXcgAAAAAANcyB6tVKI4mSYDEJ-ABAIpYXcgAAAAAANcaV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIcsy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIcD66tVKI4mSYDEJ-ABAIpYXcgAAAAAAIZuJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKQhJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ5Qy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ4C76tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ0CJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYK2", "types": "CAMyBQIDFQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "D17V2ZvopmhLBd7dZ3Y1BA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAacL2", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gJQSsgSapsp92rjPF1WFiQ"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACRuzKgtQ4kMk_MBWrPUAFqVnYywAAAAACRvAEgtQ4kMk_MBWrPUAFqVnYywAAAAACRvT8gtQ4kMk_MBWrPUAFqVnYywAAAAACMCnBgtQ4kMk_MBWrPUAFqVnYywAAAAACbQAkgtQ4kMk_MBWrPUAFqVnYywAAAAACbQYrgtQ4kMk_MBWrPUAFqVnYywAAAAACbM7NgtQ4kMk_MBWrPUAFqVnYywAAAAACbMVkgtQ4kMk_MBWrPUAFqVnYywAAAAACbLgsgtQ4kMk_MBWrPUAFqVnYywAAAAACa8u9gtQ4kMk_MBWrPUAFqVnYywAAAAACa76dgtQ4kMk_MBWrPUAFqVnYywAAAAACbFcJ", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "P3ialIWlnxijlxjtEz_ZOw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBOm", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qUy-ynHNFuJ7a24qIM4sMQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wsGXT4fd_WKeR1cE-hlLelCQAAAAAACgaJK", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dRBdj6fqBaNFs9qEBG9D-A"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACXVSALBRPvgHpUWKmpUo1khAAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAO_BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_8l4R1w8OTMW19KvGaUFKw"}} -{"Stacktrace": {"frame": {"ids": "R_3RsDYccfUxjNYYah3JZgAAAAAAEhYe-IlGUwajicqSE5-hS5VYigAAAAAAAHbaSZxl-YF9wOaedogsBMtvRAAAAAAAGQAGSZxl-YF9wOaedogsBMtvRAAAAAAAGQBRSZxl-YF9wOaedogsBMtvRAAAAAAAD9N_SZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2CSSZxl-YF9wOaedogsBMtvRAAAAAAADlvOSZxl-YF9wOaedogsBMtvRAAAAAAAFyKzSZxl-YF9wOaedogsBMtvRAAAAAAAFry5SZxl-YF9wOaedogsBMtvRAAAAAAADfzpSZxl-YF9wOaedogsBMtvRAAAAAAABSh3", "types": "KQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nobPGa726Uz_QIRAEzxZhg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAGvN0nOeOJdjggSFx_cpb47egAAAAAAAAAV4vwWTuaA5W0Uq7WSODTSAQAAAAAAAAB8mm7pA8Vo6frfLprU_GjPaQAAAAAAAACREbDp5Ji3y8uTKzXL0h4-JQAAAAAAAAB8dJZnxxfSj1TBzD3FyyfeDQAAAAAAAAAOArz1MMWCC2fkAl6FCL43rAAAAAAAAABQnHKyvd8kdc_8d3u5YjO8iQAAAAAAAAAFhHI8fycCSE9gTrpxwlqNFAAAAAAAAAAELV9G5ZxtEfojbVKjeQ9ZFAAAAAAAAAAEOuyr9JMrulJxBnFXlkNTeAAAAAAAAAAA", "types": "CAMSBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WRL9yLuHTV7ynk4o7WuvDw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxjVcEvvhuguaGYCmGWrnWRz1QAAAAACEN8ucEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEMlr", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PeUu-CO8oH7bDpiXW5er7g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAE_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYcJ5VgsZvSbEBF2_k2qcfnAAAAAAAAAALML0pN8-bI2jezXitVRzNNgAAAAAAAAAe3APbfJs5SvbH_F9r5lo_3wAAAAAAAAAFfnFonGQxpm_e6wtqJ2HwRwAAAAAAAAAEYM_gl0OeNbTAtY8GRC8UVgAAAAAAAACbTdvyEkBALxwDoycOnD-RjgAAAAAAAABkYM_gl0OeNbTAtY8GRC8UVgAAAAAAAACbTdvyEkBALxwDoycOnD-RjgAAAAAAAAABQ0ZhGVGRXyXDgoFbVxRbBAAAAAAAAAAECSQIcg5qzfHUGZiT4d9R6wAAAAAAAAABQR0Rwo9WQpPJ5JxFAcpyCgAAAAAAAAAIBSGYbOS21g5XOXq-oh30UwAAAAAAAAAHJE27ij9kev0kcTbJ4XEAFAAAAAAAAAAm5WPbf-FG-SOzFOVzdJD5owAAAAAAAAAGn89kGiBdFucX6T4kdjXe_gAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAASNDzWiYDmLZi_Z1ZVETLoAAAAAAAilzy", "types": "CAMcBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EiP_fqJ5eainxyo48aQcOQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAxSQjdgx2wqIxyPHp2kbwpQQAAAAAAAABZ83-j4R13bIPFHIwJnf4UlAAAAAAAAABUhlv_ksAXxTQ2GTBcbRb2JwAAAAAAAAAy4pQmnbdVKlEPbRd3rB3jwgAAAAAAAAAUl0hCUDJE9WA5zrDYnTjz6wAAAAAAAAAA", "types": "CAMLBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nu3lDXuVVBXuKYArc5JOpg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAABbw1YwyK3qUUqndS_KOv4yZgAAAAAAAAAM9hAOHgmwWWwZTwO4K132QgAAAAAAAAAevtOmTuUGvKYiQRK_O9kHuwAAAAAAAADPi_JW0SMBS0hXEJxPvmBaaAAAAAAAAAAEOZxONNyjsCoLhus8PcYThQAAAAAAAAAA", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RNwCIBshkIMvUtAdsIyUXA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApygiinZb-VL-5X6K63nWolQAAAAAAAAAFsPRIu4G_UqOumyaMlOEsUwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAjH-M-AAeStmxxhLg98P43KwAAAAAAAAAs4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEKZ08Ruc2q8aQheuBirtfwwAAAAAAAAAAffH4BrIPq_Gg0Z8uCbD2yQAAAAAAAAAb", "types": "CAMKBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "e9NUfgKKbs-MiLMXsDbEjg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATRsvOFqC3SNzn_pRUkwD1yQAAAAAAAAAKmVg5ImyOXWtTMPsPyAoJFAAAAAAAAAADeCd7pmEC4QoP7FQm1ikosgAAAAAAAAGVws0N6fTgPArljYYAC403MwAAAAAAAABq82-lh_T5Vv0w2WAb_RJ1VgAAAAAAAAAIuF_V7TH-mukdED5BHxc90gAAAAAAAAHcC_0aTeR6JBYKeG8Yqz7OGgAAAAAAAAETljpmjACwvo52D1nC2cyFxQAAAAAAAACDvDU7E1ww8G9noy7HUAb7kQAAAAAAAABatrKFSvtlxO979VBLgP3FPAAAAAAAAAAvgs-Dp-bkHGP2EKd53eqOEgAAAAAAAAB-7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAME67ZApSKF_tBH-bAhOXBNxAAAAAAAAAF_5_zddmyO37Dam1L6ekM5pgAAAAAAAAASu25MUdzPMiaQ2283ZYctDwAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC33kqKIOk7SslvcfRGmqs1wAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAChAAnABuJtrWflPvotxCoPjQAAAAAAAAFDgM-zvldT2mxZOhlxJvpRXwAAAAAAAAAXc0OkgT3_p45M6FsCvH3WnQAAAAAAAAAVBrUFbWJQXA38LKOgrDwJigAAAAAAAABJoOz1jSRZNClfuKPM_yWNFgAAAAAAAAAG3b73aK2YxmWJY2Of38z3nwAAAAAAAAAGPm8yvojd4enECfI_5pXoCAAAAAAAAAAZR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAW40ES46dU7pwVTIhZzOkjPwAAAAAAAABV_bWrQJSE9QDRqMSbes6HHAAAAAAAAAAA", "types": "CAM5BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "E1Ij_aNOjEdQHLl7MQgu9w"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACGz1HZ3CKaS4aU08RhYA19y5ITQAAAAACF_8yZ3CKaS4aU08RhYA19y5ITQAAAAACF_UIZ3CKaS4aU08RhYA19y5ITQAAAAABvncYZ3CKaS4aU08RhYA19y5ITQAAAAABw3oLZ3CKaS4aU08RhYA19y5ITQAAAAABzH6pZ3CKaS4aU08RhYA19y5ITQAAAAAByyDQZ3CKaS4aU08RhYA19y5ITQAAAAABwNqVZ3CKaS4aU08RhYA19y5ITQAAAAABv017Z3CKaS4aU08RhYA19y5ITQAAAAABv3T_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTih6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinDe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnJ0g6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnJsR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi08L6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi0ex6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi0dj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnNGr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAit8t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnI8b6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CwMUBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dl4T3akeu1eU8F-sCfOUww"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF353Bbxw0b5wHlGJY1WEVWAAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4bWZWPptWisqbpRDA9X8cNgAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVamhiroi9lH-AuCvUISnaLwAAAAAAAAAGQoETQaJh4hk1PJNhgxG6YQAAAAAAAACeJn0UNoyB8RODf8CSewSSrwAAAAAAAAAd4ATwOy2xX5oIgSybARkoywAAAAAAAAAFk0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB0qRvG2N9iYeFyl-3xULRJEgAAAAAAAAAe1xeqGUZm5RNvukFb2REJKQAAAAAAAAAIFtjh-A3lytsNmmUroc108AAAAAAAAAACuimFkk5UuxbH1IL630LmngAAAAAAAAAA", "types": "CANBBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UOcKR6g40j0qNVOcPsBj4A"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP6K", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6BMEwaZdEOxcFFELpK3iqA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEt6cEvvhuguaGYCmGWrnWRz1QAAAAADhBO4cEvvhuguaGYCmGWrnWRz1QAAAAAD_5NMcEvvhuguaGYCmGWrnWRz1QAAAAAD_6LEcEvvhuguaGYCmGWrnWRz1QAAAAAD_7fhcEvvhuguaGYCmGWrnWRz1QAAAAAD5t-IcEvvhuguaGYCmGWrnWRz1QAAAAAD5dhEcEvvhuguaGYCmGWrnWRz1QAAAAAD5oHNcEvvhuguaGYCmGWrnWRz1QAAAAAD5qdscEvvhuguaGYCmGWrnWRz1QAAAAAD5VLlcEvvhuguaGYCmGWrnWRz1QAAAAACGJzEcEvvhuguaGYCmGWrnWRz1QAAAAACGMs66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMR0m6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMRyc6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMRwH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAOW7N6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIfEv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIZUS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIklD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIa2e6tVKI4mSYDEJ-ABAIpYXcgAAAAAApxG16tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "DQMOBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "F4DUvBkuKPYx1hCGNzwitQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAAMlBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF8DjWuv2ON9M4hqERzLLGrwAAAAAAAAA4jl0Few0KXqirBZp0WuOd2wAAAAAAAACjsFs-DxXlXTzn3bVNvCe0KwAAAAAAAAAE", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "G0DLtHxiVxElcFIXMT-PNQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACXFDHy--PvgHpUWFquuqO7RAAAAAAAAAAA", "types": "CAOMBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g_AVql7KXMLg1O-JULbNgQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZxI", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eg4GNNub3CPns1G5g2R71w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8zO", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Jo8tWR_pkEX_X8H988Y6bA"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAADz6p2HVF-fC6bGu1PSwJc2kzOgAAAAAACHAL2HVF-fC6bGu1PSwJc2kzOgAAAAAAHHBe2HVF-fC6bGu1PSwJc2kzOgAAAAAAHEJ82HVF-fC6bGu1PSwJc2kzOgAAAAAAHEEy2HVF-fC6bGu1PSwJc2kzOgAAAAAAJcMj2HVF-fC6bGu1PSwJc2kzOgAAAAAAEKYD2HVF-fC6bGu1PSwJc2kzOgAAAAAAEKFP2HVF-fC6bGu1PSwJc2kzOgAAAAAAEI2W2HVF-fC6bGu1PSwJc2kzOgAAAAAAEIU_2HVF-fC6bGu1PSwJc2kzOgAAAAAAEJbZ2HVF-fC6bGu1PSwJc2kzOgAAAAAAEI2W2HVF-fC6bGu1PSwJc2kzOgAAAAAAEIU_2HVF-fC6bGu1PSwJc2kzOgAAAAAAEJOH2HVF-fC6bGu1PSwJc2kzOgAAAAAAHSrO2HVF-fC6bGu1PSwJc2kzOgAAAAAAHSJX2HVF-fC6bGu1PSwJc2kzOgAAAAAAEMUW2HVF-fC6bGu1PSwJc2kzOgAAAAAAEMFU", "types": "VwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "v78L_ndncKY9XP2euXU8Jg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeX2w", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aZ8clAp9paL9k-C90WPkIg"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAAKk_PL9Bd3XIiGWasJdN8trI5tgAAAAAAKiuEL9Bd3XIiGWasJdN8trI5tgAAAAAAKi83L9Bd3XIiGWasJdN8trI5tgAAAAAAKgETL9Bd3XIiGWasJdN8trI5tgAAAAAAMLrkL9Bd3XIiGWasJdN8trI5tgAAAAAANJrPL9Bd3XIiGWasJdN8trI5tgAAAAAALIWXL9Bd3XIiGWasJdN8trI5tgAAAAAALJiFL9Bd3XIiGWasJdN8trI5tgAAAAAALI7NL9Bd3XIiGWasJdN8trI5tgAAAAAALRAzL9Bd3XIiGWasJdN8trI5tgAAAAAALNrwL9Bd3XIiGWasJdN8trI5tgAAAAAAAMQF", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jgHKhfN_-iW4c9zXWgJycA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAqeSs1xpPdaQi6BA9wz10SrwAAAAAAAAA5TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABUfZfGpgZFJokP-jaeydrs0QAAAAAAAAAJjg3LdO4DNz9FsefjUG1F1gAAAAAAAAEgf6OHtxWEEYSKC5jCOpZRYwAAAAAAAADZ", "types": "CANWBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YHlz2_RUb_dJDnbIGfEi0Q"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABBAkYxe-SHgukLEpCkawSk1QWAAAAAAABAvkYxe-SHgukLEpCkawSk1QWAAAAAAAA_IZYxe-SHgukLEpCkawSk1QWAAAAAAAA-3HYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CQMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ihAOVqchKA5mXlZP4M1IsA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAPx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABWdRMG3BjNfH2se-egabnU-QAAAAAAAAAjpv2BnGF3DU5EF7_9vBhh5wAAAAAAAAAjL-H-2xf4p7cHBKcpauzLWQAAAAAAAAAIQ5prAre2OuRCakrlnLYmSwAAAAAAAAAFpu-N4aBOZsn4VU4z7Imv8AAAAAAAAAAF9ZcPzi6i1uzjxExCGCn20AAAAAAAAAANlqnkRSi2l38NtuG1By7gSwAAAAAAAABFXLN55eJ2HplxP0Fb2YBmOQAAAAAAAAAJ_6rkq2S7o8rMRQJ9AofzJAAAAAAAAACLjwkBY0s-EHDmaMTnMHI2lgAAAAAAAAAYLLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACvqKrM4v33j8Ui9JyIz2QXDgAAAAAAAAA4ZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAAA67y5feDZCfxwthGiPIaTFFgAAAAAAAAAEajGOqPZ-j63yhkOuwDhkJwAAAAAAAAAA", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "j7OoU3oXSY3AFf-whF_CWA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfxrm08oJc5xqpM1VweLZNZwAAAAAAAAEIFyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACAE1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAACScdTS-RIJ4OkgwXwrA9jyIAAAAAAAAAA5CyxJKWhz_iFYytJsQ45E4AAAAAAAAAA6sLlgLb_29ibKij3P60tXfwAAAAAAAAAt112Fwha7UwifvTTtdUMggAAAAAAAAAAUWDifHywfLuQd8Yh-DIvScgAAAAAAAAAUPBpfn0f1eKNcXZ1C2eJmZwAAAAAAAADrY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF_V8LkuZDYhsRC_uInyycHQAAAAAAAAAgMsMB9yoGg6PjkQwG5yyoCwAAAAAAAAAZT5hiiNMlc9RKe2ptBi1-rgAAAAAAAAEMPwh6hSQTQ9v1UQs62plj-AAAAAAAAAAFRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFBlwqo9fDZkc_G71NBmK4kwAAAAAAAAAMKx8_JifYLsyt8nlVLT1q4gAAAAAAAAAGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFhzWLY32HB40pGQwoJomtfAAAAAAAAAAQuMbV4kgTfjojzHhdWOM7pAAAAAAAAAAXRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF4as0IgurEXJei_r6XmrPIAAAAAAAAAAU7dZbzLINeewhS7u7jNnbxwAAAAAAAABBR43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3RsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFrY7n4rCVF7rtGQSMR7sNcQAAAAAAAAAQ3xSivts4s-tBo1MMFQEENgAAAAAAAAAvfEf2U4TLcZ6jkTz3kXzr0AAAAAAAAAAkjNbJJD0szUDlnbhrWsIGkAAAAAAAAABE4ZG6-YGelmJ-HvYGGP11fAAAAAAAAABaPJlREaStQ9MDsMhq8CWS4AAAAAAAAAAY9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQmUBFmueS4MaOyw0OD29yQAAAAAAAAAUuj5fRTSdGJxlX0gfzctOogAAAAAAAAA_3G7WvpXqPGO04rbAV9CJtQAAAAAAAAAlHr7DaUVBf6Mvou5VCDAFbQAAAAAAAAApRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFZRv6R5-Wsj1i57MVMaKXtQAAAAAAAAAMM_MfJrZLrX3P0R0dWrP49AAAAAAAAAALRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF41q7-Ld-6XK0fcC0fV9B7QAAAAAAAAAU-TcRbQGxOxYw9x9ta5Q4zwAAAAAAAAAheufT8zCegZUSBK09BAzk9wAAAAAAAAAOlrNuGOqZ1W2gPcoSPK5FRwAAAAAAAACdj-4Fo7n5WhAD53e6_il1rgAAAAAAAAAQHZ3TvYLRG36_hU-jHCIzTQAAAAAAAAAcCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAEkV6TzGOHAAtubwqgXU0dkAAAAAAAAAAzqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYwzvWQyXT6P841Whzz8TSaAAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFFNGo1JfG2H2fZIcfqeCsfAAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDhfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJNoWLrp2Hx2HDcioYyHlIIwAAAAAAAAAkoIYS8oKywxk33PzxrExveAAAAAAAAAAZETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASETEs_vJj_-q4WFpNiG_LRQAAAAAAAABDs4lxyv29UjBRbk4Egon88gAAAAAAAAAHrV1JNblxRI5fLicyinWLbQAAAAAAAAANAzxlhtMMySYrabepp4O8EgAAAAAAAABMrmSs41XtF0_135XyexZ4IQAAAAAAAAAEoIbcZroK0mbxpVqmuMaywgAAAAAAAABtRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFVd9q-B75g7LzoHcNvuGt6AAAAAAAAAAYxo4rC3y2CcS6B7wZyQHREAAAAAAAAADPuUv_MevrS4tZNCvcXT5vlwAAAAAAAAE5d89ErkgwhH3MyjmF-37sXAAAAAAAAAAGCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAEdZJqLbnZoLLAQE84W2w3uwAAAAAAAAAYlRDjosBiqg-kA8rYcnFDJQAAAAAAAAAYRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFvvyTgrU_6muGYvZMzPOoMgAAAAAAAAAU2hXrudkwCa5MZh2RKc2FvwAAAAAAAABotfylNEM_JkJvBScOJPNFaAAAAAAAAABObLOY0QAUT1PFyS4m6DuvzQAAAAAAAADNoVgqesHjGm-3vT2l3h9tegAAAAAAAAAm5wvg9HwVtMHbuTIgL8Ac7QAAAAAAAAAL1ZGGfnUIDt7Cq-tNI5WEzwAAAAAAAAC6NAhjTsNYxdMXNJqlZxlO_gAAAAAAAABeoqFEu_d-dr_U6eLuARTQOQAAAAAAAABkY9mQUdyp86jQhHqOid6GcwAAAAAAAABFbFNBCgHVi2ZK2yGNK4LXZgAAAAAAAAAqkQUbCsFpz_WUDuYCE46idgAAAAAAAAACsT2auOc8bc0KVm2FFBu5hgAAAAAAAAAFcFp_kIOB2k1JeprfG7gPIAAAAAAAAAAJx2xX1866WR_d0Ce6QrSS_gAAAAAAAAAG4TKh8a7hNrhFLDYE3mR1_gAAAAAAAAAwgyQVNj6p9QSSg0Kib22CpQAAAAAAAABEV9-sS4P9BRPJVTYjJXTZmAAAAAAAAAAFsZpPWBZ2sVOy9PmQsNzK_AAAAAAAAAAA", "types": "CAPpBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vSHgan70C0hkYZy36mxqBg"}} -{"Stacktrace": {"frame": {"ids": "R_3RsDYccfUxjNYYah3JZgAAAAAAEhYe-IlGUwajicqSE5-hS5VYigAAAAAAAHbaSZxl-YF9wOaedogsBMtvRAAAAAAAGQAGSZxl-YF9wOaedogsBMtvRAAAAAAAGQBRSZxl-YF9wOaedogsBMtvRAAAAAAAD9N_SZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAADz6pSZxl-YF9wOaedogsBMtvRAAAAAAAE744R_3RsDYccfUxjNYYah3JZgAAAAAAEPck6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALka76tVKI4mSYDEJ-ABAIpYXcgAAAAAALiOf", "types": "JgMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "h15-mwdtFf1_Tp_C0u_H4g"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADHmXqXT4fd_WKeR1cE-hlLelCQAAAAAADHmkkXT4fd_WKeR1cE-hlLelCQAAAAAADHm4cXT4fd_WKeR1cE-hlLelCQAAAAAADB6QhXT4fd_WKeR1cE-hlLelCQAAAAAADQm0EXT4fd_WKeR1cE-hlLelCQAAAAAADQmurXT4fd_WKeR1cE-hlLelCQAAAAAAC0u6GXT4fd_WKeR1cE-hlLelCQAAAAAAC0yjyXT4fd_WKeR1cE-hlLelCQAAAAAAC0yEqXT4fd_WKeR1cE-hlLelCQAAAAAAC0yQGXT4fd_WKeR1cE-hlLelCQAAAAAACq9XQXT4fd_WKeR1cE-hlLelCQAAAAAACrw0YXT4fd_WKeR1cE-hlLelCQAAAAAACq_Y3XT4fd_WKeR1cE-hlLelCQAAAAAACrEaEXT4fd_WKeR1cE-hlLelCQAAAAAACrHKvXT4fd_WKeR1cE-hlLelCQAAAAAACpxsFXT4fd_WKeR1cE-hlLelCQAAAAAACpxP0XT4fd_WKeR1cE-hlLelCQAAAAAACpxCHXT4fd_WKeR1cE-hlLelCQAAAAAACp0JQXT4fd_WKeR1cE-hlLelCQAAAAAACpz60XT4fd_WKeR1cE-hlLelCQAAAAAACm_d4XT4fd_WKeR1cE-hlLelCQAAAAAACnLWRXT4fd_WKeR1cE-hlLelCQAAAAAACnNMkXT4fd_WKeR1cE-hlLelCQAAAAAACnGpG", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PlNxGYc1KQXo_krOBCj9YQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyFRZ3CKaS4aU08RhYA19y5ITQAAAAABtxAKZ3CKaS4aU08RhYA19y5ITQAAAAABt4QoZ3CKaS4aU08RhYA19y5ITQAAAAABt4LI", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IngmyqAhSupCs-_uuEXPtQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAACFVesl-TqkdasS6qMPfjcnngAAAAAAAABVr69bqYctcqbyJiTyvmojFAAAAAAAAAAJVoQ5AJHHG4Z_KZgZidNsZQAAAAAAAAAC3QM5OJWdXJOtFw8erEL5XwAAAAAAAAAN87egngtXFm0bIUCnQcIALwAAAAAAAAAHDNMSP4UcXImUndf71pg8FQAAAAAAAABh3J9sxS-e4x4-VIIgWjujUAAAAAAAAACqk9qlBuUUuQaRGtKxyO_pagAAAAAAAAAEF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdvCYukS89lPAo0Tgs1462rgAAAAAAAAAIQF0gmeIjjmTZUhdMFgr_4AAAAAAAAAAFSZIzrSBBPBO2zJj0aqaKggAAAAAAAAD_AOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAJMTTvJ5_z-0po5hbnYEq-wrAAAAAAAAAAwy_GIpaxCX5IFnS0F_BXM3wAAAAAAAACNSl8QmNBWhfPFBDZ-zT5cegAAAAAAAAAFb3S0id5hdpi1OvBSFMzajQAAAAAAAAAC5sUnLSuwRmrBaZh_rdcc6AAAAAAAAABxZ6kGBA_SCop1OktUb4lGHgAAAAAAAAB_smjp5sI7cy9_VZ8AgeA6PwAAAAAAAAAKWJQwXsMRv_RvORZli-UqwwAAAAAAAAAO2lqT74CaceoLHVL-Vgll-wAAAAAAAAApr9cOIG3luKhozeJLjvBOSQAAAAAAAAAEPTytLEfKUZaVfTsnhaM7GgAAAAAAAAAu-SO86A4OCGXvMKT2cG5TXQAAAAAAAAHxiERjY1emNpBsfKAZbsHzfQAAAAAAAAAJ9LmRws9vwhydmyx1d6VkywAAAAAAAAABLzfLWbRa1RV_hc6RWQwjdQAAAAAAAAAEt9JKV-3NF5fx1acjPqrg_wAAAAAAAAADrAKcp6j6e0fNatBM1v2_fQAAAAAAAAAP", "types": "CAMyBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hD5xCbVnNYVsLiq_B3NCDw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAHX_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAgAlyGmh1B04rpTwKhuQi5WgAAAAAAAAAA", "types": "CAOGBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Zs0wdHAUro9OZHb7uDVC0A"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQJvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACeySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAYh-mcFcSefWaXpPLGLAmk8gAAAAAAAADYzXY2fMPD2q8JxxSeQ4an4AAAAAAAAADb1ajhlpq_ffaY9SZwO_yFvwAAAAAAAAAMbYR0b7-vTQ0RKJD6ns3ClQAAAAAAAAAG5WRkp3UGiY89oONYWWfHqAAAAAAAAAAtidAHvTfpCa_Lill3CvLIKwAAAAAAAABUtknRVtdrp8TkRV3X6AJ-KgAAAAAAAAGx2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7j28kOyi7SuaCDi2YxjsqIQAAAAAAAAAFD-1h8rWAA4g1SDoGOMQIKAAAAAAAAAAEOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATYpbiNBYY9QiMtZyIIOk6lgAAAAAAAAAKRzTRw1F8P_UEDnCh3FvrLwAAAAAAAAAD0kEvTApZUyUYCe0u-HVo9AAAAAAAAAB9ANUDzCguopTSw91qnI0ylAAAAAAAAAAO7EHeuRz0CLtKEuoB-_zIQAAAAAAAAAAhsntjqhnPOkV1AM5VqFuL9wAAAAAAAAA8_vnxdlrLVdiyCEIVqNBMFAAAAAAAAABPyd6OSCVn-rYcvCrx8ZU3zQAAAAAAAABAo-P7WUweJOXxjcBwKXko5AAAAAAAAAAQz8yDYNMJULt1ApZ8kqZamAAAAAAAAAAGMMAujfe9xzktoHyDqw_cGgAAAAAAAAAGKGVSBMVyriI5T93UZw1WLgAAAAAAAAAE_qkVJm0NxTF9ak3kQe9veQAAAAAAAABazzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIGTDz5BEJ5HMljeo0WMABIQAAAAAAAAAg06W-_gYsVxvlZRgxvL-PiAAAAAAAAAEOcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIQVeLj_oPnEjl_jKTv8aQqAAAAAAAAAAlcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIMgnzgTUwSrjft9SA3YZTtAAAAAAAAAA0pTQwlw111ksRO8rVWFQy5wAAAAAAAAAuVKeIi2MKWzeJ-DxWf1HkPQAAAAAAAABnZr-QUGQ5d7tVx5lbmJB5XAAAAAAAAACOpBAXMFgFarqt_e84PodhnAAAAAAAAAAUtIoSY_1vT_j29F717EmR3AAAAAAAAAAPRZ01NrWKTMDuXelOk2KnKQAAAAAAAAA168iZXv_8xxb53ICXrvQepAAAAAAAAAGhCR_orhXYgPjlsF3bAh1bcAAAAAAAAAAQXoQBAZDyQM5EalVK0DT7vwAAAAAAAABIHHvO0O_M7qxq_PkVq5p74wAAAAAAAAHmtKRI47gaUATre6hVOVRyHwAAAAAAAABCmGc5SCx8bcB0yyOsBwmj6QAAAAAAAABwU3zFVJqAk_6RIGxkrHaHegAAAAAAAADYGIy5Mg_ksRG2OUR8ttDU2wAAAAAAAABA5VZIXKdThz-hZwdLu0KVfwAAAAAAAAAKyzF6hkXAWj2zsycLYYGV0AAAAAAAAABmCBEprBuB4AK7YgJytOvjqwAAAAAAAAAA", "types": "CANjBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7NvWJH6Vo-unjJv4pudacA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAe", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5PXpBtV4iL5Ov3ZyHXzrqQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeTryWt-l_RGzsQHaX4nMucAAAAAAAAAAA", "types": "CAMvBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DOr2yspH9ybCB1ZnzV8BJA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7mz8sTGLCNH21piOrMPoln5uBQAAAAAA6l_bsTGLCNH21piOrMPoln5uBQAAAAAA4kMq", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3Xg3Upyi105Wyx-NTECB2w"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF9Y7z5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF78Kz5k14PsCcDvFyUC1kmlV3QAAAAABFxdxz5k14PsCcDvFyUC1kmlV3QAAAAABGnbP6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuZy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMs6N6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtKD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtBC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN-Mt", "types": "BgMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jbue-qNayNZ_fIEQln1nAg"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXDNgtQ4kMk_MBWrPUAFqVnYywAAAAABqaCzgtQ4kMk_MBWrPUAFqVnYywAAAAABqagR", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7i3Cx4zEv0tNGbpsMJIrtA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAANSF3u75PFaKMThRw4BoUVwCAAAAAAAAAA0IkSo5taWM8U71y2hDxxHngAAAAAAAAA1lBsFTWSf77aYVb9HHr9tcQAAAAAAAAAFlBsFTWSf77aYVb9HHr9tcQAAAAAAAAAFewU9RfzsPed7JATT94aw-wAAAAAAAAApfZ3COijH60wdDIIVUpSInQAAAAAAAAAIx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAAIIWb6KEDEet9GjRbj5wCi1gAAAAAAAAAKk2Vd7cm7l6vxlSy0gXOaPwAAAAAAAACaZJjsD24vVeIB2Mk_BbDMOgAAAAAAAAAB1XsKZz2qQFSDIhWfdGBZ5wAAAAAAAAAA", "types": "CAOOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Dqkoz37L8v8ZGKH2dg08IA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5WiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbXAL0Ge_HcVwkBrUXRRiLwAAAAAAAAAHfyGIqAgDCWT0HWMDhvlu5QAAAAAAAACVrg_W9Iz5X4vBEiSyGYl41QAAAAAAAABeOVbzts78rozw73k3kwZElwAAAAAAAAAJJnSEm3EzEl71vBewWd-MegAAAAAAAAALh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAB3emR3wAczdneyIcsgLKFpQAAAAAAAAAQ5mPZ7hP04mAof7_xhihCAwAAAAAAAABV5utt2dQ8HKrTepHdNpprxQAAAAAAAADL6XNnO9SeJ40ZM7baZ84oEgAAAAAAAABVLll_E1k3FfR43EQBXwU1dgAAAAAAAAAIrywk-6b8WKiuckZ62dxSSwAAAAAAAAAHiX3hg20o3ZB-dQ1wA5bFxgAAAAAAAAAEomA88yQfT91566xoyEY7sAAAAAAAAAAcrrWuYAakx0mSDLYXP-NBMgAAAAAAAAABK-xWzbOpXq--Qycbjj-mDwAAAAAAAAA3L1OydAndq8IT7nNSF3yNbAAAAAAAAAAkewU9RfzsPed7JATT94aw-wAAAAAAAAApfZ3COijH60wdDIIVUpSInQAAAAAAAAAIx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAOPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMzzqjB_amR59Lv13Nhle_NwbwAAAAAAENS56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpAY6tVKI4mSYDEJ-ABAIpYXcgAAAAAAF0Ia", "types": "CAMwBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "whLFrJ0C3L5ID9FEmIKmhg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFkuXcEvvhuguaGYCmGWrnWRz1QAAAAACEomEcEvvhuguaGYCmGWrnWRz1QAAAAACEZRA", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ql-7Y2YW7YrNN7ni_2nHhA"}} -{"Stacktrace": {"frame": {"ids": "R_3RsDYccfUxjNYYah3JZgAAAAAAEhYe-IlGUwajicqSE5-hS5VYigAAAAAAAHbaSZxl-YF9wOaedogsBMtvRAAAAAAAGQAGSZxl-YF9wOaedogsBMtvRAAAAAAAGQBRSZxl-YF9wOaedogsBMtvRAAAAAAAD9N_SZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAADz6pSZxl-YF9wOaedogsBMtvRAAAAAAAFIL9", "types": "JQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NQzAAYItWlUR8Wx0iQghsQ"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmx9", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mPA9NkH3378cVYxn3yS3sw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYf9tQ-FDBLtIC3ufWwyt_SQAAAAAAAAALt1J8MwohlN0N8mOD0D4M9AAAAAAAAAAI931sEtpcdsHnD8gPYzKXOAAAAAAAAAABMZMTsWUUQKF_r8ij_JAjmAAAAAAAAAAMO1v_wbuglNek1zs-lCG90QAAAAAAAAAGbeD_C7F44xTKzF8_Am3s6AAAAAAAAAADybCcUk4-fZcYJk9ygl24tgAAAAAAAAADo_VxHugz7KdIpjN6xJI0VgAAAAAAAAADPNrR2YKoj7goxCjWQi1QhgAAAAAAAACJiPBQQV_bSctL9bFqTIgQ4QAAAAAAAADMDXdMeaVdTCEAlfe2D9urYgAAAAAAAAA90p6SYUMKyLYCZKj0a_EWHwAAAAAAAAAMQYopm_LA9LUGGlvpkTDxCgAAAAAAAADfHhsNl7wscjEZJCN3HPRqcQAAAAAAAAAGhBjrA2c_oiTJGPK0-zWQDgAAAAAAAAGgn2ZG7JVunRud1kIvefQWCAAAAAAAAAAi05ZcXiWsKDqabttSzfcYwgAAAAAAAAALy0h14uYNgXVbjfNG4dRx0gAAAAAAAAAUdVy9F2EzSTySFtvhDROVAQAAAAAAAAAE0zR9Q82k-qokLA4At5aHZgAAAAAAAAAE4QIIx_RTI-U6Jemfp5_ozQAAAAAAAAAFMNBUdOvdRoUWx-4HjbY3TgAAAAAAAAAPSNDzWiYDmLZi_Z1ZVETLoAAAAAAAxSoA", "types": "CAMcBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GUmcuPH6_akbAJCgr_HMZQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAArGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAUd2lcY0prSIbhkAi5ECyvfAAAAAAAAAABtRaKCDne9fKuTHuPgmdhjQAAAAAAAAABVg8LgIqDa3ypsQ0qV00ZvAAAAAAAAAABLH5Rq2KMtk8z3fPDJ8fY-QAAAAAAAAABgfC602LFbKzsHJ9-hYzAWgAAAAAAAACe", "types": "CANEBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rdrM64mgJOBslxLrMQ7wSw"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbzqZ3CKaS4aU08RhYA19y5ITQAAAAADKUQHZ3CKaS4aU08RhYA19y5ITQAAAAADBkxrZ3CKaS4aU08RhYA19y5ITQAAAAAB0Hr7Z3CKaS4aU08RhYA19y5ITQAAAAABz7D8Z3CKaS4aU08RhYA19y5ITQAAAAABz7ZTZ3CKaS4aU08RhYA19y5ITQAAAAAB0J-lZ3CKaS4aU08RhYA19y5ITQAAAAABz_LSZ3CKaS4aU08RhYA19y5ITQAAAAAB0J2gZ3CKaS4aU08RhYA19y5ITQAAAAABz943Z3CKaS4aU08RhYA19y5ITQAAAAAB0J2gZ3CKaS4aU08RhYA19y5ITQAAAAABz943Z3CKaS4aU08RhYA19y5ITQAAAAAB0J4lZ3CKaS4aU08RhYA19y5ITQAAAAABz-KM", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cO9htV71m7HNbsVXnS974g"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChy6gXT4fd_WKeR1cE-hlLelCQAAAAAAFRYL03aS07d9PG4lc4UzuBbVWzQAAAAAADE19rtOWfs-RaxXWHIPyRB9RAAAAAAAAAGFS3aS07d9PG4lc4UzuBbVWzQAAAAAABuyj3aS07d9PG4lc4UzuBbVWzQAAAAAAB7TU", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "746hwfph0Dw2g_3bePUkEg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAAAzr8jPkIagwkcKu3VFH_5eFQAAAAAAAAAFfwrSDgHrTXpAEmJ4bHy8MwAAAAAAAAATTq2A_ghNgr4Sgbd4ToSeBgAAAAAAAAApOVKwi55Br_WT9fxVyQu6PgAAAAAAAAAe2YGkbnIdlKIhbsTbMV-kWAAAAAAAAAACz-hu6cNT1Ftqgnka76QdWAAAAAAAAAAC8RQyRW_fqLsoJLvr6Yk7xQAAAAAAAABzE412ubC6vIkVnhrQF2Kv0QAAAAAAAAATX_KArw2lYZFY-9kCvtv9JwAAAAAAAADqIiB8cBaeqjsuHSJhy6znXQAAAAAAAAACemnA4GIO594kGgGOGkqRhgAAAAAAAAA7u4vqxWKlKO7QUS6KhfhZ-wAAAAAAAABMoms6Ttrfu1M4pZRKD0ZUGAAAAAAAAABDWRcdI0lls5vzaErIK0sorwAAAAAAAAAIvuG4cc3LDusa6uaj6q__HgAAAAAAAAAFgvBg_Q7r2IbP7JxDpdNETQAAAAAAAAAJM-l0IodVUrBpenUEnOhL1QAAAAAAAAAFu78SWYWMWORWmstqR3xV1QAAAAAAAAAFISo198vJQrYNdynfqzotagAAAAAAAAACSU7fNzMC3NazhQDT5xGXYgAAAAAAAAAJjgYSmvlKH4a0ntABTu16dwAAAAAAAAAdkcag7NiY8ksaOVZ_fEj-cwAAAAAAAAAJrKrxC_ObXyDlTrCXeVg8QAAAAAAAAAAi8fSXRZQuBUsi-VDBtsz_gQAAAAAAAABl", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kIp3c6lhOmVwD-TdMXCwzw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYf9tQ-FDBLtIC3ufWwyt_SQAAAAAAAAALt1J8MwohlN0N8mOD0D4M9AAAAAAAAAAI931sEtpcdsHnD8gPYzKXOAAAAAAAAAABMZMTsWUUQKF_r8ij_JAjmAAAAAAAAAAMO1v_wbuglNek1zs-lCG90QAAAAAAAAAGbeD_C7F44xTKzF8_Am3s6AAAAAAAAAADybCcUk4-fZcYJk9ygl24tgAAAAAAAAADo_VxHugz7KdIpjN6xJI0VgAAAAAAAAADPNrR2YKoj7goxCjWQi1QhgAAAAAAAAC7N8DqgWjeLIV_lXyhwD6riAAAAAAAAAAchQjSp-1ZnEm-DqAW6B75BQAAAAAAAAJBkrKfc-Q3vA_v935GzjuxngAAAAAAAAAQxzBkQCtjYmztrrm3hxqn5AAAAAAAAAAXTsx0vqyY9P-yze5xYzq4cQAAAAAAAADaTsx0vqyY9P-yze5xYzq4cQAAAAAAAADaTsx0vqyY9P-yze5xYzq4cQAAAAAAAADaTsx0vqyY9P-yze5xYzq4cQAAAAAAAAhp", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XFCYP0M0hh6g3AUrorpNSQ"}} -{"Stacktrace": {"frame": {"ids": "R_3RsDYccfUxjNYYah3JZgAAAAAAEhYe-IlGUwajicqSE5-hS5VYigAAAAAAAHbaSZxl-YF9wOaedogsBMtvRAAAAAAAGQAGSZxl-YF9wOaedogsBMtvRAAAAAAAGQBRSZxl-YF9wOaedogsBMtvRAAAAAAAD9N_SZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD52aSZxl-YF9wOaedogsBMtvRAAAAAAADaXbSZxl-YF9wOaedogsBMtvRAAAAAAAEKw-", "types": "JgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7lZc2qqwTOxuwAsl_tPb5w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZvuSNDzWiYDmLZi_Z1ZVETLoAAAAAAAVHMs", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pFOpEBwKNMGOTnHzKtdQnQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYwsEP3PfgbWsvPc4Y_rpLYQAAAAAAAAAEbxUfVnyBZI_pROsv4HjqngAAAAAAAAAQku9JPnt9w-bpii9tERrqJQAAAAAAAAAW2CjidhF2o1l9AQQZ7O2_8wAAAAAAAAAVAmTcFForv1r91KDhJjsuQQAAAAAAAADdUVlIDr_FMx_kZCYsc8A86AAAAAAAAAAQ8T0AfTas4UaJM-evU8y7oQAAAAAAAAAU_zDk_N7NUcNRTqIuzYKxDgAAAAAAAAAgobA_YN1BhcTIsrqf5XOlGQAAAAAAAAAEfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdaMzea5YF1p9DWzFcmq3VzwAAAAAAAAAQnbsBVHmpV2luDgffbdJNFAAAAAAAAAAWcRoGFhrzTt6STyxXzS_QFgAAAAAAAACzs7hdxBbMHWQxy2GABBYaPQAAAAAAAAAJF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAd9zPkZE4RJJmPlROxnxkxmwAAAAAAAAAE9P399qv1PUm-fcjEeECPlgAAAAAAAAABmfgswW5tnP--5haDnNTmnwAAAAAAAAAIudgPCGqbKhChfal6WK47OgAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAD6WwLAq-OugYSy1Dj8k1-JewAAAAAAAAAEWWjCfoHiLs6x77qSQOVJgQAAAAAAAAADnKhcql1SQ7g-aNYXxz6k1AAAAAAAAACUKFMAbRw5zGuXuHUM7MdcgAAAAAAAAACHZqFdsc4dQ8tQzsRqUhERGQAAAAAAAAAGIXplr-54s0Yjdov93QB7eQAAAAAAAAAFvseJX0sppKrh3ZPWhmhGrwAAAAAAAAATBeJWXrhFEHEEfJyzcHF3mgAAAAAAAABsqX0rVEaAW5zi3bvcEZHkUgAAAAAAAAAxx0M0pE8Yl1KsW-gNW5M8PwAAAAAAAACAJGwOKolTKq5VlZEF0AhOwwAAAAAAAADh-h8BLQ0xRkdP3SzRSIk95QAAAAAAAAAEd77brrT5P2m_vg39NwavWwAAAAAAAADcZVmO-9I5h4LLobQ2tFZNqwAAAAAAAAAKtl7UGKsJ7PvO4sjn1Sys6gAAAAAAAAACsIwqahRkjtW0nY-bGfyZwwAAAAAAAAAC_zsJy5NbZstsQgE6U3tzVQAAAAAAAAAYUSMjRBbrrLhAC7pTy9H_CQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAD4Dr8MgtAQr1KQWI51wjAwAAAAAAASmgSNDzWiYDmLZi_Z1ZVETLoAAAAAAAicewSNDzWiYDmLZi_Z1ZVETLoAAAAAAAf4rySNDzWiYDmLZi_Z1ZVETLoAAAAAAAf4QySNDzWiYDmLZi_Z1ZVETLoAAAAAAAf7eMSNDzWiYDmLZi_Z1ZVETLoAAAAAAAf7A0SNDzWiYDmLZi_Z1ZVETLoAAAAAAAf6qX", "types": "CAM9BQcD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "W_4xBcIc_f_s9tU-JNOc3A"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN4uo", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "57Fil5UcCT4QMA8PK7lldw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAn2Kue-E0ocGjlBrYARCI6iAAAAAAAAAAEQNlOUvE0ZxUnjZSRXtro_gAAAAAAAACjDXs2Dcw8wgLsBDwGazSZXwAAAAAAAAAM7NLXRYAsb_z9eb6-ioJ6zAAAAAAAAAAYxyC-vyzgsDe_VuNG-DhfIQAAAAAAAAA9fe69QX5O_EOqLGiPEFzIuwAAAAAAAAGB4PqH4j7efYkP_yazDFqQFwAAAAAAAAABOzFeuLNSMVWvCPrgnxwbuAAAAAAAAAFW5uGB4PbBFcS_c1Q_L9s5wgAAAAAAAAARfe69QX5O_EOqLGiPEFzIuwAAAAAAAAGB4PqH4j7efYkP_yazDFqQFwAAAAAAAAABvBoVUlhIFzzElOeQU4CcwgAAAAAAAAAdI38BEvuOR5ZIj0xVCqeBhwAAAAAAAAC6dbv2Og8KrWCsZroHwhSYbAAAAAAAAAAFUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAABIFQ63StodoZrGlz6gu_xQwAAAAAAAAAYS9C2chEMFxFBqLj7GKaT6gAAAAAAAAACpZtO5swbmBuXsFE_uaxkVgAAAAAAAAABcidxU1IQprySS7Fh7255fAAAAAAAAAAC1JcixA9b936fLO2mJkSSxAAAAAAAAAAa9MJISbwzA5r2YICNkdXifQAAAAAAAAAFGfR-G0A6W4tT6AihrYq3cQAAAAAAAAAIdc4yAbUO9lpCF1fQzJ_dbQAAAAAAAAAFiPXr6f3Mf7KR5iK4gq24eAAAAAAAAABVgyVw_U5FOQ18KFg79gJcQQAAAAAAAAAim2bU0P2xZXc_YHF7mglt9gAAAAAAAAAxvTCeC5emrj-AxsrlIylNGwAAAAAAAAAL20wTwcQoP3KLWSoSTerwRwAAAAAAAABmeftXc2DfUEMZsRM-gUqJSQAAAAAAAABeJwVc2kiULj1B71utLboyHgAAAAAAAADQ_6HlhadF5t38EsWYAp9xkgAAAAAAAABidQSJSZ8UDwBhKFRr5NGLQAAAAAAAAAAYsEvz-Dobk4l0YVMnZfboUgAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAMP5HRDaDTxfL7AK376UJ7gAAAAAAAUNxYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTxeYsnZ_Lwaqr0cHEPo0D185QAAAAAAiYM-YsnZ_Lwaqr0cHEPo0D185QAAAAAAiXJm", "types": "CAMtBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ri8THh1H50J0zvIysOPcMg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlpa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN6ND6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFW5E", "types": "FAMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UAJ3qCHOXo3xE1EGVnJuHw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYCMh__DRjYW6WKuSO4E-9UAAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAB2GBJ1zKS_b9jP7AxB92tjCQAAAAAAAAAo0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFKCxCvDIXtl0ClBmM3hNiLgAAAAAAAAAcFDp23rE1CceEicB2tyC3EgAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_QZucZeLQwMr7zKD51abCrwAAAAAAAAAMS_GmAS-sCtPOI6egY6LXiwAAAAAAAAAPbSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT-r9PdXX1mVfrKM4cjx98VQAAAAAAAAAHckdRYj6mGdEYJvYh_1v9CAAAAAAAAAAVNku1oPInJYwCIRLCUxYLuwAAAAAAAAAGGHfrWkNDTusMoI46fGLR6AAAAAAAAAAXtQBYLE5Qq3rn4uocqQBMfwAAAAAAAAB06SPcjSM_2i5VedtZVzcDIgAAAAAAAAAahrzNr_V8YVZ7ibkr1777pAAAAAAAAADWL1TsSv66pa2kBpdVIVNEAwAAAAAAAABGsavPbEF5C7JhfS7sqrnMYwAAAAAAAABNJvScc-kAblhDe3HgLZgGAwAAAAAAAAEPN-5WHXYOZdweEq4mLHyhqQAAAAAAAAAJENntOW0JrT8nDLuyp74yqwAAAAAAAAAFuxx5lyE0g_XxW6q2Z6gefwAAAAAAAABLKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABQx5b3IPW0UBs9KCWRFhqvwAAAAAAAAAEUg_WrvzfiSx7or5yGxERuQAAAAAAAABrgvBg_Q7r2IbP7JxDpdNETQAAAAAAAAAJM-l0IodVUrBpenUEnOhL1QAAAAAAAAAFu78SWYWMWORWmstqR3xV1QAAAAAAAAAFISo198vJQrYNdynfqzotagAAAAAAAAACSU7fNzMC3NazhQDT5xGXYgAAAAAAAABI", "types": "CANABQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "R8qQ1EkUatykSwAEdlZfRQ"}} -{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimtb6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOK46tVKI4mSYDEJ-ABAIpYXcgAAAAAAlcA76tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbdH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlWJ36tVKI4mSYDEJ-ABAIpYXcgAAAAAAlsoG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlrpu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlqKz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlwjf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlN5a6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlNsK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlOPs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMub6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMqa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMWu6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgDv6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgCV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwA8J6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOBI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN1t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjNJshpS1QtdrBQjGg-LCbfqeSAAAAAAAAF9MSxgb26oKQwlt07if9woPTQAAAAAAACORSxgb26oKQwlt07if9woPTQAAAAAAAB5cSxgb26oKQwlt07if9woPTQAAAAAAABLvhpS1QtdrBQjGg-LCbfqeSAAAAAAAAFrchpS1QtdrBQjGg-LCbfqeSAAAAAAAAFjZhpS1QtdrBQjGg-LCbfqeSAAAAAAAAFcz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN6I6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN216tVKI4mSYDEJ-ABAIpYXcgAAAAAAlId_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk-pXSxgb26oKQwlt07if9woPTQAAAAAAAALo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlH266tVKI4mSYDEJ-ABAIpYXcgAAAAAAlHrC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAl0Um6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlR_v", "types": "MQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TtbiDhEltHmoi7DhhlF0WQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66OFZ3CKaS4aU08RhYA19y5ITQAAAAAB618SZ3CKaS4aU08RhYA19y5ITQAAAAABtJ6g", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ydrSldLsPTdTf2IWl3R-qA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5WiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9xAhlVWErYnSgk5BtC2imuwAAAAAAAAAHPCZtk4AIkgW9G69-tbcb4gAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFg7nBWJWVuG2AG8wBW0GvVwAAAAAAAAAMJ1pfAEWmqWCNhh7R3GdmfAAAAAAAAAASE7IGle0kfvhelE-3QmeBCwAAAAAAAAAWRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlX6mSHrc_Ev2W8ntyZyhlAAAAAAAAAAMXqo7-ger7Rh6Qo72br9qjwAAAAAAAABjPJlREaStQ9MDsMhq8CWS4AAAAAAAAAAY0gz1mhmhTxHCVZG94cP1QgAAAAAAAAAF-7DooF_BqEazp1UGVZs9GwAAAAAAAAAFANUDzCguopTSw91qnI0ylAAAAAAAAAAEqqNm7TjIy3nH3d170jURgAAAAAAAAAAI2x9Jgge3yFGPJiCTMDFHSwAAAAAAAAAFiPXr6f3Mf7KR5iK4gq24eAAAAAAAAACnIJnlXZgP58FpcOOLo104QAAAAAAAAAAFlFZNtRp_xBkoen7V_iPn8QAAAAAAAAA2AftbP5ZY38SZ1pHarYSmtAAAAAAAAAAcYNkW7ldpj8VMrufMGJqX2QAAAAAAAAARfVBoJfjASXSwBJ3d_2nbBwAAAAAAAAAD3fBcCtdpXw43VTJq86uhwAAAAAAAAAAMkVdvlQNmdDn0as3tg3u2tgAAAAAAAACM", "types": "CAM-BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "S58C5t85-Y0vir0VJHn3sQ"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXaQA", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZndsICGWbrD6J4BVHqQM7g"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyFRZ3CKaS4aU08RhYA19y5ITQAAAAABtxSUZ3CKaS4aU08RhYA19y5ITQAAAAABtwNjZ3CKaS4aU08RhYA19y5ITQAAAAABtFuiZ3CKaS4aU08RhYA19y5ITQAAAAABtntlZ3CKaS4aU08RhYA19y5ITQAAAAABudBy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "62iN7sDVKIBNfUxfmQdZvw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAAAzr8jPkIagwkcKu3VFH_5eFQAAAAAAAAAFfwrSDgHrTXpAEmJ4bHy8MwAAAAAAAAATTq2A_ghNgr4Sgbd4ToSeBgAAAAAAAADKOVKwi55Br_WT9fxVyQu6PgAAAAAAAAAe2YGkbnIdlKIhbsTbMV-kWAAAAAAAAAACz-hu6cNT1Ftqgnka76QdWAAAAAAAAAAQEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAABBUoX-ughXNd_AmddejeY_6gAAAAAAAACLEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAABBUoX-ughXNd_AmddejeY_6gAAAAAAAACLEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAACgjxBO7ihhtfLOOEuDlHwmIAAAAAAAAABLEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAABBUoX-ughXNd_AmddejeY_6gAAAAAAAACLsrK4jFHN_yr7CRCkobJCaAAAAAAAAAASU9GMGSRcFRH-CQmb_n3Y0QAAAAAAAACk2dpbQm6Su1jn5rEv9F3sMwAAAAAAAAAavcAmytl_wXdfdPt8SRSHZgAAAAAAAAAOyfXyOODTodkdeiMKIIzHeQAAAAAAAAAjCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABhmUB0X1duvhm3HnTYomF_uwAAAAAAAAAQAFgNmbMpan7AOvr1RHjTvAAAAAAAAAAA", "types": "CAM2BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TlylgEpMmjrNXKNFfM0qtA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAAA65FYxe-SHgukLEpCkawSk1QWAAAAAAAA8D0Yxe-SHgukLEpCkawSk1QWAAAAAAAA_IZYxe-SHgukLEpCkawSk1QWAAAAAAAA-w1Yxe-SHgukLEpCkawSk1QWAAAAAAABHFz", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NkkmX71PXT_4RUzWmyda5A"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgLU", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oFFMBClb7YDKbss0-D49Bg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACOVgImNB_AseUMjfw9acwHDgAAAAAAAAE3LL2AmHorGMGLHFvQ3KWNRAAAAAAAAABye9VBoOb6ap6y2iBqQXec9wAAAAAAAAFB-7qKHNvuu4dQ-NSojX-1nAAAAAAAAAAEQd2u0guBgJM1heDZ97a_eQAAAAAAAAAFhHI8fycCSE9gTrpxwlqNFAAAAAAAAAAE", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iVK1cbIgag654ehUa-HUNA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAABIkSo5taWM8U71y2hDxxHngAAAAAAAAA1lBsFTWSf77aYVb9HHr9tcQAAAAAAAAAFlBsFTWSf77aYVb9HHr9tcQAAAAAAAAAFewU9RfzsPed7JATT94aw-wAAAAAAAAApfZ3COijH60wdDIIVUpSInQAAAAAAAAAIx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlseR", "types": "CAOSBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "k2c8JznJ4XJJ2wtl1jvs7A"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQJvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACeySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAYh-mcFcSefWaXpPLGLAmk8gAAAAAAAADYzXY2fMPD2q8JxxSeQ4an4AAAAAAAAADb1ajhlpq_ffaY9SZwO_yFvwAAAAAAAAAMbYR0b7-vTQ0RKJD6ns3ClQAAAAAAAAAG5WRkp3UGiY89oONYWWfHqAAAAAAAAAAtidAHvTfpCa_Lill3CvLIKwAAAAAAAAECw3qTM6Aby-qZXMm0XUnzgwAAAAAAAAACMm8DVZJmh3QnOlkSNNPztQAAAAAAAAACCqCFKFquafWxP8MGnvInCwAAAAAAAAAFe89Jv2oRIOxOuDnCIkX8tQAAAAAAAAACHgscutZGPI6M_OmJZjfOqwAAAAAAAAAFCY166VCeQEiftRvkym4zdwAAAAAAAAACbkcdRMoapp3BEGDSfW477AAAAAAAAAAMi9YfJMsMCNR_uoRNlOrFdwAAAAAAAAADNpN50MeDuguOnm7L2nqCmAAAAAAAAAAFVGrDFWQNW44E9kj0nxmkbAAAAAAAAAB61OyHt1U_IGwC-U3U_CNytQAAAAAAAAAJW8KitKDxc0kQen0Hckl4hAAAAAAAAAAFychTAfEOBJMLCeyZEQuJMgAAAAAAAACgdhiUmvfDk2OXbcgaknkEMgAAAAAAAAAIOppFSDODTzgTHYJG_GWJMwAAAAAAAAAxUjOvEv24g3MqPytk-MIGDAAAAAAAAAABrbwR-ACr3s5lHPzJRwgUNgAAAAAAAABlbSqWaYKtavFZqjY4T_025wAAAAAAAAAQFD67YgaFeLuqBai5R0qQdQAAAAAAAAAm", "types": "CAM8BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VaLam_KQiz8POCW3aoer2w"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEWB9GVskeRyK4_o3XD61XIAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAqJzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAqdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcO9_JyaRKYBdkJrY8OUa6igAAAAAAAAASDJ2lZS85ClNgTnnEk8XThgAAAAAAAAAc", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-tJlKr_KhSmekGKYSh387Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeX4-", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8m9XmKLa72WdntoQwSY0tg"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAADzz7", "types": "GgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KaCen5lChBQlFEf5iOW4fQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAAtSAAkutGejeRImCZXeWZ-1wAAAAAAAACLcDDKtM-30WtgKUZUhSPZowAAAAAAAAD0JN-dgFkoqSE-dHBUib5RMAAAAAAAAAC1Pd-omTG6uuGgCAgh--t7dQAAAAAAAAAJ9ya1L8kCLTVFwaNMIq6e6wAAAAAAAAAbClnxK8O8Hp5YRTaCc4x_4AAAAAAAAAAD", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1x1DYtBgANQEqmgJHFNwCw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAGvN0nOeOJdjggSFx_cpb47egAAAAAAAAAV4vwWTuaA5W0Uq7WSODTSAQAAAAAAAAB8mm7pA8Vo6frfLprU_GjPaQAAAAAAAACREbDp5Ji3y8uTKzXL0h4-JQAAAAAAAAB8dJZnxxfSj1TBzD3FyyfeDQAAAAAAAAAOArz1MMWCC2fkAl6FCL43rAAAAAAAAABQnHKyvd8kdc_8d3u5YjO8iQAAAAAAAAAFhHI8fycCSE9gTrpxwlqNFAAAAAAAAAAELV9G5ZxtEfojbVKjeQ9ZFAAAAAAAAAAEOuyr9JMrulJxBnFXlkNTeAAAAAAAAAAL2lBy9bZIX0DDo0HgF4wFHAAAAAAAAAAz4EfOVjZ8UDEWtY1KnqslYAAAAAAAAAAhYNTunKybilcdruNbkYh4bAAAAAAAAACjbxcuG5n0qJIaHX3wrksHOQAAAAAAAAAGTymAEDD545ov_oP4db3SYQAAAAAAAAAL", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0mXxveDvgmyZUQk8txqhkA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETVz", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZVHdt4rRKbUdxnZTJm-T_A"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXEEgtQ4kMk_MBWrPUAFqVnYywAAAAABqaDa", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "k0qCCYXqNQJOeLz2IVSZQg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChGE8XT4fd_WKeR1cE-hlLelCQAAAAAAChGxX", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_Z-5rAaOPhdXYQmI34Fo4g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPUhSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcNAj", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UBsDigUiCriOBIKnOe9n2A"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAAB2I10upgJihUkX5rBuiOc-YwAAAAAAAAAJeBZv9AEe8LEuUNXk_42n2wAAAAAAAAAFb0AoyduVJ3t1JvB8AtIQXgAAAAAAAACQ5N-LgXfDk2OXbiJdiTueMgAAAAAAAAAIxpf67p7tjON1QEeEp4iyEwAAAAAAAAAxC6bLEkVA4cc4IWbaWyiumQAAAAAAAAABS06qc2WWdjyLzzAdWuSUuwAAAAAAAAABPe4TSqGUL-1bGrK2ZFpccQAAAAAAAAAa", "types": "CAM5BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uS4XSdjWfr8HqtkqPLeplg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t3YXT4fd_WKeR1cE-hlLelCQAAAAAAC-wI9XT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_Z0XT4fd_WKeR1cE-hlLelCQAAAAAACggXg", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7EgL5MlvlPFHn8CzMa-nAg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAACqKpITysyc01IYxgnwc53UiQAAAAAAAAClexDpNQOMLw9Yf7a5aYjaDAAAAAAAAAAFLrFpoAJGQs12Bwm9KGK0lgAAAAAAAAAIU0G4u2sI84e-qKwkGwX3CAAAAAAAAABImbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC3OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOEnRoHyZazasm_zTjL5tnOgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMfDpp6LgRqCGeGjs7cnnwItcAAAAAAADsp5", "types": "CAO8BQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "M4rbTRbrX0yQkCxBeFA9NQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAANSF3u75PFaKMThRw4BoUVwCAAAAAAAAAA0IkSo5taWM8U71y2hDxxHngAAAAAAAAA1lBsFTWSf77aYVb9HHr9tcQAAAAAAAAAFlBsFTWSf77aYVb9HHr9tcQAAAAAAAAAFewU9RfzsPed7JATT94aw-wAAAAAAAAApfZ3COijH60wdDIIVUpSInQAAAAAAAAAIx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlscT", "types": "CAONBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JkCyXgxX7cEcni0HaLkYUg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABg0Csz5k14PsCcDvFyUC1kmlV3QAAAAACFH_-z5k14PsCcDvFyUC1kmlV3QAAAAABhYlXz5k14PsCcDvFyUC1kmlV3QAAAAABmRmnz5k14PsCcDvFyUC1kmlV3QAAAAABmN4vz5k14PsCcDvFyUC1kmlV3QAAAAABmP_4z5k14PsCcDvFyUC1kmlV3QAAAAABmP5wz5k14PsCcDvFyUC1kmlV3QAAAAABSO2cz5k14PsCcDvFyUC1kmlV3QAAAAABSOAgz5k14PsCcDvFyUC1kmlV3QAAAAABSWD5z5k14PsCcDvFyUC1kmlV3QAAAAABRyDZz5k14PsCcDvFyUC1kmlV3QAAAAABSmpsz5k14PsCcDvFyUC1kmlV3QAAAAABSP7-z5k14PsCcDvFyUC1kmlV3QAAAAABRsCfz5k14PsCcDvFyUC1kmlV3QAAAAABGP0Z", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hdKC-JUXcZ1pC3Sh2b32Ow"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAA", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Zy8I_mLxkUqRNobY73aLCQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABTAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MnrTN3oNHBWQmiPNUfJdZA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAABDbpFrLpp87SutwNDP7V3ibQAAAAAAAABavxG-WVYFZTc5aU17HIQx7gAAAAAAAAAGNleCed7iD5lY9FUQABqcFQAAAAAAAAAE56J_quP6E7ubMy0oFC4pVgAAAAAAAACGJmNHPBl7DNTU3iu90SpbRwAAAAAAAAAA", "types": "CAM2BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5DxLQCjm2m1lyk1iyQve0g"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAABhRJXjPkp22gaQo9vwY-85JAAAAAAAAAB1DLrWTvtAPDh4Uv4u2shragAAAAAAAAAW_-w0jN8EBuSyBPLluRtS_AAAAAAAAAAR", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "62xV6FZtZmytFhVdu0rarw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAABB_IRgbCQC1IPEoVkHKMOTwAAAAAAAAAYdB8rpvXeU-U7j8zoRqc_lgAAAAAAAABYe7YYWaQTMh8P2PCVzA2a8gAAAAAAAABE_p12Y0DOk4cFEn5gGz9psgAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "U7LpnWklabUetOIUe4VKNA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAABnGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABbTIqYHzSLJiXVx4krD2dbMgAAAAAAAAABIFHX6oXBjL3Y93SHOMXcKQAAAAAAAAABAAAAAAAAV4sAAAAAAAAAHWqIu3LwO1Gg", "types": "CANIBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PkV0kGs2CSg2biD88r4Y4Q"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBap", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "w8DNqhKpZMDXQeydz4OxrQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAQgtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAH59i-wMdSlFTE9FP7ALC-fwAAAAAAAABPJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACL", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Uo-tsEXpjnB3_59QNk30uA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAAAbH0yNC4W33CkkqJfkrGFEhAAAAAAAAAARI4ti_2zppL2XUF0qAEuVPgAAAAAAAAAG", "types": "CAMLBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lo6X16n0sxmFnHCmqvzqeQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mlNXT4fd_WKeR1cE-hlLelCQAAAAAAC-nmeXT4fd_WKeR1cE-hlLelCQAAAAAAC-nplXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwWtXT4fd_WKeR1cE-hlLelCQAAAAAAChsdpXT4fd_WKeR1cE-hlLelCQAAAAAACh1LY", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xKjCC5yf0r30Yx7ATik86A"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP_41", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kk6lQFGFmE5-o8l9P-PnVw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlpa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN6ND6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFW5n6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMB-T6tVKI4mSYDEJ-ABAIpYXcgAAAAAApP87", "types": "FAMNBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "D_W7lWj5puMsPDS-FaHcww"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcDY6SNDzWiYDmLZi_Z1ZVETLoAAAAAAAvtxjSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt-hLSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWduRSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWdfHSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWbznSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt7OJSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcuMGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt_RZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWcwo", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8Bx6QFlsny3BVfw-E8xnEQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAEKGqShcrW-d9_GDzTagKIU9QAAAAAAAAAG_h880XQOq8mngzMZR-nPlwAAAAAAAABR9iEsaZI76W1WejkwhmTFwQAAAAAAAAAHC64NVLkkZ7RW349y9srs0gAAAAAAAAAEH7o77ANtSaWU3Ypp865GJwAAAAAAAABW_93WPbrUDW14kcLWmrpKPQAAAAAAAAAG12nEeMsH00wjguIyHXaYDwAAAAAAAAAEHRnmOObX7UEhjneXDGbG8gAAAAAAAAAM3YIfAGaCMYqtVFhpvZ-uyAAAAAAAAAABzKHS4hsJddCCPPI3lqHKuAAAAAAAAAAF__e_ReExoac--V-RQeNXewAAAAAAAAAHqnkrTiN5YCts6ND7O0BX2QAAAAAAAAAPHRnmOObX7UEhjneXDGbG8gAAAAAAAAAM_DDQPZMS5NnUuioWsVqoPgAAAAAAAAAF3QWEH8eApmH_ruugOKv76AAAAAAAAAAHshNXixs-94AywpTuAMqgvAAAAAAAAAAK5m5J32z338iItYAy0IlfPgAAAAAAAAAoL8R2W0h5kIRkmSOynN7f9AAAAAAAAAABqsOdwnOfdpGhy1Ny492aAwAAAAAAAAAGbfWTJUKYANwcIsCQIfxvLQAAAAAAAAAC1rHoPMq-mpf_DwJrvHqYAwAAAAAAAABVPqkKpz2WDphJH5ROhuDMyAAAAAAAAAAOYegVEymiG8lw5t7wHfz6hwAAAAAAAABlbSqWaYKtavFZqjY4T_025wAAAAAAAAAQFD67YgaFeLuqBai5R0qQdQAAAAAAAAAm", "types": "CAM3BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4T9YWo_AUvk6BjQe3pJjFA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AcCz5k14PsCcDvFyUC1kmlV3QAAAAABGL-zz5k14PsCcDvFyUC1kmlV3QAAAAABFRAfz5k14PsCcDvFyUC1kmlV3QAAAAABFbGA", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Wh31IgccB0bo8SH5BOevTw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACuCx5RC8g9OTz7PgiGSeLtvwAAAAAAAAAOgY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAFyZ0m5K0hyRADeQkG90vP8AAAAAAAAAAzZ80ToqoZC1OOBoR__NmsnwAAAAAAAAAFXCoBIRW2zeIv8Jr12c2SPwAAAAAAAAACtmXftvn8hrcleDLJfptXeAAAAAAAAAAFoWAu7yjPEQWDBpYB2hRLjAAAAAAAAACEHL8EuHVSmvyyvO0QJQzjvAAAAAAAAACU9i4yH5hvA0rp4RuaXVKyFQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlscYYsnZ_Lwaqr0cHEPo0D185QAAAAAAhTEw", "types": "CAOPBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0pVn3RaIbpVhn8RviFIpJg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBVs", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "caAMI7G9uz-EPxuo9p-Rlw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7RXT4fd_WKeR1cE-hlLelCQAAAAAAC-pCkXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9wRXT4fd_WKeR1cE-hlLelCQAAAAAACjCA5XT4fd_WKeR1cE-hlLelCQAAAAAACgUmmXT4fd_WKeR1cE-hlLelCQAAAAAACgUOX", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VcxRLLsRsRxgG1o3M1zeCw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAACuN-FXT4fd_WKeR1cE-hlLelCQAAAAAACuPpJXT4fd_WKeR1cE-hlLelCQAAAAAACuQz5XT4fd_WKeR1cE-hlLelCQAAAAAACtsUEXT4fd_WKeR1cE-hlLelCQAAAAAACuBrnXT4fd_WKeR1cE-hlLelCQAAAAAACgUmmXT4fd_WKeR1cE-hlLelCQAAAAAACgUTFXT4fd_WKeR1cE-hlLelCQAAAAAAChz-3", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KF5ebpo2QysWAQEhhpRt1A"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfxrm08oJc5xqpM1VweLZNZwAAAAAAAAEIFyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACAE1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAACS4b6Y6AxjtjqP_pey1p_yKgAAAAAAAAA46himjS-PpAivu9i1Bhv6aAAAAAAAAACVH0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsla3GUxZ_d6TdcMBptiLBKQAAAAAAAAAkuwSrGXrIlilHG9LeAbu8sgAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFO32XyvU5fpn5Sx9ZKKSnYQAAAAAAAAAULEf7xTPa92fa-lrUaMUkPQAAAAAAAAA3-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAFRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFna_q_qI2NNskyXQ7-L9cKwAAAAAAAAAQVQoK7BVzszXqPUi0cc2ufgAAAAAAAABCRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFemtx417xjizVLzzaBLAalQAAAAAAAAAoKU_l7oGL7N35bnBXHoHVpAAAAAAAAAB3R43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF4gllBwxobraKpNHjylla1wAAAAAAAAAYbtJR8uWrInrzn_sGkpIt3QAAAAAAAABNRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF1qPLJVVQ8TzPBEa8EsrzjgAAAAAAAAAU7dZbzLINeewhS7u7jNnbxwAAAAAAAABBR43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3RsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF8eNwq_KWMgzEjBR2SK0NcgAAAAAAAAAQ3xSivts4s-tBo1MMFQEENgAAAAAAAAAvfEf2U4TLcZ6jkTz3kXzr0AAAAAAAAAAkjNbJJD0szUDlnbhrWsIGkAAAAAAAAABE4ZG6-YGelmJ-HvYGGP11fAAAAAAAAABaPJlREaStQ9MDsMhq8CWS4AAAAAAAAAAY9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEQ1dNWbPl2h7mKqBY2NB1QAAAAAAAAAUuj5fRTSdGJxlX0gfzctOogAAAAAAAAA_3G7WvpXqPGO04rbAV9CJtQAAAAAAAAAlHr7DaUVBf6Mvou5VCDAFbQAAAAAAAAApRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFIvg_JPEBUKm57VWt-FY04AAAAAAAAAAMM_MfJrZLrX3P0R0dWrP49AAAAAAAAAALRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7TeTTV59eKgI4B5n7wuKkgAAAAAAAAAU-TcRbQGxOxYw9x9ta5Q4zwAAAAAAAAAheufT8zCegZUSBK09BAzk9wAAAAAAAAAOlrNuGOqZ1W2gPcoSPK5FRwAAAAAAAAADXZxd66YF3ajQqQXBmIp92wAAAAAAAAABrKivvO5Wzb2hHvlwH9qGKQAAAAAAAAB4M-j8415ZfwDLKgLNdquIVwAAAAAAAAAGo5wkfsdfaC5wrA0weqXc-gAAAAAAAAATWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYv0o-SuFa6Ydo5LzhQb4MjgAAAAAAAAAGkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAUeU3FNtHcJBbn9h6Q-DiZ2AAAAAAAAAATu_jROqRUKuaOL2z7eoOrkQAAAAAAAAAA", "types": "CAOEBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uWH1YJMiRNhCnBrl6NfCMQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8yfSNDzWiYDmLZi_Z1ZVETLoAAAAAAAbCOp", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PQ297jfrM7aOAB4-C3MH-w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYf9tQ-FDBLtIC3ufWwyt_SQAAAAAAAAALt1J8MwohlN0N8mOD0D4M9AAAAAAAAAAI931sEtpcdsHnD8gPYzKXOAAAAAAAAAABMZMTsWUUQKF_r8ij_JAjmAAAAAAAAAAMO1v_wbuglNek1zs-lCG90QAAAAAAAAAGbeD_C7F44xTKzF8_Am3s6AAAAAAAAAADybCcUk4-fZcYJk9ygl24tgAAAAAAAAAdGT3vc6Zy2FsC0X3TBWoX8gAAAAAAAAAqUnH-1DVZR_3BxV6FYbbLRQAAAAAAAABfZ53eDlI8CoDip7DSk_R4-wAAAAAAAAKfYo-l279if9LXU5uKe7FeswAAAAAAAAA-Owyk6knOj497RFA7J6tb3gAAAAAAAAAYS91mTbQPR0Q9cILSZvoNyQAAAAAAAAAjekcp8NUShDNkkW-gpN04awAAAAAAAAAzke7oj2vSigw0xd1VYjL-qwAAAAAAAAAFOVKwi55Br_WT9fxVyQu6PgAAAAAAAAAex2kVSC5V1lfN8QwGzPUmeQAAAAAAAAACz-hu6cNT1Ftqgnka76QdWAAAAAAAAAAC8RQyRW_fqLsoJLvr6Yk7xQAAAAAAAABz8RQyRW_fqLsoJLvr6Yk7xQAAAAAAAABz8RQyRW_fqLsoJLvr6Yk7xQAAAAAAAABz8RQyRW_fqLsoJLvr6Yk7xQAAAAAAAABz8RQyRW_fqLsoJLvr6Yk7xQAAAAAAAABzjiqmNc5cRiav2wA-qp0PAgAAAAAAAAAFd5Fyz4cRZC4ajLacBAj4gAAAAAAAAACw-9vJvNaoETo4mFOCIvFveQAAAAAAAAAE8Vet0f9AosKLKkC3YW3cCQAAAAAAAAAHr6ZigwkDaNPkVLYkDaTfYAAAAAAAAAAF", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wKd3bA5CzFfK_BkLhBHABw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlfQcEvvhuguaGYCmGWrnWRz1QAAAAACEh4acEvvhuguaGYCmGWrnWRz1QAAAAACEiiHcEvvhuguaGYCmGWrnWRz1QAAAAACEipkcEvvhuguaGYCmGWrnWRz1QAAAAACEYEMcEvvhuguaGYCmGWrnWRz1QAAAAACFyj26tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ8bZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ75B6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ7gC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJloA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJlhJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAACHEw6tVKI4mSYDEJ-ABAIpYXcgAAAAAACG-k6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFF866tVKI4mSYDEJ-ABAIpYXcgAAAAAAFF5X6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFzd6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFgX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFbO6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAsTF6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAsCt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAABQH", "types": "BwMRBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4qaZ4j35u_YBqQ5HnDB_oQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcM9Xltn711KKFcrKCAYh_ZgAAAAAAAAAE8s5hM6TvWnoP9XP3e8VVVwAAAAAAAAAA", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oTHLMe0BewCEp798WVpJtg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF88yz5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF78Kz5k14PsCcDvFyUC1kmlV3QAAAAABFxdxz5k14PsCcDvFyUC1kmlV3QAAAAABGnbP6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuqt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL47y6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL47I6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL4Uz", "types": "BgMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rp13JE-7UWo9J1PFiierKw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApfzLzWZQgzth4yv0Aw0PoLgAAAAAAAAAl1pEcO9CYkxI799CldX3uowAAAAAAAAARsCdW6ghslIPajpgsdfjVWAAAAAAAAAAS3HYeSFaP4bm-Z2NSJub6sAAAAAAAAAAY4io8TQpKnhHcoJs_H_nFpQAAAAAAAAAcWUsgmXBmEYsZWCQlmPqU4wAAAAAAAAALRuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAqFV6xhVekP5-uToPI32ragAAAAAA7PGLqFV6xhVekP5-uToPI32ragAAAAAAxoGftQgAmBJBgPLrkikSPRsmtgAAAAAAAL3h6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvQq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvMr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMKBQMDCQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vL8b2HSp2gXZRywmy6vg_Q"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAGvN0nOeOJdjggSFx_cpb47egAAAAAAAAAV4vwWTuaA5W0Uq7WSODTSAQAAAAAAAAB8mm7pA8Vo6frfLprU_GjPaQAAAAAAAACREbDp5Ji3y8uTKzXL0h4-JQAAAAAAAAB8dJZnxxfSj1TBzD3FyyfeDQAAAAAAAAAOArz1MMWCC2fkAl6FCL43rAAAAAAAAABQnHKyvd8kdc_8d3u5YjO8iQAAAAAAAAAFhHI8fycCSE9gTrpxwlqNFAAAAAAAAAAE", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "L2tnlnNGd85PzXoftF65LA"}} -{"Stacktrace": {"frame": {"ids": "AAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "AQU"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7FDPiYnztHLh8lvlMFRyXw"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIoVZ3CKaS4aU08RhYA19y5ITQAAAAACtIeEZ3CKaS4aU08RhYA19y5ITQAAAAACtOo1Z3CKaS4aU08RhYA19y5ITQAAAAACtNW2Z3CKaS4aU08RhYA19y5ITQAAAAAB0mf0Z3CKaS4aU08RhYA19y5ITQAAAAAB0j6eZ3CKaS4aU08RhYA19y5ITQAAAAAB0jsi", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UMnm1x59Hw93aRPLKQaavQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPUhSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcM4s", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "f6Keqe1sXyk36jAJ3WN1sg"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSDFGgtQ4kMk_MBWrPUAFqVnYywAAAAACSFSbgtQ4kMk_MBWrPUAFqVnYywAAAAABrFpa", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "owNoaLSdddyWnE6x23fIMg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzScEvvhuguaGYCmGWrnWRz1QAAAAACE_-qcEvvhuguaGYCmGWrnWRz1QAAAAACE_n2cEvvhuguaGYCmGWrnWRz1QAAAAACE-1-cEvvhuguaGYCmGWrnWRz1QAAAAACE9WHcEvvhuguaGYCmGWrnWRz1QAAAAACELGkcEvvhuguaGYCmGWrnWRz1QAAAAACEynFcEvvhuguaGYCmGWrnWRz1QAAAAACFyki6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uaiZKrXoT8VGJLZeMjATrA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAAAUm5rnlBM51oea-h9ZD0jXEQAAAAAAAAAHRIYqG8R7SOQv287DSnsK9QAAAAAAAAAHuixEkl-WfyMHq9fe86bwhwAAAAAAAAAQAnAOjAZd8DreOTLSozMbLwAAAAAAAAAE", "types": "CAMwBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jmx0gHeNEF8HBgePt0BNVQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk8Lz5k14PsCcDvFyUC1kmlV3QAAAAABF8Zgz5k14PsCcDvFyUC1kmlV3QAAAAABFxdxz5k14PsCcDvFyUC1kmlV3QAAAAABGnbP6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "BgMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "obvZcLc8tkTW_PIiHCS5nw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2q2cEvvhuguaGYCmGWrnWRz1QAAAAACsg8WcEvvhuguaGYCmGWrnWRz1QAAAAACgeincEvvhuguaGYCmGWrnWRz1QAAAAACXxyncEvvhuguaGYCmGWrnWRz1QAAAAACETeKcEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEVyz", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CVtNM3kFgea788jNz-19vQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR74", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-_1XfHbZNvE_DNOZ6TgYMg"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAAAHXK-bXPz5NoBIbF2mbBOD9AAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAAABx_DspzXOpGBbLZpT9ztnugAAAAAAAAAA", "types": "CANBBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5lorII3BQFhJxreg2edqjw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATRsvOFqC3SNzn_pRUkwD1yQAAAAAAAAAKmVg5ImyOXWtTMPsPyAoJFAAAAAAAAAADeCd7pmEC4QoP7FQm1ikosgAAAAAAAAGVws0N6fTgPArljYYAC403MwAAAAAAAABq82-lh_T5Vv0w2WAb_RJ1VgAAAAAAAAAIuF_V7TH-mukdED5BHxc90gAAAAAAAAHcC_0aTeR6JBYKeG8Yqz7OGgAAAAAAAAETljpmjACwvo52D1nC2cyFxQAAAAAAAACDvDU7E1ww8G9noy7HUAb7kQAAAAAAAABatrKFSvtlxO979VBLgP3FPAAAAAAAAAAvgs-Dp-bkHGP2EKd53eqOEgAAAAAAAAB-7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAME67ZApSKF_tBH-bAhOXBNxAAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5EXm1hlIrQc2WIKO4W87lDAAAAAAAAAAfDm9DG4ZqDn_4bGJnyMFN4AAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAANJa8NlMClggx8jaziUTJXlmWAAAAAAAATrU", "types": "CAMwBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PpzV6LTOPBnvw6J3GGPQ2A"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOpxFz17lb-voh9uZicvdXWAAAAAAAAAAdt_8P_qgRJaTfBrJGumjgpQAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NeIDUkh-VuAV72dDJWGFbg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAABzzXvjOvDFEHH50WhZ8-7e_gAAAAAAAAAMxhOAoPbUvqtSdEcy7uoPXwAAAAAAAAAFeXimxJw4055xWDImg8DzoQAAAAAAAAAq5Dz1NwJhW8tUTolfpVyg2gAAAAAAAABn2WuDX_7V5y0Pc0pDkF5WNQAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAHWMqjB_amR59Lv13Nhle_NwbwAAAAAAEfRt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJi7", "types": "CAMKBQIDBAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4qft_3sVVVVKL2SEz3KAyA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAvspzm-_Ca31VwijYVQAZSLAAAAAAAAAB7TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABbXyIB1JXxkoOQjMae8CICgwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADWifN9r0wurhPb3dG8PudTpAAAAAAAAAASywRpFKHnyqIdEibpvZWLtAAAAAAAAAAA", "types": "CANXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0e7BwxOo44d7lCUy997IJQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAABVUGAPUw2d5-4XxhgrPyPBigAAAAAAAAAMxhOAoPbUvqtSdEcy7uoPXwAAAAAAAAAFeXimxJw4055xWDImg8DzoQAAAAAAAAAqhIPSIc3LxfgC93-3l1xbUgAAAAAAAAA8dwALkUYgGLRGfUWD1MdpDgAAAAAAAACB", "types": "CAMKBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "s7uqXjdMn8cKJH0c7LBBRA"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXDNgtQ4kMk_MBWrPUAFqVnYywAAAAABqaDa", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ieam7bsdu72j_HX7vKzkDg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEPD3cOudib0XQsq9y3nJeyAAAAAAAAAAQPHOUiNkmrb6lymlNuXSU6gAAAAAAAABCdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAek99M4bkjfKmg3-yt9HFm8AAAAAAAAAAA", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rqpy0rD1vTLq37Y_TBiX2A"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgb1tcEvvhuguaGYCmGWrnWRz1QAAAAACXxyncEvvhuguaGYCmGWrnWRz1QAAAAACETeKcEvvhuguaGYCmGWrnWRz1QAAAAACEM5TcEvvhuguaGYCmGWrnWRz1QAAAAACEMRMcEvvhuguaGYCmGWrnWRz1QAAAAACEXUEcEvvhuguaGYCmGWrnWRz1QAAAAACEXtkcEvvhuguaGYCmGWrnWRz1QAAAAACEX3bcEvvhuguaGYCmGWrnWRz1QAAAAACEm00cEvvhuguaGYCmGWrnWRz1QAAAAACFxch", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BjjctUOzAXO89YV2nk2Q4w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB6fSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa_9Q", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8P7h-qet3p603NxSf5JWTg"}} -{"Stacktrace": {"frame": {"ids": "pqmEMTIUDz-nhY9YtlE3YAAAAAAAZJUgpqmEMTIUDz-nhY9YtlE3YAAAAAAA_Q6qpqmEMTIUDz-nhY9YtlE3YAAAAAAA_QRHpqmEMTIUDz-nhY9YtlE3YAAAAAABALxipqmEMTIUDz-nhY9YtlE3YAAAAAABAN9QpqmEMTIUDz-nhY9YtlE3YAAAAAABAM1IpqmEMTIUDz-nhY9YtlE3YAAAAAAAcv5VpqmEMTIUDz-nhY9YtlE3YAAAAAAAcwCspqmEMTIUDz-nhY9YtlE3YAAAAAAAZ4W1pqmEMTIUDz-nhY9YtlE3YAAAAAAAZ4bOpqmEMTIUDz-nhY9YtlE3YAAAAAAAZ6JhpqmEMTIUDz-nhY9YtlE3YAAAAAAAZ59ipqmEMTIUDz-nhY9YtlE3YAAAAAAAZyavpqmEMTIUDz-nhY9YtlE3YAAAAAAAZxnhpqmEMTIUDz-nhY9YtlE3YAAAAAAAX8_kpqmEMTIUDz-nhY9YtlE3YAAAAAAAX-ui", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NRT6b-EmSsUKrT0-0ibcag"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACl", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5gjPCLIYZbMZi0UuOcP2yQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABazfcz5k14PsCcDvFyUC1kmlV3QAAAAABaQIIz5k14PsCcDvFyUC1kmlV3QAAAAABaSH1z5k14PsCcDvFyUC1kmlV3QAAAAABaCxDz5k14PsCcDvFyUC1kmlV3QAAAAABGmvN", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UpG4HUjCnzDBM_w7fbVK2Q"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_h2", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4gZSOWlJ3pw6n-5AVME8fQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB8_Hwz5k14PsCcDvFyUC1kmlV3QAAAAAB8_Xkz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHpmIz5k14PsCcDvFyUC1kmlV3QAAAAABHpbXz5k14PsCcDvFyUC1kmlV3QAAAAABHeDgz5k14PsCcDvFyUC1kmlV3QAAAAABHdVCz5k14PsCcDvFyUC1kmlV3QAAAAABFwHxz5k14PsCcDvFyUC1kmlV3QAAAAABFxYLz5k14PsCcDvFyUC1kmlV3QAAAAABGnan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "DgMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NrEr2m1NreTQiIcNz23_Gw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAABtlFmnG5E5GwmKFptmUf-qtgAAAAAAAAACV_KspK9nh8LJS_EE9pIxxwAAAAAAAAAg2B7DXV7RQApU6uBxIPxnnAAAAAAAAAAOAmq1Q_OWnEFyfJsbIWLjHgAAAAAAAAAF9W0w4Zf7EaLrEqfpZeskwAAAAAAAAAAGxF4yGyA2KnTCi8zdSVp9ZAAAAAAAAAAacilUhzLRe6BxU3ZAi1NCYgAAAAAAAAABS9dDtXfGWlAbYJs-qAiNWAAAAAAAAAAfEqiy1VsW3_B402acjocAnAAAAAAAAALS7qmVvURTWTJ6lErQQmLiNAAAAAAAAAACir_B8dLUMy9ZNkZg-Dbc7wAAAAAAAADvMn5TdyGE5kHT5IZPOwhjjQAAAAAAAAEH0nIutoZyVIRyZOb9YWx3UgAAAAAAAAA4WwREYF5lTvFlO6BaJCM5zQAAAAAAAAAoUjLrmOxWyU0gMgQgMJyFHwAAAAAAAAAA", "types": "CAM5BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "naLB5wSXMG6mCbQGVr-m2w"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzScEvvhuguaGYCmGWrnWRz1QAAAAACE_-qcEvvhuguaGYCmGWrnWRz1QAAAAACE_n2cEvvhuguaGYCmGWrnWRz1QAAAAACE-_1cEvvhuguaGYCmGWrnWRz1QAAAAACEyZ4cEvvhuguaGYCmGWrnWRz1QAAAAACFys_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMukM", "types": "BgMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "f6waWCOFDS45u1AgmybjaQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5WiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATeCaKzXzVKYqqs4wMxzAp3AAAAAAAAAAKxzEX_ryOXWtTMQZYJuG-1AAAAAAAAAAD2XDg5u84AThLncvQweEa6wAAAAAAAAI596H7IcrFu8Zg3f7WMu_LagAAAAAAAAAqztj5Yc58Fi74AN4K12GxCQAAAAAAAAAIeXp6ZabxmzABDzP1KpFPrwAAAAAAAAE4omklHAPZnqPNJHwVpvh2vQAAAAAAAACrqwPQ_i5WGexQYU8q8eVTyQAAAAAAAABzoSoGUxBn_MfT_4Ncm-yGtQAAAAAAAABaAl_h9gC68463XnWmby4-QgAAAAAAAAAN41brnCY5Cm2BMq931HQnJgAAAAAAAAAg1uSylq76VHr8W99O31_CbwAAAAAAAAAE5GG3t6O35HTmUeUOGuPmCwAAAAAAAAAMAKA_xNbMD2YwYHRAUU-hzAAAAAAAAACCyC54Y8eHwlxSGpQoib9B3wAAAAAAAACN4MmFlXNlAaTTYzJu9ZvlFQAAAAAAAACooN81eJrwg8wCXEi9syhH9gAAAAAAAABLsspLyqwqKpD8wnMR9ugciQAAAAAAAABgHL8EuHVSmvyyvO0QJQzjvAAAAAAAAABl9i4yH5hvA0rp4RuaXVKyFQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAMOa5CkhVOrx2r2YkOsLGOZwAAAAAAAAAeJUqoXh4FCdEByaAYgHthzAAAAAAAAAAKl_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAADUM3h48-oBMi00mRAqhB4IAAAAAAAAAAjNrvcSCGNEuayQcoP_4CXWQAAAAAAAAANp3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAANqUqjB_amR59Lv13Nhle_NwbwAAAAAAEPzb", "types": "CAMyBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1StoQg7J8aPbo68sE2e2FQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYwsEP3PfgbWsvPc4Y_rpLYQAAAAAAAAAEbxUfVnyBZI_pROsv4HjqngAAAAAAAAAQku9JPnt9w-bpii9tERrqJQAAAAAAAAAW2CjidhF2o1l9AQQZ7O2_8wAAAAAAAAAVAmTcFForv1r91KDhJjsuQQAAAAAAAADdUVlIDr_FMx_kZCYsc8A86AAAAAAAAAAQ8T0AfTas4UaJM-evU8y7oQAAAAAAAAAU_zDk_N7NUcNRTqIuzYKxDgAAAAAAAAAgobA_YN1BhcTIsrqf5XOlGQAAAAAAAAAEfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdaMzea5YF1p9DWzFcmq3VzwAAAAAAAAAQnbsBVHmpV2luDgffbdJNFAAAAAAAAAAWcRoGFhrzTt6STyxXzS_QFgAAAAAAAACzs7hdxBbMHWQxy2GABBYaPQAAAAAAAAAJF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAd9zPkZE4RJJmPlROxnxkxmwAAAAAAAAAE9P399qv1PUm-fcjEeECPlgAAAAAAAAABmfgswW5tnP--5haDnNTmnwAAAAAAAAAIudgPCGqbKhChfal6WK47OgAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAAG2Wxf0OtqIcfKcZtbpDMZ1QgAAAAAAAABr1Gk-3aGO58JRRoKz-_WOKAAAAAAAAAAgun6cBO6D7gNVatBvdCHO5wAAAAAAAAAG-EMbO6MQ9CzSH9RcHPYaqgAAAAAAAAA7qnR7SPBrCbnbJk8v7ooOnwAAAAAAAAAGz2VnMzkPQ5tcla-26h5_wAAAAAAAAACKEYGjlLJCu-Vl57yx-_7_hwAAAAAAAABccSK3QkQEScwA7ISZYZcmKgAAAAAAAAFDBclABPaTGPcTz5H4BnHdywAAAAAAAABBfOvbXkq5emlxJGl5W6ErrAAAAAAAAADDg8uTn1yVw1EYmPA-d4Jf8QAAAAAAAAFtGTGfXtPbBok8K2FnKoRb1gAAAAAAAABs_vlpQDle5dcOpop8VnX1jAAAAAAAAACIXXew5C30L_JFu-wFNmdm1wAAAAAAAAADsQjNkxldKaQX3UjPy9RAMAAAAAAAAADGZ54PjEfQsrC0ZgxONgiYbAAAAAAAAAB90TgQLjmaHK0PQsXTtJXJrwAAAAAAAAAMYX6jd4K2CK6gVQH6DsXh-AAAAAAAAAArYX6jd4K2CK6gVQH6DsXh-AAAAAAAAABWCAbngOq5hTruw3uA1VDt3QAAAAAAAAAgqEBUjzYNkS1ejSIGCCvPLQAAAAAAAABWBwKQEmS_WcRXepUV2YDQ6QAAAAAAAAA5xp3_py4iSzhCOaZDW2scAQAAAAAAAAAUDVSkUfLwOzQuwgYi6TvurAAAAAAAAAADSwknGjaLKG0Gph6rnFuRjwAAAAAAAAAA", "types": "CANJBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fVBTPPapZUXmS1PYAOv-Tg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfxrm08oJc5xqpM1VweLZNZwAAAAAAAAEIFyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACAE1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAACS4b6Y6AxjtjqP_pey1p_yKgAAAAAAAAA46himjS-PpAivu9i1Bhv6aAAAAAAAAACVH0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsla3GUxZ_d6TdcMBptiLBKQAAAAAAAAAkuwSrGXrIlilHG9LeAbu8sgAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFO32XyvU5fpn5Sx9ZKKSnYQAAAAAAAAAULEf7xTPa92fa-lrUaMUkPQAAAAAAAAA3-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAFRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFna_q_qI2NNskyXQ7-L9cKwAAAAAAAAAQVQoK7BVzszXqPUi0cc2ufgAAAAAAAABCRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFemtx417xjizVLzzaBLAalQAAAAAAAAAoKU_l7oGL7N35bnBXHoHVpAAAAAAAAAB3R43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF4gllBwxobraKpNHjylla1wAAAAAAAAAYbtJR8uWrInrzn_sGkpIt3QAAAAAAAABNRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF1qPLJVVQ8TzPBEa8EsrzjgAAAAAAAAAU7dZbzLINeewhS7u7jNnbxwAAAAAAAABBR43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3RsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF8eNwq_KWMgzEjBR2SK0NcgAAAAAAAAAQ3xSivts4s-tBo1MMFQEENgAAAAAAAAAvfEf2U4TLcZ6jkTz3kXzr0AAAAAAAAAAkjNbJJD0szUDlnbhrWsIGkAAAAAAAAABE4ZG6-YGelmJ-HvYGGP11fAAAAAAAAABaPJlREaStQ9MDsMhq8CWS4AAAAAAAAAAY9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEQ1dNWbPl2h7mKqBY2NB1QAAAAAAAAAUuj5fRTSdGJxlX0gfzctOogAAAAAAAAA_3G7WvpXqPGO04rbAV9CJtQAAAAAAAAAlHr7DaUVBf6Mvou5VCDAFbQAAAAAAAAApRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFIvg_JPEBUKm57VWt-FY04AAAAAAAAAAMM_MfJrZLrX3P0R0dWrP49AAAAAAAAAALRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7TeTTV59eKgI4B5n7wuKkgAAAAAAAAAU-TcRbQGxOxYw9x9ta5Q4zwAAAAAAAAAheufT8zCegZUSBK09BAzk9wAAAAAAAAAOlrNuGOqZ1W2gPcoSPK5FRwAAAAAAAACdLi2sEL79K9zITKcWca3_yAAAAAAAAAAMn1i5t45JYTVEWNvzb7yGTwAAAAAAAAASZMe-9lFFoeGrIGi3f3NLiwAAAAAAAAAGBiF2R8dzjx0oL7OVY_TATwAAAAAAAAAHCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAEhQ2OXkHYZRXh3_WLXzxSBAAAAAAAAAAEqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYwzvWQyXT6P841Whzz8TSaAAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFxGtP-sXIou6VkRlAu3EUfAAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDhfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF353Bbxw0b5wHlGJY1WEVWAAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4bWZWPptWisqbpRDA9X8cNgAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJm_XXHcAY7GMXwX2ivt7_5QAAAAAAAAAkoIYS8oKywxk33PzxrExveAAAAAAAAAAZETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASETEs_vJj_-q4WFpNiG_LRQAAAAAAAABDpolHY70rbYATV63SJl0rJwAAAAAAAAAHivwGRowW9rKiGlQ5mGZyOQAAAAAAAAALsxY3YlWatuuJPF_xRQYPtwAAAAAAAACYQDX8GJXtT-aXEUh_iXGDAQAAAAAAAABYtfylNEM_JkJvBScOJPNFaAAAAAAAAABObLOY0QAUT1PFyS4m6DuvzQAAAAAAAADNoVgqesHjGm-3vT2l3h9tegAAAAAAAAAmT6ZbxRdA5gK0JhigDlprHgAAAAAAAAAL1ZGGfnUIDt7Cq-tNI5WEzwAAAAAAAAC6NAhjTsNYxdMXNJqlZxlO_gAAAAAAAABeoqFEu_d-dr_U6eLuARTQOQAAAAAAAABkY9mQUdyp86jQhHqOid6GcwAAAAAAAACW76wxGzK61aMnsTPSzlLCrgAAAAAAAABA8gCX4yiEJccsUYm2373XlQAAAAAAAAANxKt9upfh1P21jh6PrOPtogAAAAAAAAAOqxNbkYBEVNPqwztSIOjX5wAAAAAAAAACcufAAT85HPQ26Jp5bbvtDgAAAAAAAAAA", "types": "CAPFBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ne60Rh_KLhugEPI_VMwIQQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAAAPX6JlWwBbDvZZ7rFp8ffgSAAAAAAAAAAFK24S1jUATvUFIEv3zAUZHgAAAAAAAAFQQTk6i4kGz-zDlc1CgyBszAAAAAAAAAAubFnDceRyUrwrxpx2LB-2swAAAAAAAABsy3V4Wh9j61CfcWNgvt1uPgAAAAAAAABzXcCMywL5s8Msv7wl9SHdqgAAAAAAAAAc8g3sLjFnKCF_JJchxYP5DAAAAAAAAAAN0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAd5e20AsvoCctGya4WV0ZQuwAAAAAAAAAYN1xfNXt_cEW2sMA8rTIs2gAAAAAAAAA80Og38EZo1V7Xaj5UHUpXuQAAAAAAAADueEsPvNGYH982Mv0mPexpzgAAAAAAAABKhDF35J9yuBLmXhpu5RmYAgAAAAAAAAAA", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Tn-1KeEU3BnmdtG_8ojEnQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAEKGqShcrW-d9_GDzTagKIU9QAAAAAAAAAG_h880XQOq8mngzMZR-nPlwAAAAAAAABR9iEsaZI76W1WejkwhmTFwQAAAAAAAAAHC64NVLkkZ7RW349y9srs0gAAAAAAAAAEH7o77ANtSaWU3Ypp865GJwAAAAAAAABW_93WPbrUDW14kcLWmrpKPQAAAAAAAAAG12nEeMsH00wjguIyHXaYDwAAAAAAAAAEHRnmOObX7UEhjneXDGbG8gAAAAAAAAAM3YIfAGaCMYqtVFhpvZ-uyAAAAAAAAAABzKHS4hsJddCCPPI3lqHKuAAAAAAAAAAF__e_ReExoac--V-RQeNXewAAAAAAAAAHqnkrTiN5YCts6ND7O0BX2QAAAAAAAAAPHRnmOObX7UEhjneXDGbG8gAAAAAAAAAM_DDQPZMS5NnUuioWsVqoPgAAAAAAAAAF3QWEH8eApmH_ruugOKv76AAAAAAAAAAHshNXixs-94AywpTuAMqgvAAAAAAAAAAK5m5J32z338iItYAy0IlfPgAAAAAAAAAoL8R2W0h5kIRkmSOynN7f9AAAAAAAAAABqsOdwnOfdpGhy1Ny492aAwAAAAAAAAAGbfWTJUKYANwcIsCQIfxvLQAAAAAAAAAC1rHoPMq-mpf_DwJrvHqYAwAAAAAAAACKpaeptaXHRDYD67F7ORC0twAAAAAAAAAnmxrYYrG64FXkauTRv-4b5QAAAAAAAAABZBmcQL98TXLA7smZymDadQAAAAAAAAABCSBR8000mbn4kRcknKz6FgAAAAAAAAAIYegVEymiG8lw5t7wHfz6hwAAAAAAAAEmTl_Iodjc0LWexYa5MoBoHAAAAAAAAAAHY3ftK9mWklQQE1dRC8tbhwAAAAAAAAATzcjbCSOxeTCClWpD2cCw2AAAAAAAAAATu39hB2o_bkkn64I33Zf2OAAAAAAAAAAx6KM6RK-sq5wYpyjnMfBa7AAAAAAAAAAsxLOLXg5EKZgSVcI5Dw46ugAAAAAAAAC4AAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAM_BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fgalSE7MGf2Y-ZRC0Xb24A"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc5-Qz5k14PsCcDvFyUC1kmlV3QAAAAABcnaEz5k14PsCcDvFyUC1kmlV3QAAAAABakm1z5k14PsCcDvFyUC1kmlV3QAAAAABHPPnz5k14PsCcDvFyUC1kmlV3QAAAAABGUdDz5k14PsCcDvFyUC1kmlV3QAAAAABGnBA", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-BJw7BDfkkLGBaeu3mTtJQ"}} -{"Stacktrace": {"frame": {"ids": "R_3RsDYccfUxjNYYah3JZgAAAAAAEhYe-IlGUwajicqSE5-hS5VYigAAAAAAAHbaSZxl-YF9wOaedogsBMtvRAAAAAAAGQAGSZxl-YF9wOaedogsBMtvRAAAAAAAGQBRSZxl-YF9wOaedogsBMtvRAAAAAAAD9N_SZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAADz6pSZxl-YF9wOaedogsBMtvRAAAAAAAE744R_3RsDYccfUxjNYYah3JZgAAAAAAEPcl", "types": "JgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WimOxYeSVVOX0wF3HCZkxQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAACZcrJxfOZekEO297SoXoFNvwAAAAAAAABEz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABB5KDO11BWTfkkFO9MFEbTJwAAAAAAAAADoyUgxxOY520Rj3U8w5GHoQAAAAAAAADS_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhY0qFV6xhVekP5-uToPI32ragAAAAAAwhQX", "types": "CANRBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1Is6WKpq1rPgjROiY1ySbg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChkN8XT4fd_WKeR1cE-hlLelCQAAAAAAChdmzXT4fd_WKeR1cE-hlLelCQAAAAAAChdCoXT4fd_WKeR1cE-hlLelCQAAAAAAChd4Q", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0-Jsd5mQCWnt_-lPVIShHw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87c", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hphMgjf8tLvtIOhJJeMEOw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlqJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCIE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA9F6tVKI4mSYDEJ-ABAIpYXcgAAAAAApQK-", "types": "FAMMBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VMoxalfDKAgIFkHWZsfI5A"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcDY6SNDzWiYDmLZi_Z1ZVETLoAAAAAAAvtxjSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt-hLSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWduRSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWderSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWaMXSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt7DnSNDzWiYDmLZi_Z1ZVETLoAAAAAAAx5yKS5FLyxJzArwdyTGdAwNyNAAAAAAAAXnnS5FLyxJzArwdyTGdAwNyNAAAAAAAABCo", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_Nr_8hMt7lL3ObaXhoWtKw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZz2", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mhlnk07FVj7HY3V21x3-gw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAACEjtkcEvvhuguaGYCmGWrnWRz1QAAAAACEj7McEvvhuguaGYCmGWrnWRz1QAAAAACEkfccEvvhuguaGYCmGWrnWRz1QAAAAACEwad", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "H_dTR833ucc6p1Tdsdvx5Q"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBOeYxe-SHgukLEpCkawSk1QWAAAAAABWB4EYxe-SHgukLEpCkawSk1QWAAAAAABV_73Yxe-SHgukLEpCkawSk1QWAAAAAAAEEru", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "U0Kn8_bALG7-cg-DY86kNw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbh1uYxe-SHgukLEpCkawSk1QWAAAAAAABKIM", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NwR9aEq_NsygT1I-G4aUWg"}} -{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBAu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAYtbf6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgVN6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnvcgIdU-uvJLoO1WrtsV2P8gAAAAAAAFf4cgIdU-uvJLoO1WrtsV2P8gAAAAAAAE4FcgIdU-uvJLoO1WrtsV2P8gAAAAAAAByW6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi0Uj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAiyFq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKcPa", "types": "CwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vIzLPwNwvusWrF-AAIfmqA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF9Y7z5k14PsCcDvFyUC1kmlV3QAAAAABF8vTz5k14PsCcDvFyUC1kmlV3QAAAAABF8dWz5k14PsCcDvFyUC1kmlV3QAAAAABF6-Uz5k14PsCcDvFyUC1kmlV3QAAAAABFPfDz5k14PsCcDvFyUC1kmlV3QAAAAABFxl7z5k14PsCcDvFyUC1kmlV3QAAAAABGnUi6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oswz9Ug-CA3h0V4jS_UMxQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAACEjtkcEvvhuguaGYCmGWrnWRz1QAAAAACEjzEcEvvhuguaGYCmGWrnWRz1QAAAAACEjjd", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JI7mG0vgGSTA2uia9-1jSA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAAAaI0QtQ3x5Qtt-qibQRB-qEAAAAAAAAACEwdRZBOgt1iAFeehFpb20mAAAAAAAAAAJ0Cdt9wyWxnG2B-xGXMO6owAAAAAAAADYVx2H7p06nNerPKpNR75HGQAAAAAAAADbRo0xTS_XLS48c7gOvsUW-QAAAAAAAAAiRuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAA51NxYsnZ_Lwaqr0cHEPo0D185QAAAAAAyeS2vQ7EacG6CR4rzcFaNFEsTQAAAAAAAPfQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwco", "types": "CAMKBQMDCAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "o7QpavKpj9xFAwgY9jRDHw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAABbw1YwyK3qUUqndS_KOv4yZgAAAAAAAAAM9hAOHgmwWWwZTwO4K132QgAAAAAAAAAevtOmTuUGvKYiQRK_O9kHuwAAAAAAAACtBvLbND_0DrAH3Z_KTjqNwwAAAAAAAAAIiQ3-U2pFJokP-jlw4Yr9FQAAAAAAAAAJnxv9fnyzQgRP5y-sCtMEGwAAAAAAAAB7", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ecEckjK5VzUg46drS_Qbqw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADAEguNCcnmVGnXNe9OvbpF2wAAAAAAAAAyyH_ohM36PxcsspBj9HiisAAAAAAAAABUZZqFVPfJM-LkfzPbeaoP8QAAAAAAAAIJZ0TAJMiD_AqT3npr7YiRAgAAAAAAAAH4AJ8qrcXSoJbl_haPhlc4ogAAAAAAAAACX31knMc676bIIEUjaHa0MQAAAAAAAAADTozXD2NzMy0dEH0e02djYAAAAAAAAAEKeRQqY-uKn1zCanFBx5tpKgAAAAAAAAANLaFl4epk0Q6S_D_8elQACwAAAAAAAAAsd55u1lPodAfLflRouVTMDQAAAAAAAAAGd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAABTY5_LBGyHlB-tfqMCYDKlJgAAAAAAAABsGf_lEMENHnxizeBtMQocRwAAAAAAAAABsYYc1wpJMhBB0VxP9JiigwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAH1fqjB_amR59Lv13Nhle_NwbwAAAAAAENUZ", "types": "CAOLBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FAfemJcT6DP2ZiUG7J8bPg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RQ4cEvvhuguaGYCmGWrnWRz1QAAAAACETdScEvvhuguaGYCmGWrnWRz1QAAAAACETwkcEvvhuguaGYCmGWrnWRz1QAAAAACET4f", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yoM9M2D5c2dT8Htn9_oXJw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LJvcEvvhuguaGYCmGWrnWRz1QAAAAACIVgEcEvvhuguaGYCmGWrnWRz1QAAAAACIVaOcEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEM4XcEvvhuguaGYCmGWrnWRz1QAAAAACFxfW", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Org4Ct_UK1CJypQlyzN79g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYwsEP3PfgbWsvPc4Y_rpLYQAAAAAAAAAEbxUfVnyBZI_pROsv4HjqngAAAAAAAAAQku9JPnt9w-bpii9tERrqJQAAAAAAAAAW2CjidhF2o1l9AQQZ7O2_8wAAAAAAAAAVAmTcFForv1r91KDhJjsuQQAAAAAAAABh7BvwwtuvWC96Hl7IBrycDgAAAAAAAAASh3gGqWFKeM0FT-wjtm8F8QAAAAAAAAADsXYsfWKSXv-0U7gobefHRgAAAAAAAAETtv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABAXyIB1JXxkoOQjMae8CICgwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAAAL6VgifDx_vRg8rUeffXssrQAAAAAAAAAj5r8KpdovvRTGdEVpy5WVpAAAAAAAAAAz", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "O3Tz5fQYZgLM16jx54ZxgA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAADQI10upgJihUkX5rBuiOc-YwAAAAAAAAAJeIY-qGqHg9cG3y43iZ4UtwAAAAAAAAAFN1FJQJEQ02oDggDvBxaoVgAAAAAAAAAkhD65pGBm95Jf4hT0MMUBMQAAAAAAAAAGS06qc2WWdjyLzzAdWuSUuwAAAAAAAADmTl_Iodjc0LWexYa5MoBoHAAAAAAAAAAHntgZha7-wW1dtg73nm5MkwAAAAAAAAAmsCOApbaKyYNIvwXSt1bEIAAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAM6BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "r17pt9-WKBMBu-MRlixjjA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAAAeCY7ztddcPo6ofReMjIW4KAAAAAAAAAAWV0LEzKEJCTr2F7QdmvO8vQAAAAAAAAAESc-7DBv3SRDl6MaEnNIV4QAAAAAAAAAfjp89ntsvEyhpH5Dc3mZilAAAAAAAAAE5bBQ2fsMcPLjZdwrVTr6aMgAAAAAAAAAY8WTNcSpaCvjR8mgFDe3uSAAAAAAAAAAfDzEvX6Uki-3l_8Ej84P7KwAAAAAAAAAEtJvp7gDkktg9hHJv6LrXYAAAAAAAAAJIVyyKaeEtdlraCgV3b2jJawAAAAAAAABYSbaWcO00B2zTHJCaL1t-KAAAAAAAAAAyAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMTBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GwKVzdGAgri-K--qj0BBVA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADMYfPhlM7fpOuKzX3zIJxLMAAAAAAAAABQjgoPLq3mlyg7cW-Xz24hgAAAAAAAAAAQprbfaPuvU_n-ucbpjQxQ_AAAAAAAAAAj8DgYxzl_EXTxjPKMNwP9uAAAAAAAAABMIfyGrmJO4TRdP2mxshA5zwAAAAAAAADYlSZa8zsk4QhoSwhXWLlSWwAAAAAAAABD7fRblGdKRlNY9QjBlaIJIgAAAAAAAAFT2H_k10YmXOqVPwF2TEKeFgAAAAAAAAAf9HDIkFP73AO7MKaHUGb_UgAAAAAAAAAF9jU7BJvOf_vpcP8l4_vG5AAAAAAAAABGui0zBdPWvUVNqTnLKt7UfAAAAAAAAAAcreibzva0w_a6QPBPCu7Z3QAAAAAAAAARjYtuEYuQb3JZww9R88UtFwAAAAAAAAAQ", "types": "CAMmBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8tq3ImbcqHoL1eNze2XmnA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAADZgiwOUz_dwg5QpZ6rn_mtEAAAAAAAAAAabC_fEnt9OMT3icSYRSqeAAAAAAAAAAAGK61z3xaGK-rHqmHBTOYNcwAAAAAAAAARSjz2MvPusgDd7v_6YUXcPAAAAAAAAAC1J4eQqgwFH8hGziiVTbtiYwAAAAAAAACOMbaOnaCMmj3Z2Dka8DRidwAAAAAAAAE7vMJZLefDDDN7jSsJGIx5fAAAAAAAAAAxpz26RZIIszjYMjtzkRg4ogAAAAAAAAAMfkbxUTZgljnk71ZMnqJnyAAAAAAAAADtgHwfGc8BS0hXEJl9pqoeOAAAAAAAAAAEAyQblFWxoSNP2bxYt2XrVgAAAAAAAAAEqnNsUsoPsI60n_EtYkImaQAAAAAAAAAEmu5Oc1Hyn1NMNcvzChswswAAAAAAAAAEoaP5o4C3s6OD5zOUUgRXpQAAAAAAAAAB1YJsqYQ67tYh5uGGg0UldAAAAAAAAAAE7W2_sm2QgBa4k9InHLd1AwAAAAAAAAAEanC21MuzJFIo9hRmmTFyPQAAAAAAAAAA", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RLske_-faZ7wKdYb3WXphQ"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAABAHHYxe-SHgukLEpCkawSk1QWAAAAAAAA-srYxe-SHgukLEpCkawSk1QWAAAAAAAANKmYxe-SHgukLEpCkawSk1QWAAAAAAAA0MVYxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "CAMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GSSm9zDDOmvcEwNipfzOIw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSKr", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aqT_grJNIBLHd_G0Dg8D7A"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAeZ7IYsnZ_Lwaqr0cHEPo0D185QAAAAAAgvMyYsnZ_Lwaqr0cHEPo0D185QAAAAAAee0gYsnZ_Lwaqr0cHEPo0D185QAAAAAAeeJP", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tSmYASezZL-7l2EICLQFkw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kSHpn8pwAHiX47J0IzMtXvwAAAAAAE8PJSHpn8pwAHiX47J0IzMtXvwAAAAAAE789SHpn8pwAHiX47J0IzMtXvwAAAAAAFznbSHpn8pwAHiX47J0IzMtXvwAAAAAAFzBtSHpn8pwAHiX47J0IzMtXvwAAAAAACFJeSHpn8pwAHiX47J0IzMtXvwAAAAAACEG7SHpn8pwAHiX47J0IzMtXvwAAAAAAErV3SHpn8pwAHiX47J0IzMtXvwAAAAAACe9vSHpn8pwAHiX47J0IzMtXvwAAAAAAEqKL", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "O4mxiScDrXWyuZch_ISgwQ"}} -{"Stacktrace": {"frame": {"ids": "2iSc_7W6mQyfzHA8XRDUrwAAAAAAMJS92iSc_7W6mQyfzHA8XRDUrwAAAAAAeB7Y2iSc_7W6mQyfzHA8XRDUrwAAAAAAdGxJ2iSc_7W6mQyfzHA8XRDUrwAAAAAAdJkN2iSc_7W6mQyfzHA8XRDUrwAAAAAAdIuf2iSc_7W6mQyfzHA8XRDUrwAAAAAAeMF82iSc_7W6mQyfzHA8XRDUrwAAAAAAcLiF2iSc_7W6mQyfzHA8XRDUrwAAAAAAcc6m2iSc_7W6mQyfzHA8XRDUrwAAAAAAcNMP2iSc_7W6mQyfzHA8XRDUrwAAAAAAb2-F2iSc_7W6mQyfzHA8XRDUrwAAAAAATxUM2iSc_7W6mQyfzHA8XRDUrwAAAAAATx4t2iSc_7W6mQyfzHA8XRDUrwAAAAAAOLjJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQL", "types": "DQMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6iO15jj0vZmOpf_lsLTSaw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFbojlkH6U8-uq6rXJn3yJDAAAAAAAAAAEa0W4SIobOysiPgaw1gv_JAAAAAAAAAAQHrXUpqEQk4VDnpaZKgdbiAAAAAAAAAA9U2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAABU3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAABT6lTs6tzqWRzfV1LHX1Np9gAAAAAAAAAA", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_9EUaNCl3IuE7tIxwFYMuQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc5-Qz5k14PsCcDvFyUC1kmlV3QAAAAABcnaEz5k14PsCcDvFyUC1kmlV3QAAAAABakmCz5k14PsCcDvFyUC1kmlV3QAAAAABaBsyz5k14PsCcDvFyUC1kmlV3QAAAAABaBLIz5k14PsCcDvFyUC1kmlV3QAAAAABHZsIz5k14PsCcDvFyUC1kmlV3QAAAAABKB57z5k14PsCcDvFyUC1kmlV3QAAAAABLLQZz5k14PsCcDvFyUC1kmlV3QAAAAABK3KAz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTih6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinDe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnJ0g6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnJsR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi08L6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi0ex6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi0dj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnNGr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAit8t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnI8b6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "DQMUBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FN29r4iQqyKpKryFAHklNg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--RVXT4fd_WKeR1cE-hlLelCQAAAAAAC-7XmXT4fd_WKeR1cE-hlLelCQAAAAAAC-z7kXT4fd_WKeR1cE-hlLelCQAAAAAAC-1UKXT4fd_WKeR1cE-hlLelCQAAAAAAC-1BHXT4fd_WKeR1cE-hlLelCQAAAAAAC-1XOXT4fd_WKeR1cE-hlLelCQAAAAAACgaVYXT4fd_WKeR1cE-hlLelCQAAAAAAChwJj", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ExA0qEKb2y-al6iVdwwTBw"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACRuzKgtQ4kMk_MBWrPUAFqVnYywAAAAACRvAEgtQ4kMk_MBWrPUAFqVnYywAAAAACRvT8gtQ4kMk_MBWrPUAFqVnYywAAAAACMCnBgtQ4kMk_MBWrPUAFqVnYywAAAAACbQAkgtQ4kMk_MBWrPUAFqVnYywAAAAACbQYrgtQ4kMk_MBWrPUAFqVnYywAAAAACbM7NgtQ4kMk_MBWrPUAFqVnYywAAAAACbMVNgtQ4kMk_MBWrPUAFqVnYywAAAAACbMqDgtQ4kMk_MBWrPUAFqVnYywAAAAACbLW2gtQ4kMk_MBWrPUAFqVnYywAAAAACbLSkgtQ4kMk_MBWrPUAFqVnYywAAAAACa82-gtQ4kMk_MBWrPUAFqVnYywAAAAACa80OgtQ4kMk_MBWrPUAFqVnYywAAAAABqIcGgtQ4kMk_MBWrPUAFqVnYywAAAAABqINSgtQ4kMk_MBWrPUAFqVnYywAAAAABqQkXgtQ4kMk_MBWrPUAFqVnYywAAAAABqRPrgtQ4kMk_MBWrPUAFqVnYywAAAAABqRw_", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JpUjFqAsKBeLb9NfBebEOQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAao5nqFV6xhVekP5-uToPI32ragAAAAAAanZaqFV6xhVekP5-uToPI32ragAAAAAAW_-zqFV6xhVekP5-uToPI32ragAAAAAAaeaXqFV6xhVekP5-uToPI32ragAAAAAAaZDUqFV6xhVekP5-uToPI32ragAAAAAAXpO_qFV6xhVekP5-uToPI32ragAAAAAAXjXO", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eGK7xB80q6I8iYxZSFEE1g"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAGx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABW1vmWfRl7JvnIelrwmbOFDwAAAAAAAABTxKz6OkGVzOf5KmhaoK3F7QAAAAAAAAABaTMNVHETyzaTiTA3xRl8fgAAAAAAAAAS1t24RQWJoO3BXaJLZVT8fwAAAAAAAAADeX9iAJM3toZWX3uGKIS4WwAAAAAAAAJarUm6eKXC2r517lo4-7MF6wAAAAAAAACKfNhSD70xDQrz7J48eeJThwAAAAAAAAA5E-UV4Q5gHz5xBV_lbP0MMgAAAAAAAADZ", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8mfKeyebNB7GEjVrotPPKA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQJvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACeySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAYh-mcFcSefWaXpPLGLAmk8gAAAAAAAABsijeboCn6LOt0NOcmaRcGZAAAAAAAAAAH0I8cAvoTemt9EvN943sckAAAAAAAAAA_gh3_dq-X3ps5hlW-NYikEwAAAAAAAABcHYCPABbHg3v8ZSX1NQW6ywAAAAAAAAAC_C3zmgl0Bjr8nR0878NBsAAAAAAAAAALdhiUmvfDk2OXbcgaknkEMgAAAAAAAAAIOppFSDODTzgTHYJG_GWJMwAAAAAAAAA-zdNMqH5FJokP-kpdb9WNRQAAAAAAAAAJYMf1vN4Xj82X8azesbKqWQAAAAAAAAB7", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KtCekK_GfgQ-P7-c_JezYw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAAtSAAkutGejeRImCZXeWZ-1wAAAAAAAACLcDDKtM-30WtgKUZUhSPZowAAAAAAAAEfLT5lr845yiJBLJcYHx5FbQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgy8Y9sOCgS4ezmCzQojnXBQAAAAAAAABf", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NyRf8XlP9WjHePtKdUVEyw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_HL6OuA5BriS2w42aq9WRNQAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAcpSIXlNYnJYwCILAJFTEzSwAAAAAAAAAGTyuf4RNGIxt-ueaCsLj22AAAAAAAAAAXvSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0qlujNL7db72ZwWHkSPq1iAAAAAAAAAAa8tJujVK0pdTWlucWIQYskAAAAAAAAADWSXFZShc93P7Br4wzVi_TSwAAAAAAAABGl8by2NZ7WjCFmKmn5LkVDAAAAAAAAABNJj6ja2Wbkf1_R1a9nVWcUAAAAAAAAACJToVtc2P50kV-QGj3la9_ZAAAAAAAAABV5DGFi3MrQEDDo8fCYbA5hAAAAAAAAAAIHfMb4ib8WKiucqC90J7sSwAAAAAAAAAHsueTM-LYsBZU9Btl9NKTwAAAAAAAAAAEc8wp1Q45CdLtTNnj6qINTwAAAAAAAAAcuivmFtqkx0mSDLjpV5jf4gAAAAAAAAABRK8a3DzcZMuwoK9TpGXQTwAAAAAAAAA3hDeNHR-uaDqXexxBeqdlYwAAAAAAAAABNuqcOqANutL4nD8JjGfmlwAAAAAAAAADpNkwmPEaVAW4yiwUp-qSTQAAAAAAAAAM9qVi_GBt6qKT_kgVvmjrsgAAAAAAAAAJQR0Rwo9WQpPJ5JxFAcpyCgAAAAAAAAAIEo4iTXjSGrYjUV3g9HGWNQAAAAAAAAAGYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyGEsTGLCNH21piOrMPoln5uBQAAAAAAVgFD", "types": "CANJBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YtaoZwIzTcxhkVhNaJ4ybg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw2HtXT4fd_WKeR1cE-hlLelCQAAAAAACw1EEXT4fd_WKeR1cE-hlLelCQAAAAAACkHGIXT4fd_WKeR1cE-hlLelCQAAAAAACkMo1XT4fd_WKeR1cE-hlLelCQAAAAAACkMLi", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0a9NYjgpQ8iJm6UEGWaqBg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAeNhWYsnZ_Lwaqr0cHEPo0D185QAAAAAAy4ZLYsnZ_Lwaqr0cHEPo0D185QAAAAAAxYinYsnZ_Lwaqr0cHEPo0D185QAAAAAAX9uWYsnZ_Lwaqr0cHEPo0D185QAAAAAAX9n9YsnZ_Lwaqr0cHEPo0D185QAAAAAAgVVk", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XTk5UeO5E6dR53Or8LwcYQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAFJfinhoQfoECf6Q4HPC08YkAAAAAAAAAAqcn_0Dt8F1JGwazqn6MVOnAAAAAAAAAABDnuglYjSP_yHnOeoUpC43wAAAAAAAAAB3v2TU8A01iCPuVWdiUVv8QAAAAAAAAApL-_tQCaPRoXtazKap89hsgAAAAAAAAAKzSsi2NqIQt2uWzMgbkvEIQAAAAAAAAAtF7mdG6BLMSTCR7KnVMINiQAAAAAAAAC757Lr69jen66ZA0OdTMcNWAAAAAAAAAAszklodWMmXJtUPwoAk2fB-QAAAAAAAAAX0aWdJRfj2n3sVYiPeIlMAgAAAAAAAAAdiPoF_Ui5YRD0sJmeHgRlZgAAAAAAAAAEeVW9lCqHxlTfD5Rt7tiZeQAAAAAAAABliWgDlwY4VhfAGTKvvPjL1AAAAAAAAAAKzSsi2NqIQt2uWzMgbkvEIQAAAAAAAAAt3rLZd5lPThQHbPceRXAomQAAAAAAAAAHDsa9Q2QtioiM8dEKYkXBmAAAAAAAAAAZUeUQgO6mk4v2Tf2h_dZ3VAAAAAAAAAAHXSMznkRt2WAdGjlwbap95QAAAAAAAAAHMJcsrhwAFXYIvzoys3GDvAAAAAAAAAGQrr9ydfUnJMumBkVuKO3DEQAAAAAAAAALOmwXLYgK4mB4VPSorht2jwAAAAAAAAAKrovdyrVTiLcrORXAjvCRXwAAAAAAAAAPTmF3E40HD59IshdvdO9cWAAAAAAAAAA51z71Un1VHSd46-saNDpLAAAAAAAAAAAFReyju0By9wxqZBnf2BDPsgAAAAAAAAAFx1HQQpXsV1Mzj5_MteA7BgAAAAAAAAAGiPoF_Ui5YRD0sJmeHgRlZgAAAAAAAAAEeVW9lCqHxlTfD5Rt7tiZeQAAAAAAAABliWgDlwY4VhfAGTKvvPjL1AAAAAAAAAAKzSsi2NqIQt2uWzMgbkvEIQAAAAAAAAA6EFoOI6BMp-b-Y3eJPVq_QQAAAAAAAAAhvkRVyRvn1KU329F76tmTVQAAAAAAAAAHe1ExWfDjJsrVt-lPUdyYlwAAAAAAAABja7duT-3ekt0-CTy-Ttf1FAAAAAAAAABY6hwCzvT6Vb_QLcKzOacpsAAAAAAAAAAlI90CtZp_BZBH2tSRSUMrrgAAAAAAAACFkpBi8LFR3RTjSJqFuljOuQAAAAAAAAAAhrCIM-i5cm0sSd-oVTZrsgAAAAAAACZBwEIfl0pGBuepuUcTwdKc2gAAAAAAAFtjwEIfl0pGBuepuUcTwdKc2gAAAAAAAEBd", "types": "CAMqBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EijkmEEZKl52rGWO7h0aXw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZzA", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EEeUn8j0Iub4lrEKoW-8Cg"}} -{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwAIU6tVKI4mSYDEJ-ABAIpYXcgAAAAAADAxg6tVKI4mSYDEJ-ABAIpYXcgAAAAAADH176tVKI4mSYDEJ-ABAIpYXcgAAAAAAFqnG6tVKI4mSYDEJ-ABAIpYXcgAAAAAADS7g", "types": "BQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "S_m5ubmad7O5PrXj5rj9Lg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAE_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYcJ5VgsZvSbEBF2_k2qcfnAAAAAAAAAALML0pN8-bI2jezXitVRzNNgAAAAAAAAAe3APbfJs5SvbH_F9r5lo_3wAAAAAAAAAFfnFonGQxpm_e6wtqJ2HwRwAAAAAAAAAEYM_gl0OeNbTAtY8GRC8UVgAAAAAAAACbTdvyEkBALxwDoycOnD-RjgAAAAAAAABkYM_gl0OeNbTAtY8GRC8UVgAAAAAAAAAeOWoia3OO91L6Q6k2Ypn2XgAAAAAAAAAqRq9zkaF6sUD5FfpUB-KQEwAAAAAAAAAJyGP4qHVV9gP7oOP9pntYfAAAAAAAAACIn89kGiBdFucX6T4kdjXe_gAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVCm3FF_uDQeutHnQs3UGjlgAAAAAAAADAwMduPEe0g_53DcRkATCeKAAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAABNFzRiu7WoiAEZKSMqwfwi8wAAAAAAAAAQGaTWB84HBLHkoSJAOUFJ2gAAAAAAAABV", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "x5-D1ZwWartfLwFKR52-CA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFJmXT4fd_WKeR1cE-hlLelCQAAAAAACxFTwXT4fd_WKeR1cE-hlLelCQAAAAAACxFg5XT4fd_WKeR1cE-hlLelCQAAAAAACjPukXT4fd_WKeR1cE-hlLelCQAAAAAACjP72XT4fd_WKeR1cE-hlLelCQAAAAAACijUT", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mqpWTSIkoRMfDHbRs_VWxw"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD49fSZxl-YF9wOaedogsBMtvRAAAAAAADiW6SZxl-YF9wOaedogsBMtvRAAAAAAAEXO9SZxl-YF9wOaedogsBMtvRAAAAAAADSVQSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAADz7p", "types": "UgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wl2yvlpS90Ypoy2M-skpww"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAZoBfvSakkahGPsqsyBzk0RGQAAAAAAAADwC6Cl1mEselPLNxdVax9QrgAAAAAAAAABCgYc8rCJCuV599jzzhx8xwAAAAAAAAAK6MrpMhLvTaclBlHJblL7qgAAAAAAAAACzXMlTgtL55irR_wWhXKwuAAAAAAAAAAMPnrh-Ooxmcdjw5G0pB9e_wAAAAAAAAAtJYDhCBqV4GPq7uqp50dsDwAAAAAAAAAHuoS8VlPflz8QSK7BPMOvQQAAAAAAAAA0mB85Af8LXB7vdQUnyF54IQAAAAAAAAAI4ExmIEmG5cbeqkrcSlhsEAAAAAAAAAAH12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG7kZxFgbuXnmF5RM9H_z_ggAAAAAAAAAefMXwmZZHoKY5ug0oBlnUxwAAAAAAAAAff15ZZuvJposXWOcmbKQgxAAAAAAAAAAftL230chqNUuroXAS-gtapgAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBAZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMoavQ7EacG6CR4rzcFaNFEsTQAAAAAAATs0", "types": "CAMdBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fzPOzTEXdQzPan7rC__T_w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-BdSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZwO", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vvJfyuw2NkjY_OhqTi4dyQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAGyVtVXhl6s6URamlTOMTdcGgAAAAAAAADcdxb67a9pdOnwKSyUl3yo7gAAAAAAAABujtEB8q7ZNk5LwicDPNbPVQAAAAAAAAB8_20iQw_1BgBh9m8HkEpgSwAAAAAAAABmYIW3ncvjtyZJ9wUJFfRCfQAAAAAAAAB2ZccN0t7i0EOtwJSEeQbbkQAAAAAAAAIFc1Yo_OPgMzqB1GnTa4udVAAAAAAAAAEhQBbvUVLpPH8FdglduYsmOwAAAAAAAAAsyFBJd9cdNdUZI2XG5UyXfQAAAAAAAACUKoPSx-4xtPc0ysy04w1-LQAAAAAAAAAc5C80h-knswVKajvAROSklQAAAAAAAAAIxj0ZaJOqA6C8jp0rhkv2qAAAAAAAAAAUssKyyxC-Fi39XpSwjyky_QAAAAAAAAA4", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "m89QqjE-qUNSc3kuFiQzbA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcdeyQ05GmzOw19AUsDzeIcAAAAAAAAAAA", "types": "CAOMBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "T6-ZIWwGzZExC78sWJIpyQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAqeSs1xpPdaQi6BA9wz10SrwAAAAAAAAA5TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABbXyIB1JXxkoOQjMae8CICgwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAACS3c5m8cD9re2vtvvwMoBnFAAAAAAAAAAISNDzWiYDmLZi_Z1ZVETLoAAAAAAAxSmCSNDzWiYDmLZi_Z1ZVETLoAAAAAAAyKc4SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcctr", "types": "CANlBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YHZe7xzP_hYpSdyN0kQ8tg"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAAAKg9L9Bd3XIiGWasJdN8trI5tgAAAAAAAq6TL9Bd3XIiGWasJdN8trI5tgAAAAAABckC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "AwMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5oS51f0z7QyabKQzOu2RYA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACl", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-KIwcLrlxoEZYnIYFs7xDw"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACRuzKgtQ4kMk_MBWrPUAFqVnYywAAAAACRvAEgtQ4kMk_MBWrPUAFqVnYywAAAAACRvT8gtQ4kMk_MBWrPUAFqVnYywAAAAACMCnBgtQ4kMk_MBWrPUAFqVnYywAAAAACbQAkgtQ4kMk_MBWrPUAFqVnYywAAAAACbQYrgtQ4kMk_MBWrPUAFqVnYywAAAAACbM7NgtQ4kMk_MBWrPUAFqVnYywAAAAACbMVNgtQ4kMk_MBWrPUAFqVnYywAAAAACbMqDgtQ4kMk_MBWrPUAFqVnYywAAAAACbLW2gtQ4kMk_MBWrPUAFqVnYywAAAAACbLSkgtQ4kMk_MBWrPUAFqVnYywAAAAACa82-gtQ4kMk_MBWrPUAFqVnYywAAAAACa80OgtQ4kMk_MBWrPUAFqVnYywAAAAABqIcGgtQ4kMk_MBWrPUAFqVnYywAAAAABqILOgtQ4kMk_MBWrPUAFqVnYywAAAAABrnxF", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JhzC993A9_3n4z0mG1o_nA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcM5D", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Mqr5kDewzIwNjBe2t0vTXw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEOVyw8gVqzTShmjN9h4q85gAAAAAAAAAIjYKah-GaJpbI-jAwYcFi1QAAAAAAAAAIbu6t-WTb-nsfb-QwFBEV_QAAAAAAAAA9D0rVr9r2i8CRuvzOSp3RnAAAAAAAAAAgLqD7ENQ-oxpbwiEg5RuQyAAAAAAAAAAFpE_XF-eq0tBl0fP7Y7zrSwAAAAAAAADY8uVqqmQs2krZT40-iqFC3AAAAAAAAABd", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yU-qPn31kCvhNCgJkxCSEg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdyPcEvvhuguaGYCmGWrnWRz1QAAAAACFlT5cEvvhuguaGYCmGWrnWRz1QAAAAACE3XccEvvhuguaGYCmGWrnWRz1QAAAAACFwXk", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nNScNuSTrpa5-8cxBl8OiQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcM9Xltn711KKFcrKCAYh_ZgAAAAAAAAAE8s5hM6TvWnoP9XP3e8VVVwAAAAAAAAAHwh6xTQPkmoOUUrUOOnnNsQAAAAAAAAAgAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAOQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "E0PbyjdVN-U5rJIxbRMmXA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMfXsXT4fd_WKeR1cE-hlLelCQAAAAAAD9Tr0XT4fd_WKeR1cE-hlLelCQAAAAAAD9EBnXT4fd_WKeR1cE-hlLelCQAAAAAAD9EhEXT4fd_WKeR1cE-hlLelCQAAAAAACgaWJXT4fd_WKeR1cE-hlLelCQAAAAAACgUTFXT4fd_WKeR1cE-hlLelCQAAAAAAChz7k6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_NQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaQ66tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZmt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKTe36tVKI4mSYDEJ-ABAIpYXcgAAAAAAI-JN", "types": "DQMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g-gvaAwuroQsfSOFcGq40g"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMh29XT4fd_WKeR1cE-hlLelCQAAAAAAC-z7kXT4fd_WKeR1cE-hlLelCQAAAAAAC-1UKXT4fd_WKeR1cE-hlLelCQAAAAAAC-057XT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bihc1FtLJWO9OKz_9ub0mw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAACqGMNSe-6LTlpuiQTu86RdbwAAAAAAAAA1wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATmQVHcTFXg4JaHxKFUu2SNAAAAAAAAAAK0qdPtfCOXWtTMQkqPpfTpAAAAAAAAAAD4pD3shcvlMj_8ybo7T2TVAAAAAAAAAFCS0Vcinvs4UXd1rhNSjovpwAAAAAAAABVbAlNhxIUaCZOzq5Go2-fDwAAAAAAAAAIUNi2PfJJ-vKG8q63OaknIAAAAAAAAAHcPDxaYxBC-l8PtK0orl2RQwAAAAAAAAETSZD9YVGYcY6t7-F09t_klgAAAAAAAACDMxRnrnRp5fRRlUEkyuK1rQAAAAAAAAA8LNiGyjoSSwLd2vmEwDcgqQAAAAAAAAAtRrirhtozDrKAAydohpmvZgAAAAAAAABXyJIhq1AV1i5dfSljhhE7KwAAAAAAAAAGcEzK6HfXk1srPlYKWH6y-wAAAAAAAAJBNyFYG970OiNszXfRwkg2OwAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5W0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOTM5vHmZRGlLyNtB_jDhdvQAAAAAAAAAKXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAV61vrmCVoJZp3HjBxIMFrNAAAAAAAAAAFF7lATn_bFhRDcY0Z0OyPwQAAAAAAAABoY5AhuW5zTFbvkEYRGrJ6zgAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAZHpec9nZGwrrhoUYM845NAAAAAAAAL7r_QYAzQdAagYTCI2yUMpa7wAAAAAAAO786tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSog6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmkK6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXfZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXbv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAROzI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgJ7", "types": "CAM4BQIDCgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sN_SI69IRP_CTM4xM4ZnyQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5WiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATeCaKzXzVKYqqs4wMxzAp3AAAAAAAAAAKxzEX_ryOXWtTMQZYJuG-1AAAAAAAAAAD2XDg5u84AThLncvQweEa6wAAAAAAAAI596H7IcrFu8Zg3f7WMu_LagAAAAAAAAAqztj5Yc58Fi74AN4K12GxCQAAAAAAAAAIeXp6ZabxmzABDzP1KpFPrwAAAAAAAAE4omklHAPZnqPNJHwVpvh2vQAAAAAAAACrqwPQ_i5WGexQYU8q8eVTyQAAAAAAAABzoSoGUxBn_MfT_4Ncm-yGtQAAAAAAAABGFjooOB7UnLRNkyMXgznjWwAAAAAAAACS-3Q9G0-gEaLYyR0fofTdFgAAAAAAAAATkC4ZWtnGZdVrn9r8RWDIrgAAAAAAAAAuVCZTpLkuh_k-G5uf32ejyAAAAAAAAAADOBr97qUzqwJUSLJ5h_ag7QAAAAAAAAFqTEfOCFPBfhCJGNGF8T-CCAAAAAAAAAALgQVKrVY63cW2FiLmkopdkgAAAAAAAABO2s_Q7gaAVum2n4lgmkRNuAAAAAAAAAAFh9uKx3HFLoY7Xs1QyYtYSwAAAAAAAAAMiZg5QETm-DfAeWtvNobLmQAAAAAAAAAtSM_ELHsuqjmdLWLHOp2JxwAAAAAAAAAGKdC_Mj-l5hZHb-fmCsamaAAAAAAAAAA2h9uKx3HFLoY7Xs1QyYtYSwAAAAAAAAAMrUtwn4XIa7ORmBTA-LlbnwAAAAAAAAAX7wb_zxGk1rY1-IahtRCQAQAAAAAAAAAUGzGkXez8RTlqjPJQDxzvigAAAAAAAAAGe2K78dgmsrxIH1rDnjF-GwAAAAAAAAAH8XyHXMQijJkNwu4Uf2gtWgAAAAAAAABTvqs9jnSjNyh-nZ4ZqxUaIgAAAAAAAAAh4UCPpue6CVok_lbZI08fLQAAAAAAAAASbY3RtTMNEnhvgonzWleY4wAAAAAAAAATvTiT6RQHSjUNEBuIvfofKgAAAAAAAABRk-iHhugN07psoCA3oD8uAgAAAAAAAAAOJDnO1OdT3mBLtMfsODhVKQAAAAAAAAAFI90CtZp_BZBH2tSRSUMrrgAAAAAAAACFkpBi8LFR3RTjSJqFuljOuQAAAAAAAAAAhrCIM-i5cm0sSd-oVTZrsgAAAAAAACZBwEIfl0pGBuepuUcTwdKc2gAAAAAAAFtjwEIfl0pGBuepuUcTwdKc2gAAAAAAAEFa", "types": "CAM5BQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AqW4O0lT_YcKP7qw6bzS2Q"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA-V5bsTGLCNH21piOrMPoln5uBQAAAAAAcix0sTGLCNH21piOrMPoln5uBQAAAAAAdtJvsTGLCNH21piOrMPoln5uBQAAAAAAdsqq", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "itGspDeyDyUECCgRGfTEng"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADB0YTZ3CKaS4aU08RhYA19y5ITQAAAAADA21XZ3CKaS4aU08RhYA19y5ITQAAAAADAz4DZ3CKaS4aU08RhYA19y5ITQAAAAACsr6sZ3CKaS4aU08RhYA19y5ITQAAAAABzxf3Z3CKaS4aU08RhYA19y5ITQAAAAAB0DJP", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gL8V3iQOuoY8AzmvM83Gdw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7r0XT4fd_WKeR1cE-hlLelCQAAAAAAC-0MuXT4fd_WKeR1cE-hlLelCQAAAAAAC-1HEXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUj4f", "types": "FAMDBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g0c6MsN22BR9PeSRno8jLg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-wCEXT4fd_WKeR1cE-hlLelCQAAAAAACkR-sXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdMD", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9_N4V4eyXNvSUkP63EDRaQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF9Y7z5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF780z5k14PsCcDvFyUC1kmlV3QAAAAABF64Dz5k14PsCcDvFyUC1kmlV3QAAAAABFPjyz5k14PsCcDvFyUC1kmlV3QAAAAABFxi1z5k14PsCcDvFyUC1kmlV3QAAAAABGnUi6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEll", "types": "CAMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PSEpVUXXmwRmI0xaCh6Phw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAO", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1deqhHF4DdD8sVl-g6p7dg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDAIcEvvhuguaGYCmGWrnWRz1QAAAAACuEFvcEvvhuguaGYCmGWrnWRz1QAAAAACuGfdcEvvhuguaGYCmGWrnWRz1QAAAAACuFZccEvvhuguaGYCmGWrnWRz1QAAAAACO_JQcEvvhuguaGYCmGWrnWRz1QAAAAACOoWccEvvhuguaGYCmGWrnWRz1QAAAAACNjqHcEvvhuguaGYCmGWrnWRz1QAAAAACLMXkcEvvhuguaGYCmGWrnWRz1QAAAAACIHr6cEvvhuguaGYCmGWrnWRz1QAAAAACF-UEcEvvhuguaGYCmGWrnWRz1QAAAAACGumncEvvhuguaGYCmGWrnWRz1QAAAAACECDV", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wPMMl0ctYrNZIQpMrKFAHA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcoiHXy47Qw5euydEoPUexRgAAAAAAAAAga67hy6D4_aH__IrzfMid7wAAAAAAAAABruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZf4KmPLa6_uw8gRgiw9EUAAAAAAAAAE4ihprad0bkU-u2IU9StodIgAAAAAAAAEqfmVqFyGK_erbPbR830tm8gAAAAAAAAAPXgJxJ-tB1qb-u2fqUxCQQAAAAAAAAABEh4Lh6GnasWPDlVelT8lJQgAAAAAAAAAjpv2BnGF3DU5EF7_9vBhh5wAAAAAAAAAjj0GTyJD3lYhDegN7k1VG_wAAAAAAAAAI74qEjIejJXcKrFSlQB8PhgAAAAAAAAAFJQPywLxOZsn4VW068VxtgAAAAAAAAAAFvKQgPQ0wjIftRUZyC5K9ywAAAAAAAAANZf0w4S_WIxaQJn4-TjKTOwAAAAAAAAApu84jH0Fi4giPpR8JCVg2uQAAAAAAAAAFeEsPvNGYH982Mv0mPexpzgAAAAAAAABKpCzfcBWmfuBy5Y8wBxn9kQAAAAAAAAAMFGGSuaVpuuMHaXUzmpPEWQAAAAAAAAABUT1CLo52HplxPz6JwcoqCQAAAAAAAAAJlfjVNXK_x0C4X5O62984zgAAAAAAAAAFZbvmFtHvqv74jokq3XvBkgAAAAAAAACS2RfKfVPwyqKh_r9U1oFgUwAAAAAAAAAfTJNGpZ5zrxHIWzJGPowW7QAAAAAAAAAEJvETSNUFmQzhSgQRV87p_gAAAAAAAAAbe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACWZXdWkChUCjmBhCYfjJANcwAAAAAAAAA40s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQ", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "x4JagFwIYKM4hCWjdkk5Pw"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk6jz5k14PsCcDvFyUC1kmlV3QAAAAABFjYEz5k14PsCcDvFyUC1kmlV3QAAAAABGgQQz5k14PsCcDvFyUC1kmlV3QAAAAABF400z5k14PsCcDvFyUC1kmlV3QAAAAABFkWAz5k14PsCcDvFyUC1kmlV3QAAAAABGZW7z5k14PsCcDvFyUC1kmlV3QAAAAABGTAQz5k14PsCcDvFyUC1kmlV3QAAAAABGSaZ", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "K-Ytw62_KLFXRAkcUu6qRA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAAC6S2CYgbm2TSSx5DQSXabwsAAAAAAAAAAEKqmd4_qSYjz2y1UHS09p3wAAAAAAAAAPXsPRRgjkXM-VJurhpYWAKgAAAAAAAAAbYBsRiOSYyzJilvtbmeHiPwAAAAAAAAABz5HuulsAB8YTAdgrpUuY4gAAAAAAAAAGKqmd4_qSYjz2y1UHS09p3wAAAAAAAAAPXsPRRgjkXM-VJurhpYWAKgAAAAAAAAA4AAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bZa8a_Yg4q8eagHioqnf0w"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAABWkxlPGvmJaixHgVVGYdR3ZAAAAAAAAAAUFlEmrMapoRVqavpRHEspQQAAAAAAAAAFwKq13sxbA1Q177k-e_lIpgAAAAAAAAABPp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6IaGOpXjXn5EHF-K9uwEUPQAAAAAAAAAErU2gYsZPORRvUmAaUHS0ngAAAAAAAAAIPp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6TsD0RrBnIgAER8sz4r-hTwAAAAAAAAAYKLD8PZEt_1eVGIRfxlTGvgAAAAAAAAAl7LziU26eINk4gGAzQhjzRAAAAAAAAAAhum3P1hPKCaJ6ax0qMqoxPgAAAAAAAAAIEzXhqpVZbBVZ4WOGuhdAKgAAAAAAAAACchydKuVqrfNMM3N0EvrXLQAAAAAAAAAHPp5-6LF2RVa41kvu_cOd1QAAAAAAAAC5TIkb6zg3gle8GrEEDlxEHwAAAAAAAAAEI0MmO0q1Sl0Qsu7Q5liiZwAAAAAAAAAzI0MmO0q1Sl0Qsu7Q5liiZwAAAAAAAAALgLxo4P9G1lrSGzP2Az28-wAAAAAAAAAEBMCbsXB1fK39FyZz1zKsqwAAAAAAAAAA", "types": "CAOxBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "v9LkFqrZacA9LLL7WL6jjg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXUptYxe-SHgukLEpCkawSk1QWAAAAAABXVjkYxe-SHgukLEpCkawSk1QWAAAAAABXVBsYxe-SHgukLEpCkawSk1QWAAAAAABXYzoYxe-SHgukLEpCkawSk1QWAAAAAABXSQtYxe-SHgukLEpCkawSk1QWAAAAAABXRvJYxe-SHgukLEpCkawSk1QWAAAAAAAEXn7Yxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG", "types": "DAMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dQoejHiZXRe2q1PMrGN9Aw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAATo2Vqo1n4TLgDJq9tPgwAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARxBGCEPBdnG6Mds1nJf4tcQAAAAAAAAAGzXf1O_8jknZjcKGu5cQjJQAAAAAAAAAgPHkw6KCW6WHcDhD0gWZvxQAAAAAAAAAXqjkbzJCs46utKAIQU_ZjYgAAAAAAAADmaG38C7AQR-wEDFFefkRnfgAAAAAAAAAsdawGhH-93Zf3Xci2M9UlFQAAAAAAAAAMPhHweSUk-rcHLCvi4mySwgAAAAAAAAEsryiaiFPVyjm4XARK10gZ3QAAAAAAAAELu4IYC5TN1ydgkWzSPfggOAAAAAAAAABSTOT6Kzt9cNfqtt7rfwzzSwAAAAAAAAAElu3U19P1ddOrJLDu-spLOgAAAAAAAAAHSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAiHAV7Zh5H5JQPHONsGvZ0PAAAAAAAAABXWb65uaTCBYe2MCZtuMHkqAAAAAAAAAAWdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFyOUU-MIrBJXHRczrclIQpAAAAAAAAAAIZLVm2Yq3JzpECVJuRqNdawAAAAAAAAAQrs-7smSxpcCpQ4EcnQyDfwAAAAAAAAAdgkppypvMO9S8VR3D3H8lzgAAAAAAAABEdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFwn4niB8FwIlhJ5LBYr9JzQAAAAAAAAAIZ8eDanRMy6l7sesw4dYkqQAAAAAAAACzkTJVCBjDfmFAPRrGLStltQAAAAAAAACPPyY6qsH4ByVjV1tK07pF9AAAAAAAAAAIm2-tH33cq1FP2Q7Is62J0gAAAAAAAAAC-uK72e9VYGmyoGlh8BBvZwAAAAAAAAAIQ1b7jdbtxavHFLXq_nCrrgAAAAAAAACKpxHkQ9M1dNDXsuZ3PuZiaQAAAAAAAACHHHYed7pYCVK68jLMEjdhPAAAAAAAAAAYyXWFMIbkwU7jqv0ggmjvVAAAAAAAAABHVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAApOzkHkS17HRu8c3H4oJbrdwAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFmKVsnuGyVSIshrQFdthLlAAAAAAAAAAU0cZiHBBWN2vYtEyCZ5X5wgAAAAAAAAA3pzTcRcencDxd0mEO6HA0bAAAAAAAAAAFdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFMwojP6II8_EGiMNSmdsFxAAAAAAAAAAQLrT96WuiUXgKg4BgtAP98wAAAAAAAAA_dswq7UFB-c5kE0TfryCD4gAAAAAAAAAF3KtHAXnUn2qKToxsxyFz6wAAAAAAAAActLWCyKrEBYGzX2N5W13-8QAAAAAAAACnHs84X9WR2gx5bBItVVyJWAAAAAAAAAB4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFO4XFBmuHlVXJh4TIk5LCDAAAAAAAAAAA", "types": "CANyBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-iLOmSM0bOvxtv9W5h6VXQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7RXT4fd_WKeR1cE-hlLelCQAAAAAAC-pCkXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi94WXT4fd_WKeR1cE-hlLelCQAAAAAACi98FXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwWtXT4fd_WKeR1cE-hlLelCQAAAAAAChsdpXT4fd_WKeR1cE-hlLelCQAAAAAACh1LY", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4NHR-vq-GiKf-T9dij8d0w"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAAAtt2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAHIG1OnoGXN6zXJZoQUHRmxAwAAAAAAAAAxYEThj3UEuGl2wDiJSq9vSAAAAAAAAACqZou-EwmpdzrcXx7eij10xwAAAAAAAABPIdkGKdrrMvbrgpaqyJ-rigAAAAAAAAAJUpqzzk59PbxypyRs4QkNMAAAAAAAAABTN1R-9DGIZrDXK9x_wnFgtgAAAAAAAABD7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAAB3ZTYW2hueb8qo9sBuOsIdRgAAAAAAAAAn6HagrPNegEb1JoaDvxlnywAAAAAAAAAp5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAADT1TcD-cYA4xs7rqA_y0alsAAAAAAAAAA_To5h_VPG74jZVr_rPWhSXwAAAAAAAAAEPdntB36p_DeKmNIFQmfwvQAAAAAAAAAU", "types": "CAMmBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gD23Bd8kEVujP5Tq3uPRhA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAAC6S2CYgbm2TSSx5DQSXabwsAAAAAAAAAAEWekP7cILEpMGZHEc4JbsIQAAAAAAAAAPTWlgCotVAvCNPwZcQGJDTAAAAAAAAAAPYBsRiOSYyzJilvtbmeHiPwAAAAAAAAAIPmdOVhDmQHY_qzC5-senSAAAAAAAAAAb9FwE8rS4gVnMyyuwGs3-uQAAAAAAAAAEpGnazsZ860KF5mJkmXxBtQAAAAAAAAAEVYXzVa4RgSiIVP87R36OaAAAAAAAAAAXppgfijHl7Ldlarmt7iuvVQAAAAAAAAAPvTamegouNfgIEDQBtCfkUwAAAAAAAAASVYXzVa4RgSiIVP87R36OaAAAAAAAAAAXppgfijHl7Ldlarmt7iuvVQAAAAAAAAAP-tz_NBMzEGSH72viykreUwAAAAAAAAAETAeiWwMSdIb_W33qqCF-5gAAAAAAAAATTmmeF9aJ1y9tWPURK0MO_AAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ja9MBlCW9JbhLw8tshjLeQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAO_BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qBcAPztwjs-VUIEIDjbDtA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAvspzm-_Ca31VwijYVQAZSLAAAAAAAAAB7TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAAA4_nvNcRJCfxwthC1TL7U3ZgAAAAAAAAAE1NKEit4WFBpS_IB-fxuxYQAAAAAAAAAA", "types": "CANfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EVbkX_ePnzMrnOl-TBl5FQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApygiinZb-VL-5X6K63nWolQAAAAAAAAAFsPRIu4G_UqOumyaMlOEsUwAAAAAAAABco__lFhTsOKstKDAfxbDtFgAAAAAAAAALJTnRsTPd7AHDTE96DfHcfgAAAAAAAAACTPgk3CweWzO9tVWjSu3t6AAAAAAAAAALGMA756PSHo5B_YmPM9fH1AAAAAAAAAA0w9EvqgSUrfSjTDJRVa3cFQAAAAAAAABNNHZIb934ydih1IKLBqCI5gAAAAAAAAACIwsijQDbvPiBVknFzNnSRAAAAAAAAAAJvfb9aCFliLFmJCtvbLn8hAAAAAAAAAADC6hdCXqj0oyVHhHOvhKmxQAAAAAAAABJ7-NWIMSLKY69QheXospWHQAAAAAAAAAEGOrFnkqGTEzDlTO1qewmxwAAAAAAAABQBA250vvzivD0xU5n0tBlVQAAAAAAAABngJGX9YLt4oQVT1mGe0oQGgAAAAAAAABPgdK-Z7OiQJ4-Vu9mxjvSjwAAAAAAAAEW7aQoN_s8X04jyh4gpnKxaAAAAAAAAABRcblhwFQdNeQr9L4l7DVdpgAAAAAAAAACxP8BEtTROcQjINLBdr_0HQAAAAAAAAB6eRkjYZu2KBOHIp1IQSjwWAAAAAAAAAAM1cGaBM0-rtiZfTyhOoVgPgAAAAAAAAAO7kmZ2O6hOV9dpjs-47j1SQAAAAAAAAEc5j2bttkvltKbwfcKsqCLqAAAAAAAAAEBcT0xsbXYEQkQw_3ez7RUcAAAAAAAAACc3xESPGl_P5B1-cPmnX20jwAAAAAAAABIC1-BZTtjTU0Wu8oyxUu-uQAAAAAAAAANk4CwdU4CSTQIafuMOuHuIAAAAAAAAABONpkAijRuPUgJZHGSXwsZ5AAAAAAAAAEdgemaIHpLM2s8vpy8JymkuAAAAAAAAAAsplH_V-PEqLjaIWhbgt3E_AAAAAAAAAAwy9r5AB5eu0abSELV1KFtjgAAAAAAAAAF", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3dzkAiyt1YVI-og1A_HKMQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-9R0XT4fd_WKeR1cE-hlLelCQAAAAAAC-xp-XT4fd_WKeR1cE-hlLelCQAAAAAAC-tNEXT4fd_WKeR1cE-hlLelCQAAAAAAC-hiKXT4fd_WKeR1cE-hlLelCQAAAAAAC-hZZXT4fd_WKeR1cE-hlLelCQAAAAAAC8k6-XT4fd_WKeR1cE-hlLelCQAAAAAAC8tjlXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8suKXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8sfIXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAAC8sfIXT4fd_WKeR1cE-hlLelCQAAAAAAC8rwCXT4fd_WKeR1cE-hlLelCQAAAAAAC8r2pXT4fd_WKeR1cE-hlLelCQAAAAAACjodA", "types": "GwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "L7ZSY8z08KFXsns3lbxH5Q"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAAKsF2L9Bd3XIiGWasJdN8trI5tgAAAAAADQMCL9Bd3XIiGWasJdN8trI5tgAAAAAADRg-L9Bd3XIiGWasJdN8trI5tgAAAAAAB9wqL9Bd3XIiGWasJdN8trI5tgAAAAAACA6UL9Bd3XIiGWasJdN8trI5tgAAAAAAA2C1L9Bd3XIiGWasJdN8trI5tgAAAAAAA1-h", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Hpl7qJJwhIXHDYYdvHuzLg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAACQUBpN-E7Da9pw7aCfqoKMJQAAAAAAAABgZyityGDpQJw1YigaXArSXwAAAAAAAAAFy9wAruXr5eENJ6q-yQaEgwAAAAAAAAAIhmcQZSO0MWvUeViJZfR2DwAAAAAAAABId55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsSidn5oJ7A2M_efsiHDz05QAAAAAAAAAT0_jShB-DuV77HIBPKqBRjgAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEXnZcAdwBOPPRQ2hQm4YWwWgAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAACb2vX1VQ8rxHA7GBHUrWVCPQAAAAAAAAD1zFSfhqKIl5qiNKPNSf1fYgAAAAAAAAB_", "types": "CAM0BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7iLZSCd-GhxzDJmUOWlltQ"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD49fSZxl-YF9wOaedogsBMtvRAAAAAAADiW6SZxl-YF9wOaedogsBMtvRAAAAAAAEXO9SZxl-YF9wOaedogsBMtvRAAAAAAADSVQSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAADznN", "types": "RAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8T064malfbI6yltLIiW-8A"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbeuIw_I7HzcVMEcOaEL-XEgAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAABdynFllp5CrPbAGyx1JneoOgAAAAAAAAG7u5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAAAaLiaLGbucpqFQXncldF_Y7gAAAAAAAAATNClnX-WugtIozBMJf4sI2AAAAAAAAAAQyImdtjjCMZhJ-nQQIrKkrAAAAAAAAAAIiax9YXpVBWB7dSlpz7WGyQAAAAAAAAANvK5xx5aYAx3dkNQ-31myKAAAAAAAAAB69ScOlSS2fIyPZ7ygebwKSQAAAAAAAAABJZ0Ddd6ZLVSO10SfiBFsqAAAAAAAAAAB14InJKOec9dSO7frpfbiGwAAAAAAAABf", "types": "CAM8BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vsyWJacYf-Fc3uMhBCP2gA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlPqcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUoi", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JJHpr4fLpWoSKqg-aUPBfQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc5-Qz5k14PsCcDvFyUC1kmlV3QAAAAABcnaEz5k14PsCcDvFyUC1kmlV3QAAAAABakmCz5k14PsCcDvFyUC1kmlV3QAAAAABaBsyz5k14PsCcDvFyUC1kmlV3QAAAAABaBLIz5k14PsCcDvFyUC1kmlV3QAAAAABHZsIz5k14PsCcDvFyUC1kmlV3QAAAAABKB57z5k14PsCcDvFyUC1kmlV3QAAAAABLLQZz5k14PsCcDvFyUC1kmlV3QAAAAABK3KAz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHClvz5k14PsCcDvFyUC1kmlV3QAAAAABF94Vz5k14PsCcDvFyUC1kmlV3QAAAAABF-E5", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1dmpJ55uvZdOMq_7dLN78g"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAAYywctG_sMzzXt8DhXRU3jGwAAAAAAAAAfO0QBRq09v03gOY7wcqwe-QAAAAAAAAAEWV6g6bHiSUaQ_18ghJ6gvwAAAAAAAAPqzVl_JFLMBO6_XcJyl0ewxwAAAAAAAAEJAU1UxR09cGAZB2y_cCThHQAAAAAAAAAiQN3Ei4y0jjQeG3JY3GoqzgAAAAAAAAAL", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "799eAdJjPYE03w7zg0dmIQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA8lX2SNDzWiYDmLZi_Z1ZVETLoAAAAAAA8lJaSNDzWiYDmLZi_Z1ZVETLoAAAAAAA8kvKSNDzWiYDmLZi_Z1ZVETLoAAAAAAA8fJCSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcrgLSNDzWiYDmLZi_Z1ZVETLoAAAAAAAawu3SNDzWiYDmLZi_Z1ZVETLoAAAAAAAawOESNDzWiYDmLZi_Z1ZVETLoAAAAAAA9K2VSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9K-tSNDzWiYDmLZi_Z1ZVETLoAAAAAAAyNaq_QYAzQdAagYTCI2yUMpa7wAAAAAAAN8M6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "DwMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oe_nHyIGjMEfD9kwUevsMg"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAAKkiFL9Bd3XIiGWasJdN8trI5tgAAAAAAKflDL9Bd3XIiGWasJdN8trI5tgAAAAAAFk6A", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hUXn7O15YJeI0ULhNiHitQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvU6cEvvhuguaGYCmGWrnWRz1QAAAAACLroTcEvvhuguaGYCmGWrnWRz1QAAAAACLsWTcEvvhuguaGYCmGWrnWRz1QAAAAACLsmncEvvhuguaGYCmGWrnWRz1QAAAAACL74lcEvvhuguaGYCmGWrnWRz1QAAAAACLvgWcEvvhuguaGYCmGWrnWRz1QAAAAACHfLpcEvvhuguaGYCmGWrnWRz1QAAAAACHfvbcEvvhuguaGYCmGWrnWRz1QAAAAACFpXkcEvvhuguaGYCmGWrnWRz1QAAAAACEUE6cEvvhuguaGYCmGWrnWRz1QAAAAACFxnh", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "t1xfFBeH5Fl1K12J5A31pQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCveXT4fd_WKeR1cE-hlLelCQAAAAAAEODDqXT4fd_WKeR1cE-hlLelCQAAAAAACwtaJXT4fd_WKeR1cE-hlLelCQAAAAAACi_9XXT4fd_WKeR1cE-hlLelCQAAAAAACiJjoXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3ORtBaUkgpJHtPNW2d8ZAQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFVZ1cEvvhuguaGYCmGWrnWRz1QAAAAACFWUY", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DajmKOxs5mZzvp3q0vIZRw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAAC9giwOUz_dwg5QpZ6rn_mtEAAAAAAAAAAacJx4E-nTUnf49zwDorSgIwAAAAAAAAAGCsbV9k-bf9vouE4JAWSvYQAAAAAAAABMuqwCsRNPiFKrqHYXLGpv-wAAAAAAAAB8iH1rt2A0cDFvTr2IZcc8_wAAAAAAAACWjtEB8q7ZNk5LwicDPNbPVQAAAAAAAABOVAvNZVNEQJ7DRi6-LAWxKAAAAAAAAAAEuRiTFEuOH9sTOPq1GAghjgAAAAAAAAAZ3P6jeZ7NY5SsRS3CRl6_8AAAAAAAAAAFKeBP9AZq-WJuSjnOYvnw5wAAAAAAAABQ5PpBkm0bW7w99cVCb10w6AAAAAAAAAALvfptMi4S77lqCSIEPA0cAgAAAAAAAAAQsGMl0uQdZmivfjDBknufQQAAAAAAAAAFhYwcxK1EdaxISUobp_tMjwAAAAAAAAAF8cgcru2hcpNC8YThxIr0JwAAAAAAAAA0uhX1qfoGgATHLd0SFlL86gAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6s327-MJ8tXADNCpUFJLTQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACGz1HZ3CKaS4aU08RhYA19y5ITQAAAAACGAB0Z3CKaS4aU08RhYA19y5ITQAAAAACGCyCZ3CKaS4aU08RhYA19y5ITQAAAAABtHkpZ3CKaS4aU08RhYA19y5ITQAAAAABtHLPZ3CKaS4aU08RhYA19y5ITQAAAAABtQ5m", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hJqYLUumz9zXvS_kxlOwXA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSKQ", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "v5SF2iml9eZuaSs1mX-aSw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcM4Q", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "H2NuFpd57ieo26ztmYwFIA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEWB9GVskeRyK4_o3XD61XIAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAqJzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAqdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcO9_JyaRKYBdkJrY8OUa6igAAAAAAAAASDJ2lZS85ClNgTnnEk8XThgAAAAAAAAAfCpvjWyzlv7sy206ARLr_PwAAAAAAAABU", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yvtvFpnNQbBerz7eTt0frA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAxSQjdgx2wqIxyPHp2kbwpQQAAAAAAAAAmn15ykTmIo2lUA9RBVij7CgAAAAAAAAAA", "types": "CAMIBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Of21tDBsawVNvxkGbr6swA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXUptYxe-SHgukLEpCkawSk1QWAAAAAABXVjkYxe-SHgukLEpCkawSk1QWAAAAAABXVBsYxe-SHgukLEpCkawSk1QWAAAAAABXZL0Yxe-SHgukLEpCkawSk1QWAAAAAABV3AkYxe-SHgukLEpCkawSk1QWAAAAAABV1uZYxe-SHgukLEpCkawSk1QWAAAAAABV59PYxe-SHgukLEpCkawSk1QWAAAAAAAFzcMYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ1", "types": "DgMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9T2neRyvBAjupi4KvqMEkA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t3YXT4fd_WKeR1cE-hlLelCQAAAAAAC-wRNXT4fd_WKeR1cE-hlLelCQAAAAAACi-Bg", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ECFdcptasOGGQlul_TP0kA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAADvI10upgJihUkX5rBuiOc-YwAAAAAAAAAJCrZ1GQcrb97wGV5HmcUlJQAAAAAAAAAFS06qc2WWdjyLzzAdWuSUuwAAAAAAAADm", "types": "CAM0BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Rlf-Kh1cYYNXH3i3_B9teA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQJvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACeySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAYh-mcFcSefWaXpPLGLAmk8gAAAAAAAABsijeboCn6LOt0NOcmaRcGZAAAAAAAAAAH0I8cAvoTemt9EvN943sckAAAAAAAAAA_gh3_dq-X3ps5hlW-NYikEwAAAAAAAABcHYCPABbHg3v8ZSX1NQW6ywAAAAAAAAAC_C3zmgl0Bjr8nR0878NBsAAAAAAAAAALdhiUmvfDk2OXbcgaknkEMgAAAAAAAAAIOppFSDODTzgTHYJG_GWJMwAAAAAAAAA-zdNMqH5FJokP-kpdb9WNRQAAAAAAAAAJYMf1vN4Xj82X8azesbKqWQAAAAAAAAEgtsS1EtD0AN9RREU7M9BEeAAAAAAAAADZ", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DU2gNL0dqNkZNb3bXXutHA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADA3-aZ3CKaS4aU08RhYA19y5ITQAAAAADA3RQZ3CKaS4aU08RhYA19y5ITQAAAAACQxvsZ3CKaS4aU08RhYA19y5ITQAAAAACQxqMZ3CKaS4aU08RhYA19y5ITQAAAAAB_vGjZ3CKaS4aU08RhYA19y5ITQAAAAABwX09Z3CKaS4aU08RhYA19y5ITQAAAAABwMFAZ3CKaS4aU08RhYA19y5ITQAAAAABv0fBZ3CKaS4aU08RhYA19y5ITQAAAAABv3Uo", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UugzqeTQ92pW0pcPdsUFNQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXslH", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AbrWqkkHes4LJTZoISq1qQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAAAdeAxdHY-4DbDT_cuHjXXw_gAAAAAAAAArZC4caaBbQcOc2WclRiklUwAAAAAAAAAMQJ-JVADSuuonf59sOKCy_wAAAAAAAAAPbYxYe2jgm-ZVQ1wIKl60VgAAAAAAAAA1B_TZlmg-i-MShObdqiYcyAAAAAAAAAK9JjiG_BroZFP40tpmv2LaAQAAAAAAAAANT3lk77LF4G-nQZW_WRBUXQAAAAAAAAAH_8CkmXN7rMP1z1mWZ4cysQAAAAAAAAAbvB5-VFNxmRTipezH9t4OWQAAAAAAAABXblY2Zoz09t8zvWWEkNwQ4QAAAAAAAACuIJGZm_kDZxOYo3A2Fee1WQAAAAAAAAAAAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9KuldbllYEEo0KaNazsUsg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABqVb0C_sYOU5d3eeu0yalLowAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAproTQ2x4u1u0ROVEifn0kaQAAAAAAAAAtOcVENYdBUHkmXadCZbxMcQAAAAAAAABX7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAMEozR7rHeowembmV8tqrkzHQAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5W0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAEXqmhrzhROIxdFfT_O0ufQNgAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyJP", "types": "CAM3BQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kOsAFOokw3TMOocYazB7hA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYwsEP3PfgbWsvPc4Y_rpLYQAAAAAAAAAEbxUfVnyBZI_pROsv4HjqngAAAAAAAAAQku9JPnt9w-bpii9tERrqJQAAAAAAAAAW2CjidhF2o1l9AQQZ7O2_8wAAAAAAAAAVAmTcFForv1r91KDhJjsuQQAAAAAAAADdUVlIDr_FMx_kZCYsc8A86AAAAAAAAAAQ8T0AfTas4UaJM-evU8y7oQAAAAAAAAAU_zDk_N7NUcNRTqIuzYKxDgAAAAAAAAAgobA_YN1BhcTIsrqf5XOlGQAAAAAAAAAEfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdaMzea5YF1p9DWzFcmq3VzwAAAAAAAAAQnbsBVHmpV2luDgffbdJNFAAAAAAAAAAWcRoGFhrzTt6STyxXzS_QFgAAAAAAAACzs7hdxBbMHWQxy2GABBYaPQAAAAAAAAAJF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAd9zPkZE4RJJmPlROxnxkxmwAAAAAAAAAE9P399qv1PUm-fcjEeECPlgAAAAAAAAABmfgswW5tnP--5haDnNTmnwAAAAAAAAAIudgPCGqbKhChfal6WK47OgAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAZifuzCpl1zo6zLw_paxkEdQAAAAAAAABs-I0qeKDe1hMr58wzZHuN2wAAAAAAAABijEBVtdqhsioEQwhXyNMdhgAAAAAAAAAENg5XaeoBUnLdWeaVrR6CtwAAAAAAAAAFBYJNn-MoBSRU3jGgndKCfQAAAAAAAAAECuV4zhXsbstpo0uwp_uAFgAAAAAAAAABck_MxLBdFaeX0Pe9TGo2LgAAAAAAAAAWRvgpC2THNLDZ9bIizRZhbwAAAAAAAAAQuw22TVsJZa9-V4t68di_cwAAAAAAAADK4XXTSxpcblY4XfsTMB8ZgQAAAAAAAAEsgvfqv8XsdCrMz1u0cPr7iwAAAAAAAAAH2ea6Wt_FUSqyCQ-T65v7_wAAAAAAAAAHnAEagQQcCrvY7LHUFhFC8wAAAAAAAAA0edTeS1Ofrj8KEn1olv0sJAAAAAAAAAAEB9_lWIfptWUZtktRAKblygAAAAAAAAAMNB9Wtr18BllcC8telVa6ewAAAAAAAAAA_QYAzQdAagYTCI2yUMpa7wAAAAAAAJKw", "types": "CANBBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uIMM5HqMkglfbJ18Ml0GlQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHh53", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "q1_7VQVZ9B_m5nqjto1Vhw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--RVXT4fd_WKeR1cE-hlLelCQAAAAAAC-7XmXT4fd_WKeR1cE-hlLelCQAAAAAAC-zdsXT4fd_WKeR1cE-hlLelCQAAAAAAC-1HEXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBiZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAANr3F6tVKI4mSYDEJ-ABAIpYXcgAAAAAANyFD6tVKI4mSYDEJ-ABAIpYXcgAAAAAANw3k6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "EQMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XEVDehOwFGRzuyg-wdytUg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_8uEcEvvhuguaGYCmGWrnWRz1QAAAAAD_84ccEvvhuguaGYCmGWrnWRz1QAAAAACLLiEcEvvhuguaGYCmGWrnWRz1QAAAAACLLYdcEvvhuguaGYCmGWrnWRz1QAAAAACLLdCcEvvhuguaGYCmGWrnWRz1QAAAAAD_94EcEvvhuguaGYCmGWrnWRz1QAAAAAD_9IkcEvvhuguaGYCmGWrnWRz1QAAAAAD_wtscEvvhuguaGYCmGWrnWRz1QAAAAAD_yyEcEvvhuguaGYCmGWrnWRz1QAAAAACF-IrcEvvhuguaGYCmGWrnWRz1QAAAAACF-UEcEvvhuguaGYCmGWrnWRz1QAAAAACGugycEvvhuguaGYCmGWrnWRz1QAAAAACGmwdcEvvhuguaGYCmGWrnWRz1QAAAAACGpoocEvvhuguaGYCmGWrnWRz1QAAAAACGsDNcEvvhuguaGYCmGWrnWRz1QAAAAACGKP7cEvvhuguaGYCmGWrnWRz1QAAAAACGMs66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTih6tVKI4mSYDEJ-ABAIpYXcgAAAAAAOVIl6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIeEQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIcB76tVKI4mSYDEJ-ABAIpYXcgAAAAAAIbuM", "types": "EgMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SDgwhZo9YDrEqaVRvCqKvA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABFvIYxe-SHgukLEpCkawSk1QWAAAAAAAANUzYxe-SHgukLEpCkawSk1QWAAAAAAAANPs", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "frX5XDi_BeSd8ATSu-BzMw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYr-lBlGU-IcWILqVWjgb-BgAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAH8Tc4heOqvkkU3j8yuc3AAQAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAAtdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFwfZvWlUxslpVTthudbQVZQAAAAAAAAAMytp3uU49O__eOELoHoYHXgAAAAAAAAASk6l9plTdsyuqVCJa0F4QYAAAAAAAAAA00E4KEPyy66WCTzsuPGMCTgAAAAAAAABoiTk93rUXKUXkw5crMY_togAAAAAAAAAK4kgJPxDp_y70g-_9SJBKrwAAAAAAAABwmVZC5ucQ9s0QMwQ6Cu6VqwAAAAAAAAALakHLSuC4R8vzlPIApTxuxAAAAAAAAAANQvGt_WCeC3mBFOZFXsaM4QAAAAAAAAAcyPvQnIOQUh6g8jc0H5_FCAAAAAAAAAAFg82PsytJks3Vn0_tWyJl5QAAAAAAAAAbhQ5cY6hqm-eI3Hf-Do5rXgAAAAAAAAApw8YyBE6YuJVW0xgQWj8zJQAAAAAAAAC6XjbeTJfqrorYtlzkHQBT0AAAAAAAAAADsDpfjMchcu11LmkvPxu-sgAAAAAAAAAOnftB2PmJZcz7DZJedLNipgAAAAAAAABQNDiNPs2SIuj4NddpL8knJAAAAAAAAAAC_OOeQuiXtvgynmE43QMbEAAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAHHwpp6LgRqCGeGjs7cnnwItcAAAAAAAD0Ve6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMR0m6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMRyc6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMRwHUbK4uezrplMLlSw0h87XfgAAAAAABmfO6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIfEv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIZUS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIklD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIa2e6tVKI4mSYDEJ-ABAIpYXcgAAAAAApxG16tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMdBQIDDgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LUbJKRt2QZB4MM480Ex81g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAazVvSNDzWiYDmLZi_Z1ZVETLoAAAAAAAayyfSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcOjMSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcT_7", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UjcwmP94p5_9XdWwQfdoTg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAABQ1PhVGIcoQAgleHhVcpf27gAAAAAAAAAvyBWSGqiiI_VOVi3uSjsniwAAAAAAAAACTdwLOY0C6NYFuVVgfM0c5wAAAAAAAABsQVg0XAOEbp3JKK1NFLqVYQAAAAAAAAAH8PLzoB-u4hzDZ_WKIg8FxQAAAAAAAAAhYNG5rLJWIsjMTCOpoQz9TwAAAAAAAACG0uQfhygt3iA5h-6EqK0MPAAAAAAAAAAEJYb5JOqnMPOCcF7fd5apugAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAK7KeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARjk", "types": "CAMRBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BKLrtLNoy5ML86CG9IkqrA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADnCZA6kFgNxUpf9UEoiwzNCgAAAAAAAAAY", "types": "CAMmBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mAgmPEf7EXxW53hQ-sKjJw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANfzLzWZQgzth4yv0Aw0PoLgAAAAAAAAAl1pEcO9CYkxI799CldX3uowAAAAAAAABSeRhJRvHm727VHuGPDJpA3AAAAAAAAAAIFeTq3grQxZLpQxyGC-4wQQAAAAAAAAA9S94jqfhAvkqAPmPbXQSKAAAAAAAAAAB2PvuLdl9vutGJ_aJAxcvTvgAAAAAAAAAMUU_rUMpu0OkNTbRlDbtiLQAAAAAAAAAEEV432BMViBVOh4tE-1yPOAAAAAAAAAAO1OmoiusCl7Us2blgt7LZvgAAAAAAAACAnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAChAAAAAAAAV4sAAAAAAAAAHRE5XrAsaLVeYsnZ_Lwaqr0cHEPo0D185QAAAAAA1GpKYsnZ_Lwaqr0cHEPo0D185QAAAAAAXAOkYsnZ_Lwaqr0cHEPo0D185QAAAAAAgVVk", "types": "CAMOBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "u4YpFJ3r3BxuJCj_h-nNzg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFdfM", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TkPEPsUQlEC8_tTSu1y8wA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vNqXT4fd_WKeR1cE-hlLelCQAAAAAAC-ob5XT4fd_WKeR1cE-hlLelCQAAAAAAC-oi4XT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IO7igLUjHuSwhRGut0RlMg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlqv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBF8", "types": "FAMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OFYcBHyJD4Mumr7Mh7SCEQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAAAA", "types": "CAMJBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7V6aRLUSfKlOcOf1w7yKYg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACXFDHy--PvgHpUWFquuqO7RAAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7QawPKHJF79qrjka8nzLbQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAdKZMYsnZ_Lwaqr0cHEPo0D185QAAAAAAdEmf", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gXR6EGOsoWtrSlWApDMCzA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAGyVtVXhl6s6URamlTOMTdcGgAAAAAAAADmmuP6clMnO_x87qmA5qXiUwAAAAAAAAAEV9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAhxB00KDzyoofk7hNv-bTuugAAAAAAAAAYayzEJn0yXJUnduJSj-TGpwAAAAAAAAAd9MJISbwzA5r2YICNkdXifQAAAAAAAAAFENx9tYcf3nwb1xixCRhg9QAAAAAAAACeY_qFQxT1b6IwL0Y-bhoIvAAAAAAAAAAEV9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAhK1f6nnp5He4VLr7usCCM7gAAAAAAAAABjJ1ozPLEubzrPTK_HIIAngAAAAAAAAAEtiFd8nRg2cPSJT6QKmttjQAAAAAAAAAaJlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2SbdWgpvL6xLkDpUt_yoH7QAAAAAAAAAEKFGBFnajTppUPwKMAfWXvQAAAAAAAAAXeFaXX7H_gmfoLAN8WX-xDQAAAAAAAACOcqdSAx5Uej3ncVA_SUVjsQAAAAAAAAAMPrNII2l46oclr0RXWTYMUAAAAAAAAAAE93KKtPDSfPMvEhxj9OzJ1gAAAAAAAAAHsWCnrMF0Arlnv58qX-TThwAAAAAAAAAB7mqPc5ch4cFcQJn3b5WHKQAAAAAAAAAFIY3kOFBxddrJzoZrzargTAAAAAAAAAAAMP5HRDaDTxfL7AK376UJ7gAAAAAAAXffvQ7EacG6CR4rzcFaNFEsTQAAAAAAATRb", "types": "CAOXBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KSia5T4oTtHLzN1hXKSrIA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S-kcEvvhuguaGYCmGWrnWRz1QAAAAACEPcOcEvvhuguaGYCmGWrnWRz1QAAAAACEPjj", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MY4vqWXc_k9n6qImvJUI7g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF353Bbxw0b5wHlGJY1WEVWAAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4bWZWPptWisqbpRDA9X8cNgAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVamhiroi9lH-AuCvUISnaLwAAAAAAAAAGQoETQaJh4hk1PJNhgxG6YQAAAAAAAACeJn0UNoyB8RODf8CSewSSrwAAAAAAAAAd4ATwOy2xX5oIgSybARkoywAAAAAAAAAFk0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB0qRvG2N9iYeFyl-3xULRJEgAAAAAAAAAe1xeqGUZm5RNvukFb2REJKQAAAAAAAAAIFtjh-A3lytsNmmUroc108AAAAAAAAAACuimFkk5UuxbH1IL630LmngAAAAAAAAAbVPtMofZCgqrw-l9pGX7aHgAAAAAAAAADRSgrZm24iCMR6dfllqWutAAAAAAAAAAaK_N78LhUkthI1fnHsP1_6gAAAAAAAAC1", "types": "CANEBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "S4WvNNBIMRmvCXXO42eZaQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQEI2MlivQ_yGyq36LnLAGeQAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQOUV_Man7LKpLI_xXeAvtgAAAAAAAAACeM1U5MRplArg1qeEAEk5MlAAAAAAAAAAYNK6q-mYZhWe1E7afoKkwiQAAAAAAAADYr6Fg_DPZ96geKIjDaUl37wAAAAAAAACsmdgXK8UgXxJq-aF0PWZBWQAAAAAAAAAMuHXk96D_H0MjX0tAh6AHfQAAAAAAAAAGBQgPvwiw9NNbOJgDcqi8DAAAAAAAAAAtD8SuOAHHuRsEe9MWrwApVgAAAAAAAAEC8lbOW9-D9FVTLW-mPAz8XgAAAAAAAABh2_uIdFF155ksITnJx5c3KgAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gq5ri62azb2HgYO44ajr9Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAqeSs1xpPdaQi6BA9wz10SrwAAAAAAAAA5TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABbXyIB1JXxkoOQjMae8CICgwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAAAgWMBQH2cqudnz0nG322UKdQAAAAAAAAAMGO1QDVqG-4CNnMRn2v_9VAAAAAAAAAAd47Ynctdwhr8Q34WGwpCU8wAAAAAAAAAHu39hB2o_bkkn64I33Zf2OAAAAAAAAAAx6KM6RK-sq5wYpyjnMfBa7AAAAAAAAAAsxLOLXg5EKZgSVcI5Dw46ugAAAAAAAAC40LGXmFocz46kL18OXWxszwAAAAAAAAA1cuyNWlZFQkabnqdPXO_rXQAAAAAAAABNSlb8MNVKIFfE9HJqtN3BhwAAAAAAAAAATRhdHOKO7GmLMAaUL3Xw6QAAAAAAACyu9BM25vr762IbGPHbtur65gAAAAAAAJNn9BM25vr762IbGPHbtur65gAAAAAAAHdR", "types": "CAN3BQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JCe68q68pLemWJDxvGUezA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABqVb0C_sYOU5d3eeu0yalLowAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAproTQ2x4u1u0ROVEifn0kaQAAAAAAAACHhQj1w50CfP8YweEdnC-JyAAAAAAAAAAEr8runDm4rOcHO76XR-D7jAAAAAAAAAAMqCAXb4nsA8MBowrcfqVWbwAAAAAAAACCbem31qqzjUFpI7bh8w8-nQAAAAAAAACjeIKZHUnkOnlIeLcFKA7B_wAAAAAAAADKoJ4uhqaGJXAzxTc8vQCVYwAAAAAAAABdNCAjj9ga_oZwZ7NBAV35jQAAAAAAAABgLDzxKitLXg1NPN9Jo9msaAAAAAAAAAB35w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC3OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyGEsTGLCNH21piOrMPoln5uBQAAAAAAg4VysTGLCNH21piOrMPoln5uBQAAAAAAKOC0", "types": "CAM5BQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mIzahuxkrhduKlDufHRVKw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAJGHHpN5Gh_olxRYjhH9GfeQAAAAAAAAALIgM5i6-lgpuzqOD789em9QAAAAAAAAGcXOANMxdhSEwzaUIzOG_mBQAAAAAAAAANz8yDYNMJULt1ApZ8kqZamAAAAAAAAAAGMMAujfe9xzktoHyDqw_cGgAAAAAAAAAGWY2_M7eCNrhZsLoJqmwFKwAAAAAAAAAEeVW9lCqHxlTfD5Rt7tiZeQAAAAAAAACGL6zK1j3SbhClCg7g1r2ArwAAAAAAAAAZlBCEtJpnWxH9YJv8ASXFIAAAAAAAAAACQl5LFJIFzBtywZjp054QqQAAAAAAAAAeud19zrXkNLiaFIKsYgavQQAAAAAAAABBZVUm0BdPrxOejRxbp2Iq8AAAAAAAAAAZhLSDzfljATRl53NLUpYdIQAAAAAAAAAS1t7fQsJNgmiW7cyVgRgDbAAAAAAAAAAEFmQpCEOKh0tQsiSVjTAfogAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAHY0vQ7EacG6CR4rzcFaNFEsTQAAAAAAATMu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUip6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMmAv", "types": "CAMiBQIDBgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6LMgC_pj236jbZulsolnmw"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABty-9Z3CKaS4aU08RhYA19y5ITQAAAAABtFpzZ3CKaS4aU08RhYA19y5ITQAAAAABtnwrZ3CKaS4aU08RhYA19y5ITQAAAAABudBy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BQMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yU87pg-Ch2E9K6GDZMg_og"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlo76tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA6d6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA406tVKI4mSYDEJ-ABAIpYXcgAAAAAApawn", "types": "FAMMBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "H5q2tXxLE1d4iFM0ZRc45w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR8Q", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4atjVCntPFZjlZxUD6MXCw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAP4nyMCPt5M-rbb158Tnrz3sgAAAAAAAAChcMfqnb6mHe6lwomeyL_PcgAAAAAAAAARmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC33kqKIOk7SslvcfRGmqs1wAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAkQmhZSkKN3zNxr0HYuO2pqe5hQAAAAAAbRaiZSkKN3zNxr0HYuO2pqe5hQAAAAAAbRENZSkKN3zNxr0HYuO2pqe5hQAAAAAAWpR0ZSkKN3zNxr0HYuO2pqe5hQAAAAAAfKHG", "types": "CAMrBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6OaUumRb8P6q4GlOGK0eGQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mikXT4fd_WKeR1cE-hlLelCQAAAAAAC-nUyXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FgMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HsiX5vdQunBNkC7dzQqFjw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LH5cEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEMlh", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_RxpKSu5Jrbu0E93Q0Uijg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ2Z", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MxaBJ5vAlZJbFL1ZFA-tNA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlu66tVKI4mSYDEJ-ABAIpYXcgAAAAAAN6Kx6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFfSD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMB-t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUkts", "types": "FAMNBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2WgjTSIQCP6U6Q-JjUia1g"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAE7fiqNEC4hTNfpjbFJ8zPtkAAAAAAAAAAFfFtXuenTBEiIanE9ZLS9KQAAAAAAAACHzpP80T6FdaTGeY1BUSMu-AAAAAAAAAAFi8qUzmADhGx9PMH8RJ_tdAAAAAAAAACPZ41z-remt7jPNWprM_rymwAAAAAAAAC61S9eFAopKcZX-VnW9ChdWAAAAAAAAAADw_8HYglWw-0jqUUlUeMgagAAAAAAAADX-OuZ_zFnMJsV4zFgjL7inAAAAAAAAAAFxaWYGasOYi9-2Kb1gNg5mAAAAAAAAAAFtO6JpVZeu0abSD0xpUFNBgAAAAAAAAAFVxlwUtXHQJ-6YwCZd_dtKgAAAAAAAAAFpRPV5-hOaPCGuVueTBL9ogAAAAAAAAACSU7fNzMC3NazhQDT5xGXYgAAAAAAAABI", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qDjdfIDXYeKpMzfOZsKweg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAAAjj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABdk99M4bkjfKmg3-yt9HFm8AAAAAAAAAEW", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7UUpVBUGNxt4Ms0zx7knOA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAckoE-yAAYIqbvRVhFPQiQCAAAAAAAAAAA", "types": "CAO-BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Y5c1W4V6QarCea1y_uUiVg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBbBcEvvhuguaGYCmGWrnWRz1QAAAAACOHLRcEvvhuguaGYCmGWrnWRz1QAAAAACFObNcEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEV9i", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SLcvmdHWQs_SKMn3hTK4eQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAACwH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcM9Xltn711KKFcrKCAYh_ZgAAAAAAAAAE8s5hM6TvWnoP9XP3e8VVVwAAAAAAAAAHwh6xTQPkmoOUUrUOOnnNsQAAAAAAAAAgECJiBwp9HFDH08g79_31-gAAAAAAAAAA", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EscTPoBu7P-yWjfqYPYrXg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAPx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABWdRMG3BjNfH2se-egabnU-QAAAAAAAABAEkcy7So9YVOh7Q9iMhhrxQAAAAAAAABM3SSuw7AKPJ9yFEVSwC_lbAAAAAAAAAAuXLN55eJ2HplxP0Fb2YBmOQAAAAAAAAAJ_6rkq2S7o8rMRQJ9AofzJAAAAAAAAACLjwkBY0s-EHDmaMTnMHI2lgAAAAAAAAAYLLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACvqKrM4v33j8Ui9JyIz2QXDgAAAAAAAAA4ZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAAB1buaxzZBrb6WHETKUkwVYegAAAAAAAAAOp7qKIzzn4w0j5_vK-B0EmwAAAAAAAAAmC9UVUqjRD64_RWyXHEtr7QAAAAAAAABE", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ITsishoJBrPM8Hg7nurVvw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-K0", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Fdt-C6H2QksCac6R9wTd_w"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAP4nyMCPt5M-rbb158Tnrz3sgAAAAAAAAA0i__VMh3MgmTJp7v_qMbssAAAAAAAAAA1qwd0u0yf77aYVcTrTir5kQAAAAAAAAAFqwd0u0yf77aYVcTrTir5kQAAAAAAAAAFOD88rfBmy4BfCXerLT5e5QAAAAAAAAA7yhF9CEzH60wdDBblzY1FcQAAAAAAAAAIOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyQosTGLCNH21piOrMPoln5uBQAAAAAAPSMC", "types": "CAO8BQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fHN81-0bXKBoEo0wx_S7CQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAE7fiqNEC4hTNfpjbFJ8zPtkAAAAAAAAAAFfFtXuenTBEiIanE9ZLS9KQAAAAAAAACHzpP80T6FdaTGeY1BUSMu-AAAAAAAAAAFi8qUzmADhGx9PMH8RJ_tdAAAAAAAAACPZ41z-remt7jPNWprM_rymwAAAAAAAAC61S9eFAopKcZX-VnW9ChdWAAAAAAAAAADw_8HYglWw-0jqUUlUeMgagAAAAAAAADX-OuZ_zFnMJsV4zFgjL7inAAAAAAAAAACfEKUJczxV0wWF5_qwXHZAQAAAAAAAAAA", "types": "CAMnBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AXSC7Ug5s-HSwYDMXe0_bQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtwFcEvvhuguaGYCmGWrnWRz1QAAAAACEKlkcEvvhuguaGYCmGWrnWRz1QAAAAACEJby", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6pwviWWoW88bcg8mc6jotg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5WiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbXAL0Ge_HcVwkBrUXRRiLwAAAAAAAAAHfyGIqAgDCWT0HWMDhvlu5QAAAAAAAACVrg_W9Iz5X4vBEiSyGYl41QAAAAAAAABeOVbzts78rozw73k3kwZElwAAAAAAAAAJJnSEm3EzEl71vBewWd-MegAAAAAAAAALh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABq3Tjfka8pNswMm1Yg7BN5wAAAAAAAAAQ5mPZ7hP04mAof7_xhihCAwAAAAAAAABV5utt2dQ8HKrTepHdNpprxQAAAAAAAADL6XNnO9SeJ40ZM7baZ84oEgAAAAAAAABVLll_E1k3FfR43EQBXwU1dgAAAAAAAAAIrywk-6b8WKiuckZ62dxSSwAAAAAAAAAHiX3hg20o3ZB-dQ1wA5bFxgAAAAAAAAAEomA88yQfT91566xoyEY7sAAAAAAAAAAcrrWuYAakx0mSDLYXP-NBMgAAAAAAAAABK-xWzbOpXq--Qycbjj-mDwAAAAAAAAA3L1OydAndq8IT7nNSF3yNbAAAAAAAAAAkewU9RfzsPed7JATT94aw-wAAAAAAAAApfZ3COijH60wdDIIVUpSInQAAAAAAAAAIx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlscYYsnZ_Lwaqr0cHEPo0D185QAAAAAAhTEw", "types": "CAMyBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "P-dCdUT1LEJyae6UYwKugg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9ALUz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ap7z5k14PsCcDvFyUC1kmlV3QAAAAABGP0wz5k14PsCcDvFyUC1kmlV3QAAAAABFRG3", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tk-Rn8r6-wqzqI-bfiAJ7Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAAtSAAkutGejeRImCZXeWZ-1wAAAAAAAACLcDDKtM-30WtgKUZUhSPZowAAAAAAAABn-0VK45z04oVPTcwdwQBREQAAAAAAAAAF4RUgMlPWsuuY5K-fnQNJ_QAAAAAAAAADO6j-APvwgdAIUIKMPStK3gAAAAAAAAAQXw9SMMauw-oBWYANca-iwQAAAAAAAACbXyIB1JXxkoOQjMae8CICgwAAAAAAAAAF45C-Q8d2gQJCMIvUacUWRQAAAAAAAAALl02Rky0rhr7e1TqmERHkOQAAAAAAAAAA", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "x40XXgRvsC7DRm_EiCrdLA"}} -{"Stacktrace": {"frame": {"ids": "tQgAmBJBgPLrkikSPRsmtgAAAAAAAK-dtQgAmBJBgPLrkikSPRsmtgAAAAAAAOXp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBtp", "types": "AgMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9ixj_DfLg90_yfQ28UoVPw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAAV_QheDKcYlWwsFE4koFnZNgAAAAAAAAABRMYtu6lQVhfanHasngCNQAAAAAAAAAA5ZNYIIcZKEhelw-qPJkZowQAAAAAAAADfZNYIIcZKEhelw-qPJkZowQAAAAAAAADfZNYIIcZKEhelw-qPJkZowQAAAAAAAADfZNYIIcZKEhelw-qPJkZowQAAAAAAAAAW4-lSY69fXDm_fOs77Q9KJgAAAAAAAAACAMk_trcRDqgWwE9O1EQdVAAAAAAAAABfSiNQN5yWanN9PLQ_u0EHrAAAAAAAAAASAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DrB5T-9pXds_Mi6uJBhFEQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAATo2Vqo1n4TLgDJq9tPgwAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARxBGCEPBdnG6Mds1nJf4tcQAAAAAAAAAGzXf1O_8jknZjcKGu5cQjJQAAAAAAAAAgPHkw6KCW6WHcDhD0gWZvxQAAAAAAAAAXqjkbzJCs46utKAIQU_ZjYgAAAAAAAADmaG38C7AQR-wEDFFefkRnfgAAAAAAAAAsdawGhH-93Zf3Xci2M9UlFQAAAAAAAAAMPhHweSUk-rcHLCvi4mySwgAAAAAAAAEsryiaiFPVyjm4XARK10gZ3QAAAAAAAAELu4IYC5TN1ydgkWzSPfggOAAAAAAAAABSTOT6Kzt9cNfqtt7rfwzzSwAAAAAAAAAElu3U19P1ddOrJLDu-spLOgAAAAAAAAAHSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAiHAV7Zh5H5JQPHONsGvZ0PAAAAAAAAABXWb65uaTCBYe2MCZtuMHkqAAAAAAAAAAWdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFyOUU-MIrBJXHRczrclIQpAAAAAAAAAAIZLVm2Yq3JzpECVJuRqNdawAAAAAAAAAQrs-7smSxpcCpQ4EcnQyDfwAAAAAAAAAdgkppypvMO9S8VR3D3H8lzgAAAAAAAABEdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFwn4niB8FwIlhJ5LBYr9JzQAAAAAAAAAIZ8eDanRMy6l7sesw4dYkqQAAAAAAAACzkTJVCBjDfmFAPRrGLStltQAAAAAAAACPPyY6qsH4ByVjV1tK07pF9AAAAAAAAAAIm2-tH33cq1FP2Q7Is62J0gAAAAAAAAAC-uK72e9VYGmyoGlh8BBvZwAAAAAAAAAIQ1b7jdbtxavHFLXq_nCrrgAAAAAAAACKpxHkQ9M1dNDXsuZ3PuZiaQAAAAAAAACHHHYed7pYCVK68jLMEjdhPAAAAAAAAAAYyXWFMIbkwU7jqv0ggmjvVAAAAAAAAABHVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAApOzkHkS17HRu8c3H4oJbrdwAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFmKVsnuGyVSIshrQFdthLlAAAAAAAAAAU0cZiHBBWN2vYtEyCZ5X5wgAAAAAAAAA3pzTcRcencDxd0mEO6HA0bAAAAAAAAAAFdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFMwojP6II8_EGiMNSmdsFxAAAAAAAAAAQLrT96WuiUXgKg4BgtAP98wAAAAAAAAA_dswq7UFB-c5kE0TfryCD4gAAAAAAAAAF3KtHAXnUn2qKToxsxyFz6wAAAAAAAAActLWCyKrEBYGzX2N5W13-8QAAAAAAAACnHs84X9WR2gx5bBItVVyJWAAAAAAAAAB4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFO4XFBmuHlVXJh4TIk5LCDAAAAAAAAAAMn-IlVo5-jcMpxFIQmT8ZXQAAAAAAAAADXNiEFVfexcwhuzJE2wFqSQAAAAAAAACouB_3Gzwjvj1RjZpSgTL9mwAAAAAAAABHcemtT_LtuQxWV7j18_T0KgAAAAAAAABEb2XRkTRSoWuyX3U4lJkMnAAAAAAAAAAIYldLdAhiU1Ikhg1VTxvqJwAAAAAAAAAVdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFh36HgL3bbvDsQtV-NCGi2AAAAAAAAAAYa1rORv6uw2uAWC1se05SoQAAAAAAAAA7ReecyGgWWJgzc543tXNeIAAAAAAAAAAlskGfd5BDAMA1fbyY3ykq7wAAAAAAAAApdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFv6Sj_mGjd4gUb1oQRdr9zQAAAAAAAAAMBFzsvc2FJJqJ7MOfSIYcgwAAAAAAAAALdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbw7Et1OruEgeiOGCngYuPwAAAAAAAAAYSVYBVG1fCfTODpNzLfPxlQAAAAAAAAAi0YsnzQnMKXvFIy6EpgfjkAAAAAAAAACzfCWPdfu_RIOGbkcM4xycpQAAAAAAAAAQ7OmS9SwYpCYbOPw4YxA-2QAAAAAAAAAJTS5J7VqDVSdEc1qna5uquQAAAAAAAAACvKejTCyLyeKC1x5YlrNm2AAAAAAAAAAOiJUKeKW0xaqGpTp8va8hSwAAAAAAAAADmoYMxp66Bkdix0P-zaEKBAAAAAAAAAAw-wjzZ8qXQZ6UzRT2E-g1tAAAAAAAAAAV1S9eFAopKcZX-VnW9ChdWAAAAAAAAAADw_8HYglWw-0jqUUlUeMgagAAAAAAAAAC5XlE5KvRrfbNOpt-JVgrOAAAAAAAAAAH_zxyi-wgtH_Wz8ut-WKY9wAAAAAAAAACmjTPXIM8UpZjZn93sb0tAgAAAAAAAAAKcfzDHT2jYriKJ0LziJdaXQAAAAAAAAAA", "types": "CAORBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ess3oHhLNEi0m2JAz0_5DQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAAAzr8jPkIagwkcKu3VFH_5eFQAAAAAAAAAFfwrSDgHrTXpAEmJ4bHy8MwAAAAAAAAATTq2A_ghNgr4Sgbd4ToSeBgAAAAAAAADKOVKwi55Br_WT9fxVyQu6PgAAAAAAAAAe2YGkbnIdlKIhbsTbMV-kWAAAAAAAAAACz-hu6cNT1Ftqgnka76QdWAAAAAAAAAAQEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAABBUoX-ughXNd_AmddejeY_6gAAAAAAAACLEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAABBUoX-ughXNd_AmddejeY_6gAAAAAAAACLEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAACgjxBO7ihhtfLOOEuDlHwmIAAAAAAAAABLEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAABBUoX-ughXNd_AmddejeY_6gAAAAAAAACLsrK4jFHN_yr7CRCkobJCaAAAAAAAAAASU9GMGSRcFRH-CQmb_n3Y0QAAAAAAAACk2dpbQm6Su1jn5rEv9F3sMwAAAAAAAAAavcAmytl_wXdfdPt8SRSHZgAAAAAAAAAOyfXyOODTodkdeiMKIIzHeQAAAAAAAAAjCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABhmUB0X1duvhm3HnTYomF_uwAAAAAAAAAQAFgNmbMpan7AOvr1RHjTvAAAAAAAAAAA", "types": "CAM0BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1XV7unux6YV2hG1GouNtCw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMh29XT4fd_WKeR1cE-hlLelCQAAAAAAC-zdsXT4fd_WKeR1cE-hlLelCQAAAAAAC-1HEXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LY", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "j5BsomDuMI7TNerJ9VXCtw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDLZcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETQ8cEvvhuguaGYCmGWrnWRz1QAAAAACFt7h", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bxosazizFV9avn6dlwjxfw"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABgzj8z5k14PsCcDvFyUC1kmlV3QAAAAACFIBaz5k14PsCcDvFyUC1kmlV3QAAAAACFHcYz5k14PsCcDvFyUC1kmlV3QAAAAACCMghz5k14PsCcDvFyUC1kmlV3QAAAAACCcjuz5k14PsCcDvFyUC1kmlV3QAAAAACCcrD", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FfJoEeFsWI41bsMAEfnR5Q"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABqVb0C_sYOU5d3eeu0yalLowAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAproTQ2x4u1u0ROVEifn0kaQAAAAAAAAAtOcVENYdBUHkmXadCZbxMcQAAAAAAAABX7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAMEozR7rHeowembmV8tqrkzHQAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5W0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMTbeJ7BYIhIN72fM2Cz8k8m9QAAAAAAASDV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmu46tVKI4mSYDEJ-ABAIpYXcgAAAAAALSUu6tVKI4mSYDEJ-ABAIpYXcgAAAAAALQsy6tVKI4mSYDEJ-ABAIpYXcgAAAAAARPAa6tVKI4mSYDEJ-ABAIpYXcgAAAAAASekk", "types": "CAM1BQIDCgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rDKxniIVk0RWV976qb-dNg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACamW1QO3T5kZR72H8FRXCCwwAAAAAAAAAA", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eh7tA-88r0aWueK0gduVFA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfxrm08oJc5xqpM1VweLZNZwAAAAAAAAEIFyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACAE1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAACS4b6Y6AxjtjqP_pey1p_yKgAAAAAAAAA46himjS-PpAivu9i1Bhv6aAAAAAAAAAAN27T_d9_NZvjzOCNXkPMeLQAAAAAAAAARf4OgHyusKDqabwWiMaVpXgAAAAAAAAAHwn_WhsjtejkuoSs44OKzyAAAAAAAAAAN2G3Nb2wLZnYZcun2Wr4rBgAAAAAAAAAqmu1DpnH8iZDzucrjLh5s6gAAAAAAAAAE", "types": "CANPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bZ5KGLHdU9j4VxTqgQfhhg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF88yz5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF78Kz5k14PsCcDvFyUC1kmlV3QAAAAABFxdxz5k14PsCcDvFyUC1kmlV3QAAAAABGnbP6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuoD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00i6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00D6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "BgMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "n6gUB2Vi4QgxQPdYRzsxAA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAAYywctG_sMzzXt8DhXRU3jGwAAAAAAAAAfO0QBRq09v03gOY7wcqwe-QAAAAAAAAAEWV6g6bHiSUaQ_18ghJ6gvwAAAAAAAAPqzVl_JFLMBO6_XcJyl0ewxwAAAAAAAAEJAU1UxR09cGAZB2y_cCThHQAAAAAAAAAAAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lzkdB1rDpdcMviENXaE3og"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHiCEgtQ4kMk_MBWrPUAFqVnYywAAAAADHiVygtQ4kMk_MBWrPUAFqVnYywAAAAADHdlvgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4V0gtQ4kMk_MBWrPUAFqVnYywAAAAACG15kgtQ4kMk_MBWrPUAFqVnYywAAAAACG2E8gtQ4kMk_MBWrPUAFqVnYywAAAAACG15LgtQ4kMk_MBWrPUAFqVnYywAAAAACG2UtgtQ4kMk_MBWrPUAFqVnYywAAAAACG2ecgtQ4kMk_MBWrPUAFqVnYywAAAAABqIcGgtQ4kMk_MBWrPUAFqVnYywAAAAABqINSgtQ4kMk_MBWrPUAFqVnYywAAAAABqQ4o", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jliDtdpQ5AYvFVIEkH2R2Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcDY6SNDzWiYDmLZi_Z1ZVETLoAAAAAAAvtxjSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt-hLSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWduRSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWdezSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWZ-zSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt3yE", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FuGHJWRe5aMwCq833fms7Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mf9XT4fd_WKeR1cE-hlLelCQAAAAAAC-nmeXT4fd_WKeR1cE-hlLelCQAAAAAAC-nplXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwWtXT4fd_WKeR1cE-hlLelCQAAAAAAChsdpXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuTA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMsqZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEf-_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEf7L", "types": "FwMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ypK8YAnhyIQbCIxguF3ZYQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnfNTDCm_3eVgEHous9evUWgAAAAAAAAAUFfM3fVYqFhj_g4shLOoSnQAAAAAAAAFGWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYv0o-SuFa6Ydo5LzhQb4MjgAAAAAAAAAGkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAUeU3FNtHcJBbn9h6Q-DiZ2AAAAAAAAAABAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ynw1R90P5jqjjO7FNW192w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAak0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB0qRvG2N9iYeFyl-3xULRJEgAAAAAAAAAe7p_llGp9OZbFMQuhvSu13AAAAAAAAAAIFtjh-A3lytsNmmUroc108AAAAAAAAAACuimFkk5UuxbH1IL630LmngAAAAAAAAAA", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3Tt9tabVrOQsSQg8A1kRaA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAA", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QqagX4SxhMaRMlzq_9N22A"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlpa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN6ND6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFW5n6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMB-t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUktl6tVKI4mSYDEJ-ABAIpYXcgAAAAAApQK-", "types": "FAMOBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2eTVIIJLC47DBl1ATsTawg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-BdSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZxI", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vOAA7I3SI_6CYSE5PLnlzA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA74ncZSkKN3zNxr0HYuO2pqe5hQAAAAAAd5KiZSkKN3zNxr0HYuO2pqe5hQAAAAAAd5B6ZSkKN3zNxr0HYuO2pqe5hQAAAAAAdUMGZSkKN3zNxr0HYuO2pqe5hQAAAAAAdcw4ZSkKN3zNxr0HYuO2pqe5hQAAAAAAdaF-ZSkKN3zNxr0HYuO2pqe5hQAAAAAAdZib", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "u263nW_qRlDonfyrGeQDiA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAC0XP_Z3CKaS4aU08RhYA19y5ITQAAAAADBlWmZ3CKaS4aU08RhYA19y5ITQAAAAADBlmSZ3CKaS4aU08RhYA19y5ITQAAAAACbRsw", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ifPg0tbOeATgXu54GVLHjQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDLZcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXzbM", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UHKEygcq3rVrnRHn0tQvCg"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAABnGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABbTIqYHzSLJiXVx4krD2dbMgAAAAAAAAABIFHX6oXBjL3Y93SHOMXcKQAAAAAAAAABZXguWb1db5OZ-xUb0e4ZqQAAAAAAAAM2siCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhZsqFV6xhVekP5-uToPI32ragAAAAAAjkGpqFV6xhVekP5-uToPI32ragAAAAAAjkA9qFV6xhVekP5-uToPI32ragAAAAAAby3b", "types": "CANPBQcD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MRbhvMfZ_M5nO9oLscAerQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYr-lBlGU-IcWILqVWjgb-BgAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAH8Tc4heOqvkkU3j8yuc3AAQAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABLvJncLgOnYwpWuDnTLvtywAAAAAAAAAIqJLvg5a2zeGb6EcYZpSyBAAAAAAAAAACB045cMDWxd0Mcqn40XkfOwAAAAAAAACtiBJkiXL4jbMXTevP0sFGowAAAAAAAAB3orI6G4EZluDZPfJ37iPzggAAAAAAAAAX-ZUigVp6H-HqH1lR0smw4gAAAAAAAADmJw6J8qgr1pYHKUa0xZ1MdwAAAAAAAABZlZTvs585vMzXjn3UHln0NQAAAAAAAAGiLMhs_MdxnqcQW9tN9tUCJAAAAAAAAADeXjyaLTQPNDwnxeTIUaoLqAAAAAAAAAA9LZh34Qe9WZt7ydt6m_9sHgAAAAAAAAAxUX0maaM_jFdAmFMbhLpaSgAAAAAAAAANVydXcSmOqICsVxLpiPFyCAAAAAAAAAAhxWXbvqcob2cyNB-_TJKbYQAAAAAAAABZBvE20tx_aKDX9k1QBsUKsgAAAAAAAABAbRe-bTXmo-KMTRcTpmBm1QAAAAAAAAGOyyaOFo6onf9R0s4GNfBLeAAAAAAAAAB0LhW3fwsI1bTY9FvrcexFjwAAAAAAAAAu", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9jPK4ekFswUlDMrLg6xAug"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAABjgJ_Yxe-SHgukLEpCkawSk1QWAAAAAAABqplYxe-SHgukLEpCkawSk1QWAAAAAAABOgg", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9tg9pzqKdnfA2ABqB6tHtA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2q2cEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxk0cEvvhuguaGYCmGWrnWRz1QAAAAACEPqd", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uWmN7UoDEV82g0X1jR-lag"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAvspzm-_Ca31VwijYVQAZSLAAAAAAAAAB7TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABbXyIB1JXxkoOQjMae8CICgwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADWifN9r0wurhPb3dG8PudTpAAAAAAAAAASywRpFKHnyqIdEibpvZWLtAAAAAAAAAAC_jcNhXlm_4ESbJ83f0qd9AAAAAAAAABnBvLbND_0DrAH3Z_KTjqNwwAAAAAAAAAIfZfGpgZFJokP-jaeydrs0QAAAAAAAAAJjg3LdO4DNz9FsefjUG1F1gAAAAAAAAEgf6OHtxWEEYSKC5jCOpZRYwAAAAAAAAEy", "types": "CANcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GHUuby7f7Ki-mhiDAG_3SA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAAAjj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABdMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOk99M4bkjfKmg3-yt9HFm8AAAAAAAAAEW", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JHoQWviQB3DglItLg3z8Dw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzScEvvhuguaGYCmGWrnWRz1QAAAAACE_-qcEvvhuguaGYCmGWrnWRz1QAAAAACE_n2cEvvhuguaGYCmGWrnWRz1QAAAAACE-P2cEvvhuguaGYCmGWrnWRz1QAAAAACFGYYcEvvhuguaGYCmGWrnWRz1QAAAAACFGTE", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "f18CNP-wdQ0HCwNNONpc3Q"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADMYfPhlM7fpOuKzX3zIJxLMAAAAAAAAABQjgoPLq3mlyg7cW-Xz24hgAAAAAAAAAAQprbfaPuvU_n-ucbpjQxQ_AAAAAAAAAAj8DgYxzl_EXTxjPKMNwP9uAAAAAAAAAAJd7mGKLotsZOhr3BShS80ZQAAAAAAAAAVJzl0rnZ8WwwkD280lWXtQwAAAAAAAADaphOxaUqs-517Yh0oy5O-fAAAAAAAAABiqjaz-3R5MGuHG8xBpiPquAAAAAAAAAAhtG2KtxjrEKbGvy_Zisi6LwAAAAAAAABRqX8-oC5V0WLBgQpW-imEyQAAAAAAAAAG0UWcGuv4HeepGHFbr48-rAAAAAAAAAC5MM51VTv27UToLPXymIJTGwAAAAAAAAANPZls10GkrVBps7xBGX0acwAAAAAAAACThYhRS1xvCc3bqxTQLfng_gAAAAAAAACSYu2rdEE9oNx2HZGvLTWAEQAAAAAAAAAr8LFcVxuhgoewV1y0T433WgAAAAAAAAAZzyvEc-oKyqCxZrCc-hDsvAAAAAAAAAAiYWS9Usg0M4wsAp_Kwi6pJQAAAAAAAAABiVWKY6rhVINbnHDGNYqFwQAAAAAAAAALbdcjH1IduvC01JhGXDULzgAAAAAAAAAE", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LibGknFXAn9fd0n8hPZURw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANfzLzWZQgzth4yv0Aw0PoLgAAAAAAAAAl1pEcO9CYkxI799CldX3uowAAAAAAAABSeRhJRvHm727VHuGPDJpA3AAAAAAAAAAIFeTq3grQxZLpQxyGC-4wQQAAAAAAAABF9F2a_yzWrSmXRu6SZEKaiwAAAAAAAABdilROEXfY2pUH01XyVGW7lgAAAAAAAAAWUUg1eX6XD3kMg9XTzAxNlgAAAAAAAABDhlv_ksAXxTQ2GTBcbRb2JwAAAAAAAAAy4pQmnbdVKlEPbRd3rB3jwgAAAAAAAAAUl0hCUDJE9WA5zrDYnTjz6wAAAAAAAAAFEjqVtFve0NBSahnBSZ385QAAAAAAAAACasfjD62HMHzrp-TIN-8V-gAAAAAAAABqo-j45UNS6a4i2FH3VTZTCAAAAAAAAAAF6BfWdekjqfXKsC08sKjfGwAAAAAAAAAMBE0p8q_mh7enzgEoPVJKBQAAAAAAAAAe1YwmAWjsK6oD1Qs8m4ZuaQAAAAAAAAAW3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAA5yATvQ7EacG6CR4rzcFaNFEsTQAAAAAAAQGM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMTBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tnUJH3O0LYpzeUegdlTfKQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgMW", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "G9ECosqumaYYOVTFlJRp6A"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEUiJ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EOO-biRc_oXEIgdrmE3Yfg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAacSS", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mhCENzeJsRypXPr7NLjqVw"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABgzj8z5k14PsCcDvFyUC1kmlV3QAAAAACFH_-z5k14PsCcDvFyUC1kmlV3QAAAAABhYaHz5k14PsCcDvFyUC1kmlV3QAAAAABmRWHz5k14PsCcDvFyUC1kmlV3QAAAAABmMwQz5k14PsCcDvFyUC1kmlV3QAAAAABmP_4z5k14PsCcDvFyUC1kmlV3QAAAAABmP5wz5k14PsCcDvFyUC1kmlV3QAAAAABSO2cz5k14PsCcDvFyUC1kmlV3QAAAAABSOAgz5k14PsCcDvFyUC1kmlV3QAAAAABSWD5z5k14PsCcDvFyUC1kmlV3QAAAAABRyDZz5k14PsCcDvFyUC1kmlV3QAAAAABSmpsz5k14PsCcDvFyUC1kmlV3QAAAAABSP5Ez5k14PsCcDvFyUC1kmlV3QAAAAABSCA_", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SVxJAjIDjZrrbvA9qjRyTw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7RXT4fd_WKeR1cE-hlLelCQAAAAAAC-pGEXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_V1XT4fd_WKeR1cE-hlLelCQAAAAAACgUmmXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdDI", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "l-jFO6ESsoHoN6gyefmDNA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAnEGqyFI4UBcYw0uODaUlP_QAAAAAAAAAEo7sR_pIbiVV_Z8TfMWbBfAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALVhUIBMnDjpGauL-PhicCqgAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl_plqR4x5xi_qOVu9JWCxQAAAAAAAAAEYNvLePk3bv25BUHN3KzEXQAAAAAAAAChMo8MRZcTTA5MSH5mIc8c7wAAAAAAAABiYNvLePk3bv25BUHN3KzEXQAAAAAAAAAkq6h8WxXFV1hXZzG4J6n18QAAAAAAAAAWmW2YX0W7f8kHZ9OF_UwxgwAAAAAAAAAGLE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAkQkj", "types": "CAMYBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SUZ7CA7sE1ISr8T76gz0pQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAABQetr0v-F_gZF8yXV_t-VgIQAAAAAAAAAvvJ9aY3SiI_VOViscMoUSuwAAAAAAAAACTdwLOY0C6NYFuVVgfM0c5wAAAAAAAABspRTg5ZWEbp3JJIuMWP-nnQAAAAAAAAAI9YfSdWjTHtXOXD-P-YJ-oQAAAAAAAAAjnia7whBbxOvwBeZB8fnAXQAAAAAAAACE0uQfhygt3iA5h-6EqK0MPAAAAAAAAAAEJYb5JOqnMPOCcF7fd5apugAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAL0K8NlMClggx8jaziUTJXlmWAAAAAAAATNr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "CAMRBQIDBQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UeaUM7Om2vx-z6s0bBXPMQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAAC9giwOUz_dwg5QpZ6rn_mtEAAAAAAAAAAaVuN94T655MWJDhWvTQiB6QAAAAAAAAAGCsbV9k-bf9vouE4JAWSvYQAAAAAAAABMuqwCsRNPiFKrqHYXLGpv-wAAAAAAAAB8iH1rt2A0cDFvTr2IZcc8_wAAAAAAAACWjtEB8q7ZNk5LwicDPNbPVQAAAAAAAAB8_20iQw_1BgBh9m8HkEpgSwAAAAAAAAAOMHOHZ9dur_p0OUPsIclbdwAAAAAAAACLPwt7pP-aI82aWD0sQr02awAAAAAAAAAA", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8x65WqPnBjtVuuc0TRdiaw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf-8", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YiqN1eguj9w9NAvkPJxo-w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcNAt", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ycc5WIDSFgbOYKJJPEnKPw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf_KcEvvhuguaGYCmGWrnWRz1QAAAAACEUiU", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XxgF8S8zcb8A1_Ecius1nA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAAV_QheDKcYlWwsFE4koFnZNgAAAAAAAAABRMYtu6lQVhfanHasngCNQAAAAAAAAAA5ZNYIIcZKEhelw-qPJkZowQAAAAAAAAAW4-lSY69fXDm_fOs77Q9KJgAAAAAAAAACAMk_trcRDqgWwE9O1EQdVAAAAAAAAABfSiNQN5yWanN9PLQ_u0EHrAAAAAAAAAAS", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PRG5hVGVXLYVZ0h02g0udQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAAAjj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABdMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOk99M4bkjfKmg3-yt9HFm8AAAAAAAAAAA", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ljoZqY7uQluiDQvieY_xHw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFVa2", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bMR3cLNESeD0GrHLhW-oYQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAABdynFllp5CrPbAGyx1JneoOgAAAAAAAAInM9t3sX7Z2Nj1mpARCDGcawAAAAAAAAAIwcw67NCnOLTYutynHBvqowAAAAAAAAA90vYUuo04uCIksGcEjg9Q4AAAAAAAAAACiFkuHlkQPsBsMnUTpjsUKgAAAAAAAAAF0Cdt9wyWxnG2B-xGXMO6owAAAAAAAABpyYF5YWbjTLokor9oKz_A5AAAAAAAAAAN1YwmAWjsK6oD1Qs8m4ZuaQAAAAAAAAAW3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAA5x_3YsnZ_Lwaqr0cHEPo0D185QAAAAAA5LnD", "types": "CAMyBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mIwFBWh1v3kx8u1FeFlbIw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAHOgepeYBdrKmAGikZZHzjywAAAAAAAAACvIUAbyMW7bf80Va51E6QcQAAAAAAAAAF_I187UwkDjABEvmHmR4uSwAAAAAAAABtf-B_DnWkY3i33A_-cn2DVAAAAAAAAAAa_iCcRlhs7iF8GyQDr_i9yQAAAAAAAADW4LaiotHNGYdIR8tBjAPtZwAAAAAAAABGIlQ1XNLSC8AG8SGKzC1MsQAAAAAAAABNtLATSye44dZj5qP3wd7yWgAAAAAAAAEpigDwMdAXo1TdAS62iEyAAQAAAAAAAAAE2s_lBdMgasz8z2CHTH7llQAAAAAAAAAEZIenda5b7lnvaeoaoU0sRgAAAAAAAAAwLrPBC0BVk768vSdX8rgftwAAAAAAAAAXQZb4rTMQsQaHQYQyuxFMYgAAAAAAAAA1H46oOheCVYMwVppPPeLSyQAAAAAAAAAIPxKXTV4MDkHtmEvOc2iKdAAAAAAAAAAFOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAO1DL81KYIuhFbaCdMgmm0VgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAZHpec9nZGwrrhoUYM845NAAAAAAAAMHTogCgWMgT5mMAMhpNA0IMiQAAAAAADvLE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALko96tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf", "types": "CANIBQIDCwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ifj_nYmYbVre3Goy-3d1XQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAE4sYynbT0zwSRuZS8reU0hgAAAAAAAAAQ4-lSY69fXDm_fOs77Q9KJgAAAAAAAAACAMk_trcRDqgWwE9O1EQdVAAAAAAAAAA_", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uk1ygFuU89LLnNUfPAM8KQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAD7Kufl841KLBEdWpuT5bLXSwAAAAAAAAAORuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAqFV6xhVekP5-uToPI32ragAAAAAA7PGLqFV6xhVekP5-uToPI32ragAAAAAAxoGftQgAmBJBgPLrkikSPRsmtgAAAAAAAL3h6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBIH", "types": "CAMFBQMDBgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rOjpZXDzMuqgXHFTBocx6A"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAxrAh73n3G8p4dXg695aDMigAAAAAAAAAJzx9IOzRpYLcrlbiJ1gStmwAAAAAAAAAM_orFLBX4vpmigxovAnXMlwAAAAAAAAAFV-BrlcNQ7BgfHtC7BLNw6QAAAAAAAAA5axgEJXApvqeO8NKYR7cB6AAAAAAAAAAJm6LPNSFO1-j9qyfUqm5ykAAAAAAAAAAXvCGd3lsIz-VHcGmd-xEM8QAAAAAAAABpZU5AuXlgdgIyHSjGyxSQTQAAAAAAAABcdpyOM9W9jw9r880o5Ov72gAAAAAAAAAv3-NDnOSIA1Y6TA9a10uSjAAAAAAAAAAyQ_fTsiDQn3AwPFHRHJfE6QAAAAAAAAAFiDeUqi9fXDm_fNSrL17LBgAAAAAAAAACnzw4AVNutfhHt7T-gQii5AAAAAAAAABfAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5_wX-Er1trjNDpVBu_jsDA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAC1On5Z3CKaS4aU08RhYA19y5ITQAAAAAC19YhZ3CKaS4aU08RhYA19y5ITQAAAAAC14rZZ3CKaS4aU08RhYA19y5ITQAAAAACs8h3Z3CKaS4aU08RhYA19y5ITQAAAAACqk0gZ3CKaS4aU08RhYA19y5ITQAAAAACIAqaZ3CKaS4aU08RhYA19y5ITQAAAAACtAiPZ3CKaS4aU08RhYA19y5ITQAAAAACsxfDZ3CKaS4aU08RhYA19y5ITQAAAAACIA38Z3CKaS4aU08RhYA19y5ITQAAAAACIecEZ3CKaS4aU08RhYA19y5ITQAAAAACIdftZ3CKaS4aU08RhYA19y5ITQAAAAACInZnZ3CKaS4aU08RhYA19y5ITQAAAAACIfPuZ3CKaS4aU08RhYA19y5ITQAAAAACIPZ8Z3CKaS4aU08RhYA19y5ITQAAAAACIO8uZ3CKaS4aU08RhYA19y5ITQAAAAACIOKtZ3CKaS4aU08RhYA19y5ITQAAAAACHDgoZ3CKaS4aU08RhYA19y5ITQAAAAABvncYZ3CKaS4aU08RhYA19y5ITQAAAAACHDlnZ3CKaS4aU08RhYA19y5ITQAAAAACHF4dZ3CKaS4aU08RhYA19y5ITQAAAAACGm9V", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JB6F-U_ns7SY5JIwmO_kFA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbsKZ3CKaS4aU08RhYA19y5ITQAAAAADKa-5Z3CKaS4aU08RhYA19y5ITQAAAAADCLGpZ3CKaS4aU08RhYA19y5ITQAAAAAB0Hr7Z3CKaS4aU08RhYA19y5ITQAAAAABz7D8Z3CKaS4aU08RhYA19y5ITQAAAAABz7ZTZ3CKaS4aU08RhYA19y5ITQAAAAAB0J-lZ3CKaS4aU08RhYA19y5ITQAAAAABz_LSZ3CKaS4aU08RhYA19y5ITQAAAAAB0J2gZ3CKaS4aU08RhYA19y5ITQAAAAABz943Z3CKaS4aU08RhYA19y5ITQAAAAAB0J-lZ3CKaS4aU08RhYA19y5ITQAAAAABz_LSZ3CKaS4aU08RhYA19y5ITQAAAAAB0J2gZ3CKaS4aU08RhYA19y5ITQAAAAABz943Z3CKaS4aU08RhYA19y5ITQAAAAAB0J-lZ3CKaS4aU08RhYA19y5ITQAAAAABz_LSZ3CKaS4aU08RhYA19y5ITQAAAAAB0J2gZ3CKaS4aU08RhYA19y5ITQAAAAABz943Z3CKaS4aU08RhYA19y5ITQAAAAAB0J6lZ3CKaS4aU08RhYA19y5ITQAAAAABz-1gZ3CKaS4aU08RhYA19y5ITQAAAAAB0J8lZ3CKaS4aU08RhYA19y5ITQAAAAABz_D3Z3CKaS4aU08RhYA19y5ITQAAAAAB0J-lZ3CKaS4aU08RhYA19y5ITQAAAAABz_LSZ3CKaS4aU08RhYA19y5ITQAAAAAB0J2gZ3CKaS4aU08RhYA19y5ITQAAAAABz943Z3CKaS4aU08RhYA19y5ITQAAAAABz7_1Z3CKaS4aU08RhYA19y5ITQAAAAABwKdDZ3CKaS4aU08RhYA19y5ITQAAAAABwE9oZ3CKaS4aU08RhYA19y5ITQAAAAABv6hU", "types": "KAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YABibb_jw0z2mFZJ8rsBIA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAqeSs1xpPdaQi6BA9wz10SrwAAAAAAAAA5TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAAA5jjKpARUU3mW6HQ-DZ0nY8AAAAAAAAAAOiLCTWRKOWFgxy9lCZCKQuAAAAAAAAAAXPxG4kqBtC76qisSIA3IEOgAAAAAAAABz", "types": "CANyBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kfHsP1mW7mP6jtkOBG2aew"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHZDaXT4fd_WKeR1cE-hlLelCQAAAAAACj82rXT4fd_WKeR1cE-hlLelCQAAAAAACkGe8", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ymCCYcwH_madRuyjsHk5Mg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAvspzm-_Ca31VwijYVQAZSLAAAAAAAAACHmBUMQufVJBVVG00JrcabBwAAAAAAAABYmBUMQufVJBVVG00JrcabBwAAAAAAAABYmBUMQufVJBVVG00JrcabBwAAAAAAAABYmBUMQufVJBVVG00JrcabBwAAAAAAAABQ_MKsb53X8OFm_0hl3h9AZgAAAAAAAAAMSW61JLQpyiY8JZQITDlLwQAAAAAAAAAudR3x5XgBILj3h9lg7-5DwQAAAAAAAAACdYhRx-e7CFQF89Cj2l7eOQAAAAAAAAAJENXxAF8BVsp8AKhvQRK7mwAAAAAAAAAbWYLRZt9i7H-NuOl3RpqEjQAAAAAAAAAl", "types": "CANKBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "s7jhdqicGJ85l6MMpJ5h4w"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf-g", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MlcjX8Vw9YA9B7H2WMfzTA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-9R0XT4fd_WKeR1cE-hlLelCQAAAAAAC-xp-XT4fd_WKeR1cE-hlLelCQAAAAAAC-tMkXT4fd_WKeR1cE-hlLelCQAAAAAACgR_zXT4fd_WKeR1cE-hlLelCQAAAAAACgUOc", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WTK3WD91wf76sAd6PBxIoA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eQZcEvvhuguaGYCmGWrnWRz1QAAAAADhDQtcEvvhuguaGYCmGWrnWRz1QAAAAACFI4A", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6RQSqI_DYo_fU-yUjLfiPw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAACKf_a_qdoBA55O8a7qgwDK7gAAAAAAAAARuZeXOJajIKqLKk4-05Cj8gAAAAAAAAAIfx2qpzR4SW8k6QF4h_x-lgAAAAAAAAACXWhZGeSVw3QL-gA2NjTItQAAAAAAAAALcrJxfOZekEO297SoXoFNvwAAAAAAAABEz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHAAAAAAAAV4sAAAAAAAAAHWqIu3LwO1GgqFV6xhVekP5-uToPI32ragAAAAAA0RO6qFV6xhVekP5-uToPI32ragAAAAAA0Q7P", "types": "CANHBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OmeWJ7pAymYhWRrAnd1xrg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAFR8_MBJLaIg47PaVKlvzT-wAAAAAAAAACdoUW6X4sD8xm3oZvX9vWAQAAAAAAAAAFXGJH0JyzaogzCYKHcvHBvgAAAAAAAAACkZKk9YVdr54f5u21hze0MgAAAAAAAAAF665jeMvW0d41JQ06itCnpQAAAAAAAAAFa799-wigaThQmng1vPcAYwAAAAAAAAALRKe7UKAjS6nb4NoNQa3O7AAAAAAAAAAGtpSvHuTpNaDxbDVGboxz7gAAAAAAAABTwBQ22JyFQnHRm3n5bZdxcgAAAAAAAABVAgDBLOoQos6HZ8JoaefNzQAAAAAAAAASBLRskqAfxw4UNf9p7ldQOAAAAAAAAAAQTl_Iodjc0LWexYa5MoBoHAAAAAAAAAAHntgZha7-wW1dtg73nm5MkwAAAAAAAAAmsCOApbaKyYNIvwXSt1bEIAAAAAAAAAAy3rmyHJndkO8hLNYIrTHVNgAAAAAAAAAP", "types": "CAM7BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cn2EpQqWCVem8DknXDkNXg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSLH", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "B5Li3P-xnCI7OZMKdo3HZg"}} -{"Stacktrace": {"frame": {"ids": "c6lwtZBG2BzNKGtSyzLrTAAAAAAABCWpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGc6lwtZBG2BzNKGtSyzLrTAAAAAAABBZWc6lwtZBG2BzNKGtSyzLrTAAAAAAABWVUam-Z0RfUVY0oYK5VXRDk9wAAAAAABeu4am-Z0RfUVY0oYK5VXRDk9wAAAAAABeopam-Z0RfUVY0oYK5VXRDk9wAAAAAABeePc6lwtZBG2BzNKGtSyzLrTAAAAAAACN4sc6lwtZBG2BzNKGtSyzLrTAAAAAAACNVLc6lwtZBG2BzNKGtSyzLrTAAAAAAAB8hjam-Z0RfUVY0oYK5VXRDk9wAAAAAACi24am-Z0RfUVY0oYK5VXRDk9wAAAAAACiyR", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MUbC0p7FbajtleTdDiK2wg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAazVvSNDzWiYDmLZi_Z1ZVETLoAAAAAAAayyfSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcOjMSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcT14SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcS7mSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcSay", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9be6nEEjsc2_ia_Ui8XKOg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChkDX", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nay4Cu7cpfWvHwjKfzebpQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgnM", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Q21MZOSvgx9xEGx7DqfZtg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAAEJm5p8puApNHgdtwb3aFhxPAAAAAAAAAApxDECjxfRDF0SAcicHv7yIgAAAAAAAAABSsODsFdp0k4d_SSQAFmIUQAAAAAAAAApzzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIOgrnocamUAo62UJ-c4BU1gAAAAAAAAABcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAI3FmF0iegYInyRffZHSr8AwAAAAAAAAAv1Az5XiB-HqkM2KIxBs7pHgAAAAAAAAAzXmgLknRmXWrjNm14n69KUAAAAAAAAAAGcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAInQRJ3xr79n3cY6qS99IffwAAAAAAAAAE7EnnOhShMGZ9Te5BWwjtoAAAAAAAAAATopFI2iPPQrSoKgHSzuYsiwAAAAAAAAAIytmnDvqR2kv8bcodWBOqIQAAAAAAAABnlPFcxZmqiy0vqSr3tr4NBAAAAAAAAABhraFDPXwgmQmDo3hESpMdgQAAAAAAAAAC-AfB72--alphLE8FS3h2PAAAAAAAAAAjzwiX7AgVqL-aPC-SuEi6CAAAAAAAAAAHuC86pFXXnBLCj6eRRljPDwAAAAAAAAAQNc9gj1rv2NerZVTmjxTx9AAAAAAAAACGqN4Vqjijt0HHN8TkXT1dVwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAZHpec9nZGwrrhoUYM845NAAAAAAAAHI6_QYAzQdAagYTCI2yUMpa7wAAAAAAAOb86tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW096tVKI4mSYDEJ-ABAIpYXcgAAAAAAL5eG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL47I6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL4VU", "types": "CAMgBQIDBwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aRGWrc208dGoT33fGEbwGA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAAAYGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHAAAAAAAAV4sAAAAAAAAAHWqIu3LwO1GgqFV6xhVekP5-uToPI32ragAAAAAA0RO6qFV6xhVekP5-uToPI32ragAAAAAA0RL7qFV6xhVekP5-uToPI32ragAAAAAAawdhqFV6xhVekP5-uToPI32ragAAAAAAwZHT", "types": "CANDBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qmvE4JqUb_c7Db7yXDg5mw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgLA", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AFNGR4OlXqTo-8_xvYFKBg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABFvaYxe-SHgukLEpCkawSk1QWAAAAAAAAM8p", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ubMKKKyUhNm18UW6QrHRVQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHfZKXT4fd_WKeR1cE-hlLelCQAAAAAACy8_rXT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-aOXT4fd_WKeR1cE-hlLelCQAAAAAACgSZzXT4fd_WKeR1cE-hlLelCQAAAAAACgRW_", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZvW02WsFdrDb2uuQD6AqIA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-BdSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZyn", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0MR1l5n93T9RL0AOopmz6w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcoiHXy47Qw5euydEoPUexRgAAAAAAAAAga67hy6D4_aH__IrzfMid7wAAAAAAAAABruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZf4KmPLa6_uw8gRgiw9EUAAAAAAAAAE4ihprad0bkU-u2IU9StodIgAAAAAAAAFXYmsifTqF7cioaxmVry5lBwAAAAAAAAAGKXYM0aVJDRSRVOuwZo8XMAAAAAAAAABEOU_VydMIAviE7nI4-Op03QAAAAAAAACNpXGB2SA2zuGKxOA7V4UPZAAAAAAAAAALyW94tVERi6q0VzIVjryqTQAAAAAAAAAoMIoZ_QqnU4D7k02YmLIdSwAAAAAAAAAB_cm2-vGeYtB-v60e7C7a-wAAAAAAAAAIvZvGTU2ISDDtSYwF1iMiKwAAAAAAAAADlfjVNXK_x0C4X5O62984zgAAAAAAAAAFZbvmFtHvqv74jokq3XvBkgAAAAAAAADLcFagk4BlhcbBvpuO0I98vQAAAAAAAAAbTJNGpZ5zrxHIWzJGPowW7QAAAAAAAAAEJvETSNUFmQzhSgQRV87p_gAAAAAAAAAbe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAARKYUKYe5FJokP-mDuLYX4tQAAAAAAAAAJi2OZ9-P_pjOFSV36486xoQAAAAAAAAA4", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YEq1JWlDmlwTpiy46PgDqA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAAAaI0QtQ3x5Qtt-qibQRB-qEAAAAAAAAACEwdRZBOgt1iAFeehFpb20mAAAAAAAAAAJ0Cdt9wyWxnG2B-xGXMO6owAAAAAAAADYVx2H7p06nNerPKpNR75HGQAAAAAAAADbRo0xTS_XLS48c7gOvsUW-QAAAAAAAAAiRuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAA51NxYsnZ_Lwaqr0cHEPo0D185QAAAAAAyeS2vQ7EacG6CR4rzcFaNFEsTQAAAAAAAPfQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMKBQMDCQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "osSW2qt9a8zRx0nR8PECjw"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAADz-uSZxl-YF9wOaedogsBMtvRAAAAAAABSmhSZxl-YF9wOaedogsBMtvRAAAAAAADdGCSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAADz6pSZxl-YF9wOaedogsBMtvRAAAAAAAFP0nR_3RsDYccfUxjNYYah3JZgAAAAAAB_NwR_3RsDYccfUxjNYYah3JZgAAAAAACLbnR_3RsDYccfUxjNYYah3JZgAAAAAACND3R_3RsDYccfUxjNYYah3JZgAAAAAAEQBj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZd", "types": "QwMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "O5lLlWeDVPBzxcQgxCRocQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFxkXT4fd_WKeR1cE-hlLelCQAAAAAACiJIkXT4fd_WKeR1cE-hlLelCQAAAAAACiM0oXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NKeJv4UECTJRoO7tbd8ieA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcM9Xltn711KKFcrKCAYh_ZgAAAAAAAAAE8s5hM6TvWnoP9XP3e8VVVwAAAAAAAAAA", "types": "CAONBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jFhA24HccRgfwIBBwmJXqw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFyQd1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAmB1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAdK", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GLQz44vVtWQ5ppKiz2gP-g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAACQUBpN-E7Da9pw7aCfqoKMJQAAAAAAAABgZyityGDpQJw1YigaXArSXwAAAAAAAAAFy9wAruXr5eENJ6q-yQaEgwAAAAAAAAAIhmcQZSO0MWvUeViJZfR2DwAAAAAAAABId55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsSidn5oJ7A2M_efsiHDz05QAAAAAAAAAT0_jShB-DuV77HIBPKqBRjgAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBAZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMoavQ7EacG6CR4rzcFaNFEsTQAAAAAAATs0", "types": "CAOTBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "B5QOVChXLsrqENbKSsGj8A"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACglEkXT4fd_WKeR1cE-hlLelCQAAAAAACglIuXT4fd_WKeR1cE-hlLelCQAAAAAACgmcRXT4fd_WKeR1cE-hlLelCQAAAAAACgmq-", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yj80EbH9E-W_Q5ntbWTS-Q"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAD7Kufl841KLBEdWpuT5bLXSwAAAAAAAAAORuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAqFV6xhVekP5-uToPI32ragAAAAAA7PGLqFV6xhVekP5-uToPI32ragAAAAAAxoGftQgAmBJBgPLrkikSPRsmtgAAAAAAAL3h6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwco", "types": "CAMFBQMDCAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LcLD9Ru4GLxHGOxhmBbPug"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAAMlBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF8DjWuv2ON9M4hqERzLLGrwAAAAAAAAA4jl0Few0KXqirBZp0WuOd2wAAAAAAAAFe71tcgbBjsGAuVt1WGfcc1wAAAAAAAAA3JS0BtKRMk3xcaGJmg4uqaAAAAAAAAAATAmTcFForv1r91KDhJjsuQQAAAAAAAABh7BvwwtuvWC96Hl7IBrycDgAAAAAAAAAiLS1R7UgyIEin1lhHxRFFXwAAAAAAAAAEX6lQOeqkpDSSxUYYwJb8TAAAAAAAAABCRPFiojmndeu_4nmb3OGehAAAAAAAAABqVdgwu2yTb01w3GcQPIyz_wAAAAAAAAABIQfZB-VRGlNehu2EmCzO0wAAAAAAAAAEJlj-_pvqSdlHmJAw2MF6mwAAAAAAAAArmIhHJLRWLV08bvGOk_MaUQAAAAAAAAABAsYLPOMVTEJOeDxuyLY7KQAAAAAAAAAUvTiT6RQHSjUNEBuIvfofKgAAAAAAAABRer7IYYpYGm8FuaYV6j9_KgAAAAAAAAAOok4zrk1T3mBLtObzPQcS-QAAAAAAAAAFdLwWk1CGjdl0nWT4XrDcdgAAAAAAAACSkpBi8LFR3RTjSJqFuljOuQAAAAAAAAAATRhdHOKO7GmLMAaUL3Xw6QAAAAAAACSc9BM25vr762IbGPHbtur65gAAAAAAAEYj9BM25vr762IbGPHbtur65gAAAAAAADt39BM25vr762IbGPHbtur65gAAAAAAAC5k", "types": "CAMpBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "x1DopX-Mm-f8qb0DCkjPyA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGg5Nz5k14PsCcDvFyUC1kmlV3QAAAAABFqo1z5k14PsCcDvFyUC1kmlV3QAAAAABFrCXz5k14PsCcDvFyUC1kmlV3QAAAAABFiWQz5k14PsCcDvFyUC1kmlV3QAAAAABGg7z", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "myjdfdwRKOn6W5NX1Bn-1w"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAACKf_a_qdoBA55O8a7qgwDK7gAAAAAAAAARuZeXOJajIKqLKk4-05Cj8gAAAAAAAAAIfx2qpzR4SW8k6QF4h_x-lgAAAAAAAAACXWhZGeSVw3QL-gA2NjTItQAAAAAAAAALcrJxfOZekEO297SoXoFNvwAAAAAAAABEz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAABWdZbEvj5KNLRaqtv4ShlGOgAAAAAAAAAHAvY-8GTrHONLnLoYn_aUmwAAAAAAAAAl9iPPrg1Y9vtWhMk7mXQ_KgAAAAAAAAAeuJZrofYGiqBpYJJdGGtLHQAAAAAAAAADzGZ_gCn-Ge9oHmah2m0JWwAAAAAAAAAD2p4Dyo36Ea--rGgiVt2H5QAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhNV", "types": "CANSBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JWmxFWMO8LHVPPV9p1GcnA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYRr8mF3o9czEU_lrcVazITQAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAHVRV3OqaPHH0CL0c13xlvAwAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABbjYv_loUJfP4bAxHmRpfBQAAAAAAAAAI_avzkz28Qok2WNYNUK8x_AAAAAAAAAACHRX5ZF5fIW1GKCXf3a6CmwAAAAAAAACtBTDQHzxuOEAYM78jOAyAQAAAAAAAAAB3t7DkRGcQiDMfHx06PCzMpQAAAAAAAAAXYEThj3UEuGl2wDiJSq9vSAAAAAAAAADmjckGVFRAvWURR3kz1QpfwQAAAAAAAABZQUM3v4ew-jMVuKkpISsPEAAAAAAAAAGi6iNgA9fR_bPjg3gsO7FxQgAAAAAAAADeWKOnV4dhtUKFY7wtM7-RyAAAAAAAAABkIG23e_HaXuz8McPqppVmPgAAAAAAAAARUX0maaM_jFdAmFMbhLpaSgAAAAAAAAANVydXcSmOqICsVxLpiPFyCAAAAAAAAAAhxWXbvqcob2cyNB-_TJKbYQAAAAAAAABZ2RFqiy_TIF9Ivmg849R6KQAAAAAAAABA9sYnFbigFrf_-fozodwm9QAAAAAAAABxqlBu--gn4lPakFOOUFVXUAAAAAAAAAKu4qy1OhHC2klcRs4XgL9D7QAAAAAAAAAb4GZfdSdo79rYS6pQyNIftAAAAAAAAAAA", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BdKIIeru3ccMM47Vmx2rwg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mW4XT4fd_WKeR1cE-hlLelCQAAAAAAC-neEXT4fd_WKeR1cE-hlLelCQAAAAAAC-ntUXT4fd_WKeR1cE-hlLelCQAAAAAACkSTbXT4fd_WKeR1cE-hlLelCQAAAAAAC-nrL", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3iF9md1hhA5lL3Jz0Fzo3g"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66OO", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XELwzOLZflYDWTPYdFF2sw"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADIP8hgtQ4kMk_MBWrPUAFqVnYywAAAAADIPcCgtQ4kMk_MBWrPUAFqVnYywAAAAADINb3gtQ4kMk_MBWrPUAFqVnYywAAAAADIOB8gtQ4kMk_MBWrPUAFqVnYywAAAAADIORzgtQ4kMk_MBWrPUAFqVnYywAAAAADIlmA", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zQindYwMtv8QD8UZS8rDBQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyFRZ3CKaS4aU08RhYA19y5ITQAAAAABtxRqZ3CKaS4aU08RhYA19y5ITQAAAAABtnohZ3CKaS4aU08RhYA19y5ITQAAAAABudIg", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "D3VUcyuPxGSWdwpH9VSPOQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACujkfqsU9w34yk0ipcsxq5HgAAAAAAAAAO7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAFk3HyWSdTGgne1xIId1mIvAAAAAAAAAAzByiJTXr_lGzkMclhjfq4OAAAAAAAAAAFmVBN-6O2zeIv8GsCRrlSswAAAAAAAAAC7skvoqQ_JlmRN5w43B7kuQAAAAAAAAACP_4qycvxHBZREHniLmgHbAAAAAAAAAAFZa0P_0e34shcw6VJJ_B5XgAAAAAAAACWLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAMvPUU5i5r5XThwPX6RJsZ7gAAAAAAAAAE21OviUyRbmnxs6uitnTC3wAAAAAAAAAP3R6peF1IdwfQqmb119dyMQAAAAAAAAAFjRPUUEtO9tA38nKSenaVfwAAAAAAAAAC3R6peF1IdwfQqmb119dyMQAAAAAAAAAFMDjyE5AlqASoc6cxfe5K2wAAAAAAAAAwmxRwXt-8CQt60ehjLjpoTwAAAAAAAAAKZaQmU-IXyGvFS9G6a9D4BQAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAAD8oQ_ZJ3ImiZWOZcNHv_WYwAAAAAAAAAGGq5m7YsN9AxAFbfEdlTTPwAAAAAAAAANG-xCglt1CSRw88p7F7VV9AAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyS7sTGLCNH21piOrMPoln5uBQAAAAAAVTwesTGLCNH21piOrMPoln5uBQAAAAAAPe-S", "types": "CAPEBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AzjRpwmenH1G04gO5z-8Hw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABqVb0C_sYOU5d3eeu0yalLowAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAproTQ2x4u1u0ROVEifn0kaQAAAAAAAAAtOcVENYdBUHkmXadCZbxMcQAAAAAAAABX7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAMEozR7rHeowembmV8tqrkzHQAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5W0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAEXqmhrzhROIxdFfT_O0ufQNgAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAAC7R71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAACe6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC80G6zvzFPytbRyfwuXWQcAAAAAAAAAAB", "types": "CANABQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jXPLTMNK5Wt6gi7cqc9W_w"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQJvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACeySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAYh-mcFcSefWaXpPLGLAmk8gAAAAAAAADYzXY2fMPD2q8JxxSeQ4an4AAAAAAAAADb1ajhlpq_ffaY9SZwO_yFvwAAAAAAAAAMbYR0b7-vTQ0RKJD6ns3ClQAAAAAAAAAG5WRkp3UGiY89oONYWWfHqAAAAAAAAAAtidAHvTfpCa_Lill3CvLIKwAAAAAAAABUtknRVtdrp8TkRV3X6AJ-KgAAAAAAAAE69RiRfbyw6Ke6ra9C7bpO7AAAAAAAAAAF4t7oCp0G3Jy3f6AIzJEnWgAAAAAAAAAFu6OwtCLdW9mdeDVYCmhkdgAAAAAAAAACnFLCKDx8NAlt_5E9arxt2QAAAAAAAAAL5vj2qWMYXopIAHMeOOhgxAAAAAAAAAAJP85-ZHhT2OrY2C13tzUCcgAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAkHU6ZSkKN3zNxr0HYuO2pqe5hQAAAAAA2SbwZSkKN3zNxr0HYuO2pqe5hQAAAAAA2SRnZSkKN3zNxr0HYuO2pqe5hQAAAAAA2RQs", "types": "CAMwBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "E6UMSC7GLe9jd7t1ot1_kw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFdducEvvhuguaGYCmGWrnWRz1QAAAAACFWQN", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rHXidrM7meN_QI4wKNJ_Sw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAc", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_lMqaF4gbGiFm8tgIiB6eg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAc2wgGDGWUYKAius-1IxNgMQAAAAAAAAAA", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Bpc8eToJHZimyCogMpwGRw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChy6gXT4fd_WKeR1cE-hlLelCQAAAAAAFRYL03aS07d9PG4lc4UzuBbVWzQAAAAAADE19rtOWfs-RaxXWHIPyRB9RAAAAAAAAAGDArtOWfs-RaxXWHIPyRB9RAAAAAAAAAFu-3aS07d9PG4lc4UzuBbVWzQAAAAAAB5ec3aS07d9PG4lc4UzuBbVWzQAAAAAABvzT3aS07d9PG4lc4UzuBbVWzQAAAAAAB88h3aS07d9PG4lc4UzuBbVWzQAAAAAAB71T3aS07d9PG4lc4UzuBbVWzQAAAAAAB6mW3aS07d9PG4lc4UzuBbVWzQAAAAAADvtA", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1_2jb7w-6SaVosGj92Tp3w"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABco3Wz5k14PsCcDvFyUC1kmlV3QAAAAABcoPVz5k14PsCcDvFyUC1kmlV3QAAAAABaoiAz5k14PsCcDvFyUC1kmlV3QAAAAABGmvo", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rzZCRVK3fR8zM07WhJJirw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAACqGMNSe-6LTlpuiQTu86RdbwAAAAAAAAA1wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATmQVHcTFXg4JaHxKFUu2SNAAAAAAAAAAK0qdPtfCOXWtTMQkqPpfTpAAAAAAAAAAD4pD3shcvlMj_8ybo7T2TVAAAAAAAAADnEzrMYIIhTNfpjRj48sRsmAAAAAAAAAAFZ7iCsB1-GXkmEKIXzn-sOQAAAAAAAACH3eFqxdiFdaTGeVIFXzFrRAAAAAAAAAAFLAK76I-B1_Yz983QLnH1WgAAAAAAAABg8IFclPxnlaUsspb5D_RRJwAAAAAAAAAFQgvGkTCGw4jVdmztyjCs0wAAAAAAAAAFixcTnlj3GyJl_riemMVu5gAAAAAAAAArOgXCZlr_5lhpTZQoSrxsMQAAAAAAAABdwfX4W43RcsvFornvkG6aiwAAAAAAAAALanPZp8MtU1QLiT0Ue8dN9QAAAAAAAAAA", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "niPAiGls6k32DnDasicdew"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFdducEvvhuguaGYCmGWrnWRz1QAAAAACFWQV", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kZ6jYHQvenC-oIeTFn_Bnw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAABhdSoizOL6hk_mFFoq9MTU3QAAAAAAAABuB6QzH7IpuJwFbrtDLFp9JwAAAAAAAADsmhckGVh3BGIWcToRYxPBggAAAAAAAAACX31knMc676bIIEUjaHa0MQAAAAAAAAADTozXD2NzMy0dEH0e02djYAAAAAAAAAEKeRQqY-uKn1zCanFBx5tpKgAAAAAAAAANLaFl4epk0Q6S_D_8elQACwAAAAAAAAB7XI-CkvdugUy8Hfgp4tFlQgAAAAAAAAAsR_9SnG3su4ZfR3oq1nyragAAAAAAAAAcjR-SDIwuQ0TSygDzL16iAgAAAAAAAAAF2KV_VaafQZuYC-E-4iUNYwAAAAAAAAFL", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GvHv11zqYBw9Vq56J4GXwA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAQgtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAH59i-wMdSlFTE9FP7ALC-fwAAAAAAAABPJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACamW1QO3T5kZR72H8FRXCCwwAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IEh2TcuBJ50L6QBQgKo1LA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAACqGMNSe-6LTlpuiQTu86RdbwAAAAAAAAA1wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATmQVHcTFXg4JaHxKFUu2SNAAAAAAAAAAK0qdPtfCOXWtTMQkqPpfTpAAAAAAAAAAD4pD3shcvlMj_8ybo7T2TVAAAAAAAAAFCS0Vcinvs4UXd1rhNSjovpwAAAAAAAABVbAlNhxIUaCZOzq5Go2-fDwAAAAAAAAAIUNi2PfJJ-vKG8q63OaknIAAAAAAAAAHcPDxaYxBC-l8PtK0orl2RQwAAAAAAAAETSZD9YVGYcY6t7-F09t_klgAAAAAAAACDMxRnrnRp5fRRlUEkyuK1rQAAAAAAAAA8LNiGyjoSSwLd2vmEwDcgqQAAAAAAAAAtRrirhtozDrKAAydohpmvZgAAAAAAAABXyJIhq1AV1i5dfSljhhE7KwAAAAAAAAAGcEzK6HfXk1srPlYKWH6y-wAAAAAAAAJBNyFYG970OiNszXfRwkg2OwAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5W0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOTM5vHmZRGlLyNtB_jDhdvQAAAAAAAAAKXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAV61vrmCVoJZp3HjBxIMFrNAAAAAAAAAAFF7lATn_bFhRDcY0Z0OyPwQAAAAAAAABoY5AhuW5zTFbvkEYRGrJ6zgAAAAAAAAEXqmhrzhROIxdFfT_O0ufQNgAAAAAAAAAI1OssVXIbkn5BQi4tGKSa8AAAAAAAAAAKw8GVRjAwPMFQC_D_wSJ9HQAAAAAAAACaZJjsD24vVeIB2Mk_BbDMOgAAAAAAAAABPlE8FXr5PelWy7FpXlhElAAAAAAAAAABpfFrejV5_d2JafhorerbtgAAAAAAAAAB", "types": "CAM8BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hA0aNZ7KwEp2Q70t1DnO8w"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAY9Yx-v1soY3obBM9enH73ogAAAAAAAAAEhUTCUJp2TXU8cmsY31FJGAAAAAAAAAABHXMKVH0vYlc6MTlUxPh-OgAAAAAAAACpDb-q8zuXZ0pfYlBFFHtllQAAAAAAAAAMExOLHpMtDJgNCMVUQOkZYwAAAAAAAAAcpI3Jd4BkOvMo6mjauYfS1gAAAAAAAABACrlW_hPmVEABk0TgZmUnuQAAAAAAAAGjrXkHFJHXlVwu4t25QPtmYgAAAAAAAAABYQ_8e8jbfnaSxzTbLcpNZQAAAAAAAAFiDcQMgtZQLqwr_0Ox7dSTjAAAAAAAAAC85ClizBEH2YtrmYjg0ZZ1kgAAAAAAAAAFfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJYIk8zteZ8V2tJoAxEqPWxQAAAAAAAAAcj_szotBjFArpC5TNR-8gUQAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASPc_BexFq94TuMog9IsXVUwAAAAAAAAAFSZAt-g5Y9rkRhquz_kA7tQAAAAAAAAAgQreFBfyVW4qdUQkd5r6QKwAAAAAAAAAFnJl2AH9gxW75QO4qTYoGMwAAAAAAAAAM5D7QNNSBqrvhILSPUO8i_gAAAAAAAAAFAiqU5uyyFhqXM3u-rAXm5gAAAAAAAAAFdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFlaj3qCsdTqFe3GzncSEQ0wAAAAAAAAAIOWLUoD3Zz_z6tcDrQ1MGHAAAAAAAAAAw4LHVxTfMxrCiyLGXgT43dAAAAAAAAAAIev9mEltsHnyAh-1pwp44VgAAAAAAAAAJLuHkzb6R5yUPaGQOHswLWQAAAAAAAAAJcPOJzBCB0Kj7fFrlhVftWAAAAAAAAADEO1rBMVYyHx9sb0ab7BExzAAAAAAAAABD4W_nR-pxff53D0BjoKGHbwAAAAAAAAApfl80KEygC0q2Noyd1zAXYAAAAAAAAABUhlv_ksAXxTQ2GTBcbRb2JwAAAAAAAAAy4pQmnbdVKlEPbRd3rB3jwgAAAAAAAAAA", "types": "CAMnBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_FNO79a5C7cHLejvYdQS3A"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAC0XP_Z3CKaS4aU08RhYA19y5ITQAAAAADBlVKZ3CKaS4aU08RhYA19y5ITQAAAAADAqPIZ3CKaS4aU08RhYA19y5ITQAAAAAC12nPZ3CKaS4aU08RhYA19y5ITQAAAAACs80QZ3CKaS4aU08RhYA19y5ITQAAAAACqlrgZ3CKaS4aU08RhYA19y5ITQAAAAACIAqaZ3CKaS4aU08RhYA19y5ITQAAAAACtAiPZ3CKaS4aU08RhYA19y5ITQAAAAACsxfDZ3CKaS4aU08RhYA19y5ITQAAAAACIA38Z3CKaS4aU08RhYA19y5ITQAAAAACIecEZ3CKaS4aU08RhYA19y5ITQAAAAACIdftZ3CKaS4aU08RhYA19y5ITQAAAAACInZnZ3CKaS4aU08RhYA19y5ITQAAAAACIfPuZ3CKaS4aU08RhYA19y5ITQAAAAACIPbwZ3CKaS4aU08RhYA19y5ITQAAAAACHNUFZ3CKaS4aU08RhYA19y5ITQAAAAACHM88Z3CKaS4aU08RhYA19y5ITQAAAAACrE_iZ3CKaS4aU08RhYA19y5ITQAAAAACoMKzZ3CKaS4aU08RhYA19y5ITQAAAAACEZBhZ3CKaS4aU08RhYA19y5ITQAAAAABuBdPZ3CKaS4aU08RhYA19y5ITQAAAAABtHRP", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3cJve6GcDJQsWrYAyQs7-A"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipGH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipDo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Zq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Ei6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjoZw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjn7-6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWvZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWrK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnWZP", "types": "FAMMBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Q0wzD6Wsaoym2okQ8aY53w"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kSHpn8pwAHiX47J0IzMtXvwAAAAAAE8PJSHpn8pwAHiX47J0IzMtXvwAAAAAAE774SHpn8pwAHiX47J0IzMtXvwAAAAAAApO0SHpn8pwAHiX47J0IzMtXvwAAAAAAAo_d", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nyNpeOOTv9ufpl_gGUbV4g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAAtSAAkutGejeRImCZXeWZ-1wAAAAAAAACLcDDKtM-30WtgKUZUhSPZowAAAAAAAAD0JN-dgFkoqSE-dHBUib5RMAAAAAAAAAAQLYJWnM2aEBeu4YzFbSHmgAAAAAAAAAB_YpO7Ao3Jp5dMNGkF6KXViwAAAAAAAAAN", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WSjAZWkrBfhyqCpr7c2wpA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACXFDHy--PvgHpUWFquuqO7RAAAAAAAAAAA", "types": "CAMpBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nnMQdtf0-TCma7GTQu1BbA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABgzj8z5k14PsCcDvFyUC1kmlV3QAAAAACFH_-z5k14PsCcDvFyUC1kmlV3QAAAAABhYaHz5k14PsCcDvFyUC1kmlV3QAAAAABmRWHz5k14PsCcDvFyUC1kmlV3QAAAAABmMwQz5k14PsCcDvFyUC1kmlV3QAAAAABmP_4z5k14PsCcDvFyUC1kmlV3QAAAAABmP8i", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rItueCZaxnQa_9rqoUOBQA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66OFZ3CKaS4aU08RhYA19y5ITQAAAAAB610wZ3CKaS4aU08RhYA19y5ITQAAAAAB6u8TZ3CKaS4aU08RhYA19y5ITQAAAAAB429dZ3CKaS4aU08RhYA19y5ITQAAAAABw4LlZ3CKaS4aU08RhYA19y5ITQAAAAABw4CuZ3CKaS4aU08RhYA19y5ITQAAAAABw3M0Z3CKaS4aU08RhYA19y5ITQAAAAAB60llZ3CKaS4aU08RhYA19y5ITQAAAAADRxejZ3CKaS4aU08RhYA19y5ITQAAAAABzH6pZ3CKaS4aU08RhYA19y5ITQAAAAAByyDQZ3CKaS4aU08RhYA19y5ITQAAAAABwNoaZ3CKaS4aU08RhYA19y5ITQAAAAABtmb9", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MLI30dzAv_XVLHnFXWzCzg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQ9zOECVMFUE-sRNeQZ1HM6gAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARTZwep2BdnG6Mdu9AQocnMQAAAAAAAAAGCMCWh32oer3bDaYggVtoUQAAAAAAAACHHCW9gICkV36t4oXsjBpsdAAAAAAAAAAE_WhLMAElKfp9RHy9XD-HOQAAAAAAAAC3qkXC9AzfY8U3Ryc9g3OFDAAAAAAAAAAsccTvkbbzG7ITlutNR0SvYwAAAAAAAAAehu0S-fYG_gY_Otgg4IzKXwAAAAAAAAErXey4TSJt8z1Y1xeGVvkdYgAAAAAAAADB6fJMpXGng7X5bTc2KsPuMgAAAAAAAABSD0g0ITB6vPs-JMXU6kB_IgAAAAAAAAAETnmpwdT1yeLDbWlRnUic2QAAAAAAAAAHnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAA-DaVWIofPTETqopDkVERGkAAAAAAAAAATwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF2mlzHMlWgLtS4AXchUZGuQAAAAAAAAAIqThtgbHprFVYaxHnWJ5r2AAAAAAAAAAQ37kdvsyygZea642hUZCb9QAAAAAAAAAdvxAO4ozw0ZRvb8q4djSlogAAAAAAAABEwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFx4xnJ8Bvv3cqGQOknqJJwAAAAAAAAAIURrpT79Wm1-567n5aqJlbQAAAAAAAADL3bzfPK0NZtH4PhiksXncvgAAAAAAAACOotzl_-UJZ6X4M1v7YRzHZgAAAAAAAAAId_mdgff0kSRs-ewuuAGS-AAAAAAAAAACYpb1GyaDgfO6SxUxbAvctQAAAAAAAAAIyHxJa10zF8jCmhZDUlRioQAAAAAAAACJjOKHIn-OfmVASZP9y1NSfAAAAAAAAACHV9nsBUwQwMn84PajbyjYtAAAAAAAAAAYX6qt9XlU0IqttZBt4TnwZwAAAAAAAABHwvXjE31kESML0je4-Me7hAAAAAAAAAApDRApe1cPTh2-wFVHvKmI-QAAAAAAAABlfedIGTz7oXcPN7rVsxHwdwAAAAAAAAAMyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFq-Wp_fKqnzituNc-kKOtAAAAAAAAAAUpYMvKU2r2nETpEeIP80PQQAAAAAAAAA38jMyW-WmlGRJvr5T2b-plgAAAAAAAAAFwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0_JZyYR0Vno863IcUXpa7AAAAAAAAAAQGiPQYuBqA4onG16OCBJr7wAAAAAAAAA_wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF49P_FduVXL-1HnETkDgpjwAAAAAAAAAcS_CL2qp_hCoxo4NMBjattAAAAAAAAACntgTcpaw1PHSeu1PntXA3fQAAAAAAAABtVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFW_JPjd1DkAyoubIfHSaORAAAAAAAAAAMro-nOR8Y6-xR_0NZHNxiswAAAAAAAAADGAKN4IA59Oyrw_sFixA19QAAAAAAAACoj8cyxnhvgCmiV0wfzWt-5wAAAAAAAABH4_Wu3cP_1KUTQF00Htx73gAAAAAAAAA6v6A2aEAJbkezThEe0LppjQAAAAAAAAAIAHE52dyzEEDlVbgj_xFoxwAAAAAAAAAVwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFR7Hj9yPeT2EDyEr2K8ONTgAAAAAAAAAYg9D12vCHvqmadcctx-s3mQAAAAAAAAA7dAHd9ndNzEhU1GyagepTAQAAAAAAAAAlABk6RqRYy5QsiYS0AnfFrgAAAAAAAAApwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFtM8VFC-6NwJWsTojOgeMHQAAAAAAAAAMgQianSpTZDlq5RnHMXwrkgAAAAAAAAALwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFIg4O8IWFanKbF_VU4hFAfgAAAAAAAAAY3JOiPEBqME3dIDTotL2-UQAAAAAAAAAi36WCeR5NbgRZnRrGA9E9SgAAAAAAAACziGiRuqMs11HNWy379BhNywAAAAAAAAAQV6_MdAvjC_nYviBM-9k2MwAAAAAAAAAc-3GPQQ-ojQ0K4P5ZthFkFAAAAAAAAAANk11AiDI6CCFbyQU3K5sSGQAAAAAAAAA0hVKhVL3RShupVCryfwjurQAAAAAAAAAHmO8Ep2yh8naX77AaM6OoawAAAAAAAAA36IU8CVJsljq2c-RkQafrKgAAAAAAAABGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmOXWqC4F9CbM_9TaYs7enGQAAAAAAAAC6kUAbs4Tm3_NRbBQPhQnuwwAAAAAAAABqBlwtAEKFHXxtdYYHllc2EAAAAAAAAAAQnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF7vbDea8YrHNc_wHLzDnfJgAAAAAAAAAUZtfWODgA6w20T9TMv2NrwgAAAAAAAAALa7hZfalsBRk3tlQt91V51AAAAAAAAAA18NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAADtKBNthOxdN-LeSLQeW0hbAwAAAAAAAAEI-mKRCTh8AFw2quERsAqZdwAAAAAAAAAghMFUfSdfKq62EgaVo5SA4gAAAAAAAAApNatKHnzuddBuR5ARu7T06AAAAAAAAAAh-mKRCTh8AFw2quERsAqZdwAAAAAAAAAg1aZ3_qa-GDGgUGJlxlWbzQAAAAAAAAARc7fJv8qzYljmNQmIpTZNBgAAAAAAAAAJpho5yY-CB4hDJ5PhyrESMQAAAAAAAAAcwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF329FQG0FRbGaRCox_CO5kwAAAAAAAAAJ8V6RThS4xLGvyBskf3U-ngAAAAAAAAAKwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFojijB29c8Lo_FuNL__qV0gAAAAAAAAAUzsmqElNKWoxAiguA-24XnwAAAAAAAAAG7mYeFjFR9Yoe2nMw0EFMCQAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF329FQG0FRbGaRCox_CO5kwAAAAAAAAAJ8V6RThS4xLGvyBskf3U-ngAAAAAAAAAKwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFSrUBoSo_U1vNdZi0jlnWSQAAAAAAAAAcPpao3JWLokUncC1uitAjwwAAAAAAAAAo1oy5TLITDFo_6XpzirRo2QAAAAAAAAAkVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_2Z0wUnO7PTDrZjS1nqYP3gAAAAAAAAAoLi--jNLhFbogbPx7uUpcfwAAAAAAAAAQj-mrBXNBqeJC8DfUo5tvmAAAAAAAAAFRJuCfdWrRLOsm707HTwRsEQAAAAAAAACdAY1qQl7FueXylVMIipRQaQAAAAAAAAAGTwgGrxrsq_cPJuqNig0G7gAAAAAAAADSBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFJvo45Zz0twIPRpAdbsbH6gAAAAAAAAAY13IVMDkiegUfkjSIeMh3BAAAAAAAAAAGRORjHmtUEjxfs01h1UiB-QAAAAAAAAFWBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFJvo45Zz0twIPRpAdbsbH6gAAAAAAAAAY13IVMDkiegUfkjSIeMh3BAAAAAAAAAAGgdxhRsFINIcXjL8ov24MeQAAAAAAAAAGTwgGrxrsq_cPJuqNig0G7gAAAAAAAADSBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFJvo45Zz0twIPRpAdbsbH6gAAAAAAAAAY13IVMDkiegUfkjSIeMh3BAAAAAAAAAAGKyCwwRCAH9ygWwiIDxYOfgAAAAAAAADnBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFJvo45Zz0twIPRpAdbsbH6gAAAAAAAAAY13IVMDkiegUfkjSIeMh3BAAAAAAAAAAGULUcmJP7eCRtN2QDQ-fZtAAAAAAAAADdBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFIJh2m7sI5abovI4uFKTgAAAAAAAAAAAI0zb6LbjdUqiSUXWCnQCmegAAAAAAAAACwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFLPUt4IiihpgVMsHfOZohwAAAAAAAAAAI07D5zPmq5WKTujCLawFNUQAAAAAAAAACwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFgTk1MkSzzpomxPmIhiIHzQAAAAAAAAAYE1jDbcQSOqd7Pzoo2vcUAQAAAAAAAAAGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASFS55TSwq0w7KNb6oqdqsJwAAAAAAAABDkSbKpSG9UjBRbkWOO2dvwgAAAAAAAAAHs3WzjwILXubccsM-D_ZgMwAAAAAAAABi2YIDsUvs1qcVI0bSlo-YUwAAAAAAAAAECpMW_CS6i6ErtbeZjpah8AAAAAAAAABtwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFofSe_Fg814BTHLq535yxtwAAAAAAAAAYfGIJruj_Kk2wKVfC22qXQgAAAAAAAABVKO8q_FdrMhQbU2N6WlSXhgAAAAAAAAAbePh-EVmYwcpuvkYfVwI3pAAAAAAAAAAi4Xo5xO6o0uoSyrwdbZHbJgAAAAAAAAASdf77oR1muCgX-foWG34qJQAAAAAAAAA7UNc2mXE-rC1br_1LecPIQAAAAAAAAABP_xZpr9TGIZucU6bt2UiKVAAAAAAAAAEjp28xmTKhHN748RCp6oEYtgAAAAAAAAAu_p12Y0DOk4cFEn5gGz9psgAAAAAAAAAE", "types": "CAP_BSoF"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mbOVGyx5XatnK0SRKgRKUQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAPx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABWdRMG3BjNfH2se-egabnU-QAAAAAAAABAEkcy7So9YVOh7Q9iMhhrxQAAAAAAAABM3SSuw7AKPJ9yFEVSwC_lbAAAAAAAAAAyXLN55eJ2HplxP0Fb2YBmOQAAAAAAAAAJ_6rkq2S7o8rMRQJ9AofzJAAAAAAAAACLjwkBY0s-EHDmaMTnMHI2lgAAAAAAAAAYLLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACvqKrM4v33j8Ui9JyIz2QXDgAAAAAAAAA4ZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACvqKrM4v33j8Ui9JyIz2QXDgAAAAAAAABAEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAA", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KS1N91hvcJHrA9nDriwgFQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChy6gXT4fd_WKeR1cE-hlLelCQAAAAAAFRYL03aS07d9PG4lc4UzuBbVWzQAAAAAADE19rtOWfs-RaxXWHIPyRB9RAAAAAAAAAGFS3aS07d9PG4lc4UzuBbVWzQAAAAAABuyj3aS07d9PG4lc4UzuBbVWzQAAAAAAB7ly3aS07d9PG4lc4UzuBbVWzQAAAAAADvkA", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7I_OssEt4qZsJxTrqNd4gQ"}} -{"Stacktrace": {"frame": {"ids": "klPbOjidNHRsFecU34u2tQAAAAAAAAmpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGklPbOjidNHRsFecU34u2tQAAAAAAAAlaJD-mlhc2khMaMvypB7uCowAAAAAACvxIJD-mlhc2khMaMvypB7uCowAAAAAACrBZJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIXV9JD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAADPP3JD-mlhc2khMaMvypB7uCowAAAAAADOruJD-mlhc2khMaMvypB7uCowAAAAAACuGjJD-mlhc2khMaMvypB7uCowAAAAAADNFHJD-mlhc2khMaMvypB7uCowAAAAAAGyG4JD-mlhc2khMaMvypB7uCowAAAAAADMfaJD-mlhc2khMaMvypB7uCowAAAAAADLg5JD-mlhc2khMaMvypB7uCowAAAAAAIhTEJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAADPP3JD-mlhc2khMaMvypB7uCowAAAAAADOruJD-mlhc2khMaMvypB7uCowAAAAAACuGjJD-mlhc2khMaMvypB7uCowAAAAAADNFHJD-mlhc2khMaMvypB7uCowAAAAAAGyG4JD-mlhc2khMaMvypB7uCowAAAAAADMfaJD-mlhc2khMaMvypB7uCowAAAAAADLg5JD-mlhc2khMaMvypB7uCowAAAAAAIhTEJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNLbtJPgD2DsxuaRUZZI3jKQAAAAAAAAG19OSIwt7_UxT7zZoUvqu4WwAAAAAAAAAvGECkj5EzwizbnHTSy11lwAAAAAAAAACsIWCarP2Cg-zGilSmP2FwvAAAAAAAAAAxPF46WYS52oqKW28TVdZwhwAAAAAAAABl4SjPzL5sRJ4NoaPppbKRXQAAAAAAAAAyzV-zz_SMeRtFDojkROWSSwAAAAAAAACIZtRK4uMy_Wfw-N_iQmSerQAAAAAAAAA1qtNW2Hg_2f_0M1iSBcGbyAAAAAAAAAAVoGmEXpJvjzbRv2r-bFFlfwAAAAAAAAA7EI5wLwdv0nxJGTj51HGsnwAAAAAAAABpqs9QVbSai1fV6zxJyggieQAAAAAAAABfBUIjEExV8zypjFmSEDklUAAAAAAAAAA8WVw4-tNMtcGbe_AUExiiqwAAAAAAAAFTgO6kDS9N3EuxPdxaJ2XycwAAAAAAAAICRAiSaKhtr8sKQyEQrLjoKAAAAAAAAAJCfQmBDS59foxFPsSMJZb9xQAAAAAAAAE_FZMomjWJJ0nF52fd5MCJjwAAAAAAAAAbcNfqzNIuM2moCdDAPZaMPwAAAAAAAAGhwnDqzjdjMz5CchEHZ6EsYQAAAAAAAACtuos5blq03yBGQs7NU0gUPAAAAAAAAAAcWJOADfwpHxtseudP4RVyOQAAAAAAAAIBCBHuHFEZWQ-fJ4IkYrsh7gAAAAAAAAB2mBpiFuvmv7Bhv5yWRlHpOwAAAAAAAACGxOuzl7cRmBw0-tjVF12FGAAAAAAAAAH6E__m11jwVVwOsNYG95RSxgAAAAAAAAIJHDtxjNJh5HryAaa7uCACXgAAAAAAAAILZUr3dhHUtWV20cKiiRwRTAAAAAAAAACI46OBP4AiIuvPByLPCVNeuQAAAAAAAAFIJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAADPP3JD-mlhc2khMaMvypB7uCowAAAAAADOruJD-mlhc2khMaMvypB7uCowAAAAAACuGjJD-mlhc2khMaMvypB7uCowAAAAAADNFHJD-mlhc2khMaMvypB7uCowAAAAAAGyG4JD-mlhc2khMaMvypB7uCowAAAAAADMfaJD-mlhc2khMaMvypB7uCowAAAAAADLg5JD-mlhc2khMaMvypB7uCowAAAAAAIhTEJD-mlhc2khMaMvypB7uCowAAAAAAIVoiULOVjhd5u9ORCGzZdeAHEQAAAAAAAAFKZUr3dhHUtWV20cKiiRwRTAAAAAAAAACI46OBP4AiIuvPByLPCVNeuQAAAAAAAAFIULOVjhd5u9ORCGzZdeAHEQAAAAAAAAFKZUr3dhHUtWV20cKiiRwRTAAAAAAAAACIlGiuUKjDiEK6Em1dBmf8cQAAAAAAAAEkoHTsfbgA1Z8-0E_rI_bqswAAAAAAAABiIoeloZzyqdJpjiJWbJ3FlAAAAAAAAAB8nK7Uuz4qfuv-NRdHGyIKnQAAAAAAAACFJD-mlhc2khMaMvypB7uCowAAAAAAIPij", "types": "BgMKBg0DCgYMAycGDAMJBgED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lG8h35lC0oRWKY7OgUwEmg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFbojlkH6U8-uq6rXJn3yJDAAAAAAAAAAEa0W4SIobOysiPgaw1gv_JAAAAAAAAAAQHrXUpqEQk4VDnpaZKgdbiAAAAAAAAAA9U2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAAthtvgcgAW24Rn4q34GnPYLQAAAAAAAAAFQNZzHGnqskrqlEo3XdkqqwAAAAAAAAATlH7EdNhUWMEu-Xw0OnFCsgAAAAAAAADKPT8Qhq3pE7S7UQ5pBb6dmAAAAAAAAAAOpKLBb0_sPdt_IxvNqtQh6AAAAAAAAAACAmmotxQnAOVzMU8NulbCZwAAAAAAAAAQLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAABBoz9GJ_qlf4pBIKy8mHtWYAAAAAAAAACLLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAABBoz9GJ_qlf4pBIKy8mHtWYAAAAAAAAACLLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAACgQ74ZSoBrLiINArpQeOleFAAAAAAAAABLLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAABBoz9GJ_qlf4pBIKy8mHtWYAAAAAAAAACLbUpZ48eu6eiEjFsuaTvsNgAAAAAAAAASR8Unr-8xOl9YfaVb1B0yFAAAAAAAAACkeCOhqsAwaXtoMEk8IgCdpQAAAAAAAAAIgL0sNJyG3L826RryrsTHqQAAAAAAAABNgL0sNJyG3L826RryrsTHqQAAAAAAAABNgL0sNJyG3L826RryrsTHqQAAAAAAAAA5_CjTv6kUGwXvM8Sos-Kh-wAAAAAAAAAO6Oa3Gw3a2qG6TW8zVkC5sQAAAAAAAAAH9gjRuxRdRyq16xbNcyHimgAAAAAAAABa9gjRuxRdRyq16xbNcyHimgAAAAAAAABM9gjRuxRdRyq16xbNcyHimgAAAAAAAABM9gjRuxRdRyq16xbNcyHimgAAAAAAAABa9gjRuxRdRyq16xbNcyHimgAAAAAAAABa9gjRuxRdRyq16xbNcyHimgAAAAAAAAAUNDGUkTNzYliplrbeoxRj7QAAAAAAAAAGkMyJwSU-xdaoa_ZTenDCugAAAAAAAAAhkkIKkAJGCZQ785pWcNIz5wAAAAAAAABx", "types": "CAM1BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7biARfQSIKGkOMBE8K3ifw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFbojlkH6U8-uq6rXJn3yJDAAAAAAAAAAEa0W4SIobOysiPgaw1gv_JAAAAAAAAAAQHrXUpqEQk4VDnpaZKgdbiAAAAAAAAAANEZPgqIf-WI9idn-2eZidkgAAAAAAAABZnmOYE2Kt3__TKktJn_mzpAAAAAAAAAGb251Ruxwcbll4MkW6cLIM0wAAAAAAAAAyqaJzYdoMxLLfgqJxrGOnFwAAAAAAAADrMrLUPjD52Cb8CegNxh_R7gAAAAAAAAAInfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYYUwJS6kVpV4XvYu7ZD33UwAAAAAAAAADZLdnJScMMbJz4xNn2ogw5AAAAAAAAAAOkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAxJYKWeVXd18GtPKr_b5YhEAAAAAAAAAAgZ9hje1cbFu-XpVYNW9SlywAAAAAAAAANjGpW5CwHOoA7hIucEbiLmQAAAAAAAAAxCvC3lIC7E70AiCoZ7DVYSQAAAAAAAAAVeNbj51SwVufxZ4R3ztSduAAAAAAAAAARGOAeLBP6U_Nxv7LKjBKI9gAAAAAAAAAMAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oAhRUpu5Nxvud8PhxnY97g"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAALY69pONqxP8-okyxfNdJq0BgAAAAAAAAAT84y2a9q7-onYC7ofRQhclAAAAAAAAAHbdVre-yWU3wOgyoQuLjZhuwAAAAAAAADHqsf4oB191Ejhqczjg1I-pAAAAAAAAADJas9xuB4p9CGD_lnalV79jwAAAAAAAAAlfTAss9wSqMPQUI2HD05f3wAAAAAAAAAzHyraq5uNnLhexcfH6jeoJQAAAAAAAAAX", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-jgB9csnI_nQtRWte6ri7w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB7rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa6y4SNDzWiYDmLZi_Z1ZVETLoAAAAAAAvCgLogCgWMgT5mMAMhpNA0IMiQAAAAAAD02H", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_RT0FmavuUc4KjdMUFBgQQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlu66tVKI4mSYDEJ-ABAIpYXcgAAAAAAN6Kx6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFfSD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMB-t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUktl6tVKI4mSYDEJ-ABAIpYXcgAAAAAApQK3", "types": "FAMOBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rFs-0q-mW95c43NFrT9uBA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbpmZ3CKaS4aU08RhYA19y5ITQAAAAABtPlJ", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "shWMJLfbuiijw_CV7zD8MA"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHiCEgtQ4kMk_MBWrPUAFqVnYywAAAAADHiVygtQ4kMk_MBWrPUAFqVnYywAAAAADHdmRgtQ4kMk_MBWrPUAFqVnYywAAAAABv70hgtQ4kMk_MBWrPUAFqVnYywAAAAADHivMgtQ4kMk_MBWrPUAFqVnYywAAAAABswTkgtQ4kMk_MBWrPUAFqVnYywAAAAABsmOtgtQ4kMk_MBWrPUAFqVnYywAAAAABr-gMgtQ4kMk_MBWrPUAFqVnYywAAAAABsAm66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpUUbK4uezrplMLlSw0h87XfgAAAAAABnqs", "types": "DwMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "L5PYk_DA5ZMV0OoQVBb0Dg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk-D", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HSqoNRZZIrgV8Hc05ks5og"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF88yz5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF780z5k14PsCcDvFyUC1kmlV3QAAAAABF64rz5k14PsCcDvFyUC1kmlV3QAAAAABGArsz5k14PsCcDvFyUC1kmlV3QAAAAABGAtx", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "X_7eGxy7JatY66SnXVDAow"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOpxFz17lb-voh9uZicvdXWAAAAAAAAAAd", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pHFN0qaDz6OHVNs6LDyfew"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgJxz5k14PsCcDvFyUC1kmlV3QAAAAABFk6jz5k14PsCcDvFyUC1kmlV3QAAAAABFjYEz5k14PsCcDvFyUC1kmlV3QAAAAABGgQQz5k14PsCcDvFyUC1kmlV3QAAAAABF400z5k14PsCcDvFyUC1kmlV3QAAAAABFkWAz5k14PsCcDvFyUC1kmlV3QAAAAABGZEQz5k14PsCcDvFyUC1kmlV3QAAAAABGgUez5k14PsCcDvFyUC1kmlV3QAAAAABFkwFz5k14PsCcDvFyUC1kmlV3QAAAAABGPJ9z5k14PsCcDvFyUC1kmlV3QAAAAABGTGnz5k14PsCcDvFyUC1kmlV3QAAAAABGSeJz5k14PsCcDvFyUC1kmlV3QAAAAABGTOD", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eZEQXM7WYfQLn99tFhWnyw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApfzLzWZQgzth4yv0Aw0PoLgAAAAAAAAAl1pEcO9CYkxI799CldX3uowAAAAAAAAARsCdW6ghslIPajpgsdfjVWAAAAAAAAAAS3HYeSFaP4bm-Z2NSJub6sAAAAAAAAAAY4io8TQpKnhHcoJs_H_nFpQAAAAAAAAAcWUsgmXBmEYsZWCQlmPqU4wAAAAAAAAALRuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAqFV6xhVekP5-uToPI32ragAAAAAA7PGLqFV6xhVekP5-uToPI32ragAAAAAAxoGftQgAmBJBgPLrkikSPRsmtgAAAAAAAL3i", "types": "CAMKBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6WYxVgKRkmzkkIzHH-6U9w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAazVvSNDzWiYDmLZi_Z1ZVETLoAAAAAAAayyfSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcOjMSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcT6QSNDzWiYDmLZi_Z1ZVETLoAAAAAAAb60KSNDzWiYDmLZi_Z1ZVETLoAAAAAAAb9_zSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcBx2", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PWgvP1t7oB9ALOV1YcECow"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAvspzm-_Ca31VwijYVQAZSLAAAAAAAAAB7TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABbXyIB1JXxkoOQjMae8CICgwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADNq5-VNNWJnEe4GvJK3_qvJwAAAAAAAADF4J4WxzKvOwTg2PxoPnS9CQAAAAAAAAEJHr4PYZ-sL6e-tu-94q7YcgAAAAAAAAEX", "types": "CANxBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AdV0WYTy4PSs_A4me7FKqQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAdKZMYsnZ_Lwaqr0cHEPo0D185QAAAAAAdEYDYsnZ_Lwaqr0cHEPo0D185QAAAAAAdJENYsnZ_Lwaqr0cHEPo0D185QAAAAAAch16", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qcrgeMf65aey4TtBdOxT8w"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcRUYxe-SHgukLEpCkawSk1QWAAAAAAAAUHWYxe-SHgukLEpCkawSk1QWAAAAAAAAECg", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uHTQGYxyOTYnqxyDJdTj2Q"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOE1fYhCC-W9hkMRzkOdu22QAAAAAAAAAg52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bQwiWS8atv5BrlgvoSejZw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAzVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASOfiLOYlq94TuMsZLLGufMwAAAAAAAAAFOZWIsj7OdjypSl8wEuRRwwAAAAAAAAAgx8ERETcapIt78IXSEO8DRwAAAAAAAAACaLOl6FCWtZ16Qk1Y0IIBGgAAAAAAAAAGHey8fifUJOv2rbW7np0VDwAAAAAAAAAElmIKhGgz3KOwBWeg9ui0kwAAAAAAAAAEQvX4nXI6Gswid-z6_oLOoQAAAAAAAAAJvoerPJynIqAClUlmnxZ2egAAAAAAAAAEvLpFDJjvnqkSyYla4kwO9gAAAAAAAABs", "types": "CANFBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "b3E9ZJZY0ClQ35xwbM-URQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHh60XT4fd_WKeR1cE-hlLelCQAAAAAADH_-bXT4fd_WKeR1cE-hlLelCQAAAAAADIAY1XT4fd_WKeR1cE-hlLelCQAAAAAAChRhM", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yrneF8Y5HnZdPRsa0iSPNA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYRr8mF3o9czEU_lrcVazITQAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAHVRV3OqaPHH0CL0c13xlvAwAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABbjYv_loUJfP4bAxHmRpfBQAAAAAAAAAI_avzkz28Qok2WNYNUK8x_AAAAAAAAAACHRX5ZF5fIW1GKCXf3a6CmwAAAAAAAACtBTDQHzxuOEAYM78jOAyAQAAAAAAAAACbVTbtgu53oLczjFOJuD9puQAAAAAAAAAVJnDY6WP1Y1s1iCjgn5zoPwAAAAAAAAEqGxNkRnRGgJivqaGah_DkCAAAAAAAAAA_kbwZp-6Ay4IDg4dEajE5PwAAAAAAAAJuUPz7zqvj7qG3g5BG64v5TAAAAAAAAAAo8Leyvkq15GzGuO_r6rbEqgAAAAAAAAAkkeo_5JSp8b1-B1CFNSlcjwAAAAAAAAAJbMg00t8HYdDMZJ1TejgLywAAAAAAAAAe_uUgsVPv-NpZOU_YXxwnhQAAAAAAAAAId__-FJDRZlyO8YWNJRXoCgAAAAAAAAAQT5Q31GDfksV6CJ4DGSPDfwAAAAAAAABU", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "is-GrshzXGfvyrs7C84YDw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAACZcrJxfOZekEO297SoXoFNvwAAAAAAAABEz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABbTIqYHzSLJiXVx4krD2dbMgAAAAAAAAABIFHX6oXBjL3Y93SHOMXcKQAAAAAAAAABZXguWb1db5OZ-xUb0e4ZqQAAAAAAAAM2siCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhY0qFV6xhVekP5-uToPI32ragAAAAAAwhQX", "types": "CANPBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NWTYSV7vGDryRONnCUqo1A"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAvspzm-_Ca31VwijYVQAZSLAAAAAAAAAB7TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABbXyIB1JXxkoOQjMae8CICgwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAAGWPvmhnzBPbydWF_wVFKbYMwAAAAAAAAA1SNDzWiYDmLZi_Z1ZVETLoAAAAAAAxSmCSNDzWiYDmLZi_Z1ZVETLoAAAAAAAyKc4SNDzWiYDmLZi_Z1ZVETLoAAAAAAAccvk", "types": "CANvBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VkyfaqGAgzJ1mrE4QyhFNg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADAEguNCcnmVGnXNe9OvbpF2wAAAAAAAAAyyH_ohM36PxcsspBj9HiisAAAAAAAAABUZZqFVPfJM-LkfzPbeaoP8QAAAAAAAAIWwJby9rfWt95O-DRO0mDYjAAAAAAAAABWk1o6cGLS1FzksoHJvPKdFQAAAAAAAAEzK1f6nnp5He4VLr7usCCM7gAAAAAAAAABjJ1ozPLEubzrPTK_HIIAngAAAAAAAAAEtiFd8nRg2cPSJT6QKmttjQAAAAAAAAAaJlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2SbdWgpvL6xLkDpUt_yoH7QAAAAAAAAAEKFGBFnajTppUPwKMAfWXvQAAAAAAAAAXeFaXX7H_gmfoLAN8WX-xDQAAAAAAAACOcqdSAx5Uej3ncVA_SUVjsQAAAAAAAAAMPrNII2l46oclr0RXWTYMUAAAAAAAAAAE93KKtPDSfPMvEhxj9OzJ1gAAAAAAAAAHsWCnrMF0Arlnv58qX-TThwAAAAAAAAAB7mqPc5ch4cFcQJn3b5WHKQAAAAAAAAAFIY3kOFBxddrJzoZrzargTAAAAAAAAAAAMP5HRDaDTxfL7AK376UJ7gAAAAAAAXffvQ7EacG6CR4rzcFaNFEsTQAAAAAAATRb", "types": "CAOPBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Hyfp1vfnvOTkKMqmQpUQgQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA8Q1rqFV6xhVekP5-uToPI32ragAAAAAA8QfAqFV6xhVekP5-uToPI32ragAAAAAA0VStqFV6xhVekP5-uToPI32ragAAAAAA0UfqqFV6xhVekP5-uToPI32ragAAAAAA0XMyqFV6xhVekP5-uToPI32ragAAAAAA6YnHqFV6xhVekP5-uToPI32ragAAAAAA6R_NqFV6xhVekP5-uToPI32ragAAAAAAe4yGqFV6xhVekP5-uToPI32ragAAAAAAZgEGqFV6xhVekP5-uToPI32ragAAAAAAhylM", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "epnqAxFCsbQSVItuSr9wEw"}} -{"Stacktrace": {"frame": {"ids": "CHB6oSdNIPFu3CdR74BZKQAAAAAAAWJM3aS07d9PG4lc4UzuBbVWzQAAAAAAAiVUCHB6oSdNIPFu3CdR74BZKQAAAAAAAV9bCHB6oSdNIPFu3CdR74BZKQAAAAAAAYh2CHB6oSdNIPFu3CdR74BZKQAAAAAAAXUECHB6oSdNIPFu3CdR74BZKQAAAAAAAf4QCHB6oSdNIPFu3CdR74BZKQAAAAAAA1izCHB6oSdNIPFu3CdR74BZKQAAAAAAA7ZMCHB6oSdNIPFu3CdR74BZKQAAAAAAA0Y-3aS07d9PG4lc4UzuBbVWzQAAAAAAD_lc6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ1", "types": "CgMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0KTuXhL53Ud6Yv9U2lJ-uQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAeNhWYsnZ_Lwaqr0cHEPo0D185QAAAAAAy4ZLYsnZ_Lwaqr0cHEPo0D185QAAAAAAxYinYsnZ_Lwaqr0cHEPo0D185QAAAAAAX9uWYsnZ_Lwaqr0cHEPo0D185QAAAAAAX9fC", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QDgIPJ6K1Rf5OSw95yEFHw"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADIP8hgtQ4kMk_MBWrPUAFqVnYywAAAAADIPcCgtQ4kMk_MBWrPUAFqVnYywAAAAABuMlA", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "odxDK_3zvNwVZ9HE8UBEtg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQ9zOECVMFUE-sRNeQZ1HM6gAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARTZwep2BdnG6Mdu9AQocnMQAAAAAAAAAGCMCWh32oer3bDaYggVtoUQAAAAAAAACHHCW9gICkV36t4oXsjBpsdAAAAAAAAAAE_WhLMAElKfp9RHy9XD-HOQAAAAAAAAC3qkXC9AzfY8U3Ryc9g3OFDAAAAAAAAAAsccTvkbbzG7ITlutNR0SvYwAAAAAAAAAehu0S-fYG_gY_Otgg4IzKXwAAAAAAAAErXey4TSJt8z1Y1xeGVvkdYgAAAAAAAADB6fJMpXGng7X5bTc2KsPuMgAAAAAAAABSD0g0ITB6vPs-JMXU6kB_IgAAAAAAAAAETnmpwdT1yeLDbWlRnUic2QAAAAAAAAAHnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAA-DaVWIofPTETqopDkVERGkAAAAAAAAAATwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF2mlzHMlWgLtS4AXchUZGuQAAAAAAAAAIqThtgbHprFVYaxHnWJ5r2AAAAAAAAAAQ37kdvsyygZea642hUZCb9QAAAAAAAAAdvxAO4ozw0ZRvb8q4djSlogAAAAAAAABEwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFx4xnJ8Bvv3cqGQOknqJJwAAAAAAAAAIURrpT79Wm1-567n5aqJlbQAAAAAAAADL3bzfPK0NZtH4PhiksXncvgAAAAAAAACOotzl_-UJZ6X4M1v7YRzHZgAAAAAAAAAId_mdgff0kSRs-ewuuAGS-AAAAAAAAAACYpb1GyaDgfO6SxUxbAvctQAAAAAAAAAIyHxJa10zF8jCmhZDUlRioQAAAAAAAACJjOKHIn-OfmVASZP9y1NSfAAAAAAAAACHV9nsBUwQwMn84PajbyjYtAAAAAAAAAAYX6qt9XlU0IqttZBt4TnwZwAAAAAAAABHwvXjE31kESML0je4-Me7hAAAAAAAAAApDRApe1cPTh2-wFVHvKmI-QAAAAAAAABlfedIGTz7oXcPN7rVsxHwdwAAAAAAAAAMyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFq-Wp_fKqnzituNc-kKOtAAAAAAAAAAUpYMvKU2r2nETpEeIP80PQQAAAAAAAAA38jMyW-WmlGRJvr5T2b-plgAAAAAAAAAFwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0_JZyYR0Vno863IcUXpa7AAAAAAAAAAQGiPQYuBqA4onG16OCBJr7wAAAAAAAAA_wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF49P_FduVXL-1HnETkDgpjwAAAAAAAAAcS_CL2qp_hCoxo4NMBjattAAAAAAAAACntgTcpaw1PHSeu1PntXA3fQAAAAAAAABtVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFW_JPjd1DkAyoubIfHSaORAAAAAAAAAAMro-nOR8Y6-xR_0NZHNxiswAAAAAAAAADGAKN4IA59Oyrw_sFixA19QAAAAAAAACoj8cyxnhvgCmiV0wfzWt-5wAAAAAAAABH4_Wu3cP_1KUTQF00Htx73gAAAAAAAAA6v6A2aEAJbkezThEe0LppjQAAAAAAAAAIAHE52dyzEEDlVbgj_xFoxwAAAAAAAAAVwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFR7Hj9yPeT2EDyEr2K8ONTgAAAAAAAAAYg9D12vCHvqmadcctx-s3mQAAAAAAAAA7dAHd9ndNzEhU1GyagepTAQAAAAAAAAAlABk6RqRYy5QsiYS0AnfFrgAAAAAAAAApwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFtM8VFC-6NwJWsTojOgeMHQAAAAAAAAAMgQianSpTZDlq5RnHMXwrkgAAAAAAAAALwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFIg4O8IWFanKbF_VU4hFAfgAAAAAAAAAY3JOiPEBqME3dIDTotL2-UQAAAAAAAAAi36WCeR5NbgRZnRrGA9E9SgAAAAAAAACziGiRuqMs11HNWy379BhNywAAAAAAAAAQV6_MdAvjC_nYviBM-9k2MwAAAAAAAAAc-3GPQQ-ojQ0K4P5ZthFkFAAAAAAAAAANk11AiDI6CCFbyQU3K5sSGQAAAAAAAAA0hVKhVL3RShupVCryfwjurQAAAAAAAAAHmO8Ep2yh8naX77AaM6OoawAAAAAAAAA36IU8CVJsljq2c-RkQafrKgAAAAAAAABGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmOXWqC4F9CbM_9TaYs7enGQAAAAAAAAC6kUAbs4Tm3_NRbBQPhQnuwwAAAAAAAABqBlwtAEKFHXxtdYYHllc2EAAAAAAAAAAQnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF7vbDea8YrHNc_wHLzDnfJgAAAAAAAAAUZtfWODgA6w20T9TMv2NrwgAAAAAAAAALa7hZfalsBRk3tlQt91V51AAAAAAAAAA18NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAADtKBNthOxdN-LeSLQeW0hbAwAAAAAAAAEI-mKRCTh8AFw2quERsAqZdwAAAAAAAAAghMFUfSdfKq62EgaVo5SA4gAAAAAAAAApNatKHnzuddBuR5ARu7T06AAAAAAAAAAh-mKRCTh8AFw2quERsAqZdwAAAAAAAAAg1aZ3_qa-GDGgUGJlxlWbzQAAAAAAAAARc7fJv8qzYljmNQmIpTZNBgAAAAAAAAAJpho5yY-CB4hDJ5PhyrESMQAAAAAAAAAcwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF329FQG0FRbGaRCox_CO5kwAAAAAAAAAJ8V6RThS4xLGvyBskf3U-ngAAAAAAAAAKwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFojijB29c8Lo_FuNL__qV0gAAAAAAAAAUzsmqElNKWoxAiguA-24XnwAAAAAAAAAG7mYeFjFR9Yoe2nMw0EFMCQAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF329FQG0FRbGaRCox_CO5kwAAAAAAAAAJ8V6RThS4xLGvyBskf3U-ngAAAAAAAAAKwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFSrUBoSo_U1vNdZi0jlnWSQAAAAAAAAAcPpao3JWLokUncC1uitAjwwAAAAAAAAAo1oy5TLITDFo_6XpzirRo2QAAAAAAAAAkVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_2Z0wUnO7PTDrZjS1nqYP3gAAAAAAAAAoLi--jNLhFbogbPx7uUpcfwAAAAAAAAAQj-mrBXNBqeJC8DfUo5tvmAAAAAAAAAFRJuCfdWrRLOsm707HTwRsEQAAAAAAAACdAY1qQl7FueXylVMIipRQaQAAAAAAAAAGTwgGrxrsq_cPJuqNig0G7gAAAAAAAADSBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFJvo45Zz0twIPRpAdbsbH6gAAAAAAAAAY13IVMDkiegUfkjSIeMh3BAAAAAAAAAAGRORjHmtUEjxfs01h1UiB-QAAAAAAAAFWBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFJvo45Zz0twIPRpAdbsbH6gAAAAAAAAAY13IVMDkiegUfkjSIeMh3BAAAAAAAAAAGgdxhRsFINIcXjL8ov24MeQAAAAAAAAAGTwgGrxrsq_cPJuqNig0G7gAAAAAAAADSBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFJvo45Zz0twIPRpAdbsbH6gAAAAAAAAAY13IVMDkiegUfkjSIeMh3BAAAAAAAAAAGKyCwwRCAH9ygWwiIDxYOfgAAAAAAAADnBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFJvo45Zz0twIPRpAdbsbH6gAAAAAAAAAY13IVMDkiegUfkjSIeMh3BAAAAAAAAAAGULUcmJP7eCRtN2QDQ-fZtAAAAAAAAADdBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFIJh2m7sI5abovI4uFKTgAAAAAAAAAAAI0zb6LbjdUqiSUXWCnQCmegAAAAAAAAACwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFLPUt4IiihpgVMsHfOZohwAAAAAAAAAAI07D5zPmq5WKTujCLawFNUQAAAAAAAAACwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFgTk1MkSzzpomxPmIhiIHzQAAAAAAAAAYE1jDbcQSOqd7Pzoo2vcUAQAAAAAAAAAGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASFS55TSwq0w7KNb6oqdqsJwAAAAAAAABDkSbKpSG9UjBRbkWOO2dvwgAAAAAAAAAHs3WzjwILXubccsM-D_ZgMwAAAAAAAABi2YIDsUvs1qcVI0bSlo-YUwAAAAAAAAAECpMW_CS6i6ErtbeZjpah8AAAAAAAAABtwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFofSe_Fg814BTHLq535yxtwAAAAAAAAAYfGIJruj_Kk2wKVfC22qXQgAAAAAAAABVKO8q_FdrMhQbU2N6WlSXhgAAAAAAAAAbePh-EVmYwcpuvkYfVwI3pAAAAAAAAAAVOBRbNy4-50c2c7kC3HqENAAAAAAAAAAYuZsihCfm-GOZVCm4rBT6LQAAAAAAAAAVspvo-nxPRSOiDBPBck2YvwAAAAAAAACJUNc2mXE-rC1br_1LecPIQAAAAAAAAAAPvnwUPfbGgx6g5GWmZRB56wAAAAAAAAAHS3pnAYxRAOT6bZ6IxcbP3gAAAAAAAAAA", "types": "CAP_BSoF"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jKJw7MgwzsyLy5Y5-ZGSMw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAAAaDLCbvuPzV5FNep-fYYK5KAAAAAAAAACE", "types": "CAMFBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hgbYFeQR5UbL1ILQeJXsrg"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAAAvLFL9Bd3XIiGWasJdN8trI5tgAAAAAANPmbL9Bd3XIiGWasJdN8trI5tgAAAAAANQHDL9Bd3XIiGWasJdN8trI5tgAAAAAANQm6L9Bd3XIiGWasJdN8trI5tgAAAAAANHY_L9Bd3XIiGWasJdN8trI5tgAAAAAANIBjL9Bd3XIiGWasJdN8trI5tgAAAAAAKSvgL9Bd3XIiGWasJdN8trI5tgAAAAAAKTYqL9Bd3XIiGWasJdN8trI5tgAAAAAACA66", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AoxNz9Y_PEGGL6UFqTd8NA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADUVK3XT4fd_WKeR1cE-hlLelCQAAAAAACnxaWXT4fd_WKeR1cE-hlLelCQAAAAAACney9XT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfYlXT4fd_WKeR1cE-hlLelCQAAAAAACnihd", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tTpfeAZeBwNUUR0vm7VdPg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjD5cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLloNcEvvhuguaGYCmGWrnWRz1QAAAAACLj4d", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0k6wELJt8HNaoJlSxjp1OQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPBxI5O-imEgV3N9x_K1cpQwAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAITQJwJt0-vl6QQoIDFyT9WgAAAAAAAAAmi8xLrghLCR3CLFjtylOjjAAAAAAAAAAkEu2eTQ_3gXX-hva2wFAN4AAAAAAAAAAHm_vFRi2fRRTLPHNf1t7ZcQAAAAAAAABJBFA4SysMtx9fo02P0NGNMQAAAAAAAAAa8ijKSIS-axMtZNAQCt9HjQAAAAAAAABJ1vp7uJIrygtcfnEawBUBQQAAAAAAAAAUisG4XFXxe-F-cnbJLaRjfQAAAAAAAAAWkF013d7SRgnu6DFlDFnV_wAAAAAAAAAYOtUYN1cmmeSm89C4ESuZUQAAAAAAAAB1zH7ILzPBEqmN9DwEaweygQAAAAAAAAAM_s_HoNMyOU2vaD_y8xi_RQAAAAAAAAAFrAdo-T5uvjwZ2Mw_-9pxxQAAAAAAAAAIdPS-0h9z6Lm7-bg6yOerhwAAAAAAAAKF-Jk808Lt2_DJJzrOxfeDYwAAAAAAAAABmNcvK3j5TmgK1SiwkNfREwAAAAAAAAABM3bEBD1-ihID_7pB2t9jmQAAAAAAAAAGVjQ_FQp6k18TaTquadHRfAAAAAAAAAAMl3wIW085N_Ek_ld6xhO_FAAAAAAAAAAekgB4YpE00EMnCj_BxsUpZQAAAAAAAAACrSn_PuX3K7D2j0paQ2NF1QAAAAAAAAAFviJ7iVZvhZ4tuG4V9EDqdAAAAAAAAAAKE8eWyrBZlA7opO3_P5T8sAAAAAAAAAAbO0su08t7CkXEbxTCeQJRtwAAAAAAAAAhwJqaBDaMzd7bA1sXw38hRwAAAAAAAAAc57qQ1R3XdDePpd1R3nodLQAAAAAAAAAGPRfaBPZq0R7PCyNb40ePOAAAAAAAAAAP3dDba49XiHgWShnZz1Je1QAAAAAAAAADs3uwzuO0NE2riia09oyF7wAAAAAAAAADRTsb0P_jn8QDundSxhSuUQAAAAAAAAAD", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "W3Xg5UYDFZ6S6yXmGwJPvg"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAC0XP_Z3CKaS4aU08RhYA19y5ITQAAAAADBlVKZ3CKaS4aU08RhYA19y5ITQAAAAADAqPIZ3CKaS4aU08RhYA19y5ITQAAAAAC12lqZ3CKaS4aU08RhYA19y5ITQAAAAAC14oVZ3CKaS4aU08RhYA19y5ITQAAAAAC14dg", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Oqbb6FakSaKBSmm5UVh16A"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiF-kXT4fd_WKeR1cE-hlLelCQAAAAAAChWmLXT4fd_WKeR1cE-hlLelCQAAAAAACgURkXT4fd_WKeR1cE-hlLelCQAAAAAACgT3kXT4fd_WKeR1cE-hlLelCQAAAAAACgeTP", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "84RiA4pbVL7KMlDvnXnbFg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzScEvvhuguaGYCmGWrnWRz1QAAAAACFAOVcEvvhuguaGYCmGWrnWRz1QAAAAACFAG9cEvvhuguaGYCmGWrnWRz1QAAAAACE_n2cEvvhuguaGYCmGWrnWRz1QAAAAACE-uE", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0KW_YB1xCjsP8IMGIq3y3A"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk6jz5k14PsCcDvFyUC1kmlV3QAAAAABFjYEz5k14PsCcDvFyUC1kmlV3QAAAAABGgQQz5k14PsCcDvFyUC1kmlV3QAAAAABF400z5k14PsCcDvFyUC1kmlV3QAAAAABFkWnz5k14PsCcDvFyUC1kmlV3QAAAAABGX7Iz5k14PsCcDvFyUC1kmlV3QAAAAABGgUez5k14PsCcDvFyUC1kmlV3QAAAAABFk0Kz5k14PsCcDvFyUC1kmlV3QAAAAABFlQo", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KGvPQmnNzLHCdXio5WQKoQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAAX3IqZSkKN3zNxr0HYuO2pqe5hQAAAAAAdnyHZSkKN3zNxr0HYuO2pqe5hQAAAAAAdnxkZSkKN3zNxr0HYuO2pqe5hQAAAAAAdU3GZSkKN3zNxr0HYuO2pqe5hQAAAAAAb-pwZSkKN3zNxr0HYuO2pqe5hQAAAAAAdU8-", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LP2s2eN9q4S8yFbcMdo49A"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYRr8mF3o9czEU_lrcVazITQAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAHVRV3OqaPHH0CL0c13xlvAwAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABbjYv_loUJfP4bAxHmRpfBQAAAAAAAAAI_avzkz28Qok2WNYNUK8x_AAAAAAAAAACHRX5ZF5fIW1GKCXf3a6CmwAAAAAAAACtBTDQHzxuOEAYM78jOAyAQAAAAAAAAAB3t7DkRGcQiDMfHx06PCzMpQAAAAAAAAAXYEThj3UEuGl2wDiJSq9vSAAAAAAAAADmjckGVFRAvWURR3kz1QpfwQAAAAAAAABZQUM3v4ew-jMVuKkpISsPEAAAAAAAAAGi6iNgA9fR_bPjg3gsO7FxQgAAAAAAAADeWKOnV4dhtUKFY7wtM7-RyAAAAAAAAABkIG23e_HaXuz8McPqppVmPgAAAAAAAAARUX0maaM_jFdAmFMbhLpaSgAAAAAAAAANVydXcSmOqICsVxLpiPFyCAAAAAAAAAAhxWXbvqcob2cyNB-_TJKbYQAAAAAAAABZ2RFqiy_TIF9Ivmg849R6KQAAAAAAAABpT9jB4qnc_5xFsdcbo1_ZFQAAAAAAAAAEp3fO6R-HhQcKmmzP8aNv3gAAAAAAAAAEcYiYZLNw79YI2sv5ZzfISgAAAAAAAABnsd1-fzhWHGpZk5BbNZ95mAAAAAAAAAER5uJBJdbCydi3Mb0Lo2CA1QAAAAAAAACKXoncVs_RZ0C2CaElSEtZqgAAAAAAAAAV_jOWl9rQ0a9rjiw4HiJl9AAAAAAAAAFHigbwprokH3CDrh8StLnYiwAAAAAAAABdAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EqC6GrxSGBqn7Se_QkfBvQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAD8uIpQ1uRexMdnpWaro5896wAAAAAAAAAZY_qFQxT1b6IwL0Y-bhoIvAAAAAAAAAAEV9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAhRcY_MPrR3HbPvGMVCVyH7wAAAAAAAAAgY_qFQxT1b6IwL0Y-bhoIvAAAAAAAAAAEV9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAhK1f6nnp5He4VLr7usCCM7gAAAAAAAAABjJ1ozPLEubzrPTK_HIIAngAAAAAAAAAEtiFd8nRg2cPSJT6QKmttjQAAAAAAAAAaJlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2SbdWgpvL6xLkDpUt_yoH7QAAAAAAAAAEKFGBFnajTppUPwKMAfWXvQAAAAAAAAAXeFaXX7H_gmfoLAN8WX-xDQAAAAAAAACOcqdSAx5Uej3ncVA_SUVjsQAAAAAAAAAIBAFCxmSCoEwAEfgMw2al3wAAAAAAAAABnD25wdhZLWE2nkSvAA770QAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlfcw", "types": "CAORBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6eTapoSsPn6zyk1_cvguaw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAABQ1PhVGIcoQAgleHhVcpf27gAAAAAAAAAvyBWSGqiiI_VOVi3uSjsniwAAAAAAAAACTdwLOY0C6NYFuVVgfM0c5wAAAAAAAABsQVg0XAOEbp3JKK1NFLqVYQAAAAAAAAAH8PLzoB-u4hzDZ_WKIg8FxQAAAAAAAAAhYNG5rLJWIsjMTCOpoQz9TwAAAAAAAACG0uQfhygt3iA5h-6EqK0MPAAAAAAAAAAEJYb5JOqnMPOCcF7fd5apugAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAK7KeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARjj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWwd6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL5eG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL47I6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL4Uz", "types": "CAMRBQIDBwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "h3J3yP8dE1Gp9C8Y2fBhOA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMwBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-9_uQoUPE9EW73Ys_J5m3w"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLVSALBRPvgHpUWKmpUo1khAAAAAAAAAAEHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAH", "types": "CAPABQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BD6RKw99uF2og061lVltVw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5WiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbXAL0Ge_HcVwkBrUXRRiLwAAAAAAAAAHfyGIqAgDCWT0HWMDhvlu5QAAAAAAAACVrg_W9Iz5X4vBEiSyGYl41QAAAAAAAABeOVbzts78rozw73k3kwZElwAAAAAAAAAJJnSEm3EzEl71vBewWd-MegAAAAAAAAALh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABq3Tjfka8pNswMm1Yg7BN5wAAAAAAAAAQ5mPZ7hP04mAof7_xhihCAwAAAAAAAABV5utt2dQ8HKrTepHdNpprxQAAAAAAAADL6XNnO9SeJ40ZM7baZ84oEgAAAAAAAABVLll_E1k3FfR43EQBXwU1dgAAAAAAAAAIrywk-6b8WKiuckZ62dxSSwAAAAAAAAAHiX3hg20o3ZB-dQ1wA5bFxgAAAAAAAAAEomA88yQfT91566xoyEY7sAAAAAAAAAAcrrWuYAakx0mSDLYXP-NBMgAAAAAAAAABK-xWzbOpXq--Qycbjj-mDwAAAAAAAAA3L1OydAndq8IT7nNSF3yNbAAAAAAAAAAkewU9RfzsPed7JATT94aw-wAAAAAAAAApfZ3COijH60wdDIIVUpSInQAAAAAAAAAIx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlseR", "types": "CAMyBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jygufO1z6CmSlXFVDFIyOA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAACKf_a_qdoBA55O8a7qgwDK7gAAAAAAAAARuZeXOJajIKqLKk4-05Cj8gAAAAAAAAAIfx2qpzR4SW8k6QF4h_x-lgAAAAAAAAACXWhZGeSVw3QL-gA2NjTItQAAAAAAAAALcrJxfOZekEO297SoXoFNvwAAAAAAAABEz0TmQagVnHgFdAowAPCojQAAAAAAAAAUd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAA", "types": "CANFBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1W94d88mnm9x39d54400ow"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAPx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABWdRMG3BjNfH2se-egabnU-QAAAAAAAABAEkcy7So9YVOh7Q9iMhhrxQAAAAAAAABM3SSuw7AKPJ9yFEVSwC_lbAAAAAAAAAAyXLN55eJ2HplxP0Fb2YBmOQAAAAAAAAAJ_6rkq2S7o8rMRQJ9AofzJAAAAAAAAACLjwkBY0s-EHDmaMTnMHI2lgAAAAAAAAAYLLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACvqKrM4v33j8Ui9JyIz2QXDgAAAAAAAAA4ZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABYEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAFm3tIqGWDOzCH_q4z0bYhiAAAAAAAAAAzPEbpT_8Xljn7u1j5oJzfHQAAAAAAAAEVI_i_3enTR60S4qDgQ3zxCQAAAAAAAAB7j1jm2CrNOrTZOKGqZZLAgAAAAAAAAABpsGQwMzA_WyDKcRW8mwvS7wAAAAAAAACE", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "l_LfIb1A5Uh6akK6C3GVnw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ4e", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dYYgiy_hJlJmGi14KCzeng"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAADz6p2HVF-fC6bGu1PSwJc2kzOgAAAAAACHAL2HVF-fC6bGu1PSwJc2kzOgAAAAAAHHBe2HVF-fC6bGu1PSwJc2kzOgAAAAAAHEJ82HVF-fC6bGu1PSwJc2kzOgAAAAAAHEFt2HVF-fC6bGu1PSwJc2kzOgAAAAAAHILc2HVF-fC6bGu1PSwJc2kzOgAAAAAAHICy2HVF-fC6bGu1PSwJc2kzOgAAAAAAHBg1R_3RsDYccfUxjNYYah3JZgAAAAAABCWFR_3RsDYccfUxjNYYah3JZgAAAAAABCFNR_3RsDYccfUxjNYYah3JZgAAAAAABCFNR_3RsDYccfUxjNYYah3JZgAAAAAABCFNR_3RsDYccfUxjNYYah3JZgAAAAAABCHhR_3RsDYccfUxjNYYah3JZgAAAAAAGKqn", "types": "UwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-Ea6eul6ZytqY8xapNMsbw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChy6gXT4fd_WKeR1cE-hlLelCQAAAAAAFRYL03aS07d9PG4lc4UzuBbVWzQAAAAAADE19rtOWfs-RaxXWHIPyRB9RAAAAAAAAAGEo3aS07d9PG4lc4UzuBbVWzQAAAAAABuKH3aS07d9PG4lc4UzuBbVWzQAAAAAAB7Jr3aS07d9PG4lc4UzuBbVWzQAAAAAADwHw", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ymje1CajexZF5hJ1bAbTlg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADAEguNCcnmVGnXNe9OvbpF2wAAAAAAAAAyyH_ohM36PxcsspBj9HiisAAAAAAAAABUZZqFVPfJM-LkfzPbeaoP8QAAAAAAAAIJZ0TAJMiD_AqT3npr7YiRAgAAAAAAAAH4AJ8qrcXSoJbl_haPhlc4ogAAAAAAAAACX31knMc676bIIEUjaHa0MQAAAAAAAAADTozXD2NzMy0dEH0e02djYAAAAAAAAAEKeRQqY-uKn1zCanFBx5tpKgAAAAAAAAANLaFl4epk0Q6S_D_8elQACwAAAAAAAABjd55u1lPodAfLflRouVTMDQAAAAAAAAAGd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlsd-YsnZ_Lwaqr0cHEPo0D185QAAAAAAX12m", "types": "CAORBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_ZJuN4Q3XfLWBtpXFkmHgg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw2HtXT4fd_WKeR1cE-hlLelCQAAAAAACw1EEXT4fd_WKeR1cE-hlLelCQAAAAAACkHGIXT4fd_WKeR1cE-hlLelCQAAAAAACkMuNXT4fd_WKeR1cE-hlLelCQAAAAAACkLvxXT4fd_WKeR1cE-hlLelCQAAAAAACkJ1EXT4fd_WKeR1cE-hlLelCQAAAAAAChaN1", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iV-DwRGSNVWP28e5KWrgaw"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV5BZ3CKaS4aU08RhYA19y5ITQAAAAABtbFTZ3CKaS4aU08RhYA19y5ITQAAAAABtZi0Z3CKaS4aU08RhYA19y5ITQAAAAABuV_gZ3CKaS4aU08RhYA19y5ITQAAAAABtuKUZ3CKaS4aU08RhYA19y5ITQAAAAABtagwZ3CKaS4aU08RhYA19y5ITQAAAAABuOzgZ3CKaS4aU08RhYA19y5ITQAAAAABuWDuZ3CKaS4aU08RhYA19y5ITQAAAAABtbAVZ3CKaS4aU08RhYA19y5ITQAAAAABtbcG", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YtVvdG2-K8RntFVkz8aZsg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACQAD-", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ww_KG3DMJJ4ZQFU4V6lPqA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LPkcEvvhuguaGYCmGWrnWRz1QAAAAACFwvGcEvvhuguaGYCmGWrnWRz1QAAAAAD-LPkcEvvhuguaGYCmGWrnWRz1QAAAAACFwvGcEvvhuguaGYCmGWrnWRz1QAAAAACFwsP", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Fphxs_kpB5neRcVNyqbyvA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeXyl", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "67VSY7gMnvXQykqHE0WxBQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFVaV", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GkfSwJU4VtNnyHQkcXbLQg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABMaP-XSbJ_jD1SaDSikvAxwAAAAAAAAAM9lngTnmeSG1s7rdk_juSMAAAAAAAAAAGHrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACtBnjxOT6ecDtMNaRY7RgRQAAAAAAAAABnzd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX73IOkhtZyjrZNnxzxVPYTQAAAAAAAACNp20xNjB13pFFci9UHZaQsQAAAAAAAABbNFoti7zeivEyGvfQ3_ANTgAAAAAAAAGU3kg82-0D3eZ1bo-oCBlTCgAAAAAAAADCVOUNVzVyt4QutMt6oZxNlQAAAAAAAAAYdx_pTwJwhqQvjWAfMihgAgAAAAAAAAAuNdnOauNqYT-cKE84qEP2jwAAAAAAAAANlsX2eCLSr4Q70_mA1t3KeQAAAAAAAAAoNB3KICW80r4krIyGFXIJIgAAAAAAAABZ2uEWBluAjlG6YATEmwlaSAAAAAAAAAAeYbAg0T8eOr8SvAbjK52BYAAAAAAAAAAFtlnK3_wdqHiODNJ7-wRpAQAAAAAAAAAXoAZFW9wMcUMYVEEE5ZtkLwAAAAAAAAAakNeaLNe7WMgsUgZLaHboxgAAAAAAAABMaTDLmmx5i_FySiS_tBfkmwAAAAAAAAAfmZdi8xuJDhfKKe9rvO4vxgAAAAAAAACud55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsSidn5oJ7A2M_efsiHDz05QAAAAAAAAAT0_jShB-DuV77HIBPKqBRjgAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBAZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMoavQ7EacG6CR4rzcFaNFEsTQAAAAAAATs0", "types": "CAMvBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "h0lEtzKJzcNxepmOT3KRtQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlqJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCIE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA8p", "types": "FAMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ArhssJT4V7-kmdsezZTRQQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcQxTPNhFsgl-8e8i61Q7phQAAAAAAAAAnwnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAE8PySOWxdeTvWtl74Iv620AAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAn5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALOKXE0TsqEsNxLqr0g-oK6QAAAAAAAAABx3cFmRipcZyDdJFPRQEWSwAAAAAAAAAQrMNYV5KroKXsOMeuZv5hxgAAAAAAAAAATaNUUQ8ZfJlbsPC7iaqLvwAAAAAAAAFNayB8QFQKdLd4s2sIWaVqPgAAAAAAAAAEvj1iCYbFivBIOzaEHhjU-gAAAAAAAAAA", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jMkr2A9XqdtOl_G9IEsnSQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACfZYJrmLEjznzm7GSiXKeulgAAAAAAAAAMjH-Kh7eMoVAEa99gkdQ-YQAAAAAAAAAWvtOmTuUGvKYiQRK_O9kHuwAAAAAAAANh_qijKAoIrj192_UIiHcBhwAAAAAAAABj_coc0yQmibHSYbczgpafrwAAAAAAAAAFhHI8fycCSE9gTrpxwlqNFAAAAAAAAAAE", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cPi-mObQCSuLuQtVOYID8A"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYRr8mF3o9czEU_lrcVazITQAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAHVRV3OqaPHH0CL0c13xlvAwAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABbjYv_loUJfP4bAxHmRpfBQAAAAAAAAAI_avzkz28Qok2WNYNUK8x_AAAAAAAAAACHRX5ZF5fIW1GKCXf3a6CmwAAAAAAAACtBTDQHzxuOEAYM78jOAyAQAAAAAAAAAB3t7DkRGcQiDMfHx06PCzMpQAAAAAAAAAXYEThj3UEuGl2wDiJSq9vSAAAAAAAAACqZou-EwmpdzrcXx7eij10xwAAAAAAAABPIdkGKdrrMvbrgpaqyJ-rigAAAAAAAAAJUpqzzk59PbxypyRs4QkNMAAAAAAAAABTN1R-9DGIZrDXK9x_wnFgtgAAAAAAAABD7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAAB3ZTYW2hueb8qo9sBuOsIdRgAAAAAAAAAn6HagrPNegEb1JoaDvxlnywAAAAAAAAAp5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAAB3ZTYW2hueb8qo9sBuOsIdRgAAAAAAAAAn6HagrPNegEb1JoaDvxlnywAAAAAAAAAp5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAADT1TcD-cYA4xs7rqA_y0alsAAAAAAAAABM3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAgWBDDHhcycxn7-c7ItUsJQwAAAAAAAAATBP-_XyWsrdc9u8RJlsCt-QAAAAAAAAAaqGl8xd2kFJcXjztpGDAS3QAAAAAAAAAN7uXfXu1sz-tQaHmopCX9sAAAAAAAAAAOiLCTWRKOWFgxy9lCZCKQuAAAAAAAAAAXPxG4kqBtC76qisSIA3IEOgAAAAAAAABjtoFq3ZEluPsdmkX_fgfocgAAAAAAAAAN", "types": "CANHBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TSyLQAdR8wymfWchXZ62Ew"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbeuIw_I7HzcVMEcOaEL-XEgAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAAB2I10upgJihUkX5rBuiOc-YwAAAAAAAAAJQM07la3NPp56y7hhD10OWQAAAAAAAAAFb0AoyduVJ3t1JvB8AtIQXgAAAAAAAACQ5N-LgXfDk2OXbiJdiTueMgAAAAAAAAAIxpf67p7tjON1QEeEp4iyEwAAAAAAAAAx7tmpfOwowdJc5WfioZ8HRAAAAAAAAAABS06qc2WWdjyLzzAdWuSUuwAAAAAAAAABPe4TSqGUL-1bGrK2ZFpccQAAAAAAAAAa", "types": "CAM5BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yG5lvQdywRfDEpDAMlDFjA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbeuIw_I7HzcVMEcOaEL-XEgAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAABtlFmnG5E5GwmKFptmUf-qtgAAAAAAAAACV_KspK9nh8LJS_EE9pIxxwAAAAAAAAAgDFiXReuwhx9_RqSSjQw5PgAAAAAAAAAFaZm3KCqAmEK8MKoRA8U8WgAAAAAAAAAJ0iy-2zuRXr8juBdHdwp6AQAAAAAAAAANuPDlCsNFx9xRx8s1Byg9TwAAAAAAAABKM9t3sX7Z2Nj1mpARCDGcawAAAAAAAAAIwcw67NCnOLTYutynHBvqowAAAAAAAAA90vYUuo04uCIksGcEjg9Q4AAAAAAAAAACiFkuHlkQPsBsMnUTpjsUKgAAAAAAAAAF0Cdt9wyWxnG2B-xGXMO6owAAAAAAAABpyYF5YWbjTLokor9oKz_A5AAAAAAAAAAN1YwmAWjsK6oD1Qs8m4ZuaQAAAAAAAAAW3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAA5yATvQ7EacG6CR4rzcFaNFEsTQAAAAAAAQGM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "CAM4BQIDBQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RK5QOedYDJN8YhVo9FJwjA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAABAHHYxe-SHgukLEpCkawSk1QWAAAAAAAA-srYxe-SHgukLEpCkawSk1QWAAAAAAAANKmYxe-SHgukLEpCkawSk1QWAAAAAAAA0MVYxe-SHgukLEpCkawSk1QWAAAAAAABq0D", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JiCE6XR1gukpwvjQ1r_0aw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAAAnGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABbTIqYHzSLJiXVx4krD2dbMgAAAAAAAAABIFHX6oXBjL3Y93SHOMXcKQAAAAAAAAABZXguWb1db5OZ-xUb0e4ZqQAAAAAAAAM2siCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhY0qFV6xhVekP5-uToPI32ragAAAAAAwhQA", "types": "CANPBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rrfjqA-Dh9U3GF1qMdtRQg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnChGc_KlbDChxhbLYz-xpPwAAAAAAAAALOmzVUgwY22EPoqShuZpT1wAAAAAAAAABrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAK0gz1mhmhTxHCVZG94cP1QgAAAAAAAAAF-7DooF_BqEazp1UGVZs9GwAAAAAAAAAFANUDzCguopTSw91qnI0ylAAAAAAAAAAEfEQIE_iCpRRbJjB1GxzDMwAAAAAAAAAE07ULaFJE09HKZJ1N_kQueAAAAAAAAAABS9C2chEMFxFBqLj7GKaT6gAAAAAAAAACpZtO5swbmBuXsFE_uaxkVgAAAAAAAAABcidxU1IQprySS7Fh7255fAAAAAAAAAAC1JcixA9b936fLO2mJkSSxAAAAAAAAAAa9MJISbwzA5r2YICNkdXifQAAAAAAAAAFnJkPGfb2Tj4bh-Cfxtx3_AAAAAAAAAAI2x9Jgge3yFGPJiCTMDFHSwAAAAAAAAAFiPXr6f3Mf7KR5iK4gq24eAAAAAAAAABVgyVw_U5FOQ18KFg79gJcQQAAAAAAAAAim2bU0P2xZXc_YHF7mglt9gAAAAAAAAAxvTCeC5emrj-AxsrlIylNGwAAAAAAAAAL20wTwcQoP3KLWSoSTerwRwAAAAAAAACzdQSJSZ8UDwBhKFRr5NGLQAAAAAAAAAAYAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Q-t0WQ1QPG_465StwGrNQw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETeKcEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEWLJ", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IzpuUVv759Abltk8UjLULQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAAAjj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAA", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0ovZA3MLYLkKXQB_OLfVFg"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAADz92SZxl-YF9wOaedogsBMtvRAAAAAAAE0PKR_3RsDYccfUxjNYYah3JZgAAAAAAB-M2R_3RsDYccfUxjNYYah3JZgAAAAAACMGXR_3RsDYccfUxjNYYah3JZgAAAAAAEQj26tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEMf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD7I6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC-586tVKI4mSYDEJ-ABAIpYXcgAAAAAALX096tVKI4mSYDEJ-ABAIpYXcgAAAAAALXwm6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMmAv", "types": "OAMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ScSKYoSOs8nhVq0muD3gAw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVYFHhxChQm8T7lhNTw8y-DQAAAAAAAAAMS-bF0OQ5zu714NI9jV1-DQAAAAAAAADEb95z1GhnNzkQcVnTAGVlWQAAAAAAAAB3fqaDj1pN5-CyodNN44HbZQAAAAAAAAAQc1uIuH7G_H0iDn31aPif-QAAAAAAAAAIjNnn0Cs8-QNABXdA7q71mAAAAAAAAAABPbXXr1ohgiKjdKmG8bXqXAAAAAAAAAACXQih0feiHcRhpLZTXruLcwAAAAAAAAATkQIfOKgH7suSILPob4uOXAAAAAAAAAEjwTSbu1Pr78mJrU1RTg5RYgAAAAAAAAAkr8runDm4rOcHO76XR-D7jAAAAAAAAAAMqCAXb4nsA8MBowrcfqVWbwAAAAAAAABd2cxgkaQz6jHA-zT7PPZDvwAAAAAAAACzjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAACEiSUtuDFidZ_ArB9M-KYzuwAAAAAAAAAqAAahb89jp2nXTHxX6vfDVgAAAAAAAAIaEzlTNMIGbx2ZiPDgwyoVKwAAAAAAAAE4hvoLs_S85r0RS2Fhd-3zRQAAAAAAAACTrsp0NwAkIMLMzLa54E-jWQAAAAAAAAAcg4mGiFInhcIQCenccesSCAAAAAAAAAAI4KFAFxj-eVsHHZBNgRjHOAAAAAAAAAAUuPxLhcxLS--qmU5fqS3y8gAAAAAAAAA18Za76x2-HbyUrGFN40BPPQAAAAAAAAAKYFEVU3rItUdMx9h2E0eYWAAAAAAAAAAQKPkSbIa3FpEsdEGi2AxIeAAAAAAAAAADciqEhcgmbAaZ5-wPT7iHYQAAAAAAAADG", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lgc01vu6tLGgLO8IPeQGXQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAfzpu39D9DSBdd-do-yuUlGAAAAAAAAAA6KYUKYe5FJokP-mDuLYX4tQAAAAAAAAAJi2OZ9-P_pjOFSV36486xoQAAAAAAAAEgvFHpuMfxurJGYl7N87FnEAAAAAAAAADC", "types": "CAMKBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2ejCsmFBHwcIycmn6V3r8Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mn2XT4fd_WKeR1cE-hlLelCQAAAAAAC-nUyXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zt", "types": "EwMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pCGmghmQMI3e0JNfZpz8pA"}} -{"Stacktrace": {"frame": {"ids": "tQgAmBJBgPLrkikSPRsmtgAAAAAAAK-dtQgAmBJBgPLrkikSPRsmtgAAAAAAAOXq", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DgucPUiNzHSpH364riJw7Q"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADAEguNCcnmVGnXNe9OvbpF2wAAAAAAAAAyyH_ohM36PxcsspBj9HiisAAAAAAAAABUZZqFVPfJM-LkfzPbeaoP8QAAAAAAAAIJZ0TAJMiD_AqT3npr7YiRAgAAAAAAAAH4AJ8qrcXSoJbl_haPhlc4ogAAAAAAAAAHlHZiv7a58px6Gumcpo-6yAAAAAAAAAAffkbxUTZgljnk71ZMnqJnyAAAAAAAAAH6Ot0HsYHQPmkwmtZkyeI5MQAAAAAAAAC8gHwfGc8BS0hXEJl9pqoeOAAAAAAAAAAEzqr5tutmGWQ5UPY6c0BG6QAAAAAAAAAA", "types": "CAOFBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xHAlWfQiLLyIuk2h7k7RXQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjXzz5k14PsCcDvFyUC1kmlV3QAAAAABGOHuz5k14PsCcDvFyUC1kmlV3QAAAAABGN3rz5k14PsCcDvFyUC1kmlV3QAAAAABGYGhz5k14PsCcDvFyUC1kmlV3QAAAAABGSUO", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UZVNKPpjh_ukvtZTR8SkKQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAACKf_a_qdoBA55O8a7qgwDK7gAAAAAAAAARuZeXOJajIKqLKk4-05Cj8gAAAAAAAAAIfx2qpzR4SW8k6QF4h_x-lgAAAAAAAAACXWhZGeSVw3QL-gA2NjTItQAAAAAAAAALcrJxfOZekEO297SoXoFNvwAAAAAAAABEz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABbTIqYHzSLJiXVx4krD2dbMgAAAAAAAAABIFHX6oXBjL3Y93SHOMXcKQAAAAAAAAABZXguWb1db5OZ-xUb0e4ZqQAAAAAAAAM2siCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhZsqFV6xhVekP5-uToPI32ragAAAAAAjkKVqFV6xhVekP5-uToPI32ragAAAAAAXziU", "types": "CANVBQYD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JyUFbnbXVaKa7YEj_4FmBA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMhSYXT4fd_WKeR1cE-hlLelCQAAAAAAEMhd6XT4fd_WKeR1cE-hlLelCQAAAAAACzCnIXT4fd_WKeR1cE-hlLelCQAAAAAACgaWJXT4fd_WKeR1cE-hlLelCQAAAAAACgUTFXT4fd_WKeR1cE-hlLelCQAAAAAAChz7b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_NQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaQ66tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZmt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKTe36tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ5Qy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ25w", "types": "DAMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VA9pzgeN6ktxH15wu8p4_A"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPWmW-xg6zZWXaaoD7z4m3qwAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAICsFZyzJjUXmiy5xzST-i9QAAAAAAAAErs50IQznqihitU-B8OhKHcgAAAAAAAAAcgur6r5-2VByGBeBFq9R4fQAAAAAAAAAJO-g6fZuLGa_Kh7O9W7kHmgAAAAAAAAAwQYG1AtlxDZ9awyVXs1RveQAAAAAAAAApGFOnvQQJ7n9iY8p8KSFUvgAAAAAAAABryFlR39-25JyGM4rHrh-UQgAAAAAAAAA_Z9zVvo9ZVSv6fTd0yjvLYgAAAAAAAAEbIlNeaDrhzreLpiJxVHRUUgAAAAAAAAELpPgMkcd05E3JFlk63z410gAAAAAAAAHoj_uVzimJAp5UX5EgaOgFoAAAAAAAAAAnomt3Uh86jhN6UzDM_NIHbAAAAAAAAACCgur6r5-2VByGBeBFq9R4fQAAAAAAAAAJO-g6fZuLGa_Kh7O9W7kHmgAAAAAAAAAwomt3Uh86jhN6UzDM_NIHbAAAAAAAAACCgur6r5-2VByGBeBFq9R4fQAAAAAAAAAJO-g6fZuLGa_Kh7O9W7kHmgAAAAAAAAAw", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3U1GssMMNyEfwWToQlllWQ"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABFqkYxe-SHgukLEpCkawSk1QWAAAAAAABFqkYxe-SHgukLEpCkawSk1QWAAAAAAABqcc6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvyz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvo_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0qd6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvMr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BgMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iXZcf6LHfVLaFOybaknpXA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QhMcEvvhuguaGYCmGWrnWRz1QAAAAAD-RAlcEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEM5TcEvvhuguaGYCmGWrnWRz1QAAAAACEMRMcEvvhuguaGYCmGWrnWRz1QAAAAACEXUEcEvvhuguaGYCmGWrnWRz1QAAAAACEXtkcEvvhuguaGYCmGWrnWRz1QAAAAACEX3bcEvvhuguaGYCmGWrnWRz1QAAAAACEm00cEvvhuguaGYCmGWrnWRz1QAAAAACFxcX", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RcNPwSZ_RRjUo3KUMQkJwg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSEYxe-SHgukLEpCkawSk1QWAAAAAAAFzhzYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHZdw6tVKI4mSYDEJ-ABAIpYXcgAAAAAACli46tVKI4mSYDEJ-ABAIpYXcgAAAAAAClha6tVKI4mSYDEJ-ABAIpYXcgAAAAAARNxe6tVKI4mSYDEJ-ABAIpYXcgAAAAAASc3-", "types": "CQMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IalcRP42h8xF7vm8KTlEiQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAACwH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcdeyQ05GmzOw19AUsDzeIcAAAAAAAAAAA", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aP1YbEn43FveSGHDAeyzEw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEt6cEvvhuguaGYCmGWrnWRz1QAAAAADhBO4cEvvhuguaGYCmGWrnWRz1QAAAAAD_5NMcEvvhuguaGYCmGWrnWRz1QAAAAAD_6LEcEvvhuguaGYCmGWrnWRz1QAAAAAD_7fhcEvvhuguaGYCmGWrnWRz1QAAAAAD5t-IcEvvhuguaGYCmGWrnWRz1QAAAAAD5dhEcEvvhuguaGYCmGWrnWRz1QAAAAAD5oNacEvvhuguaGYCmGWrnWRz1QAAAAAD5qjncEvvhuguaGYCmGWrnWRz1QAAAAAD5VLlcEvvhuguaGYCmGWrnWRz1QAAAAACGJzEcEvvhuguaGYCmGWrnWRz1QAAAAACGMs7", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "V1p0cyagFSh4bcZOqHE1xA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbeuIw_I7HzcVMEcOaEL-XEgAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAABDbpFrLpp87SutwNDP7V3ibQAAAAAAAAAjZPIrAiTSLAkXO9AZm4sjdQAAAAAAAACNS06qc2WWdjyLzzAdWuSUuwAAAAAAAADmTl_Iodjc0LWexYa5MoBoHAAAAAAAAAAHntgZha7-wW1dtg73nm5MkwAAAAAAAAAmsCOApbaKyYNIvwXSt1bEIAAAAAAAAAAy3rmyHJndkO8hLNYIrTHVNgAAAAAAAAAPAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAM5BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uDeXsyAM1ry2gjp5w7NiBA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAANSF3u75PFaKMThRw4BoUVwCAAAAAAAAAB3JzR1Che7ZkqwAcPrDIhJHQAAAAAAAAA2414vwxwFz0HV2Ku4dzYYowAAAAAAAABPlF0402c3xDTaGy1WpLy7vwAAAAAAAAA-4ExmIEmG5cbeqkrcSlhsEAAAAAAAAAAH12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG7kZxFgbuXnmF5RM9H_z_ggAAAAAAAAAefMXwmZZHoKY5ug0oBlnUxwAAAAAAAAAff15ZZuvJposXWOcmbKQgxAAAAAAAAAAftL230chqNUuroXAS-gtapgAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEKC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlscYYsnZ_Lwaqr0cHEPo0D185QAAAAAAhTE9", "types": "CAOUBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3T5Y-Jcmq5ISgDLlSLnByg"}} -{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimtb6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOK46tVKI4mSYDEJ-ABAIpYXcgAAAAAAlcA76tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbdH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlWJ36tVKI4mSYDEJ-ABAIpYXcgAAAAAAlsoG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlrpu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlqKz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlwjf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlN5a6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlNsK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlOPs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMub6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMqa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMWu6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgDv6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgCV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwA8J6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOBI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN1t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjNJshpS1QtdrBQjGg-LCbfqeSAAAAAAAAF9MSxgb26oKQwlt07if9woPTQAAAAAAACWpuof2oKCX86V-_cQCuGg7EwAAAAAAAGuE", "types": "IwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XXNleeK595fkvNMoEEpulQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvU6cEvvhuguaGYCmGWrnWRz1QAAAAACLroTcEvvhuguaGYCmGWrnWRz1QAAAAACLsWTcEvvhuguaGYCmGWrnWRz1QAAAAACLsmncEvvhuguaGYCmGWrnWRz1QAAAAACL74lcEvvhuguaGYCmGWrnWRz1QAAAAACLvbWcEvvhuguaGYCmGWrnWRz1QAAAAACHvVycEvvhuguaGYCmGWrnWRz1QAAAAACHyB1cEvvhuguaGYCmGWrnWRz1QAAAAACHxQxcEvvhuguaGYCmGWrnWRz1QAAAAACFpYR", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5bQcQ0KEBggKnhUPDGb0jQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALARLuf1htvrklOOxyKnOopAAAAAAAAAABTBtZO3-vmynkHlKuzsN9UQAAAAAAAAAyn55ZjUBJzU7CnzmyoRyorwAAAAAAAAAk5Ib9omL2d9xqdBKBL9VmGwAAAAAAAAAAqFV6xhVekP5-uToPI32ragAAAAAAmMkkqFV6xhVekP5-uToPI32ragAAAAAAxn1ZqFV6xhVekP5-uToPI32ragAAAAAAxnpttQgAmBJBgPLrkikSPRsmtgAAAAAAAL3h6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMGBQQDCQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Tx4eHSc1gmcx0PGWlGwBFw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF353Bbxw0b5wHlGJY1WEVWAAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4bWZWPptWisqbpRDA9X8cNgAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADv9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABDHfFlM3axnhO28EteQn-2WAAAAAAAAABJ5utt2dQ8HKrTepHdNpprxQAAAAAAAAFzUP7wzdQXo1Tc_iFi4DuZQQAAAAAAAAAE9ZOKtWsgasz8zygdckTZDQAAAAAAAAAEEVcCXOQnkebnZR5Z6XcBvAAAAAAAAAA0SLm5iQaRU0eNqFhBMIrYxgAAAAAAAAAXvOoArOQsiI-woapVIk9zYgAAAAAAAAA1NnsXqH-CVYMwVp_zbU78aQAAAAAAAAAIQunNj1oMDkHtmA3AacNPUAAAAAAAAAAFx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAOPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMzzqjB_amR59Lv13Nhle_NwbwAAAAAAENS56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjs6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbfA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAROdc", "types": "CANNBQIDBwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zQ1nyOGbOtedL7gx4fO8XQ"}} -{"Stacktrace": {"frame": {"ids": "AAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "AQU"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ui68wyUVCJcxQ5nqpWzN1Q"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAC1itTcEvvhuguaGYCmGWrnWRz1QAAAAAC1hwkcEvvhuguaGYCmGWrnWRz1QAAAAAC1iFlcEvvhuguaGYCmGWrnWRz1QAAAAACGwpNcEvvhuguaGYCmGWrnWRz1QAAAAACGlITcEvvhuguaGYCmGWrnWRz1QAAAAACGJ6EcEvvhuguaGYCmGWrnWRz1QAAAAACGMs7", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zKpNTqz8S7smmzjSBvFLmw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAV2c9TATIrCMgoDoZOxrWO6gAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJuxWu7bOCGuvy3Ir42torwwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAWZvnSEZ6hxckmxa-z2abTjwAAAAAAAAANeZn3IOB-FE1r74FZypzHhAAAAAAAAAAGp-hz1y_-cXtA7Uo61H8OwAAAAAAAAABOb5D4G32aP0YH2ukb-bXGLgAAAAAAAAAdk_s_ITRPELxw2Zk2jzGG8wAAAAAAAAAINleCed7iD5lY9FUQABqcFQAAAAAAAAAE56J_quP6E7ubMy0oFC4pVgAAAAAAAACGJmNHPBl7DNTU3iu90SpbRwAAAAAAAAAA", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "L9SYu-N9HWWrCeEAOt9YiQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFlde", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ydmNLaPNVcV_2d5DkMu7ew"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ1i", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2eEjs7_9575hZerEBB52yg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAAA65FYxe-SHgukLEpCkawSk1QWAAAAAAAA8D0Yxe-SHgukLEpCkawSk1QWAAAAAAAA_IZYxe-SHgukLEpCkawSk1QWAAAAAAAA-3HYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBwt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBGg", "types": "CAMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AOFrzbtSbZoZPfOFvByqkQ"}} -{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimtb6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOK46tVKI4mSYDEJ-ABAIpYXcgAAAAAAlcA76tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbdH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlWJ36tVKI4mSYDEJ-ABAIpYXcgAAAAAAlsoG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlrpu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlqKz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlwjf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlN5a6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlNsK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlOPs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMub6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMqa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMWu6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgDv6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgCV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwA8J6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOBI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN216tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIer6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlH3T6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIYH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIRA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAl1AE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlzoH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlmsw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAll9_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAllGK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAirCv6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "LQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gKIIWZ-RBY_pDJxZsnm0jg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAA5cYiYZLNw79YI2sv5ZzfISgAAAAAAAABnsd1-fzhWHGpZk5BbNZ95mAAAAAAAAAERuV9VJttm0goUzsky7YZbIwAAAAAAAACLXoncVs_RZ0C2CaElSEtZqgAAAAAAAAAV_jOWl9rQ0a9rjiw4HiJl9AAAAAAAAABiBTYksaSRO8AJ9nY6uneb7wAAAAAAAAAnAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMSBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FxTaDizS0-OeBLILGTyzyw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABBFSYxe-SHgukLEpCkawSk1QWAAAAAAAA_dB", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "n8J0DIbyYxslBat-_GGskw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAFJfinhoQfoECf6Q4HPC08YkAAAAAAAAAAqcn_0Dt8F1JGwazqn6MVOnAAAAAAAAAABDnuglYjSP_yHnOeoUpC43wAAAAAAAAAB3v2TU8A01iCPuVWdiUVv8QAAAAAAAAApL-_tQCaPRoXtazKap89hsgAAAAAAAAAOZhtNJYoOwm655zArM3sIngAAAAAAAAAmYgvoZ6DleZJd_ACRhoNarAAAAAAAAAACUT4r1woqEdacoKDuZFw-vgAAAAAAAADtUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAmQVeLj_oPnEjl_jKTv8aQqAAAAAAAAAAlUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAxrp3sprQtO8hOwekVupMQwgAAAAAAAAA0XoNqQsMeesgJkRR-qQrvugAAAAAAAAAuWNSWOp_4Iqt56ZuW1XrPJwAAAAAAAABnwwh143L4mTM-msioEjaOPQAAAAAAAACOpBAXMFgFarqt_e84PodhnAAAAAAAAAAUtIoSY_1vT_j29F717EmR3AAAAAAAAAAPRZ01NrWKTMDuXelOk2KnKQAAAAAAAAA168iZXv_8xxb53ICXrvQepAAAAAAAAAGhCR_orhXYgPjlsF3bAh1bcAAAAAAAAAAQXoQBAZDyQM5EalVK0DT7vwAAAAAAAABIHHvO0O_M7qxq_PkVq5p74wAAAAAAAAHmtKRI47gaUATre6hVOVRyHwAAAAAAAABCmGc5SCx8bcB0yyOsBwmj6QAAAAAAAABwoAl3S1UdiCfcB1msAHRleQAAAAAAAADYZgROkWlvV9ujJA-aNSGhMwAAAAAAAABA5VZIXKdThz-hZwdLu0KVfwAAAAAAAAAKyzF6hkXAWj2zsycLYYGV0AAAAAAAAACY90UIqO2n6jPWAsY9C7Jk5wAAAAAAAAD26l3Q3lLwvaP7rhVtdi_RoAAAAAAAAAAdAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g1TbNQs0ehcm3oPXvCWrtw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t3YXT4fd_WKeR1cE-hlLelCQAAAAAAC-wI9XT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FgMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YGL51-V8LSysDnURshRDsw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAazVvSNDzWiYDmLZi_Z1ZVETLoAAAAAAAayx-SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcclQSNDzWiYDmLZi_Z1ZVETLoAAAAAAAccSXSNDzWiYDmLZi_Z1ZVETLoAAAAAAAVK9A", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8XIeRmjQa-cdLu_obwSXJQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAABu1IhEUKf_PDCxfheapNhvQQAAAAAAAACI7RFhYe_NpS241I1rFVDmNAAAAAAAAADfyLcvbV13CtkdfmXNFFed3QAAAAAAAAAHLL2AmHorGMGLHFvQ3KWNRAAAAAAAAABye9VBoOb6ap6y2iBqQXec9wAAAAAAAACZfbT9eHA5tj6rUvxqpnewLAAAAAAAAAEHxz8R4MTaPzD1CrgkfDi_QwAAAAAAAAC4", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-P0Vso9aXjNnbKarUe02Qg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8VxXT4fd_WKeR1cE-hlLelCQAAAAAACxC9tXT4fd_WKeR1cE-hlLelCQAAAAAACxE1EXT4fd_WKeR1cE-hlLelCQAAAAAACxJxEXT4fd_WKeR1cE-hlLelCQAAAAAACkl1MXT4fd_WKeR1cE-hlLelCQAAAAAACkoP3XT4fd_WKeR1cE-hlLelCQAAAAAACgJEs", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0i9UUQjQ7yqS-rcTUC_StQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcQxTPNhFsgl-8e8i61Q7phQAAAAAAAAAnwnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAE8PySOWxdeTvWtl74Iv620AAAAAAAAAAMruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVCsLX3bRds6mXA7wt5jzrFwAAAAAAAAAEBDXazX7fgZuH_ompyZTPawAAAAAAAABjQDX8GJXtT-aXEUh_iXGDAQAAAAAAAABYtfylNEM_JkJvBScOJPNFaAAAAAAAAABObLOY0QAUT1PFyS4m6DuvzQAAAAAAAADNoVgqesHjGm-3vT2l3h9tegAAAAAAAAAm5wvg9HwVtMHbuTIgL8Ac7QAAAAAAAAAL1ZGGfnUIDt7Cq-tNI5WEzwAAAAAAAAC6NAhjTsNYxdMXNJqlZxlO_gAAAAAAAABeoqFEu_d-dr_U6eLuARTQOQAAAAAAAABkY9mQUdyp86jQhHqOid6GcwAAAAAAAACW76wxGzK61aMnsTPSzlLCrgAAAAAAAABA8gCX4yiEJccsUYm2373XlQAAAAAAAAANxKt9upfh1P21jh6PrOPtogAAAAAAAAAOqxNbkYBEVNPqwztSIOjX5wAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3bvdBbzWBhiwCbUR097jxw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYRr8mF3o9czEU_lrcVazITQAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAHVRV3OqaPHH0CL0c13xlvAwAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABbjYv_loUJfP4bAxHmRpfBQAAAAAAAAAI_avzkz28Qok2WNYNUK8x_AAAAAAAAAACHRX5ZF5fIW1GKCXf3a6CmwAAAAAAAACtBTDQHzxuOEAYM78jOAyAQAAAAAAAAAB3t7DkRGcQiDMfHx06PCzMpQAAAAAAAAAXYEThj3UEuGl2wDiJSq9vSAAAAAAAAACqZou-EwmpdzrcXx7eij10xwAAAAAAAABPIdkGKdrrMvbrgpaqyJ-rigAAAAAAAAAJUpqzzk59PbxypyRs4QkNMAAAAAAAAABTN1R-9DGIZrDXK9x_wnFgtgAAAAAAAABD7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAAB3ZTYW2hueb8qo9sBuOsIdRgAAAAAAAAAn6HagrPNegEb1JoaDvxlnywAAAAAAAAAp5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAAB3ZTYW2hueb8qo9sBuOsIdRgAAAAAAAAAn6HagrPNegEb1JoaDvxlnywAAAAAAAAAp5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAADT1TcD-cYA4xs7rqA_y0alsAAAAAAAAABM3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAgWBDDHhcycxn7-c7ItUsJQwAAAAAAAAATi3cpry5G-AUeVV5d50JrmQAAAAAAAAAmsn05VCpzfESOHiGVrvO-_wAAAAAAAAAJ9pb4Lxy57-qFLAi366TLkgAAAAAAAAAFoTL_szAX2KeN5vc-O2hirAAAAAAAAAAnPTytLEfKUZaVfTsnhaM7GgAAAAAAAAAu7lmNnuzxdni_1ipoktVCugAAAAAAAABG1qEaQkPH6HGZ6UsDAJT9BgAAAAAAAAAHPTytLEfKUZaVfTsnhaM7GgAAAAAAAAAu7lmNnuzxdni_1ipoktVCugAAAAAAAABG1qEaQkPH6HGZ6UsDAJT9BgAAAAAAAAAHPTytLEfKUZaVfTsnhaM7GgAAAAAAAAAu1vQ1eKhRorTFv2y8gOteowAAAAAAAAAEaHZBsIynBt9qskDZYrJb2gAAAAAAAAA9", "types": "CANCBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kEXROxnWraXoAAVP6f28xg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcoiHXy47Qw5euydEoPUexRgAAAAAAAAAga67hy6D4_aH__IrzfMid7wAAAAAAAAABruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZf4KmPLa6_uw8gRgiw9EUAAAAAAAAAE4ihprad0bkU-u2IU9StodIgAAAAAAAAFXYmsifTqF7cioaxmVry5lBwAAAAAAAAAGKXYM0aVJDRSRVOuwZo8XMAAAAAAAAABE-gcPk4qV9SANWTcSsCqOPwAAAAAAAAEJiH1Vr4ITYNoM1EQTmFjMowAAAAAAAAAFQ_fTsiDQn3AwPFHRHJfE6QAAAAAAAAAFISo198vJQrYNdynfqzotagAAAAAAAAAA", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YBrq3-KR1ovSakEx4BXycQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAACwH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACl", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QWHewGzkmPtQ4MCGkNndoQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAArGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABB5KDO11BWTfkkFO9MFEbTJwAAAAAAAAADoyUgxxOY520Rj3U8w5GHoQAAAAAAAADS_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhO2", "types": "CANPBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "E6KBzvcDthx6uaZz_Stfkw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAABAHHYxe-SHgukLEpCkawSk1QWAAAAAAAA-srYxe-SHgukLEpCkawSk1QWAAAAAAAANKmYxe-SHgukLEpCkawSk1QWAAAAAAAA0MVYxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBJS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD8cD", "types": "CAMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6u9I1yH1QSX15dNTqAV9bA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAD8uIpQ1uRexMdnpWaro5896wAAAAAAAAALtpYrdrzxLxKEo0lof5nOvwAAAAAAAABTGXqdtKZs0jCPru_AD4bs_AAAAAAAAAFycVCWdIPyBbQitZhcw5plhQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAMKiKQXI5stF5N-InJuXrsjgAAAAAAAAAEL4Zieid3nVkNJbdYJumC3wAAAAAAAAAPMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFTU7DQ3uAw_xM7DAGYMk_cQAAAAAAAAACMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFOa5CkhVOrx2r2YkOsLGOZwAAAAAAAAAeJUqoXh4FCdEByaAYgHthzAAAAAAAAAAKl_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAADUM3h48-oBMi00mRAqhB4IAAAAAAAAAAjNrvcSCGNEuayQcoP_4CXWQAAAAAAAAANp3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAANqUqjB_amR59Lv13Nhle_NwbwAAAAAAEPza6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALqAi6tVKI4mSYDEJ-ABAIpYXcgAAAAAALp8M6tVKI4mSYDEJ-ABAIpYXcgAAAAAALlAgUbK4uezrplMLlSw0h87XfgAAAAAAB0k0UbK4uezrplMLlSw0h87XfgAAAAAAB6VYUbK4uezrplMLlSw0h87XfgAAAAAAA2IeUbK4uezrplMLlSw0h87XfgAAAAAAA7vAUbK4uezrplMLlSw0h87XfgAAAAAAA7k3UbK4uezrplMLlSw0h87XfgAAAAAAA4TiUbK4uezrplMLlSw0h87XfgAAAAAAAx7ZUbK4uezrplMLlSw0h87XfgAAAAAACbfUUbK4uezrplMLlSw0h87XfgAAAAAABiMrUbK4uezrplMLlSw0h87XfgAAAAAABhsCUbK4uezrplMLlSw0h87XfgAAAAAABhW1UbK4uezrplMLlSw0h87XfgAAAAAABfic", "types": "CAMuBQIDEQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lKZJwz7nYfsG1OMpqNS4TQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP_dc", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aNwZEBoTlKLxCLfBZC1w5g"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAABVUGAPUw2d5-4XxhgrPyPBigAAAAAAAAAMxhOAoPbUvqtSdEcy7uoPXwAAAAAAAAAFeXimxJw4055xWDImg8DzoQAAAAAAAAAqhIPSIc3LxfgC93-3l1xbUgAAAAAAAABg2WuDX_7V5y0Pc0pDkF5WNQAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAGv7pp6LgRqCGeGjs7cnnwItcAAAAAAAD9D3", "types": "CAMKBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GG0F2L0nSA_B6ZW5v6LB3A"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApygiinZb-VL-5X6K63nWolQAAAAAAAAAFsPRIu4G_UqOumyaMlOEsUwAAAAAAAAAalxBbJT8CEpl1TogDqQt4QAAAAAAAAACTOM9gozgq3V-c4gPwstZkSQAAAAAAAAABF0PU7bQ8aSr5vRj-z9gSNQAAAAAAAACmqFV6xhVekP5-uToPI32ragAAAAAAxU0d3aS07d9PG4lc4UzuBbVWzQAAAAAAEUos1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAlx", "types": "CAMIBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nqNBcpTJOJBcaLx3xSaIng"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAak0ECrHyaBQYN9EA2YbnUsgAAAAAAAABFc95b0xugd132zom56_A3XAAAAAAAAAAFo3aAA_gtGWT3yHJNsrFNiQAAAAAAAAACSU7fNzMC3NazhQDT5xGXYgAAAAAAAABI", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Pc3wbonmXheS0jJ7LgcLWw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAAEJm5p8puApNHgdtwb3aFhxPAAAAAAAAAApxDECjxfRDF0SAcicHv7yIgAAAAAAAAABSsODsFdp0k4d_SSQAFmIUQAAAAAAAAApzzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIOgrnocamUAo62UJ-c4BU1gAAAAAAAAABcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAI3FmF0iegYInyRffZHSr8AwAAAAAAAAAv1Az5XiB-HqkM2KIxBs7pHgAAAAAAAAAzXmgLknRmXWrjNm14n69KUAAAAAAAAAAGcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAInQRJ3xr79n3cY6qS99IffwAAAAAAAAAE7EnnOhShMGZ9Te5BWwjtoAAAAAAAAAATopFI2iPPQrSoKgHSzuYsiwAAAAAAAAAIytmnDvqR2kv8bcodWBOqIQAAAAAAAABnlPFcxZmqiy0vqSr3tr4NBAAAAAAAAACFwoXLgCudpu5Igw4bPyCZzAAAAAAAAABTLQDSx6vga0zDZ5JbsP5kmgAAAAAAAAAwngEDfMGa2k3LBps0tpgYRAAAAAAAAAAQ-SQAt_091j0wh4lQu2r18QAAAAAAAAAC_c66iRIhxEMceXexHDGFpwAAAAAAAAACm90x-IDkYTtkxx7JZAYrFAAAAAAAAAAMFYp6NrRQUdcxcMQHOiZr7QAAAAAAAAAiwmQufSV4x-hAvGcaiegjeQAAAAAAAAAm-KaQJqCpvd-fD6hn3-xL4AAAAAAAAAA6-e8LcozZeVskf4VBCD583AAAAAAAAAAYE9iltmxxnvYn82cyFFZ0KwAAAAAAAAAC4RMjMvBCxMjR_OY2K7clCwAAAAAAAAAFsRqFVRgtIpahqWj1VJMq5wAAAAAAAAAo-SQAt_091j0wh4lQu2r18QAAAAAAAAAC_c66iRIhxEMceXexHDGFpwAAAAAAAAACm90x-IDkYTtkxx7JZAYrFAAAAAAAAAAMFYp6NrRQUdcxcMQHOiZr7QAAAAAAAAAiwmQufSV4x-hAvGcaiegjeQAAAAAAAAAm-KaQJqCpvd-fD6hn3-xL4AAAAAAAAABFE9iltmxxnvYn82cyFFZ0KwAAAAAAAAACDHkKlJyvSzYWZrxA7eo4aAAAAAAAAAARoXdf8OJsiOhUkDzOQcZagQAAAAAAAABlV6F4RoY4Wqi3heGJHCHC7wAAAAAAAAAB1iwmLz9f5lKCUTwNTHYeTQAAAAAAAAAM_c66iRIhxEMceXexHDGFpwAAAAAAAAACm90x-IDkYTtkxx7JZAYrFAAAAAAAAAAMFYp6NrRQUdcxcMQHOiZr7QAAAAAAAAAiwmQufSV4x-hAvGcaiegjeQAAAAAAAAAm-KaQJqCpvd-fD6hn3-xL4AAAAAAAAABFE9iltmxxnvYn82cyFFZ0KwAAAAAAAAACWBVMcdZBjWrypfo7wLwFQAAAAAAAAAAA", "types": "CAM4BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nMRtZlSwaA-3XiYGlSgMRQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF_IhPXrChwahxbJ63NZZANQAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4rDcHLjUrpvKg-XXDfFGKmAAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADv9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABDHfFlM3axnhO28EteQn-2WAAAAAAAAABJ5utt2dQ8HKrTepHdNpprxQAAAAAAAAFzUP7wzdQXo1Tc_iFi4DuZQQAAAAAAAAAE9ZOKtWsgasz8zygdckTZDQAAAAAAAAAEEVcCXOQnkebnZR5Z6XcBvAAAAAAAAAA0SLm5iQaRU0eNqFhBMIrYxgAAAAAAAAAXvOoArOQsiI-woapVIk9zYgAAAAAAAAA1NnsXqH-CVYMwVp_zbU78aQAAAAAAAAAIQunNj1oMDkHtmA3AacNPUAAAAAAAAAAFx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlsd-YsnZ_Lwaqr0cHEPo0D185QAAAAAAX19F", "types": "CANPBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5PHdMxxhN18mCCoCEYhigQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAAtSAAkutGejeRImCZXeWZ-1wAAAAAAAACLcDDKtM-30WtgKUZUhSPZowAAAAAAAAD0JN-dgFkoqSE-dHBUib5RMAAAAAAAAAB-pDmevRXuPcE63RgyWWd9hwAAAAAAAAC0LT5lr845yiJBLJcYHx5FbQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAZlSN_wOi6EtlLmPRGOv3HiAAAAAAAAAAFo3UqAAOe1TvTgoeUjoa-ogAAAAAAAAAHE73KHKAXpFF--gEMhIXshwAAAAAAAAAFV0uPvqXECyvBGRzWbaaAUwAAAAAAAAAA", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8j8JNdpbtu6ZzDCgLiiQag"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSEYxe-SHgukLEpCkawSk1QWAAAAAAAFzhzYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHZyK", "types": "CQMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Y9yOjEX9YsHot-nonRkNzw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAHX_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAgAlyGmh1B04rpTwKhuQi5WgAAAAAAAAAA", "types": "CAMxBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dhc8TGgYU9zTniCUbRsImw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2a", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "u15yh22vXEfk9m8DTVYjBQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAAAd2oeSW9BMt2zZqP7i-3UsNAAAAAAAAAArZC4caaBbQcOc2WclRiklUwAAAAAAAAAMQJ-JVADSuuonf59sOKCy_wAAAAAAAAAA", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SWnMQRi9b6sdpiIXZr2J-g"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDo5XT4fd_WKeR1cE-hlLelCQAAAAAACxD6XXT4fd_WKeR1cE-hlLelCQAAAAAACxClIXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oSCp9cFxZ1aVa9L0c22cCg"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHiCEgtQ4kMk_MBWrPUAFqVnYywAAAAADHiVygtQ4kMk_MBWrPUAFqVnYywAAAAADHdmRgtQ4kMk_MBWrPUAFqVnYywAAAAABv70hgtQ4kMk_MBWrPUAFqVnYywAAAAADHivMgtQ4kMk_MBWrPUAFqVnYywAAAAABswTkgtQ4kMk_MBWrPUAFqVnYywAAAAABsmOtgtQ4kMk_MBWrPUAFqVnYywAAAAABr-gMgtQ4kMk_MBWrPUAFqVnYywAAAAABsAm7", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Fp3JKxC8Kg-FrE8ZKU_2DQ"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAAA_rYYxe-SHgukLEpCkawSk1QWAAAAAAABAXEYxe-SHgukLEpCkawSk1QWAAAAAAABBHB", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Pq-E12uy1vBeK4HeCjUqKg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAAANQxy7B7Nr9PFo52Y5q5lwVgAAAAAAAAAMlG2LQX6wnpHhsyvHjDeznQAAAAAAAABto-jqtuMSQjS4_DLqr5n5BwAAAAAAAAAHHFjqNQEy358ADuSpfuj3RQAAAAAAAAACeM9hv92GEnhzXrJtFANypAAAAAAAAAAWiuCJSQNox98NgtgeRfzc4gAAAAAAAAADo-jqtuMSQjS4_DLqr5n5BwAAAAAAAAAHhYtZ-8uhAXJ4TLd-aq9ldwAAAAAAAAACDSOoGD8SRS6OmwWTUaeXgwAAAAAAAABDK3z6VlJKaoVH_PfNkbsLxgAAAAAAAAACh3PxPMxQ128l0j8OgQ1S2QAAAAAAAABi4YjK3XUf-x_amsWvbAE40AAAAAAAAAAjK3z6VlJKaoVH_PfNkbsLxgAAAAAAAAACh3PxPMxQ128l0j8OgQ1S2QAAAAAAAABi4YjK3XUf-x_amsWvbAE40AAAAAAAAAAjK3z6VlJKaoVH_PfNkbsLxgAAAAAAAAACh3PxPMxQ128l0j8OgQ1S2QAAAAAAAACk4YjK3XUf-x_amsWvbAE40AAAAAAAAAAjK3z6VlJKaoVH_PfNkbsLxgAAAAAAAAACh3PxPMxQ128l0j8OgQ1S2QAAAAAAAAEKQhoYQKX1e8Qrxu1NmsxA4wAAAAAAAAAFnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYOoSbzwyzFhV1hlFGUdDRowAAAAAAAAAOdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAxU0eTKdsDxlOsU56i41jsOgAAAAAAAAAgZ9hje1cbFu-XpVYNW9SlywAAAAAAAAANCHiDq53TCUjpMKBV4yWE0gAAAAAAAAAMLTyLcxCjCWE0-UMDXjVNpQAAAAAAAAAw", "types": "CAMpBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8XVoH_w6DR25OZwFIyOORA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw2HtXT4fd_WKeR1cE-hlLelCQAAAAAACw1EEXT4fd_WKeR1cE-hlLelCQAAAAAACkHGIXT4fd_WKeR1cE-hlLelCQAAAAAACkMuNXT4fd_WKeR1cE-hlLelCQAAAAAACkLvxXT4fd_WKeR1cE-hlLelCQAAAAAACkJzPXT4fd_WKeR1cE-hlLelCQAAAAAACkIOX", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iz6TzFT8_J6ff04naDiS0g"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAACZcrJxfOZekEO297SoXoFNvwAAAAAAAABEz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABB5KDO11BWTfkkFO9MFEbTJwAAAAAAAAADoyUgxxOY520Rj3U8w5GHoQAAAAAAAADS_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhXx", "types": "CANPBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "73zzSG8Oeil4xVlA4Fb1Bw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAA", "types": "CAODBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TliOfrc4IBAVNwcIQStW3Q"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACGz1HZ3CKaS4aU08RhYA19y5ITQAAAAACF_8yZ3CKaS4aU08RhYA19y5ITQAAAAACF_UIZ3CKaS4aU08RhYA19y5ITQAAAAABvncYZ3CKaS4aU08RhYA19y5ITQAAAAABw3oLZ3CKaS4aU08RhYA19y5ITQAAAAABzH6pZ3CKaS4aU08RhYA19y5ITQAAAAAByyDQZ3CKaS4aU08RhYA19y5ITQAAAAABwNqVZ3CKaS4aU08RhYA19y5ITQAAAAABv017Z3CKaS4aU08RhYA19y5ITQAAAAABv3U_Z3CKaS4aU08RhYA19y5ITQAAAAABtzN1Z3CKaS4aU08RhYA19y5ITQAAAAABt2AE", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oiCF7gS8wBa3SfipWqWdgw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAABAHHYxe-SHgukLEpCkawSk1QWAAAAAAAA-srYxe-SHgukLEpCkawSk1QWAAAAAAAANKmYxe-SHgukLEpCkawSk1QWAAAAAAAA0MVYxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzYv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFrZg", "types": "CAMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XB2RBcspSf2rnOrxNGF7Mg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP_SY", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0eeGCGwvAUwir03MFPS_Kw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSIeXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdTV", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sd-ZaAvLHLrrMbq7MjTuQw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB6fSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa_-3", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tU6VK5zLihoNeJDRhxPnUg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LMXcEvvhuguaGYCmGWrnWRz1QAAAAACETXA", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "l3DRS0zpqMRRIvCRvx_gnw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAADHgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACamW1QO3T5kZR72H8FRXCCwwAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "whKjwtCVRYeUJb75GUn0Fw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "FAMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xpOWBBX4t2hmVnFh4nP3jA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApfzLzWZQgzth4yv0Aw0PoLgAAAAAAAAAl1pEcO9CYkxI799CldX3uowAAAAAAAAARsCdW6ghslIPajpgsdfjVWAAAAAAAAAAS3HYeSFaP4bm-Z2NSJub6sAAAAAAAAAAY4io8TQpKnhHcoJs_H_nFpQAAAAAAAAAcWUsgmXBmEYsZWCQlmPqU4wAAAAAAAAALRuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAqFV6xhVekP5-uToPI32ragAAAAAA7PGLqFV6xhVekP5-uToPI32ragAAAAAAxoHL", "types": "CAMKBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-ggHg8zNX_Qs55mykGTE7g"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kSHpn8pwAHiX47J0IzMtXvwAAAAAAE8PJSHpn8pwAHiX47J0IzMtXvwAAAAAAE789SHpn8pwAHiX47J0IzMtXvwAAAAAAFznbSHpn8pwAHiX47J0IzMtXvwAAAAAAFzFySHpn8pwAHiX47J0IzMtXvwAAAAAAEsMwSHpn8pwAHiX47J0IzMtXvwAAAAAACGIgSHpn8pwAHiX47J0IzMtXvwAAAAAAB-7gSHpn8pwAHiX47J0IzMtXvwAAAAAAF6N7SHpn8pwAHiX47J0IzMtXvwAAAAAAGYVYtQgAmBJBgPLrkikSPRsmtgAAAAAAAOfItQgAmBJBgPLrkikSPRsmtgAAAAAAAOS3", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "en13QzIrjXnNEN-2tQMMJw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCYyXT4fd_WKeR1cE-hlLelCQAAAAAAEOC7XXT4fd_WKeR1cE-hlLelCQAAAAAACwzdbXT4fd_WKeR1cE-hlLelCQAAAAAACwXE7XT4fd_WKeR1cE-hlLelCQAAAAAACwXIlXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwXQXT4fd_WKeR1cE-hlLelCQAAAAAACiKCvXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJje6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIj8", "types": "EwMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "f-mP1jAp98tb7PtN_trD8Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNGXT4fd_WKeR1cE-hlLelCQAAAAAAC-uEIXT4fd_WKeR1cE-hlLelCQAAAAAAC-vdVXT4fd_WKeR1cE-hlLelCQAAAAAACi9wRXT4fd_WKeR1cE-hlLelCQAAAAAACjCBUXT4fd_WKeR1cE-hlLelCQAAAAAACi1U9XT4fd_WKeR1cE-hlLelCQAAAAAACiLJ8XT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcDw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbgp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbfA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAROdk6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdbc6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdab6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdV46tVKI4mSYDEJ-ABAIpYXcgAAAAAASg5x6tVKI4mSYDEJ-ABAIpYXcgAAAAAASg1G6tVKI4mSYDEJ-ABAIpYXcgAAAAAASgYf6tVKI4mSYDEJ-ABAIpYXcgAAAAAASSle6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTjJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTBI", "types": "EQMQBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "11Tl3YbjvipxnomXbH8dow"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf_G", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Vv8H2tPfs7d9zjnnJhB0rA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfxrm08oJc5xqpM1VweLZNZwAAAAAAAAEIFyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACAE1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAACS4b6Y6AxjtjqP_pey1p_yKgAAAAAAAAA46himjS-PpAivu9i1Bhv6aAAAAAAAAACVH0h6cNWo4nXEYZXWZXHxWwAAAAAAAABshWTBWfz-Houd9OXpVmNNGAAAAAAAAAAkuwSrGXrIlilHG9LeAbu8sgAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFm-x5OkQlku9y3rztHSvTSQAAAAAAAAAULEf7xTPa92fa-lrUaMUkPQAAAAAAAAA3-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAFRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF6gZHeFcPF3p_p9hsnsuK4AAAAAAAAAAQVQoK7BVzszXqPUi0cc2ufgAAAAAAAABCRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFP25sJXYK2Dig2gvT-_j6hQAAAAAAAAAoKU_l7oGL7N35bnBXHoHVpAAAAAAAAAB3R43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFYuABXadheWsSG6-oIu8XAgAAAAAAAAAYbtJR8uWrInrzn_sGkpIt3QAAAAAAAABNRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF4as0IgurEXJei_r6XmrPIAAAAAAAAAAU7dZbzLINeewhS7u7jNnbxwAAAAAAAABBR43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3RsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFrY7n4rCVF7rtGQSMR7sNcQAAAAAAAAAQ3xSivts4s-tBo1MMFQEENgAAAAAAAAAvfEf2U4TLcZ6jkTz3kXzr0AAAAAAAAAAkjNbJJD0szUDlnbhrWsIGkAAAAAAAAABE4ZG6-YGelmJ-HvYGGP11fAAAAAAAAABaPJlREaStQ9MDsMhq8CWS4AAAAAAAAAAY9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQmUBFmueS4MaOyw0OD29yQAAAAAAAAAUuj5fRTSdGJxlX0gfzctOogAAAAAAAAA_3G7WvpXqPGO04rbAV9CJtQAAAAAAAAAlHr7DaUVBf6Mvou5VCDAFbQAAAAAAAAApRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFZRv6R5-Wsj1i57MVMaKXtQAAAAAAAAAMM_MfJrZLrX3P0R0dWrP49AAAAAAAAAALRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF41q7-Ld-6XK0fcC0fV9B7QAAAAAAAAAU-TcRbQGxOxYw9x9ta5Q4zwAAAAAAAAAheufT8zCegZUSBK09BAzk9wAAAAAAAAAOlrNuGOqZ1W2gPcoSPK5FRwAAAAAAAACdhdcTMvh3urC-ZcaAAmdtEQAAAAAAAAAUwS1mUKPWrSXa8bILcIpcpAAAAAAAAAAQqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYwzvWQyXT6P841Whzz8TSaAAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFFNGo1JfG2H2fZIcfqeCsfAAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDhfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAE72CeUnC69fX6OTXt_k2BUegAAAAAAAAAN", "types": "CAOjBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qzypMgPc5-kylY6xJuiLOw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbeuIw_I7HzcVMEcOaEL-XEgAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAABdynFllp5CrPbAGyx1JneoOgAAAAAAAAInM9t3sX7Z2Nj1mpARCDGcawAAAAAAAAAIwcw67NCnOLTYutynHBvqowAAAAAAAAA90vYUuo04uCIksGcEjg9Q4AAAAAAAAAACiFkuHlkQPsBsMnUTpjsUKgAAAAAAAAAF0Cdt9wyWxnG2B-xGXMO6owAAAAAAAABpyYF5YWbjTLokor9oKz_A5AAAAAAAAAAN1YwmAWjsK6oD1Qs8m4ZuaQAAAAAAAAAW3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAA5yATvQ7EacG6CR4rzcFaNFEsTQAAAAAAAQGM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMyBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bciyx_9NZlf5osbnTw9ncg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAak0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB7i98a9V97mb3FGgZG6edCFQAAAAAAAAAw_js9oXEovuvcenIstBqeVgAAAAAAAACzNleCed7iD5lY9FUQABqcFQAAAAAAAAAE56J_quP6E7ubMy0oFC4pVgAAAAAAAADG", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1PJ7alh7hduQ9X2Hed5fQg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACXFDHy--PvgHpUWFquuqO7RAAAAAAAAAAE", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "m2ytJBFkfHdhX1fCXv-xiA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAHX_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAA", "types": "CAMxBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9kcejzSJCXOEAAMTuFifhw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAA", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-r8cbHNOP2N9259mbYQNyQ"}} -{"Stacktrace": {"frame": {"ids": "klPbOjidNHRsFecU34u2tQAAAAAAAAmpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGklPbOjidNHRsFecU34u2tQAAAAAAAAlaJD-mlhc2khMaMvypB7uCowAAAAAACvxIJD-mlhc2khMaMvypB7uCowAAAAAACrBZJD-mlhc2khMaMvypB7uCowAAAAAAIVoiGY3kN9FLXVkd_WUycTkKyQAAAAAAAAFGSukveDUyW0FsV0NSBVVfTAAAAAAAAADXvCu9X0uCcaidMKlT-pmTNgAAAAAAAALcJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIXV9JD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAACUFEJD-mlhc2khMaMvypB7uCowAAAAAAINHCJD-mlhc2khMaMvypB7uCowAAAAAAIM6AJD-mlhc2khMaMvypB7uCowAAAAAAIbs4JD-mlhc2khMaMvypB7uCowAAAAAAIaZcJD-mlhc2khMaMvypB7uCowAAAAAAIaLOJD-mlhc2khMaMvypB7uCowAAAAAAIZw4JD-mlhc2khMaMvypB7uCowAAAAAADPP3JD-mlhc2khMaMvypB7uCowAAAAAADOruJD-mlhc2khMaMvypB7uCowAAAAAACuGjJD-mlhc2khMaMvypB7uCowAAAAAADNFHJD-mlhc2khMaMvypB7uCowAAAAAAGyG4JD-mlhc2khMaMvypB7uCowAAAAAADMfaJD-mlhc2khMaMvypB7uCowAAAAAADLg5JD-mlhc2khMaMvypB7uCowAAAAAAIhU2JD-mlhc2khMaMvypB7uCowAAAAAAIKAjJD-mlhc2khMaMvypB7uCowAAAAAACSIdJD-mlhc2khMaMvypB7uCowAAAAAAIhTEJD-mlhc2khMaMvypB7uCowAAAAAAIVoiJD-mlhc2khMaMvypB7uCowAAAAAAIPQmJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAAHoUxJD-mlhc2khMaMvypB7uCowAAAAAAHk2qJD-mlhc2khMaMvypB7uCowAAAAAAG1_IJD-mlhc2khMaMvypB7uCowAAAAAAGzPUJD-mlhc2khMaMvypB7uCowAAAAAAG0yi", "types": "BgMDBh8D"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HAu5rAU21OgIaT7rvuQn1g"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2qOcEvvhuguaGYCmGWrnWRz1QAAAAACg0JEcEvvhuguaGYCmGWrnWRz1QAAAAACguwTcEvvhuguaGYCmGWrnWRz1QAAAAACgePncEvvhuguaGYCmGWrnWRz1QAAAAACXxtMcEvvhuguaGYCmGWrnWRz1QAAAAACXze7cEvvhuguaGYCmGWrnWRz1QAAAAACISblcEvvhuguaGYCmGWrnWRz1QAAAAACEAuq", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bc6HNlC8Sl7niDN9L84HCg"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbzqZ3CKaS4aU08RhYA19y5ITQAAAAADKUQHZ3CKaS4aU08RhYA19y5ITQAAAAADBkjYZ3CKaS4aU08RhYA19y5ITQAAAAAC0W3IZ3CKaS4aU08RhYA19y5ITQAAAAABu38JZ3CKaS4aU08RhYA19y5ITQAAAAABu3-eZ3CKaS4aU08RhYA19y5ITQAAAAABt8-PZ3CKaS4aU08RhYA19y5ITQAAAAABt9RzZ3CKaS4aU08RhYA19y5ITQAAAAABt9pj", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dJyQsD0pMmiwvo0yyQz-Eg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfxrm08oJc5xqpM1VweLZNZwAAAAAAAAEIFyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACAE1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAACS4b6Y6AxjtjqP_pey1p_yKgAAAAAAAAA46himjS-PpAivu9i1Bhv6aAAAAAAAAACVH0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsla3GUxZ_d6TdcMBptiLBKQAAAAAAAAAkuwSrGXrIlilHG9LeAbu8sgAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFO32XyvU5fpn5Sx9ZKKSnYQAAAAAAAAAULEf7xTPa92fa-lrUaMUkPQAAAAAAAAAG5Zs-CGA5xu2AVlc6Ce1rCgAAAAAAAAAM4Li8JminJT1Mx1CXzLpHdAAAAAAAAAABpNhA5PPScB-Dc6ZnkBqX6gAAAAAAAAAA", "types": "CANXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pCi6Bn9hgoUvfDY9KWDh-Q"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADMYfPhlM7fpOuKzX3zIJxLMAAAAAAAAABQaa7Eaxg4z59gzi_LDCDZBAAAAAAAAAAQprbfaPuvU_n-ucbpjQxQ_AAAAAAAAAAj8DgYxzl_EXTxjPKMNwP9uAAAAAAAAABMIfyGrmJO4TRdP2mxshA5zwAAAAAAAADYlSZa8zsk4QhoSwhXWLlSWwAAAAAAAABD7fRblGdKRlNY9QjBlaIJIgAAAAAAAAAR4ExmIEmG5cbeqkrcSlhsEAAAAAAAAAAH12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG7kZxFgbuXnmF5RM9H_z_ggAAAAAAAAAefMXwmZZHoKY5ug0oBlnUxwAAAAAAAAAff15ZZuvJposXWOcmbKQgxAAAAAAAAAAftL230chqNUuroXAS-gtapgAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEKC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlsez", "types": "CAMvBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3H-L6UsF703PU8SR2ZlmEA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJjeo9I8XHop3y7uLb8wdADAN______AVoSM", "types": "FAMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "L2ywo0l6w7YZhxb-9njWcw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8VxXT4fd_WKeR1cE-hlLelCQAAAAAACxC9tXT4fd_WKeR1cE-hlLelCQAAAAAACxE1EXT4fd_WKeR1cE-hlLelCQAAAAAACxJyjXT4fd_WKeR1cE-hlLelCQAAAAAACxE_EXT4fd_WKeR1cE-hlLelCQAAAAAACgaVYXT4fd_WKeR1cE-hlLelCQAAAAAAChwH7", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BuZCvHOLrtMxpNr2RzKFfA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbPcXT4fd_WKeR1cE-hlLelCQAAAAAACkAF4XT4fd_WKeR1cE-hlLelCQAAAAAACkF0HXT4fd_WKeR1cE-hlLelCQAAAAAACkDPLXT4fd_WKeR1cE-hlLelCQAAAAAACkBSkXT4fd_WKeR1cE-hlLelCQAAAAAACj-K-XT4fd_WKeR1cE-hlLelCQAAAAAACj9ZGXT4fd_WKeR1cE-hlLelCQAAAAAACh0GS", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4J0058RPoWpK37V_WzN4IQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApygiinZb-VL-5X6K63nWolQAAAAAAAAAFsPRIu4G_UqOumyaMlOEsUwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAjH-M-AAeStmxxhLg98P43KwAAAAAAAAAs4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEKZ08Ruc2q8aQheuBirtfwwAAAAAAAAAAffH4BrIPq_Gg0Z8uCbD2yQAAAAAAAAAbeaxqIXl3aqTPUyYN_6PKBgAAAAAAAAAOjgFie9OcTMpMeBzHaR2iBgAAAAAAAAAE", "types": "CAMMBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NZjfatQVxHkimbXA3s51kA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5k9cEvvhuguaGYCmGWrnWRz1QAAAAACN4gj", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tdbcrn8vzrvt_4QGjPmE2g"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5k9cEvvhuguaGYCmGWrnWRz1QAAAAACN4k4cEvvhuguaGYCmGWrnWRz1QAAAAACFxch", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "E53CaCO64IW70sjHWzGHVA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAANSF3u75PFaKMThRw4BoUVwCAAAAAAAAAB3JzR1Che7ZkqwAcPrDIhJHQAAAAAAAAA2414vwxwFz0HV2Ku4dzYYowAAAAAAAABUV6fcE1EsjMYG4ctzhztDBgAAAAAAAAAMhicgrP6yr_-9qRDPdRH1UQAAAAAAAAABcuz7PAFLw8DoVVSTVsTZvwAAAAAAAAAExy6LXnpeKuV7b6XhH-kLUgAAAAAAAAAESdUzkeL9_v2VezVxWgWRqAAAAAAAAAAuzNcsGRHhxrtoMbOTGij46QAAAAAAAAAB7IBmDOSH_dR0MHQWs_TXjQAAAAAAAAAUX9lpa9TN84k-aLBSFJ8EgQAAAAAAAAAHgVQfyTUjnDx6YGZ7YyYMDwAAAAAAAAAVGp8pW5B40BblKfSIWk6M6gAAAAAAAACNa38j856FxIPiwroWnutPzgAAAAAAAAAMrRD3IAWNeA4GPRh7roh_BAAAAAAAAACRagZiqOTeFJJvJSEd_bICHwAAAAAAAAAKiit9TEPWxIcbSUSJseypHwAAAAAAAACIvc_2qIuahQ6DM3LWEJ9q5QAAAAAAAACEnQWGdRxvqVjwlLmQWH1PhwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAHs6vQ7EacG6CR4rzcFaNFEsTQAAAAAAATMv", "types": "CAMwBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YytYhoY7fNuX6DzylApjYg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAc", "types": "CAOLBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JbcOgGVzXu_Kl1MHENboNg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ0U", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "N9nJGzNJcPuG6DQBG0MiGw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAak0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB7i98a9V97mb3FGgZG6edCFQAAAAAAAAAw_js9oXEovuvcenIstBqeVgAAAAAAAACzNleCed7iD5lY9FUQABqcFQAAAAAAAAAE56J_quP6E7ubMy0oFC4pVgAAAAAAAACGJmNHPBl7DNTU3iu90SpbRwAAAAAAAAAA", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ilIjnGLprZJBf-XmwKk7UA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcDY6SNDzWiYDmLZi_Z1ZVETLoAAAAAAAvtxjSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt-hLSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWduRSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWdck", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "m6Tpe3Eo4Y_x5AamWL8GLQ"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYr1L9Bd3XIiGWasJdN8trI5tgAAAAAABVqKL9Bd3XIiGWasJdN8trI5tgAAAAAAAfaVL9Bd3XIiGWasJdN8trI5tgAAAAAAAT7m", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Z_XfhBGlE3Xx8UElIIjuaw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfp5", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "m9ekiTsBlnl55IAShmMs6w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnChGc_KlbDChxhbLYz-xpPwAAAAAAAAALOmzVUgwY22EPoqShuZpT1wAAAAAAAAABrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAA", "types": "CAMKBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CAKMNMeNYggEGwOcAHqlpw"}} -{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwAIU6tVKI4mSYDEJ-ABAIpYXcgAAAAAADAxg6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC6gT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC6XuUbK4uezrplMLlSw0h87XfgAAAAAABbI3UbK4uezrplMLlSw0h87XfgAAAAAABa4JUbK4uezrplMLlSw0h87XfgAAAAAABayB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIZj-6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIZhK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "E1Ra9c-heZALvJmUxSmzUw"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHiCEgtQ4kMk_MBWrPUAFqVnYywAAAAADHiVygtQ4kMk_MBWrPUAFqVnYywAAAAADHdlvgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4WlgtQ4kMk_MBWrPUAFqVnYywAAAAACG2NUgtQ4kMk_MBWrPUAFqVnYywAAAAACG2jCgtQ4kMk_MBWrPUAFqVnYywAAAAACG2ppgtQ4kMk_MBWrPUAFqVnYywAAAAACG3SIgtQ4kMk_MBWrPUAFqVnYywAAAAACG2CMgtQ4kMk_MBWrPUAFqVnYywAAAAACGychgtQ4kMk_MBWrPUAFqVnYywAAAAACGp_ugtQ4kMk_MBWrPUAFqVnYywAAAAACLmiLgtQ4kMk_MBWrPUAFqVnYywAAAAACLmQUgtQ4kMk_MBWrPUAFqVnYywAAAAADHisOgtQ4kMk_MBWrPUAFqVnYywAAAAABv8B0gtQ4kMk_MBWrPUAFqVnYywAAAAABrn3m", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4KYdSxEIpyB6jl1rRIzYcA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB6fSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa_9j", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GQY3N3qZRu8haCsdxq571g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFbojlkH6U8-uq6rXJn3yJDAAAAAAAAAAETKPAl4roVc6u9INGFwfp_AAAAAAAAAAM4iaBbZIIwXRBOYMSVscz2wAAAAAAAAADf5pCmW13zl5OWUDLG_ClrwAAAAAAAABNynHqfILVzOOqJs-5yJf4gwAAAAAAAAAeU2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAAAj3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAABdpgYgXi9p5Lr0nll2Tb2V0AAAAAAAAADoEhOR7yPQHXO-jH0oh7-CWQAAAAAAAABKgsKik-dyH5F_XwvFqaDorgAAAAAAAAAhL2oiKrMrNQpik-_fBrO4owAAAAAAAAACtFYEApJ9v6tWs_avp9bcdwAAAAAAAAABChyioBo-0KiAkz_RZsDsgAAAAAAAAAAA", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YjeaaN9Gs9Jtblq8lj7A3g"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAQgtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAH59i-wMdSlFTE9FP7ALC-fwAAAAAAAABPJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAHX_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAgAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HU4NPEh9jq0KD6Ucbp_cWw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP_VI", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "V-CMkHxQqgsYZTwaLT0AEQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAC0XP_Z3CKaS4aU08RhYA19y5ITQAAAAADBlVKZ3CKaS4aU08RhYA19y5ITQAAAAADAqPIZ3CKaS4aU08RhYA19y5ITQAAAAAC12lw", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AnUv3QN_2ZayAg10mwHHFg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7-XT4fd_WKeR1cE-hlLelCQAAAAAAC-pHvXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi8Sq", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3MSb55knyBJ7ClwjPXRNwQ"}} -{"Stacktrace": {"frame": {"ids": "R_3RsDYccfUxjNYYah3JZgAAAAAAEhYe-IlGUwajicqSE5-hS5VYigAAAAAAAHbaSZxl-YF9wOaedogsBMtvRAAAAAAAGQAGSZxl-YF9wOaedogsBMtvRAAAAAAAGQBRSZxl-YF9wOaedogsBMtvRAAAAAAAD9N_SZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAADz6pSZxl-YF9wOaedogsBMtvRAAAAAAAFP4DSZxl-YF9wOaedogsBMtvRAAAAAAAFQBcR_3RsDYccfUxjNYYah3JZgAAAAAAB_ajR_3RsDYccfUxjNYYah3JZgAAAAAACK-IR_3RsDYccfUxjNYYah3JZgAAAAAAEQHG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "KQMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XkN81O9rpvZ7Hq2p_bCXWw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxk0cEvvhuguaGYCmGWrnWRz1QAAAAACEPiV", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JHzvVskHWYcoFwQr_Ta92A"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgJxz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFlg0z5k14PsCcDvFyUC1kmlV3QAAAAABFls-", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UjSnJkMJp-ScD3GTE7GQCw"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABgzj8z5k14PsCcDvFyUC1kmlV3QAAAAACFH_-z5k14PsCcDvFyUC1kmlV3QAAAAABhYaHz5k14PsCcDvFyUC1kmlV3QAAAAABmRWHz5k14PsCcDvFyUC1kmlV3QAAAAABmMwQz5k14PsCcDvFyUC1kmlV3QAAAAABmP_4z5k14PsCcDvFyUC1kmlV3QAAAAABmP5wz5k14PsCcDvFyUC1kmlV3QAAAAABSO2cz5k14PsCcDvFyUC1kmlV3QAAAAABSOAgz5k14PsCcDvFyUC1kmlV3QAAAAABSWD5z5k14PsCcDvFyUC1kmlV3QAAAAABRyDZz5k14PsCcDvFyUC1kmlV3QAAAAABSmpsz5k14PsCcDvFyUC1kmlV3QAAAAABSP7-z5k14PsCcDvFyUC1kmlV3QAAAAABRsCfz5k14PsCcDvFyUC1kmlV3QAAAAABSpfPz5k14PsCcDvFyUC1kmlV3QAAAAABLz6Nz5k14PsCcDvFyUC1kmlV3QAAAAABNcjaz5k14PsCcDvFyUC1kmlV3QAAAAABNeZN", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PVlyLKXyb8x0uLNYAPexSA"}} -{"Stacktrace": {"frame": {"ids": "klPbOjidNHRsFecU34u2tQAAAAAAAAmpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGklPbOjidNHRsFecU34u2tQAAAAAAAAlaJD-mlhc2khMaMvypB7uCowAAAAAACvxIJD-mlhc2khMaMvypB7uCowAAAAAACrBZJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIXV9JD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAADPP3JD-mlhc2khMaMvypB7uCowAAAAAADOruJD-mlhc2khMaMvypB7uCowAAAAAACuGjJD-mlhc2khMaMvypB7uCowAAAAAADNFHJD-mlhc2khMaMvypB7uCowAAAAAAGyG4JD-mlhc2khMaMvypB7uCowAAAAAADMfaJD-mlhc2khMaMvypB7uCowAAAAAADLg5JD-mlhc2khMaMvypB7uCowAAAAAAIhTEJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAADPP3JD-mlhc2khMaMvypB7uCowAAAAAADOruJD-mlhc2khMaMvypB7uCowAAAAAACuGjJD-mlhc2khMaMvypB7uCowAAAAAADNFHJD-mlhc2khMaMvypB7uCowAAAAAAGyG4JD-mlhc2khMaMvypB7uCowAAAAAADMfaJD-mlhc2khMaMvypB7uCowAAAAAADLg5JD-mlhc2khMaMvypB7uCowAAAAAAIhTEJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNLbtJPgD2DsxuaRUZZI3jKQAAAAAAAAG19OSIwt7_UxT7zZoUvqu4WwAAAAAAAAAvGECkj5EzwizbnHTSy11lwAAAAAAAAACsIWCarP2Cg-zGilSmP2FwvAAAAAAAAAAxPF46WYS52oqKW28TVdZwhwAAAAAAAABl4SjPzL5sRJ4NoaPppbKRXQAAAAAAAAAyzV-zz_SMeRtFDojkROWSSwAAAAAAAACIZtRK4uMy_Wfw-N_iQmSerQAAAAAAAAA1qtNW2Hg_2f_0M1iSBcGbyAAAAAAAAAAVoGmEXpJvjzbRv2r-bFFlfwAAAAAAAAA7EI5wLwdv0nxJGTj51HGsnwAAAAAAAABpqs9QVbSai1fV6zxJyggieQAAAAAAAABfBUIjEExV8zypjFmSEDklUAAAAAAAAAA8WVw4-tNMtcGbe_AUExiiqwAAAAAAAAFTgO6kDS9N3EuxPdxaJ2XycwAAAAAAAAICRAiSaKhtr8sKQyEQrLjoKAAAAAAAAAJCfQmBDS59foxFPsSMJZb9xQAAAAAAAAE_FZMomjWJJ0nF52fd5MCJjwAAAAAAAAAbcNfqzNIuM2moCdDAPZaMPwAAAAAAAAGhwnDqzjdjMz5CchEHZ6EsYQAAAAAAAACtuos5blq03yBGQs7NU0gUPAAAAAAAAAAcWJOADfwpHxtseudP4RVyOQAAAAAAAAIBCBHuHFEZWQ-fJ4IkYrsh7gAAAAAAAAB2mBpiFuvmv7Bhv5yWRlHpOwAAAAAAAACGxOuzl7cRmBw0-tjVF12FGAAAAAAAAAH6E__m11jwVVwOsNYG95RSxgAAAAAAAAIJHDtxjNJh5HryAaa7uCACXgAAAAAAAAILZUr3dhHUtWV20cKiiRwRTAAAAAAAAACI46OBP4AiIuvPByLPCVNeuQAAAAAAAAFIJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAADPP3JD-mlhc2khMaMvypB7uCowAAAAAADOruJD-mlhc2khMaMvypB7uCowAAAAAACuGjJD-mlhc2khMaMvypB7uCowAAAAAADNFHJD-mlhc2khMaMvypB7uCowAAAAAAGyG4JD-mlhc2khMaMvypB7uCowAAAAAADMfaJD-mlhc2khMaMvypB7uCowAAAAAADLg5JD-mlhc2khMaMvypB7uCowAAAAAAIhTEJD-mlhc2khMaMvypB7uCowAAAAAAIVoiULOVjhd5u9ORCGzZdeAHEQAAAAAAAAFKZUr3dhHUtWV20cKiiRwRTAAAAAAAAACI46OBP4AiIuvPByLPCVNeuQAAAAAAAAFIULOVjhd5u9ORCGzZdeAHEQAAAAAAAAFKZUr3dhHUtWV20cKiiRwRTAAAAAAAAACIWZkYii9iyVkeBe2z6gMragAAAAAAAAFfxf5Rtge3j9bwcFOKpX5KywAAAAAAAAFnJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAAA1NrJD-mlhc2khMaMvypB7uCowAAAAAAIg7EJD-mlhc2khMaMvypB7uCowAAAAAAIVoihRAq7thJYnzPQjHjUPFm_gAAAAAAAAFnJD-mlhc2khMaMvypB7uCowAAAAAAIPQmJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIC7o", "types": "BgMKBg0DCgYMAycGDAMHBgYDAQYDAw"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5BdZpdZPV1aCql-5O4HKoA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAD7Kufl841KLBEdWpuT5bLXSwAAAAAAAAAORuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAqFV6xhVekP5-uToPI32ragAAAAAA7PGLqFV6xhVekP5-uToPI32ragAAAAAAxoGftQgAmBJBgPLrkikSPRsmtgAAAAAAAL3h6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "CAMFBQMDAgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "k1TJV5J17869y08LRTIrbw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR1TSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa_9U", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "b782ua3hr4B0mzdz6X7qIA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_HL6OuA5BriS2w42aq9WRNQAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAcpSIXlNYnJYwCILAJFTEzSwAAAAAAAAAGTyuf4RNGIxt-ueaCsLj22AAAAAAAAAAXvSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0qlujNL7db72ZwWHkSPq1iAAAAAAAAAAa8tJujVK0pdTWlucWIQYskAAAAAAAAADWSXFZShc93P7Br4wzVi_TSwAAAAAAAABGl8by2NZ7WjCFmKmn5LkVDAAAAAAAAABNJj6ja2Wbkf1_R1a9nVWcUAAAAAAAAAEpAIW-lPQXo1TdAE_hNw_PqQAAAAAAAAAEaDG3558gasz8z0RSX2ge7QAAAAAAAAAEHJqIGeZuYXQ1QAO7hC-CpgAAAAAAAAAwz3OVwE39ldWnCO3e3J2ChQAAAAAAAAAXvNIlRmFlIZi4eEeFbJkdJgAAAAAAAAA1LtwWMtOCVYMwVl8TS_MduQAAAAAAAAAIPxKXTV4MDkHtmEvOc2iKdAAAAAAAAAAFOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAABJWFBxAERZNClfuNDueoaytgAAAAAAAAAGFw4N_DGYxmWJY3G6VlrCLwAAAAAAAAAG", "types": "CANMBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SRve3dTLPRl1qAhVYZQKgw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--hXXT4fd_WKeR1cE-hlLelCQAAAAAAC-9YXXT4fd_WKeR1cE-hlLelCQAAAAAAC-i2cXT4fd_WKeR1cE-hlLelCQAAAAAAC-iiEXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FAMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xQ24QHkRlAYtTjdJ6daIzA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAA5cYiYZLNw79YI2sv5ZzfISgAAAAAAAABnsd1-fzhWHGpZk5BbNZ95mAAAAAAAAAERuV9VJttm0goUzsky7YZbIwAAAAAAAACLXoncVs_RZ0C2CaElSEtZqgAAAAAAAAAV_jOWl9rQ0a9rjiw4HiJl9AAAAAAAAAB6syvMOGxiS-YYNSrwBRgBYwAAAAAAAABa", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "o0urJMnM1NXJ1Ig4b1nz4w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAGyVtVXhl6s6URamlTOMTdcGgAAAAAAAADmmuP6clMnO_x87qmA5qXiUwAAAAAAAAAEV9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAhENx9tYcf3nwb1xixCRhg9QAAAAAAAACeY_qFQxT1b6IwL0Y-bhoIvAAAAAAAAAAEV9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAh9_kYMkAwrJL1hFiE7tTalwAAAAAAAABLY_qFQxT1b6IwL0Y-bhoIvAAAAAAAAAAEV9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAhK1f6nnp5He4VLr7usCCM7gAAAAAAAAABjJ1ozPLEubzrPTK_HIIAngAAAAAAAAAEtiFd8nRg2cPSJT6QKmttjQAAAAAAAAAaJlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2SbdWgpvL6xLkDpUt_yoH7QAAAAAAAAAEKFGBFnajTppUPwKMAfWXvQAAAAAAAAAXeFaXX7H_gmfoLAN8WX-xDQAAAAAAAACOcqdSAx5Uej3ncVA_SUVjsQAAAAAAAAAMPrNII2l46oclr0RXWTYMUAAAAAAAAAAE93KKtPDSfPMvEhxj9OzJ1gAAAAAAAAAHsWCnrMF0Arlnv58qX-TThwAAAAAAAAAB7mqPc5ch4cFcQJn3b5WHKQAAAAAAAAAFIY3kOFBxddrJzoZrzargTAAAAAAAAAAAMP5HRDaDTxfL7AK376UJ7gAAAAAAAXffvQ7EacG6CR4rzcFaNFEsTQAAAAAAATRb", "types": "CAOXBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hkSlK3ySEaiDEWQMnnd57g"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw2HtXT4fd_WKeR1cE-hlLelCQAAAAAACw1EEXT4fd_WKeR1cE-hlLelCQAAAAAACkHGIXT4fd_WKeR1cE-hlLelCQAAAAAACkMo1XT4fd_WKeR1cE-hlLelCQAAAAAACkMZ4XT4fd_WKeR1cE-hlLelCQAAAAAACkHP8XT4fd_WKeR1cE-hlLelCQAAAAAACkHMYXT4fd_WKeR1cE-hlLelCQAAAAAACkHpEXT4fd_WKeR1cE-hlLelCQAAAAAACkHkkXT4fd_WKeR1cE-hlLelCQAAAAAACiorZXT4fd_WKeR1cE-hlLelCQAAAAAACkG59", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CL5weeVaATD-2rEA3Y4f8Q"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAfBsVYsnZ_Lwaqr0cHEPo0D185QAAAAAAfBixYsnZ_Lwaqr0cHEPo0D185QAAAAAAes7RYsnZ_Lwaqr0cHEPo0D185QAAAAAAesm5", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jQg_3Bmo6e2S1O85p_SEZA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABBFSYxe-SHgukLEpCkawSk1QWAAAAAAAA_b6Yxe-SHgukLEpCkawSk1QWAAAAAAAA8lx", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hjl6WiVIjOxuK6ZdXf6w-Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZyB", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "S-j_I9z7LfR6_TFzt2st2w"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHsJJgtQ4kMk_MBWrPUAFqVnYywAAAAADHsO9gtQ4kMk_MBWrPUAFqVnYywAAAAADIfVLgtQ4kMk_MBWrPUAFqVnYywAAAAADHaXcgtQ4kMk_MBWrPUAFqVnYywAAAAADHZQlgtQ4kMk_MBWrPUAFqVnYywAAAAABrN3ngtQ4kMk_MBWrPUAFqVnYywAAAAABrNv3", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uTJCeaCRI3Z-859bdSx3XQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmmJ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5RtcWDMSyG5oMUK9N5k8yg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5obcEvvhuguaGYCmGWrnWRz1QAAAAACN4dLcEvvhuguaGYCmGWrnWRz1QAAAAACFwvGcEvvhuguaGYCmGWrnWRz1QAAAAACFwrJ", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Tvv0GKho3Y3Jvs5JVJ4HCA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAABbw1YwyK3qUUqndS_KOv4yZgAAAAAAAAAM9hAOHgmwWWwZTwO4K132QgAAAAAAAAAevtOmTuUGvKYiQRK_O9kHuwAAAAAAAABF", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wl491oxaYlbc9Z3W8DsZgQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB87nEz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHphgz5k14PsCcDvFyUC1kmlV3QAAAAABG-csz5k14PsCcDvFyUC1kmlV3QAAAAABHCmp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjbU6tVKI4mSYDEJ-ABAIpYXcgAAAAAALip-6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUXri", "types": "BwMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8bW6TIEkYi2BgDqcPdhRTw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAEKGqShcrW-d9_GDzTagKIU9QAAAAAAAAAG_h880XQOq8mngzMZR-nPlwAAAAAAAABR9iEsaZI76W1WejkwhmTFwQAAAAAAAAAHC64NVLkkZ7RW349y9srs0gAAAAAAAAAEH7o77ANtSaWU3Ypp865GJwAAAAAAAABW_93WPbrUDW14kcLWmrpKPQAAAAAAAAAG12nEeMsH00wjguIyHXaYDwAAAAAAAAAEHRnmOObX7UEhjneXDGbG8gAAAAAAAAAM3YIfAGaCMYqtVFhpvZ-uyAAAAAAAAAABzKHS4hsJddCCPPI3lqHKuAAAAAAAAAAF__e_ReExoac--V-RQeNXewAAAAAAAAAHqnkrTiN5YCts6ND7O0BX2QAAAAAAAAAPHRnmOObX7UEhjneXDGbG8gAAAAAAAAAM_DDQPZMS5NnUuioWsVqoPgAAAAAAAAAF3QWEH8eApmH_ruugOKv76AAAAAAAAAAHshNXixs-94AywpTuAMqgvAAAAAAAAAAK5m5J32z338iItYAy0IlfPgAAAAAAAAAoL8R2W0h5kIRkmSOynN7f9AAAAAAAAAABqsOdwnOfdpGhy1Ny492aAwAAAAAAAAAGbfWTJUKYANwcIsCQIfxvLQAAAAAAAAAC1rHoPMq-mpf_DwJrvHqYAwAAAAAAAACKpaeptaXHRDYD67F7ORC0twAAAAAAAAAnmxrYYrG64FXkauTRv-4b5QAAAAAAAAABZBmcQL98TXLA7smZymDadQAAAAAAAAAiCSBR8000mbn4kRcknKz6FgAAAAAAAAABNmbHbA3eVfi3WhtJhVBi0wAAAAAAAAAC0x-UDWXgJuxMxIbzLxwzzQAAAAAAAAAEWBKrGzwz7SG6nZHQCew75AAAAAAAAAAERpSDTug63es5x1j9yGrZyAAAAAAAAAATzyYGVRP_YB-nnwhjpkxemgAAAAAAAAAFxo8H4Xbu1dhktweO39ARgAAAAAAAAABJa9xJ5FQfUEQO7I4aLnTqGgAAAAAAAAAG", "types": "CAM-BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7755LNVrLbBmdM_Bp6XCxQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVk0sJGEkyt_qFuQLjQ6-EOwAAAAAAAAAEdymPrMwSHJkE00arRNB68AAAAAAAAAAUu_5zCMK3PLNUfmu5e0wjpgAAAAAAAAB2jEQ_q3Cc24efLRNP0zlOcwAAAAAAAAAMrko_YbcnDiBZxFuLrPp4EQAAAAAAAAAtfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJYIk8zteZ8V2tJoAxEqPWxQAAAAAAAAAcj_szotBjFArpC5TNR-8gUQAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASPc_BexFq94TuMog9IsXVUwAAAAAAAAAFSZAt-g5Y9rkRhquz_kA7tQAAAAAAAAAg_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANg3zp3_FmxVdkBvQvIgZyaAAAAAAAAAAGuw-oCIEIHpuum1GbbDFxlAAAAAAAAAALGik95pZoMK4gpk3Bg_qiegAAAAAAAAAfRwlmBsYzd8_j6zlabj1GBwAAAAAAAAHt86qquxKKoeIW8IO4fsfrQAAAAAAAAAApVy0sHqjgzne7ZEdvWNqQJgAAAAAAAAC9RRNTWis_73RpiEYdz0TaKgAAAAAAAAAEsoDH8bd2wWpLm2BftvmAngAAAAAAAAABPNgkS6gFWkrg6dMJKBlaswAAAAAAAAAE", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eyk6myVZ88WlljRICe8V4A"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACOVgImNB_AseUMjfw9acwHDgAAAAAAAAE3LL2AmHorGMGLHFvQ3KWNRAAAAAAAAAAw0tMMU1TF6u7gDtnl45AtDQAAAAAAAAAf", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cyFXzJO3EyfOUXZc5VIG_A"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAACFVesl-TqkdasS6qMPfjcnngAAAAAAAABVr69bqYctcqbyJiTyvmojFAAAAAAAAAAJVoQ5AJHHG4Z_KZgZidNsZQAAAAAAAAAC3QM5OJWdXJOtFw8erEL5XwAAAAAAAAAN87egngtXFm0bIUCnQcIALwAAAAAAAAAHDNMSP4UcXImUndf71pg8FQAAAAAAAABh3J9sxS-e4x4-VIIgWjujUAAAAAAAAACqk9qlBuUUuQaRGtKxyO_pagAAAAAAAAAEF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdvCYukS89lPAo0Tgs1462rgAAAAAAAAAIQF0gmeIjjmTZUhdMFgr_4AAAAAAAAAAFSZIzrSBBPBO2zJj0aqaKggAAAAAAAAEvKtm-nkDOWkX2ccJBYdY19QAAAAAAAAA_IBvpxzq2FCdpwwaru_ISGwAAAAAAAAAOdy9m8b1oF2u3h9LUXHjYIAAAAAAAAAAKVOTAjRbOztte8sAj2_6YtwAAAAAAAAA4EVcmFq_4edpopY2aEzriOwAAAAAAAAAC4pSviAR1XzzZ-pI5X9ouxwAAAAAAAADx1XRKT-mIPqTEPPQJ1OQKUwAAAAAAAAAJK32j1k5JJMGDXqIHMqy_DQAAAAAAAAALY3NOAgXgXC4eoDwKLaDAiAAAAAAAAAAA", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XHyQmv623xT6Vtggew3Wqg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF353Bbxw0b5wHlGJY1WEVWAAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4bWZWPptWisqbpRDA9X8cNgAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADv9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABDHfFlM3axnhO28EteQn-2WAAAAAAAAABJ5utt2dQ8HKrTepHdNpprxQAAAAAAAAFzUP7wzdQXo1Tc_iFi4DuZQQAAAAAAAAAE9ZOKtWsgasz8zygdckTZDQAAAAAAAAAEEVcCXOQnkebnZR5Z6XcBvAAAAAAAAAA0SLm5iQaRU0eNqFhBMIrYxgAAAAAAAAAXvOoArOQsiI-woapVIk9zYgAAAAAAAAA1NnsXqH-CVYMwVp_zbU78aQAAAAAAAAAIQunNj1oMDkHtmA3AacNPUAAAAAAAAAAFx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAOPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMzzqjB_amR59Lv13Nhle_NwbwAAAAAAENS6", "types": "CANNBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bV7P2mLAotscMMHsjhqrPA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-uTvXT4fd_WKeR1cE-hlLelCQAAAAAAC-w8sXT4fd_WKeR1cE-hlLelCQAAAAAACkR-sXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUEJ", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "o5XCCyw1sj3cwxEJr3r3pw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYr-lBlGU-IcWILqVWjgb-BgAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAH8Tc4heOqvkkU3j8yuc3AAQAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABLvJncLgOnYwpWuDnTLvtywAAAAAAAAAIqJLvg5a2zeGb6EcYZpSyBAAAAAAAAAACB045cMDWxd0Mcqn40XkfOwAAAAAAAACtiBJkiXL4jbMXTevP0sFGowAAAAAAAAB3orI6G4EZluDZPfJ37iPzggAAAAAAAAAX-ZUigVp6H-HqH1lR0smw4gAAAAAAAADmJw6J8qgr1pYHKUa0xZ1MdwAAAAAAAABZlZTvs585vMzXjn3UHln0NQAAAAAAAAGiLMhs_MdxnqcQW9tN9tUCJAAAAAAAAADeXjyaLTQPNDwnxeTIUaoLqAAAAAAAAAA9LZh34Qe9WZt7ydt6m_9sHgAAAAAAAAAxUX0maaM_jFdAmFMbhLpaSgAAAAAAAAANVydXcSmOqICsVxLpiPFyCAAAAAAAAAAhxWXbvqcob2cyNB-_TJKbYQAAAAAAAABZBvE20tx_aKDX9k1QBsUKsgAAAAAAAAAY1LCxlgD3_e4Ym8K1UlEBRQAAAAAAAAAFawaK319bKiHtaKZV9KHt9QAAAAAAAAAXKP7ul0MvWr6g2vIy7Z-XSgAAAAAAAAAa-esrZcmh9SBGSSEFHAV1fQAAAAAAAABxLShh-9O-ab8ob4gfeH5zhQAAAAAAAAAfN1PQDu1Ay8cMXPJ8jF7fCAAAAAAAAAD6-pQ7u4Ee6imT9PbqfC5keAAAAAAAAACI2OWtsBQW6DA4kXJxcJcc7QAAAAAAAAAHjXA44eQDJB4STkgNORi52AAAAAAAAAAHjXA44eQDJB4STkgNORi52AAAAAAAAAAHQ-0CdzIUPjuUjymJjdFwdwAAAAAAAAAFjXA44eQDJB4STkgNORi52AAAAAAAAAAHJtZWm99a_rUaGtgjeQwOcQAAAAAAAAA-5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3Ge0L0SwsSbyUWsXqVMbKswAAAAAAAAAGDXStuM9FGoRVIzn6iyb_SQAAAAAAAABmLO0kqCJ5sLnPx_SwGJYFEQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMTbeJ7BYIhIN72fM2Cz8k8m9QAAAAAAASDW", "types": "CAMvBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-y7rTRuLTj8cfBQbfYKy2Q"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnfNTDCm_3eVgEHous9evUWgAAAAAAAAAUFfM3fVYqFhj_g4shLOoSnQAAAAAAAAHo4lmHgkrzdreyo27aTsC9aAAAAAAAAAATOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5fTMNPZsSlOmaDklO1sfuAAAAAAAAAL5qdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYwzvWQyXT6P841Whzz8TSaAAAAAAAAAAyX6JlWwBbDvZZ7rFp8ffgSAAAAAAAAAAFK24S1jUATvUFIEv3zAUZHgAAAAAAAAFQQTk6i4kGz-zDlc1CgyBszAAAAAAAAAAubFnDceRyUrwrxpx2LB-2swAAAAAAAABsy3V4Wh9j61CfcWNgvt1uPgAAAAAAAABzXcCMywL5s8Msv7wl9SHdqgAAAAAAAAAc8g3sLjFnKCF_JJchxYP5DAAAAAAAAAAN0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAd5e20AsvoCctGya4WV0ZQuwAAAAAAAAAYN1xfNXt_cEW2sMA8rTIs2gAAAAAAAABUcQQ34bxUXEh5yMbxZRcv5AAAAAAAAAAcyr4X--AwYxsbC6m4-WPbMwAAAAAAAAAWwbaLv8BbexWnwmBDRi5IZgAAAAAAAAASSzjWJDfxYDkJ2hpV8INQHgAAAAAAAAAZvYLK8EfczhpoVt2UKE9CowAAAAAAAAAi", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fHrd9ZU73jKyeFVMnONXJw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAADvI10upgJihUkX5rBuiOc-YwAAAAAAAAAJCrZ1GQcrb97wGV5HmcUlJQAAAAAAAAAFbgWToCzheWak78gv4TQ_CgAAAAAAAAA9", "types": "CAM0BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mUkt5tksckG11QdtV8P-sg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADHmXqXT4fd_WKeR1cE-hlLelCQAAAAAADHmkkXT4fd_WKeR1cE-hlLelCQAAAAAADHm4cXT4fd_WKeR1cE-hlLelCQAAAAAADB6QhXT4fd_WKeR1cE-hlLelCQAAAAAADQm1kXT4fd_WKeR1cE-hlLelCQAAAAAADQnNrXT4fd_WKeR1cE-hlLelCQAAAAAADQjwNXT4fd_WKeR1cE-hlLelCQAAAAAADQjKNXT4fd_WKeR1cE-hlLelCQAAAAAADQjfDXT4fd_WKeR1cE-hlLelCQAAAAAADQiL2XT4fd_WKeR1cE-hlLelCQAAAAAADQiHkXT4fd_WKeR1cE-hlLelCQAAAAAADQTr-XT4fd_WKeR1cE-hlLelCQAAAAAADQTpnXT4fd_WKeR1cE-hlLelCQAAAAAADQTFHXT4fd_WKeR1cE-hlLelCQAAAAAACgUmmXT4fd_WKeR1cE-hlLelCQAAAAAACgUVuXT4fd_WKeR1cE-hlLelCQAAAAAAChz7b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_NQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaQ66tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZnU6tVKI4mSYDEJ-ABAIpYXcgAAAAAALAzx6tVKI4mSYDEJ-ABAIpYXcgAAAAAALAuj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAK6uI", "types": "EgMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8O4Oo3VCILgT6pGMxLQiaA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB81EOz5k14PsCcDvFyUC1kmlV3QAAAAAB81XIz5k14PsCcDvFyUC1kmlV3QAAAAABGP0wz5k14PsCcDvFyUC1kmlV3QAAAAABFQv9", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IsqdVnLNhl2x75Zl1gQDqw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbY0Yxe-SHgukLEpCkawSk1QWAAAAAAAFznNYxe-SHgukLEpCkawSk1QWAAAAAAAFzx5Yxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHafM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrkG", "types": "CwMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GD_7fNw_aMjvomJCJdhcmQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAAADWLRYt6jYSNQJwcK07eg4FQAAAAAAAAA0E8Eu4dk0m0vh1V_xwkOZ2AAAAAAAAAAEabF625vSd3aYC1EQK4HCawAAAAAAAAAA", "types": "CAM5BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kaySmFbhcfXoELn4EdRoeA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF88yz5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF780z5k14PsCcDvFyUC1kmlV3QAAAAABF64Dz5k14PsCcDvFyUC1kmlV3QAAAAABFPj6", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "02VDgFkdOKpFXV3fa5Mfsg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAW-esrZcmh9SBGSSEFHAV1fQAAAAAAAABxLShh-9O-ab8ob4gfeH5zhQAAAAAAAAAfN1PQDu1Ay8cMXPJ8jF7fCAAAAAAAAAD6-pQ7u4Ee6imT9PbqfC5keAAAAAAAAABK2OWtsBQW6DA4kXJxcJcc7QAAAAAAAAAHjXA44eQDJB4STkgNORi52AAAAAAAAAAHjXA44eQDJB4STkgNORi52AAAAAAAAAAHjXA44eQDJB4STkgNORi52AAAAAAAAAAHQ-0CdzIUPjuUjymJjdFwdwAAAAAAAAAFjXA44eQDJB4STkgNORi52AAAAAAAAAAHJtZWm99a_rUaGtgjeQwOcQAAAAAAAAA-5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3R8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAANJa8NlMClggx8jaziUTJXlmWAAAAAAAATrU", "types": "CAMdBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NnEd2rdWIzQh3lzvczhnrg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmrvXT4fd_WKeR1cE-hlLelCQAAAAAACgbrN", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5c1QuSeaLbMocVTvYRIwcA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPkzPBPi0X-wl-PUEBtNL3SQAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIHT1vQdc0XC0RoSXqyJlYhgAAAAAAAAALpYJXWbdqO_EwCki56aMNwwAAAAAAAAFUuPKuf0aWep_nE1tiBQO-1gAAAAAAAAAJJd5oafTchAbMQyIPlk82tgAAAAAAAABuOQPUK8Hf6q8Ps2puP24YPgAAAAAAAAAB7dD5p3Ho0u0ej68WdAREGgAAAAAAAAABWRCEJYby4Xn_9pTh74c14gAAAAAAAAABhUPoNBA6kXjhPYaRSr0adwAAAAAAAAABAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "I5V2d7T-ngpDaQd5S4eJBA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAacSS", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "M-2CQZEnf6BMvQazkJUZsw"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbrkZ3CKaS4aU08RhYA19y5ITQAAAAABtbze", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "X4UPDmSUe7qQGbfeloDUvA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgb9rcEvvhuguaGYCmGWrnWRz1QAAAAADgcaEcEvvhuguaGYCmGWrnWRz1QAAAAADgcoOcEvvhuguaGYCmGWrnWRz1QAAAAAChhtkcEvvhuguaGYCmGWrnWRz1QAAAAACKFxtcEvvhuguaGYCmGWrnWRz1QAAAAACKGJ9", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uoJuSy3Naz5PMjayntwpXg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABg1Usz5k14PsCcDvFyUC1kmlV3QAAAAACFH_-z5k14PsCcDvFyUC1kmlV3QAAAAABhZDXz5k14PsCcDvFyUC1kmlV3QAAAAABmR0Xz5k14PsCcDvFyUC1kmlV3QAAAAABmO_vz5k14PsCcDvFyUC1kmlV3QAAAAACD8rhz5k14PsCcDvFyUC1kmlV3QAAAAABk7ULz5k14PsCcDvFyUC1kmlV3QAAAAABSMn2z5k14PsCcDvFyUC1kmlV3QAAAAABSBnHz5k14PsCcDvFyUC1kmlV3QAAAAABPAZQz5k14PsCcDvFyUC1kmlV3QAAAAABO_fB", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9oafXxRRgws5bQkcIU2Q0w"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAAAbFB2lbICPeg4uVJ_bp0LkUgAAAAAAAAAZEs-JdNswBBYy0dgOuoAxgQAAAAAAAAAENMPX1MdtzuRZ2k27VY7qAQAAAAAAAAA65XwPSHlCFfN_R3hNCEsGggAAAAAAAAArId-ripUWhn1V9drGRfOjGQAAAAAAAAAA", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xAB5rWSdYiNfzgIdJBEyIQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjXzz5k14PsCcDvFyUC1kmlV3QAAAAABGOGMz5k14PsCcDvFyUC1kmlV3QAAAAABF9OVz5k14PsCcDvFyUC1kmlV3QAAAAABF9E6z5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF780z5k14PsCcDvFyUC1kmlV3QAAAAABF64Dz5k14PsCcDvFyUC1kmlV3QAAAAABFPjyz5k14PsCcDvFyUC1kmlV3QAAAAABFxi1z5k14PsCcDvFyUC1kmlV3QAAAAABGnUj", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NYCnn7inzK2gAPHma58uQA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAAA_rYYxe-SHgukLEpCkawSk1QWAAAAAAABAaRYxe-SHgukLEpCkawSk1QWAAAAAAABHocYxe-SHgukLEpCkawSk1QWAAAAAAABHjEYxe-SHgukLEpCkawSk1QWAAAAAAABHjEYxe-SHgukLEpCkawSk1QWAAAAAAABqcc6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "CQMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_Gg373ZQ4MQ2jkh8DEBd7Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o6kXT4fd_WKeR1cE-hlLelCQAAAAAAC-pEOXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VjM0wOnf3jCPBA8dcfHmfA"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXEEgtQ4kMk_MBWrPUAFqVnYywAAAAABqaCzgtQ4kMk_MBWrPUAFqVnYywAAAAABqage", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "D4jMgEWnva8oEa4cv5QFeQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAAAPX6JlWwBbDvZZ7rFp8ffgSAAAAAAAAAAFK24S1jUATvUFIEv3zAUZHgAAAAAAAAFQQTk6i4kGz-zDlc1CgyBszAAAAAAAAAAubFnDceRyUrwrxpx2LB-2swAAAAAAAABsy3V4Wh9j61CfcWNgvt1uPgAAAAAAAABzXcCMywL5s8Msv7wl9SHdqgAAAAAAAAAc8g3sLjFnKCF_JJchxYP5DAAAAAAAAAAN0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAd5e20AsvoCctGya4WV0ZQuwAAAAAAAAAYN1xfNXt_cEW2sMA8rTIs2gAAAAAAAABUcQQ34bxUXEh5yMbxZRcv5AAAAAAAAAAcyr4X--AwYxsbC6m4-WPbMwAAAAAAAAC-MKz9_e5XeNRnH7oZOIvo8wAAAAAAAAAGYzuyZtq5JqKuzKWHMEIfSwAAAAAAAAAKrjxo1s0lXgdLM5jX2lBu3QAAAAAAAAAQ", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ai5oW8uVA4tEGajwsXvwJg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABF0kYxe-SHgukLEpCkawSk1QWAAAAAAABF7IYxe-SHgukLEpCkawSk1QWAAAAAAABGF-Yxe-SHgukLEpCkawSk1QWAAAAAAAA1GkYxe-SHgukLEpCkawSk1QWAAAAAAABqfG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "CAMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AjN_kWkUNJ8KmZKfGtKOWA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF_IhPXrChwahxbJ63NZZANQAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4rDcHLjUrpvKg-XXDfFGKmAAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADv9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABDHfFlM3axnhO28EteQn-2WAAAAAAAAABJ5utt2dQ8HKrTepHdNpprxQAAAAAAAADL6XNnO9SeJ40ZM7baZ84oEgAAAAAAAABVLll_E1k3FfR43EQBXwU1dgAAAAAAAAAIrywk-6b8WKiuckZ62dxSSwAAAAAAAAAHiX3hg20o3ZB-dQ1wA5bFxgAAAAAAAAAEomA88yQfT91566xoyEY7sAAAAAAAAAAcrrWuYAakx0mSDLYXP-NBMgAAAAAAAAABK-xWzbOpXq--Qycbjj-mDwAAAAAAAAA3L1OydAndq8IT7nNSF3yNbAAAAAAAAAAkewU9RfzsPed7JATT94aw-wAAAAAAAAApfZ3COijH60wdDIIVUpSInQAAAAAAAAAIx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlseV", "types": "CANSBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kJzVoueJRM62h7Ahq8M6SA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw1x4XT4fd_WKeR1cE-hlLelCQAAAAAACwXETXT4fd_WKeR1cE-hlLelCQAAAAAACipi9XT4fd_WKeR1cE-hlLelCQAAAAAACipFEXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJje6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIjG", "types": "FAMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-7orDytvaM4kAysEKbhD_g"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAAt7GPptfUGH-1Hs-IBSvWbWwAAAAAAAABrVJPzmLqKchEMtC2t_bsRSwAAAAAAAAAhIAmibLp7KG0h7B5eTXlZoQAAAAAAAAAe7R6x72-svzDCuQmBwNt9-AAAAAAAAAA92twfznQckn-jqIyo_0_zVQAAAAAAAAAZIAmibLp7KG0h7B5eTXlZoQAAAAAAAAA_q7a3uuDRiWAkc5xsKI_lLAAAAAAAAAAF_mL1aduzv0ZGPHUWlRlmAwAAAAAAAAAf", "types": "CAMTBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CWAxO1Icd_0_-O3aV3iUhg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAAAjj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABdk99M4bkjfKmg3-yt9HFm8AAAAAAAAAB9HhIaqq60njiI-TSR6IpvaAAAAAAAAAAu7NbgxcudUSJnoypoAEAp8QAAAAAAAAAA", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nOTOWE8V9a_XoRYtELkH0w"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMust6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMugw", "types": "CQMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mXTwlU3Af7Gcl1McbGUk9g"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWIIXT4fd_WKeR1cE-hlLelCQAAAAAACqVRkXT4fd_WKeR1cE-hlLelCQAAAAAACqVi3", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "o3FJgYr9HoLMDfWyiRLq9w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPUhSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcNAm", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5XgTaHt-dAo8vDgnzZy0dA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-BdSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZzA", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dC0hqK0ytFANzaVY5y-X0A"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYRr8mF3o9czEU_lrcVazITQAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAHVRV3OqaPHH0CL0c13xlvAwAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABbjYv_loUJfP4bAxHmRpfBQAAAAAAAAAI_avzkz28Qok2WNYNUK8x_AAAAAAAAAACHRX5ZF5fIW1GKCXf3a6CmwAAAAAAAACtBTDQHzxuOEAYM78jOAyAQAAAAAAAAAB3t7DkRGcQiDMfHx06PCzMpQAAAAAAAAAXYEThj3UEuGl2wDiJSq9vSAAAAAAAAADmjckGVFRAvWURR3kz1QpfwQAAAAAAAABZQUM3v4ew-jMVuKkpISsPEAAAAAAAAACQ8DpGuCi7bIl_Uoo8EbsUWwAAAAAAAAASiOlxEpOp2uis3J58yAaw6AAAAAAAAACQbFkS2Gslo__4bHhJEnxF5QAAAAAAAAB_x1ribCUra3vmcF-jiTFORAAAAAAAAAA7X6gm0xsGb0GSzuRqEOYouQAAAAAAAAAw3CRBOsJXB3LH7TG2Pj7GugAAAAAAAAAMVMp-DPdE7CyTgnB0G1ncJAAAAAAAAAMk9y6T0XjNIrAyHZHcTXEkswAAAAAAAADO158Fvt8rNQpikt5ECrRzcwAAAAAAAAACKzLJVGftzg_XzRRBm3n5xwAAAAAAAAAU", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TEYPXE1OBEat8qmRauzsiA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAAAM7g", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0JrvqOGSV5sSkPZVHmV-1A"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAACEniWpQ0umyYwSRcIZZ4STpgAAAAAAAAAE", "types": "CAMEBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "86WQcXcUxaHfJUCEplsqoA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAAAe", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g3jLco5iklv9rjHlmxCtzQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAC3Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHAAAAAAAAV4sAAAAAAAAAHWqIu3LwO1GgqFV6xhVekP5-uToPI32ragAAAAAA0RQDqFV6xhVekP5-uToPI32ragAAAAAA6rbCqFV6xhVekP5-uToPI32ragAAAAAAZgEGqFV6xhVekP5-uToPI32ragAAAAAAhylM", "types": "CANFBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MyElinVLAEAN4F7lmOg8bw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABN1sqZEeUsG3W43_x5Rw_H0wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACflNTKXUVadjdmvcqN0AFxgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF992j67iVEP_ZCQRVTejCUwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAAIYSzdot5irIEtgjwr_afKbgAAAAAAAABHYpO7Ao3Jp5dMNGkF6KXViwAAAAAAAAAN7Slkc3C9A3eZsO9dv0O2hwAAAAAAAACj", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Fu2t6m-D5UJUa1S1LIOpkg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAQgtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAH59i-wMdSlFTE9FP7ALC-fwAAAAAAAABPJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAet_8P_qgRJaTfBrJGumjgpQAAAAAAAAAA", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wlmshnU41XskzIJphrG7Ow"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAC3Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABbTIqYHzSLJiXVx4krD2dbMgAAAAAAAAABIFHX6oXBjL3Y93SHOMXcKQAAAAAAAAABZXguWb1db5OZ-xUb0e4ZqQAAAAAAAAM2siCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhY0qFV6xhVekP5-uToPI32ragAAAAAAwhQX", "types": "CANRBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bI0z5pYH2KJIm4IMFjDYGQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChGI0XT4fd_WKeR1cE-hlLelCQAAAAAACg6T7XT4fd_WKeR1cE-hlLelCQAAAAAACh1L_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ8", "types": "BgMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kHZvNVXXuZ4FaC6U3PxZfA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgb3scEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETdScEvvhuguaGYCmGWrnWRz1QAAAAACETxWcEvvhuguaGYCmGWrnWRz1QAAAAACET9o", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "m7HYxR39MOi2F5s3SuKENw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAAAe3bipPb-lPFytoX0zurH-oQAAAAAAAAAA", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2eLfnVQNj-bq7jOAcpsXhA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyE5", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pOL7hTlazWG39CR6gZV56w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeX2f", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2ofbkGVhqHskFPiKv2X28g"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACi2wgGDGWUYKAius-1IxNgMQAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fp8z5vGvSD0i9Ni8-EZ6jA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw2HtXT4fd_WKeR1cE-hlLelCQAAAAAACw1EEXT4fd_WKeR1cE-hlLelCQAAAAAACkHGIXT4fd_WKeR1cE-hlLelCQAAAAAACkMuNXT4fd_WKeR1cE-hlLelCQAAAAAACkLwJXT4fd_WKeR1cE-hlLelCQAAAAAACkKBX", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gWZieSymYI-RQt59eFJ4Sw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAABCxaYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BgMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0P5ZzCLXHvPtrKtxiUuFPA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChkN8XT4fd_WKeR1cE-hlLelCQAAAAAAChdmzXT4fd_WKeR1cE-hlLelCQAAAAAAChdFS", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mHT6jAWpCslZAdClcFLweg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiQ6z5k14PsCcDvFyUC1kmlV3QAAAAABHpn0z5k14PsCcDvFyUC1kmlV3QAAAAABHpp5z5k14PsCcDvFyUC1kmlV3QAAAAABHeJQz5k14PsCcDvFyUC1kmlV3QAAAAABHdQDz5k14PsCcDvFyUC1kmlV3QAAAAABHeGEz5k14PsCcDvFyUC1kmlV3QAAAAABG_LBz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEMf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD7I6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC-586tVKI4mSYDEJ-ABAIpYXcgAAAAAALX096tVKI4mSYDEJ-ABAIpYXcgAAAAAALXub6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL73j6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL7vG", "types": "DAMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cn_9IfzsC8Tr9nDWV2mNig"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAABdynFllp5CrPbAGyx1JneoOgAAAAAAAAEqfqMuFCyw6Ke6rdEcCkNIrAAAAAAAAAAF0nJ0ZCynuxYfemmjGHJ70QAAAAAAAAAF7VqLwLJItvEm4yutk0qVmgAAAAAAAAAGdA5iCrFphDUKlC3vygm0DQAAAAAAAAAD_SITIpii9O2qgAJ_aGq_uwAAAAAAAAAhQ0LtmM9f4n5HWy4lj1NqnwAAAAAAAAAF1_mPjWB6YzhY5DVg62peFAAAAAAAAAALdwSKEmLpSL_KD1TF83FH0AAAAAAAAAB2KYUKYe5FJokP-mDuLYX4tQAAAAAAAAACXpviWYO7CFQF88r_qvK5hQAAAAAAAAAJWsCQmTSDw0k0qcC-8oiYqgAAAAAAAAAbvoqjqV6_-EldPWpE4Bg5QQAAAAAAAAAl", "types": "CAM2BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "d0uyKUSw4GUejkSAuddDbA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAAAaI0QtQ3x5Qtt-qibQRB-qEAAAAAAAAACY", "types": "CAMFBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cAbQL1Yf_EXwq1Xvj5YzBQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIoVZ3CKaS4aU08RhYA19y5ITQAAAAACtIeEZ3CKaS4aU08RhYA19y5ITQAAAAACtOo1Z3CKaS4aU08RhYA19y5ITQAAAAACtNW2Z3CKaS4aU08RhYA19y5ITQAAAAAB0mf0Z3CKaS4aU08RhYA19y5ITQAAAAAB0j6eZ3CKaS4aU08RhYA19y5ITQAAAAAB0jcL", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IPqtJ9Ffu3wDNg6koFPX5w"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAABpnnQpNJwjtxRmq8gs2W8P-wAAAAAAAAAa0MW66HYbW_rij8hwBxmYwgAAAAAAAAAMd6vLc-6LmdJJqEBrvxNh0AAAAAAAAABM", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VnpinE4u8LaMWLZMBdXuZw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeX7s_QYAzQdAagYTCI2yUMpa7wAAAAAAAK8O", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PrVZV3ALGpaU9_iaCjGLFw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAYfxhAZVfrZSTvh4Ktxrpz7AAAAAAAAAAN", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DWfScUV2_2OCeYx4zWNovQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ9K", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gBMo3RNl4xbFgjyE8KLEeA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABN1sqZEeUsG3W43_x5Rw_H0wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACflNTKXUVadjdmvcqN0AFxgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF992j67iVEP_ZCQRVTejCUwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT2RtTnfBMr_4uuoJgeW3L3AAAAAAAAAAKe2lx94qSnxpcppE-MHpptAAAAAAAAAAGANUDzCguopTSw91qnI0ylAAAAAAAAAAOfZ1SoGSE80OZ2t9ks5kZMwAAAAAAAAAhEVqCqcMqZlQ0w1_HMPbgrgAAAAAAAABN7qz18bHgG-Zc_fVo9Dsh7AAAAAAAAAAiLDdYUFmfmBXmyn1AQ_9arwAAAAAAAAC8CR4o6NKah7mNKb4RDMOc_gAAAAAAAAAUKSV5zpqX5uS8pJ0jF65uTgAAAAAAAAACNcpE6adeOVCfvBx4qpjhtwAAAAAAAAAHztHnkwVOP9LxgkQsriQwqgAAAAAAAAAmRLT8kD2Dv7n5Uv6GrwRORwAAAAAAAAAFNMpC60tGKaJ25O0qF-RzlQAAAAAAAAACtwASLq5QV6PtFM2KeIje5wAAAAAAAADMCyFPDZBEiXoheKAUx-Kq0wAAAAAAAAAA", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Doitd-dudDRQURc3deY9nw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAAtSAAkutGejeRImCZXeWZ-1wAAAAAAAAByB_IRgbCQC1IPEoVkHKMOTwAAAAAAAAADT_dXLsYiuViNnH_I_KaClgAAAAAAAAAFV2djfK9racz03jSvbrsX2gAAAAAAAAAF0WHxvAaEQdTf5grBjCUuBgAAAAAAAABS", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "W0j_klLnHW1yyhF4U8DXiA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o8vXT4fd_WKeR1cE-hlLelCQAAAAAAC-pHvXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN9jw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBiZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN9Em6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFUwX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA6d6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA406tVKI4mSYDEJ-ABAIpYXcgAAAAAApUY5", "types": "FAMNBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5dotPkeOMgRPYfdERquW0A"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAR-clL77pdbmWRRQ_xzhnVFQAAAAAAAAAJllkihrRGUNbhCZ5QJqe2cAAAAAAAAACrbs_Gat2VhUkd7zBBQ8J8ogAAAAAAAAAa5dykK372d7FA3wq7wP5b5gAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkoiqsTGLCNH21piOrMPoln5uBQAAAAAAxYToeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAInFeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAHAOpp6LgRqCGeGjs7cnnwItcAAAAAAAD8206tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAACY8z6tVKI4mSYDEJ-ABAIpYXcgAAAAAACYpZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAADTlS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMfBQUDBgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hz7cJPgHH18BeBTdm_DtkA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qa3LlvY-lX7QFxqyniBgi3AAAAAAAAAABZDH4ZrfSeeQ_HQhbV8TcPQAAAAAAAADd4jSOeojX1HJ7UtWM_nspTAAAAAAAAAAhq6dG50P9zlO2POIXATNq5gAAAAAAAAAIfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdbg-U7BdB6cMtXtMigMAHygAAAAAAAAABU5s7FYWEmhjGUiz8TfmatwAAAAAAAAAYr0SzipKiK5ehcJDBm9mclQAAAAAAAABU5TiGwb-AyAC8UyQzxJ9-pQAAAAAAAAAgsNM_x7UckJxkEvzk5airYwAAAAAAAAAHLO0kqCJ5sLnPx_SwGJYFEQAAAAAAAAAU61vrmCVoJZp3HjBxIMFrNAAAAAAAAAAFF7lATn_bFhRDcY0Z0OyPwQAAAAAAAABoY5AhuW5zTFbvkEYRGrJ6zgAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAZHpec9nZGwrrhoUYM845NAAAAAAAAL7r_QYAzQdAagYTCI2yUMpa7wAAAAAAAO786tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQI", "types": "CAMSBQIDBgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oHVZwEtujopOZewM6A1sxw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7r0XT4fd_WKeR1cE-hlLelCQAAAAAAC-0MuXT4fd_WKeR1cE-hlLelCQAAAAAAC-1HEXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJjeo9I8XHop3y7uLb8wdADAN______AVoSN", "types": "EQMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bbBiaFslvpreG7iqHkAtng"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAALzbjhk7iO4zKDe_CtTcO5FQAAAAAAAAABw3TshcZYurjm6c72duqqcwAAAAAAAAAQA9VwK6SroKXsQKAAWW8wJgAAAAAAAAAAcGBPCS3aPXXlmHmrx5RsEQAAAAAAAADA", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wQIwclgSqKb144G75yYx4w"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgLJ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZPTQfDgXmRrvRJctvBjMQw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAAC6S2CYgbm2TSSx5DQSXabwsAAAAAAAAAAEKqmd4_qSYjz2y1UHS09p3wAAAAAAAAAPXsPRRgjkXM-VJurhpYWAKgAAAAAAAAAbYBsRiOSYyzJilvtbmeHiPwAAAAAAAAAIPmdOVhDmQHY_qzC5-senSAAAAAAAAAAbdiZf6hi5AquwbpyXsV-WVQAAAAAAAAAEpGnazsZ860KF5mJkmXxBtQAAAAAAAAAEsNKwvZMA1nF7n4WcHIeA2gAAAAAAAAAXIqN2WUYs3wmQHew8PMeaAQAAAAAAAAAA", "types": "CAMSBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bcHz46TjNV4prWC1qZE-6g"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFmUdcEvvhuguaGYCmGWrnWRz1QAAAAACExXncEvvhuguaGYCmGWrnWRz1QAAAAACEUpA", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5K8-gusySTkvMx2KwQOwvA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcQxTPNhFsgl-8e8i61Q7phQAAAAAAAAAnwnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAE8PySOWxdeTvWtl74Iv620AAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAn5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALCqHdoNRupr5ud0SEqGGzcgAAAAAAAAAA", "types": "CAMMBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Jwj9IGMM0jWZjOAtjE9d7Q"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAak0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB0qRvG2N9iYeFyl-3xULRJEgAAAAAAAAAe7p_llGp9OZbFMQuhvSu13AAAAAAAAAAIFtjh-A3lytsNmmUroc108AAAAAAAAAACuimFkk5UuxbH1IL630LmngAAAAAAAAAbVPtMofZCgqrw-l9pGX7aHgAAAAAAAAADRSgrZm24iCMR6dfllqWutAAAAAAAAAAaK_N78LhUkthI1fnHsP1_6gAAAAAAAAC1", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "e-pIZo86wrOcd_F3vppZSw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADqG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzwr", "types": "FAMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ci1aB63L8kECW29ygL8YPg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYCMh__DRjYW6WKuSO4E-9UAAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAB2GBJ1zKS_b9jP7AxB92tjCQAAAAAAAAAo0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFKCxCvDIXtl0ClBmM3hNiLgAAAAAAAAAcFDp23rE1CceEicB2tyC3EgAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_QZucZeLQwMr7zKD51abCrwAAAAAAAAAMS_GmAS-sCtPOI6egY6LXiwAAAAAAAAAPbSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT-r9PdXX1mVfrKM4cjx98VQAAAAAAAAAHckdRYj6mGdEYJvYh_1v9CAAAAAAAAAAVNku1oPInJYwCIRLCUxYLuwAAAAAAAAAGGHfrWkNDTusMoI46fGLR6AAAAAAAAAAXtQBYLE5Qq3rn4uocqQBMfwAAAAAAAAB06SPcjSM_2i5VedtZVzcDIgAAAAAAAAAahrzNr_V8YVZ7ibkr1777pAAAAAAAAADWL1TsSv66pa2kBpdVIVNEAwAAAAAAAABGsavPbEF5C7JhfS7sqrnMYwAAAAAAAABNJvScc-kAblhDe3HgLZgGAwAAAAAAAAEtG4cQid4Xo1Tc_dU6YBAwnQAAAAAAAAAEEEfFWFsgasz8z6yvzLMmSQAAAAAAAAAE8j5cUdTnc2xWo1otBaDFqgAAAAAAAAA9mu1DpnH8iZDzucrjLh5s6gAAAAAAAAAE", "types": "CAM5BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7I7fZ1n3NXikDC-SAVTDhA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuYNwZ3CKaS4aU08RhYA19y5ITQAAAAABtz9JZ3CKaS4aU08RhYA19y5ITQAAAAABuRKHZ3CKaS4aU08RhYA19y5ITQAAAAABuH6A", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YEm7NQBrTH5QHQqIE3fDrg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlqJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCIE6tVKI4mSYDEJ-ABAIpYXcgAAAAAApQKj", "types": "FAMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qS1V-akFaaHNHyzPM1noGA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACamW1QO3T5kZR72H8FRXCCwwAAAAAAAAAA", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bcg4yzcU6w_vTsKTk-8RpQ"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMust6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuZy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMs_k6tVKI4mSYDEJ-ABAIpYXcgAAAAAApymx", "types": "CQMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hfDMNuzdjFAGAQxLAUumIw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnfNTDCm_3eVgEHous9evUWgAAAAAAAAAUFfM3fVYqFhj_g4shLOoSnQAAAAAAAAHo4lmHgkrzdreyo27aTsC9aAAAAAAAAAATOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5fTMNPZsSlOmaDklO1sfuAAAAAAAAAL5qdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYwzvWQyXT6P841Whzz8TSaAAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFxGtP-sXIou6VkRlAu3EUfAAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDhfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAFlGcPRsxhoRfgOogp_1xvMXAAAAAAAAABcsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9T5nB0Ij4FClwlFOdtPcSwAAAAAAAAA4nhLCsxtbHdv174Fp0fB3AwAAAAAAAACveEsPvNGYH982Mv0mPexpzgAAAAAAAABKabVgSSWhd-7g7F13ivHMFwAAAAAAAAAg76_PB6caMKhNJHxW0wLqKwAAAAAAAAA84M7YPHJs-s48WlQKqWc80QAAAAAAAAFtrULn636vgYlrbzWk6rvndwAAAAAAAAAFTdeG-HhQrtyN0JpgHcoYowAAAAAAAAATRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADQL8kwyqQOD4YHIoLA6nJxNgAAAAAAAAAPBnWw-Kwbk8U0kdCMhiF9pAAAAAAAAAAJlPmJLRVTgSCHAuJa9ynBFwAAAAAAAAB63MtR7J_itxjU9_a_C5GrDQAAAAAAAABXvk0qeOGVpFFblHDZl22YrAAAAAAAAAArlJ9U-bOLpOdP9uh9E2s7UgAAAAAAAAAXAfmtWvbwy96-Rbl9WqnxlgAAAAAAAAAFAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CANYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mdw3BiJM92OOtEHXgQMjkg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZvuSNDzWiYDmLZi_Z1ZVETLoAAAAAAAVHMn", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OXyCKNOqgn9jhCQIhnA3bQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAFJfinhoQfoECf6Q4HPC08YkAAAAAAAAAAqcn_0Dt8F1JGwazqn6MVOnAAAAAAAAAABDnuglYjSP_yHnOeoUpC43wAAAAAAAAAB3v2TU8A01iCPuVWdiUVv8QAAAAAAAAApL-_tQCaPRoXtazKap89hsgAAAAAAAAAOZhtNJYoOwm655zArM3sIngAAAAAAAAAmYgvoZ6DleZJd_ACRhoNarAAAAAAAAAACUT4r1woqEdacoKDuZFw-vgAAAAAAAADtUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAmQVeLj_oPnEjl_jKTv8aQqAAAAAAAAAAlUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAxrp3sprQtO8hOwekVupMQwgAAAAAAAAA0XoNqQsMeesgJkRR-qQrvugAAAAAAAAAzrn6MTH_GcOdtJ7YxIeV5gwAAAAAAAAAHUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAUnQRJ3xr79n3cY6qS99IffwAAAAAAAAAEAhC6Xj-K1vOC4yqhcS2tRAAAAAAAAAATopFI2iPPQrSoKgHSzuYsiwAAAAAAAAAInX5EwLqa4-7opgPxIg4PZAAAAAAAAABw575WKZsJOrf8RDDJpG_1WgAAAAAAAABhiq5pqOpNVrXrvUr0VXwf8gAAAAAAAAACbVXxpnmgIbO0K4TjtY7pDAAAAAAAAAArZ-CiexQVqL-aPBYv4uHXWAAAAAAAAAAIiit9TEPWxIcbSUSJseypHwAAAAAAAAASvc_2qIuahQ6DM3LWEJ9q5QAAAAAAAACEqN4Vqjijt0HHN8TkXT1dVwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAHs6vQ7EacG6CR4rzcFaNFEsTQAAAAAAATMu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimtb6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOK46tVKI4mSYDEJ-ABAIpYXcgAAAAAAlcA76tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbdH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlWJ36tVKI4mSYDEJ-ABAIpYXcgAAAAAAlsoG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlrpu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlqKz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlwjf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlN5a6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlNsK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlOPs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMub6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMqa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMWu6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgDv6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgCV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwA8J6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOBI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN1t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjNJshpS1QtdrBQjGg-LCbfqeSAAAAAAAAF9MSxgb26oKQwlt07if9woPTQAAAAAAACORSxgb26oKQwlt07if9woPTQAAAAAAAB5cSxgb26oKQwlt07if9woPTQAAAAAAABLvhpS1QtdrBQjGg-LCbfqeSAAAAAAAAFrchpS1QtdrBQjGg-LCbfqeSAAAAAAAAFjZhpS1QtdrBQjGg-LCbfqeSAAAAAAAAFcz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN6I6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN216tVKI4mSYDEJ-ABAIpYXcgAAAAAAlId_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk-pXSxgb26oKQwlt07if9woPTQAAAAAAAALo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlH3T6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlJwL6tVKI4mSYDEJ-ABAIpYXcgAAAAAApawl", "types": "CAMmBQIDMAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ch10c9ij9u8WCrMXgg26Ww"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAAC9giwOUz_dwg5QpZ6rn_mtEAAAAAAAAAAaVuN94T655MWJDhWvTQiB6QAAAAAAAAAGCsbV9k-bf9vouE4JAWSvYQAAAAAAAABMuqwCsRNPiFKrqHYXLGpv-wAAAAAAAAB8iH1rt2A0cDFvTr2IZcc8_wAAAAAAAACWjtEB8q7ZNk5LwicDPNbPVQAAAAAAAAB8_20iQw_1BgBh9m8HkEpgSwAAAAAAAAAOMHOHZ9dur_p0OUPsIclbdwAAAAAAAACLPwt7pP-aI82aWD0sQr02awAAAAAAAACsMFna6GF40zYSy1dmTg0DBAAAAAAAAABM", "types": "CAMSBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-KuDdfusItDSRJVlZWeuIA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAABjgJ_Yxe-SHgukLEpCkawSk1QWAAAAAAABqplYxe-SHgukLEpCkawSk1QWAAAAAAABMzP", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tWMg8g0Ama4NLtBSkd9DDQ"}} -{"Stacktrace": {"frame": {"ids": "c6lwtZBG2BzNKGtSyzLrTAAAAAAABCWpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGc6lwtZBG2BzNKGtSyzLrTAAAAAAABBZWc6lwtZBG2BzNKGtSyzLrTAAAAAAABWSbc6lwtZBG2BzNKGtSyzLrTAAAAAAABO1vc6lwtZBG2BzNKGtSyzLrTAAAAAAACbDSc6lwtZBG2BzNKGtSyzLrTAAAAAAABFjdam-Z0RfUVY0oYK5VXRDk9wAAAAAADKVLam-Z0RfUVY0oYK5VXRDk9wAAAAAADKAFam-Z0RfUVY0oYK5VXRDk9wAAAAAADHo5am-Z0RfUVY0oYK5VXRDk9wAAAAAAD1-4am-Z0RfUVY0oYK5VXRDk9wAAAAAAD1vwam-Z0RfUVY0oYK5VXRDk9wAAAAAAD04Mam-Z0RfUVY0oYK5VXRDk9wAAAAAADtvRam-Z0RfUVY0oYK5VXRDk9wAAAAAADreaUJmIMEc6K8gJ39NHYaD0WwAAAAAACY-6UJmIMEc6K8gJ39NHYaD0WwAAAAAACVlkUJmIMEc6K8gJ39NHYaD0WwAAAAAACUhHUJmIMEc6K8gJ39NHYaD0WwAAAAAACQmS", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g7q97S7Wxm4ynw0Afe3ikw"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbFTZ3CKaS4aU08RhYA19y5ITQAAAAABtZi0Z3CKaS4aU08RhYA19y5ITQAAAAABuV_gZ3CKaS4aU08RhYA19y5ITQAAAAABtuKUZ3CKaS4aU08RhYA19y5ITQAAAAABtadhZ3CKaS4aU08RhYA19y5ITQAAAAABuERy", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4I-ntmDjAgUXJfwbuBJNjg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf_KcEvvhuguaGYCmGWrnWRz1QAAAAACEUiU", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IszPO-W_NZpvHwzVXBdHRA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAAAeCY7ztddcPo6ofReMjIW4KAAAAAAAAAAWexjTdXfblWaIJFEnFxbGNQAAAAAAAAAESc-7DBv3SRDl6MaEnNIV4QAAAAAAAAAfjp89ntsvEyhpH5Dc3mZilAAAAAAAAAE5bBQ2fsMcPLjZdwrVTr6aMgAAAAAAAAA5Dp15X8uOBNJVZimWDCZGiAAAAAAAAABnzLx6iJ9ANFZvdAJHeiPhJwAAAAAAAAEbmzExXCPAxvBlsYOcwqbUPAAAAAAAAACELsrK9E-EO_ynQk-yDhFFiQAAAAAAAAAVvEf82IDRTNtSKS_YS3157QAAAAAAAABPpXcgZrvJVOZC-snysoKYpAAAAAAAAABc", "types": "CAMTBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "G8rfpCwclnmPxDW_rTu3XA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAABWyt_cpdTtBVWXz_YP1okGcAAAAAAAAAAUIcdeXxipoRVqav0jM_5DLQAAAAAAAAAFy3suxdda7-517ccPeU80LQAAAAAAAAABxgPPuzI1J0KcF5WhFpW09gAAAAAAAAA0E9rVQyfXmRnEPhP5-Uw5UgAAAAAAAAAELJHrWrJn2NgzCwphqZHUTAAAAAAAAAAIxgPPuzI1J0KcF5WhFpW09gAAAAAAAAA0h7etdb4LVAEPlLKOTYCzyQAAAAAAAAAU2yMXVAJmTG6J5VZ48pu33QAAAAAAAAAlV9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAh4FEl6I3oLz61cCuBYEj4mgAAAAAAAAAIghH-UNAYXMIaEqa4sWPFdwAAAAAAAAACQux0OsKGNxatt2eDble7JgAAAAAAAAAHxgPPuzI1J0KcF5WhFpW09gAAAAAAAAA0iRzNGxTlTqWMN66MrMvwHAAAAAAAAAAfzYneCjUHNgP0y9mK3A4z3wAAAAAAAAAH2yMXVAJmTG6J5VZ48pu33QAAAAAAAAAlV9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAKxVOmAk0hLEywDTna7YZ20QAAAAAAAAAMDNJw_Ya3dFZ94ASbPZxv6gAAAAAAAAAGHVhQ434ZUWqRQ1_LQX_XpwAAAAAAAAAwVwaGRjsI3iJyn8klEZc0AgAAAAAAAAAcbncHe-mA3hsO-pdShFcnzQAAAAAAAAAESXl2S9Cin3OSJJ8QmrqVDwAAAAAAAAAILTyLcxCjCWE0-UMDXjVNpQAAAAAAAAAwCvC3lIC7E70AiCoZ7DVYSQAAAAAAAAAIAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAOKBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PCWzQZLMSEDq6jgDAbtbDw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfxrm08oJc5xqpM1VweLZNZwAAAAAAAAEIFyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACAE1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAACS4b6Y6AxjtjqP_pey1p_yKgAAAAAAAAA46himjS-PpAivu9i1Bhv6aAAAAAAAAACVH0h6cNWo4nXEYZXWZXHxWwAAAAAAAABshWTBWfz-Houd9OXpVmNNGAAAAAAAAAAkuwSrGXrIlilHG9LeAbu8sgAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFm-x5OkQlku9y3rztHSvTSQAAAAAAAAAULEf7xTPa92fa-lrUaMUkPQAAAAAAAAA3-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAFRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF6gZHeFcPF3p_p9hsnsuK4AAAAAAAAAAQVQoK7BVzszXqPUi0cc2ufgAAAAAAAABCRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFP25sJXYK2Dig2gvT-_j6hQAAAAAAAAAoKU_l7oGL7N35bnBXHoHVpAAAAAAAAAB3R43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFYuABXadheWsSG6-oIu8XAgAAAAAAAAAYbtJR8uWrInrzn_sGkpIt3QAAAAAAAABNRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF4as0IgurEXJei_r6XmrPIAAAAAAAAAAU7dZbzLINeewhS7u7jNnbxwAAAAAAAABBR43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3RsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFrY7n4rCVF7rtGQSMR7sNcQAAAAAAAAAQ3xSivts4s-tBo1MMFQEENgAAAAAAAAAvfEf2U4TLcZ6jkTz3kXzr0AAAAAAAAAAkjNbJJD0szUDlnbhrWsIGkAAAAAAAAABE4ZG6-YGelmJ-HvYGGP11fAAAAAAAAABaPJlREaStQ9MDsMhq8CWS4AAAAAAAAAAY9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQmUBFmueS4MaOyw0OD29yQAAAAAAAAAUuj5fRTSdGJxlX0gfzctOogAAAAAAAAA_3G7WvpXqPGO04rbAV9CJtQAAAAAAAAAlHr7DaUVBf6Mvou5VCDAFbQAAAAAAAAApRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFZRv6R5-Wsj1i57MVMaKXtQAAAAAAAAAMM_MfJrZLrX3P0R0dWrP49AAAAAAAAAALRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF41q7-Ld-6XK0fcC0fV9B7QAAAAAAAAAU-TcRbQGxOxYw9x9ta5Q4zwAAAAAAAAAheufT8zCegZUSBK09BAzk9wAAAAAAAAAOlrNuGOqZ1W2gPcoSPK5FRwAAAAAAAACdJukEk6AOkVTKVg5GZtrbFQAAAAAAAAAMc3EzDx8Ryaa8XN9zuZ2ajQAAAAAAAAAKVKihQg4JvcN4yNj-XA9HxgAAAAAAAAAGCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAEhQ2OXkHYZRXh3_WLXzxSBAAAAAAAAAAEqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYwzvWQyXT6P841Whzz8TSaAAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFFNGo1JfG2H2fZIcfqeCsfAAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDhfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAABNkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJNoWLrp2Hx2HDcioYyHlIIwAAAAAAAAAkoIYS8oKywxk33PzxrExveAAAAAAAAAAZETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASETEs_vJj_-q4WFpNiG_LRQAAAAAAAABDdcjvmaaqRrRw5Y3TSsw1ugAAAAAAAAAHbsij8JYb_Ow0GSwmYI1N0gAAAAAAAABrM9t3sX7Z2Nj1mpARCDGcawAAAAAAAAAIwcw67NCnOLTYutynHBvqowAAAAAAAAA9Rq1eFN8SiXxM79ZsydqqqAAAAAAAAAArEYzjRFYzs1PS5SqhLPJ7TQAAAAAAAAAF0Cdt9wyWxnG2B-xGXMO6owAAAAAAAABpyYF5YWbjTLokor9oKz_A5AAAAAAAAAAN1YwmAWjsK6oD1Qs8m4ZuaQAAAAAAAAAW3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAA5yATvQ7EacG6CR4rzcFaNFEsTQAAAAAAAQGM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAPUBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BQFGAMPCwBFVLxJFRXAPGw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_hp", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oPgWgw_HJ-7hbpa6_4Pqeg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDLZcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETeKcEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEWNS", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iMWox14mMY2b1SuNGxsCtA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA8lX2SNDzWiYDmLZi_Z1ZVETLoAAAAAAA8lJaSNDzWiYDmLZi_Z1ZVETLoAAAAAAA8kvKSNDzWiYDmLZi_Z1ZVETLoAAAAAAA8fJCSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcrgLSNDzWiYDmLZi_Z1ZVETLoAAAAAAAawuMSNDzWiYDmLZi_Z1ZVETLoAAAAAAAap4qSNDzWiYDmLZi_Z1ZVETLoAAAAAAAVKmb", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dOsagAt-XXDxs5XGCBbstQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP_y5", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MrYyGRfOREUeHSMqF3-gkQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAGvN0nOeOJdjggSFx_cpb47egAAAAAAAAAV4vwWTuaA5W0Uq7WSODTSAQAAAAAAAAB8mm7pA8Vo6frfLprU_GjPaQAAAAAAAACREbDp5Ji3y8uTKzXL0h4-JQAAAAAAAAB8dJZnxxfSj1TBzD3FyyfeDQAAAAAAAAAOArz1MMWCC2fkAl6FCL43rAAAAAAAAABQnHKyvd8kdc_8d3u5YjO8iQAAAAAAAAAFm-i3pqvNoPRjOJ3b3sEiiwAAAAAAAAAEs9MntjdT5XiNr-rHeRcTvQAAAAAAAAAB", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "akR0ajfGkZj2z5CmqvQfvQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACXFDHy--PvgHpUWFquuqO7RAAAAAAAAAAE4Oh7C2JW2-6SkQ-_bQ2jPgAAAAAAAAAA", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ELGYYB5yptbs2J-FWT6xOg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFbojlkH6U8-uq6rXJn3yJDAAAAAAAAAAEa0W4SIobOysiPgaw1gv_JAAAAAAAAAAQHrXUpqEQk4VDnpaZKgdbiAAAAAAAAAA9U2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAABU3F2z0U59C1y3O1vSXqnJygAAAAAAAAAc6_xlTgG59vnh1ZByxJjaSwAAAAAAAAAS3F2z0U59C1y3O1vSXqnJygAAAAAAAAAc", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HQFX_6tqgj5N1dAyiK5_bA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAAAjj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAek99M4bkjfKmg3-yt9HFm8AAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lncubcdiqHSYqwQrDvrkCQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP5h", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6xGHh1u34DhHIbK4IY9KBw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFdkIcEvvhuguaGYCmGWrnWRz1QAAAAACFWIHcEvvhuguaGYCmGWrnWRz1QAAAAACFVZ1cEvvhuguaGYCmGWrnWRz1QAAAAACFWWH", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "07tFiGQvKlKEn8Vy4W9Sog"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFmUdcEvvhuguaGYCmGWrnWRz1QAAAAACExXncEvvhuguaGYCmGWrnWRz1QAAAAACEUm1", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1NlId-XCC76cuSxZt5Lxmg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfxrm08oJc5xqpM1VweLZNZwAAAAAAAAEIFyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACAE1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAACScdTS-RIJ4OkgwXwrA9jyIAAAAAAAAAA5CyxJKWhz_iFYytJsQ45E4AAAAAAAAAA6sLlgLb_29ibKij3P60tXfwAAAAAAAAAt112Fwha7UwifvTTtdUMggAAAAAAAAAAUWDifHywfLuQd8Yh-DIvScgAAAAAAAAAUPBpfn0f1eKNcXZ1C2eJmZwAAAAAAAADrY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF_V8LkuZDYhsRC_uInyycHQAAAAAAAAAgMsMB9yoGg6PjkQwG5yyoCwAAAAAAAAAZT5hiiNMlc9RKe2ptBi1-rgAAAAAAAAEMPwh6hSQTQ9v1UQs62plj-AAAAAAAAAAFRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFBlwqo9fDZkc_G71NBmK4kwAAAAAAAAAMKx8_JifYLsyt8nlVLT1q4gAAAAAAAAAGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFhzWLY32HB40pGQwoJomtfAAAAAAAAAAQuMbV4kgTfjojzHhdWOM7pAAAAAAAAAAXRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF4as0IgurEXJei_r6XmrPIAAAAAAAAAAU7dZbzLINeewhS7u7jNnbxwAAAAAAAABBR43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3RsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFrY7n4rCVF7rtGQSMR7sNcQAAAAAAAAAQ3xSivts4s-tBo1MMFQEENgAAAAAAAAAvfEf2U4TLcZ6jkTz3kXzr0AAAAAAAAAAkjNbJJD0szUDlnbhrWsIGkAAAAAAAAABE4ZG6-YGelmJ-HvYGGP11fAAAAAAAAAAJ_MQes3sHvEekr3K4ZbAgxQAAAAAAAAAGtqxyIieWZqcskiV4R2pEyQAAAAAAAAAgyHHuqycCveqeSns0YOs2BAAAAAAAAABYagRSV97vL0634eqbTCb3zgAAAAAAAAAR2_NEM0Tf7V5LLU5GCY3aFAAAAAAAAAAa6wI8-CYhvUQZGoLAE5tQIwAAAAAAAAAClDyk6Uq4gaykehAZS079QwAAAAAAAAAi-YmFpBY9dTZLqQtpdDHWOAAAAAAAAAACFOl8kYcR1mmcdP7Pq8NykQAAAAAAAABblDyk6Uq4gaykehAZS079QwAAAAAAAAAiqqHmu8HxsYgSsu-ccoja0AAAAAAAAAACz7a3KAMWouViNR---1h9KwAAAAAAAAAK-4TiGjxLRDmQK0-4omdldQAAAAAAAAAJBBv-21qRgT6sS06vQ0duDgAAAAAAAAASAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CANxBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "a8y9d1sq41lKVZ2hOEtOWQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApygiinZb-VL-5X6K63nWolQAAAAAAAAAFsPRIu4G_UqOumyaMlOEsUwAAAAAAAABco__lFhTsOKstKDAfxbDtFgAAAAAAAAALJTnRsTPd7AHDTE96DfHcfgAAAAAAAAACTPgk3CweWzO9tVWjSu3t6AAAAAAAAAALGMA756PSHo5B_YmPM9fH1AAAAAAAAAA0w9EvqgSUrfSjTDJRVa3cFQAAAAAAAABNNHZIb934ydih1IKLBqCI5gAAAAAAAAACIwsijQDbvPiBVknFzNnSRAAAAAAAAAAJvfb9aCFliLFmJCtvbLn8hAAAAAAAAAADC6hdCXqj0oyVHhHOvhKmxQAAAAAAAABJ7-NWIMSLKY69QheXospWHQAAAAAAAAAEGOrFnkqGTEzDlTO1qewmxwAAAAAAAABQBA250vvzivD0xU5n0tBlVQAAAAAAAABngJGX9YLt4oQVT1mGe0oQGgAAAAAAAAAjBevrzSlVkhIOt2sEBqNUcwAAAAAAAABHA09bGE-41ttRDohqtXSIwgAAAAAAAAFzpJc1t0rYHwzFGXGR9ZsrtQAAAAAAAAAZy439Ao6ZreDmB4A--tJn8wAAAAAAAAAFS0dOLAZr8QGkbiq1JR6IbwAAAAAAAAAC9nOB-L_uGBJNchhukwELSQAAAAAAAAAKOGNisCVAiLjPbH6wXAJp8gAAAAAAAAAqC3YHHmbL8eIan7BKq7-sqQAAAAAAAAH6lRH_2WrFNMk0Q5-iG5Wx3wAAAAAAAAAjHHJA9BTngnX8qImGqaVnNgAAAAAAAAAAqYXyCTfSoRiD_M2RLVXihAAAAAAAANxPqYXyCTfSoRiD_M2RLVXihAAAAAAAAMirqFV6xhVekP5-uToPI32ragAAAAAAlKwFqFV6xhVekP5-uToPI32ragAAAAAAk-Ql", "types": "CAMcBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yTAi1Yo0NZNgWpXZUjzOrg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADHmXqXT4fd_WKeR1cE-hlLelCQAAAAAADHmkkXT4fd_WKeR1cE-hlLelCQAAAAAADHm4cXT4fd_WKeR1cE-hlLelCQAAAAAADB6QhXT4fd_WKeR1cE-hlLelCQAAAAAADQm1kXT4fd_WKeR1cE-hlLelCQAAAAAADQnNrXT4fd_WKeR1cE-hlLelCQAAAAAADQjwNXT4fd_WKeR1cE-hlLelCQAAAAAADQjKNXT4fd_WKeR1cE-hlLelCQAAAAAADQjfDXT4fd_WKeR1cE-hlLelCQAAAAAADQiL2XT4fd_WKeR1cE-hlLelCQAAAAAADQiHkXT4fd_WKeR1cE-hlLelCQAAAAAADQTr-XT4fd_WKeR1cE-hlLelCQAAAAAADQTpnXT4fd_WKeR1cE-hlLelCQAAAAAADQTJEXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUckXT4fd_WKeR1cE-hlLelCQAAAAAACgUj8XT4fd_WKeR1cE-hlLelCQAAAAAAChz7q", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "33M_jV1gmHGxTPvzVsOhJw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ9W", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MbW3yiCJFvhva0WqbvTBag"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAAAaieVPbh3z67ZFj7IGoqq7zgAAAAAAAACEBFI7c7JS1eVbUcz-CuyraAAAAAAAAAAJpE_XF-eq0tBl0fP7Y7zrSwAAAAAAAADY8uVqqmQs2krZT40-iqFC3AAAAAAAAAC8xIfNH7oj8c26gQcDKc66DwAAAAAAAAAURuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAA8ix3sTGLCNH21piOrMPoln5uBQAAAAAAxhJ3eJ7BYIhIN72fM2Cz8k8m9QAAAAAAAMGFeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARb6", "types": "CAMKBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Pv_Z9wfk0AjOJ6dIHemB0A"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPkzPBPi0X-wl-PUEBtNL3SQAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIHT1vQdc0XC0RoSXqyJlYhgAAAAAAAAALpYJXWbdqO_EwCki56aMNwwAAAAAAAAFsVp62M-dk3XvfozDfnsnw9gAAAAAAAAAG-vBNy6YNq9pF5j5Mm7smkwAAAAAAAAAFno2Lej56mJkbwdNYz7YGSQAAAAAAAAALn5uztEwS7m6JKpJbGoHSGwAAAAAAAABKzwiX7AgVqL-aPC-SuEi6CAAAAAAAAAAHuC86pFXXnBLCj6eRRljPDwAAAAAAAAAQNc9gj1rv2NerZVTmjxTx9AAAAAAAAACG5gRif6Sjt0HHN5TwyiXUJwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAqMaIQHwhzmbCa4rmJIpC-wAAAAAAAHnqtQgAmBJBgPLrkikSPRsmtgAAAAAAAOb9", "types": "CAMZBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JR8_DdEIpI8T7Ny-5nFoag"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQEI2MlivQ_yGyq36LnLAGeQAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQOUV_Man7LKpLI_xXeAvtgAAAAAAAAACeM1U5MRplArg1qeEAEk5MlAAAAAAAAAAYNK6q-mYZhWe1E7afoKkwiQAAAAAAAADYr6Fg_DPZ96geKIjDaUl37wAAAAAAAACsmdgXK8UgXxJq-aF0PWZBWQAAAAAAAAAMuHXk96D_H0MjX0tAh6AHfQAAAAAAAAAGBQgPvwiw9NNbOJgDcqi8DAAAAAAAAAAtD8SuOAHHuRsEe9MWrwApVgAAAAAAAABUpD64Y8dYs0KzJcRfejjvpQAAAAAAAAGx0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAW493G4lGxxLfYXMqOHIciJwAAAAAAAADZsFs-DxXlXTzn3bVNvCe0KwAAAAAAAAAE", "types": "CANUBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YlwuTI9pMmyVbwg2FaXibA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zCPc0-bKAM6-gvP4yKCRnA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXUptYxe-SHgukLEpCkawSk1QWAAAAAABXVjkYxe-SHgukLEpCkawSk1QWAAAAAABXVBsYxe-SHgukLEpCkawSk1QWAAAAAABXZL0Yxe-SHgukLEpCkawSk1QWAAAAAABV222Yxe-SHgukLEpCkawSk1QWAAAAAABW87QYxe-SHgukLEpCkawSk1QWAAAAAABWyvTYxe-SHgukLEpCkawSk1QWAAAAAABWyQ-Yxe-SHgukLEpCkawSk1QWAAAAAABWeOkYxe-SHgukLEpCkawSk1QWAAAAAABWeW2Yxe-SHgukLEpCkawSk1QWAAAAAABWdMNYxe-SHgukLEpCkawSk1QWAAAAAABWWaKYxe-SHgukLEpCkawSk1QWAAAAAABWaL5Yxe-SHgukLEpCkawSk1QWAAAAAABWYKPYxe-SHgukLEpCkawSk1QWAAAAAABWXC3Yxe-SHgukLEpCkawSk1QWAAAAAABWaJtYxe-SHgukLEpCkawSk1QWAAAAAABWWaKYxe-SHgukLEpCkawSk1QWAAAAAABWaJtYxe-SHgukLEpCkawSk1QWAAAAAABWWe2Yxe-SHgukLEpCkawSk1QWAAAAAABWUTi", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IQdfawGZrkhBWNm1MuU4ag"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbVsXT4fd_WKeR1cE-hlLelCQAAAAAAChWmoXT4fd_WKeR1cE-hlLelCQAAAAAAChz-H", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "t4n19LeK4zvHCEOuBRHoDw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-uTvXT4fd_WKeR1cE-hlLelCQAAAAAAC-w3NXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJje6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIkMo9I8XHop3y7uLb8wdADAN______Aibs5", "types": "EwMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g0TcViARYA_NarblNdiqUQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmqQ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KUsQV-D79LhBqY3oMEarqg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-BdSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZz8", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FFVbA2EfVlyNzePqODxsIg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiF-kXT4fd_WKeR1cE-hlLelCQAAAAAAChWoTXT4fd_WKeR1cE-hlLelCQAAAAAACh0Sy", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kHBGm9hT2Ps-15ceIGS3fQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk6jz5k14PsCcDvFyUC1kmlV3QAAAAABFjYEz5k14PsCcDvFyUC1kmlV3QAAAAABGgQQz5k14PsCcDvFyUC1kmlV3QAAAAABF400z5k14PsCcDvFyUC1kmlV3QAAAAABFkWAz5k14PsCcDvFyUC1kmlV3QAAAAABGZEQz5k14PsCcDvFyUC1kmlV3QAAAAABGgUez5k14PsCcDvFyUC1kmlV3QAAAAABFkwFz5k14PsCcDvFyUC1kmlV3QAAAAABGPJ9z5k14PsCcDvFyUC1kmlV3QAAAAABGTGnz5k14PsCcDvFyUC1kmlV3QAAAAABGSag", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PwiymugfyWZ7JNBkVfJTzg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87XSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa84p", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XGi0gq3X0lbtkz60bv_FjA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBVv", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TpDEzWoy6rEMZYVF9eYCTA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFmUdcEvvhuguaGYCmGWrnWRz1QAAAAACExXncEvvhuguaGYCmGWrnWRz1QAAAAACEUnJ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oWsHJQGRgZYwHwaOMaB07w"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSHr", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3cwgDFIm8qbQUpUKfKmwrA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR1TSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa_-P", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "X1aHc6VUJ_Ut6oMpk8MSqA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACfZYJrmLEjznzm7GSiXKeulgAAAAAAAAAMjH-Kh7eMoVAEa99gkdQ-YQAAAAAAAAAWvtOmTuUGvKYiQRK_O9kHuwAAAAAAAADPPTQRd_ysoLKG-jbK5cWGNQAAAAAAAAAH8Q4lBCQ6qhqWPpxfEcKZ9AAAAAAAAAAA", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "e7kg8w388m41akTi9Kihyw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAGyVtVXhl6s6URamlTOMTdcGgAAAAAAAADcdxb67a9pdOnwKSyUl3yo7gAAAAAAAABYv6FgBz4wNTmr_DkVJTekGwAAAAAAAAAuFNq_EdcWL5MTMJYOwYzaCwAAAAAAAABFd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlscYYsnZ_Lwaqr0cHEPo0D185QAAAAAAVFpz", "types": "CAMtBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HYzllkhJBtq1_HQGHScByA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAABCxaYxe-SHgukLEpCkawSk1QWAAAAAAAANGb", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Fq5gtNQfWd1unM0EZse4Zw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAABtsrA9BuEIer7jJq6izjVFjgAAAAAAAAAVAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMLBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "z5-B-mtdUNg5G8Toj1uZ9A"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHiCEgtQ4kMk_MBWrPUAFqVnYywAAAAADHiVygtQ4kMk_MBWrPUAFqVnYywAAAAADHdlvgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4V0gtQ4kMk_MBWrPUAFqVnYywAAAAACG15kgtQ4kMk_MBWrPUAFqVnYywAAAAACG2E8gtQ4kMk_MBWrPUAFqVnYywAAAAACG15LgtQ4kMk_MBWrPUAFqVnYywAAAAACG2UHgtQ4kMk_MBWrPUAFqVnYywAAAAACG2ZKgtQ4kMk_MBWrPUAFqVnYywAAAAACG2vcgtQ4kMk_MBWrPUAFqVnYywAAAAACG6cWgtQ4kMk_MBWrPUAFqVnYywAAAAABuFXMgtQ4kMk_MBWrPUAFqVnYywAAAAABrKGxgtQ4kMk_MBWrPUAFqVnYywAAAAABqIIlgtQ4kMk_MBWrPUAFqVnYywAAAAABrntT", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5NYvRSd87djiQAuRZMHZrg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAAeOWoia3OO91L6Q6k2Ypn2XgAAAAAAAAAW4LWodyiv9Hy4HicwczMhQwAAAAAAAAAGYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADUR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAAAA", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JP-P1F5zqFUSH3g3y80Xwg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADCZLXXT4fd_WKeR1cE-hlLelCQAAAAAADCB9OXT4fd_WKeR1cE-hlLelCQAAAAAADB-g3XT4fd_WKeR1cE-hlLelCQAAAAAAC8B_YXT4fd_WKeR1cE-hlLelCQAAAAAACzCjLXT4fd_WKeR1cE-hlLelCQAAAAAACzD5GXT4fd_WKeR1cE-hlLelCQAAAAAACgaJP", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gWQpEA25V7CPZz_CbRPwlQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--hXXT4fd_WKeR1cE-hlLelCQAAAAAAC-9YXXT4fd_WKeR1cE-hlLelCQAAAAAAC-i2cXT4fd_WKeR1cE-hlLelCQAAAAAAC-iiEXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_Y9XT4fd_WKeR1cE-hlLelCQAAAAAACiFHoXT4fd_WKeR1cE-hlLelCQAAAAAACiKQzXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "18dt2YlDI5SQuyr5uDM2hg"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbsKZ3CKaS4aU08RhYA19y5ITQAAAAADKa9VZ3CKaS4aU08RhYA19y5ITQAAAAADA-P6Z3CKaS4aU08RhYA19y5ITQAAAAADA-VjZ3CKaS4aU08RhYA19y5ITQAAAAADA_c1Z3CKaS4aU08RhYA19y5ITQAAAAABv6YNZ3CKaS4aU08RhYA19y5ITQAAAAABv7o1", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "70FXRFUPPXVTyb52_Dovhg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_V7OcEvvhuguaGYCmGWrnWRz1QAAAAAD_ZSqcEvvhuguaGYCmGWrnWRz1QAAAAACXxxScEvvhuguaGYCmGWrnWRz1QAAAAACXzeEcEvvhuguaGYCmGWrnWRz1QAAAAACES--", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2CWGwjnZxZvrumi7qK8KzA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjD5cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLmm9cEvvhuguaGYCmGWrnWRz1QAAAAACLkFQcEvvhuguaGYCmGWrnWRz1QAAAAACLqC1", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pgb9JoAUQxoSCvdXn7xEkw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAABCwkYxe-SHgukLEpCkawSk1QWAAAAAAAAM8Z", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IJ27fYwHthmwJsRGiAhneg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf-g", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zcSEgSwv-OAVAhTXWGeqFQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzScEvvhuguaGYCmGWrnWRz1QAAAAACE_-qcEvvhuguaGYCmGWrnWRz1QAAAAACE_n2cEvvhuguaGYCmGWrnWRz1QAAAAACE-SpcEvvhuguaGYCmGWrnWRz1QAAAAACE_1rcEvvhuguaGYCmGWrnWRz1QAAAAACFX-EcEvvhuguaGYCmGWrnWRz1QAAAAACFYKxcEvvhuguaGYCmGWrnWRz1QAAAAACFlcEcEvvhuguaGYCmGWrnWRz1QAAAAACEhmIcEvvhuguaGYCmGWrnWRz1QAAAAACE_YncEvvhuguaGYCmGWrnWRz1QAAAAACFnTccEvvhuguaGYCmGWrnWRz1QAAAAACE9eTcEvvhuguaGYCmGWrnWRz1QAAAAACELBkcEvvhuguaGYCmGWrnWRz1QAAAAACEyqbcEvvhuguaGYCmGWrnWRz1QAAAAACFyki6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "DwMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4FcDW-9IPZrZmO_AgR-UVw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAA", "types": "CAOMBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bYOa3wUBO_fHKJp5WGlbmg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfxrm08oJc5xqpM1VweLZNZwAAAAAAAAEIFyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACAE1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAACS4b6Y6AxjtjqP_pey1p_yKgAAAAAAAAA46himjS-PpAivu9i1Bhv6aAAAAAAAAACVH0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsla3GUxZ_d6TdcMBptiLBKQAAAAAAAAAkuwSrGXrIlilHG9LeAbu8sgAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CANTBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZAomE2KxhcS4gmu1C8JgWg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGftXz5k14PsCcDvFyUC1kmlV3QAAAAABFsdCz5k14PsCcDvFyUC1kmlV3QAAAAABFPVk", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tJWsVLjM_WfOc08-LJ2QNQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_HL6OuA5BriS2w42aq9WRNQAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAcpSIXlNYnJYwCILAJFTEzSwAAAAAAAAAGTyuf4RNGIxt-ueaCsLj22AAAAAAAAAAXvSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0qlujNL7db72ZwWHkSPq1iAAAAAAAAAAa8tJujVK0pdTWlucWIQYskAAAAAAAAADWSXFZShc93P7Br4wzVi_TSwAAAAAAAABGl8by2NZ7WjCFmKmn5LkVDAAAAAAAAABNJj6ja2Wbkf1_R1a9nVWcUAAAAAAAAAEpAIW-lPQXo1TdAE_hNw_PqQAAAAAAAAAEaDG3558gasz8z0RSX2ge7QAAAAAAAAAEHJqIGeZuYXQ1QAO7hC-CpgAAAAAAAAAwz3OVwE39ldWnCO3e3J2ChQAAAAAAAAAXvNIlRmFlIZi4eEeFbJkdJgAAAAAAAAA1LtwWMtOCVYMwVl8TS_MduQAAAAAAAAAIPxKXTV4MDkHtmEvOc2iKdAAAAAAAAAAFOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOEnRoHyZazasm_zTjL5tnOgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMfDpp6LgRqCGeGjs7cnnwItcAAAAAAADsp46tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf", "types": "CANFBQIDDAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kAevgyPrUYMi1qMg2RT9YQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vNqXT4fd_WKeR1cE-hlLelCQAAAAAAC-ob5XT4fd_WKeR1cE-hlLelCQAAAAAAC-oi4XT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FQMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FvVELYKd9mRXwxXR-cNS1g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5WiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATeCaKzXzVKYqqs4wMxzAp3AAAAAAAAAAKxzEX_ryOXWtTMQZYJuG-1AAAAAAAAAAD2XDg5u84AThLncvQweEa6wAAAAAAAAI596H7IcrFu8Zg3f7WMu_LagAAAAAAAAAqztj5Yc58Fi74AN4K12GxCQAAAAAAAAAIeXp6ZabxmzABDzP1KpFPrwAAAAAAAAE4omklHAPZnqPNJHwVpvh2vQAAAAAAAACrqwPQ_i5WGexQYU8q8eVTyQAAAAAAAABzoSoGUxBn_MfT_4Ncm-yGtQAAAAAAAABGFjooOB7UnLRNkyMXgznjWwAAAAAAAACS-3Q9G0-gEaLYyR0fofTdFgAAAAAAAAATkC4ZWtnGZdVrn9r8RWDIrgAAAAAAAABBr9OM5jF9DDFNzREd89kE1QAAAAAAAAAEiBROdefyYqo_oyuWWpBVogAAAAAAAABCUzBLcYsYZ48ySlpYqqKUBAAAAAAAAABqJlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2r61dzvnqIlRPanoJT2RUwwAAAAAAAAABt7HZvD3A-BdlZ9nZFUQKcwAAAAAAAAAxqLsiw4JHLZl4BOwJ47AG_AAAAAAAAAAOLk-RuZWBbgkFTkFM8r-0pgAAAAAAAAB1dZtiAg2DG5nZJD2FzttFQwAAAAAAAAAH6Nl0gY43nPPrQT3jaCG99QAAAAAAAAB5PvsuEs2c6C6ecuTF-xQOfQAAAAAAAAADB1984Ng46sq2rHP9JYVyYgAAAAAAAAARNdnOauNqYT-cKE84qEP2jwAAAAAAAAANlsX2eCLSr4Q70_mA1t3KeQAAAAAAAAAoNB3KICW80r4krIyGFXIJIgAAAAAAAABZ2uEWBluAjlG6YATEmwlaSAAAAAAAAAFItIv50-9ZsDFG8OmfEZawCwAAAAAAAAAEaSd0IwCHi35NcDjaC1kTWQAAAAAAAAAEDp15X8uOBNJVZimWDCZGiAAAAAAAAABnzLx6iJ9ANFZvdAJHeiPhJwAAAAAAAAD_mzExXCPAxvBlsYOcwqbUPAAAAAAAAACELsrK9E-EO_ynQk-yDhFFiQAAAAAAAAAVvEf82IDRTNtSKS_YS3157QAAAAAAAAFI", "types": "CAM5BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rSr_eB05hnLSYA4C6q23LQ"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHiCEgtQ4kMk_MBWrPUAFqVnYywAAAAADHiVygtQ4kMk_MBWrPUAFqVnYywAAAAADHdlvgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4V0gtQ4kMk_MBWrPUAFqVnYywAAAAACG15kgtQ4kMk_MBWrPUAFqVnYywAAAAACG2E8gtQ4kMk_MBWrPUAFqVnYywAAAAACG15LgtQ4kMk_MBWrPUAFqVnYywAAAAACG2UHgtQ4kMk_MBWrPUAFqVnYywAAAAACG2ZKgtQ4kMk_MBWrPUAFqVnYywAAAAACG2xogtQ4kMk_MBWrPUAFqVnYywAAAAACG10LgtQ4kMk_MBWrPUAFqVnYywAAAAACGvTFgtQ4kMk_MBWrPUAFqVnYywAAAAABtRLHgtQ4kMk_MBWrPUAFqVnYywAAAAABriUA", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MkzulSfrhjve_NGjxalUxg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB8_Hwz5k14PsCcDvFyUC1kmlV3QAAAAAB8_Xkz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHphgz5k14PsCcDvFyUC1kmlV3QAAAAABG-csz5k14PsCcDvFyUC1kmlV3QAAAAABHCmp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjbU6tVKI4mSYDEJ-ABAIpYXcgAAAAAALio76tVKI4mSYDEJ-ABAIpYXcgAAAAAAL8kq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL8fB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL8cd", "types": "CgMNBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4Fi4uj8_8j0Q94aQJWSzrw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADem5p8puApNHgdtwb3aFhxPAAAAAAAAAApxDECjxfRDF0SAcicHv7yIgAAAAAAAAABSsODsFdp0k4d_SSQAFmIUQAAAAAAAAApzzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIcPy2QFuGdjzuVBNv2-JtzQAAAAAAAAA5FQVEqfdF3Gc5vOLVf8c4EAAAAAAAAAEpcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIiaYGOKrCYzeQFPvSFK3LGwAAAAAAAAAlcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAI3FmF0iegYInyRffZHSr8AwAAAAAAAAAv1Az5XiB-HqkM2KIxBs7pHgAAAAAAAAAzXmgLknRmXWrjNm14n69KUAAAAAAAAAAGcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAInQRJ3xr79n3cY6qS99IffwAAAAAAAAAE7EnnOhShMGZ9Te5BWwjtoAAAAAAAAAATopFI2iPPQrSoKgHSzuYsiwAAAAAAAAAIytmnDvqR2kv8bcodWBOqIQAAAAAAAABnKKci4M_8u3lv7Ydwxf31oQAAAAAAAABhsUo4V5ggmQmDpXEq3uSXMQAAAAAAAAACABipyEawAgbPQx-X36vFuQAAAAAAAAAnzwiX7AgVqL-aPC-SuEi6CAAAAAAAAAAHuC86pFXXnBLCj6eRRljPDwAAAAAAAAAQNc9gj1rv2NerZVTmjxTx9AAAAAAAAACGqN4Vqjijt0HHN8TkXT1dVwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAHCKeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARhG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimtb6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOK46tVKI4mSYDEJ-ABAIpYXcgAAAAAAlcA76tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbdH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlWJ36tVKI4mSYDEJ-ABAIpYXcgAAAAAAlsoG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlrpu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlqKz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlwjf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlN5a6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlNsK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlOPs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMub6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMqa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMWu6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgDv6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgCV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwA8J6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOBI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN1t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjNJshpS1QtdrBQjGg-LCbfqeSAAAAAAAAF7Q", "types": "CAMlBQIDIQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yVg35eksppyHad0lI1eXKQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66OFZ3CKaS4aU08RhYA19y5ITQAAAAAB610wZ3CKaS4aU08RhYA19y5ITQAAAAAB6vHlZ3CKaS4aU08RhYA19y5ITQAAAAAB44_p", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BAgXx8nEHPgn_EenyoZUug"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q6ocEvvhuguaGYCmGWrnWRz1QAAAAAD-SYkcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN5QmcEvvhuguaGYCmGWrnWRz1QAAAAACNw4r", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "T_m8wOPYHgqUseziTFic-Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-BdSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAacSS", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "q_0hpIuT4vi1WRoDxA9V3A"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPBxI5O-imEgV3N9x_K1cpQwAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAITQJwJt0-vl6QQoIDFyT9WgAAAAAAAAAmi8xLrghLCR3CLFjtylOjjAAAAAAAAAAkEu2eTQ_3gXX-hva2wFAN4AAAAAAAAAAHm_vFRi2fRRTLPHNf1t7ZcQAAAAAAAAAh0kt5JIbzOAHNLQd_C5h8UQAAAAAAAAApjDJzz1R3fHRGs25yj3SB1AAAAAAAAAAIQnmyhEe5Bxx-e8-BvuOf-wAAAAAAAAACIIfTHMWc7TP15Dc2y8rocwAAAAAAAABGi7ASJG3DvLBgruwj0ad0VQAAAAAAAAASYBDS5w3vAd7w2ndcl9HQSAAAAAAAAAAChPPBEZxjfFmd_9r0WtdWBQAAAAAAAAACIT_-mTvwNxwEOSrUYZ5mqAAAAAAAAAACx6EX384tUENsFfsbnVkfwQAAAAAAAAAFIfZRnPhrdzvTisUcmvGcBgAAAAAAAAAV", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AUziHZelmRAq_ogGLsAghQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q6ocEvvhuguaGYCmGWrnWRz1QAAAAAD-SYkcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbkcEvvhuguaGYCmGWrnWRz1QAAAAAD-LiFcEvvhuguaGYCmGWrnWRz1QAAAAAD-MfEcEvvhuguaGYCmGWrnWRz1QAAAAACETKccEvvhuguaGYCmGWrnWRz1QAAAAACEAd6", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Eh1qER1qLyoMW0w6ZkEkLA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB7b", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YQRMSvf2Ru8AcSIkw-mV5w"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOE1fYhCC-W9hkMRzkOdu22QAAAAAAAAAd", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kbEUN-QOQOIjM5mfj2ILfg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDAIcEvvhuguaGYCmGWrnWRz1QAAAAACuEFvcEvvhuguaGYCmGWrnWRz1QAAAAACuGfdcEvvhuguaGYCmGWrnWRz1QAAAAACuFZccEvvhuguaGYCmGWrnWRz1QAAAAACO_OecEvvhuguaGYCmGWrnWRz1QAAAAACOiXVcEvvhuguaGYCmGWrnWRz1QAAAAACNjqHcEvvhuguaGYCmGWrnWRz1QAAAAACLMXkcEvvhuguaGYCmGWrnWRz1QAAAAACIHr6cEvvhuguaGYCmGWrnWRz1QAAAAACF-UEcEvvhuguaGYCmGWrnWRz1QAAAAACGugycEvvhuguaGYCmGWrnWRz1QAAAAACGmwdcEvvhuguaGYCmGWrnWRz1QAAAAACGpoocEvvhuguaGYCmGWrnWRz1QAAAAACGsDNcEvvhuguaGYCmGWrnWRz1QAAAAACGKP7cEvvhuguaGYCmGWrnWRz1QAAAAACGMs7", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "B-XLpCbHVWJllSfmbTHDIA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPUhSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcNB1", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "O3Wm5BKcHbAbJgVLxR44SQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFlg0z5k14PsCcDvFyUC1kmlV3QAAAAABFlxw", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mD3V1vgmmXX17aY1Cc2kog"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAAAYGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABB5KDO11BWTfkkFO9MFEbTJwAAAAAAAAADoyUgxxOY520Rj3U8w5GHoQAAAAAAAADS_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhZsqFV6xhVekP5-uToPI32ragAAAAAAjkKW", "types": "CANPBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0ZMz3dJFvpx5F2-aEpHESQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAABhdSoizOL6hk_mFFoq9MTU3QAAAAAAAABuB6QzH7IpuJwFbrtDLFp9JwAAAAAAAABYzFcbYVPkWIQt-A6YP6TRWQAAAAAAAAABInomcw5lLBPZn2abZV5SDQAAAAAAAAA9", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mpnPy7d68UGd_rGkl2xRGQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAABDbpFrLpp87SutwNDP7V3ibQAAAAAAAABli98a9V97mb3FGgZG6edCFQAAAAAAAAAw_js9oXEovuvcenIstBqeVgAAAAAAAACzNleCed7iD5lY9FUQABqcFQAAAAAAAAAE56J_quP6E7ubMy0oFC4pVgAAAAAAAABq", "types": "CAM2BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cAz0gk7brP4PWna-bhJGIw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF_IhPXrChwahxbJ63NZZANQAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4rDcHLjUrpvKg-XXDfFGKmAAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADv9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABDHfFlM3axnhO28EteQn-2WAAAAAAAAABJ5utt2dQ8HKrTepHdNpprxQAAAAAAAAFzUP7wzdQXo1Tc_iFi4DuZQQAAAAAAAAAE9ZOKtWsgasz8zygdckTZDQAAAAAAAAAEEVcCXOQnkebnZR5Z6XcBvAAAAAAAAAA0SLm5iQaRU0eNqFhBMIrYxgAAAAAAAAAXvOoArOQsiI-woapVIk9zYgAAAAAAAAA1NnsXqH-CVYMwVp_zbU78aQAAAAAAAAAIQunNj1oMDkHtmA3AacNPUAAAAAAAAAAFx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAmO_rJUg-ExRMyey3rp6PrZgAAAAAAAAABhbxxvxJOxfsV5OtWN8pLQQAAAAAAAAABVFPq4x0a0zu-FLg9t0IvUgAAAAAAAAAb", "types": "CANPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "p0Pia_VKvNIpcjOrg5PBFw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAQgtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAH59i-wMdSlFTE9FP7ALC-fwAAAAAAAABPJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACamW1QO3T5kZR72H8FRXCCwwAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qwzw6oIfyawdflY_bB-eDA"}} -{"Stacktrace": {"frame": {"ids": "SHpn8pwAHiX47J0IzMtXvwAAAAAAAn5k3aS07d9PG4lc4UzuBbVWzQAAAAAAAiVUSHpn8pwAHiX47J0IzMtXvwAAAAAAAmibSHpn8pwAHiX47J0IzMtXvwAAAAAAE8PJSHpn8pwAHiX47J0IzMtXvwAAAAAAE789SHpn8pwAHiX47J0IzMtXvwAAAAAAFznbSHpn8pwAHiX47J0IzMtXvwAAAAAAFzBtSHpn8pwAHiX47J0IzMtXvwAAAAAAErlMSHpn8pwAHiX47J0IzMtXvwAAAAAAErV3SHpn8pwAHiX47J0IzMtXvwAAAAAACeuySHpn8pwAHiX47J0IzMtXvwAAAAAACag2SHpn8pwAHiX47J0IzMtXvwAAAAAACD3VSHpn8pwAHiX47J0IzMtXvwAAAAAACBi-SHpn8pwAHiX47J0IzMtXvwAAAAAAGS9USHpn8pwAHiX47J0IzMtXvwAAAAAAGH-M", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cpTq_fYtizjUZY0WgZic9A"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAOog03klALlTA3DUKeyZZ-kYgAAAAAAAAAHg03klALlTA3DUKeyZZ-kYgAAAAAAAAAHg03klALlTA3DUKeyZZ-kYgAAAAAAAAAHg03klALlTA3DUKeyZZ-kYgAAAAAAAAAHmidOaweFMMarPTWzdmC3NgAAAAAAAABPVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAAAe3bipPb-lPFytoX0zurH-oQAAAAAAAAAA", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UoCOFE0Ha3XaxXZbhILYDw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--RVXT4fd_WKeR1cE-hlLelCQAAAAAAC-7XmXT4fd_WKeR1cE-hlLelCQAAAAAAC-z7kXT4fd_WKeR1cE-hlLelCQAAAAAAC-1UKXT4fd_WKeR1cE-hlLelCQAAAAAAC-1BHXT4fd_WKeR1cE-hlLelCQAAAAAAC-1WEXT4fd_WKeR1cE-hlLelCQAAAAAACkR-sXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdCI", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Em3twIsXXSYKKY9obJCgGg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgJxz5k14PsCcDvFyUC1kmlV3QAAAAABFk6jz5k14PsCcDvFyUC1kmlV3QAAAAABFjYEz5k14PsCcDvFyUC1kmlV3QAAAAABGgQQz5k14PsCcDvFyUC1kmlV3QAAAAABF400z5k14PsCcDvFyUC1kmlV3QAAAAABFkWAz5k14PsCcDvFyUC1kmlV3QAAAAABGZW7z5k14PsCcDvFyUC1kmlV3QAAAAABGTAQz5k14PsCcDvFyUC1kmlV3QAAAAABGSeJz5k14PsCcDvFyUC1kmlV3QAAAAABGTQ_", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9fNDHkA5rTj57PGtFze_-A"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7RXT4fd_WKeR1cE-hlLelCQAAAAAAC-pCkXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CEu7QDQCpna6AMKIewlkmw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApygiinZb-VL-5X6K63nWolQAAAAAAAAAFsPRIu4G_UqOumyaMlOEsUwAAAAAAAABco__lFhTsOKstKDAfxbDtFgAAAAAAAAALJTnRsTPd7AHDTE96DfHcfgAAAAAAAAACTPgk3CweWzO9tVWjSu3t6AAAAAAAAAALGMA756PSHo5B_YmPM9fH1AAAAAAAAAA0w9EvqgSUrfSjTDJRVa3cFQAAAAAAAABNNHZIb934ydih1IKLBqCI5gAAAAAAAAACIwsijQDbvPiBVknFzNnSRAAAAAAAAAAJvfb9aCFliLFmJCtvbLn8hAAAAAAAAAADC6hdCXqj0oyVHhHOvhKmxQAAAAAAAABJ7-NWIMSLKY69QheXospWHQAAAAAAAAAEGOrFnkqGTEzDlTO1qewmxwAAAAAAAABQBA250vvzivD0xU5n0tBlVQAAAAAAAABngJGX9YLt4oQVT1mGe0oQGgAAAAAAAABPgdK-Z7OiQJ4-Vu9mxjvSjwAAAAAAAAEW7aQoN_s8X04jyh4gpnKxaAAAAAAAAABRcblhwFQdNeQr9L4l7DVdpgAAAAAAAAACxP8BEtTROcQjINLBdr_0HQAAAAAAAAB6eRkjYZu2KBOHIp1IQSjwWAAAAAAAAAAM1cGaBM0-rtiZfTyhOoVgPgAAAAAAAAAO7kmZ2O6hOV9dpjs-47j1SQAAAAAAAAEc5j2bttkvltKbwfcKsqCLqAAAAAAAAAEBcT0xsbXYEQkQw_3ez7RUcAAAAAAAAACc3xESPGl_P5B1-cPmnX20jwAAAAAAAABIC1-BZTtjTU0Wu8oyxUu-uQAAAAAAAAANw4xuPSDCtEkAq2ZfrK0cBgAAAAAAAACoTqtNNgn49BDdRi-fF4UZbAAAAAAAAAAL5piy223KGYDAFqOxbMZxAgAAAAAAAALzdoiA6ULFI1JAjBDnJzvkxwAAAAAAAAAKDmXwtW3wD4Vo-NlgA4cgywAAAAAAAAAJBXpLHI5fj3oBYjvlqi6ftAAAAAAAAABF7z_aEEIbY0SHAlNQDTWPQwAAAAAAAAANzaaCIflYBHWmB3T1CTSl8AAAAAAAAAAJHHFOpjnZ4WKPvAvOzntVegAAAAAAAADDWLlhHIaUYEsZJXHayBSVSAAAAAAAAAAH", "types": "CAMnBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sZEqvMD6I0UREvB3izGzGw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcQxTPNhFsgl-8e8i61Q7phQAAAAAAAAAnwnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAE8PySOWxdeTvWtl74Iv620AAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAn5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALCqHdoNRupr5ud0SEqGGzcgAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAF_Ngz1ncxudXrxSqiWBxoaAAAAAAAAAAETphZkORhkBDEbRDMofKltAAAAAAAAAChfNBUTxafk7cWQGRCQErWrwAAAAAAAABiTphZkORhkBDEbRDMofKltAAAAAAAAAAkljijwxlolNIlc2z0nvWGRwAAAAAAAAAW3kqb9iL-AByP8rRfsVhi_QAAAAAAAAAGLE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAChAAnABuJtrWflPvotxCoPjQAAAAAAAAFDgM-zvldT2mxZOhlxJvpRXwAAAAAAAAAXc0OkgT3_p45M6FsCvH3WnQAAAAAAAAAV9BsFwV8tobvksYfuNpORcQAAAAAAAABreSIi3bkabA8CnVTS1s4XRwAAAAAAAAAA", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rDY23NPQzaDDr0M473XGdA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAAAaI0QtQ3x5Qtt-qibQRB-qEAAAAAAAAACEwdRZBOgt1iAFeehFpb20mAAAAAAAAAAJ0Cdt9wyWxnG2B-xGXMO6owAAAAAAAADYVx2H7p06nNerPKpNR75HGQAAAAAAAADbRo0xTS_XLS48c7gOvsUW-QAAAAAAAAAiRuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAA51NxYsnZ_Lwaqr0cHEPo0D185QAAAAAAyeS2vQ7EacG6CR4rzcFaNFEsTQAAAAAAAPfQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCI46tVKI4mSYDEJ-ABAIpYXcgAAAAAAEusr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEuqL", "types": "CAMKBQMDBwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qkrlPnVIce6tMBVHgicCGg"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHsJJgtQ4kMk_MBWrPUAFqVnYywAAAAADHsO9gtQ4kMk_MBWrPUAFqVnYywAAAAADIfGLgtQ4kMk_MBWrPUAFqVnYywAAAAADIhWkgtQ4kMk_MBWrPUAFqVnYywAAAAADIkydgtQ4kMk_MBWrPUAFqVnYywAAAAAB8RDlgtQ4kMk_MBWrPUAFqVnYywAAAAAB8Ef9gtQ4kMk_MBWrPUAFqVnYywAAAAAB8CbIgtQ4kMk_MBWrPUAFqVnYywAAAAAB8TrogtQ4kMk_MBWrPUAFqVnYywAAAAAB8PIDgtQ4kMk_MBWrPUAFqVnYywAAAAAB1mFZgtQ4kMk_MBWrPUAFqVnYywAAAAAB1pOJgtQ4kMk_MBWrPUAFqVnYywAAAAAB1qXg", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "I_HDFrDrvMGFkT8QKDM_1Q"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADMb6rO_tpQt622H0nBBuO6SAAAAAAAAABQk_y3LYF-5hABRlK2M6mO7wAAAAAAAAAQQnopTe1pxTR1kVhVN4qn2QAAAAAAAAAjrUHBgSz_SQE-q7C0lnDupQAAAAAAAAAJ6dizidRtpqcGmpShAjzttQAAAAAAAAAVXzWVAFfWPkx_-5DzBgosgQAAAAAAAABhtzBcwDe6SUq4Jkyew2O5egAAAAAAAABkB9gbZBZ1iVM7gT0HZmJLewAAAAAAAAAHcjIhOkmIqJlptkEMROl1nQAAAAAAAACq6USsxK9B_4KIBPducSSyDQAAAAAAAAAE1aDz61znUKxhB_Z29RmgmwAAAAAAAAABomaTFkJcQqn9_c4IoN5bogAAAAAAAAAA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_NQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaQ66tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaAU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIbSV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIZiK", "types": "CAMmBQcE"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UsU0osaCNAmSunlpUc3Ozg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAACEiSUtuDFidZ_ArB9M-KYzuwAAAAAAAAAqAAahb89jp2nXTHxX6vfDVgAAAAAAAAGxfNq1xcdgQyMKMcU704EIcwAAAAAAAAXHLlS_2xs10ssihc5Uh6NqzgAAAAAAAAAf", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7E3wyc4NU7VCrTPNTghNCQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF353Bbxw0b5wHlGJY1WEVWAAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4bWZWPptWisqbpRDA9X8cNgAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVamhiroi9lH-AuCvUISnaLwAAAAAAAAAGQoETQaJh4hk1PJNhgxG6YQAAAAAAAACeJn0UNoyB8RODf8CSewSSrwAAAAAAAAAd4ATwOy2xX5oIgSybARkoywAAAAAAAAAFk0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB0qRvG2N9iYeFyl-3xULRJEgAAAAAAAAAe1xeqGUZm5RNvukFb2REJKQAAAAAAAAAIFtjh-A3lytsNmmUroc108AAAAAAAAAACuimFkk5UuxbH1IL630LmngAAAAAAAAAbVPtMofZCgqrw-l9pGX7aHgAAAAAAAAADRSgrZm24iCMR6dfllqWutAAAAAAAAAAaK_N78LhUkthI1fnHsP1_6gAAAAAAAAC1", "types": "CANEBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1QT_0k1qSEqNIoe2v3zsJA"}} -{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACindAJ6GSZQSmfOBquczb-SF8bAAAAAAD_GHpJ6GSZQSmfOBquczb-SF8bAAAAAAD_GN5J6GSZQSmfOBquczb-SF8bAAAAAADJL2uJ6GSZQSmfOBquczb-SF8bAAAAAADJL_nJ6GSZQSmfOBquczb-SF8bAAAAAADJKFJJ6GSZQSmfOBquczb-SF8bAAAAAADI9o6J6GSZQSmfOBquczb-SF8bAAAAAAC0t-xJ6GSZQSmfOBquczb-SF8bAAAAAAChGUpJ6GSZQSmfOBquczb-SF8bAAAAAAChIbFJ6GSZQSmfOBquczb-SF8bAAAAAACioMz", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "acgoKBxSl7O4j7VOkIDurg"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHh-EgtQ4kMk_MBWrPUAFqVnYywAAAAACIsVKgtQ4kMk_MBWrPUAFqVnYywAAAAACIsMZgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4WlgtQ4kMk_MBWrPUAFqVnYywAAAAACG2jCgtQ4kMk_MBWrPUAFqVnYywAAAAACG2ppgtQ4kMk_MBWrPUAFqVnYywAAAAACG3SIgtQ4kMk_MBWrPUAFqVnYywAAAAACG2jCgtQ4kMk_MBWrPUAFqVnYywAAAAACG2ppgtQ4kMk_MBWrPUAFqVnYywAAAAACG3SIgtQ4kMk_MBWrPUAFqVnYywAAAAACG1QogtQ4kMk_MBWrPUAFqVnYywAAAAACGqesgtQ4kMk_MBWrPUAFqVnYywAAAAACG74tgtQ4kMk_MBWrPUAFqVnYywAAAAACHjlTgtQ4kMk_MBWrPUAFqVnYywAAAAABqHzq", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qP-re8P6QAZOuUpAbsv0YQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChlYsXT4fd_WKeR1cE-hlLelCQAAAAAAChdvPXT4fd_WKeR1cE-hlLelCQAAAAAAChdB_", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ch3muNdb91l8mJnrRw326w"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVol4NiJXXJMXv7q-6-A_O4QAAAAAAAAAMIXD9DfG2D0upvhc5-UHkHQAAAAAAAAAQbg7sAxk7-DRFbqsjDXXUPgAAAAAAAAAQOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYd-yaMT2eqIGS5Mntl0M-0AAAAAAAAAALM87JWO6FKSokmgyC0_oEgQAAAAAAAABLxfK7mU49uvf767hhXL1_ZQAAAAAAAACE-2jFRd2_IccI_VSYieucdgAAAAAAAAAGmFI6bnpBK3kAEbXHdNa8MAAAAAAAAAAH1fE-A15-sG5pm2Nv6tb9vgAAAAAAAAANZPj7hBwVwBgbmIyyLEMkNgAAAAAAAAAMik02Bt0VZFoUYdNhARf6ugAAAAAAAAAH1fE-A15-sG5pm2Nv6tb9vgAAAAAAAAANJKjf0pZHg3dzwDeAqfO16AAAAAAAAAAEsyuAMg3RShupVDY63eHfbQAAAAAAAAAHMrVvriJqF-HOpa8js-mFagAAAAAAAAA3bC4xUO3cZ_wW8IEDAJ-BNgAAAAAAAABGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAm4yG9IdLfPOQJQp1BxdOq7wAAAAAAAACfEgnEAYVJO6evUZwnNI7NMgAAAAAAAAB05zxpGeZtVFjxV00AgHRxwAAAAAAAAAA6JDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFYhLUfql-5LQM_JtfSo3-RwAAAAAAAAAgUyl96nbKrz6UOSXSc3iffwAAAAAAAABDmWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAAA5iVAG_A7s0Zt5xBxFujwmsQAAAAAAAAApvX-mC67g6JXGX3gq3Q5XWAAAAAAAAAA-WdP0jKvbSW-F3IXqFZzXpQAAAAAAAAA5gNahpaWcgGeu0iqUthbPiQAAAAAAAAAVaxmxxkAHJC4ByiJioWLPsAAAAAAAAAAgEI0nZWypt5jjgYB1wTwJeAAAAAAAAAAWYzwvhJEECiVq3OZiyG7BvwAAAAAAAABSpOUGa4nlXTzn3bJ7pH2ySwAAAAAAAAAE", "types": "CAM4BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tALP4PSq-pTzVgkPI2BjaA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAqeSs1xpPdaQi6BA9wz10SrwAAAAAAAAA5TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABAXyIB1JXxkoOQjMae8CICgwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAAAL6VgifDx_vRg8rUeffXssrQAAAAAAAAAj5r8KpdovvRTGdEVpy5WVpAAAAAAAAAAz", "types": "CAN6BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AePsFsEWIAKcD6i5fTcKwA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAACwH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACXFDHy--PvgHpUWFquuqO7RAAAAAAAAAAE4Oh7C2JW2-6SkQ-_bQ2jPgAAAAAAAAAA", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jV0cBQfixQcleXHjzqFw0w"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABZ", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mG9aHndsiNY_nqP4GgB4qg"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACAO8IZ3CKaS4aU08RhYA19y5ITQAAAAABwW6UZ3CKaS4aU08RhYA19y5ITQAAAAABwY_IZ3CKaS4aU08RhYA19y5ITQAAAAABwY2EZ3CKaS4aU08RhYA19y5ITQAAAAABvuDyZ3CKaS4aU08RhYA19y5ITQAAAAABv0UtZ3CKaS4aU08RhYA19y5ITQAAAAABv3TUZ3CKaS4aU08RhYA19y5ITQAAAAABty9FZ3CKaS4aU08RhYA19y5ITQAAAAABty4z", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JCIWb9sew42V-gStKG8h5g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAAAaI0QtQ3x5Qtt-qibQRB-qEAAAAAAAAACThCWXheJHN8qcUSKz5GzcxAAAAAAAAAAEcGonFmCxGC0dUZ5gEg0KQgAAAAAAAAAF0Cdt9wyWxnG2B-xGXMO6owAAAAAAAADYVx2H7p06nNerPKpNR75HGQAAAAAAAAC4jxC-yJ269vYCy31KbC4fCwAAAAAAAAAgc7Y6qNf105blezu_vIWQRAAAAAAAAAAWhGSV5zKrRFpCoM5XmwxNpAAAAAAAAAAH_56OZ5ZdGG3mX9wz1zNHYgAAAAAAAAAURuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAA51NxYsnZ_Lwaqr0cHEPo0D185QAAAAAAyeWKvQ7EacG6CR4rzcFaNFEsTQAAAAAAAPOC", "types": "CAMOBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0Iji_zQRXoBblaoaKwHTcQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JT_5OseDCbBwbh6-ei601g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAV2c9TATIrCMgoDoZOxrWO6gAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJuxWu7bOCGuvy3Ir42torwwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAWZvnSEZ6hxckmxa-z2abTjwAAAAAAAAANeZn3IOB-FE1r74FZypzHhAAAAAAAAAAGp-hz1y_-cXtA7Uo61H8OwAAAAAAAAABOb5D4G32aP0YH2ukb-bXGLgAAAAAAAAAdk_s_ITRPELxw2Zk2jzGG8wAAAAAAAAAINleCed7iD5lY9FUQABqcFQAAAAAAAAAE56J_quP6E7ubMy0oFC4pVgAAAAAAAADG", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SuyrLdAGlB-Gqd6pTlCwTg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-uTvXT4fd_WKeR1cE-hlLelCQAAAAAAC-w7kXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBiZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAANr3F6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFdKO", "types": "EQMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LecKeTt-RiFscqL1ypA3eg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgLJ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "o02UcgaTacPmYjOwwPOCJQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQEI2MlivQ_yGyq36LnLAGeQAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQOUV_Man7LKpLI_xXeAvtgAAAAAAAAACeM1U5MRplArg1qeEAEk5MlAAAAAAAAAAYNK6q-mYZhWe1E7afoKkwiQAAAAAAAADYr6Fg_DPZ96geKIjDaUl37wAAAAAAAACsmdgXK8UgXxJq-aF0PWZBWQAAAAAAAAAMuHXk96D_H0MjX0tAh6AHfQAAAAAAAAAGBQgPvwiw9NNbOJgDcqi8DAAAAAAAAAAtD8SuOAHHuRsEe9MWrwApVgAAAAAAAABUpD64Y8dYs0KzJcRfejjvpQAAAAAAAAHnjYKah-GaJpbI-jAwYcFi1QAAAAAAAAAIbu6t-WTb-nsfb-QwFBEV_QAAAAAAAAA9D0rVr9r2i8CRuvzOSp3RnAAAAAAAAAACqk_n1ecQPsBsNva7iBiLPgAAAAAAAAAFpE_XF-eq0tBl0fP7Y7zrSwAAAAAAAABpYav7N1kdPMXfEfZ1xXIznAAAAAAAAAANDYw6-LyNoVsQdM43hcJCegAAAAAAAAAI3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAA8c6UeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAOjK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMyBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tVG5BmNboq64Jjq3eLhTAA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-wCEXT4fd_WKeR1cE-hlLelCQAAAAAACkR-sXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdNF", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ryfu5a--oA0HxtDhUCtdpg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFlWL", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4uPdEWYsvs4SFw1vIspTAw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUpA", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YLcFpzDQdtlqJCOlCEyl9A"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSLg", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-o3RzId6UYrkAkG0OoSJYA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAACKf_a_qdoBA55O8a7qgwDK7gAAAAAAAAARuZeXOJajIKqLKk4-05Cj8gAAAAAAAAAIfx2qpzR4SW8k6QF4h_x-lgAAAAAAAAACXWhZGeSVw3QL-gA2NjTItQAAAAAAAAALcrJxfOZekEO297SoXoFNvwAAAAAAAABEz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABB5KDO11BWTfkkFO9MFEbTJwAAAAAAAAADoyUgxxOY520Rj3U8w5GHoQAAAAAAAADS_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhO2", "types": "CANVBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yZrBKxKhbw4I5T2D2ia0Hg"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66OFZ3CKaS4aU08RhYA19y5ITQAAAAAB61zNZ3CKaS4aU08RhYA19y5ITQAAAAADRyEbZ3CKaS4aU08RhYA19y5ITQAAAAABzIfkZ3CKaS4aU08RhYA19y5ITQAAAAABwM9rZ3CKaS4aU08RhYA19y5ITQAAAAABtmp0Z3CKaS4aU08RhYA19y5ITQAAAAABtFmM", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xRhapVs8DimQtljSm9PXHw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAAA65FYxe-SHgukLEpCkawSk1QWAAAAAAAA8D0Yxe-SHgukLEpCkawSk1QWAAAAAAAA_IZYxe-SHgukLEpCkawSk1QWAAAAAAAA-3HYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xWQBAJ7ncYkjoV_tk9YLSg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQ9zOECVMFUE-sRNeQZ1HM6gAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARTZwep2BdnG6Mdu9AQocnMQAAAAAAAAAGCMCWh32oer3bDaYggVtoUQAAAAAAAACHHCW9gICkV36t4oXsjBpsdAAAAAAAAAAE_WhLMAElKfp9RHy9XD-HOQAAAAAAAAC3qkXC9AzfY8U3Ryc9g3OFDAAAAAAAAAAsccTvkbbzG7ITlutNR0SvYwAAAAAAAAAehu0S-fYG_gY_Otgg4IzKXwAAAAAAAAErXey4TSJt8z1Y1xeGVvkdYgAAAAAAAADB6fJMpXGng7X5bTc2KsPuMgAAAAAAAABSD0g0ITB6vPs-JMXU6kB_IgAAAAAAAAAETnmpwdT1yeLDbWlRnUic2QAAAAAAAAAHnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAA-DaVWIofPTETqopDkVERGkAAAAAAAAAATwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF2mlzHMlWgLtS4AXchUZGuQAAAAAAAAAIqThtgbHprFVYaxHnWJ5r2AAAAAAAAAAQ37kdvsyygZea642hUZCb9QAAAAAAAAAdvxAO4ozw0ZRvb8q4djSlogAAAAAAAABEwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFx4xnJ8Bvv3cqGQOknqJJwAAAAAAAAAIURrpT79Wm1-567n5aqJlbQAAAAAAAADL3bzfPK0NZtH4PhiksXncvgAAAAAAAACOotzl_-UJZ6X4M1v7YRzHZgAAAAAAAAAId_mdgff0kSRs-ewuuAGS-AAAAAAAAAACYpb1GyaDgfO6SxUxbAvctQAAAAAAAAAIyHxJa10zF8jCmhZDUlRioQAAAAAAAACJjOKHIn-OfmVASZP9y1NSfAAAAAAAAACHV9nsBUwQwMn84PajbyjYtAAAAAAAAAAYX6qt9XlU0IqttZBt4TnwZwAAAAAAAABHwvXjE31kESML0je4-Me7hAAAAAAAAAApDRApe1cPTh2-wFVHvKmI-QAAAAAAAABlfedIGTz7oXcPN7rVsxHwdwAAAAAAAAAMyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFq-Wp_fKqnzituNc-kKOtAAAAAAAAAAUpYMvKU2r2nETpEeIP80PQQAAAAAAAAA38jMyW-WmlGRJvr5T2b-plgAAAAAAAAAFwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0_JZyYR0Vno863IcUXpa7AAAAAAAAAAQGiPQYuBqA4onG16OCBJr7wAAAAAAAAA_wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF49P_FduVXL-1HnETkDgpjwAAAAAAAAAcS_CL2qp_hCoxo4NMBjattAAAAAAAAACntgTcpaw1PHSeu1PntXA3fQAAAAAAAABtVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFW_JPjd1DkAyoubIfHSaORAAAAAAAAAAMro-nOR8Y6-xR_0NZHNxiswAAAAAAAAADGAKN4IA59Oyrw_sFixA19QAAAAAAAACoj8cyxnhvgCmiV0wfzWt-5wAAAAAAAABH4_Wu3cP_1KUTQF00Htx73gAAAAAAAAA6v6A2aEAJbkezThEe0LppjQAAAAAAAAAIAHE52dyzEEDlVbgj_xFoxwAAAAAAAAAVwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFR7Hj9yPeT2EDyEr2K8ONTgAAAAAAAAAYg9D12vCHvqmadcctx-s3mQAAAAAAAAA7dAHd9ndNzEhU1GyagepTAQAAAAAAAAAlABk6RqRYy5QsiYS0AnfFrgAAAAAAAAApwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFtM8VFC-6NwJWsTojOgeMHQAAAAAAAAAMgQianSpTZDlq5RnHMXwrkgAAAAAAAAALwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFIg4O8IWFanKbF_VU4hFAfgAAAAAAAAAY3JOiPEBqME3dIDTotL2-UQAAAAAAAAAi36WCeR5NbgRZnRrGA9E9SgAAAAAAAAADgRMnqp8BzO8vF6IGZv8EFwAAAAAAAAAF9JTwb1xrnBs0wRDjaFu6OQAAAAAAAAAEfKA-P04oGeqRcPbw_KcplwAAAAAAAAACzrUlifJLvvERDLLhil2q8QAAAAAAAABBQd5BzOrQqNPF2dbzaWCiSgAAAAAAAAAxI-sh7YDA3eXRF3pcvPl6xQAAAAAAAACGG2Gr0Endt8yd9TWwB25Y2AAAAAAAAAAEQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABiLzmLpiPfmTPhvDqa5Vct1AAAAAAAAABFRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABP", "types": "CAOQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uxJxXuPY21qu4ZQy4Vt22Q"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LMXcEvvhuguaGYCmGWrnWRz1QAAAAACETT2cEvvhuguaGYCmGWrnWRz1QAAAAACEP-qcEvvhuguaGYCmGWrnWRz1QAAAAACEOMYcEvvhuguaGYCmGWrnWRz1QAAAAACENOEcEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEWPx", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MZ2ns561NqM1CIUtwsXKqA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcQxTPNhFsgl-8e8i61Q7phQAAAAAAAAAnwnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAE8PySOWxdeTvWtl74Iv620AAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAn5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALXjhdv_h9QN2xNJLPLw-Q9QAAAAAAAAAIEhfrv6pp0yJIe59dBGi7sAAAAAAAAAAIyBBi5timxwFNiZSF0GVzHwAAAAAAAAATxVOmAk0hLEywDTna7YZ20QAAAAAAAAAMDNJw_Ya3dFZ94ASbPZxv6gAAAAAAAAAGHVhQ434ZUWqRQ1_LQX_XpwAAAAAAAABkVwaGRjsI3iJyn8klEZc0AgAAAAAAAAAcbncHe-mA3hsO-pdShFcnzQAAAAAAAAAESXl2S9Cin3OSJJ8QmrqVDwAAAAAAAAAILTyLcxCjCWE0-UMDXjVNpQAAAAAAAAAwv7NZn75ARbCs3HYY9Fl9agAAAAAAAAAIbWvwaQ-L9lsicFq6vqiqCAAAAAAAAAAA", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gO3h9sz_Pp88e_MYvoWQhg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAABAHHYxe-SHgukLEpCkawSk1QWAAAAAAAA-tUYxe-SHgukLEpCkawSk1QWAAAAAAABFLrYxe-SHgukLEpCkawSk1QWAAAAAAAAYsE", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BDM5FGocWkrUljGSyVLiPQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAABu1IhEUKf_PDCxfheapNhvQQAAAAAAAACIGS-BM31ayIfhOMl6o8fHjwAAAAAAAABu7zPKGV-eM0z3BYd8xdD0NwAAAAAAAAAHjH-Kh7eMoVAEa99gkdQ-YQAAAAAAAAAWvtOmTuUGvKYiQRK_O9kHuwAAAAAAAAAC", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iUnfb2tG1dlb7pOItjVV-w"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPBxI5O-imEgV3N9x_K1cpQwAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAITQJwJt0-vl6QQoIDFyT9WgAAAAAAAAAmi8xLrghLCR3CLFjtylOjjAAAAAAAAAAkEu2eTQ_3gXX-hva2wFAN4AAAAAAAAAAHm_vFRi2fRRTLPHNf1t7ZcQAAAAAAAABJBFA4SysMtx9fo02P0NGNMQAAAAAAAAAa8ijKSIS-axMtZNAQCt9HjQAAAAAAAABJ1vp7uJIrygtcfnEawBUBQQAAAAAAAAAkzDs4yc-dGN2Q-peutZekXgAAAAAAAAAX", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iAyna-aTAn1PsVqMhzzlmg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgKO", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ROD9hyXKyG1xyIp3eNp24A"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAArGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAreC1ezKjb5n0AmQucckax6gAAAAAAAAB8j6lTWpvLdhLMziAIojgZ2QAAAAAAAAACZuiJGdMTgqCiSwiPmMfXSQAAAAAAAAABGOcPlET8lxz6w9LoJqKjeAAAAAAAAAAGEMyu4kjP7CMJCtMZjoFNnQAAAAAAAABsRIm8jbjeC3SfOmyAcdCaLgAAAAAAAACJ", "types": "CANDBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rjNVMj90Vubz91AMpodGGA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPUhSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcNAq", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "n021nAexdd_F-L49egYEAw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAAAjj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABT", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eHad6fXlNZDDIqYPS_NA_Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbPkXT4fd_WKeR1cE-hlLelCQAAAAAACi_9XXT4fd_WKeR1cE-hlLelCQAAAAAACiJjoXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJje6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIkH", "types": "DwMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1uuXblpY2G2lwZnvrUD5aw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACl", "types": "CAOLBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "efbR3WWiUOAtCglTIhsrqQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAazVvSNDzWiYDmLZi_Z1ZVETLoAAAAAAAayyfSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcOjMSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcT6QSNDzWiYDmLZi_Z1ZVETLoAAAAAAAb60KSNDzWiYDmLZi_Z1ZVETLoAAAAAAAb9_zSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcByF", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DnkK77oJ5OEGMcCjv0REHA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACa", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mTpUz_E1PPzj0HR92ABMpg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFJSGf2yEAEhxiBfW1U6B9NgAAAAAAAAAEv-dzrDzLbKAbYGTnBhfr9gAAAAAAAAAM4iaBbZIIwXRBOYMSVscz2wAAAAAAAAADf5pCmW13zl5OWUDLG_ClrwAAAAAAAABNynHqfILVzOOqJs-5yJf4gwAAAAAAAAAeU2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAABU3F2z0U59C1y3O1vSXqnJygAAAAAAAAAc6_xlTgG59vnh1ZByxJjaSwAAAAAAAAAc-l0CA__xQUD7yFObowoRZAAAAAAAAAAFmU1sjFC3gdUeQiL-LXu1AAAAAAAAAACg", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LO6aOR7Ea3Syr6nMwmmQpQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAALY69pONqxP8-okyxfNdJq0BgAAAAAAAAAT84y2a9q7-onYC7ofRQhclAAAAAAAAAHbdVre-yWU3wOgyoQuLjZhuwAAAAAAAADHqsf4oB191Ejhqczjg1I-pAAAAAAAAACSgFXgmnzAOaiXP0kcTIOBKAAAAAAAAAAXRvwWnGu8aNVctUqI75kRlAAAAAAAAADhBEHb4enMXpAQTkYNH-EvIgAAAAAAAACD", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g5lILDW4r2wlyzbt5lq7Iw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ4P", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "olxENnVm98xfSUbHZlsIjA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAc8s5hM6TvWnoP9XP3e8VVVwAAAAAAAAAHwh6xTQPkmoOUUrUOOnnNsQAAAAAAAAAg", "types": "CAOOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IHmYRt_J6aiZwjhJjkM_cg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABgzj8z5k14PsCcDvFyUC1kmlV3QAAAAACFH_-z5k14PsCcDvFyUC1kmlV3QAAAAABhYaHz5k14PsCcDvFyUC1kmlV3QAAAAABmRWHz5k14PsCcDvFyUC1kmlV3QAAAAABmMwQz5k14PsCcDvFyUC1kmlV3QAAAAABmP_4z5k14PsCcDvFyUC1kmlV3QAAAAABmP5wz5k14PsCcDvFyUC1kmlV3QAAAAABSO2cz5k14PsCcDvFyUC1kmlV3QAAAAABSOAgz5k14PsCcDvFyUC1kmlV3QAAAAABSWD5z5k14PsCcDvFyUC1kmlV3QAAAAABRyDZz5k14PsCcDvFyUC1kmlV3QAAAAABSmpsz5k14PsCcDvFyUC1kmlV3QAAAAABSP5Ez5k14PsCcDvFyUC1kmlV3QAAAAABSCCQz5k14PsCcDvFyUC1kmlV3QAAAAABRsCfz5k14PsCcDvFyUC1kmlV3QAAAAABFX07", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PaAhGTZhdMpehXmqOre8TQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAANSF3u75PFaKMThRw4BoUVwCAAAAAAAAAB3JzR1Che7ZkqwAcPrDIhJHQAAAAAAAAA2414vwxwFz0HV2Ku4dzYYowAAAAAAAABPlF0402c3xDTaGy1WpLy7vwAAAAAAAAA-4ExmIEmG5cbeqkrcSlhsEAAAAAAAAAAH12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG7kZxFgbuXnmF5RM9H_z_ggAAAAAAAAAXNKoRe12iMWSiZOszytfhXAAAAAAAAAAlU4lpDWiuR28XLSFBPsNR-AAAAAAAAAAof15ZZuvJposXWOcmbKQgxAAAAAAAAAAftL230chqNUuroXAS-gtapgAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAAABVkHxfHJyyDbxUBSn_ME46wAAAAAAAAAZiXWHNd_y-hSLbIW9XiqyhgAAAAAAAAAB14InJKOec9dSO7frpfbiGwAAAAAAAABf", "types": "CAMxBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YtXvff3EKZwAqNYCPh_G8A"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAAKkiFL9Bd3XIiGWasJdN8trI5tgAAAAAAKfbaL9Bd3XIiGWasJdN8trI5tgAAAAAAKfEoL9Bd3XIiGWasJdN8trI5tgAAAAAABqvmL9Bd3XIiGWasJdN8trI5tgAAAAAAFlDpL9Bd3XIiGWasJdN8trI5tgAAAAAAEl1HL9Bd3XIiGWasJdN8trI5tgAAAAAAER8eL9Bd3XIiGWasJdN8trI5tgAAAAAADHTjL9Bd3XIiGWasJdN8trI5tgAAAAAAB-zZL9Bd3XIiGWasJdN8trI5tgAAAAAACA4_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTih6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinDe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnJ0g6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnJQc6tVKI4mSYDEJ-ABAIpYXcgAAAAAApymx", "types": "CwMMBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xZcpIqjO8GbOGxvXYAifsA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlPqcEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf_G", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VaGG1TY-seWlRMIXhOJNsw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALARLuf1htvrklOOxyKnOopAAAAAAAAAABTBtZO3-vmynkHlKuzsN9UQAAAAAAAAAyn55ZjUBJzU7CnzmyoRyorwAAAAAAAAAk5Ib9omL2d9xqdBKBL9VmGwAAAAAAAAAAqFV6xhVekP5-uToPI32ragAAAAAAmMkkqFV6xhVekP5-uToPI32ragAAAAAAxn1ZqFV6xhVekP5-uToPI32ragAAAAAAxnpttQgAmBJBgPLrkikSPRsmtgAAAAAAAL3h6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMGBQQDCQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "e-T0iWff_O-Pyy2T4tpPxg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbOkXT4fd_WKeR1cE-hlLelCQAAAAAACgSKQ", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "L3YM-JzWQGZBl6Hww0qX5Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR5ISNDzWiYDmLZi_Z1ZVETLoAAAAAAAcM5h", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fQiJSfBrHoS3h5i-nuWFRQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQEI2MlivQ_yGyq36LnLAGeQAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQOUV_Man7LKpLI_xXeAvtgAAAAAAAAACeM1U5MRplArg1qeEAEk5MlAAAAAAAAAAYNK6q-mYZhWe1E7afoKkwiQAAAAAAAADYr6Fg_DPZ96geKIjDaUl37wAAAAAAAACsmdgXK8UgXxJq-aF0PWZBWQAAAAAAAAAMuHXk96D_H0MjX0tAh6AHfQAAAAAAAAAGBQgPvwiw9NNbOJgDcqi8DAAAAAAAAAAtD8SuOAHHuRsEe9MWrwApVgAAAAAAAABUpD64Y8dYs0KzJcRfejjvpQAAAAAAAAE6DAUA7GSw6Ke6rbTnHSbHTAAAAAAAAAAFrfpbxi08JBhqazPMQvbg-gAAAAAAAAAFTPLqyj5ItvEm4kc0Eq86ygAAAAAAAAAGGdhxFD1IejJtAWM_J6NGiQAAAAAAAAADlvoth1Z8IMPusCEFP-Ut6wAAAAAAAAAhDZddfBvYb4vbUguYaeOZzAAAAAAAAAAFFOAg8bj-FD7Cz_S21bzZIgAAAAAAAAAot5sl_qj7EDFdA1b6w0-42gAAAAAAAAAgZG8Pp6zNb-XHIUlPQm4blAAAAAAAAAAFibOgWMru0lEQy3d0V2jxaAAAAAAAAAAHNfM0LhQlSM_JpwKY-QxdBAAAAAAAAAAJDONweA9992Oe2oiaVQ3GlgAAAAAAAAAFKr0QIGJ2ub9xqAd37eK2lwAAAAAAAAAGNnN5Fsnt_d-Bxk4pEV1m1gAAAAAAAAAP-cOBA-gSyiFk8KwdWTvtSAAAAAAAAAAPb-SvsIOA8Aq1x7Kof8KBfgAAAAAAAADuP_3hnqJdZ1Hqt1-CwCB1tQAAAAAAAAAA", "types": "CAM7BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hLX1mOZZ4FB_ggjZCD1W-g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZvO", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GSPW9ejYGoryJizaJVvA_g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ0N", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "n6EgKcwZlK3OnMM95lvD6A"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbh0SYxe-SHgukLEpCkawSk1QWAAAAAABVxxGYxe-SHgukLEpCkawSk1QWAAAAAAAAQ_VYxe-SHgukLEpCkawSk1QWAAAAAAAARHN", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "M8PQiFj2pfLsH3aiHHnZSA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAAV_QheDKcYlWwsFE4koFnZNgAAAAAAAAABRMYtu6lQVhfanHasngCNQAAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "acGHnAm6JFFvJ2ZoZKt_fg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcM9Xltn711KKFcrKCAYh_ZgAAAAAAAAAA", "types": "CAONBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wMYpNYJGdYQOQzp2QFWVOg"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbuE", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "n1Ma-6R1TuGNeT2qh3rpLA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIcA", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Iz58o69gDrMyQIJrUSlESQ"}} -{"Stacktrace": {"frame": {"ids": "NH411-U9ZJbhx9KntPIOtAAAAAABaTly6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEMf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD5P6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAwsz6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtsO6tVKI4mSYDEJ-ABAIpYXcgAAAAAACfMS6tVKI4mSYDEJ-ABAIpYXcgAAAAAACeoV6tVKI4mSYDEJ-ABAIpYXcgAAAAAACVZ26tVKI4mSYDEJ-ABAIpYXcgAAAAAAJips6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJloA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJlfo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ-6Y6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIqjd6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ2hj", "types": "AQMOBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1tQ4s1_uuQscYA1lUCsKxQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LHJ", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "t6ufu4-IpYRs7bFVfd4NLw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAXlcMfqnb6mHe6lwomeyL_PcgAAAAAAAAARh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAANIfYj4waw9fP9op8fikoTJgAAAAAAAAAGmHLbruajf1ewhD5eRLIwPQAAAAAAAAAEIfYj4waw9fP9op8fikoTJgAAAAAAAAAGu80wzeYkSnSlt8hhdfSXpgAAAAAAAAAsaMdAw5F6bqw1nsXGt00a9AAAAAAAAAAT5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3Ge0L0SwsSbyUWsXqVMbKswAAAAAAAAAGDXStuM9FGoRVIzn6iyb_SQAAAAAAAABmLO0kqCJ5sLnPx_SwGJYFEQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMTbeJ7BYIhIN72fM2Cz8k8m9QAAAAAAASDW", "types": "CAMXBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wDMn1VGkg3lC6D8rQjVrvQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABMaP-XSbJ_jD1SaDSikvAxwAAAAAAAAAM9lngTnmeSG1s7rdk_juSMAAAAAAAAAAGHrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACtBnjxOT6ecDtMNaRY7RgRQAAAAAAAAABnzd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX73IOkhtZyjrZNnxzxVPYTQAAAAAAAACNp20xNjB13pFFci9UHZaQsQAAAAAAAABbNFoti7zeivEyGvfQ3_ANTgAAAAAAAAGU3kg82-0D3eZ1bo-oCBlTCgAAAAAAAAD0O9IjcD5d1rTcG4kkieTvLAAAAAAAAAAMpAJdtvbhFJyCiEJ26lbyGAAAAAAAAAAGNdnOauNqYT-cKE84qEP2jwAAAAAAAAANlsX2eCLSr4Q70_mA1t3KeQAAAAAAAAAoNB3KICW80r4krIyGFXIJIgAAAAAAAABZ2uEWBluAjlG6YATEmwlaSAAAAAAAAAFItIv50-9ZsDFG8OmfEZawCwAAAAAAAAAEaSd0IwCHi35NcDjaC1kTWQAAAAAAAAAEDp15X8uOBNJVZimWDCZGiAAAAAAAAABnzLx6iJ9ANFZvdAJHeiPhJwAAAAAAAAC_5FI5oFvKw7q1gOKG3iUcCQAAAAAAAAAIkO-Ae5TjUXpcjeeU1KB6WgAAAAAAAACI4v1ONonFI0iGn5c_bvMoqgAAAAAAAAAHDC6Xdv_9C0YItr8EUl82zgAAAAAAAAAGnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYv0o-SuFa6Ydo5LzhQb4MjgAAAAAAAAAGAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jsGoGFJd_KwHDVlL9hbdSw"}} -{"Stacktrace": {"frame": {"ids": "klPbOjidNHRsFecU34u2tQAAAAAAAAmpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGklPbOjidNHRsFecU34u2tQAAAAAAAAlaJD-mlhc2khMaMvypB7uCowAAAAAACvxIJD-mlhc2khMaMvypB7uCowAAAAAACrBZJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAAA1NrJD-mlhc2khMaMvypB7uCowAAAAAAIg7EJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAAA1NrJD-mlhc2khMaMvypB7uCowAAAAAAIg7EJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNLbtJPgD2DsxuaRUZZI3jKQAAAAAAAAG19OSIwt7_UxT7zZoUvqu4WwAAAAAAAAAvGECkj5EzwizbnHTSy11lwAAAAAAAAACsIWCarP2Cg-zGilSmP2FwvAAAAAAAAAAxPF46WYS52oqKW28TVdZwhwAAAAAAAABl4SjPzL5sRJ4NoaPppbKRXQAAAAAAAAAyzV-zz_SMeRtFDojkROWSSwAAAAAAAACIZtRK4uMy_Wfw-N_iQmSerQAAAAAAAAA1qtNW2Hg_2f_0M1iSBcGbyAAAAAAAAAAVoGmEXpJvjzbRv2r-bFFlfwAAAAAAAAA7EI5wLwdv0nxJGTj51HGsnwAAAAAAAABpqs9QVbSai1fV6zxJyggieQAAAAAAAABfBUIjEExV8zypjFmSEDklUAAAAAAAAAA8WVw4-tNMtcGbe_AUExiiqwAAAAAAAAFTMb2_4IzFmsZu_sknCLXxAwAAAAAAAAHtOD4desBFovJswG9NmeTHjQAAAAAAAAEcJQLcS-Sow-71hXmB1Wrz2wAAAAAAAADoJcguT-GkmtJ61-snxPe8uQAAAAAAAAE09xzxWCGZcOvhLUSFF27srAAAAAAAAADplff4bfceUG2apmCG5TYY-AAAAAAAAAEdSMooaRB4Ix5PbbJFOeJy_AAAAAAAAAIqJcguT-GkmtJ61-snxPe8uQAAAAAAAAE0365bkCPTYmyPAOblneeRAgAAAAAAAAIredP2chSf3068PVlMnJWsegAAAAAAAAEeeWgCXarjxP6P3NIXnb2q5gAAAAAAAADsZ6aAB62ipYf2Ff58TIbPwgAAAAAAAACWB_8pLWeFHllvmKE3jcPnmgAAAAAAAACgFjPeFwiJfDdu2t7SH4hgAgAAAAAAAADtSMooaRB4Ix5PbbJFOeJy_AAAAAAAAAIqJcguT-GkmtJ61-snxPe8uQAAAAAAAAE0365bkCPTYmyPAOblneeRAgAAAAAAAAIrhgHBLHU_ANUlwA90ks6yRwAAAAAAAADu1AP5rFDRA4TZi1tau3luUgAAAAAAAACyqFqaIMeNfw2myzP6eZ7KkAAAAAAAAAB44M0Ud4qlvTvF27Rhplk7mAAAAAAAAABzSeV4KhxoLTaZZsVPppSmnQAAAAAAAAEEcvpQVs3xbGpFXzIMrJu64QAAAAAAAAF6cbl91mRg6g3lnUBctWVUVAAAAAAAAADi1iIrWruhhrdv7Wrz1lbNJwAAAAAAAAERWnFGlRCY3Ca1i33Xvhj0aQAAAAAAAAESsXskcBz0UtWfdqfu0TDSqQAAAAAAAAEaTrMlwvWvPdEuGYc2sFMcswAAAAAAAAFD9eyFEANetCPzPOoO7Or-3gAAAAAAAAFt-H6asz_OpoepB2Mu5EngrQAAAAAAAAAQb1XRsL3HnSmx1ytW_GO79wAAAAAAAAGdGFR3FEpwUl5GjzVK189OpAAAAAAAAAIyEWlXSFV2r49Q0xRbGVHSQwAAAAAAAAAzDV8z6pYe1ipSuOK8g57sSwAAAAAAAABvRA0eMPP8ZpAprwovmWh-MQAAAAAAAABR2qo1eklRbvZeGY39-E27ywAAAAAAAAAqoY_bCiKFNh6Ywp_edkpgUQAAAAAAAABZbEss39af3XvhM0266Ejx8QAAAAAAAABoJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAAA1NrJD-mlhc2khMaMvypB7uCowAAAAAAIg7EJD-mlhc2khMaMvypB7uCowAAAAAAIVoixb-AMoivB7u2Oz_cPaKU5QAAAAAAAABpE10X0hknNaV-tnjJE-hW7wAAAAAAAABqJD-mlhc2khMaMvypB7uCowAAAAAAIP26JD-mlhc2khMaMvypB7uCowAAAAAAGE6LJD-mlhc2khMaMvypB7uCowAAAAAAGEwwJD-mlhc2khMaMvypB7uCowAAAAAAGCQHJD-mlhc2khMaMvypB7uCowAAAAAAGB5dJD-mlhc2khMaMvypB7uCowAAAAAAGBoRJD-mlhc2khMaMvypB7uCowAAAAAAG_mLJD-mlhc2khMaMvypB7uCowAAAAAACREN", "types": "BgMDBgYDAwYGAz4GBgMCBggD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g7rfCmzBd1WanveypHmAqA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChkN8XT4fd_WKeR1cE-hlLelCQAAAAAAChdmzXT4fd_WKeR1cE-hlLelCQAAAAAAChdCE", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iIMesBrzxgfShUvivBC9VA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAA5cYiYZLNw79YI2sv5ZzfISgAAAAAAAABnsd1-fzhWHGpZk5BbNZ95mAAAAAAAAAER5uJBJdbCydi3Mb0Lo2CA1QAAAAAAAACKXoncVs_RZ0C2CaElSEtZqgAAAAAAAAAV_jOWl9rQ0a9rjiw4HiJl9AAAAAAAAABiBTYksaSRO8AJ9nY6uneb7wAAAAAAAAAnAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMSBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yRFnGrrHGohZX1q__Ac-fA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAWZvnSEZ6hxckmxa-z2abTjwAAAAAAAAABPzgNbb9CcFUQqKGC4zwW-wAAAAAAAAADadP6bWu7ULef518P5KHVHgAAAAAAAAAD8S_Sv-2Ysy5dt1ARF624ywAAAAAAAACZX3GdeQP-f7ta19Ve9HCXlgAAAAAAAAAUrT6Wpj_D6biwR0z1hrGxmwAAAAAAAAAH515JXhvu-Tp0j9MvQAZtWgAAAAAAAAAHGg8yWTMBWgWQ1-9YJzEFhAAAAAAAAAAlJZAp-_m0--d0j2rImdy6sQAAAAAAAAAGAAAAAAAAV4sAAAAAAAAAHYXuSio4gqgnYsnZ_Lwaqr0cHEPo0D185QAAAAAA04UC", "types": "CAMkBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qsczIwhDc4-8PRo_Si-xGw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABF0kYxe-SHgukLEpCkawSk1QWAAAAAAABF7IYxe-SHgukLEpCkawSk1QWAAAAAAABGFr", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ypQufrPd-vWE7YGaekcTfw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP6C", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "q67ZvLIlucofkIvus5w-GQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAvspzm-_Ca31VwijYVQAZSLAAAAAAAAAB7TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABUfZfGpgZFJokP-jaeydrs0QAAAAAAAAAJjg3LdO4DNz9FsefjUG1F1gAAAAAAAAAUf6OHtxWEEYSKC5jCOpZRYwAAAAAAAAAA", "types": "CANvBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AdOVIhl_n9Wje--mxIItNg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACfZYJrmLEjznzm7GSiXKeulgAAAAAAAAAMjH-Kh7eMoVAEa99gkdQ-YQAAAAAAAAAWvtOmTuUGvKYiQRK_O9kHuwAAAAAAAADP_coc0yQmibHSYbczgpafrwAAAAAAAAAFm-i3pqvNoPRjOJ3b3sEiiwAAAAAAAAAEs9MntjdT5XiNr-rHeRcTvQAAAAAAAAABdJ2sHJS_vHp5BLfliwHuTQAAAAAAAAAEi_JW0SMBS0hXEJxPvmBaaAAAAAAAAAAA", "types": "CAMTBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-o7jkJLtD4xHchcLgzNuuA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAnZ4NiN5Rb-vuXXHY-ZQp6fQAAAAAAAAAIoSV0vEfx2f4H442JtkKdLwAAAAAAAAACoGwyto3BslHwE9mIoXY8WgAAAAAAAAAFqvNVcLOt_ffF8fUAgdlifgAAAAAAAAACeHnN2Txvq-iOALceSe76EgAAAAAAAAAb1S9eFAopKcZX-VnW9ChdWAAAAAAAAAADw_8HYglWw-0jqUUlUeMgagAAAAAAAAAaAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "X2j-ugZRpPjKsN5Ee5wiIw"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFldD", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SMLewOlFeXmKZa6xL_ARDQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAANSF3u75PFaKMThRw4BoUVwCAAAAAAAAAB3JzR1Che7ZkqwAcPrDIhJHQAAAAAAAAA2414vwxwFz0HV2Ku4dzYYowAAAAAAAABPlF0402c3xDTaGy1WpLy7vwAAAAAAAAAmpOUGa4nlXTzn3bJ7pH2ySwAAAAAAAAAEiXWHNd_y-hSLbIW9XiqyhgAAAAAAAAAA", "types": "CAOEBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FGf4xT_jVUAejwXntzL3PQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw2HtXT4fd_WKeR1cE-hlLelCQAAAAAACw1EEXT4fd_WKeR1cE-hlLelCQAAAAAACkHGIXT4fd_WKeR1cE-hlLelCQAAAAAACkMsNXT4fd_WKeR1cE-hlLelCQAAAAAACkIDEXT4fd_WKeR1cE-hlLelCQAAAAAACkHP8XT4fd_WKeR1cE-hlLelCQAAAAAACkHOG", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Px9VhqdWCVDdltHe9kzD-g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcM9Xltn711KKFcrKCAYh_ZgAAAAAAAAAA", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lLjNSon0kMlL_GeOGmhieQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL5", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JzgA-Ra9fc7BJY4Bt8KMwg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eaUcEvvhuguaGYCmGWrnWRz1QAAAAAD_AtNcEvvhuguaGYCmGWrnWRz1QAAAAAD_CcdcEvvhuguaGYCmGWrnWRz1QAAAAACGImTcEvvhuguaGYCmGWrnWRz1QAAAAACGMNkcEvvhuguaGYCmGWrnWRz1QAAAAACGMup6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEMf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD5P6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAwsz6tVKI4mSYDEJ-ABAIpYXcgAAAAAACuEk", "types": "BwMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hp7nnrgj4rg9PepT5KvZxg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACuCx5RC8g9OTz7PgiGSeLtvwAAAAAAAAAOgY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAFyZ0m5K0hyRADeQkG90vP8AAAAAAAAAAzG03owtPMOb_BDAuY6rOWogAAAAAAAAAFXCoBIRW2zeIv8Jr12c2SPwAAAAAAAAACtmXftvn8hrcleDLJfptXeAAAAAAAAAAFoWAu7yjPEQWDBpYB2hRLjAAAAAAAAACEHL8EuHVSmvyyvO0QJQzjvAAAAAAAAACU9i4yH5hvA0rp4RuaXVKyFQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAMKiKQXI5stF5N-InJuXrsjgAAAAAAAAAEL4Zieid3nVkNJbdYJumC3wAAAAAAAAAPMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFTU7DQ3uAw_xM7DAGYMk_cQAAAAAAAAACMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFOa5CkhVOrx2r2YkOsLGOZwAAAAAAAAAeJUqoXh4FCdEByaAYgHthzAAAAAAAAAAKl_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAADUM3h48-oBMi00mRAqhB4IAAAAAAAAAAjNrvcSCGNEuayQcoP_4CXWQAAAAAAAAANp3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAANqUqjB_amR59Lv13Nhle_NwbwAAAAAAEPzb", "types": "CAORBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "c_YW_y8Erj_86DJCOJ5hiQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgb9rcEvvhuguaGYCmGWrnWRz1QAAAAADgcaEcEvvhuguaGYCmGWrnWRz1QAAAAADgcoOcEvvhuguaGYCmGWrnWRz1QAAAAAChhqEcEvvhuguaGYCmGWrnWRz1QAAAAACLL0ScEvvhuguaGYCmGWrnWRz1QAAAAACITtGcEvvhuguaGYCmGWrnWRz1QAAAAACFObNcEvvhuguaGYCmGWrnWRz1QAAAAACEM1p", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JDfH1YIww9Sqd-S_w7NU1g"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAA", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "w-GsWvuRbgtEQFjz7G6cAQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAOog03klALlTA3DUKeyZZ-kYgAAAAAAAAAHg03klALlTA3DUKeyZZ-kYgAAAAAAAAAHg03klALlTA3DUKeyZZ-kYgAAAAAAAAAHg03klALlTA3DUKeyZZ-kYgAAAAAAAAAHmidOaweFMMarPTWzdmC3NgAAAAAAAABPVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAAAetY5fHNfhF2VRLe_6BhL5dgAAAAAAAAAFwh6xTQPkmoOUUrUOOnnNsQAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LaQK44tICLO4ljAwiqTd8g"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrkykgtQ4kMk_MBWrPUAFqVnYywAAAAABq7bsgtQ4kMk_MBWrPUAFqVnYywAAAAABq7GYgtQ4kMk_MBWrPUAFqVnYywAAAAABq5-UgtQ4kMk_MBWrPUAFqVnYywAAAAABquJbgtQ4kMk_MBWrPUAFqVnYywAAAAABrpBg", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dARW4-0nYV7kZ3Ww_-fsnA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABazfcz5k14PsCcDvFyUC1kmlV3QAAAAABaQHoz5k14PsCcDvFyUC1kmlV3QAAAAABaRy5z5k14PsCcDvFyUC1kmlV3QAAAAABaRRMz5k14PsCcDvFyUC1kmlV3QAAAAABaDyNz5k14PsCcDvFyUC1kmlV3QAAAAABaBSMz5k14PsCcDvFyUC1kmlV3QAAAAABauAB", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gkXyNFDJDBzOyUtceexiUQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAAAaI0QtQ3x5Qtt-qibQRB-qEAAAAAAAAACEwdRZBOgt1iAFeehFpb20mAAAAAAAAAAJ0Cdt9wyWxnG2B-xGXMO6owAAAAAAAADYVx2H7p06nNerPKpNR75HGQAAAAAAAADbRo0xTS_XLS48c7gOvsUW-QAAAAAAAAAiRuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAA51NxYsnZ_Lwaqr0cHEPo0D185QAAAAAAyeS2vQ7EacG6CR4rzcFaNFEsTQAAAAAAAPfQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "CAMKBQMDBQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pyc1NH6GKoq4eJ7lPXF0sQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYf9tQ-FDBLtIC3ufWwyt_SQAAAAAAAAALt1J8MwohlN0N8mOD0D4M9AAAAAAAAAAI931sEtpcdsHnD8gPYzKXOAAAAAAAAAABMZMTsWUUQKF_r8ij_JAjmAAAAAAAAAAMO1v_wbuglNek1zs-lCG90QAAAAAAAAAGbeD_C7F44xTKzF8_Am3s6AAAAAAAAAADybCcUk4-fZcYJk9ygl24tgAAAAAAAAADo_VxHugz7KdIpjN6xJI0VgAAAAAAAAADPNrR2YKoj7goxCjWQi1QhgAAAAAAAAC7N8DqgWjeLIV_lXyhwD6riAAAAAAAAAAchQjSp-1ZnEm-DqAW6B75BQAAAAAAAAJBkrKfc-Q3vA_v935GzjuxngAAAAAAAAAQxzBkQCtjYmztrrm3hxqn5AAAAAAAAAAHTsx0vqyY9P-yze5xYzq4cQAAAAAAAADaTsx0vqyY9P-yze5xYzq4cQAAAAAAAADaTsx0vqyY9P-yze5xYzq4cQAAAAAAAADaTsx0vqyY9P-yze5xYzq4cQAAAAAAAADaTsx0vqyY9P-yze5xYzq4cQAAAAAAAAW_koTuL0mfWVaphXgG09bN1QAAAAAAAAAJG5W8IMyZCvr20cEkYhG1nQAAAAAAAAAIHucgtk7VtYNos1qfIpcPAwAAAAAAAAAH0z4LC06zUd4h7lC-Is9mxQAAAAAAAABL", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AyDqByyWIoIiVixwsKuo2Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlqv6tVKI4mSYDEJ-ABAIpYXcgAAAAAApawn", "types": "FAMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "El5SJjgC1dQRf1W23p8Oog"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAAAaI0QtQ3x5Qtt-qibQRB-qEAAAAAAAAACEwdRZBOgt1iAFeehFpb20mAAAAAAAAAAJ0Cdt9wyWxnG2B-xGXMO6owAAAAAAAADY", "types": "CAMHBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9rychglqQSAQzOKooiFxFg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCveXT4fd_WKeR1cE-hlLelCQAAAAAAEODDqXT4fd_WKeR1cE-hlLelCQAAAAAACwtaJXT4fd_WKeR1cE-hlLelCQAAAAAACi_9XXT4fd_WKeR1cE-hlLelCQAAAAAACiJjoXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaZ", "types": "DQMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "F2xDW96B93CXTxJUyPdwXg"}} -{"Stacktrace": {"frame": {"ids": "klPbOjidNHRsFecU34u2tQAAAAAAAAmpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGklPbOjidNHRsFecU34u2tQAAAAAAAAlaJD-mlhc2khMaMvypB7uCowAAAAAACvxIJD-mlhc2khMaMvypB7uCowAAAAAACrBZJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGlJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAADPP3JD-mlhc2khMaMvypB7uCowAAAAAADOruJD-mlhc2khMaMvypB7uCowAAAAAACuGjJD-mlhc2khMaMvypB7uCowAAAAAADNFHJD-mlhc2khMaMvypB7uCowAAAAAAGyG4JD-mlhc2khMaMvypB7uCowAAAAAADMfaJD-mlhc2khMaMvypB7uCowAAAAAADLg5JD-mlhc2khMaMvypB7uCowAAAAAAIhTEJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNLbtJPgD2DsxuaRUZZI3jKQAAAAAAAAG19OSIwt7_UxT7zZoUvqu4WwAAAAAAAAAvGECkj5EzwizbnHTSy11lwAAAAAAAAACsIWCarP2Cg-zGilSmP2FwvAAAAAAAAAAxPF46WYS52oqKW28TVdZwhwAAAAAAAABl4SjPzL5sRJ4NoaPppbKRXQAAAAAAAAAyzV-zz_SMeRtFDojkROWSSwAAAAAAAACIZtRK4uMy_Wfw-N_iQmSerQAAAAAAAAA1qtNW2Hg_2f_0M1iSBcGbyAAAAAAAAAAVoGmEXpJvjzbRv2r-bFFlfwAAAAAAAAA7EI5wLwdv0nxJGTj51HGsnwAAAAAAAABpqs9QVbSai1fV6zxJyggieQAAAAAAAABfBUIjEExV8zypjFmSEDklUAAAAAAAAAA8WVw4-tNMtcGbe_AUExiiqwAAAAAAAAFTgO6kDS9N3EuxPdxaJ2XycwAAAAAAAAIChVIXRptYWdYbTtDZhNkyZQAAAAAAAAJEfQmBDS59foxFPsSMJZb9xQAAAAAAAAE_FZMomjWJJ0nF52fd5MCJjwAAAAAAAAAbcNfqzNIuM2moCdDAPZaMPwAAAAAAAAGhwnDqzjdjMz5CchEHZ6EsYQAAAAAAAACtuos5blq03yBGQs7NU0gUPAAAAAAAAAAcWJOADfwpHxtseudP4RVyOQAAAAAAAAIBCBHuHFEZWQ-fJ4IkYrsh7gAAAAAAAAB2mBpiFuvmv7Bhv5yWRlHpOwAAAAAAAACGxOuzl7cRmBw0-tjVF12FGAAAAAAAAAH6E__m11jwVVwOsNYG95RSxgAAAAAAAAIJJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAADPP3JD-mlhc2khMaMvypB7uCowAAAAAADOruJD-mlhc2khMaMvypB7uCowAAAAAACuGjJD-mlhc2khMaMvypB7uCowAAAAAADNFHJD-mlhc2khMaMvypB7uCowAAAAAAGyG4JD-mlhc2khMaMvypB7uCowAAAAAADMfaJD-mlhc2khMaMvypB7uCowAAAAAADLg5JD-mlhc2khMaMvypB7uCowAAAAAAIhTEJD-mlhc2khMaMvypB7uCowAAAAAAIVoiHDtxjNJh5HryAaa7uCACXgAAAAAAAAILZUr3dhHUtWV20cKiiRwRTAAAAAAAAACI46OBP4AiIuvPByLPCVNeuQAAAAAAAAFIJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAADPP3JD-mlhc2khMaMvypB7uCowAAAAAADOruJD-mlhc2khMaMvypB7uCowAAAAAACuGjJD-mlhc2khMaMvypB7uCowAAAAAADNFHJD-mlhc2khMaMvypB7uCowAAAAAAGyG4JD-mlhc2khMaMvypB7uCowAAAAAADMfaJD-mlhc2khMaMvypB7uCowAAAAAADLg5JD-mlhc2khMaMvypB7uCowAAAAAAIhTEJD-mlhc2khMaMvypB7uCowAAAAAAIVoiULOVjhd5u9ORCGzZdeAHEQAAAAAAAAFKZUr3dhHUtWV20cKiiRwRTAAAAAAAAACI46OBP4AiIuvPByLPCVNeuQAAAAAAAAFIULOVjhd5u9ORCGzZdeAHEQAAAAAAAAFKZUr3dhHUtWV20cKiiRwRTAAAAAAAAACIdvPwH8wVUiIeR9c3FhzYeQAAAAAAAADqXnYKGifjjBQNyUfuNIzfgwAAAAAAAABjJD-mlhc2khMaMvypB7uCowAAAAAAIRRF", "types": "BgMGBgwDJAYMAwMGDAMHBgED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "e0YIAzJAuzs0WiByN2XHsg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfxrm08oJc5xqpM1VweLZNZwAAAAAAAAEIFyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACAE1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAACS4b6Y6AxjtjqP_pey1p_yKgAAAAAAAAA46himjS-PpAivu9i1Bhv6aAAAAAAAAACVH0h6cNWo4nXEYZXWZXHxWwAAAAAAAABshWTBWfz-Houd9OXpVmNNGAAAAAAAAAAkuwSrGXrIlilHG9LeAbu8sgAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFm-x5OkQlku9y3rztHSvTSQAAAAAAAAAULEf7xTPa92fa-lrUaMUkPQAAAAAAAAA3-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAFRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF6gZHeFcPF3p_p9hsnsuK4AAAAAAAAAAQVQoK7BVzszXqPUi0cc2ufgAAAAAAAABCRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFP25sJXYK2Dig2gvT-_j6hQAAAAAAAAAoKU_l7oGL7N35bnBXHoHVpAAAAAAAAAB3R43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFYuABXadheWsSG6-oIu8XAgAAAAAAAAAYbtJR8uWrInrzn_sGkpIt3QAAAAAAAABNRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF4as0IgurEXJei_r6XmrPIAAAAAAAAAAU7dZbzLINeewhS7u7jNnbxwAAAAAAAABBR43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3RsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFrY7n4rCVF7rtGQSMR7sNcQAAAAAAAAAQ3xSivts4s-tBo1MMFQEENgAAAAAAAAAvfEf2U4TLcZ6jkTz3kXzr0AAAAAAAAAAkjNbJJD0szUDlnbhrWsIGkAAAAAAAAABE4ZG6-YGelmJ-HvYGGP11fAAAAAAAAAAJ_MQes3sHvEekr3K4ZbAgxQAAAAAAAAAGtqxyIieWZqcskiV4R2pEyQAAAAAAAAAgyHHuqycCveqeSns0YOs2BAAAAAAAAABYagRSV97vL0634eqbTCb3zgAAAAAAAAAJFG8XxZTt95D0AfN5i_723QAAAAAAAAAksZpPWBZ2sVOy9PmQsNzK_AAAAAAAAAAMYI83FPfxizYRL1l5UWZPbwAAAAAAAADBlfyZgP4wM9C7TqiQm2XJ9AAAAAAAAAAEsojwV5c2Sh1TPlO_pjbUPAAAAAAAAAAnEOTpfUqJOuaAVD3AKgKtLgAAAAAAAABE", "types": "CAN0BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5DCRsAykIrZ8I8tHgQy4yA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZFDZ3CKaS4aU08RhYA19y5ITQAAAAABuDoeZ3CKaS4aU08RhYA19y5ITQAAAAABuDYbZ3CKaS4aU08RhYA19y5ITQAAAAABuPGLZ3CKaS4aU08RhYA19y5ITQAAAAABuIoQZ3CKaS4aU08RhYA19y5ITQAAAAABuIGJZ3CKaS4aU08RhYA19y5ITQAAAAABuI4X", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "q-SfQ_r9EJdGkmFMOGPAZQ"}} -{"Stacktrace": {"frame": {"ids": "c6lwtZBG2BzNKGtSyzLrTAAAAAAABCWpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGc6lwtZBG2BzNKGtSyzLrTAAAAAAABBZWc6lwtZBG2BzNKGtSyzLrTAAAAAAABWVUam-Z0RfUVY0oYK5VXRDk9wAAAAAABeuZam-Z0RfUVY0oYK5VXRDk9wAAAAAABd_6am-Z0RfUVY0oYK5VXRDk9wAAAAAACfVY", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-bsoNX49ITduR-HMxcIbsA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAE_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYcJ5VgsZvSbEBF2_k2qcfnAAAAAAAAAALML0pN8-bI2jezXitVRzNNgAAAAAAAAAe3APbfJs5SvbH_F9r5lo_3wAAAAAAAAAFfnFonGQxpm_e6wtqJ2HwRwAAAAAAAAAEYM_gl0OeNbTAtY8GRC8UVgAAAAAAAACbTdvyEkBALxwDoycOnD-RjgAAAAAAAABkYM_gl0OeNbTAtY8GRC8UVgAAAAAAAAA1OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAO1DL81KYIuhFbaCdMgmm0VgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAZHpec9nZGwrrhoUYM845NAAAAAAAAMHTogCgWMgT5mMAMhpNA0IMiQAAAAAADvLE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjgtIG5EpvTeHopVC9IqkA_kSgAAAAAAAUUEIG5EpvTeHopVC9IqkA_kSgAAAAAAASvk6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp15j", "types": "CAMYBQIDDgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BhvORIoUEUvqKKPPz94jvw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ06", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "28flplgbX9OoTxrrq9LhNQ"}} -{"Stacktrace": {"frame": {"ids": "c6lwtZBG2BzNKGtSyzLrTAAAAAAABCWpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGc6lwtZBG2BzNKGtSyzLrTAAAAAAABBZWc6lwtZBG2BzNKGtSyzLrTAAAAAAABWVUam-Z0RfUVY0oYK5VXRDk9wAAAAAABeu4am-Z0RfUVY0oYK5VXRDk9wAAAAAABeopam-Z0RfUVY0oYK5VXRDk9wAAAAAABeePc6lwtZBG2BzNKGtSyzLrTAAAAAAACN4sc6lwtZBG2BzNKGtSyzLrTAAAAAAACNQK1gXEZRnAPQTspGOB36fnyQAAAAAAAYGo1gXEZRnAPQTspGOB36fnyQAAAAAAAXuG1gXEZRnAPQTspGOB36fnyQAAAAAAAW4aUJmIMEc6K8gJ39NHYaD0WwAAAAAAB7FTUJmIMEc6K8gJ39NHYaD0WwAAAAAACBdMUJmIMEc6K8gJ39NHYaD0WwAAAAAABs9U", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NGw-JF-qcO4DHjzt4B2wLQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66OFZ3CKaS4aU08RhYA19y5ITQAAAAAB62L9Z3CKaS4aU08RhYA19y5ITQAAAAAB61A_Z3CKaS4aU08RhYA19y5ITQAAAAABu4NjZ3CKaS4aU08RhYA19y5ITQAAAAABu4Rv", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HXFKn82mEOX8HQ_gs-IncA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAABAHHYxe-SHgukLEpCkawSk1QWAAAAAAAA-srYxe-SHgukLEpCkawSk1QWAAAAAAAANKmYxe-SHgukLEpCkawSk1QWAAAAAAAA0Mj", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PbqU-V8nn0Uur1oPUBWRCA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADB0YTZ3CKaS4aU08RhYA19y5ITQAAAAADA21XZ3CKaS4aU08RhYA19y5ITQAAAAADA0KdZ3CKaS4aU08RhYA19y5ITQAAAAAC11eeZ3CKaS4aU08RhYA19y5ITQAAAAACssKqZ3CKaS4aU08RhYA19y5ITQAAAAACsuGLZ3CKaS4aU08RhYA19y5ITQAAAAACqk0gZ3CKaS4aU08RhYA19y5ITQAAAAACIAqaZ3CKaS4aU08RhYA19y5ITQAAAAACtAiPZ3CKaS4aU08RhYA19y5ITQAAAAACsxfDZ3CKaS4aU08RhYA19y5ITQAAAAACIA38Z3CKaS4aU08RhYA19y5ITQAAAAACIecEZ3CKaS4aU08RhYA19y5ITQAAAAACIdftZ3CKaS4aU08RhYA19y5ITQAAAAACInZnZ3CKaS4aU08RhYA19y5ITQAAAAACIfpUZ3CKaS4aU08RhYA19y5ITQAAAAACHC7tZ3CKaS4aU08RhYA19y5ITQAAAAABt8MZ", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "c7sDL1ZEUDJ12LHKKH-P_g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAeZ7IYsnZ_Lwaqr0cHEPo0D185QAAAAAAgvMyYsnZ_Lwaqr0cHEPo0D185QAAAAAAeets", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8THUiHTgWMDGXf1IWeY26Q"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LJvcEvvhuguaGYCmGWrnWRz1QAAAAACIVgEcEvvhuguaGYCmGWrnWRz1QAAAAACIVaOcEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEM0A", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LozaztVRNbKlSptg74c_Jg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzScEvvhuguaGYCmGWrnWRz1QAAAAACE_-qcEvvhuguaGYCmGWrnWRz1QAAAAACE_n2cEvvhuguaGYCmGWrnWRz1QAAAAACE-1-cEvvhuguaGYCmGWrnWRz1QAAAAACE9WHcEvvhuguaGYCmGWrnWRz1QAAAAACEymA", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yaVT1XFUH-nJ3nm8j75Wtw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAAAe", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pA-dO_FbLIeCPNajC9my7Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPUhSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeXyo", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NLOhgxL61Nf_cs-ijqpzdQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgLZ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "udcCD1ZwYlzlR2BrHqM6qQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-uTvXT4fd_WKeR1cE-hlLelCQAAAAAAC-xUJXT4fd_WKeR1cE-hlLelCQAAAAAACgZ6S", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IermM9hSVXhnqyUrzsPYOw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN5RC", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1RCMO4Rht0Tyq-ucg22Gag"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eaUcEvvhuguaGYCmGWrnWRz1QAAAAAD_AtNcEvvhuguaGYCmGWrnWRz1QAAAAAD_ChZcEvvhuguaGYCmGWrnWRz1QAAAAAD_BbEcEvvhuguaGYCmGWrnWRz1QAAAAACIXWkcEvvhuguaGYCmGWrnWRz1QAAAAACFObNcEvvhuguaGYCmGWrnWRz1QAAAAACEM6W", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ePjKQtLllV_2B6Oq3TJ35Q"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAACa--kE6heoLJJu74wTldTO0wAAAAAAAAAFxQ-G9Hk2h3Mjbnud14Z1hQAAAAAAAAAlj0VsjQ_de28UC7IMpEE77QAAAAAAAABp3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcM9Xltn711KKFcrKCAYh_ZgAAAAAAAAAE8s5hM6TvWnoP9XP3e8VVVwAAAAAAAAAHwh6xTQPkmoOUUrUOOnnNsQAAAAAAAAAgXmED6DCBgU_nxWWvvj2FeQAAAAAAAAAA", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vsokQSi3I4rVgRAwb8fhbg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAA1OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyWXsTGLCNH21piOrMPoln5uBQAAAAAAb1kk", "types": "CAMaBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mcFH-Ijp7M4Pm2g7nfowcw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcdeyQ05GmzOw19AUsDzeIcAAAAAAAAAAA", "types": "CAONBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "d_qVPV2mnUzJdVUKzin8SA"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYr1L9Bd3XIiGWasJdN8trI5tgAAAAAABVqKL9Bd3XIiGWasJdN8trI5tgAAAAAAAfaVL9Bd3XIiGWasJdN8trI5tgAAAAAAAf8yL9Bd3XIiGWasJdN8trI5tgAAAAAAAgIi", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PDpZZR8qlUndvJSVZUQGfw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAADHgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oNARuCgevgyxtAjFL2xZeg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOpxFz17lb-voh9uZicvdXWAAAAAAAAAAdt_8P_qgRJaTfBrJGumjgpQAAAAAAAAAA", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-HAzLlWL3fwYJPxGXqYsZg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHX31XT4fd_WKeR1cE-hlLelCQAAAAAACoA6yXT4fd_WKeR1cE-hlLelCQAAAAAACkAF4XT4fd_WKeR1cE-hlLelCQAAAAAACkC3e", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ng7Kn6I7osQY62ITDyHvMA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw-Q", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "M3p5yPCVtJT8g9hbQp71SA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAGyVtVXhl6s6URamlTOMTdcGgAAAAAAAADmmuP6clMnO_x87qmA5qXiUwAAAAAAAAAEV9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAhxB00KDzyoofk7hNv-bTuugAAAAAAAABHd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlseV", "types": "CAMtBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZROPXiO1YN29GxsBWCCa4A"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACuCx5RC8g9OTz7PgiGSeLtvwAAAAAAAAAOgY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAFyZ0m5K0hyRADeQkG90vP8AAAAAAAAAAzZ80ToqoZC1OOBoR__NmsnwAAAAAAAAAFXCoBIRW2zeIv8Jr12c2SPwAAAAAAAAACtmXftvn8hrcleDLJfptXeAAAAAAAAAAFoWAu7yjPEQWDBpYB2hRLjAAAAAAAAACEHL8EuHVSmvyyvO0QJQzjvAAAAAAAAACU9i4yH5hvA0rp4RuaXVKyFQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAMKiKQXI5stF5N-InJuXrsjgAAAAAAAAAEL4Zieid3nVkNJbdYJumC3wAAAAAAAAAPMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFTU7DQ3uAw_xM7DAGYMk_cQAAAAAAAAACMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFOa5CkhVOrx2r2YkOsLGOZwAAAAAAAAAeJUqoXh4FCdEByaAYgHthzAAAAAAAAAAKl_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAADUM3h48-oBMi00mRAqhB4IAAAAAAAAAAjNrvcSCGNEuayQcoP_4CXWQAAAAAAAAANp3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAANqUqjB_amR59Lv13Nhle_NwbwAAAAAAEPzb", "types": "CAORBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zcGz4984lW_7ADxWvMJl6w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcDY6SNDzWiYDmLZi_Z1ZVETLoAAAAAAAvtxjSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt-hLSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWduRSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWdfHSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWbybSNDzWiYDmLZi_Z1ZVETLoAAAAAAAd60g", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "A5T8gkmrKDulci1jhJCJaQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAABIkSo5taWM8U71y2hDxxHngAAAAAAAAA1lBsFTWSf77aYVb9HHr9tcQAAAAAAAAAFlBsFTWSf77aYVb9HHr9tcQAAAAAAAAAFewU9RfzsPed7JATT94aw-wAAAAAAAAApfZ3COijH60wdDIIVUpSInQAAAAAAAAAIx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlsWy", "types": "CAMwBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hpyllfzpp8_nbwc9QqhNUw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2s", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VhuOZfIjfkTp0PdE7E7l0Q"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAAKk_PL9Bd3XIiGWasJdN8trI5tgAAAAAAKiuEL9Bd3XIiGWasJdN8trI5tgAAAAAAKi83L9Bd3XIiGWasJdN8trI5tgAAAAAAKgETL9Bd3XIiGWasJdN8trI5tgAAAAAAMLrkL9Bd3XIiGWasJdN8trI5tgAAAAAANJrPL9Bd3XIiGWasJdN8trI5tgAAAAAALIWXL9Bd3XIiGWasJdN8trI5tgAAAAAALJiFL9Bd3XIiGWasJdN8trI5tgAAAAAALI7NL9Bd3XIiGWasJdN8trI5tgAAAAAALQvRL9Bd3XIiGWasJdN8trI5tgAAAAAALAQhL9Bd3XIiGWasJdN8trI5tgAAAAAALAoIL9Bd3XIiGWasJdN8trI5tgAAAAAALBwvL9Bd3XIiGWasJdN8trI5tgAAAAAAK_sN", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UyfEXTPwOxcT1_g30PZ4bg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF_IhPXrChwahxbJ63NZZANQAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4rDcHLjUrpvKg-XXDfFGKmAAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADv9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABDHfFlM3axnhO28EteQn-2WAAAAAAAAABJ5utt2dQ8HKrTepHdNpprxQAAAAAAAADL6XNnO9SeJ40ZM7baZ84oEgAAAAAAAABVLll_E1k3FfR43EQBXwU1dgAAAAAAAAAIrywk-6b8WKiuckZ62dxSSwAAAAAAAAAHiX3hg20o3ZB-dQ1wA5bFxgAAAAAAAAAEomA88yQfT91566xoyEY7sAAAAAAAAAAcrrWuYAakx0mSDLYXP-NBMgAAAAAAAAABK-xWzbOpXq--Qycbjj-mDwAAAAAAAAA3L1OydAndq8IT7nNSF3yNbAAAAAAAAAAkewU9RfzsPed7JATT94aw-wAAAAAAAAApfZ3COijH60wdDIIVUpSInQAAAAAAAAAIx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAChAAnABuJtrWflPvotxCoPjQAAAAAAAAFDgM-zvldT2mxZOhlxJvpRXwAAAAAAAAAXc0OkgT3_p45M6FsCvH3WnQAAAAAAAAAV9BsFwV8tobvksYfuNpORcQAAAAAAAABJoOz1jSRZNClfuKPM_yWNFgAAAAAAAAAG3b73aK2YxmWJY2Of38z3nwAAAAAAAAAG-98KX7lEQngZcvy7BcWxHgAAAAAAAAAZR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAW40ES46dU7pwVTIhZzOkjPwAAAAAAAABV_bWrQJSE9QDRqMSbes6HHAAAAAAAAACK1WwaSXc6MUqSl16CLws0XwAAAAAAAACW6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC", "types": "CANdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VoEfCO4MusB_VsJY8Q8iKg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBOeYxe-SHgukLEpCkawSk1QWAAAAAABWB4EYxe-SHgukLEpCkawSk1QWAAAAAABWAGA", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eZ0CyfLsOPhGDflPO5HbqA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWUgHSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWTNcSNDzWiYDmLZi_Z1ZVETLoAAAAAAATKKvSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWJdYSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWE42SNDzWiYDmLZi_Z1ZVETLoAAAAAAAdEuZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAdC0USNDzWiYDmLZi_Z1ZVETLoAAAAAAATqHsSNDzWiYDmLZi_Z1ZVETLoAAAAAAANjXx", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JXC2aswffzFwIASa8HM7TQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB8_Hwz5k14PsCcDvFyUC1kmlV3QAAAAAB8_Xkz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiO_z5k14PsCcDvFyUC1kmlV3QAAAAABHtXPz5k14PsCcDvFyUC1kmlV3QAAAAABHrW5", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-wKVKRY5ojzt2TA4h8awoQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHSa5XT4fd_WKeR1cE-hlLelCQAAAAAACzCeJXT4fd_WKeR1cE-hlLelCQAAAAAACzCcJ", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RV64TmaQgxBDavQQ3RlpBA"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHsJJgtQ4kMk_MBWrPUAFqVnYywAAAAADHsO9gtQ4kMk_MBWrPUAFqVnYywAAAAADIfGLgtQ4kMk_MBWrPUAFqVnYywAAAAADIhGEgtQ4kMk_MBWrPUAFqVnYywAAAAADIfwEgtQ4kMk_MBWrPUAFqVnYywAAAAABw8FPgtQ4kMk_MBWrPUAFqVnYywAAAAABw8K8gtQ4kMk_MBWrPUAFqVnYywAAAAABs1aTgtQ4kMk_MBWrPUAFqVnYywAAAAABs1tXgtQ4kMk_MBWrPUAFqVnYywAAAAABr_zugtQ4kMk_MBWrPUAFqVnYywAAAAABsAoq", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nQzW1IRnoVkGXf3RVdA2zA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChF4kXT4fd_WKeR1cE-hlLelCQAAAAAACg6T7XT4fd_WKeR1cE-hlLelCQAAAAAACh1L_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyOk", "types": "BgMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RNnxxsIO5dQ0UMCgK8G4sA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAAAPX6JlWwBbDvZZ7rFp8ffgSAAAAAAAAAAFK24S1jUATvUFIEv3zAUZHgAAAAAAAAFQQTk6i4kGz-zDlc1CgyBszAAAAAAAAAAubFnDceRyUrwrxpx2LB-2swAAAAAAAABsy3V4Wh9j61CfcWNgvt1uPgAAAAAAAABzXcCMywL5s8Msv7wl9SHdqgAAAAAAAAAc8g3sLjFnKCF_JJchxYP5DAAAAAAAAAAN0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAd5e20AsvoCctGya4WV0ZQuwAAAAAAAAAYN1xfNXt_cEW2sMA8rTIs2gAAAAAAAAA80Og38EZo1V7Xaj5UHUpXuQAAAAAAAABFHhNjFnMd70fZN07PFErnWAAAAAAAAAAKdAeX1d421DMJ2cC6FX3tvwAAAAAAAAALUPXqeiDjsTt0fgWi6CFaqgAAAAAAAAAEybzB9D1DmBNUwOV0iR5UtAAAAAAAAAAN_mPV7Hp65KUOwvav9b8I9gAAAAAAAAABiQFXlWBYeWLM55y23U7wowAAAAAAAAAIlP_2TC89YKD5hpxethArxgAAAAAAAAAKg0wTdS2A905MAcFK5ZCg6AAAAAAAAAABCzl97HOuZsC56nBqCPt3QgAAAAAAAAAUGuZB5Wgu-FT76GdSG34TIAAAAAAAAAAQIGmhR4Fd5cfyKn1bs4cy0AAAAAAAAAAh", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UL06CNiVyxEFpIouFPRx3g"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQEI2MlivQ_yGyq36LnLAGeQAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQOUV_Man7LKpLI_xXeAvtgAAAAAAAAACeM1U5MRplArg1qeEAEk5MlAAAAAAAAAAYNK6q-mYZhWe1E7afoKkwiQAAAAAAAAFD", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6uX6Z-_eBVfWUQHo7dxxgA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbHuXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCM6XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcCd6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcBX6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb356tVKI4mSYDEJ-ABAIpYXcgAAAAAAFoxx6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFou1", "types": "EgMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1hW5v3HRKvG-GrmY80R18g"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACHFv8Z3CKaS4aU08RhYA19y5ITQAAAAACGkIkZ3CKaS4aU08RhYA19y5ITQAAAAACGjjjZ3CKaS4aU08RhYA19y5ITQAAAAABt8OV", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AP5Eq7B7RisKC973OjTPaw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzScEvvhuguaGYCmGWrnWRz1QAAAAACE_-qcEvvhuguaGYCmGWrnWRz1QAAAAACE_nYcEvvhuguaGYCmGWrnWRz1QAAAAACE_P8cEvvhuguaGYCmGWrnWRz1QAAAAACE9yHcEvvhuguaGYCmGWrnWRz1QAAAAACE9eTcEvvhuguaGYCmGWrnWRz1QAAAAACELBkcEvvhuguaGYCmGWrnWRz1QAAAAACEyqbcEvvhuguaGYCmGWrnWRz1QAAAAACFyki6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CQMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "a1Wk2s-gPeQ3RACuvlpgIQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxGI7XT4fd_WKeR1cE-hlLelCQAAAAAACxGPnXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JAE0oBjlHd_LFeKNeOVAFQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN4uU", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "m-WmMHqB8hxsW-_Rm9LtnA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACOVgImNB_AseUMjfw9acwHDgAAAAAAAAE3LL2AmHorGMGLHFvQ3KWNRAAAAAAAAABOQd2u0guBgJM1heDZ97a_eQAAAAAAAAAFhHI8fycCSE9gTrpxwlqNFAAAAAAAAAAE", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5QdX4ICkFiBy7z35tqsMeQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY8ZtMkBPrvDPN3loYwlfoaAAAAAAAAAAQ0ug8ORsNM_mSugcqd6QagAAAAAAAAAAH0X3gxtaF6COySAPka5kw8AAAAAAAAABHGR2FEpkknq9K1pcz6UJg9wAAAAAAAAAVOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjE-4Ja_8RAzuC-rb8IfgCgAAAAAAAAAtt2MvOhKqYBEfmH0xlqxQ4AAAAAAAAAHIG1OnoGXN6zXJZoQUHRmxAwAAAAAAAAAxYEThj3UEuGl2wDiJSq9vSAAAAAAAAADmjckGVFRAvWURR3kz1QpfwQAAAAAAAABZQUM3v4ew-jMVuKkpISsPEAAAAAAAAAGi6iNgA9fR_bPjg3gsO7FxQgAAAAAAAADeWKOnV4dhtUKFY7wtM7-RyAAAAAAAAABRH2QTzkKMf4VE2_HyfX9GywAAAAAAAAAOUX0maaM_jFdAmFMbhLpaSgAAAAAAAAANVydXcSmOqICsVxLpiPFyCAAAAAAAAAAhxWXbvqcob2cyNB-_TJKbYQAAAAAAAABZ2RFqiy_TIF9Ivmg849R6KQAAAAAAAABA9sYnFbigFrf_-fozodwm9QAAAAAAAAFsCjJC7YgrLROQv5HQSsKhfAAAAAAAAAGGuELAISpfeC7vnR_35Y6JuQAAAAAAAAA1cpNEDBxqXj30ru03AtezywAAAAAAAAAA", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_Ts2y4YyapGMgF7J-xZf2w"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjXzz5k14PsCcDvFyUC1kmlV3QAAAAABGOHuz5k14PsCcDvFyUC1kmlV3QAAAAABGN3rz5k14PsCcDvFyUC1kmlV3QAAAAABGZEQz5k14PsCcDvFyUC1kmlV3QAAAAABGNSVz5k14PsCcDvFyUC1kmlV3QAAAAABGPJ9z5k14PsCcDvFyUC1kmlV3QAAAAABGTGnz5k14PsCcDvFyUC1kmlV3QAAAAABGSeA", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "19eOj7rW2BMrJQCjgPGRMg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAABB_IRgbCQC1IPEoVkHKMOTwAAAAAAAAAYdB8rpvXeU-U7j8zoRqc_lgAAAAAAAAAie7YYWaQTMh8P2PCVzA2a8gAAAAAAAAA5gpzmfljwMvF6axjuntzBmAAAAAAAAAABtGdjZjM6jJA23WbdtVpvAwAAAAAAAAAIgpzmfljwMvF6axjuntzBmAAAAAAAAAABtGdjZjM6jJA23WbdtVpvAwAAAAAAAAAIAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8MaChZnl-rNfGFkTRfl_iA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66OFZ3CKaS4aU08RhYA19y5ITQAAAAAB6xAn", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "akH3OgREzKvOjMJueUVNqQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvU6cEvvhuguaGYCmGWrnWRz1QAAAAACLroTcEvvhuguaGYCmGWrnWRz1QAAAAACLsWTcEvvhuguaGYCmGWrnWRz1QAAAAACLsmncEvvhuguaGYCmGWrnWRz1QAAAAACL74lcEvvhuguaGYCmGWrnWRz1QAAAAACLvYJcEvvhuguaGYCmGWrnWRz1QAAAAACHfSrcEvvhuguaGYCmGWrnWRz1QAAAAACFpUMcEvvhuguaGYCmGWrnWRz1QAAAAACEPwF", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "arX6P2NMEiJ9Egas3Yju4Q"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAAAj2wgGDGWUYKAius-1IxNgMQAAAAAAAAAA", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0uG7yGrqQSSwb05Hvydocg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TVNXT4fd_WKeR1cE-hlLelCQAAAAAACgabq", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2kXwUSA3PTDw3kyQaaCEMg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7zyXT4fd_WKeR1cE-hlLelCQAAAAAAC-8Cn", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dDG6jf6GCHoU_y56rXJY_A"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc5-Qz5k14PsCcDvFyUC1kmlV3QAAAAABcnaEz5k14PsCcDvFyUC1kmlV3QAAAAABakwcz5k14PsCcDvFyUC1kmlV3QAAAAABalyaz5k14PsCcDvFyUC1kmlV3QAAAAABauut", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "acVe45FNWlYgmO4nWQHN3g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeX1t", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SSybZ3-qjl-24IZIjWrutg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcQxTPNhFsgl-8e8i61Q7phQAAAAAAAAAnwnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAE2quOp8hc50m96mwW1dVSowAAAAAAAAAIM9t3sX7Z2Nj1mpARCDGcawAAAAAAAAAIwcw67NCnOLTYutynHBvqowAAAAAAAAA90vYUuo04uCIksGcEjg9Q4AAAAAAAAAACiFkuHlkQPsBsMnUTpjsUKgAAAAAAAAAF0Cdt9wyWxnG2B-xGXMO6owAAAAAAAABpyYF5YWbjTLokor9oKz_A5AAAAAAAAAAN1YwmAWjsK6oD1Qs8m4ZuaQAAAAAAAAAW3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAA5yATvQ7EacG6CR4rzcFaNFEsTQAAAAAAAQGM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMQBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NizhfNviinbrObC9ItpaWA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfxrm08oJc5xqpM1VweLZNZwAAAAAAAAEIFyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACAE1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAACS4b6Y6AxjtjqP_pey1p_yKgAAAAAAAAA46himjS-PpAivu9i1Bhv6aAAAAAAAAACVH0h6cNWo4nXEYZXWZXHxWwAAAAAAAABshWTBWfz-Houd9OXpVmNNGAAAAAAAAAAkuwSrGXrIlilHG9LeAbu8sgAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFm-x5OkQlku9y3rztHSvTSQAAAAAAAAAULEf7xTPa92fa-lrUaMUkPQAAAAAAAAA3-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAFRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF6gZHeFcPF3p_p9hsnsuK4AAAAAAAAAAQVQoK7BVzszXqPUi0cc2ufgAAAAAAAABCRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFP25sJXYK2Dig2gvT-_j6hQAAAAAAAAAoKU_l7oGL7N35bnBXHoHVpAAAAAAAAAB3R43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFYuABXadheWsSG6-oIu8XAgAAAAAAAAAYbtJR8uWrInrzn_sGkpIt3QAAAAAAAABNRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF4as0IgurEXJei_r6XmrPIAAAAAAAAAAU7dZbzLINeewhS7u7jNnbxwAAAAAAAABBR43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3RsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFrY7n4rCVF7rtGQSMR7sNcQAAAAAAAAAQ3xSivts4s-tBo1MMFQEENgAAAAAAAAAvfEf2U4TLcZ6jkTz3kXzr0AAAAAAAAAAkjNbJJD0szUDlnbhrWsIGkAAAAAAAAABE4ZG6-YGelmJ-HvYGGP11fAAAAAAAAABaPJlREaStQ9MDsMhq8CWS4AAAAAAAAAAY9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQmUBFmueS4MaOyw0OD29yQAAAAAAAAAUuj5fRTSdGJxlX0gfzctOogAAAAAAAAA_3G7WvpXqPGO04rbAV9CJtQAAAAAAAAAlHr7DaUVBf6Mvou5VCDAFbQAAAAAAAAApRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFZRv6R5-Wsj1i57MVMaKXtQAAAAAAAAAMM_MfJrZLrX3P0R0dWrP49AAAAAAAAAALRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF41q7-Ld-6XK0fcC0fV9B7QAAAAAAAAAU-TcRbQGxOxYw9x9ta5Q4zwAAAAAAAAAheufT8zCegZUSBK09BAzk9wAAAAAAAAAOlrNuGOqZ1W2gPcoSPK5FRwAAAAAAAACdhdcTMvh3urC-ZcaAAmdtEQAAAAAAAAAUwS1mUKPWrSXa8bILcIpcpAAAAAAAAAAQqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYwzvWQyXT6P841Whzz8TSaAAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFFNGo1JfG2H2fZIcfqeCsfAAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDhfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJNoWLrp2Hx2HDcioYyHlIIwAAAAAAAAAkoIYS8oKywxk33PzxrExveAAAAAAAAAAZETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASETEs_vJj_-q4WFpNiG_LRQAAAAAAAABDti0_HSSde_QUQCNhNWBhQgAAAAAAAAAHAr3kTqw-Oudh5lpaUPtE8AAAAAAAAAAicvO0nTZWHAGHgrzWr6Ek0AAAAAAAAAAYaMt98PU3KeD3UYywrCFAzQAAAAAAAABMUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJHqYb0PdiyN53WuhXPhqilAAAAAAAAAAgG_-zTfXD8My3SKYW7i2zfgAAAAAAAAAKv1W7ytIELFGX03kVi2GdeQAAAAAAAAAhI1OVDwHxKOBX3DZpWt-oxAAAAAAAAAAQfQU6FiSgx3uHYx5GK6C2BAAAAAAAAAA4yOGQcz1HlHMBFat5qSpZkQAAAAAAAABKMtGAvn_SbPmLYweYcqu9xwAAAAAAAAAL9tkS4mnLw0w9AmlGvd82SgAAAAAAAAA8d89ErkgwhH3MyjmF-37sXAAAAAAAAAAGCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAENtCGtgNOSKjf89hTQ9pKCgAAAAAAAAAM1dtimHb35RfEFCzsXx56LgAAAAAAAAAHCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAEhQ2OXkHYZRXh3_WLXzxSBAAAAAAAAAAEqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYwzvWQyXT6P841Whzz8TSaAAAAAAAAAAyX6JlWwBbDvZZ7rFp8ffgSAAAAAAAAAAFK24S1jUATvUFIEv3zAUZHgAAAAAAAAEV2b11pFdgexgvnDe9S0ASzwAAAAAAAAAmQTk6i4kGz-zDlc1CgyBszAAAAAAAAAAubFnDceRyUrwrxpx2LB-2swAAAAAAAABsy3V4Wh9j61CfcWNgvt1uPgAAAAAAAABzXcCMywL5s8Msv7wl9SHdqgAAAAAAAAAc8g3sLjFnKCF_JJchxYP5DAAAAAAAAAAN0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAd5e20AsvoCctGya4WV0ZQuwAAAAAAAAAYN1xfNXt_cEW2sMA8rTIs2gAAAAAAAABUcQQ34bxUXEh5yMbxZRcv5AAAAAAAAAAcyr4X--AwYxsbC6m4-WPbMwAAAAAAAADFfkAuJpo8Y3KCTHzuTneWHgAAAAAAAAArquuFP3PpjgMMJtSpk-27cwAAAAAAAABc", "types": "CAPzBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HhM1qSGV_MIoNaDRcG0zzg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAABdynFllp5CrPbAGyx1JneoOgAAAAAAAAEqfqMuFCyw6Ke6rdEcCkNIrAAAAAAAAAAF0nJ0ZCynuxYfemmjGHJ70QAAAAAAAAAF7VqLwLJItvEm4yutk0qVmgAAAAAAAAAGdA5iCrFphDUKlC3vygm0DQAAAAAAAAAD_SITIpii9O2qgAJ_aGq_uwAAAAAAAAAhkXBknDWGbdkbMu0fWipa9wAAAAAAAAAFTB2m8X5zMpUXSjHjTIXJCwAAAAAAAAASPAhPB3FcJuVjzN80xcR52AAAAAAAAAAgR9RrB-Of3quGaN6TDSrAyQAAAAAAAAAFvvtWC0gpZIogS3vICgbwcQAAAAAAAAAHI10upgJihUkX5rBuiOc-YwAAAAAAAAAJDXjVP64kCgn9M1yvOAXqQQAAAAAAAAAF4HKPFWqowSOx5a9GNnD5HAAAAAAAAAAJZdUbGP_mgayUcKBjt5p9GgAAAAAAAAA2X5thV8nz4pOhojw-NPFjewAAAAAAAAAavXD0yPGK6S99h_2jYDCdUQAAAAAAAABGmTv-kEvVfHLbasIc3cI7eAAAAAAAAAATjkv3Ukz-2gwhoW8LOpekdAAAAAAAAAAGS06qc2WWdjyLzzAdWuSUuwAAAAAAAAABPe4TSqGUL-1bGrK2ZFpccQAAAAAAAAAa", "types": "CAM-BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "e7M0HNFRDiBlp-s3D7tWjg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAA5cYiYZLNw79YI2sv5ZzfISgAAAAAAAABnsd1-fzhWHGpZk5BbNZ95mAAAAAAAAAERuV9VJttm0goUzsky7YZbIwAAAAAAAACLXoncVs_RZ0C2CaElSEtZqgAAAAAAAAAV_jOWl9rQ0a9rjiw4HiJl9AAAAAAAAABiBTYksaSRO8AJ9nY6uneb7wAAAAAAAAAn", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Q3gIWoUxhIk-V7r01h-8cQ"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrkykgtQ4kMk_MBWrPUAFqVnYywAAAAABq7bsgtQ4kMk_MBWrPUAFqVnYywAAAAABq7GYgtQ4kMk_MBWrPUAFqVnYywAAAAABq6JkgtQ4kMk_MBWrPUAFqVnYywAAAAABq421gtQ4kMk_MBWrPUAFqVnYywAAAAABq_QLgtQ4kMk_MBWrPUAFqVnYywAAAAABqSfYgtQ4kMk_MBWrPUAFqVnYywAAAAABqSbkgtQ4kMk_MBWrPUAFqVnYywAAAAABqSyogtQ4kMk_MBWrPUAFqVnYywAAAAABqfxEgtQ4kMk_MBWrPUAFqVnYywAAAAABqr6LgtQ4kMk_MBWrPUAFqVnYywAAAAABqsHf", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FXSDb1LRkJ6lyn8itNo02Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmoF", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xZMRPR03JgKHHwNCTAFzKA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADAEguNCcnmVGnXNe9OvbpF2wAAAAAAAAA59TmwK4T30h3U0B1lbih6TQAAAAAAAAAN4MmFlXNlAaTTYzJu9ZvlFQAAAAAAAABi5EQ6InbW5lh3HIuXdyrqwQAAAAAAAAAX2Vpl4JCXI4Pj7QXAxuNxegAAAAAAAAA3b5D4G32aP0YH2ukb-bXGLgAAAAAAAAAdiM8LSJ_0DrAH3j2_fhBWQwAAAAAAAAAIKYUKYe5FJokP-mDuLYX4tQAAAAAAAAAJi2OZ9-P_pjOFSV36486xoQAAAAAAAAEgvFHpuMfxurJGYl7N87FnEAAAAAAAAAAA", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "87tmMz7dkdhga3ssbWBSBA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAacIo", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "422YB3Vi5ylq09ThSitCrQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCYyXT4fd_WKeR1cE-hlLelCQAAAAAAEOC7XXT4fd_WKeR1cE-hlLelCQAAAAAACwzlbXT4fd_WKeR1cE-hlLelCQAAAAAAChaU9XT4fd_WKeR1cE-hlLelCQAAAAAACh0Go", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6RXKJU69zgwLTvkyKxffdw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbkcEvvhuguaGYCmGWrnWRz1QAAAAAD-LgxcEvvhuguaGYCmGWrnWRz1QAAAAAD-M6LcEvvhuguaGYCmGWrnWRz1QAAAAACNFB0cEvvhuguaGYCmGWrnWRz1QAAAAACNG02cEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEM3-", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LaFi74Q4Xy5P6KWfZhKbcQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbPkXT4fd_WKeR1cE-hlLelCQAAAAAACi_9XXT4fd_WKeR1cE-hlLelCQAAAAAACiJjoXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcoN6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcnH6tVKI4mSYDEJ-ABAIpYXcgAAAAAALqeS6tVKI4mSYDEJ-ABAIpYXcgAAAAAANs3E6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTPq", "types": "DwMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "53PCQ4S8hGae7xDUxkptJg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABN1sqZEeUsG3W43_x5Rw_H0wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACflNTKXUVadjdmvcqN0AFxgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF992j67iVEP_ZCQRVTejCUwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT2RtTnfBMr_4uuoJgeW3L3AAAAAAAAAAKe2lx94qSnxpcppE-MHpptAAAAAAAAAADLFO-G1Dos0toht1-zeuhBwAAAAAAAAB6FnZ5nyC3u-_ymUvUXAQZLQAAAAAAAAAA", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AgP4G3LQ52j-d6F0ClOqXQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t3YXT4fd_WKeR1cE-hlLelCQAAAAAAC-wObXT4fd_WKeR1cE-hlLelCQAAAAAAChaNvXT4fd_WKeR1cE-hlLelCQAAAAAACgUbW", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nBUbTpmi8j18IFjmOSwgBQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYr-lBlGU-IcWILqVWjgb-BgAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAH8Tc4heOqvkkU3j8yuc3AAQAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAAtdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFwfZvWlUxslpVTthudbQVZQAAAAAAAAAMytp3uU49O__eOELoHoYHXgAAAAAAAAASk6l9plTdsyuqVCJa0F4QYAAAAAAAAAA00E4KEPyy66WCTzsuPGMCTgAAAAAAAABoiTk93rUXKUXkw5crMY_togAAAAAAAAAK4kgJPxDp_y70g-_9SJBKrwAAAAAAAABwmVZC5ucQ9s0QMwQ6Cu6VqwAAAAAAAAALakHLSuC4R8vzlPIApTxuxAAAAAAAAAANQvGt_WCeC3mBFOZFXsaM4QAAAAAAAAAcyPvQnIOQUh6g8jc0H5_FCAAAAAAAAAAFg82PsytJks3Vn0_tWyJl5QAAAAAAAAAbhQ5cY6hqm-eI3Hf-Do5rXgAAAAAAAAApw8YyBE6YuJVW0xgQWj8zJQAAAAAAAAC6XjbeTJfqrorYtlzkHQBT0AAAAAAAAAADsDpfjMchcu11LmkvPxu-sgAAAAAAAAACdDVH2WdBQ243L1n4EnAIJwAAAAAAAAAhlq6ldg5kLS4U3D5BeWHLKQAAAAAAAAACH-oaVIyxpxvd746mlUjD3gAAAAAAAAALbDNu25BwvOEIoFl6fwqL_wAAAAAAAAAQ69yL8deQ8D4yvM0c6kujsgAAAAAAAAACw_BqsnPHylj4BERvm4tv_wAAAAAAAAAA", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "adkeyas3W26uFEzRKjKNyw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEPD3cOudib0XQsq9y3nJeyAAAAAAAAAAQPHOUiNkmrb6lymlNuXSU6gAAAAAAAABCdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcO9_JyaRKYBdkJrY8OUa6igAAAAAAAAASj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAc2wgGDGWUYKAius-1IxNgMQAAAAAAAAALs5CzqyR6_GmBEGxwpC8zNAAAAAAAAABK4EfOVjZ8UDEWtY1KnqslYAAAAAAAAAAhYNTunKybilcdruNbkYh4bAAAAAAAAAC2bxcuG5n0qJIaHX3wrksHOQAAAAAAAAAGTymAEDD545ov_oP4db3SYQAAAAAAAAALmON6E-sGKxCDq9_2hgYb0gAAAAAAAAAA", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kQLQAgPodGZQIssiOLfgVg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf", "types": "CAODBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DU1r9dRWaA73O7zRX_V2Sw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAJiAC6sIDdQuWlno6mhwaFiZwAAAAAAAADZ980-iSS9S0F-vkRag1FHZwAAAAAAAAAHLlS_2xs10ssihc5Uh6NqzgAAAAAAAAAfv7GKAWxeXNZbjk8Dw8GzZgAAAAAAAAAA", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "97LYjag2U--dwlPedhKFsA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAAA_rYYxe-SHgukLEpCkawSk1QWAAAAAAABAaRYxe-SHgukLEpCkawSk1QWAAAAAAABHocYxe-SHgukLEpCkawSk1QWAAAAAAABHjEYxe-SHgukLEpCkawSk1QWAAAAAAABHjEYxe-SHgukLEpCkawSk1QWAAAAAAABqcc6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvyz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvo_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0qd6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvMr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CQMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JzEUg3uJDH9y4ttS90mXeQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFbojlkH6U8-uq6rXJn3yJDAAAAAAAAAAETKPAl4roVc6u9INGFwfp_AAAAAAAAAAM4iaBbZIIwXRBOYMSVscz2wAAAAAAAAADf5pCmW13zl5OWUDLG_ClrwAAAAAAAABNynHqfILVzOOqJs-5yJf4gwAAAAAAAAAeU2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAAAj3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAABd", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lE8Ul76Ux_RbEcuXBt93-g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAAAdeAxdHY-4DbDT_cuHjXXw_gAAAAAAAAArZC4caaBbQcOc2WclRiklUwAAAAAAAAAMQJ-JVADSuuonf59sOKCy_wAAAAAAAAAPbYxYe2jgm-ZVQ1wIKl60VgAAAAAAAAA1B_TZlmg-i-MShObdqiYcyAAAAAAAAAK9JjiG_BroZFP40tpmv2LaAQAAAAAAAAANT3lk77LF4G-nQZW_WRBUXQAAAAAAAAAH_8CkmXN7rMP1z1mWZ4cysQAAAAAAAAAbvB5-VFNxmRTipezH9t4OWQAAAAAAAABXblY2Zoz09t8zvWWEkNwQ4QAAAAAAAACuIJGZm_kDZxOYo3A2Fee1WQAAAAAAAAEgZgROkWlvV9ujJA-aNSGhMwAAAAAAAABA5VZIXKdThz-hZwdLu0KVfwAAAAAAAAAKGY8FzW1zmT9O6Iy3KHcGZQAAAAAAAAFJ90UIqO2n6jPWAsY9C7Jk5wAAAAAAAADqIvkYVQpy0zuSMjSWKUUFtwAAAAAAAABp1F_4eN2zNglbo7R6puFiTgAAAAAAAABbPMxohprh7424nqIeiyi3LAAAAAAAAAB1KvOfKs64pdR6LUo_fLNwpAAAAAAAAAAAAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "J2g5fO93ezqUgypiuztojg"}} -{"Stacktrace": {"frame": {"ids": "AAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "AQU"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "26eMbIowZ7RFzGdD2uFyMw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAABCxaYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0D", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iLTslrGORIyXKfkvn0rVCA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAPUAC6sIDdQuWlno6mhwaFiZwAAAAAAAADZ980-iSS9S0F-vkRag1FHZwAAAAAAAAAzXo7g-Y5QcR1vwA7ORZK_pAAAAAAAAAAF1Mo8VSr4ExgPLu63UteaagAAAAAAAAAc7KiGB3QuQ0TSydl142kv4gAAAAAAAAAFDJrVAhIsrM7D63maCxrMRwAAAAAAAAFL", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rkgBP4sIA5dHtR_5QDvD0Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qa3LlvY-lX7QFxqyniBgi3AAAAAAAAAABZDH4ZrfSeeQ_HQhbV8TcPQAAAAAAAADd4jSOeojX1HJ7UtWM_nspTAAAAAAAAAAhq6dG50P9zlO2POIXATNq5gAAAAAAAAAIfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdbg-U7BdB6cMtXtMigMAHygAAAAAAAAABU5s7FYWEmhjGUiz8TfmatwAAAAAAAAAYr0SzipKiK5ehcJDBm9mclQAAAAAAAABU5TiGwb-AyAC8UyQzxJ9-pQAAAAAAAAAgsNM_x7UckJxkEvzk5airYwAAAAAAAAAHLO0kqCJ5sLnPx_SwGJYFEQAAAAAAAAAU61vrmCVoJZp3HjBxIMFrNAAAAAAAAAAFF7lATn_bFhRDcY0Z0OyPwQAAAAAAAABoY5AhuW5zTFbvkEYRGrJ6zgAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAZHpec9nZGwrrhoUYM845NAAAAAAAAL7r_QYAzQdAagYTCI2yUMpa7wAAAAAAAO786tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQL", "types": "CAMSBQIDBgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QOIxcZGbFuLnj5qiY-JZYA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABda68f5mgZFs3OaBztew54AAAAAAAAAAM9lngTnmeSG1s7rdk_juSMAAAAAAAAAAGHrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACtBnjxOT6ecDtMNaRY7RgRQAAAAAAAAABnzd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX73IOkhtZyjrZNnxzxVPYTQAAAAAAAACNp20xNjB13pFFci9UHZaQsQAAAAAAAABbNFoti7zeivEyGvfQ3_ANTgAAAAAAAAGU3kg82-0D3eZ1bo-oCBlTCgAAAAAAAAD0O9IjcD5d1rTcG4kkieTvLAAAAAAAAAAePvsuEs2c6C6ecuTF-xQOfQAAAAAAAAADB1984Ng46sq2rHP9JYVyYgAAAAAAAAARNdnOauNqYT-cKE84qEP2jwAAAAAAAAANlsX2eCLSr4Q70_mA1t3KeQAAAAAAAAAoNB3KICW80r4krIyGFXIJIgAAAAAAAABZ2uEWBluAjlG6YATEmwlaSAAAAAAAAABQNERUEOUHR2SUErZWdQGwyQAAAAAAAACb", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YgLJzuU9kxRA_szpHYnDhw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wnFXT4fd_WKeR1cE-hlLelCQAAAAAAC-wxFXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwWtXT4fd_WKeR1cE-hlLelCQAAAAAAChsdpXT4fd_WKeR1cE-hlLelCQAAAAAACh1LY", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "94o6mawNwOW6nwyr1PAIHQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAHX_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAgAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMyBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZvwiecS6ape8IUAIjG0SKQ"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD49fSZxl-YF9wOaedogsBMtvRAAAAAAADiW6SZxl-YF9wOaedogsBMtvRAAAAAAAEXO9SZxl-YF9wOaedogsBMtvRAAAAAAADSVQSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD0QbSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAADz6pSZxl-YF9wOaedogsBMtvRAAAAAAAEOStSZxl-YF9wOaedogsBMtvRAAAAAAADljeR_3RsDYccfUxjNYYah3JZgAAAAAAGO8E", "types": "TQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zqEaDpKRyJAOpyXtzl9UkQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlPqcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgKr", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "x7E_WMpPyNR6UoR6jD_ztQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAet_8P_qgRJaTfBrJGumjgpQAAAAAAAAAA", "types": "CAOEBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eX5L_3abHLPWPQF-_snJfA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAAAaieVPbh3z67ZFj7IGoqq7zgAAAAAAAACEBFI7c7JS1eVbUcz-CuyraAAAAAAAAAAJpE_XF-eq0tBl0fP7Y7zrSwAAAAAAAAB71KEUqjFZLVnb5vw5WK42TgAAAAAAAAAg", "types": "CAMIBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PU4AlGgy6OVgX5g2hXwflQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAV2c9TATIrCMgoDoZOxrWO6gAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJuxWu7bOCGuvy3Ir42torwwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAHkpuTftzD6vsNSbiwrKhDqRwAAAAAAAAApzeD4Sc2IabUdV1xLspp0EgAAAAAAAAAFR8694xCVhTAWRd-apeUFDAAAAAAAAAAC-tSbHlR91dVpvAdxUOkCnAAAAAAAAAAJOCBJ3b0yd0m46kgQppcopwAAAAAAAAAFutn8crTuA55RNoKld3txuQAAAAAAAAAA", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TohoLCipAaXWyBdT-2T3rQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABazfcz5k14PsCcDvFyUC1kmlV3QAAAAABaQMEz5k14PsCcDvFyUC1kmlV3QAAAAABaPnDz5k14PsCcDvFyUC1kmlV3QAAAAABGHQT", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "q2WGGCpyITTBJHm2o0dHlQ"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAABCxaYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBrv", "types": "BgMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g5T7QK05XvJ6l-R8ldhwpw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAfBsVYsnZ_Lwaqr0cHEPo0D185QAAAAAAfBjaYsnZ_Lwaqr0cHEPo0D185QAAAAAAeZFzYsnZ_Lwaqr0cHEPo0D185QAAAAAAejiZYsnZ_Lwaqr0cHEPo0D185QAAAAAAeEof", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SnDCdYihCB3VPX-yxBkTjg"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHrJigtQ4kMk_MBWrPUAFqVnYywAAAAADHpx9gtQ4kMk_MBWrPUAFqVnYywAAAAADKAEMgtQ4kMk_MBWrPUAFqVnYywAAAAACRqCugtQ4kMk_MBWrPUAFqVnYywAAAAACRqLngtQ4kMk_MBWrPUAFqVnYywAAAAACRoRJgtQ4kMk_MBWrPUAFqVnYywAAAAACRocBgtQ4kMk_MBWrPUAFqVnYywAAAAACRpNLgtQ4kMk_MBWrPUAFqVnYywAAAAACRoRJgtQ4kMk_MBWrPUAFqVnYywAAAAACSOlmgtQ4kMk_MBWrPUAFqVnYywAAAAACSOkLgtQ4kMk_MBWrPUAFqVnYywAAAAAB9EMpgtQ4kMk_MBWrPUAFqVnYywAAAAAB9EMpgtQ4kMk_MBWrPUAFqVnYywAAAAAB9ENVgtQ4kMk_MBWrPUAFqVnYywAAAAABqOLpgtQ4kMk_MBWrPUAFqVnYywAAAAABqIHEgtQ4kMk_MBWrPUAFqVnYywAAAAABqHtEgtQ4kMk_MBWrPUAFqVnYywAAAAABqSIOgtQ4kMk_MBWrPUAFqVnYywAAAAABqSkKgtQ4kMk_MBWrPUAFqVnYywAAAAABqr_K", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DBkis1--lWH-VTcyB6uwYg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR5ISNDzWiYDmLZi_Z1ZVETLoAAAAAAAcM57", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IVe1z8n3OgBSXs9ZgYQTCA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAAMlBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF8DjWuv2ON9M4hqERzLLGrwAAAAAAAAA4jl0Few0KXqirBZp0WuOd2wAAAAAAAAFe71tcgbBjsGAuVt1WGfcc1wAAAAAAAAA3JS0BtKRMk3xcaGJmg4uqaAAAAAAAAAATAmTcFForv1r91KDhJjsuQQAAAAAAAABh7BvwwtuvWC96Hl7IBrycDgAAAAAAAAASiN7YDy9yd7ARVJltHW-2lgAAAAAAAAC_MdMo4LAHA-xUI6S7kmKPeQAAAAAAAAAULB9eOsHutmp91_cC1dZYGwAAAAAAAAAGANmrmrqqJv18GWh_5HHQlgAAAAAAAAAYUTB2ADQFxXISnXcFBKNbeQAAAAAAAABTERC3TORIgU0YrmeCK0zHCgAAAAAAAAAha3AmMsWYsv2DEhblA99iSQAAAAAAAAAEiG0UNe2wBwhcySMoRhbAQAAAAAAAAAAHiynY3Vpl2yeKIqRo2Ld9YAAAAAAAAAAUvTiT6RQHSjUNEBuIvfofKgAAAAAAAABRer7IYYpYGm8FuaYV6j9_KgAAAAAAAAAOok4zrk1T3mBLtObzPQcS-QAAAAAAAAAFdLwWk1CGjdl0nWT4XrDcdgAAAAAAAACSkpBi8LFR3RTjSJqFuljOuQAAAAAAAAAATRhdHOKO7GmLMAaUL3Xw6QAAAAAAACSc9BM25vr762IbGPHbtur65gAAAAAAAEYj9BM25vr762IbGPHbtur65gAAAAAAADiG", "types": "CAMqBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "48LM-A4BXorXDMlzaCgnhQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcDY6SNDzWiYDmLZi_Z1ZVETLoAAAAAAAvtxjSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt-hLSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWduRSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWdeUSNDzWiYDmLZi_Z1ZVETLoAAAAAAAx5yKS5FLyxJzArwdyTGdAwNyNAAAAAAAAXnnS5FLyxJzArwdyTGdAwNyNAAAAAAAABCs", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UXyZCc79Dkgss9nEK0VutQ"}} -{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBAu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAYtbf6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgVN6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOBI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN216tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIer6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlH3T6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIYH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIRA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAl1AE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlzoH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlmsw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAll9_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAllGK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAirCv6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "FgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "05r6Ccnm9nLiv5rAFI61BA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmrF", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MT3qrLXJyyFa5mMadoI1ow"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAABCwrYxe-SHgukLEpCkawSk1QWAAAAAAABHD4Yxe-SHgukLEpCkawSk1QWAAAAAAABqiE", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5uwo_M9Ua17W7BQNlGpxyQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAABWyt_cpdTtBVWXz_YP1okGcAAAAAAAAAAUIcdeXxipoRVqav0jM_5DLQAAAAAAAAAFy3suxdda7-517ccPeU80LQAAAAAAAAABxgPPuzI1J0KcF5WhFpW09gAAAAAAAAA0E9rVQyfXmRnEPhP5-Uw5UgAAAAAAAAAELJHrWrJn2NgzCwphqZHUTAAAAAAAAAAIxgPPuzI1J0KcF5WhFpW09gAAAAAAAAA0h7etdb4LVAEPlLKOTYCzyQAAAAAAAAAU2yMXVAJmTG6J5VZ48pu33QAAAAAAAAAlV9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAh7BD104ngFu6-H7wuSNrQawAAAAAAAAAIghH-UNAYXMIaEqa4sWPFdwAAAAAAAAAC-T9Lg86rw6wfZF6TMtAfcgAAAAAAAAAHxgPPuzI1J0KcF5WhFpW09gAAAAAAAAA0iRzNGxTlTqWMN66MrMvwHAAAAAAAAAAEi82Zyo5E5T7CxIz0RyaEdwAAAAAAAABYY_qFQxT1b6IwL0Y-bhoIvAAAAAAAAAAEV9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAhbo-mfDTeOBpXH5-WRN3GcAAAAAAAAAALY_qFQxT1b6IwL0Y-bhoIvAAAAAAAAAAEV9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAhgG-E_4fA-ZwbNoblYcK9MwAAAAAAAAAmmKHXf_yVcw9ZXg_JH2MAwgAAAAAAAAA19Z8fcZAU_NpheIsS8JZMvQAAAAAAAAAGQEcoaK1PiA1axEyBRqzL3AAAAAAAAAAYKeQlhHJn6E1s3oO-ioUxQwAAAAAAAAAB0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdpjqGM7KMsD-ZH_lV2sc9MgAAAAAAAAAILDND5h4OnyzOTzZE3cQ4PQAAAAAAAAACPkXHEXW7ZdXzVhylrWjRfAAAAAAAAAATOwseWRXw34EACjeXCzoUYAAAAAAAAAAc03EpVG5Jkc7cUf6Cuf3bpwAAAAAAAAALsNBO3bGdqiDUbUiwDl-zWAAAAAAAAAAWy2oE0QgkMAmHEUodS3YyjgAAAAAAAAA3H1Egn-EFpe1RJwfUvO2vAAAAAAAAAAAMQO-5MHLWnDuhL1CD1b7BCAAAAAAAAAAByG37FB0KxAHWwRacRE0LMwAAAAAAAAASsKBTuplNrUDMhHIypHlY2gAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAHfXqjB_amR59Lv13Nhle_NwbwAAAAAAEYl7", "types": "CAM0BQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SK9-X9x1FnjCdB8Qub4LOA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHwQXT4fd_WKeR1cE-hlLelCQAAAAAAChHqEXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChGI0XT4fd_WKeR1cE-hlLelCQAAAAAACg6T7XT4fd_WKeR1cE-hlLelCQAAAAAACh1MA", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sPnyqYXZ1627cOAm3Dt4dA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qa3LlvY-lX7QFxqyniBgi3AAAAAAAAAABZDH4ZrfSeeQ_HQhbV8TcPQAAAAAAAADd4jSOeojX1HJ7UtWM_nspTAAAAAAAAAAhq6dG50P9zlO2POIXATNq5gAAAAAAAAAIfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdbg-U7BdB6cMtXtMigMAHygAAAAAAAAABU5s7FYWEmhjGUiz8TfmatwAAAAAAAAAYr0SzipKiK5ehcJDBm9mclQAAAAAAAABU5TiGwb-AyAC8UyQzxJ9-pQAAAAAAAAAgsNM_x7UckJxkEvzk5airYwAAAAAAAAAHLO0kqCJ5sLnPx_SwGJYFEQAAAAAAAAAU61vrmCVoJZp3HjBxIMFrNAAAAAAAAAAFF7lATn_bFhRDcY0Z0OyPwQAAAAAAAABoY5AhuW5zTFbvkEYRGrJ6zgAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAZHpec9nZGwrrhoUYM845NAAAAAAAAL7r_QYAzQdAagYTCI2yUMpa7wAAAAAAAO79", "types": "CAMSBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LU5M-Y2vAZAPnKMCmcDaJQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAAYOYaYsnZ_Lwaqr0cHEPo0D185QAAAAAAevc3YsnZ_Lwaqr0cHEPo0D185QAAAAAAevcUYsnZ_Lwaqr0cHEPo0D185QAAAAAAeZ1WYsnZ_Lwaqr0cHEPo0D185QAAAAAAc8IQYsnZ_Lwaqr0cHEPo0D185QAAAAAAeZ9MYsnZ_Lwaqr0cHEPo0D185QAAAAAAcdR0", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SvIqTeUVvtREJSFJV6baig"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAARjwFolLawtZ8KIPHu9VlFy3wAAAAAAAAA2bCBdTuDS0DbCDGTJHRgQHgAAAAAAAAC17GPptfUGH-1Hs-IBSvWbWwAAAAAAAABr6lofCsTYrZTgxumxKdLXaAAAAAAAAAAW48NTOm9REY9geqrnhLmtIQAAAAAAAAAHLZh55WiQA4pYUO2PyDs0LQAAAAAAAAAHiynY3Vpl2yeKIqRo2Ld9YAAAAAAAAAAUX9lpa9TN84k-aLBSFJ8EgQAAAAAAAAAHMkmisheVP0DaTeF1Tgq6BwAAAAAAAAAVkrGbMu8JHiKkyENUYIKBywAAAAAAAABnhCDtT-9vDXD-e8HuC9915wAAAAAAAAA4GP9DcZgvFsVU-FrimfbKfQAAAAAAAAAJ4X1D0bE8dXWnBHefwzL1KgAAAAAAAACMuC86pFXXnBLCj6eRRljPDwAAAAAAAACENc9gj1rv2NerZVTmjxTx9AAAAAAAAACGnQWGdRxvqVjwlLmQWH1PhwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAHCKeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARhG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpUUbK4uezrplMLlSw0h87XfgAAAAAABnsXUbK4uezrplMLlSw0h87XfgAAAAAABngO6tVKI4mSYDEJ-ABAIpYXcgAAAAAANbNN6tVKI4mSYDEJ-ABAIpYXcgAAAAAANbJX6tVKI4mSYDEJ-ABAIpYXcgAAAAAANcyB6tVKI4mSYDEJ-ABAIpYXcgAAAAAANcaV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIcsy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIcE56tVKI4mSYDEJ-ABAIpYXcgAAAAAAIbq76tVKI4mSYDEJ-ABAIpYXcgAAAAAAIq796tVKI4mSYDEJ-ABAIpYXcgAAAAAAIquY6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIqqV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMYBQIDFAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0NRB9624MZLIKmkHE-1rew"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF_IhPXrChwahxbJ63NZZANQAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4rDcHLjUrpvKg-XXDfFGKmAAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADv9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABDHfFlM3axnhO28EteQn-2WAAAAAAAAABJ5utt2dQ8HKrTepHdNpprxQAAAAAAAAD_1S0MJndmjVXQH2LytrGE-QAAAAAAAAAA", "types": "CANABQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ENrq2_MBwld_ERQVMIbQlA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAACCpZFZt3AmSRe8cuNGaxoM2QAAAAAAAAAFn7D9rF39YwNZHp3pgAyGywAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAABtRaKCDne9fKuTHuPgmdhjQAAAAAAAAABVg8LgIqDa3ypsQ0qV00ZvAAAAAAAAAABLH5Rq2KMtk8z3fPDJ8fY-QAAAAAAAAAG5NaOR21tqmKb_2JdapT_egAAAAAAAABD", "types": "CANEBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "s7bsINl9DvTXKKGeGoWTVA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLVSALBRPvgHpUWKmpUo1khAAAAAAAAAAEkoE-yAAYIqbvRVhFPQiQCAAAAAAAAAAA", "types": "CAMvBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OLDYY6fj7GShTOkVXzydtA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6rWSSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6rR7SNDzWiYDmLZi_Z1ZVETLoAAAAAAAt004SNDzWiYDmLZi_Z1ZVETLoAAAAAAAvUhG", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "x1lBt1LJeSjGFaVggB_aRQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPkzPBPi0X-wl-PUEBtNL3SQAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIHT1vQdc0XC0RoSXqyJlYhgAAAAAAAAALpYJXWbdqO_EwCki56aMNwwAAAAAAAAFsVp62M-dk3XvfozDfnsnw9gAAAAAAAAAG-vBNy6YNq9pF5j5Mm7smkwAAAAAAAAAFno2Lej56mJkbwdNYz7YGSQAAAAAAAAALn5uztEwS7m6JKpJbGoHSGwAAAAAAAABKzwiX7AgVqL-aPC-SuEi6CAAAAAAAAAAHuC86pFXXnBLCj6eRRljPDwAAAAAAAAAQNc9gj1rv2NerZVTmjxTx9AAAAAAAAACG5gRif6Sjt0HHN5TwyiXUJwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAqMaIQHwhzmbCa4rmJIpC-wAAAAAAAHnqtQgAmBJBgPLrkikSPRsmtgAAAAAAAOb86tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimtb6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOK46tVKI4mSYDEJ-ABAIpYXcgAAAAAAlcA76tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbdH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlWJ36tVKI4mSYDEJ-ABAIpYXcgAAAAAAlsoG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlrpu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlqKz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlwjf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlN5a6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlNsK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlOPs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMub6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMqa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMWu6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgDv6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgCV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwA8J6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOBI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN216tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIer6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlH3T6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIYH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlIRA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAl1AE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlzoH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlmsw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAll9_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAllGK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAirCv6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMZBQIDLQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1Vn89WBJR0kfSEtwzji_DQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF_IhPXrChwahxbJ63NZZANQAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4rDcHLjUrpvKg-XXDfFGKmAAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADv9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABDHfFlM3axnhO28EteQn-2WAAAAAAAAABJ5utt2dQ8HKrTepHdNpprxQAAAAAAAAFzUP7wzdQXo1Tc_iFi4DuZQQAAAAAAAAAE9ZOKtWsgasz8zygdckTZDQAAAAAAAAAEEVcCXOQnkebnZR5Z6XcBvAAAAAAAAAA0SLm5iQaRU0eNqFhBMIrYxgAAAAAAAAAXvOoArOQsiI-woapVIk9zYgAAAAAAAAA1NnsXqH-CVYMwVp_zbU78aQAAAAAAAAAIQunNj1oMDkHtmA3AacNPUAAAAAAAAAAFx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAOPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMzzqjB_amR59Lv13Nhle_NwbwAAAAAAENS6", "types": "CANNBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bbHTlOSio2bcFnLJVCzI_A"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFdkIcEvvhuguaGYCmGWrnWRz1QAAAAACFWIHcEvvhuguaGYCmGWrnWRz1QAAAAACFVZK", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "r2afFjMCaKrL1sh73z1hIw"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABgzFMz5k14PsCcDvFyUC1kmlV3QAAAAACFH-uz5k14PsCcDvFyUC1kmlV3QAAAAACFHKnz5k14PsCcDvFyUC1kmlV3QAAAAACCMghz5k14PsCcDvFyUC1kmlV3QAAAAACCcl2z5k14PsCcDvFyUC1kmlV3QAAAAACCdwcz5k14PsCcDvFyUC1kmlV3QAAAAACCeWJz5k14PsCcDvFyUC1kmlV3QAAAAACCehQz5k14PsCcDvFyUC1kmlV3QAAAAACCer2", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uEFo0fAyVpU8ZWzISquVFw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvU6cEvvhuguaGYCmGWrnWRz1QAAAAACLroTcEvvhuguaGYCmGWrnWRz1QAAAAACLsWTcEvvhuguaGYCmGWrnWRz1QAAAAACLsmncEvvhuguaGYCmGWrnWRz1QAAAAACL74lcEvvhuguaGYCmGWrnWRz1QAAAAACLvgWcEvvhuguaGYCmGWrnWRz1QAAAAACHfKNcEvvhuguaGYCmGWrnWRz1QAAAAACFpNEcEvvhuguaGYCmGWrnWRz1QAAAAACEB4H", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XFNJ-Y5i5xbWccne1CdTAg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFVZ1cEvvhuguaGYCmGWrnWRz1QAAAAACFWWycEvvhuguaGYCmGWrnWRz1QAAAAACFWaf", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_CuNkg8IjplIBsYDC3MqZA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlo76tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA6d6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA406tVKI4mSYDEJ-ABAIpYXcgAAAAAApUaF6tVKI4mSYDEJ-ABAIpYXcgAAAAAApQ6A", "types": "FAMNBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OVfsYo1AUUUdMdlCaFwu-Q"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDQNcEvvhuguaGYCmGWrnWRz1QAAAAACXxxScEvvhuguaGYCmGWrnWRz1QAAAAACXzgEcEvvhuguaGYCmGWrnWRz1QAAAAACETJm", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Pa7eV1ClIoEc0MOWrL7aYw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEWB9GVskeRyK4_o3XD61XIAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAqJzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAqdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcO9_JyaRKYBdkJrY8OUa6igAAAAAAAAASDJ2lZS85ClNgTnnEk8XThgAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KTolfZraJkKDWNdjvBwe_Q"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAAA2Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABB5KDO11BWTfkkFO9MFEbTJwAAAAAAAAADoyUgxxOY520Rj3U8w5GHoQAAAAAAAADS_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhZsqFV6xhVekP5-uToPI32ragAAAAAAjkKVqFV6xhVekP5-uToPI32ragAAAAAAp_Cd", "types": "CANPBQYD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8xpc2h22mHPdvmOlcypPfA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV_OYxe-SHgukLEpCkawSk1QWAAAAAABXc-2Yxe-SHgukLEpCkawSk1QWAAAAAABXVt2", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "C7vQBGljPqDLZ1glBrcWiQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcQxTPNhFsgl-8e8i61Q7phQAAAAAAAAAnwnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAE8PySOWxdeTvWtl74Iv620AAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAn5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALCqHdoNRupr5ud0SEqGGzcgAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAF_Ngz1ncxudXrxSqiWBxoaAAAAAAAAAAETphZkORhkBDEbRDMofKltAAAAAAAAAChfNBUTxafk7cWQGRCQErWrwAAAAAAAABiTphZkORhkBDEbRDMofKltAAAAAAAAAA7x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlsd-YsnZ_Lwaqr0cHEPo0D185QAAAAAAX1e7", "types": "CAMaBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "t_MhSbU2giVaKBznPcc-Nw"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYr1L9Bd3XIiGWasJdN8trI5tgAAAAAABWosL9Bd3XIiGWasJdN8trI5tgAAAAAAAmaPL9Bd3XIiGWasJdN8trI5tgAAAAAAAmSUL9Bd3XIiGWasJdN8trI5tgAAAAAAAkMiL9Bd3XIiGWasJdN8trI5tgAAAAAAAXZNL9Bd3XIiGWasJdN8trI5tgAAAAAABcjW6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ8bZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ75B6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ7gC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJloA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJlhJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAACHFY", "types": "BwMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9hAbTICOesyJ3rX_TlmZDg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADMYfPhlM7fpOuKzX3zIJxLMAAAAAAAAABQaa7Eaxg4z59gzi_LDCDZBAAAAAAAAAAQprbfaPuvU_n-ucbpjQxQ_AAAAAAAAAAj8DgYxzl_EXTxjPKMNwP9uAAAAAAAAABMIfyGrmJO4TRdP2mxshA5zwAAAAAAAAB5TjxFc0HQ96iL53C9T5C2dwAAAAAAAAB4FJBAv_ZG17EaYJPkcMS1YQAAAAAAAAAYb5D4G32aP0YH2ukb-bXGLgAAAAAAAAAT", "types": "CAODBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "w8p8KkfgO4GoE7XBvV8MBg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACamW1QO3T5kZR72H8FRXCCwwAAAAAAAAAA", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FGp7_YvYovHXJURqI7m4fA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZxs", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g_PmLUDiMT9Fiy_kfGXHxw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAazVvSNDzWiYDmLZi_Z1ZVETLoAAAAAAAayx-SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcclQSNDzWiYDmLZi_Z1ZVETLoAAAAAAAccSXSNDzWiYDmLZi_Z1ZVETLoAAAAAAAVK9YSNDzWiYDmLZi_Z1ZVETLoAAAAAAAb51SSNDzWiYDmLZi_Z1ZVETLoAAAAAAAVHPJSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcag8", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Qj4-KfGxeYDC4jIbY_qMxw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQEI2MlivQ_yGyq36LnLAGeQAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQOUV_Man7LKpLI_xXeAvtgAAAAAAAAACeM1U5MRplArg1qeEAEk5MlAAAAAAAAAAYNK6q-mYZhWe1E7afoKkwiQAAAAAAAADYr6Fg_DPZ96geKIjDaUl37wAAAAAAAACsmdgXK8UgXxJq-aF0PWZBWQAAAAAAAAAMuHXk96D_H0MjX0tAh6AHfQAAAAAAAAAGBQgPvwiw9NNbOJgDcqi8DAAAAAAAAAAtD8SuOAHHuRsEe9MWrwApVgAAAAAAAABUpD64Y8dYs0KzJcRfejjvpQAAAAAAAAGx0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgzLRHJmK7SuaCDIOsydGjpQAAAAAAAAAFms-x3fJ8QBk7y_Ax6kns5QAAAAAAAAAEOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9Na_PpP7_oJyidmLVUAzc9QAAAAAAAAAHsF6k3xulBINXj_kpe4m7bQAAAAAAAAANzMfrrVBbbdAsJkD0YJE_vAAAAAAAAAAIbJBdrar7fHaaoM_RiBL6vgAAAAAAAAAIqIox8vPmS5RJ3a2PQKCB8wAAAAAAAAAFFYnnqLZr6bqb8GInWW-SpgAAAAAAAAAmWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgh2i8b6s7ABK28E4XdjB5FQAAAAAAAACRv7NZn75ARbCs3HYY9Fl9agAAAAAAAAAI24DpypDxQEzaPhdmYMeiPAAAAAAAAAAEqEljmOsHFo7__x1h9vqX9AAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAPHBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2BrtK-7vEpxtyRvA-Da53w"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABFscX", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5CUA13BfSKgPE5R1fmHh5g"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlZUcEvvhuguaGYCmGWrnWRz1QAAAAACEea2cEvvhuguaGYCmGWrnWRz1QAAAAACEf3-cEvvhuguaGYCmGWrnWRz1QAAAAACEgLR", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BnraydbvEwL6mkTBVZOVLQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlqJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCIE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA9N", "types": "FAMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RS8ti051V-zPvOk5r6Viqg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-uTvXT4fd_WKeR1cE-hlLelCQAAAAAAC-xVVXT4fd_WKeR1cE-hlLelCQAAAAAACqYdJXT4fd_WKeR1cE-hlLelCQAAAAAACqW05", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xxGhbam4Rod7gS2xhM6-rQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYhpdrA0BwX9k4wpq28cpa-QAAAAAAAAAOWAB0fvH6ioTO4VaJeYjuEAAAAAAAAAABtu6yRjvR9y5TsA8gfp3aWQAAAAAAAAAlqRvG2N9iYeFyl-3xULRJEgAAAAAAAAAeNzHJV3J_u1LNN2J-Rsr7ggAAAAAAAAAEwfMlOb4AFY0poDJbAxrocwAAAAAAAABFA6t1xGw0Vznd4jLOiyDm4wAAAAAAAAEuFTxQJid-O66-FuYdEDBjgwAAAAAAAAAfif-A_N21fy6ux02lu8iQvQAAAAAAAABDlucqrQU7Z14srssOIU6J1AAAAAAAAABfn2S0SyZv0DZ6ex1YiCzcfAAAAAAAAABHQ4jw5JHGkPC3MdanjDSu0gAAAAAAAAAc6clJsdr8vxLfgVYlQz2V-wAAAAAAAAAkjimseSpjBNWbZ4eHcfFIAwAAAAAAAAAlB-Oe_OuJ2Xvt27AtRop-VwAAAAAAAAAMfdVymRP0v5Xa8xgKjz9rGwAAAAAAAAA9AYZZP3m0WChzsqrc9vy9qQAAAAAAAAALHdbjDGqcyeXdawK4ayl-8QAAAAAAAACv8FITX_M8xZfe7i7TCZCgqgAAAAAAAABt7jYCNzkb9MmHUrU5CHQXAwAAAAAAAACk7qz18bHgG-Zc_fVo9Dsh7AAAAAAAAAAiLDdYUFmfmBXmyn1AQ_9arwAAAAAAAAC8RYYzFwpA3ctX6AMeEeq4YAAAAAAAAAASKSV5zpqX5uS8pJ0jF65uTgAAAAAAAAACNcpE6adeOVCfvBx4qpjhtwAAAAAAAAAHztHnkwVOP9LxgkQsriQwqgAAAAAAAAAmRLT8kD2Dv7n5Uv6GrwRORwAAAAAAAAAFNMpC60tGKaJ25O0qF-RzlQAAAAAAAAACtwASLq5QV6PtFM2KeIje5wAAAAAAAAB2CyFPDZBEiXoheKAUx-Kq0wAAAAAAAAAIbSqWaYKtavFZqjY4T_025wAAAAAAAAAQFD67YgaFeLuqBai5R0qQdQAAAAAAAAAm", "types": "CAMmBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CWudsqc4YRwwO2UAdX1LxQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAAC-I10upgJihUkX5rBuiOc-YwAAAAAAAAAJOqYUrIQFA_Z4Hrury2e3YwAAAAAAAAAFDcQnfqeciVDd9XNH90x5WgAAAAAAAAAYNdgn5AcwNt45ePjHQiCx9gAAAAAAAABHqi7IR3eJot-ftPl_JX6DqgAAAAAAAAAFJpF4VKbpMhUktx47gSQ0vwAAAAAAAAAOS06qc2WWdjyLzzAdWuSUuwAAAAAAAADm", "types": "CAM4BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eU8ia1QG3CJz_p9ALXHslA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYCMh__DRjYW6WKuSO4E-9UAAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAB2GBJ1zKS_b9jP7AxB92tjCQAAAAAAAAAo0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFKCxCvDIXtl0ClBmM3hNiLgAAAAAAAAAcFDp23rE1CceEicB2tyC3EgAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_QZucZeLQwMr7zKD51abCrwAAAAAAAAAMS_GmAS-sCtPOI6egY6LXiwAAAAAAAAAPbSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT-r9PdXX1mVfrKM4cjx98VQAAAAAAAAAHckdRYj6mGdEYJvYh_1v9CAAAAAAAAAAVNku1oPInJYwCIRLCUxYLuwAAAAAAAAAGGHfrWkNDTusMoI46fGLR6AAAAAAAAAAXtQBYLE5Qq3rn4uocqQBMfwAAAAAAAAB06SPcjSM_2i5VedtZVzcDIgAAAAAAAAAahrzNr_V8YVZ7ibkr1777pAAAAAAAAADWL1TsSv66pa2kBpdVIVNEAwAAAAAAAABGsavPbEF5C7JhfS7sqrnMYwAAAAAAAABNJvScc-kAblhDe3HgLZgGAwAAAAAAAAEtG4cQid4Xo1Tc_dU6YBAwnQAAAAAAAAAEEEfFWFsgasz8z6yvzLMmSQAAAAAAAAAE8j5cUdTnc2xWo1otBaDFqgAAAAAAAAAwkG8xQd-CQn-vHurDIfEJ-AAAAAAAAAAXhlBuXaLTryBXsnmcprSPLgAAAAAAAAAjNnsXqH-CVYMwVp_zbU78aQAAAAAAAAAIK_1eR84MDkHtmAgcOm681AAAAAAAAAAF3kqKIOk7SslvcfRGmqs1wAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAkQk1ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgGKA", "types": "CANFBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bhyCyaPyN3IwoOhomCtSHA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeX7KSNDzWiYDmLZi_Z1ZVETLoAAAAAAA3gHNSNDzWiYDmLZi_Z1ZVETLoAAAAAAA3f_TogCgWMgT5mMAMhpNA0IMiQAAAAAACA-D", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tXy3kfx8JYVKb1u9vHWM4Q"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcM9Xltn711KKFcrKCAYh_ZgAAAAAAAAAE8s5hM6TvWnoP9XP3e8VVVwAAAAAAAAAA", "types": "CAOOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Qi_HV2s76U-q22eSjxJyyA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN5QmcEvvhuguaGYCmGWrnWRz1QAAAAACNw7A", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "z6VzC1_Xu_H2TiDjzjPdmA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAAMlBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF8DjWuv2ON9M4hqERzLLGrwAAAAAAAAA4jl0Few0KXqirBZp0WuOd2wAAAAAAAABV2CjidhF2o1l9AQQZ7O2_8wAAAAAAAAAVAmTcFForv1r91KDhJjsuQQAAAAAAAABh7BvwwtuvWC96Hl7IBrycDgAAAAAAAAAiLS1R7UgyIEin1lhHxRFFXwAAAAAAAAAEX6lQOeqkpDSSxUYYwJb8TAAAAAAAAABCRPFiojmndeu_4nmb3OGehAAAAAAAAABqVdgwu2yTb01w3GcQPIyz_wAAAAAAAAABIQfZB-VRGlNehu2EmCzO0wAAAAAAAAAEJlj-_pvqSdlHmJAw2MF6mwAAAAAAAAArmIhHJLRWLV08bvGOk_MaUQAAAAAAAAAIOOfgbFUyyyBf7NiIDQweHAAAAAAAAAAidLwWk1CGjdl0nWT4XrDcdgAAAAAAAACSkpBi8LFR3RTjSJqFuljOuQAAAAAAAAAATRhdHOKO7GmLMAaUL3Xw6QAAAAAAACSc9BM25vr762IbGPHbtur65gAAAAAAAEYj9BM25vr762IbGPHbtur65gAAAAAAADvW9BM25vr762IbGPHbtur65gAAAAAAAL389BM25vr762IbGPHbtur65gAAAAAAAKoe", "types": "CAMlBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wVWlhmLrIg4ezt4I6Uq9DA"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqdJ8gtQ4kMk_MBWrPUAFqVnYywAAAAABqdikgtQ4kMk_MBWrPUAFqVnYywAAAAABqd1NgtQ4kMk_MBWrPUAFqVnYywAAAAABqd8KgtQ4kMk_MBWrPUAFqVnYywAAAAABqTSUgtQ4kMk_MBWrPUAFqVnYywAAAAABro4X", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "b2RSnmXvhjCRc5PWjsdxAw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaaAV", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Q8Eu40FpZPClw51Nc5Z0VQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlZUcEvvhuguaGYCmGWrnWRz1QAAAAACEea2cEvvhuguaGYCmGWrnWRz1QAAAAACEf3-cEvvhuguaGYCmGWrnWRz1QAAAAACEge1", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NKIT-6sz8Rcrv5dQo1Svfw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxe", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RWHF3OwT21IPak-nIUzKKQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAak0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB0qRvG2N9iYeFyl-3xULRJEgAAAAAAAAAe7p_llGp9OZbFMQuhvSu13AAAAAAAAAAIFtjh-A3lytsNmmUroc108AAAAAAAAAACuimFkk5UuxbH1IL630LmngAAAAAAAAAbVPtMofZCgqrw-l9pGX7aHgAAAAAAAAADRSgrZm24iCMR6dfllqWutAAAAAAAAAAaK_N78LhUkthI1fnHsP1_6gAAAAAAAACtTdLBc1JJ3J60d1mSzjojBgAAAAAAAAAA", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "D9uEZQLKh57x4BtzNglutA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP6z", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Fba2v_kCgR0XMDcTdnNyUA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQJvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACeySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAYh-mcFcSefWaXpPLGLAmk8gAAAAAAAADYzXY2fMPD2q8JxxSeQ4an4AAAAAAAAADb1ajhlpq_ffaY9SZwO_yFvwAAAAAAAAAMbYR0b7-vTQ0RKJD6ns3ClQAAAAAAAAAG5WRkp3UGiY89oONYWWfHqAAAAAAAAAAtidAHvTfpCa_Lill3CvLIKwAAAAAAAAAvytZblqIBEsQV2ku_vlKaDgAAAAAAAAAZkZgtpJIkDQ7_uBMazY7fxwAAAAAAAAAInfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYYUwJS6kVpV4XvYu7ZD33UwAAAAAAAAADZLdnJScMMbJz4xNn2ogw5AAAAAAAAAAOkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAgMlmvM-BCpIGbNIvco0TmNgAAAAAAAAA1", "types": "CAMxBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZORFq6EEwMoX6Tu_RTCb-g"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbGmXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz9V6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFxu76tVKI4mSYDEJ-ABAIpYXcgAAAAAAFsI76tVKI4mSYDEJ-ABAIpYXcgAAAAAAiyFW6tVKI4mSYDEJ-ABAIpYXcgAAAAAAiyBw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKkAu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEga0", "types": "EAMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UlhGaNTjh2CqZiofxpZ5rA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADA3-aZ3CKaS4aU08RhYA19y5ITQAAAAADA3RQZ3CKaS4aU08RhYA19y5ITQAAAAACQxvsZ3CKaS4aU08RhYA19y5ITQAAAAACQxoaZ3CKaS4aU08RhYA19y5ITQAAAAACQyJrZ3CKaS4aU08RhYA19y5ITQAAAAAB_vJaZ3CKaS4aU08RhYA19y5ITQAAAAABwXIKZ3CKaS4aU08RhYA19y5ITQAAAAABvwNWZ3CKaS4aU08RhYA19y5ITQAAAAABvyvbZ3CKaS4aU08RhYA19y5ITQAAAAABv3UA", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BDlisnvqa1LLQOmq1q0Eow"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAABhRJXjPkp22gaQo9vwY-85JAAAAAAAAAAA", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_eN577uJw5hksIBqBf1iCQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlqJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCIE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA9F6tVKI4mSYDEJ-ABAIpYXcgAAAAAApQKz", "types": "FAMMBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7W9hedogOVjTIlC7EFh1sA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--RVXT4fd_WKeR1cE-hlLelCQAAAAAAC-7bcXT4fd_WKeR1cE-hlLelCQAAAAAAC-03JXT4fd_WKeR1cE-hlLelCQAAAAAACi_9XXT4fd_WKeR1cE-hlLelCQAAAAAACiJjoXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcoN6tVKI4mSYDEJ-ABAIpYXcgAAAAAALckr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALko96tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Z56tVKI4mSYDEJ-ABAIpYXcgAAAAAAp15j", "types": "DgMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3huOpz_dzO1rKry9zYBuMw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAAA_6EYxe-SHgukLEpCkawSk1QWAAAAAAAA0BbYxe-SHgukLEpCkawSk1QWAAAAAAABq8f6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuoD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00i6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0yh6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "BgMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sSkvuXEJhjIUI110bPCy-w"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABF91Rz5k14PsCcDvFyUC1kmlV3QAAAAABF7Ejz5k14PsCcDvFyUC1kmlV3QAAAAABF6-Uz5k14PsCcDvFyUC1kmlV3QAAAAABFPfDz5k14PsCcDvFyUC1kmlV3QAAAAABFxl7z5k14PsCcDvFyUC1kmlV3QAAAAABGnUi6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BwMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HnIE-9MlTVx0Ab-mshynaQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQ9zOECVMFUE-sRNeQZ1HM6gAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARTZwep2BdnG6Mdu9AQocnMQAAAAAAAAAGCMCWh32oer3bDaYggVtoUQAAAAAAAACHHCW9gICkV36t4oXsjBpsdAAAAAAAAAAE_WhLMAElKfp9RHy9XD-HOQAAAAAAAAC3qkXC9AzfY8U3Ryc9g3OFDAAAAAAAAAAsccTvkbbzG7ITlutNR0SvYwAAAAAAAAAehu0S-fYG_gY_Otgg4IzKXwAAAAAAAAErXey4TSJt8z1Y1xeGVvkdYgAAAAAAAADB6fJMpXGng7X5bTc2KsPuMgAAAAAAAABSD0g0ITB6vPs-JMXU6kB_IgAAAAAAAAAETnmpwdT1yeLDbWlRnUic2QAAAAAAAAAHnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAA-DaVWIofPTETqopDkVERGkAAAAAAAAAATwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF2mlzHMlWgLtS4AXchUZGuQAAAAAAAAAIqThtgbHprFVYaxHnWJ5r2AAAAAAAAAAQ37kdvsyygZea642hUZCb9QAAAAAAAAAdvxAO4ozw0ZRvb8q4djSlogAAAAAAAABEwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFx4xnJ8Bvv3cqGQOknqJJwAAAAAAAAAIURrpT79Wm1-567n5aqJlbQAAAAAAAADL3bzfPK0NZtH4PhiksXncvgAAAAAAAACOotzl_-UJZ6X4M1v7YRzHZgAAAAAAAAAId_mdgff0kSRs-ewuuAGS-AAAAAAAAAACYpb1GyaDgfO6SxUxbAvctQAAAAAAAAAIyHxJa10zF8jCmhZDUlRioQAAAAAAAACJjOKHIn-OfmVASZP9y1NSfAAAAAAAAACHV9nsBUwQwMn84PajbyjYtAAAAAAAAAAYX6qt9XlU0IqttZBt4TnwZwAAAAAAAABHwvXjE31kESML0je4-Me7hAAAAAAAAAApDRApe1cPTh2-wFVHvKmI-QAAAAAAAABlfedIGTz7oXcPN7rVsxHwdwAAAAAAAAAMyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFq-Wp_fKqnzituNc-kKOtAAAAAAAAAAUpYMvKU2r2nETpEeIP80PQQAAAAAAAAA38jMyW-WmlGRJvr5T2b-plgAAAAAAAAAFwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0_JZyYR0Vno863IcUXpa7AAAAAAAAAAQGiPQYuBqA4onG16OCBJr7wAAAAAAAAA_wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF49P_FduVXL-1HnETkDgpjwAAAAAAAAAcS_CL2qp_hCoxo4NMBjattAAAAAAAAACntgTcpaw1PHSeu1PntXA3fQAAAAAAAABtVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFW_JPjd1DkAyoubIfHSaORAAAAAAAAAAMro-nOR8Y6-xR_0NZHNxiswAAAAAAAAADGAKN4IA59Oyrw_sFixA19QAAAAAAAACoj8cyxnhvgCmiV0wfzWt-5wAAAAAAAABH4_Wu3cP_1KUTQF00Htx73gAAAAAAAAA6v6A2aEAJbkezThEe0LppjQAAAAAAAAAIAHE52dyzEEDlVbgj_xFoxwAAAAAAAAAVwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFR7Hj9yPeT2EDyEr2K8ONTgAAAAAAAAAYg9D12vCHvqmadcctx-s3mQAAAAAAAAA7dAHd9ndNzEhU1GyagepTAQAAAAAAAAAlABk6RqRYy5QsiYS0AnfFrgAAAAAAAAApwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFtM8VFC-6NwJWsTojOgeMHQAAAAAAAAAMgQianSpTZDlq5RnHMXwrkgAAAAAAAAALwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFIg4O8IWFanKbF_VU4hFAfgAAAAAAAAAY3JOiPEBqME3dIDTotL2-UQAAAAAAAAAi36WCeR5NbgRZnRrGA9E9SgAAAAAAAAADAAAAAAAAV4sAAAAAAAAAHfzYObTVs5LvSNDzWiYDmLZi_Z1ZVETLoAAAAAAAyX_uSNDzWiYDmLZi_Z1ZVETLoAAAAAAAyXyySNDzWiYDmLZi_Z1ZVETLoAAAAAAAyXXySNDzWiYDmLZi_Z1ZVETLoAAAAAAAyUwySNDzWiYDmLZi_Z1ZVETLoAAAAAAAaHcdSNDzWiYDmLZi_Z1ZVETLoAAAAAAAuwTD", "types": "CAN_BQYD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BgnwfcudspKPFADqFnojuA"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAADz6p2HVF-fC6bGu1PSwJc2kzOgAAAAAACHAL2HVF-fC6bGu1PSwJc2kzOgAAAAAAHHBe2HVF-fC6bGu1PSwJc2kzOgAAAAAAHEJ82HVF-fC6bGu1PSwJc2kzOgAAAAAAHEEy2HVF-fC6bGu1PSwJc2kzOgAAAAAAJcBk2HVF-fC6bGu1PSwJc2kzOgAAAAAAGaq72HVF-fC6bGu1PSwJc2kzOgAAAAAAJX_5", "types": "TQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SHi_az7OQcBjeyPt41wowA"}} -{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwAIU6tVKI4mSYDEJ-ABAIpYXcgAAAAAADAxg6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC6gT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC6XuUbK4uezrplMLlSw0h87XfgAAAAAACJzxUbK4uezrplMLlSw0h87XfgAAAAAACJpEUbK4uezrplMLlSw0h87XfgAAAAAACJknUbK4uezrplMLlSw0h87XfgAAAAAACJaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs-i6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5Isxj784FFyTk5uDVdOf3A"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgb9rcEvvhuguaGYCmGWrnWRz1QAAAAADgcaEcEvvhuguaGYCmGWrnWRz1QAAAAADgcq2cEvvhuguaGYCmGWrnWRz1QAAAAACNFgycEvvhuguaGYCmGWrnWRz1QAAAAACH4WncEvvhuguaGYCmGWrnWRz1QAAAAACH_kc", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DbVr5WH8AZycf302C0td3g"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALARLuf1htvrklOOxyKnOopAAAAAAAAAABTBtZO3-vmynkHlKuzsN9UQAAAAAAAAAyn55ZjUBJzU7CnzmyoRyorwAAAAAAAAAk5Ib9omL2d9xqdBKBL9VmGwAAAAAAAAAAqFV6xhVekP5-uToPI32ragAAAAAAmMhF", "types": "CAMGBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XWIVrcPaz7dnfTJVzRuiVA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQJvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACeySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAYh-mcFcSefWaXpPLGLAmk8gAAAAAAAADYzXY2fMPD2q8JxxSeQ4an4AAAAAAAAADb1ajhlpq_ffaY9SZwO_yFvwAAAAAAAAAMbYR0b7-vTQ0RKJD6ns3ClQAAAAAAAAAG5WRkp3UGiY89oONYWWfHqAAAAAAAAAAtidAHvTfpCa_Lill3CvLIKwAAAAAAAABUtknRVtdrp8TkRV3X6AJ-KgAAAAAAAAGx2UxNT-C0z0jLu_9A1XqURAAAAAAAAAAP5BKmgSNhj7fKpHFnrghtOAAAAAAAAACpATyTE6eUJy7GTizn3uhVBAAAAAAAAAAMjD7laOo1GMdkduoKGoYbsgAAAAAAAAAJOexwgsSre7AMRf1QkoBsGAAAAAAAAAAR", "types": "CAMvBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lX7-zRMdXP98ZhLRX4j9Qw"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD49fSZxl-YF9wOaedogsBMtvRAAAAAAADiW6SZxl-YF9wOaedogsBMtvRAAAAAAAEXO9SZxl-YF9wOaedogsBMtvRAAAAAAADSVQSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAADzpU", "types": "OgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MIjdoSZWUGoqrMkmoKBGPw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o6kXT4fd_WKeR1cE-hlLelCQAAAAAAC-pEOXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmkK6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXfZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXbg", "types": "FAMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zXbfPFB1rTaAbyUdHQG_SA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADA3-aZ3CKaS4aU08RhYA19y5ITQAAAAADA3RQZ3CKaS4aU08RhYA19y5ITQAAAAACQxvsZ3CKaS4aU08RhYA19y5ITQAAAAACQxqMZ3CKaS4aU08RhYA19y5ITQAAAAAB_vGjZ3CKaS4aU08RhYA19y5ITQAAAAABwX09Z3CKaS4aU08RhYA19y5ITQAAAAABwMFAZ3CKaS4aU08RhYA19y5ITQAAAAABv0fBZ3CKaS4aU08RhYA19y5ITQAAAAABv3UA", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "t0TDin4EdglS8jVWcSlCQQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAEWwtUXT4fd_WKeR1cE-hlLelCQAAAAAAEWwzbXT4fd_WKeR1cE-hlLelCQAAAAAAEWw9ZXT4fd_WKeR1cE-hlLelCQAAAAAACnxaWXT4fd_WKeR1cE-hlLelCQAAAAAACney9XT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfV9XT4fd_WKeR1cE-hlLelCQAAAAAACngKlXT4fd_WKeR1cE-hlLelCQAAAAAACnfYlXT4fd_WKeR1cE-hlLelCQAAAAAACniOnXT4fd_WKeR1cE-hlLelCQAAAAAACnffVXT4fd_WKeR1cE-hlLelCQAAAAAACjbLpXT4fd_WKeR1cE-hlLelCQAAAAAACjaYEXT4fd_WKeR1cE-hlLelCQAAAAAAChoFK", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2ZnHw5ixNOyEf6O56DZTMg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAALY69pONqxP8-okyxfNdJq0BgAAAAAAAAAT84y2a9q7-onYC7ofRQhclAAAAAAAAAHbdVre-yWU3wOgyoQuLjZhuwAAAAAAAADC3WlbNt9bmyJw_k2Ygz1zOwAAAAAAAABo6gx5j99QwRXWvrkyBMUOQwAAAAAAAAAsuraIFXU9GqBqmWbTlxjVJAAAAAAAAABi", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rBcz46AS-WiFNbV2tPSIUg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAqeSs1xpPdaQi6BA9wz10SrwAAAAAAAAA5TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABbXyIB1JXxkoOQjMae8CICgwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADNq5-VNNWJnEe4GvJK3_qvJwAAAAAAAAAA", "types": "CAN5BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RmHwYLknd0bV48qFH9eQ6w"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAEWwtUXT4fd_WKeR1cE-hlLelCQAAAAAAEWwzbXT4fd_WKeR1cE-hlLelCQAAAAAAEWw9ZXT4fd_WKeR1cE-hlLelCQAAAAAACnxaWXT4fd_WKeR1cE-hlLelCQAAAAAACney9XT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfV9XT4fd_WKeR1cE-hlLelCQAAAAAACngKlXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACng1nXT4fd_WKeR1cE-hlLelCQAAAAAACgaREXT4fd_WKeR1cE-hlLelCQAAAAAACgI0X", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WwFWfRAxe9vNEiy3LvcKPw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAydzlqjB_amR59Lv13Nhle_NwbwAAAAAADdC01NmuNXqOaWlDl-ljfvsBcwAAAAAAAAmB1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAdy", "types": "CAMdBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gSO16M9ILzhu6pqLHYZcKg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAAA65FYxe-SHgukLEpCkawSk1QWAAAAAAAA8DQYxe-SHgukLEpCkawSk1QWAAAAAAAA8iW", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ch2MeEpHv6ftyPFPGwDJPQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o8vXT4fd_WKeR1cE-hlLelCQAAAAAAC-pCkXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Z56tVKI4mSYDEJ-ABAIpYXcgAAAAAAp15j", "types": "FAMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MMNf5Flp1WG-AiF7Q4RJ_A"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP_mY", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ACT7gU2GPCwMpgWEOyi5HQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAACqGMNSe-6LTlpuiQTu86RdbwAAAAAAAAA1wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATmQVHcTFXg4JaHxKFUu2SNAAAAAAAAAAK0qdPtfCOXWtTMQkqPpfTpAAAAAAAAAAD4pD3shcvlMj_8ybo7T2TVAAAAAAAAAFCS0Vcinvs4UXd1rhNSjovpwAAAAAAAABVbAlNhxIUaCZOzq5Go2-fDwAAAAAAAAAIUNi2PfJJ-vKG8q63OaknIAAAAAAAAAHcPDxaYxBC-l8PtK0orl2RQwAAAAAAAAETSZD9YVGYcY6t7-F09t_klgAAAAAAAACDMxRnrnRp5fRRlUEkyuK1rQAAAAAAAAA8LNiGyjoSSwLd2vmEwDcgqQAAAAAAAAAtRrirhtozDrKAAydohpmvZgAAAAAAAABXyJIhq1AV1i5dfSljhhE7KwAAAAAAAAAGcEzK6HfXk1srPlYKWH6y-wAAAAAAAAJBNyFYG970OiNszXfRwkg2OwAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5W0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOTM5vHmZRGlLyNtB_jDhdvQAAAAAAAAAKXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAV61vrmCVoJZp3HjBxIMFrNAAAAAAAAAAFF7lATn_bFhRDcY0Z0OyPwQAAAAAAAABoY5AhuW5zTFbvkEYRGrJ6zgAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAZHpec9nZGwrrhoUYM845NAAAAAAAAL7r_QYAzQdAagYTCI2yUMpa7wAAAAAAAO79", "types": "CAM4BQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZCa7vDPVTmdjv0FBSHomYA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgb9rcEvvhuguaGYCmGWrnWRz1QAAAAADgcaEcEvvhuguaGYCmGWrnWRz1QAAAAADgcoOcEvvhuguaGYCmGWrnWRz1QAAAAAChhqtcEvvhuguaGYCmGWrnWRz1QAAAAACGv5kcEvvhuguaGYCmGWrnWRz1QAAAAACGxmwcEvvhuguaGYCmGWrnWRz1QAAAAACGI8ncEvvhuguaGYCmGWrnWRz1QAAAAACGMup6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmkK6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXfZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXbg", "types": "EAMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iwupaAsbz59XDygi08k4AQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApfzLzWZQgzth4yv0Aw0PoLgAAAAAAAAAl1pEcO9CYkxI799CldX3uowAAAAAAAAARsCdW6ghslIPajpgsdfjVWAAAAAAAAAAS3HYeSFaP4bm-Z2NSJub6sAAAAAAAAAAY4io8TQpKnhHcoJs_H_nFpQAAAAAAAAAcWUsgmXBmEYsZWCQlmPqU4wAAAAAAAAALRuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAqFV6xhVekP5-uToPI32ragAAAAAA7PGLqFV6xhVekP5-uToPI32ragAAAAAAxoGftQgAmBJBgPLrkikSPRsmtgAAAAAAAL3h6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQL", "types": "CAMKBQMDBgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DYzhVpKjZS7RL_ti--DyeA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yVp49GPnTVvsmlWLVk3KEg"}} -{"Stacktrace": {"frame": {"ids": "t-dIxcHyLp_aTZW6ZkmJVAAAAAAAABCXt-dIxcHyLp_aTZW6ZkmJVAAAAAAAACEnt-dIxcHyLp_aTZW6ZkmJVAAAAAAAAa9Pt-dIxcHyLp_aTZW6ZkmJVAAAAAAAAEMmt-dIxcHyLp_aTZW6ZkmJVAAAAAAAAMyot-dIxcHyLp_aTZW6ZkmJVAAAAAAAALKv", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IxM2ggcVNlY2O-JpYzPXTg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAACFVesl-TqkdasS6qMPfjcnngAAAAAAAABVr69bqYctcqbyJiTyvmojFAAAAAAAAAAJVoQ5AJHHG4Z_KZgZidNsZQAAAAAAAAAC3QM5OJWdXJOtFw8erEL5XwAAAAAAAAAN87egngtXFm0bIUCnQcIALwAAAAAAAAAHDNMSP4UcXImUndf71pg8FQAAAAAAAABh3J9sxS-e4x4-VIIgWjujUAAAAAAAAACqk9qlBuUUuQaRGtKxyO_pagAAAAAAAAAEF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdvCYukS89lPAo0Tgs1462rgAAAAAAAAAIQF0gmeIjjmTZUhdMFgr_4AAAAAAAAAAFSZIzrSBBPBO2zJj0aqaKggAAAAAAAAD_AOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAAG2Wxf0OtqIcfKcZtbpDMZ1QgAAAAAAAABr1Gk-3aGO58JRRoKz-_WOKAAAAAAAAAAgun6cBO6D7gNVatBvdCHO5wAAAAAAAAAG-EMbO6MQ9CzSH9RcHPYaqgAAAAAAAAA7qnR7SPBrCbnbJk8v7ooOnwAAAAAAAAAGz2VnMzkPQ5tcla-26h5_wAAAAAAAAACKEYGjlLJCu-Vl57yx-_7_hwAAAAAAAABccSK3QkQEScwA7ISZYZcmKgAAAAAAAAFDBclABPaTGPcTz5H4BnHdywAAAAAAAABBfOvbXkq5emlxJGl5W6ErrAAAAAAAAADDg8uTn1yVw1EYmPA-d4Jf8QAAAAAAAAFtGTGfXtPbBok8K2FnKoRb1gAAAAAAAABs_vlpQDle5dcOpop8VnX1jAAAAAAAAAC55vShGsOt6DdWOsue-DtpXgAAAAAAAAAJ4ksqoSQaCDcXF2GHOzi7FwAAAAAAAAAv6KSNndy85gBTgVQEjf0SaQAAAAAAAAPXF-MR5O4Hf8gA88-oz63uAgAAAAAAAACRwqHsMke_fsatGdp5mRZKPAAAAAAAAAANmYmuipE_JkxJYi6xuD4pIQAAAAAAAADZpBYfPcAVtuhSUlQSUeVhQwAAAAAAAACgkteYclMJmBgAkuGPrvc2kgAAAAAAAAALfKMNI-vz54Qowk84IKMX4gAAAAAAAAAGHm_u4C7nG4SW--AUfPJuGwAAAAAAAAANnHwJwC72NgoqK3ksZQ-0uQAAAAAAAAAGxqShXzeV04JRO86le94zJQAAAAAAAAAWGz-UIPp7ivisgp9IsJeJYgAAAAAAAAAXGEgO-raQbJR9oQqKeQGCqwAAAAAAAAAX2kN50je9O3LVK4VZVGtFfQAAAAAAAAALe9gExmkzbOijIY7LjXFDZQAAAAAAAAE9x-4qlwW9IjSs55gfy0yclgAAAAAAAAABfKGMWjXtJBieYoVCFNENrgAAAAAAAAAM", "types": "CANGBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "66YyzrRAaK1eflQF_FbcBg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP_PZ", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nWUjPDlBGs10DeEAyhYVTg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQw7WOWZs79Wz210098loDzAAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARrSUSoohdnG6MdsfC9pID0QAAAAAAAAAGpY2MvdN80J-OPBSDYZs_8gAAAAAAAABSneOkLg7Birx-EWGBuoP5rgAAAAAAAAAaDjB9rnpR9s2OI-jlVfuXnAAAAAAAAADmNrikprALerrSkH1iKFm6zQAAAAAAAAAs_ui1AAIySrYc7ZeYb73nFQAAAAAAAAAMDbSG9xbs7jnAEiHiVrKb1AAAAAAAAACGHSSZPv-Jiv2fPLN9vFx42gAAAAAAAAELQKRyqWZIJ5_z0G07UwBzeAAAAAAAAABS3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAxJDeoMDAF4zRp8m9fg1ttGQAAAAAAAACBArHoFYyXVsZt6HAc7EjVzgAAAAAAAAA3u1A1mq4_NM3j2_15WwdIbwAAAAAAAACHJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAACjGw9H1l67yAnzlh8ZHG_VaQAAAAAAAAA47c7rgpFHY6rxkjCoiUY2PgAAAAAAAACWu1A1mq4_NM3j2_15WwdIbwAAAAAAAACHWRFfIxsq2Q79ALvapo1dCgAAAAAAAAAkuchUv6RRAwtUDrZKhO2h8QAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAACX7uo6HnEu95TqHvEix8e-NAAAAAAAAAAT81sQIr1-P7Y9e1lYkQD1WQAAAAAAAAAbc4tAsAimVlPgj7zIV9p01AAAAAAAAAAIC0WKYZJsdZy_HtDNc5i0jAAAAAAAAAACBZDyipXP5bFEE55HWZ3NWQAAAAAAAAACRHCo9S6JLvJhQuHnIgHq_AAAAAAAAAAURxqe_zQBj7bxcQClfMPGZwAAAAAAAAADWzcM34XPrxORvaGGXCAlPAAAAAAAAAEuDsmnB-99lpR3jSBsZQO0JQAAAAAAAABLgkQuFSIA2UC_9Mknn8WGYQAAAAAAAAB6h8ulXQ0PqCWi8WjndyD3QAAAAAAAAAAA", "types": "CANnBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "txZXHAJurNaMIlI0kux2YA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmqd", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PBMBNfpl26clo2_eg37Few"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQEI2MlivQ_yGyq36LnLAGeQAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQOUV_Man7LKpLI_xXeAvtgAAAAAAAAACeM1U5MRplArg1qeEAEk5MlAAAAAAAAAAYNK6q-mYZhWe1E7afoKkwiQAAAAAAAADYr6Fg_DPZ96geKIjDaUl37wAAAAAAAACsmdgXK8UgXxJq-aF0PWZBWQAAAAAAAAAMuHXk96D_H0MjX0tAh6AHfQAAAAAAAAAGBQgPvwiw9NNbOJgDcqi8DAAAAAAAAAAtD8SuOAHHuRsEe9MWrwApVgAAAAAAAABUpD64Y8dYs0KzJcRfejjvpQAAAAAAAAHnjYKah-GaJpbI-jAwYcFi1QAAAAAAAAAIbu6t-WTb-nsfb-QwFBEV_QAAAAAAAAA9D0rVr9r2i8CRuvzOSp3RnAAAAAAAAAACqk_n1ecQPsBsNva7iBiLPgAAAAAAAAAFpE_XF-eq0tBl0fP7Y7zrSwAAAAAAAABpYav7N1kdPMXfEfZ1xXIznAAAAAAAAAANDYw6-LyNoVsQdM43hcJCegAAAAAAAAAI3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAA8c6UeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAOjK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBtp", "types": "CAMyBQIDBQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Gni4FNEytoNXn1VB81DlJw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbPkXT4fd_WKeR1cE-hlLelCQAAAAAACi_9XXT4fd_WKeR1cE-hlLelCQAAAAAACiJjoXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcoN6tVKI4mSYDEJ-ABAIpYXcgAAAAAALckr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpEy6tVKI4mSYDEJ-ABAIpYXcgAAAAAALoEa6tVKI4mSYDEJ-ABAIpYXcgAAAAAApa94", "types": "DwMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fzu7roeVjuX8DIGpBc0otA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAA1OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADJWFBxAERZNClfuNDueoaytgAAAAAAAAAGFw4N_DGYxmWJY3G6VlrCLwAAAAAAAAAGK4GtFsHu3sEiObk5SkQ6NgAAAAAAAAAZR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAAC-6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC80G6zvzFPytbRyfwuXWQcAAAAAAAAAAB", "types": "CAMmBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_59QHFa1Rqj5C5mCwepbVQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAA1OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADUR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAACe6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC80G6zvzFPytbRyfwuXWQcAAAAAAAAAABAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZODq3DX4tCIqNNAVK-EkRA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAC1GrRcEvvhuguaGYCmGWrnWRz1QAAAAAC1MEHcEvvhuguaGYCmGWrnWRz1QAAAAAC1JWtcEvvhuguaGYCmGWrnWRz1QAAAAAC1JZmcEvvhuguaGYCmGWrnWRz1QAAAAAC1JkzcEvvhuguaGYCmGWrnWRz1QAAAAACsqqFcEvvhuguaGYCmGWrnWRz1QAAAAAC1ZsRcEvvhuguaGYCmGWrnWRz1QAAAAAC1YnEcEvvhuguaGYCmGWrnWRz1QAAAAAC1hSVcEvvhuguaGYCmGWrnWRz1QAAAAACIYppcEvvhuguaGYCmGWrnWRz1QAAAAACGvIkcEvvhuguaGYCmGWrnWRz1QAAAAACGnmbcEvvhuguaGYCmGWrnWRz1QAAAAACGpoocEvvhuguaGYCmGWrnWRz1QAAAAACGsF2cEvvhuguaGYCmGWrnWRz1QAAAAACGKd7cEvvhuguaGYCmGWrnWRz1QAAAAACGMs7", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pNtMkp20SCCEh-TxrA7W_A"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDAIcEvvhuguaGYCmGWrnWRz1QAAAAACuEFvcEvvhuguaGYCmGWrnWRz1QAAAAACuGfdcEvvhuguaGYCmGWrnWRz1QAAAAACuFXkcEvvhuguaGYCmGWrnWRz1QAAAAACPJ_pcEvvhuguaGYCmGWrnWRz1QAAAAACPIUqcEvvhuguaGYCmGWrnWRz1QAAAAACO-hHcEvvhuguaGYCmGWrnWRz1QAAAAACOh_EcEvvhuguaGYCmGWrnWRz1QAAAAACG1HucEvvhuguaGYCmGWrnWRz1QAAAAACG1dPcEvvhuguaGYCmGWrnWRz1QAAAAACGLyScEvvhuguaGYCmGWrnWRz1QAAAAACGMuq", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JJhw6TGulS2g4dgLha_6Fw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQw7WOWZs79Wz210098loDzAAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARrSUSoohdnG6MdsfC9pID0QAAAAAAAAAGpY2MvdN80J-OPBSDYZs_8gAAAAAAAABSneOkLg7Birx-EWGBuoP5rgAAAAAAAAAaDjB9rnpR9s2OI-jlVfuXnAAAAAAAAADmNrikprALerrSkH1iKFm6zQAAAAAAAAAs_ui1AAIySrYc7ZeYb73nFQAAAAAAAAAMDbSG9xbs7jnAEiHiVrKb1AAAAAAAAACGHSSZPv-Jiv2fPLN9vFx42gAAAAAAAAELQKRyqWZIJ5_z0G07UwBzeAAAAAAAAABS3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAxJDeoMDAF4zRp8m9fg1ttGQAAAAAAAACBArHoFYyXVsZt6HAc7EjVzgAAAAAAAAA3u1A1mq4_NM3j2_15WwdIbwAAAAAAAACHJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAACjGw9H1l67yAnzlh8ZHG_VaQAAAAAAAAA47c7rgpFHY6rxkjCoiUY2PgAAAAAAAACWu1A1mq4_NM3j2_15WwdIbwAAAAAAAACHWRFfIxsq2Q79ALvapo1dCgAAAAAAAAAkuchUv6RRAwtUDrZKhO2h8QAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFPyr97kasv6HR5lCuwdxIZgAAAAAAAAAURWZ9G1N69fMZnc8QMvYsrQAAAAAAAAA3-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAF0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFvuphyS_BZoVnngMBUX1lRwAAAAAAAAAQ88-Z439dOdp5GpDKUJubowAAAAAAAAA_0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFk2QfmGpbwZfMFpur9DTalwAAAAAAAAAoREOZDMGevKohDmxWFx6eeAAAAAAAAACajBeiHwwOyRIapBbs5J2OjgAAAAAAAAB4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF0oXMrtJgPp9xNBfTmr-cvwAAAAAAAAAcxMi3lfkibPU0NAhJ8DhGPgAAAAAAAABR0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFYN0teMNDLgmhoUpmrqni9QAAAAAAAAAQclGseV0LGavUI1_g3b_OoAAAAAAAAAAwjBeiHwwOyRIapBbs5J2OjgAAAAAAAAB40LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFmj7OrL6QrJ8gvIjThzQydwAAAAAAAAAQs7vZritmiKufeJDzCX_JRAAAAAAAAAARLHQIqPZNDAtBb5Urr3NFHgAAAAAAAAAu-Q25YN3mx81c5h9FyskSVQAAAAAAAAA-BZ6M98E7_jhQ9w9aCijThQAAAAAAAABjK4q5bjj7FsLI8bLo_hB_IAAAAAAAAAAY3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFRbzqTTxiJ8XotiOA2Wj5YwAAAAAAAAAYXmcQ4_6bleDFvrRZ47Cq9wAAAAAAAAA73G7WvpXqPGO04rbAV9CJtQAAAAAAAAAl8ZRk8SyYMUcoYIl9aB0UjwAAAAAAAAAp0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFEfRqa-7Lw23Pq9cBac4oVgAAAAAAAAAMM_MfJrZLrX3P0R0dWrP49AAAAAAAAAAL0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF-7AzPTKQkaPts8LuNXMNDQAAAAAAAAAYDkUb3XtVJF4DvOzLdzKoEQAAAAAAAAAi25mp98L6MrKhqE8ccc5QLgAAAAAAAACzGBdFFPybwEG5U3rnK__rYwAAAAAAAAAQ8UqGTNx_lSKM0JhywBi_yQAAAAAAAAAc1fE-A15-sG5pm2Nv6tb9vgAAAAAAAAANev0SJ_PFdgv9NYHa9effJgAAAAAAAAA0syuAMg3RShupVDY63eHfbQAAAAAAAAAHMrVvriJqF-HOpa8js-mFagAAAAAAAAA3bC4xUO3cZ_wW8IEDAJ-BNgAAAAAAAABGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAm4yG9IdLfPOQJQp1BxdOq7wAAAAAAAACfEgnEAYVJO6evUZwnNI7NMgAAAAAAAAB05zxpGeZtVFjxV00AgHRxwAAAAAAAAAA6JDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFYhLUfql-5LQM_JtfSo3-RwAAAAAAAAAgUyl96nbKrz6UOSXSc3iffwAAAAAAAABDmWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAFwWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFE88q3f6CLZHMzDvH26OA2gAAAAAAAAAYvBUXiATpzOM0BljEW_3RggAAAAAAAABDkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAyAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJnWkIGdO50axZ_Bk4M_K1cAAAAAAAAAAkr9OA6z6ywxk33MG1uly6aAAAAAAAAAAZFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASFS55TSwq0w7KNb6oqdqsJwAAAAAAAABDynXhOaW9UjBRblOosfZ1UgAAAAAAAAAH5HtrDNFxENN7do3MGsHylQAAAAAAAAANyDr4NX9JefkQzdyG2fqGhAAAAAAAAABMrmSs41XtF0_135XyexZ4IQAAAAAAAAAEoIbcZroK0mbxpVqmuMaywgAAAAAAAABt0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFn31e6JshNEWpv-_jwPINigAAAAAAAAAYl_dBS8vWr6HOAt7h6uX29gAAAAAAAABzOD70Y_FJ9InM174djAQyRwAAAAAAAAAfkLsSZQoqKXZJjggB-fM1dgAAAAAAAAEYAUZISASlK_du5NWyxApXBQAAAAAAAABHpVVNc-L7RmUgxZ3qRu85WAAAAAAAAAEjBFGjgFTdK1xnfs0xj5apUwAAAAAAAAAMPs-KH097Va-KzvXcSGrmDAAAAAAAAAAZWz4vwQw1vGCziif1EnghTAAAAAAAAAAaJyDxDN68Rk17DgoptX6Z0QAAAAAAAAAA", "types": "CAPgBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "N4MQ3_wF7ExRpMVmr34tag"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEOVyw8gVqzTShmjN9h4q85gAAAAAAAAAIjYKah-GaJpbI-jAwYcFi1QAAAAAAAAAIbu6t-WTb-nsfb-QwFBEV_QAAAAAAAAA9D0rVr9r2i8CRuvzOSp3RnAAAAAAAAAACqk_n1ecQPsBsNva7iBiLPgAAAAAAAAAFpE_XF-eq0tBl0fP7Y7zrSwAAAAAAAABpYav7N1kdPMXfEfZ1xXIznAAAAAAAAAANDYw6-LyNoVsQdM43hcJCegAAAAAAAAAI3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAA8c6UeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAOjK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMQBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-PWxSiTmjhtgtcqWr-cUtA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR3W", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aP6GIsw4ofWcnUGlBduuVA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgb9rcEvvhuguaGYCmGWrnWRz1QAAAAADgcaEcEvvhuguaGYCmGWrnWRz1QAAAAADgcoOcEvvhuguaGYCmGWrnWRz1QAAAAAChhvXcEvvhuguaGYCmGWrnWRz1QAAAAACIS3QcEvvhuguaGYCmGWrnWRz1QAAAAACFObNcEvvhuguaGYCmGWrnWRz1QAAAAACEM4XcEvvhuguaGYCmGWrnWRz1QAAAAACFxZS", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nZ8fRP549U0JQTjsBAy_jA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACl", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6TvPSjgriSXKOKa1IM7e3g"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9DdIz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHphgz5k14PsCcDvFyUC1kmlV3QAAAAABG-csz5k14PsCcDvFyUC1kmlV3QAAAAABHCmp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf", "types": "CQMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KOMN7HDuAGD1N2A7P0t7vw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBNF", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xPHwmFt4fvCxveu9JS8ZxQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcM5G", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8h10fs0ddiOcVgnyW4Tl_A"}} -{"Stacktrace": {"frame": {"ids": "klPbOjidNHRsFecU34u2tQAAAAAAAAmpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGklPbOjidNHRsFecU34u2tQAAAAAAAAlaJD-mlhc2khMaMvypB7uCowAAAAAACvxIJD-mlhc2khMaMvypB7uCowAAAAAACrBZJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGlJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAADPP3JD-mlhc2khMaMvypB7uCowAAAAAADOruJD-mlhc2khMaMvypB7uCowAAAAAACuGjJD-mlhc2khMaMvypB7uCowAAAAAADNFHJD-mlhc2khMaMvypB7uCowAAAAAAGyG4JD-mlhc2khMaMvypB7uCowAAAAAADMfaJD-mlhc2khMaMvypB7uCowAAAAAADLg5JD-mlhc2khMaMvypB7uCowAAAAAAIhTEJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNLbtJPgD2DsxuaRUZZI3jKQAAAAAAAAG19OSIwt7_UxT7zZoUvqu4WwAAAAAAAAAvGECkj5EzwizbnHTSy11lwAAAAAAAAACsIWCarP2Cg-zGilSmP2FwvAAAAAAAAAAxPF46WYS52oqKW28TVdZwhwAAAAAAAABl4SjPzL5sRJ4NoaPppbKRXQAAAAAAAAAyzV-zz_SMeRtFDojkROWSSwAAAAAAAACIZtRK4uMy_Wfw-N_iQmSerQAAAAAAAAA1qtNW2Hg_2f_0M1iSBcGbyAAAAAAAAAAVoGmEXpJvjzbRv2r-bFFlfwAAAAAAAAA7EI5wLwdv0nxJGTj51HGsnwAAAAAAAABpqs9QVbSai1fV6zxJyggieQAAAAAAAABfBUIjEExV8zypjFmSEDklUAAAAAAAAAA8WVw4-tNMtcGbe_AUExiiqwAAAAAAAAFTgO6kDS9N3EuxPdxaJ2XycwAAAAAAAAIChVIXRptYWdYbTtDZhNkyZQAAAAAAAAJEfQmBDS59foxFPsSMJZb9xQAAAAAAAAE_FZMomjWJJ0nF52fd5MCJjwAAAAAAAAAbcNfqzNIuM2moCdDAPZaMPwAAAAAAAAGhwnDqzjdjMz5CchEHZ6EsYQAAAAAAAACtuos5blq03yBGQs7NU0gUPAAAAAAAAAAcWJOADfwpHxtseudP4RVyOQAAAAAAAAIBCBHuHFEZWQ-fJ4IkYrsh7gAAAAAAAAB2mBpiFuvmv7Bhv5yWRlHpOwAAAAAAAACGxOuzl7cRmBw0-tjVF12FGAAAAAAAAAH6E__m11jwVVwOsNYG95RSxgAAAAAAAAIJJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAADPP3JD-mlhc2khMaMvypB7uCowAAAAAADOruJD-mlhc2khMaMvypB7uCowAAAAAACuGjJD-mlhc2khMaMvypB7uCowAAAAAADNFHJD-mlhc2khMaMvypB7uCowAAAAAAGyG4JD-mlhc2khMaMvypB7uCowAAAAAADMfaJD-mlhc2khMaMvypB7uCowAAAAAADLg5JD-mlhc2khMaMvypB7uCowAAAAAAIhTEJD-mlhc2khMaMvypB7uCowAAAAAAIVoiHDtxjNJh5HryAaa7uCACXgAAAAAAAAILZUr3dhHUtWV20cKiiRwRTAAAAAAAAACI46OBP4AiIuvPByLPCVNeuQAAAAAAAAFIJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAADPP3JD-mlhc2khMaMvypB7uCowAAAAAADOruJD-mlhc2khMaMvypB7uCowAAAAAACuGjJD-mlhc2khMaMvypB7uCowAAAAAADNFHJD-mlhc2khMaMvypB7uCowAAAAAAGyG4JD-mlhc2khMaMvypB7uCowAAAAAADMfaJD-mlhc2khMaMvypB7uCowAAAAAADLg5JD-mlhc2khMaMvypB7uCowAAAAAAIhTEJD-mlhc2khMaMvypB7uCowAAAAAAIVoiULOVjhd5u9ORCGzZdeAHEQAAAAAAAAFKZUr3dhHUtWV20cKiiRwRTAAAAAAAAACI46OBP4AiIuvPByLPCVNeuQAAAAAAAAFIm_m1DDbzlNuMTD9gy1hMUAAAAAAAAAFJZUr3dhHUtWV20cKiiRwRTAAAAAAAAACIlGiuUKjDiEK6Em1dBmf8cQAAAAAAAAEkoHTsfbgA1Z8-0E_rI_bqswAAAAAAAABiJD-mlhc2khMaMvypB7uCowAAAAAAIPQmJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIDPo", "types": "BgMGBgwDJAYMAwMGDAMHBgMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QhuAxDp-mAXxSlQCTHCDJQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o8vXT4fd_WKeR1cE-hlLelCQAAAAAAC-pGEXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi94WXT4fd_WKeR1cE-hlLelCQAAAAAACi98FXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_jA", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NyrWdA_BddZBmB7vWwrYvQ"}} -{"Stacktrace": {"frame": {"ids": "R_3RsDYccfUxjNYYah3JZgAAAAAAEhYe-IlGUwajicqSE5-hS5VYigAAAAAAAHbaSZxl-YF9wOaedogsBMtvRAAAAAAAGQAGSZxl-YF9wOaedogsBMtvRAAAAAAAGQBRSZxl-YF9wOaedogsBMtvRAAAAAAAD9N_SZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAADz6pSZxl-YF9wOaedogsBMtvRAAAAAAAFM3AR_3RsDYccfUxjNYYah3JZgAAAAAADfkiR_3RsDYccfUxjNYYah3JZgAAAAAADf1X6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALts66tVKI4mSYDEJ-ABAIpYXcgAAAAAALsuZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAANqQn6tVKI4mSYDEJ-ABAIpYXcgAAAAAANvTJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAANtKC", "types": "JwMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DLW1J3k1lahctYuhwA129g"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABFm-G", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8hoWuown2giiSuSwEtqAnQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAHX_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAgAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAOHBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pS9eiRRqpJHZ001DHnp6Pw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOMWF-ta49FweBhvwuhsiFKwAAAAAAAAAYfxhAZVfrZSTvh4Ktxrpz7AAAAAAAAAAN", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "btxpNnU_e8R601EfodEE5w"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFlg0z5k14PsCcDvFyUC1kmlV3QAAAAABFlwa", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "epUUcKloArUaO4HmSd6-0Q"}} -{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACindAJ6GSZQSmfOBquczb-SF8bAAAAAACvC2lJ6GSZQSmfOBquczb-SF8bAAAAAACvEZrJ6GSZQSmfOBquczb-SF8bAAAAAACm7ZcJ6GSZQSmfOBquczb-SF8bAAAAAACm7SCJ6GSZQSmfOBquczb-SF8bAAAAAACvDhNJ6GSZQSmfOBquczb-SF8bAAAAAACrxduJ6GSZQSmfOBquczb-SF8bAAAAAACrr0VJ6GSZQSmfOBquczb-SF8bAAAAAACrucEJ6GSZQSmfOBquczb-SF8bAAAAAAClYbXJ6GSZQSmfOBquczb-SF8bAAAAAACruUcJ6GSZQSmfOBquczb-SF8bAAAAAACme8EJ6GSZQSmfOBquczb-SF8bAAAAAACmKnoJ6GSZQSmfOBquczb-SF8bAAAAAACjlCEJ6GSZQSmfOBquczb-SF8bAAAAAACi_DsJ6GSZQSmfOBquczb-SF8bAAAAAACjBc66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQL", "types": "EAMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "s1HOikX7RhbcXlSxKwqqDA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACE7lUcEvvhuguaGYCmGWrnWRz1QAAAAACFE7kcEvvhuguaGYCmGWrnWRz1QAAAAACFE_vcEvvhuguaGYCmGWrnWRz1QAAAAACEzfkcEvvhuguaGYCmGWrnWRz1QAAAAACFyNV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtJB6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtH16tVKI4mSYDEJ-ABAIpYXcgAAAAAACtE36tVKI4mSYDEJ-ABAIpYXcgAAAAAACslz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BgMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "whMMD-Ig4w265V1dioRGrw"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYr1L9Bd3XIiGWasJdN8trI5tgAAAAAABVgVL9Bd3XIiGWasJdN8trI5tgAAAAAAAx5wL9Bd3XIiGWasJdN8trI5tgAAAAAAAKWhL9Bd3XIiGWasJdN8trI5tgAAAAAAAq7bL9Bd3XIiGWasJdN8trI5tgAAAAAABckC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BgMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "njwJdQnjALlyqqAczuUyDg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAABdynFllp5CrPbAGyx1JneoOgAAAAAAAAG7u5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAAA7qtxmuYYdQSJOiK5WcAGLhAAAAAAAAAAIspUGqsCTGHPUynY6l3nRmwAAAAAAAAA9T4TCkO3eKtFhkAq0CD0MTQAAAAAAAAAaCeCTWGhzZ22dKgkK2rmozgAAAAAAAAAcV7ZQpsmBMqxELCbB426IWgAAAAAAAAAFqY84h_YcT5LuA60uIbYf6wAAAAAAAAABmagbhCHeVfi3Wy-2mP5Q-wAAAAAAAAABw8RCLjmiiHWrWWaQIkgrJgAAAAAAAAAA", "types": "CAM3BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "agY1HwGqzbbYSgz0edbUzw"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGiBJz5k14PsCcDvFyUC1kmlV3QAAAAABF4HEz5k14PsCcDvFyUC1kmlV3QAAAAABF6-Uz5k14PsCcDvFyUC1kmlV3QAAAAABFPfDz5k14PsCcDvFyUC1kmlV3QAAAAABFxl7z5k14PsCcDvFyUC1kmlV3QAAAAABGnUi6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BwMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NiVW0V5NwxAo0iHOds4ZXw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vNqXT4fd_WKeR1cE-hlLelCQAAAAAAC-od4XT4fd_WKeR1cE-hlLelCQAAAAAAC-oxsXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FgMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DBpdnhabztGdbOuXyBjkeg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAADZgiwOUz_dwg5QpZ6rn_mtEAAAAAAAAAAaRZMfsbKLC34Px2zwyEaSpAAAAAAAAAAGK61z3xaGK-rHqmHBTOYNcwAAAAAAAAARSjz2MvPusgDd7v_6YUXcPAAAAAAAAAC1J4eQqgwFH8hGziiVTbtiYwAAAAAAAACOMbaOnaCMmj3Z2Dka8DRidwAAAAAAAAEnT93qUW7twBf0xQlQpFHQIgAAAAAAAAAkV0dDfKfk8_0OrffeLu2lkwAAAAAAAAMFVfERBKEBmx96DrPNYn5rRwAAAAAAAAAYH_PuNBZ2T3w752tR6SYTGgAAAAAAAAA_0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAd8sAjWSAryT3cfwTe10tROQAAAAAAAAAE-2Z_suCsLJaLieHY0L9AUwAAAAAAAAAP7Ths3BiTuG0WGA437KJd6AAAAAAAAAAbnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlsfHYsnZ_Lwaqr0cHEPo0D185QAAAAAA6zHtYsnZ_Lwaqr0cHEPo0D185QAAAAAA617vYsnZ_Lwaqr0cHEPo0D185QAAAAAA6wyQYsnZ_Lwaqr0cHEPo0D185QAAAAAAcIsY", "types": "CAMaBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NZK8SEhO7ETtVZs2wRmpXA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABda68f5mgZFs3OaBztew54AAAAAAAAAAM9lngTnmeSG1s7rdk_juSMAAAAAAAAAAGHrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACtBnjxOT6ecDtMNaRY7RgRQAAAAAAAAABnzd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX73IOkhtZyjrZNnxzxVPYTQAAAAAAAACNp20xNjB13pFFci9UHZaQsQAAAAAAAABbNFoti7zeivEyGvfQ3_ANTgAAAAAAAAGU3kg82-0D3eZ1bo-oCBlTCgAAAAAAAADCVOUNVzVyt4QutMt6oZxNlQAAAAAAAAA2EyQZHtzRv_03o0l-NXmg-QAAAAAAAAAxNdnOauNqYT-cKE84qEP2jwAAAAAAAAANlsX2eCLSr4Q70_mA1t3KeQAAAAAAAAAoNB3KICW80r4krIyGFXIJIgAAAAAAAABZ2uEWBluAjlG6YATEmwlaSAAAAAAAAAAeYbAg0T8eOr8SvAbjK52BYAAAAAAAAAAFtlnK3_wdqHiODNJ7-wRpAQAAAAAAAAAXoAZFW9wMcUMYVEEE5ZtkLwAAAAAAAAAakNeaLNe7WMgsUgZLaHboxgAAAAAAAABMaTDLmmx5i_FySiS_tBfkmwAAAAAAAAAfmZdi8xuJDhfKKe9rvO4vxgAAAAAAAABrd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsSidn5oJ7A2M_efsiHDz05QAAAAAAAAAT0_jShB-DuV77HIBPKqBRjgAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEXnZcAdwBOPPRQ2hQm4YWwWgAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlsd-YsnZ_Lwaqr0cHEPo0D185QAAAAAAX19XYsnZ_Lwaqr0cHEPo0D185QAAAAAAXAOkYsnZ_Lwaqr0cHEPo0D185QAAAAAAgVVk", "types": "CAMxBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6QhkBtx7gvljSIZUeTjHcw"}} -{"Stacktrace": {"frame": {"ids": "NH411-U9ZJbhx9KntPIOtAAAAAABa7K5", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DxFol4n0qYD3Of3DJSMdCw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlZUcEvvhuguaGYCmGWrnWRz1QAAAAACEea2cEvvhuguaGYCmGWrnWRz1QAAAAACEf3-cEvvhuguaGYCmGWrnWRz1QAAAAACEgKx", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1FaSioKA40L9zkdwioOgrg"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACRuzKgtQ4kMk_MBWrPUAFqVnYywAAAAACRvAEgtQ4kMk_MBWrPUAFqVnYywAAAAACRvT8gtQ4kMk_MBWrPUAFqVnYywAAAAACMCnBgtQ4kMk_MBWrPUAFqVnYywAAAAACbQAkgtQ4kMk_MBWrPUAFqVnYywAAAAACbQYrgtQ4kMk_MBWrPUAFqVnYywAAAAACbM7NgtQ4kMk_MBWrPUAFqVnYywAAAAACbMVNgtQ4kMk_MBWrPUAFqVnYywAAAAACbMpGgtQ4kMk_MBWrPUAFqVnYywAAAAACbO04gtQ4kMk_MBWrPUAFqVnYywAAAAACRlPUgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4WlgtQ4kMk_MBWrPUAFqVnYywAAAAACG2jCgtQ4kMk_MBWrPUAFqVnYywAAAAACG2ppgtQ4kMk_MBWrPUAFqVnYywAAAAACG3RIgtQ4kMk_MBWrPUAFqVnYywAAAAACGp_ugtQ4kMk_MBWrPUAFqVnYywAAAAACLmiLgtQ4kMk_MBWrPUAFqVnYywAAAAACLmQO", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SdkBKb56HsioGRxWHq-7TA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAEwXaFizeT40CKpdI_o5Zrw0QAAAAAAAAALP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAepBWDMEkxECoqFEbuF_aawAAAAAAAAAAMQNJBtmDNiP_chGYXJszyagAAAAAAAAA3vXkwfvj7jlhBJyKg0XGvywAAAAAAAAB2fNviosb4qVFLp7sfJPNLzAAAAAAAAADl6OqUFDo-whukimJI-B2pMgAAAAAAAACX_l0ywV2XZnYFamIDDP8kMQAAAAAAAADSjRm5GYz0vdCovh1sp2XZ0AAAAAAAAACJLT5lr845yiJBLJcYHx5FbQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAZlSN_wOi6EtlLmPRGOv3HiAAAAAAAAAAA", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FfU3KGa4jQE4GKP8Psa9ng"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgb9rcEvvhuguaGYCmGWrnWRz1QAAAAADgcaEcEvvhuguaGYCmGWrnWRz1QAAAAADgcoOcEvvhuguaGYCmGWrnWRz1QAAAAAChhtkcEvvhuguaGYCmGWrnWRz1QAAAAACKFbIcEvvhuguaGYCmGWrnWRz1QAAAAACGugycEvvhuguaGYCmGWrnWRz1QAAAAACGmwdcEvvhuguaGYCmGWrnWRz1QAAAAACGpoocEvvhuguaGYCmGWrnWRz1QAAAAACGsDNcEvvhuguaGYCmGWrnWRz1QAAAAACGKP7cEvvhuguaGYCmGWrnWRz1QAAAAACGMs66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBiZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAANr3F6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFdKO", "types": "EwMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sPqqmDZLLGF6_pzrJ1s5lA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyEzZ3CKaS4aU08RhYA19y5ITQAAAAABtxy2Z3CKaS4aU08RhYA19y5ITQAAAAABtwT0Z3CKaS4aU08RhYA19y5ITQAAAAABtFpzZ3CKaS4aU08RhYA19y5ITQAAAAABtnwrZ3CKaS4aU08RhYA19y5ITQAAAAABudBy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hYfhfJkQW17kyXXXeL8OrQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQEI2MlivQ_yGyq36LnLAGeQAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQOUV_Man7LKpLI_xXeAvtgAAAAAAAAACeM1U5MRplArg1qeEAEk5MlAAAAAAAAAAYNK6q-mYZhWe1E7afoKkwiQAAAAAAAADYr6Fg_DPZ96geKIjDaUl37wAAAAAAAACsl6EJcOAPQpkLiYeKJCOWVQAAAAAAAAAMuHXk96D_H0MjX0tAh6AHfQAAAAAAAAAGBQgPvwiw9NNbOJgDcqi8DAAAAAAAAAAtD8SuOAHHuRsEe9MWrwApVgAAAAAAAABUpD64Y8dYs0KzJcRfejjvpQAAAAAAAAHnjYKah-GaJpbI-jAwYcFi1QAAAAAAAAAIbu6t-WTb-nsfb-QwFBEV_QAAAAAAAAA9D0rVr9r2i8CRuvzOSp3RnAAAAAAAAAACqk_n1ecQPsBsNva7iBiLPgAAAAAAAAAFpE_XF-eq0tBl0fP7Y7zrSwAAAAAAAABpYav7N1kdPMXfEfZ1xXIznAAAAAAAAAANDYw6-LyNoVsQdM43hcJCegAAAAAAAAAI3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAA8c6UsTGLCNH21piOrMPoln5uBQAAAAAAxhN5eJ7BYIhIN72fM2Cz8k8m9QAAAAAAAKkg", "types": "CAMyBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2Sz3zcn_jRruHSw5ug1i1Q"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADAYnk6E9ReVsUsstHFtTIiXQAAAAAAAAAyfT0k69QoWDcgSGG9DEbGKQAAAAAAAABU3yZRDT05_hGvUj8jRvChFAAAAAAAAAOxYwdW3gX5WZ-203-ZtRSpdAAAAAAAAAAGLyZJMdHx6B3ILhnNOrY3PgAAAAAAAABM8VQNjJHt4dBRU5VSN3KkiQAAAAAAAAECfEW2ISlTz6bBNQ3Y_nEaswAAAAAAAABDdT5WZm8-ag4VFDZf0HaaMAAAAAAAAAAR68Kd2F2G5cbeqk2uYg-UgAAAAAAAAAAHy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGb2ckm-0wQN1Adu_SQOHiPwAAAAAAAAAfuCrYcJJKClqXMP74KTJEhQAAAAAAAAAfW0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAEKhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyGEsTGLCNH21piOrMPoln5uBQAAAAAAg4VysTGLCNH21piOrMPoln5uBQAAAAAAKOC0", "types": "CAMxBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dUuQ2lSMaZyy3BCVVsDF1w"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAckoE-yAAYIqbvRVhFPQiQCAAAAAAAAAAA", "types": "CAMvBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "B_1gf1EYUxn7EVvh7093Dw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR1y", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5jPOL2BCon4p4v0UyqfsXw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDo5XT4fd_WKeR1cE-hlLelCQAAAAAACxD6XXT4fd_WKeR1cE-hlLelCQAAAAAACxClIXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBiZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAANr3F6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFdKO", "types": "EwMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_Xt8BX3Fxv0nw4SPWrSguQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABMaP-XSbJ_jD1SaDSikvAxwAAAAAAAAAM9lngTnmeSG1s7rdk_juSMAAAAAAAAAAGHrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACtBnjxOT6ecDtMNaRY7RgRQAAAAAAAAABnzd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX73IOkhtZyjrZNnxzxVPYTQAAAAAAAACNp20xNjB13pFFci9UHZaQsQAAAAAAAABbNFoti7zeivEyGvfQ3_ANTgAAAAAAAAGU3kg82-0D3eZ1bo-oCBlTCgAAAAAAAADCVOUNVzVyt4QutMt6oZxNlQAAAAAAAAA2EyQZHtzRv_03o0l-NXmg-QAAAAAAAAAxNdnOauNqYT-cKE84qEP2jwAAAAAAAAANlsX2eCLSr4Q70_mA1t3KeQAAAAAAAAAoNB3KICW80r4krIyGFXIJIgAAAAAAAABZ2uEWBluAjlG6YATEmwlaSAAAAAAAAAAeYbAg0T8eOr8SvAbjK52BYAAAAAAAAAAFtlnK3_wdqHiODNJ7-wRpAQAAAAAAAAAXoAZFW9wMcUMYVEEE5ZtkLwAAAAAAAAAakNeaLNe7WMgsUgZLaHboxgAAAAAAAABMaTDLmmx5i_FySiS_tBfkmwAAAAAAAAAfmZdi8xuJDhfKKe9rvO4vxgAAAAAAAABrd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAOPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMzzqjB_amR59Lv13Nhle_NwbwAAAAAAENS56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpAY6tVKI4mSYDEJ-ABAIpYXcgAAAAAAF0JU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFw9n6tVKI4mSYDEJ-ABAIpYXcgAAAAAARLUs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCXYUbK4uezrplMLlSw0h87XfgAAAAAACHlyUbK4uezrplMLlSw0h87XfgAAAAAAAWka", "types": "CAMpBQIDDQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "h9g7rZTa7cbOgmdfpCroqA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAAC9giwOUz_dwg5QpZ6rn_mtEAAAAAAAAAAaVuN94T655MWJDhWvTQiB6QAAAAAAAAAGCsbV9k-bf9vouE4JAWSvYQAAAAAAAABMuqwCsRNPiFKrqHYXLGpv-wAAAAAAAAAJP5gRtja4XWNHiYEqyG1bRQAAAAAAAABC6DNz9unm7hTuRqznyhbqWwAAAAAAAAAF42jtS3FvXfZ-TK8RDOu5eQAAAAAAAAACBe3_J5NuUP54cqMure6K4AAAAAAAAAAjwevjuAwpKcZX-ptlgzlTeAAAAAAAAAADIZeQ4Is_b2zZyg3CavaZ-QAAAAAAAAALR8TyePzzZR53bFjp9vZQuAAAAAAAAAAA", "types": "CAMTBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HFDZtj7y0Bw2k96K0Shk-w"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgKO", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4NFliTc5RbA2S_WmSY2-5w"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QhMcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbkcEvvhuguaGYCmGWrnWRz1QAAAAAD-LXecEvvhuguaGYCmGWrnWRz1QAAAAAD-M6LcEvvhuguaGYCmGWrnWRz1QAAAAACNFBbcEvvhuguaGYCmGWrnWRz1QAAAAACH4WncEvvhuguaGYCmGWrnWRz1QAAAAACH_KL", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "n1K87iiownRMy9p9EhnxaQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCYyXT4fd_WKeR1cE-hlLelCQAAAAAAEOC7XXT4fd_WKeR1cE-hlLelCQAAAAAACwzdbXT4fd_WKeR1cE-hlLelCQAAAAAACwXETXT4fd_WKeR1cE-hlLelCQAAAAAACipi9XT4fd_WKeR1cE-hlLelCQAAAAAACipFEXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJje6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIkH", "types": "EQMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TlUPq402XAoMqzEe9Lt4Rg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAHX_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAA", "types": "CAMwBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wCmvw-7GQGL1yAvmTCUcTA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABda68f5mgZFs3OaBztew54AAAAAAAAAAM9lngTnmeSG1s7rdk_juSMAAAAAAAAAAGHrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACtBnjxOT6ecDtMNaRY7RgRQAAAAAAAAABnzd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX73IOkhtZyjrZNnxzxVPYTQAAAAAAAACNp20xNjB13pFFci9UHZaQsQAAAAAAAABbNFoti7zeivEyGvfQ3_ANTgAAAAAAAAGU3kg82-0D3eZ1bo-oCBlTCgAAAAAAAAD0O9IjcD5d1rTcG4kkieTvLAAAAAAAAAAePvsuEs2c6C6ecuTF-xQOfQAAAAAAAAADB1984Ng46sq2rHP9JYVyYgAAAAAAAAARNdnOauNqYT-cKE84qEP2jwAAAAAAAAANlsX2eCLSr4Q70_mA1t3KeQAAAAAAAAAoNB3KICW80r4krIyGFXIJIgAAAAAAAABZ2uEWBluAjlG6YATEmwlaSAAAAAAAAAEi", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LdughXTyBAtPHlCiLsLIpg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChxB_XT4fd_WKeR1cE-hlLelCQAAAAAAChYmWXT4fd_WKeR1cE-hlLelCQAAAAAAChYQUXT4fd_WKeR1cE-hlLelCQAAAAAAChkkOXT4fd_WKeR1cE-hlLelCQAAAAAAChXuyXT4fd_WKeR1cE-hlLelCQAAAAAAChZZN", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4ocpdZMlRpRzCexEbOVmPw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7-XT4fd_WKeR1cE-hlLelCQAAAAAAC-pCkXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjgtIG5EpvTeHopVC9IqkA_kSgAAAAAAAUU-", "types": "FAMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yK6OONpk1_skJktfJLfkBg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADAEguNCcnmVGnXNe9OvbpF2wAAAAAAAAAyyH_ohM36PxcsspBj9HiisAAAAAAAAABUZZqFVPfJM-LkfzPbeaoP8QAAAAAAAAIWwJby9rfWt95O-DRO0mDYjAAAAAAAAABWk1o6cGLS1FzksoHJvPKdFQAAAAAAAAARd55u1lPodAfLflRouVTMDQAAAAAAAAAGd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsSidn5oJ7A2M_efsiHDz05QAAAAAAAAAT0_jShB-DuV77HIBPKqBRjgAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEXnZcAdwBOPPRQ2hQm4YWwWgAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlskWYsnZ_Lwaqr0cHEPo0D185QAAAAAAhWjBYsnZ_Lwaqr0cHEPo0D185QAAAAAAvtnVYsnZ_Lwaqr0cHEPo0D185QAAAAAAvsxPqjB_amR59Lv13Nhle_NwbwAAAAAAGLto", "types": "CAMxBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fEKLjZ39jYfvxgEfDDOtIQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAACgg6FXT4fd_WKeR1cE-hlLelCQAAAAAACgrPkXT4fd_WKeR1cE-hlLelCQAAAAAACgrYf", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "y10qk8LRFU3Juh0Dxf4kmA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "K3Z7Bso8_acxSu6Vxdfbjg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7i", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "codND57fF0ln0PPsgzvoNw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAEytZblqIBEsQV2ku_vlKaDgAAAAAAAAAA", "types": "CAMGBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pdAduE6Gutq4FbdcnP42xA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wZOXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmo46tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zt", "types": "EwMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OGDDHXE1D8GrXVwGCFBYtA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIoVZ3CKaS4aU08RhYA19y5ITQAAAAACtIeEZ3CKaS4aU08RhYA19y5ITQAAAAACtOoI", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XS_2yHDH56Gg_3eKY-7t_A"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAABhRJXjPkp22gaQo9vwY-85JAAAAAAAAAAA", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iWRinu91wuOHnxKN19PJZg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFkjHcEvvhuguaGYCmGWrnWRz1QAAAAACENFTcEvvhuguaGYCmGWrnWRz1QAAAAACEm00cEvvhuguaGYCmGWrnWRz1QAAAAACFxcX", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "J_s4rwypZtS7LrmmQEztWg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQEI2MlivQ_yGyq36LnLAGeQAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQOUV_Man7LKpLI_xXeAvtgAAAAAAAAACeM1U5MRplArg1qeEAEk5MlAAAAAAAAAAYNK6q-mYZhWe1E7afoKkwiQAAAAAAAAAb3UhEgz7OpPfEUA0r5eC73QAAAAAAAAAFaIbc7x3jFTfe0iAcPpU-EQAAAAAAAABW", "types": "CAMmBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZfHuek4_BlYQGu77SdKXnA"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAAA40YL9Bd3XIiGWasJdN8trI5tgAAAAAAAWqlL9Bd3XIiGWasJdN8trI5tgAAAAAAAWoqL9Bd3XIiGWasJdN8trI5tgAAAAAAAXA4L9Bd3XIiGWasJdN8trI5tgAAAAAAAiivL9Bd3XIiGWasJdN8trI5tgAAAAAAAnZCL9Bd3XIiGWasJdN8trI5tgAAAAAAAnneL9Bd3XIiGWasJdN8trI5tgAAAAAABboH", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3GU1_UWZYiKrKpJ3S0rF8g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADIddiXJR5BwRqvq-FjPjsVhQAAAAAAAACVQ2oQH3RYKxV8uqKhG5u00QAAAAAAAAA2h2KUe_utEVQ15vccn1q_UgAAAAAAAABMyZ_KJScGxr5LDbJgWcj5dQAAAAAAAAACl9UahhdYTNQ-nashs5vHOQAAAAAAAAByvXVOM0RUNPbhG-uGpBKXiQAAAAAAAAAAgthr_nA39dcb6LQBtOEWRwAAAAAAAAADTzNCuGdPQLOM_n-NFGUyRAAAAAAAAAAChw17zzDItUnj1sn_WjZmnAAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAvNWFYsnZ_Lwaqr0cHEPo0D185QAAAAAAwKJVYsnZ_Lwaqr0cHEPo0D185QAAAAAAvSjU", "types": "CAMuBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9Lb4LkSEfwYPtryFWDMnyw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFmUdcEvvhuguaGYCmGWrnWRz1QAAAAACExXncEvvhuguaGYCmGWrnWRz1QAAAAACEUor", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "m7PtklSiInmoO66e9Bc5vA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAD7Kufl841KLBEdWpuT5bLXSwAAAAAAAAAORuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAqFV6xhVekP5-uToPI32ragAAAAAA7PGLqFV6xhVekP5-uToPI32ragAAAAAAxoHXqFV6xhVekP5-uToPI32ragAAAAAAwRrnqFV6xhVekP5-uToPI32ragAAAAAAwRGP", "types": "CAMFBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6Xxk_y7umqFVq79tKmttkw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAIHL0hC8TFXSzc6WKZHHDjDAAAAAAAAAAidqnqmQCuqq6t9rUDKsZ8owAAAAAAAAALmUOvKQebnzFvy2_hJxBVkwAAAAAAAAAKH7WyLr5kViJlw1LNVs8T6wAAAAAAAAAG7oXk3SjWJNcZekOtHIEvrAAAAAAAAAAHAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "spYXnEQIsyd22QzNNaT8Yw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3xUoecROrzaoP-M_aH62GoQAAAAAAAABinG9wLCiLPO8YY97L1OXEbAAAAAAAAAAoLT5lr845yiJBLJcYHx5FbQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgg8ia7_SjtnnoFsx8t6EVmgAAAAAAAAACS4pDMZQIDu6mVxa95R8FGQAAAAAAAAAdh2McnzqwfbL5yBZRK65EugAAAAAAAAAM6XZVqwgpvPEDrDCTrE9iAgAAAAAAAAAI7aqMkhc14ipFteNGQMekfwAAAAAAAAAFBzUZDRcpQTRRSSLENpOpZgAAAAAAAAAJWGL3b6si_6bQM5Rqh6u3iwAAAAAAAAABYoBRvyLd18NJezoAzYDBWgAAAAAAAAADR8J-NKdRXmfXHHCKNIVxpAAAAAAAAAB7Y42fk-Ms4CyfeVg3LVDZpQAAAAAAAAAXLo1bd7PttsuTzFjX2oW5lgAAAAAAAAAB4dIwNpyNQOyQPjDgfjNvLgAAAAAAAAATW0z6xNHqHLcQrQ1Rr4ojGwAAAAAAAAANavU6NIsopUe3RLXmOLaJogAAAAAAAABBBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVCm3FF_uDQeutHnQs3UGjlgAAAAAAAADAwMduPEe0g_53DcRkATCeKAAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAACW6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC80G6zvzFPytbRyfwuXWQcAAAAAAAAAAB", "types": "CAMyBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Mws_4U3r89UDU4qZjswO6g"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHphgz5k14PsCcDvFyUC1kmlV3QAAAAABG-csz5k14PsCcDvFyUC1kmlV3QAAAAABHCmq", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "m-Q9uCXR-TIx0LsEoXVwIw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-Jf6cEvvhuguaGYCmGWrnWRz1QAAAAACETST", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "z1gE1Mfy7QCTfP_33bgibg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVol4NiJXXJMXv7q-6-A_O4QAAAAAAAAAMIXD9DfG2D0upvhc5-UHkHQAAAAAAAAAQbg7sAxk7-DRFbqsjDXXUPgAAAAAAAAAQOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYd-yaMT2eqIGS5Mntl0M-0AAAAAAAAAALM87JWO6FKSokmgyC0_oEgQAAAAAAAADfVqFNxLjEmT8UPnG-1nVs-AAAAAAAAAB-alOzD_OIsLxTGArRLVDCpAAAAAAAAAAWJyqbvOZOS-cPzwOG-e359wAAAAAAAAALh9-tF-jimjyWyDY615aa4wAAAAAAAAAMnZBjsnB5E1LeQoJuhOhOIgAAAAAAAAAG1fE-A15-sG5pm2Nv6tb9vgAAAAAAAAANZPj7hBwVwBgbmIyyLEMkNgAAAAAAAAAMik02Bt0VZFoUYdNhARf6ugAAAAAAAAAH1fE-A15-sG5pm2Nv6tb9vgAAAAAAAAANJKjf0pZHg3dzwDeAqfO16AAAAAAAAAAEsyuAMg3RShupVDY63eHfbQAAAAAAAAAHMrVvriJqF-HOpa8js-mFagAAAAAAAAA3bC4xUO3cZ_wW8IEDAJ-BNgAAAAAAAABGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAm4yG9IdLfPOQJQp1BxdOq7wAAAAAAAACfEgnEAYVJO6evUZwnNI7NMgAAAAAAAAB05zxpGeZtVFjxV00AgHRxwAAAAAAAAAA6JDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFYhLUfql-5LQM_JtfSo3-RwAAAAAAAAAgUyl96nbKrz6UOSXSc3iffwAAAAAAAABDmWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAAnkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAyAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJnWkIGdO50axZ_Bk4M_K1cAAAAAAAAAAkr9OA6z6ywxk33MG1uly6aAAAAAAAAAAZFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASFS55TSwq0w7KNb6oqdqsJwAAAAAAAABDgT8nUPqqRrRw5ZClYoJx6gAAAAAAAAAH1uTD4MIo_4nBzNJux2_5GAAAAAAAAAB7OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB8fD8MYf3rRLn0p51wgRpQgAAAAAAAAAU8Rg9C7sld8ZdU0EvjvCPkgAAAAAAAAHnz2RK8OiMonW_o4pECFqoegAAAAAAAAAROmzVUgwY22EPoqShuZpT1wAAAAAAAAAB3zXCUNpYxjlSLDJ08OaDVAAAAAAAAAOeMrVvriJqF-HOpa8js-mFagAAAAAAAAA3bC4xUO3cZ_wW8IEDAJ-BNgAAAAAAAABGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAm4yG9IdLfPOQJQp1BxdOq7wAAAAAAAACfEgnEAYVJO6evUZwnNI7NMgAAAAAAAAB05zxpGeZtVFjxV00AgHRxwAAAAAAAAAA6JDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFYhLUfql-5LQM_JtfSo3-RwAAAAAAAAAgUyl96nbKrz6UOSXSc3iffwAAAAAAAABDmWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGQFD5TB8FwgEkaTgViNnnC1gAAAAAAAABcWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFBZ5FamAFNAUQLx8KcvDxCwAAAAAAAAA4zfrc9GArcEMXOSddmdDIewAAAAAAAACwnnUdNj2uBRgH8hkAFjfx5gAAAAAAAABKb_zn2wxYEJNQyu5arwWiUgAAAAAAAAAgq44xf6HFj4nbephvvOr6vAAAAAAAAAA8FedFnYQW8bHf16nVrC3eNgAAAAAAAAGoueVIyRbgaIXTTwloG1e5bwAAAAAAAAAFIlG1oGvMr2iYvhrqxgQozwAAAAAAAAAT0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABG0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFpDliMdDN6tdugd_uWfECTwAAAAAAAAAMxRkFHepRLQFnp0xjaPT5XgAAAAAAAAAKkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABG0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFEk41BoFnp4M1u-Ik9d-gsQAAAAAAAAAkjFdJcMgaSFpzbEGK5Q4RcQAAAAAAAADlkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFBRiR5cdugYEExyMetUnOqAAAAAAAAAAUub0yrV1DAC67s4TYqKh50AAAAAAAAAAIbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAyAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJnWkIGdO50axZ_Bk4M_K1cAAAAAAAAAAkr9OA6z6ywxk33MG1uly6aAAAAAAAAAAZFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASFS55TSwq0w7KNb6oqdqsJwAAAAAAAABDgSCcDWmELuplsa8VqJDXWAAAAAAAAAAHj_DalQzm9M9lsrdxKoLeDwAAAAAAAAAcEmratRDxeKcrsZYT5P-e9gAAAAAAAAAQOmzVUgwY22EPoqShuZpT1wAAAAAAAAABijo_wkiSkdM-ZN0r2V8rhgAAAAAAAAAAyd6OSCVn-rYcvCrx8ZU3zQAAAAAAAABMYpLEeaG_ElwoL2j6X7TziwAAAAAAAAAI5nv8VwbAa4588SEaQHNTuwAAAAAAAAAFELgG2hGXmLLx5cp8ISD83wAAAAAAAAARGv_ayxKXPfWxpQJLOlFiZgAAAAAAAABP", "types": "CAPLBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jwz5Ko_H_B_a_KaZUAnDNQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcM4s", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nmIx6kUsvWkiJwjLxLculQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbpmZ3CKaS4aU08RhYA19y5ITQAAAAABtPlX", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "19wmIvUZK4UmSOptZH3T1w"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw1x4XT4fd_WKeR1cE-hlLelCQAAAAAACwXCPXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_Y9XT4fd_WKeR1cE-hlLelCQAAAAAACiFHoXT4fd_WKeR1cE-hlLelCQAAAAAACiKQzXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJje6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIj8", "types": "FAMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qOQyvHeuCAo4zHM-_nszjQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN4uo", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oCsk-dy_lD0KOZfnzHxYTQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAV8FjjrR6hoKl9dbLHAiDZggAAAAAAAAAELrlyDlaKHbC_8KNADvLjFAAAAAAAAAAI6kDbTiAUEwXMkrLqyhAU-AAAAAAAAAACEzFCZzsYnBjQn2ZgGN1k-gAAAAAAAAEO7hl5kfi4bDUY-IGjjF1I9QAAAAAAAABLG3HfgHGbcJX2XA6GSfaFxwAAAAAAAAACp3aJQvC9ntwzd5eHq1bIYgAAAAAAAAACyaURufsFaYOdqMggV7gqrQAAAAAAAABFz06Bh8Aq03gZLJqjiOLqkQAAAAAAAAAGqIdHU9P-nSAC0k7-GO5p3gAAAAAAAABUalOzD_OIsLxTGArRLVDCpAAAAAAAAAAWJyqbvOZOS-cPzwOG-e359wAAAAAAAAALlgHJDGGzcRkIr7tcnvgrpwAAAAAAAAAMnZBjsnB5E1LeQoJuhOhOIgAAAAAAAAAG1fE-A15-sG5pm2Nv6tb9vgAAAAAAAAANfPIDGh47_zu8kEHtQ2rNTQAAAAAAAAA3ik02Bt0VZFoUYdNhARf6ugAAAAAAAAAH1fE-A15-sG5pm2Nv6tb9vgAAAAAAAAANJKjf0pZHg3dzwDeAqfO16AAAAAAAAAAEsyuAMg3RShupVDY63eHfbQAAAAAAAAAHMrVvriJqF-HOpa8js-mFagAAAAAAAAA3bC4xUO3cZ_wW8IEDAJ-BNgAAAAAAAABGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAm4yG9IdLfPOQJQp1BxdOq7wAAAAAAAACHo6xXiDMzQeNlxyPaXRCCuQAAAAAAAAJieArtR0l_EHpVAL1EduOBQAAAAAAAAAAcvTzocF17h1-CILR9AtkQhAAAAAAAAAAc096LxVUimOhSRRaM4j1ZNwAAAAAAAAAIEgnEAYVJO6evUZwnNI7NMgAAAAAAAAB05zxpGeZtVFjxV00AgHRxwAAAAAAAAAA6JDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFYhLUfql-5LQM_JtfSo3-RwAAAAAAAAAgUyl96nbKrz6UOSXSc3iffwAAAAAAAABDmWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAABO0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAAnkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAyAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJnWkIGdO50axZ_Bk4M_K1cAAAAAAAAAAkr9OA6z6ywxk33MG1uly6aAAAAAAAAAAZFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASFS55TSwq0w7KNb6oqdqsJwAAAAAAAABDgT8nUPqqRrRw5ZClYoJx6gAAAAAAAAAH1uTD4MIo_4nBzNJux2_5GAAAAAAAAAB7OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB8fD8MYf3rRLn0p51wgRpQgAAAAAAAAAU8Rg9C7sld8ZdU0EvjvCPkgAAAAAAAAHnz2RK8OiMonW_o4pECFqoegAAAAAAAAAROmzVUgwY22EPoqShuZpT1wAAAAAAAAAB3zXCUNpYxjlSLDJ08OaDVAAAAAAAAAOeMrVvriJqF-HOpa8js-mFagAAAAAAAAA3bC4xUO3cZ_wW8IEDAJ-BNgAAAAAAAABGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAm4yG9IdLfPOQJQp1BxdOq7wAAAAAAAACfEgnEAYVJO6evUZwnNI7NMgAAAAAAAAB05zxpGeZtVFjxV00AgHRxwAAAAAAAAAA6JDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFYhLUfql-5LQM_JtfSo3-RwAAAAAAAAAgUyl96nbKrz6UOSXSc3iffwAAAAAAAABDmWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAABO0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGQFD5TB8FwgEkaTgViNnnC1gAAAAAAAABcWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFBZ5FamAFNAUQLx8KcvDxCwAAAAAAAAA4zfrc9GArcEMXOSddmdDIewAAAAAAAACwnnUdNj2uBRgH8hkAFjfx5gAAAAAAAABKb_zn2wxYEJNQyu5arwWiUgAAAAAAAAAgq44xf6HFj4nbephvvOr6vAAAAAAAAAA8FedFnYQW8bHf16nVrC3eNgAAAAAAAAGoueVIyRbgaIXTTwloG1e5bwAAAAAAAAAFIlG1oGvMr2iYvhrqxgQozwAAAAAAAAAT0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABG0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFpDliMdDN6tdugd_uWfECTwAAAAAAAAAMxRkFHepRLQFnp0xjaPT5XgAAAAAAAAAKkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABG0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFEk41BoFnp4M1u-Ik9d-gsQAAAAAAAAAkjFdJcMgaSFpzbEGK5Q4RcQAAAAAAAADlkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFBRiR5cdugYEExyMetUnOqAAAAAAAAAAUub0yrV1DAC67s4TYqKh50AAAAAAAAAAIbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAyAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJnWkIGdO50axZ_Bk4M_K1cAAAAAAAAAAkr9OA6z6ywxk33MG1uly6aAAAAAAAAAAZFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASFS55TSwq0w7KNb6oqdqsJwAAAAAAAABDgSCcDWmELuplsa8VqJDXWAAAAAAAAAAHj_DalQzm9M9lsrdxKoLeDwAAAAAAAAAcEmratRDxeKcrsZYT5P-e9gAAAAAAAAAQOmzVUgwY22EPoqShuZpT1wAAAAAAAAABTbI11ipOuRPV1oq3v1R7ugAAAAAAAAFROVfypgynaMZkEy3Zi3BjlQAAAAAAAAAeTRhpk6PKb-XKPVFywUkq0AAAAAAAAAAFm67rWWW37luflFNJMq37QQAAAAAAAAAFecwioQzMHOqcvkujHEcA0QAAAAAAAAA1", "types": "CAPOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PNk5D3ntxPXuIHkBkun6-A"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLVSALBRPvgHpUWKmpUo1khAAAAAAAAAAEkoE-yAAYIqbvRVhFPQiQCAAAAAAAAAAA", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-TyLNaIus8xYXNJ7qDmYxA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA74ncZSkKN3zNxr0HYuO2pqe5hQAAAAAAd5KiZSkKN3zNxr0HYuO2pqe5hQAAAAAAd5B6ZSkKN3zNxr0HYuO2pqe5hQAAAAAAdUMGZSkKN3zNxr0HYuO2pqe5hQAAAAAAdcw4ZSkKN3zNxr0HYuO2pqe5hQAAAAAAdaGb", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0WZjWPo0ZsPZ-DIkV3gJrQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABqVb0C_sYOU5d3eeu0yalLowAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAproTQ2x4u1u0ROVEifn0kaQAAAAAAAAAtOcVENYdBUHkmXadCZbxMcQAAAAAAAABX7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAMEozR7rHeowembmV8tqrkzHQAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5W0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAEXqmhrzhROIxdFfT_O0ufQNgAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyMP", "types": "CAM3BQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "s3eG1ITOPVsdH2H5YruQiA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk6jz5k14PsCcDvFyUC1kmlV3QAAAAABFjYEz5k14PsCcDvFyUC1kmlV3QAAAAABGgQQz5k14PsCcDvFyUC1kmlV3QAAAAABF400z5k14PsCcDvFyUC1kmlV3QAAAAABFkX7", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9lQsXvjy3LhFC1-b9LfXYw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipFf", "types": "FAMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0RtFA4NAxhPCgHCcZm471A"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADHmXqXT4fd_WKeR1cE-hlLelCQAAAAAADHmkkXT4fd_WKeR1cE-hlLelCQAAAAAADHm4cXT4fd_WKeR1cE-hlLelCQAAAAAADB6QhXT4fd_WKeR1cE-hlLelCQAAAAAADQm1kXT4fd_WKeR1cE-hlLelCQAAAAAADQnNrXT4fd_WKeR1cE-hlLelCQAAAAAADQjw2XT4fd_WKeR1cE-hlLelCQAAAAAADQjY4XT4fd_WKeR1cE-hlLelCQAAAAAADQjWBXT4fd_WKeR1cE-hlLelCQAAAAAAC0vPNXT4fd_WKeR1cE-hlLelCQAAAAAACq8qOXT4fd_WKeR1cE-hlLelCQAAAAAACq3A1XT4fd_WKeR1cE-hlLelCQAAAAAACq5okXT4fd_WKeR1cE-hlLelCQAAAAAACkkI3XT4fd_WKeR1cE-hlLelCQAAAAAACq5g8XT4fd_WKeR1cE-hlLelCQAAAAAAC0xFxXT4fd_WKeR1cE-hlLelCQAAAAAAClqdEXT4fd_WKeR1cE-hlLelCQAAAAAAClWIoXT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CHnrKd15QpNtnzP8YzFv4A"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACamW1QO3T5kZR72H8FRXCCwwAAAAAAAAAA", "types": "CAOCBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9BGZHTzs6oj_j1YiF-r26w"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACtxSwcEvvhuguaGYCmGWrnWRz1QAAAAACtxRecEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETeKcEvvhuguaGYCmGWrnWRz1QAAAAACEMuEcEvvhuguaGYCmGWrnWRz1QAAAAACEhMp", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "A3ycyp-L3z38MavKYehVrA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAAAnGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABB5KDO11BWTfkkFO9MFEbTJwAAAAAAAAADoyUgxxOY520Rj3U8w5GHoQAAAAAAAADS_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhZsqFV6xhVekP5-uToPI32ragAAAAAAjkHW", "types": "CANPBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OFdK4mvMOorRf1NaABBLdQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADK74KZ3CKaS4aU08RhYA19y5ITQAAAAADK60-Z3CKaS4aU08RhYA19y5ITQAAAAAB0Hw7Z3CKaS4aU08RhYA19y5ITQAAAAAB_wLIZ3CKaS4aU08RhYA19y5ITQAAAAAB_wOLZ3CKaS4aU08RhYA19y5ITQAAAAAB65eYZ3CKaS4aU08RhYA19y5ITQAAAAAB6zHMZ3CKaS4aU08RhYA19y5ITQAAAAABw46mZ3CKaS4aU08RhYA19y5ITQAAAAAB7Af3Z3CKaS4aU08RhYA19y5ITQAAAAADRyJbZ3CKaS4aU08RhYA19y5ITQAAAAABzIEpZ3CKaS4aU08RhYA19y5ITQAAAAAByyXAZ3CKaS4aU08RhYA19y5ITQAAAAABwOdiZ3CKaS4aU08RhYA19y5ITQAAAAABv1M7Z3CKaS4aU08RhYA19y5ITQAAAAABv3UA", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jxSybvAJREHA93t9a-9ZDQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfxrm08oJc5xqpM1VweLZNZwAAAAAAAAEIFyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACAE1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAACS4b6Y6AxjtjqP_pey1p_yKgAAAAAAAAA46himjS-PpAivu9i1Bhv6aAAAAAAAAACVH0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsla3GUxZ_d6TdcMBptiLBKQAAAAAAAAAkuwSrGXrIlilHG9LeAbu8sgAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFO32XyvU5fpn5Sx9ZKKSnYQAAAAAAAAAULEf7xTPa92fa-lrUaMUkPQAAAAAAAAA3-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAFRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFna_q_qI2NNskyXQ7-L9cKwAAAAAAAAAQVQoK7BVzszXqPUi0cc2ufgAAAAAAAABCRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFemtx417xjizVLzzaBLAalQAAAAAAAAAoKU_l7oGL7N35bnBXHoHVpAAAAAAAAAB3R43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF4gllBwxobraKpNHjylla1wAAAAAAAAAYbtJR8uWrInrzn_sGkpIt3QAAAAAAAABNRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF1qPLJVVQ8TzPBEa8EsrzjgAAAAAAAAAU7dZbzLINeewhS7u7jNnbxwAAAAAAAABBR43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3RsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF8eNwq_KWMgzEjBR2SK0NcgAAAAAAAAAQ3xSivts4s-tBo1MMFQEENgAAAAAAAAAvfEf2U4TLcZ6jkTz3kXzr0AAAAAAAAAAkjNbJJD0szUDlnbhrWsIGkAAAAAAAAABE4ZG6-YGelmJ-HvYGGP11fAAAAAAAAABaPJlREaStQ9MDsMhq8CWS4AAAAAAAAAAY9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEQ1dNWbPl2h7mKqBY2NB1QAAAAAAAAAUuj5fRTSdGJxlX0gfzctOogAAAAAAAAA_3G7WvpXqPGO04rbAV9CJtQAAAAAAAAAlHr7DaUVBf6Mvou5VCDAFbQAAAAAAAAApRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFIvg_JPEBUKm57VWt-FY04AAAAAAAAAAMM_MfJrZLrX3P0R0dWrP49AAAAAAAAAALRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7TeTTV59eKgI4B5n7wuKkgAAAAAAAAAU-TcRbQGxOxYw9x9ta5Q4zwAAAAAAAAAheufT8zCegZUSBK09BAzk9wAAAAAAAAAOlrNuGOqZ1W2gPcoSPK5FRwAAAAAAAACd52JRn0mtUy5Ev3iAPOj61QAAAAAAAAAQHZ3TvYLRG36_hU-jHCIzTQAAAAAAAAAcCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAEkV6TzGOHAAtubwqgXU0dkAAAAAAAAAAzqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYwzvWQyXT6P841Whzz8TSaAAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFxGtP-sXIou6VkRlAu3EUfAAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDhfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAABEkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJm_XXHcAY7GMXwX2ivt7_5QAAAAAAAAAkoIYS8oKywxk33PzxrExveAAAAAAAAAAZETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASETEs_vJj_-q4WFpNiG_LRQAAAAAAAABDs4lxyv29UjBRbk4Egon88gAAAAAAAAAHrV1JNblxRI5fLicyinWLbQAAAAAAAAANAzxlhtMMySYrabepp4O8EgAAAAAAAABMrmSs41XtF0_135XyexZ4IQAAAAAAAAAEoIbcZroK0mbxpVqmuMaywgAAAAAAAAAG1910FhfK6lbOz1zNZXgiBAAAAAAAAAACPiU7BfFHTB9-nA0i0-poUAAAAAAAAAAOKOtS45rRLJPAswGO5vDBxQAAAAAAAABH", "types": "CAPYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LEWayJpRjxQq29QdLgh_nw"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACGz1HZ3CKaS4aU08RhYA19y5ITQAAAAACF_8yZ3CKaS4aU08RhYA19y5ITQAAAAACF_UIZ3CKaS4aU08RhYA19y5ITQAAAAABvncYZ3CKaS4aU08RhYA19y5ITQAAAAABw3oLZ3CKaS4aU08RhYA19y5ITQAAAAABzIBu", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DR99mqPw14HhCOTiH_yCjQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATKKq9hFu_HcVwkAnnzs7gcwAAAAAAAAAHDJAMC8tUl4_oL0LoeNoUgQAAAAAAAACVSjePYWwKalqPF7fBjhLglgAAAAAAAABeOVbzts78rozw73k3kwZElwAAAAAAAAAJw52v69QzC-f_wTnaeDz8vwAAAAAAAAALKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABi9vQUYFyqiRwc7z93wKeGwAAAAAAAAAQVr464Hci92DwulADwvd6QgAAAAAAAACX9IGwadGvlAAvyNhDmAhjdQAAAAAAAAAYlk2v4TOQ7YAIfcZCzhq0cgAAAAAAAAAJLvEG81LTfCZ5bdc9cz3LlQAAAAAAAAABggnQOvcjKaPXiEExp4DioQAAAAAAAAABmSJ6fSPuHzsY_PJcgbXOQAAAAAAAAACa", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pZUry6bTXYygY6NfqwYQNQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbkcEvvhuguaGYCmGWrnWRz1QAAAAAD-LY5cEvvhuguaGYCmGWrnWRz1QAAAAAD-MYpcEvvhuguaGYCmGWrnWRz1QAAAAACNFBbcEvvhuguaGYCmGWrnWRz1QAAAAACH4WncEvvhuguaGYCmGWrnWRz1QAAAAACH_OHcEvvhuguaGYCmGWrnWRz1QAAAAACH8KmcEvvhuguaGYCmGWrnWRz1QAAAAACH562cEvvhuguaGYCmGWrnWRz1QAAAAACH1jn", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5T5ZLDbv0qRIOWXAecPJiw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw2HtXT4fd_WKeR1cE-hlLelCQAAAAAACw1EEXT4fd_WKeR1cE-hlLelCQAAAAAACkHGIXT4fd_WKeR1cE-hlLelCQAAAAAACkMuNXT4fd_WKeR1cE-hlLelCQAAAAAACkLvxXT4fd_WKeR1cE-hlLelCQAAAAAACkJ0LXT4fd_WKeR1cE-hlLelCQAAAAAACkHPg", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zOolLKwTF6c0fdaMu4zrpg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATRsvOFqC3SNzn_pRUkwD1yQAAAAAAAAAKmVg5ImyOXWtTMPsPyAoJFAAAAAAAAAADeCd7pmEC4QoP7FQm1ikosgAAAAAAAAGVws0N6fTgPArljYYAC403MwAAAAAAAABq82-lh_T5Vv0w2WAb_RJ1VgAAAAAAAAAIuF_V7TH-mukdED5BHxc90gAAAAAAAAHcC_0aTeR6JBYKeG8Yqz7OGgAAAAAAAAETljpmjACwvo52D1nC2cyFxQAAAAAAAACDvDU7E1ww8G9noy7HUAb7kQAAAAAAAABatrKFSvtlxO979VBLgP3FPAAAAAAAAAAvgs-Dp-bkHGP2EKd53eqOEgAAAAAAAAB-7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAME67ZApSKF_tBH-bAhOXBNxAAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5EXm1hlIrQc2WIKO4W87lDAAAAAAAAAAfDm9DG4ZqDn_4bGJnyMFN4AAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEXnZcAdwBOPPRQ2hQm4YWwWgAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAkQwXZSkKN3zNxr0HYuO2pqe5hQAAAAAAbR7L", "types": "CAMyBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8mR56EbpVUJgNap7DeaEUQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABMaP-XSbJ_jD1SaDSikvAxwAAAAAAAAAM9lngTnmeSG1s7rdk_juSMAAAAAAAAAAGHrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACtBnjxOT6ecDtMNaRY7RgRQAAAAAAAAABnzd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX73IOkhtZyjrZNnxzxVPYTQAAAAAAAACNp20xNjB13pFFci9UHZaQsQAAAAAAAABbNFoti7zeivEyGvfQ3_ANTgAAAAAAAACQN_Re-7YVdSx-pIyGOId3awAAAAAAAAASNRDLk_Rx1lxMZtktExJbDQAAAAAAAAB_qZ3DjQNz2pv5LxLVcd8KGQAAAAAAAAB_x1ribCUra3vmcF-jiTFORAAAAAAAAAAFq-1hRqixdFsMC6pRwQeiWgAAAAAAAABMQiz_6m3TqQhT0_0bfQ8wcwAAAAAAAAAE_v4rMkGY9KRFPld8us290AAAAAAAAAAEqGs-5c7rr1dopGxSByMUNAAAAAAAAAAr1HdQtQPIHHUB1Kmk0mwvJgAAAAAAAAAnDoAs8yRy3iUsFk4iWCcNsgAAAAAAAABxrMv9JWdc6JopZomV3ZBYdAAAAAAAAAA4", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9enMqDCvmYDJCBOe5Nxb-g"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc5-Qz5k14PsCcDvFyUC1kmlV3QAAAAABcnaEz5k14PsCcDvFyUC1kmlV3QAAAAABakmCz5k14PsCcDvFyUC1kmlV3QAAAAABaB3lz5k14PsCcDvFyUC1kmlV3QAAAAABaCF-", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "P5qpfZ9QS6f9dFQXQ-RQug"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQL", "types": "CQMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "78TuS6LlqqCJkHSW5a7paQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vCpXT4fd_WKeR1cE-hlLelCQAAAAAAC-n8QXT4fd_WKeR1cE-hlLelCQAAAAAAC-oXkXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gnrxxuGE4axnb7TUS1R0kg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYr-lBlGU-IcWILqVWjgb-BgAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAH8Tc4heOqvkkU3j8yuc3AAQAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAAtdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFwfZvWlUxslpVTthudbQVZQAAAAAAAAAMytp3uU49O__eOELoHoYHXgAAAAAAAAASk6l9plTdsyuqVCJa0F4QYAAAAAAAAAA00E4KEPyy66WCTzsuPGMCTgAAAAAAAABoiTk93rUXKUXkw5crMY_togAAAAAAAAAK4kgJPxDp_y70g-_9SJBKrwAAAAAAAABwmVZC5ucQ9s0QMwQ6Cu6VqwAAAAAAAAALakHLSuC4R8vzlPIApTxuxAAAAAAAAAANQvGt_WCeC3mBFOZFXsaM4QAAAAAAAAAcyPvQnIOQUh6g8jc0H5_FCAAAAAAAAAAFg82PsytJks3Vn0_tWyJl5QAAAAAAAAAbhQ5cY6hqm-eI3Hf-Do5rXgAAAAAAAAApw8YyBE6YuJVW0xgQWj8zJQAAAAAAAABv4WfxSZZOhaeF5aBtMr0YVQAAAAAAAACNvJ5bWNuw0lqt2JdcP5eOZgAAAAAAAAAM4X1D0bE8dXWnBHefwzL1KgAAAAAAAACMuC86pFXXnBLCj6eRRljPDwAAAAAAAAAQNc9gj1rv2NerZVTmjxTx9AAAAAAAAACGnQWGdRxvqVjwlLmQWH1PhwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAHCKeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARgK", "types": "CAMfBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "N2sJHNv2xDtI8Fug5gaP7w"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAABu1IhEUKf_PDCxfheapNhvQQAAAAAAAACI7RFhYe_NpS241I1rFVDmNAAAAAAAAABNu0qxTrkiZSat46G0GdrgmAAAAAAAAAATlv5p_7PvmAcAMuvPOHN84wAAAAAAAAALI8IIyf6YX8Obq6OO40d5JwAAAAAAAAATJxNwQdNQ2KhjkcKvr9OxfAAAAAAAAAAHDCyFvnkzok7lK265t-00UQAAAAAAAAAToFsDQT5fo33-zFKmVhzmdQAAAAAAAAGID6xd2krsR9CUWCnVmZm5zAAAAAAAAAAZW6VFNqF9RkHoTx54MZ0wBwAAAAAAAAAA", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "w_y9NqchzoBrOm_UtCMj_w"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAADiW6SZxl-YF9wOaedogsBMtvRAAAAAAAEk3JSZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD0NS", "types": "SQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "v3ZqEBwfD7Kct76Q2Ha5ew"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAAAUm5rnlBM51oea-h9ZD0jXEQAAAAAAAAAA", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4YktLuYieY_qIn0-Svbtbw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZvA", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JzDNpxQnzmRTQIj87w61bA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAABgOI-IULopKcZX-PRLno1wGAAAAAAAAAADgC1zzVI3GFMD6nesCimzrgAAAAAAAAACPm0heKLQECP0z9aACcjoRAAAAAAAAAAHvyA8zlEU2Uoo1SKAKvagqQAAAAAAAABS3hPseLnAtdLoro6fxRXJ9QAAAAAAAAACNZ-mE8VVtYwQj1lueb0ovwAAAAAAAAAFsr7KmiDQn3AwPKwUE1w3aQAAAAAAAAAFTQHHjILJSS1Y0hdQ8MODHQAAAAAAAAACxSpwbsqGQ6j4Hi00WayBLAAAAAAAAAAA", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Zpy6U6QwlCQnvibG2K7Iuw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYf9tQ-FDBLtIC3ufWwyt_SQAAAAAAAAALt1J8MwohlN0N8mOD0D4M9AAAAAAAAAAI931sEtpcdsHnD8gPYzKXOAAAAAAAAAAVFtJD5VGhTxHCVaKqcAhyIgAAAAAAAAAFpq-mOW6eRIollfh7ZsI7mwAAAAAAAAAFB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOMGtUNdnqqYq_ltKdCWZbugAAAAAAAAACnIDAAgSWIWbaOw5PSvnTfQAAAAAAAAAFgh_K7CtMZSwMT_r293oSrwAAAAAAAAAFouMG0zvuVqxkxu8joRSJwQAAAAAAAABFkSpDtM4aoNKYBm9KH33NoQAAAAAAAAAFfyAp1WT9KzH8_Hf3u16gEQAAAAAAAAAPx8AuKhfH77nHx6X5aPthhAAAAAAAAAAJzRDIOP6EizqQ97szY8MMXwAAAAAAAAB0prgmxWXKbn-DhdZY8RSwqQAAAAAAAACHOJNgm7N9YyHDUhZhRRE9OAAAAAAAAAAonJ3CJ-4sbFdwGRQw8eLynwAAAAAAAAALBrTm1nkQ5S7puyf9RXq4JgAAAAAAAAGpohexHSo9lTu7x6PwNwY6_gAAAAAAAAABS1h39AxVLLMg2CHSmY1AGwAAAAAAAAAM8a8pt2P7LC9dUGwzrbPBNwAAAAAAAAAFf8MTeeOdLjQj8KhATUKjsAAAAAAAAAAIbu6t-WTb-nsfb-QwFBEV_QAAAAAAAAA9Cl0-Oy1dcP5Qo_OOc99XHQAAAAAAAAArLqD7ENQ-oxpbwiEg5RuQyAAAAAAAAAAFpE_XF-eq0tBl0fP7Y7zrSwAAAAAAAABpYav7N1kdPMXfEfZ1xXIznAAAAAAAAAANDYw6-LyNoVsQdM43hcJCegAAAAAAAAAI3X9PCd1tVPhzrMiwigfodgAAAAAAAAAASNDzWiYDmLZi_Z1ZVETLoAAAAAAA7ka-SNDzWiYDmLZi_Z1ZVETLoAAAAAAA66jTSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfvmh", "types": "CAMnBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wGWkKDGzXSSBbLkENAOIkQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADHmXqXT4fd_WKeR1cE-hlLelCQAAAAAADHmkkXT4fd_WKeR1cE-hlLelCQAAAAAADHm4cXT4fd_WKeR1cE-hlLelCQAAAAAADB6QhXT4fd_WKeR1cE-hlLelCQAAAAAADQm0EXT4fd_WKeR1cE-hlLelCQAAAAAADQmurXT4fd_WKeR1cE-hlLelCQAAAAAAC0u6GXT4fd_WKeR1cE-hlLelCQAAAAAAC0yjyXT4fd_WKeR1cE-hlLelCQAAAAAAC0yEqXT4fd_WKeR1cE-hlLelCQAAAAAAC0yQGXT4fd_WKeR1cE-hlLelCQAAAAAACq9XQXT4fd_WKeR1cE-hlLelCQAAAAAACrw0YXT4fd_WKeR1cE-hlLelCQAAAAAACq_Y3XT4fd_WKeR1cE-hlLelCQAAAAAACrEaEXT4fd_WKeR1cE-hlLelCQAAAAAACrHKvXT4fd_WKeR1cE-hlLelCQAAAAAACpxsFXT4fd_WKeR1cE-hlLelCQAAAAAACpxP0XT4fd_WKeR1cE-hlLelCQAAAAAACpxCHXT4fd_WKeR1cE-hlLelCQAAAAAACp0JQXT4fd_WKeR1cE-hlLelCQAAAAAACpz60XT4fd_WKeR1cE-hlLelCQAAAAAACm_d4XT4fd_WKeR1cE-hlLelCQAAAAAACnLWRXT4fd_WKeR1cE-hlLelCQAAAAAACnNIkXT4fd_WKeR1cE-hlLelCQAAAAAACnGoxXT4fd_WKeR1cE-hlLelCQAAAAAACnZ_U", "types": "GgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bmEkpLRxJcoyFpwchxMFpA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAByB_IRgbCQC1IPEoVkHKMOTwAAAAAAAAAYdB8rpvXeU-U7j8zoRqc_lgAAAAAAAABJkUJgVxIXgDBTomuPsxvCVwAAAAAAAAA-gpzmfljwMvF6axjuntzBmAAAAAAAAAABtGdjZjM6jJA23WbdtVpvAwAAAAAAAAAIE7J_ZVS2fIyPaAMkyne11QAAAAAAAAAB0YpHRX6ZLVSO127u68ifLAAAAAAAAAABGPK7pyl3RjtyKa9WtooOGgAAAAAAAABaSNDzWiYDmLZi_Z1ZVETLoAAAAAAAxSmCSNDzWiYDmLZi_Z1ZVETLoAAAAAAAyKc4SNDzWiYDmLZi_Z1ZVETLoAAAAAAAccuM", "types": "CAMbBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Hnpa0jil7FRY5KNbXbXjyQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAAA2Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABbTIqYHzSLJiXVx4krD2dbMgAAAAAAAAABIFHX6oXBjL3Y93SHOMXcKQAAAAAAAAABZXguWb1db5OZ-xUb0e4ZqQAAAAAAAAM2siCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhNV", "types": "CANRBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_xmAQQzI2PQtnY3j6S3cOw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAqeSs1xpPdaQi6BA9wz10SrwAAAAAAAAA5TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAAA4_nvNcRJCfxwthC1TL7U3ZgAAAAAAAAAE", "types": "CANoBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FjtKztgbAQPS6bJqFyRkYg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiFxkXT4fd_WKeR1cE-hlLelCQAAAAAACiJIkXT4fd_WKeR1cE-hlLelCQAAAAAACiM0oXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7ut68c_tuuoqFzX7ruLfoA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcM9Xltn711KKFcrKCAYh_ZgAAAAAAAAAE8s5hM6TvWnoP9XP3e8VVVwAAAAAAAAAHwh6xTQPkmoOUUrUOOnnNsQAAAAAAAAAgAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ium0M6gtUd_sKOi4qCX1xQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABda68f5mgZFs3OaBztew54AAAAAAAAAAM9lngTnmeSG1s7rdk_juSMAAAAAAAAAAGHrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACtBnjxOT6ecDtMNaRY7RgRQAAAAAAAAABnzd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX73IOkhtZyjrZNnxzxVPYTQAAAAAAAACNp20xNjB13pFFci9UHZaQsQAAAAAAAABbNFoti7zeivEyGvfQ3_ANTgAAAAAAAAGU3kg82-0D3eZ1bo-oCBlTCgAAAAAAAAD0O9IjcD5d1rTcG4kkieTvLAAAAAAAAAAePvsuEs2c6C6ecuTF-xQOfQAAAAAAAAADB1984Ng46sq2rHP9JYVyYgAAAAAAAAARNdnOauNqYT-cKE84qEP2jwAAAAAAAAANlsX2eCLSr4Q70_mA1t3KeQAAAAAAAAAoNB3KICW80r4krIyGFXIJIgAAAAAAAABZ2uEWBluAjlG6YATEmwlaSAAAAAAAAAEIx2cwCBtVASi5Ak0QtF5vPgAAAAAAAAAjHkzvs5GEXB5P73bf_lHYLwAAAAAAAAKTszt2k0ovsr12IZ0RfLNzWAAAAAAAAAAEszt2k0ovsr12IZ0RfLNzWAAAAAAAAAAEa2wo01BPmGnsvdZiPU_NZAAAAAAAAAAA", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "29lvFdoiBP4NTHqtmd8Y8w"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAACgg6FXT4fd_WKeR1cE-hlLelCQAAAAAACgrPkXT4fd_WKeR1cE-hlLelCQAAAAAACgrYvXT4fd_WKeR1cE-hlLelCQAAAAAACgrnp", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xcO8ATMuOlPrGlylAgvJmw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEWB9GVskeRyK4_o3XD61XIAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAqJzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAqdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABTYQywd7BcCE2h4hN9hN7NgAAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TQ4Z-jiPS9ERtxr-dNMVPw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAAtSAAkutGejeRImCZXeWZ-1wAAAAAAAAByB_IRgbCQC1IPEoVkHKMOTwAAAAAAAAAYdB8rpvXeU-U7j8zoRqc_lgAAAAAAAAFle7YYWaQTMh8P2PCVzA2a8gAAAAAAAAA5gpzmfljwMvF6axjuntzBmAAAAAAAAAABtGdjZjM6jJA23WbdtVpvAwAAAAAAAAAIE7J_ZVS2fIyPaAMkyne11QAAAAAAAAAA", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "h78omCSCOG8EoQ0xkchTYA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAACgg6FXT4fd_WKeR1cE-hlLelCQAAAAAACgrPkXT4fd_WKeR1cE-hlLelCQAAAAAACgrYvXT4fd_WKeR1cE-hlLelCQAAAAAACgr5V", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "61D2Ngpext0er1dkiTlWdw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACXFDHy--PvgHpUWFquuqO7RAAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QicAohYElZnDluXcclQ5ww"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACfZYJrmLEjznzm7GSiXKeulgAAAAAAAAAMjH-Kh7eMoVAEa99gkdQ-YQAAAAAAAAAWvtOmTuUGvKYiQRK_O9kHuwAAAAAAAANh_qijKAoIrj192_UIiHcBhwAAAAAAAAAqPTQRd_ysoLKG-jbK5cWGNQAAAAAAAAAHm1DxIW9JZBLmNb4AyJUmVAAAAAAAAAAE3XRljQhmLtSF3NXlsJwKOQAAAAAAAAAA", "types": "CAMSBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g_rVC5Sy8eAmzcpq8FYPgQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAONBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2BsosH4qrHldN8GgKmd2MA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACa", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GXIswAHFAGNbG7pCJXH-2Q"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAC1On5Z3CKaS4aU08RhYA19y5ITQAAAAAC19YhZ3CKaS4aU08RhYA19y5ITQAAAAAC14oVZ3CKaS4aU08RhYA19y5ITQAAAAAC14daZ3CKaS4aU08RhYA19y5ITQAAAAACsn_sZ3CKaS4aU08RhYA19y5ITQAAAAACsuuEZ3CKaS4aU08RhYA19y5ITQAAAAACnQugZ3CKaS4aU08RhYA19y5ITQAAAAACIAqaZ3CKaS4aU08RhYA19y5ITQAAAAACtAiPZ3CKaS4aU08RhYA19y5ITQAAAAACsxfDZ3CKaS4aU08RhYA19y5ITQAAAAACIA1aZ3CKaS4aU08RhYA19y5ITQAAAAACIbhQZ3CKaS4aU08RhYA19y5ITQAAAAACIdftZ3CKaS4aU08RhYA19y5ITQAAAAACIm58Z3CKaS4aU08RhYA19y5ITQAAAAACIcqPZ3CKaS4aU08RhYA19y5ITQAAAAACGwowZ3CKaS4aU08RhYA19y5ITQAAAAACHGXH", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lFR0pO4Wu14TGU5YNpr5mA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMFBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NJLtoy2AIp4OF7edUsA8Tg"}} -{"Stacktrace": {"frame": {"ids": "RXmMEZ6O1OxzfD_HMxPVPgAAAAAAAAAJ", "types": "AQU"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "T8nh4Uz1hBa2hX7n6l8yLQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmsRXT4fd_WKeR1cE-hlLelCQAAAAAACgnAc", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cG6xy387-SzKYkUtR_Jn3Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiF-kXT4fd_WKeR1cE-hlLelCQAAAAAAChWoTXT4fd_WKeR1cE-hlLelCQAAAAAACh0TB", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EXarUgAL9HIosZihvCe9Zg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAAAbH0yNC4W33CkkqJfkrGFEhAAAAAAAAAAR", "types": "CAMKBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wGohEkA_f1FytpRadmhYEg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcj9wdcHVIMBX64V9dKDLXoAAAAAAAAAAgaeHLiMGd0EE8pMA7LZ9W_gAAAAAAAAAB4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZxyf5INnJibBb8rT_yMcsAAAAAAAAAAEe6HlflPyKAlNlF7JPJCNJQAAAAAAAAF31eJRaBH6BEAs6vwpOcsNnAAAAAAAAABDZ-a7RegEMU1bJQCzduDXAwAAAAAAAABIl24TKPxY5vj1MuNBElA0bwAAAAAAAACO5iRxORzRIKB9jE6s7D0c6wAAAAAAAAAA", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GqY4_lTSGhEb3OIQFssjmA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACguWEXT4fd_WKeR1cE-hlLelCQAAAAAACgumUXT4fd_WKeR1cE-hlLelCQAAAAAACgzwTXT4fd_WKeR1cE-hlLelCQAAAAAACg0Mg", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5L0Vg1E8eRaEol71UFTwGw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAAAjj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NiLAkn8PMf6fUuAyKn54rw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlpa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMVXg", "types": "FAMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Rv7EKA4ajQNDDg6Um4OsSA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADAYnk6E9ReVsUsstHFtTIiXQAAAAAAAAAyfT0k69QoWDcgSGG9DEbGKQAAAAAAAABU3yZRDT05_hGvUj8jRvChFAAAAAAAAAIjI3yeYI3jggKwXLfShIlMywAAAAAAAABUAC6sIDdQuWlno6mhwaFiZwAAAAAAAAARmbtJBLFirmHoLdxa0M274QAAAAAAAAAGmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC3OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOEnRoHyZazasm_zTjL5tnOgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMfDpp6LgRqCGeGjs7cnnwItcAAAAAAADsp46tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf", "types": "CAO6BQIDDAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EA7jmP4TdABUc9EMMeGdDg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAYfxhAZVfrZSTvh4Ktxrpz7AAAAAAAAAAFeH9YIUBLytwrD_b5ToaRPAAAAAAAAACg", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uKWYFiw_KkWlIqqrtXASJQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAGx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABW1vmWfRl7JvnIelrwmbOFDwAAAAAAAABiNbNyidoHgMTa3gT2GreFIQAAAAAAAABQt9WFJw2zltKHNxeYswbb1gAAAAAAAAAF", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6LpjlQ5x3C5y0GS9aUsntg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMust6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuoD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00i6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00D6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CQMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mzoBdlEKKFJr7cg7JTbkCQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eaUcEvvhuguaGYCmGWrnWRz1QAAAAAD_AtNcEvvhuguaGYCmGWrnWRz1QAAAAAD_CcdcEvvhuguaGYCmGWrnWRz1QAAAAACGIkucEvvhuguaGYCmGWrnWRz1QAAAAACGIkucEvvhuguaGYCmGWrnWRz1QAAAAACFxIt", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "F42cuc6uAbdZGJ5REI0zrQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFldl", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "462hK3NQJ12J9biGtouuGg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAnZ4NiN5Rb-vuXXHY-ZQp6fQAAAAAAAAAIoSV0vEfx2f4H442JtkKdLwAAAAAAAAACoGwyto3BslHwE9mIoXY8WgAAAAAAAAAFqvNVcLOt_ffF8fUAgdlifgAAAAAAAAACeHnN2Txvq-iOALceSe76EgAAAAAAAAAb1S9eFAopKcZX-VnW9ChdWAAAAAAAAAADw_8HYglWw-0jqUUlUeMgagAAAAAAAAAC5XlE5KvRrfbNOpt-JVgrOAAAAAAAAAAH_zxyi-wgtH_Wz8ut-WKY9wAAAAAAAAA3Urj27ZFZeZ-3lsT-8mj4RAAAAAAAAAAI5XlE5KvRrfbNOpt-JVgrOAAAAAAAAAACpdsn9uDbWKBy5gTXvVifLAAAAAAAAAA2UfxXcxW45qOYyGpzFqajkwAAAAAAAAAa_ikMhsFvsridclqqGNKU9gAAAAAAAAAVn5za8ZXh7UbY67xU_M9aoAAAAAAAAAAVLtrzImlVVNQfaq91QfSCpwAAAAAAAAAIOK_pFA1aQYnHbbVPufNrOQAAAAAAAAALIdcuHIIOwylJBv5_p9-5oQAAAAAAAAAIJQMmJE_F9NfX8W1cx_V9pQAAAAAAAAAvlJPvtRmqoQtUbCFGz0lhkwAAAAAAAAAThbsDty_3N_qXQWlmH_SsFwAAAAAAAAC8RRd3e-o3R1duojNBW8i_OgAAAAAAAACzEAsnGDi8BgLuqi6OO-DMPwAAAAAAAAAA", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Xricnf20K4kRE1JxfxLKUA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66OFZ3CKaS4aU08RhYA19y5ITQAAAAAB610wZ3CKaS4aU08RhYA19y5ITQAAAAAB6u7YZ3CKaS4aU08RhYA19y5ITQAAAAAB6u2iZ3CKaS4aU08RhYA19y5ITQAAAAABu4KgZ3CKaS4aU08RhYA19y5ITQAAAAABu4XfZ3CKaS4aU08RhYA19y5ITQAAAAABu4cLZ3CKaS4aU08RhYA19y5ITQAAAAABuBVtZ3CKaS4aU08RhYA19y5ITQAAAAABtHUkZ3CKaS4aU08RhYA19y5ITQAAAAABtGvYZ3CKaS4aU08RhYA19y5ITQAAAAABtSP2Z3CKaS4aU08RhYA19y5ITQAAAAABtSc3Z3CKaS4aU08RhYA19y5ITQAAAAABtiKi", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ewqZUIOmU9Ti-nJquCY7dQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmsRXT4fd_WKeR1cE-hlLelCQAAAAAACgnBT", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "c20y3BjHH79qpRmxtyoGUg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYr-lBlGU-IcWILqVWjgb-BgAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAH8Tc4heOqvkkU3j8yuc3AAQAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABLvJncLgOnYwpWuDnTLvtywAAAAAAAAAIqJLvg5a2zeGb6EcYZpSyBAAAAAAAAAACB045cMDWxd0Mcqn40XkfOwAAAAAAAACtiBJkiXL4jbMXTevP0sFGowAAAAAAAAB3orI6G4EZluDZPfJ37iPzggAAAAAAAAAX-ZUigVp6H-HqH1lR0smw4gAAAAAAAADmJw6J8qgr1pYHKUa0xZ1MdwAAAAAAAABZlZTvs585vMzXjn3UHln0NQAAAAAAAAGiLMhs_MdxnqcQW9tN9tUCJAAAAAAAAADeXjyaLTQPNDwnxeTIUaoLqAAAAAAAAAA9LZh34Qe9WZt7ydt6m_9sHgAAAAAAAAAxUX0maaM_jFdAmFMbhLpaSgAAAAAAAAANVydXcSmOqICsVxLpiPFyCAAAAAAAAAAhxWXbvqcob2cyNB-_TJKbYQAAAAAAAABZBvE20tx_aKDX9k1QBsUKsgAAAAAAAAAY1LCxlgD3_e4Ym8K1UlEBRQAAAAAAAAAFawaK319bKiHtaKZV9KHt9QAAAAAAAAAXKP7ul0MvWr6g2vIy7Z-XSgAAAAAAAAAa-esrZcmh9SBGSSEFHAV1fQAAAAAAAABxLShh-9O-ab8ob4gfeH5zhQAAAAAAAAAfN1PQDu1Ay8cMXPJ8jF7fCAAAAAAAAABrmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAB6C7K-us0mqSTOC05nudRrpwAAAAAAAABnGf_lEMENHnxizeBtMQocRwAAAAAAAAABsYYc1wpJMhBB0VxP9JiigwAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAHLNpp6LgRqCGeGjs7cnnwItcAAAAAAADsrA", "types": "CAMlBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FqFEzaoqPCnPS62kfi9IsQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgb3scEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETQ8cEvvhuguaGYCmGWrnWRz1QAAAAACFt-r", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zl3Lkb99x2SkFZzpGc0tBw"}} -{"Stacktrace": {"frame": {"ids": "klPbOjidNHRsFecU34u2tQAAAAAAAAmpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGklPbOjidNHRsFecU34u2tQAAAAAAAAlaJD-mlhc2khMaMvypB7uCowAAAAAACvxIJD-mlhc2khMaMvypB7uCowAAAAAACrBZJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNLbtJPgD2DsxuaRUZZI3jKQAAAAAAAAG19OSIwt7_UxT7zZoUvqu4WwAAAAAAAAAvGECkj5EzwizbnHTSy11lwAAAAAAAAACsIWCarP2Cg-zGilSmP2FwvAAAAAAAAAAxPF46WYS52oqKW28TVdZwhwAAAAAAAABl4SjPzL5sRJ4NoaPppbKRXQAAAAAAAAAyzV-zz_SMeRtFDojkROWSSwAAAAAAAACIZtRK4uMy_Wfw-N_iQmSerQAAAAAAAAA1qtNW2Hg_2f_0M1iSBcGbyAAAAAAAAAAVoGmEXpJvjzbRv2r-bFFlfwAAAAAAAAA7EI5wLwdv0nxJGTj51HGsnwAAAAAAAABpqs9QVbSai1fV6zxJyggieQAAAAAAAABfBUIjEExV8zypjFmSEDklUAAAAAAAAAA8WVw4-tNMtcGbe_AUExiiqwAAAAAAAAFTgO6kDS9N3EuxPdxaJ2XycwAAAAAAAAIChVIXRptYWdYbTtDZhNkyZQAAAAAAAAJEfQmBDS59foxFPsSMJZb9xQAAAAAAAAE_FZMomjWJJ0nF52fd5MCJjwAAAAAAAAAbcNfqzNIuM2moCdDAPZaMPwAAAAAAAAGhwnDqzjdjMz5CchEHZ6EsYQAAAAAAAACtuos5blq03yBGQs7NU0gUPAAAAAAAAAAcWJOADfwpHxtseudP4RVyOQAAAAAAAAIBCBHuHFEZWQ-fJ4IkYrsh7gAAAAAAAAB2mBpiFuvmv7Bhv5yWRlHpOwAAAAAAAACGxOuzl7cRmBw0-tjVF12FGAAAAAAAAAH6E__m11jwVVwOsNYG95RSxgAAAAAAAAIJJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAADPP3JD-mlhc2khMaMvypB7uCowAAAAAADOruJD-mlhc2khMaMvypB7uCowAAAAAACuGjJD-mlhc2khMaMvypB7uCowAAAAAADNFHJD-mlhc2khMaMvypB7uCowAAAAAAGyG4JD-mlhc2khMaMvypB7uCowAAAAAADMfaJD-mlhc2khMaMvypB7uCowAAAAAADLg5JD-mlhc2khMaMvypB7uCowAAAAAAIhTEJD-mlhc2khMaMvypB7uCowAAAAAAIVoiHDtxjNJh5HryAaa7uCACXgAAAAAAAAILZUr3dhHUtWV20cKiiRwRTAAAAAAAAACI46OBP4AiIuvPByLPCVNeuQAAAAAAAAFIJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAADPP3JD-mlhc2khMaMvypB7uCowAAAAAADOruJD-mlhc2khMaMvypB7uCowAAAAAACuGjJD-mlhc2khMaMvypB7uCowAAAAAADNFHJD-mlhc2khMaMvypB7uCowAAAAAAGyG4JD-mlhc2khMaMvypB7uCowAAAAAADMfaJD-mlhc2khMaMvypB7uCowAAAAAADLg5JD-mlhc2khMaMvypB7uCowAAAAAAIhTEJD-mlhc2khMaMvypB7uCowAAAAAAIVoim_m1DDbzlNuMTD9gy1hMUAAAAAAAAAFJZUr3dhHUtWV20cKiiRwRTAAAAAAAAACIgzS2gTOADieg_5WoIadp-AAAAAAAAAEVJD-mlhc2khMaMvypB7uCowAAAAAAIUBPJD-mlhc2khMaMvypB7uCowAAAAAAGDwUJD-mlhc2khMaMvypB7uCowAAAAAAGDjmJD-mlhc2khMaMvypB7uCowAAAAAAGXMFJD-mlhc2khMaMvypB7uCowAAAAAAGWmWJD-mlhc2khMaMvypB7uCowAAAAAAGQkz", "types": "BgMkBgwDAwYMAwMGBgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dpoKTK9LU4hKKEDZqArQ-g"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxGI7XT4fd_WKeR1cE-hlLelCQAAAAAACxGRzXT4fd_WKeR1cE-hlLelCQAAAAAACxGYOXT4fd_WKeR1cE-hlLelCQAAAAAACvPQOXT4fd_WKeR1cE-hlLelCQAAAAAACvHJRXT4fd_WKeR1cE-hlLelCQAAAAAACvEikXT4fd_WKeR1cE-hlLelCQAAAAAACvDyN", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fIYzG8NwYtgLi_ZHHyU4xA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACGz1HZ3CKaS4aU08RhYA19y5ITQAAAAACF_8yZ3CKaS4aU08RhYA19y5ITQAAAAACF_UIZ3CKaS4aU08RhYA19y5ITQAAAAABvncYZ3CKaS4aU08RhYA19y5ITQAAAAABw3oLZ3CKaS4aU08RhYA19y5ITQAAAAABzH6pZ3CKaS4aU08RhYA19y5ITQAAAAAByyDQZ3CKaS4aU08RhYA19y5ITQAAAAABtpww", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cJw71ZYPzEs9XDrLKegdnw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADAEguNCcnmVGnXNe9OvbpF2wAAAAAAAAAyyH_ohM36PxcsspBj9HiisAAAAAAAAABUZZqFVPfJM-LkfzPbeaoP8QAAAAAAAAIJZ0TAJMiD_AqT3npr7YiRAgAAAAAAAAH4AJ8qrcXSoJbl_haPhlc4ogAAAAAAAAACX31knMc676bIIEUjaHa0MQAAAAAAAAADTozXD2NzMy0dEH0e02djYAAAAAAAAAEKeRQqY-uKn1zCanFBx5tpKgAAAAAAAAANLaFl4epk0Q6S_D_8elQACwAAAAAAAABjd55u1lPodAfLflRouVTMDQAAAAAAAAAGd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAOPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMzzqjB_amR59Lv13Nhle_NwbwAAAAAAENS56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjs6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbfA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAROdk6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdbc6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdab6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdV46tVKI4mSYDEJ-ABAIpYXcgAAAAAASg5x6tVKI4mSYDEJ-ABAIpYXcgAAAAAASg1n6tVKI4mSYDEJ-ABAIpYXcgAAAAAASgxU6tVKI4mSYDEJ-ABAIpYXcgAAAAAASgiP6tVKI4mSYDEJ-ABAIpYXcgAAAAAASSMw", "types": "CAMtBQIDDwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oolBkHFnNQYADD_-CEG1dg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TU4XT4fd_WKeR1cE-hlLelCQAAAAAADU1D0XT4fd_WKeR1cE-hlLelCQAAAAAACgaD9", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ftyi07t9eEe9-e4ojBNJbQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAAeOWoia3OO91L6Q6k2Ypn2XgAAAAAAAAAW4LWodyiv9Hy4HicwczMhQwAAAAAAAAAKf7zfB261PmeVR0CVV6m2gAAAAAAAAAAJ_NrJ8Q-i9cRRxMzl4paxGAAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAANpDpp6LgRqCGeGjs7cnnwItcAAAAAAADtca6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALR2K6tVKI4mSYDEJ-ABAIpYXcgAAAAAALRub6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALka76tVKI4mSYDEJ-ABAIpYXcgAAAAAALiQnIG5EpvTeHopVC9IqkA_kSgAAAAAAAb-p", "types": "CAMVBQIDCgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7-yIay2Jhm3BbFiMI2RaPA"}} -{"Stacktrace": {"frame": {"ids": "R_3RsDYccfUxjNYYah3JZgAAAAAAEhYe-IlGUwajicqSE5-hS5VYigAAAAAAAHbaSZxl-YF9wOaedogsBMtvRAAAAAAAGQAGSZxl-YF9wOaedogsBMtvRAAAAAAAGQBRSZxl-YF9wOaedogsBMtvRAAAAAAAD9N_SZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAADz6pSZxl-YF9wOaedogsBMtvRAAAAAAAFP4DSZxl-YF9wOaedogsBMtvRAAAAAAAFQAqR_3RsDYccfUxjNYYah3JZgAAAAAAEPdy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJje6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIj8", "types": "JwMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KANLoEfpUHNjFay_wQgAsw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACXFDHy--PvgHpUWFquuqO7RAAAAAAAAAAE", "types": "CAMpBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EhmE1DErCIwAQObQqIf2Fg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAACQUBpN-E7Da9pw7aCfqoKMJQAAAAAAAABgZyityGDpQJw1YigaXArSXwAAAAAAAAAFy9wAruXr5eENJ6q-yQaEgwAAAAAAAAAIhmcQZSO0MWvUeViJZfR2DwAAAAAAAABId55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsSidn5oJ7A2M_efsiHDz05QAAAAAAAAAT0_jShB-DuV77HIBPKqBRjgAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEKC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAAB", "types": "CAMxBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "v5EpA4krR2ROLXfbpheNHg"}} -{"Stacktrace": {"frame": {"ids": "Fe-1yupiO-DRoVp2Fo11nQAAAAAABr4aFe-1yupiO-DRoVp2Fo11nQAAAAAABBTcFe-1yupiO-DRoVp2Fo11nQAAAAAABA9WFe-1yupiO-DRoVp2Fo11nQAAAAAAA_jNFe-1yupiO-DRoVp2Fo11nQAAAAAAAzhxFe-1yupiO-DRoVp2Fo11nQAAAAAABvy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuoD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00i6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0yh6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "BgMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wux22FE_iDeB58rMJzYkuQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP76", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "23l0LEXPY3gsZ-a1uM9WBA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR18", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zY_FUxiP8lY6XZ2ati0KCg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbQ5Yxe-SHgukLEpCkawSk1QWAAAAAAAFznNYxe-SHgukLEpCkawSk1QWAAAAAAAFzx5Yxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHafM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrkJ", "types": "CwMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SmKjrD7wsCsyGVvgvupg3Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAAtSAAkutGejeRImCZXeWZ-1wAAAAAAAACLcDDKtM-30WtgKUZUhSPZowAAAAAAAAD0JN-dgFkoqSE-dHBUib5RMAAAAAAAAAC18k_6lvbs-tYFU0BS1Pnk5QAAAAAAAABItto_m7yhvKemNcMa3xbR2QAAAAAAAAAEoeKTE2BZ0H1nPN79dKoz1wAAAAAAAAAKHSDGZj0USydZuhfh3oIIfAAAAAAAAAAKu_S1z746sqHjwZgqfYjebgAAAAAAAAAJdkbt9cshahtdHiiR3C8VHwAAAAAAAAAGnIOgveIKxj-h480kaCAkPQAAAAAAAAAIhyJvBqqalN42JOW6IRFcTwAAAAAAAAAF2nfk7kd46D_56_vyY72dCQAAAAAAAAAk64_gXbF7HyUCJo7LwmlTVAAAAAAAAAAYyVj-DhlWsbRwk1ix0xTSnAAAAAAAAACY", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iv80T_6PcLzWJ9weG26b5w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFbojlkH6U8-uq6rXJn3yJDAAAAAAAAAAETKPAl4roVc6u9INGFwfp_AAAAAAAAAAM4iaBbZIIwXRBOYMSVscz2wAAAAAAAAADf5pCmW13zl5OWUDLG_ClrwAAAAAAAABNynHqfILVzOOqJs-5yJf4gwAAAAAAAAAeU2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAABU3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAABT6lTs6tzqWRzfV1LHX1Np9gAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IePXD1TmrKr2VUEUp0lyYw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9oaW-L-UrYnSgk4f2xEaPqwAAAAAAAAAHrsOzw2kIzDdbA4UPrMrIpQAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAAt0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdBN2CKYaBpOUbIV1BspF0QAAAAAAAAAMJ1pfAEWmqWCNhh7R3GdmfAAAAAAAAAASE7IGle0kfvhelE-3QmeBCwAAAAAAAAAW0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFz8MLotfDzYWkcVjCT9EUBQAAAAAAAAAMXqo7-ger7Rh6Qo72br9qjwAAAAAAAABjK4q5bjj7FsLI8bLo_hB_IAAAAAAAAAAY_-XUdumhTxHCVZ0GQJxIggAAAAAAAAAF8oqUqvPmlDtvkIzoqHODkwAAAAAAAAAFANUDzCguopTSw91qnI0ylAAAAAAAAAAO7EHeuRz0CLtKEuoB-_zIQAAAAAAAAAAhsntjqhnPOkV1AM5VqFuL9wAAAAAAAAA8_vnxdlrLVdiyCEIVqNBMFAAAAAAAAAAiA-41ReHkKXTbwuqT5HLDpQAAAAAAAAAqFqLNhJuVNl0vdzJ9vBCqwQAAAAAAAAAC1unvtJo8Z1WLtidNEV0aawAAAAAAAAAFE2vcDylOjsVhj9cPIWwJGQAAAAAAAAAJ7bWgTFa6WR_dzzUmS4mVHgAAAAAAAAAG31KZyoXJL7RK8exMgh2GHAAAAAAAAAADUZGxTQT9lvy8CloCZlJmVwAAAAAAAABc2wnY5LHpXWwzeDfG9W1LxgAAAAAAAADG89LXE30sIspbXWCSHRWXmQAAAAAAAAAETXS-M7XDD4DedgFr7B7PEgAAAAAAAABTPWYGELIW3SqFoRNmW7QBAgAAAAAAAACTAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CANDBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6DJ5rUntpH_kTGPTanZjBQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAAAWbYqQKQVuynaJd6xwXcCprgAAAAAAAADg1oyY5_H1XDxnqxtQutVBSwAAAAAAAAAE7LziU26eINk4gGAzQhjzRAAAAAAAAAAhednam-wfOejL7SBt7Wl1oQAAAAAAAAA-1oyY5_H1XDxnqxtQutVBSwAAAAAAAAAE7LziU26eINk4gGAzQhjzRAAAAAAAAAAhpboNPSluja75Bcicb918zwAAAAAAAAABjJ1ozPLEubzrPTK_HIIAngAAAAAAAAAEgyCLaoZ33VoOuRW0bXNTvAAAAAAAAAAUmIhHJLRWLV08bvGOk_MaUQAAAAAAAAABAsYLPOMVTEJOeDxuyLY7KQAAAAAAAAAUX9lpa9TN84k-aLBSFJ8EgQAAAAAAAAAHMkmisheVP0DaTeF1Tgq6BwAAAAAAAAAVkrGbMu8JHiKkyENUYIKBywAAAAAAAABnhCDtT-9vDXD-e8HuC9915wAAAAAAAAA4GP9DcZgvFsVU-FrimfbKfQAAAAAAAAAJ4X1D0bE8dXWnBHefwzL1KgAAAAAAAACMuC86pFXXnBLCj6eRRljPDwAAAAAAAACENc9gj1rv2NerZVTmjxTx9AAAAAAAAACGnQWGdRxvqVjwlLmQWH1PhwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAHCKeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARhH", "types": "CAMzBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "O3n8w8bc5rIZeq-nJR67uw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAGvN0nOeOJdjggSFx_cpb47egAAAAAAAAAV4vwWTuaA5W0Uq7WSODTSAQAAAAAAAAB8mm7pA8Vo6frfLprU_GjPaQAAAAAAAACREbDp5Ji3y8uTKzXL0h4-JQAAAAAAAAB8dJZnxxfSj1TBzD3FyyfeDQAAAAAAAAAOArz1MMWCC2fkAl6FCL43rAAAAAAAAACL8OiJZHURIK_gi5RsAiMk3QAAAAAAAAAv4vmruhuX9yE9PQmpwNqDLQAAAAAAAAA4eRopNDS3ANx--GCaBwfnRwAAAAAAAABT9XwjjOJWF0a2KrYN7mYvpwAAAAAAAADS7yAgGhSKYf_7c7LTzITpCAAAAAAAAACMLlS_2xs10ssihc5Uh6NqzgAAAAAAAAAfHegJ6iKTPwzhAbI5kz1vKgAAAAAAAAAT", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ya1CUr1oSygfbTjmbb4XLQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMh29XT4fd_WKeR1cE-hlLelCQAAAAAAC-z7kXT4fd_WKeR1cE-hlLelCQAAAAAAC-1UKXT4fd_WKeR1cE-hlLelCQAAAAAAC-0_3XT4fd_WKeR1cE-hlLelCQAAAAAACmHuGXT4fd_WKeR1cE-hlLelCQAAAAAACmHmJ", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UHAJjYcGydH1wr7a4b6sRw"}} -{"Stacktrace": {"frame": {"ids": "klPbOjidNHRsFecU34u2tQAAAAAAAAmpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGklPbOjidNHRsFecU34u2tQAAAAAAAAlaJD-mlhc2khMaMvypB7uCowAAAAAACvxIJD-mlhc2khMaMvypB7uCowAAAAAACrBZJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNLbtJPgD2DsxuaRUZZI3jKQAAAAAAAAG19OSIwt7_UxT7zZoUvqu4WwAAAAAAAAAvGECkj5EzwizbnHTSy11lwAAAAAAAAACsIWCarP2Cg-zGilSmP2FwvAAAAAAAAAAxPF46WYS52oqKW28TVdZwhwAAAAAAAABl4SjPzL5sRJ4NoaPppbKRXQAAAAAAAAAyzV-zz_SMeRtFDojkROWSSwAAAAAAAACIZtRK4uMy_Wfw-N_iQmSerQAAAAAAAAA1qtNW2Hg_2f_0M1iSBcGbyAAAAAAAAAAVoGmEXpJvjzbRv2r-bFFlfwAAAAAAAAA7EI5wLwdv0nxJGTj51HGsnwAAAAAAAABpqs9QVbSai1fV6zxJyggieQAAAAAAAABfBUIjEExV8zypjFmSEDklUAAAAAAAAAA8WVw4-tNMtcGbe_AUExiiqwAAAAAAAAFTgO6kDS9N3EuxPdxaJ2XycwAAAAAAAAICRAiSaKhtr8sKQyEQrLjoKAAAAAAAAAJCkrRTeyA1V-X3nZVYjnbwWAAAAAAAAAE88otNRdSDOkmJHkAHEZdMrAAAAAAAAAAJIJwWkOp6ZFrpAuS1jmILqQAAAAAAAABBJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAAA1NrJD-mlhc2khMaMvypB7uCowAAAAAAIg7EJD-mlhc2khMaMvypB7uCowAAAAAAIVoinLb8frZOVnOUSlDo45we-gAAAAAAAABDBxR1c7-nLgrcHbXghB3o2wAAAAAAAAAVGLsxJEBpGzbIAzUio3qiqgAAAAAAAAAqCAYdtG0jGNYNtTA31gKoPAAAAAAAAABdL15jjWwEOMTeauZtyYx75wAAAAAAAACVYkIaRxuwdj6_l9jcQ8vj7AAAAAAAAAAWqrmk67kNwxQVIgdMvHYZ7AAAAAAAAABr2OqIxq9okDnhoWYrFU8L9gAAAAAAAAA_s6_uo1oDaVy6YH62gW5X5AAAAAAAAAOqjG8RV1XmTT7lPs6gbbzWEAAAAAAAAAOvL74ZUdfItkQj1FNjlE0GyQAAAAAAAAPxmHzD8kiYxVjek9AoaxFfnQAAAAAAAAAsJD-mlhc2khMaMvypB7uCowAAAAAAIPQmJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCesjkXvSc06kCzT5ulprfEPAAAAAAAA6AHsjkXvSc06kCzT5ulprfEPAAAAAAAA5qhbzrt0cDU6UPpwGohqCueZwAAAAAAA7x9bzrt0cDU6UPpwGohqCueZwAAAAAABQb9bzrt0cDU6UPpwGohqCueZwAAAAAABSU3bzrt0cDU6UPpwGohqCueZwAAAAAAAtcq0qzGEnWLNN8utw6c2ruTzgAAAAAAEzaO0qzGEnWLNN8utw6c2ruTzgAAAAAADkQ00qzGEnWLNN8utw6c2ruTzgAAAAAAC5Cv0qzGEnWLNN8utw6c2ruTzgAAAAAAC-Qv0qzGEnWLNN8utw6c2ruTzgAAAAAAC-FV0qzGEnWLNN8utw6c2ruTzgAAAAAACxnm", "types": "BgMdBgYDDAYPAw"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TtLtDTr58CzaWDA4qlaTmw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYCMh__DRjYW6WKuSO4E-9UAAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAB2GBJ1zKS_b9jP7AxB92tjCQAAAAAAAAAo0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFKCxCvDIXtl0ClBmM3hNiLgAAAAAAAAAcFDp23rE1CceEicB2tyC3EgAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_QZucZeLQwMr7zKD51abCrwAAAAAAAAAMS_GmAS-sCtPOI6egY6LXiwAAAAAAAAAPbSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT-r9PdXX1mVfrKM4cjx98VQAAAAAAAAAHckdRYj6mGdEYJvYh_1v9CAAAAAAAAAAVNku1oPInJYwCIRLCUxYLuwAAAAAAAAAGGHfrWkNDTusMoI46fGLR6AAAAAAAAAAXtQBYLE5Qq3rn4uocqQBMfwAAAAAAAAB06SPcjSM_2i5VedtZVzcDIgAAAAAAAAAahrzNr_V8YVZ7ibkr1777pAAAAAAAAADWL1TsSv66pa2kBpdVIVNEAwAAAAAAAABGsavPbEF5C7JhfS7sqrnMYwAAAAAAAABNJvScc-kAblhDe3HgLZgGAwAAAAAAAAEtG4cQid4Xo1Tc_dU6YBAwnQAAAAAAAAAEEEfFWFsgasz8z6yvzLMmSQAAAAAAAAAE8j5cUdTnc2xWo1otBaDFqgAAAAAAAAAwkG8xQd-CQn-vHurDIfEJ-AAAAAAAAAAXhlBuXaLTryBXsnmcprSPLgAAAAAAAAAjNnsXqH-CVYMwVp_zbU78aQAAAAAAAAAIK_1eR84MDkHtmAgcOm681AAAAAAAAAAF3kqKIOk7SslvcfRGmqs1wAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOEnRoHyZazasm_zTjL5tnOgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAANUz634wiWh6F21tPpXr0Zz3mgAAAAAAENTq", "types": "CANDBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Kxm_Vs_FFH-wRGO9m2XBVg"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALlpRCGlUta_cleZPDK4rgegAAAAAAAAEGgm8AuUNO9K8eEDhJQ1w7agAAAAAAAAABK98UXW_tqL7J08okqw576QAAAAAAAAAMegpNbNcxtEqICrqK7IpKIAAAAAAAAAADYfRHlE1vu_h7IFmmvCCYcQAAAAAAAAAVkM5OTfXaaIaAuKd35fVzSwAAAAAAAAAMY0WL2JQBITcSYBIL9j4tqwAAAAAAAAAScna0HoKYEYAK50ooxzDINQAAAAAAAAB5uwoPmDSFFEAGC28V-_VbNwAAAAAAAAASfujokLEB7RFa9gGF_WxCPQAAAAAAAAAHT6T73qLaSYHKy04_O0cJkQAAAAAAAABZExnHmSyNgBER3hqgAfGNQAAAAAAAAAAA", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yCJBwrMAMfpAui_lf-8LYA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAABQ0tEAP3x_JoFH6wNaGZk0agAAAAAAAAAsl34EZ8xDHNxGTCOWJeXKigAAAAAAAAACtIB1dxGnX0oRcLl9Hw7ZbAAAAAAAAABwmZ6pM0OEbp3JJIi6QUyNsQAAAAAAAAAItUugY2gAhpWf99wEorV4JgAAAAAAAAAjwf9mrqZKrjw_yhc1kSPntQAAAAAAAACE0uQfhygt3iA5h-6EqK0MPAAAAAAAAAAEJYb5JOqnMPOCcF7fd5apugAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAALTqvQ7EacG6CR4rzcFaNFEsTQAAAAAAATPL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTgd", "types": "CAMRBQIDBwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CyRDyPVW9ctHTgi1aqo0EQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP_dK", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "q7XAR2zqlv3Nkd1rHK-fsA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABBAkYxe-SHgukLEpCkawSk1QWAAAAAAABAvkYxe-SHgukLEpCkawSk1QWAAAAAAAA_IZYxe-SHgukLEpCkawSk1QWAAAAAAAA-3HYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBtY6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBeQ", "types": "CQMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cfo59YpRKB0q5iQSQJ-VYQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB8_Hwz5k14PsCcDvFyUC1kmlV3QAAAAAB8_Xkz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiO_z5k14PsCcDvFyUC1kmlV3QAAAAABHtS2z5k14PsCcDvFyUC1kmlV3QAAAAABHghkz5k14PsCcDvFyUC1kmlV3QAAAAABHApWz5k14PsCcDvFyUC1kmlV3QAAAAABHCkw", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ujmw3KBSZEY5_4s7Myq2pw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfxrm08oJc5xqpM1VweLZNZwAAAAAAAAEIFyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACAE1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAACScdTS-RIJ4OkgwXwrA9jyIAAAAAAAAAA5CyxJKWhz_iFYytJsQ45E4AAAAAAAAAA6sLlgLb_29ibKij3P60tXfwAAAAAAAAAt112Fwha7UwifvTTtdUMggAAAAAAAAAAUWDifHywfLuQd8Yh-DIvScgAAAAAAAAAUPBpfn0f1eKNcXZ1C2eJmZwAAAAAAAADrY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF_V8LkuZDYhsRC_uInyycHQAAAAAAAAAgMsMB9yoGg6PjkQwG5yyoCwAAAAAAAAAZT5hiiNMlc9RKe2ptBi1-rgAAAAAAAAEMPwh6hSQTQ9v1UQs62plj-AAAAAAAAAAFRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFBlwqo9fDZkc_G71NBmK4kwAAAAAAAAAMKx8_JifYLsyt8nlVLT1q4gAAAAAAAAAGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFhzWLY32HB40pGQwoJomtfAAAAAAAAAAQuMbV4kgTfjojzHhdWOM7pAAAAAAAAAAXRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF4as0IgurEXJei_r6XmrPIAAAAAAAAAAU7dZbzLINeewhS7u7jNnbxwAAAAAAAABBR43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3RsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFrY7n4rCVF7rtGQSMR7sNcQAAAAAAAAAQ3xSivts4s-tBo1MMFQEENgAAAAAAAAAvfEf2U4TLcZ6jkTz3kXzr0AAAAAAAAAAkjNbJJD0szUDlnbhrWsIGkAAAAAAAAABE4ZG6-YGelmJ-HvYGGP11fAAAAAAAAABaPJlREaStQ9MDsMhq8CWS4AAAAAAAAAAY9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQmUBFmueS4MaOyw0OD29yQAAAAAAAAAUuj5fRTSdGJxlX0gfzctOogAAAAAAAAA_3G7WvpXqPGO04rbAV9CJtQAAAAAAAAAlHr7DaUVBf6Mvou5VCDAFbQAAAAAAAAApRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFZRv6R5-Wsj1i57MVMaKXtQAAAAAAAAAMM_MfJrZLrX3P0R0dWrP49AAAAAAAAAALRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF41q7-Ld-6XK0fcC0fV9B7QAAAAAAAAAU-TcRbQGxOxYw9x9ta5Q4zwAAAAAAAAAheufT8zCegZUSBK09BAzk9wAAAAAAAAAOlrNuGOqZ1W2gPcoSPK5FRwAAAAAAAACdDafhJmPeATcw-S0FkflB2wAAAAAAAAAMa4gTVv4Tk1ur056NgiSEtgAAAAAAAAAKFJIqUFyYQ3Kah4wvUZEsEwAAAAAAAAANCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAEhQ2OXkHYZRXh3_WLXzxSBAAAAAAAAAAEqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYwzvWQyXT6P841Whzz8TSaAAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFFNGo1JfG2H2fZIcfqeCsfAAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDhfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF_IhPXrChwahxbJ63NZZANQAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4rDcHLjUrpvKg-XXDfFGKmAAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJNoWLrp2Hx2HDcioYyHlIIwAAAAAAAAAkoIYS8oKywxk33PzxrExveAAAAAAAAAAZETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASETEs_vJj_-q4WFpNiG_LRQAAAAAAAABDHqIT4swMwQ6J-7meyTeYpAAAAAAAAAAHCcxzbb-8gf25alsKrnG4nQAAAAAAAABMS8EUD4p5Uqc9upyNv2OqKwAAAAAAAAAM30O6VQjnGgkxLjQ6W-h4eQAAAAAAAACaHCyZkqmT62qgBdcLDAK4rQAAAAAAAABNb5D4G32aP0YH2ukb-bXGLgAAAAAAAAAdiM8LSJ_0DrAH3j2_fhBWQwAAAAAAAAAIKYUKYe5FJokP-mDuLYX4tQAAAAAAAAACXpviWYO7CFQF88r_qvK5hQAAAAAAAAAJPdUW9luC01twMTSwlltVwwAAAAAAAAAglW9g6oXBy08ikQZIsz5UggAAAAAAAAABL8RflRLqXUtEedgUFWXJNQAAAAAAAAArfhgJSRyZo0mzCCDZd--ywQAAAAAAAAAE3z1OOsQnAKpS1yct9MEg-wAAAAAAAAAi", "types": "CAO5BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PonqCaU3e7VApDLeDylGQw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvU6cEvvhuguaGYCmGWrnWRz1QAAAAACLroTcEvvhuguaGYCmGWrnWRz1QAAAAACLsWTcEvvhuguaGYCmGWrnWRz1QAAAAACLsmncEvvhuguaGYCmGWrnWRz1QAAAAACL74lcEvvhuguaGYCmGWrnWRz1QAAAAACLxG1", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ow1D1C0phScv22K7VxLC2w"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABO", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2mGUnlgeNy9yq7TLiDTKvw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAAAbH0yNC4W33CkkqJfkrGFEhAAAAAAAAAAZB1lRvacwBBYy0dU8osocsQAAAAAAAAAEERCDx41eaqshzIEf6tpFyQAAAAAAAAA6xKl6Inh-0EiNiO6fokn7-AAAAAAAAAA9tyxlgW2MSm0fLKof7M0dQwAAAAAAAAAFpqBRZ5qawZeLpdbbr6iQSgAAAAAAAAAHvPV4_tQe59nxpFxiADDYNgAAAAAAAAAA", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DU3pAewxbbLyFetX4pmrVw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATgIVE_He_HcVwkF6GliVVvwAAAAAAAAAHUIy2Q7YM4c27tuS1_ztJlAAAAAAAAACVnJb6IY06KTWp6IJDHyYuGgAAAAAAAABsOVbzts78rozw73k3kwZElwAAAAAAAAAJh9KApxIztAVSR1ja67Q3vQAAAAAAAAALrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABHClQhgDqheRz8dbmDc8dxAAAAAAAAAAQVrkGa1SbyRj73L3L9NE1XAAAAAAAAABgnOwqeD6ZJtavy7VDpIbTlQAAAAAAAAAENUHO_iNZCc-7_52gTmxhTQAAAAAAAAAIhq6I_LYL4I-0sHu-9iU7vQAAAAAAAAAMN9PMe4dCPllLdnaTDHMAZgAAAAAAAAAF8tuuWTUZUYmZJZRhv0SpoQAAAAAAAAAD7Slkc3C9A3eZsO9dv0O2hwAAAAAAAAB3gpzmfljwMvF6axjuntzBmAAAAAAAAAABtGdjZjM6jJA23WbdtVpvAwAAAAAAAAAI47MrLZnclADY7wpsxDgPSQAAAAAAAAAA", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "I8foXFGiFUjsvoBc2tLNSw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFJmXT4fd_WKeR1cE-hlLelCQAAAAAACxFTwXT4fd_WKeR1cE-hlLelCQAAAAAACxFlNXT4fd_WKeR1cE-hlLelCQAAAAAACxFzkXT4fd_WKeR1cE-hlLelCQAAAAAACvPQOXT4fd_WKeR1cE-hlLelCQAAAAAACvHJRXT4fd_WKeR1cE-hlLelCQAAAAAACvEikXT4fd_WKeR1cE-hlLelCQAAAAAACvEIoXT4fd_WKeR1cE-hlLelCQAAAAAACu78-", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wYQMafKDTOM5M3m09YsCqw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7W", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ofBPwIIjkbSYwPiBTq9MQQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5WiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbXAL0Ge_HcVwkBrUXRRiLwAAAAAAAAAHfyGIqAgDCWT0HWMDhvlu5QAAAAAAAACVrg_W9Iz5X4vBEiSyGYl41QAAAAAAAABeOVbzts78rozw73k3kwZElwAAAAAAAAAJJnSEm3EzEl71vBewWd-MegAAAAAAAAALh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABq3Tjfka8pNswMm1Yg7BN5wAAAAAAAAAQ5mPZ7hP04mAof7_xhihCAwAAAAAAAABV5utt2dQ8HKrTepHdNpprxQAAAAAAAADL6XNnO9SeJ40ZM7baZ84oEgAAAAAAAABVLll_E1k3FfR43EQBXwU1dgAAAAAAAAAIrywk-6b8WKiuckZ62dxSSwAAAAAAAAAHiX3hg20o3ZB-dQ1wA5bFxgAAAAAAAAAEomA88yQfT91566xoyEY7sAAAAAAAAAAcrrWuYAakx0mSDLYXP-NBMgAAAAAAAAABK-xWzbOpXq--Qycbjj-mDwAAAAAAAAA3L1OydAndq8IT7nNSF3yNbAAAAAAAAAAkewU9RfzsPed7JATT94aw-wAAAAAAAAApfZ3COijH60wdDIIVUpSInQAAAAAAAAAIx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAOPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMzzqjB_amR59Lv13Nhle_NwbwAAAAAAENS56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf", "types": "CAMwBQIDDAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yuDdBF0iwQiPnskDDqWYwQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgKJ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3jx5ziVarO0rH_UBySTUCA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlZUcEvvhuguaGYCmGWrnWRz1QAAAAACEea2cEvvhuguaGYCmGWrnWRz1QAAAAACEf3-cEvvhuguaGYCmGWrnWRz1QAAAAACEgLJ", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tPsVwrBNUc_Ucb0xgpo9Aw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAHOgepeYBdrKmAGikZZHzjywAAAAAAAAACvIUAbyMW7bf80Va51E6QcQAAAAAAAAAF_I187UwkDjABEvmHmR4uSwAAAAAAAABtf-B_DnWkY3i33A_-cn2DVAAAAAAAAAAa_iCcRlhs7iF8GyQDr_i9yQAAAAAAAADW4LaiotHNGYdIR8tBjAPtZwAAAAAAAABGIlQ1XNLSC8AG8SGKzC1MsQAAAAAAAABNtLATSye44dZj5qP3wd7yWgAAAAAAAAEpigDwMdAXo1TdAS62iEyAAQAAAAAAAAAE2s_lBdMgasz8z2CHTH7llQAAAAAAAAAEZIenda5b7lnvaeoaoU0sRgAAAAAAAAAwLrPBC0BVk768vSdX8rgftwAAAAAAAAAXQZb4rTMQsQaHQYQyuxFMYgAAAAAAAAA1H46oOheCVYMwVppPPeLSyQAAAAAAAAAIPxKXTV4MDkHtmEvOc2iKdAAAAAAAAAAFOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEn89kGiBdFucX6T4kdjXe_gAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVCm3FF_uDQeutHnQs3UGjlgAAAAAAAAC1tBGZzB5ZNClfuCqDA5LS5gAAAAAAAAAGFw4N_DGYxmWJY3G6VlrCLwAAAAAAAAAGfHicjb8IhyJmUDNrJFOj6AAAAAAAAAAZwMduPEe0g_53DcRkATCeKAAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAAB8pfFrejV5_d2JafhorerbtgAAAAAAAAAB", "types": "CANVBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "U-BNILa1SCuDbNciG6XDXA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF9MFz5k14PsCcDvFyUC1kmlV3QAAAAABF9E6z5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF8R-z5k14PsCcDvFyUC1kmlV3QAAAAABFPbc", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "c6oJOlriSsxoHCj15KtT0A"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAAAjj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABdMWF-ta49FweBhvwuhsiFKwAAAAAAAAAYfxhAZVfrZSTvh4Ktxrpz7AAAAAAAAAAN", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6YWns3NF2PVmevxSMrfdSg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAABtlFmnG5E5GwmKFptmUf-qtgAAAAAAAAACV_KspK9nh8LJS_EE9pIxxwAAAAAAAAAg2B7DXV7RQApU6uBxIPxnnAAAAAAAAAAOAmq1Q_OWnEFyfJsbIWLjHgAAAAAAAAAF9W0w4Zf7EaLrEqfpZeskwAAAAAAAAAAGxF4yGyA2KnTCi8zdSVp9ZAAAAAAAAAAacilUhzLRe6BxU3ZAi1NCYgAAAAAAAAABS9dDtXfGWlAbYJs-qAiNWAAAAAAAAAAfEqiy1VsW3_B402acjocAnAAAAAAAAALS7qmVvURTWTJ6lErQQmLiNAAAAAAAAAACir_B8dLUMy9ZNkZg-Dbc7wAAAAAAAADvMn5TdyGE5kHT5IZPOwhjjQAAAAAAAAEHe6kOmtq4UMf8z_9CSSuPhwAAAAAAAABU_uyhRV-Mxtsf8L_5aSDZ3QAAAAAAAAAccfkTE_69BLMq-Apv4ZuXTQAAAAAAAAAMrAByv-GRtkxE8yHpYMsDeQAAAAAAAACWir_B8dLUMy9ZNkZg-Dbc7wAAAAAAAADvMn5TdyGE5kHT5IZPOwhjjQAAAAAAAAEAOUAIFP5dDEg6s1Mg3RJ3BwAAAAAAAAAf8JoAbV1Ay-japSZaScpfIgAAAAAAAAByP299PotjoPCE9wTQuko6qwAAAAAAAAAVmjjylTu53OzZzuGoh0VxGgAAAAAAAAAc8mitJsUwZQQfy83zw459dgAAAAAAAAAJurqdYhuIawYQe5EC7N2xKgAAAAAAAAAMJVNRKbHPqSsSb32dALl1uQAAAAAAAAAI_Yyh0AjlZUFswafIHC3ytAAAAAAAAAAE", "types": "CANEBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bNNll9gtsumikBQkeP5zYA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF353Bbxw0b5wHlGJY1WEVWAAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4bWZWPptWisqbpRDA9X8cNgAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADv9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABDHfFlM3axnhO28EteQn-2WAAAAAAAAABJ5utt2dQ8HKrTepHdNpprxQAAAAAAAAFzUP7wzdQXo1Tc_iFi4DuZQQAAAAAAAAAE9ZOKtWsgasz8zygdckTZDQAAAAAAAAAEEVcCXOQnkebnZR5Z6XcBvAAAAAAAAAA0SLm5iQaRU0eNqFhBMIrYxgAAAAAAAAAXvOoArOQsiI-woapVIk9zYgAAAAAAAAA1NnsXqH-CVYMwVp_zbU78aQAAAAAAAAAIQunNj1oMDkHtmA3AacNPUAAAAAAAAAAFx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlseZ", "types": "CANPBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xE2zyuyXFlIJ5r66uy5RMQ"}} -{"Stacktrace": {"frame": {"ids": "c6lwtZBG2BzNKGtSyzLrTAAAAAAABCWpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGc6lwtZBG2BzNKGtSyzLrTAAAAAAABBZWc6lwtZBG2BzNKGtSyzLrTAAAAAAABWSbc6lwtZBG2BzNKGtSyzLrTAAAAAAABO1vc6lwtZBG2BzNKGtSyzLrTAAAAAAACbDSc6lwtZBG2BzNKGtSyzLrTAAAAAAABFjdam-Z0RfUVY0oYK5VXRDk9wAAAAAADKVLam-Z0RfUVY0oYK5VXRDk9wAAAAAADKAFam-Z0RfUVY0oYK5VXRDk9wAAAAAADHo5am-Z0RfUVY0oYK5VXRDk9wAAAAAAD1-4am-Z0RfUVY0oYK5VXRDk9wAAAAAAD1vwam-Z0RfUVY0oYK5VXRDk9wAAAAAAD04Mam-Z0RfUVY0oYK5VXRDk9wAAAAAADtvRam-Z0RfUVY0oYK5VXRDk9wAAAAAADreaUJmIMEc6K8gJ39NHYaD0WwAAAAAACY-6UJmIMEc6K8gJ39NHYaD0WwAAAAAACVlkUJmIMEc6K8gJ39NHYaD0WwAAAAAACUhHUJmIMEc6K8gJ39NHYaD0WwAAAAAACQkg", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "H6bVVoHSSJLF6qLyyJlYew"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAABqkPOuFMPm2_j7vX6Q_7bKcAAAAAAAAAAhAmmotxQnAOVzMU8NulbCZwAAAAAAAAAQLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAABBoz9GJ_qlf4pBIKy8mHtWYAAAAAAAAACLR8Unr-8xOl9YfaVb1B0yFAAAAAAAAABveCOhqsAwaXtoMEk8IgCdpQAAAAAAAAAIgL0sNJyG3L826RryrsTHqQAAAAAAAABNgL0sNJyG3L826RryrsTHqQAAAAAAAABNgL0sNJyG3L826RryrsTHqQAAAAAAAABNgL0sNJyG3L826RryrsTHqQAAAAAAAABNgL0sNJyG3L826RryrsTHqQAAAAAAAABNgL0sNJyG3L826RryrsTHqQAAAAAAAABNgL0sNJyG3L826RryrsTHqQAAAAAAAABNgL0sNJyG3L826RryrsTHqQAAAAAAAABNgL0sNJyG3L826RryrsTHqQAAAAAAAABlcNcE3gFf5WE1NJA6gh8BYQAAAAAAAAAG82bVFvNJjyqNoRuEig4DTAAAAAAAAAAN2lvbA4sUB4gmNAq2D3ePmAAAAAAAAAA0AB23CMaiG5qxUv7Vd8TMWgAAAAAAAADhtcWktgSeaLVx-oyyudqAZQAAAAAAAACV", "types": "CAM-BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Zk1KOzfHoLWnIpBzzSfmpQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qf52Afepgpr9n2wytPbK_kAAAAAAAAAAi5Ib9omL2d9xqdBKBL9VmGwAAAAAAAAAASNDzWiYDmLZi_Z1ZVETLoAAAAAAAirEMSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6uRMSNDzWiYDmLZi_Z1ZVETLoAAAAAAAaICA", "types": "CAMDBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2i-Edq18smF6rac2fCPmsA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABMaP-XSbJ_jD1SaDSikvAxwAAAAAAAAAM9lngTnmeSG1s7rdk_juSMAAAAAAAAAAGHrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACtBnjxOT6ecDtMNaRY7RgRQAAAAAAAAABnzd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX73IOkhtZyjrZNnxzxVPYTQAAAAAAAACNp20xNjB13pFFci9UHZaQsQAAAAAAAABbNFoti7zeivEyGvfQ3_ANTgAAAAAAAAGU3kg82-0D3eZ1bo-oCBlTCgAAAAAAAADCVOUNVzVyt4QutMt6oZxNlQAAAAAAAAA2EyQZHtzRv_03o0l-NXmg-QAAAAAAAAAxNdnOauNqYT-cKE84qEP2jwAAAAAAAAANlsX2eCLSr4Q70_mA1t3KeQAAAAAAAAAoNB3KICW80r4krIyGFXIJIgAAAAAAAABZ2uEWBluAjlG6YATEmwlaSAAAAAAAAAAeYbAg0T8eOr8SvAbjK52BYAAAAAAAAAAFtlnK3_wdqHiODNJ7-wRpAQAAAAAAAAAXoAZFW9wMcUMYVEEE5ZtkLwAAAAAAAAAakNeaLNe7WMgsUgZLaHboxgAAAAAAAABMaTDLmmx5i_FySiS_tBfkmwAAAAAAAAAfmZdi8xuJDhfKKe9rvO4vxgAAAAAAAAD6QmYRSks2gjLlkW8NnILWSQAAAAAAAABhsFcmeqpqCTbxwoba0aJoQQAAAAAAAAAH7Pks3WwDJB4STiCP7SQMmAAAAAAAAAAH7Pks3WwDJB4STiCP7SQMmAAAAAAAAAAHfTwZCtYUPjuUjzekBF9iZwAAAAAAAAAF7Pks3WwDJB4STiCP7SQMmAAAAAAAAAAHKPpxotOCYeqDDhsW8FuHhgAAAAAAAAA-0_jShB-DuV77HIBPKqBRjgAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBAZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMoavQ7EacG6CR4rzcFaNFEsTQAAAAAAATs0", "types": "CAMvBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vTYOA5_SnOZSwiGON798-w"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyFRZ3CKaS4aU08RhYA19y5ITQAAAAABtxSUZ3CKaS4aU08RhYA19y5ITQAAAAABtwNjZ3CKaS4aU08RhYA19y5ITQAAAAABtFuj", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xZMsyLjDeZJ1X8UROk68yw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAADvUjP9b9Gi1n1teIJJDyIQ2gAAAAAAAAAde89rAelRyhs80QcBMQo8BgAAAAAAAAAC06iTdeRQmLekYAN7ySRKRgAAAAAAAAFM_VfdOguzzRs6cxcAnL726gAAAAAAAAAd296jA3bf79VTim-sy-Bl1AAAAAAAAAAH8RnluWCl_polt-8MlyICAwAAAAAAAAFDAOcEaCF8bglqC14-r8ZiKAAAAAAAAABA9SJbWDmIwLKygKyg6FjqpAAAAAAAAABeHroxZ2TATDst6Nm-rIS1XwAAAAAAAAAGMsLhtgluwqlsWifr9EhIqwAAAAAAAABvP4g4_9BzHxlC4xn_CE268wAAAAAAAAAeekRab6x2nuu_bqD7IimG9QAAAAAAAACm8SiFRztz7qWKhaJN37TZ-wAAAAAAAAAjqJ2vE1gl2eFBSUsZq5gB9gAAAAAAAAAKRansKhQujRxHOcRvt3EF6QAAAAAAAAAzMloxjkGrc98a8yNAf_i6HAAAAAAAAAA3vVBGzy8SXBVkwYb6TicxXQAAAAAAAAALQpbAWxlPpoqksDcSufT1vwAAAAAAAABfTMX8OZDxXZh0ScV8nix7FAAAAAAAAAAlHrTR2HOpYyb-pQjcAKVn-wAAAAAAAAAb7lQYb7WO824SCyaFg6KrvgAAAAAAAAAThQvt9SGcnRC8tVEB_Tur9QAAAAAAAAAOk8128AKbUGB0smWYBgRB6AAAAAAAAAABdXCCMJJCG6SB0NI-JLXs-wAAAAAAAABx", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4sjDMbuo1EQDli2AMeF1pA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACXVSALBRPvgHpUWKmpUo1khAAAAAAAAAAA", "types": "CAO9BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wO6E0aI_adazJwV1nEPvow"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-Ke", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EO1X9bMgoknGN8tYEcbt6w"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAACuN-FXT4fd_WKeR1cE-hlLelCQAAAAAACuQT3XT4fd_WKeR1cE-hlLelCQAAAAAACuJBkXT4fd_WKeR1cE-hlLelCQAAAAAACgZY5", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "H_2Gi4xXPiktjMQVPnPo6A"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAvspzm-_Ca31VwijYVQAZSLAAAAAAAAAB7TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABUfZfGpgZFJokP-jaeydrs0QAAAAAAAAAJjg3LdO4DNz9FsefjUG1F1gAAAAAAAACYxNgBHgNqPNx9KViH_BIZBQAAAAAAAAAASNDzWiYDmLZi_Z1ZVETLoAAAAAAAxSmCSNDzWiYDmLZi_Z1ZVETLoAAAAAAAyKc4SNDzWiYDmLZi_Z1ZVETLoAAAAAAAccuh", "types": "CANvBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PicgGG7wbtdmW_0WJKDC-Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7zyXT4fd_WKeR1cE-hlLelCQAAAAAAC-8B3XT4fd_WKeR1cE-hlLelCQAAAAAAC-yjEXT4fd_WKeR1cE-hlLelCQAAAAAAC-1A6XT4fd_WKeR1cE-hlLelCQAAAAAAChaNvXT4fd_WKeR1cE-hlLelCQAAAAAACgUQT", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "k6Ao0lNSN-mIGSeq85ATfw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAABbw1YwyK3qUUqndS_KOv4yZgAAAAAAAAAM9hAOHgmwWWwZTwO4K132QgAAAAAAAAAevtOmTuUGvKYiQRK_O9kHuwAAAAAAAANh_qijKAoIrj192_UIiHcBhwAAAAAAAAA-jUQ333J6q5QnvdvZozB0kQAAAAAAAAB2sHLSFSTa5gNf7tFhVmYJKgAAAAAAAAASL7GARYWDuHz8bjbnlOYgQQAAAAAAAACt", "types": "CAMSBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "trg5FG0_Dj2SBeJw5MOwoA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbeuIw_I7HzcVMEcOaEL-XEgAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAADvI10upgJihUkX5rBuiOc-YwAAAAAAAAAJ3R8pvj9gYzDPyi0jNqDOsAAAAAAAAAAFbgWToCzheWak78gv4TQ_CgAAAAAAAAA9S06qc2WWdjyLzzAdWuSUuwAAAAAAAAGz", "types": "CAM1BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xr5GRqzEWQ1_fZjqV-PZpg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAAD1giwOUz_dwg5QpZ6rn_mtEAAAAAAAAAAaR683kTk6tW8OrTWlS02nkwAAAAAAAAAGZDeC5caqI_6hNXlbdI9VxAAAAAAAAAARDbycTBfukhUabAsoiB7QMQAAAAAAAAHYAJ20S4nqf6FfjqdXzTnTNQAAAAAAAAD_-byYMBbn5TlOaT7FgjNIZAAAAAAAAACc", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NxGiaShnOfbsdncn_w2-8w"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOpxFz17lb-voh9uZicvdXWAAAAAAAAAAd", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WJtwE6C4KDOaEo17zelbiQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABqVb0C_sYOU5d3eeu0yalLowAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAproTQ2x4u1u0ROVEifn0kaQAAAAAAAAAtOcVENYdBUHkmXadCZbxMcQAAAAAAAABX7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAMEozR7rHeowembmV8tqrkzHQAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAABBnftB2PmJZcz7DZJedLNipgAAAAAAAABQNDiNPs2SIuj4NddpL8knJAAAAAAAAAAC_OOeQuiXtvgynmE43QMbEAAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAHIEeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAR5X", "types": "CAMwBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "z8goRTVMaTzMkIP86WRVRA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfxrm08oJc5xqpM1VweLZNZwAAAAAAAAEIFyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACAE1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAACS4b6Y6AxjtjqP_pey1p_yKgAAAAAAAAA46himjS-PpAivu9i1Bhv6aAAAAAAAAACVH0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsla3GUxZ_d6TdcMBptiLBKQAAAAAAAAAkuwSrGXrIlilHG9LeAbu8sgAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFO32XyvU5fpn5Sx9ZKKSnYQAAAAAAAAAULEf7xTPa92fa-lrUaMUkPQAAAAAAAAA3-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAFRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFna_q_qI2NNskyXQ7-L9cKwAAAAAAAAAQVQoK7BVzszXqPUi0cc2ufgAAAAAAAABCRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFemtx417xjizVLzzaBLAalQAAAAAAAAAoKU_l7oGL7N35bnBXHoHVpAAAAAAAAAB3R43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF4gllBwxobraKpNHjylla1wAAAAAAAAAYbtJR8uWrInrzn_sGkpIt3QAAAAAAAABNRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF1qPLJVVQ8TzPBEa8EsrzjgAAAAAAAAAU7dZbzLINeewhS7u7jNnbxwAAAAAAAABBR43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3RsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF8eNwq_KWMgzEjBR2SK0NcgAAAAAAAAAQ3xSivts4s-tBo1MMFQEENgAAAAAAAAAvfEf2U4TLcZ6jkTz3kXzr0AAAAAAAAAAkjNbJJD0szUDlnbhrWsIGkAAAAAAAAABE4ZG6-YGelmJ-HvYGGP11fAAAAAAAAABaPJlREaStQ9MDsMhq8CWS4AAAAAAAAAAY9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEQ1dNWbPl2h7mKqBY2NB1QAAAAAAAAAUuj5fRTSdGJxlX0gfzctOogAAAAAAAAA_3G7WvpXqPGO04rbAV9CJtQAAAAAAAAAlHr7DaUVBf6Mvou5VCDAFbQAAAAAAAAApRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFIvg_JPEBUKm57VWt-FY04AAAAAAAAAAMM_MfJrZLrX3P0R0dWrP49AAAAAAAAAALRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7TeTTV59eKgI4B5n7wuKkgAAAAAAAAAU-TcRbQGxOxYw9x9ta5Q4zwAAAAAAAAAheufT8zCegZUSBK09BAzk9wAAAAAAAAAOlrNuGOqZ1W2gPcoSPK5FRwAAAAAAAACdgTeEDLJY99-H0mXPpOCwaAAAAAAAAAAQm1Aohg0JUy6QKOpEmgCfqAAAAAAAAAAdp0NllssmkIFYCtR-zwGrPgAAAAAAAAAGBiF2R8dzjx0oL7OVY_TATwAAAAAAAAAHCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAEkV6TzGOHAAtubwqgXU0dkAAAAAAAAAAzqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYwzvWQyXT6P841Whzz8TSaAAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFxGtP-sXIou6VkRlAu3EUfAAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDhfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAE-PQUN_pyhlD9sImALYeWawAAAAAAAAAIu8snKZkB2oBs9KSPImw4twAAAAAAAAABXz55hy-jKO48vnZBfsLxxgAAAAAAAAAE_v4rMkGY9KRFPld8us290AAAAAAAAAAEqGs-5c7rr1dopGxSByMUNAAAAAAAAAAr", "types": "CAOlBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QkZ15erAXl4_xxP-OSkyww"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAi46VYxe-SHgukLEpCkawSk1QWAAAAAAAi5BcYxe-SHgukLEpCkawSk1QWAAAAAAAi1O1Yxe-SHgukLEpCkawSk1QWAAAAAAAiyatYxe-SHgukLEpCkawSk1QWAAAAAAAapsiYxe-SHgukLEpCkawSk1QWAAAAAAAi4LQYxe-SHgukLEpCkawSk1QWAAAAAAAapynYxe-SHgukLEpCkawSk1QWAAAAAAAbIkVYxe-SHgukLEpCkawSk1QWAAAAAAAbORuYxe-SHgukLEpCkawSk1QWAAAAAAAa4MoYxe-SHgukLEpCkawSk1QWAAAAAAAbg23Yxe-SHgukLEpCkawSk1QWAAAAAAAFBLGYxe-SHgukLEpCkawSk1QWAAAAAAAEs6VYxe-SHgukLEpCkawSk1QWAAAAAAAErgkYxe-SHgukLEpCkawSk1QWAAAAAAAErA_", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fdWGYIeNIIrvl5yNTWQFCA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ9Q", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "n7QBBvONqlianWpauyZWrA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR47", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8MvjeD28P3dNyT_MVzGvfQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAABDbpFrLpp87SutwNDP7V3ibQAAAAAAAAAjZPIrAiTSLAkXO9AZm4sjdQAAAAAAAACNS06qc2WWdjyLzzAdWuSUuwAAAAAAAADmTl_Iodjc0LWexYa5MoBoHAAAAAAAAAAHntgZha7-wW1dtg73nm5MkwAAAAAAAAAmsCOApbaKyYNIvwXSt1bEIAAAAAAAAAAy3rmyHJndkO8hLNYIrTHVNgAAAAAAAAAPAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAM5BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mpjzTZhXzUC8aYg4OfeyGg"}} -{"Stacktrace": {"frame": {"ids": "tQgAmBJBgPLrkikSPRsmtgAAAAAAAK-dtQgAmBJBgPLrkikSPRsmtgAAAAAAAOXp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ8", "types": "AgMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nbSM4WjFbrCVZaZdfPqVTQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAEwXaFizeT40CKpdI_o5Zrw0QAAAAAAAAALP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAepBWDMEkxECoqFEbuF_aawAAAAAAAAAAMQNJBtmDNiP_chGYXJszyagAAAAAAAAA3vXkwfvj7jlhBJyKg0XGvywAAAAAAAAB2fNviosb4qVFLp7sfJPNLzAAAAAAAAADl6OqUFDo-whukimJI-B2pMgAAAAAAAABsA6Xvpm2Mx6c3SME2gNZFyQAAAAAAAAAfJTmH79W37luflHUiTzb1AQAAAAAAAAAFecwioQzMHOqcvkujHEcA0QAAAAAAAAA1", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sMrntcfAzsvFpOczgTISXQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZvj", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZKZ1FR707KOqJJQD503DPg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHX4wXT4fd_WKeR1cE-hlLelCQAAAAAAChWnJXT4fd_WKeR1cE-hlLelCQAAAAAACgUTFXT4fd_WKeR1cE-hlLelCQAAAAAAChz7g", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "W1X66sQmZo7R_inBU4PeQA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAC523EcEvvhuguaGYCmGWrnWRz1QAAAAACL5AKcEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLmm9cEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLmm9cEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLnOEcEvvhuguaGYCmGWrnWRz1QAAAAACHkgKcEvvhuguaGYCmGWrnWRz1QAAAAACFpHkcEvvhuguaGYCmGWrnWRz1QAAAAACEOE7cEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEV69", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "09uypqtTxXlIuIrZVnABBQ"}} -{"Stacktrace": {"frame": {"ids": "-608Y9iRXt2aMla4TEV9NgAAAAAAAAAA", "types": "AQU"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dkCDIssAAuuJOY5L9uP-Lw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHwQXT4fd_WKeR1cE-hlLelCQAAAAAAChHqEXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChGI0XT4fd_WKeR1cE-hlLelCQAAAAAACg6T7XT4fd_WKeR1cE-hlLelCQAAAAAACh1L_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuZy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMs_k6tVKI4mSYDEJ-ABAIpYXcgAAAAAApym-6tVKI4mSYDEJ-ABAIpYXcgAAAAAApymC6tVKI4mSYDEJ-ABAIpYXcgAAAAAApyVc6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD7KI", "types": "BwMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hyhq7VnU7oy4urORTsa4ww"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADK76qZ3CKaS4aU08RhYA19y5ITQAAAAADK5gsZ3CKaS4aU08RhYA19y5ITQAAAAADA5AXZ3CKaS4aU08RhYA19y5ITQAAAAADA5nYZ3CKaS4aU08RhYA19y5ITQAAAAACyxm9Z3CKaS4aU08RhYA19y5ITQAAAAACDY9FZ3CKaS4aU08RhYA19y5ITQAAAAACy7e4Z3CKaS4aU08RhYA19y5ITQAAAAACzAOuZ3CKaS4aU08RhYA19y5ITQAAAAABxJOcZ3CKaS4aU08RhYA19y5ITQAAAAABwZlrZ3CKaS4aU08RhYA19y5ITQAAAAABwcg-Z3CKaS4aU08RhYA19y5ITQAAAAABwc6fZ3CKaS4aU08RhYA19y5ITQAAAAABv2b3Z3CKaS4aU08RhYA19y5ITQAAAAABv3V56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "GAMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3Y6gZg8K9awv8z0hisYsKw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAADHgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACXVSALBRPvgHpUWKmpUo1khAAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "V2lnTrpVtTUaSRDF47D7-Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-Ja", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_Dsg9VMTQ4os1LWYlVehJg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACfZYJrmLEjznzm7GSiXKeulgAAAAAAAAAMjH-Kh7eMoVAEa99gkdQ-YQAAAAAAAAAWvtOmTuUGvKYiQRK_O9kHuwAAAAAAAANh_qijKAoIrj192_UIiHcBhwAAAAAAAABj_coc0yQmibHSYbczgpafrwAAAAAAAAAFhHI8fycCSE9gTrpxwlqNFAAAAAAAAABOQQh0H_R0519E6LNe78VmDwAAAAAAAAAlfTAss9wSqMPQUI2HD05f3wAAAAAAAAAzHyraq5uNnLhexcfH6jeoJQAAAAAAAAAXAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TakHMl9bLHFsMsirzPy3zw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAAEJm5p8puApNHgdtwb3aFhxPAAAAAAAAAApxDECjxfRDF0SAcicHv7yIgAAAAAAAAABSsODsFdp0k4d_SSQAFmIUQAAAAAAAAApzzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIcPy2QFuGdjzuVBNv2-JtzQAAAAAAAAA5FQVEqfdF3Gc5vOLVf8c4EAAAAAAAAAEpcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIiaYGOKrCYzeQFPvSFK3LGwAAAAAAAAAlcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAI3FmF0iegYInyRffZHSr8AwAAAAAAAAAv1Az5XiB-HqkM2KIxBs7pHgAAAAAAAAAzXmgLknRmXWrjNm14n69KUAAAAAAAAAAGcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAInQRJ3xr79n3cY6qS99IffwAAAAAAAAAE7EnnOhShMGZ9Te5BWwjtoAAAAAAAAAATopFI2iPPQrSoKgHSzuYsiwAAAAAAAAAIytmnDvqR2kv8bcodWBOqIQAAAAAAAABnKKci4M_8u3lv7Ydwxf31oQAAAAAAAACFwoXLgCudpu5Igw4bPyCZzAAAAAAAAABz", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "raJRlHaX6wCTMJ3KEat5OQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAA5JaQSNDzWiYDmLZi_Z1ZVETLoAAAAAAA5JFkSNDzWiYDmLZi_Z1ZVETLoAAAAAAA5I9nSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt9Cg", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wg4weiqhx4cQSZpZOkpJ7g"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrkykgtQ4kMk_MBWrPUAFqVnYywAAAAABq7bsgtQ4kMk_MBWrPUAFqVnYywAAAAABq7G9gtQ4kMk_MBWrPUAFqVnYywAAAAABq6wEgtQ4kMk_MBWrPUAFqVnYywAAAAABq5Q5gtQ4kMk_MBWrPUAFqVnYywAAAAABq5AogtQ4kMk_MBWrPUAFqVnYywAAAAABqGpIgtQ4kMk_MBWrPUAFqVnYywAAAAABquYVgtQ4kMk_MBWrPUAFqVnYywAAAAABro5C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CQMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "X_YaGHyTQP12JNwJEIiAfQ"}} -{"Stacktrace": {"frame": {"ids": "klPbOjidNHRsFecU34u2tQAAAAAAAAmpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGklPbOjidNHRsFecU34u2tQAAAAAAAAlaJD-mlhc2khMaMvypB7uCowAAAAAACvxIJD-mlhc2khMaMvypB7uCowAAAAAACrBZJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIXV9JD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAADPP3JD-mlhc2khMaMvypB7uCowAAAAAADOruJD-mlhc2khMaMvypB7uCowAAAAAACuGjJD-mlhc2khMaMvypB7uCowAAAAAADNFHJD-mlhc2khMaMvypB7uCowAAAAAAGyG4JD-mlhc2khMaMvypB7uCowAAAAAADMfaJD-mlhc2khMaMvypB7uCowAAAAAADLg5JD-mlhc2khMaMvypB7uCowAAAAAAIhTEJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAADPP3JD-mlhc2khMaMvypB7uCowAAAAAADOruJD-mlhc2khMaMvypB7uCowAAAAAACuGjJD-mlhc2khMaMvypB7uCowAAAAAADNFHJD-mlhc2khMaMvypB7uCowAAAAAAGyG4JD-mlhc2khMaMvypB7uCowAAAAAADMfaJD-mlhc2khMaMvypB7uCowAAAAAADLg5JD-mlhc2khMaMvypB7uCowAAAAAAIhTEJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNLbtJPgD2DsxuaRUZZI3jKQAAAAAAAAG19OSIwt7_UxT7zZoUvqu4WwAAAAAAAAAvGECkj5EzwizbnHTSy11lwAAAAAAAAACsIWCarP2Cg-zGilSmP2FwvAAAAAAAAAAxPF46WYS52oqKW28TVdZwhwAAAAAAAABl4SjPzL5sRJ4NoaPppbKRXQAAAAAAAAAyzV-zz_SMeRtFDojkROWSSwAAAAAAAACIZtRK4uMy_Wfw-N_iQmSerQAAAAAAAAA1qtNW2Hg_2f_0M1iSBcGbyAAAAAAAAAAVoGmEXpJvjzbRv2r-bFFlfwAAAAAAAAA7EI5wLwdv0nxJGTj51HGsnwAAAAAAAABpqs9QVbSai1fV6zxJyggieQAAAAAAAABfBUIjEExV8zypjFmSEDklUAAAAAAAAAA8WVw4-tNMtcGbe_AUExiiqwAAAAAAAAFTgO6kDS9N3EuxPdxaJ2XycwAAAAAAAAICRAiSaKhtr8sKQyEQrLjoKAAAAAAAAAJCfQmBDS59foxFPsSMJZb9xQAAAAAAAAE_FZMomjWJJ0nF52fd5MCJjwAAAAAAAAAbcNfqzNIuM2moCdDAPZaMPwAAAAAAAAGhwnDqzjdjMz5CchEHZ6EsYQAAAAAAAACtuos5blq03yBGQs7NU0gUPAAAAAAAAAAcWJOADfwpHxtseudP4RVyOQAAAAAAAAIBCBHuHFEZWQ-fJ4IkYrsh7gAAAAAAAAB2mBpiFuvmv7Bhv5yWRlHpOwAAAAAAAACGxOuzl7cRmBw0-tjVF12FGAAAAAAAAAH6E__m11jwVVwOsNYG95RSxgAAAAAAAAIJHDtxjNJh5HryAaa7uCACXgAAAAAAAAILZUr3dhHUtWV20cKiiRwRTAAAAAAAAACI46OBP4AiIuvPByLPCVNeuQAAAAAAAAFIJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAADPP3JD-mlhc2khMaMvypB7uCowAAAAAADOruJD-mlhc2khMaMvypB7uCowAAAAAACuGjJD-mlhc2khMaMvypB7uCowAAAAAADNFHJD-mlhc2khMaMvypB7uCowAAAAAAGyG4JD-mlhc2khMaMvypB7uCowAAAAAADMfaJD-mlhc2khMaMvypB7uCowAAAAAADLg5JD-mlhc2khMaMvypB7uCowAAAAAAIhTEJD-mlhc2khMaMvypB7uCowAAAAAAIVoiULOVjhd5u9ORCGzZdeAHEQAAAAAAAAFKZUr3dhHUtWV20cKiiRwRTAAAAAAAAACI46OBP4AiIuvPByLPCVNeuQAAAAAAAAFIm_m1DDbzlNuMTD9gy1hMUAAAAAAAAAFJZUr3dhHUtWV20cKiiRwRTAAAAAAAAACIgnQnX6SwfbYb7NNG7A5MbgAAAAAAAAEXJD-mlhc2khMaMvypB7uCowAAAAAAIR1YJD-mlhc2khMaMvypB7uCowAAAAAAGDwUJD-mlhc2khMaMvypB7uCowAAAAAAGDrqJD-mlhc2khMaMvypB7uCowAAAAAAGWaBUJmIMEc6K8gJ39NHYaD0WwAAAAAACX4W", "types": "BgMKBg0DCgYMAycGDAMGBgUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UwLGDv_kxs9iZbW8xcSUiw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAACEiSUtuDFidZ_ArB9M-KYzuwAAAAAAAAGJLVOp8OK1gZx_CT3WZZ35FgAAAAAAAAA6Y18dhKjZ0RV7HSazs8ApwwAAAAAAAAAD1nPy8qyQLwokg3Bx-XOuogAAAAAAAAAGtdD8ypwjz292XloefbIz1AAAAAAAAAAXLlS_2xs10ssihc5Uh6NqzgAAAAAAAAAflkKMSIn7LhSdQ5lTlqE-GgAAAAAAAAAA", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3z_uYJyhnmGT6PJSN17I-A"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAADZgiwOUz_dwg5QpZ6rn_mtEAAAAAAAAAAaRZMfsbKLC34Px2zwyEaSpAAAAAAAAAAGK61z3xaGK-rHqmHBTOYNcwAAAAAAAAARSjz2MvPusgDd7v_6YUXcPAAAAAAAAAC1J4eQqgwFH8hGziiVTbtiYwAAAAAAAACf_sBOjhkm41Z-F6jj1JRPwAAAAAAAAAAMW2oz1IIhVizUUMC0MCRp0AAAAAAAAAAX5eYkmihge0H1qcdxo1aVVgAAAAAAAAAEfkbxUTZgljnk71ZMnqJnyAAAAAAAAABvj9q5artJZBLmNbsusN-vBAAAAAAAAAAE2vzhsTPfkVRKbOkBMFFkggAAAAAAAAAH7lvJvioq7YVUkmI7Eon3jwAAAAAAAAAA", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zksj6C38tiqx_uPlkG3-oQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAAAj2wgGDGWUYKAius-1IxNgMQAAAAAAAAALs5CzqyR6_GmBEGxwpC8zNAAAAAAAAABK4EfOVjZ8UDEWtY1KnqslYAAAAAAAAAAAAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UNA5mzQxt3Xt7EAz1m9YnA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAc8s5hM6TvWnoP9XP3e8VVVwAAAAAAAAAHwh6xTQPkmoOUUrUOOnnNsQAAAAAAAAAg", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BlQOTBVYBirJP-nXExTkPA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgvL-XT4fd_WKeR1cE-hlLelCQAAAAAACgvVdXT4fd_WKeR1cE-hlLelCQAAAAAACgytEXT4fd_WKeR1cE-hlLelCQAAAAAACg0TV", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tvUUMUcodTkJ0m6RggT6bA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADUVK3XT4fd_WKeR1cE-hlLelCQAAAAAACnxWXXT4fd_WKeR1cE-hlLelCQAAAAAACnxk6XT4fd_WKeR1cE-hlLelCQAAAAAACnx0-XT4fd_WKeR1cE-hlLelCQAAAAAACuTKhXT4fd_WKeR1cE-hlLelCQAAAAAACuDBkXT4fd_WKeR1cE-hlLelCQAAAAAACuDGbXT4fd_WKeR1cE-hlLelCQAAAAAACso8tXT4fd_WKeR1cE-hlLelCQAAAAAACsoxnXT4fd_WKeR1cE-hlLelCQAAAAAACspLF", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sF6SO51w2foii8iV20ReXQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAACwH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACl", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UNENHeLd1blNIM02vY64Gg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDAIcEvvhuguaGYCmGWrnWRz1QAAAAACuEFvcEvvhuguaGYCmGWrnWRz1QAAAAACuGfdcEvvhuguaGYCmGWrnWRz1QAAAAACuFXkcEvvhuguaGYCmGWrnWRz1QAAAAACPJ_pcEvvhuguaGYCmGWrnWRz1QAAAAACPIUqcEvvhuguaGYCmGWrnWRz1QAAAAACO-hHcEvvhuguaGYCmGWrnWRz1QAAAAACOh_EcEvvhuguaGYCmGWrnWRz1QAAAAACG1HucEvvhuguaGYCmGWrnWRz1QAAAAACG1dPcEvvhuguaGYCmGWrnWRz1QAAAAACGLyScEvvhuguaGYCmGWrnWRz1QAAAAACGMup6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcCd6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcBE6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALko96tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjYS6tVKI4mSYDEJ-ABAIpYXcgAAAAAALz_p", "types": "FQMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OMaWFUMaKo-t8HBZbSb7rg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAe", "types": "CAMvBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZKNzQAHHe_cNd3rO-y4iLg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWBTXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GPbfHhT749ZR1t85wslN0A"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAATo2Vqo1n4TLgDJq9tPgwAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARxBGCEPBdnG6Mds1nJf4tcQAAAAAAAAAGzXf1O_8jknZjcKGu5cQjJQAAAAAAAAAgPHkw6KCW6WHcDhD0gWZvxQAAAAAAAAAXqjkbzJCs46utKAIQU_ZjYgAAAAAAAADmaG38C7AQR-wEDFFefkRnfgAAAAAAAAAsdawGhH-93Zf3Xci2M9UlFQAAAAAAAAAMPhHweSUk-rcHLCvi4mySwgAAAAAAAAEsryiaiFPVyjm4XARK10gZ3QAAAAAAAAELu4IYC5TN1ydgkWzSPfggOAAAAAAAAABSTOT6Kzt9cNfqtt7rfwzzSwAAAAAAAAAElu3U19P1ddOrJLDu-spLOgAAAAAAAAAHSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAiHAV7Zh5H5JQPHONsGvZ0PAAAAAAAAABXWb65uaTCBYe2MCZtuMHkqAAAAAAAAAAWdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFyOUU-MIrBJXHRczrclIQpAAAAAAAAAAIZLVm2Yq3JzpECVJuRqNdawAAAAAAAAAQrs-7smSxpcCpQ4EcnQyDfwAAAAAAAAAdgkppypvMO9S8VR3D3H8lzgAAAAAAAABEdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFwn4niB8FwIlhJ5LBYr9JzQAAAAAAAAAIZ8eDanRMy6l7sesw4dYkqQAAAAAAAACzkTJVCBjDfmFAPRrGLStltQAAAAAAAACPPyY6qsH4ByVjV1tK07pF9AAAAAAAAAAIm2-tH33cq1FP2Q7Is62J0gAAAAAAAAAC-uK72e9VYGmyoGlh8BBvZwAAAAAAAAAIQ1b7jdbtxavHFLXq_nCrrgAAAAAAAACKpxHkQ9M1dNDXsuZ3PuZiaQAAAAAAAACHHHYed7pYCVK68jLMEjdhPAAAAAAAAAAYyXWFMIbkwU7jqv0ggmjvVAAAAAAAAABHVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAApOzkHkS17HRu8c3H4oJbrdwAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFmKVsnuGyVSIshrQFdthLlAAAAAAAAAAU0cZiHBBWN2vYtEyCZ5X5wgAAAAAAAAA3pzTcRcencDxd0mEO6HA0bAAAAAAAAAAFdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFMwojP6II8_EGiMNSmdsFxAAAAAAAAAAQLrT96WuiUXgKg4BgtAP98wAAAAAAAAA_dswq7UFB-c5kE0TfryCD4gAAAAAAAAAF3KtHAXnUn2qKToxsxyFz6wAAAAAAAAActLWCyKrEBYGzX2N5W13-8QAAAAAAAACnHs84X9WR2gx5bBItVVyJWAAAAAAAAAB4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFO4XFBmuHlVXJh4TIk5LCDAAAAAAAAAAMn-IlVo5-jcMpxFIQmT8ZXQAAAAAAAAADXNiEFVfexcwhuzJE2wFqSQAAAAAAAACouB_3Gzwjvj1RjZpSgTL9mwAAAAAAAABHcemtT_LtuQxWV7j18_T0KgAAAAAAAABEb2XRkTRSoWuyX3U4lJkMnAAAAAAAAAAIYldLdAhiU1Ikhg1VTxvqJwAAAAAAAAAVdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFh36HgL3bbvDsQtV-NCGi2AAAAAAAAAAYa1rORv6uw2uAWC1se05SoQAAAAAAAAA7ReecyGgWWJgzc543tXNeIAAAAAAAAAAlskGfd5BDAMA1fbyY3ykq7wAAAAAAAAApdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFv6Sj_mGjd4gUb1oQRdr9zQAAAAAAAAAMBFzsvc2FJJqJ7MOfSIYcgwAAAAAAAAALdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbw7Et1OruEgeiOGCngYuPwAAAAAAAAAYSVYBVG1fCfTODpNzLfPxlQAAAAAAAAAi0YsnzQnMKXvFIy6EpgfjkAAAAAAAAACzfCWPdfu_RIOGbkcM4xycpQAAAAAAAAAQ7OmS9SwYpCYbOPw4YxA-2QAAAAAAAAAcE2NlszEGRXNxKeW09blqBAAAAAAAAAANwzZaceuyvwDXeTAM8IhEDwAAAAAAAAA0Yu_6L4HRShupVCJ8N-cmXQAAAAAAAAAH9PmXvHucczCVlI0S70oJBQAAAAAAAAA3tiJNC5TRsJ2Po6yB9hj7ugAAAAAAAABGyanW-NWn1yU-ZmISz8_K-wAAAAAAAAAms2LTirMvOXiDsBun6I-UyQAAAAAAAACfb_ElB1I-v_CyZZ9WkymqkQAAAAAAAAB0isA5sAubGPm1mkHKsussQgAAAAAAAAAQSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFC2dSzxTtRtkEi44A6zm19wAAAAAAAAAg3ir-1yKStl3nukZF4xyXAQAAAAAAAABAC-NMw9vE7-rFK10EWQYO_wAAAAAAAAAho8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAFNqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFia3K2jrNmbrn13w8cuQ30QAAAAAAAAAcgtX88AmaTOI_01lUU2TraAAAAAAAAAAo1J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJ106B1iulZ9qNy42ENkYaCwAAAAAAAAAkfiNry6aywxk33PR7ZSinSAAAAAAAAAAZyanW-NWn1yU-ZmISz8_K-wAAAAAAAAAmbZRwWM7SmFPsrzq-cg210QAAAAAAAAASyanW-NWn1yU-ZmISz8_K-wAAAAAAAABDbsQjgCW9UjBRbj0X9EX2MgAAAAAAAAAHEmp83XV0ORPGC9VjSudbcAAAAAAAAAAKyse1ZG7dtWZV3NYY2Q_B9AAAAAAAAABMdn1QdHTtENizBvfQq0rJpgAAAAAAAAAEiTk3U2-62NFOFRUZ1dKBrwAAAAAAAABtdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF-ILcQEUVPt-h8tsq1UB2sAAAAAAAAAAYqv94DrtQsXldqyi1u95XpQAAAAAAAABz25iHP2_EzWmqN7aoEEouTQAAAAAAAAAfD31e08MRiulVFEesC2oTTQAAAAAAAABeS6pxO_hq-Fbi17BT1HtIiAAAAAAAAAASENOom58sisHBM_5bqD06xgAAAAAAAAAvpR4MC0BxsLTXAJeNLn7p9QAAAAAAAAByKQLbwVQkKDdGennGDte8qAAAAAAAAACzrRpenI7GD9Sw_c3K81rvVQAAAAAAAAEg4oDbmTWkgq5vmj9DqDhsSgAAAAAAAACmzTmlqGcldzHyZLUOVZks5AAAAAAAAAAK1S9eFAopKcZX-VnW9ChdWAAAAAAAAAADw_8HYglWw-0jqUUlUeMgagAAAAAAAAAC5XlE5KvRrfbNOpt-JVgrOAAAAAAAAAAH_zxyi-wgtH_Wz8ut-WKY9wAAAAAAAAA_WZoc9LDALgnb0WdOEBNL7gAAAAAAAAACs7QK80FVtYwQj3h1fpBcbwAAAAAAAAAFsr7KmiDQn3AwPKwUE1w3aQAAAAAAAAAFISo198vJQrYNdynfqzotagAAAAAAAAACSU7fNzMC3NazhQDT5xGXYgAAAAAAAABI", "types": "CAP_BSIF"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ndFy9pak9l2ciS-LEs5_3Q"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAAAC3dUfWzJ67_jxjMUga0sxYwAAAAAAAAADNoQs3VwaHMDOBwQpEEXNvQAAAAAAAAAKryXkoj4-FLTKQHGPNi1F9QAAAAAAAABoJ_7XHXn8FwXx9wY7ybCb_QAAAAAAAABAexJScA8VoHDKCf5qkT397AAAAAAAAAABmegm64Ad8MRsFtfMDJWCkwAAAAAAAAAHnbxghp8tZ6br5orRTpLdNAAAAAAAAAAFyVj-DhlWsbRwk1ix0xTSnAAAAAAAAAABWsCQmTSDw0k0qcC-8oiYqgAAAAAAAAAbvoqjqV6_-EldPWpE4Bg5QQAAAAAAAAAl", "types": "CAM7BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "G9UpR2U-Z66umiXz9ZVDmA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAeZ7IYsnZ_Lwaqr0cHEPo0D185QAAAAAAgvMyYsnZ_Lwaqr0cHEPo0D185QAAAAAAee0Q", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XFK_K9iyGPWt-RXiomayjg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHphgz5k14PsCcDvFyUC1kmlV3QAAAAABG-csz5k14PsCcDvFyUC1kmlV3QAAAAABHCmp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf", "types": "CQMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GdQO73uJU5ltMBM9sQEM4g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAABtlFmnG5E5GwmKFptmUf-qtgAAAAAAAAACV_KspK9nh8LJS_EE9pIxxwAAAAAAAAAg2B7DXV7RQApU6uBxIPxnnAAAAAAAAAAOAmq1Q_OWnEFyfJsbIWLjHgAAAAAAAAAF9W0w4Zf7EaLrEqfpZeskwAAAAAAAAAAGxF4yGyA2KnTCi8zdSVp9ZAAAAAAAAAAyUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF8T1U1Mk0_z7jRWhB49ZqDAAAAAAAAAAF5l-2W9KB4tO_4MUXJhjp9AAAAAAAAAAQ_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANovizBkEZlKLe_M07oeCLhAAAAAAAAAAGw3nicYorzLhxwk36I5aTDAAAAAAAAAAiiWRePpDnazIDVRSfj-NZEAAAAAAAAAAIJeP44NNCWCoJ01j9P5RllgAAAAAAAACg4Dt4PWF698AixBVjMbbA6QAAAAAAAAAX6lx-lYWKJmBO9umjh2EvcwAAAAAAAAAYbhHNyFTnsHyVRuVMOsfalAAAAAAAAAAiaYj1lJVcj2evf25XkNflVQAAAAAAAABShPwkdaFQjwJn-BRCl2XakwAAAAAAAAAO7CGJ9wKZV859MY5Og2curgAAAAAAAABGx5juxqyDQI_RM44G4oxplwAAAAAAAAA2bhHNyFTnsHyVRuVMOsfalAAAAAAAAAAiaYj1lJVcj2evf25XkNflVQAAAAAAAABShPwkdaFQjwJn-BRCl2XakwAAAAAAAAAO7CGJ9wKZV859MY5Og2curgAAAAAAAABGx5juxqyDQI_RM44G4oxplwAAAAAAAAAHYsan-1fe0rs2JtegG8IkKQAAAAAAAAAt7wb_zxGk1rY1-IahtRCQAQAAAAAAAAAUGzGkXez8RTlqjPJQDxzvigAAAAAAAAAGe2K78dgmsrxIH1rDnjF-GwAAAAAAAAAH_Ubg0iuUR3XcVAuRI3qBugAAAAAAAAA8CgJZVmHIAgB37lk491gHHwAAAAAAAAAA", "types": "CANSBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EG9jBmB3lh64ME0jyCkfBQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF_IhPXrChwahxbJ63NZZANQAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4rDcHLjUrpvKg-XXDfFGKmAAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADv9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABDHfFlM3axnhO28EteQn-2WAAAAAAAAABJ5utt2dQ8HKrTepHdNpprxQAAAAAAAADL6XNnO9SeJ40ZM7baZ84oEgAAAAAAAABVLll_E1k3FfR43EQBXwU1dgAAAAAAAAAIrywk-6b8WKiuckZ62dxSSwAAAAAAAAAHiX3hg20o3ZB-dQ1wA5bFxgAAAAAAAAAEomA88yQfT91566xoyEY7sAAAAAAAAAAcrrWuYAakx0mSDLYXP-NBMgAAAAAAAAABK-xWzbOpXq--Qycbjj-mDwAAAAAAAAA3L1OydAndq8IT7nNSF3yNbAAAAAAAAAAkewU9RfzsPed7JATT94aw-wAAAAAAAAApfZ3COijH60wdDIIVUpSInQAAAAAAAAAIx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAACb2vX1VQ8rxHA7GBHUrWVCPQAAAAAAAAE6Bc76uF6yLNrSpNppr3Gr2wAAAAAAAAAA", "types": "CANTBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "q4JtKPdD84sGcDCNyN6nPg"}} -{"Stacktrace": {"frame": {"ids": "3mYYqsL3RyZ4MT4Z8-by-gAAAAAABsfA3mYYqsL3RyZ4MT4Z8-by-gAAAAAAA5oV3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHRcE3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHP6w3mYYqsL3RyZ4MT4Z8-by-gAAAAAAGTSU3mYYqsL3RyZ4MT4Z8-by-gAAAAAAGSdh3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHRJR3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHRTx3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHHZF3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHK-o3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHLol3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHMHO3mYYqsL3RyZ4MT4Z8-by-gAAAAAAG9-K3mYYqsL3RyZ4MT4Z8-by-gAAAAAAG9HZ3mYYqsL3RyZ4MT4Z8-by-gAAAAAAGtmy3mYYqsL3RyZ4MT4Z8-by-gAAAAAAGupm3mYYqsL3RyZ4MT4Z8-by-gAAAAAAGpxT3mYYqsL3RyZ4MT4Z8-by-gAAAAAAGpSq3mYYqsL3RyZ4MT4Z8-by-gAAAAAABO_I3mYYqsL3RyZ4MT4Z8-by-gAAAAAAAPNQ", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DJsG1PTKQj3bE1cuaZCjpw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ9W", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hc391qiEl23bWsvU8MIb2A"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAc2wgGDGWUYKAius-1IxNgMQAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5herarFi58uky2CNY5OarQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ9K", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "H_U__gC97iLDLPRg-7bXig"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXDNgtQ4kMk_MBWrPUAFqVnYywAAAAABqaJ-gtQ4kMk_MBWrPUAFqVnYywAAAAABqYJkgtQ4kMk_MBWrPUAFqVnYywAAAAABqYXkgtQ4kMk_MBWrPUAFqVnYywAAAAABqZXmgtQ4kMk_MBWrPUAFqVnYywAAAAABrM_ogtQ4kMk_MBWrPUAFqVnYywAAAAABrQtc", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iOgvcGNEugo-q4Mte_An1Q"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbeuIw_I7HzcVMEcOaEL-XEgAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAABDbpFrLpp87SutwNDP7V3ibQAAAAAAAAAdS06qc2WWdjyLzzAdWuSUuwAAAAAAAAABPe4TSqGUL-1bGrK2ZFpccQAAAAAAAAAa", "types": "CAM0BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Jedq9pa2af0dW7deMw2jFQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZxZ", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "spFZMKZslqx7eLmYXiBH-g"}} -{"Stacktrace": {"frame": {"ids": "tQgAmBJBgPLrkikSPRsmtgAAAAAAAMD16tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFE1i6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFDLh6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "AQMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4_rg67KP9ZbtiP0CeHeyFg"}} -{"Stacktrace": {"frame": {"ids": "R_3RsDYccfUxjNYYah3JZgAAAAAAEhYe-IlGUwajicqSE5-hS5VYigAAAAAAAHbaSZxl-YF9wOaedogsBMtvRAAAAAAAGQAGSZxl-YF9wOaedogsBMtvRAAAAAAAGQBRSZxl-YF9wOaedogsBMtvRAAAAAAAD9N_SZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2CSSZxl-YF9wOaedogsBMtvRAAAAAAADlvOSZxl-YF9wOaedogsBMtvRAAAAAAAFyKzSZxl-YF9wOaedogsBMtvRAAAAAAAFr4bSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAFQnWR_3RsDYccfUxjNYYah3JZgAAAAAAB-M2R_3RsDYccfUxjNYYah3JZgAAAAAACMGXR_3RsDYccfUxjNYYah3JZgAAAAAAEQj26tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEMf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD7I6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC-586tVKI4mSYDEJ-ABAIpYXcgAAAAAALX096tVKI4mSYDEJ-ABAIpYXcgAAAAAALXuj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAROxm6tVKI4mSYDEJ-ABAIpYXcgAAAAAAScuk", "types": "LAMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mNHTiM_I_yOcvPLX_jE4VQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAqeSs1xpPdaQi6BA9wz10SrwAAAAAAAAA5TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABUfZfGpgZFJokP-jaeydrs0QAAAAAAAAAJjg3LdO4DNz9FsefjUG1F1gAAAAAAAAAA", "types": "CANuBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "672APJhXj5EKzZzWjY4QzA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7r0XT4fd_WKeR1cE-hlLelCQAAAAAAC-0JVXT4fd_WKeR1cE-hlLelCQAAAAAAC-1HEXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mjmL0Xb5ExHKk3gY3SfF8A"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mbdXT4fd_WKeR1cE-hlLelCQAAAAAAC-nmeXT4fd_WKeR1cE-hlLelCQAAAAAAC-nplXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwXzXT4fd_WKeR1cE-hlLelCQAAAAAAChu98XT4fd_WKeR1cE-hlLelCQAAAAAAChSZw", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2oY1qTWIwDNkXOF0PagdBA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAANSF3u75PFaKMThRw4BoUVwCAAAAAAAAAB3JzR1Che7ZkqwAcPrDIhJHQAAAAAAAAA2414vwxwFz0HV2Ku4dzYYowAAAAAAAABUV6fcE1EsjMYG4ctzhztDBgAAAAAAAAAMhicgrP6yr_-9qRDPdRH1UQAAAAAAAAABcuz7PAFLw8DoVVSTVsTZvwAAAAAAAAAExy6LXnpeKuV7b6XhH-kLUgAAAAAAAAAESdUzkeL9_v2VezVxWgWRqAAAAAAAAAAuzNcsGRHhxrtoMbOTGij46QAAAAAAAAAB7IBmDOSH_dR0MHQWs_TXjQAAAAAAAAAUX9lpa9TN84k-aLBSFJ8EgQAAAAAAAAAHgVQfyTUjnDx6YGZ7YyYMDwAAAAAAAAAA", "types": "CAOKBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7tyayDV_vQllSdORuTrY9A"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAAAaieVPbh3z67ZFj7IGoqq7zgAAAAAAAACTOM9gozgq3V-c4gPwstZkSQAAAAAAAAABF0PU7bQ8aSr5vRj-z9gSNQAAAAAAAACm", "types": "CAMHBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "O456hrPREziYCrquwnUdNw"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABq1DlgtQ4kMk_MBWrPUAFqVnYywAAAAABq2N0gtQ4kMk_MBWrPUAFqVnYywAAAAABq5Q5gtQ4kMk_MBWrPUAFqVnYywAAAAABq5AogtQ4kMk_MBWrPUAFqVnYywAAAAABqGpIgtQ4kMk_MBWrPUAFqVnYywAAAAABquYVgtQ4kMk_MBWrPUAFqVnYywAAAAABro5C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "CAMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5Lcmvo890HG8Y4rQbXwRxw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCYyXT4fd_WKeR1cE-hlLelCQAAAAAAEOC7XXT4fd_WKeR1cE-hlLelCQAAAAAACwzdbXT4fd_WKeR1cE-hlLelCQAAAAAACwXETXT4fd_WKeR1cE-hlLelCQAAAAAACipi9XT4fd_WKeR1cE-hlLelCQAAAAAACipFEXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "T3wubxICfJSY8FNVzGkEAg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5WiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9xAhlVWErYnSgk5BtC2imuwAAAAAAAAAHPCZtk4AIkgW9G69-tbcb4gAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFg7nBWJWVuG2AG8wBW0GvVwAAAAAAAAAMJ1pfAEWmqWCNhh7R3GdmfAAAAAAAAAASE7IGle0kfvhelE-3QmeBCwAAAAAAAAAWRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlX6mSHrc_Ev2W8ntyZyhlAAAAAAAAAAMXqo7-ger7Rh6Qo72br9qjwAAAAAAAABjPJlREaStQ9MDsMhq8CWS4AAAAAAAAAAY0gz1mhmhTxHCVZG94cP1QgAAAAAAAAAF-7DooF_BqEazp1UGVZs9GwAAAAAAAAAFANUDzCguopTSw91qnI0ylAAAAAAAAAAEqqNm7TjIy3nH3d170jURgAAAAAAAAAAI2x9Jgge3yFGPJiCTMDFHSwAAAAAAAAAFiPXr6f3Mf7KR5iK4gq24eAAAAAAAAACsgyVw_U5FOQ18KFg79gJcQQAAAAAAAAAFjgFie9OcTMpMeBzHaR2iBgAAAAAAAAAEljU-LP57RlgNPZ2rSqp_EAAAAAAAAACT", "types": "CAM6BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dF3lN3ea4am_7tDjMTNP6A"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAABjgJ_Yxe-SHgukLEpCkawSk1QWAAAAAAABqplYxe-SHgukLEpCkawSk1QWAAAAAAABM5TYxe-SHgukLEpCkawSk1QWAAAAAAABNSEYxe-SHgukLEpCkawSk1QWAAAAAAAA4vc", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "40e3Tg8yjxNKy4P6BuWO-Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7n", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6FS78rLcwklRcuuvZdYp0w"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t3YXT4fd_WKeR1cE-hlLelCQAAAAAACgaUO", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-vSsOv3oIeGq1jnkLewmKA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR4r", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZGUB8nd8sv9Or-VM0Kjm3A"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAvspzm-_Ca31VwijYVQAZSLAAAAAAAAAB7TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAAAL8g8BRnBI4MuRYzLO3qW1UQAAAAAAAAAF", "types": "CANjBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PLWIfk3kyJVpG6Pe2YW5BQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAC0XP_Z3CKaS4aU08RhYA19y5ITQAAAAADBlVKZ3CKaS4aU08RhYA19y5ITQAAAAADAqPIZ3CKaS4aU08RhYA19y5ITQAAAAAC12lqZ3CKaS4aU08RhYA19y5ITQAAAAAC14oVZ3CKaS4aU08RhYA19y5ITQAAAAAC14daZ3CKaS4aU08RhYA19y5ITQAAAAACsn_sZ3CKaS4aU08RhYA19y5ITQAAAAACsuuEZ3CKaS4aU08RhYA19y5ITQAAAAACnQugZ3CKaS4aU08RhYA19y5ITQAAAAACIAqaZ3CKaS4aU08RhYA19y5ITQAAAAACtAiPZ3CKaS4aU08RhYA19y5ITQAAAAACsxfDZ3CKaS4aU08RhYA19y5ITQAAAAACIA1aZ3CKaS4aU08RhYA19y5ITQAAAAACIbG4Z3CKaS4aU08RhYA19y5ITQAAAAACIp_4", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kvLeDZxzbcRlBxqtjei7Ew"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFlWA", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-E3XQIukGGWcLnxv-RKlXw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADAEguNCcnmVGnXNe9OvbpF2wAAAAAAAAAyyH_ohM36PxcsspBj9HiisAAAAAAAAABUZZqFVPfJM-LkfzPbeaoP8QAAAAAAAAIWwJby9rfWt95O-DRO0mDYjAAAAAAAAABWk1o6cGLS1FzksoHJvPKdFQAAAAAAAAARd55u1lPodAfLflRouVTMDQAAAAAAAAAGd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsSidn5oJ7A2M_efsiHDz05QAAAAAAAAAT0_jShB-DuV77HIBPKqBRjgAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBAZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMoavQ7EacG6CR4rzcFaNFEsTQAAAAAAATs0", "types": "CAORBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "W4eaTfNJQRBDVqF5v5x57A"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcQxTPNhFsgl-8e8i61Q7phQAAAAAAAAAnwnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAE8PySOWxdeTvWtl74Iv620AAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAn5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALCqHdoNRupr5ud0SEqGGzcgAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAF_Ngz1ncxudXrxSqiWBxoaAAAAAAAAAAETphZkORhkBDEbRDMofKltAAAAAAAAAChfNBUTxafk7cWQGRCQErWrwAAAAAAAABiTphZkORhkBDEbRDMofKltAAAAAAAAAA7x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAChAAnABuJtrWflPvotxCoPjQAAAAAAAAFDgM-zvldT2mxZOhlxJvpRXwAAAAAAAAAXc0OkgT3_p45M6FsCvH3WnQAAAAAAAAAV9BsFwV8tobvksYfuNpORcQAAAAAAAAB6oOz1jSRZNClfuKPM_yWNFgAAAAAAAAAG3b73aK2YxmWJY2Of38z3nwAAAAAAAAAG-98KX7lEQngZcvy7BcWxHgAAAAAAAAAZR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAW40ES46dU7pwVTIhZzOkjPwAAAAAAAABV_bWrQJSE9QDRqMSbes6HHAAAAAAAAACK1WwaSXc6MUqSl16CLws0XwAAAAAAAACe6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qbOly4UeXgEZ8EetANZqFg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAAJiAC6sIDdQuWlno6mhwaFiZwAAAAAAAAARmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAANIfYj4waw9fP9op8fikoTJgAAAAAAAAAGmHLbruajf1ewhD5eRLIwPQAAAAAAAAAEIfYj4waw9fP9op8fikoTJgAAAAAAAAAGu80wzeYkSnSlt8hhdfSXpgAAAAAAAAAsaMdAw5F6bqw1nsXGt00a9AAAAAAAAAAT5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3Ge0L0SwsSbyUWsXqVMbKswAAAAAAAAAGDXStuM9FGoRVIzn6iyb_SQAAAAAAAABmLO0kqCJ5sLnPx_SwGJYFEQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMTbeJ7BYIhIN72fM2Cz8k8m9QAAAAAAASDW", "types": "CAO_BQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1tUySHOH0tYebEIwqtbzkQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAA5cYiYZLNw79YI2sv5ZzfISgAAAAAAAABnsd1-fzhWHGpZk5BbNZ95mAAAAAAAAAERuV9VJttm0goUzsky7YZbIwAAAAAAAACeH-wSa23kc3U3gWusbQ0H7AAAAAAAAAAv6lofCsTYrZTgxumxKdLXaAAAAAAAAAAW48NTOm9REY9geqrnhLmtIQAAAAAAAAAHLZh55WiQA4pYUO2PyDs0LQAAAAAAAAAHiynY3Vpl2yeKIqRo2Ld9YAAAAAAAAAAnAsYLPOMVTEJOeDxuyLY7KQAAAAAAAAAUX9lpa9TN84k-aLBSFJ8EgQAAAAAAAAAHMkmisheVP0DaTeF1Tgq6BwAAAAAAAAAVkrGbMu8JHiKkyENUYIKBywAAAAAAAABnhCDtT-9vDXD-e8HuC9915wAAAAAAAAA4GP9DcZgvFsVU-FrimfbKfQAAAAAAAAAJ4X1D0bE8dXWnBHefwzL1KgAAAAAAAACMuC86pFXXnBLCj6eRRljPDwAAAAAAAACENc9gj1rv2NerZVTmjxTx9AAAAAAAAACGnQWGdRxvqVjwlLmQWH1PhwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAHCKeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARhH", "types": "CAMeBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WZxBtZLIjgWi7iyuWzr-iQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fMEGhVur8bO2mv1boqOVuw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAABWyt_cpdTtBVWXz_YP1okGcAAAAAAAAAAUIcdeXxipoRVqav0jM_5DLQAAAAAAAAAFy3suxdda7-517ccPeU80LQAAAAAAAAABxgPPuzI1J0KcF5WhFpW09gAAAAAAAAA0E9rVQyfXmRnEPhP5-Uw5UgAAAAAAAAAELJHrWrJn2NgzCwphqZHUTAAAAAAAAAAIxgPPuzI1J0KcF5WhFpW09gAAAAAAAAA0h7etdb4LVAEPlLKOTYCzyQAAAAAAAAAcODJxpePHpW__WCCRpgG0AQAAAAAAAAAEz7vmRnux3IvBpoyglzVLfwAAAAAAAAAPIs1HM5XBCjCrIyfmtQTsWwAAAAAAAAAJzvqIKMMHl8P7GaPP4lE2kAAAAAAAAAAbsspLyqwqKpD8wnMR9ugciQAAAAAAAABgHL8EuHVSmvyyvO0QJQzjvAAAAAAAAACU9i4yH5hvA0rp4RuaXVKyFQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAMKiKQXI5stF5N-InJuXrsjgAAAAAAAAAEL4Zieid3nVkNJbdYJumC3wAAAAAAAAAPMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFTU7DQ3uAw_xM7DAGYMk_cQAAAAAAAAACMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFOa5CkhVOrx2r2YkOsLGOZwAAAAAAAAAeJUqoXh4FCdEByaAYgHthzAAAAAAAAAAKl_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAADUM3h48-oBMi00mRAqhB4IAAAAAAAAAAjNrvcSCGNEuayQcoP_4CXWQAAAAAAAAANp3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAANqUqjB_amR59Lv13Nhle_NwbwAAAAAAEPzb", "types": "CAMpBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rrV7Sjn5wsa8oFmwH9R5gg"}} -{"Stacktrace": {"frame": {"ids": "CHB6oSdNIPFu3CdR74BZKQAAAAAAAWJM3aS07d9PG4lc4UzuBbVWzQAAAAAAAiVUCHB6oSdNIPFu3CdR74BZKQAAAAAAAV9bCHB6oSdNIPFu3CdR74BZKQAAAAAAAX3vCHB6oSdNIPFu3CdR74BZKQAAAAAAA2UuCHB6oSdNIPFu3CdR74BZKQAAAAAAA7-X3aS07d9PG4lc4UzuBbVWzQAAAAAAAifA", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6bno3KY4YPf5Yv8-TeyIMw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAAYYJssTGLCNH21piOrMPoln5uBQAAAAAAeVTEsTGLCNH21piOrMPoln5uBQAAAAAAeFemsTGLCNH21piOrMPoln5uBQAAAAAAcmRKsTGLCNH21piOrMPoln5uBQAAAAAAeFTzsTGLCNH21piOrMPoln5uBQAAAAAAgYDF", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "H0WY9BQOdRjXYQkYwkFdgg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQ9zOECVMFUE-sRNeQZ1HM6gAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARTZwep2BdnG6Mdu9AQocnMQAAAAAAAAAGCMCWh32oer3bDaYggVtoUQAAAAAAAACHHCW9gICkV36t4oXsjBpsdAAAAAAAAAAE_WhLMAElKfp9RHy9XD-HOQAAAAAAAAC3qkXC9AzfY8U3Ryc9g3OFDAAAAAAAAAAsccTvkbbzG7ITlutNR0SvYwAAAAAAAAAehu0S-fYG_gY_Otgg4IzKXwAAAAAAAAErXey4TSJt8z1Y1xeGVvkdYgAAAAAAAADB6fJMpXGng7X5bTc2KsPuMgAAAAAAAABSD0g0ITB6vPs-JMXU6kB_IgAAAAAAAAAETnmpwdT1yeLDbWlRnUic2QAAAAAAAAAHnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAA-DaVWIofPTETqopDkVERGkAAAAAAAAAATwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF2mlzHMlWgLtS4AXchUZGuQAAAAAAAAAIqThtgbHprFVYaxHnWJ5r2AAAAAAAAAAQ37kdvsyygZea642hUZCb9QAAAAAAAAAdvxAO4ozw0ZRvb8q4djSlogAAAAAAAABEwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFx4xnJ8Bvv3cqGQOknqJJwAAAAAAAAAIURrpT79Wm1-567n5aqJlbQAAAAAAAADL3bzfPK0NZtH4PhiksXncvgAAAAAAAACOotzl_-UJZ6X4M1v7YRzHZgAAAAAAAAAId_mdgff0kSRs-ewuuAGS-AAAAAAAAAACYpb1GyaDgfO6SxUxbAvctQAAAAAAAAAIyHxJa10zF8jCmhZDUlRioQAAAAAAAACJjOKHIn-OfmVASZP9y1NSfAAAAAAAAACHV9nsBUwQwMn84PajbyjYtAAAAAAAAAAYX6qt9XlU0IqttZBt4TnwZwAAAAAAAABHwvXjE31kESML0je4-Me7hAAAAAAAAAApDRApe1cPTh2-wFVHvKmI-QAAAAAAAABlfedIGTz7oXcPN7rVsxHwdwAAAAAAAAAMyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFq-Wp_fKqnzituNc-kKOtAAAAAAAAAAUpYMvKU2r2nETpEeIP80PQQAAAAAAAAA38jMyW-WmlGRJvr5T2b-plgAAAAAAAAAFwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0_JZyYR0Vno863IcUXpa7AAAAAAAAAAQGiPQYuBqA4onG16OCBJr7wAAAAAAAAA_wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF49P_FduVXL-1HnETkDgpjwAAAAAAAAAcS_CL2qp_hCoxo4NMBjattAAAAAAAAACntgTcpaw1PHSeu1PntXA3fQAAAAAAAABtVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFW_JPjd1DkAyoubIfHSaORAAAAAAAAAAMro-nOR8Y6-xR_0NZHNxiswAAAAAAAAADGAKN4IA59Oyrw_sFixA19QAAAAAAAACoj8cyxnhvgCmiV0wfzWt-5wAAAAAAAABH4_Wu3cP_1KUTQF00Htx73gAAAAAAAAA6v6A2aEAJbkezThEe0LppjQAAAAAAAAAIAHE52dyzEEDlVbgj_xFoxwAAAAAAAAAVwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFR7Hj9yPeT2EDyEr2K8ONTgAAAAAAAAAYg9D12vCHvqmadcctx-s3mQAAAAAAAAA7dAHd9ndNzEhU1GyagepTAQAAAAAAAAAlABk6RqRYy5QsiYS0AnfFrgAAAAAAAAApwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFtM8VFC-6NwJWsTojOgeMHQAAAAAAAAAMgQianSpTZDlq5RnHMXwrkgAAAAAAAAALwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFIg4O8IWFanKbF_VU4hFAfgAAAAAAAAAY3JOiPEBqME3dIDTotL2-UQAAAAAAAAAi36WCeR5NbgRZnRrGA9E9SgAAAAAAAAADgRMnqp8BzO8vF6IGZv8EFwAAAAAAAAAF9JTwb1xrnBs0wRDjaFu6OQAAAAAAAAAEfKA-P04oGeqRcPbw_KcplwAAAAAAAAACzrUlifJLvvERDLLhil2q8QAAAAAAAABBQd5BzOrQqNPF2dbzaWCiSgAAAAAAAAAxI-sh7YDA3eXRF3pcvPl6xQAAAAAAAACGG2Gr0Endt8yd9TWwB25Y2AAAAAAAAAAEQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABiLzmLpiPfmTPhvDqa5Vct1AAAAAAAAABFRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABiLzmLpiPfmTPhvDqa5Vct1AAAAAAAAABFRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABiLzmLpiPfmTPhvDqa5Vct1AAAAAAAAABFRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABiLzmLpiPfmTPhvDqa5Vct1AAAAAAAAABFRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAAAzE7J_ZVS2fIyPaAMkyne11QAAAAAAAAAA", "types": "CAOhBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ntU9lIOS2on6fT6gjqaLpA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALARLuf1htvrklOOxyKnOopAAAAAAAAAABTBtZO3-vmynkHlKuzsN9UQAAAAAAAAAyn55ZjUBJzU7CnzmyoRyorwAAAAAAAAAk5Ib9omL2d9xqdBKBL9VmGwAAAAAAAAAAqFV6xhVekP5-uToPI32ragAAAAAAmMkkqFV6xhVekP5-uToPI32ragAAAAAAxn1ZqFV6xhVekP5-uToPI32ragAAAAAAxnpttQgAmBJBgPLrkikSPRsmtgAAAAAAAL3h6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "CAMGBQQDAgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Dncz0Y_So0i0vXWTX7iycA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAHX_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAA", "types": "CAOGBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Jxx94k5bF0AyU24TvMCnFQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxmK", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "A37WFlc27IDax1__xu-KJA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABFvIYxe-SHgukLEpCkawSk1QWAAAAAAAANUzYxe-SHgukLEpCkawSk1QWAAAAAAAANPkYxe-SHgukLEpCkawSk1QWAAAAAAAA0OOYxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "t-flxrF7p2MCZlWnBJdilQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7-XT4fd_WKeR1cE-hlLelCQAAAAAAC-pHvXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9wRXT4fd_WKeR1cE-hlLelCQAAAAAACjCBUXT4fd_WKeR1cE-hlLelCQAAAAAACi1Sb", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oKjEqCTMwkPftp0JIk3zEg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAZoBfvSakkahGPsqsyBzk0RGQAAAAAAAADwC6Cl1mEselPLNxdVax9QrgAAAAAAAAABCgYc8rCJCuV599jzzhx8xwAAAAAAAAAK6MrpMhLvTaclBlHJblL7qgAAAAAAAAACzXMlTgtL55irR_wWhXKwuAAAAAAAAAAMPnrh-Ooxmcdjw5G0pB9e_wAAAAAAAAAtJYDhCBqV4GPq7uqp50dsDwAAAAAAAAAHuoS8VlPflz8QSK7BPMOvQQAAAAAAAABG4y1QLnOo_87Zcna0Yb8QdQAAAAAAAAAE", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_2COh-c_qJv_z47LD8F6aQ"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYpqL9Bd3XIiGWasJdN8trI5tgAAAAAAA1YsL9Bd3XIiGWasJdN8trI5tgAAAAAAA1LtL9Bd3XIiGWasJdN8trI5tgAAAAAAA0wvL9Bd3XIiGWasJdN8trI5tgAAAAAAAydaL9Bd3XIiGWasJdN8trI5tgAAAAAAAKWhL9Bd3XIiGWasJdN8trI5tgAAAAAAAq7bL9Bd3XIiGWasJdN8trI5tgAAAAAABckC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wfCTZ14vNLwvsq17Hq3glw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5WiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbXAL0Ge_HcVwkBrUXRRiLwAAAAAAAAAHfyGIqAgDCWT0HWMDhvlu5QAAAAAAAACVrg_W9Iz5X4vBEiSyGYl41QAAAAAAAABeOVbzts78rozw73k3kwZElwAAAAAAAAAJJnSEm3EzEl71vBewWd-MegAAAAAAAAALh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABq3Tjfka8pNswMm1Yg7BN5wAAAAAAAAAQ5mPZ7hP04mAof7_xhihCAwAAAAAAAABV5utt2dQ8HKrTepHdNpprxQAAAAAAAADL6XNnO9SeJ40ZM7baZ84oEgAAAAAAAABVLll_E1k3FfR43EQBXwU1dgAAAAAAAAAIrywk-6b8WKiuckZ62dxSSwAAAAAAAAAHiX3hg20o3ZB-dQ1wA5bFxgAAAAAAAAAEomA88yQfT91566xoyEY7sAAAAAAAAAAcrrWuYAakx0mSDLYXP-NBMgAAAAAAAAABK-xWzbOpXq--Qycbjj-mDwAAAAAAAAA3L1OydAndq8IT7nNSF3yNbAAAAAAAAAAkewU9RfzsPed7JATT94aw-wAAAAAAAAApfZ3COijH60wdDIIVUpSInQAAAAAAAAAIx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAOPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMzzqjB_amR59Lv13Nhle_NwbwAAAAAAENS56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALko96tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Z56tVKI4mSYDEJ-ABAIpYXcgAAAAAAp15j", "types": "CAMwBQIDDAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QdOz4wxFUC8pDwHEAxZcWw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAEWwtUXT4fd_WKeR1cE-hlLelCQAAAAAAEWwzbXT4fd_WKeR1cE-hlLelCQAAAAAAEWw9ZXT4fd_WKeR1cE-hlLelCQAAAAAACnxaWXT4fd_WKeR1cE-hlLelCQAAAAAACney9XT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACng-rXT4fd_WKeR1cE-hlLelCQAAAAAACnfLd", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3EdY1eU9gJRJ5-pD1F-9zQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABYM-q_yN6BkZgGVL7TrJEMggAAAAAAAAAZH6yPOYEnXV1gkHCNY0CftwAAAAAAAADhmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAANIfYj4waw9fP9op8fikoTJgAAAAAAAAAGmHLbruajf1ewhD5eRLIwPQAAAAAAAAAEIfYj4waw9fP9op8fikoTJgAAAAAAAAAGu80wzeYkSnSlt8hhdfSXpgAAAAAAAAAsaMdAw5F6bqw1nsXGt00a9AAAAAAAAAAT5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3Ge0L0SwsSbyUWsXqVMbKswAAAAAAAAAGDXStuM9FGoRVIzn6iyb_SQAAAAAAAABmLO0kqCJ5sLnPx_SwGJYFEQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAEXqmhrzhROIxdFfT_O0ufQNgAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyFr", "types": "CAPEBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GITcXcM5OZJEsFYPj2RnOg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMvBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qVW6zqZFUDf4jmIJtsdFjA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAfBsVYsnZ_Lwaqr0cHEPo0D185QAAAAAAfBjaYsnZ_Lwaqr0cHEPo0D185QAAAAAAeZFzYsnZ_Lwaqr0cHEPo0D185QAAAAAAejiZYsnZ_Lwaqr0cHEPo0D185QAAAAAAeET3", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qDosqYNWqMjeDR-l1Za_TQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ0X", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ivEY-EqI5b0E3M_68jqmVQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACGz1HZ3CKaS4aU08RhYA19y5ITQAAAAACGAHlZ3CKaS4aU08RhYA19y5ITQAAAAACGAXq", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ycogR2C1hH5eXGjaW9oPeg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LH5cEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEV0b", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ViC03sje9QXvOY-ekeiy4Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAazVvSNDzWiYDmLZi_Z1ZVETLoAAAAAAAayyfSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcOjMSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcT42SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcM6c", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZnqYkX8N3cXlE52NykkcUQ"}} -{"Stacktrace": {"frame": {"ids": "2iSc_7W6mQyfzHA8XRDUrwAAAAAAM00H2iSc_7W6mQyfzHA8XRDUrwAAAAAAeVXWIfn5UOOZw7Eb-8v_kPDQowAAAAAAAB7MIfn5UOOZw7Eb-8v_kPDQowAAAAAAACxzIfn5UOOZw7Eb-8v_kPDQowAAAAAAAG0tIfn5UOOZw7Eb-8v_kPDQowAAAAAAAEbQ", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "m8UxqcMGCNBvKBluS5X8zA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADA3-aZ3CKaS4aU08RhYA19y5ITQAAAAADA3RQZ3CKaS4aU08RhYA19y5ITQAAAAACQxvsZ3CKaS4aU08RhYA19y5ITQAAAAACQxoaZ3CKaS4aU08RhYA19y5ITQAAAAACQyJrZ3CKaS4aU08RhYA19y5ITQAAAAAB_vGjZ3CKaS4aU08RhYA19y5ITQAAAAABwX09Z3CKaS4aU08RhYA19y5ITQAAAAABwMFAZ3CKaS4aU08RhYA19y5ITQAAAAABv0fBZ3CKaS4aU08RhYA19y5ITQAAAAABv3TUZ3CKaS4aU08RhYA19y5ITQAAAAABty9FZ3CKaS4aU08RhYA19y5ITQAAAAABty1dZ3CKaS4aU08RhYA19y5ITQAAAAABtuBs", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MifoGEhGkhx--3Mqfb9VJw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFbojlkH6U8-uq6rXJn3yJDAAAAAAAAAAEa0W4SIobOysiPgaw1gv_JAAAAAAAAAAQHrXUpqEQk4VDnpaZKgdbiAAAAAAAAAA9U2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAAthtvgcgAW24Rn4q34GnPYLQAAAAAAAAAFQNZzHGnqskrqlEo3XdkqqwAAAAAAAAATlH7EdNhUWMEu-Xw0OnFCsgAAAAAAAADKPT8Qhq3pE7S7UQ5pBb6dmAAAAAAAAAAOpKLBb0_sPdt_IxvNqtQh6AAAAAAAAAACAmmotxQnAOVzMU8NulbCZwAAAAAAAAAQLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAABBoz9GJ_qlf4pBIKy8mHtWYAAAAAAAAACLLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAABBoz9GJ_qlf4pBIKy8mHtWYAAAAAAAAACLLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAACgQ74ZSoBrLiINArpQeOleFAAAAAAAAABLLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAABBoz9GJ_qlf4pBIKy8mHtWYAAAAAAAAACLbUpZ48eu6eiEjFsuaTvsNgAAAAAAAAASR8Unr-8xOl9YfaVb1B0yFAAAAAAAAACkeCOhqsAwaXtoMEk8IgCdpQAAAAAAAAAIgL0sNJyG3L826RryrsTHqQAAAAAAAABNgL0sNJyG3L826RryrsTHqQAAAAAAAAA5_CjTv6kUGwXvM8Sos-Kh-wAAAAAAAAAO6Oa3Gw3a2qG6TW8zVkC5sQAAAAAAAAAH9gjRuxRdRyq16xbNcyHimgAAAAAAAABa9gjRuxRdRyq16xbNcyHimgAAAAAAAABM9gjRuxRdRyq16xbNcyHimgAAAAAAAABa9gjRuxRdRyq16xbNcyHimgAAAAAAAABa9gjRuxRdRyq16xbNcyHimgAAAAAAAABa9gjRuxRdRyq16xbNcyHimgAAAAAAAABa9gjRuxRdRyq16xbNcyHimgAAAAAAAAA_tVyYJ7ZoM4kN95rJYlvO-AAAAAAAAABaxfayWUULnTu-rJFbbgqAHAAAAAAAAAAG", "types": "CAM0BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eFeV1BctdgGmKhHEdAax5w"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQw7WOWZs79Wz210098loDzAAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARrSUSoohdnG6MdsfC9pID0QAAAAAAAAAGpY2MvdN80J-OPBSDYZs_8gAAAAAAAABSneOkLg7Birx-EWGBuoP5rgAAAAAAAAAaDjB9rnpR9s2OI-jlVfuXnAAAAAAAAADmNrikprALerrSkH1iKFm6zQAAAAAAAAAs_ui1AAIySrYc7ZeYb73nFQAAAAAAAAAMDbSG9xbs7jnAEiHiVrKb1AAAAAAAAACGHSSZPv-Jiv2fPLN9vFx42gAAAAAAAAELQKRyqWZIJ5_z0G07UwBzeAAAAAAAAABS3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAxJDeoMDAF4zRp8m9fg1ttGQAAAAAAAACBArHoFYyXVsZt6HAc7EjVzgAAAAAAAAA3u1A1mq4_NM3j2_15WwdIbwAAAAAAAACHJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAACjGw9H1l67yAnzlh8ZHG_VaQAAAAAAAAA47c7rgpFHY6rxkjCoiUY2PgAAAAAAAACWu1A1mq4_NM3j2_15WwdIbwAAAAAAAACHWRFfIxsq2Q79ALvapo1dCgAAAAAAAAAkuchUv6RRAwtUDrZKhO2h8QAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAACX7uo6HnEu95TqHvEix8e-NAAAAAAAAAAT81sQIr1-P7Y9e1lYkQD1WQAAAAAAAAAbc4tAsAimVlPgj7zIV9p01AAAAAAAAAAIC0WKYZJsdZy_HtDNc5i0jAAAAAAAAAACBZDyipXP5bFEE55HWZ3NWQAAAAAAAAACRHCo9S6JLvJhQuHnIgHq_AAAAAAAAAAURxqe_zQBj7bxcQClfMPGZwAAAAAAAAADWzcM34XPrxORvaGGXCAlPAAAAAAAAAEuDsmnB-99lpR3jSBsZQO0JQAAAAAAAABGgkQuFSIA2UC_9Mknn8WGYQAAAAAAAAB6h8ulXQ0PqCWi8WjndyD3QAAAAAAAAAAA", "types": "CANnBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Gpy3Q2u5ZrnHXb3KmhEpOA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgnQ", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uCc8HSZ3_tVtMqD6Q4eLtQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZzH", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wBC8PW2stc2snL3In1dZgw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACX", "types": "CAMpBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cGm2F3NETfQrvkp4OdpTFg"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAArGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABB5KDO11BWTfkkFO9MFEbTJwAAAAAAAAADoyUgxxOY520Rj3U8w5GHoQAAAAAAAADS_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhZsqFV6xhVekP5-uToPI32ragAAAAAAjkKVqFV6xhVekP5-uToPI32ragAAAAAAp_CV", "types": "CANRBQYD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nO9wgb1CAloL4EZkWArlWw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbeuIw_I7HzcVMEcOaEL-XEgAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAABDbpFrLpp87SutwNDP7V3ibQAAAAAAAABli98a9V97mb3FGgZG6edCFQAAAAAAAAAw_js9oXEovuvcenIstBqeVgAAAAAAAACzNleCed7iD5lY9FUQABqcFQAAAAAAAAAE56J_quP6E7ubMy0oFC4pVgAAAAAAAADYudTo70AymJSY5V7NrMKeuQAAAAAAAAAjdp9YRBQYpWxlM26t-YlmAQAAAAAAAAD_", "types": "CAM4BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gZIR2lVaJhOjBF7vmgmNTQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAABLbSOCnQZhb4DGUD41yl3cIwAAAAAAAAAEr0t7-JEfKzqH4jpSCD5GMgAAAAAAAAADV-DianfzaKA9nJbiuMkhXQAAAAAAAAAnwUZIVedHlYEif3XTrW4qUgAAAAAAAAAGHVAzZrPoCZr5Mjxtu7E5bwAAAAAAAAAFnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgwoaSXtApD-PrSWDZ_aE3VwAAAAAAAAA0pSVcwHLkS-nxPYoJIIKFcQAAAAAAAAAVwbtJcWeJtbauPpFOHZDjTAAAAAAAAAAMgBrjfo5HG90MpKR0CnEkegAAAAAAAAAA", "types": "CAPJBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3YIkBS-ky7rLIF1FVQXh2g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3b6FCVkRSabVMmeb8NDr2oAAAAAAAAAAYuRdDYN4dn3zdbxjGT-WsgwAAAAAAAAAGp3b79q4pLaPKd9iPm6PsMAAAAAAAAAAVO4PeelD0hmR0yiXQpUt-BAAAAAAAAAAllMCLsuvwtl5Ienaf8gCxzgAAAAAAAAAlJ5iIW5NrOxoU8Bgf5qpxrAAAAAAAAAAaEq50LgqGqKjaa52J2nxgrwAAAAAAAAAEEq50LgqGqKjaa52J2nxgrwAAAAAAAAAEsDDJ1mJ2kaA-GysNkBR82gAAAAAAAAAA", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "G9Qdn4hxZXN_RRgCI0d2Aw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAP16d9G7LjDZ-fFf5SdDfYnwAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_hqXNzEhstHfsC9RzpUliJAAAAAAAAAAIINnwYO06xl8vuzb_d4iUwwAAAAAAAAB45Ho0mKlqizkOap-L7lfOxAAAAAAAAAAB4T36F6x5VY7h67XAH0CiAgAAAAAAAAAEMrX9RrZV2hawszlQLpBC4wAAAAAAAAAEK_orwo-ReXdAKwCzsovqwQAAAAAAAAAS62KXTb7sbvDCquAlSQsRtAAAAAAAAAAIQX9AnwqbqejZFguJMvmClQAAAAAAAAAEVyOLA7gcQbLBF83xaM4GaAAAAAAAAAAQlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAAAYGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAABWdZbEvj5KNLRaqtv4ShlGOgAAAAAAAAAHAvY-8GTrHONLnLoYn_aUmwAAAAAAAAAl9iPPrg1Y9vtWhMk7mXQ_KgAAAAAAAAAeuJZrofYGiqBpYJJdGGtLHQAAAAAAAAADzGZ_gCn-Ge9oHmah2m0JWwAAAAAAAAAD2p4Dyo36Ea--rGgiVt2H5QAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhDlqFV6xhVekP5-uToPI32ragAAAAAAjkAfqFV6xhVekP5-uToPI32ragAAAAAAZCbg", "types": "CAM2BQYD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tTLMNSROu_QuNHWgUcK-cw"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHsJJgtQ4kMk_MBWrPUAFqVnYywAAAAADHsO9gtQ4kMk_MBWrPUAFqVnYywAAAAADIfGLgtQ4kMk_MBWrPUAFqVnYywAAAAADIhGEgtQ4kMk_MBWrPUAFqVnYywAAAAADIfwEgtQ4kMk_MBWrPUAFqVnYywAAAAABw79zgtQ4kMk_MBWrPUAFqVnYywAAAAABs1bzgtQ4kMk_MBWrPUAFqVnYywAAAAABs1zagtQ4kMk_MBWrPUAFqVnYywAAAAABr_zugtQ4kMk_MBWrPUAFqVnYywAAAAABsAop6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcCd6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcBE6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALka76tVKI4mSYDEJ-ABAIpYXcgAAAAAALiNy", "types": "CwMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RX6MWdoFei8k1kwyhzfnHA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAAWuOnnx6SeIoNtMNoAEEWY5QAAAAAAAAAxpKigbHe-xFMdGV6t_R9rjQAAAAAAAAANqaOad9DhPf06i1uiI7rW7gAAAAAAAAAjd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAOPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMzzqjB_amR59Lv13Nhle_NwbwAAAAAAENS56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf", "types": "CAMqBQIDDAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zyeCF78Ljkj_liCk-aIaJA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAAAbH0yNC4W33CkkqJfkrGFEhAAAAAAAAAAA", "types": "CAMKBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hyaOwrYy-y6_MqiyYC7KDQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB8088z5k14PsCcDvFyUC1kmlV3QAAAAAB821Wz5k14PsCcDvFyUC1kmlV3QAAAAABKEElz5k14PsCcDvFyUC1kmlV3QAAAAABHmTSz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAANp-d6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAATxBS6tVKI4mSYDEJ-ABAIpYXcgAAAAAATw-16tVKI4mSYDEJ-ABAIpYXcgAAAAAAToQ_6tVKI4mSYDEJ-ABAIpYXcgAAAAAATsSN", "types": "CQMMBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "99dRlWUAlFNw4L5T7yQdfQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAAWuOnnx6SeIoNtMNoAEEWY5QAAAAAAAAAxpKigbHe-xFMdGV6t_R9rjQAAAAAAAAANqaOad9DhPf06i1uiI7rW7gAAAAAAAAAjd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAAIIWb6KEDEet9GjRbj5wCi1gAAAAAAAAAKk2Vd7cm7l6vxlSy0gXOaPwAAAAAAAACm9zTS8BJo8yF8ShqN_mSp8AAAAAAAAAABrAlgDgUIPATMechrvqs-0gAAAAAAAAABmSJ6fSPuHzsY_PJcgbXOQAAAAAAAAACX", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TaW85eSCND8M8sXCtd--5Q"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgqB", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-W1It0TVP9HlUzppA_nUmg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHX31XT4fd_WKeR1cE-hlLelCQAAAAAACoA7IXT4fd_WKeR1cE-hlLelCQAAAAAACgUmmXT4fd_WKeR1cE-hlLelCQAAAAAACgUE7", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Al1SOAD2scJtZ2cFUS9UOw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAACqGMNSe-6LTlpuiQTu86RdbwAAAAAAAAA1wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAToufsJu2_HcVwkGb83UqFOwAAAAAAAAAH9mDLMaTYH1Sl5lqU83K8HQAAAAAAAABssNNdso5wt7XlylLOnED7sgAAAAAAAAAzV1XYcC3pffYSxQUCpFSICQAAAAAAAAAGdslHeUY1fCFL5FjYTloQVAAAAAAAAAALUf-A5VXETtdrRhSmwt74rgAAAAAAAAAIsr7KmiDQn3AwPKwUE1w3aQAAAAAAAAAFnyQEDtNfXDm_fNpPXsT-3gAAAAAAAAAGXlbiXkr6-Uo-2NyXQ7Mp2wAAAAAAAACP", "types": "CAMmBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TVIGjcT1LXA0y6eT2GUjVg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAGvN0nOeOJdjggSFx_cpb47egAAAAAAAAAV4vwWTuaA5W0Uq7WSODTSAQAAAAAAAAB8mm7pA8Vo6frfLprU_GjPaQAAAAAAAACREbDp5Ji3y8uTKzXL0h4-JQAAAAAAAAB8dJZnxxfSj1TBzD3FyyfeDQAAAAAAAAAOArz1MMWCC2fkAl6FCL43rAAAAAAAAADn", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Lbp6GnC_9KEun0KEyhcfUg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABdKzcz5k14PsCcDvFyUC1kmlV3QAAAAACFH_-z5k14PsCcDvFyUC1kmlV3QAAAAABdc9nz5k14PsCcDvFyUC1kmlV3QAAAAABke5Xz5k14PsCcDvFyUC1kmlV3QAAAAABkdp1z5k14PsCcDvFyUC1kmlV3QAAAAABkemuz5k14PsCcDvFyUC1kmlV3QAAAAABRyDZz5k14PsCcDvFyUC1kmlV3QAAAAABkgSsz5k14PsCcDvFyUC1kmlV3QAAAAABkfWjz5k14PsCcDvFyUC1kmlV3QAAAAABSO2cz5k14PsCcDvFyUC1kmlV3QAAAAABSN_kz5k14PsCcDvFyUC1kmlV3QAAAAABSmpsz5k14PsCcDvFyUC1kmlV3QAAAAABSP7-z5k14PsCcDvFyUC1kmlV3QAAAAABRsCfz5k14PsCcDvFyUC1kmlV3QAAAAABSpX-z5k14PsCcDvFyUC1kmlV3QAAAAABLz6Nz5k14PsCcDvFyUC1kmlV3QAAAAABNcjaz5k14PsCcDvFyUC1kmlV3QAAAAABNeeRz5k14PsCcDvFyUC1kmlV3QAAAAABGL8fz5k14PsCcDvFyUC1kmlV3QAAAAABFRJ0z5k14PsCcDvFyUC1kmlV3QAAAAABFQkoz5k14PsCcDvFyUC1kmlV3QAAAAABFcFGz5k14PsCcDvFyUC1kmlV3QAAAAABFcavz5k14PsCcDvFyUC1kmlV3QAAAAABFcuMz5k14PsCcDvFyUC1kmlV3QAAAAABFq1rz5k14PsCcDvFyUC1kmlV3QAAAAABGmY3", "types": "HgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hqZLEegbkzGMCD8s4XbApA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAGyVtVXhl6s6URamlTOMTdcGgAAAAAAAADcdxb67a9pdOnwKSyUl3yo7gAAAAAAAABujtEB8q7ZNk5LwicDPNbPVQAAAAAAAAB8_20iQw_1BgBh9m8HkEpgSwAAAAAAAAAOMHOHZ9dur_p0OUPsIclbdwAAAAAAAABQawew_bSRnubxb3pzzrP7yAAAAAAAAAAA", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "G0aQ-GR8dzIcLY-JHg_Ltg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZKJ37s7EDDJOHBJXAHjrP5gAAAAAAAADLA-l7rVlo-Q0lIzJjDruhtQAAAAAAAAAYsFs-DxXlXTzn3bVNvCe0KwAAAAAAAAAE", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ojISZd3oQrHFv15BTiVAhQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFxkXT4fd_WKeR1cE-hlLelCQAAAAAACiJIkXT4fd_WKeR1cE-hlLelCQAAAAAACiM0oXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADkY", "types": "FAMDBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Xefg2tu-dTR7fu4bq6TlVw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAADHgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAet_8P_qgRJaTfBrJGumjgpQAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mnK-jqHbwNjcoomJsw59gA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAnEGqyFI4UBcYw0uODaUlP_QAAAAAAAAAEo7sR_pIbiVV_Z8TfMWbBfAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALVhUIBMnDjpGauL-PhicCqgAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl_plqR4x5xi_qOVu9JWCxQAAAAAAAAAEYNvLePk3bv25BUHN3KzEXQAAAAAAAAChMo8MRZcTTA5MSH5mIc8c7wAAAAAAAABiYNvLePk3bv25BUHN3KzEXQAAAAAAAAA73kqKIOk7SslvcfRGmqs1wAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAChAAnABuJtrWflPvotxCoPjQAAAAAAAAFDgM-zvldT2mxZOhlxJvpRXwAAAAAAAAAXc0OkgT3_p45M6FsCvH3WnQAAAAAAAAAVBrUFbWJQXA38LKOgrDwJigAAAAAAAADvR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAW40ES46dU7pwVTIhZzOkjPwAAAAAAAABV_bWrQJSE9QDRqMSbes6HHAAAAAAAAACK1WwaSXc6MUqSl16CLws0XwAAAAAAAACe6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "w_qNnBzYsJ58t8YL4ziO_w"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHh-EgtQ4kMk_MBWrPUAFqVnYywAAAAACIsVKgtQ4kMk_MBWrPUAFqVnYywAAAAACIsMZgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4WlgtQ4kMk_MBWrPUAFqVnYywAAAAACG2jCgtQ4kMk_MBWrPUAFqVnYywAAAAACG2ppgtQ4kMk_MBWrPUAFqVnYywAAAAACG3SIgtQ4kMk_MBWrPUAFqVnYywAAAAACG1eugtQ4kMk_MBWrPUAFqVnYywAAAAACGqIxgtQ4kMk_MBWrPUAFqVnYywAAAAACG7nVgtQ4kMk_MBWrPUAFqVnYywAAAAACHiusgtQ4kMk_MBWrPUAFqVnYywAAAAABqF_mgtQ4kMk_MBWrPUAFqVnYywAAAAABqIGH", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_3rOpJzGPS7tGvMhQ90uyg"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACe-XXgtQ4kMk_MBWrPUAFqVnYywAAAAABxp4WgtQ4kMk_MBWrPUAFqVnYywAAAAABxXQ9gtQ4kMk_MBWrPUAFqVnYywAAAAABxXzEgtQ4kMk_MBWrPUAFqVnYywAAAAABxZkkgtQ4kMk_MBWrPUAFqVnYywAAAAABxXzEgtQ4kMk_MBWrPUAFqVnYywAAAAABxZkkgtQ4kMk_MBWrPUAFqVnYywAAAAABxXzEgtQ4kMk_MBWrPUAFqVnYywAAAAABxZqKgtQ4kMk_MBWrPUAFqVnYywAAAAABtjPZgtQ4kMk_MBWrPUAFqVnYywAAAAABtk5wgtQ4kMk_MBWrPUAFqVnYywAAAAABtj8XgtQ4kMk_MBWrPUAFqVnYywAAAAABti-cgtQ4kMk_MBWrPUAFqVnYywAAAAABrfXGgtQ4kMk_MBWrPUAFqVnYywAAAAABqIHEgtQ4kMk_MBWrPUAFqVnYywAAAAABqHsMgtQ4kMk_MBWrPUAFqVnYywAAAAABqPJr", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BPbVSqBHjmwe-nD9qiLIFw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wqT", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_u0T-bb-6oGwzLo8Ixk4jQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMh29XT4fd_WKeR1cE-hlLelCQAAAAAAC-zdsXT4fd_WKeR1cE-hlLelCQAAAAAAC-1HEXT4fd_WKeR1cE-hlLelCQAAAAAACi94WXT4fd_WKeR1cE-hlLelCQAAAAAACi98FXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwXQXT4fd_WKeR1cE-hlLelCQAAAAAACiKCvXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-89SlyV8Cy-1WAJzSWKJpA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACX", "types": "CAO8BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Et5sNZhAoszUicKSkeO_ww"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAWZvnSEZ6hxckmxa-z2abTjwAAAAAAAAANeZn3IOB-FE1r74FZypzHhAAAAAAAAAAGp-hz1y_-cXtA7Uo61H8OwAAAAAAAAABOb5D4G32aP0YH2ukb-bXGLgAAAAAAAAAdk_s_ITRPELxw2Zk2jzGG8wAAAAAAAAAINleCed7iD5lY9FUQABqcFQAAAAAAAAAE56J_quP6E7ubMy0oFC4pVgAAAAAAAACGJmNHPBl7DNTU3iu90SpbRwAAAAAAAAAA", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZV_tr06SpYoUw5FQNiY8zQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlqJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCIE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA87", "types": "FAMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Uc3rxkKkk8AS6xhrVwHG8g"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYr1L9Bd3XIiGWasJdN8trI5tgAAAAAABWosL9Bd3XIiGWasJdN8trI5tgAAAAAAAmaPL9Bd3XIiGWasJdN8trI5tgAAAAAAAmSUL9Bd3XIiGWasJdN8trI5tgAAAAAAAkMiL9Bd3XIiGWasJdN8trI5tgAAAAAAAXb5L9Bd3XIiGWasJdN8trI5tgAAAAAABcjX", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "F6v4xvUd6G7lflKiKXtLLQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZvG", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UcSfB9O7oaCsfgTNqnRSmw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAABWkxlPGvmJaixHgVVGYdR3ZAAAAAAAAAAUFlEmrMapoRVqavpRHEspQQAAAAAAAAAFwKq13sxbA1Q177k-e_lIpgAAAAAAAAABPp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6IaGOpXjXn5EHF-K9uwEUPQAAAAAAAAAErU2gYsZPORRvUmAaUHS0ngAAAAAAAAAIPp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6TsD0RrBnIgAER8sz4r-hTwAAAAAAAAA469NpEFDNvAeCd2RwbOmIAAAAAAAAAAAEcGV0DDfmSpIZxUAKnFlOoQAAAAAAAAAP9RZkYL0fVSfLG-HsYblWBQAAAAAAAAAJAAn_OLmzgN0q8Ywe9O03FgAAAAAAAAAbNCAjj9ga_oZwZ7NBAV35jQAAAAAAAABgLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC3OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOEnRoHyZazasm_zTjL5tnOgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMfWClmtm3Gj4Mb2mUsOYrmYagAAAAAAALn-", "types": "CAMmBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BoYpwBWsEY6dEqkJuaGn-A"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAAAaieVPbh3z67ZFj7IGoqq7zgAAAAAAAACTOM9gozgq3V-c4gPwstZkSQAAAAAAAAABF0PU7bQ8aSr5vRj-z9gSNQAAAAAAAABRo-j45UNS6a4i2FH3VTZTCAAAAAAAAAAFjAUUTsaizAq3j3J2fzUHPgAAAAAAAAAM6iGlQzoTSIEYgwqxP3PUNAAAAAAAAAAeDYw6-LyNoVsQdM43hcJCegAAAAAAAAAI", "types": "CAMLBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hyslIhEYrdCY7Y2kR4LC4Q"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB8088z5k14PsCcDvFyUC1kmlV3QAAAAAB821Wz5k14PsCcDvFyUC1kmlV3QAAAAABKEElz5k14PsCcDvFyUC1kmlV3QAAAAABHmTSz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkw", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lWGBthO0cXLKT_wGxBJl5Q"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABFvIYxe-SHgukLEpCkawSk1QWAAAAAAAANUzYxe-SHgukLEpCkawSk1QWAAAAAAAANPv", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gqOeBsFKwbfOrCtYQX86QA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eaUcEvvhuguaGYCmGWrnWRz1QAAAAAD_AtNcEvvhuguaGYCmGWrnWRz1QAAAAAD_CcdcEvvhuguaGYCmGWrnWRz1QAAAAACGImTcEvvhuguaGYCmGWrnWRz1QAAAAACGMNkcEvvhuguaGYCmGWrnWRz1QAAAAACGMuq", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KBx8UMYQRpX3PQkFGueoQg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYRr8mF3o9czEU_lrcVazITQAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAHVRV3OqaPHH0CL0c13xlvAwAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABbjYv_loUJfP4bAxHmRpfBQAAAAAAAAAI_avzkz28Qok2WNYNUK8x_AAAAAAAAAACHRX5ZF5fIW1GKCXf3a6CmwAAAAAAAACtBTDQHzxuOEAYM78jOAyAQAAAAAAAAAB3t7DkRGcQiDMfHx06PCzMpQAAAAAAAAAXYEThj3UEuGl2wDiJSq9vSAAAAAAAAACqZou-EwmpdzrcXx7eij10xwAAAAAAAABPIdkGKdrrMvbrgpaqyJ-rigAAAAAAAAAJUpqzzk59PbxypyRs4QkNMAAAAAAAAABTN1R-9DGIZrDXK9x_wnFgtgAAAAAAAABD7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAAB3ZTYW2hueb8qo9sBuOsIdRgAAAAAAAAAn6HagrPNegEb1JoaDvxlnywAAAAAAAAAp5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAADT1TcD-cYA4xs7rqA_y0alsAAAAAAAAABM3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAgWBDDHhcycxn7-c7ItUsJQwAAAAAAAAATBP-_XyWsrdc9u8RJlsCt-QAAAAAAAAAjuraoWhBOdiQ6iFFB6Pd3KQAAAAAAAAAu1Mo8VSr4ExgPLu63UteaagAAAAAAAAAc7KiGB3QuQ0TSydl142kv4gAAAAAAAAAFDJrVAhIsrM7D63maCxrMRwAAAAAAAAFL", "types": "CAM4BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NLuoJVh7KKlp7vUyDXbc5g"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEt6cEvvhuguaGYCmGWrnWRz1QAAAAADhBO4cEvvhuguaGYCmGWrnWRz1QAAAAAD_5NMcEvvhuguaGYCmGWrnWRz1QAAAAAD_6LEcEvvhuguaGYCmGWrnWRz1QAAAAAD_7fhcEvvhuguaGYCmGWrnWRz1QAAAAAD5t-IcEvvhuguaGYCmGWrnWRz1QAAAAAD5dfVcEvvhuguaGYCmGWrnWRz1QAAAAAD5uf-cEvvhuguaGYCmGWrnWRz1QAAAAAD5W6ycEvvhuguaGYCmGWrnWRz1QAAAAAD5bDUcEvvhuguaGYCmGWrnWRz1QAAAAAD5jTEcEvvhuguaGYCmGWrnWRz1QAAAAAD5YkZcEvvhuguaGYCmGWrnWRz1QAAAAACERgp", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GXfd-67U3kWd07TLbZUnXw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAABAHHYxe-SHgukLEpCkawSk1QWAAAAAAAA-srYxe-SHgukLEpCkawSk1QWAAAAAAAANKmYxe-SHgukLEpCkawSk1QWAAAAAAAA0MVYxe-SHgukLEpCkawSk1QWAAAAAAABq0H", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "z897RYYv5sVYFZXocfXeZw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAADZgiwOUz_dwg5QpZ6rn_mtEAAAAAAAAAAabC_fEnt9OMT3icSYRSqeAAAAAAAAAAAGK61z3xaGK-rHqmHBTOYNcwAAAAAAAAARSjz2MvPusgDd7v_6YUXcPAAAAAAAAAC1J4eQqgwFH8hGziiVTbtiYwAAAAAAAABbYnHJlbHqayey0i5xkzFE0gAAAAAAAAAMlHZiv7a58px6Gumcpo-6yAAAAAAAAAAffkbxUTZgljnk71ZMnqJnyAAAAAAAAAKThaoo6iIcRhTQB8iaLQ_g6gAAAAAAAAAUHW4-asF9W20WAgPf6bG3rwAAAAAAAACXq3LBWQgbRfOKGPCCiNuVoAAAAAAAAAB_sF5aq_b9xCHS2AOkcqKO-wAAAAAAAAEo", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "77Snmu-jdy67fU04W-9dhw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAC9XK-bXPz5NoBIbF2mbBOD9AAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAA", "types": "CANBBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Z00iShXdXFb3_lRNuX4ZQA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAAtSAAkutGejeRImCZXeWZ-1wAAAAAAAACLcDDKtM-30WtgKUZUhSPZowAAAAAAAAEMKH5_QfKIKeUIlFImab-3OAAAAAAAAAAHaiYAeaOefGgb8Ek1UStS_gAAAAAAAAAL74O8rb6r6chx3WMINhKDgQAAAAAAAAABOfKlbKqoKpVidKq-tTe4JQAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gIiBrAZ3-GkFJ4HVnfTsCg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcM9Xltn711KKFcrKCAYh_ZgAAAAAAAAAE", "types": "CAONBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jGJYBKwxppFBRbCx_fEt5g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAWZvnSEZ6hxckmxa-z2abTjwAAAAAAAAANeZn3IOB-FE1r74FZypzHhAAAAAAAAAAGp-hz1y_-cXtA7Uo61H8OwAAAAAAAAABOb5D4G32aP0YH2ukb-bXGLgAAAAAAAAAdk_s_ITRPELxw2Zk2jzGG8wAAAAAAAAAINleCed7iD5lY9FUQABqcFQAAAAAAAAAE56J_quP6E7ubMy0oFC4pVgAAAAAAAADG", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rrNic4YiyR-5vceCdE4IBg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--hXXT4fd_WKeR1cE-hlLelCQAAAAAAC-9YXXT4fd_WKeR1cE-hlLelCQAAAAAAC-i2cXT4fd_WKeR1cE-hlLelCQAAAAAAC-iiEXT4fd_WKeR1cE-hlLelCQAAAAAACi9wRXT4fd_WKeR1cE-hlLelCQAAAAAACjCBUXT4fd_WKeR1cE-hlLelCQAAAAAACi1U9XT4fd_WKeR1cE-hlLelCQAAAAAACiLJ8XT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "EQMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IcP7NfEq0GawQQCHmZWcRg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADMYfPhlM7fpOuKzX3zIJxLMAAAAAAAAABQjgoPLq3mlyg7cW-Xz24hgAAAAAAAAAAQprbfaPuvU_n-ucbpjQxQ_AAAAAAAAAAj8DgYxzl_EXTxjPKMNwP9uAAAAAAAAABMIfyGrmJO4TRdP2mxshA5zwAAAAAAAADYlSZa8zsk4QhoSwhXWLlSWwAAAAAAAABD7fRblGdKRlNY9QjBlaIJIgAAAAAAAAAR4ExmIEmG5cbeqkrcSlhsEAAAAAAAAAAH12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG7kZxFgbuXnmF5RM9H_z_ggAAAAAAAAAefMXwmZZHoKY5ug0oBlnUxwAAAAAAAAAff15ZZuvJposXWOcmbKQgxAAAAAAAAAAftL230chqNUuroXAS-gtapgAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEKC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlscT", "types": "CAORBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8CftQWwP45Az974XyC6KVw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACX", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fL44zZ44BPFnGW549J-v_Q"}} -{"Stacktrace": {"frame": {"ids": "pqmEMTIUDz-nhY9YtlE3YAAAAAAAZGoYpqmEMTIUDz-nhY9YtlE3YAAAAAAAZDkRpqmEMTIUDz-nhY9YtlE3YAAAAAAAYCz7pqmEMTIUDz-nhY9YtlE3YAAAAAAAYDEzpqmEMTIUDz-nhY9YtlE3YAAAAAAAYDXTpqmEMTIUDz-nhY9YtlE3YAAAAAAAYQV5pqmEMTIUDz-nhY9YtlE3YAAAAAAAZEc8pqmEMTIUDz-nhY9YtlE3YAAAAAAAYQLXpqmEMTIUDz-nhY9YtlE3YAAAAAAAYQc4pqmEMTIUDz-nhY9YtlE3YAAAAAAAYRm6", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bgfofmlWcYjAIJ7veGUfFQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcQxTPNhFsgl-8e8i61Q7phQAAAAAAAAAnwnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAE8PySOWxdeTvWtl74Iv620AAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAn5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALOKXE0TsqEsNxLqr0g-oK6QAAAAAAAAABx3cFmRipcZyDdJFPRQEWSwAAAAAAAAAQrMNYV5KroKXsOMeuZv5hxgAAAAAAAAAATaNUUQ8ZfJlbsPC7iaqLvwAAAAAAAABv113KL9tnNlUP_dgFCwl99AAAAAAAAAACsLW5MVrNYr3JDIzLAQcc3AAAAAAAAAAwWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYv0o-SuFa6Ydo5LzhQb4MjgAAAAAAAAAGkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAgxSMSLP0FCwY_wmCLQTamVgAAAAAAAACRv7NZn75ARbCs3HYY9Fl9agAAAAAAAAAIEwEFenwePxaQrzAkWy0a_gAAAAAAAAAIW7ecGdd5UmqqnRTWfHNqsAAAAAAAAAACvcmbteT9Zn8Dn3HK9hT_jwAAAAAAAABMWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYv0o-SuFa6Ydo5LzhQb4MjgAAAAAAAAAGkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAZAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tnEGCyYPY-9Dy4jeOy-iBw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAADZgiwOUz_dwg5QpZ6rn_mtEAAAAAAAAAAaRZMfsbKLC34Px2zwyEaSpAAAAAAAAAAGK61z3xaGK-rHqmHBTOYNcwAAAAAAAAARSjz2MvPusgDd7v_6YUXcPAAAAAAAAAC1J4eQqgwFH8hGziiVTbtiYwAAAAAAAACf_sBOjhkm41Z-F6jj1JRPwAAAAAAAAAAMW2oz1IIhVizUUMC0MCRp0AAAAAAAAAAX5eYkmihge0H1qcdxo1aVVgAAAAAAAAAEfkbxUTZgljnk71ZMnqJnyAAAAAAAAAPSLUc8giwpRnW-thOUnKqKcgAAAAAAAAAqj9q5artJZBLmNbsusN-vBAAAAAAAAAAE2vzhsTPfkVRKbOkBMFFkggAAAAAAAAAA", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7dZ7-R85Uk0iMtgooj6v_Q"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATm4x84wu6bFWB-TE0PfqTWAAAAAAAAAAOgmylCg4my8_Ui_N1dUbhxwAAAAAAAAAH3J4xYgNuxGhatL0AuGYJCQAAAAAAAAAM0WnhDfOMt_1bQ20KgdrvJQAAAAAAAAB702oNZHwNJOC-C3u6YrvXygAAAAAAAAATcqbcw9VvzAfWyjGsJCyDPwAAAAAAAABzjYKah-GaJpbI-jAwYcFi1QAAAAAAAAACwd8N2TZ-uzaPC06YON_j_AAAAAAAAAAf-HqwSlv3LwloERZ2us_u9wAAAAAAAAAFcDaMbfg0wpwI_azkSWasQwAAAAAAAAAu-IkF2lJObgb8Mzx62fBshAAAAAAAAAADnpc4jjpl4EREFoWe-jKicQAAAAAAAAAMZlDlad6ynrsOYua0gWLAAAAAAAAAAAAF", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CM3wI_wNpbRDHBz8scMkcw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAACqGMNSe-6LTlpuiQTu86RdbwAAAAAAAAA1wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATmQVHcTFXg4JaHxKFUu2SNAAAAAAAAAAK0qdPtfCOXWtTMQkqPpfTpAAAAAAAAAAD4pD3shcvlMj_8ybo7T2TVAAAAAAAAADe8KL4zGG-d9_GDuuEGBxudQAAAAAAAAAGb_H4r1ZHF2YYgctDVUNAUQAAAAAAAABRL3BC_TY76W1WekdK_PK3sQAAAAAAAAAHdGje15Yliqywq8MDI5FmQQAAAAAAAAAELRnop9vMb-AhS9R35OjpowAAAAAAAABzOSzs0d7UDW14kdDxEUjZrQAAAAAAAAAGWVVfmS8H00wjgsMrGKM8_wAAAAAAAAAEyudj5Wbjz98rahOhutg5KwAAAAAAAAAM3wdhQLwtGKOtIUlA7MN19wAAAAAAAAABaPSRYZ8JddCCQFb8HbMBRAAAAAAAAAAFZx-0tvUxoac--Xj0F0phiwAAAAAAAAAHTi71ZxqCuVbwvaU7IrO7IgAAAAAAAAAPyudj5Wbjz98rahOhutg5KwAAAAAAAAAMzVOM9aQ5aVWICjbBv8WgRAAAAAAAAAAFBlsD0vwi6JMAfkvyXFogjwAAAAAAAACJh46MgXLb9R9Rx7aN-IJqEwAAAAAAAAAKr4_QAcqwjJ7g99R5zkgAbwAAAAAAAAAOgBLxJrtyci28b-8zCYT3hgAAAAAAAAEmiUpbth7c94ENpnn5oohq_gAAAAAAAAAHThHx02WSVIFKDSz-RNDkKgAAAAAAAAATLQNvdk2rwKFliFR4T-RauwAAAAAAAAATu39hB2o_bkkn64I33Zf2OAAAAAAAAAAx6KM6RK-sq5wYpyjnMfBa7AAAAAAAAAAsxLOLXg5EKZgSVcI5Dw46ugAAAAAAAAC40LGXmFocz46kL18OXWxszwAAAAAAAAA1cuyNWlZFQkabnqdPXO_rXQAAAAAAAABNSlb8MNVKIFfE9HJqtN3BhwAAAAAAAAAATRhdHOKO7GmLMAaUL3Xw6QAAAAAAACyu9BM25vr762IbGPHbtur65gAAAAAAAJNn9BM25vr762IbGPHbtur65gAAAAAAAHRG", "types": "CAM7BQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "j29xU2xGn45BT-0GH_GSjg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbQ5Yxe-SHgukLEpCkawSk1QWAAAAAAAFznNYxe-SHgukLEpCkawSk1QWAAAAAAAFzx5Yxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaO", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9lObyrii2tZY3D8d0ZEhiA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAAeOWoia3OO91L6Q6k2Ypn2XgAAAAAAAAAW4LWodyiv9Hy4HicwczMhQwAAAAAAAAAGYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADUR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAADZ6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC80G6zvzFPytbRyfwuXWQcAAAAAAAAAABAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Mebu14j6JQPo9D_c1nbUiw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAA1OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAAC7R71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAACe6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC80G6zvzFPytbRyfwuXWQcAAAAAAAAAABAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "u_qmAc1-GJOSVHEZfMGXRg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7Q", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zI9JvucnvxyxLZyzixdcpg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcoiHXy47Qw5euydEoPUexRgAAAAAAAAAga67hy6D4_aH__IrzfMid7wAAAAAAAAABruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZf4KmPLa6_uw8gRgiw9EUAAAAAAAAAE4ihprad0bkU-u2IU9StodIgAAAAAAAAEqfmVqFyGK_erbPbR830tm8gAAAAAAAAAPXgJxJ-tB1qb-u2fqUxCQQAAAAAAAAABEh4Lh6GnasWPDlVelT8lJQgAAAAAAAABADrGSK6yMQtOpLQKRphq2qQAAAAAAAABMFSfcXaocqiaJ94cn1Eg82gAAAAAAAAAuUT1CLo52HplxPz6JwcoqCQAAAAAAAAAJlfjVNXK_x0C4X5O62984zgAAAAAAAAAFZbvmFtHvqv74jokq3XvBkgAAAAAAAACS2RfKfVPwyqKh_r9U1oFgUwAAAAAAAAAfTJNGpZ5zrxHIWzJGPowW7QAAAAAAAAAEJvETSNUFmQzhSgQRV87p_gAAAAAAAAAbe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACWZXdWkChUCjmBhCYfjJANcwAAAAAAAAA40s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAABZvNebmjSwemT2pcHYKHFrrAAAAAAAAAABOPiEm7T39rpNQ5ImKH3G-QAAAAAAAAAE1FOdQtgbdsA6Mn7Hl3d12gAAAAAAAAAA", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SKoD-DH2DuktCqfanvYyAQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAAAeAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FSB68hM0SvGoIwFSJoj9uQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAAEJm5p8puApNHgdtwb3aFhxPAAAAAAAAAApxDECjxfRDF0SAcicHv7yIgAAAAAAAAABSsODsFdp0k4d_SSQAFmIUQAAAAAAAAApzzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIcPy2QFuGdjzuVBNv2-JtzQAAAAAAAAA5FQVEqfdF3Gc5vOLVf8c4EAAAAAAAAAEpcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIiaYGOKrCYzeQFPvSFK3LGwAAAAAAAAAlcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAI3FmF0iegYInyRffZHSr8AwAAAAAAAAAv1Az5XiB-HqkM2KIxBs7pHgAAAAAAAAAzXmgLknRmXWrjNm14n69KUAAAAAAAAAAGcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAInQRJ3xr79n3cY6qS99IffwAAAAAAAAAE7EnnOhShMGZ9Te5BWwjtoAAAAAAAAAATopFI2iPPQrSoKgHSzuYsiwAAAAAAAAAIytmnDvqR2kv8bcodWBOqIQAAAAAAAABnKKci4M_8u3lv7Ydwxf31oQAAAAAAAACFwoXLgCudpu5Igw4bPyCZzAAAAAAAAABTLQDSx6vga0zDZ5JbsP5kmgAAAAAAAAAwngEDfMGa2k3LBps0tpgYRAAAAAAAAAAQ-SQAt_091j0wh4lQu2r18QAAAAAAAAAC_c66iRIhxEMceXexHDGFpwAAAAAAAAACm90x-IDkYTtkxx7JZAYrFAAAAAAAAAAMFYp6NrRQUdcxcMQHOiZr7QAAAAAAAAAiwmQufSV4x-hAvGcaiegjeQAAAAAAAAAm-KaQJqCpvd-fD6hn3-xL4AAAAAAAAABFE9iltmxxnvYn82cyFFZ0KwAAAAAAAAAC4RMjMvBCxMjR_OY2K7clCwAAAAAAAAAFsRqFVRgtIpahqWj1VJMq5wAAAAAAAAAo-SQAt_091j0wh4lQu2r18QAAAAAAAAAC_c66iRIhxEMceXexHDGFpwAAAAAAAAACm90x-IDkYTtkxx7JZAYrFAAAAAAAAAAMFYp6NrRQUdcxcMQHOiZr7QAAAAAAAAAiwmQufSV4x-hAvGcaiegjeQAAAAAAAAAm-KaQJqCpvd-fD6hn3-xL4AAAAAAAAABFE9iltmxxnvYn82cyFFZ0KwAAAAAAAAACd7WHaUB-G_1vhvjxabxBMQAAAAAAAAAJqA6aTmYIY5XQ-D5SlmSYOwAAAAAAAAApnnN2-U_s8SdanlpQLAPXRAAAAAAAAAAC_c66iRIhxEMceXexHDGFpwAAAAAAAAACm90x-IDkYTtkxx7JZAYrFAAAAAAAAAAMFYp6NrRQUdcxcMQHOiZr7QAAAAAAAAAiwmQufSV4x-hAvGcaiegjeQAAAAAAAAAm-KaQJqCpvd-fD6hn3-xL4AAAAAAAAABFE9iltmxxnvYn82cyFFZ0KwAAAAAAAAACH7UuqwN000YfavdusMYbuAAAAAAAAAAF_EVdVfyApPsVUy6u6pxduQAAAAAAAAALl_F8CipdUd9pGgDh42x0pAAAAAAAAAAF8VM9RKSFrLLWk7EeUI8WuAAAAAAAAAAT45l-3EzV2pQer0tpzvWJuAAAAAAAAAAEbuBVZznFiKOLEdwrahXtfgAAAAAAAAAEya2lgd-VMP3xAKP85pX-hQAAAAAAAAAET9rAuKzjpsGWuACV2eUk6AAAAAAAAAAB8oHQ4oPK7To4Ft-o_Rf-MAAAAAAAAAAFAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CANEBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6De01qCjG4YpvC5r_qYJMQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACuCx5RC8g9OTz7PgiGSeLtvwAAAAAAAAAOgY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAFyZ0m5K0hyRADeQkG90vP8AAAAAAAAAAzZ80ToqoZC1OOBoR__NmsnwAAAAAAAAAFXCoBIRW2zeIv8Jr12c2SPwAAAAAAAAACtmXftvn8hrcleDLJfptXeAAAAAAAAAAFoWAu7yjPEQWDBpYB2hRLjAAAAAAAAACEHL8EuHVSmvyyvO0QJQzjvAAAAAAAAACU9i4yH5hvA0rp4RuaXVKyFQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlscYYsnZ_Lwaqr0cHEPo0D185QAAAAAAVFpz", "types": "CAOPBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VXEIZNsetkTnWe5kx41b7A"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87XSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa84V", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZUvWAqmAXt-dgxjo_MjchA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-uTvXT4fd_WKeR1cE-hlLelCQAAAAAAC-xG9XT4fd_WKeR1cE-hlLelCQAAAAAACp71EXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCM6XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJje6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIkMo9I8XHop3y7uLb8wdADAN______AibdG", "types": "EwMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EkobH195Wur44OeENgdTnQ"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXEEgtQ4kMk_MBWrPUAFqVnYywAAAAABqaCzgtQ4kMk_MBWrPUAFqVnYywAAAAABqaf0", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UDdkGUkVb5eesXaBvqvyqQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF88yz5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF780z5k14PsCcDvFyUC1kmlV3QAAAAABF64Dz5k14PsCcDvFyUC1kmlV3QAAAAABFPjyz5k14PsCcDvFyUC1kmlV3QAAAAABFxi1z5k14PsCcDvFyUC1kmlV3QAAAAABGnUi6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sEaRb-2yXJZGrLeypPMviA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZvuSNDzWiYDmLZi_Z1ZVETLoAAAAAAAVHMp", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UIIxveWnS2le63DPhl04ow"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLVSALBRPvgHpUWKmpUo1khAAAAAAAAAAEkoE-yAAYIqbvRVhFPQiQCAAAAAAAAAAA", "types": "CAO-BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bYCfW7EaPTh_vnd_DSsC5w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAADZgiwOUz_dwg5QpZ6rn_mtEAAAAAAAAAAaRZMfsbKLC34Px2zwyEaSpAAAAAAAAAAGK61z3xaGK-rHqmHBTOYNcwAAAAAAAAARSjz2MvPusgDd7v_6YUXcPAAAAAAAAAC1J4eQqgwFH8hGziiVTbtiYwAAAAAAAACOMbaOnaCMmj3Z2Dka8DRidwAAAAAAAAE7vMJZLefDDDN7jSsJGIx5fAAAAAAAAAAxpz26RZIIszjYMjtzkRg4ogAAAAAAAAAMfkbxUTZgljnk71ZMnqJnyAAAAAAAAAH6Ot0HsYHQPmkwmtZkyeI5MQAAAAAAAAC8gHwfGc8BS0hXEJl9pqoeOAAAAAAAAAAEAyQblFWxoSNP2bxYt2XrVgAAAAAAAAAEqnNsUsoPsI60n_EtYkImaQAAAAAAAAA55Sd1lDXLKOOMpS2BYBot_gAAAAAAAAAA", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "thKn-WCpUEzIzuV2FdOJxw"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHh-EgtQ4kMk_MBWrPUAFqVnYywAAAAACIsVKgtQ4kMk_MBWrPUAFqVnYywAAAAACIsMZgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4WlgtQ4kMk_MBWrPUAFqVnYywAAAAACG2jCgtQ4kMk_MBWrPUAFqVnYywAAAAACG2ppgtQ4kMk_MBWrPUAFqVnYywAAAAACG3RwgtQ4kMk_MBWrPUAFqVnYywAAAAABtb2_", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VjZoTTtVYbpedfOtHXez9Q"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAAAUR0nUK_3cT-awvSJLlH7CqQAAAAAAAAGvWwMMb3ohLb_rKhgSQf418gAAAAAAAAAG", "types": "CAMpBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eXATor8dtVm3LPIO_GNaZA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEWB9GVskeRyK4_o3XD61XIAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAqJzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAqdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsk99M4bkjfKmg3-yt9HFm8AAAAAAAAAEW", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_isMSxwsOfQpJC0IwuP96g"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFmUdcEvvhuguaGYCmGWrnWRz1QAAAAACExZR", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3HYswCLIguo6i_KRnM6AYw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-wCEXT4fd_WKeR1cE-hlLelCQAAAAAACkR-sXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdTV", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "743gS6kqzP62ApqBY3aWAg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAACgjGGXT4fd_WKeR1cE-hlLelCQAAAAAACgh57XT4fd_WKeR1cE-hlLelCQAAAAAACgiZlXT4fd_WKeR1cE-hlLelCQAAAAAACg1ASXT4fd_WKeR1cE-hlLelCQAAAAAACg1CR", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vdmPYvdso3nyHwU3P-BxHA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzScEvvhuguaGYCmGWrnWRz1QAAAAACE_-qcEvvhuguaGYCmGWrnWRz1QAAAAACE_n2cEvvhuguaGYCmGWrnWRz1QAAAAACE-1-cEvvhuguaGYCmGWrnWRz1QAAAAACE9WHcEvvhuguaGYCmGWrnWRz1QAAAAACELGkcEvvhuguaGYCmGWrnWRz1QAAAAACEynFcEvvhuguaGYCmGWrnWRz1QAAAAACFykj", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JK8YqiAWSqqVOym-FM3Bcw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABMaP-XSbJ_jD1SaDSikvAxwAAAAAAAAAM9lngTnmeSG1s7rdk_juSMAAAAAAAAAAGHrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACtBnjxOT6ecDtMNaRY7RgRQAAAAAAAAABnzd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX73IOkhtZyjrZNnxzxVPYTQAAAAAAAABEiwGeqNv30_OStpNiHW5afwAAAAAAAABD1XS2aFbrMvbrgkTeGP6LGgAAAAAAAAAJgpel-2y6MT8HpZSUXeX6xwAAAAAAAABH8KfvTX_45EkfeqjFTJPGMwAAAAAAAABHhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAACQhYJDXHe_tXWd6FUCpAvLJAAAAAAAAABERTvkaysuyXpxT9w4uvkQVwAAAAAAAAAOhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAACQhYJDXHe_tXWd6FUCpAvLJAAAAAAAAABERTvkaysuyXpxT9w4uvkQVwAAAAAAAAAOhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAACQhYJDXHe_tXWd6FUCpAvLJAAAAAAAAABERTvkaysuyXpxT9w4uvkQVwAAAAAAAAAOhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAACaWaWdxNGxRcZaZiNc-MTFHwAAAAAAAAAe_yGigQXLGMRH830Q299U-QAAAAAAAAAhhYJDXHe_tXWd6FUCpAvLJAAAAAAAAABERTvkaysuyXpxT9w4uvkQVwAAAAAAAAAOhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAAC2QkkDXMhATwTB2K8md9w1pwAAAAAAAAAZRTvkaysuyXpxT9w4uvkQVwAAAAAAAAAihoA0DA92BMfAA7apys6-iQAAAAAAAAAMngJW-mG0syMkjT4A0Lg1GwAAAAAAAAAmn1iVFjBzfESOHprfqoe0LwAAAAAAAAAJ_4WcH53TxNRbyklfT7cbEwAAAAAAAAAT0J5kDpLU5fTc_ktpkygGRwAAAAAAAAAytqxIWD7h3nTRM9IIo79qNQAAAAAAAABFGbNPtP2ptUhcICMoumcb2AAAAAAAAAApCIYguVhaxe0J-8ClJsrUlAAAAAAAAAAe", "types": "CAMyBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "d_wx1WU4Q3GTegN_cAxP6A"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEW90OXT4fd_WKeR1cE-hlLelCQAAAAAAEWwSEXT4fd_WKeR1cE-hlLelCQAAAAAADUPOkXT4fd_WKeR1cE-hlLelCQAAAAAACnxaWXT4fd_WKeR1cE-hlLelCQAAAAAACney9XT4fd_WKeR1cE-hlLelCQAAAAAACnfV9XT4fd_WKeR1cE-hlLelCQAAAAAACngKlXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhjWXT4fd_WKeR1cE-hlLelCQAAAAAACjs1kXT4fd_WKeR1cE-hlLelCQAAAAAAChrznXT4fd_WKeR1cE-hlLelCQAAAAAACgaYEXT4fd_WKeR1cE-hlLelCQAAAAAACgazlXT4fd_WKeR1cE-hlLelCQAAAAAACga4-XT4fd_WKeR1cE-hlLelCQAAAAAACgX1m", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "531_Sc4IW-g1NnLnDZ_hAw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcM9Xltn711KKFcrKCAYh_ZgAAAAAAAAAE8s5hM6TvWnoP9XP3e8VVVwAAAAAAAAAHwh6xTQPkmoOUUrUOOnnNsQAAAAAAAAAg", "types": "CAOPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YHXfHm0BU3ZDtLvmt4EIRw"}} -{"Stacktrace": {"frame": {"ids": "koE-yAAYIqbvRVhFPQiQCAAAAAAAAAAA", "types": "AQU"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NZH6uNdKRM0PBr1CbdPUbg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAAAdeAxdHY-4DbDT_cuHjXXw_gAAAAAAAAArZC4caaBbQcOc2WclRiklUwAAAAAAAAAMQJ-JVADSuuonf59sOKCy_wAAAAAAAAAPbYxYe2jgm-ZVQ1wIKl60VgAAAAAAAAA1B_TZlmg-i-MShObdqiYcyAAAAAAAAAK9JjiG_BroZFP40tpmv2LaAQAAAAAAAAANT3lk77LF4G-nQZW_WRBUXQAAAAAAAAAH_8CkmXN7rMP1z1mWZ4cysQAAAAAAAAAbvB5-VFNxmRTipezH9t4OWQAAAAAAAABXblY2Zoz09t8zvWWEkNwQ4QAAAAAAAACuIJGZm_kDZxOYo3A2Fee1WQAAAAAAAAEgZgROkWlvV9ujJA-aNSGhMwAAAAAAAABA5VZIXKdThz-hZwdLu0KVfwAAAAAAAAAKGY8FzW1zmT9O6Iy3KHcGZQAAAAAAAAFJ90UIqO2n6jPWAsY9C7Jk5wAAAAAAAAD26l3Q3lLwvaP7rhVtdi_RoAAAAAAAAAAd", "types": "CAMmBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "u26YAXespQsbQjR7YsAYzQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAacLc", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "35FqNK7oEk5oJ-fRh4hptw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACh1ir", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bFqi88DUwWkr_8kK2-MSRw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5WiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATeCaKzXzVKYqqs4wMxzAp3AAAAAAAAAAKxzEX_ryOXWtTMQZYJuG-1AAAAAAAAAAD2XDg5u84AThLncvQweEa6wAAAAAAAAI596H7IcrFu8Zg3f7WMu_LagAAAAAAAAAqztj5Yc58Fi74AN4K12GxCQAAAAAAAAAIeXp6ZabxmzABDzP1KpFPrwAAAAAAAAE4omklHAPZnqPNJHwVpvh2vQAAAAAAAACrqwPQ_i5WGexQYU8q8eVTyQAAAAAAAABzoSoGUxBn_MfT_4Ncm-yGtQAAAAAAAABGFjooOB7UnLRNkyMXgznjWwAAAAAAAACS-3Q9G0-gEaLYyR0fofTdFgAAAAAAAAATkC4ZWtnGZdVrn9r8RWDIrgAAAAAAAAAuVCZTpLkuh_k-G5uf32ejyAAAAAAAAAADOBr97qUzqwJUSLJ5h_ag7QAAAAAAAAFqbe8zzWLemlQSVhalewd_pwAAAAAAAAAywZDKdLfvberhsaqVm0V7FgAAAAAAAAAX5rMKFxe1PcyzU3VKeDU86AAAAAAAAAAGJLnEXoQY4hlx9fukF3_nfgAAAAAAAAAEEljCaLNs8oyF8fQALGTMLQAAAAAAAABVf5p_PMJgJDLSgaMg1oCNpgAAAAAAAABi21z4Mx3dOykPYQ45FXN3RgAAAAAAAABFf5p_PMJgJDLSgaMg1oCNpgAAAAAAAABOEljCaLNs8oyF8fQALGTMLQAAAAAAAABVf5p_PMJgJDLSgaMg1oCNpgAAAAAAAABOEljCaLNs8oyF8fQALGTMLQAAAAAAAABVf5p_PMJgJDLSgaMg1oCNpgAAAAAAAABOEljCaLNs8oyF8fQALGTMLQAAAAAAAABI-tSbHlR91dVpvAdxUOkCnAAAAAAAAAAJOCBJ3b0yd0m46kgQppcopwAAAAAAAAAFSyH3A-L8GuYowpuZ08nsBwAAAAAAAAATMOgPAaY2At24Q0nLro4PXgAAAAAAAAAZpuzfYbB4wiXTg1X1jl7EPgAAAAAAAABx", "types": "CAM2BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jY6an4TJNzicxfsoO4aEFw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAAAbGUY8yORk3TZTSqSlBljzGQAAAAAAAAAZEs-JdNswBBYy0dgOuoAxgQAAAAAAAAAENMPX1MdtzuRZ2k27VY7qAQAAAAAAAAA6F-l3z806Z2whMxir9gnRcgAAAAAAAAA9tyxlgW2MSm0fLKof7M0dQwAAAAAAAAACVAdqcINUx5DgjncB0yc-XAAAAAAAAAAL", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vF_VQLSiCrZAF-ltqCX4Kg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMvBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-Jy_fLEQmYV8Uv4CPynhtQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgb9rcEvvhuguaGYCmGWrnWRz1QAAAAADgcaEcEvvhuguaGYCmGWrnWRz1QAAAAADgcoOcEvvhuguaGYCmGWrnWRz1QAAAAAChhqtcEvvhuguaGYCmGWrnWRz1QAAAAACGv5kcEvvhuguaGYCmGWrnWRz1QAAAAACGxmwcEvvhuguaGYCmGWrnWRz1QAAAAACGI8ncEvvhuguaGYCmGWrnWRz1QAAAAACGMup6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSg76tVKI4mSYDEJ-ABAIpYXcgAAAAAALoLB6tVKI4mSYDEJ-ABAIpYXcgAAAAAALoEa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgIR", "types": "EAMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yGIeKLHM9G7RRknI-piiTA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcNB1", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "a8eRxSiE_6KOXeGPJZDEAg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mlNXT4fd_WKeR1cE-hlLelCQAAAAAAC-nbQXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7rYDHDMd68AxfAV4sQDwaA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbh0SYxe-SHgukLEpCkawSk1QWAAAAAABVxy0Yxe-SHgukLEpCkawSk1QWAAAAAAAAQi5", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fWJaqb09QzwUMPXDtHMSXg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q6HcEvvhuguaGYCmGWrnWRz1QAAAAACETiHcEvvhuguaGYCmGWrnWRz1QAAAAACFt8f", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "asewtAhw0ntqifC47rIgYg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAABhdSoizOL6hk_mFFoq9MTU3QAAAAAAAABu8rqvEU9OEIIP3f56OU7ZnAAAAAAAAABOAJ8qrcXSoJbl_haPhlc4ogAAAAAAAAACX31knMc676bIIEUjaHa0MQAAAAAAAAADTozXD2NzMy0dEH0e02djYAAAAAAAAAEKeRQqY-uKn1zCanFBx5tpKgAAAAAAAAANLaFl4epk0Q6S_D_8elQACwAAAAAAAABjd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlsd-YsnZ_Lwaqr0cHEPo0D185QAAAAAAX1e7", "types": "CAOSBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "za9zfvytpYavwLxYksfHEw"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF88yz5k14PsCcDvFyUC1kmlV3QAAAAABF8vTz5k14PsCcDvFyUC1kmlV3QAAAAABF8dWz5k14PsCcDvFyUC1kmlV3QAAAAABF6-Uz5k14PsCcDvFyUC1kmlV3QAAAAABFPfDz5k14PsCcDvFyUC1kmlV3QAAAAABFxl7z5k14PsCcDvFyUC1kmlV3QAAAAABGnUi6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "f7riNXLCE7Lya9tYdhWvxA"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXDNgtQ4kMk_MBWrPUAFqVnYywAAAAABqaCzgtQ4kMk_MBWrPUAFqVnYywAAAAABqage", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "x_f2mxVuf-0C8zGyqNgR_w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAazVvSNDzWiYDmLZi_Z1ZVETLoAAAAAAAayx-SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcclQSNDzWiYDmLZi_Z1ZVETLoAAAAAAAccSXSNDzWiYDmLZi_Z1ZVETLoAAAAAAAVK9YSNDzWiYDmLZi_Z1ZVETLoAAAAAAAb51SSNDzWiYDmLZi_Z1ZVETLoAAAAAAAVHPJSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcagjSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfMQC", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8vj8M1UtdEZK08xJh31zdQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR4R", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "e7ofbCHl8qRy2q41G8_s7g"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACamW1QO3T5kZR72H8FRXCCwwAAAAAAAAAA", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ze3jQXtgwNkR6O4a_Nqg1Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADCZLXXT4fd_WKeR1cE-hlLelCQAAAAAADCCJDXT4fd_WKeR1cE-hlLelCQAAAAAAC8B8SXT4fd_WKeR1cE-hlLelCQAAAAAACgIzU", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fFW4hYJ0SQeKKNYH-nfcDA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmre", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OoP9hAiZoGUDEMy64jET7g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAAMlBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4pxTtEE_f9QsF_FY1lgc-w"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEWB9GVskeRyK4_o3XD61XIAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAqJzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAqdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAAAjj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABdMWF-ta49FweBhvwuhsiFKwAAAAAAAAAO", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QCh5sHgROUyQz6UM1BRbJg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcoiHXy47Qw5euydEoPUexRgAAAAAAAAAga67hy6D4_aH__IrzfMid7wAAAAAAAAABruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZf4KmPLa6_uw8gRgiw9EUAAAAAAAAAE4ihprad0bkU-u2IU9StodIgAAAAAAAAEqfmVqFyGK_erbPbR830tm8gAAAAAAAAAPXgJxJ-tB1qb-u2fqUxCQQAAAAAAAAABEh4Lh6GnasWPDlVelT8lJQgAAAAAAAABADrGSK6yMQtOpLQKRphq2qQAAAAAAAABMFSfcXaocqiaJ94cn1Eg82gAAAAAAAAAuUT1CLo52HplxPz6JwcoqCQAAAAAAAAAJlfjVNXK_x0C4X5O62984zgAAAAAAAAAFZbvmFtHvqv74jokq3XvBkgAAAAAAAACS2RfKfVPwyqKh_r9U1oFgUwAAAAAAAAAfTJNGpZ5zrxHIWzJGPowW7QAAAAAAAAAEJvETSNUFmQzhSgQRV87p_gAAAAAAAAAbe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACWZXdWkChUCjmBhCYfjJANcwAAAAAAAAA40s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAY-k1yErCu-jNwISnaM-KD7QAAAAAAAAAEj_lFur9yXr9K2vH2fseIFgAAAAAAAAFdqVR5DaLjXEU8jLMRHSvKKAAAAAAAAAAbPBL2-ArIjOWnatSlw0vhzgAAAAAAAAHpHBFcmWqYWFH0QpoGRymingAAAAAAAAAA", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nON9RmBx4umF5B_Of_VNaw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChF6rXT4fd_WKeR1cE-hlLelCQAAAAAAChGmJ", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "l02Tu6tzBSE8eTIc8ew_RQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAACEiSUtuDFidZ_ArB9M-KYzuwAAAAAAAAAqAAahb89jp2nXTHxX6vfDVgAAAAAAAAGxfNq1xcdgQyMKMcU704EIcwAAAAAAAAFlLlS_2xs10ssihc5Uh6NqzgAAAAAAAAAflkKMSIn7LhSdQ5lTlqE-GgAAAAAAAAAA", "types": "CAMmBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8giK6mKV7HDPF-jB4e6ajg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiP4z5k14PsCcDvFyUC1kmlV3QAAAAABJiIRz5k14PsCcDvFyUC1kmlV3QAAAAABJLl1z5k14PsCcDvFyUC1kmlV3QAAAAABHmTSz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkw", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4lZbIrmqX0dcJVBKGnWp9g"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8c", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "C3gJbGJLW5qO4iB7Vj3kzg"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAADz6p2HVF-fC6bGu1PSwJc2kzOgAAAAAACHAL2HVF-fC6bGu1PSwJc2kzOgAAAAAAHHBe2HVF-fC6bGu1PSwJc2kzOgAAAAAAHEJ82HVF-fC6bGu1PSwJc2kzOgAAAAAAHEEy2HVF-fC6bGu1PSwJc2kzOgAAAAAAJcMj2HVF-fC6bGu1PSwJc2kzOgAAAAAAEKYD2HVF-fC6bGu1PSwJc2kzOgAAAAAAEKFP2HVF-fC6bGu1PSwJc2kzOgAAAAAAEI2W2HVF-fC6bGu1PSwJc2kzOgAAAAAAEIU_2HVF-fC6bGu1PSwJc2kzOgAAAAAAEJbZ2HVF-fC6bGu1PSwJc2kzOgAAAAAAEI2W2HVF-fC6bGu1PSwJc2kzOgAAAAAAEIU_2HVF-fC6bGu1PSwJc2kzOgAAAAAAEJc62HVF-fC6bGu1PSwJc2kzOgAAAAAAHS5s2HVF-fC6bGu1PSwJc2kzOgAAAAAAHS1p2HVF-fC6bGu1PSwJc2kzOgAAAAAAE3fo2HVF-fC6bGu1PSwJc2kzOgAAAAAAE2lm2HVF-fC6bGu1PSwJc2kzOgAAAAAAE7CC2HVF-fC6bGu1PSwJc2kzOgAAAAAAE7i82HVF-fC6bGu1PSwJc2kzOgAAAAAAFDHz2HVF-fC6bGu1PSwJc2kzOgAAAAAAEd312HVF-fC6bGu1PSwJc2kzOgAAAAAAEbbt2HVF-fC6bGu1PSwJc2kzOgAAAAAAEbUd2HVF-fC6bGu1PSwJc2kzOgAAAAAAEXPX", "types": "XgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mDMvsWlBM76O6KXIRi4tEA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB8_Hwz5k14PsCcDvFyUC1kmlV3QAAAAAB8_Xkz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiQ6z5k14PsCcDvFyUC1kmlV3QAAAAABHpn0z5k14PsCcDvFyUC1kmlV3QAAAAABHpp5z5k14PsCcDvFyUC1kmlV3QAAAAABHeJQz5k14PsCcDvFyUC1kmlV3QAAAAABHdQDz5k14PsCcDvFyUC1kmlV3QAAAAABHeHZz5k14PsCcDvFyUC1kmlV3QAAAAABFwLgz5k14PsCcDvFyUC1kmlV3QAAAAABGnao", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "37H1sSWP9fHHtDykTwvxJA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAHOgepeYBdrKmAGikZZHzjywAAAAAAAAACvIUAbyMW7bf80Va51E6QcQAAAAAAAAAF_I187UwkDjABEvmHmR4uSwAAAAAAAABtf-B_DnWkY3i33A_-cn2DVAAAAAAAAAAa_iCcRlhs7iF8GyQDr_i9yQAAAAAAAADW4LaiotHNGYdIR8tBjAPtZwAAAAAAAABGIlQ1XNLSC8AG8SGKzC1MsQAAAAAAAABNtLATSye44dZj5qP3wd7yWgAAAAAAAACJGRx4elZZ5Xpl6qP-vsIkdgAAAAAAAAAEOGothoSS_VGQxhefQGBOogAAAAAAAAAM3PWYwmr8WKiucw6_bVd_pwAAAAAAAAAHDuXITtzB7JQM2p8eLBRYdgAAAAAAAAAESvEA_niVYaY-OpBNTk8XvAAAAAAAAAAcR50j_Fakx0mSC9-4NdTEsgAAAAAAAAABJBB8Y32Y7T0w9OJCs-3BZwAAAAAAAAA3osL-AROuaDqXe2LFy29GUwAAAAAAAAABnuo_TPMaY49kAwBo7E4YSAAAAAAAAAAkOD88rfBmy4BfCXerLT5e5QAAAAAAAAA7yhF9CEzH60wdDBblzY1FcQAAAAAAAAAIOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAO1DL81KYIuhFbaCdMgmm0VgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAZHpec9nZGwrrhoUYM845NAAAAAAAAMHTogCgWMgT5mMAMhpNA0IMiQAAAAAADvLF", "types": "CANMBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YFJedgXKyIDWLxlCPDwfQg"}} -{"Stacktrace": {"frame": {"ids": "_QYAzQdAagYTCI2yUMpa7wAAAAAAAMD16tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "AQMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0OyGL51yTh9zlLSWgdw6NA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAV2c9TATIrCMgoDoZOxrWO6gAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJuxWu7bOCGuvy3Ir42torwwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAak0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB0qRvG2N9iYeFyl-3xULRJEgAAAAAAAAAe1xeqGUZm5RNvukFb2REJKQAAAAAAAAAIFtjh-A3lytsNmmUroc108AAAAAAAAAACuimFkk5UuxbH1IL630LmngAAAAAAAAAbVPtMofZCgqrw-l9pGX7aHgAAAAAAAAADRSgrZm24iCMR6dfllqWutAAAAAAAAAAaK_N78LhUkthI1fnHsP1_6gAAAAAAAAC1", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wfVS4y4D58OSyaXvZj-XtQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o6kXT4fd_WKeR1cE-hlLelCQAAAAAAC-pCkXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWwd6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL5ew6tVKI4mSYDEJ-ABAIpYXcgAAAAAApymx", "types": "FAMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rEkYGzV5vYiC3DhSryqVzg"}} -{"Stacktrace": {"frame": {"ids": "R_3RsDYccfUxjNYYah3JZgAAAAAAEhYe-IlGUwajicqSE5-hS5VYigAAAAAAAHbaSZxl-YF9wOaedogsBMtvRAAAAAAAGQAGSZxl-YF9wOaedogsBMtvRAAAAAAAGQBRSZxl-YF9wOaedogsBMtvRAAAAAAAD9N_SZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAADz6pSZxl-YF9wOaedogsBMtvRAAAAAAAFvggSZxl-YF9wOaedogsBMtvRAAAAAAADiW6SZxl-YF9wOaedogsBMtvRAAAAAAAFvyjR_3RsDYccfUxjNYYah3JZgAAAAAAB-5ZR_3RsDYccfUxjNYYah3JZgAAAAAACMUoR_3RsDYccfUxjNYYah3JZgAAAAAAEPzI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjgtIG5EpvTeHopVC9IqkA_kSgAAAAAAAUeCIG5EpvTeHopVC9IqkA_kSgAAAAAAAAxs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD7pU", "types": "KgMMBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Mqlqe7dL-IrMXVeazPB5Zg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2q2cEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETQ8cEvvhuguaGYCmGWrnWRz1QAAAAACFt8u", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "93n0e7h5H7aFXvMK8FoA2w"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEUiA", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vOZHtJ4ahW-g2TWd1-Whrw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAAV_QheDKcYlWwsFE4koFnZNgAAAAAAAABfJLnEXoQY4hlx9fukF3_nfgAAAAAAAAAEEljCaLNs8oyF8fQALGTMLQAAAAAAAAAOT3AJGJKrsX6LrshXC_HMuQAAAAAAAAAVW1Mnd_1YqneVzWUadRzjPwAAAAAAAAA5W1Mnd_1YqneVzWUadRzjPwAAAAAAAAAzUjf1FZuRy6fh56KQd1nyjQAAAAAAAAAR", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9xPGRL1R79V33i_hG1HhlA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADMYfPhlM7fpOuKzX3zIJxLMAAAAAAAAABQjgoPLq3mlyg7cW-Xz24hgAAAAAAAAAAQprbfaPuvU_n-ucbpjQxQ_AAAAAAAAAAj8DgYxzl_EXTxjPKMNwP9uAAAAAAAAABMIfyGrmJO4TRdP2mxshA5zwAAAAAAAADYlSZa8zsk4QhoSwhXWLlSWwAAAAAAAABD7fRblGdKRlNY9QjBlaIJIgAAAAAAAADPhAAL8LO2BH6yQB61J_fHrQAAAAAAAAAA", "types": "CAODBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qtJZCZ940TmjMXNEWgVXDw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbeuIw_I7HzcVMEcOaEL-XEgAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAABDbpFrLpp87SutwNDP7V3ibQAAAAAAAABli98a9V97mb3FGgZG6edCFQAAAAAAAAAw_js9oXEovuvcenIstBqeVgAAAAAAAACuzAIz7NuFqlw3h3Uiyx0xSAAAAAAAAAAEnbxghp8tZ6br5orRTpLdNAAAAAAAAAAFyVj-DhlWsbRwk1ix0xTSnAAAAAAAAAABWsCQmTSDw0k0qcC-8oiYqgAAAAAAAAAbvoqjqV6_-EldPWpE4Bg5QQAAAAAAAAAl", "types": "CAM5BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "s-ueWdcoRW3U3Wl2s7q1wg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACuCx5RC8g9OTz7PgiGSeLtvwAAAAAAAAAOgY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAFyZ0m5K0hyRADeQkG90vP8AAAAAAAAAAzG03owtPMOb_BDAuY6rOWogAAAAAAAAAFXCoBIRW2zeIv8Jr12c2SPwAAAAAAAAACtmXftvn8hrcleDLJfptXeAAAAAAAAAAFoWAu7yjPEQWDBpYB2hRLjAAAAAAAAACEHL8EuHVSmvyyvO0QJQzjvAAAAAAAAACU9i4yH5hvA0rp4RuaXVKyFQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAMKiKQXI5stF5N-InJuXrsjgAAAAAAAAAEL4Zieid3nVkNJbdYJumC3wAAAAAAAAAPMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFTU7DQ3uAw_xM7DAGYMk_cQAAAAAAAAACMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFOa5CkhVOrx2r2YkOsLGOZwAAAAAAAAAeJUqoXh4FCdEByaAYgHthzAAAAAAAAAAKl_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAADUM3h48-oBMi00mRAqhB4IAAAAAAAAAAjNrvcSCGNEuayQcoP_4CXWQAAAAAAAAANp3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAANqUqjB_amR59Lv13Nhle_NwbwAAAAAAEPzb", "types": "CAMvBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bm8lqh7bD2DbMALavVY57A"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t3YXT4fd_WKeR1cE-hlLelCQAAAAAAC-wN9XT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8U6XT4fd_WKeR1cE-hlLelCQAAAAAACgKDl", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EM9AISJikuWZSi4uSs5f_w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAF6huy3RilOiTqQSYKV3mmOsAAAAAAAAAAY28nS3D_gIss5Dax50sSZRwAAAAAAAAAL24UJBfleeloBae8bP6cE0QAAAAAAAABC3UKCqvwKCyoIkRLAE_53mAAAAAAAAAANHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdhm1m5RbQi5GyPX_zeSnkSQAAAAAAAAABXZQcoD_es-Sgi6qHZxwfkgAAAAAAAAA8Z74AIbYzICy-xCAbnzF91gAAAAAAAABJTxXdkaD1k2I8BNI8tO8C0QAAAAAAAAANmwFhvPFJJoW91LX47BPDzwAAAAAAAABvGPv2ypC6givXZK29vBoBXAAAAAAAAAC6gcwvSoMpg-MLbRLF5e2AlwAAAAAAAALN_lnMS5U7_cxWp1BoOwDZzgAAAAAAAAAKkHalUfEHqcn65y0_2ltybQAAAAAAAAHXGlC_4vxkxw2liQlwBvsuFwAAAAAAAAAJfRZxgjNrvwoHRGv8g3hlLgAAAAAAAAAI3tUjisCVy6q_y-ey91GjKwAAAAAAAAAV9ueOMZ5LDXwfOj3sK1vl8QAAAAAAAAANqzJix6zZwzxxnhOaa5oGeAAAAAAAAAB1CM_7hwk6an6NZiLsKSNPdQAAAAAAAADEeXYWOJkkdfixgb7a2cb3dgAAAAAAAALASNDzWiYDmLZi_Z1ZVETLoAAAAAAAypETSNDzWiYDmLZi_Z1ZVETLoAAAAAAAyfPL", "types": "CAMrBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PlesHQMkaxUDV_hg8gFhww"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFbojlkH6U8-uq6rXJn3yJDAAAAAAAAAAEa0W4SIobOysiPgaw1gv_JAAAAAAAAAAQHrXUpqEQk4VDnpaZKgdbiAAAAAAAAAA9U2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAABU3F2z0U59C1y3O1vSXqnJygAAAAAAAAAc6_xlTgG59vnh1ZByxJjaSwAAAAAAAAAc-l0CA__xQUD7yFObowoRZAAAAAAAAAAFmU1sjFC3gdUeQiL-LXu1AAAAAAAAAACg", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Va3LK8uFodhrLyRtybcuhg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAV2c9TATIrCMgoDoZOxrWO6gAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJuxWu7bOCGuvy3Ir42torwwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAak0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB0qRvG2N9iYeFyl-3xULRJEgAAAAAAAAAe1xeqGUZm5RNvukFb2REJKQAAAAAAAAAIFtjh-A3lytsNmmUroc108AAAAAAAAAACuimFkk5UuxbH1IL630LmngAAAAAAAAAA", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sj1IWeYK2LXaE0gPl1F28Q"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66OFZ3CKaS4aU08RhYA19y5ITQAAAAAB610wZ3CKaS4aU08RhYA19y5ITQAAAAAB6vHlZ3CKaS4aU08RhYA19y5ITQAAAAAB44zIZ3CKaS4aU08RhYA19y5ITQAAAAAB45ahZ3CKaS4aU08RhYA19y5ITQAAAAABtNk7", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nfuQzK4dMvkwCIn4oK0vJQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAA5cYiYZLNw79YI2sv5ZzfISgAAAAAAAABnsd1-fzhWHGpZk5BbNZ95mAAAAAAAAAER5uJBJdbCydi3Mb0Lo2CA1QAAAAAAAACKXoncVs_RZ0C2CaElSEtZqgAAAAAAAAAV_jOWl9rQ0a9rjiw4HiJl9AAAAAAAAABccP1LJXs0npB6pviZiQZxrAAAAAAAAABl", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UbnTibb7iUG5Z59b5ewlIw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAAtSAAkutGejeRImCZXeWZ-1wAAAAAAAACLcDDKtM-30WtgKUZUhSPZowAAAAAAAAD0JN-dgFkoqSE-dHBUib5RMAAAAAAAAAC18eUtMUHOvPaofxtlsaqIIgAAAAAAAAAnLU9XPWYPC7EDhPUHuUV0HgAAAAAAAAAFrYhA0b-9yMkVsX5xvflSrAAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TJIfdSm5tRZeEi6vWzdD9Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-Kp", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "z2emazyAu13iRamH5lmUoA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEWB9GVskeRyK4_o3XD61XIAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAqJzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAqdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABZ", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "y81csNzyXiJ1pTbECyjzlw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAABu1IhEUKf_PDCxfheapNhvQQAAAAAAAACI7RFhYe_NpS241I1rFVDmNAAAAAAAAADfyLcvbV13CtkdfmXNFFed3QAAAAAAAAAHLL2AmHorGMGLHFvQ3KWNRAAAAAAAAABye9VBoOb6ap6y2iBqQXec9wAAAAAAAAAa-7qKHNvuu4dQ-NSojX-1nAAAAAAAAAAA", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aAPXh-Ln7dsyIue7-chOWg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABTYQywd7BcCE2h4hN9hN7NgAAAAAAAAAAA", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eP_FGCwl0PRxWWvmJlwk5g"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAAAzr8jPkIagwkcKu3VFH_5eFQAAAAAAAAAFfwrSDgHrTXpAEmJ4bHy8MwAAAAAAAAATTq2A_ghNgr4Sgbd4ToSeBgAAAAAAAAAUg709N2jv23X7Lqzuyik52AAAAAAAAAAzAubeNF84QUpeTFnLAqLSHwAAAAAAAAAJ_l_kTW4fIxkvu3nH51178QAAAAAAAAAVlW9g6oXBy08ikQZIsz5UggAAAAAAAAAB7avj2SrkwzZsc2-hPiEAHQAAAAAAAAArpxlY_-ncZ2Y7rTuLs-CwHwAAAAAAAAAavQFAJpUcUdYpyCu-g_-B-QAAAAAAAAAP3z1OOsQnAKpS1yct9MEg-wAAAAAAAAARvu1niHfy-hSLbNHl3l8G6gAAAAAAAAABGPK7pyl3RjtyKa9WtooOGgAAAAAAAABf", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QYRd432ews7Dx4JLAryfRw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAeZ7IYsnZ_Lwaqr0cHEPo0D185QAAAAAAgvMyYsnZ_Lwaqr0cHEPo0D185QAAAAAAee0gYsnZ_Lwaqr0cHEPo0D185QAAAAAAeeMw", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pWn_IRU-j_6Nwh-gfuAqfg"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAADz6p2HVF-fC6bGu1PSwJc2kzOgAAAAAAB8Cp2HVF-fC6bGu1PSwJc2kzOgAAAAAADCJC2HVF-fC6bGu1PSwJc2kzOgAAAAAADCA12HVF-fC6bGu1PSwJc2kzOgAAAAAACx6e2HVF-fC6bGu1PSwJc2kzOgAAAAAACxeW2HVF-fC6bGu1PSwJc2kzOgAAAAAAD03U", "types": "WwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3C9vph60V3enG2gCmii1lw"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbsKZ3CKaS4aU08RhYA19y5ITQAAAAADKa9VZ3CKaS4aU08RhYA19y5ITQAAAAADA-P6Z3CKaS4aU08RhYA19y5ITQAAAAADA-UOZ3CKaS4aU08RhYA19y5ITQAAAAADAAVxZ3CKaS4aU08RhYA19y5ITQAAAAADABfNZ3CKaS4aU08RhYA19y5ITQAAAAACQ9YwZ3CKaS4aU08RhYA19y5ITQAAAAABtE0MZ3CKaS4aU08RhYA19y5ITQAAAAABtHLPZ3CKaS4aU08RhYA19y5ITQAAAAABtRVx", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OJQp-pLhhKtUabxqe1o08Q"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFVbF", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5nMiVDy9d3FyKI4YMMJNGw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFVZi", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pFiegCzfTyYQuNCyI5Zg9g"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUme", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YYYi3p87Qv-d-cNhljrsYA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAvspzm-_Ca31VwijYVQAZSLAAAAAAAAAB7TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABUfZfGpgZFJokP-jaeydrs0QAAAAAAAAAJjg3LdO4DNz9FsefjUG1F1gAAAAAAAAAA", "types": "CANfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kZfWmwYaJIIOUGCRBPlr6A"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAABWkxlPGvmJaixHgVVGYdR3ZAAAAAAAAAAU0YvYYZqpoRVqaulkjga7JQAAAAAAAAAF6sBKtqBatbzPgogd7p8IQgAAAAAAAAABPp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6IaGOpXjXn5EHF-K9uwEUPQAAAAAAAAAErU2gYsZPORRvUmAaUHS0ngAAAAAAAAAIPp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6TsD0RrBnIgAER8sz4r-hTwAAAAAAAAA45D7Dq5haAPalBjEP77UscQAAAAAAAAAEcGV0DDfmSpIZxUAKnFlOoQAAAAAAAAAPD7HSXO_iqjqFKL1x1h0kQQAAAAAAAAAJAAn_OLmzgN0q8Ywe9O03FgAAAAAAAAAbNCAjj9ga_oZwZ7NBAV35jQAAAAAAAABgLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAMxDXeTINsutWQ3L9FCGjV5QAAAAAAAAAEfrJcVQQvYZxinCGo-1mmtQAAAAAAAAAP3R6peF1IdwfQqmb119dyMQAAAAAAAAAFjRPUUEtO9tA38nKSenaVfwAAAAAAAAAC3R6peF1IdwfQqmb119dyMQAAAAAAAAAFMDjyE5AlqASoc6cxfe5K2wAAAAAAAAAwmxRwXt-8CQt60ehjLjpoTwAAAAAAAAAKl_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAADUM3h48-oBMi00mRAqhB4IAAAAAAAAAAjMj1fVO3bykQ8piLrLc5IFQAAAAAAAAAJp3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAOKE634wiWh6F21tPpXr0Zz3mgAAAAAAEP0L", "types": "CAN_BQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "W24Y25ivMwuM7NhKCx2-SQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIoVZ3CKaS4aU08RhYA19y5ITQAAAAACtIeEZ3CKaS4aU08RhYA19y5ITQAAAAACtOo1Z3CKaS4aU08RhYA19y5ITQAAAAACtNW2Z3CKaS4aU08RhYA19y5ITQAAAAAB0miwZ3CKaS4aU08RhYA19y5ITQAAAAAB0lt16tVKI4mSYDEJ-ABAIpYXcgAAAAAAwAoz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEDQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD4i6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CgMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "du1yLIRbc8pGUnVxG87AUw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAADHgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAet_8P_qgRJaTfBrJGumjgpQAAAAAAAAAA", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AxLFvg4n6uQItdMk3gw_xg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmtF", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sodrqLHefNrUwN3yDuu-2Q"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAAAdeAxdHY-4DbDT_cuHjXXw_gAAAAAAAAArZC4caaBbQcOc2WclRiklUwAAAAAAAAAMQJ-JVADSuuonf59sOKCy_wAAAAAAAAAPbYxYe2jgm-ZVQ1wIKl60VgAAAAAAAAA1B_TZlmg-i-MShObdqiYcyAAAAAAAAAK9JjiG_BroZFP40tpmv2LaAQAAAAAAAAANT3lk77LF4G-nQZW_WRBUXQAAAAAAAAAH_8CkmXN7rMP1z1mWZ4cysQAAAAAAAAAbvB5-VFNxmRTipezH9t4OWQAAAAAAAABXblY2Zoz09t8zvWWEkNwQ4QAAAAAAAACuupzfQOX2x9UY22glBQnzkwAAAAAAAAC9Fgku_l8XxpuCKm1rHnux7gAAAAAAAAAUoEGQwA1Ox2WrtN7jhn-tGgAAAAAAAAAz", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "m77yCqhJC-TV7tjIyUjLSQ"}} -{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimtb6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOK46tVKI4mSYDEJ-ABAIpYXcgAAAAAAlcA76tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbdH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlWJ36tVKI4mSYDEJ-ABAIpYXcgAAAAAAlsoG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlrpu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlqKz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlwjf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlN5a6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlNsK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlOPs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMub6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMqa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMWu6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgDv6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgCV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwA8J6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOBI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN1t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjNJshpS1QtdrBQjGg-LCbfqeSAAAAAAAAF9MSxgb26oKQwlt07if9woPTQAAAAAAAAV0", "types": "IgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SrDodAnZ9uPT0nyBwub87g"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEPD3cOudib0XQsq9y3nJeyAAAAAAAAAAQPHOUiNkmrb6lymlNuXSU6gAAAAAAAABCdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcO9_JyaRKYBdkJrY8OUa6igAAAAAAAAASDJ2lZS85ClNgTnnEk8XThgAAAAAAAAAc", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CjSOPmGxE3Pc5_4gR1HXEg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcM9Xltn711KKFcrKCAYh_ZgAAAAAAAAAE8s5hM6TvWnoP9XP3e8VVVwAAAAAAAAAHwh6xTQPkmoOUUrUOOnnNsQAAAAAAAAAgXmED6DCBgU_nxWWvvj2FeQAAAAAAAAAA", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VAqxR_4yWhELwHpSX2G6ng"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFbojlkH6U8-uq6rXJn3yJDAAAAAAAAAAEa0W4SIobOysiPgaw1gv_JAAAAAAAAAAQHrXUpqEQk4VDnpaZKgdbiAAAAAAAAAA9U2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAABU3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAAAeAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "N25AEjenMUPgCcs2AAiXqg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXry3cEvvhuguaGYCmGWrnWRz1QAAAAACETQV", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vSKLEOnt4ZdPD9kAJmGjbg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9iw7IRM_-U1QtOyzVBZcwIQAAAAAAAAAHnXVSnd1Oj_luwmbCDoUZ0AAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAAt0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdBN2CKYaBpOUbIV1BspF0QAAAAAAAAAMJ1pfAEWmqWCNhh7R3GdmfAAAAAAAAAASE7IGle0kfvhelE-3QmeBCwAAAAAAAAAW0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFz8MLotfDzYWkcVjCT9EUBQAAAAAAAAAA", "types": "CAMvBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MnWo91SdXvpnkjVUdYM0rg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk8Lz5k14PsCcDvFyUC1kmlV3QAAAAABF8Zgz5k14PsCcDvFyUC1kmlV3QAAAAABFxdxz5k14PsCcDvFyUC1kmlV3QAAAAABGnbQ", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AdoI0rjd901gurnJCTWJVQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAE7fiqNEC4hTNfpjbFJ8zPtkAAAAAAAAAAFfFtXuenTBEiIanE9ZLS9KQAAAAAAAACHzpP80T6FdaTGeY1BUSMu-AAAAAAAAAAFi8qUzmADhGx9PMH8RJ_tdAAAAAAAAACPZ41z-remt7jPNWprM_rymwAAAAAAAAOA3M56M_g_f1gYgGNi_mtl_gAAAAAAAALfNleCed7iD5lY9FUQABqcFQAAAAAAAAAEPvVAoy_BDzwgpFCDZC3hTgAAAAAAAADG", "types": "CAMmBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3GQlu4cDmBP0J7ys3CIDFQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAet_8P_qgRJaTfBrJGumjgpQAAAAAAAAAA", "types": "CAMvBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uh-jwsuxuUYFlAJ62euRwQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ2E", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Zx1Svrv0kOSpq-dJ-FTQBg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjXzz5k14PsCcDvFyUC1kmlV3QAAAAABGOHuz5k14PsCcDvFyUC1kmlV3QAAAAABGN3rz5k14PsCcDvFyUC1kmlV3QAAAAABGZEQz5k14PsCcDvFyUC1kmlV3QAAAAABGNSVz5k14PsCcDvFyUC1kmlV3QAAAAABGO_N", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0VAqWGznmKP6FXK4zqZ7QA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACuCx5RC8g9OTz7PgiGSeLtvwAAAAAAAAAOgY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAFyZ0m5K0hyRADeQkG90vP8AAAAAAAAAAzG03owtPMOb_BDAuY6rOWogAAAAAAAAAFXCoBIRW2zeIv8Jr12c2SPwAAAAAAAAACtmXftvn8hrcleDLJfptXeAAAAAAAAAAFoWAu7yjPEQWDBpYB2hRLjAAAAAAAAACEHL8EuHVSmvyyvO0QJQzjvAAAAAAAAACU9i4yH5hvA0rp4RuaXVKyFQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAABTY5_LBGyHlB-tfqMCYDKlJgAAAAAAAABsGf_lEMENHnxizeBtMQocRwAAAAAAAAABsYYc1wpJMhBB0VxP9JiigwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAH1fqjB_amR59Lv13Nhle_NwbwAAAAAAENUY6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ1", "types": "CAOJBQIDBQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eAg08WF8lmIVlNh_qYyNeg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmUeXT4fd_WKeR1cE-hlLelCQAAAAAACgkRWXT4fd_WKeR1cE-hlLelCQAAAAAACgk0nXT4fd_WKeR1cE-hlLelCQAAAAAACgmrvXT4fd_WKeR1cE-hlLelCQAAAAAACgbrN", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "q1sP74JQ43bJB5q4cKtRIQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAC3Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABB5KDO11BWTfkkFO9MFEbTJwAAAAAAAAADoyUgxxOY520Rj3U8w5GHoQAAAAAAAADS_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhDlqFV6xhVekP5-uToPI32ragAAAAAAjj-EqFV6xhVekP5-uToPI32ragAAAAAAwrdvqFV6xhVekP5-uToPI32ragAAAAAAZyRSqFV6xhVekP5-uToPI32ragAAAAAAuql9qFV6xhVekP5-uToPI32ragAAAAAAuqOu", "types": "CANRBQkD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "G0427nwt0KroQkvwzA7egA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFdlH", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vYaocYILvM8dc_gTgLR1Pw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_WDQcEvvhuguaGYCmGWrnWRz1QAAAAAD_YVecEvvhuguaGYCmGWrnWRz1QAAAAACETRW", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JYl32o-03G4ABrH8cW9MlQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPUhSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeX4-", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NmZEPOVWjWJBf47eb30-vw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAO", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nixBByAIlNzP6S-DgkxohA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAEwXaFizeT40CKpdI_o5Zrw0QAAAAAAAAALP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAepBWDMEkxECoqFEbuF_aawAAAAAAAAAAMQNJBtmDNiP_chGYXJszyagAAAAAAAAA3oaGS8UtcL3140G7ruReD3QAAAAAAAAA2YnTzskd9MCNgm1sHtB0zJAAAAAAAAABMRlevsb4n_7FYgGFsfkD1QgAAAAAAAAAu8bRONCZ2HplxP2YHDcA5qQAAAAAAAAAJW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAAA5jjKpARUU3mW6HQ-DZ0nY8AAAAAAAAAAOiLCTWRKOWFgxy9lCZCKQuAAAAAAAAAAA", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "s7fLjmESQgzutRqqKhKAIg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChBOFXT4fd_WKeR1cE-hlLelCQAAAAAAChCYUXT4fd_WKeR1cE-hlLelCQAAAAAAChFbZXT4fd_WKeR1cE-hlLelCQAAAAAAChFLIXT4fd_WKeR1cE-hlLelCQAAAAAACgSzoXT4fd_WKeR1cE-hlLelCQAAAAAACg6i1XT4fd_WKeR1cE-hlLelCQAAAAAACh1Di6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4cstsRMDoVu7vb1ZvH1EzQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8u8XT4fd_WKeR1cE-hlLelCQAAAAAACgaVYXT4fd_WKeR1cE-hlLelCQAAAAAAChwJG", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JnSKFHek1VX4hQrcBvK6Ug"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFleC", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xdSUu7a3b1m64nGHPCzjtQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9ALUz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ao8z5k14PsCcDvFyUC1kmlV3QAAAAABKEYE", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "l8E3vSloXP4dGqDQFAfS1g"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABFvIYxe-SHgukLEpCkawSk1QWAAAAAAAANUzYxe-SHgukLEpCkawSk1QWAAAAAAAANPkYxe-SHgukLEpCkawSk1QWAAAAAAAA0OOYxe-SHgukLEpCkawSk1QWAAAAAAABq0D", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sczC8NZ4ijZkOgrx_9LW8w"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAxrAh73n3G8p4dXg695aDMigAAAAAAAAAJzx9IOzRpYLcrlbiJ1gStmwAAAAAAAAAM_orFLBX4vpmigxovAnXMlwAAAAAAAAAFV-BrlcNQ7BgfHtC7BLNw6QAAAAAAAAA5axgEJXApvqeO8NKYR7cB6AAAAAAAAAAJm6LPNSFO1-j9qyfUqm5ykAAAAAAAAAAXvCGd3lsIz-VHcGmd-xEM8QAAAAAAAABpZU5AuXlgdgIyHSjGyxSQTQAAAAAAAADn0xjqN2eHOKsjzvKPeuH6xQAAAAAAAAAI94c0iuzzyiq2admvir0-DQAAAAAAAAA9z_ZeRXCxHeNXTu6DB2OR1gAAAAAAAAACiFkuHlkQPsBsMnUTpjsUKgAAAAAAAAAF0Cdt9wyWxnG2B-xGXMO6owAAAAAAAABpyYF5YWbjTLokor9oKz_A5AAAAAAAAAANDYw6-LyNoVsQdM43hcJCegAAAAAAAAAI3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAA52Uf8NlMClggx8jaziUTJXlmWAAAAAAAAQEs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMgBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Tv9_UdgbHXgClRQg7kZh6g"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyn-Z3CKaS4aU08RhYA19y5ITQAAAAABzzZNZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyrfZ3CKaS4aU08RhYA19y5ITQAAAAABz4cvZ3CKaS4aU08RhYA19y5ITQAAAAABz59V", "types": "HwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tni8OBdz6TpUMf5YmlBpkQ"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8EYxe-SHgukLEpCkawSk1QWAAAAAAAAIcEYxe-SHgukLEpCkawSk1QWAAAAAAAAH1o", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RakQwb6TZGrlrD1xg1MS9w"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYr1L9Bd3XIiGWasJdN8trI5tgAAAAAABWosL9Bd3XIiGWasJdN8trI5tgAAAAAAAmaPL9Bd3XIiGWasJdN8trI5tgAAAAAAAmSUL9Bd3XIiGWasJdN8trI5tgAAAAAAAkMiL9Bd3XIiGWasJdN8trI5tgAAAAAAAXb5L9Bd3XIiGWasJdN8trI5tgAAAAAABcjW6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ8bZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ7vM", "types": "BwMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aTZihWAEPXUldJhLCeEBBg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBOeYxe-SHgukLEpCkawSk1QWAAAAAABWB4eYxe-SHgukLEpCkawSk1QWAAAAAABWCYO", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "v1g3luunQaTy0sgJ7RCzFA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzScEvvhuguaGYCmGWrnWRz1QAAAAACE_-qcEvvhuguaGYCmGWrnWRz1QAAAAACE_n2cEvvhuguaGYCmGWrnWRz1QAAAAACE-SpcEvvhuguaGYCmGWrnWRz1QAAAAACE_1rcEvvhuguaGYCmGWrnWRz1QAAAAACFX-EcEvvhuguaGYCmGWrnWRz1QAAAAACFYKxcEvvhuguaGYCmGWrnWRz1QAAAAACFlcEcEvvhuguaGYCmGWrnWRz1QAAAAACEK9V", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eFZWod3ShZzIho6L40kyaQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcDY6SNDzWiYDmLZi_Z1ZVETLoAAAAAAAvtxjSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt-hxSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcuMGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt_WVSNDzWiYDmLZi_Z1ZVETLoAAAAAAAxwWkSNDzWiYDmLZi_Z1ZVETLoAAAAAAAOnHM", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6VlRZTvCAGEjKAJI9WErGg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAAAetY5fHNfhF2VRLe_6BhL5dgAAAAAAAAAFwh6xTQPkmoOUUrUOOnnNsQAAAAAAAAAA", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "a3dWczo-TxKbn0vDhRIXuw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACu-VgZWZvvoe_9HhGDZJCzLgAAAAAAAAAO7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAFk3HyWSdTGgne1xIId1mIvAAAAAAAAAAzY8GNsuiR6IzsSj-GbWOIwwAAAAAAAAAFmVBN-6O2zeIv8GsCRrlSswAAAAAAAAAC7skvoqQ_JlmRN5w43B7kuQAAAAAAAAACl00Z5a3xKQTn8W8_ANiQ2gAAAAAAAAAFZa0P_0e34shcw6VJJ_B5XgAAAAAAAACWLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC33kqKIOk7SslvcfRGmqs1wAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOEnRoHyZazasm_zTjL5tnOgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAANUz634wiWh6F21tPpXr0Zz3mgAAAAAAENTp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALka76tVKI4mSYDEJ-ABAIpYXcgAAAAAALiQnIG5EpvTeHopVC9IqkA_kSgAAAAAAAb-p", "types": "CAMtBQIDCwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "V6pL6H57Sh06W9eadqo0ag"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtInlZ3CKaS4aU08RhYA19y5ITQAAAAABtHkpZ3CKaS4aU08RhYA19y5ITQAAAAABtHTnZ3CKaS4aU08RhYA19y5ITQAAAAABucBw", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3Xgi2WyDfYTM06WuIqjfkw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw1x4XT4fd_WKeR1cE-hlLelCQAAAAAACwXE7XT4fd_WKeR1cE-hlLelCQAAAAAACwXIm", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "S4QSTs49REr7TSb5qbbUGQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFdkIcEvvhuguaGYCmGWrnWRz1QAAAAACFWIHcEvvhuguaGYCmGWrnWRz1QAAAAACFVZ1cEvvhuguaGYCmGWrnWRz1QAAAAACFWTZ", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NEr5ZXND311_OYMu-NMslw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETRC", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SFu0TnwDMO-fagKeZiwsbw"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFlg0z5k14PsCcDvFyUC1kmlV3QAAAAABFlxR", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CROrpVXcmXQOxuX7oY29og"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAAAe3bipPb-lPFytoX0zurH-oQAAAAAAAAAA", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "V8737ugipSYB_laFotiYpg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAA", "types": "CAMpBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nwg53akFiAKZJpHiqCwAbQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACHFv8Z3CKaS4aU08RhYA19y5ITQAAAAACGkIKZ3CKaS4aU08RhYA19y5ITQAAAAACHBnFZ3CKaS4aU08RhYA19y5ITQAAAAABzIEpZ3CKaS4aU08RhYA19y5ITQAAAAAByyXAZ3CKaS4aU08RhYA19y5ITQAAAAABwOdiZ3CKaS4aU08RhYA19y5ITQAAAAABv1M7Z3CKaS4aU08RhYA19y5ITQAAAAABv3UA", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hrR6ASxOEteokggjxZKMeA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEWB9GVskeRyK4_o3XD61XIAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAqJzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAqdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcO9_JyaRKYBdkJrY8OUa6igAAAAAAAAASDJ2lZS85ClNgTnnEk8XThgAAAAAAAAAfCpvjWyzlv7sy206ARLr_PwAAAAAAAABh", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ONg1QQM5k43WL1XUwy52Hg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF_IhPXrChwahxbJ63NZZANQAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4rDcHLjUrpvKg-XXDfFGKmAAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADv9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABDHfFlM3axnhO28EteQn-2WAAAAAAAAABJ5utt2dQ8HKrTepHdNpprxQAAAAAAAADL6XNnO9SeJ40ZM7baZ84oEgAAAAAAAABVLll_E1k3FfR43EQBXwU1dgAAAAAAAAAIrywk-6b8WKiuckZ62dxSSwAAAAAAAAAHiX3hg20o3ZB-dQ1wA5bFxgAAAAAAAAAEomA88yQfT91566xoyEY7sAAAAAAAAAAcrrWuYAakx0mSDLYXP-NBMgAAAAAAAAABK-xWzbOpXq--Qycbjj-mDwAAAAAAAAA3L1OydAndq8IT7nNSF3yNbAAAAAAAAAAkewU9RfzsPed7JATT94aw-wAAAAAAAAApfZ3COijH60wdDIIVUpSInQAAAAAAAAAIx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlsd-YsnZ_Lwaqr0cHEPo0D185QAAAAAAX1e7", "types": "CANSBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lXS9jaakohlJ8WgrZlMjbA"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACe-XXgtQ4kMk_MBWrPUAFqVnYywAAAAABxp4WgtQ4kMk_MBWrPUAFqVnYywAAAAABxXQ9gtQ4kMk_MBWrPUAFqVnYywAAAAABxXzEgtQ4kMk_MBWrPUAFqVnYywAAAAABxZkkgtQ4kMk_MBWrPUAFqVnYywAAAAABxXzEgtQ4kMk_MBWrPUAFqVnYywAAAAABxZkkgtQ4kMk_MBWrPUAFqVnYywAAAAABxXzEgtQ4kMk_MBWrPUAFqVnYywAAAAABxZA7gtQ4kMk_MBWrPUAFqVnYywAAAAABti24gtQ4kMk_MBWrPUAFqVnYywAAAAABrffkgtQ4kMk_MBWrPUAFqVnYywAAAAABqJUagtQ4kMk_MBWrPUAFqVnYywAAAAABqIcGgtQ4kMk_MBWrPUAFqVnYywAAAAABqID8", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9CvZpABHsErJ2oaka4jO4w"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgbuX", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CCqMRHd4WGpx3xij440EOA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPBxI5O-imEgV3N9x_K1cpQwAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAITQJwJt0-vl6QQoIDFyT9WgAAAAAAAAA3bm1gP3yGnFKBFczLxT3-LQAAAAAAAABEi8xLrghLCR3CLFjtylOjjAAAAAAAAAAkEu2eTQ_3gXX-hva2wFAN4AAAAAAAAAAHm_vFRi2fRRTLPHNf1t7ZcQAAAAAAAABJBFA4SysMtx9fo02P0NGNMQAAAAAAAAAa8ijKSIS-axMtZNAQCt9HjQAAAAAAAACtisG4XFXxe-F-cnbJLaRjfQAAAAAAAAAWHFnb_IVy4MjK7Vjuq2DN6gAAAAAAAAAaz1q9rF3ceWm3ZLvu4I6PuwAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "u2X_MgQedAiUni8lXoCIrw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACaiPVGKFSJxOxxesodHaSqSwAAAAAAAAAA", "types": "CAMpBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zY70RGM6lV3NgAwSeTX8Tg"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOCDZ3CKaS4aU08RhYA19y5ITQAAAAAB45SNZ3CKaS4aU08RhYA19y5ITQAAAAAB45bxZ3CKaS4aU08RhYA19y5ITQAAAAABuFVgZ3CKaS4aU08RhYA19y5ITQAAAAABtHM_Z3CKaS4aU08RhYA19y5ITQAAAAABtGudZ3CKaS4aU08RhYA19y5ITQAAAAABtPQh", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JhEjVrFwxs0Uy2lBICC0hw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAAYywctG_sMzzXt8DhXRU3jGwAAAAAAAAAfO0QBRq09v03gOY7wcqwe-QAAAAAAAAAEWV6g6bHiSUaQ_18ghJ6gvwAAAAAAAAPqzVl_JFLMBO6_XcJyl0ewxwAAAAAAAAEJAU1UxR09cGAZB2y_cCThHQAAAAAAAAEC", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MLRa2nw0cHalfHkTovbapg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbPkXT4fd_WKeR1cE-hlLelCQAAAAAACi_9XXT4fd_WKeR1cE-hlLelCQAAAAAACiJjoXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaZ", "types": "DwMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3N5lLpTOYxG1gCT2yPAYAg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAAeOWoia3OO91L6Q6k2Ypn2XgAAAAAAAAAW4LWodyiv9Hy4HicwczMhQwAAAAAAAAAKf7zfB261PmeVR0CVV6m2gAAAAAAAAAAJ_NrJ8Q-i9cRRxMzl4paxGAAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAANpDpp6LgRqCGeGjs7cnnwItcAAAAAAADtca6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALR2K6tVKI4mSYDEJ-ABAIpYXcgAAAAAALRub6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALko96tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf", "types": "CAMVBQIDCgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JqJc9Tw8mUc7OkItUIvw5g"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD4s-", "types": "JAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AuqG1b42cXBbKiNJcLaKpw"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB8_Hwz5k14PsCcDvFyUC1kmlV3QAAAAAB8_Xkz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHphgz5k14PsCcDvFyUC1kmlV3QAAAAABG-csz5k14PsCcDvFyUC1kmlV3QAAAAABHCmp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmu46tVKI4mSYDEJ-ABAIpYXcgAAAAAALSUu6tVKI4mSYDEJ-ABAIpYXcgAAAAAALQsy6tVKI4mSYDEJ-ABAIpYXcgAAAAAARPAa6tVKI4mSYDEJ-ABAIpYXcgAAAAAASenT", "types": "CgMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vHlfPkBgdyUjCnS7-7m_jg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgJxz5k14PsCcDvFyUC1kmlV3QAAAAABFk6jz5k14PsCcDvFyUC1kmlV3QAAAAABFjYEz5k14PsCcDvFyUC1kmlV3QAAAAABGgQQz5k14PsCcDvFyUC1kmlV3QAAAAABF400z5k14PsCcDvFyUC1kmlV3QAAAAABFkWAz5k14PsCcDvFyUC1kmlV3QAAAAABGZKhz5k14PsCcDvFyUC1kmlV3QAAAAABGSTI", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Kv93tElXuO9W5qREarSlDw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP_9Y", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dPivlAC6aaFKRkKmSRwlpw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAqeSs1xpPdaQi6BA9wz10SrwAAAAAAAAA5TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABbXyIB1JXxkoOQjMae8CICgwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADWifN9r0wurhPb3dG8PudTpAAAAAAAAAASywRpFKHnyqIdEibpvZWLtAAAAAAAAAAA", "types": "CANhBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xgQ5fvtkK4YCunRGORxAiQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP_kC", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "28KA4slgI2GZmK9Ldp9xgg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABda68f5mgZFs3OaBztew54AAAAAAAAAAM9lngTnmeSG1s7rdk_juSMAAAAAAAAAAGHrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACtBnjxOT6ecDtMNaRY7RgRQAAAAAAAAABnzd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX73IOkhtZyjrZNnxzxVPYTQAAAAAAAABEiwGeqNv30_OStpNiHW5afwAAAAAAAABD1XS2aFbrMvbrgkTeGP6LGgAAAAAAAAAJgpel-2y6MT8HpZSUXeX6xwAAAAAAAABH8KfvTX_45EkfeqjFTJPGMwAAAAAAAABHhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAACQhYJDXHe_tXWd6FUCpAvLJAAAAAAAAABERTvkaysuyXpxT9w4uvkQVwAAAAAAAAAOhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAAC2QkkDXMhATwTB2K8md9w1pwAAAAAAAAAZRTvkaysuyXpxT9w4uvkQVwAAAAAAAAAihoA0DA92BMfAA7apys6-iQAAAAAAAAAMl3JM1bjm-MAf8bfDQ-QCYAAAAAAAAAAbX8YzaoKCeAD8Cw8XQyFnXgAAAAAAAABtR_9SnG3su4ZfR3oq1nyragAAAAAAAAAcjR-SDIwuQ0TSygDzL16iAgAAAAAAAAAF2KV_VaafQZuYC-E-4iUNYwAAAAAAAAAA", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HBL0k7Q3NY1Rzs8CB4mIaQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAP4nyMCPt5M-rbb158Tnrz3sgAAAAAAAAA0i__VMh3MgmTJp7v_qMbssAAAAAAAAAA1qwd0u0yf77aYVcTrTir5kQAAAAAAAAAFqwd0u0yf77aYVcTrTir5kQAAAAAAAAAFOD88rfBmy4BfCXerLT5e5QAAAAAAAAA7yhF9CEzH60wdDBblzY1FcQAAAAAAAAAIOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyFT", "types": "CAO8BQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WvJZCAk7gVxCX3Q5TFv5cQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAnEGqyFI4UBcYw0uODaUlP_QAAAAAAAAAEo7sR_pIbiVV_Z8TfMWbBfAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALVhUIBMnDjpGauL-PhicCqgAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl_plqR4x5xi_qOVu9JWCxQAAAAAAAAAEYNvLePk3bv25BUHN3KzEXQAAAAAAAAChMo8MRZcTTA5MSH5mIc8c7wAAAAAAAAABnd8ByWx0Um8uF6bezxKuxAAAAAAAAAAEZWVXkJ8qrKOhTkKXzBlP4wAAAAAAAAAGQiTo58FObDGDVxhW5ylvXwAAAAAAAAAPBFGjgFTdK1xnfs0xj5apUwAAAAAAAAAEP9BGxoNfJ5xFs47cHe23_gAAAAAAAABKLG1iCWXc581Ya7-aKQE_xgAAAAAAAAAgkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAg4aWABwF73Np6FFZYc2m-kwAAAAAAAAA0pSVcwHLkS-nxPYoJIIKFcQAAAAAAAAAGEkre_h4w6uLsxTrYKbKEJQAAAAAAAAAQctmMOnzOFMQjuPFQFR1IjgAAAAAAAAA0USV55yZg8dR921Rrum2migAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAOB2634wiWh6F21tPpXr0Zz3mgAAAAAADeOk634wiWh6F21tPpXr0Zz3mgAAAAAADeLr", "types": "CAMdBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "69ND-pArCGiPGEzmwahftg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXe87Yxe-SHgukLEpCkawSk1QWAAAAAABXeBcYxe-SHgukLEpCkawSk1QWAAAAAABXc0kYxe-SHgukLEpCkawSk1QWAAAAAABV0xlYxe-SHgukLEpCkawSk1QWAAAAAABV0JhYxe-SHgukLEpCkawSk1QWAAAAAABVX-NYxe-SHgukLEpCkawSk1QWAAAAAABVXkkYxe-SHgukLEpCkawSk1QWAAAAAABVVnbYxe-SHgukLEpCkawSk1QWAAAAAABU5SJYxe-SHgukLEpCkawSk1QWAAAAAAAjErlYxe-SHgukLEpCkawSk1QWAAAAAAAAQGjYxe-SHgukLEpCkawSk1QWAAAAAAAAFMTYxe-SHgukLEpCkawSk1QWAAAAAAAAFEm", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "a7q9y6bl0FIQxuLqZqANIQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlfQcEvvhuguaGYCmGWrnWRz1QAAAAACEh4acEvvhuguaGYCmGWrnWRz1QAAAAACEiiHcEvvhuguaGYCmGWrnWRz1QAAAAACEipkcEvvhuguaGYCmGWrnWRz1QAAAAACEYEMcEvvhuguaGYCmGWrnWRz1QAAAAACFyj26tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ8bZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ75B6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ7fO6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJqR56tVKI4mSYDEJ-ABAIpYXcgAAAAAAJp2k", "types": "BwMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fYmJVY6gIzPkbudFgeXtGw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADAYnk6E9ReVsUsstHFtTIiXQAAAAAAAAAyfT0k69QoWDcgSGG9DEbGKQAAAAAAAABU3yZRDT05_hGvUj8jRvChFAAAAAAAAAOxYwdW3gX5WZ-203-ZtRSpdAAAAAAAAAAGLyZJMdHx6B3ILhnNOrY3PgAAAAAAAABM8VQNjJHt4dBRU5VSN3KkiQAAAAAAAAECfEW2ISlTz6bBNQ3Y_nEaswAAAAAAAABDdT5WZm8-ag4VFDZf0HaaMAAAAAAAAADorBhH0j2VK5-SoJFag65jhQAAAAAAAABE198FZCTxq16d0UJlhg9MrgAAAAAAAAABDYrBcnSnxKpDp2GRNDxXQAAAAAAAAAABsekohEm28rHxpRudfXENQgAAAAAAAAAEQN3Ei4y0jjQeG3JY3GoqzgAAAAAAAAAA", "types": "CAMnBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "n9MMvRTyGAAOhcwC8K3gwg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAAKVxedDtBJDHBT3py1Po37JwAAAAAAAAAEUxF4eodNrRz9YekFWR4hsgAAAAAAAAAEj6I1JIHpAL-9bOzL7P9UBAAAAAAAAAAYvwVacZyAmI4I5xgPCj5r7AAAAAAAAAAFAfmtWvbwy96-Rbl9WqnxlgAAAAAAAAAFf-LSn9wX46A3CkgiZY0xDQAAAAAAAAAJv7KU4D139nBA6AxX3ds_IgAAAAAAAAACjtfbz0me8CwX66rYfJIFGwAAAAAAAAAIXaQ23qLqcYG8xTfG0MeEHwAAAAAAAAAFFFBo4766LxTMArq2lpjbGgAAAAAAAAACAMk_trcRDqgWwE9O1EQdVAAAAAAAAABfSiNQN5yWanN9PLQ_u0EHrAAAAAAAAAAS", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8MP07z4BgOJ1bvy0UuehdQ"}} -{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHbaI-7FSPUFvGFUkGA6jlppywAAAAAAC0iva7-X3xxhJ0wnbzlLWX3GVgAAAAAACCwLa7-X3xxhJ0wnbzlLWX3GVgAAAAAABjEza7-X3xxhJ0wnbzlLWX3GVgAAAAAAAusWa7-X3xxhJ0wnbzlLWX3GVgAAAAAAAqFXa7-X3xxhJ0wnbzlLWX3GVgAAAAAAApHuxFA0V1dCXRoFBkiljWo8aAAAAAAACc-uxFA0V1dCXRoFBkiljWo8aAAAAAAACaymxFA0V1dCXRoFBkiljWo8aAAAAAAACYfqHWXbCIJWwuTsAgHvMObKpwAAAAAAAuOdHWXbCIJWwuTsAgHvMObKpwAAAAAAAtagHWXbCIJWwuTsAgHvMObKpwAAAAAABNhoHWXbCIJWwuTsAgHvMObKpwAAAAAABMu6HWXbCIJWwuTsAgHvMObKpwAAAAAABKG2_0p5KjcGZxNrWgyCAXUjfgAAAAAAA7d6_0p5KjcGZxNrWgyCAXUjfgAAAAAAA0VKqx4FMnWuIFjZ3ox_KYmoKwAAAAAAHII-UJmIMEc6K8gJ39NHYaD0WwAAAAAACXKsUJmIMEc6K8gJ39NHYaD0WwAAAAAACUyJ", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vSb0Ydm_vV2aKQF-Jm54LA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAACwH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_z_VvquVclvHpAURI8mubg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7zyXT4fd_WKeR1cE-hlLelCQAAAAAAC-8B3XT4fd_WKeR1cE-hlLelCQAAAAAAC-ykpXT4fd_WKeR1cE-hlLelCQAAAAAACp71EXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi5iPXT4fd_WKeR1cE-hlLelCQAAAAAACi09JXT4fd_WKeR1cE-hlLelCQAAAAAACiKcMXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALt0Z6tVKI4mSYDEJ-ABAIpYXcgAAAAAALtxs6tVKI4mSYDEJ-ABAIpYXcgAAAAAALsuZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAANyj06tVKI4mSYDEJ-ABAIpYXcgAAAAAANyhU6tVKI4mSYDEJ-ABAIpYXcgAAAAAANudK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0f56tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0eQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0ZR", "types": "EgMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g2ssOcOjXCCaYX7ZddtppA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmrvXT4fd_WKeR1cE-hlLelCQAAAAAACgbqA", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Zim2W2rYjohz6B9iTayl7Q"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD49fSZxl-YF9wOaedogsBMtvRAAAAAAADiW6SZxl-YF9wOaedogsBMtvRAAAAAAAEk3JSZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAADz6pSZxl-YF9wOaedogsBMtvRAAAAAAAGiUXSZxl-YF9wOaedogsBMtvRAAAAAAAE2aQSZxl-YF9wOaedogsBMtvRAAAAAAADdgDR_3RsDYccfUxjNYYah3JZgAAAAAAGOAB", "types": "UwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KwiR_SttfPlB9Vl4LoTdOg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf_G", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rm376MXTBGWCRQJ58nODcA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABSE9Oz5k14PsCcDvFyUC1kmlV3QAAAAABSFH3z5k14PsCcDvFyUC1kmlV3QAAAAABSDWaz5k14PsCcDvFyUC1kmlV3QAAAAABSCz1z5k14PsCcDvFyUC1kmlV3QAAAAABKDZC", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "j6b-IQfEVBkMZQup2Hh2og"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAPx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABWdRMG3BjNfH2se-egabnU-QAAAAAAAABAEkcy7So9YVOh7Q9iMhhrxQAAAAAAAABM3SSuw7AKPJ9yFEVSwC_lbAAAAAAAAAAyXLN55eJ2HplxP0Fb2YBmOQAAAAAAAAAJ_6rkq2S7o8rMRQJ9AofzJAAAAAAAAACLjwkBY0s-EHDmaMTnMHI2lgAAAAAAAAAYLLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACvqKrM4v33j8Ui9JyIz2QXDgAAAAAAAAA4ZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAAB1buaxzZBrb6WHETKUkwVYegAAAAAAAAAOp7qKIzzn4w0j5_vK-B0EmwAAAAAAAABRLk5CiyX7v99dORWhD5rxWQAAAAAAAADQ", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uYDpyfGeOoejLkBpWIKnAw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFJSGf2yEAEhxiBfW1U6B9NgAAAAAAAAAEv-dzrDzLbKAbYGTnBhfr9gAAAAAAAAAM4iaBbZIIwXRBOYMSVscz2wAAAAAAAAADf5pCmW13zl5OWUDLG_ClrwAAAAAAAABNynHqfILVzOOqJs-5yJf4gwAAAAAAAAAeU2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAABU3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAABd9JMKs9KQTgczUAMQRnFzHQAAAAAAAAAOEEKC5tu_ceJ8owkppwxOEgAAAAAAAAAgnob3zMVK_yh-lnKj6J3qXwAAAAAAAAAe3bipPb-lPFytoX0zurH-oQAAAAAAAAAA", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BcwMHWALpdPlatMjiBW_wg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7zyXT4fd_WKeR1cE-hlLelCQAAAAAAC-8B3XT4fd_WKeR1cE-hlLelCQAAAAAAC-ykpXT4fd_WKeR1cE-hlLelCQAAAAAACp73vXT4fd_WKeR1cE-hlLelCQAAAAAACilHeXT4fd_WKeR1cE-hlLelCQAAAAAACinctXT4fd_WKeR1cE-hlLelCQAAAAAACinctXT4fd_WKeR1cE-hlLelCQAAAAAACinbEXT4fd_WKeR1cE-hlLelCQAAAAAACinL0", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xTmXxLtxYtdjX3OFWgcBtA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFwcXT4fd_WKeR1cE-hlLelCQAAAAAACiINvXT4fd_WKeR1cE-hlLelCQAAAAAACiMJaXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XL31E2Uzdrei76bGcaLiXw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA8Q1rqFV6xhVekP5-uToPI32ragAAAAAA8QssqFV6xhVekP5-uToPI32ragAAAAAA0VStqFV6xhVekP5-uToPI32ragAAAAAA0UfqqFV6xhVekP5-uToPI32ragAAAAAA0XMyqFV6xhVekP5-uToPI32ragAAAAAA6YnHqFV6xhVekP5-uToPI32ragAAAAAA6R-3qFV6xhVekP5-uToPI32ragAAAAAAe1ex", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fNOV0V-zSZCXeYqmr986ow"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSHi", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CdDJAFAwLQDf0PF-efgD8w"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCYyXT4fd_WKeR1cE-hlLelCQAAAAAAEOC7XXT4fd_WKeR1cE-hlLelCQAAAAAACwzdWXT4fd_WKeR1cE-hlLelCQAAAAAACwt8NXT4fd_WKeR1cE-hlLelCQAAAAAAChWnJXT4fd_WKeR1cE-hlLelCQAAAAAACgUOc", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CHeythk0HZH6YmI9vQ5rRw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA74ncZSkKN3zNxr0HYuO2pqe5hQAAAAAAd5KiZSkKN3zNxr0HYuO2pqe5hQAAAAAAd5B6ZSkKN3zNxr0HYuO2pqe5hQAAAAAAdUMGZSkKN3zNxr0HYuO2pqe5hQAAAAAAdcSmZSkKN3zNxr0HYuO2pqe5hQAAAAAAdA8o", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9ROJ1260u7kvs85ZsQXWJw"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYpqL9Bd3XIiGWasJdN8trI5tgAAAAAAA10VL9Bd3XIiGWasJdN8trI5tgAAAAAAA1LtL9Bd3XIiGWasJdN8trI5tgAAAAAAA0Y-L9Bd3XIiGWasJdN8trI5tgAAAAAAAzUfL9Bd3XIiGWasJdN8trI5tgAAAAAAAKa-L9Bd3XIiGWasJdN8trI5tgAAAAAAAq4VL9Bd3XIiGWasJdN8trI5tgAAAAAABckC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz01", "types": "CAMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pvgv_ahPIvTWXkMY-zr13A"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACl", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MWvxOIZDGq4hR0RiTlBjWw"}} -{"Stacktrace": {"frame": {"ids": "klPbOjidNHRsFecU34u2tQAAAAAAAAmpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGklPbOjidNHRsFecU34u2tQAAAAAAAAlaJD-mlhc2khMaMvypB7uCowAAAAAACvxIJD-mlhc2khMaMvypB7uCowAAAAAACrBZJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNLbtJPgD2DsxuaRUZZI3jKQAAAAAAAAG19OSIwt7_UxT7zZoUvqu4WwAAAAAAAAAvGECkj5EzwizbnHTSy11lwAAAAAAAAACsIWCarP2Cg-zGilSmP2FwvAAAAAAAAAAxPF46WYS52oqKW28TVdZwhwAAAAAAAABl4SjPzL5sRJ4NoaPppbKRXQAAAAAAAAAyzV-zz_SMeRtFDojkROWSSwAAAAAAAACIZtRK4uMy_Wfw-N_iQmSerQAAAAAAAAA1qtNW2Hg_2f_0M1iSBcGbyAAAAAAAAAAVoGmEXpJvjzbRv2r-bFFlfwAAAAAAAAA7EI5wLwdv0nxJGTj51HGsnwAAAAAAAABpqs9QVbSai1fV6zxJyggieQAAAAAAAABfBUIjEExV8zypjFmSEDklUAAAAAAAAAA8WVw4-tNMtcGbe_AUExiiqwAAAAAAAAFTgO6kDS9N3EuxPdxaJ2XycwAAAAAAAAICRAiSaKhtr8sKQyEQrLjoKAAAAAAAAAJCkrRTeyA1V-X3nZVYjnbwWAAAAAAAAAE88otNRdSDOkmJHkAHEZdMrAAAAAAAAAAJIJwWkOp6ZFrpAuS1jmILqQAAAAAAAABBJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAAA1NrJD-mlhc2khMaMvypB7uCowAAAAAAIg7EJD-mlhc2khMaMvypB7uCowAAAAAAIVoinLb8frZOVnOUSlDo45we-gAAAAAAAABDBxR1c7-nLgrcHbXghB3o2wAAAAAAAAAVGLsxJEBpGzbIAzUio3qiqgAAAAAAAAAqCAYdtG0jGNYNtTA31gKoPAAAAAAAAABdL15jjWwEOMTeauZtyYx75wAAAAAAAACVYkIaRxuwdj6_l9jcQ8vj7AAAAAAAAAAWqrmk67kNwxQVIgdMvHYZ7AAAAAAAAABr2OqIxq9okDnhoWYrFU8L9gAAAAAAAAA_s6_uo1oDaVy6YH62gW5X5AAAAAAAAAOqjG8RV1XmTT7lPs6gbbzWEAAAAAAAAAOvL74ZUdfItkQj1FNjlE0GyQAAAAAAAAPxmHzD8kiYxVjek9AoaxFfnQAAAAAAAAAsJD-mlhc2khMaMvypB7uCowAAAAAAIPQmJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCesjkXvSc06kCzT5ulprfEPAAAAAAAA6AHsjkXvSc06kCzT5ulprfEPAAAAAAAA5qhbzrt0cDU6UPpwGohqCueZwAAAAAAA7x9bzrt0cDU6UPpwGohqCueZwAAAAAABQb9bzrt0cDU6UPpwGohqCueZwAAAAAABSVzbzrt0cDU6UPpwGohqCueZwAAAAAAAtq70qzGEnWLNN8utw6c2ruTzgAAAAAADlXf0qzGEnWLNN8utw6c2ruTzgAAAAAADkWF0qzGEnWLNN8utw6c2ruTzgAAAAAADkFX0qzGEnWLNN8utw6c2ruTzgAAAAAAC4_r0qzGEnWLNN8utw6c2ruTzgAAAAAAC-Qv0qzGEnWLNN8utw6c2ruTzgAAAAAAC-FV0qzGEnWLNN8utw6c2ruTzgAAAAAACxhX", "types": "BgMdBgYDDAYQAw"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xXZDG1IWCIku2BjFkk_Ekw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEWB9GVskeRyK4_o3XD61XIAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAqJzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAqdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAAAjj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABTFy_oiZ-hvylcVoePLvWugwAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "K9LDD5AZV4XmqBf_IoPXlQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7-4SLKLQoS7j3p5TwUwKzA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAHX_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAghM2MvVjBki678lZWhHxDlgAAAAAAAAAA", "types": "CAOGBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wVxfeW31BKBlFSOTuEq2vg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFldb", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "T7kTFHjAtS6OtzybnvJ0ag"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAAGvK28e_VmRLgv1j2R51m9VawAAAAAAAAAFtazfCeoJf0Do6sHz60FXRwAAAAAAAAACEV2z03IGmRdabl9lhu9L2gAAAAAAAAAL4OJ0q7lEBruOrjBuZKiAaQAAAAAAAAAUE6ANAua91VJJE640-7WdqAAAAAAAAAAhYGmNZ8E6uBNr-BxhHT7jPQAAAAAAAABPYTbqMp6p_Zd87b4Y9hNE0AAAAAAAAAAIqv1D_nQ6KTBrcV7EL71OswAAAAAAAADWyCobMKYVK6NH4e8Xyl9V-gAAAAAAAAC2449MNg-Y_ftqVzjxrtZ_gwAAAAAAAAANeIKZHUnkOnlIeLcFKA7B_wAAAAAAAACEm_fovQn4AGOMspslPI_8iQAAAAAAAAA3h8_jrEiHamjn83oJaSJe9wAAAAAAAAAXD2w1OmjnRHU8PJVmzRuFcQAAAAAAAAAA", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9Ccnybqafbd-z2JQ7pZb5g"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMabPXT4fd_WKeR1cE-hlLelCQAAAAAAEMasIXT4fd_WKeR1cE-hlLelCQAAAAAAEMceTXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2tFOqVqvUsAbYZdV5cBjZA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF353Bbxw0b5wHlGJY1WEVWAAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4bWZWPptWisqbpRDA9X8cNgAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVamhiroi9lH-AuCvUISnaLwAAAAAAAAAGQoETQaJh4hk1PJNhgxG6YQAAAAAAAACeJn0UNoyB8RODf8CSewSSrwAAAAAAAAAd4ATwOy2xX5oIgSybARkoywAAAAAAAAAFk0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB0qRvG2N9iYeFyl-3xULRJEgAAAAAAAAAe1xeqGUZm5RNvukFb2REJKQAAAAAAAAAIFtjh-A3lytsNmmUroc108AAAAAAAAAACuimFkk5UuxbH1IL630LmngAAAAAAAAAA", "types": "CANBBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jrkadKmUMKJNM1LSCgDP0w"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEPD3cOudib0XQsq9y3nJeyAAAAAAAAAAQPHOUiNkmrb6lymlNuXSU6gAAAAAAAABCdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAc", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GRsBLFcqVzFUAZS_v_mreQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApfzLzWZQgzth4yv0Aw0PoLgAAAAAAAAAl1pEcO9CYkxI799CldX3uowAAAAAAAABSkAS4tZnm727VHuczPAa5PAAAAAAAAAAIFGIyujYFiBFB20lehksXnQAAAAAAAABm3h9ERuTySl5lKBwueq3lUgAAAAAAAAACUB5naxIrTLZU1AplJeKCHwAAAAAAAAAeFJK04KoaHMn06MM5Zc-sLAAAAAAAAAASb_SxAGFEqcDYGOt1bLICYgAAAAAAAAAA", "types": "CAMLBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zeZUkY-05pj9hvZA8tv9Zg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAANSF3u75PFaKMThRw4BoUVwCAAAAAAAAAA0IkSo5taWM8U71y2hDxxHngAAAAAAAAA1lBsFTWSf77aYVb9HHr9tcQAAAAAAAAAFlBsFTWSf77aYVb9HHr9tcQAAAAAAAAAFewU9RfzsPed7JATT94aw-wAAAAAAAAApfZ3COijH60wdDIIVUpSInQAAAAAAAAAIx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAOPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMzzqjB_amR59Lv13Nhle_NwbwAAAAAAENS56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpAY6tVKI4mSYDEJ-ABAIpYXcgAAAAAAF0JU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFw9n6tVKI4mSYDEJ-ABAIpYXcgAAAAAARLUs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCXYUbK4uezrplMLlSw0h87XfgAAAAAACHlyUbK4uezrplMLlSw0h87XfgAAAAAAAWojUbK4uezrplMLlSw0h87XfgAAAAAAB4Dl", "types": "CAMpBQIDDgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Zii4wg2T59k_VWZoCJQUDw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBbBcEvvhuguaGYCmGWrnWRz1QAAAAACOHONcEvvhuguaGYCmGWrnWRz1QAAAAACFwxmcEvvhuguaGYCmGWrnWRz1QAAAAACOHONcEvvhuguaGYCmGWrnWRz1QAAAAACFwxmcEvvhuguaGYCmGWrnWRz1QAAAAACFwsM", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tfP5YaLMRchIJv1xrJ1yhg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--RVXT4fd_WKeR1cE-hlLelCQAAAAAAC-7XmXT4fd_WKeR1cE-hlLelCQAAAAAAC-z6XXT4fd_WKeR1cE-hlLelCQAAAAAACkG-5XT4fd_WKeR1cE-hlLelCQAAAAAACkH4yXT4fd_WKeR1cE-hlLelCQAAAAAACgSUcXT4fd_WKeR1cE-hlLelCQAAAAAACgRd2", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Epu3otqsKY33No3a7Ut0Ug"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAAAUR0nUK_3cT-awvSJLlH7CqQAAAAAAAAIPKR-WH4Dt9wqCAZg-sRSj6AAAAAAAAAAHcjAwaTx5jh8YbU_H2wVBmwAAAAAAAAAFAlqQms_TzO0YX80jaQfbNwAAAAAAAAAcL6vfdtdAVlFc2SCnm_d6sAAAAAAAAAAG5hUNzO0rXOpqCaRiC-l7EQAAAAAAAAAP", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qpqVuz6fzTFpU75L4AxuKw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFVZ1cEvvhuguaGYCmGWrnWRz1QAAAAACFWVy", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Fpy7i-LnOT8PL2nB1iKlIg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcNAj", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3PFZFr9561-fHgGNeWX0Gg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAAMlBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF8DjWuv2ON9M4hqERzLLGrwAAAAAAAAA4jl0Few0KXqirBZp0WuOd2wAAAAAAAABV2CjidhF2o1l9AQQZ7O2_8wAAAAAAAAAVAmTcFForv1r91KDhJjsuQQAAAAAAAABh7BvwwtuvWC96Hl7IBrycDgAAAAAAAAAiLS1R7UgyIEin1lhHxRFFXwAAAAAAAAAEX6lQOeqkpDSSxUYYwJb8TAAAAAAAAABCRPFiojmndeu_4nmb3OGehAAAAAAAAABqVdgwu2yTb01w3GcQPIyz_wAAAAAAAAABIQfZB-VRGlNehu2EmCzO0wAAAAAAAAAEJlj-_pvqSdlHmJAw2MF6mwAAAAAAAAArmIhHJLRWLV08bvGOk_MaUQAAAAAAAAABAsYLPOMVTEJOeDxuyLY7KQAAAAAAAAAUvTiT6RQHSjUNEBuIvfofKgAAAAAAAABRer7IYYpYGm8FuaYV6j9_KgAAAAAAAAAOok4zrk1T3mBLtObzPQcS-QAAAAAAAAAFdLwWk1CGjdl0nWT4XrDcdgAAAAAAAACSkpBi8LFR3RTjSJqFuljOuQAAAAAAAAAATRhdHOKO7GmLMAaUL3Xw6QAAAAAAACSc9BM25vr762IbGPHbtur65gAAAAAAAEYj9BM25vr762IbGPHbtur65gAAAAAAADt39BM25vr762IbGPHbtur65gAAAAAAAC4w", "types": "CAMoBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KYi5gWT8f3sgP5wTTol1PQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQ9zOECVMFUE-sRNeQZ1HM6gAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARTZwep2BdnG6Mdu9AQocnMQAAAAAAAAAGCMCWh32oer3bDaYggVtoUQAAAAAAAACHHCW9gICkV36t4oXsjBpsdAAAAAAAAAAE_WhLMAElKfp9RHy9XD-HOQAAAAAAAAC3qkXC9AzfY8U3Ryc9g3OFDAAAAAAAAAAsccTvkbbzG7ITlutNR0SvYwAAAAAAAAAehu0S-fYG_gY_Otgg4IzKXwAAAAAAAAErXey4TSJt8z1Y1xeGVvkdYgAAAAAAAADB6fJMpXGng7X5bTc2KsPuMgAAAAAAAABSD0g0ITB6vPs-JMXU6kB_IgAAAAAAAAAETnmpwdT1yeLDbWlRnUic2QAAAAAAAAAHnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAA-DaVWIofPTETqopDkVERGkAAAAAAAAAATwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF2mlzHMlWgLtS4AXchUZGuQAAAAAAAAAIqThtgbHprFVYaxHnWJ5r2AAAAAAAAAAQ37kdvsyygZea642hUZCb9QAAAAAAAAAdvxAO4ozw0ZRvb8q4djSlogAAAAAAAABEwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFx4xnJ8Bvv3cqGQOknqJJwAAAAAAAAAIURrpT79Wm1-567n5aqJlbQAAAAAAAADL3bzfPK0NZtH4PhiksXncvgAAAAAAAACOotzl_-UJZ6X4M1v7YRzHZgAAAAAAAAAId_mdgff0kSRs-ewuuAGS-AAAAAAAAAACYpb1GyaDgfO6SxUxbAvctQAAAAAAAAAIyHxJa10zF8jCmhZDUlRioQAAAAAAAACJjOKHIn-OfmVASZP9y1NSfAAAAAAAAACHV9nsBUwQwMn84PajbyjYtAAAAAAAAAAYX6qt9XlU0IqttZBt4TnwZwAAAAAAAABHwvXjE31kESML0je4-Me7hAAAAAAAAAApDRApe1cPTh2-wFVHvKmI-QAAAAAAAABlfedIGTz7oXcPN7rVsxHwdwAAAAAAAAAMyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFq-Wp_fKqnzituNc-kKOtAAAAAAAAAAUpYMvKU2r2nETpEeIP80PQQAAAAAAAAA38jMyW-WmlGRJvr5T2b-plgAAAAAAAAAFwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0_JZyYR0Vno863IcUXpa7AAAAAAAAAAQGiPQYuBqA4onG16OCBJr7wAAAAAAAAA_wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF49P_FduVXL-1HnETkDgpjwAAAAAAAAAcS_CL2qp_hCoxo4NMBjattAAAAAAAAACntgTcpaw1PHSeu1PntXA3fQAAAAAAAABtVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFW_JPjd1DkAyoubIfHSaORAAAAAAAAAAMro-nOR8Y6-xR_0NZHNxiswAAAAAAAAADGAKN4IA59Oyrw_sFixA19QAAAAAAAACoj8cyxnhvgCmiV0wfzWt-5wAAAAAAAABH4_Wu3cP_1KUTQF00Htx73gAAAAAAAAA6v6A2aEAJbkezThEe0LppjQAAAAAAAAAIAHE52dyzEEDlVbgj_xFoxwAAAAAAAAAVwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFR7Hj9yPeT2EDyEr2K8ONTgAAAAAAAAAYg9D12vCHvqmadcctx-s3mQAAAAAAAAA7dAHd9ndNzEhU1GyagepTAQAAAAAAAAAlABk6RqRYy5QsiYS0AnfFrgAAAAAAAAApwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFtM8VFC-6NwJWsTojOgeMHQAAAAAAAAAMgQianSpTZDlq5RnHMXwrkgAAAAAAAAALwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFIg4O8IWFanKbF_VU4hFAfgAAAAAAAAAY3JOiPEBqME3dIDTotL2-UQAAAAAAAAAi36WCeR5NbgRZnRrGA9E9SgAAAAAAAAAJusT72ztgJAqvKkG84I03GQAAAAAAAAAcLT5lr845yiJBLJcYHx5FbQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAAJ8M1BLNGIf7nUxDe3LzOquQAAAAAAAAAXB68zdPqEXr6IoEA5hdJmcgAAAAAAAAAA", "types": "CAOFBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rjTw1uwIATCPa-CkaMdjEA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAAA65FYxe-SHgukLEpCkawSk1QWAAAAAAAA8D0Yxe-SHgukLEpCkawSk1QWAAAAAAAA_IZYxe-SHgukLEpCkawSk1QWAAAAAAAA-3HYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz4-", "types": "CAMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "guvxESb_8YhISaL6-8e6xQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAAAzr8jPkIagwkcKu3VFH_5eFQAAAAAAAAAFfwrSDgHrTXpAEmJ4bHy8MwAAAAAAAAATTq2A_ghNgr4Sgbd4ToSeBgAAAAAAAADKOVKwi55Br_WT9fxVyQu6PgAAAAAAAAAe2YGkbnIdlKIhbsTbMV-kWAAAAAAAAAACz-hu6cNT1Ftqgnka76QdWAAAAAAAAAAQEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAABBUoX-ughXNd_AmddejeY_6gAAAAAAAACLEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAABBUoX-ughXNd_AmddejeY_6gAAAAAAAACLEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAACgjxBO7ihhtfLOOEuDlHwmIAAAAAAAAABLEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAABBUoX-ughXNd_AmddejeY_6gAAAAAAAACLsrK4jFHN_yr7CRCkobJCaAAAAAAAAAASU9GMGSRcFRH-CQmb_n3Y0QAAAAAAAACk2dpbQm6Su1jn5rEv9F3sMwAAAAAAAAAavcAmytl_wXdfdPt8SRSHZgAAAAAAAAAOyfXyOODTodkdeiMKIIzHeQAAAAAAAAAjCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABhmUB0X1duvhm3HnTYomF_uwAAAAAAAAAQAFgNmbMpan7AOvr1RHjTvAAAAAAAAAAA", "types": "CAM2BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "e3lcOyxzIAx9GClHCrbUDA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlfQcEvvhuguaGYCmGWrnWRz1QAAAAACEh4acEvvhuguaGYCmGWrnWRz1QAAAAACEiiHcEvvhuguaGYCmGWrnWRz1QAAAAACEipkcEvvhuguaGYCmGWrnWRz1QAAAAACEYG0cEvvhuguaGYCmGWrnWRz1QAAAAACFyj3", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DrFuJie5559qDcG8I2bFVw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAA", "types": "CAOEBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ECM4wduGn2SgkCpNnIpPqw"}} -{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHbaI-7FSPUFvGFUkGA6jlppywAAAAAAC0iva7-X3xxhJ0wnbzlLWX3GVgAAAAAACCwLa7-X3xxhJ0wnbzlLWX3GVgAAAAAABjEza7-X3xxhJ0wnbzlLWX3GVgAAAAAAAusWa7-X3xxhJ0wnbzlLWX3GVgAAAAAAAqFXa7-X3xxhJ0wnbzlLWX3GVgAAAAAAApHuxFA0V1dCXRoFBkiljWo8aAAAAAAACc-uxFA0V1dCXRoFBkiljWo8aAAAAAAACaymxFA0V1dCXRoFBkiljWo8aAAAAAAACYfqHWXbCIJWwuTsAgHvMObKpwAAAAAAAuPdHWXbCIJWwuTsAgHvMObKpwAAAAAAArIwuQABjZuvQhtEKnwbx2fUhQAAAAAAASpN", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_DXIIIPmnKg43Vr19XmVJA"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAADiW6SZxl-YF9wOaedogsBMtvRAAAAAAAEk3JSZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAADz6p2HVF-fC6bGu1PSwJc2kzOgAAAAAACGX62HVF-fC6bGu1PSwJc2kzOgAAAAAADDOR2HVF-fC6bGu1PSwJc2kzOgAAAAAAC-pK2HVF-fC6bGu1PSwJc2kzOgAAAAAAC9KY", "types": "TgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "t5iMV2bxdd31FJyizPOYCA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-KJSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa_9R", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XxoiLx9HpNbK-YWzICyumQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAvspzm-_Ca31VwijYVQAZSLAAAAAAAAAB7TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABUfZfGpgZFJokP-jaeydrs0QAAAAAAAAAJjg3LdO4DNz9FsefjUG1F1gAAAAAAAAAUf6OHtxWEEYSKC5jCOpZRYwAAAAAAAAAA", "types": "CANlBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9i0d0snq2LSo5WLubtd6_Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa86U", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ASErGV7Ep5Qa_hvKdrg1Bg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAAAdeEYxe-SHgukLEpCkawSk1QWAAAAAAAAhCTYxe-SHgukLEpCkawSk1QWAAAAAAAAhhPYxe-SHgukLEpCkawSk1QWAAAAAAAAVvW", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ngVpwVwgO4T6nb-06wRKNw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcRUYxe-SHgukLEpCkawSk1QWAAAAAAAAUHWYxe-SHgukLEpCkawSk1QWAAAAAAAAECt", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dt_oZZ2sQo9aPZAJj8jPTg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChGI0XT4fd_WKeR1cE-hlLelCQAAAAAACg6T7XT4fd_WKeR1cE-hlLelCQAAAAAACh1L_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaZ", "types": "BgMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "z1K4WqC6eykbHpG2pCP39Q"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCPFYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BQMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Zhkr7FPwkPtUyVPXWQDkzg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5WiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATeCaKzXzVKYqqs4wMxzAp3AAAAAAAAAAKxzEX_ryOXWtTMQZYJuG-1AAAAAAAAAAD2XDg5u84AThLncvQweEa6wAAAAAAAAI596H7IcrFu8Zg3f7WMu_LagAAAAAAAAAqztj5Yc58Fi74AN4K12GxCQAAAAAAAAAIeXp6ZabxmzABDzP1KpFPrwAAAAAAAAE4omklHAPZnqPNJHwVpvh2vQAAAAAAAACrqwPQ_i5WGexQYU8q8eVTyQAAAAAAAABzoSoGUxBn_MfT_4Ncm-yGtQAAAAAAAABaAl_h9gC68463XnWmby4-QgAAAAAAAAAJWQoT5TvZ3eOmkl3OPEBMywAAAAAAAAAuPRgslp-mhiA259jp7eDUDAAAAAAAAAB6CB3cooh_xs9YH9mUphGzWwAAAAAAAAAGxH7fDwWrFq_DRtbR8yK9XwAAAAAAAAMEVTfbcIJC4j-MNC5M8fX4oQAAAAAAAAGd5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAMzcfKpbpAZN9qkm-T9sCmgAAAAAAAAAAgDvdfU48u2QTcLtk5MzruUgAAAAAAAAALumQIucIioKjldscxi712SAAAAAAAAAA5f15ZZuvJposXWOcmbKQgxAAAAAAAAAAftL230chqNUuroXAS-gtapgAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEXnZcAdwBOPPRQ2hQm4YWwWgAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAChAAnABuJtrWflPvotxCoPjQAAAAAAAAFDgM-zvldT2mxZOhlxJvpRXwAAAAAAAAAXc0OkgT3_p45M6FsCvH3WnQAAAAAAAAAV9BsFwV8tobvksYfuNpORcQAAAAAAAABJoOz1jSRZNClfuKPM_yWNFgAAAAAAAAAG3b73aK2YxmWJY2Of38z3nwAAAAAAAAAG-98KX7lEQngZcvy7BcWxHgAAAAAAAAAZR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAW40ES46dU7pwVTIhZzOkjPwAAAAAAAAB3", "types": "CAM7BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VRt6q5F3ckt_c8O1gwmSjw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVHE_nCux7-rXEI92ZPZtZGwAAAAAAAAAMIXD9DfG2D0upvhc5-UHkHQAAAAAAAAAQbg7sAxk7-DRFbqsjDXXUPgAAAAAAAAAQOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnuVPwAmWdpd4P9G8VqauGiAAAAAAAAAALd9ocGHkZokXOJ8TnyiAkuQAAAAAAAACeKUjaYktHrIITSxj2V6qw-QAAAAAAAAA-oTSE_oNQnyDobsV2KdmHewAAAAAAAAAJUZdaVaW-2bK-DsjNGfQ38gAAAAAAAAAMgFA-ze8k4pgKqXyEpi4f1wAAAAAAAAAEfj4-Iv-y0L7zbcyIyLNeHwAAAAAAAAAJlfjVNXK_x0C4X5O62984zgAAAAAAAAAFZbvmFtHvqv74jokq3XvBkgAAAAAAAACS2RfKfVPwyqKh_r9U1oFgUwAAAAAAAAApkGb2Tgcv7TAAnt4S5dlXcgAAAAAAAAAEJvETSNUFmQzhSgQRV87p_gAAAAAAAAAbe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAARKYUKYe5FJokP-mDuLYX4tQAAAAAAAAACXpviWYO7CFQF88r_qvK5hQAAAAAAAAAJWsCQmTSDw0k0qcC-8oiYqgAAAAAAAAAbvoqjqV6_-EldPWpE4Bg5QQAAAAAAAAAl", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YVVpCpnnAN7nqi22_B110A"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCPYxe-SHgukLEpCkawSk1QWAAAAAAABKVA", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jyjn_5qXfbWtQo79W0qlsg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAACEjtkcEvvhuguaGYCmGWrnWRz1QAAAAACEj7McEvvhuguaGYCmGWrnWRz1QAAAAACEkbY", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HQ-3JYSn-GrIHbyFQdzdAQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--RVXT4fd_WKeR1cE-hlLelCQAAAAAAC-7XmXT4fd_WKeR1cE-hlLelCQAAAAAAC-z7kXT4fd_WKeR1cE-hlLelCQAAAAAAC-1UKXT4fd_WKeR1cE-hlLelCQAAAAAAC-057XT4fd_WKeR1cE-hlLelCQAAAAAACi9xKXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUTFXT4fd_WKeR1cE-hlLelCQAAAAAAChz7b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_NQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaQ66tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZmt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKTe36tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ5Qy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ4C76tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ0CJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYK2", "types": "EQMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BBKNI3Uum2tvcePLaUHnIw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEar", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mTY_R13CdFxl1Dzfo0t_sA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAdKZMYsnZ_Lwaqr0cHEPo0D185QAAAAAAdEYVYsnZ_Lwaqr0cHEPo0D185QAAAAAAdCruYsnZ_Lwaqr0cHEPo0D185QAAAAAAdJFzYsnZ_Lwaqr0cHEPo0D185QAAAAAAdLGKYsnZ_Lwaqr0cHEPo0D185QAAAAAAckEs", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NCSbO-OFxqpqVTMmflnoIA"}} -{"Stacktrace": {"frame": {"ids": "R_3RsDYccfUxjNYYah3JZgAAAAAAEhYe-IlGUwajicqSE5-hS5VYigAAAAAAAHbaSZxl-YF9wOaedogsBMtvRAAAAAAAGQAGSZxl-YF9wOaedogsBMtvRAAAAAAAGQBRSZxl-YF9wOaedogsBMtvRAAAAAAAD9N_SZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAADz6pSZxl-YF9wOaedogsBMtvRAAAAAAAFvggSZxl-YF9wOaedogsBMtvRAAAAAAADiW6SZxl-YF9wOaedogsBMtvRAAAAAAAFvyjR_3RsDYccfUxjNYYah3JZgAAAAAAB-5ZR_3RsDYccfUxjNYYah3JZgAAAAAACMUoR_3RsDYccfUxjNYYah3JZgAAAAAAEPzI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyPe", "types": "KgMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vXqajcj1VS3ltzfGYAymZg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAe", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PYBUfV4nZR3PAgyIKhIwDw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZvA", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vurXS1ra6ryPwSCr6lehBw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALARLuf1htvrklOOxyKnOopAAAAAAAAAABTBtZO3-vmynkHlKuzsN9UQAAAAAAAAAyn55ZjUBJzU7CnzmyoRyorwAAAAAAAAAk5Ib9omL2d9xqdBKBL9VmGwAAAAAAAAAAqFV6xhVekP5-uToPI32ragAAAAAAmMkkqFV6xhVekP5-uToPI32ragAAAAAAxn1ZqFV6xhVekP5-uToPI32ragAAAAAAxnpttQgAmBJBgPLrkikSPRsmtgAAAAAAAL3h6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvQq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvMr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMGBQQDCQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9jnZQOhoYX8CygYi9lQy6A"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7AAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ddeOs02TklyTU3pmfdTaJQ"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcYoYxe-SHgukLEpCkawSk1QWAAAAAABXapkYxe-SHgukLEpCkawSk1QWAAAAAABXZe1Yxe-SHgukLEpCkawSk1QWAAAAAAAAO3X", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LbIdVoxeM1glCVhs3QD2Rg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAJB_IRgbCQC1IPEoVkHKMOTwAAAAAAAAAYdB8rpvXeU-U7j8zoRqc_lgAAAAAAAAAie7YYWaQTMh8P2PCVzA2a8gAAAAAAAAAwm140cnmnDMXwCTqH-lotHAAAAAAAAAAE", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "caBHj7BnRD7P-V0_GNLChg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcDY6SNDzWiYDmLZi_Z1ZVETLoAAAAAAAvtxjSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt-hxSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcuMGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt_WVSNDzWiYDmLZi_Z1ZVETLoAAAAAAAxwWkSNDzWiYDmLZi_Z1ZVETLoAAAAAAAOnHM", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RZl8t-9rqMQDfV5hnTHtIg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR1TSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa_-I", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3r97L1FcTYBv0NSBEOY9kw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAAA_rYYxe-SHgukLEpCkawSk1QWAAAAAAABAaRYxe-SHgukLEpCkawSk1QWAAAAAAABHocYxe-SHgukLEpCkawSk1QWAAAAAAABHhY", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BRhCpm29bfxo9hoGCffNog"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbh0SYxe-SHgukLEpCkawSk1QWAAAAAABXWj9Yxe-SHgukLEpCkawSk1QWAAAAAABWxpW", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XXVig9Ie3HmFHZwzuss1kg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFu1XT4fd_WKeR1cE-hlLelCQAAAAAACiGo2XT4fd_WKeR1cE-hlLelCQAAAAAACiMiTXT4fd_WKeR1cE-hlLelCQAAAAAACiNLW", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "APioPA6bDIYwGq2IbkrzMg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAAGSVL1CEjKQwCA4bmkBcj-7kAAAAAAAAAAFpa6Ztq8N2NUyA7Y8HvxliwAAAAAAAAALk1Dv3_XvAB6SsR0npdQeVgAAAAAAAAAUN7oX4z7s3z58fgItwqnPUwAAAAAAAAAhhSe7ADGJd4Crz1ii7b3EbAAAAAAAAABP4FIDw-3ayXF9qDhcdai9CQAAAAAAAAAIn2n5oFvwiEYRBCQEnFNEhQAAAAAAAACsmDwqxOA1aWXm0v9SUcRWrwAAAAAAAACR9TmwK4T30h3U0B1lbih6TQAAAAAAAAAN4MmFlXNlAaTTYzJu9ZvlFQAAAAAAAABi5EQ6InbW5lh3HIuXdyrqwQAAAAAAAAAX2Vpl4JCXI4Pj7QXAxuNxegAAAAAAAAA0BpjC-8pIlVVLzRZabfYgbwAAAAAAAAALFJBAv_ZG17EaYJPkcMS1YQAAAAAAAAAYb5D4G32aP0YH2ukb-bXGLgAAAAAAAAAT", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lQB8mTpjqxNXboFLF_ikTA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2q2cEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxk0cEvvhuguaGYCmGWrnWRz1QAAAAACEPwK", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2KQ1xLodxTiqHmDQYXbmJA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAAAeCY7ztddcPo6ofReMjIW4KAAAAAAAAAAWV0LEzKEJCTr2F7QdmvO8vQAAAAAAAAAESc-7DBv3SRDl6MaEnNIV4QAAAAAAAAAfjp89ntsvEyhpH5Dc3mZilAAAAAAAAAE5bBQ2fsMcPLjZdwrVTr6aMgAAAAAAAAA5Dp15X8uOBNJVZimWDCZGiAAAAAAAAABnzLx6iJ9ANFZvdAJHeiPhJwAAAAAAAAEbmzExXCPAxvBlsYOcwqbUPAAAAAAAAABWLsrK9E-EO_ynQk-yDhFFiQAAAAAAAAAVvEf82IDRTNtSKS_YS3157QAAAAAAAAE6WQA5eJbOfqc-MpVNXC1Q9wAAAAAAAAA23fLdTF4ecUJhitKTdv8I9QAAAAAAAAAA", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "o5hO63TnTaHm6rWDJ9tLlg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAA5cYiYZLNw79YI2sv5ZzfISgAAAAAAAABnsd1-fzhWHGpZk5BbNZ95mAAAAAAAAAERuV9VJttm0goUzsky7YZbIwAAAAAAAACVAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OPeOIoXE8SwG5uuXQoAI6w"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHpmIz5k14PsCcDvFyUC1kmlV3QAAAAABHpdEz5k14PsCcDvFyUC1kmlV3QAAAAABG5iSz5k14PsCcDvFyUC1kmlV3QAAAAABG_e9z5k14PsCcDvFyUC1kmlV3QAAAAABHCkw", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eviuUsW23vOjlBWQv0bv5Q"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACX", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iiSoTtUS0Kv5axzY5mPeuw"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgJxz5k14PsCcDvFyUC1kmlV3QAAAAABFk6jz5k14PsCcDvFyUC1kmlV3QAAAAABFjYEz5k14PsCcDvFyUC1kmlV3QAAAAABGgQQz5k14PsCcDvFyUC1kmlV3QAAAAABF400z5k14PsCcDvFyUC1kmlV3QAAAAABFkWAz5k14PsCcDvFyUC1kmlV3QAAAAABGZW7z5k14PsCcDvFyUC1kmlV3QAAAAABGTAQz5k14PsCcDvFyUC1kmlV3QAAAAABGSeJz5k14PsCcDvFyUC1kmlV3QAAAAABGTRW", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wu5Ui6X1wYCeANyAsyHaFw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiGKmXT4fd_WKeR1cE-hlLelCQAAAAAACiGQFXT4fd_WKeR1cE-hlLelCQAAAAAACiKCvXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fDQou-XRb52d9gCJh1ayOw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAABQ0tEAP3x_JoFH6wNaGZk0agAAAAAAAAAsl34EZ8xDHNxGTCOWJeXKigAAAAAAAAACtIB1dxGnX0oRcLl9Hw7ZbAAAAAAAAABwmZ6pM0OEbp3JJIi6QUyNsQAAAAAAAAAItUugY2gAhpWf99wEorV4JgAAAAAAAAAjwf9mrqZKrjw_yhc1kSPntQAAAAAAAACE0uQfhygt3iA5h-6EqK0MPAAAAAAAAAAEJYb5JOqnMPOCcF7fd5apugAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAALTqvQ7EacG6CR4rzcFaNFEsTQAAAAAAATPL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWrX6tVKI4mSYDEJ-ABAIpYXcgAAAAAALUbi6tVKI4mSYDEJ-ABAIpYXcgAAAAAARNoY6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMmAv", "types": "CAMRBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HQfdRiN_i6nsUpr-osGkTw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADAYnk6E9ReVsUsstHFtTIiXQAAAAAAAAAyfT0k69QoWDcgSGG9DEbGKQAAAAAAAABU3yZRDT05_hGvUj8jRvChFAAAAAAAAAIWQdsa8CodEr3BBR20SawlOgAAAAAAAAIr3QxPrhcD9ugSQPryZKe81gAAAAAAAAAJ7LziU26eINk4gGAzQhjzRAAAAAAAAAAhPJTlw6VeTaTK6Ugh88lHIwAAAAAAAAAEsPO63moZmQeRDFosCGHfhQAAAAAAAAA-1oyY5_H1XDxnqxtQutVBSwAAAAAAAAAE7LziU26eINk4gGAzQhjzRAAAAAAAAAAhpboNPSluja75Bcicb918zwAAAAAAAAABjJ1ozPLEubzrPTK_HIIAngAAAAAAAAAEgyCLaoZ33VoOuRW0bXNTvAAAAAAAAAAwJlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2doXLcevMUoeaLTEtb67onQAAAAAAAAAEKFGBFnajTppUPwKMAfWXvQAAAAAAAAAXg0Eg3DcPcY-ennfHmNiWvwAAAAAAAACOcqdSAx5Uej3ncVA_SUVjsQAAAAAAAAAMPrNII2l46oclr0RXWTYMUAAAAAAAAAAE0tDRJPBklwZ08blbT6HlggAAAAAAAAAHsWCnrMF0Arlnv58qX-TThwAAAAAAAAAB7mqPc5ch4cFcQJn3b5WHKQAAAAAAAAAFIY3kOFBxddrJzoZrzargTAAAAAAAAAAABkWkPRvktqhDDhVdutdfuAAAAAAAAXw_8NlMClggx8jaziUTJXlmWAAAAAAAATP7", "types": "CAOIBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XgUh4zP6_HxjUL-1XhJT2Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZv9", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-xs-IN1fdS4tlSIAXAM4kA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQEI2MlivQ_yGyq36LnLAGeQAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQOUV_Man7LKpLI_xXeAvtgAAAAAAAAACeM1U5MRplArg1qeEAEk5MlAAAAAAAAAAYNK6q-mYZhWe1E7afoKkwiQAAAAAAAABsijeboCn6LOt0NOcmaRcGZAAAAAAAAAAHoQ244tw9hOZz82ezjc7AlQAAAAAAAAA_4gj0C7RMNmlQUbyfvqTY6AAAAAAAAABcutn7B_e8CjiON2nJb1OPvgAAAAAAAAACj38H0Ei9z2KFpOxhIepE8gAAAAAAAAALapLx4IvDk2OXboJEr3DXkgAAAAAAAAAIFOIMQnzYiyYPDxKOnMW5yQAAAAAAAAAxKJplboRkVOPfLRXCp4oPXgAAAAAAAAABYegVEymiG8lw5t7wHfz6hwAAAAAAAABlbSqWaYKtavFZqjY4T_025wAAAAAAAAAQFD67YgaFeLuqBai5R0qQdQAAAAAAAAAm", "types": "CAMvBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OWYvN4elc_j6L7TTAYFNTQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAABQhBoRfaQldB4X-nJDu-sQZwAAAAAAAAAA", "types": "CAMKBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sjgFFvTDTMQOTVFeiCq8hQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIoVZ3CKaS4aU08RhYA19y5ITQAAAAACtIeEZ3CKaS4aU08RhYA19y5ITQAAAAACtOo1Z3CKaS4aU08RhYA19y5ITQAAAAACtNW2Z3CKaS4aU08RhYA19y5ITQAAAAAB0mf0Z3CKaS4aU08RhYA19y5ITQAAAAAB0j6eZ3CKaS4aU08RhYA19y5ITQAAAAAB0jnmZ3CKaS4aU08RhYA19y5ITQAAAAAB0pgJ", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UbZWbU0S5kd22SAXz7exPw"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACGz1HZ3CKaS4aU08RhYA19y5ITQAAAAACF_8yZ3CKaS4aU08RhYA19y5ITQAAAAACF_UIZ3CKaS4aU08RhYA19y5ITQAAAAABvncYZ3CKaS4aU08RhYA19y5ITQAAAAABw3oLZ3CKaS4aU08RhYA19y5ITQAAAAABzH6pZ3CKaS4aU08RhYA19y5ITQAAAAAByyDQZ3CKaS4aU08RhYA19y5ITQAAAAABwNqVZ3CKaS4aU08RhYA19y5ITQAAAAABv017Z3CKaS4aU08RhYA19y5ITQAAAAABv3UA", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "--ixTzVal287MaHIkMjGPA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACujkfqsU9w34yk0ipcsxq5HgAAAAAAAAAO7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAFk3HyWSdTGgne1xIId1mIvAAAAAAAAAAzn6pk2kHJCAUsXzT61-UNuwAAAAAAAAAJhyDoVUWwwXEvgB5sKTLeXQAAAAAAAAACveyrOe2Ye9QKtQm85e4-1QAAAAAAAAAJKc3Qpigh43lyCXxKBVsfZQAAAAAAAADIDvxORZxoFkDRuJT-GJ72RwAAAAAAAABRceAXg6TZDkdNFtcE_O4vaQAAAAAAAAAO6dizidRtpqcGmpShAjzttQAAAAAAAAAVXzWVAFfWPkx_-5DzBgosgQAAAAAAAABhtzBcwDe6SUq4Jkyew2O5egAAAAAAAABkB9gbZBZ1iVM7gT0HZmJLewAAAAAAAAAHcjIhOkmIqJlptkEMROl1nQAAAAAAAAA0sv_426CMlRs6plmdzYS7CwAAAAAAAAAI68Kd2F2G5cbeqk2uYg-UgAAAAAAAAAAHy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGb2ckm-0wQN1Adu_SQOHiPwAAAAAAAAAfuCrYcJJKClqXMP74KTJEhQAAAAAAAAAfW0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAEKhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyMe", "types": "CAM4BQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-39O5M9xiKV4ss-qyTu_Ew"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAAAM7q", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EruDr_ih7XLGuzv_u8mEQg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-BdSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8yfSNDzWiYDmLZi_Z1ZVETLoAAAAAAAbCOp", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lUwPl7LdcSnsIUgnw1ojfw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbeuIw_I7HzcVMEcOaEL-XEgAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAAB2I10upgJihUkX5rBuiOc-YwAAAAAAAAAJQM07la3NPp56y7hhD10OWQAAAAAAAAAFb0AoyduVJ3t1JvB8AtIQXgAAAAAAAACQ5N-LgXfDk2OXbiJdiTueMgAAAAAAAAAIxpf67p7tjON1QEeEp4iyEwAAAAAAAAAoqg4aqNV3oLa05HqI02FEkQAAAAAAAAABS06qc2WWdjyLzzAdWuSUuwAAAAAAAAGz", "types": "CAM4BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "U-SQw_Ej849fFrBkcLqfHg"}} -{"Stacktrace": {"frame": {"ids": "R_3RsDYccfUxjNYYah3JZgAAAAAAEhYe-IlGUwajicqSE5-hS5VYigAAAAAAAHbaSZxl-YF9wOaedogsBMtvRAAAAAAAGQAGSZxl-YF9wOaedogsBMtvRAAAAAAAGQBRSZxl-YF9wOaedogsBMtvRAAAAAAAD9N_SZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAADz6pSZxl-YF9wOaedogsBMtvRAAAAAAAFP4DSZxl-YF9wOaedogsBMtvRAAAAAAAFQBcR_3RsDYccfUxjNYYah3JZgAAAAAAB_ajR_3RsDYccfUxjNYYah3JZgAAAAAACK-IR_3RsDYccfUxjNYYah3JZgAAAAAAEQHH", "types": "KQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "epmApGucYGosaiNqgwoK4g"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABucyn1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAlR", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Y4O8D8hxYkhFJTYN-hGU2A"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66OFZ3CKaS4aU08RhYA19y5ITQAAAAAB610wZ3CKaS4aU08RhYA19y5ITQAAAAAB6u83Z3CKaS4aU08RhYA19y5ITQAAAAABuFVgZ3CKaS4aU08RhYA19y5ITQAAAAABtHED", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "a4F_DzJWoeWMlYJL40d_JA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAB70bX9_rdLKY7cMkfz9daTcAAAAAAAAAAWF1e5zesyAN4da8CO9uVKkQAAAAAAAAGaKp5D81toWlYI8wTmGy48ggAAAAAAAAASDeZeZUmb5Nqj1ViRUVUMrQAAAAAAAAADkjXgs8D2Kkzf5ihgmCmCYQAAAAAAAADD96ekPc0pNvq68mLyXCOFbgAAAAAAAAADmllMkD4eko6f_K5A8Y-7xgAAAAAAAABziQ3-U2pFJokP-jlw4Yr9FQAAAAAAAAACdYhRx-e7CFQF89Cj2l7eOQAAAAAAAAAJvc-j1E8HSTKofoqXgmmEFQAAAAAAAAAll5QwIv7i0mQIqhQ7__9UiQAAAAAAAAAc", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pg9BpRl7fhNFrbhldfBoVQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmrvXT4fd_WKeR1cE-hlLelCQAAAAAACgbq6", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6GIXZB_oqJtK4ZOCyzjV1g"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqY6EgtQ4kMk_MBWrPUAFqVnYywAAAAABqY-OgtQ4kMk_MBWrPUAFqVnYywAAAAABqaRxgtQ4kMk_MBWrPUAFqVnYywAAAAABqahxgtQ4kMk_MBWrPUAFqVnYywAAAAABqa58gtQ4kMk_MBWrPUAFqVnYywAAAAABqghSgtQ4kMk_MBWrPUAFqVnYywAAAAABqb9PgtQ4kMk_MBWrPUAFqVnYywAAAAABrAK-gtQ4kMk_MBWrPUAFqVnYywAAAAABqvPwgtQ4kMk_MBWrPUAFqVnYywAAAAABrokV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtJB6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtH16tVKI4mSYDEJ-ABAIpYXcgAAAAAACtE36tVKI4mSYDEJ-ABAIpYXcgAAAAAACslz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CwMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hz3UbtFZA0rYIYn4YRCgtA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAP4nyMCPt5M-rbb158Tnrz3sgAAAAAAAAB3DSeW5vniUG6RwPchwmi1uQAAAAAAAAA2bCBdTuDS0DbCDGTJHRgQHgAAAAAAAACK68Kd2F2G5cbeqk2uYg-UgAAAAAAAAAAHy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGcvKtJGgNPYlj-CA3c92J7wAAAAAAAAAfuCrYcJJKClqXMP74KTJEhQAAAAAAAAAfEXm1hlIrQc2WIKO4W87lDAAAAAAAAAAfDm9DG4ZqDn_4bGJnyMFN4AAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAANJa8NlMClggx8jaziUTJXlmWAAAAAAAATrU", "types": "CAMwBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MRPIiqkdVFL_ATcyw44gkQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWBTXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmu46tVKI4mSYDEJ-ABAIpYXcgAAAAAALSUu6tVKI4mSYDEJ-ABAIpYXcgAAAAAALQw-IG5EpvTeHopVC9IqkA_kSgAAAAAAAYPwIG5EpvTeHopVC9IqkA_kSgAAAAAAAVthIG5EpvTeHopVC9IqkA_kSgAAAAAAAYEQIG5EpvTeHopVC9IqkA_kSgAAAAAAAVmGIG5EpvTeHopVC9IqkA_kSgAAAAAAALXd6tVKI4mSYDEJ-ABAIpYXcgAAAAAALQ606tVKI4mSYDEJ-ABAIpYXcgAAAAAALXfZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXbg", "types": "FQMQBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "92cNuiuQKW3x7lS40O9Vmw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAQgtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAH59i-wMdSlFTE9FP7ALC-fwAAAAAAAABPJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACXVSALBRPvgHpUWKmpUo1khAAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7AM0prgm67n5d6K3VpPj9A"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wZOXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FgMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ewzp1cQUgnGEhjhPWmAuYQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAADxz_WaY2pXtLyni7L_8jKtBgAAAAAAAAAPEIpTc6zorXqtTjOVazk4HwAAAAAAAABogbCFQS2suYv46rP_aUsebAAAAAAAAAL_zvtGCZWh7Ji_VQTOB6BAGQAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAMxDXeTINsutWQ3L9FCGjV5QAAAAAAAAAEfrJcVQQvYZxinCGo-1mmtQAAAAAAAAAP3R6peF1IdwfQqmb119dyMQAAAAAAAAAFjRPUUEtO9tA38nKSenaVfwAAAAAAAAAC3R6peF1IdwfQqmb119dyMQAAAAAAAAAFMDjyE5AlqASoc6cxfe5K2wAAAAAAAAAwmxRwXt-8CQt60ehjLjpoTwAAAAAAAAAKl_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAADUM3h48-oBMi00mRAqhB4IAAAAAAAAAAjMj1fVO3bykQ8piLrLc5IFQAAAAAAAAAJp3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAOKE634wiWh6F21tPpXr0Zz3mgAAAAAAEP0K6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALqAi6tVKI4mSYDEJ-ABAIpYXcgAAAAAALp376tVKI4mSYDEJ-ABAIpYXcgAAAAAAL2nC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL2Y46tVKI4mSYDEJ-ABAIpYXcgAAAAAAL2TAUbK4uezrplMLlSw0h87XfgAAAAAACEBeUbK4uezrplMLlSw0h87XfgAAAAAAB6J3UbK4uezrplMLlSw0h87XfgAAAAAAB6C6UbK4uezrplMLlSw0h87XfgAAAAAAB58hUbK4uezrplMLlSw0h87XfgAAAAAABEcUUbK4uezrplMLlSw0h87XfgAAAAAABCutUbK4uezrplMLlSw0h87XfgAAAAAAAr6iUbK4uezrplMLlSw0h87XfgAAAAAAArd4UbK4uezrplMLlSw0h87XfgAAAAAAApZpUbK4uezrplMLlSw0h87XfgAAAAAACbfUUbK4uezrplMLlSw0h87XfgAAAAAABiMrUbK4uezrplMLlSw0h87XfgAAAAAABhsCUbK4uezrplMLlSw0h87XfgAAAAAABhW1UbK4uezrplMLlSw0h87XfgAAAAAABfic", "types": "CAOEBQIDFQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "I6emm7QMCp3MTtFFeDRa6g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAacIY", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1m76_MQ1CKkUeXqbKRoHZw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAAAnGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABbTIqYHzSLJiXVx4krD2dbMgAAAAAAAAABIFHX6oXBjL3Y93SHOMXcKQAAAAAAAAABZXguWb1db5OZ-xUb0e4ZqQAAAAAAAAM2siCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhZsqFV6xhVekP5-uToPI32ragAAAAAAjkGpqFV6xhVekP5-uToPI32ragAAAAAAjj45qFV6xhVekP5-uToPI32ragAAAAAAwrdP", "types": "CANRBQcD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ETlNSw_6vrTcv4HXKtYlKg"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAAAYGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAreC1ezKjb5n0AmQucckax6gAAAAAAAAB8j6lTWpvLdhLMziAIojgZ2QAAAAAAAAACZuiJGdMTgqCiSwiPmMfXSQAAAAAAAAAMbf0kCNuLs46cBi-bJHb4dwAAAAAAAAAGuWTQ7-_O66qoMSOpzHyKowAAAAAAAAB508z_GmZxws47bWB13dfVQQAAAAAAAAAaAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CANGBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0RLFnq52wVIAB0sP7d89Pw"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbrkZ3CKaS4aU08RhYA19y5ITQAAAAABtb68", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dYH5SpsYYEui3Y6WMr108A"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vNqXT4fd_WKeR1cE-hlLelCQAAAAAAC-ob5XT4fd_WKeR1cE-hlLelCQAAAAAAC-om6XT4fd_WKeR1cE-hlLelCQAAAAAACmJlTXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgURkXT4fd_WKeR1cE-hlLelCQAAAAAACgT3kXT4fd_WKeR1cE-hlLelCQAAAAAACgeSRXT4fd_WKeR1cE-hlLelCQAAAAAACge8X", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Pt09Zvf__ya1eNp2CoZNVg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-uTvXT4fd_WKeR1cE-hlLelCQAAAAAAC-xR9XT4fd_WKeR1cE-hlLelCQAAAAAAC-xilXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwXQXT4fd_WKeR1cE-hlLelCQAAAAAACiKCvXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "E4d9ZgpjdjB2MMbdIa-vAg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF88yz5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF78Kz5k14PsCcDvFyUC1kmlV3QAAAAABFxdxz5k14PsCcDvFyUC1kmlV3QAAAAABGnbP6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADqG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzwr", "types": "BgMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KmEOZVutONuRJavBSb15QQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFdwwcEvvhuguaGYCmGWrnWRz1QAAAAACFVOu", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "T9ahUsDV5TPFP3kZTiNCSQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjD5cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLlux", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zqqnfectBMqAU_ittPTUXw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWIIXT4fd_WKeR1cE-hlLelCQAAAAAACqVVkXT4fd_WKeR1cE-hlLelCQAAAAAACqVio", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dLtkTN9H0P9GQGUpxzaGrQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP_3c", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gl4D81F4_LquzSzjpshT5Q"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjXzz5k14PsCcDvFyUC1kmlV3QAAAAABGOHuz5k14PsCcDvFyUC1kmlV3QAAAAABGN3rz5k14PsCcDvFyUC1kmlV3QAAAAABGZW7z5k14PsCcDvFyUC1kmlV3QAAAAABGTAQz5k14PsCcDvFyUC1kmlV3QAAAAABGSeJz5k14PsCcDvFyUC1kmlV3QAAAAABGTOZ", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "C0FEuqrCBrJSXy_icrEjSQ"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAAAx4VL9Bd3XIiGWasJdN8trI5tgAAAAAAAzayL9Bd3XIiGWasJdN8trI5tgAAAAAAAKWhL9Bd3XIiGWasJdN8trI5tgAAAAAAAq7bL9Bd3XIiGWasJdN8trI5tgAAAAAABckC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BQMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-k7aCJZCelwDj5FONxW39w"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFnL5cEvvhuguaGYCmGWrnWRz1QAAAAACE6u7cEvvhuguaGYCmGWrnWRz1QAAAAACE9yHcEvvhuguaGYCmGWrnWRz1QAAAAACE9eTcEvvhuguaGYCmGWrnWRz1QAAAAACELBkcEvvhuguaGYCmGWrnWRz1QAAAAACEyqbcEvvhuguaGYCmGWrnWRz1QAAAAACFyki6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4fZ6VnX9iKRRH_O1UDOxJg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAAAaDLCbvuPzV5FNep-fYYK5KAAAAAAAAACTOM9gozgq3V-c4gPwstZkSQAAAAAAAAABF0PU7bQ8aSr5vRj-z9gSNQAAAAAAAAAGbrZ3Te3vvAhp7zDc6cv-xAAAAAAAAAAEJig11yNM7a5spSitCN_iPQAAAAAAAAAXN65RC-cyc39wNoAyxKtGjwAAAAAAAAAVV5Uh0xtRoRXFV0_Z12MAFgAAAAAAAAAA", "types": "CAMLBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zwhp9WeyhfaKSBb1ToTrGQ"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSM9JgtQ4kMk_MBWrPUAFqVnYywAAAAACSNNogtQ4kMk_MBWrPUAFqVnYywAAAAACF1LrgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFzbEgtQ4kMk_MBWrPUAFqVnYywAAAAACFzjCgtQ4kMk_MBWrPUAFqVnYywAAAAACFx9tgtQ4kMk_MBWrPUAFqVnYywAAAAACJLjwgtQ4kMk_MBWrPUAFqVnYywAAAAACJLokgtQ4kMk_MBWrPUAFqVnYywAAAAACI3krgtQ4kMk_MBWrPUAFqVnYywAAAAACI4PzgtQ4kMk_MBWrPUAFqVnYywAAAAACIvZygtQ4kMk_MBWrPUAFqVnYywAAAAACIvxWgtQ4kMk_MBWrPUAFqVnYywAAAAACIweSgtQ4kMk_MBWrPUAFqVnYywAAAAABsw8kgtQ4kMk_MBWrPUAFqVnYywAAAAABszEagtQ4kMk_MBWrPUAFqVnYywAAAAABr84EgtQ4kMk_MBWrPUAFqVnYywAAAAABsAop6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSg76tVKI4mSYDEJ-ABAIpYXcgAAAAAALoLB6tVKI4mSYDEJ-ABAIpYXcgAAAAAALoEa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgIR", "types": "EwMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KaHxjoiTM1eQ6lx1DMgvTg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAAMlBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF8DjWuv2ON9M4hqERzLLGrwAAAAAAAAA4jl0Few0KXqirBZp0WuOd2wAAAAAAAABV2CjidhF2o1l9AQQZ7O2_8wAAAAAAAAAVAmTcFForv1r91KDhJjsuQQAAAAAAAADdUVlIDr_FMx_kZCYsc8A86AAAAAAAAAAQ8T0AfTas4UaJM-evU8y7oQAAAAAAAAAU_zDk_N7NUcNRTqIuzYKxDgAAAAAAAAAgobA_YN1BhcTIsrqf5XOlGQAAAAAAAAAEfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdaMzea5YF1p9DWzFcmq3VzwAAAAAAAAAQnbsBVHmpV2luDgffbdJNFAAAAAAAAAAWcRoGFhrzTt6STyxXzS_QFgAAAAAAAACzs7hdxBbMHWQxy2GABBYaPQAAAAAAAAAJF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAd9zPkZE4RJJmPlROxnxkxmwAAAAAAAAAE9P399qv1PUm-fcjEeECPlgAAAAAAAAABmfgswW5tnP--5haDnNTmnwAAAAAAAAAIudgPCGqbKhChfal6WK47OgAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAETsgtQzmVVhgNxUfY9I6sRbQAAAAAAAABXqEeeXRmfDyuVGRvTU8S2wQAAAAAAAAAYbv8FdXOrnnAB5gTPcCRfQgAAAAAAAAAA", "types": "CAM8BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "j5wAfaxsqFHmGRlT9DISZw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACXVSALBRPvgHpUWKmpUo1khAAAAAAAAAAA", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NKsocjlsvM68oICIvKxy7A"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACujkfqsU9w34yk0ipcsxq5HgAAAAAAAAAO7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAFk3HyWSdTGgne1xIId1mIvAAAAAAAAAAzByiJTXr_lGzkMclhjfq4OAAAAAAAAAAFmVBN-6O2zeIv8GsCRrlSswAAAAAAAAAC7skvoqQ_JlmRN5w43B7kuQAAAAAAAAACP_4qycvxHBZREHniLmgHbAAAAAAAAAAFZa0P_0e34shcw6VJJ_B5XgAAAAAAAACWLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAMvPUU5i5r5XThwPX6RJsZ7gAAAAAAAAAE21OviUyRbmnxs6uitnTC3wAAAAAAAAAP3R6peF1IdwfQqmb119dyMQAAAAAAAAAFjRPUUEtO9tA38nKSenaVfwAAAAAAAAAC3R6peF1IdwfQqmb119dyMQAAAAAAAAAFMDjyE5AlqASoc6cxfe5K2wAAAAAAAAAwmxRwXt-8CQt60ehjLjpoTwAAAAAAAAAKZaQmU-IXyGvFS9G6a9D4BQAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAAD8oQ_ZJ3ImiZWOZcNHv_WYwAAAAAAAAAOZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAWzyZpAtY8QHu127Ag2ZcL9AAAAAAAAAAKLqiOes3kysZtBc8totbsBAAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMj2Clmtm3Gj4Mb2mUsOYrmYagAAAAAAALqfsTGLCNH21piOrMPoln5uBQAAAAAAj0pJsTGLCNH21piOrMPoln5uBQAAAAAAjvHr", "types": "CAMyBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NXFmJwy8bX4T3TBtUWzk4g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAAMlBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF8DjWuv2ON9M4hqERzLLGrwAAAAAAAAA4jl0Few0KXqirBZp0WuOd2wAAAAAAAAFe71tcgbBjsGAuVt1WGfcc1wAAAAAAAAA3JS0BtKRMk3xcaGJmg4uqaAAAAAAAAAATAmTcFForv1r91KDhJjsuQQAAAAAAAADdxztGdRdeA4QtQpYqq2H8IQAAAAAAAAAMpsNLvt90kdVq_EPYAmn_WAAAAAAAAAASS0Xp2_3vk0PCR7xQ7YS7IQAAAAAAAAAG_zDk_N7NUcNRTqIuzYKxDgAAAAAAAAAgobA_YN1BhcTIsrqf5XOlGQAAAAAAAAAEfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdaMzea5YF1p9DWzFcmq3VzwAAAAAAAAAQnbsBVHmpV2luDgffbdJNFAAAAAAAAAAWcRoGFhrzTt6STyxXzS_QFgAAAAAAAACzs7hdxBbMHWQxy2GABBYaPQAAAAAAAAAJF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAd9zPkZE4RJJmPlROxnxkxmwAAAAAAAAAE9P399qv1PUm-fcjEeECPlgAAAAAAAAABmfgswW5tnP--5haDnNTmnwAAAAAAAAAIudgPCGqbKhChfal6WK47OgAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAABEUjNkTX9EbdfPaqIYIxRySgAAAAAAAABP__zQN1KtajJ77R0aE48e2wAAAAAAAAAGAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAM8BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sdYsXSOFq3ZV5V3ZTd5OZw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACX", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "N1nRjzqOIB8y-j3xmzMaSQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAABbw1YwyK3qUUqndS_KOv4yZgAAAAAAAAAM9hAOHgmwWWwZTwO4K132QgAAAAAAAAAevtOmTuUGvKYiQRK_O9kHuwAAAAAAAANh_qijKAoIrj192_UIiHcBhwAAAAAAAAAqm1DxIW9JZBLmNb4AyJUmVAAAAAAAAAAA", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lAXP_bDkVl41XjIqstP9YA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYwsEP3PfgbWsvPc4Y_rpLYQAAAAAAAAAEbxUfVnyBZI_pROsv4HjqngAAAAAAAAAQku9JPnt9w-bpii9tERrqJQAAAAAAAAAW2CjidhF2o1l9AQQZ7O2_8wAAAAAAAAAVAmTcFForv1r91KDhJjsuQQAAAAAAAABh7BvwwtuvWC96Hl7IBrycDgAAAAAAAAASh3gGqWFKeM0FT-wjtm8F8QAAAAAAAAADsXYsfWKSXv-0U7gobefHRgAAAAAAAAEMFqIP6aAzogD29fEjUaOqOgAAAAAAAAAL--8zas13uqm7i12C7ls-FAAAAAAAAAATYDrovqwdGSszhpqY3JNzmQAAAAAAAAAMYVeB-lvoG9jGEyCvHLllLAAAAAAAAAAMnr_UCagIf1Wt7zH1szcBYAAAAAAAAAAHv79qGhig8jRBZdnkzM6uZgAAAAAAAAAXrRV8xs3QPhMvkmhWl1HVVwAAAAAAAAAEa2J1cxfK2aVs0Suyt6w9OQAAAAAAAAAF1dAR1DRu30HO0nOIbN0CKgAAAAAAAAAFu39hB2o_bkkn64I33Zf2OAAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hITXE_D420gqVob6jyPWhA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-THxcEvvhuguaGYCmGWrnWRz1QAAAAACETdScEvvhuguaGYCmGWrnWRz1QAAAAACETwkcEvvhuguaGYCmGWrnWRz1QAAAAACET5YcEvvhuguaGYCmGWrnWRz1QAAAAACEUGZcEvvhuguaGYCmGWrnWRz1QAAAAACEU7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_LS", "types": "CwMDBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iJXWguOQwBM8DxQXGl57jg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAacK3", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EJns5ogzEJmEGiD1xX0ydA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOpxFz17lb-voh9uZicvdXWAAAAAAAAAAgCpvjWyzlv7sy206ARLr_PwAAAAAAAABh", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "alVDVSUDsOePavwUi2Uc4A"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2k", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cyR0VPenXOOdQcTb8oa6LA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAPx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABWdRMG3BjNfH2se-egabnU-QAAAAAAAAAjpv2BnGF3DU5EF7_9vBhh5wAAAAAAAAAjL-H-2xf4p7cHBKcpauzLWQAAAAAAAAAIQ5prAre2OuRCakrlnLYmSwAAAAAAAAAFpu-N4aBOZsn4VU4z7Imv8AAAAAAAAAAF9ZcPzi6i1uzjxExCGCn20AAAAAAAAAANlqnkRSi2l38NtuG1By7gSwAAAAAAAABFXLN55eJ2HplxP0Fb2YBmOQAAAAAAAAAJ_6rkq2S7o8rMRQJ9AofzJAAAAAAAAACLjwkBY0s-EHDmaMTnMHI2lgAAAAAAAAAYLLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACvqKrM4v33j8Ui9JyIz2QXDgAAAAAAAAA4ZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABYEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAFm3tIqGWDOzCH_q4z0bYhiAAAAAAAAAAzPEbpT_8Xljn7u1j5oJzfHQAAAAAAAAEzgAZpLZngO-LIYH92FuHP9gAAAAAAAABU", "types": "CAMmBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7AxSTJksslsjaD4JN8OKPA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABqjy1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAlQ", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RTGr7Nm-Ia9juXQJ0VJo4w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAABQ0tEAP3x_JoFH6wNaGZk0agAAAAAAAAAsl34EZ8xDHNxGTCOWJeXKigAAAAAAAAACtIB1dxGnX0oRcLl9Hw7ZbAAAAAAAAABwmZ6pM0OEbp3JJIi6QUyNsQAAAAAAAAAItUugY2gAhpWf99wEorV4JgAAAAAAAAAjwf9mrqZKrjw_yhc1kSPntQAAAAAAAACE0uQfhygt3iA5h-6EqK0MPAAAAAAAAAAEJYb5JOqnMPOCcF7fd5apugAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAALTqvQ7EacG6CR4rzcFaNFEsTQAAAAAAATPM", "types": "CAMRBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WXat65Sd_FSb3q_O_39_OQ"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXUptYxe-SHgukLEpCkawSk1QWAAAAAABXVjkYxe-SHgukLEpCkawSk1QWAAAAAABXVBsYxe-SHgukLEpCkawSk1QWAAAAAABXZL0Yxe-SHgukLEpCkawSk1QWAAAAAABV3AkYxe-SHgukLEpCkawSk1QWAAAAAABV1uZYxe-SHgukLEpCkawSk1QWAAAAAABV59PYxe-SHgukLEpCkawSk1QWAAAAAAAFzcMYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "DgMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ffqI7X0j8c4Op_Y9dHk8Vg"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACe-XXgtQ4kMk_MBWrPUAFqVnYywAAAAABxp0XgtQ4kMk_MBWrPUAFqVnYywAAAAABxnQT", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "apJrIWswhYE4MqQ6C-GbSw"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABgzj8z5k14PsCcDvFyUC1kmlV3QAAAAACFH_-z5k14PsCcDvFyUC1kmlV3QAAAAABhYaHz5k14PsCcDvFyUC1kmlV3QAAAAABmRWHz5k14PsCcDvFyUC1kmlV3QAAAAABmMwQz5k14PsCcDvFyUC1kmlV3QAAAAABmP_4z5k14PsCcDvFyUC1kmlV3QAAAAABmP5wz5k14PsCcDvFyUC1kmlV3QAAAAABSO2cz5k14PsCcDvFyUC1kmlV3QAAAAABSOAgz5k14PsCcDvFyUC1kmlV3QAAAAABSWD5z5k14PsCcDvFyUC1kmlV3QAAAAABRyDZz5k14PsCcDvFyUC1kmlV3QAAAAABSmpsz5k14PsCcDvFyUC1kmlV3QAAAAABSP5Ez5k14PsCcDvFyUC1kmlV3QAAAAABSCA-z5k14PsCcDvFyUC1kmlV3QAAAAABRqd4z5k14PsCcDvFyUC1kmlV3QAAAAABRqlQz5k14PsCcDvFyUC1kmlV3QAAAAABFRZ5z5k14PsCcDvFyUC1kmlV3QAAAAABFRJ0z5k14PsCcDvFyUC1kmlV3QAAAAABFQkoz5k14PsCcDvFyUC1kmlV3QAAAAABFcEg", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3uWWKodcRyYR91PnFWenuQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACGz1HZ3CKaS4aU08RhYA19y5ITQAAAAACGAB0Z3CKaS4aU08RhYA19y5ITQAAAAACGB8IZ3CKaS4aU08RhYA19y5ITQAAAAABtHkpZ3CKaS4aU08RhYA19y5ITQAAAAABtHTnZ3CKaS4aU08RhYA19y5ITQAAAAABucJQ", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lJAXkKqZmAGFZNufVun9jA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAAAYGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABB5KDO11BWTfkkFO9MFEbTJwAAAAAAAAADoyUgxxOY520Rj3U8w5GHoQAAAAAAAADS_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhTEqFV6xhVekP5-uToPI32ragAAAAAAe4yGqFV6xhVekP5-uToPI32ragAAAAAAZgEGqFV6xhVekP5-uToPI32ragAAAAAAhylM", "types": "CANRBQcD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TwmBGtDgORQiem0fqXxYUQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjXzz5k14PsCcDvFyUC1kmlV3QAAAAABGOHuz5k14PsCcDvFyUC1kmlV3QAAAAABGN3rz5k14PsCcDvFyUC1kmlV3QAAAAABGZEQz5k14PsCcDvFyUC1kmlV3QAAAAABGNUk", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dECtgLMdnRfSCldLDKs55Q"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66OFZ3CKaS4aU08RhYA19y5ITQAAAAAB610wZ3CKaS4aU08RhYA19y5ITQAAAAAB6u8TZ3CKaS4aU08RhYA19y5ITQAAAAAB429dZ3CKaS4aU08RhYA19y5ITQAAAAABw4LlZ3CKaS4aU08RhYA19y5ITQAAAAABw4CuZ3CKaS4aU08RhYA19y5ITQAAAAABw3M0Z3CKaS4aU08RhYA19y5ITQAAAAAB60llZ3CKaS4aU08RhYA19y5ITQAAAAADRxejZ3CKaS4aU08RhYA19y5ITQAAAAABzH6pZ3CKaS4aU08RhYA19y5ITQAAAAAByyDQZ3CKaS4aU08RhYA19y5ITQAAAAABwNqVZ3CKaS4aU08RhYA19y5ITQAAAAABv017Z3CKaS4aU08RhYA19y5ITQAAAAABv3T_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWrX6tVKI4mSYDEJ-ABAIpYXcgAAAAAALUbi6tVKI4mSYDEJ-ABAIpYXcgAAAAAARNoY6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMmAv", "types": "DwMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yzwq46KsVTwibTlrmeJDug"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP_e3", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PacxNzOkBSNx_21zrmhePw"}} -{"Stacktrace": {"frame": {"ids": "R_3RsDYccfUxjNYYah3JZgAAAAAAEhYe-IlGUwajicqSE5-hS5VYigAAAAAAAHbaSZxl-YF9wOaedogsBMtvRAAAAAAAGQAGSZxl-YF9wOaedogsBMtvRAAAAAAAGQBRSZxl-YF9wOaedogsBMtvRAAAAAAAD9N_SZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAADz6pSZxl-YF9wOaedogsBMtvRAAAAAAAFP0nR_3RsDYccfUxjNYYah3JZgAAAAAAB_QJ", "types": "JgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UHDtJaJSDV9olnFzaBKrSA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAAAaieVPbh3z67ZFj7IGoqq7zgAAAAAAAACT0hCUsEaLoSjrd09MdYd2ggAAAAAAAAAFpE_XF-eq0tBl0fP7Y7zrSwAAAAAAAADY8uVqqmQs2krZT40-iqFC3AAAAAAAAADDxyE5fvJvkACvfy-3UczF4QAAAAAAAAAORuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAA8ix3sTGLCNH21piOrMPoln5uBQAAAAAAxhM8eJ7BYIhIN72fM2Cz8k8m9QAAAAAAAOL76tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "CAMKBQMDBQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sPAXeu9JRh62VS0TzctJEA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAGyVtVXhl6s6URamlTOMTdcGgAAAAAAAADmmuP6clMnO_x87qmA5qXiUwAAAAAAAAAEV9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAhxB00KDzyoofk7hNv-bTuugAAAAAAAAAYayzEJn0yXJUnduJSj-TGpwAAAAAAAAAd9MJISbwzA5r2YICNkdXifQAAAAAAAAAFENx9tYcf3nwb1xixCRhg9QAAAAAAAACeY_qFQxT1b6IwL0Y-bhoIvAAAAAAAAAAEV9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAhK1f6nnp5He4VLr7usCCM7gAAAAAAAAABjJ1ozPLEubzrPTK_HIIAngAAAAAAAAAEtiFd8nRg2cPSJT6QKmttjQAAAAAAAAAaJlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2SbdWgpvL6xLkDpUt_yoH7QAAAAAAAAAEKFGBFnajTppUPwKMAfWXvQAAAAAAAAAXeFaXX7H_gmfoLAN8WX-xDQAAAAAAAACOcqdSAx5Uej3ncVA_SUVjsQAAAAAAAAAMPrNII2l46oclr0RXWTYMUAAAAAAAAAAE93KKtPDSfPMvEhxj9OzJ1gAAAAAAAAAHsWCnrMF0Arlnv58qX-TThwAAAAAAAAAB7mqPc5ch4cFcQJn3b5WHKQAAAAAAAAAFIY3kOFBxddrJzoZrzargTAAAAAAAAAAAMP5HRDaDTxfL7AK376UJ7gAAAAAAAXffvQ7EacG6CR4rzcFaNFEsTQAAAAAAATRa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEMf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD7I6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC-586tVKI4mSYDEJ-ABAIpYXcgAAAAAALX096tVKI4mSYDEJ-ABAIpYXcgAAAAAALXvR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEf-_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEf7L", "types": "CAM1BQIDCAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RCyrcGCWUG81ALfuR1iT2Q"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAAAnGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAreC1ezKjb5n0AmQucckax6gAAAAAAAAB8j6lTWpvLdhLMziAIojgZ2QAAAAAAAAACZuiJGdMTgqCiSwiPmMfXSQAAAAAAAAABGOcPlET8lxz6w9LoJqKjeAAAAAAAAAAGEMyu4kjP7CMJCtMZjoFNnQAAAAAAAABsRIm8jbjeC3SfOmyAcdCaLgAAAAAAAAAA", "types": "CANFBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0GDclsv_fsyemmV-JwlFeg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAAAdeEYxe-SHgukLEpCkawSk1QWAAAAAAAAhCTYxe-SHgukLEpCkawSk1QWAAAAAAAAhie", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZSiw25_awwy7RlclMxL6hA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbkcEvvhuguaGYCmGWrnWRz1QAAAAAD-LYEcEvvhuguaGYCmGWrnWRz1QAAAAAD-NaycEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEMmM", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FpeKkethPGO1uv-qrij4uQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ3w", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2j8VUArr_b9AewT6WEQL_A"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAA5cYiYZLNw79YI2sv5ZzfISgAAAAAAAABnsd1-fzhWHGpZk5BbNZ95mAAAAAAAAAERuV9VJttm0goUzsky7YZbIwAAAAAAAACLXoncVs_RZ0C2CaElSEtZqgAAAAAAAAAV_jOWl9rQ0a9rjiw4HiJl9AAAAAAAAAB6syvMOGxiS-YYNSrwBRgBYwAAAAAAAABaKUlo4jHv-fgbgE-4hH_iUAAAAAAAAAAA", "types": "CAMSBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dLT0UoH40niOjk-XVme7dw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8xK", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KPRFk1hV8cCqMtGiVI0VUQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjD5cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLl-ZcEvvhuguaGYCmGWrnWRz1QAAAAACHhtbcEvvhuguaGYCmGWrnWRz1QAAAAACFpPEcEvvhuguaGYCmGWrnWRz1QAAAAACEOw2cEvvhuguaGYCmGWrnWRz1QAAAAACEP-qcEvvhuguaGYCmGWrnWRz1QAAAAACEOMYcEvvhuguaGYCmGWrnWRz1QAAAAACENOEcEvvhuguaGYCmGWrnWRz1QAAAAACEVxg", "types": "GgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oxzBhk8Wo4MNtv46Cf01yQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYCMh__DRjYW6WKuSO4E-9UAAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAB2GBJ1zKS_b9jP7AxB92tjCQAAAAAAAAAo0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFKCxCvDIXtl0ClBmM3hNiLgAAAAAAAAAcFDp23rE1CceEicB2tyC3EgAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_QZucZeLQwMr7zKD51abCrwAAAAAAAAAMS_GmAS-sCtPOI6egY6LXiwAAAAAAAAAPbSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT-r9PdXX1mVfrKM4cjx98VQAAAAAAAAAHckdRYj6mGdEYJvYh_1v9CAAAAAAAAAAVNku1oPInJYwCIRLCUxYLuwAAAAAAAAAGGHfrWkNDTusMoI46fGLR6AAAAAAAAAAXtQBYLE5Qq3rn4uocqQBMfwAAAAAAAAB06SPcjSM_2i5VedtZVzcDIgAAAAAAAAAahrzNr_V8YVZ7ibkr1777pAAAAAAAAADWL1TsSv66pa2kBpdVIVNEAwAAAAAAAABGsavPbEF5C7JhfS7sqrnMYwAAAAAAAABNJvScc-kAblhDe3HgLZgGAwAAAAAAAAEtG4cQid4Xo1Tc_dU6YBAwnQAAAAAAAAAEEEfFWFsgasz8z6yvzLMmSQAAAAAAAAAE8j5cUdTnc2xWo1otBaDFqgAAAAAAAAAwkG8xQd-CQn-vHurDIfEJ-AAAAAAAAAAXhlBuXaLTryBXsnmcprSPLgAAAAAAAAAjNnsXqH-CVYMwVp_zbU78aQAAAAAAAAAIK_1eR84MDkHtmAgcOm681AAAAAAAAAAF3kqKIOk7SslvcfRGmqs1wAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAkQnf", "types": "CANFBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fVY8nef_n-I9Q52QhyCFfQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAALY69pONqxP8-okyxfNdJq0BgAAAAAAAAAT84y2a9q7-onYC7ofRQhclAAAAAAAAAHbdVre-yWU3wOgyoQuLjZhuwAAAAAAAADPZKQvEbJPowmQD1WGxecrUgAAAAAAAAAClVsyFuscOmHlqElG78Lw6AAAAAAAAABAMwH6WLoZft7-zWHlQ0-nZgAAAAAAAAAJLz41bPAk1Ks4JW6AerSXNQAAAAAAAAArqGEeDhl6KqfI2gdmNoRAbAAAAAAAAAAouraIFXU9GqBqmWbTlxjVJAAAAAAAAABi", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "INv4Z_GTWxG4wGfSHZU1vQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADMYfPhlM7fpOuKzX3zIJxLMAAAAAAAAABQjgoPLq3mlyg7cW-Xz24hgAAAAAAAAAAQprbfaPuvU_n-ucbpjQxQ_AAAAAAAAAAj8DgYxzl_EXTxjPKMNwP9uAAAAAAAAABMIfyGrmJO4TRdP2mxshA5zwAAAAAAAADYlSZa8zsk4QhoSwhXWLlSWwAAAAAAAABD7fRblGdKRlNY9QjBlaIJIgAAAAAAAAAR4ExmIEmG5cbeqkrcSlhsEAAAAAAAAAAH12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG7kZxFgbuXnmF5RM9H_z_ggAAAAAAAAAefMXwmZZHoKY5ug0oBlnUxwAAAAAAAAAff15ZZuvJposXWOcmbKQgxAAAAAAAAAAftL230chqNUuroXAS-gtapgAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEKC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlsbpYsnZ_Lwaqr0cHEPo0D185QAAAAAAX2Qn", "types": "CAORBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kE4sjHZhfkpbgfq0NZt7Zg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHpmIz5k14PsCcDvFyUC1kmlV3QAAAAABHpbXz5k14PsCcDvFyUC1kmlV3QAAAAABHeDgz5k14PsCcDvFyUC1kmlV3QAAAAABHdVCz5k14PsCcDvFyUC1kmlV3QAAAAABFwHxz5k14PsCcDvFyUC1kmlV3QAAAAABFxYLz5k14PsCcDvFyUC1kmlV3QAAAAABGnan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuKD6tVKI4mSYDEJ-ABAIpYXcgAAAAAApym-6tVKI4mSYDEJ-ABAIpYXcgAAAAAApymC6tVKI4mSYDEJ-ABAIpYXcgAAAAAApyVc6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD7KI", "types": "DQMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WNKWldEDEQV0rRa3BHpz0w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-BdSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB5T", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MqCIDPuPM-mrPy2Wr4E0pg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbOOYxe-SHgukLEpCkawSk1QWAAAAAAAAO3mYxe-SHgukLEpCkawSk1QWAAAAAAAAObw", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JbKyofNFaA1HXxSLiY4X4g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR8K", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eIiWRPbXZKuww0eQLj2S1w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR5ISNDzWiYDmLZi_Z1ZVETLoAAAAAAAcM5u", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ju1Y8z3O5D2e-y3UCauHLA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf_KcEvvhuguaGYCmGWrnWRz1QAAAAACEUom", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WiKwol9D35rFlRLvyV8-tg"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAABtdoNZ3CKaS4aU08RhYA19y5ITQAAAAABtdu4", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "s-PQaLTLtULIOEGxMYfLJg"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAABnGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABbTIqYHzSLJiXVx4krD2dbMgAAAAAAAAABIFHX6oXBjL3Y93SHOMXcKQAAAAAAAAABZXguWb1db5OZ-xUb0e4ZqQAAAAAAAAM2siCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhZsqFV6xhVekP5-uToPI32ragAAAAAAjkK5", "types": "CANPBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "avHlGvNfTVzeaAgsVgxB6A"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8yg", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "j_ZkdluVAC4IXHAbI6Pmjw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-wCEXT4fd_WKeR1cE-hlLelCQAAAAAACkR-sXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdB4", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "m-sR7gULJJ6wMZ9ZddAv4g"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q6ocEvvhuguaGYCmGWrnWRz1QAAAAAD-SYkcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LJvcEvvhuguaGYCmGWrnWRz1QAAAAACIVgEcEvvhuguaGYCmGWrnWRz1QAAAAACIVaOcEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEM0A", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EZUfXP4Nc5xC-6yjjFWFXQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAE_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYcJ5VgsZvSbEBF2_k2qcfnAAAAAAAAAALML0pN8-bI2jezXitVRzNNgAAAAAAAAAe3APbfJs5SvbH_F9r5lo_3wAAAAAAAAAFfnFonGQxpm_e6wtqJ2HwRwAAAAAAAAAEYM_gl0OeNbTAtY8GRC8UVgAAAAAAAACbTdvyEkBALxwDoycOnD-RjgAAAAAAAABkYM_gl0OeNbTAtY8GRC8UVgAAAAAAAAAeOWoia3OO91L6Q6k2Ypn2XgAAAAAAAAAqRq9zkaF6sUD5FfpUB-KQEwAAAAAAAAAJyGP4qHVV9gP7oOP9pntYfAAAAAAAAADKN8RZIOlN-CzU2nm4KXUzLwAAAAAAAAAKWft0IPWpEm0-yVfU_de9-wAAAAAAAAAAZHpec9nZGwrrhoUYM845NAAAAAAAANPVogCgWMgT5mMAMhpNA0IMiQAAAAAADvpX", "types": "CAMVBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "77WALZLy-UdbTovdy-aeKQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUmK", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_wGEVT2AG1CIU-Fo31czqw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMust6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuZy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMs6C", "types": "CQMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hbFdZ00lApIoSJEOlowBQA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAABWkxlPGvmJaixHgVVGYdR3ZAAAAAAAAAAU0YvYYZqpoRVqaulkjga7JQAAAAAAAAAF6sBKtqBatbzPgogd7p8IQgAAAAAAAAABPp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6IaGOpXjXn5EHF-K9uwEUPQAAAAAAAAAErU2gYsZPORRvUmAaUHS0ngAAAAAAAAAIPp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6TsD0RrBnIgAER8sz4r-hTwAAAAAAAAA45D7Dq5haAPalBjEP77UscQAAAAAAAAAEcGV0DDfmSpIZxUAKnFlOoQAAAAAAAAAPD7HSXO_iqjqFKL1x1h0kQQAAAAAAAAAJAAn_OLmzgN0q8Ywe9O03FgAAAAAAAAAbNCAjj9ga_oZwZ7NBAV35jQAAAAAAAABgLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAMxDXeTINsutWQ3L9FCGjV5QAAAAAAAAAEfrJcVQQvYZxinCGo-1mmtQAAAAAAAAAP3R6peF1IdwfQqmb119dyMQAAAAAAAAAFjRPUUEtO9tA38nKSenaVfwAAAAAAAAAC3R6peF1IdwfQqmb119dyMQAAAAAAAAAFMDjyE5AlqASoc6cxfe5K2wAAAAAAAAAwmxRwXt-8CQt60ehjLjpoTwAAAAAAAAAKl_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAADUM3h48-oBMi00mRAqhB4IAAAAAAAAAAjMj1fVO3bykQ8piLrLc5IFQAAAAAAAAAJp3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAOKE634wiWh6F21tPpXr0Zz3mgAAAAAAEP0L", "types": "CAMqBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OGCNe0J99A_EC_qmplbVRw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiMtz", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jzl9yNFalNrGUBfMA8dCfw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLVSALBRPvgHpUWKmpUo1khAAAAAAAAAAEkoE-yAAYIqbvRVhFPQiQCAAAAAAAAAAA", "types": "CAO_BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g15iIWCPMhS3lvfL06AkwA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxijZ3CKaS4aU08RhYA19y5ITQAAAAABzx6cZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABz1UDZ3CKaS4aU08RhYA19y5ITQAAAAABzyn-Z3CKaS4aU08RhYA19y5ITQAAAAABzzZNZ3CKaS4aU08RhYA19y5ITQAAAAABzyluZ3CKaS4aU08RhYA19y5ITQAAAAABzyd3", "types": "HAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1azdmus8MOaCZZsOVGC4Pw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgJx", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lBjHl88ojwoksS7PDXJBaQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAAtSAAkutGejeRImCZXeWZ-1wAAAAAAAAByB_IRgbCQC1IPEoVkHKMOTwAAAAAAAAAYdB8rpvXeU-U7j8zoRqc_lgAAAAAAAAEhE7J_ZVS2fIyPaAMkyne11QAAAAAAAAAB0YpHRX6ZLVSO127u68ifLAAAAAAAAAABGPK7pyl3RjtyKa9WtooOGgAAAAAAAABf", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "un7IXZTDX45vlOErtbBxEw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LMXcEvvhuguaGYCmGWrnWRz1QAAAAACETVf", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HVutYQOiJQEOoaSuVpBJXg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbPkXT4fd_WKeR1cE-hlLelCQAAAAAACi_9XXT4fd_WKeR1cE-hlLelCQAAAAAACiJjoXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "DwMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iDXH9KGzXeYmvEE7qpFOKA"}} -{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwAIU6tVKI4mSYDEJ-ABAIpYXcgAAAAAADAxgUbK4uezrplMLlSw0h87XfgAAAAAACaTWUbK4uezrplMLlSw0h87XfgAAAAAACQ84UbK4uezrplMLlSw0h87XfgAAAAAAB7dvUbK4uezrplMLlSw0h87XfgAAAAAAB7NE", "types": "BgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "prglnbSV--xvMX6ZLnrz1w"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAABz9J54Rq68TS7B5VvAGA76dQAAAAAAAAAMxhOAoPbUvqtSdEcy7uoPXwAAAAAAAAAFeXimxJw4055xWDImg8DzoQAAAAAAAAAqbKlVw9gLE4jRKTChgrEglAAAAAAAAAA44nZlIDNUxGLY6j_J6UDsFQAAAAAAAAAx", "types": "CAMKBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Kjbzs3pi_uYSkjO5yzNzAg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAFJfinhoQfoECf6Q4HPC08YkAAAAAAAAAAqcn_0Dt8F1JGwazqn6MVOnAAAAAAAAAABDnuglYjSP_yHnOeoUpC43wAAAAAAAAAB3v2TU8A01iCPuVWdiUVv8QAAAAAAAAApL-_tQCaPRoXtazKap89hsgAAAAAAAAAOZhtNJYoOwm655zArM3sIngAAAAAAAAAmYgvoZ6DleZJd_ACRhoNarAAAAAAAAAACUT4r1woqEdacoKDuZFw-vgAAAAAAAADtUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAmQVeLj_oPnEjl_jKTv8aQqAAAAAAAAAAlUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAxrp3sprQtO8hOwekVupMQwgAAAAAAAAA0XoNqQsMeesgJkRR-qQrvugAAAAAAAAAuWNSWOp_4Iqt56ZuW1XrPJwAAAAAAAABnwwh143L4mTM-msioEjaOPQAAAAAAAACOpBAXMFgFarqt_e84PodhnAAAAAAAAAAUtIoSY_1vT_j29F717EmR3AAAAAAAAAAPRZ01NrWKTMDuXelOk2KnKQAAAAAAAAA168iZXv_8xxb53ICXrvQepAAAAAAAAAGhCR_orhXYgPjlsF3bAh1bcAAAAAAAAAAQXoQBAZDyQM5EalVK0DT7vwAAAAAAAABIHHvO0O_M7qxq_PkVq5p74wAAAAAAAAHmtKRI47gaUATre6hVOVRyHwAAAAAAAABCmGc5SCx8bcB0yyOsBwmj6QAAAAAAAABwoAl3S1UdiCfcB1msAHRleQAAAAAAAAAA", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QuPwjyefoJQ1lu-T5igwEQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAO-BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bX4y30xaW5TGzCNkEXdvXQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFbojlkH6U8-uq6rXJn3yJDAAAAAAAAAAEa0W4SIobOysiPgaw1gv_JAAAAAAAAAAQHrXUpqEQk4VDnpaZKgdbiAAAAAAAAAA9U2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAABU3F2z0U59C1y3O1vSXqnJygAAAAAAAAAc6_xlTgG59vnh1ZByxJjaSwAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xUZ2KALaaa1kqxkaDKw_ag"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9oaW-L-UrYnSgk4f2xEaPqwAAAAAAAAAHQkUG4hAHW6eayhUWWDPr0gAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABTZ72Z395ctMrvNsGwnkUEwAAAAAAAAAILo4vekCHinjF7Q5VWYdDHgAAAAAAAAATETpIT_bENno5-VoDS6FQuQAAAAAAAAAPFpzkaILHEHFK9_CtVqwp4AAAAAAAAABgREzUm9-kG4oY6GqBh6QfVAAAAAAAAAAEzkuTI7SSlQvBEKKdkI0V6wAAAAAAAAHdgF3s8iawat4dnHe7vGZ-UAAAAAAAAAA7tQZSQj_PY_4Rko5jM2utHQAAAAAAAAAFkmstX56kPKNs-NIw0EbCtgAAAAAAAAAFX07BBA9DtGJkvzMD2Oh2sQAAAAAAAAADXxkZGDV3NKvFYWV6PsOLkAAAAAAAAAAug2QsAFXTBvNgOoqjaVtcfAAAAAAAAAAWHPI2YWr4g9SqMbjuaH6qtgAAAAAAAAAGYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyGEsTGLCNH21piOrMPoln5uBQAAAAAAg4Vk", "types": "CANABQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cRfPb25MGbKffPO7zvRoZQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB81EOz5k14PsCcDvFyUC1kmlV3QAAAAAB81WJz5k14PsCcDvFyUC1kmlV3QAAAAABKEElz5k14PsCcDvFyUC1kmlV3QAAAAABHmTSz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQL", "types": "CQMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LiSJgYaS_IuBq_4ymnNLrg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-BdSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ9K", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "V9tSD5BQ3ATDkE3Dz2odow"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYRr8mF3o9czEU_lrcVazITQAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAHVRV3OqaPHH0CL0c13xlvAwAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAAt0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdBN2CKYaBpOUbIV1BspF0QAAAAAAAAAMJ1pfAEWmqWCNhh7R3GdmfAAAAAAAAAASXs-XIWLkaULMSkIxus6RkgAAAAAAAAA0lbfK5xAhyyH63Gphusud1AAAAAAAAABoFH8EkDW7TkZM8UTvkf_KhgAAAAAAAAAK4kgJPxDp_y70g-_9SJBKrwAAAAAAAABwmVZC5ucQ9s0QMwQ6Cu6VqwAAAAAAAAALakHLSuC4R8vzlPIApTxuxAAAAAAAAAANydGLSNwrZw-nu2sK1xpAIwAAAAAAAAAc4m9mTW_zDlDiftTb5WLt5wAAAAAAAAAF6M6LrYsHqAc6auZXIZFiuQAAAAAAAAAbl-sBEPXDA8ztd_41Qie1FgAAAAAAAAApI48brEkgWPSZXqrqrHkPZQAAAAAAAABvUiUoRYGdR-DlFb1nVPjgzQAAAAAAAACN0FX-pXK8X9ZHvq5PeuRa6gAAAAAAAAAMKYcgZWdWl27hMIBlgVEqhwAAAAAAAACMMLdMFGDeFJJvJRMDhyL8jwAAAAAAAAAKVthdIAkyIWxV-e9fI9rVBQAAAAAAAAASFezK_dQe_u3GP8ThBnZQ8QAAAAAAAACEnQWGdRxvqVjwlLmQWH1PhwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAINa8NlMClggx8jaziUTJXlmWAAAAAAAATLP", "types": "CAMgBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "L5h2Klu_Zrlmt_s7mEC_fA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAADxz_WaY2pXtLyni7L_8jKtBgAAAAAAAAAPEIpTc6zorXqtTjOVazk4HwAAAAAAAABogbCFQS2suYv46rP_aUsebAAAAAAAAADH68Kd2F2G5cbeqk2uYg-UgAAAAAAAAAAHy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGb2ckm-0wQN1Adu_SQOHiPwAAAAAAAAAfuCrYcJJKClqXMP74KTJEhQAAAAAAAAAfW0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMTbeJ7BYIhIN72fM2Cz8k8m9QAAAAAAASDW", "types": "CAPABQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dUDRhU6l3_2B1svNu-m4OQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAvspzm-_Ca31VwijYVQAZSLAAAAAAAAACHmBUMQufVJBVVG00JrcabBwAAAAAAAABYmBUMQufVJBVVG00JrcabBwAAAAAAAAC1", "types": "CANCBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pDq0KLS_CVlPqSda6JpGZw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAazVvSNDzWiYDmLZi_Z1ZVETLoAAAAAAAayyfSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcOjMSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcTyKSNDzWiYDmLZi_Z1ZVETLoAAAAAAAaWGg", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "082Ba9ZuDVL3ONCoRsOt2w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFJSGf2yEAEhxiBfW1U6B9NgAAAAAAAAAEv-dzrDzLbKAbYGTnBhfr9gAAAAAAAAAM4iaBbZIIwXRBOYMSVscz2wAAAAAAAAADf5pCmW13zl5OWUDLG_ClrwAAAAAAAABNynHqfILVzOOqJs-5yJf4gwAAAAAAAAAeU2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAABU3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcL8zuaonez1SFKD0Z2pjJCgAAAAAAAAAA", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_OQKwd7_zKSX8IYHdhu4OA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAyN9nSNDzWiYDmLZi_Z1ZVETLoAAAAAAA5QpXSNDzWiYDmLZi_Z1ZVETLoAAAAAAA5QknSNDzWiYDmLZi_Z1ZVETLoAAAAAAA5R9N", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qvp6aS0dEuRo-26h2BBtzg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAdKZMYsnZ_Lwaqr0cHEPo0D185QAAAAAAdEYDYsnZ_Lwaqr0cHEPo0D185QAAAAAAdJENYsnZ_Lwaqr0cHEPo0D185QAAAAAAch5o", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YZ6XTwSTsk_RRpTARdTTcg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAAMlBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF8DjWuv2ON9M4hqERzLLGrwAAAAAAAAA4jl0Few0KXqirBZp0WuOd2wAAAAAAAABV2CjidhF2o1l9AQQZ7O2_8wAAAAAAAAAVAmTcFForv1r91KDhJjsuQQAAAAAAAADdUVlIDr_FMx_kZCYsc8A86AAAAAAAAAAQ8T0AfTas4UaJM-evU8y7oQAAAAAAAAAU_zDk_N7NUcNRTqIuzYKxDgAAAAAAAAAgobA_YN1BhcTIsrqf5XOlGQAAAAAAAAAEfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdaMzea5YF1p9DWzFcmq3VzwAAAAAAAAAQnbsBVHmpV2luDgffbdJNFAAAAAAAAAAWcRoGFhrzTt6STyxXzS_QFgAAAAAAAACzs7hdxBbMHWQxy2GABBYaPQAAAAAAAAAJF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAd9zPkZE4RJJmPlROxnxkxmwAAAAAAAAAE9P399qv1PUm-fcjEeECPlgAAAAAAAAABmfgswW5tnP--5haDnNTmnwAAAAAAAAAIudgPCGqbKhChfal6WK47OgAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAn8yw5xAkzQPNYncv2nxNJ2QAAAAAAAAAninLD7FTDiZ9QX8bC0I9L_QAAAAAAAAApsYti6chh3H8KzXctZah7uwAAAAAAAAAE7EAsiDF3uoTXazC89bRxpAAAAAAAAAAIpeI4q4l4-jzxMAY6KnhlVgAAAAAAAAAmzbjoTM6fVBg8CyNBFi4-kgAAAAAAAAACwi6IGN8qc6k-a5Oge6MluAAAAAAAAAAQEiFiDjtjvWXj4YGVaTJXOQAAAAAAAADjHAPuRG_LRRYFUeA5sYpd1gAAAAAAAABEs4zVuFE809K66EfKcw5rKwAAAAAAAAAQd1GrTiKrlelSEUD78AN9iwAAAAAAAAGrauNwTX46Nq4EeEhNv4i6ZgAAAAAAAABf1XJVZLI-4RrFbJxSYrx6RgAAAAAAAAAmzxSXOqjkgRFq6yblYso02AAAAAAAAAAKlMVnJZCEehytXJ1BAE4FQgAAAAAAAAB44bMiunlFzrtT5uG63xGsXwAAAAAAAADEMcOo9SSCfgqj14t3xDm01gAAAAAAAAATn-BD459aSOA4JmuYxWtZ3gAAAAAAAAAHrTxaKzkbha_JID224cs5EwAAAAAAAAAHr2p-9d0QpDfcdk32QsPfVQAAAAAAAAA2h9JxRYZ-Y8EVIiI8sDoSGAAAAAAAAAAEzdN3TXjTGHsNnZ0CpnUzmQAAAAAAAAAMNB9Wtr18BllcC8telVa6ewAAAAAAAAAA", "types": "CANXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DAkV_97hJaROs8HKSG_NUg"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAAAYGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABbTIqYHzSLJiXVx4krD2dbMgAAAAAAAAABIFHX6oXBjL3Y93SHOMXcKQAAAAAAAAABZXguWb1db5OZ-xUb0e4ZqQAAAAAAAAM2siCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhZsqFV6xhVekP5-uToPI32ragAAAAAAjkGpqFV6xhVekP5-uToPI32ragAAAAAAjj-EqFV6xhVekP5-uToPI32ragAAAAAAwrdvqFV6xhVekP5-uToPI32ragAAAAAAZyQ0", "types": "CANRBQgD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YFcmZLo-GvC7WdK5tCotfQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAe", "types": "CAO_BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kpyhs2kTFJc98nncsIEGzg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk6jz5k14PsCcDvFyUC1kmlV3QAAAAABFjYpz5k14PsCcDvFyUC1kmlV3QAAAAABFjmVz5k14PsCcDvFyUC1kmlV3QAAAAABFle2z5k14PsCcDvFyUC1kmlV3QAAAAABFZRC", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2T6ASeyC2T0swmyL22ngjQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxGI7XT4fd_WKeR1cE-hlLelCQAAAAAACxGPnXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmu46tVKI4mSYDEJ-ABAIpYXcgAAAAAALQpf", "types": "FQMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ESbYg3aZAaH86uOl-CijNg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxjVcEvvhuguaGYCmGWrnWRz1QAAAAACEN8ucEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEMme", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-B1OuisGq94rIWOaaG-QZQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABqVb0C_sYOU5d3eeu0yalLowAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAproTQ2x4u1u0ROVEifn0kaQAAAAAAAAAtOcVENYdBUHkmXadCZbxMcQAAAAAAAABX7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAMEozR7rHeowembmV8tqrkzHQAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5W0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMTbeJ7BYIhIN72fM2Cz8k8m9QAAAAAAASDW", "types": "CAM1BQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ay1JvUpYidc_jtVVQh5xJQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzScEvvhuguaGYCmGWrnWRz1QAAAAACE_-qcEvvhuguaGYCmGWrnWRz1QAAAAACE_n2cEvvhuguaGYCmGWrnWRz1QAAAAACE-vEcEvvhuguaGYCmGWrnWRz1QAAAAACE_1rcEvvhuguaGYCmGWrnWRz1QAAAAACFX-EcEvvhuguaGYCmGWrnWRz1QAAAAACFYKxcEvvhuguaGYCmGWrnWRz1QAAAAACFlcEcEvvhuguaGYCmGWrnWRz1QAAAAACEhmIcEvvhuguaGYCmGWrnWRz1QAAAAACE_YncEvvhuguaGYCmGWrnWRz1QAAAAACFnTccEvvhuguaGYCmGWrnWRz1QAAAAACE9eTcEvvhuguaGYCmGWrnWRz1QAAAAACELBkcEvvhuguaGYCmGWrnWRz1QAAAAACEyqbcEvvhuguaGYCmGWrnWRz1QAAAAACFyki6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "DwMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VGkfGlLCT3CZxXjvshlG7Q"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABF9pdz5k14PsCcDvFyUC1kmlV3QAAAAABFPfDz5k14PsCcDvFyUC1kmlV3QAAAAABFxl7z5k14PsCcDvFyUC1kmlV3QAAAAABGnUi6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BQMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RsVBVY52cTTp5FCtYm6r4w"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbQ5Yxe-SHgukLEpCkawSk1QWAAAAAAAFznNYxe-SHgukLEpCkawSk1QWAAAAAAAFzx5Yxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHafM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrkU", "types": "CwMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vthGd_F8mbZA2w12Nf4aww"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAak0ECrHyaBQYN9EA2YbnUsgAAAAAAAAAEienfSu3O9tP1fI5DzP9QHAAAAAAAAAADZRJqXZkAD2RTn7JPCFWhywAAAAAAAAAWfu728DpYfA0Sz18mhDy96QAAAAAAAABPag97EyDW0l6c06ZZZZmfNQAAAAAAAAAsNleCed7iD5lY9FUQABqcFQAAAAAAAAAE56J_quP6E7ubMy0oFC4pVgAAAAAAAACGJmNHPBl7DNTU3iu90SpbRwAAAAAAAAAA", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fZs8SW_-AMd6brkAp6VfIg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACXFDHy--PvgHpUWFquuqO7RAAAAAAAAAAE", "types": "CAOMBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VgHBJuj56ocTcdUEuVUkvg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAABQetr0v-F_gZF8yXV_t-VgIQAAAAAAAAAvvJ9aY3SiI_VOViscMoUSuwAAAAAAAAACTdwLOY0C6NYFuVVgfM0c5wAAAAAAAABspRTg5ZWEbp3JJIuMWP-nnQAAAAAAAAAI9YfSdWjTHtXOXD-P-YJ-oQAAAAAAAAAjnia7whBbxOvwBeZB8fnAXQAAAAAAAACE0uQfhygt3iA5h-6EqK0MPAAAAAAAAAAEJYb5JOqnMPOCcF7fd5apugAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAL0K8NlMClggx8jaziUTJXlmWAAAAAAAATNr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTih6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinDe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBF6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOlt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlZ-E6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi6uf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi6nN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi6gJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALMvq", "types": "CAMRBQIDDwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Kz2jgY6jyGc0z6njue6m7A"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACu-VgZWZvvoe_9HhGDZJCzLgAAAAAAAAAO7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAFk3HyWSdTGgne1xIId1mIvAAAAAAAAAAzY8GNsuiR6IzsSj-GbWOIwwAAAAAAAAAFmVBN-6O2zeIv8GsCRrlSswAAAAAAAAAC7skvoqQ_JlmRN5w43B7kuQAAAAAAAAACl00Z5a3xKQTn8W8_ANiQ2gAAAAAAAAAFZa0P_0e34shcw6VJJ_B5XgAAAAAAAACWLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC33kqKIOk7SslvcfRGmqs1wAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOEnRoHyZazasm_zTjL5tnOgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAANUz634wiWh6F21tPpXr0Zz3mgAAAAAAENTq", "types": "CAMtBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TUWMTxzeES_T8-svE5R5CA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmUeXT4fd_WKeR1cE-hlLelCQAAAAAACgkVtXT4fd_WKeR1cE-hlLelCQAAAAAACglaT", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EKi5VuydurxKNxIla0x28A"}} -{"Stacktrace": {"frame": {"ids": "R_3RsDYccfUxjNYYah3JZgAAAAAAEhYe-IlGUwajicqSE5-hS5VYigAAAAAAAHbaSZxl-YF9wOaedogsBMtvRAAAAAAAGQAGSZxl-YF9wOaedogsBMtvRAAAAAAAGQBRSZxl-YF9wOaedogsBMtvRAAAAAAAD9N_SZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2CSSZxl-YF9wOaedogsBMtvRAAAAAAADlvOSZxl-YF9wOaedogsBMtvRAAAAAAAFyKzSZxl-YF9wOaedogsBMtvRAAAAAAAFr4bSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAFQnWR_3RsDYccfUxjNYYah3JZgAAAAAAB-M2R_3RsDYccfUxjNYYah3JZgAAAAAACMGXR_3RsDYccfUxjNYYah3JZgAAAAAAEQj3", "types": "LAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "M-oVh-FVYE_OigiSXRD1tA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAAYywctG_sMzzXt8DhXRU3jGwAAAAAAAAAfO0QBRq09v03gOY7wcqwe-QAAAAAAAAAEWV6g6bHiSUaQ_18ghJ6gvwAAAAAAAAPqzVl_JFLMBO6_XcJyl0ewxwAAAAAAAAEJAU1UxR09cGAZB2y_cCThHQAAAAAAAACOQN3Ei4y0jjQeG3JY3GoqzgAAAAAAAAAL", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tT2A_bCpClAyR0rNtUXbYw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACXVSALBRPvgHpUWKmpUo1khAAAAAAAAAAE", "types": "CAOCBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "b2RWz2cEGgcNrcd3eaLVUw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAAAaLiaLGbucpqFQXncldF_Y7gAAAAAAAAATNClnX-WugtIozBMJf4sI2AAAAAAAAAAQyImdtjjCMZhJ-nQQIrKkrAAAAAAAAAAPiJ0SYUZPRIULwpFw894hbwAAAAAAAAADdoM3EZBe2IZjbKA9eN3_9wAAAAAAAAAJi2OZ9-P_pjOFSV36486xoQAAAAAAAAEgvFHpuMfxurJGYl7N87FnEAAAAAAAAADC", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BeIW539VCuG8AbY5zkzibA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEW1RuXT4fd_WKeR1cE-hlLelCQAAAAAAEWwSEXT4fd_WKeR1cE-hlLelCQAAAAAADUPOkXT4fd_WKeR1cE-hlLelCQAAAAAACnxaWXT4fd_WKeR1cE-hlLelCQAAAAAACney9XT4fd_WKeR1cE-hlLelCQAAAAAACnfV9XT4fd_WKeR1cE-hlLelCQAAAAAACngKlXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfV9XT4fd_WKeR1cE-hlLelCQAAAAAACngKlXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfYlXT4fd_WKeR1cE-hlLelCQAAAAAACniOnXT4fd_WKeR1cE-hlLelCQAAAAAACnffVXT4fd_WKeR1cE-hlLelCQAAAAAACjbLpXT4fd_WKeR1cE-hlLelCQAAAAAACjaYJXT4fd_WKeR1cE-hlLelCQAAAAAACjZvh", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5PRmsP6A6H0WlT5JRWzu5w"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAP4nyMCPt5M-rbb158Tnrz3sgAAAAAAAAB3wFolLawtZ8KIPHu9VlFy3wAAAAAAAAA2bCBdTuDS0DbCDGTJHRgQHgAAAAAAAACK68Kd2F2G5cbeqk2uYg-UgAAAAAAAAAAHy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGb2ckm-0wQN1Adu_SQOHiPwAAAAAAAAAY0v3fw3R6M9K5pBw9frSxowAAAAAAAAAfW0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMTbeJ7BYIhIN72fM2Cz8k8m9QAAAAAAASDV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf", "types": "CAPABQIDCgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fhL78fB6ht38oYP9R7oGng"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPRhSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcNCA", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "t3HuJD9NhwbE9maFj9AONw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAAtSAAkutGejeRImCZXeWZ-1wAAAAAAAACLcDDKtM-30WtgKUZUhSPZowAAAAAAAABn-0VK45z04oVPTcwdwQBREQAAAAAAAAAF4RUgMlPWsuuY5K-fnQNJ_QAAAAAAAAADO6j-APvwgdAIUIKMPStK3gAAAAAAAAAQXw9SMMauw-oBWYANca-iwQAAAAAAAAAYXyIB1JXxkoOQjMae8CICgwAAAAAAAAAF45C-Q8d2gQJCMIvUacUWRQAAAAAAAAAgC4_nW4w-KrPrvs0Bho4_8QAAAAAAAAAM58PnEv0FiTCmFiCnV0BHcAAAAAAAAAAA", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cxsXzrG-rWhSkAffaeLL8w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-BdSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB6fSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa_9X", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zyPUjDErN9KDQ5m99X0sAQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACuCx5RC8g9OTz7PgiGSeLtvwAAAAAAAAAOgY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAFyZ0m5K0hyRADeQkG90vP8AAAAAAAAAAzG03owtPMOb_BDAuY6rOWogAAAAAAAAAFXCoBIRW2zeIv8Jr12c2SPwAAAAAAAAACtmXftvn8hrcleDLJfptXeAAAAAAAAAAFoWAu7yjPEQWDBpYB2hRLjAAAAAAAAACEHL8EuHVSmvyyvO0QJQzjvAAAAAAAAACU9i4yH5hvA0rp4RuaXVKyFQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAMKiKQXI5stF5N-InJuXrsjgAAAAAAAAAEL4Zieid3nVkNJbdYJumC3wAAAAAAAAAPMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFTU7DQ3uAw_xM7DAGYMk_cQAAAAAAAAACMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFOa5CkhVOrx2r2YkOsLGOZwAAAAAAAAAeJUqoXh4FCdEByaAYgHthzAAAAAAAAAAKl_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAADUM3h48-oBMi00mRAqhB4IAAAAAAAAAAGdys1EWfSUaUc_VpYNxn9AwAAAAAAAAAN_AVVUX91IwF8UFsgz3IpgAAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlscYYsnZ_Lwaqr0cHEPo0D185QAAAAAAVFpz", "types": "CAOUBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5jgUXsxTIbIDkQmcG83gUw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAdKZMYsnZ_Lwaqr0cHEPo0D185QAAAAAAdEYVYsnZ_Lwaqr0cHEPo0D185QAAAAAAdCruYsnZ_Lwaqr0cHEPo0D185QAAAAAAdJCm", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ak0vCXdm7bXbIhn8MGGkXw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMltB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlaw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMB-t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUktY", "types": "FAMMBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "H5yRjwOS6pZnYwq27kzT4A"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAAAKg9L9Bd3XIiGWasJdN8trI5tgAAAAAAAq6TL9Bd3XIiGWasJdN8trI5tgAAAAAABckD", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3Ps4eXe9gyP0W0fZFsyk6Q"}} -{"Stacktrace": {"frame": {"ids": "NH411-U9ZJbhx9KntPIOtAAAAAABZledNH411-U9ZJbhx9KntPIOtAAAAAACuF_CNH411-U9ZJbhx9KntPIOtAAAAAACuFzSNH411-U9ZJbhx9KntPIOtAAAAAAB8FM7NH411-U9ZJbhx9KntPIOtAAAAAAB8EjxNH411-U9ZJbhx9KntPIOtAAAAAACE9MdNH411-U9ZJbhx9KntPIOtAAAAAACEjo6NH411-U9ZJbhx9KntPIOtAAAAAABrAzPNH411-U9ZJbhx9KntPIOtAAAAAABddKHNH411-U9ZJbhx9KntPIOtAAAAAABdH-cNH411-U9ZJbhx9KntPIOtAAAAAABdIr-NH411-U9ZJbhx9KntPIOtAAAAAABdJdNNH411-U9ZJbhx9KntPIOtAAAAAABdIpuNH411-U9ZJbhx9KntPIOtAAAAAABdKUBNH411-U9ZJbhx9KntPIOtAAAAAABdYNMNH411-U9ZJbhx9KntPIOtAAAAAABdYBINH411-U9ZJbhx9KntPIOtAAAAAABdRmrNH411-U9ZJbhx9KntPIOtAAAAAABdR2-NH411-U9ZJbhx9KntPIOtAAAAAABdVUeNH411-U9ZJbhx9KntPIOtAAAAAABdRmrNH411-U9ZJbhx9KntPIOtAAAAAABdR5CNH411-U9ZJbhx9KntPIOtAAAAAABdUDKNH411-U9ZJbhx9KntPIOtAAAAAABdYNMNH411-U9ZJbhx9KntPIOtAAAAAABdYBINH411-U9ZJbhx9KntPIOtAAAAAABdRmrNH411-U9ZJbhx9KntPIOtAAAAAABdR3qNH411-U9ZJbhx9KntPIOtAAAAAABdUh_NH411-U9ZJbhx9KntPIOtAAAAAABdRmrNH411-U9ZJbhx9KntPIOtAAAAAABdR2-NH411-U9ZJbhx9KntPIOtAAAAAABdVUeNH411-U9ZJbhx9KntPIOtAAAAAABdRnZNH411-U9ZJbhx9KntPIOtAAAAAABavqR", "types": "IAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "etP9qf40owgaYF723aNtWA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQJvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACeySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAYh-mcFcSefWaXpPLGLAmk8gAAAAAAAADYzXY2fMPD2q8JxxSeQ4an4AAAAAAAAADb1ajhlpq_ffaY9SZwO_yFvwAAAAAAAAAMbYR0b7-vTQ0RKJD6ns3ClQAAAAAAAAAG5WRkp3UGiY89oONYWWfHqAAAAAAAAAAtidAHvTfpCa_Lill3CvLIKwAAAAAAAAECw3qTM6Aby-qZXMm0XUnzgwAAAAAAAAACMm8DVZJmh3QnOlkSNNPztQAAAAAAAAACCqCFKFquafWxP8MGnvInCwAAAAAAAAAFe89Jv2oRIOxOuDnCIkX8tQAAAAAAAAACHgscutZGPI6M_OmJZjfOqwAAAAAAAAAFCY166VCeQEiftRvkym4zdwAAAAAAAAACbkcdRMoapp3BEGDSfW477AAAAAAAAAAMi9YfJMsMCNR_uoRNlOrFdwAAAAAAAAADNpN50MeDuguOnm7L2nqCmAAAAAAAAAAFVGrDFWQNW44E9kj0nxmkbAAAAAAAAAAC3dUfWzJ67_jxjMUga0sxYwAAAAAAAAADxvGRLNtKcQKkLCOFKCOcbQAAAAAAAAAK5vj2qWMYXopIAHMeOOhgxAAAAAAAAAGCk_s_ITRPELxw2Zk2jzGG8wAAAAAAAAAINleCed7iD5lY9FUQABqcFQAAAAAAAAAE56J_quP6E7ubMy0oFC4pVgAAAAAAAACGAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAM6BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TrAEEkzHCQIrkyMsb-wF4w"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN4pH", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4SkGmkKhl-y6jJi976f71g"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAABu1IhEUKf_PDCxfheapNhvQQAAAAAAAACIGS-BM31ayIfhOMl6o8fHjwAAAAAAAABu7zPKGV-eM0z3BYd8xdD0NwAAAAAAAAAHjH-Kh7eMoVAEa99gkdQ-YQAAAAAAAAAWvtOmTuUGvKYiQRK_O9kHuwAAAAAAAAGJfbT9eHA5tj6rUvxqpnewLAAAAAAAAAFKxz8R4MTaPzD1CrgkfDi_QwAAAAAAAAAA", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ijzowidHYpe6-vKJVUy8nA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZvD", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Orgm72EfMt-zO2dZAN4-xQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAA5cYiYZLNw79YI2sv5ZzfISgAAAAAAAABnsd1-fzhWHGpZk5BbNZ95mAAAAAAAAAERuV9VJttm0goUzsky7YZbIwAAAAAAAABVXoncVs_RZ0C2CaElSEtZqgAAAAAAAAAV_jOWl9rQ0a9rjiw4HiJl9AAAAAAAAAFV", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QB20QHI7TlFL4JvuFhH_6A"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAak0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB0qRvG2N9iYeFyl-3xULRJEgAAAAAAAAAe7p_llGp9OZbFMQuhvSu13AAAAAAAAAAIFtjh-A3lytsNmmUroc108AAAAAAAAAACuimFkk5UuxbH1IL630LmngAAAAAAAAAbVPtMofZCgqrw-l9pGX7aHgAAAAAAAAADRSgrZm24iCMR6dfllqWutAAAAAAAAAAaK_N78LhUkthI1fnHsP1_6gAAAAAAAACyTdLBc1JJ3J60d1mSzjojBgAAAAAAAAAA", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WDhZREc9K0ZHjA0h4NDJhw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAACwH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcM9Xltn711KKFcrKCAYh_ZgAAAAAAAAAA", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FrtmF-TX0N6XSfQgrjNNSQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABN1sqZEeUsG3W43_x5Rw_H0wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACflNTKXUVadjdmvcqN0AFxgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF992j67iVEP_ZCQRVTejCUwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFzHOgb2zN-3HJtDx09H8hxgAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFqU4kioVgX1sNw5K2FC6P0AAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_4-ysLAXaTmrllCFWD4d16AAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAcpSIXlNYnJYwCILAJFTEzSwAAAAAAAAAGTyuf4RNGIxt-ueaCsLj22AAAAAAAAAAXvSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0qlujNL7db72ZwWHkSPq1iAAAAAAAAAAsYp9yfnSFmXqLZeNxJrwegQAAAAAAAAAEc8wp1Q45CdLtTNnj6qINTwAAAAAAAAAc883bdFy7P76blVO1v_2KNQAAAAAAAAABC4CcYG0dw-sjNwKzo6iFpgAAAAAAAAAH9hZdX3cgI2b0eP52YXGHgQAAAAAAAAAFoYJNOP9WHbW7VDM0lQ752AAAAAAAAAAGzz8t1MKNT7r4fbicUkeb5QAAAAAAAAAK2Gjxa8Lemwix5NrE6xBsvAAAAAAAAAA7qnR7SPBrCbnbJk8v7ooOnwAAAAAAAAAGkVAvGW6ck8Qya8Jl3jwVtAAAAAAAAAAk7WZtn3_4WSFXB9B9b5nqkgAAAAAAAAABo-e_eFOPJ5Y3ujrj9LYFpQAAAAAAAAAlBRhxcWA8lAPF_eYm7lkGNgAAAAAAAAAEH_kFRY9JjSC9Lp-jWm0JcgAAAAAAAAAI3Di6rJSRIS5hkrkWGdmaSAAAAAAAAAAGhgqLopYu33JZgcC5M5tNUQAAAAAAAAAXc2fBPtlvsbRN7RlI5PkEjQAAAAAAAAAIfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAd3qFLPs_uVDMl6_9vN2zP4QAAAAAAAAAE64MWmifmKvJOzrzegxyj4wAAAAAAAAABMUCtz2ZYSkqE7-3U3tP-UQAAAAAAAAAE43zwHM83cnr3ffAyvl-y3AAAAAAAAAAmW0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMTbeJ7BYIhIN72fM2Cz8k8m9QAAAAAAASDV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjgtIG5EpvTeHopVC9IqkA_kSgAAAAAAAUajIG5EpvTeHopVC9IqkA_kSgAAAAAAASkV", "types": "CANSBQIDCwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zi9qwHR7xXnRG3K6zMFidA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF353Bbxw0b5wHlGJY1WEVWAAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4bWZWPptWisqbpRDA9X8cNgAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVamhiroi9lH-AuCvUISnaLwAAAAAAAAAGQoETQaJh4hk1PJNhgxG6YQAAAAAAAACeJn0UNoyB8RODf8CSewSSrwAAAAAAAAAd4ATwOy2xX5oIgSybARkoywAAAAAAAAAFk0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB7i98a9V97mb3FGgZG6edCFQAAAAAAAAAw_js9oXEovuvcenIstBqeVgAAAAAAAACzNleCed7iD5lY9FUQABqcFQAAAAAAAAAE56J_quP6E7ubMy0oFC4pVgAAAAAAAACGAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CANCBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hD87Iq0SHAPj8Fv9uEQOUw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAALScfiJzEgZCbPFwhs1NPukAAAAAAAAAACsEPQK3dI_zdTRw3NGGeCnQAAAAAAAAAFa25s4LfAOQ9ngFhwu3kfZAAAAAAAAAAC6lCI6tAr7u1DrnIgR2YwwAAAAAAAAAAvrtMndsSFjJOa_fj_uPxNBwAAAAAAAAACLqWoZU6IFVF0r3seu7DqqgAAAAAAAABDSqMYTYY1wH85xWrEyUrl_AAAAAAAAAAK", "types": "CANCBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KcOiTTTgvYGRMXlpLOi98w"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABF0kYxe-SHgukLEpCkawSk1QWAAAAAAABF7IYxe-SHgukLEpCkawSk1QWAAAAAAABGF-Yxe-SHgukLEpCkawSk1QWAAAAAAAA1HOYxe-SHgukLEpCkawSk1QWAAAAAAABqf2", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iBwxinLolVoovC6Eh145Jg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVYFHhxChQm8T7lhNTw8y-DQAAAAAAAAAMS-bF0OQ5zu714NI9jV1-DQAAAAAAAADEb95z1GhnNzkQcVnTAGVlWQAAAAAAAAB3fqaDj1pN5-CyodNN44HbZQAAAAAAAAAQc1uIuH7G_H0iDn31aPif-QAAAAAAAAAIjNnn0Cs8-QNABXdA7q71mAAAAAAAAAABPbXXr1ohgiKjdKmG8bXqXAAAAAAAAAACXQih0feiHcRhpLZTXruLcwAAAAAAAAATkQIfOKgH7suSILPob4uOXAAAAAAAAAEjwTSbu1Pr78mJrU1RTg5RYgAAAAAAAAAkr8runDm4rOcHO76XR-D7jAAAAAAAAAAMqCAXb4nsA8MBowrcfqVWbwAAAAAAAABd2cxgkaQz6jHA-zT7PPZDvwAAAAAAAACzjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAABhRJXjPkp22gaQo9vwY-85JAAAAAAAAAAA", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cyZBUJjFaFOr4hFXJVonyA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB81EOz5k14PsCcDvFyUC1kmlV3QAAAAAB81WJz5k14PsCcDvFyUC1kmlV3QAAAAABKEElz5k14PsCcDvFyUC1kmlV3QAAAAABHmTSz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkw", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Cn9LwUauC1J8ZOAWhiijEg"}} -{"Stacktrace": {"frame": {"ids": "c6lwtZBG2BzNKGtSyzLrTAAAAAAABCWpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGc6lwtZBG2BzNKGtSyzLrTAAAAAAABBZWc6lwtZBG2BzNKGtSyzLrTAAAAAAABWVUam-Z0RfUVY0oYK5VXRDk9wAAAAAABeu4am-Z0RfUVY0oYK5VXRDk9wAAAAAABeopam-Z0RfUVY0oYK5VXRDk9wAAAAAABeePc6lwtZBG2BzNKGtSyzLrTAAAAAAACN4sc6lwtZBG2BzNKGtSyzLrTAAAAAAACNQK1gXEZRnAPQTspGOB36fnyQAAAAAAAYGo1gXEZRnAPQTspGOB36fnyQAAAAAAAXuG1gXEZRnAPQTspGOB36fnyQAAAAAAAW4aUJmIMEc6K8gJ39NHYaD0WwAAAAAAB7FTUJmIMEc6K8gJ39NHYaD0WwAAAAAACBdMUJmIMEc6K8gJ39NHYaD0WwAAAAAABs5QUJmIMEc6K8gJ39NHYaD0WwAAAAAACXLG", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "N8BeXVnVH94z3kcMpdZVRg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAABWyt_cpdTtBVWXz_YP1okGcAAAAAAAAAAUIcdeXxipoRVqav0jM_5DLQAAAAAAAAAFy3suxdda7-517ccPeU80LQAAAAAAAAABxgPPuzI1J0KcF5WhFpW09gAAAAAAAAA0E9rVQyfXmRnEPhP5-Uw5UgAAAAAAAAAELJHrWrJn2NgzCwphqZHUTAAAAAAAAAAIxgPPuzI1J0KcF5WhFpW09gAAAAAAAAA0h7etdb4LVAEPlLKOTYCzyQAAAAAAAAAcODJxpePHpW__WCCRpgG0AQAAAAAAAAAEz7vmRnux3IvBpoyglzVLfwAAAAAAAAAPIs1HM5XBCjCrIyfmtQTsWwAAAAAAAAAJzvqIKMMHl8P7GaPP4lE2kAAAAAAAAAAbsspLyqwqKpD8wnMR9ugciQAAAAAAAABgHL8EuHVSmvyyvO0QJQzjvAAAAAAAAACU9i4yH5hvA0rp4RuaXVKyFQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAOPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMzzqjB_amR59Lv13Nhle_NwbwAAAAAAENS6", "types": "CAMlBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6US40l27xGVk9xU0Gj_K9A"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2qOcEvvhuguaGYCmGWrnWRz1QAAAAACgz-EcEvvhuguaGYCmGWrnWRz1QAAAAACgs1TcEvvhuguaGYCmGWrnWRz1QAAAAACgt6PcEvvhuguaGYCmGWrnWRz1QAAAAACgeR6cEvvhuguaGYCmGWrnWRz1QAAAAACEAcU", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WwPr2gilYMTlY-ITJ8otdg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACamW1QO3T5kZR72H8FRXCCwwAAAAAAAAAA", "types": "CAODBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9PHIiDKAKQbdjZhfXOPI4Q"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYr1L9Bd3XIiGWasJdN8trI5tgAAAAAAA2QPL9Bd3XIiGWasJdN8trI5tgAAAAAAAzqJL9Bd3XIiGWasJdN8trI5tgAAAAAAAzayL9Bd3XIiGWasJdN8trI5tgAAAAAAAKWhL9Bd3XIiGWasJdN8trI5tgAAAAAAAq7bL9Bd3XIiGWasJdN8trI5tgAAAAAABckC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BwMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "o5ViqVqqhAWPiT5DHT3ocA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mW4XT4fd_WKeR1cE-hlLelCQAAAAAAC-neEXT4fd_WKeR1cE-hlLelCQAAAAAAC-ntUXT4fd_WKeR1cE-hlLelCQAAAAAACkSVs", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Icjoo1-DazyjO-tC_2ln0g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAacIH", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_3hLenFHyAFyb6H7VmWWGQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-KK", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Nq7kSiChsqLqIUaoOI5SGA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFxkXT4fd_WKeR1cE-hlLelCQAAAAAACiJIkXT4fd_WKeR1cE-hlLelCQAAAAAACiM0oXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAio9n6tVKI4mSYDEJ-ABAIpYXcgAAAAAAio7-6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimti6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk7GK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk63z6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjigE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk7XQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjjMP6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk5bI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk5Z8", "types": "FAMMBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sWUvdmC1yhMffRymX3J_5g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAa_bpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAbCfmSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcYir", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2Dj-O9jQmIE1I6VOFUdq8w"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2qOcEvvhuguaGYCmGWrnWRz1QAAAAACg0PkcEvvhuguaGYCmGWrnWRz1QAAAAACgxMzcEvvhuguaGYCmGWrnWRz1QAAAAACgt6PcEvvhuguaGYCmGWrnWRz1QAAAAACgePncEvvhuguaGYCmGWrnWRz1QAAAAACXxtMcEvvhuguaGYCmGWrnWRz1QAAAAACXzgEcEvvhuguaGYCmGWrnWRz1QAAAAACETAT", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uBbKBM9HPWXmF7lgBbqn7g"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSJ-", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5BXyGdP4pSqRCS_nYG5jHg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAvspzm-_Ca31VwijYVQAZSLAAAAAAAAAB7TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABUfZfGpgZFJokP-jaeydrs0QAAAAAAAAAJjg3LdO4DNz9FsefjUG1F1gAAAAAAAACY", "types": "CAN4BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uV6WbBNOuHvs6QDcFyIEHg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAAV_QheDKcYlWwsFE4koFnZNgAAAAAAAAABRMYtu6lQVhfanHasngCNQAAAAAAAAAB4dCnMOj8mcIDYox1J0hIoXQAAAAAAAACQ", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NIUTQnmo7hmDvvAn77UZ1Q"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAQgtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAHtP35slrlTA3DUHTsutItwgAAAAAAAAAH59i-wMdSlFTE9FP7ALC-fwAAAAAAAABPJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACa", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xe7_zbD7BhFg8NiRYVvMrg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAEwXaFizeT40CKpdI_o5Zrw0QAAAAAAAAALP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAepBWDMEkxECoqFEbuF_aawAAAAAAAAAAMQNJBtmDNiP_chGYXJszyagAAAAAAAAA3vXkwfvj7jlhBJyKg0XGvywAAAAAAAABTCzDxY4-T6r5w8odVH9tQEwAAAAAAAAAB5pFhsElnVl9ab7AtYBHzuAAAAAAAAAAS-5JZZ12JbTNmT71XiBz0JwAAAAAAAAADmL_UI4nPuRhvUWgvxCaoSwAAAAAAAAC87D9I01It2-2bxvojQpWiIgAAAAAAAAABhQvt9SGcnRC8tVEB_Tur9QAAAAAAAAAOmxNhetCUxYQZQBlbqXLWtAAAAAAAAAABAZGriLcxLoYYv_Z-GwPFpwAAAAAAAABn", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VnaxKNXR9iQyPdmTTWbz9A"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnChGc_KlbDChxhbLYz-xpPwAAAAAAAAALOmzVUgwY22EPoqShuZpT1wAAAAAAAAABrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFbojlkH6U8-uq6rXJn3yJDAAAAAAAAAAETKPAl4roVc6u9INGFwfp_AAAAAAAAAAM4iaBbZIIwXRBOYMSVscz2wAAAAAAAAADf5pCmW13zl5OWUDLG_ClrwAAAAAAAABNynHqfILVzOOqJs-5yJf4gwAAAAAAAAAeU2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAAJFQMAbTidsrwqSy_PmMI2AwAAAAAAAAAuzxRubY_BE7yAKguZGCa7CAAAAAAAAAAPzgWJWAG4cU3Xrqg1zXbg-gAAAAAAAAAFX5LQh34cvbQdsHArBGLyNgAAAAAAAAAUbbGN8BAo2uKiDwhsRH6ZiQAAAAAAAADVRjkBo2z96NcmW7YwRrcnBQAAAAAAAAAEyGyvzFIL_mg5LB3DsyUhRQAAAAAAAABNko4n5NZw4p1DfA2ZbzrmbQAAAAAAAAAF7aCMYIsXT7qQBXR7iNdgwAAAAAAAAAAIhM5W1SXaVZjLnfPtBoKEygAAAAAAAAAgJuabnPpYUK9LMftD27r04AAAAAAAAAAz6OEzoHpJIFWFvsPKbUCReQAAAAAAAAA0FyG2HNXib0Q1YozSvSpDTQAAAAAAAAAEEud0aohygkGfExKi-EplqgAAAAAAAAAWo0OVH2LBiDEc9yJITJL7oAAAAAAAAACQhYwcxK1EdaxISUobp_tMjwAAAAAAAAAF8cgcru2hcpNC8YThxIr0JwAAAAAAAAA0uhX1qfoGgATHLd0SFlL86gAAAAAAAAAvSijfoOxEi2JmZuKT5_EM8wAAAAAAAAAA", "types": "CAMpBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bo6NdGV8GXHmalbT9Hz3Eg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeTryWt-l_RGzsQHaX4nMucAAAAAAAAAAA", "types": "CAPABQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jphq2mADJdPqQSMJRmqCfw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbQ5Yxe-SHgukLEpCkawSk1QWAAAAAAAFznNYxe-SHgukLEpCkawSk1QWAAAAAAAFzx5Yxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHafM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrkG", "types": "CwMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Jlfx0CU2a7x4kprrtwg64Q"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHiCEgtQ4kMk_MBWrPUAFqVnYywAAAAADHiVygtQ4kMk_MBWrPUAFqVnYywAAAAADHdlvgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4WlgtQ4kMk_MBWrPUAFqVnYywAAAAACG2NUgtQ4kMk_MBWrPUAFqVnYywAAAAACG2jCgtQ4kMk_MBWrPUAFqVnYywAAAAACG2ppgtQ4kMk_MBWrPUAFqVnYywAAAAACG3SIgtQ4kMk_MBWrPUAFqVnYywAAAAACG2CMgtQ4kMk_MBWrPUAFqVnYywAAAAACGyc9gtQ4kMk_MBWrPUAFqVnYywAAAAACGvwmgtQ4kMk_MBWrPUAFqVnYywAAAAACG0qhgtQ4kMk_MBWrPUAFqVnYywAAAAACGqIxgtQ4kMk_MBWrPUAFqVnYywAAAAACLm3Z", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KxMpHytF7kd-rarpM4w5Fg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcM9Xltn711KKFcrKCAYh_ZgAAAAAAAAAE8s5hM6TvWnoP9XP3e8VVVwAAAAAAAAAHwh6xTQPkmoOUUrUOOnnNsQAAAAAAAAAgXmED6DCBgU_nxWWvvj2FeQAAAAAAAAAA", "types": "CAOPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CaYO4egGBij97PHY37LF3A"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYf9tQ-FDBLtIC3ufWwyt_SQAAAAAAAAALt1J8MwohlN0N8mOD0D4M9AAAAAAAAAAI931sEtpcdsHnD8gPYzKXOAAAAAAAAAABMZMTsWUUQKF_r8ij_JAjmAAAAAAAAAAMO1v_wbuglNek1zs-lCG90QAAAAAAAAAGbeD_C7F44xTKzF8_Am3s6AAAAAAAAAADybCcUk4-fZcYJk9ygl24tgAAAAAAAAAdGT3vc6Zy2FsC0X3TBWoX8gAAAAAAAAAqUnH-1DVZR_3BxV6FYbbLRQAAAAAAAABfZ53eDlI8CoDip7DSk_R4-wAAAAAAAAKfYo-l279if9LXU5uKe7FeswAAAAAAAAA-Owyk6knOj497RFA7J6tb3gAAAAAAAAAYS91mTbQPR0Q9cILSZvoNyQAAAAAAAAAjekcp8NUShDNkkW-gpN04awAAAAAAAAAP3qSPMlp9gJAXtNU4CfrprgAAAAAAAAANgLXkvrJ336XxS82ftcJqhAAAAAAAAAAaOjnNxNUGxkldJX8RiAriBAAAAAAAAAACTyBQ_JW-YvcEILwljki-UgAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Usa9goZrRSpJ79s2Sa1Vog"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfxrm08oJc5xqpM1VweLZNZwAAAAAAAABmYM2ufQrITmG7Foeyof4SMQAAAAAAAAAELAL42pZYlfWNqKBod68vMgAAAAAAAAAA", "types": "CAM5BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sb2Ufhkj-HCEBpI7dzePDw"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66OFZ3CKaS4aU08RhYA19y5ITQAAAAAB610wZ3CKaS4aU08RhYA19y5ITQAAAAAB6u83Z3CKaS4aU08RhYA19y5ITQAAAAABuFVgZ3CKaS4aU08RhYA19y5ITQAAAAABtHSj", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "D_3OCCgKV6Kk8ntzJs_Wng"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmUeXT4fd_WKeR1cE-hlLelCQAAAAAACgkRWXT4fd_WKeR1cE-hlLelCQAAAAAACgkxZ", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qPIovnY_UHTfC1t6f4Hr0A"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACu-VgZWZvvoe_9HhGDZJCzLgAAAAAAAAAO7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAFk3HyWSdTGgne1xIId1mIvAAAAAAAAAAzY8GNsuiR6IzsSj-GbWOIwwAAAAAAAAAFmVBN-6O2zeIv8GsCRrlSswAAAAAAAAAC7skvoqQ_JlmRN5w43B7kuQAAAAAAAAACl00Z5a3xKQTn8W8_ANiQ2gAAAAAAAAAFZa0P_0e34shcw6VJJ_B5XgAAAAAAAACWLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAMxDXeTINsutWQ3L9FCGjV5QAAAAAAAAAEfrJcVQQvYZxinCGo-1mmtQAAAAAAAAAP3R6peF1IdwfQqmb119dyMQAAAAAAAAAFjRPUUEtO9tA38nKSenaVfwAAAAAAAAAC3R6peF1IdwfQqmb119dyMQAAAAAAAAAFMDjyE5AlqASoc6cxfe5K2wAAAAAAAAAwmxRwXt-8CQt60ehjLjpoTwAAAAAAAAAKl_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAADUM3h48-oBMi00mRAqhB4IAAAAAAAAAAjMj1fVO3bykQ8piLrLc5IFQAAAAAAAAAJp3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAOKE634wiWh6F21tPpXr0Zz3mgAAAAAAEP0K6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALqAi6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpy26tVKI4mSYDEJ-ABAIpYXcgAAAAAALoOG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkl96tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Z56tVKI4mSYDEJ-ABAIpYXcgAAAAAAp15j", "types": "CAMxBQIDCwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ijh2g5A8fvLXjeEqDoDNpQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAAMlBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF8DjWuv2ON9M4hqERzLLGrwAAAAAAAAA4jl0Few0KXqirBZp0WuOd2wAAAAAAAABV2CjidhF2o1l9AQQZ7O2_8wAAAAAAAAACQ9iVqOAjuUhPCVXdqyfA4wAAAAAAAAAPQ490KBNtb0llAbQcXfbmJQAAAAAAAAAFjXtmC4_G6XhSU0GNhzv7SQAAAAAAAAAJw4HCkSSBzJOd2ZGjGE9mQQAAAAAAAAAQnPXIxd1Knp6dqjD3Kv4egwAAAAAAAAAPq9QOGHBEh6GQgY-VLBFr7QAAAAAAAAAOes2NwpstvkIN6VhWmzkTBQAAAAAAAAAR2qYZMbn2dbHGF73xhejdBwAAAAAAAAALzyzhCrZbqF57B5IigsG_tAAAAAAAAADNIVO-RQda5ZeHpRn5q2HynQAAAAAAAAAObFLfWHcBsfD6O8lF_w0zzAAAAAAAAAAFnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYOoSbzwyzFhV1hlFGUdDRowAAAAAAAAAOdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAxU0eTKdsDxlOsU56i41jsOgAAAAAAAAATvhMTgwXcJBbn9i99hn5MzAAAAAAAAAATv0pDU_Bmq425s1_kUBpK1QAAAAAAAAAA", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cPPlFt_kc7DcftmxWZU-iw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHfZKXT4fd_WKeR1cE-hlLelCQAAAAAACy8_rXT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-hZXT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy_VqXT4fd_WKeR1cE-hlLelCQAAAAAACzAIEXT4fd_WKeR1cE-hlLelCQAAAAAACnefEXT4fd_WKeR1cE-hlLelCQAAAAAACney9XT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhjWXT4fd_WKeR1cE-hlLelCQAAAAAACjs1kXT4fd_WKeR1cE-hlLelCQAAAAAAChrznXT4fd_WKeR1cE-hlLelCQAAAAAACgabq", "types": "GwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DuNugRyUNKQa9O6ipjRVvA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACuCx5RC8g9OTz7PgiGSeLtvwAAAAAAAAAOgY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAFyZ0m5K0hyRADeQkG90vP8AAAAAAAAAAzZ80ToqoZC1OOBoR__NmsnwAAAAAAAAAFXCoBIRW2zeIv8Jr12c2SPwAAAAAAAAACtmXftvn8hrcleDLJfptXeAAAAAAAAAAFoWAu7yjPEQWDBpYB2hRLjAAAAAAAAACEHL8EuHVSmvyyvO0QJQzjvAAAAAAAAACU9i4yH5hvA0rp4RuaXVKyFQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAMKiKQXI5stF5N-InJuXrsjgAAAAAAAAAEL4Zieid3nVkNJbdYJumC3wAAAAAAAAAPMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFTU7DQ3uAw_xM7DAGYMk_cQAAAAAAAAACMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFOa5CkhVOrx2r2YkOsLGOZwAAAAAAAAAeJUqoXh4FCdEByaAYgHthzAAAAAAAAAAKl_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAADUM3h48-oBMi00mRAqhB4IAAAAAAAAAAGdys1EWfSUaUc_VpYNxn9AwAAAAAAAAAN_AVVUX91IwF8UFsgz3IpgAAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlsd-YsnZ_Lwaqr0cHEPo0D185QAAAAAAX1n3YsnZ_Lwaqr0cHEPo0D185QAAAAAAxZbQ", "types": "CAOUBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6jaCYXksX4gXZ3wnqIzP_A"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAAtSAAkutGejeRImCZXeWZ-1wAAAAAAAACLcDDKtM-30WtgKUZUhSPZowAAAAAAAABn-0VK45z04oVPTcwdwQBREQAAAAAAAAAF4RUgMlPWsuuY5K-fnQNJ_QAAAAAAAAADO6j-APvwgdAIUIKMPStK3gAAAAAAAAAQXw9SMMauw-oBWYANca-iwQAAAAAAAAHmbHBG5nCjuJ3R3DK71capIAAAAAAAAABQt00AyiEovcQQgPQRAnJDoQAAAAAAAAAJ5jX00vRveA-bSGKVbRAzeQAAAAAAAAALRb5ObrmWUJbOO1wFU20z4AAAAAAAAAAG-vgX2c4oYcqGSJf1kx8Z-wAAAAAAAAAGD6RUjOI12PdX-ntiQc0cxgAAAAAAAAADwsB1hNhVAWAL2RPJHKnfPwAAAAAAAAAF12jTto5lOC7673Q37QQLjQAAAAAAAAAF4RUgMlPWsuuY5K-fnQNJ_QAAAAAAAAADO6j-APvwgdAIUIKMPStK3gAAAAAAAAAQXw9SMMauw-oBWYANca-iwQAAAAAAAAHmbHBG5nCjuJ3R3DK71capIAAAAAAAAABQt00AyiEovcQQgPQRAnJDoQAAAAAAAAAJg5kZ6fdMbNovA5I3sFH88AAAAAAAAAATKLVXRA0aP5RJcNHXSqhKGQAAAAAAAADspJhQ33-O5_U6c6eMCtOthAAAAAAAAAAMhi3CqQWpaFXK4L6DFCZgbwAAAAAAAAADMRu1fZfkmxZ6Mbp7TQiIgAAAAAAAAAADJwot1Ipt7neEx_K5t-jm1QAAAAAAAAAlQVC0RcYLxpeBExTj5_6BpAAAAAAAAAAQ", "types": "CAMvBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "j3fPwb3ArZvn7Z7I5e1B3Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ0X", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vBuMYbV0eX1rnNuqJvyNWA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAADZgiwOUz_dwg5QpZ6rn_mtEAAAAAAAAAAaRZMfsbKLC34Px2zwyEaSpAAAAAAAAAAGK61z3xaGK-rHqmHBTOYNcwAAAAAAAAARSjz2MvPusgDd7v_6YUXcPAAAAAAAAAC1J4eQqgwFH8hGziiVTbtiYwAAAAAAAABbYnHJlbHqayey0i5xkzFE0gAAAAAAAAAMlHZiv7a58px6Gumcpo-6yAAAAAAAAAAffkbxUTZgljnk71ZMnqJnyAAAAAAAAABvj9q5artJZBLmNbsusN-vBAAAAAAAAAAE2vzhsTPfkVRKbOkBMFFkggAAAAAAAAAHcBRhMOn8c3t6EhpuS9K0vgAAAAAAAAAA", "types": "CAMTBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7_opwU1mFxT0XU3A2dlAxA"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHrJigtQ4kMk_MBWrPUAFqVnYywAAAAADHpx9gtQ4kMk_MBWrPUAFqVnYywAAAAADKAEMgtQ4kMk_MBWrPUAFqVnYywAAAAACRqCugtQ4kMk_MBWrPUAFqVnYywAAAAACRqLngtQ4kMk_MBWrPUAFqVnYywAAAAACRoRJgtQ4kMk_MBWrPUAFqVnYywAAAAACRocBgtQ4kMk_MBWrPUAFqVnYywAAAAACRoaBgtQ4kMk_MBWrPUAFqVnYywAAAAACRoqWgtQ4kMk_MBWrPUAFqVnYywAAAAAB9EMpgtQ4kMk_MBWrPUAFqVnYywAAAAAB9EMpgtQ4kMk_MBWrPUAFqVnYywAAAAAB9EMpgtQ4kMk_MBWrPUAFqVnYywAAAAAB9EMpgtQ4kMk_MBWrPUAFqVnYywAAAAAB9EMpgtQ4kMk_MBWrPUAFqVnYywAAAAAB9EMpgtQ4kMk_MBWrPUAFqVnYywAAAAAB9ENVgtQ4kMk_MBWrPUAFqVnYywAAAAABqONkgtQ4kMk_MBWrPUAFqVnYywAAAAABqOorgtQ4kMk_MBWrPUAFqVnYywAAAAABqOwTgtQ4kMk_MBWrPUAFqVnYywAAAAABqPHTgtQ4kMk_MBWrPUAFqVnYywAAAAABrnxA", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "81PIAyCx2Qr8_sB0OgM2gA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN5QmcEvvhuguaGYCmGWrnWRz1QAAAAACNw64", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HcHMtbSJVvIGBxeKT7TjXg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiQ6z5k14PsCcDvFyUC1kmlV3QAAAAABHpn0z5k14PsCcDvFyUC1kmlV3QAAAAABHpp5z5k14PsCcDvFyUC1kmlV3QAAAAABHeJQz5k14PsCcDvFyUC1kmlV3QAAAAABHdQDz5k14PsCcDvFyUC1kmlV3QAAAAABHeGEz5k14PsCcDvFyUC1kmlV3QAAAAABG_LBz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEMf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD7I6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC-5o", "types": "DAMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0BKf-9CBUYklPmi5iCM1rw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOE1fYhCC-W9hkMRzkOdu22QAAAAAAAAAdk99M4bkjfKmg3-yt9HFm8AAAAAAAAAB9HhIaqq60njiI-TSR6IpvaAAAAAAAAAAA", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QD2PazKHor-pbdbD3PDPLA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF9Y7z5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF780z5k14PsCcDvFyUC1kmlV3QAAAAABF64Dz5k14PsCcDvFyUC1kmlV3QAAAAABFPjyz5k14PsCcDvFyUC1kmlV3QAAAAABFxi1z5k14PsCcDvFyUC1kmlV3QAAAAABGnUi6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQO", "types": "CAMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZEBSFm0BO7Q5NJ0sJOp5pg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHwQXT4fd_WKeR1cE-hlLelCQAAAAAAChHqEXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChGUEXT4fd_WKeR1cE-hlLelCQAAAAAAChFAsXT4fd_WKeR1cE-hlLelCQAAAAAACgS3mXT4fd_WKeR1cE-hlLelCQAAAAAACg6fVXT4fd_WKeR1cE-hlLelCQAAAAAACh1Di6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzYv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFrZP", "types": "CQMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "l3unjN-Nom23dUWou6f5fA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABN1sqZEeUsG3W43_x5Rw_H0wAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACflNTKXUVadjdmvcqN0AFxgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF992j67iVEP_ZCQRVTejCUwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFzHOgb2zN-3HJtDx09H8hxgAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFqU4kioVgX1sNw5K2FC6P0AAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_4-ysLAXaTmrllCFWD4d16AAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAcpSIXlNYnJYwCILAJFTEzSwAAAAAAAAAGTyuf4RNGIxt-ueaCsLj22AAAAAAAAAAXvSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0qlujNL7db72ZwWHkSPq1iAAAAAAAAABRm9n_m2jwcbINltpN6wcTbQAAAAAAAAAXcGBPCS3aPXXlmHmrx5RsEQAAAAAAAAFNggzrrjwKdLd4s3CsiRD2XgAAAAAAAAAEvj1iCYbFivBIOzaEHhjU-gAAAAAAAAAAQRLEHBaKoaTG7nEoPkKciQAAAAAAACoXsTGLCNH21piOrMPoln5uBQAAAAAAt4lA", "types": "CAM3BQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fLHZEyltMzzscfMhon-Tzg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAAA65FYxe-SHgukLEpCkawSk1QWAAAAAAAA8DvYxe-SHgukLEpCkawSk1QWAAAAAAABHL8", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "t76-b4gm5U3oB29oJeJYQw"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACe-XXgtQ4kMk_MBWrPUAFqVnYywAAAAABxp4WgtQ4kMk_MBWrPUAFqVnYywAAAAABxXQ9gtQ4kMk_MBWrPUAFqVnYywAAAAABxXzEgtQ4kMk_MBWrPUAFqVnYywAAAAABxZkkgtQ4kMk_MBWrPUAFqVnYywAAAAABxXzEgtQ4kMk_MBWrPUAFqVnYywAAAAABxZkkgtQ4kMk_MBWrPUAFqVnYywAAAAABxXzEgtQ4kMk_MBWrPUAFqVnYywAAAAABxZnogtQ4kMk_MBWrPUAFqVnYywAAAAABqGCJgtQ4kMk_MBWrPUAFqVnYywAAAAABqIOU", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2qcLJwksgGzDh4MhNtDMFw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAAAYGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAABtRaKCDne9fKuTHuPgmdhjQAAAAAAAAABVg8LgIqDa3ypsQ0qV00ZvAAAAAAAAAABLH5Rq2KMtk8z3fPDJ8fY-QAAAAAAAAABgfC602LFbKzsHJ9-hYzAWgAAAAAAAACe", "types": "CANHBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qIbdzZ8tB4OMM3huzZH7DQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfxrm08oJc5xqpM1VweLZNZwAAAAAAAAEIFyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACAE1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAACS4b6Y6AxjtjqP_pey1p_yKgAAAAAAAAA46himjS-PpAivu9i1Bhv6aAAAAAAAAACVH0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsla3GUxZ_d6TdcMBptiLBKQAAAAAAAAAkuwSrGXrIlilHG9LeAbu8sgAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFO32XyvU5fpn5Sx9ZKKSnYQAAAAAAAAAULEf7xTPa92fa-lrUaMUkPQAAAAAAAAA3-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAFRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFna_q_qI2NNskyXQ7-L9cKwAAAAAAAAAQVQoK7BVzszXqPUi0cc2ufgAAAAAAAABCRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFemtx417xjizVLzzaBLAalQAAAAAAAAAoKU_l7oGL7N35bnBXHoHVpAAAAAAAAAB3R43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF4gllBwxobraKpNHjylla1wAAAAAAAAAYbtJR8uWrInrzn_sGkpIt3QAAAAAAAABNRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF1qPLJVVQ8TzPBEa8EsrzjgAAAAAAAAAA", "types": "CANiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UxGwXndIKBYsvQXlfr8jlA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7zyXT4fd_WKeR1cE-hlLelCQAAAAAAC-8B3XT4fd_WKeR1cE-hlLelCQAAAAAAC-ykpXT4fd_WKeR1cE-hlLelCQAAAAAACp71EXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCM6XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ8", "types": "EwMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fN-FycZQoxGhCMzfnhVVLw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcQxTPNhFsgl-8e8i61Q7phQAAAAAAAAAnwnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAE8PySOWxdeTvWtl74Iv620AAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAn5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALXjhdv_h9QN2xNJLPLw-Q9QAAAAAAAAAIEhfrv6pp0yJIe59dBGi7sAAAAAAAAAAZ", "types": "CAMNBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cA8SM2W7SPYEpBx-8uBa1Q"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAA", "types": "CAO-BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-KfBhnJmEvuvAwkRvUGBJQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQEI2MlivQ_yGyq36LnLAGeQAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQOUV_Man7LKpLI_xXeAvtgAAAAAAAAACeM1U5MRplArg1qeEAEk5MlAAAAAAAAAAYNK6q-mYZhWe1E7afoKkwiQAAAAAAAABsijeboCn6LOt0NOcmaRcGZAAAAAAAAAAHoQ244tw9hOZz82ezjc7AlQAAAAAAAAA_4gj0C7RMNmlQUbyfvqTY6AAAAAAAAABcutn7B_e8CjiON2nJb1OPvgAAAAAAAAACj38H0Ei9z2KFpOxhIepE8gAAAAAAAAALapLx4IvDk2OXboJEr3DXkgAAAAAAAAAIFOIMQnzYiyYPDxKOnMW5yQAAAAAAAAAByok_YL73Fh-9mpuyxhgjVQAAAAAAAABW", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Xe-mgxEb6Ktl0FGwLrD9QA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAA1OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOEnRoHyZazasm_zTjL5tnOgAAAAAAAAAKPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMfDpp6LgRqCGeGjs7cnnwItcAAAAAAADsp46tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf", "types": "CAMYBQIDDAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EKNw_XLZvm5U0bSAHP5Qhw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAAAaieVPbh3z67ZFj7IGoqq7zgAAAAAAAACTOM9gozgq3V-c4gPwstZkSQAAAAAAAAABF0PU7bQ8aSr5vRj-z9gSNQAAAAAAAAB8_aLNQj4NizwmYCt1Iy9dBQAAAAAAAAB1xIfNH7oj8c26gQcDKc66DwAAAAAAAAAURuTViGJ9Pf477gXsTgiYyQAAAAAAAAAASNDzWiYDmLZi_Z1ZVETLoAAAAAAA7ldxSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvUXD", "types": "CAMKBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7v_9tj1Xdjf6ueI8cLpeFg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAdKZMYsnZ_Lwaqr0cHEPo0D185QAAAAAAdEYDYsnZ_Lwaqr0cHEPo0D185QAAAAAAdJENYsnZ_Lwaqr0cHEPo0D185QAAAAAAcjuX", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "R_4atfXLBslE1IWQAx5zAA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAAYywctG_sMzzXt8DhXRU3jGwAAAAAAAAAfO0QBRq09v03gOY7wcqwe-QAAAAAAAAAEWV6g6bHiSUaQ_18ghJ6gvwAAAAAAAAPqzVl_JFLMBO6_XcJyl0ewxwAAAAAAAAEJAU1UxR09cGAZB2y_cCThHQAAAAAAAAAA", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hf9wGp5TNFiImJfF3zrljg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCveXT4fd_WKeR1cE-hlLelCQAAAAAAEODDqXT4fd_WKeR1cE-hlLelCQAAAAAACwtaJXT4fd_WKeR1cE-hlLelCQAAAAAACi_9XXT4fd_WKeR1cE-hlLelCQAAAAAACiJjoXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "DQMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "76S40x9sTPqO8zAoNyL8dw"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbsKZ3CKaS4aU08RhYA19y5ITQAAAAADKa-5Z3CKaS4aU08RhYA19y5ITQAAAAADCLGpZ3CKaS4aU08RhYA19y5ITQAAAAAB0Hr7Z3CKaS4aU08RhYA19y5ITQAAAAABz7D8Z3CKaS4aU08RhYA19y5ITQAAAAABz7ZTZ3CKaS4aU08RhYA19y5ITQAAAAAB0J-lZ3CKaS4aU08RhYA19y5ITQAAAAABz_LSZ3CKaS4aU08RhYA19y5ITQAAAAAB0J2gZ3CKaS4aU08RhYA19y5ITQAAAAABz9uyZ3CKaS4aU08RhYA19y5ITQAAAAABvPmp", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xh6Pk0lsPTYRl99fICP3qw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACE75ucEvvhuguaGYCmGWrnWRz1QAAAAACE79pcEvvhuguaGYCmGWrnWRz1QAAAAACFEcOcEvvhuguaGYCmGWrnWRz1QAAAAACFEcOcEvvhuguaGYCmGWrnWRz1QAAAAACFyJ9", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "boIzddYopai9UjphB37nhQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcQxTPNhFsgl-8e8i61Q7phQAAAAAAAAAnwnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAE2quOp8hc50m96mwW1dVSowAAAAAAAAAIM9t3sX7Z2Nj1mpARCDGcawAAAAAAAAAIwcw67NCnOLTYutynHBvqowAAAAAAAAA90vYUuo04uCIksGcEjg9Q4AAAAAAAAAACiFkuHlkQPsBsMnUTpjsUKgAAAAAAAAAF0Cdt9wyWxnG2B-xGXMO6owAAAAAAAABpyYF5YWbjTLokor9oKz_A5AAAAAAAAAAN1YwmAWjsK6oD1Qs8m4ZuaQAAAAAAAAAW3X9PCd1tVPhzrMiwigfodgAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAA5yATvQ7EacG6CR4rzcFaNFEsTQAAAAAAAQGM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMQBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rtLWsf0bQDHrSMWDW9YU3Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmqU", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dn6DDmlkkMhcrqy-oKH_Ew"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF353Bbxw0b5wHlGJY1WEVWAAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4bWZWPptWisqbpRDA9X8cNgAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAYANUDzCguopTSw91qnI0ylAAAAAAAAAAO-kwQ5tzIMTia7ESgS4_wzAAAAAAAAAAdf9rhWt1EzalXyXMX3OGNPgAAAAAAAAAyY9mQUdyp86jQhHqOid6GcwAAAAAAAACW76wxGzK61aMnsTPSzlLCrgAAAAAAAABA8gCX4yiEJccsUYm2373XlQAAAAAAAAAF_XyJLIwcdZbRz28GFFgD_gAAAAAAAABlak65vRueKokoMr4abQv06wAAAAAAAAAHSwsZ-OEsjGI9467rr9oOtQAAAAAAAABJ2CW-pqTEXFOPl1io7AqJBQAAAAAAAAAgGpDSkvmGYDUeFcHbEkrWpwAAAAAAAACCiFAYNfqV6QjD5agVNfBragAAAAAAAAAA", "types": "CANEBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ND1k9rOosEcGzLPWnPdgVA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmKkXT4fd_WKeR1cE-hlLelCQAAAAAACgtBkXT4fd_WKeR1cE-hlLelCQAAAAAACgtXEXT4fd_WKeR1cE-hlLelCQAAAAAACgtOa", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WL6Cc06d288zx9ELZZqz5Q"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACXVSALBRPvgHpUWKmpUo1khAAAAAAAAAAA", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "khaMzqn4jk0qmytmlLpK9Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFu1XT4fd_WKeR1cE-hlLelCQAAAAAACiGo2XT4fd_WKeR1cE-hlLelCQAAAAAACiMiTXT4fd_WKeR1cE-hlLelCQAAAAAACiNLV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAioJZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAioGp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAilrf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAilGr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL3g36tVKI4mSYDEJ-ABAIpYXcgAAAAAAp15j", "types": "FAMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LA1QfR7E7BQq2NnqmNTjFg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP__I", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GHgSIcaSuS6XNpC67kiXTA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVwkBrbsBOqF3Hhcdpb3ph-QAAAAAAAAAFm5-Un0na0bSGJs4I2yfHnwAAAAAAAACDMKYZBkjibLy9f0ZOhg2iJQAAAAAAAADKAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMLBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PKfrUz68RAX4mdNriJ73lg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABqVb0C_sYOU5d3eeu0yalLowAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAproTQ2x4u1u0ROVEifn0kaQAAAAAAAAAtOcVENYdBUHkmXadCZbxMcQAAAAAAAABX7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAMEozR7rHeowembmV8tqrkzHQAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5W0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAACDmEZ3CJcb_VMlpS4-WOOObwAAAAAAAAAMvWPcSmxkbXO7SwVFO_alxAAAAAAAAACJhW140Tsis8BPkUPY8KAOfQAAAAAAAAAVIy6_S92mK2p0BK8GakLo-wAAAAAAAAADrNtMuw4jybcwHekqtmQFUgAAAAAAAAAA", "types": "CAM3BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xe1hJxuA7dGkCnSYKpXyog"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qfmPxWX0umuPnDn2aoiurQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIthZ3CKaS4aU08RhYA19y5ITQAAAAACtH6PZ3CKaS4aU08RhYA19y5ITQAAAAACtH6PZ3CKaS4aU08RhYA19y5ITQAAAAABub-O", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sLM1wIlvdF1g5AqGWS2w3g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAAtSAAkutGejeRImCZXeWZ-1wAAAAAAAACLcDDKtM-30WtgKUZUhSPZowAAAAAAAAD0JN-dgFkoqSE-dHBUib5RMAAAAAAAAAB-pDmevRXuPcE63RgyWWd9hwAAAAAAAAC0LT5lr845yiJBLJcYHx5FbQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAZlSN_wOi6EtlLmPRGOv3HiAAAAAAAAAAA", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RiwkHW7QG1cujKZJxeET4Q"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABC3-Yxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAAA_pPYxe-SHgukLEpCkawSk1QWAAAAAAAA0BbYxe-SHgukLEpCkawSk1QWAAAAAAABq8f6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "BgMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1o1T1TIStxTZj-e2WTNkwg"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADB0YTZ3CKaS4aU08RhYA19y5ITQAAAAADA21XZ3CKaS4aU08RhYA19y5ITQAAAAADA0KdZ3CKaS4aU08RhYA19y5ITQAAAAAC119_Z3CKaS4aU08RhYA19y5ITQAAAAACs3CuZ3CKaS4aU08RhYA19y5ITQAAAAACqklgZ3CKaS4aU08RhYA19y5ITQAAAAACIAqaZ3CKaS4aU08RhYA19y5ITQAAAAACtAiPZ3CKaS4aU08RhYA19y5ITQAAAAACsxfDZ3CKaS4aU08RhYA19y5ITQAAAAACIA1aZ3CKaS4aU08RhYA19y5ITQAAAAACIa_SZ3CKaS4aU08RhYA19y5ITQAAAAABtHkpZ3CKaS4aU08RhYA19y5ITQAAAAABtHTnZ3CKaS4aU08RhYA19y5ITQAAAAABucJx", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "y9X7gkveuiKIarXoPu9Pow"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADMYfPhlM7fpOuKzX3zIJxLMAAAAAAAAABQjgoPLq3mlyg7cW-Xz24hgAAAAAAAAAAQprbfaPuvU_n-ucbpjQxQ_AAAAAAAAAAj8DgYxzl_EXTxjPKMNwP9uAAAAAAAAABMIfyGrmJO4TRdP2mxshA5zwAAAAAAAADYlSZa8zsk4QhoSwhXWLlSWwAAAAAAAABD7fRblGdKRlNY9QjBlaIJIgAAAAAAAAAR4ExmIEmG5cbeqkrcSlhsEAAAAAAAAAAH12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG7kZxFgbuXnmF5RM9H_z_ggAAAAAAAAAefMXwmZZHoKY5ug0oBlnUxwAAAAAAAAAff15ZZuvJposXWOcmbKQgxAAAAAAAAAAftL230chqNUuroXAS-gtapgAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEKC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAChAAnABuJtrWflPvotxCoPjQAAAAAAAAFDgM-zvldT2mxZOhlxJvpRXwAAAAAAAAAXc0OkgT3_p45M6FsCvH3WnQAAAAAAAAAV9BsFwV8tobvksYfuNpORcQAAAAAAAABJoOz1jSRZNClfuKPM_yWNFgAAAAAAAAAG3b73aK2YxmWJY2Of38z3nwAAAAAAAAAG-98KX7lEQngZcvy7BcWxHgAAAAAAAAAKyrynjr7wkKxyqWOPiuvTRwAAAAAAAAAc4BHyios_sf5mi1p4OqQ41gAAAAAAAAAM", "types": "CAOZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Msb5zTh45ugl6Rm8uu8cBQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAAA2Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABbTIqYHzSLJiXVx4krD2dbMgAAAAAAAAABIFHX6oXBjL3Y93SHOMXcKQAAAAAAAAABZXguWb1db5OZ-xUb0e4ZqQAAAAAAAAM2siCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhYW", "types": "CANRBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oZVmtNwsNi_g0dsbCFubSQ"}} -{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACindAJ6GSZQSmfOBquczb-SF8bAAAAAADJQmqJ6GSZQSmfOBquczb-SF8bAAAAAADJQzkJ6GSZQSmfOBquczb-SF8bAAAAAADJRHcJ6GSZQSmfOBquczb-SF8bAAAAAADEDuBJ6GSZQSmfOBquczb-SF8bAAAAAADScHEJ6GSZQSmfOBquczb-SF8bAAAAAADScBrJ6GSZQSmfOBquczb-SF8bAAAAAAC2a9GJ6GSZQSmfOBquczb-SF8bAAAAAAC2emyJ6GSZQSmfOBquczb-SF8bAAAAAAC2eHqJ6GSZQSmfOBquczb-SF8bAAAAAAC2eTRJ6GSZQSmfOBquczb-SF8bAAAAAACryIOJ6GSZQSmfOBquczb-SF8bAAAAAACsls4J6GSZQSmfOBquczb-SF8bAAAAAACr0M3J6GSZQSmfOBquczb-SF8bAAAAAACr5OEJ6GSZQSmfOBquczb-SF8bAAAAAACr7-vJ6GSZQSmfOBquczb-SF8bAAAAAACqmvlJ6GSZQSmfOBquczb-SF8bAAAAAACqmTUJ6GSZQSmfOBquczb-SF8bAAAAAACqmFnJ6GSZQSmfOBquczb-SF8bAAAAAACqpMwJ6GSZQSmfOBquczb-SF8bAAAAAACqo-UJ6GSZQSmfOBquczb-SF8bAAAAAACnz9YJ6GSZQSmfOBquczb-SF8bAAAAAACn_1xJ6GSZQSmfOBquczb-SF8bAAAAAACoBsEJ6GSZQSmfOBquczb-SF8bAAAAAACn7F2J6GSZQSmfOBquczb-SF8bAAAAAACoOf0", "types": "GgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4NWbNOvcI2-WO4U1Dw4kVQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbKFXT4fd_WKeR1cE-hlLelCQAAAAAACiGWEXT4fd_WKeR1cE-hlLelCQAAAAAAChWnJXT4fd_WKeR1cE-hlLelCQAAAAAACgUYD", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PaaTApbUCVYoJdVKOnUBcA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAABQ1PhVGIcoQAgleHhVcpf27gAAAAAAAAAvyBWSGqiiI_VOVi3uSjsniwAAAAAAAAACTdwLOY0C6NYFuVVgfM0c5wAAAAAAAABsQVg0XAOEbp3JKK1NFLqVYQAAAAAAAAAH8PLzoB-u4hzDZ_WKIg8FxQAAAAAAAAAhYNG5rLJWIsjMTCOpoQz9TwAAAAAAAACG0uQfhygt3iA5h-6EqK0MPAAAAAAAAAAEJYb5JOqnMPOCcF7fd5apugAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAK7KeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARjj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJje6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIkH", "types": "CAMRBQIDBQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XC5SywLBeX1PQ5gC8i2e8A"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgeg", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YM8VOmaiYixjkGqh3aYLRQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi1yZ3CKaS4aU08RhYA19y5ITQAAAAACDhpfZ3CKaS4aU08RhYA19y5ITQAAAAABzxf3Z3CKaS4aU08RhYA19y5ITQAAAAAB0DIP", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "acpHxpMx1lbCfcQ7t4BGwg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAABBDWqem0MEs_2ehK2H6Rh43QAAAAAAAAAFooWfvmuPvRIfiWIystor5AAAAAAAAAACIU8u--NbxjOeMw1G028-GgAAAAAAAAAF1bYVLJaC5WBOgJdtA4ffZwAAAAAAAAAEBemXd-G6RDOwTOuPV3xpUwAAAAAAAAAVnKc55B3__dngRZpQx4dj-gAAAAAAAAAA", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7E99aSr-SRhrdHQrfS71Qg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAeNhWYsnZ_Lwaqr0cHEPo0D185QAAAAAAy4ZLYsnZ_Lwaqr0cHEPo0D185QAAAAAAxYinYsnZ_Lwaqr0cHEPo0D185QAAAAAAX9uWYsnZ_Lwaqr0cHEPo0D185QAAAAAAX9jlYsnZ_Lwaqr0cHEPo0D185QAAAAAAX58EYsnZ_Lwaqr0cHEPo0D185QAAAAAAxSr0", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VQ0HdY-PXTuyjNIK6sm3RQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAE_qFV6xhVekP5-uToPI32ragAAAAAAxUqh1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAig", "types": "CAMDBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cjNpri0ftTdS6gywMlEj6w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF_IhPXrChwahxbJ63NZZANQAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4rDcHLjUrpvKg-XXDfFGKmAAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADv9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABDHfFlM3axnhO28EteQn-2WAAAAAAAAABJ5utt2dQ8HKrTepHdNpprxQAAAAAAAAC_s5lZOggY7ZLnXpijZE8QXAAAAAAAAAAI_YKuYdYS6GrfldL4xVlQpAAAAAAAAAAPmMCAr2lIhv406zmoHkIB0AAAAAAAAABYIkSo5taWM8U71y2hDxxHngAAAAAAAAA1lBsFTWSf77aYVb9HHr9tcQAAAAAAAAAFlBsFTWSf77aYVb9HHr9tcQAAAAAAAAAFewU9RfzsPed7JATT94aw-wAAAAAAAAApfZ3COijH60wdDIIVUpSInQAAAAAAAAAIx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAOPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMzzqjB_amR59Lv13Nhle_NwbwAAAAAAENS56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf", "types": "CANOBQIDDAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2IwLSNJXYCXB5L0gWZQiOA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAe", "types": "CAODBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Yg3TaXRMJTka-oF2wrTuxw"}} -{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHbaI-7FSPUFvGFUkGA6jlppywAAAAAAC0iva7-X3xxhJ0wnbzlLWX3GVgAAAAAACCwLa7-X3xxhJ0wnbzlLWX3GVgAAAAAABjEza7-X3xxhJ0wnbzlLWX3GVgAAAAAAAusWa7-X3xxhJ0wnbzlLWX3GVgAAAAAAAqFXa7-X3xxhJ0wnbzlLWX3GVgAAAAAAApHuxFA0V1dCXRoFBkiljWo8aAAAAAAACc-uxFA0V1dCXRoFBkiljWo8aAAAAAAACaymxFA0V1dCXRoFBkiljWo8aAAAAAAACYfqHWXbCIJWwuTsAgHvMObKpwAAAAAAAuPdHWXbCIJWwuTsAgHvMObKpwAAAAAAArILuQABjZuvQhtEKnwbx2fUhQAAAAAAASpM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyOk", "types": "DgMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "e16fjaKgAD3mYYzxm1wovw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAFJfinhoQfoECf6Q4HPC08YkAAAAAAAAAAqcn_0Dt8F1JGwazqn6MVOnAAAAAAAAAABDnuglYjSP_yHnOeoUpC43wAAAAAAAAAB3v2TU8A01iCPuVWdiUVv8QAAAAAAAAApL-_tQCaPRoXtazKap89hsgAAAAAAAAAOZhtNJYoOwm655zArM3sIngAAAAAAAAAmYgvoZ6DleZJd_ACRhoNarAAAAAAAAAACUT4r1woqEdacoKDuZFw-vgAAAAAAAADtUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAmQVeLj_oPnEjl_jKTv8aQqAAAAAAAAAAlUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAxrp3sprQtO8hOwekVupMQwgAAAAAAAAA0XoNqQsMeesgJkRR-qQrvugAAAAAAAAAuWNSWOp_4Iqt56ZuW1XrPJwAAAAAAAAAwXg_iImOzH17AtHZPB5_7kAAAAAAAAABp", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2MnN4qpG46YaqtSyYvWn0A"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDAIcEvvhuguaGYCmGWrnWRz1QAAAAACuEFvcEvvhuguaGYCmGWrnWRz1QAAAAACuGfdcEvvhuguaGYCmGWrnWRz1QAAAAACuFZccEvvhuguaGYCmGWrnWRz1QAAAAACO_OecEvvhuguaGYCmGWrnWRz1QAAAAACOiXVcEvvhuguaGYCmGWrnWRz1QAAAAACNjn4cEvvhuguaGYCmGWrnWRz1QAAAAACGv5kcEvvhuguaGYCmGWrnWRz1QAAAAACGxrEcEvvhuguaGYCmGWrnWRz1QAAAAACGxgXcEvvhuguaGYCmGWrnWRz1QAAAAACGmeEcEvvhuguaGYCmGWrnWRz1QAAAAACGlnu", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "R7BFs04CJH6GNBGB3gnfow"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc5-Qz5k14PsCcDvFyUC1kmlV3QAAAAABcnaEz5k14PsCcDvFyUC1kmlV3QAAAAABakmCz5k14PsCcDvFyUC1kmlV3QAAAAABaBsyz5k14PsCcDvFyUC1kmlV3QAAAAABaBLIz5k14PsCcDvFyUC1kmlV3QAAAAABHZsIz5k14PsCcDvFyUC1kmlV3QAAAAABKB57z5k14PsCcDvFyUC1kmlV3QAAAAABLLQZz5k14PsCcDvFyUC1kmlV3QAAAAABK3KAz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkEz5k14PsCcDvFyUC1kmlV3QAAAAABF9nlz5k14PsCcDvFyUC1kmlV3QAAAAABF9jT", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZAocMl5gXpxySXSm5DNBqA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAAAaI0QtQ3x5Qtt-qibQRB-qEAAAAAAAAACTcGonFmCxGC0dUZ5gEg0KQgAAAAAAAAAF0Cdt9wyWxnG2B-xGXMO6owAAAAAAAADYVx2H7p06nNerPKpNR75HGQAAAAAAAAC4jxC-yJ269vYCy31KbC4fCwAAAAAAAAAgc7Y6qNf105blezu_vIWQRAAAAAAAAAAWhGSV5zKrRFpCoM5XmwxNpAAAAAAAAAAH_56OZ5ZdGG3mX9wz1zNHYgAAAAAAAAAURuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAA51NxYsnZ_Lwaqr0cHEPo0D185QAAAAAAyeWKvQ7EacG6CR4rzcFaNFEsTQAAAAAAAPN16tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMNBQMDCQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YxRH1n6rM_I4hLiGtKmVMQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChj9yXT4fd_WKeR1cE-hlLelCQAAAAAAChc3K", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RGoTgpaa0vsxWtWSGraFrA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXsmh", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "plpBd6vKoF_CiIU1pw2x5g"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYr1L9Bd3XIiGWasJdN8trI5tgAAAAAAA2ErL9Bd3XIiGWasJdN8trI5tgAAAAAAAKWhL9Bd3XIiGWasJdN8trI5tgAAAAAAAq7bL9Bd3XIiGWasJdN8trI5tgAAAAAABckC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBUR", "types": "BQMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Mk9zCNEY-hYZnvZiO93Kbw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPUhSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcNBR", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-JEJOChfUhn_oksa05rgbA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wS-0A4EIVIssr7OiOYGLFw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-uTvXT4fd_WKeR1cE-hlLelCQAAAAAAC-xG9XT4fd_WKeR1cE-hlLelCQAAAAAACp71EXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCM6XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ8", "types": "EwMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Rt3hWtoW0qQnxFuClIgRWQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlqJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCIE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA9j", "types": "FAMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UutkxbmCiH9flxeQtiJBtA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAeNhWYsnZ_Lwaqr0cHEPo0D185QAAAAAAy4ZLYsnZ_Lwaqr0cHEPo0D185QAAAAAAxYinYsnZ_Lwaqr0cHEPo0D185QAAAAAAX9uWYsnZ_Lwaqr0cHEPo0D185QAAAAAAX9j6YsnZ_Lwaqr0cHEPo0D185QAAAAAAX7fbYsnZ_Lwaqr0cHEPo0D185QAAAAAAgVU9", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "i3VVbQEF8y09CAolsSQBvg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbY0Yxe-SHgukLEpCkawSk1QWAAAAAAAFznNYxe-SHgukLEpCkawSk1QWAAAAAAAFzx5Yxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHafM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrkJ", "types": "CwMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9UeR8byKX2vZOFjGKyo1sQ"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYr1L9Bd3XIiGWasJdN8trI5tgAAAAAAA2QPL9Bd3XIiGWasJdN8trI5tgAAAAAAAzhBL9Bd3XIiGWasJdN8trI5tgAAAAAAAzayL9Bd3XIiGWasJdN8trI5tgAAAAAAAKWhL9Bd3XIiGWasJdN8trI5tgAAAAAAAq7bL9Bd3XIiGWasJdN8trI5tgAAAAAABckC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BwMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "P6G78bo1y5OAViRPCWI9Fg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaaA_", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CAKC2o2NYggEGwOb_Ja6EQ"}} -{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwAIU6tVKI4mSYDEJ-ABAIpYXcgAAAAAADAxg6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC6gT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC6XuUbK4uezrplMLlSw0h87XfgAAAAAABbI3UbK4uezrplMLlSw0h87XfgAAAAAABa4JUbK4uezrplMLlSw0h87XfgAAAAAABayB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIZj-6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIZhK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VfwVZh1ddTJjJNWNT0v7rA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAALY69pONqxP8-okyxfNdJq0BgAAAAAAAAAT84y2a9q7-onYC7ofRQhclAAAAAAAAAHbdVre-yWU3wOgyoQuLjZhuwAAAAAAAADC3WlbNt9bmyJw_k2Ygz1zOwAAAAAAAAEdC87NV7kL69jQPmyqDubIUAAAAAAAAAINH-wSa23kc3U3gWusbQ0H7AAAAAAAAAAv6lofCsTYrZTgxumxKdLXaAAAAAAAAAAW48NTOm9REY9geqrnhLmtIQAAAAAAAAAHLZh55WiQA4pYUO2PyDs0LQAAAAAAAAAAAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMSBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "96g1R53V5QyPuXTUHSgw4Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAACqGMNSe-6LTlpuiQTu86RdbwAAAAAAAAA1wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATmQVHcTFXg4JaHxKFUu2SNAAAAAAAAAAK0qdPtfCOXWtTMQkqPpfTpAAAAAAAAAAD4pD3shcvlMj_8ybo7T2TVAAAAAAAAAFCS0Vcinvs4UXd1rhNSjovpwAAAAAAAABVbAlNhxIUaCZOzq5Go2-fDwAAAAAAAAAIUNi2PfJJ-vKG8q63OaknIAAAAAAAAAHcPDxaYxBC-l8PtK0orl2RQwAAAAAAAAETSZD9YVGYcY6t7-F09t_klgAAAAAAAACDMxRnrnRp5fRRlUEkyuK1rQAAAAAAAAAwg5HW81gVegsp2uHOoheefQAAAAAAAAFo", "types": "CAMnBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wJ7q8DE_vEYNiHBNDFSXUA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAAAjj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAc2wgGDGWUYKAius-1IxNgMQAAAAAAAAALs5CzqyR6_GmBEGxwpC8zNAAAAAAAAABK4EfOVjZ8UDEWtY1KnqslYAAAAAAAAAAhYNTunKybilcdruNbkYh4bAAAAAAAAACw0Dua3wYmaGvRx9kIXglBGQAAAAAAAAAF", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kZ52LnrbGCiUbg8bZ6HPVA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyFRZ3CKaS4aU08RhYA19y5ITQAAAAABtxAKZ3CKaS4aU08RhYA19y5ITQAAAAABt4QoZ3CKaS4aU08RhYA19y5ITQAAAAABt4MjZ3CKaS4aU08RhYA19y5ITQAAAAABucqg", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GY1eWbgNYGRrYMML_stAMg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQEI2MlivQ_yGyq36LnLAGeQAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQOUV_Man7LKpLI_xXeAvtgAAAAAAAAACeM1U5MRplArg1qeEAEk5MlAAAAAAAAAAYNK6q-mYZhWe1E7afoKkwiQAAAAAAAADYr6Fg_DPZ96geKIjDaUl37wAAAAAAAACsmdgXK8UgXxJq-aF0PWZBWQAAAAAAAAAMuHXk96D_H0MjX0tAh6AHfQAAAAAAAAAGBQgPvwiw9NNbOJgDcqi8DAAAAAAAAAAtD8SuOAHHuRsEe9MWrwApVgAAAAAAAABUpD64Y8dYs0KzJcRfejjvpQAAAAAAAAGx0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAACRkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgzLRHJmK7SuaCDIOsydGjpQAAAAAAAAAFms-x3fJ8QBk7y_Ax6kns5QAAAAAAAAAEOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATbFLL83EKKCGyH9Z7dsfG-gAAAAAAAAAKvPYk0SjnlrT8lBtv8AT1zwAAAAAAAAAFY1sWmlA0pQA0NwSqi6MlaAAAAAAAAAAwSa5UQWeQwQhAwnRSyvXN6QAAAAAAAAAQhOdz_oBFNfeapSWodIrXRgAAAAAAAAAjj7x7In8uVSNkO5Lw9JJ5EAAAAAAAAAAE2wqip68wJ7R4oQBTg-VpcgAAAAAAAAAVtPpj-2ALdWrlHSun1i2qNwAAAAAAAAAE3xCWfq507FWOndXXpuD96wAAAAAAAAAC3Y-shQolAFk-b5-RgjAxvQAAAAAAAAABay5iQ4V42J1TpJ3_RpuIyAAAAAAAAAACkC7Xj_JtWjeOjNmigyLWMQAAAAAAAAAf8oHQ4oPK7To4Ft-o_Rf-MAAAAAAAAAAFAg2jFGEQrqXOwo9qPdLBmQAAAAAAAAAN9vWPKl5u9pjT9R26d7goWAAAAAAAAAAIkxlPGvmJaixHgVVGYdR3ZAAAAAAAAAAUFlEmrMapoRVqavpRHEspQQAAAAAAAAAFwKq13sxbA1Q177k-e_lIpgAAAAAAAAABPp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6IaGOpXjXn5EHF-K9uwEUPQAAAAAAAAAErU2gYsZPORRvUmAaUHS0ngAAAAAAAAAIPp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6TsD0RrBnIgAER8sz4r-hTwAAAAAAAAA469NpEFDNvAeCd2RwbOmIAAAAAAAAAAAEcGV0DDfmSpIZxUAKnFlOoQAAAAAAAAAP9RZkYL0fVSfLG-HsYblWBQAAAAAAAAAJAAn_OLmzgN0q8Ywe9O03FgAAAAAAAAAbNCAjj9ga_oZwZ7NBAV35jQAAAAAAAABgLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAMvPUU5i5r5XThwPX6RJsZ7gAAAAAAAAAE21OviUyRbmnxs6uitnTC3wAAAAAAAAAP3R6peF1IdwfQqmb119dyMQAAAAAAAAAFjRPUUEtO9tA38nKSenaVfwAAAAAAAAAC3R6peF1IdwfQqmb119dyMQAAAAAAAAAFMDjyE5AlqASoc6cxfe5K2wAAAAAAAAAwmxRwXt-8CQt60ehjLjpoTwAAAAAAAAAKZaQmU-IXyGvFS9G6a9D4BQAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAAD8oQ_ZJ3ImiZWOZcNHv_WYwAAAAAAAAAGGq5m7YsN9AxAFbfEdlTTPwAAAAAAAAANG-xCglt1CSRw88p7F7VV9AAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyVA", "types": "CAO8BQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "K83sxCaQdi1aUMB4CY2c2w"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF88yz5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF780z5k14PsCcDvFyUC1kmlV3QAAAAABF64Dz5k14PsCcDvFyUC1kmlV3QAAAAABFPjyz5k14PsCcDvFyUC1kmlV3QAAAAABFxi1z5k14PsCcDvFyUC1kmlV3QAAAAABGnUj", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iKJhqpG2dRoKsO5mlCpMbw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAABnGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABB5KDO11BWTfkkFO9MFEbTJwAAAAAAAAADoyUgxxOY520Rj3U8w5GHoQAAAAAAAADS_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhY0qFV6xhVekP5-uToPI32ragAAAAAAwhQSqFV6xhVekP5-uToPI32ragAAAAAAwhQg", "types": "CANPBQYD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ETxTEgZSbzYjk8XGh4vHbg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAADxz_WaY2pXtLyni7L_8jKtBgAAAAAAAAAPEIpTc6zorXqtTjOVazk4HwAAAAAAAABogbCFQS2suYv46rP_aUsebAAAAAAAAAL_zvtGCZWh7Ji_VQTOB6BAGQAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAMvPUU5i5r5XThwPX6RJsZ7gAAAAAAAAAE21OviUyRbmnxs6uitnTC3wAAAAAAAAAP3R6peF1IdwfQqmb119dyMQAAAAAAAAAFjRPUUEtO9tA38nKSenaVfwAAAAAAAAAC3R6peF1IdwfQqmb119dyMQAAAAAAAAAFMDjyE5AlqASoc6cxfe5K2wAAAAAAAAAwmxRwXt-8CQt60ehjLjpoTwAAAAAAAAAKZaQmU-IXyGvFS9G6a9D4BQAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAAD8oQ_ZJ3ImiZWOZcNHv_WYwAAAAAAAAAjMj1fVO3bykQ8piLrLc5IFQAAAAAAAAAJp3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAANUDpp6LgRqCGeGjs7cnnwItcAAAAAAADvFr", "types": "CAMvBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UN3BthZs3VjmxILWgSyPNw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPWmW-xg6zZWXaaoD7z4m3qwAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAICsFZyzJjUXmiy5xzST-i9QAAAAAAAAErs50IQznqihitU-B8OhKHcgAAAAAAAAAcgur6r5-2VByGBeBFq9R4fQAAAAAAAAAJO-g6fZuLGa_Kh7O9W7kHmgAAAAAAAAAwQYG1AtlxDZ9awyVXs1RveQAAAAAAAAApGFOnvQQJ7n9iY8p8KSFUvgAAAAAAAABryFlR39-25JyGM4rHrh-UQgAAAAAAAAA_Z9zVvo9ZVSv6fTd0yjvLYgAAAAAAAAEbIlNeaDrhzreLpiJxVHRUUgAAAAAAAAELpPgMkcd05E3JFlk63z410gAAAAAAAAHoj_uVzimJAp5UX5EgaOgFoAAAAAAAAAAnomt3Uh86jhN6UzDM_NIHbAAAAAAAAACS", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AwxnuopW8nP4PdF2hl0d_Q"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACfZYJrmLEjznzm7GSiXKeulgAAAAAAAAAMjH-Kh7eMoVAEa99gkdQ-YQAAAAAAAAAWvtOmTuUGvKYiQRK_O9kHuwAAAAAAAANh_qijKAoIrj192_UIiHcBhwAAAAAAAABj_coc0yQmibHSYbczgpafrwAAAAAAAAAFhHI8fycCSE9gTrpxwlqNFAAAAAAAAAAEdJ2sHJS_vHp5BLfliwHuTQAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMTBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZpiULf3cc4PAnQBQeWnmvQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf-q", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JxEVWjcx9CTh2J891LN34g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAAMlBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF8DjWuv2ON9M4hqERzLLGrwAAAAAAAAA4jl0Few0KXqirBZp0WuOd2wAAAAAAAAFe71tcgbBjsGAuVt1WGfcc1wAAAAAAAAA3JS0BtKRMk3xcaGJmg4uqaAAAAAAAAAATAmTcFForv1r91KDhJjsuQQAAAAAAAADdxztGdRdeA4QtQpYqq2H8IQAAAAAAAAAMpsNLvt90kdVq_EPYAmn_WAAAAAAAAAASS0Xp2_3vk0PCR7xQ7YS7IQAAAAAAAAAG_zDk_N7NUcNRTqIuzYKxDgAAAAAAAAAgobA_YN1BhcTIsrqf5XOlGQAAAAAAAAAEfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdaMzea5YF1p9DWzFcmq3VzwAAAAAAAAAQnbsBVHmpV2luDgffbdJNFAAAAAAAAAAWcRoGFhrzTt6STyxXzS_QFgAAAAAAAACzs7hdxBbMHWQxy2GABBYaPQAAAAAAAAAJF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAd9zPkZE4RJJmPlROxnxkxmwAAAAAAAAAE9P399qv1PUm-fcjEeECPlgAAAAAAAAABmfgswW5tnP--5haDnNTmnwAAAAAAAAAIudgPCGqbKhChfal6WK47OgAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAADCB20OugZuwBAeveso7e9HjAAAAAAAAAB7KB0KS3hQ9ShgNXNnOutrBwAAAAAAAABMz03CQ7BmO5DWD5cAAhlTWwAAAAAAAACAERsgf_Jy274svBwySMHeoQAAAAAAAAAA", "types": "CAM_BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QvlUdkP4T0hZxSt3gSdllg"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAAA2Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABbTIqYHzSLJiXVx4krD2dbMgAAAAAAAAABIFHX6oXBjL3Y93SHOMXcKQAAAAAAAAABZXguWb1db5OZ-xUb0e4ZqQAAAAAAAAM2siCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhDlqFV6xhVekP5-uToPI32ragAAAAAAjj-sqFV6xhVekP5-uToPI32ragAAAAAA7FEFqFV6xhVekP5-uToPI32ragAAAAAAZyRSqFV6xhVekP5-uToPI32ragAAAAAAuqiyxMRv8h0MeAAUolTb6e8vGwAAAAAAAXnA", "types": "CANRBQkD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XiTL4w9S8KltLkj8tdlEIQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjD5cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLmm9cEvvhuguaGYCmGWrnWRz1QAAAAACLkFQcEvvhuguaGYCmGWrnWRz1QAAAAACLqEdcEvvhuguaGYCmGWrnWRz1QAAAAACHg7-cEvvhuguaGYCmGWrnWRz1QAAAAACHkxo", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "P_F4N85n6ygrRQ1ObfKSJA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEt6cEvvhuguaGYCmGWrnWRz1QAAAAADhBO4cEvvhuguaGYCmGWrnWRz1QAAAAAD_5NMcEvvhuguaGYCmGWrnWRz1QAAAAAD_6LEcEvvhuguaGYCmGWrnWRz1QAAAAAD_7fhcEvvhuguaGYCmGWrnWRz1QAAAAAD5t-IcEvvhuguaGYCmGWrnWRz1QAAAAAD5dhEcEvvhuguaGYCmGWrnWRz1QAAAAAD5oHNcEvvhuguaGYCmGWrnWRz1QAAAAAD5qdscEvvhuguaGYCmGWrnWRz1QAAAAAD5VLlcEvvhuguaGYCmGWrnWRz1QAAAAACGJzEcEvvhuguaGYCmGWrnWRz1QAAAAACGMs66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMR0m6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMRyc6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMRwH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAOW7N6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIfED6tVKI4mSYDEJ-ABAIpYXcgAAAAAAIdyq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAInNq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAOnlz6tVKI4mSYDEJ-ABAIpYXcgAAAAAATe1L6tVKI4mSYDEJ-ABAIpYXcgAAAAAATezw6tVKI4mSYDEJ-ABAIpYXcgAAAAAATpza6tVKI4mSYDEJ-ABAIpYXcgAAAAAATuX56tVKI4mSYDEJ-ABAIpYXcgAAAAAATnvF6tVKI4mSYDEJ-ABAIpYXcgAAAAAATnRm6tVKI4mSYDEJ-ABAIpYXcgAAAAAATm1Z6tVKI4mSYDEJ-ABAIpYXcgAAAAAATuJs6tVKI4mSYDEJ-ABAIpYXcgAAAAAATttG6tVKI4mSYDEJ-ABAIpYXcgAAAAAATotf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAb0v36tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "DQMWBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Jsv-D1yBcc_Oezz_dC64fg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAADHgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACXVSALBRPvgHpUWKmpUo1khAAAAAAAAAAA", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bredr3OvHQiC2uo7mFYNAw"}} -{"Stacktrace": {"frame": {"ids": "SHpn8pwAHiX47J0IzMtXvwAAAAAAAn5k3aS07d9PG4lc4UzuBbVWzQAAAAAAAiVUSHpn8pwAHiX47J0IzMtXvwAAAAAAAmibSHpn8pwAHiX47J0IzMtXvwAAAAAAE8PJSHpn8pwAHiX47J0IzMtXvwAAAAAAE789SHpn8pwAHiX47J0IzMtXvwAAAAAAFznbSHpn8pwAHiX47J0IzMtXvwAAAAAAFzBtSHpn8pwAHiX47J0IzMtXvwAAAAAAAwk2NvEDT4zSZcnoSuXBl2lV4gAAAAAAAmDsNvEDT4zSZcnoSuXBl2lV4gAAAAAAAs2TNvEDT4zSZcnoSuXBl2lV4gAAAAAAA4gzNvEDT4zSZcnoSuXBl2lV4gAAAAAAA3GBKBED7d_qPYnnB4dZrQQHsAAAAAAAE7mDKBED7d_qPYnnB4dZrQQHsAAAAAAACVjoKBED7d_qPYnnB4dZrQQHsAAAAAAACVMbKBED7d_qPYnnB4dZrQQHsAAAAAAAErtQKBED7d_qPYnnB4dZrQQHsAAAAAAAErmR", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DMif4YgVmZnzbZZwItpS7g"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAACEjtkcEvvhuguaGYCmGWrnWRz1QAAAAACEjzEcEvvhuguaGYCmGWrnWRz1QAAAAACEjhf", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lrXQOYdtT3nAkaFRyN7-0w"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrkykgtQ4kMk_MBWrPUAFqVnYywAAAAABq7bsgtQ4kMk_MBWrPUAFqVnYywAAAAABq7GYgtQ4kMk_MBWrPUAFqVnYywAAAAABq5uEgtQ4kMk_MBWrPUAFqVnYywAAAAABquJbgtQ4kMk_MBWrPUAFqVnYywAAAAABrpBf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJje6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIsW", "types": "BgMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "k7UKTjtjxgCi_dJkL48hVA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAAYywctG_sMzzXt8DhXRU3jGwAAAAAAAAAfO0QBRq09v03gOY7wcqwe-QAAAAAAAAAEWV6g6bHiSUaQ_18ghJ6gvwAAAAAAAAPqzVl_JFLMBO6_XcJyl0ewxwAAAAAAAAEJAU1UxR09cGAZB2y_cCThHQAAAAAAAAAiQN3Ei4y0jjQeG3JY3GoqzgAAAAAAAAAL", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hdc8gR_Y8kDXnRgAlQGfhg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR4X", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dZVhEMwoIzMGD6Fthzhnhw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgKh", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CFNczi5jgqdp9YJbvPCa9g"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAi46VYxe-SHgukLEpCkawSk1QWAAAAAAAi5BcYxe-SHgukLEpCkawSk1QWAAAAAAAi2DIYxe-SHgukLEpCkawSk1QWAAAAAAAiygNYxe-SHgukLEpCkawSk1QWAAAAAAAapsiYxe-SHgukLEpCkawSk1QWAAAAAAAi4JkYxe-SHgukLEpCkawSk1QWAAAAAAAi3GsYxe-SHgukLEpCkawSk1QWAAAAAAAbhbIYxe-SHgukLEpCkawSk1QWAAAAAAADk_YYxe-SHgukLEpCkawSk1QWAAAAAAADrOoYxe-SHgukLEpCkawSk1QWAAAAAAADoDkYxe-SHgukLEpCkawSk1QWAAAAAAADl4s", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2XkIPoT1RGScJv7HcNexyQ"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXEEgtQ4kMk_MBWrPUAFqVnYywAAAAABqaJ-gtQ4kMk_MBWrPUAFqVnYywAAAAABqYJkgtQ4kMk_MBWrPUAFqVnYywAAAAABqYXkgtQ4kMk_MBWrPUAFqVnYywAAAAABqZbZgtQ4kMk_MBWrPUAFqVnYywAAAAABrYZugtQ4kMk_MBWrPUAFqVnYywAAAAABqZxkgtQ4kMk_MBWrPUAFqVnYywAAAAABqZ0dgtQ4kMk_MBWrPUAFqVnYywAAAAABrNMUgtQ4kMk_MBWrPUAFqVnYywAAAAABrRkvgtQ4kMk_MBWrPUAFqVnYywAAAAABrQ4J", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "S8MXm0YWnV7NY7lXJUOOog"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACu-VgZWZvvoe_9HhGDZJCzLgAAAAAAAAAO7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAFk3HyWSdTGgne1xIId1mIvAAAAAAAAAAzAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qkp5EyZaH9EKC1Tx2EnCYA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtLUQ", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dVb-MiyMMGjQnN4CNy5W_w"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAACE5NEcEvvhuguaGYCmGWrnWRz1QAAAAACFGhYcEvvhuguaGYCmGWrnWRz1QAAAAACFGhYcEvvhuguaGYCmGWrnWRz1QAAAAACFGhYcEvvhuguaGYCmGWrnWRz1QAAAAACFGhYcEvvhuguaGYCmGWrnWRz1QAAAAACFGiLcEvvhuguaGYCmGWrnWRz1QAAAAAD-XrpcEvvhuguaGYCmGWrnWRz1QAAAAAD-YIScEvvhuguaGYCmGWrnWRz1QAAAAACXhcpcEvvhuguaGYCmGWrnWRz1QAAAAACWz_GcEvvhuguaGYCmGWrnWRz1QAAAAACW0JGcEvvhuguaGYCmGWrnWRz1QAAAAACW0ALcEvvhuguaGYCmGWrnWRz1QAAAAACW0qkcEvvhuguaGYCmGWrnWRz1QAAAAACW0AucEvvhuguaGYCmGWrnWRz1QAAAAACW0hrcEvvhuguaGYCmGWrnWRz1QAAAAACW0ALcEvvhuguaGYCmGWrnWRz1QAAAAACW0pycEvvhuguaGYCmGWrnWRz1QAAAAACWzxkcEvvhuguaGYCmGWrnWRz1QAAAAACXF_0cEvvhuguaGYCmGWrnWRz1QAAAAACXGLkcEvvhuguaGYCmGWrnWRz1QAAAAACXKVScEvvhuguaGYCmGWrnWRz1QAAAAACXRLEcEvvhuguaGYCmGWrnWRz1QAAAAACERrM", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3tO3AhnrBAiBOTlaDL412Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wnFXT4fd_WKeR1cE-hlLelCQAAAAAAC-wxFXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwXQXT4fd_WKeR1cE-hlLelCQAAAAAACiKCvXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "b24SYdtkbKZNKbXUua9QEw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAAA65FYxe-SHgukLEpCkawSk1QWAAAAAAAA8D0Yxe-SHgukLEpCkawSk1QWAAAAAAAA_IZYxe-SHgukLEpCkawSk1QWAAAAAAAA-3HYxe-SHgukLEpCkawSk1QWAAAAAAAANGoYxe-SHgukLEpCkawSk1QWAAAAAAAA0P1Yxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEMf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD5P6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAwsz6tVKI4mSYDEJ-ABAIpYXcgAAAAAACuEk", "types": "CAMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Cia-tEvT-RYth24Bv6xiew"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAAAbFB2lbICPeg4uVJ_bp0LkUgAAAAAAAAARz3imu7TppL2XUId5Y_cXQgAAAAAAAAAG", "types": "CAMMBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dKz6wRYxk5b-EmykX6Tcqg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHfZKXT4fd_WKeR1cE-hlLelCQAAAAAACy8_rXT4fd_WKeR1cE-hlLelCQAAAAAACy9SHXT4fd_WKeR1cE-hlLelCQAAAAAACgaU7", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UnZlpcKdTEmf9Jf7wgc4Wg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAag75", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lcGXu2A_kQpLv6e2M4Rs3w"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAAAPWLR6tMYzOVwd-dC39zrHVgAAAAAAAAEt-7czc4vxjqwqbvj74H3wHQAAAAAAAAAJsN77BAFALn_JGvGvXrSjywAAAAAAAAAEHOno65fF9MNk7Hxtw-uPRAAAAAAAAAEx", "types": "CAMMBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vFkcrQtWCVTfQjjlGu2S_Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-wCEXT4fd_WKeR1cE-hlLelCQAAAAAACkSBMXT4fd_WKeR1cE-hlLelCQAAAAAACkVZqXT4fd_WKeR1cE-hlLelCQAAAAAACgJHJ", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JoGJrCEQ34-StmPNyR5q3w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR1TSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa_9f", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5P_TKhYwLk13iojfv7McxQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAAtSAAkutGejeRImCZXeWZ-1wAAAAAAAACLcDDKtM-30WtgKUZUhSPZowAAAAAAAAD0JN-dgFkoqSE-dHBUib5RMAAAAAAAAAB-pDmevRXuPcE63RgyWWd9hwAAAAAAAADdLT5lr845yiJBLJcYHx5FbQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAZ", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xQF0-oJ8JdkDt-6rMsRLlQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc5-Qz5k14PsCcDvFyUC1kmlV3QAAAAABcnaEz5k14PsCcDvFyUC1kmlV3QAAAAABakmCz5k14PsCcDvFyUC1kmlV3QAAAAABaBsyz5k14PsCcDvFyUC1kmlV3QAAAAABaBLIz5k14PsCcDvFyUC1kmlV3QAAAAABHZsIz5k14PsCcDvFyUC1kmlV3QAAAAABKB57z5k14PsCcDvFyUC1kmlV3QAAAAABLLQZz5k14PsCcDvFyUC1kmlV3QAAAAABK3KAz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkw", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GaCLxWirBhJtu1rdEHoD6A"}} -{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimtb6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOK46tVKI4mSYDEJ-ABAIpYXcgAAAAAAlcA76tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbdH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlWJ36tVKI4mSYDEJ-ABAIpYXcgAAAAAAlsoG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlrpu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlqKz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlwjf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlN5a6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlNsK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlOPs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMub6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMqa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMWu6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgDv6tVKI4mSYDEJ-ABAIpYXcgAAAAAACgCV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwA8J6tVKI4mSYDEJ-ABAIpYXcgAAAAAA4ADj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjPnv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjOBI6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN1t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjNJshpS1QtdrBQjGg-LCbfqeSAAAAAAAAF9MSxgb26oKQwlt07if9woPTQAAAAAAACORSxgb26oKQwlt07if9woPTQAAAAAAAB5cSxgb26oKQwlt07if9woPTQAAAAAAABLvhpS1QtdrBQjGg-LCbfqeSAAAAAAAAFrchpS1QtdrBQjGg-LCbfqeSAAAAAAAAFjZhpS1QtdrBQjGg-LCbfqeSAAAAAAAAFcz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN6I6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN4H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjN216tVKI4mSYDEJ-ABAIpYXcgAAAAAAlId_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk-pXSxgb26oKQwlt07if9woPTQAAAAAAAALo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlH266tVKI4mSYDEJ-ABAIpYXcgAAAAAAlHoR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlFfH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlFZq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlE4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmcbu", "types": "MwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4vYC-zQmWI-i2_kgUaJOlw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmrA", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Y-PPbP4nOCiClHW7_KYwMQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADAEguNCcnmVGnXNe9OvbpF2wAAAAAAAAAyyH_ohM36PxcsspBj9HiisAAAAAAAAABUZZqFVPfJM-LkfzPbeaoP8QAAAAAAAAIJZ0TAJMiD_AqT3npr7YiRAgAAAAAAAAH4AJ8qrcXSoJbl_haPhlc4ogAAAAAAAAACX31knMc676bIIEUjaHa0MQAAAAAAAAADTozXD2NzMy0dEH0e02djYAAAAAAAAAEKeRQqY-uKn1zCanFBx5tpKgAAAAAAAAANLaFl4epk0Q6S_D_8elQACwAAAAAAAAAsd55u1lPodAfLflRouVTMDQAAAAAAAAAGd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsSidn5oJ7A2M_efsiHDz05QAAAAAAAAAT0_jShB-DuV77HIBPKqBRjgAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBAZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMoavQ7EacG6CR4rzcFaNFEsTQAAAAAAATs0", "types": "CAMzBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0ul5WCOLuBGGX66Anz_J-Q"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAADNiDnLg20WKoGqpOxgFc5-AAAAAAAAAAV", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Uog7BBtBaBoHv7gkfaKdng"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACujkfqsU9w34yk0ipcsxq5HgAAAAAAAAAO7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAFk3HyWSdTGgne1xIId1mIvAAAAAAAAAAzn6pk2kHJCAUsXzT61-UNuwAAAAAAAAAJhyDoVUWwwXEvgB5sKTLeXQAAAAAAAAACveyrOe2Ye9QKtQm85e4-1QAAAAAAAAAJKc3Qpigh43lyCXxKBVsfZQAAAAAAAADIDvxORZxoFkDRuJT-GJ72RwAAAAAAAAA0So79ssLqcYG8xPQUl7bLnwAAAAAAAAAFz4saotK6LxTMAqnKCFr7WgAAAAAAAAACeLPEw3jnFkvsJ2aQiz21NAAAAAAAAACRAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8qsTGLCNH21piOrMPoln5uBQAAAAAAb_bR", "types": "CAO2BQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Kl-ygAMUUp50SfchyrhbRg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFJmXT4fd_WKeR1cE-hlLelCQAAAAAACxFRZXT4fd_WKeR1cE-hlLelCQAAAAAACjCAA", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jR2WafQ5aT4KiR_9VxLM1Q"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAAKkiFL9Bd3XIiGWasJdN8trI5tgAAAAAAKfbaL9Bd3XIiGWasJdN8trI5tgAAAAAAKfEoL9Bd3XIiGWasJdN8trI5tgAAAAAABqvmL9Bd3XIiGWasJdN8trI5tgAAAAAAFlDpL9Bd3XIiGWasJdN8trI5tgAAAAAAEl1HL9Bd3XIiGWasJdN8trI5tgAAAAAAER8eL9Bd3XIiGWasJdN8trI5tgAAAAAADHTjL9Bd3XIiGWasJdN8trI5tgAAAAAAB-zZL9Bd3XIiGWasJdN8trI5tgAAAAAACA5A", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MWfc397MJFynjmcnyAtS1A"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP_yM", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4f9KZiG-idTZu0O-sRt4aw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3xUoecROrzaoP-M_aH62GoQAAAAAAAABinG9wLCiLPO8YY97L1OXEbAAAAAAAAAAoLT5lr845yiJBLJcYHx5FbQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgg8ia7_SjtnnoFsx8t6EVmgAAAAAAAAACS4pDMZQIDu6mVxa95R8FGQAAAAAAAAAdh2McnzqwfbL5yBZRK65EugAAAAAAAAAM6XZVqwgpvPEDrDCTrE9iAgAAAAAAAAAI7aqMkhc14ipFteNGQMekfwAAAAAAAAAFBzUZDRcpQTRRSSLENpOpZgAAAAAAAAAJWGL3b6si_6bQM5Rqh6u3iwAAAAAAAAABYoBRvyLd18NJezoAzYDBWgAAAAAAAAADR8J-NKdRXmfXHHCKNIVxpAAAAAAAAAB7Y42fk-Ms4CyfeVg3LVDZpQAAAAAAAAAXLo1bd7PttsuTzFjX2oW5lgAAAAAAAAAB4dIwNpyNQOyQPjDgfjNvLgAAAAAAAAATW0z6xNHqHLcQrQ1Rr4ojGwAAAAAAAAANavU6NIsopUe3RLXmOLaJogAAAAAAAABBBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVCm3FF_uDQeutHnQs3UGjlgAAAAAAAADAwMduPEe0g_53DcRkATCeKAAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAACe6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC80G6zvzFPytbRyfwuXWQcAAAAAAAAAAB", "types": "CAMyBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "t263LuBpXeJT_eypTrtUJw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEPD3cOudib0XQsq9y3nJeyAAAAAAAAAAQPHOUiNkmrb6lymlNuXSU6gAAAAAAAABCdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YRYK-waaBK93YQxC-u6FpQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAACyQsYPvVY-RhG369aX-1lxEAAAAAAAAAAxjZ9kRw1QvW-8GEY-d73XeAAAAAAAAABOpOUGa4nlXTzn3bJ7pH2ySwAAAAAAAAAE", "types": "CAMNBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fQniEpOBiPV91AqeXKUYaA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbzqZ3CKaS4aU08RhYA19y5ITQAAAAADKUQHZ3CKaS4aU08RhYA19y5ITQAAAAADBkxrZ3CKaS4aU08RhYA19y5ITQAAAAAB0Hw7Z3CKaS4aU08RhYA19y5ITQAAAAAB649HZ3CKaS4aU08RhYA19y5ITQAAAAAB65RnZ3CKaS4aU08RhYA19y5ITQAAAAAB623_Z3CKaS4aU08RhYA19y5ITQAAAAAB6pveZ3CKaS4aU08RhYA19y5ITQAAAAABtPCpZ3CKaS4aU08RhYA19y5ITQAAAAABucQ5", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1tBKNWCTouiyLWmoA4fnhg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAACqGMNSe-6LTlpuiQTu86RdbwAAAAAAAAA1wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATmQVHcTFXg4JaHxKFUu2SNAAAAAAAAAAK0qdPtfCOXWtTMQkqPpfTpAAAAAAAAAAD4pD3shcvlMj_8ybo7T2TVAAAAAAAAADe8KL4zGG-d9_GDuuEGBxudQAAAAAAAAAGb_H4r1ZHF2YYgctDVUNAUQAAAAAAAABRL3BC_TY76W1WekdK_PK3sQAAAAAAAAAHdGje15Yliqywq8MDI5FmQQAAAAAAAAAELRnop9vMb-AhS9R35OjpowAAAAAAAABzOSzs0d7UDW14kdDxEUjZrQAAAAAAAAAGWVVfmS8H00wjgsMrGKM8_wAAAAAAAAAEyudj5Wbjz98rahOhutg5KwAAAAAAAAAM3wdhQLwtGKOtIUlA7MN19wAAAAAAAAABaPSRYZ8JddCCQFb8HbMBRAAAAAAAAAAFZx-0tvUxoac--Xj0F0phiwAAAAAAAAAHTi71ZxqCuVbwvaU7IrO7IgAAAAAAAAAPyudj5Wbjz98rahOhutg5KwAAAAAAAAAMzVOM9aQ5aVWICjbBv8WgRAAAAAAAAAAFBlsD0vwi6JMAfkvyXFogjwAAAAAAAABXgBLxJrtyci28b-8zCYT3hgAAAAAAAAABjOdHQLOYIGEyn_avpIhwJAAAAAAAAAAB", "types": "CAMxBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "V3FpOTUk7je6uP4mlCqmkg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAByB_IRgbCQC1IPEoVkHKMOTwAAAAAAAAAYdB8rpvXeU-U7j8zoRqc_lgAAAAAAAAEGe7YYWaQTMh8P2PCVzA2a8gAAAAAAAAA5gpzmfljwMvF6axjuntzBmAAAAAAAAAABtGdjZjM6jJA23WbdtVpvAwAAAAAAAAAIAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aHwd23m95kbO5iH430mBgA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETdScEvvhuguaGYCmGWrnWRz1QAAAAACETwkcEvvhuguaGYCmGWrnWRz1QAAAAACET5p", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "B8raI5jTg6GXkSRywQ53Bw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAc", "types": "CAO-BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gm1XQ2HBQFDtWIP658EsEQ"}} -{"Stacktrace": {"frame": {"ids": "pqmEMTIUDz-nhY9YtlE3YAAAAAAAZGl6pqmEMTIUDz-nhY9YtlE3YAAAAAAAYiEVpqmEMTIUDz-nhY9YtlE3YAAAAAAAYh3qpqmEMTIUDz-nhY9YtlE3YAAAAAAAYg6YpqmEMTIUDz-nhY9YtlE3YAAAAAAAYnnWpqmEMTIUDz-nhY9YtlE3YAAAAAAAYnhc", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eLxFTlFN_8U9FW9T5uVFVQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSIeXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXM", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GzMkMHSbJB6nV1XM7_SYKQ"}} -{"Stacktrace": {"frame": {"ids": "c6lwtZBG2BzNKGtSyzLrTAAAAAAABCWpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGc6lwtZBG2BzNKGtSyzLrTAAAAAAABBZWc6lwtZBG2BzNKGtSyzLrTAAAAAAABWVUam-Z0RfUVY0oYK5VXRDk9wAAAAAABeu4am-Z0RfUVY0oYK5VXRDk9wAAAAAABeopam-Z0RfUVY0oYK5VXRDk9wAAAAAABeePc6lwtZBG2BzNKGtSyzLrTAAAAAAACN4sc6lwtZBG2BzNKGtSyzLrTAAAAAAACNZDam-Z0RfUVY0oYK5VXRDk9wAAAAAACLD-am-Z0RfUVY0oYK5VXRDk9wAAAAAACK4nam-Z0RfUVY0oYK5VXRDk9wAAAAAACgRqam-Z0RfUVY0oYK5VXRDk9wAAAAAACTPXUJmIMEc6K8gJ39NHYaD0WwAAAAAAGOSl", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LadRZ9nrWUWtpCeBiU-rCQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEWB9GVskeRyK4_o3XD61XIAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAqJzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAqdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAAAjj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABdMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOk99M4bkjfKmg3-yt9HFm8AAAAAAAAAD1s5CzqyR6_GmBEGxwpC8zNAAAAAAAAABK4EfOVjZ8UDEWtY1KnqslYAAAAAAAAAAhYNTunKybilcdruNbkYh4bAAAAAAAAAEokFTUbCsMYWmt2VjXiiHPZgAAAAAAAAAGTymAEDD545ov_oP4db3SYQAAAAAAAAAL", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YoeXFhmTkr3_l-fmzIYzFg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAADHgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACl", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xWfVfitdsTIFX4dhe6CakA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeXyw", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LZvFVTJOMfo7RHR7D2PEUw"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtboy", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yXWhC6PUKwhiRKybc8XJKQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZyB", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8isTUPr0FRuKib4cU3qR3w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcQxTPNhFsgl-8e8i61Q7phQAAAAAAAAAnwnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAE8PySOWxdeTvWtl74Iv620AAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAn5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALCqHdoNRupr5ud0SEqGGzcgAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAF_Ngz1ncxudXrxSqiWBxoaAAAAAAAAAAETphZkORhkBDEbRDMofKltAAAAAAAAAChfNBUTxafk7cWQGRCQErWrwAAAAAAAABiTphZkORhkBDEbRDMofKltAAAAAAAAAA7x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAOPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMzzqjB_amR59Lv13Nhle_NwbwAAAAAAENS56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "CAMYBQIDAgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-Apktul3cj6NpEbhKyTyUQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAbg4g3dadKJq-rh-Mlmi-1U5gAAAAAAAAJmbwI70XUfdOG1VquNZTS_IwAAAAAAAAAlp4O5LDI-aR1e3AL1YpnWyAAAAAAAAAAuKLD8PZEt_1eVGIRfxlTGvgAAAAAAAAAl7LziU26eINk4gGAzQhjzRAAAAAAAAAAhum3P1hPKCaJ6ax0qMqoxPgAAAAAAAAAIEzXhqpVZbBVZ4WOGuhdAKgAAAAAAAAACfgaYIqlr3WukpkSnNwIbKwAAAAAAAAAM-fjjEkAfmyzFl6-yS30t0gAAAAAAAAALhngRbg0m5bOuUtxBnj8KMgAAAAAAAAALXQ2XGiubG5Brz-m8r0iBRQAAAAAAAACKnyQEDtNfXDm_fNpPXsT-3gAAAAAAAAACeLPEw3jnFkvsJ2aQiz21NAAAAAAAAABfR-jXMS6WanN9UyjIfsACEAAAAAAAAAAS-UhaCeSU-dCz_4f6MzT6YgAAAAAAAAA-", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ysNAFKLCXGa-oh7cLstrPw"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHsJJgtQ4kMk_MBWrPUAFqVnYywAAAAADHsO9gtQ4kMk_MBWrPUAFqVnYywAAAAADIfGLgtQ4kMk_MBWrPUAFqVnYywAAAAADIhGEgtQ4kMk_MBWrPUAFqVnYywAAAAADIfwEgtQ4kMk_MBWrPUAFqVnYywAAAAABw8FPgtQ4kMk_MBWrPUAFqVnYywAAAAABw8K8gtQ4kMk_MBWrPUAFqVnYywAAAAABs1aTgtQ4kMk_MBWrPUAFqVnYywAAAAABs1tXgtQ4kMk_MBWrPUAFqVnYywAAAAABr_zugtQ4kMk_MBWrPUAFqVnYywAAAAABsAop6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcCd6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcBE6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf", "types": "DAMMBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "t9HIF4XCgjQvhopK4zB1OA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAACwH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACXFDHy--PvgHpUWFquuqO7RAAAAAAAAAAA", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "86mdF-KM7NXo0RUNJiei_g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAV2c9TATIrCMgoDoZOxrWO6gAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJuxWu7bOCGuvy3Ir42torwwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAWZvnSEZ6hxckmxa-z2abTjwAAAAAAAAANeZn3IOB-FE1r74FZypzHhAAAAAAAAAAGp-hz1y_-cXtA7Uo61H8OwAAAAAAAAABOb5D4G32aP0YH2ukb-bXGLgAAAAAAAAAdk_s_ITRPELxw2Zk2jzGG8wAAAAAAAAAINleCed7iD5lY9FUQABqcFQAAAAAAAAAE56J_quP6E7ubMy0oFC4pVgAAAAAAAADYudTo70AymJSY5V7NrMKeuQAAAAAAAAAjdp9YRBQYpWxlM26t-YlmAQAAAAAAAAD_", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Gra3ZDS-h8Qb6oN3nyQ91w"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABF0kYxe-SHgukLEpCkawSk1QWAAAAAAABF7IYxe-SHgukLEpCkawSk1QWAAAAAAABGF-Yxe-SHgukLEpCkawSk1QWAAAAAAAA1HOYxe-SHgukLEpCkawSk1QWAAAAAAABqf16tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtJB", "types": "CAMDBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zthyKuXsoA4KkwsS0PTltg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAAD1giwOUz_dwg5QpZ6rn_mtEAAAAAAAAAAaR683kTk6tW8OrTWlS02nkwAAAAAAAAAGZDeC5caqI_6hNXlbdI9VxAAAAAAAAAARDbycTBfukhUabAsoiB7QMQAAAAAAAAHYAJ20S4nqf6FfjqdXzTnTNQAAAAAAAAD6DoZEBlPjZAc4WVFAaDVkRAAAAAAAAABW", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "It0gQVHszUoDuF9_NGkXWA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_ecYcEvvhuguaGYCmGWrnWRz1QAAAAAD_DBEcEvvhuguaGYCmGWrnWRz1QAAAAAD_C8u", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OeVAEoxBlJnkJrF2AREsYQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAAAjj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABTAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2bYjKMpMW5W361PJ9SbEqQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB47", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dnsAy4vOc46KZJiS5dGT6w"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBbBcEvvhuguaGYCmGWrnWRz1QAAAAACOHLRcEvvhuguaGYCmGWrnWRz1QAAAAACFObNcEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEV6N", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mdeRbDX2AaZ19IQrZUW2Vw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACXVSALBRPvgHpUWKmpUo1khAAAAAAAAAAA", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5Wa8MgBNSJuWvg6Zve7ROA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAak0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB7i98a9V97mb3FGgZG6edCFQAAAAAAAAAw_js9oXEovuvcenIstBqeVgAAAAAAAAAN3fcXPwJc0rG6LqLVofdoTAAAAAAAAAAA", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fmIQ76zzVZ9EWAQ55W78zw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYwsEP3PfgbWsvPc4Y_rpLYQAAAAAAAAAOMjWXlV4UHIC8t2yCFMu9sQAAAAAAAAAFdlfCY_5HI9k5YXP0NFRY_AAAAAAAAABLBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF8DjWuv2ON9M4hqERzLLGrwAAAAAAAAA4jl0Few0KXqirBZp0WuOd2wAAAAAAAAFbMkdIM5v2AdjytK2Wcn6wZwAAAAAAAACtsFs-DxXlXTzn3bVNvCe0KwAAAAAAAAAE", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bnUDt83Ym2Sj0RWXP2Cv7w"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kSHpn8pwAHiX47J0IzMtXvwAAAAAAE8PJSHpn8pwAHiX47J0IzMtXvwAAAAAAE789SHpn8pwAHiX47J0IzMtXvwAAAAAAFznbSHpn8pwAHiX47J0IzMtXvwAAAAAAFzFySHpn8pwAHiX47J0IzMtXvwAAAAAAEsAqSHpn8pwAHiX47J0IzMtXvwAAAAAACetdSHpn8pwAHiX47J0IzMtXvwAAAAAACbaISHpn8pwAHiX47J0IzMtXvwAAAAAAGQMKtQgAmBJBgPLrkikSPRsmtgAAAAAAAOjU", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lhRKXGZ_rGWBWtmKBhIK9g"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAAAjj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABdMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XpxK_Q-DP0fSfpiLzuOV7g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR5d", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pkyFSPLbfCpCJS0cbldBzQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAACqGMNSe-6LTlpuiQTu86RdbwAAAAAAAAA1wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATmQVHcTFXg4JaHxKFUu2SNAAAAAAAAAAK0qdPtfCOXWtTMQkqPpfTpAAAAAAAAAAD4pD3shcvlMj_8ybo7T2TVAAAAAAAAAFCS0Vcinvs4UXd1rhNSjovpwAAAAAAAABVbAlNhxIUaCZOzq5Go2-fDwAAAAAAAAAIUNi2PfJJ-vKG8q63OaknIAAAAAAAAAHcPDxaYxBC-l8PtK0orl2RQwAAAAAAAAETSZD9YVGYcY6t7-F09t_klgAAAAAAAACDMxRnrnRp5fRRlUEkyuK1rQAAAAAAAAA8LNiGyjoSSwLd2vmEwDcgqQAAAAAAAAAtRrirhtozDrKAAydohpmvZgAAAAAAAABXyJIhq1AV1i5dfSljhhE7KwAAAAAAAAAGcEzK6HfXk1srPlYKWH6y-wAAAAAAAAJBNyFYG970OiNszXfRwkg2OwAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5W0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOTM5vHmZRGlLyNtB_jDhdvQAAAAAAAAAKXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAV61vrmCVoJZp3HjBxIMFrNAAAAAAAAAAFF7lATn_bFhRDcY0Z0OyPwQAAAAAAAABoY5AhuW5zTFbvkEYRGrJ6zgAAAAAAAAEXqmhrzhROIxdFfT_O0ufQNgAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAASNDzWiYDmLZi_Z1ZVETLoAAAAAAAil2tSNDzWiYDmLZi_Z1ZVETLoAAAAAAAe8GSSNDzWiYDmLZi_Z1ZVETLoAAAAAAAJeT0", "types": "CAM6BQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Mef8b6Ms_KB9BmHs5fEaQA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf_Q", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "u29RuXTUI9L-Xut890hyuQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgpUcXT4fd_WKeR1cE-hlLelCQAAAAAACgptEXT4fd_WKeR1cE-hlLelCQAAAAAACgp_tXT4fd_WKeR1cE-hlLelCQAAAAAACgqGqXT4fd_WKeR1cE-hlLelCQAAAAAACgfc0XT4fd_WKeR1cE-hlLelCQAAAAAACh1C26tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ8bZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ8R56tVKI4mSYDEJ-ABAIpYXcgAAAAAAJXMJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJloA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJlhJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAACHEw6tVKI4mSYDEJ-ABAIpYXcgAAAAAACG-k6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFF866tVKI4mSYDEJ-ABAIpYXcgAAAAAAFF5X6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFzd6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFgh", "types": "BwMNBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8AqERkmGja0aVhFHauF_yw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeX0nSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt0xZS5FLyxJzArwdyTGdAwNyNAAAAAAAAXnb", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5WP7zBBeosgRaaVkLBLtbg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk6jz5k14PsCcDvFyUC1kmlV3QAAAAABFjYEz5k14PsCcDvFyUC1kmlV3QAAAAABGgQQz5k14PsCcDvFyUC1kmlV3QAAAAABF400z5k14PsCcDvFyUC1kmlV3QAAAAABFkWAz5k14PsCcDvFyUC1kmlV3QAAAAABGZEQz5k14PsCcDvFyUC1kmlV3QAAAAABGgUez5k14PsCcDvFyUC1kmlV3QAAAAABFkyxz5k14PsCcDvFyUC1kmlV3QAAAAABFnQwz5k14PsCcDvFyUC1kmlV3QAAAAABFpKOz5k14PsCcDvFyUC1kmlV3QAAAAABFpQk", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IqqI5g2QWaQwbYuVPZB2iQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_WCOcEvvhuguaGYCmGWrnWRz1QAAAAAD_WCOcEvvhuguaGYCmGWrnWRz1QAAAAACFxWP", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "k9vLKRFLFVoj2RZU6JVbBA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAACFVesl-TqkdasS6qMPfjcnngAAAAAAAABVr69bqYctcqbyJiTyvmojFAAAAAAAAAAJVoQ5AJHHG4Z_KZgZidNsZQAAAAAAAAAC3QM5OJWdXJOtFw8erEL5XwAAAAAAAAAN87egngtXFm0bIUCnQcIALwAAAAAAAAAHDNMSP4UcXImUndf71pg8FQAAAAAAAABh3J9sxS-e4x4-VIIgWjujUAAAAAAAAACqk9qlBuUUuQaRGtKxyO_pagAAAAAAAAAEF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdvCYukS89lPAo0Tgs1462rgAAAAAAAAAIQF0gmeIjjmTZUhdMFgr_4AAAAAAAAAAFSZIzrSBBPBO2zJj0aqaKggAAAAAAAAD_AOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALd2MiI3b_EzPrgd_k9fjnuewAAAAAAAAATpkBGqhcKBroYcUtGIrc7fQAAAAAAAAAFBY2rTx9iNIHoPLSaIk3jZQAAAAAAAABG", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CfSmew3N7q6MPA7XYHOAyw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABda68f5mgZFs3OaBztew54AAAAAAAAAAM9lngTnmeSG1s7rdk_juSMAAAAAAAAAAGHrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACtBnjxOT6ecDtMNaRY7RgRQAAAAAAAAABnzd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX73IOkhtZyjrZNnxzxVPYTQAAAAAAAABEiwGeqNv30_OStpNiHW5afwAAAAAAAABD1XS2aFbrMvbrgkTeGP6LGgAAAAAAAAAJgpel-2y6MT8HpZSUXeX6xwAAAAAAAABH8KfvTX_45EkfeqjFTJPGMwAAAAAAAABHhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAACQhYJDXHe_tXWd6FUCpAvLJAAAAAAAAABERTvkaysuyXpxT9w4uvkQVwAAAAAAAAAOhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAAC2QkkDXMhATwTB2K8md9w1pwAAAAAAAAAZRTvkaysuyXpxT9w4uvkQVwAAAAAAAAAihoA0DA92BMfAA7apys6-iQAAAAAAAAAMngJW-mG0syMkjT4A0Lg1GwAAAAAAAAAmn1iVFjBzfESOHprfqoe0LwAAAAAAAAAJ_4WcH53TxNRbyklfT7cbEwAAAAAAAAAT0J5kDpLU5fTc_ktpkygGRwAAAAAAAAAytqxIWD7h3nTRM9IIo79qNQAAAAAAAAANizOapIecEtKD0W0KOjIC-gAAAAAAAAAlOZbqb4tQmA5EHMDCsCNqZwAAAAAAAAByOZbqb4tQmA5EHMDCsCNqZwAAAAAAAAAwOZbqb4tQmA5EHMDCsCNqZwAAAAAAAAAwOZbqb4tQmA5EHMDCsCNqZwAAAAAAAAAwOZbqb4tQmA5EHMDCsCNqZwAAAAAAAAAw", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wBeDaSzmKMf_8mF4P9fF3g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAGyVtVXhl6s6URamlTOMTdcGgAAAAAAAADcdxb67a9pdOnwKSyUl3yo7gAAAAAAAABufpY3a5I7d2TNV30MyBAVjAAAAAAAAAADVLNKXRlo71TPwzNBwGNhEQAAAAAAAADaCIJa2mPNm8b1wwJ_UCRwpAAAAAAAAAAFjWxMhVzBeHM3bqEF5ueSZwAAAAAAAACOd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsSidn5oJ7A2M_efsiHDz05QAAAAAAAAAT0_jShB-DuV77HIBPKqBRjgAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABHiM8LSJ_0DrAH3j2_fhBWQwAAAAAAAAAIKYUKYe5FJokP-mDuLYX4tQAAAAAAAAAJi2OZ9-P_pjOFSV36486xoQAAAAAAAAA4", "types": "CAMwBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2Ri5pW0t6s5lXro7RV78vA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAADHgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACXVSALBRPvgHpUWKmpUo1khAAAAAAAAAAEaRenpQIgJLChKRBMZRmqWwAAAAAAAAAA", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kFwQt40kRkAJhq_qjy2boQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87n", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xs7bKuwpf1rgdNVeL5Z1tA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAA5cYiYZLNw79YI2sv5ZzfISgAAAAAAAABnsd1-fzhWHGpZk5BbNZ95mAAAAAAAAAERuV9VJttm0goUzsky7YZbIwAAAAAAAACLXoncVs_RZ0C2CaElSEtZqgAAAAAAAAAV_jOWl9rQ0a9rjiw4HiJl9AAAAAAAAABccP1LJXs0npB6pviZiQZxrAAAAAAAAABlKPkSbIa3FpEsdEGi2AxIeAAAAAAAAAAQ", "types": "CAMSBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4ieFm4DhmWNYMrTtIZLOTQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAJB_IRgbCQC1IPEoVkHKMOTwAAAAAAAAAYdB8rpvXeU-U7j8zoRqc_lgAAAAAAAABYe7YYWaQTMh8P2PCVzA2a8gAAAAAAAAAwm140cnmnDMXwCTqH-lotHAAAAAAAAAAE", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "y8na3ceZxIiFeB38FaoyuA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw2EEXT4fd_WKeR1cE-hlLelCQAAAAAACw1iYXT4fd_WKeR1cE-hlLelCQAAAAAACkHGIXT4fd_WKeR1cE-hlLelCQAAAAAACkMo1XT4fd_WKeR1cE-hlLelCQAAAAAACkMUV", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "d31EKO2VF5LonJxrOu4FNQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgLC", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "toPZwdg4nGX0bw501hsszg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABMaP-XSbJ_jD1SaDSikvAxwAAAAAAAAAM9lngTnmeSG1s7rdk_juSMAAAAAAAAAAGHrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACtBnjxOT6ecDtMNaRY7RgRQAAAAAAAAABnzd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX73IOkhtZyjrZNnxzxVPYTQAAAAAAAABEiwGeqNv30_OStpNiHW5afwAAAAAAAABD1XS2aFbrMvbrgkTeGP6LGgAAAAAAAAAJgpel-2y6MT8HpZSUXeX6xwAAAAAAAABH8KfvTX_45EkfeqjFTJPGMwAAAAAAAABHhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAACQhYJDXHe_tXWd6FUCpAvLJAAAAAAAAABERTvkaysuyXpxT9w4uvkQVwAAAAAAAAAOhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAACQhYJDXHe_tXWd6FUCpAvLJAAAAAAAAABERTvkaysuyXpxT9w4uvkQVwAAAAAAAAAOhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAACQhYJDXHe_tXWd6FUCpAvLJAAAAAAAAABERTvkaysuyXpxT9w4uvkQVwAAAAAAAAAOhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAACaWaWdxNGxRcZaZiNc-MTFHwAAAAAAAAAe_yGigQXLGMRH830Q299U-QAAAAAAAAAhhYJDXHe_tXWd6FUCpAvLJAAAAAAAAABERTvkaysuyXpxT9w4uvkQVwAAAAAAAAAOhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAAC2QkkDXMhATwTB2K8md9w1pwAAAAAAAAAZRTvkaysuyXpxT9w4uvkQVwAAAAAAAAAihoA0DA92BMfAA7apys6-iQAAAAAAAAAMngJW-mG0syMkjT4A0Lg1GwAAAAAAAAAEDaFgF7psHPRRCj-YQpJFLAAAAAAAAAAEjZR3Zs-2DwklqT9f8n4ycwAAAAAAAAABOPiEm7T39rpNQ5ImKH3G-QAAAAAAAAAE", "types": "CAMvBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Yg46hsyTTfWnv4qsLCjw3Q"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbeuIw_I7HzcVMEcOaEL-XEgAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAABdynFllp5CrPbAGyx1JneoOgAAAAAAAAG7u5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAABEkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyh-742067SuaCDHLAO41TEQAAAAAAAAAFQLk-iuB8TQgFzsPDaJQkPwAAAAAAAAAEOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbbwmv37dMI1yN-YGmVVIuwAAAAAAAAAHJgZRyAOoiDw-UUT43F6zfAAAAAAAAAAW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFxGtP-sXIou6VkRlAu3EUfAAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDhfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAABEkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJm_XXHcAY7GMXwX2ivt7_5QAAAAAAAAAkoIYS8oKywxk33PzxrExveAAAAAAAAAAZETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASETEs_vJj_-q4WFpNiG_LRQAAAAAAAABDs4lxyv29UjBRbk4Egon88gAAAAAAAAAHrV1JNblxRI5fLicyinWLbQAAAAAAAAANAzxlhtMMySYrabepp4O8EgAAAAAAAABMrmSs41XtF0_135XyexZ4IQAAAAAAAAAEoIbcZroK0mbxpVqmuMaywgAAAAAAAAAG1910FhfK6lbOz1zNZXgiBAAAAAAAAAACPiU7BfFHTB9-nA0i0-poUAAAAAAAAAAOKOtS45rRLJPAswGO5vDBxQAAAAAAAACEGWzMNjwobqDWBa4HT5N-_AAAAAAAAAAuiuCJSQNox98NgtgeRfzc4gAAAAAAAAADMZlYx1M6Iw0T159uL_fuuwAAAAAAAAAHBL94eflI2jQw-ekg2oR2CwAAAAAAAAACFuKvOqGhHpe2jdLn9FK5DAAAAAAAAAALGWzMNjwobqDWBa4HT5N-_AAAAAAAAAA5lXtobYWbaZPFQjeFOSYgKwAAAAAAAAAmiM8LSJ_0DrAH3j2_fhBWQwAAAAAAAAAIKYUKYe5FJokP-mDuLYX4tQAAAAAAAAACXpviWYO7CFQF88r_qvK5hQAAAAAAAAAJdsAk2KNLTRhoL-DCKK7EHgAAAAAAAAAIkc0y7jI01W-alpm68D6wKgAAAAAAAAAIRdn0erNFvyK5zbBgfOdkIAAAAAAAAAAZlW9g6oXBy08ikQZIsz5UggAAAAAAAAABL8RflRLqXUtEedgUFWXJNQAAAAAAAAArPWHtAgxFHSv52ned2xJgQwAAAAAAAAASlW9g6oXBy08ikQZIsz5UggAAAAAAAAABL8RflRLqXUtEedgUFWXJNQAAAAAAAAAr3z1OOsQnAKpS1yct9MEg-wAAAAAAAAAddsAk2KNLTRhoL-DCKK7EHgAAAAAAAAA9lW9g6oXBy08ikQZIsz5UggAAAAAAAAABL8RflRLqXUtEedgUFWXJNQAAAAAAAAArsBHrVq8ytXjAIQaqacFv6wAAAAAAAAALlW9g6oXBy08ikQZIsz5UggAAAAAAAAABL8RflRLqXUtEedgUFWXJNQAAAAAAAAArR1GkjoPI5Yxt9CGoDpaaGwAAAAAAAAAk7a_Pg8hS47zrtH0Ax4DfZAAAAAAAAAAclW9g6oXBy08ikQZIsz5UggAAAAAAAAABL8RflRLqXUtEedgUFWXJNQAAAAAAAAArAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAPxBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9IJobkCHFBtPShwAqokpow"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEPD3cOudib0XQsq9y3nJeyAAAAAAAAAAQPHOUiNkmrb6lymlNuXSU6gAAAAAAAABCdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAAFAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "e0AOiOeHK39oqr5eNGKOkQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66VkZ3CKaS4aU08RhYA19y5ITQAAAAAB65ViZ3CKaS4aU08RhYA19y5ITQAAAAABw46mZ3CKaS4aU08RhYA19y5ITQAAAAAB7Af3Z3CKaS4aU08RhYA19y5ITQAAAAADRyJbZ3CKaS4aU08RhYA19y5ITQAAAAABzIEpZ3CKaS4aU08RhYA19y5ITQAAAAAByyXAZ3CKaS4aU08RhYA19y5ITQAAAAABwOdiZ3CKaS4aU08RhYA19y5ITQAAAAABv1M7Z3CKaS4aU08RhYA19y5ITQAAAAABv3T_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "CwMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jJFQhyyI67HMRTa7_xT6Hg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWIIXT4fd_WKeR1cE-hlLelCQAAAAAACqVVkXT4fd_WKeR1cE-hlLelCQAAAAAACqVcG", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IuR7KAGunHdUgixJ44Kh9w"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgpUcXT4fd_WKeR1cE-hlLelCQAAAAAACgptEXT4fd_WKeR1cE-hlLelCQAAAAAACgp_tXT4fd_WKeR1cE-hlLelCQAAAAAACgqGqXT4fd_WKeR1cE-hlLelCQAAAAAACgfc0XT4fd_WKeR1cE-hlLelCQAAAAAACh1C26tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ8bZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ8R56tVKI4mSYDEJ-ABAIpYXcgAAAAAAJXLE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJXFc6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJWlh", "types": "BwMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aqb62SWn_8yiLVVMpKijFA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAAAaieVPbh3z67ZFj7IGoqq7zgAAAAAAAACEBFI7c7JS1eVbUcz-CuyraAAAAAAAAAAJpE_XF-eq0tBl0fP7Y7zrSwAAAAAAAADY8uVqqmQs2krZT40-iqFC3AAAAAAAAACPLG5NyGjVtdJtfQ5dmd2VGwAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAko_1pp6LgRqCGeGjs7cnnwItcAAAAAAADja66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "CAMJBQIDBQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "b_jCta422d6xvVpqh75ZGg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAAA", "types": "CAMSBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SFn-AE4FVjnPbzGVfeaMqA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmq-", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5e_C8GLvZaqyeMf6f2Lo5g"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7zyXT4fd_WKeR1cE-hlLelCQAAAAAAC-8B3XT4fd_WKeR1cE-hlLelCQAAAAAAC-yjEXT4fd_WKeR1cE-hlLelCQAAAAAAC-057XT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmo46tVKI4mSYDEJ-ABAIpYXcgAAAAAALjgt6tVKI4mSYDEJ-ABAIpYXcgAAAAAANuJv", "types": "EgMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1zlIQyRrwSjFiz_6jtaVdA"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrkykgtQ4kMk_MBWrPUAFqVnYywAAAAABq7bsgtQ4kMk_MBWrPUAFqVnYywAAAAABq7GYgtQ4kMk_MBWrPUAFqVnYywAAAAABq6JUgtQ4kMk_MBWrPUAFqVnYywAAAAABquD3gtQ4kMk_MBWrPUAFqVnYywAAAAABrUI6gtQ4kMk_MBWrPUAFqVnYywAAAAABroeU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAALgLi6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BwMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mi0B0tB9mjIesaGe45FXYQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBiZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMltB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlaw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMB-t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUktc", "types": "FAMMBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "U7k09_Fy75Q9-PpHdDlKvg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAADxz_WaY2pXtLyni7L_8jKtBgAAAAAAAAAPEIpTc6zorXqtTjOVazk4HwAAAAAAAABogbCFQS2suYv46rP_aUsebAAAAAAAAAL_zvtGCZWh7Ji_VQTOB6BAGQAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC3OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyI0sTGLCNH21piOrMPoln5uBQAAAAAAb4wHsTGLCNH21piOrMPoln5uBQAAAAAAb5WAsTGLCNH21piOrMPoln5uBQAAAAAAXItIsTGLCNH21piOrMPoln5uBQAAAAAAf3mw", "types": "CAO9BQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1Hq3X6R0xZFl8IPGx4UbCQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUmh", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "X27L9SIqnKudu5fjFY2qfg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAAEJm5p8puApNHgdtwb3aFhxPAAAAAAAAAApxDECjxfRDF0SAcicHv7yIgAAAAAAAAABSsODsFdp0k4d_SSQAFmIUQAAAAAAAAApzzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIOgrnocamUAo62UJ-c4BU1gAAAAAAAAABcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAI3FmF0iegYInyRffZHSr8AwAAAAAAAAAv1Az5XiB-HqkM2KIxBs7pHgAAAAAAAAAzXmgLknRmXWrjNm14n69KUAAAAAAAAAAGcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAInQRJ3xr79n3cY6qS99IffwAAAAAAAAAE7EnnOhShMGZ9Te5BWwjtoAAAAAAAAAATopFI2iPPQrSoKgHSzuYsiwAAAAAAAAAIytmnDvqR2kv8bcodWBOqIQAAAAAAAABnlPFcxZmqiy0vqSr3tr4NBAAAAAAAAABhraFDPXwgmQmDo3hESpMdgQAAAAAAAAAC-AfB72--alphLE8FS3h2PAAAAAAAAAAjzwiX7AgVqL-aPC-SuEi6CAAAAAAAAAAHuC86pFXXnBLCj6eRRljPDwAAAAAAAAAQNc9gj1rv2NerZVTmjxTx9AAAAAAAAACGqN4Vqjijt0HHN8TkXT1dVwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAZHpec9nZGwrrhoUYM845NAAAAAAAAHI6_QYAzQdAagYTCI2yUMpa7wAAAAAAAOb9", "types": "CAMgBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VV8E-OYfEEKqtlp023Tqng"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAxrAh73n3G8p4dXg695aDMigAAAAAAAAAJzx9IOzRpYLcrlbiJ1gStmwAAAAAAAAAM_orFLBX4vpmigxovAnXMlwAAAAAAAAAFV-BrlcNQ7BgfHtC7BLNw6QAAAAAAAAA5axgEJXApvqeO8NKYR7cB6AAAAAAAAAAJm6LPNSFO1-j9qyfUqm5ykAAAAAAAAAAXvCGd3lsIz-VHcGmd-xEM8QAAAAAAAABp9-9BWMl1zWi7QmYHC4Pa9QAAAAAAAAAPxnsyTYWEvcdITjIbsQ7fWgAAAAAAAAA7WLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYv0o-SuFa6Ydo5LzhQb4MjgAAAAAAAAAGkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAgDfAhz8euD6ZTnESDBmFe4QAAAAAAAACReNbj51SwVufxZ4R3ztSduAAAAAAAAAAMLlX5hWF1CNUXm64M8UZFNQAAAAAAAAAA", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "j6Z5oRx4O63IFM67ZJuuJw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACfZYJrmLEjznzm7GSiXKeulgAAAAAAAAAMjH-Kh7eMoVAEa99gkdQ-YQAAAAAAAAAWvtOmTuUGvKYiQRK_O9kHuwAAAAAAAADP_coc0yQmibHSYbczgpafrwAAAAAAAAAFm-i3pqvNoPRjOJ3b3sEiiwAAAAAAAAAEs9MntjdT5XiNr-rHeRcTvQAAAAAAAAAB", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "64Ux2oNdDZBBedmvlh2Jwg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAEKGqShcrW-d9_GDzTagKIU9QAAAAAAAAAG_h880XQOq8mngzMZR-nPlwAAAAAAAABR9iEsaZI76W1WejkwhmTFwQAAAAAAAAAHC64NVLkkZ7RW349y9srs0gAAAAAAAAAEH7o77ANtSaWU3Ypp865GJwAAAAAAAABW_93WPbrUDW14kcLWmrpKPQAAAAAAAAAG12nEeMsH00wjguIyHXaYDwAAAAAAAAAEHRnmOObX7UEhjneXDGbG8gAAAAAAAAAM3YIfAGaCMYqtVFhpvZ-uyAAAAAAAAAABzKHS4hsJddCCPPI3lqHKuAAAAAAAAAAF__e_ReExoac--V-RQeNXewAAAAAAAAAHqnkrTiN5YCts6ND7O0BX2QAAAAAAAAAPHRnmOObX7UEhjneXDGbG8gAAAAAAAAAM_DDQPZMS5NnUuioWsVqoPgAAAAAAAAAF3QWEH8eApmH_ruugOKv76AAAAAAAAAAHshNXixs-94AywpTuAMqgvAAAAAAAAAAK5m5J32z338iItYAy0IlfPgAAAAAAAAAoL8R2W0h5kIRkmSOynN7f9AAAAAAAAAABqsOdwnOfdpGhy1Ny492aAwAAAAAAAAAGbfWTJUKYANwcIsCQIfxvLQAAAAAAAAAC1rHoPMq-mpf_DwJrvHqYAwAAAAAAAABVPqkKpz2WDphJH5ROhuDMyAAAAAAAAAAGYegVEymiG8lw5t7wHfz6hwAAAAAAAAH2", "types": "CAM1BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EyPwNPIcZxBA4fL24xAk6g"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACRuzKgtQ4kMk_MBWrPUAFqVnYywAAAAACRvAEgtQ4kMk_MBWrPUAFqVnYywAAAAACRvT8gtQ4kMk_MBWrPUAFqVnYywAAAAACMCnBgtQ4kMk_MBWrPUAFqVnYywAAAAACbQAkgtQ4kMk_MBWrPUAFqVnYywAAAAACbQYrgtQ4kMk_MBWrPUAFqVnYywAAAAACbM7NgtQ4kMk_MBWrPUAFqVnYywAAAAACbMVNgtQ4kMk_MBWrPUAFqVnYywAAAAACbMqDgtQ4kMk_MBWrPUAFqVnYywAAAAACbLW2gtQ4kMk_MBWrPUAFqVnYywAAAAACbLSkgtQ4kMk_MBWrPUAFqVnYywAAAAACa82-gtQ4kMk_MBWrPUAFqVnYywAAAAACa80ngtQ4kMk_MBWrPUAFqVnYywAAAAACa8N2gtQ4kMk_MBWrPUAFqVnYywAAAAACa9iWgtQ4kMk_MBWrPUAFqVnYywAAAAABqIcGgtQ4kMk_MBWrPUAFqVnYywAAAAABqH4i", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "T2adJ0VUBNmWRoosWSssPw"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAADz13", "types": "NgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7RMgnGzd9pjT-Nh8jG3zbw"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAES-w", "types": "NgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xtPrc0RhZSbX5O68FSRayg"}} -{"Stacktrace": {"frame": {"ids": "5VZIXKdThz-hZwdLu0KVfwAAAAAAAAAKDav0V-nM1jJ-7VtDnKysdgAAAAAAAAAE", "types": "AgU"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "to88lQuatgOtWyhP8T7OMQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiQ6z5k14PsCcDvFyUC1kmlV3QAAAAABHpn0z5k14PsCcDvFyUC1kmlV3QAAAAABHpp5z5k14PsCcDvFyUC1kmlV3QAAAAABHeJQz5k14PsCcDvFyUC1kmlV3QAAAAABHdQDz5k14PsCcDvFyUC1kmlV3QAAAAABHeGEz5k14PsCcDvFyUC1kmlV3QAAAAABG_LBz5k14PsCcDvFyUC1kmlV3QAAAAABHCkw", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dYb17oP8aNL5n3jF96PoUg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAAEJm5p8puApNHgdtwb3aFhxPAAAAAAAAAApxDECjxfRDF0SAcicHv7yIgAAAAAAAAABSsODsFdp0k4d_SSQAFmIUQAAAAAAAAApzzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIcPy2QFuGdjzuVBNv2-JtzQAAAAAAAAA5FQVEqfdF3Gc5vOLVf8c4EAAAAAAAAAEpcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIiaYGOKrCYzeQFPvSFK3LGwAAAAAAAAAlcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAI3FmF0iegYInyRffZHSr8AwAAAAAAAAAv1Az5XiB-HqkM2KIxBs7pHgAAAAAAAAAzXmgLknRmXWrjNm14n69KUAAAAAAAAAAGcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAInQRJ3xr79n3cY6qS99IffwAAAAAAAAAE7EnnOhShMGZ9Te5BWwjtoAAAAAAAAAATopFI2iPPQrSoKgHSzuYsiwAAAAAAAAAIytmnDvqR2kv8bcodWBOqIQAAAAAAAABnKKci4M_8u3lv7Ydwxf31oQAAAAAAAACFwoXLgCudpu5Igw4bPyCZzAAAAAAAAABTLQDSx6vga0zDZ5JbsP5kmgAAAAAAAAAs51V0D1TzyqMrtHMI3LHdDwAAAAAAAAAB27u6kAAWAK4fCqYjVgn2IgAAAAAAAAAL6EBVNX1S4KOt2Rr803iMSAAAAAAAAAAIs0wdF_TZChStCFZRo1NX4wAAAAAAAAAFE8BIohdMn7aYDKPION2NJwAAAAAAAAAy2RAgh2aeFxosXWCzh6AZWQAAAAAAAAAA", "types": "CAMmBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SDmVY9Mljfrd1uHcDiDp-Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChGI0XT4fd_WKeR1cE-hlLelCQAAAAAACg6T7XT4fd_WKeR1cE-hlLelCQAAAAAACh1L_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuoD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00i6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0yh6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "BgMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zeLqMJxxpT2jsR6Xt4zqGQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbPkXT4fd_WKeR1cE-hlLelCQAAAAAACi_9XXT4fd_WKeR1cE-hlLelCQAAAAAACiJjoXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yHqWimgCZ0j1831FpP56GA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcM5Z", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IqfRn2aVThGWJpMyYAGTnw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAABQ1PhVGIcoQAgleHhVcpf27gAAAAAAAAAvyBWSGqiiI_VOVi3uSjsniwAAAAAAAAACTdwLOY0C6NYFuVVgfM0c5wAAAAAAAABsQVg0XAOEbp3JKK1NFLqVYQAAAAAAAAAH8PLzoB-u4hzDZ_WKIg8FxQAAAAAAAAAhYNG5rLJWIsjMTCOpoQz9TwAAAAAAAACG0uQfhygt3iA5h-6EqK0MPAAAAAAAAAAEJYb5JOqnMPOCcF7fd5apugAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAK7KeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARjj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTfw", "types": "CAMRBQIDBwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kj2172QFM0X7LD-Gx8UmJw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7zyXT4fd_WKeR1cE-hlLelCQAAAAAAC-8B3XT4fd_WKeR1cE-hlLelCQAAAAAAC-ykpXT4fd_WKeR1cE-hlLelCQAAAAAACp70oXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz9V6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFxdb6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFryM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs-i6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "EQMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HcQSqbXhDJcv-dVT41RQ6w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR7y", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cW8t-wBFVbXPMN_YH8nydw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAA", "types": "CAMvBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2aKzwMjw6-zxCFb-O-8vkg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7RXT4fd_WKeR1cE-hlLelCQAAAAAAC-pCkXT4fd_WKeR1cE-hlLelCQAAAAAAC-jplXT4fd_WKeR1cE-hlLelCQAAAAAAC-jrRXT4fd_WKeR1cE-hlLelCQAAAAAAChaNA", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "p5nXo4mBd3u0s_59PDRZvg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QhMcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LLQ", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pxt9G8AauuDa281-G4uTWw"}} -{"Stacktrace": {"frame": {"ids": "3mYYqsL3RyZ4MT4Z8-by-gAAAAAABsfA3mYYqsL3RyZ4MT4Z8-by-gAAAAAAA5oV3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHRcE3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHP6w3mYYqsL3RyZ4MT4Z8-by-gAAAAAAGTSU3mYYqsL3RyZ4MT4Z8-by-gAAAAAAGSdh3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHRJR3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHRTx3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHHZF3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHK-o3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHLol3mYYqsL3RyZ4MT4Z8-by-gAAAAAAHMDJ3mYYqsL3RyZ4MT4Z8-by-gAAAAAAG9-K3mYYqsL3RyZ4MT4Z8-by-gAAAAAAG9Je3mYYqsL3RyZ4MT4Z8-by-gAAAAAAGmnr3mYYqsL3RyZ4MT4Z8-by-gAAAAAAGoHQ3mYYqsL3RyZ4MT4Z8-by-gAAAAAAGnjL3mYYqsL3RyZ4MT4Z8-by-gAAAAAAGoRy3mYYqsL3RyZ4MT4Z8-by-gAAAAAAGoHQ3mYYqsL3RyZ4MT4Z8-by-gAAAAAAGm2Z3mYYqsL3RyZ4MT4Z8-by-gAAAAAAGpGQ3mYYqsL3RyZ4MT4Z8-by-gAAAAAABO_I3mYYqsL3RyZ4MT4Z8-by-gAAAAAAAPXP3mYYqsL3RyZ4MT4Z8-by-gAAAAAAAOvM3mYYqsL3RyZ4MT4Z8-by-gAAAAAAAZDp3mYYqsL3RyZ4MT4Z8-by-gAAAAAAAZve3mYYqsL3RyZ4MT4Z8-by-gAAAAAAAZ343mYYqsL3RyZ4MT4Z8-by-gAAAAAAAo2U3mYYqsL3RyZ4MT4Z8-by-gAAAAAABtPy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_NQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJaQ66tVKI4mSYDEJ-ABAIpYXcgAAAAAAJZmt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKTe36tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ5Qy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ4C76tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ0CJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYK2", "types": "HQMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FaKFPVNiFZEijjndTiCFKA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB807Nz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHphgz5k14PsCcDvFyUC1kmlV3QAAAAABG-csz5k14PsCcDvFyUC1kmlV3QAAAAABHCmp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmu46tVKI4mSYDEJ-ABAIpYXcgAAAAAALSUu6tVKI4mSYDEJ-ABAIpYXcgAAAAAALQsy6tVKI4mSYDEJ-ABAIpYXcgAAAAAARPAS", "types": "BwMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Fkclrml2poKZRsRiP2tUBw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eaUcEvvhuguaGYCmGWrnWRz1QAAAAAD_AtNcEvvhuguaGYCmGWrnWRz1QAAAAAD_ChZcEvvhuguaGYCmGWrnWRz1QAAAAAD_BbEcEvvhuguaGYCmGWrnWRz1QAAAAACIXWkcEvvhuguaGYCmGWrnWRz1QAAAAACFObNcEvvhuguaGYCmGWrnWRz1QAAAAACEM3v", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PVeP7XzJjOmZ2Pz05AHQcA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAdKZMYsnZ_Lwaqr0cHEPo0D185QAAAAAAdEqKYsnZ_Lwaqr0cHEPo0D185QAAAAAAdCruYsnZ_Lwaqr0cHEPo0D185QAAAAAAdJENYsnZ_Lwaqr0cHEPo0D185QAAAAAAch5Z", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Oxe_oPi543aZz0lTOU2m-A"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AidY4CO5JNQB7gWz7IQBaA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAepxFz17lb-voh9uZicvdXWAAAAAAAAAAgCpvjWyzlv7sy206ARLr_PwAAAAAAAABU", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SFVwB25B3ZOzmrFYMtl7jA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACl", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_NBZhL-VXv-Q6LRQmOUyNw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAACqGMNSe-6LTlpuiQTu86RdbwAAAAAAAAA1wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAA", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "f0fqU4EglvDX7hh3PMNsxA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--RVXT4fd_WKeR1cE-hlLelCQAAAAAAC-7XmXT4fd_WKeR1cE-hlLelCQAAAAAAC-zdsXT4fd_WKeR1cE-hlLelCQAAAAAAC-1HEXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "R_8VdmeZ5UOnYprIIrYRWw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXzbi", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fqiKGqkA5IoNaeD9flVx0Q"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAAAzr8jPkIagwkcKu3VFH_5eFQAAAAAAAAAFfwrSDgHrTXpAEmJ4bHy8MwAAAAAAAAATTq2A_ghNgr4Sgbd4ToSeBgAAAAAAAADKOVKwi55Br_WT9fxVyQu6PgAAAAAAAAAe2YGkbnIdlKIhbsTbMV-kWAAAAAAAAAACz-hu6cNT1Ftqgnka76QdWAAAAAAAAAAQEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAABBUoX-ughXNd_AmddejeY_6gAAAAAAAACLEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAABBUoX-ughXNd_AmddejeY_6gAAAAAAAACLEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAACgjxBO7ihhtfLOOEuDlHwmIAAAAAAAAABLEA1OKjiVXEAGGRXpRU8t5QAAAAAAAAACsaQ5ZOut9f2P2MZp-a05OwAAAAAAAABBUoX-ughXNd_AmddejeY_6gAAAAAAAACLsrK4jFHN_yr7CRCkobJCaAAAAAAAAAASU9GMGSRcFRH-CQmb_n3Y0QAAAAAAAACk2dpbQm6Su1jn5rEv9F3sMwAAAAAAAAAavcAmytl_wXdfdPt8SRSHZgAAAAAAAAAOyfXyOODTodkdeiMKIIzHeQAAAAAAAAAjCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAACFCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABxCaMCTqX2Hc1A7MWf4BzqjwAAAAAAAABhmUB0X1duvhm3HnTYomF_uwAAAAAAAAAQAFgNmbMpan7AOvr1RHjTvAAAAAAAAAAA", "types": "CAM0BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bawlMqqRTjOm5tziwkLcwg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgb3scEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETQ8cEvvhuguaGYCmGWrnWRz1QAAAAACFt7Q", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xaL3njYZVA5XbbnR4zdhGA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAC3Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAABWdZbEvj5KNLRaqtv4ShlGOgAAAAAAAAAHAvY-8GTrHONLnLoYn_aUmwAAAAAAAAAl9iPPrg1Y9vtWhMk7mXQ_KgAAAAAAAAAeuJZrofYGiqBpYJJdGGtLHQAAAAAAAAADzGZ_gCn-Ge9oHmah2m0JWwAAAAAAAAAD2p4Dyo36Ea--rGgiVt2H5QAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhTEqFV6xhVekP5-uToPI32ragAAAAAAe4yGqFV6xhVekP5-uToPI32ragAAAAAAZgC5", "types": "CANMBQYD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uqwRXN4Yq9WZrlMPcUG5Yg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vCpXT4fd_WKeR1cE-hlLelCQAAAAAAC-n73XT4fd_WKeR1cE-hlLelCQAAAAAAC-oREXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FwMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pOXMz1epa3_ioZurkFW7Lw"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiQ6z5k14PsCcDvFyUC1kmlV3QAAAAABHpn0z5k14PsCcDvFyUC1kmlV3QAAAAABHpp5z5k14PsCcDvFyUC1kmlV3QAAAAABHeJQz5k14PsCcDvFyUC1kmlV3QAAAAABHdQDz5k14PsCcDvFyUC1kmlV3QAAAAABHeHZz5k14PsCcDvFyUC1kmlV3QAAAAABFwLgz5k14PsCcDvFyUC1kmlV3QAAAAABGnan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuPs6tVKI4mSYDEJ-ABAIpYXcgAAAAAApym-6tVKI4mSYDEJ-ABAIpYXcgAAAAAApymC6tVKI4mSYDEJ-ABAIpYXcgAAAAAApyVc6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD7KN", "types": "DAMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wHyMmE8SVaekDujzx_Uidg"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYpqL9Bd3XIiGWasJdN8trI5tgAAAAAAA1YsL9Bd3XIiGWasJdN8trI5tgAAAAAAA1LtL9Bd3XIiGWasJdN8trI5tgAAAAAAA0YUL9Bd3XIiGWasJdN8trI5tgAAAAAAAqzPL9Bd3XIiGWasJdN8trI5tgAAAAAABcqv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuqt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL47y6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL47I6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL4VK", "types": "BgMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-Hi1xqW7gnqMR0vJ_jyI7w"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlqJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCIE6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMA8y", "types": "FAMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GlIWXDdurIjEanwPccKsgA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBOeYxe-SHgukLEpCkawSk1QWAAAAAABWB4EYxe-SHgukLEpCkawSk1QWAAAAAABV_9XYxe-SHgukLEpCkawSk1QWAAAAAABWALYYxe-SHgukLEpCkawSk1QWAAAAAAACp-5Yxe-SHgukLEpCkawSk1QWAAAAAABWCa2Yxe-SHgukLEpCkawSk1QWAAAAAAABp3u", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AtiTcD0o7LzpBiQNMhP0Vw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQw7WOWZs79Wz210098loDzAAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARrSUSoohdnG6MdsfC9pID0QAAAAAAAAAGpY2MvdN80J-OPBSDYZs_8gAAAAAAAABSneOkLg7Birx-EWGBuoP5rgAAAAAAAAAaDjB9rnpR9s2OI-jlVfuXnAAAAAAAAADmNrikprALerrSkH1iKFm6zQAAAAAAAAAs_ui1AAIySrYc7ZeYb73nFQAAAAAAAAAMDbSG9xbs7jnAEiHiVrKb1AAAAAAAAACGHSSZPv-Jiv2fPLN9vFx42gAAAAAAAAELQKRyqWZIJ5_z0G07UwBzeAAAAAAAAABS3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAxJDeoMDAF4zRp8m9fg1ttGQAAAAAAAACBArHoFYyXVsZt6HAc7EjVzgAAAAAAAAA3u1A1mq4_NM3j2_15WwdIbwAAAAAAAACHJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAACjGw9H1l67yAnzlh8ZHG_VaQAAAAAAAAA47c7rgpFHY6rxkjCoiUY2PgAAAAAAAACWu1A1mq4_NM3j2_15WwdIbwAAAAAAAACHWRFfIxsq2Q79ALvapo1dCgAAAAAAAAAkuchUv6RRAwtUDrZKhO2h8QAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFPyr97kasv6HR5lCuwdxIZgAAAAAAAAAURWZ9G1N69fMZnc8QMvYsrQAAAAAAAAA3-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAF0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFvuphyS_BZoVnngMBUX1lRwAAAAAAAAAQ88-Z439dOdp5GpDKUJubowAAAAAAAAA_0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFk2QfmGpbwZfMFpur9DTalwAAAAAAAAAoREOZDMGevKohDmxWFx6eeAAAAAAAAACajBeiHwwOyRIapBbs5J2OjgAAAAAAAAB4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF0oXMrtJgPp9xNBfTmr-cvwAAAAAAAAAcxMi3lfkibPU0NAhJ8DhGPgAAAAAAAABR0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFYN0teMNDLgmhoUpmrqni9QAAAAAAAAAQclGseV0LGavUI1_g3b_OoAAAAAAAAAAwjBeiHwwOyRIapBbs5J2OjgAAAAAAAAB40LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFmj7OrL6QrJ8gvIjThzQydwAAAAAAAAAQs7vZritmiKufeJDzCX_JRAAAAAAAAAARLHQIqPZNDAtBb5Urr3NFHgAAAAAAAAAu-Q25YN3mx81c5h9FyskSVQAAAAAAAAA-BZ6M98E7_jhQ9w9aCijThQAAAAAAAABjK4q5bjj7FsLI8bLo_hB_IAAAAAAAAAAY3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFRbzqTTxiJ8XotiOA2Wj5YwAAAAAAAAAYXmcQ4_6bleDFvrRZ47Cq9wAAAAAAAAA73G7WvpXqPGO04rbAV9CJtQAAAAAAAAAl8ZRk8SyYMUcoYIl9aB0UjwAAAAAAAAAp0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFEfRqa-7Lw23Pq9cBac4oVgAAAAAAAAAMM_MfJrZLrX3P0R0dWrP49AAAAAAAAAAL0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF-7AzPTKQkaPts8LuNXMNDQAAAAAAAAAYDkUb3XtVJF4DvOzLdzKoEQAAAAAAAAAi25mp98L6MrKhqE8ccc5QLgAAAAAAAACz1Rs5auAL8MkDEq2o8XvWFgAAAAAAAAAQkUPrBmtG7HWSEiOu1vXGZgAAAAAAAAAV1fE-A15-sG5pm2Nv6tb9vgAAAAAAAAANJKjf0pZHg3dzwDeAqfO16AAAAAAAAAAEsyuAMg3RShupVDY63eHfbQAAAAAAAAAHMrVvriJqF-HOpa8js-mFagAAAAAAAAA3bC4xUO3cZ_wW8IEDAJ-BNgAAAAAAAABGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAm4yG9IdLfPOQJQp1BxdOq7wAAAAAAAACfEgnEAYVJO6evUZwnNI7NMgAAAAAAAAB05zxpGeZtVFjxV00AgHRxwAAAAAAAAAA6JDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFYhLUfql-5LQM_JtfSo3-RwAAAAAAAAAgUyl96nbKrz6UOSXSc3iffwAAAAAAAABDmWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAB2GBJ1zKS_b9jP7AxB92tjCQAAAAAAAAAo0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFKCxCvDIXtl0ClBmM3hNiLgAAAAAAAAAcFDp23rE1CceEicB2tyC3EgAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_QZucZeLQwMr7zKD51abCrwAAAAAAAAAMS_GmAS-sCtPOI6egY6LXiwAAAAAAAAAPAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJnWkIGdO50axZ_Bk4M_K1cAAAAAAAAAAkr9OA6z6ywxk33MG1uly6aAAAAAAAAAAZFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASFS55TSwq0w7KNb6oqdqsJwAAAAAAAABDGmz4msZ2ZDrLUqY2xbpOyQAAAAAAAAAHc2nGYkSUqE3rxfTW8wK2fAAAAAAAAAAoAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJQNXy4XeFFzKACGQInZNhgwAAAAAAAAAcn1Y254wxpQ3hq_nYz9gRWgAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRW7C8N1q94TuMskdRCHbYwAAAAAAAAAFCMOLX12QynGJCu7CxyKH2AAAAAAAAAAg_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANsK0qk7bPWcYirYByOsD0BQAAAAAAAAAGcWLoRlpieZwX6W_wbmlZ5AAAAAAAAAAG2OyxZS1eUR3RgEBXZu5OrAAAAAAAAAAUwyhhefqrtGhwsD6tVI0adQAAAAAAAACzBZ80eZyhE0ZGJTcKVaaGgQAAAAAAAAAUeP0KBVXjuFe0e0V-8WYorwAAAAAAAAAGTehVpU4OSSIJc9O233JRogAAAAAAAAAC", "types": "CAPEBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6i_SCGQnGma1eU5i0B5EWg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcDY6SNDzWiYDmLZi_Z1ZVETLoAAAAAAAvtxjSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt-hLSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWduRSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWdfHSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWb0Y", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9l-A9YSFZEx7xj9VRJkH9A"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSHu", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LrLWZ5bevl0fyb8pVLrxUg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAazVvSNDzWiYDmLZi_Z1ZVETLoAAAAAAAayyfSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcOjMSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcTyKSNDzWiYDmLZi_Z1ZVETLoAAAAAAAaWJVSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfMQC", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gelrHvnNAa48pTzMlBF3sQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw14eXT4fd_WKeR1cE-hlLelCQAAAAAACkSKa", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XelrCg-bWU72nb6t1bBQsw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR4h", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NEZCSjz-TkZF0o0U1xZQKg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmuY", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tGylLXpBEK5V82qwwulbVw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANfzLzWZQgzth4yv0Aw0PoLgAAAAAAAAAl1pEcO9CYkxI799CldX3uowAAAAAAAAARsCdW6ghslIPajpgsdfjVWAAAAAAAAAAS3HYeSFaP4bm-Z2NSJub6sAAAAAAAAAAY4io8TQpKnhHcoJs_H_nFpQAAAAAAAAAca_OIxG7FMGXAdgtXd0LibgAAAAAAAAAbRuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAA51NxYsnZ_Lwaqr0cHEPo0D185QAAAAAAyeTTvQ7EacG6CR4rzcFaNFEsTQAAAAAAAMg5", "types": "CAMJBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nG3ZbKid0T9JiPA-g3DZAA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFld5", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ICTXUEt57m3Mefmfzh3iUA"}} -{"Stacktrace": {"frame": {"ids": "-FiXU0afkg-sRwubj2WiAwAAAAAAAKlJUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyG-FiXU0afkg-sRwubj2WiAwAAAAAAAKMr-FiXU0afkg-sRwubj2WiAwAAAAAAAmE0-FiXU0afkg-sRwubj2WiAwAAAAAAAl9FFuiq0RN8VMfwSLHsA6DzhAAAAAAAASBMFuiq0RN8VMfwSLHsA6DzhAAAAAAAApPKFuiq0RN8VMfwSLHsA6DzhAAAAAAAAqqgFuiq0RN8VMfwSLHsA6DzhAAAAAAAAqKeFuiq0RN8VMfwSLHsA6DzhAAAAAAAApdlFuiq0RN8VMfwSLHsA6DzhAAAAAAAApZvFuiq0RN8VMfwSLHsA6DzhAAAAAAAAgxYFuiq0RN8VMfwSLHsA6DzhAAAAAAAAbKuFuiq0RN8VMfwSLHsA6DzhAAAAAAAAbG4Fuiq0RN8VMfwSLHsA6DzhAAAAAAAAa6MFuiq0RN8VMfwSLHsA6DzhAAAAAAAAa0dFuiq0RN8VMfwSLHsA6DzhAAAAAAAAadLFuiq0RN8VMfwSLHsA6DzhAAAAAAAAtR4Fuiq0RN8VMfwSLHsA6DzhAAAAAAAAtQbFuiq0RN8VMfwSLHsA6DzhAAAAAAAAtL5", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LdUr9M80lv8cnRJG6q84UA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-uTvXT4fd_WKeR1cE-hlLelCQAAAAAAC-w7kXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACh1iv", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ade_-rYDOOWEqYEPYyknBQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbPkXT4fd_WKeR1cE-hlLelCQAAAAAACi_9XXT4fd_WKeR1cE-hlLelCQAAAAAACiJjoXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcoN6tVKI4mSYDEJ-ABAIpYXcgAAAAAALckr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf", "types": "DwMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QCaQz16pLyZGIJ3JyzyIYw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf_B", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JnBTQbU2oNTyfQ4d69ZrwA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAa_0CSNDzWiYDmLZi_Z1ZVETLoAAAAAAAbAd-SNDzWiYDmLZi_Z1ZVETLoAAAAAAAVHPJSNDzWiYDmLZi_Z1ZVETLoAAAAAAAbBCs", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SpBP0MEtp9HLwHtyNGRBfA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcQxTPNhFsgl-8e8i61Q7phQAAAAAAAAAnwnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAE8PySOWxdeTvWtl74Iv620AAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAn5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALCqHdoNRupr5ud0SEqGGzcgAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAF_Ngz1ncxudXrxSqiWBxoaAAAAAAAAAAETphZkORhkBDEbRDMofKltAAAAAAAAAChfNBUTxafk7cWQGRCQErWrwAAAAAAAABiTphZkORhkBDEbRDMofKltAAAAAAAAAA7x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAChAAnABuJtrWflPvotxCoPjQAAAAAAAAFDgM-zvldT2mxZOhlxJvpRXwAAAAAAAAAXc0OkgT3_p45M6FsCvH3WnQAAAAAAAAAV9BsFwV8tobvksYfuNpORcQAAAAAAAAB6oOz1jSRZNClfuKPM_yWNFgAAAAAAAAAG3b73aK2YxmWJY2Of38z3nwAAAAAAAAAG-98KX7lEQngZcvy7BcWxHgAAAAAAAAAZR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAW40ES46dU7pwVTIhZzOkjPwAAAAAAAABV_bWrQJSE9QDRqMSbes6HHAAAAAAAAACK1WwaSXc6MUqSl16CLws0XwAAAAAAAAC-6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAACVjcbdnnQUMfgz1UYqKyDaQAAAAAAAAABmSJ6fSPuHzsY_PJcgbXOQAAAAAAAAACX", "types": "CAMnBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rwXtW2ufmEwH1DrvNBzUGw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAABLXRWaJCgm_fIuOHV97UH4-AAAAAAAAAAE6JqSjZUfKzqH4khsfs3pQgAAAAAAAAAD2EnQTIbnbhLRhysRFCft9gAAAAAAAAAY4y1QLnOo_87Zcna0Yb8QdQAAAAAAAAAEKH5_QfKIKeUIlFImab-3OAAAAAAAAAABAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMvBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "o-13S3KGROj5sAwzFCFlIA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAAA2Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAABWdZbEvj5KNLRaqtv4ShlGOgAAAAAAAAAHAvY-8GTrHONLnLoYn_aUmwAAAAAAAAAl9iPPrg1Y9vtWhMk7mXQ_KgAAAAAAAAAeuJZrofYGiqBpYJJdGGtLHQAAAAAAAAADzGZ_gCn-Ge9oHmah2m0JWwAAAAAAAAAD2p4Dyo36Ea--rGgiVt2H5QAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhY0qFV6xhVekP5-uToPI32ragAAAAAAwhQA", "types": "CANMBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3LSphn5t1PDGJFGbkaC3PQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHZB2XT4fd_WKeR1cE-hlLelCQAAAAAADHZLnXT4fd_WKeR1cE-hlLelCQAAAAAACzCjLXT4fd_WKeR1cE-hlLelCQAAAAAACzD3sXT4fd_WKeR1cE-hlLelCQAAAAAACgaREXT4fd_WKeR1cE-hlLelCQAAAAAACgI0X", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "deEhfqa-GWkx1wr4iMz1nA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAACgg6FXT4fd_WKeR1cE-hlLelCQAAAAAACgrPkXT4fd_WKeR1cE-hlLelCQAAAAAACgrYvXT4fd_WKeR1cE-hlLelCQAAAAAACgrsS", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Nf56AYpKmfrZuf4mkXNDvQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgvMKXT4fd_WKeR1cE-hlLelCQAAAAAACgSwc", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ExUCp1oD4V2746Bz2cZdiw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWC4XT4fd_WKeR1cE-hlLelCQAAAAAACil8SXT4fd_WKeR1cE-hlLelCQAAAAAACil3RXT4fd_WKeR1cE-hlLelCQAAAAAACil2oXT4fd_WKeR1cE-hlLelCQAAAAAACil3RXT4fd_WKeR1cE-hlLelCQAAAAAACilMq", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "28hHkhN7jPc2yLRpJAYfPw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATRsvOFqC3SNzn_pRUkwD1yQAAAAAAAAAKmVg5ImyOXWtTMPsPyAoJFAAAAAAAAAADeCd7pmEC4QoP7FQm1ikosgAAAAAAAAGVws0N6fTgPArljYYAC403MwAAAAAAAABq82-lh_T5Vv0w2WAb_RJ1VgAAAAAAAAAIuF_V7TH-mukdED5BHxc90gAAAAAAAAHcC_0aTeR6JBYKeG8Yqz7OGgAAAAAAAAETljpmjACwvo52D1nC2cyFxQAAAAAAAACDvDU7E1ww8G9noy7HUAb7kQAAAAAAAABatrKFSvtlxO979VBLgP3FPAAAAAAAAAAvgs-Dp-bkHGP2EKd53eqOEgAAAAAAAAB-7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAME67ZApSKF_tBH-bAhOXBNxAAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5EXm1hlIrQc2WIKO4W87lDAAAAAAAAAAfDm9DG4ZqDn_4bGJnyMFN4AAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEXnZcAdwBOPPRQ2hQm4YWwWgAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAkQp3ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgIpoZSkKN3zNxr0HYuO2pqe5hQAAAAAAgGut", "types": "CAMyBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Vyzbd-n47muGD1CcY51iSw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAAAe3bipPb-lPFytoX0zurH-oQAAAAAAAAAA", "types": "CAOOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tJrgFzG4FpnL3ryIXlyV6Q"}} -{"Stacktrace": {"frame": {"ids": "R_3RsDYccfUxjNYYah3JZgAAAAAAEhYe-IlGUwajicqSE5-hS5VYigAAAAAAAHbaSZxl-YF9wOaedogsBMtvRAAAAAAAGQAGSZxl-YF9wOaedogsBMtvRAAAAAAAGQBRSZxl-YF9wOaedogsBMtvRAAAAAAAD9N_SZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAADz6pSZxl-YF9wOaedogsBMtvRAAAAAAAE757SZxl-YF9wOaedogsBMtvRAAAAAAAE8NHSZxl-YF9wOaedogsBMtvRAAAAAAAE8OuSZxl-YF9wOaedogsBMtvRAAAAAAADgy9", "types": "KAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "q9GZUSBL9TB0CdE5vyfEsw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHZB2XT4fd_WKeR1cE-hlLelCQAAAAAADHZSL", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AG_6FvO14ax3UdwVieto8Q"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAAGSVL1CEjKQwCA4bmkBcj-7kAAAAAAAAAAFpa6Ztq8N2NUyA7Y8HvxliwAAAAAAAAALk1Dv3_XvAB6SsR0npdQeVgAAAAAAAAAUN7oX4z7s3z58fgItwqnPUwAAAAAAAAAhhSe7ADGJd4Crz1ii7b3EbAAAAAAAAABP4mP1QUetE95tascrKJS6rQAAAAAAAAAIn2n5oFvwiEYRBCQEnFNEhQAAAAAAAACsmDwqxOA1aWXm0v9SUcRWrwAAAAAAAACR9TmwK4T30h3U0B1lbih6TQAAAAAAAAAN4MmFlXNlAaTTYzJu9ZvlFQAAAAAAAABi5EQ6InbW5lh3HIuXdyrqwQAAAAAAAAAX2Vpl4JCXI4Pj7QXAxuNxegAAAAAAAAA0BpjC-8pIlVVLzRZabfYgbwAAAAAAAAAA", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lBfh2StrmCD3agR-LjX8jA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAAV_QheDKcYlWwsFE4koFnZNgAAAAAAAAABRMYtu6lQVhfanHasngCNQAAAAAAAAAB4dCnMOj8mcIDYox1J0hIoXQAAAAAAAACHdCnMOj8mcIDYox1J0hIoXQAAAAAAAACHdCnMOj8mcIDYox1J0hIoXQAAAAAAAACQ", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "y8UVXYWOaxAeCcWGwyqDaQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMTtvXT4fd_WKeR1cE-hlLelCQAAAAAAEMQCQXT4fd_WKeR1cE-hlLelCQAAAAAAEMR4kXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "EAMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4u9WOOyrWYLdgsjOh9aCUg"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABq1DlgtQ4kMk_MBWrPUAFqVnYywAAAAABq2N0gtQ4kMk_MBWrPUAFqVnYywAAAAABq5Q5gtQ4kMk_MBWrPUAFqVnYywAAAAABq5AogtQ4kMk_MBWrPUAFqVnYywAAAAABqGpIgtQ4kMk_MBWrPUAFqVnYywAAAAABquYVgtQ4kMk_MBWrPUAFqVnYywAAAAABro5C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oYwYA56C57graUtOG96_nA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACOVgImNB_AseUMjfw9acwHDgAAAAAAAAE3LL2AmHorGMGLHFvQ3KWNRAAAAAAAAABye9VBoOb6ap6y2iBqQXec9wAAAAAAAAAa-7qKHNvuu4dQ-NSojX-1nAAAAAAAAAAEQd2u0guBgJM1heDZ97a_eQAAAAAAAAAFm-i3pqvNoPRjOJ3b3sEiiwAAAAAAAAAEs9MntjdT5XiNr-rHeRcTvQAAAAAAAAAYas9xuB4p9CGD_lnalV79jwAAAAAAAAAlfTAss9wSqMPQUI2HD05f3wAAAAAAAAAzHyraq5uNnLhexcfH6jeoJQAAAAAAAAAXAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MlT_4DHKrs5Ys4kSTL31fA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAGvN0nOeOJdjggSFx_cpb47egAAAAAAAAAV4vwWTuaA5W0Uq7WSODTSAQAAAAAAAAB8mm7pA8Vo6frfLprU_GjPaQAAAAAAAACREbDp5Ji3y8uTKzXL0h4-JQAAAAAAAAB8dJZnxxfSj1TBzD3FyyfeDQAAAAAAAAAOArz1MMWCC2fkAl6FCL43rAAAAAAAAACL8OiJZHURIK_gi5RsAiMk3QAAAAAAAADGQYlZyOUPnWBrleZpFunFJQAAAAAAAABmz5D_DdgznhB9oZLSnaY7swAAAAAAAACa", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "It7LZ_q9NvTlZJoCJvT4UA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmN6", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9f_l81ae-1ee1EVm4QM8Pw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFc0U", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qBgjikC2bNo6FIg5CEWcww"}} -{"Stacktrace": {"frame": {"ids": "R_3RsDYccfUxjNYYah3JZgAAAAAAEhYe-IlGUwajicqSE5-hS5VYigAAAAAAAHbaSZxl-YF9wOaedogsBMtvRAAAAAAAGQAGSZxl-YF9wOaedogsBMtvRAAAAAAAGQBRSZxl-YF9wOaedogsBMtvRAAAAAAAD9N_SZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAADz6pSZxl-YF9wOaedogsBMtvRAAAAAAAFM32SZxl-YF9wOaedogsBMtvRAAAAAAADXj0", "types": "JgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Os-4RhVkjeRwXnMgi8sCPw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ06", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Cdup7ftqfVJjPGHBzmFw9A"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHpmIz5k14PsCcDvFyUC1kmlV3QAAAAABHpdEz5k14PsCcDvFyUC1kmlV3QAAAAABG5jvz5k14PsCcDvFyUC1kmlV3QAAAAABG_e9z5k14PsCcDvFyUC1kmlV3QAAAAABHCkw", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sJC4CV2eRcloTSQEGQH29Q"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBbBcEvvhuguaGYCmGWrnWRz1QAAAAACOHLRcEvvhuguaGYCmGWrnWRz1QAAAAACFObNcEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEWNj", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Jrwbv8YUisyxPyCibkR_Xg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHX31XT4fd_WKeR1cE-hlLelCQAAAAAACoA6yXT4fd_WKeR1cE-hlLelCQAAAAAACkAF4XT4fd_WKeR1cE-hlLelCQAAAAAACkGeo", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mY-rd4h7J7uWaPfvMpVGGw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEUiJ", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nn_ySIHBlBRC_S__9EYUQw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAAJiAC6sIDdQuWlno6mhwaFiZwAAAAAAAADP4U_zL7awL15Zhtkek0gtnAAAAAAAAAAMMjtyswsr5RSXvAnPmILipAAAAAAAAAAPv7GKAWxeXNZbjk8Dw8GzZgAAAAAAAAAA", "types": "CAOyBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wUfvGFMhsPYCiR2iraE6yA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZwA", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "G2W434choOPZkVODgIFHPg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ0_", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GjKr7NR_B5mtmlpw2-1M7w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87XSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa83g", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ed2Wt5gOq97H8-8youFpYA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAnEGqyFI4UBcYw0uODaUlP_QAAAAAAAAAEo7sR_pIbiVV_Z8TfMWbBfAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALOKXE0TsqEsNxLqr0g-oK6QAAAAAAAAABx3cFmRipcZyDdJFPRQEWSwAAAAAAAAAQrMNYV5KroKXsOMeuZv5hxgAAAAAAAAAATaNUUQ8ZfJlbsPC7iaqLvwAAAAAAAABv4tQB4iVnNlUP_drXIryOCAAAAAAAAAACaErKLCqrgChwG7C_tbQ7iAAAAAAAAAAwWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYv0o-SuFa6Ydo5LzhQb4MjgAAAAAAAAAGkS74ucMYVsOCEN6lWzqZlwAAAAAAAAANvZ-qWjmc4LgtEP8_bg3ddgAAAAAAAAAg6dOf_roibFbI4CWjV9e8PwAAAAAAAACRv7NZn75ARbCs3HYY9Fl9agAAAAAAAAAIaTntpUYXQHYLwEr9g5SFgAAAAAAAAAAIfhpDQNd5UmqqnR1Mw5dfLAAAAAAAAAACvcmbteT9Zn8Dn3HK9hT_jwAAAAAAAAAaJ6u6Y179J4dS1eDE4nIEEwAAAAAAAABAoBLCWsbzuuTLoV95VXOSiwAAAAAAAAAG3h3xcA1CjbBUsMTV4AM4_QAAAAAAAAAH8RS1Nly7R5USaUVxZKBsKQAAAAAAAAAB-Y56DW_ZsCkojgmcTnRH0AAAAAAAAAAFDg9EjRff17PWRNomsbjntQAAAAAAAAALTlm2yos2yNMmUywsA990NAAAAAAAAARrEl8e1KDnRSx78JGf4h_r2gAAAAAAAAD0P85-ZHhT2OrY2C13tzUCcgAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAkHU6ZSkKN3zNxr0HYuO2pqe5hQAAAAAA2SbwZSkKN3zNxr0HYuO2pqe5hQAAAAAA2SMD", "types": "CAMkBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pixjUDno8EQPnhCn1ap_SQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOpxFz17lb-voh9uZicvdXWAAAAAAAAAAdAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1OSkSfHh0FyowliERICfKQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHSa5XT4fd_WKeR1cE-hlLelCQAAAAAACzCeJXT4fd_WKeR1cE-hlLelCQAAAAAACzCe1XT4fd_WKeR1cE-hlLelCQAAAAAACgaWJXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdHD", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XifASgxXQbagp8rNDbQOHw"}} -{"Stacktrace": {"frame": {"ids": "NH411-U9ZJbhx9KntPIOtAAAAAABZLFA", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "slEp0H_n8NXap1EwAwcqUw"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABg1Usz5k14PsCcDvFyUC1kmlV3QAAAAACFH_-z5k14PsCcDvFyUC1kmlV3QAAAAABhZDXz5k14PsCcDvFyUC1kmlV3QAAAAABmR0Xz5k14PsCcDvFyUC1kmlV3QAAAAABmPA6z5k14PsCcDvFyUC1kmlV3QAAAAABmPTlz5k14PsCcDvFyUC1kmlV3QAAAAACECjuz5k14PsCcDvFyUC1kmlV3QAAAAABS81oz5k14PsCcDvFyUC1kmlV3QAAAAABS9cUz5k14PsCcDvFyUC1kmlV3QAAAAABMXvHz5k14PsCcDvFyUC1kmlV3QAAAAAB8PfMz5k14PsCcDvFyUC1kmlV3QAAAAAB8Tshz5k14PsCcDvFyUC1kmlV3QAAAAAB8WMdz5k14PsCcDvFyUC1kmlV3QAAAAAB8WrQz5k14PsCcDvFyUC1kmlV3QAAAAAB8ZI7", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iweYdmdhgZ2TexEvbTHmRg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5WiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbXAL0Ge_HcVwkBrUXRRiLwAAAAAAAAAHfyGIqAgDCWT0HWMDhvlu5QAAAAAAAACVrg_W9Iz5X4vBEiSyGYl41QAAAAAAAABeOVbzts78rozw73k3kwZElwAAAAAAAAAJJnSEm3EzEl71vBewWd-MegAAAAAAAAALh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABq3Tjfka8pNswMm1Yg7BN5wAAAAAAAAAQ5mPZ7hP04mAof7_xhihCAwAAAAAAAABV5utt2dQ8HKrTepHdNpprxQAAAAAAAADL6XNnO9SeJ40ZM7baZ84oEgAAAAAAAABVLll_E1k3FfR43EQBXwU1dgAAAAAAAAAIrywk-6b8WKiuckZ62dxSSwAAAAAAAAAHiX3hg20o3ZB-dQ1wA5bFxgAAAAAAAAAEomA88yQfT91566xoyEY7sAAAAAAAAAAcrrWuYAakx0mSDLYXP-NBMgAAAAAAAAABK-xWzbOpXq--Qycbjj-mDwAAAAAAAAA3L1OydAndq8IT7nNSF3yNbAAAAAAAAAAkewU9RfzsPed7JATT94aw-wAAAAAAAAApfZ3COijH60wdDIIVUpSInQAAAAAAAAAIx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAChAAnABuJtrWflPvotxCoPjQAAAAAAAAFDgM-zvldT2mxZOhlxJvpRXwAAAAAAAAAXc0OkgT3_p45M6FsCvH3WnQAAAAAAAAAV9BsFwV8tobvksYfuNpORcQAAAAAAAABd40ES46dU7pwVTIhZzOkjPwAAAAAAAABV_bWrQJSE9QDRqMSbes6HHAAAAAAAAACK1WwaSXc6MUqSl16CLws0XwAAAAAAAADZ6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAACVjcbdnnQUMfgz1UYqKyDaQAAAAAAAAABmSJ6fSPuHzsY_PJcgbXOQAAAAAAAAACXAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAM8BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "81I56QjbyDYSIFcetHM2Dg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACfZYJrmLEjznzm7GSiXKeulgAAAAAAAAAMjH-Kh7eMoVAEa99gkdQ-YQAAAAAAAAAWvtOmTuUGvKYiQRK_O9kHuwAAAAAAAAGJfbT9eHA5tj6rUvxqpnewLAAAAAAAAAEHxz8R4MTaPzD1CrgkfDi_QwAAAAAAAACD4U_zL7awL15Zhtkek0gtnAAAAAAAAAAMMjtyswsr5RSXvAnPmILipAAAAAAAAAAPs__kQ2m1V3bn-9gwOriqPQAAAAAAAAATv7GKAWxeXNZbjk8Dw8GzZgAAAAAAAAACCYcvl_Frh_HsIh0rws0B8gAAAAAAAAAFXCfwHQ5uwsQ6p8AkMjNIUQAAAAAAAAAF0EB0YrT2CeDq7NY6IvT5QgAAAAAAAAANAsYLPOMVTEJOeDxuyLY7KQAAAAAAAAAUX9lpa9TN84k-aLBSFJ8EgQAAAAAAAAAHMkmisheVP0DaTeF1Tgq6BwAAAAAAAAAVkrGbMu8JHiKkyENUYIKBywAAAAAAAABnhCDtT-9vDXD-e8HuC9915wAAAAAAAAA4GP9DcZgvFsVU-FrimfbKfQAAAAAAAAAJ4X1D0bE8dXWnBHefwzL1KgAAAAAAAACMuC86pFXXnBLCj6eRRljPDwAAAAAAAACENc9gj1rv2NerZVTmjxTx9AAAAAAAAACGnQWGdRxvqVjwlLmQWH1PhwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAHCKeJ7BYIhIN72fM2Cz8k8m9QAAAAAAARhG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "CAMiBQIDAgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "txUH5yrbhq1IXgpWcJMBxw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5WiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAAIdTUQgMidpAG-CxvYJHG_7AAAAAAAAAAA", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "A4PiDpik1xNqn-sMYyun1Q"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAABs6JL9Zb5wYEadxJXUwBTXrgAAAAAAAAAHDHsnAoMYJiyf1W11jJ-_lgAAAAAAAADe2YAyPbGc4xkMfE_oA8gaAQAAAAAAAAAHgf0H1bW6-c25Pb5hOjZg3QAAAAAAAAAmdZMgZbiGsBlv5VLmdKT3TAAAAAAAAAKNYHYMTHTGkZ_iIp8kHq0sngAAAAAAAADBHuXAxzkkHdhfQcvxJ-zR2gAAAAAAAAAa", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jlpJ01FQ_CCdjG0s8LBgOw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8K", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MDX9xkXZ6YV1jVI86ZVY2Q"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAACKf_a_qdoBA55O8a7qgwDK7gAAAAAAAAARuZeXOJajIKqLKk4-05Cj8gAAAAAAAAAIfx2qpzR4SW8k6QF4h_x-lgAAAAAAAAACXWhZGeSVw3QL-gA2NjTItQAAAAAAAAALcrJxfOZekEO297SoXoFNvwAAAAAAAABEz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABbTIqYHzSLJiXVx4krD2dbMgAAAAAAAAABIFHX6oXBjL3Y93SHOMXcKQAAAAAAAAABZXguWb1db5OZ-xUb0e4ZqQAAAAAAAAM2siCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhZsqFV6xhVekP5-uToPI32ragAAAAAAjkGpqFV6xhVekP5-uToPI32ragAAAAAAjj_mqFV6xhVekP5-uToPI32ragAAAAAAZCcU", "types": "CANTBQcD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zrel0O8Eu19Ixn8b1A7RrQ"}} -{"Stacktrace": {"frame": {"ids": "AAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "AQU"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5pUaZNDVlK5DFtb06wgQqQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACXDu5NCmZX6BYluhUNS5CMCAAAAAAAAAAA", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JbxQOwOeVRIDcuzZmln_AQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFbojlkH6U8-uq6rXJn3yJDAAAAAAAAAAEa0W4SIobOysiPgaw1gv_JAAAAAAAAAAQHrXUpqEQk4VDnpaZKgdbiAAAAAAAAAA9U2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAABU3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAABdpgYgXi9p5Lr0nll2Tb2V0AAAAAAAAAAA", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aUWb9UKO7qICsUy_ccfdaQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAHOgepeYBdrKmAGikZZHzjywAAAAAAAAACvIUAbyMW7bf80Va51E6QcQAAAAAAAAAF_I187UwkDjABEvmHmR4uSwAAAAAAAABtf-B_DnWkY3i33A_-cn2DVAAAAAAAAAAa_iCcRlhs7iF8GyQDr_i9yQAAAAAAAADW4LaiotHNGYdIR8tBjAPtZwAAAAAAAABGIlQ1XNLSC8AG8SGKzC1MsQAAAAAAAABNtLATSye44dZj5qP3wd7yWgAAAAAAAACJGRx4elZZ5Xpl6qP-vsIkdgAAAAAAAAAEOGothoSS_VGQxhefQGBOogAAAAAAAAAM3PWYwmr8WKiucw6_bVd_pwAAAAAAAAAHDuXITtzB7JQM2p8eLBRYdgAAAAAAAAAESvEA_niVYaY-OpBNTk8XvAAAAAAAAAAcR50j_Fakx0mSC9-4NdTEsgAAAAAAAAABJBB8Y32Y7T0w9OJCs-3BZwAAAAAAAAA3osL-AROuaDqXe2LFy29GUwAAAAAAAAABnuo_TPMaY49kAwBo7E4YSAAAAAAAAAADpNkwmPEaVAW4yiwUp-qSTQAAAAAAAAAM9qVi_GBt6qKT_kgVvmjrsgAAAAAAAAAJQR0Rwo9WQpPJ5JxFAcpyCgAAAAAAAAAIBSGYbOS21g5XOXq-oh30UwAAAAAAAAAHJE27ij9kev0kcTbJ4XEAFAAAAAAAAAAm5WPbf-FG-SOzFOVzdJD5owAAAAAAAAAGn89kGiBdFucX6T4kdjXe_gAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVCm3FF_uDQeutHnQs3UGjlgAAAAAAAADAwMduPEe0g_53DcRkATCeKAAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAACe6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC80G6zvzFPytbRyfwuXWQcAAAAAAAAAAB", "types": "CANWBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bcgTGw0xa6gEK3NEJ5iH1A"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB878Mz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHpmIz5k14PsCcDvFyUC1kmlV3QAAAAABHpbXz5k14PsCcDvFyUC1kmlV3QAAAAABHeDgz5k14PsCcDvFyUC1kmlV3QAAAAABHdVCz5k14PsCcDvFyUC1kmlV3QAAAAABFwHxz5k14PsCcDvFyUC1kmlV3QAAAAABFxYLz5k14PsCcDvFyUC1kmlV3QAAAAABGnan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuKD6tVKI4mSYDEJ-ABAIpYXcgAAAAAApym-6tVKI4mSYDEJ-ABAIpYXcgAAAAAApymC6tVKI4mSYDEJ-ABAIpYXcgAAAAAApyVc6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD7KK", "types": "DQMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dC5N-uFbcqPYrdPkLxaQXw"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHh-EgtQ4kMk_MBWrPUAFqVnYywAAAAACIsVKgtQ4kMk_MBWrPUAFqVnYywAAAAACIsMZgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG2hA", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6XkFhPi9lM3BiwzJEIoaIA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAAA_hXYxe-SHgukLEpCkawSk1QWAAAAAAABBH9Yxe-SHgukLEpCkawSk1QWAAAAAAABBH9Yxe-SHgukLEpCkawSk1QWAAAAAAABqic", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3Ir6dnl0cXTDA9lqUj6YdA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAHOgepeYBdrKmAGikZZHzjywAAAAAAAAACvIUAbyMW7bf80Va51E6QcQAAAAAAAAAF_I187UwkDjABEvmHmR4uSwAAAAAAAABtf-B_DnWkY3i33A_-cn2DVAAAAAAAAAAa_iCcRlhs7iF8GyQDr_i9yQAAAAAAAADW4LaiotHNGYdIR8tBjAPtZwAAAAAAAABGIlQ1XNLSC8AG8SGKzC1MsQAAAAAAAAAKMFwffZyZJtav25MJBMtHFQAAAAAAAAAEW01rO5NZCc-8AO1JVA9huQAAAAAAAAAIkmuRR9C9QPDwdSynVWZfBAAAAAAAAAAMAOMYFPBB9zjJ7mVVqy3g3QAAAAAAAAAFVvfb_5gZPiPIHF6du6V50AAAAAAAAAAD7Slkc3C9A3eZsO9dv0O2hwAAAAAAAACDAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAM_BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lpK6Grg_nuFwWoAfFimM3g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFJSGf2yEAEhxiBfW1U6B9NgAAAAAAAAAEv-dzrDzLbKAbYGTnBhfr9gAAAAAAAAAM4iaBbZIIwXRBOYMSVscz2wAAAAAAAAADf5pCmW13zl5OWUDLG_ClrwAAAAAAAABNynHqfILVzOOqJs-5yJf4gwAAAAAAAAAeU2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAABU3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAABd9JMKs9KQTgczUAMQRnFzHQAAAAAAAAAY-l0CA__xQUD7yFObowoRZAAAAAAAAAAFmU1sjFC3gdUeQiL-LXu1AAAAAAAAAACg", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fhWOfzRaLRg1Sw58iH7CwQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbsKZ3CKaS4aU08RhYA19y5ITQAAAAADKa-5Z3CKaS4aU08RhYA19y5ITQAAAAADCLGpZ3CKaS4aU08RhYA19y5ITQAAAAAB0Hr7Z3CKaS4aU08RhYA19y5ITQAAAAABz7D8Z3CKaS4aU08RhYA19y5ITQAAAAABz7ZTZ3CKaS4aU08RhYA19y5ITQAAAAAB0J-lZ3CKaS4aU08RhYA19y5ITQAAAAABz_LSZ3CKaS4aU08RhYA19y5ITQAAAAAB0J2gZ3CKaS4aU08RhYA19y5ITQAAAAABz943Z3CKaS4aU08RhYA19y5ITQAAAAAB0J-lZ3CKaS4aU08RhYA19y5ITQAAAAABz_LSZ3CKaS4aU08RhYA19y5ITQAAAAAB0J2gZ3CKaS4aU08RhYA19y5ITQAAAAABz943Z3CKaS4aU08RhYA19y5ITQAAAAAB0J-lZ3CKaS4aU08RhYA19y5ITQAAAAABz_LSZ3CKaS4aU08RhYA19y5ITQAAAAAB0J2gZ3CKaS4aU08RhYA19y5ITQAAAAABz943Z3CKaS4aU08RhYA19y5ITQAAAAAB0J6lZ3CKaS4aU08RhYA19y5ITQAAAAABz-1gZ3CKaS4aU08RhYA19y5ITQAAAAAB0J8lZ3CKaS4aU08RhYA19y5ITQAAAAABz_D3Z3CKaS4aU08RhYA19y5ITQAAAAAB0J-lZ3CKaS4aU08RhYA19y5ITQAAAAABz_LSZ3CKaS4aU08RhYA19y5ITQAAAAAB0J2gZ3CKaS4aU08RhYA19y5ITQAAAAABz943Z3CKaS4aU08RhYA19y5ITQAAAAABz7_1Z3CKaS4aU08RhYA19y5ITQAAAAABwKdDZ3CKaS4aU08RhYA19y5ITQAAAAABwE9oZ3CKaS4aU08RhYA19y5ITQAAAAABv4gJ", "types": "KAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XDv5HwoOhhJwuGtzx9aiqw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABO", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FZB4LrFY55GOwy7SJHFGQQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDe4", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "scKMoVIbbsXT0ePI0cAHEA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--RVXT4fd_WKeR1cE-hlLelCQAAAAAAC-7XmXT4fd_WKeR1cE-hlLelCQAAAAAAC-z7kXT4fd_WKeR1cE-hlLelCQAAAAAAC-1UKXT4fd_WKeR1cE-hlLelCQAAAAAAC-057XT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JRIGBFzel1pbRLTjBi-ZHw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--hXXT4fd_WKeR1cE-hlLelCQAAAAAAC-9YXXT4fd_WKeR1cE-hlLelCQAAAAAAC-i2cXT4fd_WKeR1cE-hlLelCQAAAAAAC-iiEXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "EQMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MGOK31fQ4tvuxuQh2V8_TA"}} -{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAACY8z6tVKI4mSYDEJ-ABAIpYXcgAAAAAACYn16tVKI4mSYDEJ-ABAIpYXcgAAAAAACYgf6tVKI4mSYDEJ-ABAIpYXcgAAAAAACWe06tVKI4mSYDEJ-ABAIpYXcgAAAAAAJbu_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJY-y6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKQhJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ5Qy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ4C76tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ0CJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYK2", "types": "DQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vPkmrOQ6ZSk1I3l40v9b2Q"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAD8uIpQ1uRexMdnpWaro5896wAAAAAAAAALtpYrdrzxLxKEo0lof5nOvwAAAAAAAABTGXqdtKZs0jCPru_AD4bs_AAAAAAAAAJccVCWdIPyBbQitZhcw5plhQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAMKiKQXI5stF5N-InJuXrsjgAAAAAAAAAEL4Zieid3nVkNJbdYJumC3wAAAAAAAAAPMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFTU7DQ3uAw_xM7DAGYMk_cQAAAAAAAAACMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFOa5CkhVOrx2r2YkOsLGOZwAAAAAAAAAeJUqoXh4FCdEByaAYgHthzAAAAAAAAAAKl_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAADUM3h48-oBMi00mRAqhB4IAAAAAAAAAAOZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAWbw-sl7S1P8K3DuBIzaLMzAAAAAAAAAAOLqiOes3kysZtBc8totbsBAAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAM4TqjB_amR59Lv13Nhle_NwbwAAAAAAENV56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb_l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb-c6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjs6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbfA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAROdk6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdbc6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdab6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdV46tVKI4mSYDEJ-ABAIpYXcgAAAAAASg5x6tVKI4mSYDEJ-ABAIpYXcgAAAAAASg1G6tVKI4mSYDEJ-ABAIpYXcgAAAAAASgYf6tVKI4mSYDEJ-ABAIpYXcgAAAAAASSle6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTjJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTEA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMS4s", "types": "CAMvBQIDEQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KlBBeb_BAMwNu68sN8StmQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYr-lBlGU-IcWILqVWjgb-BgAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAH8Tc4heOqvkkU3j8yuc3AAQAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABLvJncLgOnYwpWuDnTLvtywAAAAAAAAAIqJLvg5a2zeGb6EcYZpSyBAAAAAAAAAACB045cMDWxd0Mcqn40XkfOwAAAAAAAACtiBJkiXL4jbMXTevP0sFGowAAAAAAAAB3orI6G4EZluDZPfJ37iPzggAAAAAAAAAX-ZUigVp6H-HqH1lR0smw4gAAAAAAAADmJw6J8qgr1pYHKUa0xZ1MdwAAAAAAAABZlZTvs585vMzXjn3UHln0NQAAAAAAAAGiLMhs_MdxnqcQW9tN9tUCJAAAAAAAAADeXjyaLTQPNDwnxeTIUaoLqAAAAAAAAAA9LZh34Qe9WZt7ydt6m_9sHgAAAAAAAAAxUX0maaM_jFdAmFMbhLpaSgAAAAAAAAANVydXcSmOqICsVxLpiPFyCAAAAAAAAAAhxWXbvqcob2cyNB-_TJKbYQAAAAAAAABZBvE20tx_aKDX9k1QBsUKsgAAAAAAAABAbRe-bTXmo-KMTRcTpmBm1QAAAAAAAAFsh_tr59QMOW6dTHM5L4xLDAAAAAAAAAGTxECaySoRVFo6IJeFd4k5qQAAAAAAAACJFwuyP0Ci_HZ2VTm-IYuHdgAAAAAAAAAF", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NNgMPk_Aq5xW7b1t7OKA5A"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAAAnXK-bXPz5NoBIbF2mbBOD9AAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAA", "types": "CAM_BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "I9TiskxOBE6uewdlBEfbaQ"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV_OYxe-SHgukLEpCkawSk1QWAAAAAABXc-2Yxe-SHgukLEpCkawSk1QWAAAAAAAAIaq", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JKuwq_wY-m6F_YLLdvsE3A"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAc", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HKZFXtQtwmpkJ4zu4auFBQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-v5K", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pczYn9bA4SlIUvF6oLM4Gg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlq76tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlaB6tVKI4mSYDEJ-ABAIpYXcgAAAAAApawn", "types": "FAMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Vk0sA1reerzoGdA4p7qrWg"}} -{"Stacktrace": {"frame": {"ids": "tQgAmBJBgPLrkikSPRsmtgAAAAAAAK-dtQgAmBJBgPLrkikSPRsmtgAAAAAAAOXq", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oaHIiYNNlfu1QZtM8GPcUA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAGvN0nOeOJdjggSFx_cpb47egAAAAAAAAAV4vwWTuaA5W0Uq7WSODTSAQAAAAAAAAB8mm7pA8Vo6frfLprU_GjPaQAAAAAAAACREbDp5Ji3y8uTKzXL0h4-JQAAAAAAAABhRJXjPkp22gaQo9vwY-85JAAAAAAAAAB1DLrWTvtAPDh4Uv4u2shragAAAAAAAAAcAAAAAAAAV4sAAAAAAAAAHYXuSio4gqgnsTGLCNH21piOrMPoln5uBQAAAAAA0IqysTGLCNH21piOrMPoln5uBQAAAAAA8TcnsTGLCNH21piOrMPoln5uBQAAAAAAuW6PsTGLCNH21piOrMPoln5uBQAAAAAAuWDYpp6LgRqCGeGjs7cnnwItcAAAAAAAFgpR", "types": "CAMPBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "an9gjQnke-IYWAGoKUs5KQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7RXT4fd_WKeR1cE-hlLelCQAAAAAAC-pGEXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FwMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8QWlvovygGFcfE-e_CiKgg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACl", "types": "CAOBBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rAVnotLNqZZX90k5rHuXLQ"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAADz6p2HVF-fC6bGu1PSwJc2kzOgAAAAAACHAL2HVF-fC6bGu1PSwJc2kzOgAAAAAAHHBe2HVF-fC6bGu1PSwJc2kzOgAAAAAAHEJ82HVF-fC6bGu1PSwJc2kzOgAAAAAAHEFt2HVF-fC6bGu1PSwJc2kzOgAAAAAAHILc2HVF-fC6bGu1PSwJc2kzOgAAAAAAHICy2HVF-fC6bGu1PSwJc2kzOgAAAAAAHBg1R_3RsDYccfUxjNYYah3JZgAAAAAABCWFR_3RsDYccfUxjNYYah3JZgAAAAAABCFNR_3RsDYccfUxjNYYah3JZgAAAAAABCFNR_3RsDYccfUxjNYYah3JZgAAAAAABCFfR_3RsDYccfUxjNYYah3JZgAAAAAABCFfR_3RsDYccfUxjNYYah3JZgAAAAAABCFfR_3RsDYccfUxjNYYah3JZgAAAAAABCHhR_3RsDYccfUxjNYYah3JZgAAAAAAGKrN", "types": "VQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "no86XANJmCvhh479J_f39Q"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDLZcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETeKcEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEVyz", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BOn5YfVXLbYJVzgO0D8UNg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAHX_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAA", "types": "CAOFBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JOxaiAnBjaW3GYfe6qy1IQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA8Q1rqFV6xhVekP5-uToPI32ragAAAAAA8QfAqFV6xhVekP5-uToPI32ragAAAAAA0VStqFV6xhVekP5-uToPI32ragAAAAAA0UfqqFV6xhVekP5-uToPI32ragAAAAAA0XMyqFV6xhVekP5-uToPI32ragAAAAAA6YnHqFV6xhVekP5-uToPI32ragAAAAAA6R__", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YDo1NT9KzNVeSq1G9W3WWw"}} -{"Stacktrace": {"frame": {"ids": "SHpn8pwAHiX47J0IzMtXvwAAAAAAAn5k3aS07d9PG4lc4UzuBbVWzQAAAAAAAiVUSHpn8pwAHiX47J0IzMtXvwAAAAAAAmibSHpn8pwAHiX47J0IzMtXvwAAAAAAE8PJSHpn8pwAHiX47J0IzMtXvwAAAAAAE789SHpn8pwAHiX47J0IzMtXvwAAAAAAFznbSHpn8pwAHiX47J0IzMtXvwAAAAAAFzFySHpn8pwAHiX47J0IzMtXvwAAAAAAEsAqSHpn8pwAHiX47J0IzMtXvwAAAAAACetdSHpn8pwAHiX47J0IzMtXvwAAAAAACbWJSHpn8pwAHiX47J0IzMtXvwAAAAAAA1xQSHpn8pwAHiX47J0IzMtXvwAAAAAAA1iANvEDT4zSZcnoSuXBl2lV4gAAAAAABGIkKBED7d_qPYnnB4dZrQQHsAAAAAAABwWaKBED7d_qPYnnB4dZrQQHsAAAAAAABvs_SHpn8pwAHiX47J0IzMtXvwAAAAAAAsUO", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FPsM-hxiPAxa6Tn5oevNoQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAAAaI0QtQ3x5Qtt-qibQRB-qEAAAAAAAAACTOM9gozgq3V-c4gPwstZkSQAAAAAAAAABF0PU7bQ8aSr5vRj-z9gSNQAAAAAAAAAy7Y1w3rnAlb8IgzViwUdGygAAAAAAAAAh2V38fgKb92YKVRfK0ZK-OgAAAAAAAABn", "types": "CAMJBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "it1M7ufrxHsYyi2peFanww"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABZ", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DXgAgM2hMcqzn0fnoAoP0Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAE_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYcJ5VgsZvSbEBF2_k2qcfnAAAAAAAAAALML0pN8-bI2jezXitVRzNNgAAAAAAAAAe3APbfJs5SvbH_F9r5lo_3wAAAAAAAAAFfnFonGQxpm_e6wtqJ2HwRwAAAAAAAAAEYM_gl0OeNbTAtY8GRC8UVgAAAAAAAACbTdvyEkBALxwDoycOnD-RjgAAAAAAAABkYM_gl0OeNbTAtY8GRC8UVgAAAAAAAAAeOWoia3OO91L6Q6k2Ypn2XgAAAAAAAAAqRq9zkaF6sUD5FfpUB-KQEwAAAAAAAAAJyGP4qHVV9gP7oOP9pntYfAAAAAAAAACIn89kGiBdFucX6T4kdjXe_gAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVCm3FF_uDQeutHnQs3UGjlgAAAAAAAAC1tBGZzB5ZNClfuCqDA5LS5gAAAAAAAAAGFw4N_DGYxmWJY3G6VlrCLwAAAAAAAAAGfHicjb8IhyJmUDNrJFOj6AAAAAAAAAAZwMduPEe0g_53DcRkATCeKAAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAADdf_rIvCQMW5oayMPHCj4aUgAAAAAAAAAA", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "H6SfMk8pl8KEOh7Msy9oRg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8xW", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2RyPkubYvOhcCvhjZgdRTQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB87nEz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHphgz5k14PsCcDvFyUC1kmlV3QAAAAABG-csz5k14PsCcDvFyUC1kmlV3QAAAAABHCmq", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lhxBmjNk6lw5l8hDy9uvfg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiGKmXT4fd_WKeR1cE-hlLelCQAAAAAACiGQFXT4fd_WKeR1cE-hlLelCQAAAAAACiKCvXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEMf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD7I6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC-586tVKI4mSYDEJ-ABAIpYXcgAAAAAALX096tVKI4mSYDEJ-ABAIpYXcgAAAAAALXvR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEf-_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEf7L", "types": "FAMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "s_LM4tNvgy4k7bBRfDcNqA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR4U", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9UOoQ2kKxEY1n0AS8biVEg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmrvXT4fd_WKeR1cE-hlLelCQAAAAAACgbuK", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ty1oaaASyN0P9ADJQRlYBw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgK7", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Z7bOHlSkibuBBI3Vf-N5_w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAV2c9TATIrCMgoDoZOxrWO6gAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJuxWu7bOCGuvy3Ir42torwwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAak0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB0qRvG2N9iYeFyl-3xULRJEgAAAAAAAAAe1xeqGUZm5RNvukFb2REJKQAAAAAAAAAIFtjh-A3lytsNmmUroc108AAAAAAAAAACuimFkk5UuxbH1IL630LmngAAAAAAAAAbVPtMofZCgqrw-l9pGX7aHgAAAAAAAAADRSgrZm24iCMR6dfllqWutAAAAAAAAAAaK_N78LhUkthI1fnHsP1_6gAAAAAAAACbNBXbNoKXlpq4Av5OjCjqUgAAAAAAAABz", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JZACgiJEVY_n0sywfrDQWA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAE-PQUN_pyhlD9sImALYeWawAAAAAAAAAIu8snKZkB2oBs9KSPImw4twAAAAAAAAAGnpTdx_CQ1T4tQiYqxJjBqgAAAAAAAAABYy3Agye5NCtIdg4CP1bBiQAAAAAAAAAA", "types": "CAMpBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "u4n3YuffBdoPIiHaB1UC0w"}} -{"Stacktrace": {"frame": {"ids": "2iSc_7W6mQyfzHA8XRDUrwAAAAAAM1Wg2iSc_7W6mQyfzHA8XRDUrwAAAAAAdki_2iSc_7W6mQyfzHA8XRDUrwAAAAAAdkav2iSc_7W6mQyfzHA8XRDUrwAAAAAALoaQ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "haUW2KmBYJrtqWFKN3ox5g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAWZvnSEZ6hxckmxa-z2abTjwAAAAAAAAABPzgNbb9CcFUQqKGC4zwW-wAAAAAAAAADadP6bWu7ULef518P5KHVHgAAAAAAAAAD8S_Sv-2Ysy5dt1ARF624ywAAAAAAAACo", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lxizPGq-ZlOtsos_BMUvJw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAC3Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAABWdZbEvj5KNLRaqtv4ShlGOgAAAAAAAAAHAvY-8GTrHONLnLoYn_aUmwAAAAAAAAAl9iPPrg1Y9vtWhMk7mXQ_KgAAAAAAAAAeuJZrofYGiqBpYJJdGGtLHQAAAAAAAAADzGZ_gCn-Ge9oHmah2m0JWwAAAAAAAAAD2p4Dyo36Ea--rGgiVt2H5QAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhTEqFV6xhVekP5-uToPI32ragAAAAAAe4yGqFV6xhVekP5-uToPI32ragAAAAAAZgEXqFV6xhVekP5-uToPI32ragAAAAAAwhNL", "types": "CANMBQcD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ezB3Rrr_knGYPkl_kYdRNQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFzEXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUTFXT4fd_WKeR1cE-hlLelCQAAAAAAChz7g", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RM52I8qJK_HFvsZhTonctg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXUptYxe-SHgukLEpCkawSk1QWAAAAAABXVjkYxe-SHgukLEpCkawSk1QWAAAAAABXVBsYxe-SHgukLEpCkawSk1QWAAAAAABXZL0Yxe-SHgukLEpCkawSk1QWAAAAAABV3AkYxe-SHgukLEpCkawSk1QWAAAAAABV1uZYxe-SHgukLEpCkawSk1QWAAAAAABV59PYxe-SHgukLEpCkawSk1QWAAAAAAAFzcMYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaO", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "B9mdhsnY5y_-MapRECAsRg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACuCx5RC8g9OTz7PgiGSeLtvwAAAAAAAAAOgY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAFyZ0m5K0hyRADeQkG90vP8AAAAAAAAAAzgOHDhO4HhDjaNNSk-ZSJ4wAAAAAAAAAJc_22Mbyt4HEFc1XP6wRkMwAAAAAAAAACJPIp3Ldr9CKvPQbh-s8AhAAAAAAAAAAJwtaNWPsMpfzeSCJEHw1degAAAAAAAAC6082hmHaVcsUtei0Hc5kRVQAAAAAAAABR_KqTDruiyV4c3OEtyANHTAAAAAAAAAAOd7mGKLotsZOhr3BShS80ZQAAAAAAAAAVJzl0rnZ8WwwkD280lWXtQwAAAAAAAABhtLN6FRqCApmsduxj5WK9JwAAAAAAAADCjo5ATqNcCI9y4RcmNa_57gAAAAAAAAAFN8m8CePk-4OpwRMFdL5meQAAAAAAAACqcH5e-m7C0kdpVcIwQVOfDgAAAAAAAAAFbdcjH1IduvC01JhGXDULzgAAAAAAAAAEs1rBQ7BuxkQsXZem_2risAAAAAAAAAAA", "types": "CAOMBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Y5wRxzE9W7SQh2wOeWm08A"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACkpZFZt3AmSRe8cuNGaxoM2QAAAAAAAAAKVuG2U7rTYEwKN7F7WV-I-QAAAAAAAAGZIfZRnPhrdzvTisUcmvGcBgAAAAAAAAAV", "types": "CAM_BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5BZrfAQrKtaiW6I35J5iBA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAC3Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAABWdZbEvj5KNLRaqtv4ShlGOgAAAAAAAAAHAvY-8GTrHONLnLoYn_aUmwAAAAAAAAAl9iPPrg1Y9vtWhMk7mXQ_KgAAAAAAAAAeuJZrofYGiqBpYJJdGGtLHQAAAAAAAAADzGZ_gCn-Ge9oHmah2m0JWwAAAAAAAAAD2p4Dyo36Ea--rGgiVt2H5QAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhVG", "types": "CANOBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pp5lsGmp-JSx0DYM6KPKrg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB874Lz5k14PsCcDvFyUC1kmlV3QAAAAAB88Vlz5k14PsCcDvFyUC1kmlV3QAAAAABH-kwz5k14PsCcDvFyUC1kmlV3QAAAAABGLz7", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IDJuAvr20i1MdkeJctVLcg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAATo2Vqo1n4TLgDJq9tPgwAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARxBGCEPBdnG6Mds1nJf4tcQAAAAAAAAAGzXf1O_8jknZjcKGu5cQjJQAAAAAAAAAgPHkw6KCW6WHcDhD0gWZvxQAAAAAAAAAXqjkbzJCs46utKAIQU_ZjYgAAAAAAAADmaG38C7AQR-wEDFFefkRnfgAAAAAAAAAsdawGhH-93Zf3Xci2M9UlFQAAAAAAAAAMPhHweSUk-rcHLCvi4mySwgAAAAAAAAEsryiaiFPVyjm4XARK10gZ3QAAAAAAAAELu4IYC5TN1ydgkWzSPfggOAAAAAAAAABSTOT6Kzt9cNfqtt7rfwzzSwAAAAAAAAAElu3U19P1ddOrJLDu-spLOgAAAAAAAAAHSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAiHAV7Zh5H5JQPHONsGvZ0PAAAAAAAAABXWb65uaTCBYe2MCZtuMHkqAAAAAAAAAAWdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFyOUU-MIrBJXHRczrclIQpAAAAAAAAAAIZLVm2Yq3JzpECVJuRqNdawAAAAAAAAAQrs-7smSxpcCpQ4EcnQyDfwAAAAAAAAAdgkppypvMO9S8VR3D3H8lzgAAAAAAAABEdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFwn4niB8FwIlhJ5LBYr9JzQAAAAAAAAAIZ8eDanRMy6l7sesw4dYkqQAAAAAAAACzkTJVCBjDfmFAPRrGLStltQAAAAAAAACPPyY6qsH4ByVjV1tK07pF9AAAAAAAAAAIm2-tH33cq1FP2Q7Is62J0gAAAAAAAAAC-uK72e9VYGmyoGlh8BBvZwAAAAAAAAAIQ1b7jdbtxavHFLXq_nCrrgAAAAAAAACKpxHkQ9M1dNDXsuZ3PuZiaQAAAAAAAACHHHYed7pYCVK68jLMEjdhPAAAAAAAAAAYyXWFMIbkwU7jqv0ggmjvVAAAAAAAAABHVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAApOzkHkS17HRu8c3H4oJbrdwAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFmKVsnuGyVSIshrQFdthLlAAAAAAAAAAU0cZiHBBWN2vYtEyCZ5X5wgAAAAAAAAA3pzTcRcencDxd0mEO6HA0bAAAAAAAAAAFdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFMwojP6II8_EGiMNSmdsFxAAAAAAAAAAQLrT96WuiUXgKg4BgtAP98wAAAAAAAAA_dswq7UFB-c5kE0TfryCD4gAAAAAAAAAF3KtHAXnUn2qKToxsxyFz6wAAAAAAAAActLWCyKrEBYGzX2N5W13-8QAAAAAAAACnHs84X9WR2gx5bBItVVyJWAAAAAAAAAB4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFO4XFBmuHlVXJh4TIk5LCDAAAAAAAAAAMn-IlVo5-jcMpxFIQmT8ZXQAAAAAAAAADXNiEFVfexcwhuzJE2wFqSQAAAAAAAACouB_3Gzwjvj1RjZpSgTL9mwAAAAAAAABHcemtT_LtuQxWV7j18_T0KgAAAAAAAABEb2XRkTRSoWuyX3U4lJkMnAAAAAAAAAAIYldLdAhiU1Ikhg1VTxvqJwAAAAAAAAAVdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFh36HgL3bbvDsQtV-NCGi2AAAAAAAAAAYa1rORv6uw2uAWC1se05SoQAAAAAAAAA7ReecyGgWWJgzc543tXNeIAAAAAAAAAAlskGfd5BDAMA1fbyY3ykq7wAAAAAAAAApdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFv6Sj_mGjd4gUb1oQRdr9zQAAAAAAAAAMBFzsvc2FJJqJ7MOfSIYcgwAAAAAAAAALdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbw7Et1OruEgeiOGCngYuPwAAAAAAAAAYSVYBVG1fCfTODpNzLfPxlQAAAAAAAAAi0YsnzQnMKXvFIy6EpgfjkAAAAAAAAACzfCWPdfu_RIOGbkcM4xycpQAAAAAAAAAQ7OmS9SwYpCYbOPw4YxA-2QAAAAAAAAAcE2NlszEGRXNxKeW09blqBAAAAAAAAAANwzZaceuyvwDXeTAM8IhEDwAAAAAAAAA0Yu_6L4HRShupVCJ8N-cmXQAAAAAAAAAH9PmXvHucczCVlI0S70oJBQAAAAAAAAA3tiJNC5TRsJ2Po6yB9hj7ugAAAAAAAABGyanW-NWn1yU-ZmISz8_K-wAAAAAAAAAms2LTirMvOXiDsBun6I-UyQAAAAAAAACfb_ElB1I-v_CyZZ9WkymqkQAAAAAAAAB0isA5sAubGPm1mkHKsussQgAAAAAAAAAQSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFC2dSzxTtRtkEi44A6zm19wAAAAAAAAAg3ir-1yKStl3nukZF4xyXAQAAAAAAAABAC-NMw9vE7-rFK10EWQYO_wAAAAAAAAAho8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAFNqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFia3K2jrNmbrn13w8cuQ30QAAAAAAAAAcgtX88AmaTOI_01lUU2TraAAAAAAAAAAo1J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJ106B1iulZ9qNy42ENkYaCwAAAAAAAAAkfiNry6aywxk33PR7ZSinSAAAAAAAAAAZyanW-NWn1yU-ZmISz8_K-wAAAAAAAAAmbZRwWM7SmFPsrzq-cg210QAAAAAAAAASyanW-NWn1yU-ZmISz8_K-wAAAAAAAABDbsQjgCW9UjBRbj0X9EX2MgAAAAAAAAAHEmp83XV0ORPGC9VjSudbcAAAAAAAAAAKyse1ZG7dtWZV3NYY2Q_B9AAAAAAAAABMdn1QdHTtENizBvfQq0rJpgAAAAAAAAAEiTk3U2-62NFOFRUZ1dKBrwAAAAAAAABtdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF-ILcQEUVPt-h8tsq1UB2sAAAAAAAAAAYqv94DrtQsXldqyi1u95XpQAAAAAAAABz25iHP2_EzWmqN7aoEEouTQAAAAAAAAAfD31e08MRiulVFEesC2oTTQAAAAAAAABeS6pxO_hq-Fbi17BT1HtIiAAAAAAAAAASENOom58sisHBM_5bqD06xgAAAAAAAAAvpR4MC0BxsLTXAJeNLn7p9QAAAAAAAAByKQLbwVQkKDdGennGDte8qAAAAAAAAACzrRpenI7GD9Sw_c3K81rvVQAAAAAAAAEg4oDbmTWkgq5vmj9DqDhsSgAAAAAAAACmzTmlqGcldzHyZLUOVZks5AAAAAAAAAAK1S9eFAopKcZX-VnW9ChdWAAAAAAAAAADw_8HYglWw-0jqUUlUeMgagAAAAAAAAAL", "types": "CAP_BRsF"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Mxeu9v4mR_RhYkEQA098gg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACXVSALBRPvgHpUWKmpUo1khAAAAAAAAAAEAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAO-BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HTwNGIG-KZHMdnRtNZB5Xg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgJxz5k14PsCcDvFyUC1kmlV3QAAAAABFk6jz5k14PsCcDvFyUC1kmlV3QAAAAABFjYEz5k14PsCcDvFyUC1kmlV3QAAAAABGgQQz5k14PsCcDvFyUC1kmlV3QAAAAABF400z5k14PsCcDvFyUC1kmlV3QAAAAABFkdD", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wlrbhXKEUrmfjLJYUMrELQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAAGvK28e_VmRLgv1j2R51m9VawAAAAAAAAAFtazfCeoJf0Do6sHz60FXRwAAAAAAAAACEV2z03IGmRdabl9lhu9L2gAAAAAAAAAL4OJ0q7lEBruOrjBuZKiAaQAAAAAAAAAUE6ANAua91VJJE640-7WdqAAAAAAAAAAhYGmNZ8E6uBNr-BxhHT7jPQAAAAAAAABPYTbqMp6p_Zd87b4Y9hNE0AAAAAAAAAAIqv1D_nQ6KTBrcV7EL71OswAAAAAAAADWyCobMKYVK6NH4e8Xyl9V-gAAAAAAAAC2449MNg-Y_ftqVzjxrtZ_gwAAAAAAAAANeIKZHUnkOnlIeLcFKA7B_wAAAAAAAACEm_fovQn4AGOMspslPI_8iQAAAAAAAAAXUepoRzuMTBR-jFpLlu_fPgAAAAAAAAA3DVSkUfLwOzQuwgYi6TvurAAAAAAAAAAdBvLbND_0DrAH3Z_KTjqNwwAAAAAAAAAIzdNMqH5FJokP-kpdb9WNRQAAAAAAAAAJYMf1vN4Xj82X8azesbKqWQAAAAAAAAA4pBwMyfP27SnM1s9Uubm7KQAAAAAAAAAA", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "66C1_zZgLoWX2sy4ZYxW1w"}} -{"Stacktrace": {"frame": {"ids": "EM1xxPB-70RIIw82DzybBgAAAAAAAL7ZUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGEM1xxPB-70RIIw82DzybBgAAAAAAALgNam-Z0RfUVY0oYK5VXRDk9wAAAAAABe36am-Z0RfUVY0oYK5VXRDk9wAAAAAABeu4am-Z0RfUVY0oYK5VXRDk9wAAAAAABeopam-Z0RfUVY0oYK5VXRDk9wAAAAAABeePEM1xxPB-70RIIw82DzybBgAAAAAAA0x6EM1xxPB-70RIIw82DzybBgAAAAAAAiyDEM1xxPB-70RIIw82DzybBgAAAAAAAiFLEM1xxPB-70RIIw82DzybBgAAAAAAAhyaEM1xxPB-70RIIw82DzybBgAAAAAAAeapEM1xxPB-70RIIw82DzybBgAAAAAAAsbPEM1xxPB-70RIIw82DzybBgAAAAAAAsD1EM1xxPB-70RIIw82DzybBgAAAAAAAZY8EM1xxPB-70RIIw82DzybBgAAAAAAA9BbUJmIMEc6K8gJ39NHYaD0WwAAAAAAEiqU", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_v5AZnkwJNNAFHCBYTKsLQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB6V", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-j0lF4sF4jza_a1DeuTz0A"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjD5cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLl-ZcEvvhuguaGYCmGWrnWRz1QAAAAACHhtbcEvvhuguaGYCmGWrnWRz1QAAAAACFpPEcEvvhuguaGYCmGWrnWRz1QAAAAACEPATcEvvhuguaGYCmGWrnWRz1QAAAAACEQGkcEvvhuguaGYCmGWrnWRz1QAAAAACEQXK", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cELS3s9xDUsfqdE_Tc5Ajw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB7rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa6y4SNDzWiYDmLZi_Z1ZVETLoAAAAAAAvCgLogCgWMgT5mMAMhpNA0IMiQAAAAAAD02H", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "n0VugIogSoCuJazNruqmpA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAGvN0nOeOJdjggSFx_cpb47egAAAAAAAAAV4vwWTuaA5W0Uq7WSODTSAQAAAAAAAAB8mm7pA8Vo6frfLprU_GjPaQAAAAAAAACREbDp5Ji3y8uTKzXL0h4-JQAAAAAAAAB8dJZnxxfSj1TBzD3FyyfeDQAAAAAAAAAOArz1MMWCC2fkAl6FCL43rAAAAAAAAABQAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wZyq92-n1mREdjg_zgtpMQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP6X", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "10lGPWMVE-wMY3Dd5VnXkw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWIIXT4fd_WKeR1cE-hlLelCQAAAAAACqVVkXT4fd_WKeR1cE-hlLelCQAAAAAACqVcj", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Mf-R-1299D4bJft-Ookh1w"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmsRXT4fd_WKeR1cE-hlLelCQAAAAAACgnCe", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Lq2lfj5xkTFOSbFr4_BQ2Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACguWEXT4fd_WKeR1cE-hlLelCQAAAAAACguvP", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nUFT-4VjV49edA4VHVD06g"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvU6cEvvhuguaGYCmGWrnWRz1QAAAAACLroTcEvvhuguaGYCmGWrnWRz1QAAAAACLsWTcEvvhuguaGYCmGWrnWRz1QAAAAACLsmncEvvhuguaGYCmGWrnWRz1QAAAAACL74lcEvvhuguaGYCmGWrnWRz1QAAAAACLvbWcEvvhuguaGYCmGWrnWRz1QAAAAACHvVycEvvhuguaGYCmGWrnWRz1QAAAAACHx8bcEvvhuguaGYCmGWrnWRz1QAAAAACHxlpcEvvhuguaGYCmGWrnWRz1QAAAAACHxg3cEvvhuguaGYCmGWrnWRz1QAAAAACFpYR", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EO1Dm97l4fnw6_SNto3oog"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAE_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYcJ5VgsZvSbEBF2_k2qcfnAAAAAAAAAALML0pN8-bI2jezXitVRzNNgAAAAAAAAAe3APbfJs5SvbH_F9r5lo_3wAAAAAAAAAFfnFonGQxpm_e6wtqJ2HwRwAAAAAAAAAEYM_gl0OeNbTAtY8GRC8UVgAAAAAAAACbTdvyEkBALxwDoycOnD-RjgAAAAAAAABkYM_gl0OeNbTAtY8GRC8UVgAAAAAAAAAeOWoia3OO91L6Q6k2Ypn2XgAAAAAAAAAqRq9zkaF6sUD5FfpUB-KQEwAAAAAAAAAJyGP4qHVV9gP7oOP9pntYfAAAAAAAAADKN8RZIOlN-CzU2nm4KXUzLwAAAAAAAAAKWft0IPWpEm0-yVfU_de9-wAAAAAAAAAAZHpec9nZGwrrhoUYM845NAAAAAAAANPVogCgWMgT5mMAMhpNA0IMiQAAAAAADvpW6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALR2K6tVKI4mSYDEJ-ABAIpYXcgAAAAAALRsu6tVKI4mSYDEJ-ABAIpYXcgAAAAAADGbB", "types": "CAMVBQIDBQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9KEwJQyYCkGUHgQfZ4zuUg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlfQcEvvhuguaGYCmGWrnWRz1QAAAAACEh4acEvvhuguaGYCmGWrnWRz1QAAAAACEiiHcEvvhuguaGYCmGWrnWRz1QAAAAACEsdg", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-bSoXiwGVYIVR1L3DbcUUQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAArGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABB5KDO11BWTfkkFO9MFEbTJwAAAAAAAAADoyUgxxOY520Rj3U8w5GHoQAAAAAAAADS_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhOD", "types": "CANRBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "l7TOnfsZ0Oz_cxAh8t_TMA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmq-", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-Dqb1JZa6QuOKypgO1FUIg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_8uEcEvvhuguaGYCmGWrnWRz1QAAAAAD_84ccEvvhuguaGYCmGWrnWRz1QAAAAACLLiEcEvvhuguaGYCmGWrnWRz1QAAAAACLLYdcEvvhuguaGYCmGWrnWRz1QAAAAACLLdCcEvvhuguaGYCmGWrnWRz1QAAAAAD_-EScEvvhuguaGYCmGWrnWRz1QAAAAAD_8_ccEvvhuguaGYCmGWrnWRz1QAAAAACGX2kcEvvhuguaGYCmGWrnWRz1QAAAAACFtsscEvvhuguaGYCmGWrnWRz1QAAAAACFWjMcEvvhuguaGYCmGWrnWRz1QAAAAACE_N5cEvvhuguaGYCmGWrnWRz1QAAAAACEyVEcEvvhuguaGYCmGWrnWRz1QAAAAACFyHV", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "L037eGgcPD3WzV8I4bd-pQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFbojlkH6U8-uq6rXJn3yJDAAAAAAAAAAEa0W4SIobOysiPgaw1gv_JAAAAAAAAAAQHrXUpqEQk4VDnpaZKgdbiAAAAAAAAAA9U2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAABU3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAABd", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RNi8L_o5RGudv-i_EaBkuA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADAEguNCcnmVGnXNe9OvbpF2wAAAAAAAAAyyH_ohM36PxcsspBj9HiisAAAAAAAAABUZZqFVPfJM-LkfzPbeaoP8QAAAAAAAAIJZ0TAJMiD_AqT3npr7YiRAgAAAAAAAAH4AJ8qrcXSoJbl_haPhlc4ogAAAAAAAAACX31knMc676bIIEUjaHa0MQAAAAAAAAADTozXD2NzMy0dEH0e02djYAAAAAAAAAEKeRQqY-uKn1zCanFBx5tpKgAAAAAAAAANLaFl4epk0Q6S_D_8elQACwAAAAAAAAAsd55u1lPodAfLflRouVTMDQAAAAAAAAAGd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAOPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMzzqjB_amR59Lv13Nhle_NwbwAAAAAAENS56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALko96tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf", "types": "CAMtBQIDCwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "x5qgOI8HL9M8dwwOC7QfqQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAnEGqyFI4UBcYw0uODaUlP_QAAAAAAAAAEo7sR_pIbiVV_Z8TfMWbBfAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALVhUIBMnDjpGauL-PhicCqgAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl_plqR4x5xi_qOVu9JWCxQAAAAAAAAAEYNvLePk3bv25BUHN3KzEXQAAAAAAAAChMo8MRZcTTA5MSH5mIc8c7wAAAAAAAABiYNvLePk3bv25BUHN3KzEXQAAAAAAAAAkq6h8WxXFV1hXZzG4J6n18QAAAAAAAAAWmW2YX0W7f8kHZ9OF_UwxgwAAAAAAAAAGLE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAkQmhZSkKN3zNxr0HYuO2pqe5hQAAAAAAbRaiZSkKN3zNxr0HYuO2pqe5hQAAAAAAbRENZSkKN3zNxr0HYuO2pqe5hQAAAAAAWpSFZSkKN3zNxr0HYuO2pqe5hQAAAAAAW7AX", "types": "CAMYBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SOHLJ-nmGdCO3sK7plOv2g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABda68f5mgZFs3OaBztew54AAAAAAAAAAM9lngTnmeSG1s7rdk_juSMAAAAAAAAAAGHrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACtBnjxOT6ecDtMNaRY7RgRQAAAAAAAAABnzd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX73IOkhtZyjrZNnxzxVPYTQAAAAAAAACNp20xNjB13pFFci9UHZaQsQAAAAAAAABbNFoti7zeivEyGvfQ3_ANTgAAAAAAAAGU3kg82-0D3eZ1bo-oCBlTCgAAAAAAAADCVOUNVzVyt4QutMt6oZxNlQAAAAAAAAA2EyQZHtzRv_03o0l-NXmg-QAAAAAAAAAxNdnOauNqYT-cKE84qEP2jwAAAAAAAAANlsX2eCLSr4Q70_mA1t3KeQAAAAAAAAAoNB3KICW80r4krIyGFXIJIgAAAAAAAAB8fEfXEAdeoPaW4CEh2_iKSwAAAAAAAAANkRDRwBGBMalD6BcjnR3JbQAAAAAAAAAnRNJevAy8zHjPqvqq_9wz6gAAAAAAAAAnx8bq_xVN-rpqARxMICWBtQAAAAAAAAAtIwQr5N-zzqzl-VCE4qIkSwAAAAAAAABXa95o5CjzIEIOn8inlU1vCgAAAAAAAAAQDbGTcOBcDc6PQvK_yBwTrwAAAAAAAADKzOGwPIsGkrVY6Li5mXSYmQAAAAAAAAAA", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lo1FK0cOT4jUm2Qr6L-02w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAABB_IRgbCQC1IPEoVkHKMOTwAAAAAAAAAYdB8rpvXeU-U7j8zoRqc_lgAAAAAAAABYe7YYWaQTMh8P2PCVzA2a8gAAAAAAAAA5gpzmfljwMvF6axjuntzBmAAAAAAAAAABtGdjZjM6jJA23WbdtVpvAwAAAAAAAAAIE7J_ZVS2fIyPaAMkyne11QAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XJXvcRJSTv0fetUhCxNrHA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7zyXT4fd_WKeR1cE-hlLelCQAAAAAAC-8B3XT4fd_WKeR1cE-hlLelCQAAAAAAC-ykpXT4fd_WKeR1cE-hlLelCQAAAAAACp71EXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCM6XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ja-NqtogbhFMWHWfFPBr3A"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAD8uIpQ1uRexMdnpWaro5896wAAAAAAAAALtpYrdrzxLxKEo0lof5nOvwAAAAAAAABTGXqdtKZs0jCPru_AD4bs_AAAAAAAAAAlV6fcE1EsjMYG4ctzhztDBgAAAAAAAAAMhicgrP6yr_-9qRDPdRH1UQAAAAAAAAABcuz7PAFLw8DoVVSTVsTZvwAAAAAAAAAExy6LXnpeKuV7b6XhH-kLUgAAAAAAAAAESdUzkeL9_v2VezVxWgWRqAAAAAAAAAAuzNcsGRHhxrtoMbOTGij46QAAAAAAAAAB7IBmDOSH_dR0MHQWs_TXjQAAAAAAAAAUX9lpa9TN84k-aLBSFJ8EgQAAAAAAAAAHgVQfyTUjnDx6YGZ7YyYMDwAAAAAAAAAVGp8pW5B40BblKfSIWk6M6gAAAAAAAACNa38j856FxIPiwroWnutPzgAAAAAAAAAMrRD3IAWNeA4GPRh7roh_BAAAAAAAAACRagZiqOTeFJJvJSEd_bICHwAAAAAAAAAKiit9TEPWxIcbSUSJseypHwAAAAAAAACIvc_2qIuahQ6DM3LWEJ9q5QAAAAAAAACEnQWGdRxvqVjwlLmQWH1PhwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAHs6vQ7EacG6CR4rzcFaNFEsTQAAAAAAATMu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW096tVKI4mSYDEJ-ABAIpYXcgAAAAAAL5eG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL47I6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL4VK", "types": "CAMxBQIDBwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "K_CAUyuD7NBkhK5Ltc_feQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMha1XT4fd_WKeR1cE-hlLelCQAAAAAAD9Tr0XT4fd_WKeR1cE-hlLelCQAAAAAAD9EBnXT4fd_WKeR1cE-hlLelCQAAAAAAD9EatXT4fd_WKeR1cE-hlLelCQAAAAAACkAGLXT4fd_WKeR1cE-hlLelCQAAAAAAChaNvXT4fd_WKeR1cE-hlLelCQAAAAAACgUIh", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nZ2BKRv9gSdaoFxQ-TzvPA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAACKf_a_qdoBA55O8a7qgwDK7gAAAAAAAAARuZeXOJajIKqLKk4-05Cj8gAAAAAAAAAIfx2qpzR4SW8k6QF4h_x-lgAAAAAAAAACXWhZGeSVw3QL-gA2NjTItQAAAAAAAAALcrJxfOZekEO297SoXoFNvwAAAAAAAABEz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABbTIqYHzSLJiXVx4krD2dbMgAAAAAAAAABIFHX6oXBjL3Y93SHOMXcKQAAAAAAAAABZXguWb1db5OZ-xUb0e4ZqQAAAAAAAAM2siCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-wqFV6xhVekP5-uToPI32ragAAAAAAl6M1", "types": "CANTBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mRqni2HGLC5qImss9JsUdQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAABWkxlPGvmJaixHgVVGYdR3ZAAAAAAAAAAUFlEmrMapoRVqavpRHEspQQAAAAAAAAAFwKq13sxbA1Q177k-e_lIpgAAAAAAAAABPp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6IaGOpXjXn5EHF-K9uwEUPQAAAAAAAAAErU2gYsZPORRvUmAaUHS0ngAAAAAAAAAIPp5-6LF2RVa41kvu_cOd1QAAAAAAAAA6TsD0RrBnIgAER8sz4r-hTwAAAAAAAAA469NpEFDNvAeCd2RwbOmIAAAAAAAAAAAEcGV0DDfmSpIZxUAKnFlOoQAAAAAAAAAP9RZkYL0fVSfLG-HsYblWBQAAAAAAAAAJAAn_OLmzgN0q8Ywe9O03FgAAAAAAAAAbNCAjj9ga_oZwZ7NBAV35jQAAAAAAAABgLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAMvPUU5i5r5XThwPX6RJsZ7gAAAAAAAAAE21OviUyRbmnxs6uitnTC3wAAAAAAAAAP3R6peF1IdwfQqmb119dyMQAAAAAAAAAFjRPUUEtO9tA38nKSenaVfwAAAAAAAAAC3R6peF1IdwfQqmb119dyMQAAAAAAAAAFMDjyE5AlqASoc6cxfe5K2wAAAAAAAAAwmxRwXt-8CQt60ehjLjpoTwAAAAAAAAAKZaQmU-IXyGvFS9G6a9D4BQAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAAD8oQ_ZJ3ImiZWOZcNHv_WYwAAAAAAAAAjMj1fVO3bykQ8piLrLc5IFQAAAAAAAAAJp3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAANUDpp6LgRqCGeGjs7cnnwItcAAAAAAADvFr", "types": "CAMqBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "chW5HPktN4b6gYA4Rc8JLA"}} -{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwAIU6tVKI4mSYDEJ-ABAIpYXcgAAAAAADAxg6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFrrj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFrPy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAiwHv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "n5uPBDEBKL0cPVfOG1jyTg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAABjgJ_Yxe-SHgukLEpCkawSk1QWAAAAAAABqplYxe-SHgukLEpCkawSk1QWAAAAAAABM5TYxe-SHgukLEpCkawSk1QWAAAAAAABNSEYxe-SHgukLEpCkawSk1QWAAAAAAAA4vSYxe-SHgukLEpCkawSk1QWAAAAAAABV0Z", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7pCWL6qVpk6cdOVpmC7rqw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFnL5cEvvhuguaGYCmGWrnWRz1QAAAAACE6u7cEvvhuguaGYCmGWrnWRz1QAAAAACE9yHcEvvhuguaGYCmGWrnWRz1QAAAAACE9eTcEvvhuguaGYCmGWrnWRz1QAAAAACELBkcEvvhuguaGYCmGWrnWRz1QAAAAACEyqbcEvvhuguaGYCmGWrnWRz1QAAAAACFykj", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iErvH58Jze4Jx0cV_htakA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbFTZ3CKaS4aU08RhYA19y5ITQAAAAABtZi0Z3CKaS4aU08RhYA19y5ITQAAAAABuV_gZ3CKaS4aU08RhYA19y5ITQAAAAABtuKUZ3CKaS4aU08RhYA19y5ITQAAAAABtagwZ3CKaS4aU08RhYA19y5ITQAAAAABuOzgZ3CKaS4aU08RhYA19y5ITQAAAAABuWDuZ3CKaS4aU08RhYA19y5ITQAAAAABta9T", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "O7pMotA2VuO21v-RSvDOAQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAAAdeAxdHY-4DbDT_cuHjXXw_gAAAAAAAAArZC4caaBbQcOc2WclRiklUwAAAAAAAAAMQJ-JVADSuuonf59sOKCy_wAAAAAAAAAPbYxYe2jgm-ZVQ1wIKl60VgAAAAAAAAA1B_TZlmg-i-MShObdqiYcyAAAAAAAAAK9JjiG_BroZFP40tpmv2LaAQAAAAAAAAANT3lk77LF4G-nQZW_WRBUXQAAAAAAAAAH_8CkmXN7rMP1z1mWZ4cysQAAAAAAAAAbvB5-VFNxmRTipezH9t4OWQAAAAAAAABXblY2Zoz09t8zvWWEkNwQ4QAAAAAAAACuIJGZm_kDZxOYo3A2Fee1WQAAAAAAAAEgZgROkWlvV9ujJA-aNSGhMwAAAAAAAABA5VZIXKdThz-hZwdLu0KVfwAAAAAAAAAKGY8FzW1zmT9O6Iy3KHcGZQAAAAAAAAFJ90UIqO2n6jPWAsY9C7Jk5wAAAAAAAADqIvkYVQpy0zuSMjSWKUUFtwAAAAAAAABp1F_4eN2zNglbo7R6puFiTgAAAAAAAAAAAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WeDK4Wsp82FrbsJvJ81IVw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LH5cEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEM3-", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BHEo7QGhrwJZN1gfWBJvpw"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACffolgtQ4kMk_MBWrPUAFqVnYywAAAAACff5xgtQ4kMk_MBWrPUAFqVnYywAAAAACfgJpgtQ4kMk_MBWrPUAFqVnYywAAAAABrE8IgtQ4kMk_MBWrPUAFqVnYywAAAAABrET_", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SQYzaRy22h79zcc3oYHt2g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR3G", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JLHzPwzEV5rRN9RuEzoMPg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbkcEvvhuguaGYCmGWrnWRz1QAAAAAD-LY5cEvvhuguaGYCmGWrnWRz1QAAAAAD-MUkcEvvhuguaGYCmGWrnWRz1QAAAAAD-NiacEvvhuguaGYCmGWrnWRz1QAAAAAD-OAbcEvvhuguaGYCmGWrnWRz1QAAAAACFObNcEvvhuguaGYCmGWrnWRz1QAAAAACEM4XcEvvhuguaGYCmGWrnWRz1QAAAAACFxfT", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kCi3XJtF81OLZhjrXcqzHw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAC1ivTcEvvhuguaGYCmGWrnWRz1QAAAAAC1cHVcEvvhuguaGYCmGWrnWRz1QAAAAACGx3McEvvhuguaGYCmGWrnWRz1QAAAAACGJSkcEvvhuguaGYCmGWrnWRz1QAAAAACGMs7", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PFH8JfGJ8gxGshJahx5FMQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDAIcEvvhuguaGYCmGWrnWRz1QAAAAACuEFvcEvvhuguaGYCmGWrnWRz1QAAAAACuGfdcEvvhuguaGYCmGWrnWRz1QAAAAACuFZccEvvhuguaGYCmGWrnWRz1QAAAAACO_JQcEvvhuguaGYCmGWrnWRz1QAAAAACOos-cEvvhuguaGYCmGWrnWRz1QAAAAACIAmEcEvvhuguaGYCmGWrnWRz1QAAAAACIF_3cEvvhuguaGYCmGWrnWRz1QAAAAACIFOMcEvvhuguaGYCmGWrnWRz1QAAAAACICw-cEvvhuguaGYCmGWrnWRz1QAAAAACG9U1", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eYJ3KKpVqQxoShfKUyVbPQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcQxTPNhFsgl-8e8i61Q7phQAAAAAAAAAnwnyQT1ASJ0qq9KkluGRHtwAAAAAAAAAE8PySOWxdeTvWtl74Iv620AAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAn5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALCqHdoNRupr5ud0SEqGGzcgAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAF_Ngz1ncxudXrxSqiWBxoaAAAAAAAAAAETphZkORhkBDEbRDMofKltAAAAAAAAAAkljijwxlolNIlc2z0nvWGRwAAAAAAAAAW3kqb9iL-AByP8rRfsVhi_QAAAAAAAAAK8gHcyv-vf693oHdGbKQv-gAAAAAAAAAN_NrJ8Q-i9cRRxMzl4paxGAAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAN9zqjB_amR59Lv13Nhle_NwbwAAAAAAEOE66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALR2K6tVKI4mSYDEJ-ABAIpYXcgAAAAAALRub6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpAY6tVKI4mSYDEJ-ABAIpYXcgAAAAAAF0IN", "types": "CAMTBQIDBwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XmdrI-QkL3G1KMx-UT00Dg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPTf", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mfuqRLZYclnGs_5tl5SKFA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOE1fYhCC-W9hkMRzkOdu22QAAAAAAAAAg52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAs", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BTbJZwKcIfQ2uNxAXoZhbA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbh1uYxe-SHgukLEpCkawSk1QWAAAAAAABKVS", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0R9Tk_AwuvgNuleyrD0E-A"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL6MJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMlqJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMCHp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTgt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTEA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMS41", "types": "FAMNBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Nd9rMkTYCiObUWdQEYWSwA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf", "types": "CAOCBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BBtaj0c5fzDAqxomou5uMg"}} -{"Stacktrace": {"frame": {"ids": "jDWb-JzykmDZwFq_yGRkXQAAAAAAAAAG619AixYrQOa22PQj1GrSdAAAAAAAAABitYpn9fKKxL559MokXK09lwAAAAAAAAAYbQTnNZNiSnxa6gsFMalX2wAAAAAAAAAKzihU2tJAUMTE3AA4bF0R6gAAAAAAAACAQbvBm5K9FvRcVX9RX9KOswAAAAAAAACK_x4aKgh_XJ5-w5YMGr9j7gAAAAAAFSFO_x4aKgh_XJ5-w5YMGr9j7gAAAAAADmet_x4aKgh_XJ5-w5YMGr9j7gAAAAAAHuSq", "types": "BgEDAw"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aMeqW0QxLpn1TpYZf4XBMg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa86c", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2Ql87_TD7x_m3wC-TEuP9A"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAnEGqyFI4UBcYw0uODaUlP_QAAAAAAAAAEo7sR_pIbiVV_Z8TfMWbBfAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAY5rk_UJ-u8N3KSTCupmswwgAAAAAAAAALVhUIBMnDjpGauL-PhicCqgAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl_plqR4x5xi_qOVu9JWCxQAAAAAAAAAEYNvLePk3bv25BUHN3KzEXQAAAAAAAAChMo8MRZcTTA5MSH5mIc8c7wAAAAAAAABiYNvLePk3bv25BUHN3KzEXQAAAAAAAAAkq6h8WxXFV1hXZzG4J6n18QAAAAAAAAAWmW2YX0W7f8kHZ9OF_UwxgwAAAAAAAAAKf7zfB261PmeVR0CVV6m2gAAAAAAAAAAJ_NrJ8Q-i9cRRxMzl4paxGAAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAOdj634wiWh6F21tPpXr0Zz3mgAAAAAAEOFr", "types": "CAMVBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eFlLbHihvaUX7uvWAN_dUQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8VxXT4fd_WKeR1cE-hlLelCQAAAAAACxC9RXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNHkXT4fd_WKeR1cE-hlLelCQAAAAAAChtv8XT4fd_WKeR1cE-hlLelCQAAAAAAChIUbXT4fd_WKeR1cE-hlLelCQAAAAAAChISO", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5QZMmKE4g5NoBX6HRV7SWg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_8uEcEvvhuguaGYCmGWrnWRz1QAAAAAD_84ccEvvhuguaGYCmGWrnWRz1QAAAAACLLiEcEvvhuguaGYCmGWrnWRz1QAAAAACLLYdcEvvhuguaGYCmGWrnWRz1QAAAAACLLdCcEvvhuguaGYCmGWrnWRz1QAAAAAD_94EcEvvhuguaGYCmGWrnWRz1QAAAAAD_9IkcEvvhuguaGYCmGWrnWRz1QAAAAAD_wtscEvvhuguaGYCmGWrnWRz1QAAAAAD_yyEcEvvhuguaGYCmGWrnWRz1QAAAAACF-IrcEvvhuguaGYCmGWrnWRz1QAAAAACF-UEcEvvhuguaGYCmGWrnWRz1QAAAAACGugycEvvhuguaGYCmGWrnWRz1QAAAAACGmwdcEvvhuguaGYCmGWrnWRz1QAAAAACGpoocEvvhuguaGYCmGWrnWRz1QAAAAACGsDNcEvvhuguaGYCmGWrnWRz1QAAAAACGKP7cEvvhuguaGYCmGWrnWRz1QAAAAACGMskcEvvhuguaGYCmGWrnWRz1QAAAAACFrXlcEvvhuguaGYCmGWrnWRz1QAAAAACFAxdcEvvhuguaGYCmGWrnWRz1QAAAAACE7Up", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MvydvJcdA5Fm40P_1i2ixQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk6jz5k14PsCcDvFyUC1kmlV3QAAAAABFjYEz5k14PsCcDvFyUC1kmlV3QAAAAABGgQQz5k14PsCcDvFyUC1kmlV3QAAAAABF400z5k14PsCcDvFyUC1kmlV3QAAAAABFkWAz5k14PsCcDvFyUC1kmlV3QAAAAABGZEQz5k14PsCcDvFyUC1kmlV3QAAAAABGgUez5k14PsCcDvFyUC1kmlV3QAAAAABFkwFz5k14PsCcDvFyUC1kmlV3QAAAAABGPJ9z5k14PsCcDvFyUC1kmlV3QAAAAABGTGnz5k14PsCcDvFyUC1kmlV3QAAAAABGSeJz5k14PsCcDvFyUC1kmlV3QAAAAABGTOI", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lVm7T9NjlDcvHseuxZtScA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlPqcEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf_B", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zlmxsTTPMJDp5d_OFnqBkA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZz", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Yyo4WtSHD0QUjPwdj4k3Xw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFJSGf2yEAEhxiBfW1U6B9NgAAAAAAAAAEv-dzrDzLbKAbYGTnBhfr9gAAAAAAAAAM4iaBbZIIwXRBOYMSVscz2wAAAAAAAAADf5pCmW13zl5OWUDLG_ClrwAAAAAAAABNynHqfILVzOOqJs-5yJf4gwAAAAAAAAAeU2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAABU3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAABd9JMKs9KQTgczUAMQRnFzHQAAAAAAAAAO", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BpKdezWYGYGHxKuRbIhA6A"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAD__132SCE97-YKPPIxyOJtGgAAAAAAAAACMHpbHEXmLVEAH-OYEtnUKAAAAAAAAAACchxwUR6w92YjI0NegVXDTAAAAAAAAAAGAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CANBBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_IL9L_uv3CfGfQbo7Tbz2A"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSEYxe-SHgukLEpCkawSk1QWAAAAAAAFzhzYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2kGYxe-SHgukLEpCkawSk1QWAAAAAAABkE8Yxe-SHgukLEpCkawSk1QWAAAAAAABCJG", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "woH9c39lhinU4GavawjQuQ"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrkykgtQ4kMk_MBWrPUAFqVnYywAAAAABq7bsgtQ4kMk_MBWrPUAFqVnYywAAAAABq7GYgtQ4kMk_MBWrPUAFqVnYywAAAAABq52lgtQ4kMk_MBWrPUAFqVnYywAAAAABrBDN", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aLyOgMQu19TF5wLalqlvBQ"}} -{"Stacktrace": {"frame": {"ids": "tQgAmBJBgPLrkikSPRsmtgAAAAAAAMD16tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFE1i6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFDLh6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "AQMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UQfZAh-DQHDVJDhrdQQeqg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipGH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipDo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Zq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Ei6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjoVf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAVPLh6tVKI4mSYDEJ-ABAIpYXcgAAAAAApa94", "types": "FAMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aCYKHhebiJ9jpDR5JQOfqQ"}} -{"Stacktrace": {"frame": {"ids": "J6GSZQSmfOBquczb-SF8bAAAAAACilSEJ6GSZQSmfOBquczb-SF8bAAAAAACh72sJ6GSZQSmfOBquczb-SF8bAAAAAACh7hYJ6GSZQSmfOBquczb-SF8bAAAAAACh6LLJ6GSZQSmfOBquczb-SF8bAAAAAACh60EJ6GSZQSmfOBquczb-SF8bAAAAAACh7tLJ6GSZQSmfOBquczb-SF8bAAAAAACiTxmJ6GSZQSmfOBquczb-SF8bAAAAAACiT45J6GSZQSmfOBquczb-SF8bAAAAAACjLCTJ6GSZQSmfOBquczb-SF8bAAAAAACjNee", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FZiQmOxfnnxBneo5kx5hbw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAA", "types": "CAMFBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pD-pJcDVTjS_r_eW7GWMcA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7-XT4fd_WKeR1cE-hlLelCQAAAAAAC-pGEXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi94WXT4fd_WKeR1cE-hlLelCQAAAAAACi98FXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwXQXT4fd_WKeR1cE-hlLelCQAAAAAACiKCvXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD9J", "types": "GAMDBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Mu3LxyO4KAp-wuV_ZLnj9g"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABFj51z5k14PsCcDvFyUC1kmlV3QAAAAABFlMAz5k14PsCcDvFyUC1kmlV3QAAAAABFlg0z5k14PsCcDvFyUC1kmlV3QAAAAABFlwa", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GV_l_2Wb3JncTPL0Vwsngg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eaUcEvvhuguaGYCmGWrnWRz1QAAAAAD_AtNcEvvhuguaGYCmGWrnWRz1QAAAAAD_ChZcEvvhuguaGYCmGWrnWRz1QAAAAAD_BbEcEvvhuguaGYCmGWrnWRz1QAAAAACIXaZcEvvhuguaGYCmGWrnWRz1QAAAAACIa6kcEvvhuguaGYCmGWrnWRz1QAAAAACHdgl", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qb72Yobg_yLohYI9gpP09w"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACXVSALBRPvgHpUWKmpUo1khAAAAAAAAAAA", "types": "CAODBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gRdGxn1bfMhp02lCqIS5Kw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAach6", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "N7_BJi6ewgXvZf2hE9Zv4w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAacLj", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nb8JnNS4P-YTnEEC4c_iFA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAA5JaQSNDzWiYDmLZi_Z1ZVETLoAAAAAAA5JFkSNDzWiYDmLZi_Z1ZVETLoAAAAAAA5IrCSNDzWiYDmLZi_Z1ZVETLoAAAAAAA5IWRSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWdsSSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWdbY", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9o9XxmdKp5kr_ASSIejj0w"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV5BZ3CKaS4aU08RhYA19y5ITQAAAAABtbFTZ3CKaS4aU08RhYA19y5ITQAAAAABtZi0Z3CKaS4aU08RhYA19y5ITQAAAAABuV_gZ3CKaS4aU08RhYA19y5ITQAAAAABtuKUZ3CKaS4aU08RhYA19y5ITQAAAAABtagwZ3CKaS4aU08RhYA19y5ITQAAAAABuOzgZ3CKaS4aU08RhYA19y5ITQAAAAABuWDuZ3CKaS4aU08RhYA19y5ITQAAAAABuEkV", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "weC-mDxEvnrRd8m5lrSC_g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeX4r", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9JtEJNwxEYbbvpjuHhBBig"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALARLuf1htvrklOOxyKnOopAAAAAAAAAABTBtZO3-vmynkHlKuzsN9UQAAAAAAAAAyn55ZjUBJzU7CnzmyoRyorwAAAAAAAAAk5Ib9omL2d9xqdBKBL9VmGwAAAAAAAAAAqFV6xhVekP5-uToPI32ragAAAAAAmMkkqFV6xhVekP5-uToPI32ragAAAAAAxn1ZqFV6xhVekP5-uToPI32ragAAAAAAxnpttQgAmBJBgPLrkikSPRsmtgAAAAAAAL3h6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4J", "types": "CAMGBQQDBwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lxliPpP77L7i9KCpXsSmXA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF353Bbxw0b5wHlGJY1WEVWAAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4bWZWPptWisqbpRDA9X8cNgAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADv9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABDHfFlM3axnhO28EteQn-2WAAAAAAAAABJ5utt2dQ8HKrTepHdNpprxQAAAAAAAAFzUP7wzdQXo1Tc_iFi4DuZQQAAAAAAAAAE9ZOKtWsgasz8zygdckTZDQAAAAAAAAAEEVcCXOQnkebnZR5Z6XcBvAAAAAAAAAA0SLm5iQaRU0eNqFhBMIrYxgAAAAAAAAAXvOoArOQsiI-woapVIk9zYgAAAAAAAAA1NnsXqH-CVYMwVp_zbU78aQAAAAAAAAAIQunNj1oMDkHtmA3AacNPUAAAAAAAAAAFx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlseV", "types": "CANPBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ALNfUngsI4IwTJ9rHQZUfw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEPD3cOudib0XQsq9y3nJeyAAAAAAAAAAQPHOUiNkmrb6lymlNuXSU6gAAAAAAAABCdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcO9_JyaRKYBdkJrY8OUa6igAAAAAAAAASDJ2lZS85ClNgTnnEk8XThgAAAAAAAAAfCpvjWyzlv7sy206ARLr_PwAAAAAAAABh", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "B70CGF1Zyq8tOnSlg6wrvw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgms0", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5oIGtzRMmg2pbiJ9Og8Hog"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--RVXT4fd_WKeR1cE-hlLelCQAAAAAAC-7XmXT4fd_WKeR1cE-hlLelCQAAAAAAC-z7kXT4fd_WKeR1cE-hlLelCQAAAAAAC-1UKXT4fd_WKeR1cE-hlLelCQAAAAAAC-057XT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALm6B6tVKI4mSYDEJ-ABAIpYXcgAAAAAAF0Ia", "types": "EgMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lQw85LEW4DpLukB4K3A6Sw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWCZXT4fd_WKeR1cE-hlLelCQAAAAAACi5DEXT4fd_WKeR1cE-hlLelCQAAAAAACi59aXT4fd_WKeR1cE-hlLelCQAAAAAAChWnJXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdRY", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uQC4_VLdsRdPOY_eYCLgyA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiF_vXT4fd_WKeR1cE-hlLelCQAAAAAACiGWEXT4fd_WKeR1cE-hlLelCQAAAAAAChWnJXT4fd_WKeR1cE-hlLelCQAAAAAACgUbM", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pN5IOT_VxO3_wUIBhsiEIw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wrIXT4fd_WKeR1cE-hlLelCQAAAAAACkR-sXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdQp", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "k3oNyMpKPtIZvbqyj2iu3g"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPkzPBPi0X-wl-PUEBtNL3SQAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIHT1vQdc0XC0RoSXqyJlYhgAAAAAAAAALpYJXWbdqO_EwCki56aMNwwAAAAAAAAFsVp62M-dk3XvfozDfnsnw9gAAAAAAAAAG-vBNy6YNq9pF5j5Mm7smkwAAAAAAAAAFno2Lej56mJkbwdNYz7YGSQAAAAAAAACtdqm9tJM0l7NfU9GmtGT_UgAAAAAAAAAv_Y111vaJECHVrJHlW7bsXgAAAAAAAAAJB03VKLwMCOkdekCjVSQyrQAAAAAAAAADnbGCAVuMLFxSx37S0qgXIQAAAAAAAAB0iYwtdrXijhS8BlWDukSJEwAAAAAAAAAICJqja5qFVv0rxd5_F1ndXAAAAAAAAAAX75IWNz1U6sA2E6485MVZ9QAAAAAAAAAUdIMMnGL1faAAaBMwLJOT-wAAAAAAAAAS9iX4SmKa9981kP5-s9Tn_QAAAAAAAAAG5or6ZJBEZua4KUaICTGCrQAAAAAAAABC6Z22H_xn76khllJMdfZQswAAAAAAAAAGw8JhUSbi8Jzd0eYrf6ua0AAAAAAAAAAD98LsLiouX0rmXrzuri1JNQAAAAAAAAAD_JGVtHUnAlXD1QiapB_OyQAAAAAAAAAPdDhANFYAPCtduwtLEJ3JjwAAAAAAAAACJVUh1Ywzr4ZpnNjFATC-0QAAAAAAAAACN_yYwV3UjysQqW64LfGQIgAAAAAAAAAmkFFdZ7msIKV-4ckdKk9uCgAAAAAAAAASk5TkLEE2_KLOYiZzj3yZ9QAAAAAAAAAV2H6lDfKeOu7VKKUjaM45wgAAAAAAAAAle46nPniz-F_kkbOyI4JKVwAAAAAAAAACOxC1h7jFCaEBcIuprX6lQwAAAAAAAAAqSTCXCgkpQFsKfqtjMLFMHQAAAAAAAAAA", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eu-uDVkqMSOny2oTSdBCFQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACuCy7cEvvhuguaGYCmGWrnWRz1QAAAAACuDLZcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxjVcEvvhuguaGYCmGWrnWRz1QAAAAACEN8ucEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEV7g", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AN24Ay2FFm6R_uskGlbDvQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYRr8mF3o9czEU_lrcVazITQAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAHVRV3OqaPHH0CL0c13xlvAwAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABbjYv_loUJfP4bAxHmRpfBQAAAAAAAAAI_avzkz28Qok2WNYNUK8x_AAAAAAAAAACHRX5ZF5fIW1GKCXf3a6CmwAAAAAAAACtBTDQHzxuOEAYM78jOAyAQAAAAAAAAAB3t7DkRGcQiDMfHx06PCzMpQAAAAAAAAAXYEThj3UEuGl2wDiJSq9vSAAAAAAAAACqZou-EwmpdzrcXx7eij10xwAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAwmP1634wiWh6F21tPpXr0Zz3mgAAAAAADdDk1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAmB1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAbz", "types": "CAMRBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9XaUnPPtgxfYR4iOYVLS0Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vNqXT4fd_WKeR1cE-hlLelCQAAAAAAC-odPXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hAqeyX4eeyZmtR_G1TRong"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAGyVtVXhl6s6URamlTOMTdcGgAAAAAAAADcdxb67a9pdOnwKSyUl3yo7gAAAAAAAABYCIJa2mPNm8b1wwJ_UCRwpAAAAAAAAAAFjWxMhVzBeHM3bqEF5ueSZwAAAAAAAAAqd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsSidn5oJ7A2M_efsiHDz05QAAAAAAAAAT0_jShB-DuV77HIBPKqBRjgAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEXnZcAdwBOPPRQ2hQm4YWwWgAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlscT", "types": "CAOVBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lGYnfjmvwXki2C5OKuIGdg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAACEiSUtuDFidZ_ArB9M-KYzuwAAAAAAAAAqAAahb89jp2nXTHxX6vfDVgAAAAAAAAIaEzlTNMIGbx2ZiPDgwyoVKwAAAAAAAAE4hvoLs_S85r0RS2Fhd-3zRQAAAAAAAAAA", "types": "CAO1BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "A41aW57rPqkbdBRy4L9pwA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcNAh", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uDNzqwFHdWL1Gt4wJdSyGA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADnCZA6kFgNxUpf9UEoiwzNCgAAAAAAAAAZcidxU1IQprySS7Fh7255fAAAAAAAAAAC1JcixA9b936fLO2mJkSSxAAAAAAAAAAa9MJISbwzA5r2YICNkdXifQAAAAAAAAAFiVdXxMnQTC0ojn_eNDg1AwAAAAAAAAAEY65EnYgozb6jeUwvncJgMAAAAAAAAAAle5aBCOhKC4RY6MYEGFpjzwAAAAAAAAAEtdOqY6OTZxvJnUR1-5iRKgAAAAAAAAABh4PkPbRpl4MeEF3x9WpPVAAAAAAAAAAB9MJISbwzA5r2YICNkdXifQAAAAAAAAAFAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMwBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OYGXc31yJI5bR-H2iNSwHw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ_I", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "N6dB94SEYMjCukJ9TS8bDQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF88yz5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF78Kz5k14PsCcDvFyUC1kmlV3QAAAAABFxdxz5k14PsCcDvFyUC1kmlV3QAAAAABGnbQ", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kNJuZj4X_lXclYreYCLjug"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjD5cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLmm9cEvvhuguaGYCmGWrnWRz1QAAAAACLkDEcEvvhuguaGYCmGWrnWRz1QAAAAACLj3X", "types": "FQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "L-ilYQocauuNE095JEhEhQ"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHrJigtQ4kMk_MBWrPUAFqVnYywAAAAADHpx9gtQ4kMk_MBWrPUAFqVnYywAAAAADKAEMgtQ4kMk_MBWrPUAFqVnYywAAAAACRqCugtQ4kMk_MBWrPUAFqVnYywAAAAACRqLngtQ4kMk_MBWrPUAFqVnYywAAAAACRoRJgtQ4kMk_MBWrPUAFqVnYywAAAAACRocBgtQ4kMk_MBWrPUAFqVnYywAAAAACRoaBgtQ4kMk_MBWrPUAFqVnYywAAAAACRoqWgtQ4kMk_MBWrPUAFqVnYywAAAAAB9EMpgtQ4kMk_MBWrPUAFqVnYywAAAAAB9EMpgtQ4kMk_MBWrPUAFqVnYywAAAAAB9EMpgtQ4kMk_MBWrPUAFqVnYywAAAAAB9EMpgtQ4kMk_MBWrPUAFqVnYywAAAAAB9EJ0gtQ4kMk_MBWrPUAFqVnYywAAAAABqKsA", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UAgkJzf4StR0guQvtrxwfA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAAAeCY7ztddcPo6ofReMjIW4KAAAAAAAAAAWV0LEzKEJCTr2F7QdmvO8vQAAAAAAAAAESc-7DBv3SRDl6MaEnNIV4QAAAAAAAAAfjp89ntsvEyhpH5Dc3mZilAAAAAAAAAE5bBQ2fsMcPLjZdwrVTr6aMgAAAAAAAAA5Dp15X8uOBNJVZimWDCZGiAAAAAAAAABnzLx6iJ9ANFZvdAJHeiPhJwAAAAAAAAEbmzExXCPAxvBlsYOcwqbUPAAAAAAAAACELsrK9E-EO_ynQk-yDhFFiQAAAAAAAAAVvEf82IDRTNtSKS_YS3157QAAAAAAAAE6WQA5eJbOfqc-MpVNXC1Q9wAAAAAAAABdWwwY-nbac4bLVYmvyQeL7gAAAAAAAAAZAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "K0IAThZo_rvcPV0xYOOPXA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAACgjGGXT4fd_WKeR1cE-hlLelCQAAAAAACgh57XT4fd_WKeR1cE-hlLelCQAAAAAACgiZlXT4fd_WKeR1cE-hlLelCQAAAAAACg1ASXT4fd_WKeR1cE-hlLelCQAAAAAACg1B6XT4fd_WKeR1cE-hlLelCQAAAAAACg0u5", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Gd9Zti7g9VaXgPNM2AMUpw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAeZ7IYsnZ_Lwaqr0cHEPo0D185QAAAAAAgvMyYsnZ_Lwaqr0cHEPo0D185QAAAAAAee0gYsnZ_Lwaqr0cHEPo0D185QAAAAAAeb64", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "c1BBf8_D0Zq_e4sWgAdTEw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChGI0XT4fd_WKeR1cE-hlLelCQAAAAAACg6T7XT4fd_WKeR1cE-hlLelCQAAAAAACh1L_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuZy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMs_k6tVKI4mSYDEJ-ABAIpYXcgAAAAAApym-6tVKI4mSYDEJ-ABAIpYXcgAAAAAApymC6tVKI4mSYDEJ-ABAIpYXcgAAAAAApyVc6tVKI4mSYDEJ-ABAIpYXcgAAAAAAD7KI", "types": "BgMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eqelKqbeHiTw1Jlw68liwQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8yfSNDzWiYDmLZi_Z1ZVETLoAAAAAAAbCO_", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g_9qdqX3M61Erctug7dsAA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMh29XT4fd_WKeR1cE-hlLelCQAAAAAAC-z7kXT4fd_WKeR1cE-hlLelCQAAAAAAC-1UKXT4fd_WKeR1cE-hlLelCQAAAAAAC-1BHXT4fd_WKeR1cE-hlLelCQAAAAAAC-1WEXT4fd_WKeR1cE-hlLelCQAAAAAACkR-sXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXo", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g4J6Jl239ZcoU2ZSj7-fag"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5WiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9xAhlVWErYnSgk5BtC2imuwAAAAAAAAAHPCZtk4AIkgW9G69-tbcb4gAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFg7nBWJWVuG2AG8wBW0GvVwAAAAAAAAAMJ1pfAEWmqWCNhh7R3GdmfAAAAAAAAAASE7IGle0kfvhelE-3QmeBCwAAAAAAAAAWRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlX6mSHrc_Ev2W8ntyZyhlAAAAAAAAAAMXqo7-ger7Rh6Qo72br9qjwAAAAAAAABjPJlREaStQ9MDsMhq8CWS4AAAAAAAAAAY0gz1mhmhTxHCVZG94cP1QgAAAAAAAAAF-7DooF_BqEazp1UGVZs9GwAAAAAAAAAFANUDzCguopTSw91qnI0ylAAAAAAAAAAO-kwQ5tzIMTia7ESgS4_wzAAAAAAAAAAdf9rhWt1EzalXyXMX3OGNPgAAAAAAAAAyY9mQUdyp86jQhHqOid6GcwAAAAAAAABFbFNBCgHVi2ZK2yGNK4LXZgAAAAAAAAAqsT2auOc8bc0KVm2FFBu5hgAAAAAAAAAFcFp_kIOB2k1JeprfG7gPIAAAAAAAAAAJx2xX1866WR_d0Ce6QrSS_gAAAAAAAAAG4TKh8a7hNrhFLDYE3mR1_gAAAAAAAAAwgyQVNj6p9QSSg0Kib22CpQAAAAAAAAA2ntMOc5-j0JOD44p2574E9AAAAAAAAAAFsZpPWBZ2sVOy9PmQsNzK_AAAAAAAAAAMYI83FPfxizYRL1l5UWZPbwAAAAAAAADBlfyZgP4wM9C7TqiQm2XJ9AAAAAAAAAAE6DlfVVNLUXbaT-YVLc5a8QAAAAAAAAAA", "types": "CANCBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g-xXoA0lL9IYRJcrTwtAWA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAC3Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABB5KDO11BWTfkkFO9MFEbTJwAAAAAAAAADoyUgxxOY520Rj3U8w5GHoQAAAAAAAADS_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhZsqFV6xhVekP5-uToPI32ragAAAAAAjkFg", "types": "CANPBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "twP61I8BoQSVRAEu87hitg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAAAPX6JlWwBbDvZZ7rFp8ffgSAAAAAAAAAAFK24S1jUATvUFIEv3zAUZHgAAAAAAAAFQQTk6i4kGz-zDlc1CgyBszAAAAAAAAAAubFnDceRyUrwrxpx2LB-2swAAAAAAAABsy3V4Wh9j61CfcWNgvt1uPgAAAAAAAABzXcCMywL5s8Msv7wl9SHdqgAAAAAAAAAc8g3sLjFnKCF_JJchxYP5DAAAAAAAAAAN0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAd5e20AsvoCctGya4WV0ZQuwAAAAAAAAAYN1xfNXt_cEW2sMA8rTIs2gAAAAAAAABUcQQ34bxUXEh5yMbxZRcv5AAAAAAAAAAcyr4X--AwYxsbC6m4-WPbMwAAAAAAAAAWwbaLv8BbexWnwmBDRi5IZgAAAAAAAAABFpINZr-8rrEbQKX9ekCdiQAAAAAAAAAHrvyMTZSiiFB-vYn8VxJUiQAAAAAAAAAOM2BXupKk-ecTJedmRPFuNgAAAAAAAAAS0Z_VwTD3wxxcASrUBbgpZAAAAAAAAAAFIjOdy6gQUXRVyDenk0zXHQAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bDEpUjfMy73JDN93aU2Y1A"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAP4nyMCPt5M-rbb158Tnrz3sgAAAAAAAAB3wFolLawtZ8KIPHu9VlFy3wAAAAAAAAA2bCBdTuDS0DbCDGTJHRgQHgAAAAAAAAHUpboNPSluja75Bcicb918zwAAAAAAAAABjJ1ozPLEubzrPTK_HIIAngAAAAAAAAAEgyCLaoZ33VoOuRW0bXNTvAAAAAAAAAAwJlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2Jlj-_pvqSdlHmJAw2MF6mwAAAAAAAAA2WJJpq9A_dKE21YRpkoScFQAAAAAAAAAEKFGBFnajTppUPwKMAfWXvQAAAAAAAAAXfjtW9vtmDWgO1Pk6zjyUWAAAAAAAAACOcqdSAx5Uej3ncVA_SUVjsQAAAAAAAAAMPrNII2l46oclr0RXWTYMUAAAAAAAAAAEINf3qrj40tfRq5N_0-qbsgAAAAAAAAAHsWCnrMF0Arlnv58qX-TThwAAAAAAAAAB7mqPc5ch4cFcQJn3b5WHKQAAAAAAAAAFIY3kOFBxddrJzoZrzargTAAAAAAAAAAADHMn6ZZcNA6-RmrkDCI6igAAAAAAAV_3eJ7BYIhIN72fM2Cz8k8m9QAAAAAAARl3", "types": "CAMvBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "emxPOGrmfJB_o3OYwaU-OQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWIIXT4fd_WKeR1cE-hlLelCQAAAAAACqVWF", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Qa_k6A40Yydkz_UFy6Z1_A"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJ4kXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWrX6tVKI4mSYDEJ-ABAIpYXcgAAAAAALUbi6tVKI4mSYDEJ-ABAIpYXcgAAAAAARNnn", "types": "FAMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LTTi8ZBWlyKqRGwjukTflA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipGH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAipDo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Zq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAk4Ei6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjoZw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjnSC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAVPWS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAVPVA6tVKI4mSYDEJ-ABAIpYXcgAAAAAApa96", "types": "FAMMBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "E518XUc1CtUggz7KTKp7uw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAACuN-FXT4fd_WKeR1cE-hlLelCQAAAAAACuQWFXT4fd_WKeR1cE-hlLelCQAAAAAACuQi1XT4fd_WKeR1cE-hlLelCQAAAAAACuHVA", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uc-1qhzAwxbFSC_X5eM6rg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbkcEvvhuguaGYCmGWrnWRz1QAAAAAD-LR1cEvvhuguaGYCmGWrnWRz1QAAAAACETHH", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qfaU4OGqPjwdE9T5hHw_Tg"}} -{"Stacktrace": {"frame": {"ids": "UJmIMEc6K8gJ39NHYaD0WwAAAAAAEhYeuQABjZuvQhtEKnwbx2fUhQAAAAAAAHbaI-7FSPUFvGFUkGA6jlppywAAAAAAC0iva7-X3xxhJ0wnbzlLWX3GVgAAAAAACCwLa7-X3xxhJ0wnbzlLWX3GVgAAAAAABjEza7-X3xxhJ0wnbzlLWX3GVgAAAAAAAusWa7-X3xxhJ0wnbzlLWX3GVgAAAAAAAqFXa7-X3xxhJ0wnbzlLWX3GVgAAAAAAApHuxFA0V1dCXRoFBkiljWo8aAAAAAAACc-uxFA0V1dCXRoFBkiljWo8aAAAAAAACaymxFA0V1dCXRoFBkiljWo8aAAAAAAACYfqHWXbCIJWwuTsAgHvMObKpwAAAAAAAuPyuQABjZuvQhtEKnwbx2fUhQAAAAAAASpM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ1", "types": "DQMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2TKowT3Mk2n52YOH2Zj2XA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSIeXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgcqx", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NrKlAuh0mNP-abBix0Hafg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o8vXT4fd_WKeR1cE-hlLelCQAAAAAAC-pHvXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4KnU6IH3mkqGAC1cm7wZtQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzScEvvhuguaGYCmGWrnWRz1QAAAAACE__OcEvvhuguaGYCmGWrnWRz1QAAAAACExs9", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MVipWFhXPDISxsBT7IZfCw"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiP4z5k14PsCcDvFyUC1kmlV3QAAAAABJiIRz5k14PsCcDvFyUC1kmlV3QAAAAABJLkMz5k14PsCcDvFyUC1kmlV3QAAAAABJLRcz5k14PsCcDvFyUC1kmlV3QAAAAABJLsYz5k14PsCcDvFyUC1kmlV3QAAAAABGL09z5k14PsCcDvFyUC1kmlV3QAAAAABFRJ0z5k14PsCcDvFyUC1kmlV3QAAAAABFQkoz5k14PsCcDvFyUC1kmlV3QAAAAABFcFGz5k14PsCcDvFyUC1kmlV3QAAAAABFcavz5k14PsCcDvFyUC1kmlV3QAAAAABFcuMz5k14PsCcDvFyUC1kmlV3QAAAAABFq1rz5k14PsCcDvFyUC1kmlV3QAAAAABGmZN", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "S27o98amSiSOrrMpOLWfUw"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHiCEgtQ4kMk_MBWrPUAFqVnYywAAAAADHiVygtQ4kMk_MBWrPUAFqVnYywAAAAADHdkwgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4V0gtQ4kMk_MBWrPUAFqVnYywAAAAACG15LgtQ4kMk_MBWrPUAFqVnYywAAAAACG2UtgtQ4kMk_MBWrPUAFqVnYywAAAAACG2eLgtQ4kMk_MBWrPUAFqVnYywAAAAACG2lugtQ4kMk_MBWrPUAFqVnYywAAAAABqIcGgtQ4kMk_MBWrPUAFqVnYywAAAAABqID8", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TuM-SJ9cGA7C5rVB2mzPbQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCveXT4fd_WKeR1cE-hlLelCQAAAAAAEODDqXT4fd_WKeR1cE-hlLelCQAAAAAACwtaJXT4fd_WKeR1cE-hlLelCQAAAAAACi_9XXT4fd_WKeR1cE-hlLelCQAAAAAACiJjoXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcoN6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcnH6tVKI4mSYDEJ-ABAIpYXcgAAAAAALqeS6tVKI4mSYDEJ-ABAIpYXcgAAAAAANs3E6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTQA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMTEA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMS4s", "types": "DQMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PcOQ99O4RLe8hzXLIXv3cg"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPkzPBPi0X-wl-PUEBtNL3SQAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIHT1vQdc0XC0RoSXqyJlYhgAAAAAAAAALpYJXWbdqO_EwCki56aMNwwAAAAAAAAFsVp62M-dk3XvfozDfnsnw9gAAAAAAAAAG-vBNy6YNq9pF5j5Mm7smkwAAAAAAAAAFno2Lej56mJkbwdNYz7YGSQAAAAAAAAALn5uztEwS7m6JKpJbGoHSGwAAAAAAAABKzwiX7AgVqL-aPC-SuEi6CAAAAAAAAAAHuC86pFXXnBLCj6eRRljPDwAAAAAAAAAQNc9gj1rv2NerZVTmjxTx9AAAAAAAAACG5gRif6Sjt0HHN5TwyiXUJwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAqMaIQHwhzmbCa4rmJIpC-wAAAAAAAHnqtQgAmBJBgPLrkikSPRsmtgAAAAAAAOb86tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimtb6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOK46tVKI4mSYDEJ-ABAIpYXcgAAAAAAlcA76tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbdH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlWJ36tVKI4mSYDEJ-ABAIpYXcgAAAAAAlsoG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlrp96tVKI4mSYDEJ-ABAIpYXcgAAAAAAloik6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlj9e6tVKI4mSYDEJ-ABAIpYXcgAAAAAAir-H6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEtZ06tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMZBQIDFAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7WB2ChzRmsP63O7cEov2qw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAAANEYZ8PNZPmqz6_Un9Ip-JvgAAAAAAAAAByLv9DMBixVWU9oUL6785cQAAAAAAAAABRomRVdnE3C95h6xZqdKjpQAAAAAAAAAE", "types": "CAMMBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Aq5HJRyvf0tzNYqtMdi3JQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACXFDHy--PvgHpUWFquuqO7RAAAAAAAAAAA", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "paq17JnBHQOEskwFc5mgww"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIoVZ3CKaS4aU08RhYA19y5ITQAAAAACtIeEZ3CKaS4aU08RhYA19y5ITQAAAAACtOs8Z3CKaS4aU08RhYA19y5ITQAAAAACtOfH", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9PStVBMpTyifWDjuM_1F9Q"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACamW1QO3T5kZR72H8FRXCCwwAAAAAAAAAA", "types": "CAO-BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pXACL2-jPjXQBG18kGP3iw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAACwH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAA", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "djYzyWbheYppCF6OFaB-rw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3xUoecROrzaoP-M_aH62GoQAAAAAAAABinG9wLCiLPO8YY97L1OXEbAAAAAAAAAAoLT5lr845yiJBLJcYHx5FbQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgg8ia7_SjtnnoFsx8t6EVmgAAAAAAAAACS4pDMZQIDu6mVxa95R8FGQAAAAAAAAAdh2McnzqwfbL5yBZRK65EugAAAAAAAAAM6XZVqwgpvPEDrDCTrE9iAgAAAAAAAAAI7aqMkhc14ipFteNGQMekfwAAAAAAAAAFBzUZDRcpQTRRSSLENpOpZgAAAAAAAAAJWGL3b6si_6bQM5Rqh6u3iwAAAAAAAAABYoBRvyLd18NJezoAzYDBWgAAAAAAAAADR8J-NKdRXmfXHHCKNIVxpAAAAAAAAAB7Y42fk-Ms4CyfeVg3LVDZpQAAAAAAAAAHcx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAARcx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAARcx1Cb2iE1tlEWSNW-FwFJQAAAAAAAAAjGGktJAfchjJGzHnNP7Em3QAAAAAAAACPh_r9uFHZsC57ztTXanIIagAAAAAAAAAgF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdgBfy_HlKLdmt8WRkHo7DCQAAAAAAAAAIiO_uh5Oy6QpicgP1AW1lOQAAAAAAAAAG8hquOE5UjuqbQKed-OMfiwAAAAAAAAARWNHUiu4BFqRVmqF_mtCsFQAAAAAAAAAD3r-tlbWKH7Bh4O96M6j3bgAAAAAAAAAW4hOS6AZiF-c1H0nqUa2YTwAAAAAAAAACVUYArEzzNVQi01EogS1TBAAAAAAAAAAQTyjOQJEVS6q07p3TumnstAAAAAAAAAA8I0sQlDh6FUXeNLWFZDQN2wAAAAAAAAAPj30Xm5pao1UwDtxwoCPwUwAAAAAAAAADiTy0H527yiJJbCWjdQs3bgAAAAAAAAAj_Ire-VQUS1VTfaZnl01nEAAAAAAAAAAA", "types": "CAM1BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0UeOgQYKC7zcrsZ5ZxtGIg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAWZvnSEZ6hxckmxa-z2abTjwAAAAAAAAABPzgNbb9CcFUQqKGC4zwW-wAAAAAAAAADadP6bWu7ULef518P5KHVHgAAAAAAAAAD8S_Sv-2Ysy5dt1ARF624ywAAAAAAAADWABdFbtTJmESgWXLD37lp9wAAAAAAAAAM", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6z5XvcuxP2TQmMVJ9Pasiw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAGyVtVXhl6s6URamlTOMTdcGgAAAAAAAADcdxb67a9pdOnwKSyUl3yo7gAAAAAAAABufpY3a5I7d2TNV30MyBAVjAAAAAAAAAADVLNKXRlo71TPwzNBwGNhEQAAAAAAAADaCIJa2mPNm8b1wwJ_UCRwpAAAAAAAAAAFjWxMhVzBeHM3bqEF5ueSZwAAAAAAAAHSa6qkY_hGF4SgNNFbdqPl-wAAAAAAAAAK", "types": "CAOGBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LdtY_NIqhiA3emudSaygtQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAGyVtVXhl6s6URamlTOMTdcGgAAAAAAAADmmuP6clMnO_x87qmA5qXiUwAAAAAAAAAEV9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAhxB00KDzyoofk7hNv-bTuugAAAAAAAABHd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsSidn5oJ7A2M_efsiHDz05QAAAAAAAAAT0_jShB-DuV77HIBPKqBRjgAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBAZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMoavQ7EacG6CR4rzcFaNFEsTQAAAAAAATs0", "types": "CAMxBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Rhx-kyzSwrzzbVrVZ_XCyg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7r0XT4fd_WKeR1cE-hlLelCQAAAAAAC-0MuXT4fd_WKeR1cE-hlLelCQAAAAAAC-1HEXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "An3C9eVMXyiMNHRbyJ92Bg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFu1XT4fd_WKeR1cE-hlLelCQAAAAAACiGo2XT4fd_WKeR1cE-hlLelCQAAAAAACiMiTXT4fd_WKeR1cE-hlLelCQAAAAAACiNLV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZ8", "types": "FAMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "99BgVVChjb4P4hAXrcSmGg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgo0", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6qn8dRThwMb4sKyHdsYIBg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgKh", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yhXdoqpEpMhseJBw06VOcw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBOeYxe-SHgukLEpCkawSk1QWAAAAAABWB4EYxe-SHgukLEpCkawSk1QWAAAAAABV_5R", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "860tvNw0EZMCDcPC0s5-KA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIoVZ3CKaS4aU08RhYA19y5ITQAAAAACtIeEZ3CKaS4aU08RhYA19y5ITQAAAAACtOo1Z3CKaS4aU08RhYA19y5ITQAAAAACtNW2Z3CKaS4aU08RhYA19y5ITQAAAAAB0mf0Z3CKaS4aU08RhYA19y5ITQAAAAAB0j6eZ3CKaS4aU08RhYA19y5ITQAAAAAB0kMJ", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6NkVutVoJ0m5j8aVYyp0Lg"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAACKf_a_qdoBA55O8a7qgwDK7gAAAAAAAAARuZeXOJajIKqLKk4-05Cj8gAAAAAAAAAIfx2qpzR4SW8k6QF4h_x-lgAAAAAAAAACXWhZGeSVw3QL-gA2NjTItQAAAAAAAAALcrJxfOZekEO297SoXoFNvwAAAAAAAABEz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAABWdZbEvj5KNLRaqtv4ShlGOgAAAAAAAAAHAvY-8GTrHONLnLoYn_aUmwAAAAAAAAAl9iPPrg1Y9vtWhMk7mXQ_KgAAAAAAAAAeuJZrofYGiqBpYJJdGGtLHQAAAAAAAAADzGZ_gCn-Ge9oHmah2m0JWwAAAAAAAAAD2p4Dyo36Ea--rGgiVt2H5QAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhZsqFV6xhVekP5-uToPI32ragAAAAAAjkGpqFV6xhVekP5-uToPI32ragAAAAAAjkBL", "types": "CANSBQYD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HRl0p2QhnLJg3zvMHmkZqg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACguWEXT4fd_WKeR1cE-hlLelCQAAAAAACgu5OXT4fd_WKeR1cE-hlLelCQAAAAAACguZA", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UsBNmnLs0et-noTkkUwfYg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGBROz5k14PsCcDvFyUC1kmlV3QAAAAABGBROz5k14PsCcDvFyUC1kmlV3QAAAAABGm-M6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvyz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEvo_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0qy6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "AwMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rfbDR_zpgC01-kkTCN3O8A"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADMb6rO_tpQt622H0nBBuO6SAAAAAAAAABQk_y3LYF-5hABRlK2M6mO7wAAAAAAAAAQQnopTe1pxTR1kVhVN4qn2QAAAAAAAAAjrUHBgSz_SQE-q7C0lnDupQAAAAAAAAAJ6dizidRtpqcGmpShAjzttQAAAAAAAAAVXzWVAFfWPkx_-5DzBgosgQAAAAAAAABhtzBcwDe6SUq4Jkyew2O5egAAAAAAAACSdT5WZm8-ag4VFDZf0HaaMAAAAAAAAAGyADx42ASEgg5CGZav2t-yuQAAAAAAAAEQzdNMqH5FJokP-kpdb9WNRQAAAAAAAAAJYMf1vN4Xj82X8azesbKqWQAAAAAAAACp", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7bAi2ETLik8HmJW4q-mO5w"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrkykgtQ4kMk_MBWrPUAFqVnYywAAAAABq7bsgtQ4kMk_MBWrPUAFqVnYywAAAAABq7GYgtQ4kMk_MBWrPUAFqVnYywAAAAABq5-UgtQ4kMk_MBWrPUAFqVnYywAAAAABquJbgtQ4kMk_MBWrPUAFqVnYywAAAAABrpBf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuoD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00i6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp0yh6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "BgMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vQXtdmIzgIVlhx1gewz_RA"}} -{"Stacktrace": {"frame": {"ids": "CHB6oSdNIPFu3CdR74BZKQAAAAAAAWJM3aS07d9PG4lc4UzuBbVWzQAAAAAAAiVUCHB6oSdNIPFu3CdR74BZKQAAAAAAAV9bCHB6oSdNIPFu3CdR74BZKQAAAAAAAYh2CHB6oSdNIPFu3CdR74BZKQAAAAAAAXUECHB6oSdNIPFu3CdR74BZKQAAAAAAAf4QCHB6oSdNIPFu3CdR74BZKQAAAAAAA1izCHB6oSdNIPFu3CdR74BZKQAAAAAAA7YE3aS07d9PG4lc4UzuBbVWzQAAAAAADvuf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUey6tVKI4mSYDEJ-ABAIpYXcgAAAAAALUbi6tVKI4mSYDEJ-ABAIpYXcgAAAAAARNmC6tVKI4mSYDEJ-ABAIpYXcgAAAAAASdS56tVKI4mSYDEJ-ABAIpYXcgAAAAAASdLN6tVKI4mSYDEJ-ABAIpYXcgAAAAAASg_e", "types": "CQMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ccuRE7rvGbylFOE2-Vdm-g"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEge1", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OtPO4_Cde7GWru30XAUPmQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAe", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tbbZI-xVBmxiBDej_7HL0Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAACla1eXT4fd_WKeR1cE-hlLelCQAAAAAACiGkc", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kJQF0B534N8TwJ-_OUbvmg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2q2cEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxk0cEvvhuguaGYCmGWrnWRz1QAAAAACEPwX", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Wv08CwSYSbgcSoEXkrZnIg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAADZgiwOUz_dwg5QpZ6rn_mtEAAAAAAAAAAaRZMfsbKLC34Px2zwyEaSpAAAAAAAAAAGK61z3xaGK-rHqmHBTOYNcwAAAAAAAAARSjz2MvPusgDd7v_6YUXcPAAAAAAAAAC1J4eQqgwFH8hGziiVTbtiYwAAAAAAAACOMbaOnaCMmj3Z2Dka8DRidwAAAAAAAAE7vMJZLefDDDN7jSsJGIx5fAAAAAAAAAAxpz26RZIIszjYMjtzkRg4ogAAAAAAAAAZzNY_7kuj5TrHQiu0CpuFwwAAAAAAAAJH1jMIzao1j_0QiwXJErC9HAAAAAAAAABLFyG2HNXib0Q1YozSvSpDTQAAAAAAAAAELTxw759oo7wfqcvtU1kXsgAAAAAAAAAnEud0aohygkGfExKi-EplqgAAAAAAAAAWo0OVH2LBiDEc9yJITJL7oAAAAAAAAAA2sGMl0uQdZmivfjDBknufQQAAAAAAAAAFhYwcxK1EdaxISUobp_tMjwAAAAAAAAAF8cgcru2hcpNC8YThxIr0JwAAAAAAAAA0uhX1qfoGgATHLd0SFlL86gAAAAAAAAAmH4wLIDUJzMk9KyyjrPk2ygAAAAAAAAAOB6mir8n4FiOVoo_Mi_OXUAAAAAAAAAAGa7bXmZCbO2Dg3KIPM4uRowAAAAAAAABWwn0esIyl5_S_ADn7eZG1ugAAAAAAAAAUui0zBdPWvUVNqTnLKt7UfAAAAAAAAAAcreibzva0w_a6QPBPCu7Z3QAAAAAAAAARjYtuEYuQb3JZww9R88UtFwAAAAAAAAAQ", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "A-XVDxnDwU8uNV8SIPsqYQ"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBOeYxe-SHgukLEpCkawSk1QWAAAAAABWB4EYxe-SHgukLEpCkawSk1QWAAAAAABV_9XYxe-SHgukLEpCkawSk1QWAAAAAABWALYYxe-SHgukLEpCkawSk1QWAAAAAAACp-5Yxe-SHgukLEpCkawSk1QWAAAAAABWCak", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "E4k8bw63d-M6fpFO-uzDXA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADMb6rO_tpQt622H0nBBuO6SAAAAAAAAABQUpQJVab1XLdEqsPt4Ey6RwAAAAAAAAAQQnopTe1pxTR1kVhVN4qn2QAAAAAAAAAjrUHBgSz_SQE-q7C0lnDupQAAAAAAAABM8VQNjJHt4dBRU5VSN3KkiQAAAAAAAAECfEW2ISlTz6bBNQ3Y_nEaswAAAAAAAABDdT5WZm8-ag4VFDZf0HaaMAAAAAAAAAAR68Kd2F2G5cbeqk2uYg-UgAAAAAAAAAAHy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGb2ckm-0wQN1Adu_SQOHiPwAAAAAAAAAfuCrYcJJKClqXMP74KTJEhQAAAAAAAABGnhmHJ7tDh78T1V4XRxeuHgAAAAAAAAAXC7K-us0mqSTOC05nudRrpwAAAAAAAABnGf_lEMENHnxizeBtMQocRwAAAAAAAAABsYYc1wpJMhBB0VxP9JiigwAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAHLNpp6LgRqCGeGjs7cnnwItcAAAAAAADsrW6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADqG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzyw", "types": "CAMqBQIDBAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "unr_AT5uIzeOxUG_JOGaZA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAA1OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADUR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAAAA", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AP03oXWkrXH194nvbfv1DA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcNBj", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Jvc_WE7B1F8hMVB_gxFucA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAc", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TCS0frHA5BpnX_dWNuYGnA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAEWwtUXT4fd_WKeR1cE-hlLelCQAAAAAAEWwzbXT4fd_WKeR1cE-hlLelCQAAAAAAEWw9ZXT4fd_WKeR1cE-hlLelCQAAAAAACnxaWXT4fd_WKeR1cE-hlLelCQAAAAAACney9XT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhGkXT4fd_WKeR1cE-hlLelCQAAAAAACnfVEXT4fd_WKeR1cE-hlLelCQAAAAAACnhjWXT4fd_WKeR1cE-hlLelCQAAAAAACjs1kXT4fd_WKeR1cE-hlLelCQAAAAAAChrznXT4fd_WKeR1cE-hlLelCQAAAAAACgaXEXT4fd_WKeR1cE-hlLelCQAAAAAACgXTYXT4fd_WKeR1cE-hlLelCQAAAAAACgVqNXT4fd_WKeR1cE-hlLelCQAAAAAACgUoxXT4fd_WKeR1cE-hlLelCQAAAAAACgURkXT4fd_WKeR1cE-hlLelCQAAAAAACgT3kXT4fd_WKeR1cE-hlLelCQAAAAAACgeSuXT4fd_WKeR1cE-hlLelCQAAAAAACgetm", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ohsTjz0QiBj_Cb9rZpyfbA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAANSF3u75PFaKMThRw4BoUVwCAAAAAAAAAB3JzR1Che7ZkqwAcPrDIhJHQAAAAAAAAA2414vwxwFz0HV2Ku4dzYYowAAAAAAAABPlF0402c3xDTaGy1WpLy7vwAAAAAAAACHmElwt1Dp4YSxqVbIbt9WBgAAAAAAAAAEgG-E_4fA-ZwbNoblYcK9MwAAAAAAAAAmmKHXf_yVcw9ZXg_JH2MAwgAAAAAAAAAUAxGO45I5QETSU0lqfKJFawAAAAAAAAAXCRg6QlL2uey44K0aGTfMcwAAAAAAAAAAqjB_amR59Lv13Nhle_NwbwAAAAAAECca6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAADRGN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADRFy6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwzd6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMHx", "types": "CAOHBQEDBwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "e6FoyrtZm_iaPN3JoyL3hg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAABBgAjLw4sEs_2ehMm81jWXvQAAAAAAAAAF9goQ11F02KQtwdhcmO_EIwAAAAAAAAACHNFap0j4_fIXLZ9fEQkYlQAAAAAAAAAFdjyMPZKC5WBOgAHuGtQGlwAAAAAAAAAEkwRiyOp4rW0qzxA_tBFHXAAAAAAAAAAVAgfDpV6vLB3qRqGnzt8JNAAAAAAAAAAafHaZ001JZ1ywpBrkutBhrQAAAAAAAAAEGpOJia9rC5mDpg562282RwAAAAAAAAA5LdJVHM3jWUnd1dzZ7uYM4QAAAAAAAAACevwcpll6X6Wd1cgXpKnKiwAAAAAAAAABAAAAAAAAV4sAAAAAAAAAHYXuSio4gqgnYsnZ_Lwaqr0cHEPo0D185QAAAAAA04VIYsnZ_Lwaqr0cHEPo0D185QAAAAAA5p6UYsnZ_Lwaqr0cHEPo0D185QAAAAAAvtnVYsnZ_Lwaqr0cHEPo0D185QAAAAAAvsxPqjB_amR59Lv13Nhle_NwbwAAAAAAGLtB", "types": "CAMUBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JrCc1ySWaMhrJB1f8olPDw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHwQXT4fd_WKeR1cE-hlLelCQAAAAAAChHqEXT4fd_WKeR1cE-hlLelCQAAAAAAChHQ4XT4fd_WKeR1cE-hlLelCQAAAAAAChF4kXT4fd_WKeR1cE-hlLelCQAAAAAACg6T7XT4fd_WKeR1cE-hlLelCQAAAAAACh1MA", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ccyeq1IpEdYyyzMGVkI9Ag"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAAAbFB2lbICPeg4uVJ_bp0LkUgAAAAAAAAARz3imu7TppL2XUId5Y_cXQgAAAAAAAAAGNcIQR2c5Ob8K5vbpAkilygAAAAAAAAARQMO0tOc9LHhoVe-iumAfmwAAAAAAAAAA", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lSo6n255V9zP1aYcLPpfmQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAADAEguNCcnmVGnXNe9OvbpF2wAAAAAAAAAyyH_ohM36PxcsspBj9HiisAAAAAAAAABUZZqFVPfJM-LkfzPbeaoP8QAAAAAAAAIJZ0TAJMiD_AqT3npr7YiRAgAAAAAAAAH4AJ8qrcXSoJbl_haPhlc4ogAAAAAAAAACX31knMc676bIIEUjaHa0MQAAAAAAAAADTozXD2NzMy0dEH0e02djYAAAAAAAAAEKeRQqY-uKn1zCanFBx5tpKgAAAAAAAAANLaFl4epk0Q6S_D_8elQACwAAAAAAAABjd55u1lPodAfLflRouVTMDQAAAAAAAAAGd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAOPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAM0GYsnZ_Lwaqr0cHEPo0D185QAAAAAAkYHk", "types": "CAMtBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ZjlOM4tBu1Fp11Fh5nR8-w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAABzzXvjOvDFEHH50WhZ8-7e_gAAAAAAAAAMxhOAoPbUvqtSdEcy7uoPXwAAAAAAAAAFeXimxJw4055xWDImg8DzoQAAAAAAAAAq5Dz1NwJhW8tUTolfpVyg2gAAAAAAAADhGmYMrqcymh2Li0OrBJcg8AAAAAAAAAB-Yl3DUlOurecWUHGWEri9qgAAAAAAAAALs7VKGxcbaRsZOEk0pfn1eQAAAAAAAAAEjcM_4Dl2NGfu-G-e5pBI8wAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAIWZvQ7EacG6CR4rzcFaNFEsTQAAAAAAATPL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "CAMNBQIDAgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LC6mVf6FPr_kqWjuiJLTRQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAAW9wONEswsASRmLn53bq8pOwAAAAAAAAAxZiy0GwbDorFuNEuEb935dAAAAAAAAAANnP5Trt-dKjuqAt-_lVvSZAAAAAAAAAAjmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC33kqKIOk7SslvcfRGmqs1wAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAkQz9ZSkKN3zNxr0HYuO2pqe5hQAAAAAAvgDb", "types": "CAOCBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YxNEfLJqeU0ck91JlIJDyQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP6w", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5ddNwsq9oH1jvVfHsja-nA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAHX_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAghM2MvVjBki678lZWhHxDlgAAAAAAAAAA", "types": "CAMxBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WXO05qRm-L5_dLDd84meuA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAAYywctG_sMzzXt8DhXRU3jGwAAAAAAAAAfO0QBRq09v03gOY7wcqwe-QAAAAAAAAAEWV6g6bHiSUaQ_18ghJ6gvwAAAAAAAAPqzVl_JFLMBO6_XcJyl0ewxwAAAAAAAAEJAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rW61i2rZH66wSQyYlV4AKg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQJvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACeySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAYh-mcFcSefWaXpPLGLAmk8gAAAAAAAADYzXY2fMPD2q8JxxSeQ4an4AAAAAAAAADb1ajhlpq_ffaY9SZwO_yFvwAAAAAAAAAMbYR0b7-vTQ0RKJD6ns3ClQAAAAAAAAAG5WRkp3UGiY89oONYWWfHqAAAAAAAAAAtidAHvTfpCa_Lill3CvLIKwAAAAAAAABUtknRVtdrp8TkRV3X6AJ-KgAAAAAAAAGx2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAB2", "types": "CANBBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Sx2U9dpgshF4QL4T5gZ6MQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcM4l", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pzPHOZ2KMa2AZ8PFjN6JMQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP_Up", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PEG6EskooaHoKsVK7C4oiw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYRr8mF3o9czEU_lrcVazITQAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAHVRV3OqaPHH0CL0c13xlvAwAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABbjYv_loUJfP4bAxHmRpfBQAAAAAAAAAI_avzkz28Qok2WNYNUK8x_AAAAAAAAAACHRX5ZF5fIW1GKCXf3a6CmwAAAAAAAACtBTDQHzxuOEAYM78jOAyAQAAAAAAAAAB3t7DkRGcQiDMfHx06PCzMpQAAAAAAAAAXYEThj3UEuGl2wDiJSq9vSAAAAAAAAADmjckGVFRAvWURR3kz1QpfwQAAAAAAAABZQUM3v4ew-jMVuKkpISsPEAAAAAAAAAGi6iNgA9fR_bPjg3gsO7FxQgAAAAAAAADeWKOnV4dhtUKFY7wtM7-RyAAAAAAAAABRH2QTzkKMf4VE2_HyfX9GywAAAAAAAAAOUX0maaM_jFdAmFMbhLpaSgAAAAAAAAANVydXcSmOqICsVxLpiPFyCAAAAAAAAAAhxWXbvqcob2cyNB-_TJKbYQAAAAAAAABZ2RFqiy_TIF9Ivmg849R6KQAAAAAAAAAYm38Gzass7BaV99IOvdPsWgAAAAAAAAAFawaK319bKiHtaKZV9KHt9QAAAAAAAAAXKP7ul0MvWr6g2vIy7Z-XSgAAAAAAAAAa-esrZcmh9SBGSSEFHAV1fQAAAAAAAABxLShh-9O-ab8ob4gfeH5zhQAAAAAAAAAfN1PQDu1Ay8cMXPJ8jF7fCAAAAAAAAACumbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC33kqKIOk7SslvcfRGmqs1wAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAkQze", "types": "CAMrBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "b656ShIEq9w_RkKDz2WXsw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAqeSs1xpPdaQi6BA9wz10SrwAAAAAAAAA5TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABbXyIB1JXxkoOQjMae8CICgwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAAGWPvmhnzBPbydWF_wVFKbYMwAAAAAAAAAA", "types": "CAN5BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QIUi7r0lX0T7lggo-V8-5Q"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2q2cEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETdScEvvhuguaGYCmGWrnWRz1QAAAAACETxWcEvvhuguaGYCmGWrnWRz1QAAAAACET4S", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qD_J237PVcJWQeJzWEaj4A"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ1K", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_j480Qg9v5TNK0lQGeFwAw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-aX", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "B5zce_f4N45Itu5RhOF9CQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEger", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DbsdNQcghdeUQULeZY1Wfw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFmUdcEvvhuguaGYCmGWrnWRz1QAAAAACExXncEvvhuguaGYCmGWrnWRz1QAAAAACEUlp", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1uwRNa4999k1DkBivtvQiQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFJSGf2yEAEhxiBfW1U6B9NgAAAAAAAAAEv-dzrDzLbKAbYGTnBhfr9gAAAAAAAAAM4iaBbZIIwXRBOYMSVscz2wAAAAAAAAADf5pCmW13zl5OWUDLG_ClrwAAAAAAAABNynHqfILVzOOqJs-5yJf4gwAAAAAAAAAeU2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAAAj3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAABT", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "t7wSwGaTC42K8TqyqrWQ8Q"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbQ5Yxe-SHgukLEpCkawSk1QWAAAAAAAFznNYxe-SHgukLEpCkawSk1QWAAAAAAAFzx5Yxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHafM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrj_", "types": "CwMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0gtJm_g6i_TRRAKd_qakTw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-wCEXT4fd_WKeR1cE-hlLelCQAAAAAACkR-sXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdCc", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9mRMBlsO9IKvKzWL8LqfoQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAGyVtVXhl6s6URamlTOMTdcGgAAAAAAAADcdxb67a9pdOnwKSyUl3yo7gAAAAAAAABufpY3a5I7d2TNV30MyBAVjAAAAAAAAAADVLNKXRlo71TPwzNBwGNhEQAAAAAAAADaCIJa2mPNm8b1wwJ_UCRwpAAAAAAAAAAZQzMU8x58pu8LAFTJ6bQCOwAAAAAAAABnd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsSidn5oJ7A2M_efsiHDz05QAAAAAAAAAT0_jShB-DuV77HIBPKqBRjgAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEXnZcAdwBOPPRQ2hQm4YWwWgAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlsbpYsnZ_Lwaqr0cHEPo0D185QAAAAAAX2RD", "types": "CAM1BQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jIUkkqlhs_xaucQSfOkxdQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw2HtXT4fd_WKeR1cE-hlLelCQAAAAAACw1EEXT4fd_WKeR1cE-hlLelCQAAAAAACkHGIXT4fd_WKeR1cE-hlLelCQAAAAAACkMJg", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "VSiIga6kK669vm3_VFRBxw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAABu1IhEUKf_PDCxfheapNhvQQAAAAAAAACI7RFhYe_NpS241I1rFVDmNAAAAAAAAADfyLcvbV13CtkdfmXNFFed3QAAAAAAAAAHLL2AmHorGMGLHFvQ3KWNRAAAAAAAAAAVYl0e-EP0-MS7g2nq2fud-QAAAAAAAABBThO8_KuTmwWmBlUmunfBRQAAAAAAAAApPi-02an-VcSObLNuz_uUNQAAAAAAAAAF7e32DwxqF0KavchyqVkOEgAAAAAAAAAgwQ_ty31z3DmE5XjxpCpS5QAAAAAAAAAk", "types": "CAMnBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9raaEJOc-xp60E1LDA7XaA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACaiPVGKFSJxOxxesodHaSqSwAAAAAAAAAA", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oZgJu0hCy8YZbrC7PCpVUw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB4q", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fUnBrD_WzBp45WRRoNXPpg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEWB9GVskeRyK4_o3XD61XIAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAqJzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAqdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABTAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TwXoXWu14wnNism8hup1ig"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFbojlkH6U8-uq6rXJn3yJDAAAAAAAAAAETKPAl4roVc6u9INGFwfp_AAAAAAAAAAM4iaBbZIIwXRBOYMSVscz2wAAAAAAAAADf5pCmW13zl5OWUDLG_ClrwAAAAAAAABNynHqfILVzOOqJs-5yJf4gwAAAAAAAAAeU2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAABU3F2z0U59C1y3O1vSXqnJygAAAAAAAAAc6_xlTgG59vnh1ZByxJjaSwAAAAAAAAAS3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7jgrYi9xWKJVjQJiteksdg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATRsvOFqC3SNzn_pRUkwD1yQAAAAAAAAAKmVg5ImyOXWtTMPsPyAoJFAAAAAAAAAADeCd7pmEC4QoP7FQm1ikosgAAAAAAAAGVws0N6fTgPArljYYAC403MwAAAAAAAABq82-lh_T5Vv0w2WAb_RJ1VgAAAAAAAAAIuF_V7TH-mukdED5BHxc90gAAAAAAAAHcC_0aTeR6JBYKeG8Yqz7OGgAAAAAAAAETljpmjACwvo52D1nC2cyFxQAAAAAAAACDvDU7E1ww8G9noy7HUAb7kQAAAAAAAABatrKFSvtlxO979VBLgP3FPAAAAAAAAAAvgs-Dp-bkHGP2EKd53eqOEgAAAAAAAAB-7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAME67ZApSKF_tBH-bAhOXBNxAAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5EXm1hlIrQc2WIKO4W87lDAAAAAAAAAAfDm9DG4ZqDn_4bGJnyMFN4AAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEXnZcAdwBOPPRQ2hQm4YWwWgAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAkQjo", "types": "CAMyBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GabuPwfXa70OHQ02xp-bDw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA8Q1rqFV6xhVekP5-uToPI32ragAAAAAA8QfAqFV6xhVekP5-uToPI32ragAAAAAA0UkXqFV6xhVekP5-uToPI32ragAAAAAA0ReVqFV6xhVekP5-uToPI32ragAAAAAA0RkrqFV6xhVekP5-uToPI32ragAAAAAArMaeqFV6xhVekP5-uToPI32ragAAAAAAq-JpqFV6xhVekP5-uToPI32ragAAAAAAq-7v3aS07d9PG4lc4UzuBbVWzQAAAAAABudC3aS07d9PG4lc4UzuBbVWzQAAAAAAB5lH3aS07d9PG4lc4UzuBbVWzQAAAAAAB7sN3aS07d9PG4lc4UzuBbVWzQAAAAAAB6Ly3aS07d9PG4lc4UzuBbVWzQAAAAAADvu86tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpUUbK4uezrplMLlSw0h87XfgAAAAAABnsXUbK4uezrplMLlSw0h87XfgAAAAAABngO6tVKI4mSYDEJ-ABAIpYXcgAAAAAANbNN6tVKI4mSYDEJ-ABAIpYXcgAAAAAANbJX6tVKI4mSYDEJ-ABAIpYXcgAAAAAANcy76tVKI4mSYDEJ-ABAIpYXcgAAAAAANcnq6tVKI4mSYDEJ-ABAIpYXcgAAAAAANbmJ", "types": "EQMOBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Z4iiv5UxRhQpx3JPtDse_Q"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAArGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABB5KDO11BWTfkkFO9MFEbTJwAAAAAAAAADoyUgxxOY520Rj3U8w5GHoQAAAAAAAADS_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhdM", "types": "CANPBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "idsijnsI-3EEcw8J1DhUvg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-THxcEvvhuguaGYCmGWrnWRz1QAAAAACETdScEvvhuguaGYCmGWrnWRz1QAAAAACETwkcEvvhuguaGYCmGWrnWRz1QAAAAACET9icEvvhuguaGYCmGWrnWRz1QAAAAACFt8f", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-G51CEezafd_J98dgV5JgQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7zyXT4fd_WKeR1cE-hlLelCQAAAAAAC-8B3XT4fd_WKeR1cE-hlLelCQAAAAAAC-ykpXT4fd_WKeR1cE-hlLelCQAAAAAACp73vXT4fd_WKeR1cE-hlLelCQAAAAAACilHeXT4fd_WKeR1cE-hlLelCQAAAAAACinctXT4fd_WKeR1cE-hlLelCQAAAAAACinbEXT4fd_WKeR1cE-hlLelCQAAAAAACinNYXT4fd_WKeR1cE-hlLelCQAAAAAACp77wXT4fd_WKeR1cE-hlLelCQAAAAAACgIeP", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Fn2Ai3DCNmO1q3hi2Wb60Q"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMust6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuZy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMs6N6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtKO", "types": "CQMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9zCLbc3pKhchwVlW_zTLBQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZyw", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5kK1-2HMVYa08NL2RAHTaQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfxrm08oJc5xqpM1VweLZNZwAAAAAAAAEIFyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACAE1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABPXz55hy-jKO48vnZBfsLxxgAAAAAAAAAE_v4rMkGY9KRFPld8us290AAAAAAAAAAEqGs-5c7rr1dopGxSByMUNAAAAAAAAAAY-ONwHRu7OfgV9W2gyM5rZQAAAAAAAAAmhhKEJNzg5B_JhARG4cFP2QAAAAAAAAA2", "types": "CANCBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XI0a5uYy8WGcbycZNNF9pg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjD5cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLmm9cEvvhuguaGYCmGWrnWRz1QAAAAACLkFQcEvvhuguaGYCmGWrnWRz1QAAAAACLqEdcEvvhuguaGYCmGWrnWRz1QAAAAACHg7-cEvvhuguaGYCmGWrnWRz1QAAAAACHkx7cEvvhuguaGYCmGWrnWRz1QAAAAACHaAR", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LZbycaXCeyBUz4EBiDGWbA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAABrpZFZt3AmSRe8cuNGaxoM2QAAAAAAAAAFn7D9rF39YwNZHp3pgAyGywAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAABtRaKCDne9fKuTHuPgmdhjQAAAAAAAAABVg8LgIqDa3ypsQ0qV00ZvAAAAAAAAAABLH5Rq2KMtk8z3fPDJ8fY-QAAAAAAAAABgfC602LFbKzsHJ9-hYzAWgAAAAAAAACeDYrMILhc4lwyEL8JryGqLQAAAAAAAAAA", "types": "CANDBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BN1QyTRWZUfNNPVd_m-f5A"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyFRZ3CKaS4aU08RhYA19y5ITQAAAAABtxRqZ3CKaS4aU08RhYA19y5ITQAAAAABtnohZ3CKaS4aU08RhYA19y5ITQAAAAABudIf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuoD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00i6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp00D6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "BgMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iL4-l2lLaZN3l2HTgJnKig"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcRUYxe-SHgukLEpCkawSk1QWAAAAAAAAUHWYxe-SHgukLEpCkawSk1QWAAAAAAAAD9g", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PbvkExxuXir8i2DmyuUgsQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAABbw1YwyK3qUUqndS_KOv4yZgAAAAAAAAAM9hAOHgmwWWwZTwO4K132QgAAAAAAAAAevtOmTuUGvKYiQRK_O9kHuwAAAAAAAADPi_JW0SMBS0hXEJxPvmBaaAAAAAAAAAAEOZxONNyjsCoLhus8PcYThQAAAAAAAAAFm-i3pqvNoPRjOJ3b3sEiiwAAAAAAAAAEs9MntjdT5XiNr-rHeRcTvQAAAAAAAAABHkjUMaOAIgy5n-g5-Z7RMgAAAAAAAAAA", "types": "CAMTBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SaK90oQRsfih9wvkMg2Xgg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHphgz5k14PsCcDvFyUC1kmlV3QAAAAABG-csz5k14PsCcDvFyUC1kmlV3QAAAAABHCmp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjgt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN7WH6tVKI4mSYDEJ-ABAIpYXcgAAAAAApymx", "types": "CQMLBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_zNN2R6gCnlCmrGYYAK4_g"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACXVSALBRPvgHpUWKmpUo1khAAAAAAAAAAA", "types": "CAO-BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g_bLJTesE_9jdes5CmhuIw"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjXzz5k14PsCcDvFyUC1kmlV3QAAAAABGOHuz5k14PsCcDvFyUC1kmlV3QAAAAABGN0Mz5k14PsCcDvFyUC1kmlV3QAAAAABGNmNz5k14PsCcDvFyUC1kmlV3QAAAAABGX71z5k14PsCcDvFyUC1kmlV3QAAAAABGSUO", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Jmaxos_Fbss7GX1ulltAuQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JL", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PUKA7gaaH9QtcEUOhnkXBA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAADQ1oyY5_H1XDxnqxtQutVBSwAAAAAAAAAE7LziU26eINk4gGAzQhjzRAAAAAAAAAAh-2jKAtgnT2KJwcbGIBrZTAAAAAAAAAAE7LziU26eINk4gGAzQhjzRAAAAAAAAAAhbdLIO9fg6Bsro1ZepYBZlQAAAAAAAABE", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_7SjIJ79HdCt2_IZxFKFsQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADH7dGXT4fd_WKeR1cE-hlLelCQAAAAAADH9wkXT4fd_WKeR1cE-hlLelCQAAAAAADH_GrXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUVuXT4fd_WKeR1cE-hlLelCQAAAAAAChz7b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwBJj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_Wr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAB_LS", "types": "BwMDBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rv7vsqjWP8SoKG0Qu1ylfg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAALY69pONqxP8-okyxfNdJq0BgAAAAAAAAAT84y2a9q7-onYC7ofRQhclAAAAAAAAAHbdVre-yWU3wOgyoQuLjZhuwAAAAAAAADcAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMMBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RarVOrNELjnQUHfPoLUVBw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wZOXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz9G6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzeZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAF1iY", "types": "EwMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Vg_UUeeyZsIQBEa6Nvh43w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAANSF3u75PFaKMThRw4BoUVwCAAAAAAAAAChS_wRvQ6F6la5_75vMxMUGAAAAAAAAAARd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsSidn5oJ7A2M_efsiHDz05QAAAAAAAAAT0_jShB-DuV77HIBPKqBRjgAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBAZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMoavQ7EacG6CR4rzcFaNFEsTQAAAAAAATsz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmz06tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0eQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0ZR", "types": "CAMuBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hGrtOHZgxPff7dF8x4aKsA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeX8F", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QjtKZoprzXCLbmVAEEoqNg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOpxFz17lb-voh9uZicvdXWAAAAAAAAAAgCpvjWyzlv7sy206ARLr_PwAAAAAAAABU", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bWkQYO8eq_v3XManPn1ThA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAfHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAHTryWt-l_RGzsQHaX4nMucAAAAAAAAAAA", "types": "CAMxBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2pZTlkqZkVB23pwCplHuMw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACX", "types": "CAMtBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Xekeer0c5o0XNQ05adBIWw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LMXcEvvhuguaGYCmGWrnWRz1QAAAAACETSg", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "C8RiWN9GOAWu10jfv-Iilw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR8H", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GPkYvKamsexuAvXWN9NtXg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_W56cEvvhuguaGYCmGWrnWRz1QAAAAAD-XTh", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OxVykxLrjAY-XgNQtErYDg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmrZ", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TtJhJ3zPw--x6TQzyvUSEg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATRsvOFqC3SNzn_pRUkwD1yQAAAAAAAAAKmVg5ImyOXWtTMPsPyAoJFAAAAAAAAAADeCd7pmEC4QoP7FQm1ikosgAAAAAAAAEKQO3p3TG-d9_GDkJGiXDItQAAAAAAAAAGHQlS1PvyNkxRJDriMlVDNQAAAAAAAABRnhhjya476W1WfBuGXQUi0QAAAAAAAAAHtOnLYqQcEe077mBYB3aqxAAAAAAAAAAEQQdm725dN4gfQaI1Q2V-1wAAAAAAAABW_93WPbrUDW14kcLWmrpKPQAAAAAAAAAG12nEeMsH00wjguIyHXaYDwAAAAAAAAAEM2N-LLw_gbVN-r7m25mjxQAAAAAAAAAMxHKAjQI4z_QmWS_76dx5rgAAAAAAAAABUjZjHDsJddCCPswXJh9zOAAAAAAAAAAF__e_ReExoac--V-RQeNXewAAAAAAAAAHqnkrTiN5YCts6ND7O0BX2QAAAAAAAAAPM2N-LLw_gbVN-r7m25mjxQAAAAAAAAAMqV2mmTrpEkQhVYmxROK3HwAAAAAAAAAFLY7tgvqAn-qe9CkDVBt8XQAAAAAAAAACo8_zIcJ_jqi5-Mstw26jrgAAAAAAAAAdxkve8TpR3957l1VqIfu39gAAAAAAAAAB8IycasHuDpn892i9ex9phAAAAAAAAAFz8wyHWaiozlb8fICne_VIJAAAAAAAAADrQ_fTsiDQn3AwPFHRHJfE6QAAAAAAAAAFiDeUqi9fXDm_fNSrL17LBgAAAAAAAAAA", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OqL1jazxhGNp3BmuN0BL6Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFJmXT4fd_WKeR1cE-hlLelCQAAAAAACxFPsXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qT_CR4Hw6yXc7SN2JGsRRQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAC3Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABB5KDO11BWTfkkFO9MFEbTJwAAAAAAAAADoyUgxxOY520Rj3U8w5GHoQAAAAAAAADS_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhZsqFV6xhVekP5-uToPI32ragAAAAAAjkGpqFV6xhVekP5-uToPI32ragAAAAAAjj8bqFV6xhVekP5-uToPI32ragAAAAAA7FEFqFV6xhVekP5-uToPI32ragAAAAAAZyQ7", "types": "CANRBQgD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bTwDM-MjmPXB3OC1RQFixw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bjA-twM-arP4DofwAmuiCw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiF-kXT4fd_WKeR1cE-hlLelCQAAAAAAChWmoXT4fd_WKeR1cE-hlLelCQAAAAAAChz-L", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Eakp9OVIhBxsZNnrdfGKYA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi09Z3CKaS4aU08RhYA19y5ITQAAAAACDf4EZ3CKaS4aU08RhYA19y5ITQAAAAACDf9dZ3CKaS4aU08RhYA19y5ITQAAAAAB9MVsZ3CKaS4aU08RhYA19y5ITQAAAAAB2nnMZ3CKaS4aU08RhYA19y5ITQAAAAAB2rFO", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Q1W8n5Cn-ifIaAP9BQF_Hw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAABzzXvjOvDFEHH50WhZ8-7e_gAAAAAAAAAMxhOAoPbUvqtSdEcy7uoPXwAAAAAAAAAFeXimxJw4055xWDImg8DzoQAAAAAAAAAq5Dz1NwJhW8tUTolfpVyg2gAAAAAAAABn2WuDX_7V5y0Pc0pDkF5WNQAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAHWMqjB_amR59Lv13Nhle_NwbwAAAAAAEfRt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "CAMKBQIDBQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9pkEB28Fu_-6ScaHtKhZrg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAdKZMYsnZ_Lwaqr0cHEPo0D185QAAAAAAdEYVYsnZ_Lwaqr0cHEPo0D185QAAAAAAdCruYsnZ_Lwaqr0cHEPo0D185QAAAAAAdJENYsnZ_Lwaqr0cHEPo0D185QAAAAAAch-B", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "w4AKEYruYsyRiuNl0wOumw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACuCx5RC8g9OTz7PgiGSeLtvwAAAAAAAAAOgY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAFyZ0m5K0hyRADeQkG90vP8AAAAAAAAAAzZ80ToqoZC1OOBoR__NmsnwAAAAAAAAAFXCoBIRW2zeIv8Jr12c2SPwAAAAAAAAACtmXftvn8hrcleDLJfptXeAAAAAAAAAAFoWAu7yjPEQWDBpYB2hRLjAAAAAAAAACEHL8EuHVSmvyyvO0QJQzjvAAAAAAAAACU9i4yH5hvA0rp4RuaXVKyFQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAMKiKQXI5stF5N-InJuXrsjgAAAAAAAAAEL4Zieid3nVkNJbdYJumC3wAAAAAAAAAPMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFTU7DQ3uAw_xM7DAGYMk_cQAAAAAAAAACMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFOa5CkhVOrx2r2YkOsLGOZwAAAAAAAAAeJUqoXh4FCdEByaAYgHthzAAAAAAAAAAKl_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAADUM3h48-oBMi00mRAqhB4IAAAAAAAAAAGdys1EWfSUaUc_VpYNxn9AwAAAAAAAAAN_AVVUX91IwF8UFsgz3IpgAAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlsez", "types": "CAOUBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MM2CztTXvV5i9K2i-2RGNA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66VkZ3CKaS4aU08RhYA19y5ITQAAAAAB65ViZ3CKaS4aU08RhYA19y5ITQAAAAABw46mZ3CKaS4aU08RhYA19y5ITQAAAAAB7Af3Z3CKaS4aU08RhYA19y5ITQAAAAADRyJbZ3CKaS4aU08RhYA19y5ITQAAAAABzIEpZ3CKaS4aU08RhYA19y5ITQAAAAAByyXAZ3CKaS4aU08RhYA19y5ITQAAAAABwOdiZ3CKaS4aU08RhYA19y5ITQAAAAABv1M7Z3CKaS4aU08RhYA19y5ITQAAAAABv3UA", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dSWElYBhPnO8A6dUDGPqZw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7RXT4fd_WKeR1cE-hlLelCQAAAAAAC-pHvXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN9jw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBhq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN9MB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAN8Pw", "types": "FAMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nngybL9jLob9MFAj_5uE0w"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbHuXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCM6XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HMhRkMthUzKnK3YLiu0DPA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7-XT4fd_WKeR1cE-hlLelCQAAAAAAC-pEOXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WD-Hox2mUf33ggVA1pZW3Q"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAAAjj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAek99M4bkjfKmg3-yt9HFm8AAAAAAAAAEW", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FhJv1Eqg9cSQinz3oYYW7g"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc5-Qz5k14PsCcDvFyUC1kmlV3QAAAAABcnaEz5k14PsCcDvFyUC1kmlV3QAAAAABakyHz5k14PsCcDvFyUC1kmlV3QAAAAABajTwz5k14PsCcDvFyUC1kmlV3QAAAAABFJQUz5k14PsCcDvFyUC1kmlV3QAAAAABFRLf", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wWr06tNuG4WxrmchIC2X3A"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYr1L9Bd3XIiGWasJdN8trI5tgAAAAAABV_dL9Bd3XIiGWasJdN8trI5tgAAAAAAAl0FL9Bd3XIiGWasJdN8trI5tgAAAAAAAKQ5L9Bd3XIiGWasJdN8trI5tgAAAAAAAq4VL9Bd3XIiGWasJdN8trI5tgAAAAAABckD", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IbZEnp9wozgTuaJYdK6lSw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "FAMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PkUlg8ipxB6y2tnHWbLlxg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxGI7XT4fd_WKeR1cE-hlLelCQAAAAAACi9tl", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kqSFQUO3VSzNPTrQP20mfg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAPx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABWdRMG3BjNfH2se-egabnU-QAAAAAAAAAjpv2BnGF3DU5EF7_9vBhh5wAAAAAAAAAjL-H-2xf4p7cHBKcpauzLWQAAAAAAAAAIQ5prAre2OuRCakrlnLYmSwAAAAAAAAAFpu-N4aBOZsn4VU4z7Imv8AAAAAAAAAAF9ZcPzi6i1uzjxExCGCn20AAAAAAAAAANlqnkRSi2l38NtuG1By7gSwAAAAAAAABFXLN55eJ2HplxP0Fb2YBmOQAAAAAAAAAJ_6rkq2S7o8rMRQJ9AofzJAAAAAAAAACLjwkBY0s-EHDmaMTnMHI2lgAAAAAAAAAYLLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACvqKrM4v33j8Ui9JyIz2QXDgAAAAAAAAA4ZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABI", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UQ1fVd58k2fSqjQSJ4y2iQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgK1", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OVUJWL9ZnL1p_YLKqzUSFg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAACqieGArmeUfP8nhRBcw-dF4QAAAAAAAAClexDpNQOMLw9Yf7a5aYjaDAAAAAAAAAAFLrFpoAJGQs12Bwm9KGK0lgAAAAAAAAAIU0G4u2sI84e-qKwkGwX3CAAAAAAAAABImbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAANIfYj4waw9fP9op8fikoTJgAAAAAAAAAGmHLbruajf1ewhD5eRLIwPQAAAAAAAAAEIfYj4waw9fP9op8fikoTJgAAAAAAAAAGu80wzeYkSnSlt8hhdfSXpgAAAAAAAAAsaMdAw5F6bqw1nsXGt00a9AAAAAAAAAAT5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3R8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAANJa8NlMClggx8jaziUTJXlmWAAAAAAAATrT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmz06tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0eQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0ZR", "types": "CAOHBQIDCAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sIn36_6lhKQc_bEzQgq03g"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABSE4Lz5k14PsCcDvFyUC1kmlV3QAAAAABSFO4z5k14PsCcDvFyUC1kmlV3QAAAAABLz5Bz5k14PsCcDvFyUC1kmlV3QAAAAABL0Ldz5k14PsCcDvFyUC1kmlV3QAAAAABManbz5k14PsCcDvFyUC1kmlV3QAAAAABMarhz5k14PsCcDvFyUC1kmlV3QAAAAABFSgx", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LKEaCr3J8DRAWmFUoWCNBQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiP4z5k14PsCcDvFyUC1kmlV3QAAAAABJiIRz5k14PsCcDvFyUC1kmlV3QAAAAABJLl1z5k14PsCcDvFyUC1kmlV3QAAAAABHmTSz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "CwMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hSPX2ocR_Ka7dmSG_0BvUw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFJSGf2yEAEhxiBfW1U6B9NgAAAAAAAAAEHrJFw2fNGtSMNrEAC2Z8tAAAAAAAAAAQHrXUpqEQk4VDnpaZKgdbiAAAAAAAAAA9U2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAABU3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAABd9JMKs9KQTgczUAMQRnFzHQAAAAAAAAAO", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mAZtQho57bjyTMlusRjj_w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAHOgepeYBdrKmAGikZZHzjywAAAAAAAAACvIUAbyMW7bf80Va51E6QcQAAAAAAAAAF_I187UwkDjABEvmHmR4uSwAAAAAAAABtf-B_DnWkY3i33A_-cn2DVAAAAAAAAAAa_iCcRlhs7iF8GyQDr_i9yQAAAAAAAADW4LaiotHNGYdIR8tBjAPtZwAAAAAAAABGIlQ1XNLSC8AG8SGKzC1MsQAAAAAAAABNtLATSye44dZj5qP3wd7yWgAAAAAAAACJGRx4elZZ5Xpl6qP-vsIkdgAAAAAAAAAEOGothoSS_VGQxhefQGBOogAAAAAAAAAM3PWYwmr8WKiucw6_bVd_pwAAAAAAAAAHDuXITtzB7JQM2p8eLBRYdgAAAAAAAAAESvEA_niVYaY-OpBNTk8XvAAAAAAAAAAcR50j_Fakx0mSC9-4NdTEsgAAAAAAAAABJBB8Y32Y7T0w9OJCs-3BZwAAAAAAAAA3osL-AROuaDqXe2LFy29GUwAAAAAAAAABnuo_TPMaY49kAwBo7E4YSAAAAAAAAAADpNkwmPEaVAW4yiwUp-qSTQAAAAAAAAAM9qVi_GBt6qKT_kgVvmjrsgAAAAAAAAAJQR0Rwo9WQpPJ5JxFAcpyCgAAAAAAAAAIBSGYbOS21g5XOXq-oh30UwAAAAAAAAAHJE27ij9kev0kcTbJ4XEAFAAAAAAAAAAm5WPbf-FG-SOzFOVzdJD5owAAAAAAAAAGn89kGiBdFucX6T4kdjXe_gAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAASNDzWiYDmLZi_Z1ZVETLoAAAAAAAil42SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaHfUSNDzWiYDmLZi_Z1ZVETLoAAAAAAAaIGtSNDzWiYDmLZi_Z1ZVETLoAAAAAAAOOBw", "types": "CANNBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3Wc8cD-xlBFleqsp-xbM4g"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBbBcEvvhuguaGYCmGWrnWRz1QAAAAACOHR1cEvvhuguaGYCmGWrnWRz1QAAAAACFObNcEvvhuguaGYCmGWrnWRz1QAAAAACEMur", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HZ_JeS7wNexqGcIiik5z6w"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcNBR", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "c6o4JEm_SHCSlbGrmocvXA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtyubZ3CKaS4aU08RhYA19y5ITQAAAAABtyAMZ3CKaS4aU08RhYA19y5ITQAAAAABtw7TZ3CKaS4aU08RhYA19y5ITQAAAAABtw7TZ3CKaS4aU08RhYA19y5ITQAAAAABuY9n", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NIcwjcTUxYrOZlE8A754rg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o8vXT4fd_WKeR1cE-hlLelCQAAAAAAC-pGEXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FwMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Gtt2kNKLBYrjW8ZF3asaVQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAGzmKXTVTxiptRtMPDOFrZoTwAAAAAAAAAHmABShI7f7tic8wvc-ikJJAAAAAAAAABZO3ydWmZnkgpNJ9lZa3PxSwAAAAAAAAB7fa5CZf7FD-aM6Y-fCgxg9gAAAAAAAAAnOhagOqtTZKJX4CiHYdPxlAAAAAAAAAAMkCbL_O4te-WAGQK-GOmsBgAAAAAAAAADNoHYPrTZmPNoSjD2lRtEvAAAAAAAAABZIYxMGZtokcobbdGBrqK_iwAAAAAAAAABJIJ67u_XI4-jnSyBIeegBAAAAAAAAAAIeOXjDtmISDDtSL4dEzZt-wAAAAAAAAAD_6rkq2S7o8rMRQJ9AofzJAAAAAAAAAC-7NQKJ0eHP8J4hISaRMWwxQAAAAAAAAATLLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACXEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADD0ncC8n8oxaSJwvZ2J0pqxAAAAAAAAAEX", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uchiuLFbH0NhckqiyJoDow"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP_YR", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ynwp47PusWaUtQGudVhz4w"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABdKzcz5k14PsCcDvFyUC1kmlV3QAAAAACFH_-z5k14PsCcDvFyUC1kmlV3QAAAAABdc9nz5k14PsCcDvFyUC1kmlV3QAAAAABke5Xz5k14PsCcDvFyUC1kmlV3QAAAAABkdp1z5k14PsCcDvFyUC1kmlV3QAAAAABkemuz5k14PsCcDvFyUC1kmlV3QAAAAABRyDZz5k14PsCcDvFyUC1kmlV3QAAAAABkgSsz5k14PsCcDvFyUC1kmlV3QAAAAABkfWjz5k14PsCcDvFyUC1kmlV3QAAAAABSO2cz5k14PsCcDvFyUC1kmlV3QAAAAABSN_kz5k14PsCcDvFyUC1kmlV3QAAAAABSmpsz5k14PsCcDvFyUC1kmlV3QAAAAABSP7-z5k14PsCcDvFyUC1kmlV3QAAAAABRsCfz5k14PsCcDvFyUC1kmlV3QAAAAABSpX-z5k14PsCcDvFyUC1kmlV3QAAAAABLz6Nz5k14PsCcDvFyUC1kmlV3QAAAAABNcjaz5k14PsCcDvFyUC1kmlV3QAAAAABNebfz5k14PsCcDvFyUC1kmlV3QAAAAABGmvS", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EszYJlG3uJtSxM3Y3d7bAg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8w_", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5jipDuKi_84DxFQSN76f2A"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACRuzKgtQ4kMk_MBWrPUAFqVnYywAAAAACRvAEgtQ4kMk_MBWrPUAFqVnYywAAAAACRvT8gtQ4kMk_MBWrPUAFqVnYywAAAAACMCnBgtQ4kMk_MBWrPUAFqVnYywAAAAACbQAkgtQ4kMk_MBWrPUAFqVnYywAAAAACbQYrgtQ4kMk_MBWrPUAFqVnYywAAAAACbM7NgtQ4kMk_MBWrPUAFqVnYywAAAAACbMVNgtQ4kMk_MBWrPUAFqVnYywAAAAACbMpGgtQ4kMk_MBWrPUAFqVnYywAAAAACbO04gtQ4kMk_MBWrPUAFqVnYywAAAAACRlPUgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4WlgtQ4kMk_MBWrPUAFqVnYywAAAAACG2jCgtQ4kMk_MBWrPUAFqVnYywAAAAACG2ppgtQ4kMk_MBWrPUAFqVnYywAAAAACG3XcgtQ4kMk_MBWrPUAFqVnYywAAAAACGyc9gtQ4kMk_MBWrPUAFqVnYywAAAAACGvukgtQ4kMk_MBWrPUAFqVnYywAAAAACGx4A", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "l-yGtc7ewbZgVN8gK10pTQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA35ek4GYVwae8QN7q7IuBTMwAAAAAAAAAVao-qbhwnTsLVPtnLeVPHtgAAAAAAAAASPzWHHZtoztKt5-_1UqSECAAAAAAAAAAGE0NO2Kh3-vt0YNozutGkCAAAAAAAAACLk4Xm7YLE1W0WZao9WzNqzAAAAAAAAAANi-0Y2eyXmGTbqHsZAQaU7QAAAAAAAABDMMS0RO7cVprhLjJ-ErmFbAAAAAAAAABJxVOmAk0hLEywDTna7YZ20QAAAAAAAAAMloNxquzuzn2Bq3kr01g2ngAAAAAAAAAGHVhQ434ZUWqRQ1_LQX_XpwAAAAAAAAAwVwaGRjsI3iJyn8klEZc0AgAAAAAAAAAclttOzJDK7vp2gzlL7l9TywAAAAAAAAAEMo0G3Ryin3OSJJlsa04N6wAAAAAAAAAIlQWNKvZdgmHySTzr2d4FnwAAAAAAAAAyEkre_h4w6uLsxTrYKbKEJQAAAAAAAAAQctmMOnzOFMQjuPFQFR1IjgAAAAAAAAA0USV55yZg8dR921Rrum2migAAAAAAAAAAZHpec9nZGwrrhoUYM845NAAAAAAAAM0GogCgWMgT5mMAMhpNA0IMiQAAAAAADA6AogCgWMgT5mMAMhpNA0IMiQAAAAAADBKF", "types": "CAMiBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3YiY7TtFv0EXQiZMyJynqw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAACqGMNSe-6LTlpuiQTu86RdbwAAAAAAAAA1wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATmQVHcTFXg4JaHxKFUu2SNAAAAAAAAAAK0qdPtfCOXWtTMQkqPpfTpAAAAAAAAAAD4pD3shcvlMj_8ybo7T2TVAAAAAAAAAFCS0Vcinvs4UXd1rhNSjovpwAAAAAAAABVbAlNhxIUaCZOzq5Go2-fDwAAAAAAAAAIUNi2PfJJ-vKG8q63OaknIAAAAAAAAAHcPDxaYxBC-l8PtK0orl2RQwAAAAAAAAETSZD9YVGYcY6t7-F09t_klgAAAAAAAACDMxRnrnRp5fRRlUEkyuK1rQAAAAAAAAA8LNiGyjoSSwLd2vmEwDcgqQAAAAAAAACHzrkZPFwCxB9V9Tn62C2GZQAAAAAAAAAEQ664u2_E3_pA1LoHw-VWiQAAAAAAAAAMOcWbb-q1xN2Vf27YY6_pjQAAAAAAAACCS5GNJ7rsUeVGePG_6A8S8gAAAAAAAABm7KOSerr1KVdKNnuLaLw3rgAAAAAAAAA0u25MUdzPMiaQ2283ZYctDwAAAAAAAAALa9q5BOyKgSLsDOKlsdaljQAAAAAAAAAJqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5W0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOTM5vHmZRGlLyNtB_jDhdvQAAAAAAAAAKXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAV61vrmCVoJZp3HjBxIMFrNAAAAAAAAAAFF7lATn_bFhRDcY0Z0OyPwQAAAAAAAABoY5AhuW5zTFbvkEYRGrJ6zgAAAAAAAAEKhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVCm3FF_uDQeutHnQs3UGjlgAAAAAAAAC1tBGZzB5ZNClfuCqDA5LS5gAAAAAAAAAGFw4N_DGYxmWJY3G6VlrCLwAAAAAAAAAGfHicjb8IhyJmUDNrJFOj6AAAAAAAAAAZwMduPEe0g_53DcRkATCeKAAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAAB0", "types": "CANCBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OHN-NCR9tXyaSbIcRGyJXQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAazVvSNDzWiYDmLZi_Z1ZVETLoAAAAAAAayyfSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcOjMSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcUAH", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Wi6N3XBGb2fuENnxnEyLLw"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD49fSZxl-YF9wOaedogsBMtvRAAAAAAADiW6SZxl-YF9wOaedogsBMtvRAAAAAAAEk3JSZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5G8SZxl-YF9wOaedogsBMtvRAAAAAAADZs-CCkMJUJSep499Owma_umeAAAAAAAAVoy", "types": "UwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GWuZD3Bv-Fozl4N5Yzi5dw"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAADz-uSZxl-YF9wOaedogsBMtvRAAAAAAABSlb", "types": "HQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lB1Y7h-GI8V7NnJH4cEyWw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JgA", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fa7wECARkxA2ek4DYeGk9A"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYpqL9Bd3XIiGWasJdN8trI5tgAAAAAAA1YsL9Bd3XIiGWasJdN8trI5tgAAAAAAA1LtL9Bd3XIiGWasJdN8trI5tgAAAAAAA0Y-L9Bd3XIiGWasJdN8trI5tgAAAAAAAzVHL9Bd3XIiGWasJdN8trI5tgAAAAAAA48cL9Bd3XIiGWasJdN8trI5tgAAAAAAAWqlL9Bd3XIiGWasJdN8trI5tgAAAAAAAWoqL9Bd3XIiGWasJdN8trI5tgAAAAAAAXA4L9Bd3XIiGWasJdN8trI5tgAAAAAAAimlL9Bd3XIiGWasJdN8trI5tgAAAAAAAXInL9Bd3XIiGWasJdN8trI5tgAAAAAAAly5L9Bd3XIiGWasJdN8trI5tgAAAAAABWhHL9Bd3XIiGWasJdN8trI5tgAAAAAAAl6TL9Bd3XIiGWasJdN8trI5tgAAAAAAAc-4L9Bd3XIiGWasJdN8trI5tgAAAAAAAdZRL9Bd3XIiGWasJdN8trI5tgAAAAAAAchr", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4nXxkGYVgHbeGTI3oHepdw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABT", "types": "CAMYBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "M56qbhAN0zSyPqoRnP2tig"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUoi", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "29_6ZAb70CIp_EG0wp7_NQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFg7nBWJWVuG2AG8wBW0GvVwAAAAAAAAAMJ1pfAEWmqWCNhh7R3GdmfAAAAAAAAAASFl55xnlLSMqnve6foRfHTAAAAAAAAAA43HqvwpVK0RI_JfUC7AjGxgAAAAAAAABo7unxWA5Hj3DUaWAMH4NXUgAAAAAAAAAK4kgJPxDp_y70g-_9SJBKrwAAAAAAAABwmVZC5ucQ9s0QMwQ6Cu6VqwAAAAAAAAALakHLSuC4R8vzlPIApTxuxAAAAAAAAAANstZinI9hO0TLC6i8zDKuigAAAAAAAAAcNbfRwCvGgojCF2erim_QkgAAAAAAAAAFcFSUR7JR40wEvhb1_RE-WAAAAAAAAAAb6OAqAmsWvuVmNt1cNurDiAAAAAAAAAApt_1EfTZ4mDx9E51ZLT70_wAAAAAAAAEgOCs2nprooswP3rgr4wSJMQAAAAAAAAADIkEIzYzfFb8h7KBdusw1sQAAAAAAAAAOEKWhQ1NGJOd2rM9L7jxkPwAAAAAAAABVNDiNPs2SIuj4NddpL8knJAAAAAAAAAAC_OOeQuiXtvgynmE43QMbEAAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAHyOqjB_amR59Lv13Nhle_NwbwAAAAAAEVKL", "types": "CAMdBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ml7vM_TA_xUcAexnu4FJAA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHfZKXT4fd_WKeR1cE-hlLelCQAAAAAACy8_rXT4fd_WKeR1cE-hlLelCQAAAAAACy9M7XT4fd_WKeR1cE-hlLelCQAAAAAACy-x6XT4fd_WKeR1cE-hlLelCQAAAAAACy9SHXT4fd_WKeR1cE-hlLelCQAAAAAACgaVYXT4fd_WKeR1cE-hlLelCQAAAAAAChwJe", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AZiPGUJq8VLe0bcF5JOdFQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChkFA", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FTqEftgEgF-4HalIRfrGpw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAC3Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABbTIqYHzSLJiXVx4krD2dbMgAAAAAAAAABIFHX6oXBjL3Y93SHOMXcKQAAAAAAAAABZXguWb1db5OZ-xUb0e4ZqQAAAAAAAAM2siCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhZsqFV6xhVekP5-uToPI32ragAAAAAAjkLG", "types": "CANRBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "720bYtIjXZ0s4au9mJ3ENA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbQ5Yxe-SHgukLEpCkawSk1QWAAAAAAAFznNYxe-SHgukLEpCkawSk1QWAAAAAAAFzx5Yxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEH-", "types": "CwMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DyoYwzb-7gOf1fSN1_ar0A"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAC3Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAAAgRQ20oTZ6pwni6paND2updwAAAAAAAABB5KDO11BWTfkkFO9MFEbTJwAAAAAAAAADoyUgxxOY520Rj3U8w5GHoQAAAAAAAADS_LUmfn7HwxtW5o40rtqe8gAAAAAAAAAcsiCTJzrkNS8HPcHNBHnmewAAAAAAAAACrcaxiDZySELWCuXdWiYPQgAAAAAAAAACmk3P52OFEqt1TZqklgylngAAAAAAAAAC1FZVM9tkiF5xxQgJ8Yce6AAAAAAAAAAC55XiRs9J1pD7I9q3YfmOtgAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhVbqFV6xhVekP5-uToPI32ragAAAAAAwhJ7", "types": "CANPBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cgbUcRDTpEjDrsHsz7--9g"}} -{"Stacktrace": {"frame": {"ids": "3mYYqsL3RyZ4MT4Z8-by-gAAAAAABqoF3mYYqsL3RyZ4MT4Z8-by-gAAAAAABkBX3mYYqsL3RyZ4MT4Z8-by-gAAAAAAAp543mYYqsL3RyZ4MT4Z8-by-gAAAAAAAtU23mYYqsL3RyZ4MT4Z8-by-gAAAAAAAusM", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SGWXcHhJ-3eFNiySrhglHw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACE75ucEvvhuguaGYCmGWrnWRz1QAAAAACE79pcEvvhuguaGYCmGWrnWRz1QAAAAACFEgQcEvvhuguaGYCmGWrnWRz1QAAAAACFE4FcEvvhuguaGYCmGWrnWRz1QAAAAACFE_vcEvvhuguaGYCmGWrnWRz1QAAAAACEzfkcEvvhuguaGYCmGWrnWRz1QAAAAACFyNV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtJB6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtH16tVKI4mSYDEJ-ABAIpYXcgAAAAAACtDv6tVKI4mSYDEJ-ABAIpYXcgAAAAAApG0S", "types": "BwMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uPfQx41sGpWXSF6wjd1f8A"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACOVgImNB_AseUMjfw9acwHDgAAAAAAAAE3LL2AmHorGMGLHFvQ3KWNRAAAAAAAAABye9VBoOb6ap6y2iBqQXec9wAAAAAAAAAa-7qKHNvuu4dQ-NSojX-1nAAAAAAAAAAEQd2u0guBgJM1heDZ97a_eQAAAAAAAAAFhHI8fycCSE9gTrpxwlqNFAAAAAAAAAAE", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QBmlTSly2COGQg4tFf4YgQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAFJfinhoQfoECf6Q4HPC08YkAAAAAAAAAAqcn_0Dt8F1JGwazqn6MVOnAAAAAAAAAABDnuglYjSP_yHnOeoUpC43wAAAAAAAAAB3v2TU8A01iCPuVWdiUVv8QAAAAAAAAApL-_tQCaPRoXtazKap89hsgAAAAAAAAAOZhtNJYoOwm655zArM3sIngAAAAAAAAAmYgvoZ6DleZJd_ACRhoNarAAAAAAAAAACUT4r1woqEdacoKDuZFw-vgAAAAAAAADtUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAmQVeLj_oPnEjl_jKTv8aQqAAAAAAAAAAlUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAxrp3sprQtO8hOwekVupMQwgAAAAAAAAA0XoNqQsMeesgJkRR-qQrvugAAAAAAAAAzrn6MTH_GcOdtJ7YxIeV5gwAAAAAAAAAHUlLH1TtX81jau37svfBqgQAAAAAAAAAW0WuirCsdoj9vfAKQsBS7kgAAAAAAAAAIZhtNJYoOwm655zArM3sIngAAAAAAAAAUnQRJ3xr79n3cY6qS99IffwAAAAAAAAAEAhC6Xj-K1vOC4yqhcS2tRAAAAAAAAAATopFI2iPPQrSoKgHSzuYsiwAAAAAAAAAInX5EwLqa4-7opgPxIg4PZAAAAAAAAABw575WKZsJOrf8RDDJpG_1WgAAAAAAAAAkAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uxb69r-7SoT16KEvWAhaDA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV5BZ3CKaS4aU08RhYA19y5ITQAAAAABtbJJZ3CKaS4aU08RhYA19y5ITQAAAAABtbh9", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "19-BIdJDFsbAizxGj9jWhg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSHd", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_4SSZ-fDRU6dq-MfFWxOng"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACuCx5RC8g9OTz7PgiGSeLtvwAAAAAAAAAOgY8CypHN5IKSPd6Ua0pIHAAAAAAAAAAFyZ0m5K0hyRADeQkG90vP8AAAAAAAAAAzTLqAsTBzc6qnYrDt7qkTzgAAAAAAAAAJc_22Mbyt4HEFc1XP6wRkMwAAAAAAAAACJPIp3Ldr9CKvPQbh-s8AhAAAAAAAAAAJwtaNWPsMpfzeSCJEHw1degAAAAAAAAC6082hmHaVcsUtei0Hc5kRVQAAAAAAAABR_KqTDruiyV4c3OEtyANHTAAAAAAAAAAOd7mGKLotsZOhr3BShS80ZQAAAAAAAAAVJzl0rnZ8WwwkD280lWXtQwAAAAAAAABhtLN6FRqCApmsduxj5WK9JwAAAAAAAADyiAi_GDz2owh3bMIuZZl9TwAAAAAAAAAA", "types": "CAOIBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wJMcWNAb5ql2fkVg8DVb0g"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAABqM9mknNUv7hMcc_nUxX8nQwAAAAAAAAAhz-hu6cNT1Ftqgnka76QdWAAAAAAAAAAC8RQyRW_fqLsoJLvr6Yk7xQAAAAAAAABz", "types": "CAMvBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zWnar1cv2OPLTAmuUX5okA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIoVZ3CKaS4aU08RhYA19y5ITQAAAAACtIeEZ3CKaS4aU08RhYA19y5ITQAAAAACtOo1Z3CKaS4aU08RhYA19y5ITQAAAAACtNW2Z3CKaS4aU08RhYA19y5ITQAAAAAB0miwZ3CKaS4aU08RhYA19y5ITQAAAAAB0lqO", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9XdZpM6-FAy3LMUV5bnSRQ"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAAKklFL9Bd3XIiGWasJdN8trI5tgAAAAAAKf8cL9Bd3XIiGWasJdN8trI5tgAAAAAAFsRfL9Bd3XIiGWasJdN8trI5tgAAAAAAFsj7L9Bd3XIiGWasJdN8trI5tgAAAAAAGSgFL9Bd3XIiGWasJdN8trI5tgAAAAAAGTVn", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zEgMCcIzExJibQaME-QTUQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAAB8dJZnxxfSj1TBzD3FyyfeDQAAAAAAAAB0YpRFzwYvMLNVigDq-Ir6sgAAAAAAAADLpvwvvHhCfLnK-ZS2bhWZ3gAAAAAAAAAG9Szc52M1pmmLilEhw1pwVgAAAAAAAAANdI8-OJhANgCFvmdsEiuUygAAAAAAAAAK_qHZjL0mDC0dEXs_JSKQ0QAAAAAAAAAMHHXa86-DPQH1mDdz3c0zTwAAAAAAAAA2NyEmK1WeS5zJElmJz1lALAAAAAAAAAAB", "types": "CAMpBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "t3YPrWrDzJFDnReQ7K0ZIA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAAA2Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAABWdZbEvj5KNLRaqtv4ShlGOgAAAAAAAAAHAvY-8GTrHONLnLoYn_aUmwAAAAAAAAAl9iPPrg1Y9vtWhMk7mXQ_KgAAAAAAAAAJAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CANIBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jthhLIqVB5doOdOhwJAhFA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGg5Nz5k14PsCcDvFyUC1kmlV3QAAAAABFqo1z5k14PsCcDvFyUC1kmlV3QAAAAABFrFgz5k14PsCcDvFyUC1kmlV3QAAAAABFi2mz5k14PsCcDvFyUC1kmlV3QAAAAABFiuDz5k14PsCcDvFyUC1kmlV3QAAAAABFiCw", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ihGJ_26t_QqommWWGt2AFQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcNA6", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lN6iyovFymV6B1GKuV60Mg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMha1XT4fd_WKeR1cE-hlLelCQAAAAAAD9Tr0XT4fd_WKeR1cE-hlLelCQAAAAAAD9EJ9XT4fd_WKeR1cE-hlLelCQAAAAAACzCmkXT4fd_WKeR1cE-hlLelCQAAAAAACzD3h", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QNP7PZqJy6OGXmZc1fiP_A"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjD5cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLl8XcEvvhuguaGYCmGWrnWRz1QAAAAACHlBbcEvvhuguaGYCmGWrnWRz1QAAAAACHm1vcEvvhuguaGYCmGWrnWRz1QAAAAACHlr6cEvvhuguaGYCmGWrnWRz1QAAAAACHkra", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jdzvLx5l7JUNfi9LmdMqdg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcDY6SNDzWiYDmLZi_Z1ZVETLoAAAAAAAvtxjSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt-hxSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcuMGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt_XHSNDzWiYDmLZi_Z1ZVETLoAAAAAAAxvdr", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EYN09YTQJzILDrRVzDD1TQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOpxFz17lb-voh9uZicvdXWAAAAAAAAAAgCpvjWyzlv7sy206ARLr_PwAAAAAAAAAx", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BJWhTnZbfJWxo1Rlx1U4ZQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAEgzT7XZSg98RfDNP1VNIfEEgAAAAAAAAATf5TZuolTm8PTdIr3znBu7AAAAAAAAABMjCOJVbTIbfgz_c_uOqkTuQAAAAAAAAAM-G-jKyr5A3MRrC_vNgLsBAAAAAAAAAA8s84b9SvDFo5phkMP-bFo0wAAAAAAAAAFhHI8fycCSE9gTrpxwlqNFAAAAAAAAAAE", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xGXtUwy0WyT4ZsBj5B3XBA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP_Sh", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "67AU8cgiv2OiIR5ejtdmRA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATRsvOFqC3SNzn_pRUkwD1yQAAAAAAAAAKmVg5ImyOXWtTMPsPyAoJFAAAAAAAAAAGANUDzCguopTSw91qnI0ylAAAAAAAAAAO7EHeuRz0CLtKEuoB-_zIQAAAAAAAAAAhsntjqhnPOkV1AM5VqFuL9wAAAAAAAAA8_vnxdlrLVdiyCEIVqNBMFAAAAAAAAAAiA-41ReHkKXTbwuqT5HLDpQAAAAAAAAC8V-kXvMT4K0SIRkTvXJDHrAAAAAAAAAAUAc_21V0WNPy6Tqh3C5QMqQAAAAAAAAALARiuJRGB6HSb0roAv522dAAAAAAAAAAFl3IQnUKBm9e5-N-d3c2-zQAAAAAAAABW8WPdZNjwMvF6a3MxlZ9bmAAAAAAAAAABIy5aTLM6jJA23cEgrB0JAwAAAAAAAAAA", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rh6dkbq8WqrY7XSMixfetg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbeuIw_I7HzcVMEcOaEL-XEgAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAABDbpFrLpp87SutwNDP7V3ibQAAAAAAAABL-sDhPyIFWNtRFFnCz1wkdwAAAAAAAAACc95b0xugd132zom56_A3XAAAAAAAAAAFo3aAA_gtGWT3yHJNsrFNiQAAAAAAAAACSU7fNzMC3NazhQDT5xGXYgAAAAAAAABI", "types": "CAM2BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yjN3QcXIO7ZJpjPqQPEBbg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAABBDWqem0MEs_2ehK2H6Rh43QAAAAAAAAAFL9gHiR-PvRIfigL5-mT1lAAAAAAAAAACEgHBAsdbxjOeM0iCxV59CgAAAAAAAAAF1bYVLJaC5WBOgJdtA4ffZwAAAAAAAAAEBemXd-G6RDOwTOuPV3xpUwAAAAAAAAAVMvukotDYrkDBhTIXVp6gJQAAAAAAAABEsTm2NJa4oF2xjv4OCkRO2AAAAAAAAAAoakq4mF0mmQueFMEUlSNLxwAAAAAAAAAC5pJbc4ld-dqU0cbENH5UewAAAAAAAAA4vfQyY8YDfkSdAL5L2iEyeAAAAAAAAAAzxvo_iOg09zSCFO6AJ5txSwAAAAAAAAABERQe6ysQs8a3Aewl2ODwbwAAAAAAAAAY_BzhwSJVnQNfmYfVTdNgsAAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAADHMn6ZZcNA6-RmrkDCI6igAAAAAAASnQsTGLCNH21piOrMPoln5uBQAAAAAAki40sTGLCNH21piOrMPoln5uBQAAAAAAh0YSsTGLCNH21piOrMPoln5uBQAAAAAAhz-7sTGLCNH21piOrMPoln5uBQAAAAAAh2tH", "types": "CAMXBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fX0UJpw-KoGxCTaJrmVo4A"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADHmXqXT4fd_WKeR1cE-hlLelCQAAAAAADHmkkXT4fd_WKeR1cE-hlLelCQAAAAAADHm4cXT4fd_WKeR1cE-hlLelCQAAAAAADB6QhXT4fd_WKeR1cE-hlLelCQAAAAAADQm0EXT4fd_WKeR1cE-hlLelCQAAAAAADQmurXT4fd_WKeR1cE-hlLelCQAAAAAAC0u6GXT4fd_WKeR1cE-hlLelCQAAAAAAC0yjyXT4fd_WKeR1cE-hlLelCQAAAAAAC0yEqXT4fd_WKeR1cE-hlLelCQAAAAAAC0yQGXT4fd_WKeR1cE-hlLelCQAAAAAACq9XQXT4fd_WKeR1cE-hlLelCQAAAAAACrw0YXT4fd_WKeR1cE-hlLelCQAAAAAACq_Y3XT4fd_WKeR1cE-hlLelCQAAAAAACrEaEXT4fd_WKeR1cE-hlLelCQAAAAAACrHKvXT4fd_WKeR1cE-hlLelCQAAAAAACpxsFXT4fd_WKeR1cE-hlLelCQAAAAAACpxP0XT4fd_WKeR1cE-hlLelCQAAAAAACpxCHXT4fd_WKeR1cE-hlLelCQAAAAAACp0JQXT4fd_WKeR1cE-hlLelCQAAAAAACpz60XT4fd_WKeR1cE-hlLelCQAAAAAACm_d4XT4fd_WKeR1cE-hlLelCQAAAAAACnLWRXT4fd_WKeR1cE-hlLelCQAAAAAACnNMkXT4fd_WKeR1cE-hlLelCQAAAAAACnGoxXT4fd_WKeR1cE-hlLelCQAAAAAACnaAR", "types": "GgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3blkVUmhYGlb1bNhKqNU-Q"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN7cEvvhuguaGYCmGWrnWRz1QAAAAACEgm3", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "U4po32CSkExl1ZPtuJCrxA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEgB4cEvvhuguaGYCmGWrnWRz1QAAAAACEgne", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DsctT-_nwdHL3iCwXEsMsQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAAtSAAkutGejeRImCZXeWZ-1wAAAAAAAAByB_IRgbCQC1IPEoVkHKMOTwAAAAAAAAAYdB8rpvXeU-U7j8zoRqc_lgAAAAAAAAGpe7YYWaQTMh8P2PCVzA2a8gAAAAAAAABE_p12Y0DOk4cFEn5gGz9psgAAAAAAAAAE", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QuzNOG3t4OkPYTKYBPqKPQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw1x4XT4fd_WKeR1cE-hlLelCQAAAAAACwXETXT4fd_WKeR1cE-hlLelCQAAAAAACipi9XT4fd_WKeR1cE-hlLelCQAAAAAACipFEXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ll6esE1FGRvBZYuvkkd9xg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABgze3", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ii5fUg--kGCwh43V7vfk4Q"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQw7WOWZs79Wz210098loDzAAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARrSUSoohdnG6MdsfC9pID0QAAAAAAAAAGpY2MvdN80J-OPBSDYZs_8gAAAAAAAABSneOkLg7Birx-EWGBuoP5rgAAAAAAAAAaDjB9rnpR9s2OI-jlVfuXnAAAAAAAAADmNrikprALerrSkH1iKFm6zQAAAAAAAAAs_ui1AAIySrYc7ZeYb73nFQAAAAAAAAAMDbSG9xbs7jnAEiHiVrKb1AAAAAAAAACGHSSZPv-Jiv2fPLN9vFx42gAAAAAAAAELQKRyqWZIJ5_z0G07UwBzeAAAAAAAAABS3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAxJDeoMDAF4zRp8m9fg1ttGQAAAAAAAACBArHoFYyXVsZt6HAc7EjVzgAAAAAAAAA3u1A1mq4_NM3j2_15WwdIbwAAAAAAAACHJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAACjGw9H1l67yAnzlh8ZHG_VaQAAAAAAAAA47c7rgpFHY6rxkjCoiUY2PgAAAAAAAACWu1A1mq4_NM3j2_15WwdIbwAAAAAAAACHWRFfIxsq2Q79ALvapo1dCgAAAAAAAAAkuchUv6RRAwtUDrZKhO2h8QAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFPyr97kasv6HR5lCuwdxIZgAAAAAAAAAURWZ9G1N69fMZnc8QMvYsrQAAAAAAAAA3-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAF0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFvuphyS_BZoVnngMBUX1lRwAAAAAAAAAQ88-Z439dOdp5GpDKUJubowAAAAAAAAA_0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFk2QfmGpbwZfMFpur9DTalwAAAAAAAAAoREOZDMGevKohDmxWFx6eeAAAAAAAAACajBeiHwwOyRIapBbs5J2OjgAAAAAAAAB4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF0oXMrtJgPp9xNBfTmr-cvwAAAAAAAAAcxMi3lfkibPU0NAhJ8DhGPgAAAAAAAABR0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFYN0teMNDLgmhoUpmrqni9QAAAAAAAAAQclGseV0LGavUI1_g3b_OoAAAAAAAAAAwjBeiHwwOyRIapBbs5J2OjgAAAAAAAAB40LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFmj7OrL6QrJ8gvIjThzQydwAAAAAAAAAQs7vZritmiKufeJDzCX_JRAAAAAAAAAARLHQIqPZNDAtBb5Urr3NFHgAAAAAAAAAu-Q25YN3mx81c5h9FyskSVQAAAAAAAAA-BZ6M98E7_jhQ9w9aCijThQAAAAAAAABjK4q5bjj7FsLI8bLo_hB_IAAAAAAAAAAY3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFRbzqTTxiJ8XotiOA2Wj5YwAAAAAAAAAYXmcQ4_6bleDFvrRZ47Cq9wAAAAAAAAA73G7WvpXqPGO04rbAV9CJtQAAAAAAAAAl8ZRk8SyYMUcoYIl9aB0UjwAAAAAAAAAp0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFEfRqa-7Lw23Pq9cBac4oVgAAAAAAAAAMM_MfJrZLrX3P0R0dWrP49AAAAAAAAAAL0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF-7AzPTKQkaPts8LuNXMNDQAAAAAAAAAYDkUb3XtVJF4DvOzLdzKoEQAAAAAAAAAi25mp98L6MrKhqE8ccc5QLgAAAAAAAACz1Rs5auAL8MkDEq2o8XvWFgAAAAAAAAAQkUPrBmtG7HWSEiOu1vXGZgAAAAAAAAAV1fE-A15-sG5pm2Nv6tb9vgAAAAAAAAANJKjf0pZHg3dzwDeAqfO16AAAAAAAAAAEsyuAMg3RShupVDY63eHfbQAAAAAAAAAHMrVvriJqF-HOpa8js-mFagAAAAAAAAA3bC4xUO3cZ_wW8IEDAJ-BNgAAAAAAAABGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAm4yG9IdLfPOQJQp1BxdOq7wAAAAAAAACfEgnEAYVJO6evUZwnNI7NMgAAAAAAAAB05zxpGeZtVFjxV00AgHRxwAAAAAAAAAA6JDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFYhLUfql-5LQM_JtfSo3-RwAAAAAAAAAgUyl96nbKrz6UOSXSc3iffwAAAAAAAABDmWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAB2GBJ1zKS_b9jP7AxB92tjCQAAAAAAAAAo0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFKCxCvDIXtl0ClBmM3hNiLgAAAAAAAAAcFDp23rE1CceEicB2tyC3EgAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_QZucZeLQwMr7zKD51abCrwAAAAAAAAAMS_GmAS-sCtPOI6egY6LXiwAAAAAAAAAPAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJnWkIGdO50axZ_Bk4M_K1cAAAAAAAAAAkr9OA6z6ywxk33MG1uly6aAAAAAAAAAAZFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASFS55TSwq0w7KNb6oqdqsJwAAAAAAAABDGmz4msZ2ZDrLUqY2xbpOyQAAAAAAAAAHc2nGYkSUqE3rxfTW8wK2fAAAAAAAAAAoAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJQNXy4XeFFzKACGQInZNhgwAAAAAAAAAcn1Y254wxpQ3hq_nYz9gRWgAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRW7C8N1q94TuMskdRCHbYwAAAAAAAAAFCMOLX12QynGJCu7CxyKH2AAAAAAAAAAg_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAJQWMUCGTmuZKLmyhq5UAxugAAAAAAAAAJ2NbC_OVFN-ISjk_Zldz8JAAAAAAAAAEiXOANMxdhSEwzaUIzOG_mBQAAAAAAAAANz8yDYNMJULt1ApZ8kqZamAAAAAAAAAAGMMAujfe9xzktoHyDqw_cGgAAAAAAAAAGKGVSBMVyriI5T93UZw1WLgAAAAAAAAAE_qkVJm0NxTF9ak3kQe9veQAAAAAAAABazzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIOgrnocamUAo62UJ-c4BU1gAAAAAAAAABcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIMgnzgTUwSrjft9SA3YZTtAAAAAAAAAA0pTQwlw111ksRO8rVWFQy5wAAAAAAAAAzaT95r9ZsxBzFjwCzRgP5uQAAAAAAAAAHcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAInQRJ3xr79n3cY6qS99IffwAAAAAAAAAEOVGpodm8Dz5kn5wnnXKUIAAAAAAAAAATopFI2iPPQrSoKgHSzuYsiwAAAAAAAAAIQD7cQDN4ZVYyfKZ4lfNsvgAAAAAAAABwdAFeP-7qnlJ1DOWrOEwn8gAAAAAAAABhpdQAoUQgmQmDpW5Yxy-WAQAAAAAAAAACABipyEawAgbPQx-X36vFuQAAAAAAAAAnc1baMmgVqL-aPBkB-pgTiAAAAAAAAAAIVthdIAkyIWxV-e9fI9rVBQAAAAAAAAASFezK_dQe_u3GP8ThBnZQ8QAAAAAAAACEqN4Vqjijt0HHN8TkXT1dVwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAAINa8NlMClggx8jaziUTJXlmWAAAAAAAATLP", "types": "CAPbBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jBxx8BsBrE-wbyWADe34bQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcDY6SNDzWiYDmLZi_Z1ZVETLoAAAAAAAvtxjSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt-hLSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWduRSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWdg3SNDzWiYDmLZi_Z1ZVETLoAAAAAAAxwkB", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "u6l9MuBKqlPDG0c4BbLwSw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7-XT4fd_WKeR1cE-hlLelCQAAAAAAC-pCkXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjbU6tVKI4mSYDEJ-ABAIpYXcgAAAAAALio76tVKI4mSYDEJ-ABAIpYXcgAAAAAAL8kq6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL8fB6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL8cd", "types": "FAMNBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kWwzipAAQMAm1ZJZNEkFsw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf_KcEvvhuguaGYCmGWrnWRz1QAAAAACEUpI", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2L91SyJLMmUa3HpOOsZXbw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAABhRJXjPkp22gaQo9vwY-85JAAAAAAAAAB1DLrWTvtAPDh4Uv4u2shragAAAAAAAAAcAAAAAAAAV4sAAAAAAAAAHYXuSio4gqgnZSkKN3zNxr0HYuO2pqe5hQAAAAAAy90wZSkKN3zNxr0HYuO2pqe5hQAAAAAA5mV0ZSkKN3zNxr0HYuO2pqe5hQAAAAAAt0nYZSkKN3zNxr0HYuO2pqe5hQAAAAAAtz00634wiWh6F21tPpXr0Zz3mgAAAAAAGLpR", "types": "CAMkBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "m55Znt_y0UyjemF1cQhp1A"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAABdynFllp5CrPbAGyx1JneoOgAAAAAAAAG7u5vAXtVp9d4wvRuocarrCAAAAAAAAAAPX6JlWwBbDvZZ7rFp8ffgSAAAAAAAAAAFK24S1jUATvUFIEv3zAUZHgAAAAAAAAFQQTk6i4kGz-zDlc1CgyBszAAAAAAAAAAubFnDceRyUrwrxpx2LB-2swAAAAAAAABsy3V4Wh9j61CfcWNgvt1uPgAAAAAAAABzXcCMywL5s8Msv7wl9SHdqgAAAAAAAAAc8g3sLjFnKCF_JJchxYP5DAAAAAAAAAAN0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAd5e20AsvoCctGya4WV0ZQuwAAAAAAAAAYN1xfNXt_cEW2sMA8rTIs2gAAAAAAAAA80Og38EZo1V7Xaj5UHUpXuQAAAAAAAAAvyr4X--AwYxsbC6m4-WPbMwAAAAAAAABkwSyck1hQlqfoA9Ea8siSLAAAAAAAAAAHrvyMTZSiiFB-vYn8VxJUiQAAAAAAAAAOM2BXupKk-ecTJedmRPFuNgAAAAAAAAAOnNtnD4PGULazJAtCILoEFQAAAAAAAAAFLn77frXO658Q0MZOuorIVgAAAAAAAAAQ", "types": "CAM9BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "b9bN4B0y0HQxr-zG0AhOUQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-BdSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZyd", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BJCmF0rYAGSsMmkTDz_IDw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSMO", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FYTaEZ21SPKDnDxndpockQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACE75ucEvvhuguaGYCmGWrnWRz1QAAAAACE79pcEvvhuguaGYCmGWrnWRz1QAAAAACFEsZcEvvhuguaGYCmGWrnWRz1QAAAAACELQUcEvvhuguaGYCmGWrnWRz1QAAAAACELM4cEvvhuguaGYCmGWrnWRz1QAAAAACEyo2cEvvhuguaGYCmGWrnWRz1QAAAAACFyki6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "BwMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NUICzvay5gqiM1JCIDYjDg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZzV", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IkFQJGH6hdklKpjmMwHToQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAAL1_TZoRpWT4eGJlelAJFangAAAAAAAAAeo-LQzMbIXWiYgSL5TtNkOQAAAAAAAAAFl7MRN84z7GBONDE4j4f6FQAAAAAAAAAErD4T4VeNmVSOBJb1q3Kn-gAAAAAAAACbIt3O82Qt-f1-LUtaeKWOtgAAAAAAAABirD4T4VeNmVSOBJb1q3Kn-gAAAAAAAAAeOWoia3OO91L6Q6k2Ypn2XgAAAAAAAAAW4LWodyiv9Hy4HicwczMhQwAAAAAAAAAGYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVQE1C6oZLYffge09QUEmCwQAAAAAAAADJWFBxAERZNClfuNDueoaytgAAAAAAAAAGFw4N_DGYxmWJY3G6VlrCLwAAAAAAAAAGK4GtFsHu3sEiObk5SkQ6NgAAAAAAAAAZR71vwc9Gh9GvdvgaspSkvwAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAAAA", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "n73U5dOg61JklJT6WKmxuQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEWB9GVskeRyK4_o3XD61XIAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAqJzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAqdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcO9_JyaRKYBdkJrY8OUa6igAAAAAAAAAS", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "f7aWCPaXdIyFkeOjGCsGbQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wrIXT4fd_WKeR1cE-hlLelCQAAAAAACkR-sXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgc6j", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wxU1Nh02nDVQ06j0OKiikg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAqeSs1xpPdaQi6BA9wz10SrwAAAAAAAAA5TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABbXyIB1JXxkoOQjMae8CICgwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAAAL", "types": "CANfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nYdp-GsAnSl5-IbdkTmdVw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAeZ7IYsnZ_Lwaqr0cHEPo0D185QAAAAAAgvMyYsnZ_Lwaqr0cHEPo0D185QAAAAAAee5LYsnZ_Lwaqr0cHEPo0D185QAAAAAAeW0H", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Tl8-uLg-sk_bVEVT-WQP4w"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TU4XT4fd_WKeR1cE-hlLelCQAAAAAADU1EoXT4fd_WKeR1cE-hlLelCQAAAAAACgaWJXT4fd_WKeR1cE-hlLelCQAAAAAACgUBD", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QbcK_gbMTYuvwl_FoMECaA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjXzz5k14PsCcDvFyUC1kmlV3QAAAAABGOHuz5k14PsCcDvFyUC1kmlV3QAAAAABGN0Mz5k14PsCcDvFyUC1kmlV3QAAAAABGNmNz5k14PsCcDvFyUC1kmlV3QAAAAABGX71z5k14PsCcDvFyUC1kmlV3QAAAAABGSVC", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3Ig2MzPdh_XK7em8mWoJag"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABAug", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7JUoTiaPyT_VuWNPYwhf1Q"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2qOcEvvhuguaGYCmGWrnWRz1QAAAAACgz-EcEvvhuguaGYCmGWrnWRz1QAAAAACgs1TcEvvhuguaGYCmGWrnWRz1QAAAAACgt6PcEvvhuguaGYCmGWrnWRz1QAAAAACgePncEvvhuguaGYCmGWrnWRz1QAAAAACXxtMcEvvhuguaGYCmGWrnWRz1QAAAAACXzgF", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mfdo9N1VvIQt_V4_UKPs_A"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2nRYxe-SHgukLEpCkawSk1QWAAAAAAABkFy", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jMGP_Z5cZtKhWETiwsHRiA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZFDZ3CKaS4aU08RhYA19y5ITQAAAAABuDoeZ3CKaS4aU08RhYA19y5ITQAAAAABuDYbZ3CKaS4aU08RhYA19y5ITQAAAAABuOzgZ3CKaS4aU08RhYA19y5ITQAAAAABuC4E", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5tbIu8B2wKAudkUXTqytHg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vJ1XT4fd_WKeR1cE-hlLelCQAAAAAAC-o7RXT4fd_WKeR1cE-hlLelCQAAAAAAC-pCkXT4fd_WKeR1cE-hlLelCQAAAAAAC-joKXT4fd_WKeR1cE-hlLelCQAAAAAACi9xKXT4fd_WKeR1cE-hlLelCQAAAAAACgT-A", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ykMVLYSfkbON4cDYPX_Bug"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAHOgepeYBdrKmAGikZZHzjywAAAAAAAAACvIUAbyMW7bf80Va51E6QcQAAAAAAAAAF_I187UwkDjABEvmHmR4uSwAAAAAAAABtf-B_DnWkY3i33A_-cn2DVAAAAAAAAAAa_iCcRlhs7iF8GyQDr_i9yQAAAAAAAADW4LaiotHNGYdIR8tBjAPtZwAAAAAAAABGIlQ1XNLSC8AG8SGKzC1MsQAAAAAAAABNtLATSye44dZj5qP3wd7yWgAAAAAAAACJGRx4elZZ5Xpl6qP-vsIkdgAAAAAAAAAEOGothoSS_VGQxhefQGBOogAAAAAAAAAM3PWYwmr8WKiucw6_bVd_pwAAAAAAAAAHDuXITtzB7JQM2p8eLBRYdgAAAAAAAAAESvEA_niVYaY-OpBNTk8XvAAAAAAAAAAcR50j_Fakx0mSC9-4NdTEsgAAAAAAAAABJBB8Y32Y7T0w9OJCs-3BZwAAAAAAAAA3osL-AROuaDqXe2LFy29GUwAAAAAAAAABnuo_TPMaY49kAwBo7E4YSAAAAAAAAAAkOD88rfBmy4BfCXerLT5e5QAAAAAAAAA7yhF9CEzH60wdDBblzY1FcQAAAAAAAAAIOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEn89kGiBdFucX6T4kdjXe_gAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVCm3FF_uDQeutHnQs3UGjlgAAAAAAAADAwMduPEe0g_53DcRkATCeKAAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAAAA", "types": "CANUBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3wmGM9d6YoSoIyBMvtxpaA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPUhSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcM4e", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "D9deM4hA54-jD4QRfBZvyg"}} -{"Stacktrace": {"frame": {"ids": "AAAAAAAAV4sAAAAAAAAAHezOBKFjpr8qaRenpQIgJLChKRBMZRmqWwAAAAAAAAAA", "types": "AgU"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Mtj0z4-Jv9LSHprcHM_y6w"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXUptYxe-SHgukLEpCkawSk1QWAAAAAABXVjkYxe-SHgukLEpCkawSk1QWAAAAAABXVBsYxe-SHgukLEpCkawSk1QWAAAAAABXZL0Yxe-SHgukLEpCkawSk1QWAAAAAABV3AkYxe-SHgukLEpCkawSk1QWAAAAAABV1uZYxe-SHgukLEpCkawSk1QWAAAAAABV59PYxe-SHgukLEpCkawSk1QWAAAAAAAFzcMYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHaAd6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHW7e6tVKI4mSYDEJ-ABAIpYXcgAAAAAApa96", "types": "DgMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-vLpK350nikq7KFGmYwazg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAACwH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAABcKIQUb_XVozsgp2JNepBooAAAAAAAAAAYvCgrHQgh4sLRBYpPt01ZggAAAAAAAACdiM8LSJ_0DrAH3j2_fhBWQwAAAAAAAAAIKYUKYe5FJokP-mDuLYX4tQAAAAAAAAAJi2OZ9-P_pjOFSV36486xoQAAAAAAAAEn", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AIjbpW4afQJ6fKp4bSOkMw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABYM-q_yN6BkZgGVL7TrJEMggAAAAAAAAAFu6XfB-cCw0LqYf3LU2LbbAAAAAAAAAAqmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAANIfYj4waw9fP9op8fikoTJgAAAAAAAAAGmHLbruajf1ewhD5eRLIwPQAAAAAAAAAEIfYj4waw9fP9op8fikoTJgAAAAAAAAAGu80wzeYkSnSlt8hhdfSXpgAAAAAAAAAsaMdAw5F6bqw1nsXGt00a9AAAAAAAAAAT5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3Ge0L0SwsSbyUWsXqVMbKswAAAAAAAAAGDXStuM9FGoRVIzn6iyb_SQAAAAAAAABmLO0kqCJ5sLnPx_SwGJYFEQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMTbeJ7BYIhIN72fM2Cz8k8m9QAAAAAAASDV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmmh6tVKI4mSYDEJ-ABAIpYXcgAAAAAALka76tVKI4mSYDEJ-ABAIpYXcgAAAAAALiQnIG5EpvTeHopVC9IqkA_kSgAAAAAAAb-w", "types": "CAMyBQIDCQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ldIz4_ZIf6SyO1TJCB_KFg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN5QmcEvvhuguaGYCmGWrnWRz1QAAAAACNw4V", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yqNwMmnv9h-z0-i604hZXg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAFJeiEAvRyyg7Q8ghJd6qO4ZQAAAAAAAAApxDECjxfRDF0SAcicHv7yIgAAAAAAAAABSsODsFdp0k4d_SSQAFmIUQAAAAAAAAApzzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIGTDz5BEJ5HMljeo0WMABIQAAAAAAAAAg06W-_gYsVxvlZRgxvL-PiAAAAAAAAAEOcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIQVeLj_oPnEjl_jKTv8aQqAAAAAAAAAAlcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIMgnzgTUwSrjft9SA3YZTtAAAAAAAAAA0pTQwlw111ksRO8rVWFQy5wAAAAAAAAAuVKeIi2MKWzeJ-DxWf1HkPQAAAAAAAABnZr-QUGQ5d7tVx5lbmJB5XAAAAAAAAACOpBAXMFgFarqt_e84PodhnAAAAAAAAAAUtIoSY_1vT_j29F717EmR3AAAAAAAAAAPRZ01NrWKTMDuXelOk2KnKQAAAAAAAAA168iZXv_8xxb53ICXrvQepAAAAAAAAAGhCR_orhXYgPjlsF3bAh1bcAAAAAAAAAAQXoQBAZDyQM5EalVK0DT7vwAAAAAAAABIHHvO0O_M7qxq_PkVq5p74wAAAAAAAAHmtKRI47gaUATre6hVOVRyHwAAAAAAAABCmGc5SCx8bcB0yyOsBwmj6QAAAAAAAABwU3zFVJqAk_6RIGxkrHaHegAAAAAAAADYGIy5Mg_ksRG2OUR8ttDU2wAAAAAAAABA5VZIXKdThz-hZwdLu0KVfwAAAAAAAAAKyzF6hkXAWj2zsycLYYGV0AAAAAAAAACY90UIqO2n6jPWAsY9C7Jk5wAAAAAAAAD2fSKmBIT9ZsfwEX0Byq43wwAAAAAAAAAaMRefKuQ15Y6eStqPQ3JqewAAAAAAAAALFJWh2TWpjKPS8F7va_-E8QAAAAAAAAA0MAeNVf9VknVgzLcDuw060QAAAAAAAAAA", "types": "CAMpBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JoNW0S9pSsiAmHByB5KnMQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLVSALBRPvgHpUWKmpUo1khAAAAAAAAAAETryWt-l_RGzsQHaX4nMucAAAAAAAAAAA", "types": "CAO-BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fn0ZK2-ZIUvfytO-QISHyA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wsGXT4fd_WKeR1cE-hlLelCQAAAAAACgaF1", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kfr7TPEfSe6g4pC6WtyOxw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAnZ4NiN5Rb-vuXXHY-ZQp6fQAAAAAAAAAIoSV0vEfx2f4H442JtkKdLwAAAAAAAAACoGwyto3BslHwE9mIoXY8WgAAAAAAAAAFqvNVcLOt_ffF8fUAgdlifgAAAAAAAAACeHnN2Txvq-iOALceSe76EgAAAAAAAAAb1S9eFAopKcZX-VnW9ChdWAAAAAAAAAADw_8HYglWw-0jqUUlUeMgagAAAAAAAAAC5XlE5KvRrfbNOpt-JVgrOAAAAAAAAAAH_zxyi-wgtH_Wz8ut-WKY9wAAAAAAAAA3Urj27ZFZeZ-3lsT-8mj4RAAAAAAAAAAI5XlE5KvRrfbNOpt-JVgrOAAAAAAAAAAC", "types": "CAMRBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RhMJrUxrd57e6G7g2-PKcA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACu-VgZWZvvoe_9HhGDZJCzLgAAAAAAAAAO7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAFk3HyWSdTGgne1xIId1mIvAAAAAAAAAAzj_4mO8j1B3ZME-tdcn6y6QAAAAAAAAAJhyDoVUWwwXEvgB5sKTLeXQAAAAAAAAACHDR9S3uHHXddIiGMGd1LPwAAAAAAAAAJBTobNAGTus4ntELtY3QWmAAAAAAAAAFIaI4WGBylZKojnODB6segAAAAAAAAAAAA", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iKq1so1oRdQrNuV0NoX8eg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgKr", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vzyVw9-CnV8kDbp00nDLdQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgL9cEvvhuguaGYCmGWrnWRz1QAAAAACEUjA", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4muA3nXQ7wRP5Hb8eGEGZg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB32", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2m3Q7K61sMG8WQrx7RXxxA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbmE-NiX_iJuD7fQvrPqAmFQAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAACII10upgJihUkX5rBuiOc-YwAAAAAAAAAJN816FYHTOtc_r-SKnQbFZwAAAAAAAAAF-qxlzhISrkt3aTDb6YnIBwAAAAAAAAALNdgn5AcwNt45ePjHQiCx9gAAAAAAAABHRyv-L8Z4ce9G80LfTnsZhQAAAAAAAAAFdkVJJbpwB2SYYzBmvyms9wAAAAAAAAAGS06qc2WWdjyLzzAdWuSUuwAAAAAAAADmTl_Iodjc0LWexYa5MoBoHAAAAAAAAAAHe9bWXgbQU55mRVKn1epp1wAAAAAAAAAEDav0V-nM1jJ-7VtDnKysdgAAAAAAAAAEndEQ33n0g-5wOVAR1VMEjgAAAAAAAAAA", "types": "CAM8BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EgKG3D5vsxLZ2SNdnZFPlQ"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXUptYxe-SHgukLEpCkawSk1QWAAAAAABXVjkYxe-SHgukLEpCkawSk1QWAAAAAABXVBsYxe-SHgukLEpCkawSk1QWAAAAAABXZL0Yxe-SHgukLEpCkawSk1QWAAAAAABV3AkYxe-SHgukLEpCkawSk1QWAAAAAABV1uZYxe-SHgukLEpCkawSk1QWAAAAAABV59PYxe-SHgukLEpCkawSk1QWAAAAAAAFzcMYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADo1", "types": "DgMDBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wWjEk4V-ocnXQQZfOB5PAA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAAAjj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABdMWF-ta49FweBhvwuhsiFKwAAAAAAAAAO", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TuPnIZnhjIAYjeiVxPyaLQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAA5JaQSNDzWiYDmLZi_Z1ZVETLoAAAAAAA5JFkSNDzWiYDmLZi_Z1ZVETLoAAAAAAA5IrCSNDzWiYDmLZi_Z1ZVETLoAAAAAAA5IWRSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWdsSSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWderSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWaL5", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vB8t8x7qJssFpC43ts9N9w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACX", "types": "CAOLBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hMnXoL28a6WRFVFuXnlcrw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAE_jjh2hdWW_hCsOcCGaiEdgAAAAAAAAAHX_IfM4Yhf70tPFjQHjEkfQAAAAAAAAAgAlyGmh1B04rpTwKhuQi5WgAAAAAAAAAA", "types": "CAMyBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3KY9CUj1lI4EPyAmsjiKpQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAAX3IqZSkKN3zNxr0HYuO2pqe5hQAAAAAAdnyHZSkKN3zNxr0HYuO2pqe5hQAAAAAAdnxkZSkKN3zNxr0HYuO2pqe5hQAAAAAAdU3GZSkKN3zNxr0HYuO2pqe5hQAAAAAAb-pwZSkKN3zNxr0HYuO2pqe5hQAAAAAAdU9vZSkKN3zNxr0HYuO2pqe5hQAAAAAAb-v5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAdLOIZSkKN3zNxr0HYuO2pqe5hQAAAAAAbV1mZSkKN3zNxr0HYuO2pqe5hQAAAAAAvso0", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "injLhEi_92EbuwxraOUUxw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAAtSAAkutGejeRImCZXeWZ-1wAAAAAAAACLcDDKtM-30WtgKUZUhSPZowAAAAAAAABn-0VK45z04oVPTcwdwQBREQAAAAAAAAAF4RUgMlPWsuuY5K-fnQNJ_QAAAAAAAAADO6j-APvwgdAIUIKMPStK3gAAAAAAAAAQXw9SMMauw-oBWYANca-iwQAAAAAAAAHmbHBG5nCjuJ3R3DK71capIAAAAAAAAAD3t00AyiEovcQQgPQRAnJDoQAAAAAAAAAJ5jX00vRveA-bSGKVbRAzeQAAAAAAAAALRb5ObrmWUJbOO1wFU20z4AAAAAAAAAAGPPvCYyu5yFBBY965mL2tSwAAAAAAAAAA", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "R_D9JvJUWXzC0H3Nib_YHQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAADHgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACl", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rlbPtxuicfhcv7QXNW6CDA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABqVb0C_sYOU5d3eeu0yalLowAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAproTQ2x4u1u0ROVEifn0kaQAAAAAAAAAtOcVENYdBUHkmXadCZbxMcQAAAAAAAABX7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAMEozR7rHeowembmV8tqrkzHQAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAABBnftB2PmJZcz7DZJedLNipgAAAAAAAABQNDiNPs2SIuj4NddpL8knJAAAAAAAAAAC_OOeQuiXtvgynmE43QMbEAAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAHIEeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAR5W6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZR", "types": "CAMwBQIDBQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uVz8NwCzYiroPS8zol4cYQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_ecYcEvvhuguaGYCmGWrnWRz1QAAAAAD-KGA", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kZ_bArkiIPRSWu3KZBADQA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVjPR9TpcCS0lbmVL4a1jldQAAAAAAAAAxHzkYyi2C6L3vJegaT4d3DQAAAAAAAABZ4SaczMOcyKF5Gqg5WKpyoAAAAAAAAAAFTlT5gmlJsqTSqXNWcGzMkwAAAAAAAAAucqdeXsJObgb8NROIUbndoAAAAAAAAAAA", "types": "CAMKBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Kks8edTwYqrUkhTSOKMQMw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACQACv", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7o7oGlZRFPD9hlZHJQFaeQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAD8uIpQ1uRexMdnpWaro5896wAAAAAAAAALtpYrdrzxLxKEo0lof5nOvwAAAAAAAABTGXqdtKZs0jCPru_AD4bs_AAAAAAAAAFycVCWdIPyBbQitZhcw5plhQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAMKiKQXI5stF5N-InJuXrsjgAAAAAAAAAEL4Zieid3nVkNJbdYJumC3wAAAAAAAAAPMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFTU7DQ3uAw_xM7DAGYMk_cQAAAAAAAAACMbWvdU9Gsml4RhNka2lJ7wAAAAAAAAAFOa5CkhVOrx2r2YkOsLGOZwAAAAAAAAAeJUqoXh4FCdEByaAYgHthzAAAAAAAAAAKl_xl3hARd-vjgdwUC4TrNwAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAADUM3h48-oBMi00mRAqhB4IAAAAAAAAAAjNrvcSCGNEuayQcoP_4CXWQAAAAAAAAANp3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAANqUqjB_amR59Lv13Nhle_NwbwAAAAAAEPzb", "types": "CAMuBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pDo331a23FHFPXYKG9i3EQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChkN8XT4fd_WKeR1cE-hlLelCQAAAAAAChdmzXT4fd_WKeR1cE-hlLelCQAAAAAAChdCoXT4fd_WKeR1cE-hlLelCQAAAAAAChd6d", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cqS65a_0vS0KD1oFWfGPCA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAADHgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAe", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "val5lb3yDclirfA_QdK7Bw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAqeSs1xpPdaQi6BA9wz10SrwAAAAAAAAA5TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABUfZfGpgZFJokP-jaeydrs0QAAAAAAAAAJjg3LdO4DNz9FsefjUG1F1gAAAAAAAAAA", "types": "CANVBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OwYjh2SJYfmFVJG36Cn3Pw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPBxI5O-imEgV3N9x_K1cpQwAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAITQJwJt0-vl6QQoIDFyT9WgAAAAAAAAAmi8xLrghLCR3CLFjtylOjjAAAAAAAAAAkEu2eTQ_3gXX-hva2wFAN4AAAAAAAAAAHm_vFRi2fRRTLPHNf1t7ZcQAAAAAAAAAA", "types": "CAMSBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bCqkpCznSihZhI5AqtWxgg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAAAaieVPbh3z67ZFj7IGoqq7zgAAAAAAAACEBFI7c7JS1eVbUcz-CuyraAAAAAAAAAAJpE_XF-eq0tBl0fP7Y7zrSwAAAAAAAADY8uVqqmQs2krZT40-iqFC3AAAAAAAAAC8xIfNH7oj8c26gQcDKc66DwAAAAAAAAAURuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAA8ix3sTGLCNH21piOrMPoln5uBQAAAAAAxhJeeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAObn6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMKBQMDCQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mzLwn00dO1KbECLOnE-3eg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw1x4XT4fd_WKeR1cE-hlLelCQAAAAAACwXETXT4fd_WKeR1cE-hlLelCQAAAAAACipi9XT4fd_WKeR1cE-hlLelCQAAAAAACipFEXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAANp-o6tVKI4mSYDEJ-ABAIpYXcgAAAAAANpvh", "types": "FAMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "beuv2u9oMMhwQHihFlStkQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF353Bbxw0b5wHlGJY1WEVWAAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4bWZWPptWisqbpRDA9X8cNgAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADv9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABDHfFlM3axnhO28EteQn-2WAAAAAAAAABJ5utt2dQ8HKrTepHdNpprxQAAAAAAAAFzUP7wzdQXo1Tc_iFi4DuZQQAAAAAAAAAE9ZOKtWsgasz8zygdckTZDQAAAAAAAAAEEVcCXOQnkebnZR5Z6XcBvAAAAAAAAAA0SLm5iQaRU0eNqFhBMIrYxgAAAAAAAAAXvOoArOQsiI-woapVIk9zYgAAAAAAAAA1NnsXqH-CVYMwVp_zbU78aQAAAAAAAAAIQunNj1oMDkHtmA3AacNPUAAAAAAAAAAFx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAOPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMzzqjB_amR59Lv13Nhle_NwbwAAAAAAENS56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALb816tVKI4mSYDEJ-ABAIpYXcgAAAAAALb7s6tVKI4mSYDEJ-ABAIpYXcgAAAAAALbjV6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkpk6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkVr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL0Zf", "types": "CANNBQIDDAQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "23D9WYWWXJZPmgi3LP_trA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAGyVtVXhl6s6URamlTOMTdcGgAAAAAAAADcdxb67a9pdOnwKSyUl3yo7gAAAAAAAABYCIJa2mPNm8b1wwJ_UCRwpAAAAAAAAAAFjWxMhVzBeHM3bqEF5ueSZwAAAAAAAACOd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsSidn5oJ7A2M_efsiHDz05QAAAAAAAAAT0_jShB-DuV77HIBPKqBRjgAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEXnZcAdwBOPPRQ2hQm4YWwWgAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlscYYsnZ_Lwaqr0cHEPo0D185QAAAAAAVFpz", "types": "CAMzBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "x6zpGPd4X75Br-x7FtPi9Q"}} -{"Stacktrace": {"frame": {"ids": "E1fYhCC-W9hkMRzkOdu22QAAAAAAAAAg52XkZKHpOlq2TOi3L8YfPAAAAAAAAABd", "types": "AgU"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Spa1oEv_GaWrLXNIiVxEEQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFdkIcEvvhuguaGYCmGWrnWRz1QAAAAACFWIHcEvvhuguaGYCmGWrnWRz1QAAAAACFVZ1cEvvhuguaGYCmGWrnWRz1QAAAAACFWUM", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qc4K52prFTkYQaEkp2a1aA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAvspzm-_Ca31VwijYVQAZSLAAAAAAAAAB7TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABUfZfGpgZFJokP-jaeydrs0QAAAAAAAAAJjg3LdO4DNz9FsefjUG1F1gAAAAAAAAEgf6OHtxWEEYSKC5jCOpZRYwAAAAAAAAEy", "types": "CANgBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bgzswmC99T0GXpCWQr9U_g"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACX", "types": "CAO9BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CJcaXL-gkWEKk5sisV1pCw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAGZ", "types": "CAM7BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4BeOljMY7zmWSgDKbEbSZA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAACC3gDxzJnNA7N984KflEQ98gAAAAAAAAA7bSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAATKKq9hFu_HcVwkAnnzs7gcwAAAAAAAAAHDJAMC8tUl4_oL0LoeNoUgQAAAAAAAACVSjePYWwKalqPF7fBjhLglgAAAAAAAABeOVbzts78rozw73k3kwZElwAAAAAAAAAJw52v69QzC-f_wTnaeDz8vwAAAAAAAAALKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABi9vQUYFyqiRwc7z93wKeGwAAAAAAAAAQVr464Hci92DwulADwvd6QgAAAAAAAABZJvScc-kAblhDe3HgLZgGAwAAAAAAAACNatxNg2wB0yTwBdq5mQELkAAAAAAAAABVTm69BHhvzhA-OK8e2Udw5AAAAAAAAAAIhRsRUw78WKiucrogpgXANwAAAAAAAAAHsueTM-LYsBZU9Btl9NKTwAAAAAAAAAAEomA88yQfT91566xoyEY7sAAAAAAAAAAcuivmFtqkx0mSDLjpV5jf4gAAAAAAAAABRK8a3DzcZMuwoK9TpGXQTwAAAAAAAAA3hDeNHR-uaDqXexxBeqdlYwAAAAAAAAABNuqcOqANutL4nD8JjGfmlwAAAAAAAAADpNkwmPEaVAW4yiwUp-qSTQAAAAAAAAAM9qVi_GBt6qKT_kgVvmjrsgAAAAAAAAAJFxtpJ_NWQpPJ5FLumU0ojgAAAAAAAAAIv9PefBDDy2o7h2ynvK6BYwAAAAAAAABatItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAANJa8NlMClggx8jaziUTJXlmWAAAAAAAATrT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSg76tVKI4mSYDEJ-ABAIpYXcgAAAAAALoLB6tVKI4mSYDEJ-ABAIpYXcgAAAAAALoEa6tVKI4mSYDEJ-ABAIpYXcgAAAAAApa94", "types": "CAMuBQIDBwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "r6N0xoA2ZW8gX4-YxbnuYA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc5-Qz5k14PsCcDvFyUC1kmlV3QAAAAABcnaEz5k14PsCcDvFyUC1kmlV3QAAAAABakmCz5k14PsCcDvFyUC1kmlV3QAAAAABaBsyz5k14PsCcDvFyUC1kmlV3QAAAAABaBLIz5k14PsCcDvFyUC1kmlV3QAAAAABHZsIz5k14PsCcDvFyUC1kmlV3QAAAAABKB57z5k14PsCcDvFyUC1kmlV3QAAAAABLLQZz5k14PsCcDvFyUC1kmlV3QAAAAABK3KAz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWsF", "types": "DQMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NHMC3YByz5PUd8-9hJAYRA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYRr8mF3o9czEU_lrcVazITQAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAHVRV3OqaPHH0CL0c13xlvAwAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABbjYv_loUJfP4bAxHmRpfBQAAAAAAAAAI_avzkz28Qok2WNYNUK8x_AAAAAAAAAACHRX5ZF5fIW1GKCXf3a6CmwAAAAAAAACtBTDQHzxuOEAYM78jOAyAQAAAAAAAAAB3t7DkRGcQiDMfHx06PCzMpQAAAAAAAAAXYEThj3UEuGl2wDiJSq9vSAAAAAAAAACqZou-EwmpdzrcXx7eij10xwAAAAAAAABPIdkGKdrrMvbrgpaqyJ-rigAAAAAAAAAJUpqzzk59PbxypyRs4QkNMAAAAAAAAABTN1R-9DGIZrDXK9x_wnFgtgAAAAAAAABD7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAAB3ZTYW2hueb8qo9sBuOsIdRgAAAAAAAAAn6HagrPNegEb1JoaDvxlnywAAAAAAAAAp5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAABk5Uou4zo8CYHEIBNHWH07rgAAAAAAAAAr3zkiH4qhUqKLc3ya3rUiTQAAAAAAAAAM7Ri4HFWgKP29WX5jactbGQAAAAAAAACWDaLOu1u8r2OzUEp60ph7fAAAAAAAAADXMgCpDbfqkuF0Au3Mi2jaeQAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAAHO", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "56T0aIwgwSEUNL-7riuYkQ"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbVnYxe-SHgukLEpCkawSk1QWAAAAAAAFy1kYxe-SHgukLEpCkawSk1QWAAAAAAAFzIeYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaZ", "types": "CwMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9pmIhrtRRi4GPUMxg8HjSg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ9H", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tDdgTWNJfepwn2J7xetthA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOIeuXT4fd_WKeR1cE-hlLelCQAAAAAAEMaRWXT4fd_WKeR1cE-hlLelCQAAAAAAEMaSyXT4fd_WKeR1cE-hlLelCQAAAAAAEMaXEXT4fd_WKeR1cE-hlLelCQAAAAAAEMb6zXT4fd_WKeR1cE-hlLelCQAAAAAAEMbPkXT4fd_WKeR1cE-hlLelCQAAAAAACi_9XXT4fd_WKeR1cE-hlLelCQAAAAAACiJjoXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALcoN6tVKI4mSYDEJ-ABAIpYXcgAAAAAALckr6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpFF6tVKI4mSYDEJ-ABAIpYXcgAAAAAALo-l6tVKI4mSYDEJ-ABAIpYXcgAAAAAALko96tVKI4mSYDEJ-ABAIpYXcgAAAAAALkCo6tVKI4mSYDEJ-ABAIpYXcgAAAAAALjgt6tVKI4mSYDEJ-ABAIpYXcgAAAAAANysa6tVKI4mSYDEJ-ABAIpYXcgAAAAAANyMV6tVKI4mSYDEJ-ABAIpYXcgAAAAAANt0M6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp15j", "types": "DwMNBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JtidomUfrSQ73J6IJRGkGg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFbojlkH6U8-uq6rXJn3yJDAAAAAAAAAAETKPAl4roVc6u9INGFwfp_AAAAAAAAAAM4iaBbZIIwXRBOYMSVscz2wAAAAAAAAADf5pCmW13zl5OWUDLG_ClrwAAAAAAAABNynHqfILVzOOqJs-5yJf4gwAAAAAAAAAeU2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAABU3F2z0U59C1y3O1vSXqnJygAAAAAAAAAc6_xlTgG59vnh1ZByxJjaSwAAAAAAAAAS", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2p1e_ByfhPk84t_WqyZsxg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiGKmXT4fd_WKeR1cE-hlLelCQAAAAAACiGQFXT4fd_WKeR1cE-hlLelCQAAAAAACiKCvXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALQox6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL4gS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp15j", "types": "FAMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LtZuBt3l0YoQy2lVtYcCNw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAADH7dGXT4fd_WKeR1cE-hlLelCQAAAAAADH9wkXT4fd_WKeR1cE-hlLelCQAAAAAADH_GrXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUVuXT4fd_WKeR1cE-hlLelCQAAAAAAChz7c", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nsV16gz3SHNxrBEt4b7ZuA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABFj51z5k14PsCcDvFyUC1kmlV3QAAAAABFlMAz5k14PsCcDvFyUC1kmlV3QAAAAABFlde", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "n7QrrEicoQGmnUiZzNk-Kg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnChGc_KlbDChxhbLYz-xpPwAAAAAAAAALOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATD1Pplq_qKhq6dsYD8eLgmQAAAAAAAAAHcgvbeZuClZL5_u10G3w_3QAAAAAAAAAWh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAt0gz1mhmhTxHCVZG94cP1QgAAAAAAAAAF-7DooF_BqEazp1UGVZs9GwAAAAAAAAAFANUDzCguopTSw91qnI0ylAAAAAAAAAAO-kwQ5tzIMTia7ESgS4_wzAAAAAAAAAAdf9rhWt1EzalXyXMX3OGNPgAAAAAAAAAyY9mQUdyp86jQhHqOid6GcwAAAAAAAABFbFNBCgHVi2ZK2yGNK4LXZgAAAAAAAACvQG4uvtodA7e8bZRtCyV-1wAAAAAAAAAFEW9nZaN8BShvrLqYMPouGgAAAAAAAABvQBjfr5WcoAiicl019DqgDwAAAAAAAAAC3FAwHepaXASSavPbdTvCJAAAAAAAAAAHBBv-21qRgT6sS06vQ0duDgAAAAAAAAAmXMklUHzHCnlEsWM76-8VbQAAAAAAAAAFMU7gfP_SLESDVzu3Rjfw3gAAAAAAAAACWZyJLjGK3Rrc56nHtXuAzQAAAAAAAAAfgyQVNj6p9QSSg0Kib22CpQAAAAAAAAA2ejbc06Btu025yr3_JPXOAQAAAAAAAAAFsZpPWBZ2sVOy9PmQsNzK_AAAAAAAAAAF_v4rMkGY9KRFPld8us290AAAAAAAAAAEqGs-5c7rr1dopGxSByMUNAAAAAAAAAAY-ONwHRu7OfgV9W2gyM5rZQAAAAAAAAAmhhKEJNzg5B_JhARG4cFP2QAAAAAAAAA2", "types": "CANxBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "G81V791m7uA9YBPgoQEn8A"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcM46", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UlF3sWH6N3gcr5OTBdjCWg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYwsEP3PfgbWsvPc4Y_rpLYQAAAAAAAAAEbxUfVnyBZI_pROsv4HjqngAAAAAAAAAQku9JPnt9w-bpii9tERrqJQAAAAAAAAAW2CjidhF2o1l9AQQZ7O2_8wAAAAAAAAAVAmTcFForv1r91KDhJjsuQQAAAAAAAABh7BvwwtuvWC96Hl7IBrycDgAAAAAAAAASh3gGqWFKeM0FT-wjtm8F8QAAAAAAAAADsXYsfWKSXv-0U7gobefHRgAAAAAAAAETtv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAAAoXyIB1JXxkoOQjMae8CICgwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADNq5-VNNWJnEe4GvJK3_qvJwAAAAAAAAAA", "types": "CAM7BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pMpUaohMW1U4VleTGyqfTA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgbukcEvvhuguaGYCmGWrnWRz1QAAAAACXzce", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "P0mdBgw13J_O1CukthEqMQ"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEU0Q", "types": "NQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0Nu4JYvGvXl5CW_RB7l_vw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR0-", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fVK6SdkNVQXTuBBVfv40gA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACLFDHy--PvgHpUWFquuqO7RAAAAAAAAAAEM9Xltn711KKFcrKCAYh_ZgAAAAAAAAAE", "types": "CAONBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AgA2e1jJZcOpDqcyIoAQmA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiFx3XT4fd_WKeR1cE-hlLelCQAAAAAACiHvpXT4fd_WKeR1cE-hlLelCQAAAAAACiMqkXT4fd_WKeR1cE-hlLelCQAAAAAACiNLV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQL", "types": "FAMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Pr_aC7V9ziezcWkTX9r7wg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAEAgdJ8vDKka1PRCLkG2MafAAAAAAAAAAQH1KUm8kRHR6ux5zgq2-v-AAAAAAAAABC6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAepxFz17lb-voh9uZicvdXWAAAAAAAAAAgCpvjWyzlv7sy206ARLr_PwAAAAAAAABU", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "96zUk00wJUkz6pqWJ4UVBQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZxZ", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Y2rsoafmE6xytYWP5sYCtw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWqVaSNDzWiYDmLZi_Z1ZVETLoAAAAAAAbEjISNDzWiYDmLZi_Z1ZVETLoAAAAAAAVKmb", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7oGs945PXyHA3K9GcsRw1w"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYRr8mF3o9czEU_lrcVazITQAAAAAAAAAQQyqSuO4knQd2qtDeF-TNPgAAAAAAAAAHVRV3OqaPHH0CL0c13xlvAwAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABbjYv_loUJfP4bAxHmRpfBQAAAAAAAAAI_avzkz28Qok2WNYNUK8x_AAAAAAAAAACHRX5ZF5fIW1GKCXf3a6CmwAAAAAAAACtBTDQHzxuOEAYM78jOAyAQAAAAAAAAAB3t7DkRGcQiDMfHx06PCzMpQAAAAAAAAAXYEThj3UEuGl2wDiJSq9vSAAAAAAAAADmjckGVFRAvWURR3kz1QpfwQAAAAAAAAE1LGU1cv44dOYAfRJb2zZUygAAAAAAAAA4Yaq_ZPVYV8_Z-By5_vQaDgAAAAAAAABMTS2QkeOTCuWRkvxnP3njcgAAAAAAAAAOhEyUosxQ0vIlkjW1VI-NgAAAAAAAAABfrySGNEQySb7MA794oFUABwAAAAAAAACnlxHcaURO-m3kXQ7hisaTggAAAAAAAACebTdYcn7KOYzHw4Ya7GGyqAAAAAAAAAADz10oPDA4ABXY9WzGmRvBRAAAAAAAAAADnj1qzrl6L5k069vQYWrfDwAAAAAAAAAG-ovkWHozpN2-8iNzayvixwAAAAAAAABwCfRf9TyA02mWCsGnRge77gAAAAAAAAAllxHcaURO-m3kXQ7hisaTggAAAAAAAACebTdYcn7KOYzHw4Ya7GGyqAAAAAAAAAADT6UGgcQ3__wRtVrr_rk05wAAAAAAAAADK9OCWqS5SAb4cJdL5ezbRgAAAAAAAAACGfgXxrIArRsIuGBVivq5BwAAAAAAAABEjItM8pU-ziW2ZhusxnxM4AAAAAAAAADRjOvgYa7shL23WbA9QtpbWQAAAAAAAAAJTQ2LRd-v1-9930ZjrEFsRwAAAAAAAAAre90u-5fAd6zfZCzh34GJuQAAAAAAAAAI0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAdXn_k4_43vglT-Otx44IO_wAAAAAAAAAMOvY4gWKUyFLZ_oYetFS67gAAAAAAAAAGNgmlLhxvERG4WTGcweKAVwAAAAAAAAAVRG27-YI0581PEQWOvS3HXgAAAAAAAAAVM4KBRS9q0Edna2hel2w25wAAAAAAAAAIHendR2k2A3kZgzQL6qeENgAAAAAAAAAQZj5QB5uhPrJNwjVP12ZBowAAAAAAAAAKnZwXh40FR8SZC_XL30MMlAAAAAAAAAAnx0ahWaj52_bOkFwUURNgMgAAAAAAAAAV-e9nMbB0qNMiMgwTOJCn3QAAAAAAAAAujc_gTRhKuHzYfRRa6SeBIwAAAAAAAAALXB92ZqmjSf6eYVY2gfZzzQAAAAAAAAAUcvXAHIc2bboYaLZDpzNq0gAAAAAAAAAUUls0JHJ0eURv_ZZmvf5vJAAAAAAAAAALRPclKk5Lk9GZ9ViXMhXyvQAAAAAAAAAKBXoNavmSXM1WHYfmBeTWIgAAAAAAAAAOb0xTM4MM0lp7PX9t_5EbBwAAAAAAAAAFxEM3SPWHKNN9K-p8mV5GkwAAAAAAAAAjP0AToR6W6s0AJL4UK2BztAAAAAAAAAAFiDpjCnxG963ajmZCaRJh8gAAAAAAAAAZCcT16vX599qNhHdTkpCDlQAAAAAAAAAlJ-1FlE9XNrEUl25WPyWchwAAAAAAAAAB37FBA0FpXnoFexN6EMFOzwAAAAAAAAAG", "types": "CAM-BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "L7NiiM2JcpyLYptGtnS-lg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAABhRJXjPkp22gaQo9vwY-85JAAAAAAAAAB1DLrWTvtAPDh4Uv4u2shragAAAAAAAAAMAAAAAAAAV4sAAAAAAAAAHYXuSio4gqgnZSkKN3zNxr0HYuO2pqe5hQAAAAAAy90wZSkKN3zNxr0HYuO2pqe5hQAAAAAA5mV0ZSkKN3zNxr0HYuO2pqe5hQAAAAAAt0nYZSkKN3zNxr0HYuO2pqe5hQAAAAAAtz00634wiWh6F21tPpXr0Zz3mgAAAAAAGLpR", "types": "CAMkBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "L6cJEyVPJDgBEJDXdVk3pg"}} -{"Stacktrace": {"frame": {"ids": "2iSc_7W6mQyfzHA8XRDUrwAAAAAAMJS92iSc_7W6mQyfzHA8XRDUrwAAAAAAeB7Y2iSc_7W6mQyfzHA8XRDUrwAAAAAAdGxJ2iSc_7W6mQyfzHA8XRDUrwAAAAAAdJkN2iSc_7W6mQyfzHA8XRDUrwAAAAAAdIuf2iSc_7W6mQyfzHA8XRDUrwAAAAAAeMBU2iSc_7W6mQyfzHA8XRDUrwAAAAAAd-2z2iSc_7W6mQyfzHA8XRDUrwAAAAAAeJnX2iSc_7W6mQyfzHA8XRDUrwAAAAAAb4aK2iSc_7W6mQyfzHA8XRDUrwAAAAAAb4Ss2iSc_7W6mQyfzHA8XRDUrwAAAAAAb4-D2iSc_7W6mQyfzHA8XRDUrwAAAAAAcRsC2iSc_7W6mQyfzHA8XRDUrwAAAAAAcSb62iSc_7W6mQyfzHA8XRDUrwAAAAAAOpQq2iSc_7W6mQyfzHA8XRDUrwAAAAAAOxeZ2iSc_7W6mQyfzHA8XRDUrwAAAAAAOLjH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaJ", "types": "EAMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OlH3AeYcsXnih5MNDHAYTw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBbBcEvvhuguaGYCmGWrnWRz1QAAAAACOHLRcEvvhuguaGYCmGWrnWRz1QAAAAACFObNcEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEV73", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3qMqnk45t6i15Udhr4oapw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAALY69pONqxP8-okyxfNdJq0BgAAAAAAAAAT84y2a9q7-onYC7ofRQhclAAAAAAAAAHbdVre-yWU3wOgyoQuLjZhuwAAAAAAAADHqsf4oB191Ejhqczjg1I-pAAAAAAAAAD-", "types": "CAMMBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_fL9Sy2i4FwG6fgla2SkUA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR1TSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa_9n", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "btPiCrGC5QuwreUh6KDqzQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAABzzXvjOvDFEHH50WhZ8-7e_gAAAAAAAAAMxhOAoPbUvqtSdEcy7uoPXwAAAAAAAAAFeXimxJw4055xWDImg8DzoQAAAAAAAAAq5Dz1NwJhW8tUTolfpVyg2gAAAAAAAADhGmYMrqcymh2Li0OrBJcg8AAAAAAAAAB-Yl3DUlOurecWUHGWEri9qgAAAAAAAAALs7VKGxcbaRsZOEk0pfn1eQAAAAAAAAAE", "types": "CAMMBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OlDB0giXI1NsaTgwfP9dqw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeYDw", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uD9v9EeBRS5EzcNLZ8q2gA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApfzLzWZQgzth4yv0Aw0PoLgAAAAAAAAAl1pEcO9CYkxI799CldX3uowAAAAAAAABSkAS4tZnm727VHuczPAa5PAAAAAAAAAAIFGIyujYFiBFB20lehksXnQAAAAAAAABuxeLkxlCJbD-jtS5CPDsFnwAAAAAAAABVSH88ErM62X03uvl7agbg-gAAAAAAAAAhqRsaUHNh_qX8NJ7PJ8UPlgAAAAAAAAAC0_GAKGTqJwuaf0qvI3OAnQAAAAAAAAB07-NWIMSLKY69QheXospWHQAAAAAAAAAEGOrFnkqGTEzDlTO1qewmxwAAAAAAAABQBA250vvzivD0xU5n0tBlVQAAAAAAAAChwtUBrbVI_J5MyPpHxeWtLwAAAAAAAALT0_Qu9apMk2NBmlHgbr1B6AAAAAAAAAAIDzwHbI_hkQLoR-b5ZwurJAAAAAAAAAANf8smoKkVzOwrZFvOEITpFAAAAAAAAABpRbwJfDNWDVXH1ixAk80o7AAAAAAAAAAFutEPZPcb9QkY1sT0al86CwAAAAAAAAAUGGpT9fby2ritc6GcRAuqCQAAAAAAAAAiRFzJhIJVFZEvHYnGHLETBQAAAAAAAAAHhyEF2Wj5V1Rxjbi2r2WzAAAAAAAAAAA8PuqALVWVZC5u2cGptLJJTQAAAAAAAAAL9IQduOGHR91uLopyhByioAAAAAAAAAAedc3K4Tj27vRv16izOvZ0OwAAAAAAAAAX", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ducvofyrwFEKpejeDz6ZEA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAArGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAABWdZbEvj5KNLRaqtv4ShlGOgAAAAAAAAAHAvY-8GTrHONLnLoYn_aUmwAAAAAAAAAl9iPPrg1Y9vtWhMk7mXQ_KgAAAAAAAAAeuJZrofYGiqBpYJJdGGtLHQAAAAAAAAADzGZ_gCn-Ge9oHmah2m0JWwAAAAAAAAAD2p4Dyo36Ea--rGgiVt2H5QAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhTEqFV6xhVekP5-uToPI32ragAAAAAAe4yGqFV6xhVekP5-uToPI32ragAAAAAAZgEGqFV6xhVekP5-uToPI32ragAAAAAAhykg", "types": "CANOBQcD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PDs7NfSLItAy9yFZzNUo4g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF353Bbxw0b5wHlGJY1WEVWAAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4bWZWPptWisqbpRDA9X8cNgAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVamhiroi9lH-AuCvUISnaLwAAAAAAAAAGQoETQaJh4hk1PJNhgxG6YQAAAAAAAACeJn0UNoyB8RODf8CSewSSrwAAAAAAAAAd4ATwOy2xX5oIgSybARkoywAAAAAAAAAFk0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB0qRvG2N9iYeFyl-3xULRJEgAAAAAAAAAe1xeqGUZm5RNvukFb2REJKQAAAAAAAAAIFtjh-A3lytsNmmUroc108AAAAAAAAAACuimFkk5UuxbH1IL630LmngAAAAAAAAAbVPtMofZCgqrw-l9pGX7aHgAAAAAAAAADRSgrZm24iCMR6dfllqWutAAAAAAAAAAaK_N78LhUkthI1fnHsP1_6gAAAAAAAACtTdLBc1JJ3J60d1mSzjojBgAAAAAAAAAA", "types": "CANFBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uRrKKaf_gbp1De235zmPrg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrqkcEvvhuguaGYCmGWrnWRz1QAAAAACEPWq", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sSznj8DVFmJrz2nQyuMvVg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAazVvSNDzWiYDmLZi_Z1ZVETLoAAAAAAAayyfSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcOjMSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcTyKSNDzWiYDmLZi_Z1ZVETLoAAAAAAAaWNT", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iMrQPudvsPLod26LuW-2pg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAAA65FYxe-SHgukLEpCkawSk1QWAAAAAAAA8D0Yxe-SHgukLEpCkawSk1QWAAAAAAAA_IZYxe-SHgukLEpCkawSk1QWAAAAAAAA-wkYxe-SHgukLEpCkawSk1QWAAAAAAAAM8Z", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pf-Heq8cDrQxCCAzjzKdYA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWC4XT4fd_WKeR1cE-hlLelCQAAAAAACil8SXT4fd_WKeR1cE-hlLelCQAAAAAACil1rXT4fd_WKeR1cE-hlLelCQAAAAAACilgxXT4fd_WKeR1cE-hlLelCQAAAAAACilbhXT4fd_WKeR1cE-hlLelCQAAAAAACioakXT4fd_WKeR1cE-hlLelCQAAAAAACgIh_", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XSWbewDyObNkMZFMkquH-Q"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtyubZ3CKaS4aU08RhYA19y5ITQAAAAABtyFRZ3CKaS4aU08RhYA19y5ITQAAAAABtxjkZ3CKaS4aU08RhYA19y5ITQAAAAABtnohZ3CKaS4aU08RhYA19y5ITQAAAAABudIg", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vUd7LUOlEzT1w32bH1zYbw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAAClatcXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ayg1IWi6ap3XN7RjaMkRog"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-uTvXT4fd_WKeR1cE-hlLelCQAAAAAAC-xG9XT4fd_WKeR1cE-hlLelCQAAAAAACp71EXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCQSXT4fd_WKeR1cE-hlLelCQAAAAAACjB3g", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dePPhixGpLKqsMMaUhbMkw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR7v", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fR8gXe-G1OoCrBfWymUTjg"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYpqL9Bd3XIiGWasJdN8trI5tgAAAAAAA1YsL9Bd3XIiGWasJdN8trI5tgAAAAAAA1LtL9Bd3XIiGWasJdN8trI5tgAAAAAAA0G2L9Bd3XIiGWasJdN8trI5tgAAAAAAA7MmL9Bd3XIiGWasJdN8trI5tgAAAAAAA7IxL9Bd3XIiGWasJdN8trI5tgAAAAAAA7IxL9Bd3XIiGWasJdN8trI5tgAAAAAABcNt", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oLIJJ3vFP9iOSdpBALj2Hw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABT", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "r4lcZDimr4HL3ZJBoS4zaw"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACe-XXgtQ4kMk_MBWrPUAFqVnYywAAAAABxp4WgtQ4kMk_MBWrPUAFqVnYywAAAAABxXQ9gtQ4kMk_MBWrPUAFqVnYywAAAAABxXzEgtQ4kMk_MBWrPUAFqVnYywAAAAABxZkkgtQ4kMk_MBWrPUAFqVnYywAAAAABxXzEgtQ4kMk_MBWrPUAFqVnYywAAAAABxZkkgtQ4kMk_MBWrPUAFqVnYywAAAAABxXzEgtQ4kMk_MBWrPUAFqVnYywAAAAABxZkkgtQ4kMk_MBWrPUAFqVnYywAAAAABxX2lgtQ4kMk_MBWrPUAFqVnYywAAAAABxasngtQ4kMk_MBWrPUAFqVnYywAAAAABxYN1", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "K8gQh5zdfmwr_L8d6j_v5w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcM9Xltn711KKFcrKCAYh_ZgAAAAAAAAAE8s5hM6TvWnoP9XP3e8VVVwAAAAAAAAAHwh6xTQPkmoOUUrUOOnnNsQAAAAAAAAAgXmED6DCBgU_nxWWvvj2FeQAAAAAAAAAA", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Bc2bznRO7nqTExYFV3_HmQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5WiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATeCaKzXzVKYqqs4wMxzAp3AAAAAAAAAAKxzEX_ryOXWtTMQZYJuG-1AAAAAAAAAAD2XDg5u84AThLncvQweEa6wAAAAAAAAI596H7IcrFu8Zg3f7WMu_LagAAAAAAAAAqztj5Yc58Fi74AN4K12GxCQAAAAAAAAAIeXp6ZabxmzABDzP1KpFPrwAAAAAAAAE4omklHAPZnqPNJHwVpvh2vQAAAAAAAACrqwPQ_i5WGexQYU8q8eVTyQAAAAAAAABzoSoGUxBn_MfT_4Ncm-yGtQAAAAAAAABaAl_h9gC68463XnWmby4-QgAAAAAAAAAJWQoT5TvZ3eOmkl3OPEBMywAAAAAAAAAuPRgslp-mhiA259jp7eDUDAAAAAAAAAB6CB3cooh_xs9YH9mUphGzWwAAAAAAAAAGxH7fDwWrFq_DRtbR8yK9XwAAAAAAAAMEVTfbcIJC4j-MNC5M8fX4oQAAAAAAAAFRQ6_txoGw_guH_gJuuKUkJgAAAAAAAAAXf_CZN8iINQcDj7x0CPthQQAAAAAAAAAo8Yk_yt_nArkN1DTfkl8kWgAAAAAAAAF0CRfXdVRXBus2UmwV-rdG8AAAAAAAAAAMEeBm2vPFcnytFzkGIYZfFAAAAAAAAAAYSo3FGd7WJjIO_5ktfF2gpQAAAAAAAAAA", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sizNQvpwrsYG1iwjQh48UA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBmYXT4fd_WKeR1cE-hlLelCQAAAAAAClZotXT4fd_WKeR1cE-hlLelCQAAAAAAClbIIXT4fd_WKeR1cE-hlLelCQAAAAAACiF9EXT4fd_WKeR1cE-hlLelCQAAAAAACiIXMXT4fd_WKeR1cE-hlLelCQAAAAAACiMvPXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "N6yoC5MEhf-Plh-uBAaDFA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "CQMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rMpzXndoIcEiY0-GRAGnyQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEWB9GVskeRyK4_o3XD61XIAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAqJzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAqdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcO9_JyaRKYBdkJrY8OUa6igAAAAAAAAASDJ2lZS85ClNgTnnEk8XThgAAAAAAAAAcXwAhZSmmzOw18_-H38te0AAAAAAAAAAA", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "C6VUfIIv3MbNvll1xucbVw"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXEEgtQ4kMk_MBWrPUAFqVnYywAAAAABqaJ-gtQ4kMk_MBWrPUAFqVnYywAAAAABqYSWgtQ4kMk_MBWrPUAFqVnYywAAAAABqYbkgtQ4kMk_MBWrPUAFqVnYywAAAAABqaXXgtQ4kMk_MBWrPUAFqVnYywAAAAABqPf2", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-C8OkGycyUxmY2Oeulo77A"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAABhRJXjPkp22gaQo9vwY-85JAAAAAAAAAAA", "types": "CAN3BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BfRadBAJgVIPCs4sRWRCsQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAazVvSNDzWiYDmLZi_Z1ZVETLoAAAAAAAayx-SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcclQSNDzWiYDmLZi_Z1ZVETLoAAAAAAAccSXSNDzWiYDmLZi_Z1ZVETLoAAAAAAAVK9D", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FN7nwOP7JnV5VSJaq0yJcQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADAYnk6E9ReVsUsstHFtTIiXQAAAAAAAAAyfT0k69QoWDcgSGG9DEbGKQAAAAAAAABU3yZRDT05_hGvUj8jRvChFAAAAAAAAARBitjDcpmd0UURokNo5gFmMwAAAAAAAAAPAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Wx1SQ999fU4_Vx8sVoOw-g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQ9zOECVMFUE-sRNeQZ1HM6gAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARTZwep2BdnG6Mdu9AQocnMQAAAAAAAAAGCMCWh32oer3bDaYggVtoUQAAAAAAAACHHCW9gICkV36t4oXsjBpsdAAAAAAAAAAE_WhLMAElKfp9RHy9XD-HOQAAAAAAAAC3qkXC9AzfY8U3Ryc9g3OFDAAAAAAAAAAsccTvkbbzG7ITlutNR0SvYwAAAAAAAAAehu0S-fYG_gY_Otgg4IzKXwAAAAAAAAErXey4TSJt8z1Y1xeGVvkdYgAAAAAAAADB6fJMpXGng7X5bTc2KsPuMgAAAAAAAABSD0g0ITB6vPs-JMXU6kB_IgAAAAAAAAAETnmpwdT1yeLDbWlRnUic2QAAAAAAAAAHnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAA-DaVWIofPTETqopDkVERGkAAAAAAAAAATwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF2mlzHMlWgLtS4AXchUZGuQAAAAAAAAAIqThtgbHprFVYaxHnWJ5r2AAAAAAAAAAQ37kdvsyygZea642hUZCb9QAAAAAAAAAdvxAO4ozw0ZRvb8q4djSlogAAAAAAAABEwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFx4xnJ8Bvv3cqGQOknqJJwAAAAAAAAAIURrpT79Wm1-567n5aqJlbQAAAAAAAADL3bzfPK0NZtH4PhiksXncvgAAAAAAAACOotzl_-UJZ6X4M1v7YRzHZgAAAAAAAAAId_mdgff0kSRs-ewuuAGS-AAAAAAAAAACYpb1GyaDgfO6SxUxbAvctQAAAAAAAAAIyHxJa10zF8jCmhZDUlRioQAAAAAAAACJjOKHIn-OfmVASZP9y1NSfAAAAAAAAACHV9nsBUwQwMn84PajbyjYtAAAAAAAAAAYX6qt9XlU0IqttZBt4TnwZwAAAAAAAABHwvXjE31kESML0je4-Me7hAAAAAAAAAApDRApe1cPTh2-wFVHvKmI-QAAAAAAAABlfedIGTz7oXcPN7rVsxHwdwAAAAAAAAAMyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFq-Wp_fKqnzituNc-kKOtAAAAAAAAAAUpYMvKU2r2nETpEeIP80PQQAAAAAAAAA38jMyW-WmlGRJvr5T2b-plgAAAAAAAAAFwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0_JZyYR0Vno863IcUXpa7AAAAAAAAAAQGiPQYuBqA4onG16OCBJr7wAAAAAAAAA_wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF49P_FduVXL-1HnETkDgpjwAAAAAAAAAcS_CL2qp_hCoxo4NMBjattAAAAAAAAACntgTcpaw1PHSeu1PntXA3fQAAAAAAAABtVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFW_JPjd1DkAyoubIfHSaORAAAAAAAAAAMro-nOR8Y6-xR_0NZHNxiswAAAAAAAAADGAKN4IA59Oyrw_sFixA19QAAAAAAAACoj8cyxnhvgCmiV0wfzWt-5wAAAAAAAABH4_Wu3cP_1KUTQF00Htx73gAAAAAAAAA6v6A2aEAJbkezThEe0LppjQAAAAAAAAAIAHE52dyzEEDlVbgj_xFoxwAAAAAAAAAVwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFR7Hj9yPeT2EDyEr2K8ONTgAAAAAAAAAYg9D12vCHvqmadcctx-s3mQAAAAAAAAA7dAHd9ndNzEhU1GyagepTAQAAAAAAAAAlABk6RqRYy5QsiYS0AnfFrgAAAAAAAAApwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFtM8VFC-6NwJWsTojOgeMHQAAAAAAAAAMgQianSpTZDlq5RnHMXwrkgAAAAAAAAALwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFIg4O8IWFanKbF_VU4hFAfgAAAAAAAAAY3JOiPEBqME3dIDTotL2-UQAAAAAAAAAi36WCeR5NbgRZnRrGA9E9SgAAAAAAAAADgRMnqp8BzO8vF6IGZv8EFwAAAAAAAAAF9JTwb1xrnBs0wRDjaFu6OQAAAAAAAAAEfKA-P04oGeqRcPbw_KcplwAAAAAAAAACzrUlifJLvvERDLLhil2q8QAAAAAAAABBQd5BzOrQqNPF2dbzaWCiSgAAAAAAAAAxI-sh7YDA3eXRF3pcvPl6xQAAAAAAAACGG2Gr0Endt8yd9TWwB25Y2AAAAAAAAAAEQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABiLzmLpiPfmTPhvDqa5Vct1AAAAAAAAABFRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABiLzmLpiPfmTPhvDqa5Vct1AAAAAAAAABFRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABiLzmLpiPfmTPhvDqa5Vct1AAAAAAAAABFRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABiLzmLpiPfmTPhvDqa5Vct1AAAAAAAAABFRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAABiLzmLpiPfmTPhvDqa5Vct1AAAAAAAAABFRrX6FPh752CbnoVoAqm8RAAAAAAAAABOQN4Q0wqGRE_9JxLmhmELwwAAAAAAAABVRrX6FPh752CbnoVoAqm8RAAAAAAAAAAA", "types": "CAOnBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "c2STw5Dy59fyAI6ZtoR41g"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAD7Kufl841KLBEdWpuT5bLXSwAAAAAAAAAORuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAqFV6xhVekP5-uToPI32ragAAAAAA7PGLqFV6xhVekP5-uToPI32ragAAAAAAxoGftQgAmBJBgPLrkikSPRsmtgAAAAAAAL3h6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZr", "types": "CAMFBQMDBQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8YnDoiutnFkCKfHN27NSuQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPBxI5O-imEgV3N9x_K1cpQwAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAITQJwJt0-vl6QQoIDFyT9WgAAAAAAAAAmi8xLrghLCR3CLFjtylOjjAAAAAAAAAAkEu2eTQ_3gXX-hva2wFAN4AAAAAAAAAAHm_vFRi2fRRTLPHNf1t7ZcQAAAAAAAAAh0kt5JIbzOAHNLQd_C5h8UQAAAAAAAAApjDJzz1R3fHRGs25yj3SB1AAAAAAAAAAIQnmyhEe5Bxx-e8-BvuOf-wAAAAAAAAACIIfTHMWc7TP15Dc2y8rocwAAAAAAAABJsqDXpBl-RD8OlHhZazkDcgAAAAAAAAAUJ4hlCy86cfj7Xf4p4Ah8UwAAAAAAAAAcObAvGYfNoTxUAvTLvbdSSgAAAAAAAAAQ1sVcUE03VxGgQdwfB3ActwAAAAAAAAAvLOPIUumYsiogVvRsdSkRxwAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AwchOulsOERDFXbfKPcBMQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFVZT", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dnFHj_GHdhJ9FbnuH0i77A"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAABhRJXjPkp22gaQo9vwY-85JAAAAAAAAAB1DLrWTvtAPDh4Uv4u2shragAAAAAAAAAWKB4O6teQl5VhWOOWlMIubQAAAAAAAAAR", "types": "CAMkBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XecKyHj9SENWU--AxSqY-g"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACXVSALBRPvgHpUWKmpUo1khAAAAAAAAAAESz9vLWSfEDywRabkpQbmLgAAAAAAAAAA", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UUY2L_ithWPFsPGJM4Kw3g"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrkwkgtQ4kMk_MBWrPUAFqVnYywAAAAABq3eYgtQ4kMk_MBWrPUAFqVnYywAAAAABq3hUgtQ4kMk_MBWrPUAFqVnYywAAAAABq_zLgtQ4kMk_MBWrPUAFqVnYywAAAAABqG3TgtQ4kMk_MBWrPUAFqVnYywAAAAABqGyEgtQ4kMk_MBWrPUAFqVnYywAAAAABquWwgtQ4kMk_MBWrPUAFqVnYywAAAAABro5C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "CAMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "759vzPaqX5H2_0qTOKee0A"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAAMlBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF8DjWuv2ON9M4hqERzLLGrwAAAAAAAAA4jl0Few0KXqirBZp0WuOd2wAAAAAAAAFe71tcgbBjsGAuVt1WGfcc1wAAAAAAAAA3JS0BtKRMk3xcaGJmg4uqaAAAAAAAAAATAmTcFForv1r91KDhJjsuQQAAAAAAAADdxztGdRdeA4QtQpYqq2H8IQAAAAAAAAAMpsNLvt90kdVq_EPYAmn_WAAAAAAAAAASS0Xp2_3vk0PCR7xQ7YS7IQAAAAAAAAAG_zDk_N7NUcNRTqIuzYKxDgAAAAAAAAAgobA_YN1BhcTIsrqf5XOlGQAAAAAAAAAEfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdaMzea5YF1p9DWzFcmq3VzwAAAAAAAAAQnbsBVHmpV2luDgffbdJNFAAAAAAAAAAWcRoGFhrzTt6STyxXzS_QFgAAAAAAAACzs7hdxBbMHWQxy2GABBYaPQAAAAAAAAAJF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAd9zPkZE4RJJmPlROxnxkxmwAAAAAAAAAE9P399qv1PUm-fcjEeECPlgAAAAAAAAABmfgswW5tnP--5haDnNTmnwAAAAAAAAAIudgPCGqbKhChfal6WK47OgAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAZifuzCpl1zo6zLw_paxkEdQAAAAAAAABs-I0qeKDe1hMr58wzZHuN2wAAAAAAAADfbLRnm0K2LnF8O3sUIvVtEQAAAAAAAAAFYUqlosets6-rXKgChfDXoQAAAAAAAAAfnB7ASI-agyjwniBzr5SZ-QAAAAAAAAAfUxUrGKaPEq08l4l3816TpwAAAAAAAABLB3q4S4Ckg_Xt-OI4yuAyoQAAAAAAAAALWRtY-lihH3Vcv4ui-X8hvwAAAAAAAAAUB3q4S4Ckg_Xt-OI4yuAyoQAAAAAAAAALrcw4O6fPwcfa_O50COvY1wAAAAAAAAAXtesLO0DFJtDYF8-a7dNUxAAAAAAAAAAkQZsHYw-ADMXvukPIf-hnuwAAAAAAAAAHYV3mbdAeVZ7JBUkmx7TpHgAAAAAAAACfJF1YwU4KTZYHW-s3znxHyQAAAAAAAAALr0uAbXjKmNhayHmzQb9jXgAAAAAAAAAIZfqgPVQL3CZfrdBqCPTBoAAAAAAAAAAG", "types": "CANSBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rwPz8ygB6KQKma7nayGgkQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABqVb0C_sYOU5d3eeu0yalLowAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAproTQ2x4u1u0ROVEifn0kaQAAAAAAAAAtOcVENYdBUHkmXadCZbxMcQAAAAAAAABX7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAMEozR7rHeowembmV8tqrkzHQAAAAAAAAF_5_zddmyO37Dam1L6ekM5pgAAAAAAAAAXIpdJ0jKEIlGYoFbGaUItnwAAAAAAAAAgh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAANu80wzeYkSnSlt8hhdfSXpgAAAAAAAAAsaMdAw5F6bqw1nsXGt00a9AAAAAAAAAAT5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3Ge0L0SwsSbyUWsXqVMbKswAAAAAAAAAGDXStuM9FGoRVIzn6iyb_SQAAAAAAAABmLO0kqCJ5sLnPx_SwGJYFEQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAMTbeJ7BYIhIN72fM2Cz8k8m9QAAAAAAASDV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALnuKUbK4uezrplMLlSw0h87XfgAAAAAAB12yUbK4uezrplMLlSw0h87XfgAAAAAAB11zUbK4uezrplMLlSw0h87XfgAAAAAAB1xdUbK4uezrplMLlSw0h87XfgAAAAAAB5NXUbK4uezrplMLlSw0h87XfgAAAAAACHUPUbK4uezrplMLlSw0h87XfgAAAAAACG6BUbK4uezrplMLlSw0h87XfgAAAAAACNky6tVKI4mSYDEJ-ABAIpYXcgAAAAAApawl", "types": "CAM3BQIDDgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "88HbSgrFc7eu2ajG25n_Jg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFbojlkH6U8-uq6rXJn3yJDAAAAAAAAAAEa0W4SIobOysiPgaw1gv_JAAAAAAAAAAQHrXUpqEQk4VDnpaZKgdbiAAAAAAAAAA9U2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAAthtvgcgAW24Rn4q34GnPYLQAAAAAAAAAFQNZzHGnqskrqlEo3XdkqqwAAAAAAAAATlH7EdNhUWMEu-Xw0OnFCsgAAAAAAAAA6PT8Qhq3pE7S7UQ5pBb6dmAAAAAAAAAAOpKLBb0_sPdt_IxvNqtQh6AAAAAAAAAACAmmotxQnAOVzMU8NulbCZwAAAAAAAAAQLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAABBoz9GJ_qlf4pBIKy8mHtWYAAAAAAAAACLLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAABBoz9GJ_qlf4pBIKy8mHtWYAAAAAAAAACLLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAACgQ74ZSoBrLiINArpQeOleFAAAAAAAAABLLfFK_IF6-0ZmYbxI38JwJgAAAAAAAAACCVegIjspc9VOluOpQVnKFgAAAAAAAABBoz9GJ_qlf4pBIKy8mHtWYAAAAAAAAACLbUpZ48eu6eiEjFsuaTvsNgAAAAAAAAASR8Unr-8xOl9YfaVb1B0yFAAAAAAAAACkeCOhqsAwaXtoMEk8IgCdpQAAAAAAAAAIgL0sNJyG3L826RryrsTHqQAAAAAAAABNgL0sNJyG3L826RryrsTHqQAAAAAAAAA5_CjTv6kUGwXvM8Sos-Kh-wAAAAAAAAAO6Oa3Gw3a2qG6TW8zVkC5sQAAAAAAAAAH9gjRuxRdRyq16xbNcyHimgAAAAAAAABM9gjRuxRdRyq16xbNcyHimgAAAAAAAABM9gjRuxRdRyq16xbNcyHimgAAAAAAAABa9gjRuxRdRyq16xbNcyHimgAAAAAAAAA_tVyYJ7ZoM4kN95rJYlvO-AAAAAAAAABaxfayWUULnTu-rJFbbgqAHAAAAAAAAAAG", "types": "CAMxBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "C8mRMx1StXr0LAO6ji3Y2A"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AXoz5k14PsCcDvFyUC1kmlV3QAAAAABH_GFz5k14PsCcDvFyUC1kmlV3QAAAAABGmjp", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CAMqWYZA5nX1ba5rg42kvg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFuzScEvvhuguaGYCmGWrnWRz1QAAAAACE_-qcEvvhuguaGYCmGWrnWRz1QAAAAACE_n2cEvvhuguaGYCmGWrnWRz1QAAAAACE-Z3", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ImaxZCdsAx2D2FVy0fxyGw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSM2", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nsE2Ss7VQy9Y1xUvJ14HPg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAdKZMYsnZ_Lwaqr0cHEPo0D185QAAAAAAdEYDYsnZ_Lwaqr0cHEPo0D185QAAAAAAdJENYsnZ_Lwaqr0cHEPo0D185QAAAAAAcmIT", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yEoFm5-7Ri3zCUzV2d985Q"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgb3scEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETQ8cEvvhuguaGYCmGWrnWRz1QAAAAACFwlA", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YAxRX4VggixxxzGwx37hxA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChIglXT4fd_WKeR1cE-hlLelCQAAAAAACgSzoXT4fd_WKeR1cE-hlLelCQAAAAAACg6i1XT4fd_WKeR1cE-hlLelCQAAAAAACh1Di6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "BQMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CryaWZekzG3MnYg7CufHdw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPRhSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeX2G", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "l6meUfZ5uC9_p8a-MC7XWg"}} -{"Stacktrace": {"frame": {"ids": "2iSc_7W6mQyfzHA8XRDUrwAAAAAAM00H2iSc_7W6mQyfzHA8XRDUrwAAAAAAeVXWIfn5UOOZw7Eb-8v_kPDQowAAAAAAAB7MIfn5UOOZw7Eb-8v_kPDQowAAAAAAACxzIfn5UOOZw7Eb-8v_kPDQowAAAAAAAG0tIfn5UOOZw7Eb-8v_kPDQowAAAAAAAEbW", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HylmGygzkKByc907Hb1zHA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAAAe", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "B3eCfffgWDywlQf98in5qA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7zyXT4fd_WKeR1cE-hlLelCQAAAAAAC-8B3XT4fd_WKeR1cE-hlLelCQAAAAAAC-ykpXT4fd_WKeR1cE-hlLelCQAAAAAACp71EXT4fd_WKeR1cE-hlLelCQAAAAAACi5AkXT4fd_WKeR1cE-hlLelCQAAAAAACi52qXT4fd_WKeR1cE-hlLelCQAAAAAACjB1TXT4fd_WKeR1cE-hlLelCQAAAAAACjCM6XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIX", "types": "EwMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zUInPt-LD-WhkBhzuV68pQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABctEh-T90uBvlQfHt8UOCI5QAAAAAAAAAcnYSg4ACMPmNhm12VGmWFHgAAAAAAAAAn4XGVj6YT0gwaGWf1AwznhQAAAAAAAAAEN3iNjVmP1b90Y_Au3khyRAAAAAAAAAAMOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYrBzmYlGYOYZti9GsU43JzAAAAAAAAAALzbjhk7iO4zKDe_CtTcO5FQAAAAAAAAABw3TshcZYurjm6c72duqqcwAAAAAAAAAQA9VwK6SroKXsQKAAWW8wJgAAAAAAAAAAcGBPCS3aPXXlmHmrx5RsEQAAAAAAAABv7ko5nSdnNlUP_d2pOnRKIAAAAAAAAAAC3Ry2LaRN3x17PfGmARPd7AAAAAAAAAAwWLOUsm-IsQxvoTcefLktBQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgh2i8b6s7ABK28E4XdjB5FQAAAAAAAACRv7NZn75ARbCs3HYY9Fl9agAAAAAAAAAIk2iriyOmr9_9GjSrH7z_jwAAAAAAAAAIiZB69y95UmqqnSAe20xlSAAAAAAAAAACvcmbteT9Zn8Dn3HK9hT_jwAAAAAAAAAaJ6u6Y179J4dS1eDE4nIEEwAAAAAAAABAfbAbOZDzuuTLoVcDDlO2awAAAAAAAAAG3h3xcA1CjbBUsMTV4AM4_QAAAAAAAAAH8RS1Nly7R5USaUVxZKBsKQAAAAAAAAABBQSx00nZsCkojgxuZjNNTAAAAAAAAAAFzB4IvgA7bsMPLgsuCANUUAAAAAAAAAALMXYcd3n7LsWw7I27yRI03QAAAAAAAARr_pb_V8KDz_2bUtibVIhXagAAAAAAAAD0P85-ZHhT2OrY2C13tzUCcgAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkqwnsTGLCNH21piOrMPoln5uBQAAAAAA4oipsTGLCNH21piOrMPoln5uBQAAAAAA4oX1", "types": "CAMkBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Uvyv7L8ko2gzorH4AufYNg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOpxFz17lb-voh9uZicvdXWAAAAAAAAAAA", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "88SBwyQrj_3EBC_tr5p_Vw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAC523EcEvvhuguaGYCmGWrnWRz1QAAAAACL48acEvvhuguaGYCmGWrnWRz1QAAAAACL5RecEvvhuguaGYCmGWrnWRz1QAAAAACL5bscEvvhuguaGYCmGWrnWRz1QAAAAACVUIhcEvvhuguaGYCmGWrnWRz1QAAAAACVEkYcEvvhuguaGYCmGWrnWRz1QAAAAACVEoBcEvvhuguaGYCmGWrnWRz1QAAAAACTqYkcEvvhuguaGYCmGWrnWRz1QAAAAACTqMzcEvvhuguaGYCmGWrnWRz1QAAAAACTqh1cEvvhuguaGYCmGWrnWRz1QAAAAACKDQ-cEvvhuguaGYCmGWrnWRz1QAAAAACKCakcEvvhuguaGYCmGWrnWRz1QAAAAACVPvWcEvvhuguaGYCmGWrnWRz1QAAAAACJkVvcEvvhuguaGYCmGWrnWRz1QAAAAACJPQwcEvvhuguaGYCmGWrnWRz1QAAAAACGmwdcEvvhuguaGYCmGWrnWRz1QAAAAACGpoocEvvhuguaGYCmGWrnWRz1QAAAAACGsDNcEvvhuguaGYCmGWrnWRz1QAAAAACGKP7cEvvhuguaGYCmGWrnWRz1QAAAAACGMs66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTih6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinDe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAinBM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnJ0g6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnJsR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi08L6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi0ex6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi0dj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnNGr6tVKI4mSYDEJ-ABAIpYXcgAAAAAAit8t6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnI8b6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "FQMUBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "OPOCasATDNT8t_l-saejjQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPUhSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcNAg", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qktS_v13lC94BidNvaMyEw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAY_FSZcOsFCsjkQUrZFpijiQAAAAAAAAAI9PEEvj8uQU3NK5CAFA7F9AAAAAAAAAAQdxAt0AmIp5IBXdkPF7QwwwAAAAAAAACeBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFtTrifkDB6bwqRgBWJi-QngAAAAAAAAAcyK0o6ycp1Ca_eC07ixxymAAAAAAAAADgwaCNJIVGzz-ZLUhBxHpZjwAAAAAAAAAXS0Xp2_3vk0PCR7xQ7YS7IQAAAAAAAAAG_zDk_N7NUcNRTqIuzYKxDgAAAAAAAAAgobA_YN1BhcTIsrqf5XOlGQAAAAAAAAAEfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdaMzea5YF1p9DWzFcmq3VzwAAAAAAAAAQnbsBVHmpV2luDgffbdJNFAAAAAAAAAAWcRoGFhrzTt6STyxXzS_QFgAAAAAAAACzs7hdxBbMHWQxy2GABBYaPQAAAAAAAAAJF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAd9zPkZE4RJJmPlROxnxkxmwAAAAAAAAAE9P399qv1PUm-fcjEeECPlgAAAAAAAAABmfgswW5tnP--5haDnNTmnwAAAAAAAAAIudgPCGqbKhChfal6WK47OgAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAD6WwLAq-OugYSy1Dj8k1-JewAAAAAAAAAEWWjCfoHiLs6x77qSQOVJgQAAAAAAAAADnKhcql1SQ7g-aNYXxz6k1AAAAAAAAACdP_-wvKocvBVnuoJ9__YUKgAAAAAAAAANeqCpUc1esI9kYzT9QuAxZwAAAAAAAAAU3J8Qg4KrH3ltQo_sj-EJzQAAAAAAAAAA", "types": "CAM9BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qZRkXnh8pLDVlUVidYeFDg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOE1fYhCC-W9hkMRzkOdu22QAAAAAAAAAdk99M4bkjfKmg3-yt9HFm8AAAAAAAAAAA", "types": "CAMdBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XNUe_HujD2dm4YoueIuXlw"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPkzPBPi0X-wl-PUEBtNL3SQAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIHT1vQdc0XC0RoSXqyJlYhgAAAAAAAAALpYJXWbdqO_EwCki56aMNwwAAAAAAAAFsVp62M-dk3XvfozDfnsnw9gAAAAAAAAAG-vBNy6YNq9pF5j5Mm7smkwAAAAAAAAAFno2Lej56mJkbwdNYz7YGSQAAAAAAAAALn5uztEwS7m6JKpJbGoHSGwAAAAAAAABKzwiX7AgVqL-aPC-SuEi6CAAAAAAAAAAHuC86pFXXnBLCj6eRRljPDwAAAAAAAAAQNc9gj1rv2NerZVTmjxTx9AAAAAAAAACG5gRif6Sjt0HHN5TwyiXUJwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAqMaIQHwhzmbCa4rmJIpC-wAAAAAAAHnqtQgAmBJBgPLrkikSPRsmtgAAAAAAAOb86tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimtb6tVKI4mSYDEJ-ABAIpYXcgAAAAAAmOK46tVKI4mSYDEJ-ABAIpYXcgAAAAAAlcA76tVKI4mSYDEJ-ABAIpYXcgAAAAAAlbdH6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlWJ36tVKI4mSYDEJ-ABAIpYXcgAAAAAAlsoG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlrpu6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlqKz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlwjf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlN5a6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlNsK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlOPs6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMub6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMqa6tVKI4mSYDEJ-ABAIpYXcgAAAAAAlMcD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjMqP6tVKI4mSYDEJ-ABAIpYXcgAAAAAAjMKw", "types": "CAMZBQIDGQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Faz4zgOreVW0ypNL1btnNw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP7hSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcNBG", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ic2LVsuiX2BndjGY3s8emQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAAV_QheDKcYlWwsFE4koFnZNgAAAAAAAAABRMYtu6lQVhfanHasngCNQAAAAAAAAAA5ZNYIIcZKEhelw-qPJkZowQAAAAAAAADfZNYIIcZKEhelw-qPJkZowQAAAAAAAACyZNYIIcZKEhelw-qPJkZowQAAAAAAAACZ4-lSY69fXDm_fOs77Q9KJgAAAAAAAAACAMk_trcRDqgWwE9O1EQdVAAAAAAAAACR", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "We4ZzWo4Sdy3cRIrD2Ba6w"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAADHgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACXVSALBRPvgHpUWKmpUo1khAAAAAAAAAAESz9vLWSfEDywRabkpQbmLgAAAAAAAAAA", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PBy4E9YE68R_J8izQs8bgg"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYpqL9Bd3XIiGWasJdN8trI5tgAAAAAAA10VL9Bd3XIiGWasJdN8trI5tgAAAAAAA1LtL9Bd3XIiGWasJdN8trI5tgAAAAAAA0Y-L9Bd3XIiGWasJdN8trI5tgAAAAAAAzUfL9Bd3XIiGWasJdN8trI5tgAAAAAAAKa-L9Bd3XIiGWasJdN8trI5tgAAAAAAAq4VL9Bd3XIiGWasJdN8trI5tgAAAAAABckC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uTpiMizzgYQSE0drb2SNgQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAA", "types": "CAMvBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wXgj8vfV7ExDQcf7NHp5Og"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8VxXT4fd_WKeR1cE-hlLelCQAAAAAACxC9RXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSp_6tVKI4mSYDEJ-ABAIpYXcgAAAAAALSjZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALpP66tVKI4mSYDEJ-ABAIpYXcgAAAAAALmkK6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXfZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAALXa_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgPo6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKgHX", "types": "DwMKBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pBOutl9bHW2BqNx2HBhaPA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAG8gY8iAbEca1ZX2HerDEwM7QAAAAAAAAAEgG-E_4fA-ZwbNoblYcK9MwAAAAAAAAAmmKHXf_yVcw9ZXg_JH2MAwgAAAAAAAAAUAxGO45I5QETSU0lqfKJFawAAAAAAAAAXCRg6QlL2uey44K0aGTfMcwAAAAAAAAAAqjB_amR59Lv13Nhle_NwbwAAAAAAECca6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAADRGN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADRFy6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwzd6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMHx", "types": "CAMiBQEDBwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LcYkQAM-vgmPtnOsNMORSQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAC0XP_Z3CKaS4aU08RhYA19y5ITQAAAAADBlVKZ3CKaS4aU08RhYA19y5ITQAAAAADAqPIZ3CKaS4aU08RhYA19y5ITQAAAAAC12lqZ3CKaS4aU08RhYA19y5ITQAAAAAC14oVZ3CKaS4aU08RhYA19y5ITQAAAAAC14daZ3CKaS4aU08RhYA19y5ITQAAAAACsn_sZ3CKaS4aU08RhYA19y5ITQAAAAACsuuEZ3CKaS4aU08RhYA19y5ITQAAAAACnQugZ3CKaS4aU08RhYA19y5ITQAAAAACIAqaZ3CKaS4aU08RhYA19y5ITQAAAAACtAiPZ3CKaS4aU08RhYA19y5ITQAAAAACsxfDZ3CKaS4aU08RhYA19y5ITQAAAAACIA1aZ3CKaS4aU08RhYA19y5ITQAAAAACIbhQZ3CKaS4aU08RhYA19y5ITQAAAAACIdftZ3CKaS4aU08RhYA19y5ITQAAAAACIm58Z3CKaS4aU08RhYA19y5ITQAAAAACIcqPZ3CKaS4aU08RhYA19y5ITQAAAAACGwowZ3CKaS4aU08RhYA19y5ITQAAAAACGjTLZ3CKaS4aU08RhYA19y5ITQAAAAABtAwlZ3CKaS4aU08RhYA19y5ITQAAAAABs_ikZ3CKaS4aU08RhYA19y5ITQAAAAABtA7_", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RyXi5_2LXUkPg6q5AxjLZw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA744PYsnZ_Lwaqr0cHEPo0D185QAAAAAAdKZMYsnZ_Lwaqr0cHEPo0D185QAAAAAAdEYDYsnZ_Lwaqr0cHEPo0D185QAAAAAAdJENYsnZ_Lwaqr0cHEPo0D185QAAAAAAch4e", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "amHFhXVq-o4KXgR6R1r-Zw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP_se", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "czdRcblS6ivfa0r3vBCxww"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAACEiSUtuDFidZ_ArB9M-KYzuwAAAAAAAAAqAAahb89jp2nXTHxX6vfDVgAAAAAAAAIaEzlTNMIGbx2ZiPDgwyoVKwAAAAAAAAE4hvoLs_S85r0RS2Fhd-3zRQAAAAAAAACTrsp0NwAkIMLMzLa54E-jWQAAAAAAAAAcg4mGiFInhcIQCenccesSCAAAAAAAAAAI4KFAFxj-eVsHHZBNgRjHOAAAAAAAAAAFE6MnxSqa_E-LrR_kexpT4wAAAAAAAAAm", "types": "CAMpBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iu2XyIi4FVCIJrDGecefmA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAAMlBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF8DjWuv2ON9M4hqERzLLGrwAAAAAAAAA4jl0Few0KXqirBZp0WuOd2wAAAAAAAAFe71tcgbBjsGAuVt1WGfcc1wAAAAAAAAA3JS0BtKRMk3xcaGJmg4uqaAAAAAAAAAATAmTcFForv1r91KDhJjsuQQAAAAAAAABh7BvwwtuvWC96Hl7IBrycDgAAAAAAAAASiN7YDy9yd7ARVJltHW-2lgAAAAAAAADEqNJEYOU_rsu8C3MrrBIk8AAAAAAAAAAERC_KrztF4TVSedblwPXAsgAAAAAAAAAT", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Xzw5iVxHgzqrkDAJ9WwC1A"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCPYxe-SHgukLEpCkawSk1QWAAAAAAABJ2h6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAxNn6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAwc46tVKI4mSYDEJ-ABAIpYXcgAAAAAAA_586tVKI4mSYDEJ-ABAIpYXcgAAAAAAA_c8", "types": "AwMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AxgOBo6uq7uvbQcqbAhQEg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXry3cEvvhuguaGYCmGWrnWRz1QAAAAACETTQ", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8bQaxjHqOXy8jFaY6w3jpw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAA", "types": "CAMGBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3h9kpMSl0a0kJr7xr2rPxw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7r0XT4fd_WKeR1cE-hlLelCQAAAAAAC-0MuXT4fd_WKeR1cE-hlLelCQAAAAAAC-1HEXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "EQMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HvoR4SCGNKrytsOmcHUMJA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnm-JqTOPsI6f7Ul_-cxfp2AAAAAAAAAAQx3IEgecNM_mSugRYX-4FsAAAAAAAAAAHdlfntofA5ohST-yRkUwXxAAAAAAAAABLNU9wKt5F_9xzvEGErvec-QAAAAAAAAAXOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB8NNZPX4WzZU8wwEhaddYdwAAAAAAAAAtLrIRYiBR-UYkUB83bLJPgQAAAAAAAAFI9FEV2SdJQpWoSqrehupKgQAAAAAAAAAx73IOkhtZyjrZNnxzxVPYTQAAAAAAAACNp20xNjB13pFFci9UHZaQsQAAAAAAAABbNFoti7zeivEyGvfQ3_ANTgAAAAAAAAHeMmsIoJcb1KokyvztUKEbAwAAAAAAAAAfYrZd9T94EjPeHzMa6JOG2gAAAAAAAAAGEie98KdnMd-ClRCBPsfNjgAAAAAAAAA9jtLclmz91Mno-H7piVAA2QAAAAAAAAAz5lMOS-uR8dIYqGV5qpX_JAAAAAAAAAAWMArU81s9Ac0mGAWPlJOmoQAAAAAAAAANZbUX4kuc0PJopw25LXJbRgAAAAAAAAAEat-8gl0X4S8unG2EWa7vCQAAAAAAAAAR_vQnn5CoIgbYDdfeZ_Rm8AAAAAAAAAAUFIZ4zV4_EOAY9km9TuDmdQAAAAAAAAAAAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IPIMyWIkL5MsP1Bo20O32w"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgKr", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "00uTEq02DOt2grmBxWEFtw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfxrm08oJc5xqpM1VweLZNZwAAAAAAAAEIFyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACAE1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWDMn9FojdV2izTQoAtfh_iwAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAACS4b6Y6AxjtjqP_pey1p_yKgAAAAAAAAA46himjS-PpAivu9i1Bhv6aAAAAAAAAACVH0h6cNWo4nXEYZXWZXHxWwAAAAAAAABshWTBWfz-Houd9OXpVmNNGAAAAAAAAAAkuwSrGXrIlilHG9LeAbu8sgAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFm-x5OkQlku9y3rztHSvTSQAAAAAAAAAULEf7xTPa92fa-lrUaMUkPQAAAAAAAAA3-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAFRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF6gZHeFcPF3p_p9hsnsuK4AAAAAAAAAAQVQoK7BVzszXqPUi0cc2ufgAAAAAAAABCRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFP25sJXYK2Dig2gvT-_j6hQAAAAAAAAAoKU_l7oGL7N35bnBXHoHVpAAAAAAAAAB3R43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFYuABXadheWsSG6-oIu8XAgAAAAAAAAAYbtJR8uWrInrzn_sGkpIt3QAAAAAAAABNRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF4as0IgurEXJei_r6XmrPIAAAAAAAAAAU7dZbzLINeewhS7u7jNnbxwAAAAAAAABBR43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3RsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFrY7n4rCVF7rtGQSMR7sNcQAAAAAAAAAQ3xSivts4s-tBo1MMFQEENgAAAAAAAAAvfEf2U4TLcZ6jkTz3kXzr0AAAAAAAAAAkjNbJJD0szUDlnbhrWsIGkAAAAAAAAABE4ZG6-YGelmJ-HvYGGP11fAAAAAAAAABaPJlREaStQ9MDsMhq8CWS4AAAAAAAAAAY9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQmUBFmueS4MaOyw0OD29yQAAAAAAAAAUuj5fRTSdGJxlX0gfzctOogAAAAAAAAA_3G7WvpXqPGO04rbAV9CJtQAAAAAAAAAlHr7DaUVBf6Mvou5VCDAFbQAAAAAAAAApRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFZRv6R5-Wsj1i57MVMaKXtQAAAAAAAAAMM_MfJrZLrX3P0R0dWrP49AAAAAAAAAALRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF41q7-Ld-6XK0fcC0fV9B7QAAAAAAAAAU-TcRbQGxOxYw9x9ta5Q4zwAAAAAAAAAheufT8zCegZUSBK09BAzk9wAAAAAAAAAOlrNuGOqZ1W2gPcoSPK5FRwAAAAAAAACdArgQxoFMuVMQRaGk6f0gvwAAAAAAAAAQ9VuDy0oxai1wAfuGIiy1DQAAAAAAAAALvY4Juco9pR_3BcHf_IcylAAAAAAAAAAGCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAEhQ2OXkHYZRXh3_WLXzxSBAAAAAAAAAAEqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYwzvWQyXT6P841Whzz8TSaAAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFFNGo1JfG2H2fZIcfqeCsfAAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDhfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAAajkTRqJ7aGYz188pKO6f2ugAAAAAAAAAgNClnX-WugtIozBMJf4sI2AAAAAAAAAATVf_nbNnd9l_SvZygEhGS0wAAAAAAAAAF-aF_zrsiEU254S2lEGLW0QAAAAAAAAAcDoAs8yRy3iUsFk4iWCcNsgAAAAAAAABxrMv9JWdc6JopZomV3ZBYdAAAAAAAAAA4", "types": "CAO4BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "S5e4O7lBx37gz0fcZIzqtw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChksK", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0ymZCjvGyGb7nDgHKngF-A"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACaiPVGKFSJxOxxesodHaSqSwAAAAAAAAAA", "types": "CAOMBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "29tkR1iuog5-kDCdzfxqQw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmxoYxe-SHgukLEpCkawSk1QWAAAAAAABCp3Yxe-SHgukLEpCkawSk1QWAAAAAAABCwrYxe-SHgukLEpCkawSk1QWAAAAAAABHD4Yxe-SHgukLEpCkawSk1QWAAAAAAABHD4Yxe-SHgukLEpCkawSk1QWAAAAAAABqic", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "LGVygn6s_9pflNC3YeaZkA"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAABqUvlgtQ4kMk_MBWrPUAFqVnYywAAAAABqfFEgtQ4kMk_MBWrPUAFqVnYywAAAAABqfNI", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Fzu_bSULZtVzZW5-F-QApQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAFbojlkH6U8-uq6rXJn3yJDAAAAAAAAAAETKPAl4roVc6u9INGFwfp_AAAAAAAAAAM4iaBbZIIwXRBOYMSVscz2wAAAAAAAAADf5pCmW13zl5OWUDLG_ClrwAAAAAAAABNynHqfILVzOOqJs-5yJf4gwAAAAAAAAAeU2RxVMJ_Mn6hYvhPst5WtwAAAAAAAABXTeAEkCV4QFUCNjJlSHaiQAAAAAAAAAGBh_WOoGDXxQ01T-FvvwCZMgAAAAAAAAA-8V6XK3FeexwVTaF25UCL_QAAAAAAAAAhfP-gNgLpCIyqoLUFjpUKXAAAAAAAAAAwMRWXwWKl_fPnxgwH09TqSwAAAAAAAAA9zGIPrqWiMdodCyTxYBZC5gAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsHQiSs5ui5R2kIeDcvi9ZvQAAAAAAAAC2Iz3Q33pJiq_ClAMVOwKorAAAAAAAAAAj3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAABd9JMKs9KQTgczUAMQRnFzHQAAAAAAAAAh", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "MErld6wdBGLR2ab9ZWtH2w"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBOeYxe-SHgukLEpCkawSk1QWAAAAAABWB4EYxe-SHgukLEpCkawSk1QWAAAAAABV_9XYxe-SHgukLEpCkawSk1QWAAAAAABWAKuYxe-SHgukLEpCkawSk1QWAAAAAAABPJRYxe-SHgukLEpCkawSk1QWAAAAAAAAOwP", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hy11GM4V5rJ1R_KKBReCYg"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAAKiVqL9Bd3XIiGWasJdN8trI5tgAAAAAAKfumL9Bd3XIiGWasJdN8trI5tgAAAAAAFmVkL9Bd3XIiGWasJdN8trI5tgAAAAAAEl_HL9Bd3XIiGWasJdN8trI5tgAAAAAAESQOL9Bd3XIiGWasJdN8trI5tgAAAAAADIGQL9Bd3XIiGWasJdN8trI5tgAAAAAAB-7JL9Bd3XIiGWasJdN8trI5tgAAAAAACA4_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimti6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnKVp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi6xn6tVKI4mSYDEJ-ABAIpYXcgAAAAAAUfiN6tVKI4mSYDEJ-ABAIpYXcgAAAAAApYft", "types": "CQMNBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XFK8oAGV_jR__SZWaQoiWg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABF0kYxe-SHgukLEpCkawSk1QWAAAAAAABF7IYxe-SHgukLEpCkawSk1QWAAAAAAABGF-Yxe-SHgukLEpCkawSk1QWAAAAAAAA1HOYxe-SHgukLEpCkawSk1QWAAAAAAABqf16tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtJB6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtH16tVKI4mSYDEJ-ABAIpYXcgAAAAAACtDv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC-0L6tVKI4mSYDEJ-ABAIpYXcgAAAAAApG0e6tVKI4mSYDEJ-ABAIpYXcgAAAAAApL8M6tVKI4mSYDEJ-ABAIpYXcgAAAAAApL5b", "types": "CAMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PEL3jW6ozwuPYGESMGBbbA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABqVb0C_sYOU5d3eeu0yalLowAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAproTQ2x4u1u0ROVEifn0kaQAAAAAAAAAtOcVENYdBUHkmXadCZbxMcQAAAAAAAABX7zYeC7R-lSfXvbFWl0UfdwAAAAAAAAAG2cxgkaQz6jHA-zT7PPZDvwAAAAAAAAMEozR7rHeowembmV8tqrkzHQAAAAAAAAF_5_zddmyO37Dam1L6ekM5pgAAAAAAAAASu25MUdzPMiaQ2283ZYctDwAAAAAAAAALa9q5BOyKgSLsDOKlsdaljQAAAAAAAAAJqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAABBnftB2PmJZcz7DZJedLNipgAAAAAAAABQNDiNPs2SIuj4NddpL8knJAAAAAAAAAAC_OOeQuiXtvgynmE43QMbEAAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAHIEeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAR5X", "types": "CAMwBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ET7o_hXX2lHnkNRaSpVTBA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAEgzT7XZSg98RfDNP1VNIfEEgAAAAAAAAATf5TZuolTm8PTdIr3znBu7AAAAAAAAABMjCOJVbTIbfgz_c_uOqkTuQAAAAAAAAAM-G-jKyr5A3MRrC_vNgLsBAAAAAAAAAAkdaK6dN7k3z0trpRB14mRWgAAAAAAAAAHxOQQVBa0fz_OyHq--SoFNAAAAAAAAAAJt6g6QDdMfc6cSt76gx6xoAAAAAAAAAAA", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oXw1ozfUuFf-QgxGHiD6zA"}} -{"Stacktrace": {"frame": {"ids": "klPbOjidNHRsFecU34u2tQAAAAAAAAmpUJmIMEc6K8gJ39NHYaD0WwAAAAAAAhyGklPbOjidNHRsFecU34u2tQAAAAAAAAlaJD-mlhc2khMaMvypB7uCowAAAAAACvxIJD-mlhc2khMaMvypB7uCowAAAAAACrBZJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNLbtJPgD2DsxuaRUZZI3jKQAAAAAAAAG19OSIwt7_UxT7zZoUvqu4WwAAAAAAAAAvGECkj5EzwizbnHTSy11lwAAAAAAAAACsIWCarP2Cg-zGilSmP2FwvAAAAAAAAAAxPF46WYS52oqKW28TVdZwhwAAAAAAAABl4SjPzL5sRJ4NoaPppbKRXQAAAAAAAAAyzV-zz_SMeRtFDojkROWSSwAAAAAAAACIZtRK4uMy_Wfw-N_iQmSerQAAAAAAAAA1qtNW2Hg_2f_0M1iSBcGbyAAAAAAAAAAVoGmEXpJvjzbRv2r-bFFlfwAAAAAAAAA7EI5wLwdv0nxJGTj51HGsnwAAAAAAAABpqs9QVbSai1fV6zxJyggieQAAAAAAAABfBUIjEExV8zypjFmSEDklUAAAAAAAAAA8WVw4-tNMtcGbe_AUExiiqwAAAAAAAAFTgO6kDS9N3EuxPdxaJ2XycwAAAAAAAAICRAiSaKhtr8sKQyEQrLjoKAAAAAAAAAJCkrRTeyA1V-X3nZVYjnbwWAAAAAAAAAE88otNRdSDOkmJHkAHEZdMrAAAAAAAAAAJIJwWkOp6ZFrpAuS1jmILqQAAAAAAAABBJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAAA1NrJD-mlhc2khMaMvypB7uCowAAAAAAIg7EJD-mlhc2khMaMvypB7uCowAAAAAAIVoinLb8frZOVnOUSlDo45we-gAAAAAAAABDBxR1c7-nLgrcHbXghB3o2wAAAAAAAAAVGLsxJEBpGzbIAzUio3qiqgAAAAAAAAAqCAYdtG0jGNYNtTA31gKoPAAAAAAAAABdL15jjWwEOMTeauZtyYx75wAAAAAAAACVYkIaRxuwdj6_l9jcQ8vj7AAAAAAAAAAWqrmk67kNwxQVIgdMvHYZ7AAAAAAAAABr2OqIxq9okDnhoWYrFU8L9gAAAAAAAAA_s6_uo1oDaVy6YH62gW5X5AAAAAAAAAOqjG8RV1XmTT7lPs6gbbzWEAAAAAAAAAOvL74ZUdfItkQj1FNjlE0GyQAAAAAAAAPxmHzD8kiYxVjek9AoaxFfnQAAAAAAAAAsJD-mlhc2khMaMvypB7uCowAAAAAAIPQmJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCesjkXvSc06kCzT5ulprfEPAAAAAAAA6AHsjkXvSc06kCzT5ulprfEPAAAAAAAA5qhbzrt0cDU6UPpwGohqCueZwAAAAAAA7x9bzrt0cDU6UPpwGohqCueZwAAAAAABQb9bzrt0cDU6UPpwGohqCueZwAAAAAABZak0qzGEnWLNN8utw6c2ruTzgAAAAAAEuFp0qzGEnWLNN8utw6c2ruTzgAAAAAAFxJP0qzGEnWLNN8utw6c2ruTzgAAAAAAFu2c0qzGEnWLNN8utw6c2ruTzgAAAAAAFuHc0qzGEnWLNN8utw6c2ruTzgAAAAAAC4_r0qzGEnWLNN8utw6c2ruTzgAAAAAAC-QV0qzGEnWLNN8utw6c2ruTzgAAAAAADEna0qzGEnWLNN8utw6c2ruTzgAAAAAADEdq0qzGEnWLNN8utw6c2ruTzgAAAAAADEeN0qzGEnWLNN8utw6c2ruTzgAAAAAACyOX", "types": "BgMdBgYDDAYSAw"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "R1wuCeOIa20fh-d5eRRVFw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACfZYJrmLEjznzm7GSiXKeulgAAAAAAAAAMjH-Kh7eMoVAEa99gkdQ-YQAAAAAAAAAWvtOmTuUGvKYiQRK_O9kHuwAAAAAAAANh_qijKAoIrj192_UIiHcBhwAAAAAAAAAqm1DxIW9JZBLmNb4AyJUmVAAAAAAAAAAE", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Sfb50IP_djC3GCW2v6RYMA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAAEJm5p8puApNHgdtwb3aFhxPAAAAAAAAAApxDECjxfRDF0SAcicHv7yIgAAAAAAAAABSsODsFdp0k4d_SSQAFmIUQAAAAAAAAApzzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIcPy2QFuGdjzuVBNv2-JtzQAAAAAAAAA5FQVEqfdF3Gc5vOLVf8c4EAAAAAAAAAEpcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIiaYGOKrCYzeQFPvSFK3LGwAAAAAAAAAlcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAI3FmF0iegYInyRffZHSr8AwAAAAAAAAAA", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "1QLTwfIs5p4VcZehcoW7uw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcM9Xltn711KKFcrKCAYh_ZgAAAAAAAAAE8s5hM6TvWnoP9XP3e8VVVwAAAAAAAAAHwh6xTQPkmoOUUrUOOnnNsQAAAAAAAAAgXmED6DCBgU_nxWWvvj2FeQAAAAAAAAAA", "types": "CAOQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "4Cu6oYF8CgThrL_OjB6KKQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZx2", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "v3iq4oJQ3VCG0e1sWoxtkQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvU6cEvvhuguaGYCmGWrnWRz1QAAAAACLroTcEvvhuguaGYCmGWrnWRz1QAAAAACLsWTcEvvhuguaGYCmGWrnWRz1QAAAAACLsmncEvvhuguaGYCmGWrnWRz1QAAAAACL74lcEvvhuguaGYCmGWrnWRz1QAAAAACLvhlcEvvhuguaGYCmGWrnWRz1QAAAAACLuk1cEvvhuguaGYCmGWrnWRz1QAAAAACLxkkcEvvhuguaGYCmGWrnWRz1QAAAAACIHnYcEvvhuguaGYCmGWrnWRz1QAAAAACFxmk", "types": "GAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "tSCnGC8MSIDk_S0oLclfKA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB8fSNDzWiYDmLZi_Z1ZVETLoAAAAAAAbD6gSNDzWiYDmLZi_Z1ZVETLoAAAAAAAadCG", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7ppDlnMd3xFqbVJBXCzI3g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPUhSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcNCI", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lDXPFryqVEu45-jyL6avaw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSEYxe-SHgukLEpCkawSk1QWAAAAAAAFzhzYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHaLV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL47y6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL46K", "types": "CQMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xSNZ9DKX9aJSx1JikG9CmQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVyX27IBhykgq1NzojcK_M9QAAAAAAAAAEke01XMwSHJkE0w5BapbuYAAAAAAAAAAU6iEsgvvP90gMt6d2DPHcugAAAAAAAAB2cU6wpPib2OOTkqnCmAIASwAAAAAAAAAMKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAAtAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJQNXy4XeFFzKACGQInZNhgwAAAAAAAAAcn1Y254wxpQ3hq_nYz9gRWgAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRW7C8N1q94TuMskdRCHbYwAAAAAAAAAFCMOLX12QynGJCu7CxyKH2AAAAAAAAAAg_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAAN6dU5a7uUwZ-RI2PmJ37RzgAAAAAAAAAGPqphE3VNnrhDJoaSmqBoIgAAAAAAAAAL1ssh5SjYJr3zimd_T_sc1AAAAAAAAAAf9VTO5fILW3ae07RdzUPe3QAAAAAAAAJvIAZZPPhwSRB780yxL5LMAQAAAAAAAAAXCiUrWPmnDMXwCZTK8RzHHAAAAAAAAAAE", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qcPyRyUca9zMz9MzDr7aHg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-S9EcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN4xb", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fFdYACc4s_4eKR1XWC7l8A"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "CQMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kKgAz5hOlhhX3Wlk6XRFig"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYg97kHjtGB8Jj1ZGSgpTkgwAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAABaEo37R4TG_ubE_su8nzeliwAAAAAAAAAokKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_HL6OuA5BriS2w42aq9WRNQAAAAAAAAAMscmKVHdEh9kSE1fqSoqaQwAAAAAAAAAPcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAAT56oWSGX1mVfrKIpqVg1NxQAAAAAAAAAHVYAhhPSb0PZhnETden6FRAAAAAAAAAAcpSIXlNYnJYwCILAJFTEzSwAAAAAAAAAGTyuf4RNGIxt-ueaCsLj22AAAAAAAAAAXvSGCvmv9vCkowwCF-5AFfwAAAAAAAAB0qlujNL7db72ZwWHkSPq1iAAAAAAAAAAa8tJujVK0pdTWlucWIQYskAAAAAAAAADWSXFZShc93P7Br4wzVi_TSwAAAAAAAABGl8by2NZ7WjCFmKmn5LkVDAAAAAAAAABNJj6ja2Wbkf1_R1a9nVWcUAAAAAAAAAEerQHoQu322PXTottWvRIsAQAAAAAAAAAGYNR_kK3tcd5nuXG_-CFlnAAAAAAAAABZN5ZK1nWkJq6rfaIi2EC6agAAAAAAAAADuu7OMtYBRK0AiqH-dZgGHQAAAAAAAAA3p44jm-0OOebdVB7Q5DYjxQAAAAAAAAAA", "types": "CAM8BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Gf9T-ToUcXZ1fopG8bUaCw"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABqjy1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAmB1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAbq", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AnYjvsg56TcxE6xD0wQ5qA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADB0YTZ3CKaS4aU08RhYA19y5ITQAAAAADA21XZ3CKaS4aU08RhYA19y5ITQAAAAADA0KdZ3CKaS4aU08RhYA19y5ITQAAAAAC11yLZ3CKaS4aU08RhYA19y5ITQAAAAACs6tVZ3CKaS4aU08RhYA19y5ITQAAAAAC18fgZ3CKaS4aU08RhYA19y5ITQAAAAAC15ApZ3CKaS4aU08RhYA19y5ITQAAAAACAQAdZ3CKaS4aU08RhYA19y5ITQAAAAACAPxGZ3CKaS4aU08RhYA19y5ITQAAAAACAMTdZ3CKaS4aU08RhYA19y5ITQAAAAACANSCZ3CKaS4aU08RhYA19y5ITQAAAAABwW6UZ3CKaS4aU08RhYA19y5ITQAAAAABwY_IZ3CKaS4aU08RhYA19y5ITQAAAAABwY0XZ3CKaS4aU08RhYA19y5ITQAAAAABwNSQZ3CKaS4aU08RhYA19y5ITQAAAAABwMjyZ3CKaS4aU08RhYA19y5ITQAAAAABtmShZ3CKaS4aU08RhYA19y5ITQAAAAABtni7Z3CKaS4aU08RhYA19y5ITQAAAAABudH36tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEH-", "types": "FAMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aZEifOwXBahtAWgTrRIWHw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHX0kXT4fd_WKeR1cE-hlLelCQAAAAAAC8CS1XT4fd_WKeR1cE-hlLelCQAAAAAACzCUrXT4fd_WKeR1cE-hlLelCQAAAAAACzD3O", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xVGi1i7nlJYkT__QgtZrJg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABm1KYxe-SHgukLEpCkawSk1QWAAAAAAABRc5Yxe-SHgukLEpCkawSk1QWAAAAAAABBkUYxe-SHgukLEpCkawSk1QWAAAAAAABBYkYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAAA_n0Yxe-SHgukLEpCkawSk1QWAAAAAAABG3s", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "2NVoBlds2Nc4h_QCDJrDnA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAAV_QheDKcYlWwsFE4koFnZNgAAAAAAAAABRMYtu6lQVhfanHasngCNQAAAAAAAAAA5ZNYIIcZKEhelw-qPJkZowQAAAAAAAAAW4-lSY69fXDm_fOs77Q9KJgAAAAAAAAACAMk_trcRDqgWwE9O1EQdVAAAAAAAAABfSiNQN5yWanN9PLQ_u0EHrAAAAAAAAAASAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMgBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "bZSMUUx94Y3yXU6mhbsNCA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAPx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABWdRMG3BjNfH2se-egabnU-QAAAAAAAABAEkcy7So9YVOh7Q9iMhhrxQAAAAAAAABM3SSuw7AKPJ9yFEVSwC_lbAAAAAAAAAAuXLN55eJ2HplxP0Fb2YBmOQAAAAAAAAAJ_6rkq2S7o8rMRQJ9AofzJAAAAAAAAACLjwkBY0s-EHDmaMTnMHI2lgAAAAAAAAAYLLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACvqKrM4v33j8Ui9JyIz2QXDgAAAAAAAAA4ZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABRiQ3-U2pFJokP-jlw4Yr9FQAAAAAAAAAJnxv9fnyzQgRP5y-sCtMEGwAAAAAAAAEgE-UV4Q5gHz5xBV_lbP0MMgAAAAAAAADZ", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GRaj-uYSzr92rlMpzMvXrA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAADAYnk6E9ReVsUsstHFtTIiXQAAAAAAAAAyfT0k69QoWDcgSGG9DEbGKQAAAAAAAABU3yZRDT05_hGvUj8jRvChFAAAAAAAAAOxYwdW3gX5WZ-203-ZtRSpdAAAAAAAAAAGLyZJMdHx6B3ILhnNOrY3PgAAAAAAAABM8VQNjJHt4dBRU5VSN3KkiQAAAAAAAAEKgk079EBdEVh5ErpJ6XBaYwAAAAAAAABORxrIezP-22ksZoeWEvsGOAAAAAAAAADbV1AAAJZxfA577guD2Mmh4AAAAAAAAAAhd3kpVhLsdwM004-RCJ5KgwAAAAAAAABRqWBohVpV0WLBgoRPY3ha5QAAAAAAAAAGgh5ZUK32QaLM1EoyY_BRswAAAAAAAADO5ocKe_xZhLoIMKsqpwD-EgAAAAAAAAAND5lAQaLy9ATYrsXm9SsubAAAAAAAAAE_y_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGy_bBi9uyNY8ANzFmW5Qp7gAAAAAAAAAGb2ckm-0wQN1Adu_SQOHiPwAAAAAAAAAY0v3fw3R6M9K5pBw9frSxowAAAAAAAAAfW0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABok-oYEuE0qNzcsmMdylxs5gAAAAAAAAEKhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAsTGLCNH21piOrMPoln5uBQAAAAAAkyKk", "types": "CAM2BQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "m3Xj1zX2LizEaWcI0RP5pQ"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHrJigtQ4kMk_MBWrPUAFqVnYywAAAAADHpx9gtQ4kMk_MBWrPUAFqVnYywAAAAADKAEMgtQ4kMk_MBWrPUAFqVnYywAAAAACRqCugtQ4kMk_MBWrPUAFqVnYywAAAAACRqWUgtQ4kMk_MBWrPUAFqVnYywAAAAACSHxegtQ4kMk_MBWrPUAFqVnYywAAAAACSIA1gtQ4kMk_MBWrPUAFqVnYywAAAAABrEfR", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "nV3Fn_RzzKrNcUUuAsluvQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADB0YTZ3CKaS4aU08RhYA19y5ITQAAAAADA21XZ3CKaS4aU08RhYA19y5ITQAAAAADA0KdZ3CKaS4aU08RhYA19y5ITQAAAAAC11pyZ3CKaS4aU08RhYA19y5ITQAAAAACsrl-Z3CKaS4aU08RhYA19y5ITQAAAAACsuTxZ3CKaS4aU08RhYA19y5ITQAAAAACsuuEZ3CKaS4aU08RhYA19y5ITQAAAAACnQugZ3CKaS4aU08RhYA19y5ITQAAAAACIAqaZ3CKaS4aU08RhYA19y5ITQAAAAACtAiPZ3CKaS4aU08RhYA19y5ITQAAAAACsxfDZ3CKaS4aU08RhYA19y5ITQAAAAACIA38Z3CKaS4aU08RhYA19y5ITQAAAAACIecEZ3CKaS4aU08RhYA19y5ITQAAAAACIdftZ3CKaS4aU08RhYA19y5ITQAAAAACInZnZ3CKaS4aU08RhYA19y5ITQAAAAACIfPuZ3CKaS4aU08RhYA19y5ITQAAAAACIPbwZ3CKaS4aU08RhYA19y5ITQAAAAACHNUFZ3CKaS4aU08RhYA19y5ITQAAAAACHM88Z3CKaS4aU08RhYA19y5ITQAAAAACneMKZ3CKaS4aU08RhYA19y5ITQAAAAACnbDzZ3CKaS4aU08RhYA19y5ITQAAAAACndP-", "types": "FwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3wY3n6ZuFWe08ye_NO9bMw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPUd", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gy1xDSDhU1AfdIq4EG9-FQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-vzZXT4fd_WKeR1cE-hlLelCQAAAAAACkSKa", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ynjt3bgLGnY61oQESibEHg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP_mE", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-gwAhagkJcxRJ6NcHmc9Dg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWUgHSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWTNcSNDzWiYDmLZi_Z1ZVETLoAAAAAAATKKvSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWJhaSNDzWiYDmLZi_Z1ZVETLoAAAAAAAT4EWSNDzWiYDmLZi_Z1ZVETLoAAAAAAAt9o5SNDzWiYDmLZi_Z1ZVETLoAAAAAAAVhvYSNDzWiYDmLZi_Z1ZVETLoAAAAAAAd8Nr", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GRNWgj9ADC9F-xKz9gBTGA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAL4d9zx7j7aak67AnnUI1JmAAAAAAAAAAJDliY6tssVncRZTUK_C4ajAAAAAAAAAAMAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMOBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DV6JRqrUjDUvu9f2B4lulg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAADSSYkJzmoIj88lWJBBdLWTtAAAAAAAAAANHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvxMCyDx3ow2vlOg5ZC6eHXAAAAAAAAACM6n-a5-if7K0DVFLofVTUEgAAAAAAAABS6hSF_xJjwihAPWNlNh3ghgAAAAAAAAAanFec0jDdaqJcSPL265lPiAAAAAAAAAD15GFTYfmbz9iUb4HiZtCLlgAAAAAAAAAsDi1tF-WqPjDxduRVa-p3HAAAAAAAAAAM1kRkZENrD0C0zg-5j1NV2AAAAAAAAACfxrm08oJc5xqpM1VweLZNZwAAAAAAAAEIFyiXIqcxICNrfMe7Hvh9OQAAAAAAAABc3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAx5h_x3DWmOz8VIG9_VAD0HAAAAAAAAACAE1Z68Ye-sj9iK_a_DQMXVwAAAAAAAAA2H0h6cNWo4nXEYZXWZXHxWwAAAAAAAABsbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAABTR43ZllDvnEdmnbtgRhdSeAAAAAAAAABWbYpzlkaUkIsqpBr-p2ZmlgAAAAAAAAAQQzn1A6CqCIZUpcbEC_VoFgAAAAAAAACS4b6Y6AxjtjqP_pey1p_yKgAAAAAAAAA46himjS-PpAivu9i1Bhv6aAAAAAAAAAAN27T_d9_NZvjzOCNXkPMeLQAAAAAAAAARf4OgHyusKDqabwWiMaVpXgAAAAAAAAAHwn_WhsjtejkuoSs44OKzyAAAAAAAAAAN2G3Nb2wLZnYZcun2Wr4rBgAAAAAAAAAEXTw3R-sYO_A_Xp7R5R96rgAAAAAAAAAE", "types": "CANPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xtRwIn-B17Zk-6fqHdRi2Q"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlNGcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEUiA", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "U4MMCuBpnow2QDzcNOq_rg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAACqGMNSe-6LTlpuiQTu86RdbwAAAAAAAAA1wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATmQVHcTFXg4JaHxKFUu2SNAAAAAAAAAAK0qdPtfCOXWtTMQkqPpfTpAAAAAAAAAAD4pD3shcvlMj_8ybo7T2TVAAAAAAAAAFCS0Vcinvs4UXd1rhNSjovpwAAAAAAAABVbAlNhxIUaCZOzq5Go2-fDwAAAAAAAAAIUNi2PfJJ-vKG8q63OaknIAAAAAAAAAHcPDxaYxBC-l8PtK0orl2RQwAAAAAAAAETSZD9YVGYcY6t7-F09t_klgAAAAAAAACDMxRnrnRp5fRRlUEkyuK1rQAAAAAAAAAwg5HW81gVegsp2uHOoheefQAAAAAAAAB1ZJ8K2Oaj8kiHS_MZmGQy-gAAAAAAAAAb31FeSeHaXuz8M6vkrKE20gAAAAAAAAAO8HclVn0TTGhRLlMuMst62QAAAAAAAAAQ3IuREe07u899HoYIiTdQ_QAAAAAAAABG4uHET4oL_iJ_8bFS7AfulwAAAAAAAABYsH-naZGGlL1gvozk6SwjQQAAAAAAAAB0v3ZYrEgxrjqPJ0BNeAYc9wAAAAAAAAAEYY_5A_qFX2rphOrkConrFwAAAAAAAAAEteJJV9EemN5sVZsuqSNgHQAAAAAAAABjKT1k868eD2qQmUzA-ezg2wAAAAAAAACn_n66vMwdTIxqmrxb925TNgAAAAAAAAAJpkodb9j7PRaXQDoDilSJigAAAAAAAAAuDIXLq0T8W9YXkU06dSKA0QAAAAAAAAB6LaiexfPkXQfAGZNqswq44gAAAAAAAAAR", "types": "CAM1BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TNDnc_BbX-bZvBLeZE3IhA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMust6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuZy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMs6N6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtKD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtAp", "types": "CQMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sZZOI74zGf6PIWKQ_dowgg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN_Vn", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "KbIwDU7bE16YP2ns0ZA4pQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACfZYJrmLEjznzm7GSiXKeulgAAAAAAAAAMjH-Kh7eMoVAEa99gkdQ-YQAAAAAAAAAWvtOmTuUGvKYiQRK_O9kHuwAAAAAAAANh_qijKAoIrj192_UIiHcBhwAAAAAAAABo", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "x_C9pMCGlnFGRtyqng1scA"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrk0lgtQ4kMk_MBWrPUAFqVnYywAAAAABqXDNgtQ4kMk_MBWrPUAFqVnYywAAAAABqZ-2", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7Swiq0tk_yociUJzvIr0Ug"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw2HtXT4fd_WKeR1cE-hlLelCQAAAAAACw1EEXT4fd_WKeR1cE-hlLelCQAAAAAACkHGIXT4fd_WKeR1cE-hlLelCQAAAAAACkMuNXT4fd_WKeR1cE-hlLelCQAAAAAACkLvxXT4fd_WKeR1cE-hlLelCQAAAAAACkJwoXT4fd_WKeR1cE-hlLelCQAAAAAACkIMx", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "r5Qk0y0lu82qLRvIh-Mz7g"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjRTXT4fd_WKeR1cE-hlLelCQAAAAAACgmUeXT4fd_WKeR1cE-hlLelCQAAAAAACgka2XT4fd_WKeR1cE-hlLelCQAAAAAACgkmEXT4fd_WKeR1cE-hlLelCQAAAAAACgmhL", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CBlNVd4rPCO2FdA0l90MKQ"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALARLuf1htvrklOOxyKnOopAAAAAAAAAABTBtZO3-vmynkHlKuzsN9UQAAAAAAAAAyn55ZjUBJzU7CnzmyoRyorwAAAAAAAAAk5Ib9omL2d9xqdBKBL9VmGwAAAAAAAAAAqFV6xhVekP5-uToPI32ragAAAAAAmMkkqFV6xhVekP5-uToPI32ragAAAAAAxnx7qFV6xhVekP5-uToPI32ragAAAAAAxU0d3aS07d9PG4lc4UzuBbVWzQAAAAAAEUos1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAmB1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAbq", "types": "CAMGBQYD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Pp4DRoolWQ68gC0mJ3Fd4A"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFdkIcEvvhuguaGYCmGWrnWRz1QAAAAACFWIHcEvvhuguaGYCmGWrnWRz1QAAAAACFWWM", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Z1ah3dkQRTcpWCEydc1lfw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACujkfqsU9w34yk0ipcsxq5HgAAAAAAAAAO7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAFk3HyWSdTGgne1xIId1mIvAAAAAAAAAAzn6pk2kHJCAUsXzT61-UNuwAAAAAAAAAJhyDoVUWwwXEvgB5sKTLeXQAAAAAAAAACveyrOe2Ye9QKtQm85e4-1QAAAAAAAAAJKc3Qpigh43lyCXxKBVsfZQAAAAAAAADIDvxORZxoFkDRuJT-GJ72RwAAAAAAAABRceAXg6TZDkdNFtcE_O4vaQAAAAAAAAAO6dizidRtpqcGmpShAjzttQAAAAAAAAAVXzWVAFfWPkx_-5DzBgosgQAAAAAAAABhtzBcwDe6SUq4Jkyew2O5egAAAAAAAACSdT5WZm8-ag4VFDZf0HaaMAAAAAAAAADxBjlJsqbP8JVKqX4kEEcyIAAAAAAAAAAKSAcr2k56H-0uXVdYyC2m8AAAAAAAAAB2AAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "v33eHkvIcwAV8Kdb6vad5g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAxSQjdgx2wqIxyPHp2kbwpQQAAAAAAAABZ83-j4R13bIPFHIwJnf4UlAAAAAAAAAAF7cmb22whxY0bA1iJW0qJnQAAAAAAAAADJFjrrma9d3xoHGyr40fShQAAAAAAAAAv8wD-gPluKMQIfqERZsOlnAAAAAAAAAALXz55hy-jKO48vnZBfsLxxgAAAAAAAAAE_v4rMkGY9KRFPld8us290AAAAAAAAAAEqGs-5c7rr1dopGxSByMUNAAAAAAAAAAY-ONwHRu7OfgV9W2gyM5rZQAAAAAAAAAmhhKEJNzg5B_JhARG4cFP2QAAAAAAAAA2", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Zbdiy9zDQAF_ITnyDDjh2A"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QiRcEvvhuguaGYCmGWrnWRz1QAAAAAD-UKVcEvvhuguaGYCmGWrnWRz1QAAAAAD-VwScEvvhuguaGYCmGWrnWRz1QAAAAACG9Ys", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "djLrau8jrfBziaCPclZ3HQ"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACRuzKgtQ4kMk_MBWrPUAFqVnYywAAAAACRvAEgtQ4kMk_MBWrPUAFqVnYywAAAAACRvT8gtQ4kMk_MBWrPUAFqVnYywAAAAACMCnBgtQ4kMk_MBWrPUAFqVnYywAAAAACbQAkgtQ4kMk_MBWrPUAFqVnYywAAAAACbQYrgtQ4kMk_MBWrPUAFqVnYywAAAAACbM7NgtQ4kMk_MBWrPUAFqVnYywAAAAACbMVNgtQ4kMk_MBWrPUAFqVnYywAAAAACbMq3gtQ4kMk_MBWrPUAFqVnYywAAAAABuRYDgtQ4kMk_MBWrPUAFqVnYywAAAAACbLYWgtQ4kMk_MBWrPUAFqVnYywAAAAACa8GTgtQ4kMk_MBWrPUAFqVnYywAAAAACa71d", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3tj55kewRVSqh_hbiqeHsQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAATo2Vqo1n4TLgDJq9tPgwAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARxBGCEPBdnG6Mds1nJf4tcQAAAAAAAAAGzXf1O_8jknZjcKGu5cQjJQAAAAAAAAAgPHkw6KCW6WHcDhD0gWZvxQAAAAAAAAAXqjkbzJCs46utKAIQU_ZjYgAAAAAAAADmaG38C7AQR-wEDFFefkRnfgAAAAAAAAAsdawGhH-93Zf3Xci2M9UlFQAAAAAAAAAMPhHweSUk-rcHLCvi4mySwgAAAAAAAAEsryiaiFPVyjm4XARK10gZ3QAAAAAAAAELu4IYC5TN1ydgkWzSPfggOAAAAAAAAABSTOT6Kzt9cNfqtt7rfwzzSwAAAAAAAAAElu3U19P1ddOrJLDu-spLOgAAAAAAAAAHSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAiHAV7Zh5H5JQPHONsGvZ0PAAAAAAAAABXWb65uaTCBYe2MCZtuMHkqAAAAAAAAAAWdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFyOUU-MIrBJXHRczrclIQpAAAAAAAAAAIZLVm2Yq3JzpECVJuRqNdawAAAAAAAAAQrs-7smSxpcCpQ4EcnQyDfwAAAAAAAAAdgkppypvMO9S8VR3D3H8lzgAAAAAAAABEdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFwn4niB8FwIlhJ5LBYr9JzQAAAAAAAAAIZ8eDanRMy6l7sesw4dYkqQAAAAAAAACzkTJVCBjDfmFAPRrGLStltQAAAAAAAACPPyY6qsH4ByVjV1tK07pF9AAAAAAAAAAIm2-tH33cq1FP2Q7Is62J0gAAAAAAAAAC-uK72e9VYGmyoGlh8BBvZwAAAAAAAAAIQ1b7jdbtxavHFLXq_nCrrgAAAAAAAACKpxHkQ9M1dNDXsuZ3PuZiaQAAAAAAAACHHHYed7pYCVK68jLMEjdhPAAAAAAAAAAYyXWFMIbkwU7jqv0ggmjvVAAAAAAAAABHVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAApOzkHkS17HRu8c3H4oJbrdwAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFmKVsnuGyVSIshrQFdthLlAAAAAAAAAAU0cZiHBBWN2vYtEyCZ5X5wgAAAAAAAAA3pzTcRcencDxd0mEO6HA0bAAAAAAAAAAFdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFMwojP6II8_EGiMNSmdsFxAAAAAAAAAAQLrT96WuiUXgKg4BgtAP98wAAAAAAAAA_dswq7UFB-c5kE0TfryCD4gAAAAAAAAAF3KtHAXnUn2qKToxsxyFz6wAAAAAAAAActLWCyKrEBYGzX2N5W13-8QAAAAAAAACnHs84X9WR2gx5bBItVVyJWAAAAAAAAAB4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFO4XFBmuHlVXJh4TIk5LCDAAAAAAAAAAMn-IlVo5-jcMpxFIQmT8ZXQAAAAAAAAADXNiEFVfexcwhuzJE2wFqSQAAAAAAAACouB_3Gzwjvj1RjZpSgTL9mwAAAAAAAABHcemtT_LtuQxWV7j18_T0KgAAAAAAAABEb2XRkTRSoWuyX3U4lJkMnAAAAAAAAAAIYldLdAhiU1Ikhg1VTxvqJwAAAAAAAAAVdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFh36HgL3bbvDsQtV-NCGi2AAAAAAAAAAYa1rORv6uw2uAWC1se05SoQAAAAAAAAA7ReecyGgWWJgzc543tXNeIAAAAAAAAAAlskGfd5BDAMA1fbyY3ykq7wAAAAAAAAApdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFv6Sj_mGjd4gUb1oQRdr9zQAAAAAAAAAMBFzsvc2FJJqJ7MOfSIYcgwAAAAAAAAALdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbw7Et1OruEgeiOGCngYuPwAAAAAAAAAYSVYBVG1fCfTODpNzLfPxlQAAAAAAAAAi0YsnzQnMKXvFIy6EpgfjkAAAAAAAAACz9PVJEFMmm6N-gLnB0nQTgwAAAAAAAAAMqzRjXkTt4v-saae_nhunBwAAAAAAAAAKzImAN3h5Rwz0-_386yTd-gAAAAAAAAAGE2NlszEGRXNxKeW09blqBAAAAAAAAAANCW_8hZlDvtu1eE0Pp2VwHAAAAAAAAAAEYu_6L4HRShupVCJ8N-cmXQAAAAAAAAAH9PmXvHucczCVlI0S70oJBQAAAAAAAAA3tiJNC5TRsJ2Po6yB9hj7ugAAAAAAAABGyanW-NWn1yU-ZmISz8_K-wAAAAAAAAAms2LTirMvOXiDsBun6I-UyQAAAAAAAACfb_ElB1I-v_CyZZ9WkymqkQAAAAAAAAB0isA5sAubGPm1mkHKsussQgAAAAAAAAAQSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFC2dSzxTtRtkEi44A6zm19wAAAAAAAAAg3ir-1yKStl3nukZF4xyXAQAAAAAAAABAC-NMw9vE7-rFK10EWQYO_wAAAAAAAAAho8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAAr1J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJ106B1iulZ9qNy42ENkYaCwAAAAAAAAAkfiNry6aywxk33PR7ZSinSAAAAAAAAAAZyanW-NWn1yU-ZmISz8_K-wAAAAAAAAAmbZRwWM7SmFPsrzq-cg210QAAAAAAAAASyanW-NWn1yU-ZmISz8_K-wAAAAAAAABDmCuWv-KqRrRw5ZZJke85CgAAAAAAAAAHXKVuKabpK3GPUiPcRRV-xQAAAAAAAABSv2q-aMoRsK4FEWYxY8DtewAAAAAAAAHnaUB3uGSQkygVs6dVTTi2DgAAAAAAAAAROmzVUgwY22EPoqShuZpT1wAAAAAAAAABax3mnWVTgXSKH4VrpSLxMwAAAAAAAAOE9PmXvHucczCVlI0S70oJBQAAAAAAAAAUWLR6tMYzOVwd-dC39zrHVgAAAAAAAAEt-7czc4vxjqwqbvj74H3wHQAAAAAAAAAJsN77BAFALn_JGvGvXrSjywAAAAAAAAAEHOno65fF9MNk7Hxtw-uPRAAAAAAAAAEx", "types": "CAP_BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vcIsDLwygnNOUzkldgQe7g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQ9zOECVMFUE-sRNeQZ1HM6gAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARTZwep2BdnG6Mdu9AQocnMQAAAAAAAAAGCMCWh32oer3bDaYggVtoUQAAAAAAAACHHCW9gICkV36t4oXsjBpsdAAAAAAAAAAE_WhLMAElKfp9RHy9XD-HOQAAAAAAAAC3qkXC9AzfY8U3Ryc9g3OFDAAAAAAAAAAsccTvkbbzG7ITlutNR0SvYwAAAAAAAAAehu0S-fYG_gY_Otgg4IzKXwAAAAAAAAErXey4TSJt8z1Y1xeGVvkdYgAAAAAAAADB6fJMpXGng7X5bTc2KsPuMgAAAAAAAABSD0g0ITB6vPs-JMXU6kB_IgAAAAAAAAAETnmpwdT1yeLDbWlRnUic2QAAAAAAAAAHnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAA-DaVWIofPTETqopDkVERGkAAAAAAAAAATwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF2mlzHMlWgLtS4AXchUZGuQAAAAAAAAAIqThtgbHprFVYaxHnWJ5r2AAAAAAAAAAQ37kdvsyygZea642hUZCb9QAAAAAAAAAdvxAO4ozw0ZRvb8q4djSlogAAAAAAAABEwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFx4xnJ8Bvv3cqGQOknqJJwAAAAAAAAAIURrpT79Wm1-567n5aqJlbQAAAAAAAADL3bzfPK0NZtH4PhiksXncvgAAAAAAAACOotzl_-UJZ6X4M1v7YRzHZgAAAAAAAAAId_mdgff0kSRs-ewuuAGS-AAAAAAAAAACYpb1GyaDgfO6SxUxbAvctQAAAAAAAAAIyHxJa10zF8jCmhZDUlRioQAAAAAAAACJjOKHIn-OfmVASZP9y1NSfAAAAAAAAACHV9nsBUwQwMn84PajbyjYtAAAAAAAAAAYX6qt9XlU0IqttZBt4TnwZwAAAAAAAABHwvXjE31kESML0je4-Me7hAAAAAAAAAApDRApe1cPTh2-wFVHvKmI-QAAAAAAAABlfedIGTz7oXcPN7rVsxHwdwAAAAAAAAAMyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFq-Wp_fKqnzituNc-kKOtAAAAAAAAAAUpYMvKU2r2nETpEeIP80PQQAAAAAAAAA38jMyW-WmlGRJvr5T2b-plgAAAAAAAAAFwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0_JZyYR0Vno863IcUXpa7AAAAAAAAAAQGiPQYuBqA4onG16OCBJr7wAAAAAAAAA_wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF49P_FduVXL-1HnETkDgpjwAAAAAAAAAcS_CL2qp_hCoxo4NMBjattAAAAAAAAACntgTcpaw1PHSeu1PntXA3fQAAAAAAAABtVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFW_JPjd1DkAyoubIfHSaORAAAAAAAAAAMro-nOR8Y6-xR_0NZHNxiswAAAAAAAAADGAKN4IA59Oyrw_sFixA19QAAAAAAAACoj8cyxnhvgCmiV0wfzWt-5wAAAAAAAABH4_Wu3cP_1KUTQF00Htx73gAAAAAAAAA6v6A2aEAJbkezThEe0LppjQAAAAAAAAAIAHE52dyzEEDlVbgj_xFoxwAAAAAAAAAVwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFR7Hj9yPeT2EDyEr2K8ONTgAAAAAAAAAYg9D12vCHvqmadcctx-s3mQAAAAAAAAA7dAHd9ndNzEhU1GyagepTAQAAAAAAAAAlABk6RqRYy5QsiYS0AnfFrgAAAAAAAAApwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFtM8VFC-6NwJWsTojOgeMHQAAAAAAAAAMgQianSpTZDlq5RnHMXwrkgAAAAAAAAALwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFIg4O8IWFanKbF_VU4hFAfgAAAAAAAAAY3JOiPEBqME3dIDTotL2-UQAAAAAAAAAi36WCeR5NbgRZnRrGA9E9SgAAAAAAAACzewjh2tD1sTDOEtY5aAlH_QAAAAAAAAAU0G_ljx-j83i-Qy2lIULhUQAAAAAAAAAQhVKhVL3RShupVCryfwjurQAAAAAAAAAHmO8Ep2yh8naX77AaM6OoawAAAAAAAAA36IU8CVJsljq2c-RkQafrKgAAAAAAAABGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmOXWqC4F9CbM_9TaYs7enGQAAAAAAAAC6kUAbs4Tm3_NRbBQPhQnuwwAAAAAAAABqBlwtAEKFHXxtdYYHllc2EAAAAAAAAAAQnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF7vbDea8YrHNc_wHLzDnfJgAAAAAAAAAUZtfWODgA6w20T9TMv2NrwgAAAAAAAAALa7hZfalsBRk3tlQt91V51AAAAAAAAAA18NDDGpC6h_glZsYGhl3bbQAAAAAAAAAEbERE1ZmRN0ih-04LUSxh0gAAAAAAAAAA", "types": "CAOUBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "muSA4-3A5tqLjcddDaeDBw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjOkXT4fd_WKeR1cE-hlLelCQAAAAAACgmUeXT4fd_WKeR1cE-hlLelCQAAAAAACgkUEXT4fd_WKeR1cE-hlLelCQAAAAAACgkiEXT4fd_WKeR1cE-hlLelCQAAAAAACgl07XT4fd_WKeR1cE-hlLelCQAAAAAACgmh3XT4fd_WKeR1cE-hlLelCQAAAAAACgbrX", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RBIYJkbW5-Ss2DSyBgMD1g"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrkykgtQ4kMk_MBWrPUAFqVnYywAAAAABq7bsgtQ4kMk_MBWrPUAFqVnYywAAAAABq7GYgtQ4kMk_MBWrPUAFqVnYywAAAAABq6JkgtQ4kMk_MBWrPUAFqVnYywAAAAABq42MgtQ4kMk_MBWrPUAFqVnYywAAAAABqGtGgtQ4kMk_MBWrPUAFqVnYywAAAAABquU1gtQ4kMk_MBWrPUAFqVnYywAAAAABro5C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKj", "types": "CAMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yI2e6HYAfhTSJaxYuulCOQ"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbh0SYxe-SHgukLEpCkawSk1QWAAAAAABVxxGYxe-SHgukLEpCkawSk1QWAAAAAAAAQ3f", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PFbB3COAmbAYRaYoh99KYQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAEwXaFizeT40CKpdI_o5Zrw0QAAAAAAAAALP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAepBWDMEkxECoqFEbuF_aawAAAAAAAAAAMQNJBtmDNiP_chGYXJszyagAAAAAAAAA3vXkwfvj7jlhBJyKg0XGvywAAAAAAAABTCzDxY4-T6r5w8odVH9tQEwAAAAAAAAAB5pFhsElnVl9ab7AtYBHzuAAAAAAAAAAS-5JZZ12JbTNmT71XiBz0JwAAAAAAAAADmL_UI4nPuRhvUWgvxCaoSwAAAAAAAAJaBDSdiy0x3rJPCL22Rb7_AgAAAAAAAABL", "types": "CAMVBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eYaT0VAMxHUuQFovR7m_6A"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYr1L9Bd3XIiGWasJdN8trI5tgAAAAAABX3eL9Bd3XIiGWasJdN8trI5tgAAAAAAA3ClL9Bd3XIiGWasJdN8trI5tgAAAAAABQ_zL9Bd3XIiGWasJdN8trI5tgAAAAAAACYm", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "39C59YAEETP8fgJkvRsitg"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAAAYGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAreC1ezKjb5n0AmQucckax6gAAAAAAAAB8j6lTWpvLdhLMziAIojgZ2QAAAAAAAAACZuiJGdMTgqCiSwiPmMfXSQAAAAAAAAABGOcPlET8lxz6w9LoJqKjeAAAAAAAAAAGEMyu4kjP7CMJCtMZjoFNnQAAAAAAAABsRIm8jbjeC3SfOmyAcdCaLgAAAAAAAACJ", "types": "CANFBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wOaaLLn26MWCq1Ch7gi66A"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAacbI", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aUhFzDZcHwff0_YJWeg6vA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP6Q", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aFWcqgahvwzy1xUY69A0Sw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAAMlBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF8DjWuv2ON9M4hqERzLLGrwAAAAAAAAA4jl0Few0KXqirBZp0WuOd2wAAAAAAAAFe71tcgbBjsGAuVt1WGfcc1wAAAAAAAAA3JS0BtKRMk3xcaGJmg4uqaAAAAAAAAAATAmTcFForv1r91KDhJjsuQQAAAAAAAADdxztGdRdeA4QtQpYqq2H8IQAAAAAAAAAMpsNLvt90kdVq_EPYAmn_WAAAAAAAAAASS0Xp2_3vk0PCR7xQ7YS7IQAAAAAAAAAG_zDk_N7NUcNRTqIuzYKxDgAAAAAAAAAgobA_YN1BhcTIsrqf5XOlGQAAAAAAAAAEfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdaMzea5YF1p9DWzFcmq3VzwAAAAAAAAAQnbsBVHmpV2luDgffbdJNFAAAAAAAAAAWcRoGFhrzTt6STyxXzS_QFgAAAAAAAACzs7hdxBbMHWQxy2GABBYaPQAAAAAAAAAJF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAd9zPkZE4RJJmPlROxnxkxmwAAAAAAAAAE9P399qv1PUm-fcjEeECPlgAAAAAAAAABmfgswW5tnP--5haDnNTmnwAAAAAAAAAIudgPCGqbKhChfal6WK47OgAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAZifuzCpl1zo6zLw_paxkEdQAAAAAAAABs-I0qeKDe1hMr58wzZHuN2wAAAAAAAABijEBVtdqhsioEQwhXyNMdhgAAAAAAAAAENg5XaeoBUnLdWeaVrR6CtwAAAAAAAAAFBYJNn-MoBSRU3jGgndKCfQAAAAAAAAAECuV4zhXsbstpo0uwp_uAFgAAAAAAAAABck_MxLBdFaeX0Pe9TGo2LgAAAAAAAAAWRvgpC2THNLDZ9bIizRZhbwAAAAAAAAAQuw22TVsJZa9-V4t68di_cwAAAAAAAADK4XXTSxpcblY4XfsTMB8ZgQAAAAAAAAEsgvfqv8XsdCrMz1u0cPr7iwAAAAAAAAAH2ea6Wt_FUSqyCQ-T65v7_wAAAAAAAAAHnAEagQQcCrvY7LHUFhFC8wAAAAAAAAA0edTeS1Ofrj8KEn1olv0sJAAAAAAAAAAPZUWFO7_P5RCkVQo5ktvTUQAAAAAAAAA3qN4Vqjijt0HHN8TkXT1dVwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAZHpec9nZGwrrhoUYM845NAAAAAAAAHI6_QYAzQdAagYTCI2yUMpa7wAAAAAAAOb9", "types": "CANTBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "gAG1HMhOOlK-azE89-mC-A"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB9AZtz5k14PsCcDvFyUC1kmlV3QAAAAAB9Gyqz5k14PsCcDvFyUC1kmlV3QAAAAABJiNfz5k14PsCcDvFyUC1kmlV3QAAAAABHnhUz5k14PsCcDvFyUC1kmlV3QAAAAABHpmIz5k14PsCcDvFyUC1kmlV3QAAAAABHpbXz5k14PsCcDvFyUC1kmlV3QAAAAABHeDgz5k14PsCcDvFyUC1kmlV3QAAAAABHdVCz5k14PsCcDvFyUC1kmlV3QAAAAABFwHxz5k14PsCcDvFyUC1kmlV3QAAAAABFxYLz5k14PsCcDvFyUC1kmlV3QAAAAABGnan6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "DQMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "npMsWxmmefd8KwLK_Ds63g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAAAbH0yNC4W33CkkqJfkrGFEhAAAAAAAAAAqM123ooeMvaMWHcBRAZSRjgAAAAAAAAAERE9XcD6w8sLmd64StWro7AAAAAAAAAAA", "types": "CAMMBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6uqbj6xXSR4L1HQjjfr6tw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCveXT4fd_WKeR1cE-hlLelCQAAAAAAEODDqXT4fd_WKeR1cE-hlLelCQAAAAAACwtaEXT4fd_WKeR1cE-hlLelCQAAAAAACwt5kXT4fd_WKeR1cE-hlLelCQAAAAAAChWd2", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WVvi39LiS0vDLyXeSsVBkg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABda68f5mgZFs3OaBztew54AAAAAAAAAAM9lngTnmeSG1s7rdk_juSMAAAAAAAAAAGHrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACtBnjxOT6ecDtMNaRY7RgRQAAAAAAAAABnzd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX73IOkhtZyjrZNnxzxVPYTQAAAAAAAABEiwGeqNv30_OStpNiHW5afwAAAAAAAABD1XS2aFbrMvbrgkTeGP6LGgAAAAAAAAAJgpel-2y6MT8HpZSUXeX6xwAAAAAAAABH8KfvTX_45EkfeqjFTJPGMwAAAAAAAABHhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAAC2QkkDXMhATwTB2K8md9w1pwAAAAAAAAAZRTvkaysuyXpxT9w4uvkQVwAAAAAAAAAihoA0DA92BMfAA7apys6-iQAAAAAAAAAMngJW-mG0syMkjT4A0Lg1GwAAAAAAAAAmn1iVFjBzfESOHprfqoe0LwAAAAAAAAAJ_4WcH53TxNRbyklfT7cbEwAAAAAAAAAT0J5kDpLU5fTc_ktpkygGRwAAAAAAAAAytqxIWD7h3nTRM9IIo79qNQAAAAAAAAANizOapIecEtKD0W0KOjIC-gAAAAAAAAAlOZbqb4tQmA5EHMDCsCNqZwAAAAAAAAByAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QY705UJL2QEaImwzck5kDQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQw7WOWZs79Wz210098loDzAAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARrSUSoohdnG6MdsfC9pID0QAAAAAAAAAGpY2MvdN80J-OPBSDYZs_8gAAAAAAAABSneOkLg7Birx-EWGBuoP5rgAAAAAAAAAaDjB9rnpR9s2OI-jlVfuXnAAAAAAAAADmNrikprALerrSkH1iKFm6zQAAAAAAAAAs_ui1AAIySrYc7ZeYb73nFQAAAAAAAAAMDbSG9xbs7jnAEiHiVrKb1AAAAAAAAABnW9vTZkLai1FHQImj51gVvAAAAAAAAAAFiDeUqi9fXDm_fNSrL17LBgAAAAAAAAACnzw4AVNutfhHt7T-gQii5AAAAAAAAABf", "types": "CANGBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "QjWTEl1JczrCDNWdjCq0IQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAACFVesl-TqkdasS6qMPfjcnngAAAAAAAABVr69bqYctcqbyJiTyvmojFAAAAAAAAAAJVoQ5AJHHG4Z_KZgZidNsZQAAAAAAAAAC3QM5OJWdXJOtFw8erEL5XwAAAAAAAAAN87egngtXFm0bIUCnQcIALwAAAAAAAAAHDNMSP4UcXImUndf71pg8FQAAAAAAAABh3J9sxS-e4x4-VIIgWjujUAAAAAAAAACqk9qlBuUUuQaRGtKxyO_pagAAAAAAAAAEF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAdvCYukS89lPAo0Tgs1462rgAAAAAAAAAIQF0gmeIjjmTZUhdMFgr_4AAAAAAAAAAFSZIzrSBBPBO2zJj0aqaKggAAAAAAAAD_AOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAZifuzCpl1zo6zLw_paxkEdQAAAAAAAABs-I0qeKDe1hMr58wzZHuN2wAAAAAAAADljEBVtdqhsioEQwhXyNMdhgAAAAAAAAAENg5XaeoBUnLdWeaVrR6CtwAAAAAAAAAFBYJNn-MoBSRU3jGgndKCfQAAAAAAAAAECuV4zhXsbstpo0uwp_uAFgAAAAAAAAABck_MxLBdFaeX0Pe9TGo2LgAAAAAAAAAWRvgpC2THNLDZ9bIizRZhbwAAAAAAAAAQuw22TVsJZa9-V4t68di_cwAAAAAAAADK4XXTSxpcblY4XfsTMB8ZgQAAAAAAAAEsgvfqv8XsdCrMz1u0cPr7iwAAAAAAAAAH2ea6Wt_FUSqyCQ-T65v7_wAAAAAAAAAHnAEagQQcCrvY7LHUFhFC8wAAAAAAAAA0edTeS1Ofrj8KEn1olv0sJAAAAAAAAAAPZUWFO7_P5RCkVQo5ktvTUQAAAAAAAAA3qN4Vqjijt0HHN8TkXT1dVwAAAAAAAAAE2Swt2qN1JJo2lNqpZIN9-wAAAAAAAAAAZHpec9nZGwrrhoUYM845NAAAAAAAAHI6_QYAzQdAagYTCI2yUMpa7wAAAAAAAOb9", "types": "CAM5BQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "sl8hikPZI3gmfoj4I-xFMg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7zyXT4fd_WKeR1cE-hlLelCQAAAAAAC-8B3XT4fd_WKeR1cE-hlLelCQAAAAAAC-ykpXT4fd_WKeR1cE-hlLelCQAAAAAACp70oXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "xqMKJtcmKXbh2cms887n-w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAxSQjdgx2wqIxyPHp2kbwpQQAAAAAAAABZ83-j4R13bIPFHIwJnf4UlAAAAAAAAABUhlv_ksAXxTQ2GTBcbRb2JwAAAAAAAAAy4pQmnbdVKlEPbRd3rB3jwgAAAAAAAAAUl0hCUDJE9WA5zrDYnTjz6wAAAAAAAAAFEjqVtFve0NBSahnBSZ385QAAAAAAAAACasfjD62HMHzrp-TIN-8V-gAAAAAAAABB", "types": "CAMNBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JVsUuzDWhnoUag5GJcXYzw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbeuIw_I7HzcVMEcOaEL-XEgAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAAB2I10upgJihUkX5rBuiOc-YwAAAAAAAAAJQM07la3NPp56y7hhD10OWQAAAAAAAAAFb0AoyduVJ3t1JvB8AtIQXgAAAAAAAAAWS06qc2WWdjyLzzAdWuSUuwAAAAAAAADmTl_Iodjc0LWexYa5MoBoHAAAAAAAAAAHntgZha7-wW1dtg73nm5MkwAAAAAAAAAmsCOApbaKyYNIvwXSt1bEIAAAAAAAAAAy3rmyHJndkO8hLNYIrTHVNgAAAAAAAAAPAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAM6BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EK7FG-N0XT8ybJhJIv-IHg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHX31XT4fd_WKeR1cE-hlLelCQAAAAAACoA7IXT4fd_WKeR1cE-hlLelCQAAAAAACgUmmXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdAU", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XMBO6mK2eUEy_2zoVmK7iw"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAAKiVqL9Bd3XIiGWasJdN8trI5tgAAAAAAKfumL9Bd3XIiGWasJdN8trI5tgAAAAAAFmVkL9Bd3XIiGWasJdN8trI5tgAAAAAAEl_HL9Bd3XIiGWasJdN8trI5tgAAAAAAESQOL9Bd3XIiGWasJdN8trI5tgAAAAAADIGQL9Bd3XIiGWasJdN8trI5tgAAAAAAB-7JL9Bd3XIiGWasJdN8trI5tgAAAAAACA5A", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rI5YB_X-7tV_Ivns4mBUGg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABF0kYxe-SHgukLEpCkawSk1QWAAAAAAABF7IYxe-SHgukLEpCkawSk1QWAAAAAAABGF-Yxe-SHgukLEpCkawSk1QWAAAAAAAA1HOYxe-SHgukLEpCkawSk1QWAAAAAAABqf16tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtJB6tVKI4mSYDEJ-ABAIpYXcgAAAAAACtH16tVKI4mSYDEJ-ABAIpYXcgAAAAAACtEe6tVKI4mSYDEJ-ABAIpYXcgAAAAAACotD6tVKI4mSYDEJ-ABAIpYXcgAAAAAARPjO6tVKI4mSYDEJ-ABAIpYXcgAAAAAASfO6", "types": "CAMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wDcbOGXjyzRDEWJtXUJ7rg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEPD3cOudib0XQsq9y3nJeyAAAAAAAAAAQPHOUiNkmrb6lymlNuXSU6gAAAAAAAABCdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAABTYQywd7BcCE2h4hN9hN7NgAAAAAAAAAAA", "types": "CAMZBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "669-RSmA7VOx7u87DdbW9A"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAAC2M-sXhvfna68VyqP_ipf--wAAAAAAAAA2Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAABWdZbEvj5KNLRaqtv4ShlGOgAAAAAAAAAHAvY-8GTrHONLnLoYn_aUmwAAAAAAAAAl9iPPrg1Y9vtWhMk7mXQ_KgAAAAAAAAAeuJZrofYGiqBpYJJdGGtLHQAAAAAAAAADzGZ_gCn-Ge9oHmah2m0JWwAAAAAAAAAD2p4Dyo36Ea--rGgiVt2H5QAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhTEqFV6xhVekP5-uToPI32ragAAAAAAe4zD", "types": "CANMBQUD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "z-xVIHcDRK95_cuEpNrf-Q"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBMvYxe-SHgukLEpCkawSk1QWAAAAAABV_dkYxe-SHgukLEpCkawSk1QWAAAAAAAEXhXYxe-SHgukLEpCkawSk1QWAAAAAAAC22EYxe-SHgukLEpCkawSk1QWAAAAAAAC2m9Yxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaO", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mUFADSo1xxMWcv8DSPuI8w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbeuIw_I7HzcVMEcOaEL-XEgAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAAAChqCVy9Bmh3QnOLTKZ-efoQAAAAAAAAACIZxfi1iuafWxPwuumad8uwAAAAAAAAAF_hdDMPyeQEiftRkSsra8RwAAAAAAAAACp5Yz2m4app3BEG7s8_6j3AAAAAAAAAAMgF_nbXcMCNR_uoF7fTSJRwAAAAAAAAADQgmxh3uDuguOnnGd8i_56AAAAAAAAAAFle8VfryMtJlEyXJeMd-6oAAAAAAAAADvI10upgJihUkX5rBuiOc-YwAAAAAAAAAJ3R8pvj9gYzDPyi0jNqDOsAAAAAAAAAAFbgWToCzheWak78gv4TQ_CgAAAAAAAABAk_s_ITRPELxw2Zk2jzGG8wAAAAAAAAAINleCed7iD5lY9FUQABqcFQAAAAAAAAAE56J_quP6E7ubMy0oFC4pVgAAAAAAAADG", "types": "CAM3BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ruch9eRlQqOnJ3ZVNLKC2g"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSTYxe-SHgukLEpCkawSk1QWAAAAAABXbQ5Yxe-SHgukLEpCkawSk1QWAAAAAAAFznNYxe-SHgukLEpCkawSk1QWAAAAAAAFzx5Yxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHa3J6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHafM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAHrj6", "types": "CwMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "R5Cb48qStI1GlPaxKWm-mw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN4xJ", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "m_wtbg2jNShExrSNavS6Zw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnChGc_KlbDChxhbLYz-xpPwAAAAAAAAALOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATD1Pplq_qKhq6dsYD8eLgmQAAAAAAAAAHcgvbeZuClZL5_u10G3w_3QAAAAAAAAAWh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABU0Ay-od-wn9HrOZaci_ZcQAAAAAAAAAIOFwxlpot2kNL7xB3s-P8GwAAAAAAAAC1dLYbCx2wQodX9zVMLTmHSwAAAAAAAADVRLzW6L-lmkUcBl9Z894PowAAAAAAAACCfPgoUHJQjLNhQU22r1cGEQAAAAAAAAAE-KRdnkPu2lSKWAoWjDevIAAAAAAAAAAuuHtNlz2aITYon4vfb6MWngAAAAAAAAAFvhbUWdup3LzDBy6wV9oftQAAAAAAAAAFz2DVOjVRemP4hP2PhsveHQAAAAAAAAAQNV1VjMHMtULGtSELk5F0rAAAAAAAAAA5", "types": "CANlBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "x8C8r_joS9eFrngYSfAD9g"}} -{"Stacktrace": {"frame": {"ids": "pqmEMTIUDz-nhY9YtlE3YAAAAAAAZGl6pqmEMTIUDz-nhY9YtlE3YAAAAAAAYiEVpqmEMTIUDz-nhY9YtlE3YAAAAAAAYh3qpqmEMTIUDz-nhY9YtlE3YAAAAAAAYhLbpqmEMTIUDz-nhY9YtlE3YAAAAAAAYgEUpqmEMTIUDz-nhY9YtlE3YAAAAAAAX90KpqmEMTIUDz-nhY9YtlE3YAAAAAAAYXFapqmEMTIUDz-nhY9YtlE3YAAAAAAAZKqz", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5Q6w1HKYFAJALkbhmH-RHQ"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXUptYxe-SHgukLEpCkawSk1QWAAAAAABXVjkYxe-SHgukLEpCkawSk1QWAAAAAABXVBsYxe-SHgukLEpCkawSk1QWAAAAAABXZL0Yxe-SHgukLEpCkawSk1QWAAAAAABV3AkYxe-SHgukLEpCkawSk1QWAAAAAABV1uZYxe-SHgukLEpCkawSk1QWAAAAAABV59PYxe-SHgukLEpCkawSk1QWAAAAAAAFzcMYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "DgMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Dwajp9wqywvmsgNufMFSDg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw14eXT4fd_WKeR1cE-hlLelCQAAAAAACkSIeXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdGa", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3hucOiuiT_BuF65onWDmkQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlfQcEvvhuguaGYCmGWrnWRz1QAAAAACEh4acEvvhuguaGYCmGWrnWRz1QAAAAACEiiHcEvvhuguaGYCmGWrnWRz1QAAAAACEipkcEvvhuguaGYCmGWrnWRz1QAAAAACEYEMcEvvhuguaGYCmGWrnWRz1QAAAAACFyj26tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ8bZ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ75B6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJ7gC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJloA6tVKI4mSYDEJ-ABAIpYXcgAAAAAAJlhJ6tVKI4mSYDEJ-ABAIpYXcgAAAAAACHEw6tVKI4mSYDEJ-ABAIpYXcgAAAAAACG-k6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFF866tVKI4mSYDEJ-ABAIpYXcgAAAAAAFF5X6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFz86tVKI4mSYDEJ-ABAIpYXcgAAAAAAAsRN6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAsCt6tVKI4mSYDEJ-ABAIpYXcgAAAAAAABQH", "types": "BwMPBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7izJ-LV-AEcodCtu0-YXBw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAHOgepeYBdrKmAGikZZHzjywAAAAAAAAACvIUAbyMW7bf80Va51E6QcQAAAAAAAAAF_I187UwkDjABEvmHmR4uSwAAAAAAAABtf-B_DnWkY3i33A_-cn2DVAAAAAAAAAAa_iCcRlhs7iF8GyQDr_i9yQAAAAAAAADW4LaiotHNGYdIR8tBjAPtZwAAAAAAAABGIlQ1XNLSC8AG8SGKzC1MsQAAAAAAAABNtLATSye44dZj5qP3wd7yWgAAAAAAAACJGRx4elZZ5Xpl6qP-vsIkdgAAAAAAAAAEOGothoSS_VGQxhefQGBOogAAAAAAAAAM3PWYwmr8WKiucw6_bVd_pwAAAAAAAAAHDuXITtzB7JQM2p8eLBRYdgAAAAAAAAAESvEA_niVYaY-OpBNTk8XvAAAAAAAAAAcR50j_Fakx0mSC9-4NdTEsgAAAAAAAAABJBB8Y32Y7T0w9OJCs-3BZwAAAAAAAAA3osL-AROuaDqXe2LFy29GUwAAAAAAAAABnuo_TPMaY49kAwBo7E4YSAAAAAAAAAAkOD88rfBmy4BfCXerLT5e5QAAAAAAAAA7yhF9CEzH60wdDBblzY1FcQAAAAAAAAAIOfxH2vk7SslvcgrXWFxmEAAAAAAAAAAH8ngtv4cDkGweTy1-Gd9auQAAAAAAAAAKrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEn89kGiBdFucX6T4kdjXe_gAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVCm3FF_uDQeutHnQs3UGjlgAAAAAAAADAwMduPEe0g_53DcRkATCeKAAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAABSQtMelJKn2GMpVgIdbCShVAAAAAAAAACKf_rIvCQMW5oayMPHCj4aUgAAAAAAAAC-6Xh-B1rJ2u1_EElR3i8rJwAAAAAAAAAC80G6zvzFPytbRyfwuXWQcAAAAAAAAABMAAAAAAAAV4sAAAAAAAAAHSs8i6sJ9R6rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAyAFNSNDzWiYDmLZi_Z1ZVETLoAAAAAAAyABfSNDzWiYDmLZi_Z1ZVETLoAAAAAAAaHfUSNDzWiYDmLZi_Z1ZVETLoAAAAAAAaIEASNDzWiYDmLZi_Z1ZVETLoAAAAAAAViDYSNDzWiYDmLZi_Z1ZVETLoAAAAAAAd60Q", "types": "CANYBQYD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "43Mh5txMzJNoI6svI0SbQg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf-A", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ch1MSb9N9bTihIUdmamkLA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABqVb0C_sYOU5d3eeu0yalLowAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAdqz6N-6DM06uuF3n6UYF3qgAAAAAAAABQzFzboqO8__hpgAhYabPN_AAAAAAAAAAGy2325DY1ugdPcN9iudwKYQAAAAAAAAA7YfWVtOr-M3KdNymRhenToAAAAAAAAAADIAnIcQ3bOqZLIYVOjvKR0wAAAAAAAADSPY94Ez-AShf7eTbyN8KgtwAAAAAAAAANOmCg7LeKFCxsCaIeFo50SAAAAAAAAAIjeOXjDtmISDDtSL4dEzZt-wAAAAAAAAAD_6rkq2S7o8rMRQJ9AofzJAAAAAAAAACLjwkBY0s-EHDmaMTnMHI2lgAAAAAAAAAYLLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABRiQ3-U2pFJokP-jlw4Yr9FQAAAAAAAAAJnxv9fnyzQgRP5y-sCtMEGwAAAAAAAAEn", "types": "CANBBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "m4xUM11zLI-btfCgwf6IbQ"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAcHFgO_FKtiSSlqZPdpNkneQAAAAAAAAAA", "types": "CAODBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-77tqpe6hKMIrwkkHYgFFA"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgN3", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rG147l1B0EGMuLS3fy86lw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAADd00K83mDEaMrraYI9F5octQAAAAAAAAABaqi6m5y2lIDVnw6ctINunwAAAAAAAAABB_IRgbCQC1IPEoVkHKMOTwAAAAAAAAAYdB8rpvXeU-U7j8zoRqc_lgAAAAAAAAG1kUJgVxIXgDBTomuPsxvCVwAAAAAAAAA-gpzmfljwMvF6axjuntzBmAAAAAAAAAABtGdjZjM6jJA23WbdtVpvAwAAAAAAAAAIE7J_ZVS2fIyPaAMkyne11QAAAAAAAAAA", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "U7Y6G7QHAuKl9wgxs-phIg"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf3le9lVb1YZlOVDHLOf4bawAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACZju6rAGbAtHQitND_873BgAAAAAAAAAdJYe70J6f_R3-V5ur6gAZUAAAAAAAAABVNPdl2RqRn8ZDbCNkrCXA1wAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAJviKcZg3Lb1e0QLK7zMZlwWQAAAAAAAAATDYR4nla6rR5CkjYgb2INPQAAAAAAAAC1d7gLTQ8jp2sYM3Jdp9DMMwAAAAAAAACfZYJrmLEjznzm7GSiXKeulgAAAAAAAAAMjH-Kh7eMoVAEa99gkdQ-YQAAAAAAAAAWvtOmTuUGvKYiQRK_O9kHuwAAAAAAAADPAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HPhJ76yG2kEeQYFKH7p-MA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACAUUWZ3CKaS4aU08RhYA19y5ITQAAAAACANGoZ3CKaS4aU08RhYA19y5ITQAAAAABu4FEZ3CKaS4aU08RhYA19y5ITQAAAAACAPAbZ3CKaS4aU08RhYA19y5ITQAAAAABwZC5Z3CKaS4aU08RhYA19y5ITQAAAAABwNYAZ3CKaS4aU08RhYA19y5ITQAAAAABwMezZ3CKaS4aU08RhYA19y5ITQAAAAABwNWJZ3CKaS4aU08RhYA19y5ITQAAAAABtmWQZ3CKaS4aU08RhYA19y5ITQAAAAABudH4", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SsB_u-p6-kmstFPsLe9XQg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc6CMz5k14PsCcDvFyUC1kmlV3QAAAAABcsoIz5k14PsCcDvFyUC1kmlV3QAAAAABcozlz5k14PsCcDvFyUC1kmlV3QAAAAABdKzcz5k14PsCcDvFyUC1kmlV3QAAAAACFICrz5k14PsCcDvFyUC1kmlV3QAAAAACFHWhz5k14PsCcDvFyUC1kmlV3QAAAAACCMghz5k14PsCcDvFyUC1kmlV3QAAAAACCcl2z5k14PsCcDvFyUC1kmlV3QAAAAACCdwcz5k14PsCcDvFyUC1kmlV3QAAAAACCeWJz5k14PsCcDvFyUC1kmlV3QAAAAACCehQz5k14PsCcDvFyUC1kmlV3QAAAAACCeuuz5k14PsCcDvFyUC1kmlV3QAAAAABFFzk", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JrMhbMTHmXqZZAz4xxL86g"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrkykgtQ4kMk_MBWrPUAFqVnYywAAAAABq7bsgtQ4kMk_MBWrPUAFqVnYywAAAAABq7GYgtQ4kMk_MBWrPUAFqVnYywAAAAABq6JkgtQ4kMk_MBWrPUAFqVnYywAAAAABq421gtQ4kMk_MBWrPUAFqVnYywAAAAABq_QH", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Su83jhjLPwV0cqJbphC9gg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmviYxe-SHgukLEpCkawSk1QWAAAAAAABBUsYxe-SHgukLEpCkawSk1QWAAAAAAABA_9Yxe-SHgukLEpCkawSk1QWAAAAAAABAHHYxe-SHgukLEpCkawSk1QWAAAAAAAA-srYxe-SHgukLEpCkawSk1QWAAAAAAAANKmYxe-SHgukLEpCkawSk1QWAAAAAAAA0MVYxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zt84rjIRj6I8L5VSa3HBpw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5WiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9xAhlVWErYnSgk5BtC2imuwAAAAAAAAAHPCZtk4AIkgW9G69-tbcb4gAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFg7nBWJWVuG2AG8wBW0GvVwAAAAAAAAAMJ1pfAEWmqWCNhh7R3GdmfAAAAAAAAAASE7IGle0kfvhelE-3QmeBCwAAAAAAAAAWRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlX6mSHrc_Ev2W8ntyZyhlAAAAAAAAAAMXqo7-ger7Rh6Qo72br9qjwAAAAAAAABjPJlREaStQ9MDsMhq8CWS4AAAAAAAAAAY0gz1mhmhTxHCVZG94cP1QgAAAAAAAAAF-7DooF_BqEazp1UGVZs9GwAAAAAAAAAFANUDzCguopTSw91qnI0ylAAAAAAAAAAO-kwQ5tzIMTia7ESgS4_wzAAAAAAAAAAdf9rhWt1EzalXyXMX3OGNPgAAAAAAAAAyY9mQUdyp86jQhHqOid6GcwAAAAAAAABFbFNBCgHVi2ZK2yGNK4LXZgAAAAAAAAAQgIhOskhYYQYheVtFzZwofwAAAAAAAAAIgSPeGElM62wUjW_qOFb83QAAAAAAAAACb_onKz7Xhj_Rg3Non4_rlwAAAAAAAAAyHplXktiQEHOlMsPkVEOy3AAAAAAAAAAJCWRGF1z6Wu9NWAthusKWFAAAAAAAAAAGkwRiyOp4rW0qzxA_tBFHXAAAAAAAAAAV", "types": "CAM-BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pzJd5yzlB5VRPpGvz2d_9g"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1K", "types": "AQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mwUpd0imVLBffXq6CKbujA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbjKZ3CKaS4aU08RhYA19y5ITQAAAAADKT82Z3CKaS4aU08RhYA19y5ITQAAAAADBDedZ3CKaS4aU08RhYA19y5ITQAAAAADBEKOZ3CKaS4aU08RhYA19y5ITQAAAAADBEVQZ3CKaS4aU08RhYA19y5ITQAAAAADCJIfZ3CKaS4aU08RhYA19y5ITQAAAAADBGgEZ3CKaS4aU08RhYA19y5ITQAAAAACygVgZ3CKaS4aU08RhYA19y5ITQAAAAACDi3MZ3CKaS4aU08RhYA19y5ITQAAAAACDjuSZ3CKaS4aU08RhYA19y5ITQAAAAACDgkGZ3CKaS4aU08RhYA19y5ITQAAAAACDf9dZ3CKaS4aU08RhYA19y5ITQAAAAAB9MVsZ3CKaS4aU08RhYA19y5ITQAAAAAB2nnMZ3CKaS4aU08RhYA19y5ITQAAAAAB2qr8", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3XmH7C16CjfWPwwqHrVw7A"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHSa5XT4fd_WKeR1cE-hlLelCQAAAAAACzCeJXT4fd_WKeR1cE-hlLelCQAAAAAACzCbUXT4fd_WKeR1cE-hlLelCQAAAAAACgXJF", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "42JG9a6NRfwi2CO7Z1RPNw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXry3cEvvhuguaGYCmGWrnWRz1QAAAAACETeKcEvvhuguaGYCmGWrnWRz1QAAAAACEM5TcEvvhuguaGYCmGWrnWRz1QAAAAACEMRMcEvvhuguaGYCmGWrnWRz1QAAAAACEXTncEvvhuguaGYCmGWrnWRz1QAAAAACEXzbcEvvhuguaGYCmGWrnWRz1QAAAAACEwdC", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Pf3D6JGFbbrRUgOJ18HuJA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc5-Qz5k14PsCcDvFyUC1kmlV3QAAAAABcnaEz5k14PsCcDvFyUC1kmlV3QAAAAABakwcz5k14PsCcDvFyUC1kmlV3QAAAAABalsIz5k14PsCcDvFyUC1kmlV3QAAAAABautWz5k14PsCcDvFyUC1kmlV3QAAAAABGL-zz5k14PsCcDvFyUC1kmlV3QAAAAABFRG3", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ryXlsOyzYLGsXWk1fBrhYw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVisaH-h45nfZl4J_NtapgSwAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAAV_QheDKcYlWwsFE4koFnZNgAAAAAAAABfJLnEXoQY4hlx9fukF3_nfgAAAAAAAAAEEljCaLNs8oyF8fQALGTMLQAAAAAAAABVf5p_PMJgJDLSgaMg1oCNpgAAAAAAAABOEljCaLNs8oyF8fQALGTMLQAAAAAAAABVf5p_PMJgJDLSgaMg1oCNpgAAAAAAAABOEljCaLNs8oyF8fQALGTMLQAAAAAAAABVf5p_PMJgJDLSgaMg1oCNpgAAAAAAAABOEljCaLNs8oyF8fQALGTMLQAAAAAAAABVf5p_PMJgJDLSgaMg1oCNpgAAAAAAAABOEljCaLNs8oyF8fQALGTMLQAAAAAAAABVf5p_PMJgJDLSgaMg1oCNpgAAAAAAAABOEljCaLNs8oyF8fQALGTMLQAAAAAAAABVf5p_PMJgJDLSgaMg1oCNpgAAAAAAAABOEljCaLNs8oyF8fQALGTMLQAAAAAAAAA4", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yfHwdMgNnjjToBF0X-5h8Q"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABFvN", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TCI-U8WcxrkkRuvWag0ygQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAH1lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACXVSALBRPvgHpUWKmpUo1khAAAAAAAAAAESz9vLWSfEDywRabkpQbmLgAAAAAAAAAA", "types": "CAO_BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Tq6Q7NqNkBok1R0-y_UPeA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyEzZ3CKaS4aU08RhYA19y5ITQAAAAABtxy2Z3CKaS4aU08RhYA19y5ITQAAAAABtwT0Z3CKaS4aU08RhYA19y5ITQAAAAABtFpzZ3CKaS4aU08RhYA19y5ITQAAAAABtnwrZ3CKaS4aU08RhYA19y5ITQAAAAABudBy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM", "types": "CAMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "O0Oa-d1JiNvkWrWHXAez_A"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABMaP-XSbJ_jD1SaDSikvAxwAAAAAAAAAM9lngTnmeSG1s7rdk_juSMAAAAAAAAAAGHrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACtBnjxOT6ecDtMNaRY7RgRQAAAAAAAAABnzd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX73IOkhtZyjrZNnxzxVPYTQAAAAAAAABEiwGeqNv30_OStpNiHW5afwAAAAAAAABD1XS2aFbrMvbrgkTeGP6LGgAAAAAAAAAJgpel-2y6MT8HpZSUXeX6xwAAAAAAAABH8KfvTX_45EkfeqjFTJPGMwAAAAAAAABHhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAACQhYJDXHe_tXWd6FUCpAvLJAAAAAAAAABERTvkaysuyXpxT9w4uvkQVwAAAAAAAAAOhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAACQhYJDXHe_tXWd6FUCpAvLJAAAAAAAAABERTvkaysuyXpxT9w4uvkQVwAAAAAAAAAOhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAACQhYJDXHe_tXWd6FUCpAvLJAAAAAAAAABERTvkaysuyXpxT9w4uvkQVwAAAAAAAAAOhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAACaWaWdxNGxRcZaZiNc-MTFHwAAAAAAAAAe_yGigQXLGMRH830Q299U-QAAAAAAAAAhhYJDXHe_tXWd6FUCpAvLJAAAAAAAAABERTvkaysuyXpxT9w4uvkQVwAAAAAAAAAOhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAAC2QkkDXMhATwTB2K8md9w1pwAAAAAAAAAZRTvkaysuyXpxT9w4uvkQVwAAAAAAAAAihoA0DA92BMfAA7apys6-iQAAAAAAAAAMngJW-mG0syMkjT4A0Lg1GwAAAAAAAAAmn1iVFjBzfESOHprfqoe0LwAAAAAAAAAJ_4WcH53TxNRbyklfT7cbEwAAAAAAAAAT0J5kDpLU5fTc_ktpkygGRwAAAAAAAAAytqxIWD7h3nTRM9IIo79qNQAAAAAAAABFGbNPtP2ptUhcICMoumcb2AAAAAAAAAApCIYguVhaxe0J-8ClJsrUlAAAAAAAAAAahp_iwwp1vhuCC_YLHJWlFQAAAAAAAAE_", "types": "CAMzBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uFGWThWg3zgxDL3xxQAwYw"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYr1L9Bd3XIiGWasJdN8trI5tgAAAAAAA2ErL9Bd3XIiGWasJdN8trI5tgAAAAAAAKWhL9Bd3XIiGWasJdN8trI5tgAAAAAAAq7bL9Bd3XIiGWasJdN8trI5tgAAAAAABckC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BQMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Y8nvfrvenFH8tjnsQqRmig"}} -{"Stacktrace": {"frame": {"ids": "R_3RsDYccfUxjNYYah3JZgAAAAAAEhYe-IlGUwajicqSE5-hS5VYigAAAAAAAHbaSZxl-YF9wOaedogsBMtvRAAAAAAAGQAGSZxl-YF9wOaedogsBMtvRAAAAAAAGQBRSZxl-YF9wOaedogsBMtvRAAAAAAAD9N_SZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD4w6SZxl-YF9wOaedogsBMtvRAAAAAAADzHq", "types": "JAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DrEPteno4vchlHw0ws65OA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZFDZ3CKaS4aU08RhYA19y5ITQAAAAABuDoeZ3CKaS4aU08RhYA19y5ITQAAAAABuDU8Z3CKaS4aU08RhYA19y5ITQAAAAABuDG9Z3CKaS4aU08RhYA19y5ITQAAAAABuNrFZ3CKaS4aU08RhYA19y5ITQAAAAABuH8v", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Y99kgy97ko1q-GgFUQMIvA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw2EEXT4fd_WKeR1cE-hlLelCQAAAAAACw1iYXT4fd_WKeR1cE-hlLelCQAAAAAACkHGIXT4fd_WKeR1cE-hlLelCQAAAAAACkMuNXT4fd_WKeR1cE-hlLelCQAAAAAACkK8EXT4fd_WKeR1cE-hlLelCQAAAAAACkJgkXT4fd_WKeR1cE-hlLelCQAAAAAACkI3XXT4fd_WKeR1cE-hlLelCQAAAAAACkINo", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-49a_E8AcF9JV2D17KJ99g"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8kcEvvhuguaGYCmGWrnWRz1QAAAAACFV9EcEvvhuguaGYCmGWrnWRz1QAAAAACFVZ1cEvvhuguaGYCmGWrnWRz1QAAAAACFWTZ", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XQeY0u1F2xnHmZQvstPXhA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWIIXT4fd_WKeR1cE-hlLelCQAAAAAACqVVkXT4fd_WKeR1cE-hlLelCQAAAAAACqVkK", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WgfE3EpDBODOIydfExij_g"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAAAbiCpYxe-SHgukLEpCkawSk1QWAAAAAABXcSEYxe-SHgukLEpCkawSk1QWAAAAAAAFzhzYxe-SHgukLEpCkawSk1QWAAAAAAAEZvyYxe-SHgukLEpCkawSk1QWAAAAAAAC20TYxe-SHgukLEpCkawSk1QWAAAAAAAC2knYxe-SHgukLEpCkawSk1QWAAAAAAAAEZyYxe-SHgukLEpCkawSk1QWAAAAAAAAEaO", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "T3r2NA911Mk7g-SMfweEhA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbeuIw_I7HzcVMEcOaEL-XEgAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAABdynFllp5CrPbAGyx1JneoOgAAAAAAAAG7u5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAACErPMfDsLGpN_IZ4VxjXAxHwAAAAAAAAA5h-742067SuaCDHLAO41TEQAAAAAAAAAFQLk-iuB8TQgFzsPDaJQkPwAAAAAAAAAEOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATinLOk0HF57VFPnnmdfF_VwAAAAAAAAAKMEhiVOl8P_UEDmr9rO_BjwAAAAAAAAANL5WXZxht1BkMcaHlA7BeFgAAAAAAAABo0gz1mhmhTxHCVZG94cP1QgAAAAAAAAAF-7DooF_BqEazp1UGVZs9GwAAAAAAAAAFANUDzCguopTSw91qnI0ylAAAAAAAAAAEnJkPGfb2Tj4bh-Cfxtx3_AAAAAAAAAAI2x9Jgge3yFGPJiCTMDFHSwAAAAAAAAAFiPXr6f3Mf7KR5iK4gq24eAAAAAAAAACsgyVw_U5FOQ18KFg79gJcQQAAAAAAAAAim2bU0P2xZXc_YHF7mglt9gAAAAAAAAAxvTCeC5emrj-AxsrlIylNGwAAAAAAAAAL20wTwcQoP3KLWSoSTerwRwAAAAAAAABmWRqq4MtyLWZeVoi9EXj4zAAAAAAAAAAJUNGw3CMbzLd076AqAd0BMQAAAAAAAABJUPaaTbIsDz4Tx1YpiwEZMQAAAAAAAAALA5mZoCh9Fo4QCzvJIQSExgAAAAAAAAAA", "types": "CANKBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HCpiBj8BD8aEJWFEDHXgqA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABFj51z5k14PsCcDvFyUC1kmlV3QAAAAABFlLSz5k14PsCcDvFyUC1kmlV3QAAAAABFjQPz5k14PsCcDvFyUC1kmlV3QAAAAABFjcdz5k14PsCcDvFyUC1kmlV3QAAAAABFZP7", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6IN4ndcB5qmSJYNzvpVbgg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAACqGMNSe-6LTlpuiQTu86RdbwAAAAAAAAA1wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATmQVHcTFXg4JaHxKFUu2SNAAAAAAAAAAK0qdPtfCOXWtTMQkqPpfTpAAAAAAAAAAD4pD3shcvlMj_8ybo7T2TVAAAAAAAAAA0eywVrPneVfi3Wiw2E45CkwAAAAAAAAACz0hdy73gJuxMxMUBOMHWTQAAAAAAAAAEkMerhGqwou_LAaQDIMY-9wAAAAAAAAAEEPkRJFILsKGYvAhwh_S9kQAAAAAAAAAMxLOLXg5EKZgSVcI5Dw46ugAAAAAAAAC40LGXmFocz46kL18OXWxszwAAAAAAAAA1cuyNWlZFQkabnqdPXO_rXQAAAAAAAABNSlb8MNVKIFfE9HJqtN3BhwAAAAAAAAAATRhdHOKO7GmLMAaUL3Xw6QAAAAAAACyu9BM25vr762IbGPHbtur65gAAAAAAAJco9BM25vr762IbGPHbtur65gAAAAAAAKUA", "types": "CAMoBQMD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3vt8oTjSVhChgy2VdDHcdQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHmMXT4fd_WKeR1cE-hlLelCQAAAAAAChHRdXT4fd_WKeR1cE-hlLelCQAAAAAAChG6kXT4fd_WKeR1cE-hlLelCQAAAAAAChFbZXT4fd_WKeR1cE-hlLelCQAAAAAAChFLIXT4fd_WKeR1cE-hlLelCQAAAAAACgSzoXT4fd_WKeR1cE-hlLelCQAAAAAACg6i1XT4fd_WKeR1cE-hlLelCQAAAAAACh1Di6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CQMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qy63CZwa2X4_cMyWGg3_fg"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApfzLzWZQgzth4yv0Aw0PoLgAAAAAAAAAl1pEcO9CYkxI799CldX3uowAAAAAAAAARsCdW6ghslIPajpgsdfjVWAAAAAAAAAAS3HYeSFaP4bm-Z2NSJub6sAAAAAAAAAAY4io8TQpKnhHcoJs_H_nFpQAAAAAAAAAcWUsgmXBmEYsZWCQlmPqU4wAAAAAAAAALRuTViGJ9Pf477gXsTgiYyQAAAAAAAAAAqFV6xhVekP5-uToPI32ragAAAAAA7PGLqFV6xhVekP5-uToPI32ragAAAAAAxoGftQgAmBJBgPLrkikSPRsmtgAAAAAAAL3h6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCK06tVKI4mSYDEJ-ABAIpYXcgAAAAAAp15j", "types": "CAMKBQMDBgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "H2vgTPpm8BMcHhsujCAFSA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87OSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa8y2SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAacOa", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GAokC6Zv-UfUvWotAYqkSg"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPcQdhEWDAdj5z0-tf6N74UwAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADR4jvBbXAN_lim48YacoDW_QAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_hqXNzEhstHfsC9RzpUliJAAAAAAAAAAIiXITkHSsiGOApNcDsNvSqAAAAAAAAAFjOzfMwGMAUWlo9CHMDsxtzAAAAAAAAABmWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAE1OafCgr0hD4E9T0qIcmaEvAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAI5vwGHVj1iOwLhC3GJJEE-AAAAAAAAAACq9CgitPZ4bL8Lh2qUd-ksgAAAAAAAAAnXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMouxUnI8gftdBjNsXrXpTMQAAAAAAAAADOMiVtBlQQcibD2YBJFlM2AAAAAAAAACD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAC3Gzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAABtRaKCDne9fKuTHuPgmdhjQAAAAAAAAABVg8LgIqDa3ypsQ0qV00ZvAAAAAAAAAABLH5Rq2KMtk8z3fPDJ8fY-QAAAAAAAAABgfC602LFbKzsHJ9-hYzAWgAAAAAAAAA8kaHiufo-HpizcJRF4MxUowAAAAAAAAAD", "types": "CAMzBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Mnd31Vnx6i_r5WV2hM5bDg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCYyXT4fd_WKeR1cE-hlLelCQAAAAAAEOC56XT4fd_WKeR1cE-hlLelCQAAAAAACwsaKXT4fd_WKeR1cE-hlLelCQAAAAAACjBzzXT4fd_WKeR1cE-hlLelCQAAAAAACjCG3XT4fd_WKeR1cE-hlLelCQAAAAAACiMUuXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "32T4OaSlAZyX3gvcGH9I7w"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5UcEvvhuguaGYCmGWrnWRz1QAAAAAD-SPQcEvvhuguaGYCmGWrnWRz1QAAAAAD-JctcEvvhuguaGYCmGWrnWRz1QAAAAACEOCTcEvvhuguaGYCmGWrnWRz1QAAAAACEOMYcEvvhuguaGYCmGWrnWRz1QAAAAACENOEcEvvhuguaGYCmGWrnWRz1QAAAAACEM5TcEvvhuguaGYCmGWrnWRz1QAAAAACEMRMcEvvhuguaGYCmGWrnWRz1QAAAAACEXUEcEvvhuguaGYCmGWrnWRz1QAAAAACEXtkcEvvhuguaGYCmGWrnWRz1QAAAAACEX3bcEvvhuguaGYCmGWrnWRz1QAAAAACEm00cEvvhuguaGYCmGWrnWRz1QAAAAACFxcX", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EQ-MP_l-CkrAJlJbFI8e3A"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAqeSs1xpPdaQi6BA9wz10SrwAAAAAAAAA5TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABbXyIB1JXxkoOQjMae8CICgwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADWifN9r0wurhPb3dG8PudTpAAAAAAAAAASywRpFKHnyqIdEibpvZWLtAAAAAAAAAAC_jcNhXlm_4ESbJ83f0qd9AAAAAAAAABnBvLbND_0DrAH3Z_KTjqNwwAAAAAAAAAIfZfGpgZFJokP-jaeydrs0QAAAAAAAAAJjg3LdO4DNz9FsefjUG1F1gAAAAAAAAEgf6OHtxWEEYSKC5jCOpZRYwAAAAAAAADZ", "types": "CANcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fSsmeetWqxUvZQmnispuzA"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAbg4g3dadKJq-rh-Mlmi-1U5gAAAAAAAAEHEJBGGTpPuZfUGx9HiRMpuwAAAAAAAAABi2b0pXSJCuV5_a0WzWWWswAAAAAAAAAKsaQMoybuzFVjjc--sDFqLgAAAAAAAAACoZPyfO4G7A3T6bm4SwvwsgAAAAAAAAAp8YL_vyRbXOmeWsqsogIGXgAAAAAAAAAEYp5XhnumIA1hOFfY9hkiEQAAAAAAAAAL6dizidRtpqcGmpShAjzttQAAAAAAAAAVXzWVAFfWPkx_-5DzBgosgQAAAAAAAABhtzBcwDe6SUq4Jkyew2O5egAAAAAAAAC4GBjc5BtcCI9y4Tj_UjfChgAAAAAAAAAFHVaOZ98k9w6g8cizBWxmJQAAAAAAAAC_tQF1k-uigHcvxSYChU6zhgAAAAAAAAARLSP4v8PTGJ1rxAKSIAoeCwAAAAAAAASKnqpcbOZtBdInQqe7yr3UKgAAAAAAAAAFAAAAAAAAV4sAAAAAAAAAHezOBKFjpr8q", "types": "CAMXBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "and5_iwPhBY0DhBmGzzTUw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q5EcEvvhuguaGYCmGWrnWRz1QAAAAAD-TDVcEvvhuguaGYCmGWrnWRz1QAAAAACNFB0cEvvhuguaGYCmGWrnWRz1QAAAAACNG02cEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEV9_", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Qf8e2CedM9huXl7Xm6xyyQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxnLcEvvhuguaGYCmGWrnWRz1QAAAAACETeKcEvvhuguaGYCmGWrnWRz1QAAAAACEMu-cEvvhuguaGYCmGWrnWRz1QAAAAACEWFw", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-nrrZMuYFG3kBv7-N6Cr3A"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAP4nyMCPt5M-rbb158Tnrz3sgAAAAAAAAAfC8Ood-fN0I2wBL5ZOhOj2QAAAAAAAAADorlPZCc2xkGLIiJeP3togwAAAAAAAABuB194pGdcDESvb9ZUksXmvAAAAAAAAAAOxitMwS4ViC61BCy_8U7u2AAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAChAAnABuJtrWflPvotxCoPjQAAAAAAAAFDgM-zvldT2mxZOhlxJvpRXwAAAAAAAAAXc0OkgT3_p45M6FsCvH3WnQAAAAAAAAAVBrUFbWJQXA38LKOgrDwJigAAAAAAAADkoOz1jSRZNClfuKPM_yWNFgAAAAAAAAAG3b73aK2YxmWJY2Of38z3nwAAAAAAAAAGPm8yvojd4enECfI_5pXoCAAAAAAAAAAKyrynjr7wkKxyqWOPiuvTRwAAAAAAAAAc4BHyios_sf5mi1p4OqQ41gAAAAAAAAAMb0EZjrjz491rqJx3vSRDfAAAAAAAAAAM7ZSNVpSilzBGhH0gQOfN-gAAAAAAAAABIlEPoKEe0ASUdOdY0aYQ-AAAAAAAAAAA", "types": "CAMwBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "24W9wid4frXP9gbNlVQM1Q"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQw7WOWZs79Wz210098loDzAAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARrSUSoohdnG6MdsfC9pID0QAAAAAAAAAGpY2MvdN80J-OPBSDYZs_8gAAAAAAAABSneOkLg7Birx-EWGBuoP5rgAAAAAAAAAaDjB9rnpR9s2OI-jlVfuXnAAAAAAAAADmNrikprALerrSkH1iKFm6zQAAAAAAAAAs_ui1AAIySrYc7ZeYb73nFQAAAAAAAAAMDbSG9xbs7jnAEiHiVrKb1AAAAAAAAACGHSSZPv-Jiv2fPLN9vFx42gAAAAAAAAELQKRyqWZIJ5_z0G07UwBzeAAAAAAAAABS3CFCfUF6w3KA_kWeQMHRjQAAAAAAAAAE3Lb_I9wEun0tAYBuTvskTQAAAAAAAAAxJDeoMDAF4zRp8m9fg1ttGQAAAAAAAACBArHoFYyXVsZt6HAc7EjVzgAAAAAAAAA3u1A1mq4_NM3j2_15WwdIbwAAAAAAAACHJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAABnjBeiHwwOyRIapBbs5J2OjgAAAAAAAABXJd5vYukqPDxekGbnpnM_MQAAAAAAAAAUnPCAxeiqMcZau3eqPVPDPQAAAAAAAACjGw9H1l67yAnzlh8ZHG_VaQAAAAAAAAA47c7rgpFHY6rxkjCoiUY2PgAAAAAAAACWu1A1mq4_NM3j2_15WwdIbwAAAAAAAACHWRFfIxsq2Q79ALvapo1dCgAAAAAAAAAkuchUv6RRAwtUDrZKhO2h8QAAAAAAAABGVYJJ7SiU83HRcQ3FLDQMQgAAAAAAAAAprJUdSzEY4nBcXSavXvuL4QAAAAAAAABlY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFPyr97kasv6HR5lCuwdxIZgAAAAAAAAAURWZ9G1N69fMZnc8QMvYsrQAAAAAAAAA3-zLAkIyn3iga-7D1WcxqlwAAAAAAAAAF0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFvuphyS_BZoVnngMBUX1lRwAAAAAAAAAQ88-Z439dOdp5GpDKUJubowAAAAAAAAA_0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFk2QfmGpbwZfMFpur9DTalwAAAAAAAAAoREOZDMGevKohDmxWFx6eeAAAAAAAAACajBeiHwwOyRIapBbs5J2OjgAAAAAAAAB4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF0oXMrtJgPp9xNBfTmr-cvwAAAAAAAAAcxMi3lfkibPU0NAhJ8DhGPgAAAAAAAABR0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFYN0teMNDLgmhoUpmrqni9QAAAAAAAAAQclGseV0LGavUI1_g3b_OoAAAAAAAAAAwjBeiHwwOyRIapBbs5J2OjgAAAAAAAAB40LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFmj7OrL6QrJ8gvIjThzQydwAAAAAAAAAQs7vZritmiKufeJDzCX_JRAAAAAAAAAARLHQIqPZNDAtBb5Urr3NFHgAAAAAAAAAu-Q25YN3mx81c5h9FyskSVQAAAAAAAAA-BZ6M98E7_jhQ9w9aCijThQAAAAAAAABjK4q5bjj7FsLI8bLo_hB_IAAAAAAAAAAY3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFRbzqTTxiJ8XotiOA2Wj5YwAAAAAAAAAYXmcQ4_6bleDFvrRZ47Cq9wAAAAAAAAA73G7WvpXqPGO04rbAV9CJtQAAAAAAAAAl8ZRk8SyYMUcoYIl9aB0UjwAAAAAAAAAp0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFEfRqa-7Lw23Pq9cBac4oVgAAAAAAAAAMM_MfJrZLrX3P0R0dWrP49AAAAAAAAAAL0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAF-7AzPTKQkaPts8LuNXMNDQAAAAAAAAAYDkUb3XtVJF4DvOzLdzKoEQAAAAAAAAAi25mp98L6MrKhqE8ccc5QLgAAAAAAAACzwCpBU_hbPURNgU-TZJTtNAAAAAAAAAAM0-FMNmBtJhXiOOVhpPfdUAAAAAAAAAAKFJIqUFyYQ3Kah4wvUZEsEwAAAAAAAAAN1fE-A15-sG5pm2Nv6tb9vgAAAAAAAAANJKjf0pZHg3dzwDeAqfO16AAAAAAAAAAEsyuAMg3RShupVDY63eHfbQAAAAAAAAAHMrVvriJqF-HOpa8js-mFagAAAAAAAAA3bC4xUO3cZ_wW8IEDAJ-BNgAAAAAAAABGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAm4yG9IdLfPOQJQp1BxdOq7wAAAAAAAACfEgnEAYVJO6evUZwnNI7NMgAAAAAAAAB05zxpGeZtVFjxV00AgHRxwAAAAAAAAAA6JDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFYhLUfql-5LQM_JtfSo3-RwAAAAAAAAAgUyl96nbKrz6UOSXSc3iffwAAAAAAAABDmWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAB2GBJ1zKS_b9jP7AxB92tjCQAAAAAAAAAo0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFKCxCvDIXtl0ClBmM3hNiLgAAAAAAAAAcFDp23rE1CceEicB2tyC3EgAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_QZucZeLQwMr7zKD51abCrwAAAAAAAAAMS_GmAS-sCtPOI6egY6LXiwAAAAAAAAAPAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJnWkIGdO50axZ_Bk4M_K1cAAAAAAAAAAkr9OA6z6ywxk33MG1uly6aAAAAAAAAAAZFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASFS55TSwq0w7KNb6oqdqsJwAAAAAAAABDsTkSDdDFzO-cWp9e_wq31gAAAAAAAAAHi0NgaQFLfmbbRTPodX8izQAAAAAAAAAkAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJQNXy4XeFFzKACGQInZNhgwAAAAAAAAAcn1Y254wxpQ3hq_nYz9gRWgAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRW7C8N1q94TuMskdRCHbYwAAAAAAAAAFCMOLX12QynGJCu7CxyKH2AAAAAAAAAAg_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAJQWMUCGTmuZKLmyhq5UAxugAAAAAAAAAJ2NbC_OVFN-ISjk_Zldz8JAAAAAAAAAEiXOANMxdhSEwzaUIzOG_mBQAAAAAAAAANz8yDYNMJULt1ApZ8kqZamAAAAAAAAAAGMMAujfe9xzktoHyDqw_cGgAAAAAAAAAGKGVSBMVyriI5T93UZw1WLgAAAAAAAAAE_qkVJm0NxTF9ak3kQe9veQAAAAAAAABazzNCVUgKt0jUoHv-iw_d3gAAAAAAAAAODfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIOgrnocamUAo62UJ-c4BU1gAAAAAAAAABcVP-3jHAx-YcnahqMKs8awAAAAAAAAAWztOqW-PzPXXgelwqIpykOgAAAAAAAAAIDfl7_VkgAlUBnXT98IPo0AAAAAAAAAAIMgnzgTUwSrjft9SA3YZTtAAAAAAAAAA0pTQwlw111ksRO8rVWFQy5wAAAAAAAAAuVKeIi2MKWzeJ-DxWf1HkPQAAAAAAAAChvf7QtfK9pdGvwA-FZkTf9QAAAAAAAAAE_qkVJm0NxTF9ak3kQe9veQAAAAAAAABl_o16MMgGIHtHHW6cqc3kcwAAAAAAAAAKdz3i4bkkYsjT-e-OYyoK1AAAAAAAAAAKN8EaJBp59RHZ5cTYR_Dm5gAAAAAAAAAGUQaLDOWe0MNTzT0iMyAMZAAAAAAAAAAA", "types": "CAPTBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9j8nawarR-p9di_5gnPsKQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlPqcEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgMm", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ruy3OOd-IyG1ZkwpGQGBtA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFJZr7vBpPHC4DKGbn7mmsGQAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4RDUlHuKsTp7QEeT-4CTKNAAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATq9mzJi_3huRfaH8KQrmXgAAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3UM2HoocJmuZ1bbJvF4kRJQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJsHXzwwWtrM_QNYYCsrA1LgAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABDhNdw_t14XCu9KX4KEk8MgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAABcKIQUb_XVozsgp2JNepBooAAAAAAAAAAYvCgrHQgh4sLRBYpPt01ZggAAAAAAAACdiM8LSJ_0DrAH3j2_fhBWQwAAAAAAAAAIKYUKYe5FJokP-mDuLYX4tQAAAAAAAAAJi2OZ9-P_pjOFSV36486xoQAAAAAAAAEn", "types": "CAOQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "O9ef8dRV4l_MugfvQ0rYYA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNkXT4fd_WKeR1cE-hlLelCQAAAAAAC-ubLXT4fd_WKeR1cE-hlLelCQAAAAAAC-vGTXT4fd_WKeR1cE-hlLelCQAAAAAAC-mQSXT4fd_WKeR1cE-hlLelCQAAAAAAC-mbdXT4fd_WKeR1cE-hlLelCQAAAAAAC-nUyXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LX6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuOM6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtkQ", "types": "FgMEBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Ji4fn9UFUEQ7XfPSlCiJjg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAACwH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAA", "types": "CAMWBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Xkw543uTXeeuNcRX3BWzOA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAacdM", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5Xd2WZFqlgKVx01Ohrr1dQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAV2c9TATIrCMgoDoZOxrWO6gAAAAAAAAAEudDAwwA9xVYrw2iCThm3zwAAAAAAAAAUmN5n7gVldcljtJtvz9OvlQAAAAAAAACCF0qxPYeb0myVD7w47s3EgAAAAAAAAAAMh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJuxWu7bOCGuvy3Ir42torwwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAANjiN7sTuUwZ-RI01Vac0XrgAAAAAAAAAGqVx1giFNnrhDKWEgl9fFUgAAAAAAAAALlMAmh2IiCbQ0SM1PF0vOzQAAAAAAAAAfGoyWYLMjSVkhprMVlMHfKQAAAAAAAAF3cTku3JEuIQYlUuKgo_W7qgAAAAAAAAACttnw8j0HRfVM17mHQNg8LAAAAAAAAAAak0ECrHyaBQYN9EA2YbnUsgAAAAAAAAB0qRvG2N9iYeFyl-3xULRJEgAAAAAAAAAe1xeqGUZm5RNvukFb2REJKQAAAAAAAAAIFtjh-A3lytsNmmUroc108AAAAAAAAAACuimFkk5UuxbH1IL630LmngAAAAAAAAAbVPtMofZCgqrw-l9pGX7aHgAAAAAAAAADRSgrZm24iCMR6dfllqWutAAAAAAAAAAaK_N78LhUkthI1fnHsP1_6gAAAAAAAAC1K_N78LhUkthI1fnHsP1_6gAAAAAAAAC4", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "41RJH9BALozcwHa5Gm2tSA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZACZ3CKaS4aU08RhYA19y5ITQAAAAABtySSZ3CKaS4aU08RhYA19y5ITQAAAAABtyFRZ3CKaS4aU08RhYA19y5ITQAAAAABtxSUZ3CKaS4aU08RhYA19y5ITQAAAAABtwNjZ3CKaS4aU08RhYA19y5ITQAAAAABtFuiZ3CKaS4aU08RhYA19y5ITQAAAAABtntlZ3CKaS4aU08RhYA19y5ITQAAAAABudBz", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9IwRLO6YrlzStGJvTS80NQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--RVXT4fd_WKeR1cE-hlLelCQAAAAAAC-7XmXT4fd_WKeR1cE-hlLelCQAAAAAAC-z7kXT4fd_WKeR1cE-hlLelCQAAAAAAC-1UKXT4fd_WKeR1cE-hlLelCQAAAAAAC-1BHXT4fd_WKeR1cE-hlLelCQAAAAAAC-1WEXT4fd_WKeR1cE-hlLelCQAAAAAACkR-sXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgcnz", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rnLojn4fqQT9heBUwPp6cQ"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHiCEgtQ4kMk_MBWrPUAFqVnYywAAAAADHiVygtQ4kMk_MBWrPUAFqVnYywAAAAADHdlvgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4WlgtQ4kMk_MBWrPUAFqVnYywAAAAACG2NUgtQ4kMk_MBWrPUAFqVnYywAAAAACG2jCgtQ4kMk_MBWrPUAFqVnYywAAAAACG2ppgtQ4kMk_MBWrPUAFqVnYywAAAAACG3SIgtQ4kMk_MBWrPUAFqVnYywAAAAACG2CMgtQ4kMk_MBWrPUAFqVnYywAAAAACGyc9gtQ4kMk_MBWrPUAFqVnYywAAAAACGvwmgtQ4kMk_MBWrPUAFqVnYywAAAAACGx3EgtQ4kMk_MBWrPUAFqVnYywAAAAACGvwmgtQ4kMk_MBWrPUAFqVnYywAAAAACG0icgtQ4kMk_MBWrPUAFqVnYywAAAAACGqesgtQ4kMk_MBWrPUAFqVnYywAAAAACLnb4gtQ4kMk_MBWrPUAFqVnYywAAAAACLnekgtQ4kMk_MBWrPUAFqVnYywAAAAACLni3gtQ4kMk_MBWrPUAFqVnYywAAAAADHisOgtQ4kMk_MBWrPUAFqVnYywAAAAABv8CI", "types": "GwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kuJBVypeLq1V0jSA-wxI4Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB7rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa6y4SNDzWiYDmLZi_Z1ZVETLoAAAAAAAvCgLogCgWMgT5mMAMhpNA0IMiQAAAAAAD02G6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJje6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIkMo9I8XHop3y7uLb8wdADAN______AjWVh", "types": "DAMGBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "G9i4bcor3bCmUHnFwLkINw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDpkXT4fd_WKeR1cE-hlLelCQAAAAAACxEFGXT4fd_WKeR1cE-hlLelCQAAAAAACxBgtXT4fd_WKeR1cE-hlLelCQAAAAAAClZ0eXT4fd_WKeR1cE-hlLelCQAAAAAACla1eXT4fd_WKeR1cE-hlLelCQAAAAAACiGjJXT4fd_WKeR1cE-hlLelCQAAAAAAChWnJXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdTE", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "o5mBEpaSnzHuLLvoimyigA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAACqGMNSe-6LTlpuiQTu86RdbwAAAAAAAAA1wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATsNW5-Vl52DSdbgwAu7JkyQAAAAAAAAAKMHSpk2A96gaG9v5WnUwtSQAAAAAAAAAa_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABz4mpI5kmO39mMZUBEmo57QAAAAAAAAATp3TMvdaUbW_u3mETl1j4jwAAAAAAAAAC3iAnOsiaJz5FxI1Ct-Vd4QAAAAAAAAAI", "types": "CAMjBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "zb66k8tNN3fufwrfwPNRpg"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qR5ajxJeWxN1RRKqFpaiD0gAAAAAAAAAwXgR81Oj0TR8eR1AC7VO-fgAAAAAAAAB_bNJM4zIfFJjHoF7h4RxlFQAAAAAAAAAChJAc9hTnx9K2cxz2AY0x4gAAAAAAAAAdHNuVj5I-SSkA73KWVF2D8AAAAAAAAAA-uKtxR47OvzSUNd1AWsYPGgAAAAAAAAGsucg8lCUKHDJi43v2r9fcDAAAAAAAAADZgiwOUz_dwg5QpZ6rn_mtEAAAAAAAAAAabC_fEnt9OMT3icSYRSqeAAAAAAAAAAAGK61z3xaGK-rHqmHBTOYNcwAAAAAAAAARSjz2MvPusgDd7v_6YUXcPAAAAAAAAAC1J4eQqgwFH8hGziiVTbtiYwAAAAAAAACOMbaOnaCMmj3Z2Dka8DRidwAAAAAAAAE7vMJZLefDDDN7jSsJGIx5fAAAAAAAAAAxpz26RZIIszjYMjtzkRg4ogAAAAAAAAATu2WVw07zPKE8tjDW7uq3_AAAAAAAAAAFOazs1a6HL_fA3OaTTAYczgAAAAAAAABt1UTcnvrGL6DJ9fHh2aa2fAAAAAAAAAAlzjgMi0OYibUoh7tbcHBcrQAAAAAAAAAbZYD_8d6PhAJoBCS08Vyb2QAAAAAAAAAdd6_wbVVkhoVoWtFoERzLagAAAAAAAAC1cYJ9nWNm3-qt-5qL0cCZuAAAAAAAAAANhWe0txF4VTCnpPCin56NIAAAAAAAAAAQEud0aohygkGfExKi-EplqgAAAAAAAAAWo0OVH2LBiDEc9yJITJL7oAAAAAAAAABusGMl0uQdZmivfjDBknufQQAAAAAAAAAFhYwcxK1EdaxISUobp_tMjwAAAAAAAAAF8cgcru2hcpNC8YThxIr0JwAAAAAAAAA0uhX1qfoGgATHLd0SFlL86gAAAAAAAAAA", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FYsp1kqfqOBHCXrvmwLiMw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYW3F3FsEq18BbYr-AW7KVZQAAAAAAAAAM2UxNT-C0z0jLu_9A1XqURAAAAAAAAABpRfwCDAkybtrSMQru6GZd7AAAAAAAAADHo5a6BUyjeBu3L-QcPVTcQQAAAAAAAADJwtq1rh0kPcnhm3dehZEyugAAAAAAAAAzJDeoMDAF4zRp8m9fg1ttGQAAAAAAAABn3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFa_Wg5Uotb6-IbWf-Z46JpwAAAAAAAAAYdEmpJfxat4d0i3TmqkAXzwAAAAAAAAA6mWj5c0ESBFbOdqOPS0pc7wAAAAAAAADIiZ81fGBmbgk1lRiTm25tUwAAAAAAAAAhDBSrey1hof91_f6sdRmT0AAAAAAAAAAHoyOPCAIGwaEIvRtPGG_P1AAAAAAAAAERvSOSLIRL9Al07eylV0ZRxwAAAAAAAAAh0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFdvT_WttTqRzxVS1mJ109CAAAAAAAAAAQXhVTYnEfEwYdMqsc_S5SQwAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFJ919VuiOC4MpabrN9cL2NwAAAAAAAAAUj9nrUn1ozBwNCW0cIRIfuAAAAAAAAAARFH4SH_uTiEszu4Eono2UAQAAAAAAAABsrOOdiLJX-1B7cLCvfMwHQQAAAAAAAAEDFedFnYQW8bHf16nVrC3eNgAAAAAAAAGoWdP0jKvbSW-F3IXqFZzXpQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAg0LJX42Jj4CiJKiisMPmkcgAAAAAAAAAFxOwAtmzQuXAkclbU5p26WwAAAAAAAAAYrEnON3ZlkGqwhN9n9GMtyQAAAAAAAABGkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASx72T8kxYZuozQaY_lcc1WQAAAAAAAAAFkBh4AYyyRHdBMUkG_GKNgQAAAAAAAAA_zD97zbMWWlXNK87iC8v0xgAAAAAAAAAkmqZxgkeFxfHgS32BvLbCOQAAAAAAAAAOUc3Hxu80nWajDYNI1RALIwAAAAAAAAGgbcjqSMuxBT-dvJSjCv8ndQAAAAAAAABAso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlHsCaQLZJVi-7tOt5z5xK6gAAAAAAAADdOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlmUdULebVXxeJAT1WZsiwwgAAAAAAAADWOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAl1ZJRiJ5WMUk0-MCCsrc5NQAAAAAAAADfOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlqv2lArN7QPfX_8vxJbcbpgAAAAAAAAFaOO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAlsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGyn5AwZYF8MGWqleL5q8fsgAAAAAAAAD6OO0_eHsUuWmfI8_EJEDpgAAAAAAAAAAFklX8tI6RbguXhwa8P7ml8gAAAAAAAAAybSpBoFudZ6M6VlWLyPk4WAAAAAAAAAAFPuFP7RNQb9YY5U8l_TZq4QAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABsXZpSIBEOU_muIAf05ydPAAAAAAAAAAT0uuDrUEvVDAWeF27cWyEbQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABwJdzifoogbCc6mi3NTv7PigAAAAAAAAANucM-Bj7qlZtPxh65nkVL9gAAAAAAAAASgalH3SQEgM8V50ZaRLSobQAAAAAAAADUFKHeDCqWZknFBzCzGkASlwAAAAAAAAAQjZIIbzomXYaxFEdAToFiSgAAAAAAAAAIy12uoeETtO1vfLZn6kOlKAAAAAAAAAAcn7DxyegwJYX-a6yw00GY5gAAAAAAAAChAS0eDWg20YjC_s884Pp-RQAAAAAAAAAJpaf4tjIT0ResVsAYyHXaNQAAAAAAAAAYYw6bxJhWZryqlInRYdFqbAAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9QQ2lAZv13mszaKUGCAlxZAAAAAAAAAAHcjsWxC_gI6Aw_G9RXpEN8gAAAAAAAAAIKg-p48Ob-pDaS5XUMw0BuQAAAAAAAAABUwuyNsi7On2JHv2gn3ZLtQAAAAAAAAAIZq3LezbKFeLCpaj2U6KLuwAAAAAAAAADSbAJldcfVqhtzBLuTqZe6AAAAAAAAAAiCySV1vJ_H_ZjvUdvL6c-NAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACu-VgZWZvvoe_9HhGDZJCzLgAAAAAAAAAO7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAFk3HyWSdTGgne1xIId1mIvAAAAAAAAAAzY8GNsuiR6IzsSj-GbWOIwwAAAAAAAAAFmVBN-6O2zeIv8GsCRrlSswAAAAAAAAAC7skvoqQ_JlmRN5w43B7kuQAAAAAAAAACl00Z5a3xKQTn8W8_ANiQ2gAAAAAAAAAFZa0P_0e34shcw6VJJ_B5XgAAAAAAAACWLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC33kqKIOk7SslvcfRGmqs1wAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAZSkKN3zNxr0HYuO2pqe5hQAAAAAAkQjo", "types": "CAOEBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DAQHjXtThJ1eaHLevfklmw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlwFcEvvhuguaGYCmGWrnWRz1QAAAAACEnPecEvvhuguaGYCmGWrnWRz1QAAAAACExMM", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kJPjpnk4438S9AxhBdL7Og"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAAL4nJBf6HbrPzbiZzxIGhYogAAAAAAAAAsEI2ZG0yDy6LJc1opjkWatgAAAAAAAAEH1a0DWjTV9Buoivve6Hs38AAAAAAAAAAW8F99NQhD3f5QxwEfDi25tAAAAAAAAAA2ZO2HUdwEHxgLdp8bq6mR0QAAAAAAAABxcQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKBbh2RgXd1jK3PTI5kPBIQwAAAAAAAAA3K24cXmv6hkYtqh0gDomB1AAAAAAAAAAJKaCBdtX4kQh6X2F6ft8urAAAAAAAAAAV4U-xAnLrdtDr0a69h0nqYgAAAAAAAACHrVJnJ5WgkAAuxcvebNsXPwAAAAAAAACuQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQJvuA_pbK2wImB5ZWDkJ1sAAAAAAAAACeySfZ4gjyjinG0Dsav5lnIQAAAAAAAAAYh-mcFcSefWaXpPLGLAmk8gAAAAAAAADYzXY2fMPD2q8JxxSeQ4an4AAAAAAAAADb1ajhlpq_ffaY9SZwO_yFvwAAAAAAAAAMbYR0b7-vTQ0RKJD6ns3ClQAAAAAAAAAG5WRkp3UGiY89oONYWWfHqAAAAAAAAAAtidAHvTfpCa_Lill3CvLIKwAAAAAAAAECw3qTM6Aby-qZXMm0XUnzgwAAAAAAAAB3_Mj0l5QoylIkj8uQiHBbSgAAAAAAAAACVY8isU5x9BO-Wo5ffXRMDwAAAAAAAAAgw_AjU4Xe1XDB3bYRcLPccAAAAAAAAAAOAmq1Q_OWnEFyfJsbIWLjHgAAAAAAAAAFWj5v705AK3wrQkpP9C_wfwAAAAAAAAAeDzZ0dEa7XDjtQVGFBWf08wAAAAAAAAAFSSGGC14VYxcFAL3lGtENzQAAAAAAAAAwPaUpsB-9YmjyzvUTmCWUJQAAAAAAAAABGvkVYsvx7fa-bH8PVl3QfQAAAAAAAABAxAOD9OPULw2i04-6Qp3yVgAAAAAAAABe3LmbKZtkZ8rrPi1UIPTPcQAAAAAAAAAa", "types": "CAM1BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "oF-wY_acT328qrZ3ugnkzg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAHOgepeYBdrKmAGikZZHzjywAAAAAAAAACWKgIYDUz_ddL2CfdVikPPgAAAAAAAAAFHOdHokvgjpBu5xzZyxjzAwAAAAAAAACGzgPOLagbbKE8s9-BYiE3XgAAAAAAAADH0XRh6h_ZEVDJ7HRd-FzeqwAAAAAAAABTNI5ssdzklBlpxY8lq_1U_AAAAAAAAAAKeZn3IOB-FE1r74FZypzHhAAAAAAAAAAGc7Bl3AoAEupOG7hWyg8xCAAAAAAAAABPDVSkUfLwOzQuwgYi6TvurAAAAAAAAAAdk_s_ITRPELxw2Zk2jzGG8wAAAAAAAAAIXxWCxpGmCS2l2h5qK0WBAQAAAAAAAACNO04YvPLOWUzgQB2ZG7ZshQAAAAAAAAAA", "types": "CAM9BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7-riZP-fh7uXaUsCqBO2ww"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAFyd0-tKbxN8EF2g5P7Jt87OAAAAAAAAAACmNST8o45bfhZN7s02QoOeAAAAAAAAAACNECbNy4YVdAOEMCpP2EgZgAAAAAAAAAH-b6upR2nC0pjtRf2Z5Ia8AAAAAAAAAArYphvFdC6Ku42TgGCAHzCrQAAAAAAAAAU91PGt5DRiEvcDWprSoWEvwAAAAAAAAAC5CnhWwVFqzjrPVkS7NFWEAAAAAAAAAAtSnaUGunAu44_z4c8VkZQlgAAAAAAAAAFCIuiiQ-JUySY2Z6jyT-aAgAAAAAAAAAJZVcJW-QBFuC0ZqcN2G8RXQAAAAAAAAAYmEOjRyvX6NLlEbefqnccIAAAAAAAAAAA", "types": "CANIBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9hCoRxPXk-6CzoYUlUSWOQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcrRXSMA-Aqbn5UX5bXuezYwAAAAAAAAAg3Qs3wqh29UjvUVx-N0KxAgAAAAAAAAABYZBmumN7B74DCts0HLEQGQAAAAAAAAAVTlw414lD5V7AUUaR2nBa8gAAAAAAAAAFLvtElIo88ojEB4JNcfwHbAAAAAAAAAACEYg23MDW9OugrMeHK86augAAAAAAAAFiXMkmePFkSh5xHJJ1aDCIhwAAAAAAAAEwVru4hpAw_7_usxGosAlYKQAAAAAAAAAPx0P1r7I-Fx8UT8KavfTMGgAAAAAAAABWdRMG3BjNfH2se-egabnU-QAAAAAAAABAEkcy7So9YVOh7Q9iMhhrxQAAAAAAAABM3SSuw7AKPJ9yFEVSwC_lbAAAAAAAAAAuXLN55eJ2HplxP0Fb2YBmOQAAAAAAAAAJ_6rkq2S7o8rMRQJ9AofzJAAAAAAAAACLjwkBY0s-EHDmaMTnMHI2lgAAAAAAAAAYLLIx3z8GAHtBLc7C_miK_wAAAAAAAAAEiw-GJsvRO-R4iQjWGDQb8gAAAAAAAAAUwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACvqKrM4v33j8Ui9JyIz2QXDgAAAAAAAAA4ZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABIZkLsycxKPf36jJRxnsYRXgAAAAAAAACpwD7qCDk3lqH0hpTFDQk1YQAAAAAAAABYEr2yE5HxkoOQjHTSQIF_kwAAAAAAAAAFm3tIqGWDOzCH_q4z0bYhiAAAAAAAAAAzPEbpT_8Xljn7u1j5oJzfHQAAAAAAAAEVI_i_3enTR60S4qDgQ3zxCQAAAAAAAAAA", "types": "CAMiBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "p0NFUe2QgjtWEWYDSLMm1Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw2HtXT4fd_WKeR1cE-hlLelCQAAAAAACw1EEXT4fd_WKeR1cE-hlLelCQAAAAAACkHGIXT4fd_WKeR1cE-hlLelCQAAAAAACkMuNXT4fd_WKeR1cE-hlLelCQAAAAAACkLwJXT4fd_WKeR1cE-hlLelCQAAAAAACkKC4XT4fd_WKeR1cE-hlLelCQAAAAAACjILGXT4fd_WKeR1cE-hlLelCQAAAAAACjISXXT4fd_WKeR1cE-hlLelCQAAAAAACjH58XT4fd_WKeR1cE-hlLelCQAAAAAACjGvE", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wWKX-ZC2lOv6w1ALdddfTA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAAvJgOxWRVy5Uza4S2l3aZwPQAAAAAAAAAHiSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAc", "types": "CAMuBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AREehA9nDZJasQeEH6svQw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAAD_eOXcEvvhuguaGYCmGWrnWRz1QAAAAAD_Vn9cEvvhuguaGYCmGWrnWRz1QAAAAAD-QykcEvvhuguaGYCmGWrnWRz1QAAAAAD-Q3dcEvvhuguaGYCmGWrnWRz1QAAAAAD-RC2cEvvhuguaGYCmGWrnWRz1QAAAAAD-JbPcEvvhuguaGYCmGWrnWRz1QAAAAAD-LFkcEvvhuguaGYCmGWrnWRz1QAAAAACOD-4cEvvhuguaGYCmGWrnWRz1QAAAAACOBYTcEvvhuguaGYCmGWrnWRz1QAAAAACN8OMcEvvhuguaGYCmGWrnWRz1QAAAAACN5vOcEvvhuguaGYCmGWrnWRz1QAAAAACN5QmcEvvhuguaGYCmGWrnWRz1QAAAAACNw6g", "types": "DgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NkZgcPyvanvZxrwD91jJQw"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEPD3cOudib0XQsq9y3nJeyAAAAAAAAAAQPHOUiNkmrb6lymlNuXSU6gAAAAAAAABCdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAClE1fYhCC-W9hkMRzkOdu22QAAAAAAAAAg52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAOpxFz17lb-voh9uZicvdXWAAAAAAAAAAdk99M4bkjfKmg3-yt9HFm8AAAAAAAAAD1s5CzqyR6_GmBEGxwpC8zNAAAAAAAAABK4EfOVjZ8UDEWtY1KnqslYAAAAAAAAAAhYNTunKybilcdruNbkYh4bAAAAAAAAAC2bxcuG5n0qJIaHX3wrksHOQAAAAAAAAAGTymAEDD545ov_oP4db3SYQAAAAAAAAAL", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7irlEx7CVauqLLMLkiu9aA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABtF0vZ3CKaS4aU08RhYA19y5ITQAAAAABtnvjZ3CKaS4aU08RhYA19y5ITQAAAAABudBy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "AwMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "p-Vxhlw_iBQLyGOr_bdBDA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAAtRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFUZRVT3lZFuhEnF3-BZs7cwAAAAAAAAAMJ1pfAEWmqWCNhh7R3GdmfAAAAAAAAAASFl55xnlLSMqnve6foRfHTAAAAAAAAAA43HqvwpVK0RI_JfUC7AjGxgAAAAAAAABo7unxWA5Hj3DUaWAMH4NXUgAAAAAAAAAK4kgJPxDp_y70g-_9SJBKrwAAAAAAAABwmVZC5ucQ9s0QMwQ6Cu6VqwAAAAAAAAAmOgqUwQnJ8dHk1caAvQvJAgAAAAAAAAAoEnrPf6p1agEWo7abpHSWVAAAAAAAAAAIu7Sw2JLgMcObdTC5wHdXjgAAAAAAAAAJhZyer2Nt_qqVYvWZIR494gAAAAAAAAA3IMZdWEyJZPNwgzA4EPZIdwAAAAAAAAAFRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFZ0VKCUlXPuQLZpRL-T8iGwAAAAAAAAAMXqo7-ger7Rh6Qo72br9qjwAAAAAAAABjPJlREaStQ9MDsMhq8CWS4AAAAAAAAAAY0gz1mhmhTxHCVZG94cP1QgAAAAAAAAAF-7DooF_BqEazp1UGVZs9GwAAAAAAAAAFANUDzCguopTSw91qnI0ylAAAAAAAAAAO-kwQ5tzIMTia7ESgS4_wzAAAAAAAAAAdf9rhWt1EzalXyXMX3OGNPgAAAAAAAAAyY9mQUdyp86jQhHqOid6GcwAAAAAAAABFbFNBCgHVi2ZK2yGNK4LXZgAAAAAAAACvoS9KAhghkFEGNblCDhC2FAAAAAAAAAAFUcK27RktHL-xk7HDBdRqeAAAAAAAAABP5vMyVxaxXbqzsaKVqZzo9wAAAAAAAAAA", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Dvz9mFWSe_1LoPFwkrAW1Q"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlZUcEvvhuguaGYCmGWrnWRz1QAAAAACEea2cEvvhuguaGYCmGWrnWRz1QAAAAACEf3-cEvvhuguaGYCmGWrnWRz1QAAAAACEgKr", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "g2Jekw_GmjkRbs2II8a1AQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAABVUGAPUw2d5-4XxhgrPyPBigAAAAAAAAAMxhOAoPbUvqtSdEcy7uoPXwAAAAAAAAAFeXimxJw4055xWDImg8DzoQAAAAAAAAAqhIPSIc3LxfgC93-3l1xbUgAAAAAAAABg2WuDX_7V5y0Pc0pDkF5WNQAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAAGv7pp6LgRqCGeGjs7cnnwItcAAAAAAAD9D_", "types": "CAMKBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jNdyoypr6XrrbEBsVS2_Xw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-uwVXT4fd_WKeR1cE-hlLelCQAAAAAAC-w3NXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJq", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0XhwDDngWLjSP8tIl3SEwA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAAAPX6JlWwBbDvZZ7rFp8ffgSAAAAAAAAAAFK24S1jUATvUFIEv3zAUZHgAAAAAAAAFQQTk6i4kGz-zDlc1CgyBszAAAAAAAAAAubFnDceRyUrwrxpx2LB-2swAAAAAAAABsy3V4Wh9j61CfcWNgvt1uPgAAAAAAAABzXcCMywL5s8Msv7wl9SHdqgAAAAAAAAAc8g3sLjFnKCF_JJchxYP5DAAAAAAAAAAN0pToqZPZHCBrMZWKCqLkCAAAAAAAAAAF5yau2rU7Gb3p5PTNfI3QYAAAAAAAAAAd5e20AsvoCctGya4WV0ZQuwAAAAAAAAAYN1xfNXt_cEW2sMA8rTIs2gAAAAAAAAA80Og38EZo1V7Xaj5UHUpXuQAAAAAAAABFHhNjFnMd70fZN07PFErnWAAAAAAAAAAKdAeX1d421DMJ2cC6FX3tvwAAAAAAAAAWW4fRUywM1R6k-YZN0urJjAAAAAAAAAAHNUmJ5QmloEgI0M4MXoldOgAAAAAAAAAHii3DfKc87aEj3ekkrQzbAwAAAAAAAAANq8oeUnom1kLdnKUL2vqzYwAAAAAAAAAGJl43jsYwl7W0BBNHUsQZ-gAAAAAAAAAC2FMCMM-1yzn1HAFTFW5NmAAAAAAAAAACx8ONEAKOA7gOqa-gLgUIFAAAAAAAAAAClOB_jfofKxCvxNOf2aL3qQAAAAAAAAAdWlXNhw3AYUWx-PnwHDU2vAAAAAAAAAAh4pvybjWiZ2z1nXODgO13BwAAAAAAAABiw9eswkC_-PMr64MCf3DiPgAAAAAAAAAt", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "A88fFaIU_zwiD_q-n14PHw"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbsKZ3CKaS4aU08RhYA19y5ITQAAAAADKa9VZ3CKaS4aU08RhYA19y5ITQAAAAADA-P6Z3CKaS4aU08RhYA19y5ITQAAAAADA-VjZ3CKaS4aU08RhYA19y5ITQAAAAACDdeI", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fzlp5KSh-SCscA1-K9srWQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnrwyujQb4ou3uOCGjw02PxQAAAAAAAAAI7Sf8jS1-pi9OKpGesnFGYAAAAAAAAAAFvTYHQHy_FTm7Mt2Tlbk15wAAAAAAAAAK0gz1mhmhTxHCVZG94cP1QgAAAAAAAAAF-7DooF_BqEazp1UGVZs9GwAAAAAAAAAFANUDzCguopTSw91qnI0ylAAAAAAAAAAOcFmpMO1uLzgwAgdcIO17FwAAAAAAAABrrCyWXUWayzNVPTKj9LTqggAAAAAAAAACV_KspK9nh8LJS_EE9pIxxwAAAAAAAAAgAmq1Q_OWnEFyfJsbIWLjHgAAAAAAAAAFUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAFkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF8nfosFX1MJIWgr2jXaIaYQAAAAAAAAAc9el7M_UR9xauXf1NAy606QAAAAAAAABq112Fwha7UwifvTTtdUMggAAAAAAAAAAUWDifHywfLuQd8Yh-DIvScgAAAAAAAAAUPBpfn0f1eKNcXZ1C2eJmZwAAAAAAAADrY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF_V8LkuZDYhsRC_uInyycHQAAAAAAAAAgMsMB9yoGg6PjkQwG5yyoCwAAAAAAAAAZT5hiiNMlc9RKe2ptBi1-rgAAAAAAAAEMPwh6hSQTQ9v1UQs62plj-AAAAAAAAAAFRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFBlwqo9fDZkc_G71NBmK4kwAAAAAAAAAMKx8_JifYLsyt8nlVLT1q4gAAAAAAAAAGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFhzWLY32HB40pGQwoJomtfAAAAAAAAAAQuMbV4kgTfjojzHhdWOM7pAAAAAAAAAAXRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF4as0IgurEXJei_r6XmrPIAAAAAAAAAAU7dZbzLINeewhS7u7jNnbxwAAAAAAAABBR43ZllDvnEdmnbtgRhdSeAAAAAAAAAB3RsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFrY7n4rCVF7rtGQSMR7sNcQAAAAAAAAAQ3xSivts4s-tBo1MMFQEENgAAAAAAAAAvfEf2U4TLcZ6jkTz3kXzr0AAAAAAAAAAkjNbJJD0szUDlnbhrWsIGkAAAAAAAAABE4ZG6-YGelmJ-HvYGGP11fAAAAAAAAABaPJlREaStQ9MDsMhq8CWS4AAAAAAAAAAY9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQmUBFmueS4MaOyw0OD29yQAAAAAAAAAUuj5fRTSdGJxlX0gfzctOogAAAAAAAAA_3G7WvpXqPGO04rbAV9CJtQAAAAAAAAAlHr7DaUVBf6Mvou5VCDAFbQAAAAAAAAApRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFZRv6R5-Wsj1i57MVMaKXtQAAAAAAAAAMM_MfJrZLrX3P0R0dWrP49AAAAAAAAAALRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF41q7-Ld-6XK0fcC0fV9B7QAAAAAAAAAU-TcRbQGxOxYw9x9ta5Q4zwAAAAAAAAAheufT8zCegZUSBK09BAzk9wAAAAAAAAAOlrNuGOqZ1W2gPcoSPK5FRwAAAAAAAACdDafhJmPeATcw-S0FkflB2wAAAAAAAAAMa4gTVv4Tk1ur056NgiSEtgAAAAAAAAAKFJIqUFyYQ3Kah4wvUZEsEwAAAAAAAAANCdiM_N4hdaPvSJwq3P6azwAAAAAAAAAEhQ2OXkHYZRXh3_WLXzxSBAAAAAAAAAAEqdWawJbVNdMBrG9mDAPkpwAAAAAAAAAYwzvWQyXT6P841Whzz8TSaAAAAAAAAABW1RgoUo5p2VlxYy1dgKLEgAAAAAAAAACAETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmpqwgV3KyRy1vwalpuADBEgAAAAAAAACRR_Kzqwdt5rknfdcUXtCgBwAAAAAAAABw5zxpGeZtVFjxV00AgHRxwAAAAAAAAAA65h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFFNGo1JfG2H2fZIcfqeCsfAAAAAAAAAAgftfEAOBekZboI1FEtGHG8gAAAAAAAABDhfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF_IhPXrChwahxbJ63NZZANQAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4rDcHLjUrpvKg-XXDfFGKmAAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJNoWLrp2Hx2HDcioYyHlIIwAAAAAAAAAkoIYS8oKywxk33PzxrExveAAAAAAAAAAZETEs_vJj_-q4WFpNiG_LRQAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASETEs_vJj_-q4WFpNiG_LRQAAAAAAAABDHqIT4swMwQ6J-7meyTeYpAAAAAAAAAAHCcxzbb-8gf25alsKrnG4nQAAAAAAAABMS8EUD4p5Uqc9upyNv2OqKwAAAAAAAAAM30O6VQjnGgkxLjQ6W-h4eQAAAAAAAAC3RsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF4qUpyq2gk_N4ezoFurwRPQAAAAAAAAAUhkuoT5vPX48TIHx5hSrXWgAAAAAAAAAXuQZ-VEFAF3fOxbxICP7PhwAAAAAAAAAizqFMHaoRs24Uq4ggPiEIVgAAAAAAAAAQ7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABM9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAakKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJrQKocOh2yWdZngQePl3VrgAAAAAAAAAYL2fogWAk2fT2X-7WKN7ESwAAAAAAAAAOO98xNHHL7v3hEuCXGqIsLgAAAAAAAABrkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJZc4-4la3f3ERFdOZuKRlgwAAAAAAAAAcydjdwpV2eVNg7RzFNvFt4AAAAAAAAAAXkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASVBGS8NQ-yUJNIwI_yV_ejQAAAAAAAAAFqrkrJ5xDfohQdxTvfrXHJAAAAAAAAAAJ-eEBnU2U2wlCBhns2-KJAgAAAAAAAAAF_wF9139OqoZQK8iwN7oJTAAAAAAAAAAGadI05FeXl-z73o2NJPxYawAAAAAAAAAGXQAhaCnyqkeCfjLm4h_8UQAAAAAAAAAEpH8Xx_BhKNPHo1081a8tVQAAAAAAAAAEMFLGuesq0wZWR_oHbHkvYwAAAAAAAAAJKSw8zuPmFtB2wtekS6g_agAAAAAAAAAEfLRCJC-BBQ5RUiJ1GyTDaAAAAAAAAAALHG2DlCAsxV5n0t2UOol6kQAAAAAAAAAoSDMpSFhIouPZUvVwPhkiwwAAAAAAAAABmJoi3SFo_n6E9osuGr5LCwAAAAAAAAAfm7bYZJVGKqBJCDFyvYRsbQAAAAAAAAADXV1Ou4HZia8HNGp4Rd93bAAAAAAAAAE-YYOUIKT8lxz6w6XGq0DgWAAAAAAAAAAG0sPzCpMt7CGYXseDPlYkhAAAAAAAAABs9MpGRFx2q8exnHXBo-9PrwAAAAAAAADeYpGsHkxceiVZ0xhRrwJS4QAAAAAAAAAMa30CL-eAQLPsoU0Rce3pPwAAAAAAAADVw8yI5-2KLJ_g0ab6sXgWfAAAAAAAAAGh-7Yc1j0nWYZ4ezqXtB5KlAAAAAAAAAECkyvUYCRKjzRk5yhkSe66CwAAAAAAAABe5EX4bVVsmau4bCWHl4lx7gAAAAAAAAAry6q2h-KABgNNoURajGS5ewAAAAAAAAAB", "types": "CAO3BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_X9dFQVvkPI4ha0P8p2JiQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF353Bbxw0b5wHlGJY1WEVWAAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4bWZWPptWisqbpRDA9X8cNgAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADv9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABDHfFlM3axnhO28EteQn-2WAAAAAAAAABJ5utt2dQ8HKrTepHdNpprxQAAAAAAAAFzUP7wzdQXo1Tc_iFi4DuZQQAAAAAAAAAE9ZOKtWsgasz8zygdckTZDQAAAAAAAAAEEVcCXOQnkebnZR5Z6XcBvAAAAAAAAAA0SLm5iQaRU0eNqFhBMIrYxgAAAAAAAAAXvOoArOQsiI-woapVIk9zYgAAAAAAAAA1NnsXqH-CVYMwVp_zbU78aQAAAAAAAAAIQunNj1oMDkHtmA3AacNPUAAAAAAAAAAFx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAOPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMzzqjB_amR59Lv13Nhle_NwbwAAAAAAENS56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFyQL", "types": "CANNBQIDBgQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hsZRqI3yAbmj0WUJqK3N6Q"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALbmqLjwnA7Rf-ovcT8xSD4AAAAAAAAAAsONnGxKE-Oac3NFLO-8Lg0AAAAAAAAAEHfB-E1mu6hJEFot7jB8X5ywAAAAAAAAAWn9pHjqEBxYX6b9EURk3zKQAAAAAAAAA23Ht5x9T6A9s9JtoiYrgOOgAAAAAAAABucQ6Qsfe6NvfD6UlZmix01AAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAcAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7tMFQonwMMVIME8GAL5Zm3QAAAAAAAABP6uM2A8w04xXsJuYJrLs3twAAAAAAAAA35ZjBe0X4e9mGLzzo94YRWAAAAAAAAAAJxGM1BGYapiiJfmZA3cUi3QAAAAAAAAAVeLzi3eD3ZbmXzPM7EQ3z1AAAAAAAAACHELq11kdAb5wONWvy2t3XBwAAAAAAAACuHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7H-li-VPX4V5GB-C8EGJQQwAAAAAAAABLHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAAvE-LPqDQzyXigNIYWBMlgtgAAAAAAAAAnHk3kLbfOPknxEv8_LIcXawAAAAAAAAAHIaxtrhqw7QYaF83kiQkybgAAAAAAAAAfzC1z37qWlgbIB1dFpt4zjAAAAAAAAAA7GiKdaO0NXWMcKAtg8WXWngAAAAAAAACOZVnSbEYj3sPbI5VKW4FSawAAAAAAAAAYHA3TD5377NJUVWpcrnF53AAAAAAAAADX7brVxbd8D0tgw87ijWYE7gAAAAAAAADbeuIw_I7HzcVMEcOaEL-XEgAAAAAAAAAMF3-Ih9R2IC33i53mcQo_kQAAAAAAAAAGdits_fp6Jn13y-sS-prOMgAAAAAAAAAt9D5umgMyZZQX73v4UAWBowAAAAAAAAELA7p5XA-9Y-Ab-JzOeHN3ggAAAAAAAABtlFmnG5E5GwmKFptmUf-qtgAAAAAAAAACV_KspK9nh8LJS_EE9pIxxwAAAAAAAAAS-PQUN_pyhlD9sImALYeWawAAAAAAAAAIu8snKZkB2oBs9KSPImw4twAAAAAAAAAGnpTdx_CQ1T4tQiYqxJjBqgAAAAAAAAABYy3Agye5NCtIdg4CP1bBiQAAAAAAAAAIF2N5JSZQ0bVks6BXRi_NggAAAAAAAAAZsBSF-zNTyH-m9C8wF8gFOAAAAAAAAABjXzo8AP-f-a1xKbRltbpi-gAAAAAAAADL6VYF5N-BuQJFpRAEJ6HL5gAAAAAAAAAIZGfWBfUy3bo1nIJX59J_MgAAAAAAAAAF5jKl2boRvdaLH-efD88QQwAAAAAAAAAXb5D4G32aP0YH2ukb-bXGLgAAAAAAAAADmJBNzHM3rEh3axlm3zexVgAAAAAAAAAA", "types": "CAM4BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EhcWlVVBHGJ89wrxw6v8dg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw9EXT4fd_WKeR1cE-hlLelCQAAAAAAChHwQXT4fd_WKeR1cE-hlLelCQAAAAAAChHp-XT4fd_WKeR1cE-hlLelCQAAAAAACgSwyXT4fd_WKeR1cE-hlLelCQAAAAAACg6i1XT4fd_WKeR1cE-hlLelCQAAAAAACh1Di6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEHF", "types": "BgMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UuDeBu8oU2omluou-0a1Ow"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABjSTqD_Ge_wRWKJ482Qk1_QAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAIxZkBv_-w_d4qYkT59inZ_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACCthb6QfWlAwgw9j3sWmtJAAAAAAAAAAEWB9GVskeRyK4_o3XD61XIAAAAAAAAAAMtE2ikEoIwXRBOXfJ9-5M8wAAAAAAAAADi8fCXa3mPVuoqg3-TWHbmQAAAAAAAAAqJzU9wwV_m3ow5eBsxMrEkwAAAAAAAAAqdxRWp_ajvwfVnp7V1wqDwQAAAAAAAABfL-qs_NfIroV4qP0e80fCMQAAAAAAAAHTaGr-u5KsJw8ithwCPuSW-gAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYgnJwzGqt8VBlxXZgx4dmowAAAAAAAAAjvcYBAX0wrEtcMYtYg1kNKgAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAsLcui3wqgG5J4MV3ON_Xv2gAAAAAAAAC2m8nMZ6NuIzZBkH4l1Z7acQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAek99M4bkjfKmg3-yt9HFm8AAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "K83bjAjxHCy932bC6uK3sg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAADgbs0cEvvhuguaGYCmGWrnWRz1QAAAAACIV3kcEvvhuguaGYCmGWrnWRz1QAAAAACFObNcEvvhuguaGYCmGWrnWRz1QAAAAACEMzg", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5jSF_4ZsjFVCSFvLBYrF7g"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABMaP-XSbJ_jD1SaDSikvAxwAAAAAAAAAM9lngTnmeSG1s7rdk_juSMAAAAAAAAAAGHrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACtBnjxOT6ecDtMNaRY7RgRQAAAAAAAAABnzd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX73IOkhtZyjrZNnxzxVPYTQAAAAAAAABEiwGeqNv30_OStpNiHW5afwAAAAAAAABD1XS2aFbrMvbrgkTeGP6LGgAAAAAAAAAJgpel-2y6MT8HpZSUXeX6xwAAAAAAAABH8KfvTX_45EkfeqjFTJPGMwAAAAAAAABHhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAACQhYJDXHe_tXWd6FUCpAvLJAAAAAAAAABERTvkaysuyXpxT9w4uvkQVwAAAAAAAAAOhMfFCW9t8HVIov0xp1yDjQAAAAAAAABop2sMGETgbECWKni3JXQKzgAAAAAAAAC2QkkDXMhATwTB2K8md9w1pwAAAAAAAAAZRTvkaysuyXpxT9w4uvkQVwAAAAAAAAAihoA0DA92BMfAA7apys6-iQAAAAAAAAAMngJW-mG0syMkjT4A0Lg1GwAAAAAAAABIfxozbW1f7eISy31L8tIIWgAAAAAAAAAA", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SzEyh5UKxIErIGMjrb6UXQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--YEXT4fd_WKeR1cE-hlLelCQAAAAAAC-7vEXT4fd_WKeR1cE-hlLelCQAAAAAAC-0SQXT4fd_WKeR1cE-hlLelCQAAAAAAC-1HEXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_hPXT4fd_WKeR1cE-hlLelCQAAAAAACi_YSXT4fd_WKeR1cE-hlLelCQAAAAAACiwUFXT4fd_WKeR1cE-hlLelCQAAAAAACivKMXT4fd_WKeR1cE-hlLelCQAAAAAAChsYyXT4fd_WKeR1cE-hlLelCQAAAAAACh1LY", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "BYfLgwssJN01WD8jqeu3Zw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWCZXT4fd_WKeR1cE-hlLelCQAAAAAACi5DEXT4fd_WKeR1cE-hlLelCQAAAAAACi5iPXT4fd_WKeR1cE-hlLelCQAAAAAACi09JXT4fd_WKeR1cE-hlLelCQAAAAAACiKcMXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "rmqpLjKhFVehwbUcabYxkQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf_a", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WJw6-5iVNJ-4mcsircvR6g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAazVvSNDzWiYDmLZi_Z1ZVETLoAAAAAAAayyfSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcOjMSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcT6QSNDzWiYDmLZi_Z1ZVETLoAAAAAAAb60KSNDzWiYDmLZi_Z1ZVETLoAAAAAAAb92KogCgWMgT5mMAMhpNA0IMiQAAAAAAFbmT", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "vfg07z_Uc57UwdNH4Rkz_A"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKD7zIyFZUzmF7jQNkOr5POgAAAAAAAAAEuRqVOAp48I1Ur34p5gxEsQAAAAAAAAAEiuO2s7QH0lwNSSHQ7UxLHgAAAAAAAAAPpPNm9AI1ZNvQH4mQWyTdNwAAAAAAAABwbOPRssmNFrmWAdneL5vM4wAAAAAAAAAMQeWQ8zEKs_UQG-L_4x7HuQAAAAAAAAAn12n4kLu1zHbL__mlN4aSKQAAAAAAAAAFg8LMnazDb6d6ompk9kprbwAAAAAAAAAYNm4yGO8KqhyI7yinlO-YEwAAAAAAAAAZPIPsH7nT68_aJBs_oY-bDAAAAAAAAAAISAcr2k56H-0uXVdYyC2m8AAAAAAAAAB2LyBybOIbjBveSXE802X-oQAAAAAAAAACdYhRx-e7CFQF89Cj2l7eOQAAAAAAAAAJnLzojctp-_D1HjePyflZ-wAAAAAAAAAA", "types": "CAMUBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "21VADknXj310Vq9ESNjcWw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAA1zKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAfnob3zMVK_yh-lnKj6J3qXwAAAAAAAAAetY5fHNfhF2VRLe_6BhL5dgAAAAAAAAAFwh6xTQPkmoOUUrUOOnnNsQAAAAAAAAAA", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3zYROBVu24JPj2x-xW0ysA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8VxXT4fd_WKeR1cE-hlLelCQAAAAAACxC9RXT4fd_WKeR1cE-hlLelCQAAAAAACi91aXT4fd_WKeR1cE-hlLelCQAAAAAACi8T9XT4fd_WKeR1cE-hlLelCQAAAAAACiwtEXT4fd_WKeR1cE-hlLelCQAAAAAACiKusXT4fd_WKeR1cE-hlLelCQAAAAAACiNH7", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "7LeOL85PVjOg5Bi-S-b9RA"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHrJigtQ4kMk_MBWrPUAFqVnYywAAAAADHpx9gtQ4kMk_MBWrPUAFqVnYywAAAAADKAEMgtQ4kMk_MBWrPUAFqVnYywAAAAACRqCugtQ4kMk_MBWrPUAFqVnYywAAAAACRqLngtQ4kMk_MBWrPUAFqVnYywAAAAACRoRJgtQ4kMk_MBWrPUAFqVnYywAAAAACRocBgtQ4kMk_MBWrPUAFqVnYywAAAAACRpNLgtQ4kMk_MBWrPUAFqVnYywAAAAACRoRJgtQ4kMk_MBWrPUAFqVnYywAAAAACRhdWgtQ4kMk_MBWrPUAFqVnYywAAAAACRhuOgtQ4kMk_MBWrPUAFqVnYywAAAAAB9EVEgtQ4kMk_MBWrPUAFqVnYywAAAAAB9FmMgtQ4kMk_MBWrPUAFqVnYywAAAAABqOF1", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Q4P-bQgCFNgZRLoUhZxNlg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-wAt", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qZsYEzt_8lrTbaZDB8kywA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAacIk", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "S5QxSgtn_YPXxJ3jCeAVHQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWUgHSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWTNcSNDzWiYDmLZi_Z1ZVETLoAAAAAAATKKvSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWJdYSNDzWiYDmLZi_Z1ZVETLoAAAAAAAWE7jSNDzWiYDmLZi_Z1ZVETLoAAAAAAATumWSNDzWiYDmLZi_Z1ZVETLoAAAAAAATr7h", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "eBcAbPDQFdqKTTFWbEKpQg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACujkfqsU9w34yk0ipcsxq5HgAAAAAAAAAO7z2t3kAEn-e5RwzatH0LKAAAAAAAAAAFk3HyWSdTGgne1xIId1mIvAAAAAAAAAAzByiJTXr_lGzkMclhjfq4OAAAAAAAAAAFmVBN-6O2zeIv8GsCRrlSswAAAAAAAAAC7skvoqQ_JlmRN5w43B7kuQAAAAAAAAACP_4qycvxHBZREHniLmgHbAAAAAAAAAAFZa0P_0e34shcw6VJJ_B5XgAAAAAAAACWLDzxKitLXg1NPN9Jo9msaAAAAAAAAACm5w4q2mErvPJM1j09ut3VHwAAAAAAAAAFrukD5963lGO3Ma9AI2LXWgAAAAAAAAAMvPUU5i5r5XThwPX6RJsZ7gAAAAAAAAAE21OviUyRbmnxs6uitnTC3wAAAAAAAAAP3R6peF1IdwfQqmb119dyMQAAAAAAAAAFjRPUUEtO9tA38nKSenaVfwAAAAAAAAAC3R6peF1IdwfQqmb119dyMQAAAAAAAAAFMDjyE5AlqASoc6cxfe5K2wAAAAAAAAAwmxRwXt-8CQt60ehjLjpoTwAAAAAAAAAKZaQmU-IXyGvFS9G6a9D4BQAAAAAAAAAF2MOoayvGW4k0HotkdD0WWwAAAAAAAAAD8oQ_ZJ3ImiZWOZcNHv_WYwAAAAAAAAAjMj1fVO3bykQ8piLrLc5IFQAAAAAAAAAJp3rl6vNMvVUfsTfYEKCC6QAAAAAAAAAAClmtm3Gj4Mb2mUsOYrmYagAAAAAAANUDpp6LgRqCGeGjs7cnnwItcAAAAAAADvFr", "types": "CAMxBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "yPsp3gldnYluQE1Il8N2GA"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABmtkYxe-SHgukLEpCkawSk1QWAAAAAAAA9UYYxe-SHgukLEpCkawSk1QWAAAAAAAA9XSYxe-SHgukLEpCkawSk1QWAAAAAAABFvIYxe-SHgukLEpCkawSk1QWAAAAAAAANUzYxe-SHgukLEpCkawSk1QWAAAAAAAANPkYxe-SHgukLEpCkawSk1QWAAAAAAAA0OOYxe-SHgukLEpCkawSk1QWAAAAAAABq0C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCOK6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEuzk6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEuxw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CAMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UwSPv3v3mJV5n8bvEwP9ww"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMfXsXT4fd_WKeR1cE-hlLelCQAAAAAAD9Tr0XT4fd_WKeR1cE-hlLelCQAAAAAAD9EIOXT4fd_WKeR1cE-hlLelCQAAAAAACzCnIXT4fd_WKeR1cE-hlLelCQAAAAAACgaWJXT4fd_WKeR1cE-hlLelCQAAAAAACgUO7", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "olGExzlNnh_tZyTGOfUK4w"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAAI8xUpzkEeu7Agkg18MSQkpcAAAAAAAAAAJH51LVO0hZm7tBbfsxW9RAAAAAAAAAAEV_v6hOoIgYf3eN97moDCA0AAAAAAAAAAHycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAIycx3jsOzoddyVXaGAexG9AAAAAAAAAAI87K1CwzZK_F79-lNbbx9YgAAAAAAAAAcBsEpo0mOhzMcrZG6n13KVwAAAAAAAAAvVwe_72Rv4VHVlHKolSYlNQAAAAAAAAAHzKCApLHyb2LRm5m6iEHEgQAAAAAAAAAfbWlUEX2YKFEdOMdpWkVEpQAAAAAAAAAL4h1JGMqLLOdAVu_3S11V0AAAAAAAAAAIKWcc74zLQzIOeccSqcd1DgAAAAAAAAAK6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAH6Qw9Kypo2oJsXQJp0yMzAQAAAAAAAAAHYqGCdZ1cNEoHUUaGHzWSqQAAAAAAAACL3F2z0U59C1y3O1vSXqnJygAAAAAAAAAcdeyQ05GmzOw19AUsDzeIcAAAAAAAAAAA", "types": "CAMrBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "JF-bEOX20dA6FrlaQoCfyQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADA3-aZ3CKaS4aU08RhYA19y5ITQAAAAADA3RQZ3CKaS4aU08RhYA19y5ITQAAAAACQxvsZ3CKaS4aU08RhYA19y5ITQAAAAACQxqMZ3CKaS4aU08RhYA19y5ITQAAAAAB_vLNZ3CKaS4aU08RhYA19y5ITQAAAAABwYmfZ3CKaS4aU08RhYA19y5ITQAAAAABv08_Z3CKaS4aU08RhYA19y5ITQAAAAABv3V6", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0CzIBbH5H33fNR_K-h13Tg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjRTXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmq-", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "peEoWSsNziqM-hGC6EpouA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALn6NwYyHMoGpa7OtNyCkp7gAAAAAAAAALR-5D09eZM_0UfWInzOtpGAAAAAAAAAAscXlweJcTpRnUmFxwZ3wPIwAAAAAAAADHB68XzYJFVnny1no-xetM6QAAAAAAAAAWbr2--kP1CFOKTkt8v_v_UwAAAAAAAAA28lANmDojqVgOU0q9P9_NtwAAAAAAAABxZNIMXBN7NKTXUfXb93okMgAAAAAAAACf2EMwQYuIpRLWtpWdRpA0JwAAAAAAAAAFWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQAV8wmuu_NnjgQM-gIicjoAAAAAAAAAACQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAABKFhB955OLKEut8ODAZcajDgAAAAAAAAA6tL1Gf4mFdqk9HEwFF89E2AAAAAAAAAAJbprtQ_xRIlDhPE4Dsvt_EAAAAAAAAAASyPTrqAkkOCO7kbQ9uC2-ggAAAAAAAACL42z5TUZVQMx41Jhs9inuSgAAAAAAAAI0QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQLJbK_f_ZnLbWcYbyIyxyzgAAAAAAAAAjQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQS75DkUYHGa18F1kYhZ0XYwAAAAAAAAClpDdH2I4ITPlwXLt-L5JoUAAAAAAAAAANQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQQKXbkKgbO161p-cpBhN6hwAAAAAAAAAGH-li-VPX4V5GB-C8EGJQQwAAAAAAAABLQdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQ9zOECVMFUE-sRNeQZ1HM6gAAAAAAAAA5QdDbt6jPoesjGKs7ZNgvIAAAAAAAAAAHWSancnmbX3N0mzUrLDNaPQAAAAAAAAAf67pWST_GfpcgDD8ClFaSxwAAAAAAAAAQT_HZPc4nEhQTTwxclKtUYQAAAAAAAAARTZwep2BdnG6Mdu9AQocnMQAAAAAAAAAGCMCWh32oer3bDaYggVtoUQAAAAAAAACHHCW9gICkV36t4oXsjBpsdAAAAAAAAAAE_WhLMAElKfp9RHy9XD-HOQAAAAAAAAC3qkXC9AzfY8U3Ryc9g3OFDAAAAAAAAAAsccTvkbbzG7ITlutNR0SvYwAAAAAAAAAehu0S-fYG_gY_Otgg4IzKXwAAAAAAAAErXey4TSJt8z1Y1xeGVvkdYgAAAAAAAADB6fJMpXGng7X5bTc2KsPuMgAAAAAAAABSD0g0ITB6vPs-JMXU6kB_IgAAAAAAAAAETnmpwdT1yeLDbWlRnUic2QAAAAAAAAAHnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAA-DaVWIofPTETqopDkVERGkAAAAAAAAAATwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF2mlzHMlWgLtS4AXchUZGuQAAAAAAAAAIqThtgbHprFVYaxHnWJ5r2AAAAAAAAAAQ37kdvsyygZea642hUZCb9QAAAAAAAAAdvxAO4ozw0ZRvb8q4djSlogAAAAAAAABEwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFx4xnJ8Bvv3cqGQOknqJJwAAAAAAAAAIURrpT79Wm1-567n5aqJlbQAAAAAAAADL3bzfPK0NZtH4PhiksXncvgAAAAAAAACOotzl_-UJZ6X4M1v7YRzHZgAAAAAAAAAId_mdgff0kSRs-ewuuAGS-AAAAAAAAAACYpb1GyaDgfO6SxUxbAvctQAAAAAAAAAIyHxJa10zF8jCmhZDUlRioQAAAAAAAACJjOKHIn-OfmVASZP9y1NSfAAAAAAAAACHV9nsBUwQwMn84PajbyjYtAAAAAAAAAAYX6qt9XlU0IqttZBt4TnwZwAAAAAAAABHwvXjE31kESML0je4-Me7hAAAAAAAAAApDRApe1cPTh2-wFVHvKmI-QAAAAAAAABlfedIGTz7oXcPN7rVsxHwdwAAAAAAAAAMyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFq-Wp_fKqnzituNc-kKOtAAAAAAAAAAUpYMvKU2r2nETpEeIP80PQQAAAAAAAAA38jMyW-WmlGRJvr5T2b-plgAAAAAAAAAFwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0_JZyYR0Vno863IcUXpa7AAAAAAAAAAQGiPQYuBqA4onG16OCBJr7wAAAAAAAAA_wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF49P_FduVXL-1HnETkDgpjwAAAAAAAAAcS_CL2qp_hCoxo4NMBjattAAAAAAAAACntgTcpaw1PHSeu1PntXA3fQAAAAAAAABtVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFW_JPjd1DkAyoubIfHSaORAAAAAAAAAAMro-nOR8Y6-xR_0NZHNxiswAAAAAAAAADGAKN4IA59Oyrw_sFixA19QAAAAAAAACoj8cyxnhvgCmiV0wfzWt-5wAAAAAAAABH4_Wu3cP_1KUTQF00Htx73gAAAAAAAAA6v6A2aEAJbkezThEe0LppjQAAAAAAAAAIAHE52dyzEEDlVbgj_xFoxwAAAAAAAAAVwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFR7Hj9yPeT2EDyEr2K8ONTgAAAAAAAAAYg9D12vCHvqmadcctx-s3mQAAAAAAAAA7dAHd9ndNzEhU1GyagepTAQAAAAAAAAAlABk6RqRYy5QsiYS0AnfFrgAAAAAAAAApwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFtM8VFC-6NwJWsTojOgeMHQAAAAAAAAAMgQianSpTZDlq5RnHMXwrkgAAAAAAAAALwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFIg4O8IWFanKbF_VU4hFAfgAAAAAAAAAY3JOiPEBqME3dIDTotL2-UQAAAAAAAAAi36WCeR5NbgRZnRrGA9E9SgAAAAAAAACzewjh2tD1sTDOEtY5aAlH_QAAAAAAAAAU0G_ljx-j83i-Qy2lIULhUQAAAAAAAAAQhVKhVL3RShupVCryfwjurQAAAAAAAAAHmO8Ep2yh8naX77AaM6OoawAAAAAAAAA36IU8CVJsljq2c-RkQafrKgAAAAAAAABGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmOXWqC4F9CbM_9TaYs7enGQAAAAAAAAC6kUAbs4Tm3_NRbBQPhQnuwwAAAAAAAABqBlwtAEKFHXxtdYYHllc2EAAAAAAAAAAQnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF7vbDea8YrHNc_wHLzDnfJgAAAAAAAAAUZtfWODgA6w20T9TMv2NrwgAAAAAAAAALa7hZfalsBRk3tlQt91V51AAAAAAAAAA18NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAADtKBNthOxdN-LeSLQeW0hbAwAAAAAAAAE21oy5TLITDFo_6XpzirRo2QAAAAAAAAAkwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFU5SYnpgA53sr9SLIWLBAVgAAAAAAAAAgmN5y2bB03UPv-f6SkPrk4AAAAAAAAAAl-mKRCTh8AFw2quERsAqZdwAAAAAAAAAghMFUfSdfKq62EgaVo5SA4gAAAAAAAAApNatKHnzuddBuR5ARu7T06AAAAAAAAAAh-mKRCTh8AFw2quERsAqZdwAAAAAAAAAg1aZ3_qa-GDGgUGJlxlWbzQAAAAAAAAARc7fJv8qzYljmNQmIpTZNBgAAAAAAAAAJpho5yY-CB4hDJ5PhyrESMQAAAAAAAAAcwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF329FQG0FRbGaRCox_CO5kwAAAAAAAAAJ8V6RThS4xLGvyBskf3U-ngAAAAAAAAAKwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFojijB29c8Lo_FuNL__qV0gAAAAAAAAAUzsmqElNKWoxAiguA-24XnwAAAAAAAAAG7mYeFjFR9Yoe2nMw0EFMCQAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF329FQG0FRbGaRCox_CO5kwAAAAAAAAAJ8V6RThS4xLGvyBskf3U-ngAAAAAAAAAKwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF7Ovp0wGRNiYYUgy1OfOtbAAAAAAAAAAcOFcZvVV_kykM3iTp1pb85QAAAAAAAABF8nls3JqhhTUBkU5tmpZaqAAAAAAAAAAsVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_2Z0wUnO7PTDrZjS1nqYP3gAAAAAAAAAoLi--jNLhFbogbPx7uUpcfwAAAAAAAAAQj-mrBXNBqeJC8DfUo5tvmAAAAAAAAAFRJuCfdWrRLOsm707HTwRsEQAAAAAAAACdAY1qQl7FueXylVMIipRQaQAAAAAAAAAGTwgGrxrsq_cPJuqNig0G7gAAAAAAAADSBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFJvo45Zz0twIPRpAdbsbH6gAAAAAAAAAY13IVMDkiegUfkjSIeMh3BAAAAAAAAAAGRORjHmtUEjxfs01h1UiB-QAAAAAAAAFWBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFJvo45Zz0twIPRpAdbsbH6gAAAAAAAAAY13IVMDkiegUfkjSIeMh3BAAAAAAAAAAGgdxhRsFINIcXjL8ov24MeQAAAAAAAAAGTwgGrxrsq_cPJuqNig0G7gAAAAAAAADSBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFJvo45Zz0twIPRpAdbsbH6gAAAAAAAAAY13IVMDkiegUfkjSIeMh3BAAAAAAAAAAGKyCwwRCAH9ygWwiIDxYOfgAAAAAAAADnBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFJvo45Zz0twIPRpAdbsbH6gAAAAAAAAAY13IVMDkiegUfkjSIeMh3BAAAAAAAAAAGULUcmJP7eCRtN2QDQ-fZtAAAAAAAAADdBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFIJh2m7sI5abovI4uFKTgAAAAAAAAAAAI0zb6LbjdUqiSUXWCnQCmegAAAAAAAAACwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFLPUt4IiihpgVMsHfOZohwAAAAAAAAAAI07D5zPmq5WKTujCLawFNUQAAAAAAAAACwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFgTk1MkSzzpomxPmIhiIHzQAAAAAAAAAYE1jDbcQSOqd7Pzoo2vcUAQAAAAAAAAAGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmZGiclrIrsuL0m6y7E3kViwAAAAAAAAASFS55TSwq0w7KNb6oqdqsJwAAAAAAAABDJFIMxFmW_GkD0BYEGdXswQAAAAAAAAAHl4j5FXzkgekBCjhUSBt-mgAAAAAAAAAihVxXuiCYVnCxfdenaHpo6AAAAAAAAAAV1nUYh2eGPvLFIFvGK4PRZwAAAAAAAABJUBdJIbTGqfFiEfNMLru_ywAAAAAAAAAFa6Hga5OmTDWSqeaHOaTNdgAAAAAAAAAc5DBDoHaNnZL7KJ2FwTIw4gAAAAAAAAAhNx4R-NQ5XTI0aj_ko-HU5AAAAAAAAAAQy9CWmpVbMKwU8wQ9ADYcMwAAAAAAAAA4gM_mkkjpZG3amD_qRbaXxgAAAAAAAABKqzANNbjSWZP-ph81nL9IdgAAAAAAAAALntSOf1WNBk1BGpf0SzDxUQAAAAAAAABWLN9aFd032i89TLv2ODKNoQAAAAAAAAAG-3GPQQ-ojQ0K4P5ZthFkFAAAAAAAAAAN_MDJRvi6Jq1Z52zMjVFvBgAAAAAAAAAMfxhStAUWZv4f-7WJyivrsgAAAAAAAAAH-3GPQQ-ojQ0K4P5ZthFkFAAAAAAAAAANAKsZrYpx9x7YIwCoD9d3dgAAAAAAAAAEhVKhVL3RShupVCryfwjurQAAAAAAAAAHmO8Ep2yh8naX77AaM6OoawAAAAAAAAA36IU8CVJsljq2c-RkQafrKgAAAAAAAABGFS55TSwq0w7KNb6oqdqsJwAAAAAAAAAmOXWqC4F9CbM_9TaYs7enGQAAAAAAAAC6kUAbs4Tm3_NRbBQPhQnuwwAAAAAAAABqBlwtAEKFHXxtdYYHllc2EAAAAAAAAAAQnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF7vbDea8YrHNc_wHLzDnfJgAAAAAAAAAUZtfWODgA6w20T9TMv2NrwgAAAAAAAAALa7hZfalsBRk3tlQt91V51AAAAAAAAAA18NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAR05ZcXiWsKDqabttSzfcYwgAAAAAAAAALy0h14uYNgXVbjfNG4dRx0gAAAAAAAAAUdVy9F2EzSTySFtvhDROVAQAAAAAAAAAOnyQEDtNfXDm_fNpPXsT-3gAAAAAAAAAGXlbiXkr6-Uo-2NyXQ7Mp2wAAAAAAAAA7RXVkKerFQtxul6XD6GQGFQAAAAAAAAAlvFjykp-oi1aff5X8oBy8zQAAAAAAAAAmky2-9li99bYgpwxchq6l9gAAAAAAAAAZSo79ssLqcYG8xPQUl7bLnwAAAAAAAAAF2wFSUCa6LxTMAqycIAr37gAAAAAAAAAGXlbiXkr6-Uo-2NyXQ7Mp2wAAAAAAAACP", "types": "CAP_BVEF"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mxx8ugWwWszTb7eJBegR_g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAACqGMNSe-6LTlpuiQTu86RdbwAAAAAAAAA1wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATmQVHcTFXg4JaHxKFUu2SNAAAAAAAAAAK0qdPtfCOXWtTMQkqPpfTpAAAAAAAAAAD4pD3shcvlMj_8ybo7T2TVAAAAAAAAAFCS0Vcinvs4UXd1rhNSjovpwAAAAAAAABVbAlNhxIUaCZOzq5Go2-fDwAAAAAAAAAIUNi2PfJJ-vKG8q63OaknIAAAAAAAAAHcPDxaYxBC-l8PtK0orl2RQwAAAAAAAAETSZD9YVGYcY6t7-F09t_klgAAAAAAAACDMxRnrnRp5fRRlUEkyuK1rQAAAAAAAAA8LNiGyjoSSwLd2vmEwDcgqQAAAAAAAAAtRrirhtozDrKAAydohpmvZgAAAAAAAABXyJIhq1AV1i5dfSljhhE7KwAAAAAAAAAGcEzK6HfXk1srPlYKWH6y-wAAAAAAAAJBNyFYG970OiNszXfRwkg2OwAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAAA5W0KRKkGodsQWw5SQhLGc1AAAAAAAAAAfUcMrTkRqTyiU1A-4TStXKgAAAAAAAAAOTM5vHmZRGlLyNtB_jDhdvQAAAAAAAAAKXiwCBhd0Mu96RLqRSIdCdAAAAAAAAAAV61vrmCVoJZp3HjBxIMFrNAAAAAAAAAAFF7lATn_bFhRDcY0Z0OyPwQAAAAAAAABoY5AhuW5zTFbvkEYRGrJ6zgAAAAAAAAEXqmhrzhROIxdFfT_O0ufQNgAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAVCm3FF_uDQeutHnQs3UGjlgAAAAAAAADAwMduPEe0g_53DcRkATCeKAAAAAAAAAAWWyrs0b2Xeu1gDeFw9u_zswAAAAAAAAAA", "types": "CAM_BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "J6yDhkd9T90hDGIK4K7YnA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAAB9Ii4z5k14PsCcDvFyUC1kmlV3QAAAAAB8088z5k14PsCcDvFyUC1kmlV3QAAAAAB821Wz5k14PsCcDvFyUC1kmlV3QAAAAABKEElz5k14PsCcDvFyUC1kmlV3QAAAAABHmTSz5k14PsCcDvFyUC1kmlV3QAAAAABHeblz5k14PsCcDvFyUC1kmlV3QAAAAABHAKLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWyW6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWr96tVKI4mSYDEJ-ABAIpYXcgAAAAAALWpK6tVKI4mSYDEJ-ABAIpYXcgAAAAAANp-d6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMBqB6tVKI4mSYDEJ-ABAIpYXcgAAAAAATxBf", "types": "CQMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TQY_WRO1qymUg5IQJijndw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAANSF3u75PFaKMThRw4BoUVwCAAAAAAAAAB3JzR1Che7ZkqwAcPrDIhJHQAAAAAAAAAB7GZTwvpUbvXa1H99e4ouwwAAAAAAAAAIFJBAv_ZG17EaYJPkcMS1YQAAAAAAAAAGIgoUEL7HFiDxU9Re7MPrtAAAAAAAAAAA", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "SJqbNgrSxDdoOACHB93N4A"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHiCEgtQ4kMk_MBWrPUAFqVnYywAAAAADHiVygtQ4kMk_MBWrPUAFqVnYywAAAAADHdi0gtQ4kMk_MBWrPUAFqVnYywAAAAADHgoEgtQ4kMk_MBWrPUAFqVnYywAAAAACGvclgtQ4kMk_MBWrPUAFqVnYywAAAAABqF0v", "types": "DAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "GsN99ThxwcvQFCb-5zng-g"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABazfcz5k14PsCcDvFyUC1kmlV3QAAAAABaQLqz5k14PsCcDvFyUC1kmlV3QAAAAABauKFz5k14PsCcDvFyUC1kmlV3QAAAAABLLaZz5k14PsCcDvFyUC1kmlV3QAAAAABK3dwz5k14PsCcDvFyUC1kmlV3QAAAAABHfOyz5k14PsCcDvFyUC1kmlV3QAAAAABHAaLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimti6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnKXQ6tVKI4mSYDEJ-ABAIpYXcgAAAAAAirCv6tVKI4mSYDEJ-ABAIpYXcgAAAAAADtHN6tVKI4mSYDEJ-ABAIpYXcgAAAAAADs9b6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "CQMOBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "iOL2fCOaJ1jf3dP2xu2v9g"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgNcz5k14PsCcDvFyUC1kmlV3QAAAAABFk-Zz5k14PsCcDvFyUC1kmlV3QAAAAABFldN", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-f-8xMNzAVnOWhCPzAg7Cg"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACRuzKgtQ4kMk_MBWrPUAFqVnYywAAAAACRvAEgtQ4kMk_MBWrPUAFqVnYywAAAAACRvT8gtQ4kMk_MBWrPUAFqVnYywAAAAACMCnBgtQ4kMk_MBWrPUAFqVnYywAAAAACbQAkgtQ4kMk_MBWrPUAFqVnYywAAAAACbQYrgtQ4kMk_MBWrPUAFqVnYywAAAAACbM7NgtQ4kMk_MBWrPUAFqVnYywAAAAACbMVNgtQ4kMk_MBWrPUAFqVnYywAAAAACbMpGgtQ4kMk_MBWrPUAFqVnYywAAAAACbO04gtQ4kMk_MBWrPUAFqVnYywAAAAACRlPUgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4WlgtQ4kMk_MBWrPUAFqVnYywAAAAACG2jCgtQ4kMk_MBWrPUAFqVnYywAAAAACG2ppgtQ4kMk_MBWrPUAFqVnYywAAAAACG3XcgtQ4kMk_MBWrPUAFqVnYywAAAAACGyc9gtQ4kMk_MBWrPUAFqVnYywAAAAACGvukgtQ4kMk_MBWrPUAFqVnYywAAAAACGx3EgtQ4kMk_MBWrPUAFqVnYywAAAAACGvmQgtQ4kMk_MBWrPUAFqVnYywAAAAABqJm4gtQ4kMk_MBWrPUAFqVnYywAAAAABp9W1gtQ4kMk_MBWrPUAFqVnYywAAAAABp9kIgtQ4kMk_MBWrPUAFqVnYywAAAAABrm7w", "types": "GQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CghM7sv0n941Gxqx3t0UfQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAANSF3u75PFaKMThRw4BoUVwCAAAAAAAAAB3JzR1Che7ZkqwAcPrDIhJHQAAAAAAAAA2414vwxwFz0HV2Ku4dzYYowAAAAAAAABPlF0402c3xDTaGy1WpLy7vwAAAAAAAAA-4ExmIEmG5cbeqkrcSlhsEAAAAAAAAAAH12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG7kZxFgbuXnmF5RM9H_z_ggAAAAAAAAAefMXwmZZHoKY5ug0oBlnUxwAAAAAAAAAff15ZZuvJposXWOcmbKQgxAAAAAAAAAAftL230chqNUuroXAS-gtapgAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEKC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlseV", "types": "CAMyBQED"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0E7LlamNni9h1zgUjdYD5A"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABuEbDp5Ji3y8uTKzXL0h4-JQAAAAAAAACEiSUtuDFidZ_ArB9M-KYzuwAAAAAAAAAqAAahb89jp2nXTHxX6vfDVgAAAAAAAAIaEzlTNMIGbx2ZiPDgwyoVKwAAAAAAAAE4hvoLs_S85r0RS2Fhd-3zRQAAAAAAAAAA", "types": "CAMlBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aAA5WQcp21IBohTIC-KUcA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALIq0mlN2p-kwJDD_iNJOzpQAAAAAAAAApygiinZb-VL-5X6K63nWolQAAAAAAAAAFsPRIu4G_UqOumyaMlOEsUwAAAAAAAABco__lFhTsOKstKDAfxbDtFgAAAAAAAAALJTnRsTPd7AHDTE96DfHcfgAAAAAAAAACTPgk3CweWzO9tVWjSu3t6AAAAAAAAAALGMA756PSHo5B_YmPM9fH1AAAAAAAAAA0w9EvqgSUrfSjTDJRVa3cFQAAAAAAAABNNHZIb934ydih1IKLBqCI5gAAAAAAAAACIwsijQDbvPiBVknFzNnSRAAAAAAAAAAJvfb9aCFliLFmJCtvbLn8hAAAAAAAAAADC6hdCXqj0oyVHhHOvhKmxQAAAAAAAABJ7-NWIMSLKY69QheXospWHQAAAAAAAAAEGOrFnkqGTEzDlTO1qewmxwAAAAAAAABQBA250vvzivD0xU5n0tBlVQAAAAAAAABngJGX9YLt4oQVT1mGe0oQGgAAAAAAAABPgdK-Z7OiQJ4-Vu9mxjvSjwAAAAAAAAEW7aQoN_s8X04jyh4gpnKxaAAAAAAAAABRcblhwFQdNeQr9L4l7DVdpgAAAAAAAAACxP8BEtTROcQjINLBdr_0HQAAAAAAAABsmCGHhhnGFCjrXxZQKNdCegAAAAAAAAC34j39GsPrnYzZC8CsZdf-xgAAAAAAAAAJctuzHWR3fx1b_qq-6rL5pwAAAAAAAAAvi6rwiPR5i6tnawOeD-YAvwAAAAAAAAPtkeUoLhS7DM0koqCsSOTsoQAAAAAAAAALzxIhSYMrYCNgOD4FFp83ywAAAAAAAAAA", "types": "CAMcBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "hjIdYJVrZu9s5d1oY1Nu2w"}} -{"Stacktrace": {"frame": {"ids": "R_3RsDYccfUxjNYYah3JZgAAAAAAEhYe-IlGUwajicqSE5-hS5VYigAAAAAAAHbaSZxl-YF9wOaedogsBMtvRAAAAAAAGQAGSZxl-YF9wOaedogsBMtvRAAAAAAAGQBRSZxl-YF9wOaedogsBMtvRAAAAAAAD9N_SZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD49fSZxl-YF9wOaedogsBMtvRAAAAAAADiW6SZxl-YF9wOaedogsBMtvRAAAAAAAEk3JSZxl-YF9wOaedogsBMtvRAAAAAAAElIdSZxl-YF9wOaedogsBMtvRAAAAAAAEMyoSZxl-YF9wOaedogsBMtvRAAAAAAADxCN", "types": "KQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "IYMwZEdK-ayc3885mQPPQg"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA8Q1rqFV6xhVekP5-uToPI32ragAAAAAA8QssqFV6xhVekP5-uToPI32ragAAAAAA0VStqFV6xhVekP5-uToPI32ragAAAAAA0UfqqFV6xhVekP5-uToPI32ragAAAAAA0XMyqFV6xhVekP5-uToPI32ragAAAAAA6YnHqFV6xhVekP5-uToPI32ragAAAAAA6R_NqFV6xhVekP5-uToPI32ragAAAAAAe4tsqFV6xhVekP5-uToPI32ragAAAAAAe4Td", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9GEtZihsTZTLRmEEEBupXQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAqeSs1xpPdaQi6BA9wz10SrwAAAAAAAAA5TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABbXyIB1JXxkoOQjMae8CICgwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADWifN9r0wurhPb3dG8PudTpAAAAAAAAAASywRpFKHnyqIdEibpvZWLtAAAAAAAAAAC_jcNhXlm_4ESbJ83f0qd9AAAAAAAAABnBvLbND_0DrAH3Z_KTjqNwwAAAAAAAAAIfZfGpgZFJokP-jaeydrs0QAAAAAAAAAJjg3LdO4DNz9FsefjUG1F1gAAAAAAAAEgf6OHtxWEEYSKC5jCOpZRYwAAAAAAAAEy", "types": "CANmBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8UN7adkU7fT1ZBcxBGzmmg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxk0cEvvhuguaGYCmGWrnWRz1QAAAAACEPqkcEvvhuguaGYCmGWrnWRz1QAAAAACFwvmcEvvhuguaGYCmGWrnWRz1QAAAAACEPqkcEvvhuguaGYCmGWrnWRz1QAAAAACFwvmcEvvhuguaGYCmGWrnWRz1QAAAAACFwrk", "types": "EQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5yQFzmK6rVAYH_IWw9mY4g"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR5ISNDzWiYDmLZi_Z1ZVETLoAAAAAAAcM5k", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "ERZHMw9hepZtP1YDjwtr1Q"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF88yz5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF78Kz5k14PsCcDvFyUC1kmlV3QAAAAABFxdxz5k14PsCcDvFyUC1kmlV3QAAAAABGnbP6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMu3D6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMur_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMuZy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMs6N6tVKI4mSYDEJ-ABAIpYXcgAAAAAAMtKD6tVKI4mSYDEJ-ABAIpYXcgAAAAAAilCU", "types": "BgMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "A8pyJ84eyIC8RCi-Ni9jQw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEOEePXT4fd_WKeR1cE-hlLelCQAAAAAAEOCveXT4fd_WKeR1cE-hlLelCQAAAAAAEODDqXT4fd_WKeR1cE-hlLelCQAAAAAACwtaJXT4fd_WKeR1cE-hlLelCQAAAAAACi_9XXT4fd_WKeR1cE-hlLelCQAAAAAACiJjoXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIj", "types": "DQMCBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UV9_m6EFKMbhnALIvI6q6g"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYyCsgTIwDC_hDJDfLFUPapAAAAAAAAAAID6b8Sjd5CvSYx-QInyms_AAAAAAAAAAIW2orkSxhItalTCL1xwDk_AAAAAAAAAACjiFBP8aULjLbsVdXEn7rugAAAAAAAAAE_vRgnsODDSlBEnXshYjNPQAAAAAAAAAM4jXsfiwIwXRBOMYWIiCtqwAAAAAAAAADhlKDzMS4nmygKgJXIbJdqgAAAAAAAAAqgcQoFFr9FRsGHE05TMSKpwAAAAAAAAAq6sFIukgY7ho7yax5BMPJNQAAAAAAAABfYdHosvXns41-8YRbLcrtpgAAAAAAAAKfDVR_nG5ta2hArwA9VyEuOgAAAAAAAAA-D-XSLd42x1JNaSw7B5lYFgAAAAAAAAAYOtlZl4diRpDtcAsn79IxmgAAAAAAAAAjnFTZ4MXQlS-LtyA78dSw9wAAAAAAAABDstWZFEwn_P2axA2CCLL2dAAAAAAAAAAGKlyk9qkuDUd4R1FXo4_CpgAAAAAAAAAs6aJ6pmMPvPEjMaH0D2_VRgAAAAAAAACiI0USoma0OWjdGMGSaTNhgQAAAAAAAABUj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeMWF-ta49FweBhvwuhsiFKwAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "6DnsHbkP7LCj2ghN7B7D9Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAAChm9xXT4fd_WKeR1cE-hlLelCQAAAAAAChkN8XT4fd_WKeR1cE-hlLelCQAAAAAAChdmzXT4fd_WKeR1cE-hlLelCQAAAAAAChdRO", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HVz81HFfQwHn9QYh-be1Sg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAADHgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAeTryWt-l_RGzsQHaX4nMucAAAAAAAAAAA", "types": "CAMaBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "b9stHUYeSwgP0eNPB72Qfw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnpLFfIWo92qVCcVH5IiXAnQAAAAAAAAAQZY053goknQd2qtlUXwZuLgAAAAAAAAAHlZfEINaOgU5CKXhtrPhf5wAAAAAAAAAJh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABMaP-XSbJ_jD1SaDSikvAxwAAAAAAAAAM9lngTnmeSG1s7rdk_juSMAAAAAAAAAAGHrhe4gWbxhhQ9c1XsJ2lkQAAAAAAAACtBnjxOT6ecDtMNaRY7RgRQAAAAAAAAABnzd5A7qHg0FK_zhR8YQz3awAAAAAAAAAX73IOkhtZyjrZNnxzxVPYTQAAAAAAAACNp20xNjB13pFFci9UHZaQsQAAAAAAAABbNFoti7zeivEyGvfQ3_ANTgAAAAAAAAGU3kg82-0D3eZ1bo-oCBlTCgAAAAAAAADCVOUNVzVyt4QutMt6oZxNlQAAAAAAAAA2EyQZHtzRv_03o0l-NXmg-QAAAAAAAAAxNdnOauNqYT-cKE84qEP2jwAAAAAAAAANlsX2eCLSr4Q70_mA1t3KeQAAAAAAAAAoNB3KICW80r4krIyGFXIJIgAAAAAAAABZ2uEWBluAjlG6YATEmwlaSAAAAAAAAAEIx2cwCBtVASi5Ak0QtF5vPgAAAAAAAAAjHkzvs5GEXB5P73bf_lHYLwAAAAAAAABZuVG7cx1nxFFek80YurByWQAAAAAAAAAJVTaMtF9TNwwiR5vZiTRm2AAAAAAAAAAEiEXWSv2E3DUfADDCXriE1wAAAAAAAAANJxeuDmtaTXb_lCXNaZWRFAAAAAAAAAEQ", "types": "CAMfBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "y1JTMrOxhzScpzOLDM9hCQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVJYDGNyrxwMciptwAXDUuRwAAAAAAAAAmqzKFizPmtCgELqHUElsXqwAAAAAAAAAFcrKsOA3dVJaxbj2PKSc4rgAAAAAAAAA2JJwHXTkYed0lpeQhX1-f7AAAAAAAAABvo23whHKZ51G6dL_e5u9zSAAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAry86E6w-NUJfYYLcFp2N4MQAAAAAAAAATkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAANSF3u75PFaKMThRw4BoUVwCAAAAAAAAAB3JzR1Che7ZkqwAcPrDIhJHQAAAAAAAAA2414vwxwFz0HV2Ku4dzYYowAAAAAAAABPlF0402c3xDTaGy1WpLy7vwAAAAAAAAA-4ExmIEmG5cbeqkrcSlhsEAAAAAAAAAAH12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG12z5Qk-yNY8ANzQ4c0lSfgAAAAAAAAAG7kZxFgbuXnmF5RM9H_z_ggAAAAAAAAAXNKoRe12iMWSiZOszytfhXAAAAAAAAAAlU4lpDWiuR28XLSFBPsNR-AAAAAAAAAAof15ZZuvJposXWOcmbKQgxAAAAAAAAAAftL230chqNUuroXAS-gtapgAAAAAAAAAO4m-0zgTNuwngv66j7dc5XAAAAAAAAAAVi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBAZMr20WzR3uvYdIFtdzFnAAAAAAAAAAQVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMoavQ7EacG6CR4rzcFaNFEsTQAAAAAAATsz6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzZp", "types": "CAMxBQIDBQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "f34iYGJZ4-vox7c1m40S5Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACguWEXT4fd_WKeR1cE-hlLelCQAAAAAACgwgv", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "FkuuK33tmpaBP6yN588PoQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAGz48xYDh2_7oYnD_Sk9iLrLwAAAAAAAAAc-t3aueBkBX5wcaE0A1f5FgAAAAAAAAAM7Miu2EGxnVZ9KKV9kFUspgAAAAAAAAAMP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1rROjWPSGsIF3P681sDbieAAAAAAAAAAMaDG65F6vpUG6StE5BqosegAAAAAAAAA3giO_M_zlu3womJVgYVikawAAAAAAAAAh1Dm6rh0RP-6XJIANW7bI0wAAAAAAAAEL63nMu76IftokzOnGnfVTJwAAAAAAAAAUMWoDBcMPHdoRgqigdmrdNwAAAAAAAAAtSAAkutGejeRImCZXeWZ-1wAAAAAAAACLcDDKtM-30WtgKUZUhSPZowAAAAAAAAD0JN-dgFkoqSE-dHBUib5RMAAAAAAAAAB-pDmevRXuPcE63RgyWWd9hwAAAAAAAADdLT5lr845yiJBLJcYHx5FbQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAgP4GPMHTkL-nFkTmhovUcVgAAAAAAAAA1h2McnzqwfbL5yBZRK65EugAAAAAAAAAMAAAAAAAAV4sAAAAAAAAAHQuTP52nf2gK", "types": "CAMhBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9QQ4r43YuHwpw3ZT9p1xxQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsqYVcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACg2q2cEvvhuguaGYCmGWrnWRz1QAAAAACsg-OcEvvhuguaGYCmGWrnWRz1QAAAAACXxoNcEvvhuguaGYCmGWrnWRz1QAAAAACXxjVcEvvhuguaGYCmGWrnWRz1QAAAAACEN8ucEvvhuguaGYCmGWrnWRz1QAAAAACENL5cEvvhuguaGYCmGWrnWRz1QAAAAACEM1t", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "0j1wiZ2zi9t7EenFUwZ_Qg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChw_FXT4fd_WKeR1cE-hlLelCQAAAAAACgjNtXT4fd_WKeR1cE-hlLelCQAAAAAACgmNTXT4fd_WKeR1cE-hlLelCQAAAAAACgmsRXT4fd_WKeR1cE-hlLelCQAAAAAACgnAO", "types": "BQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "k_oZ8en1b76mhL2hb9QZEw"}} -{"Stacktrace": {"frame": {"ids": "SZxl-YF9wOaedogsBMtvRAAAAAAADLEpR_3RsDYccfUxjNYYah3JZgAAAAAAAhyGSZxl-YF9wOaedogsBMtvRAAAAAAADLeYSZxl-YF9wOaedogsBMtvRAAAAAAAEcEcSZxl-YF9wOaedogsBMtvRAAAAAAAEcbxSZxl-YF9wOaedogsBMtvRAAAAAAAEhRuSZxl-YF9wOaedogsBMtvRAAAAAAADxA4SZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5FNSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD2RMSZxl-YF9wOaedogsBMtvRAAAAAAADdQ9SZxl-YF9wOaedogsBMtvRAAAAAAAEM9LSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5ZiSZxl-YF9wOaedogsBMtvRAAAAAAADxcJSZxl-YF9wOaedogsBMtvRAAAAAAAD5DlSZxl-YF9wOaedogsBMtvRAAAAAAAEMNnSZxl-YF9wOaedogsBMtvRAAAAAAAD40FSZxl-YF9wOaedogsBMtvRAAAAAAAD49fJ6SM8hBvw5MHsxqbsEPRPwAAAAAAAQH0J6SM8hBvw5MHsxqbsEPRPwAAAAAAAQ9rJ6SM8hBvw5MHsxqbsEPRPwAAAAAAAXOhSZxl-YF9wOaedogsBMtvRAAAAAAAFrRr", "types": "MQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9LOuDoi5esCx_k0gisuwsQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAACGz1HZ3CKaS4aU08RhYA19y5ITQAAAAACGAJJZ3CKaS4aU08RhYA19y5ITQAAAAACGFf8Z3CKaS4aU08RhYA19y5ITQAAAAACF6TpZ3CKaS4aU08RhYA19y5ITQAAAAACF6i9", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "UQljazbrYNKb17CR1zcj2g"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHE4iLR-T6WOAqEH8-HiPe6QAAAAAAAAAcGY_EtZt9mU4B3aEjHh6NpQAAAAAAAAA1iSNTvlpM7u1g4sh2COQurQAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACa", "types": "CAMsBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "cdhfW3Az6hl2kyXX_PlbPA"}} -{"Stacktrace": {"frame": {"ids": "6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwAIU6tVKI4mSYDEJ-ABAIpYXcgAAAAAADAxgUbK4uezrplMLlSw0h87XfgAAAAAACaTWUbK4uezrplMLlSw0h87XfgAAAAAACQ84UbK4uezrplMLlSw0h87XfgAAAAAAB7dvUbK4uezrplMLlSw0h87XfgAAAAAAB7Qn6tVKI4mSYDEJ-ABAIpYXcgAAAAAAp15j", "types": "BwQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "dzNbdSn_Zmll2UbzN8G_xQ"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAFF-0cNkxFEeFuByUGaYLMGZgAAAAAAAAAhS1uuSZZhWt70eL-Gyep_RwAAAAAAAAAH-ZNzcIfRK431xz3NkzIyzQAAAAAAAAETqo29mIfMk6g9kMPy8tsbogAAAAAAAAAhdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFgsRY5SfC1FLceKELS1WAxwAAAAAAAAAQFiQMwA9XcchO9iDh-bURNQAAAAAAAAA4kKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFbEb2wEd72RGPG3Tgt7xmlwAAAAAAAAAUWTJVejtNrfNtGl_SxUF-gQAAAAAAAAARpW8useNRLFWJHbQ9ncrSDQAAAAAAAABs7mriOKfPxEedu-U5xcOHzQAAAAAAAADo2O-1ddGQ4yEdr0WJ1sM2ygAAAAAAAAF71J9LI_MaZGkxD3-lIBfwqgAAAAAAAAAkdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFDqXfoFxUEaOuKMXlmCSXgQAAAAAAAAAgXAQAGBdvfV-EvC7mVJIF_AAAAAAAAAAlqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgwQ5uY_pSelGf8LUADSvoUAAAAAAAAAAp_HewcgijIMPowgCu2JuUaAAAAAAAAAAiqgz0OSf5Bn-VYAVRBYncQQAAAAAAAAAgpn9POQXvPZ6AJ72pwmniEgAAAAAAAAARho9WujSzYljmN4932xjq9gAAAAAAAAAJwtgpZp9SPQlV85UePoIRQgAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF2XlsHONL_QzhduDW6kA7vQAAAAAAAAAYY4GXBcWnfQyta5ocrIdtBQAAAAAAAAAIpl4QAnODL99kwWMDWeoC8wAAAAAAAAAOdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFWYJL1QABUd371a1-0ldehQAAAAAAAAAJVPYOHzahM8nW-lI6iDLCtgAAAAAAAAAKdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFBot4vusrAslwRTJN-1GqPAAAAAAAAAAc5LM1UONk0pxINez5h5E_DAAAAAAAAABF19awHBrw5zOybAJS9IMTOAAAAAAAAAAskKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS0tdJXiZYZuozRWVHE58tBQAAAAAAAAAFvtVwtJiJ8EuWnAfWFigoSAAAAAAAAAA_sS7jth5JTt44kOBPBp-PqQAAAAAAAAAonPa1c1LhFbogbVa-sAz2fwAAAAAAAAAQEGWTWlXO2ReTmvMiTGjOTwAAAAAAAAF6qaSuYVW7w4f2uvwT-2-QSgAAAAAAAACMSEAz2xfqrNiGYU5T_aIXXgAAAAAAAADwVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGC0M3zV9CAw2K5rR5U2_H0AAAAAAAAAFpVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGsVHkQBLFueXylT9J5JnmGQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGso1d_4OoBGn25QD_tK0ZhwAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAG-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGeLf6mPNLMOgkAfsO77gC6AAAAAAAAAEFVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgdswq7UFB-c5kE0TfryCD4gAAAAAAAAAF9AD_jMnDoH_vmvKruTVuFwAAAAAAAAAYOsLUWl8iegUfkov5V9GtpAAAAAAAAAAGOHrN2X11En4TANmmvWeSsgAAAAAAAADvVrpi7tqI-mbMhnfGM7pJDwAAAAAAAAAOVeiXB0YRwCqhIZpdcAnulgAAAAAAAAAFqWdmqD7_YZgrJlkim5VjDgAAAAAAAAACXrBpNAskp4LhvHyToQuFVgAAAAAAAAAPM4kfuweTCRjkzuYcFSqUswAAAAAAAABg3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgcRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATeUkU9BypIPkspOQFVVGLEQAAAAAAAAAKOxMbWV9bPPvg1__T5-kzDAAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAABrhByk0cUR55VCYmz688yAQAAAAAAAABw7AiBn7oHfjeYsG3Q9nW8vQAAAAAAAAANnotCAO7hd2H6aL2N3OdG9wAAAAAAAAASoRpiSJGwFiHcxpubP0ZTHQAAAAAAAADU4iSscwUfpHqomLpXfRLwpwAAAAAAAAAQo3vzfAt4odMDYmk4_A3rWQAAAAAAAAAIEXFBdiZNWwQPfalX3N0kpgAAAAAAAAAc7JN_tS6A_rP-FvBgm0sAlgAAAAAAAAChfc3Tm6Y2xJo9UzcorZGtTwAAAAAAAAAJfClDzFj1dlODSHJedjtnCgAAAAAAAAAYhhxE01XFPFaD7ysVa9fC9wAAAAAAAACHpFsUXmCuheRW93scdofEYwAAAAAAAAAFv6lCGSl14n67sS0TtXz2KQAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHwVGYw8PhDGaGZTm6D-jqPgAAAAAAAAAIrko_YbcnDiBZxFuLrPp4EQAAAAAAAAABM7vNoJf6UqNhbFs2k-N8egAAAAAAAAAIrWNqYeEq1tor8Xhsh-G0iwAAAAAAAAAD1p5hhkT_QSk5Jb1bNkPqogAAAAAAAAAiKdY3pt9yZRo_nmRKTuStSAAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAAg7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAAJRSuilsRTiGB4g6_Z5wTRUbAAAAAAAAAAJgRG-cOCdB8TOsWTmVkJDbgAAAAAAAAEC84hpgw4gYf3eN9wUiHodQAAAAAAAAAAH84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAIGgf9kW-zoddyVYpEp-cnZAAAAAAAAAAI84hpgw4gYf3eN9wUiHodQAAAAAAAAAAHcz3tTm1A9PR0mkHg-r_JxwAAAAAAAAAch_QroixBMtZeI1zG0ozyLgAAAAAAAAA11lHo9c9loCfa7AYjWRBG8wAAAAAAAAAf1JFJglGYKFEdOODML6v_9QAAAAAAAAALje1jG-SMcDP5bWyoezk-tgAAAAAAAAAIBwR1yrDLQzIOeb6cYqYi3gAAAAAAAAAKoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAHoG-4nmpo2oJsXS-LToSAAQAAAAAAAAAH12wqq0CZSFWXQTyNvq7lawAAAAAAAACLj6ymeOp9wGkYFilkoBNaXgAAAAAAAAAf52XkZKHpOlq2TOi3L8YfPAAAAAAAAAAe", "types": "CAO-BQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fvee1-CYSv6CWV-rI4TxkA"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjUyz5k14PsCcDvFyUC1kmlV3QAAAAABGgJxz5k14PsCcDvFyUC1kmlV3QAAAAABFlB3", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "TBeuzjOZRDdI9h9tZfZZsA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc-B12Kn1z2WbdinXULBUwvgAAAAAAAAAgP8XeEpnP5-7OC7qQMco_kQAAAAAAAAABxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVTcgdPjhC9iCW275BLQdVSwAAAAAAAAAFFBVCBKuKRq6cJ2_v-ATjywAAAAAAAAAC1FgXGZ6KVmGpjNWPRcmkqQAAAAAAAAFixIKWatY3TkDMmjhuCoY3zQAAAAAAAAEwXaFizeT40CKpdI_o5Zrw0QAAAAAAAAALP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAepBWDMEkxECoqFEbuF_aawAAAAAAAAAAMQNJBtmDNiP_chGYXJszyagAAAAAAAAA3vXkwfvj7jlhBJyKg0XGvywAAAAAAAAB2fNviosb4qVFLp7sfJPNLzAAAAAAAAADl6OqUFDo-whukimJI-B2pMgAAAAAAAACX_l0ywV2XZnYFamIDDP8kMQAAAAAAAADSjRm5GYz0vdCovh1sp2XZ0AAAAAAAAAHzrGGuFHDbckOYS7UNGM0EFAAAAAAAAAAtLT5lr845yiJBLJcYHx5FbQAAAAAAAABWnfGP8OA-QcZ-YhJjD2uyCgAAAAAAAABYY5iAkFFa6Ydo5KZQhAw-vgAAAAAAAAAGdR-5oewY63tH4fYLV5hc3AAAAAAAAAANXadgtJFQ10pxn_-sij7tlQAAAAAAAAAUvhMTgwXcJBbn9i99hn5MzAAAAAAAAAAA", "types": "CAMbBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "YulTfvm-3LCwbTWK82hE8g"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGjSyz5k14PsCcDvFyUC1kmlV3QAAAAABF88yz5k14PsCcDvFyUC1kmlV3QAAAAABF8vxz5k14PsCcDvFyUC1kmlV3QAAAAABF780z5k14PsCcDvFyUC1kmlV3QAAAAABF63Yz5k14PsCcDvFyUC1kmlV3QAAAAABGA9x", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "qcKiZ-b2RFkrAj_Eljk6ag"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAABvumnLDwSZ51G6dAiG4b1ChAAAAAAAAAAGY3Sprta0ZfJLFlJ1JVg3HQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWmmnJ5oQYlVV3vqFOcvo_GQAAAAAAAAAFn2YJwPYz0nZWtSrrKY3ZUwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW6lQDaDN1HBUDrZzwkYhxxAAAAAAAAAAFM09XeJtIuzWFgRLBSCNdGwAAAAAAAAABpn5qfmUJVVaxacBhAps3IQAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtF-UVz7qWVUzScRv1FhkbzQAAAAAAAAG3rLjBo_k19vor7LkQgiOErwAAAAAAAAC8YgsSLUYpiS9cWv6amzrEpAAAAAAAAABYM-q_yN6BkZgGVL7TrJEMggAAAAAAAAAZH6yPOYEnXV1gkHCNY0CftwAAAAAAAACsmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAANIfYj4waw9fP9op8fikoTJgAAAAAAAAAGmHLbruajf1ewhD5eRLIwPQAAAAAAAAAEIfYj4waw9fP9op8fikoTJgAAAAAAAAAGu80wzeYkSnSlt8hhdfSXpgAAAAAAAAAsaMdAw5F6bqw1nsXGt00a9AAAAAAAAAAT5bp9ksSy292xk-WBKhGWXQAAAAAAAAA3R8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAFBtItoNsUMOSUuiEQl3xYhbQAAAAAAAAALVo9H_8YeBmc0_i3CIsMkrwAAAAAAAAAAJsaw4aRwbsrSC4mkOwhwQQAAAAAAANJa8NlMClggx8jaziUTJXlmWAAAAAAAATrU", "types": "CAMyBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "CukCYxi-_rBPDB0cFOdQXg"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc5-Qz5k14PsCcDvFyUC1kmlV3QAAAAABcnaEz5k14PsCcDvFyUC1kmlV3QAAAAABakmCz5k14PsCcDvFyUC1kmlV3QAAAAABaBx0z5k14PsCcDvFyUC1kmlV3QAAAAABaDsIz5k14PsCcDvFyUC1kmlV3QAAAAABFRZ5z5k14PsCcDvFyUC1kmlV3QAAAAABFRJ0z5k14PsCcDvFyUC1kmlV3QAAAAABFQjtz5k14PsCcDvFyUC1kmlV3QAAAAABFZFx", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Lfg5-StCmQRLLhdxDtBcFw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYwsEP3PfgbWsvPc4Y_rpLYQAAAAAAAAAEbxUfVnyBZI_pROsv4HjqngAAAAAAAAAQku9JPnt9w-bpii9tERrqJQAAAAAAAAAW2CjidhF2o1l9AQQZ7O2_8wAAAAAAAAAVAmTcFForv1r91KDhJjsuQQAAAAAAAABh7BvwwtuvWC96Hl7IBrycDgAAAAAAAAASh3gGqWFKeM0FT-wjtm8F8QAAAAAAAAADsXYsfWKSXv-0U7gobefHRgAAAAAAAAEcG2Gr0Endt8yd9TWwB25Y2AAAAAAAAAAEQN4Q0wqGRE_9JxLmhmELwwAAAAAAAAAOi-4IPl_ionHN39EKN5HXmQAAAAAAAAAV7Y3rOwqJS8StJ3gV4HpibgAAAAAAAAA57Y3rOwqJS8StJ3gV4HpibgAAAAAAAAA57Y3rOwqJS8StJ3gV4HpibgAAAAAAAAA57Y3rOwqJS8StJ3gV4HpibgAAAAAAAAA57Y3rOwqJS8StJ3gV4HpibgAAAAAAAAA57Y3rOwqJS8StJ3gV4HpibgAAAAAAAAA57Y3rOwqJS8StJ3gV4HpibgAAAAAAAAA57Y3rOwqJS8StJ3gV4HpibgAAAAAAAAA57Y3rOwqJS8StJ3gV4HpibgAAAAAAAAAGwElNAN9vgDs3rPZPUryb8wAAAAAAAAAI26QmnZ2WZWEP0oQ5prgnugAAAAAAAAAT5BSLYKETsA6JrTET6azQQAAAAAAAAAABqD5R7oUvp1CMIoWxp8Tz_gAAAAAAAAAA", "types": "CAMeBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3MlZ2duzbecHR9Swq4KrIw"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAnQHGalGwq4QEL0pNo89eL_QAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF9IYt1kTyVwHBmL5XBentkwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeW8vJw9pf4kXSOfpR0vKjpQAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADU9ZZWGgX2ztQohxFT6s-0AAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF7QCSFGwPBX_XmFvGG4RGJAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFOV_sHpaFWNyJHZUPjS8VxAAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFQDJovm1V52QtGTryZ9-WtQAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFliB_gjAyJgmggDkDXaj8yAAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAAB1DbMSwciTWzQnIwbuYrt5tAAAAAAAAAAqRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAF353Bbxw0b5wHlGJY1WEVWAAAAAAAAAAcTs8hV4NssS-wnbFO-C_TawAAAAAAAABPkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4bWZWPptWisqbpRDA9X8cNgAAAAAAAAAMQTOrQSYTYRh-yjbunkD12QAAAAAAAAAMWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAAT6m_iZoL_FCwUKumi1bUrpwAAAAAAAAAVyDUTTZDU-v2QzoYKiWk9nAAAAAAAAAAGBa23Sz2WIr-h3_3ywbXOAwAAAAAAAACY0rSQWFkbcF9wInv7zP4FzwAAAAAAAAAa3GraiHROJsQD8vNYdRBuYQAAAAAAAADv9Q3jXpPN4T_VsifxYsaiJQAAAAAAAABDHfFlM3axnhO28EteQn-2WAAAAAAAAABJ5utt2dQ8HKrTepHdNpprxQAAAAAAAAFzUP7wzdQXo1Tc_iFi4DuZQQAAAAAAAAAE9ZOKtWsgasz8zygdckTZDQAAAAAAAAAEEVcCXOQnkebnZR5Z6XcBvAAAAAAAAAA0SLm5iQaRU0eNqFhBMIrYxgAAAAAAAAAXvOoArOQsiI-woapVIk9zYgAAAAAAAAA1NnsXqH-CVYMwVp_zbU78aQAAAAAAAAAIQunNj1oMDkHtmA3AacNPUAAAAAAAAAAFx14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAPZ5bymihzf4CQyWGMQZAZdQAAAAAAAAAOicPJ7tOGKK7zFdZdegZdLQAAAAAAAAAOPNgCVJJ6Nao1ZxcdhLCbWgAAAAAAAAAASVqTovndX3vgWwiNPDrUZAAAAAAAAMzzqjB_amR59Lv13Nhle_NwbwAAAAAAENS56tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "CANNBQIDBQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_0gKV2ZisrZ7u9Pxy3RvUg"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbFTZ3CKaS4aU08RhYA19y5ITQAAAAABtZi0Z3CKaS4aU08RhYA19y5ITQAAAAABuV_gZ3CKaS4aU08RhYA19y5ITQAAAAABtuKUZ3CKaS4aU08RhYA19y5ITQAAAAABtagwZ3CKaS4aU08RhYA19y5ITQAAAAABuN6U", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "slgUvSTKxzBwaU847WWWjw"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABazfcz5k14PsCcDvFyUC1kmlV3QAAAAABaQLqz5k14PsCcDvFyUC1kmlV3QAAAAABauKFz5k14PsCcDvFyUC1kmlV3QAAAAABLLaZz5k14PsCcDvFyUC1kmlV3QAAAAABK3dwz5k14PsCcDvFyUC1kmlV3QAAAAABHfOyz5k14PsCcDvFyUC1kmlV3QAAAAABHAaLz5k14PsCcDvFyUC1kmlV3QAAAAABHCkv6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW4J6tVKI4mSYDEJ-ABAIpYXcgAAAAAALW226tVKI4mSYDEJ-ABAIpYXcgAAAAAALUfw6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTsY6tVKI4mSYDEJ-ABAIpYXcgAAAAAALTpU6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimwC6tVKI4mSYDEJ-ABAIpYXcgAAAAAAimti6tVKI4mSYDEJ-ABAIpYXcgAAAAAAnKUV6tVKI4mSYDEJ-ABAIpYXcgAAAAAAis3L6tVKI4mSYDEJ-ABAIpYXcgAAAAAAi02F6tVKI4mSYDEJ-ABAIpYXcgAAAAAAiyFW6tVKI4mSYDEJ-ABAIpYXcgAAAAAAiyBw6tVKI4mSYDEJ-ABAIpYXcgAAAAAAKj-O", "types": "CQMPBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Hgkg_Kmgo0P1NY1bWt3zqg"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZyU", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lX6_U4PFMyyAKyc5PyNFEg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDg3XT4fd_WKeR1cE-hlLelCQAAAAAACw1x4XT4fd_WKeR1cE-hlLelCQAAAAAACwXE7XT4fd_WKeR1cE-hlLelCQAAAAAACwXIlXT4fd_WKeR1cE-hlLelCQAAAAAACi-CEXT4fd_WKeR1cE-hlLelCQAAAAAACi_lMXT4fd_WKeR1cE-hlLelCQAAAAAACiwZuXT4fd_WKeR1cE-hlLelCQAAAAAACiu_yXT4fd_WKeR1cE-hlLelCQAAAAAACiwXQXT4fd_WKeR1cE-hlLelCQAAAAAACiKCvXT4fd_WKeR1cE-hlLelCQAAAAAACiNH66tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEMf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAD7I6tVKI4mSYDEJ-ABAIpYXcgAAAAAAC-586tVKI4mSYDEJ-ABAIpYXcgAAAAAALX096tVKI4mSYDEJ-ABAIpYXcgAAAAAALXvR6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEf-_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAEf7L", "types": "FgMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "EwRlWIvafZgNvSviLLBxdw"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAACSDFGgtQ4kMk_MBWrPUAFqVnYywAAAAACSFYkgtQ4kMk_MBWrPUAFqVnYywAAAAACSGurgtQ4kMk_MBWrPUAFqVnYywAAAAABrKGxgtQ4kMk_MBWrPUAFqVnYywAAAAABqILOgtQ4kMk_MBWrPUAFqVnYywAAAAABrnxF", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "aFO2N7Q8fL-8kQlkLemsmw"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFoMFcEvvhuguaGYCmGWrnWRz1QAAAAACFd8-", "types": "AwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Fapb056I2fVdN7OPGzRPEA"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-wdyXT4fd_WKeR1cE-hlLelCQAAAAAACmJZ-XT4fd_WKeR1cE-hlLelCQAAAAAACmKMLXT4fd_WKeR1cE-hlLelCQAAAAAACgJHW", "types": "EgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pFwqiF8mGnNqqISBiOraPQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAACqGMNSe-6LTlpuiQTu86RdbwAAAAAAAAA1wTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATmQVHcTFXg4JaHxKFUu2SNAAAAAAAAAAK0qdPtfCOXWtTMQkqPpfTpAAAAAAAAAAD4pD3shcvlMj_8ybo7T2TVAAAAAAAAAFCS0Vcinvs4UXd1rhNSjovpwAAAAAAAABVbAlNhxIUaCZOzq5Go2-fDwAAAAAAAAAIUNi2PfJJ-vKG8q63OaknIAAAAAAAAAHcPDxaYxBC-l8PtK0orl2RQwAAAAAAAAETSZD9YVGYcY6t7-F09t_klgAAAAAAAACDMxRnrnRp5fRRlUEkyuK1rQAAAAAAAAA8LNiGyjoSSwLd2vmEwDcgqQAAAAAAAAAtRrirhtozDrKAAydohpmvZgAAAAAAAABXyJIhq1AV1i5dfSljhhE7KwAAAAAAAAAGcEzK6HfXk1srPlYKWH6y-wAAAAAAAAJBNyFYG970OiNszXfRwkg2OwAAAAAAAAHe5f2J_QOPLY4NcTNEeJRgKwAAAAAAAAAM3RDHMoI7l4jd8AQMzNs38AAAAAAAAAAg36oRMyUvgSK3WoVHEmkD5AAAAAAAAAALqLbCg5QZ5zqJ_Yvd37gLcQAAAAAAAABBOqAQCuAGfY3TOkkaJwPNYAAAAAAAAABQNDiNPs2SIuj4NddpL8knJAAAAAAAAAAC_OOeQuiXtvgynmE43QMbEAAAAAAAAAAAZHpec9nZGwrrhoUYM845NAAAAAAAAHO0_QYAzQdAagYTCI2yUMpa7wAAAAAAAO186tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEKj6tVKI4mSYDEJ-ABAIpYXcgAAAAAAADnS6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGJje6tVKI4mSYDEJ-ABAIpYXcgAAAAAAGIkH", "types": "CAMyBQIDBQQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "V0FscKR06PIQDFIotfIKkQ"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrkykgtQ4kMk_MBWrPUAFqVnYywAAAAABq7bsgtQ4kMk_MBWrPUAFqVnYywAAAAABq7GYgtQ4kMk_MBWrPUAFqVnYywAAAAABq6JkgtQ4kMk_MBWrPUAFqVnYywAAAAABq42MgtQ4kMk_MBWrPUAFqVnYywAAAAABqGtGgtQ4kMk_MBWrPUAFqVnYywAAAAABquU1gtQ4kMk_MBWrPUAFqVnYywAAAAABro5C6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEy_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFCKf6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBKI6tVKI4mSYDEJ-ABAIpYXcgAAAAAApw4S6tVKI4mSYDEJ-ABAIpYXcgAAAAAApwlp6tVKI4mSYDEJ-ABAIpYXcgAAAAAADMnI", "types": "CAMJBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3sCEoFWbinM5GJ3BUzAdHw"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--Y2XT4fd_WKeR1cE-hlLelCQAAAAAAC-uNGXT4fd_WKeR1cE-hlLelCQAAAAAAC-uBqXT4fd_WKeR1cE-hlLelCQAAAAAACi9vJXT4fd_WKeR1cE-hlLelCQAAAAAACi9bkXT4fd_WKeR1cE-hlLelCQAAAAAACi_d6XT4fd_WKeR1cE-hlLelCQAAAAAACiJXEXT4fd_WKeR1cE-hlLelCQAAAAAACiNJp6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEM26tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEAT6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFz876tVKI4mSYDEJ-ABAIpYXcgAAAAAAFzaV", "types": "EAMFBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "pOKIXPSdx-N8wuoQB9U_bg"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcYZBmumN7B74DCts0HLEQGQAAAAAAAAAVgDav7mSa1H0kLuPzayJt0QAAAAAAAAAmenCT2wT4vOCHFvMHhBSliQAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACmF7WiqgSdIb9xDGS5qVe3AAAAAAAAAA2fGeO8E0dKkjTaq21mlOYCAAAAAAAAABvFknJ5-CZ51G6cpnW10CJ5AAAAAAAAAAG7idFy4L9vdoMZ3WhQ5NciQAAAAAAAAArJzNd9DaLcJtE1FJX2lvlEQAAAAAAAAATKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAWJ8ucvlAYlVV3voUZhd041QAAAAAAAAAFjFXaUFWU5-qegk_YPBSVHwAAAAAAAAAE7Qo8IKpKLyniNUJ9wzpzPgAAAAAAAAAOKn7ai6R2nHAWrTfNWdUdrgAAAAAAAAAW9co7H4d1HBUDrZ_CqT6t9AAAAAAAAAAFYqilTZwyrgCHxD7ZEdwnpAAAAAAAAAABIzZjJeBcq6pQk1xgfHWRqwAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFiFzKQ1osn3wtTeR_3kGp_wAAAAAAAAAF-JAdXc6ZieAkMq7GDln2EwAAAAAAAAANUkkz7TICliMQmbQxZ0wSyQAAAAAAAAAmQjcJgCUAsytsXGSmYCNuVgAAAAAAAACLjyHYRKpoKiz_YdnlTFddHgAAAAAAAACYzR0NjJPPs8zyWwwQG_LNGQAAAAAAAACkdxSK3xE1ZB_w58ylB87r2QAAAAAAAAFtLu4BbYQNxvrnJvSur5jWAAAAAAAAAADxz_WaY2pXtLyni7L_8jKtBgAAAAAAAAAPEIpTc6zorXqtTjOVazk4HwAAAAAAAABogbCFQS2suYv46rP_aUsebAAAAAAAAABpmbtJBLFirmHoLdxa0M274QAAAAAAAAAGh6SWrdSzXfBtMfWpEhL_SQAAAAAAAAAE6pf_Dzk47Yjd2xEuqe_fEwAAAAAAAAC3OfxH2vk7SslvcgrXWFxmEAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfaN7fKxtCKDAoXV8Zue3MQAAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAEYzN7F6tLZe6mM7H1OD-sRgAAAAAAAAANhv8-_p6qfhr6ZdKlRrlVbwAAAAAAAAALBNrNtUxjbxaAxGXdc-eVXAAAAAAAAAABOMI6Q27dkZQjRDWwoDM78QAAAAAAAACh7At3N6jUaTq91gUXMCcsgwAAAAAAAAFDjsTFtBZdW_rD_BRYKXaS_QAAAAAAAAAXcqDrFg2lVIlEaumPl_y8qQAAAAAAAAAQZwv-_b7WeHEC8rYTp0PzyAAAAAAAAAAA", "types": "CAMwBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "V3E8ZRD3c2NXGI6JDwoBvQ"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAADB0YTZ3CKaS4aU08RhYA19y5ITQAAAAADA2zSZ3CKaS4aU08RhYA19y5ITQAAAAADAvlGZ3CKaS4aU08RhYA19y5ITQAAAAACxSEHZ3CKaS4aU08RhYA19y5ITQAAAAACxSOpZ3CKaS4aU08RhYA19y5ITQAAAAACB-Q2Z3CKaS4aU08RhYA19y5ITQAAAAABu5fFZ3CKaS4aU08RhYA19y5ITQAAAAABt87TZ3CKaS4aU08RhYA19y5ITQAAAAABt9JhZ3CKaS4aU08RhYA19y5ITQAAAAABt9j_", "types": "CwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "AIxtnf4ZytccTyNG23fGog"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qFvsddNGxnOi8XVXGV8dYgQAAAAAAAAAYqYsHCAcImIUjmmO1gdenlQAAAAAAAAAZ3Nv0giz1Hh9caeS_k2O_-gAAAAAAAAC2vb6qHSBLkgJE3mh56iUTjAAAAAAAAAAM8oD_6-PKkG7IDBNK-wP1XAAAAAAAAAAKsIeqh2jSM_h_4hkKW-ecGgAAAAAAAAAB55c6KE1Gzv9jLZFRXLxqQgAAAAAAAAAU02PTq9Jtr4iKE59hgBxlagAAAAAAAAAYIIYUCk6IK8gMEU2fn6wnJQAAAAAAAAAhmLFVu8DXaLHoY-5Gs0ULEwAAAAAAAAAPW4GHsDWvwLw2xRoJLl9_7AAAAAAAAAADQ6pbXB8sXS8CRivI5IuPxAAAAAAAAAADyTm-9MNIZqJ4aOXilobOGwAAAAAAAADRlMopnfBHMQ7R4ZeUvSHsCAAAAAAAAAAD7ubOsYlEqTZxYNoZCROO1wAAAAAAAAADSnuscF0tbXb_zlnank6kxwAAAAAAAAAIvbussj-QMZO635c5MGfv6AAAAAAAAAAD4cQgXibr0xyrpChPCPWEWQAAAAAAAAADMG9kooBy0Epoo1ZX3kuRmAAAAAAAAAAMiKaxpLusdxwd55Cj-SfoCQAAAAAAAAACYayEQsb3EQEEycy7q22aRAAAAAAAAAB_YNctlk7ApQX4WP711vJI-QAAAAAAAAAJJdsVUcUmyn-AMSKnqEmoAgAAAAAAAABuYNctlk7ApQX4WP711vJI-QAAAAAAAAAJ4nGRUH2jSVM54KACyi-aFAAAAAAAAAC-YNctlk7ApQX4WP711vJI-QAAAAAAAAAJMt1DHzo1jNsmWdnQq5kJYwAAAAAAAABOYNctlk7ApQX4WP711vJI-QAAAAAAAAAJPRXUWbsXb_Cr4ULsTgUKMwAAAAAAAADyYNctlk7ApQX4WP711vJI-QAAAAAAAAAJMsK4Bwxs_uq10wCeumAdWQAAAAAAAAAtv5H4heqrG-RfSN6JZIDgLwAAAAAAAAAuuny6BSDonpAkKlB1LldfXAAAAAAAAAAVo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAACHmyLhU9RcHRbUlpw2pkosAAAAAAAAAAYrXwuD2ZDCM1F8se01W9N5wAAAAAAAAAXCBErNceWpqx1qGdHmNHHIQAAAAAAAAATo0rUzqvaws3Dh4wJ69CLPgAAAAAAAAAC2j0HCl13xKfqjTWLL-96KgAAAAAAAAAQiODh53N_5E36y5qsIo39CQAAAAAAAABOSnLBK6Bu4vJyynj2PkjFiQAAAAAAAAAOX4eyAUaTXBTfPQNQu7X6DAAAAAAAAAAOuWCpZlX3JGJm412J5IFsLgAAAAAAAABSWd-wsKB-WM_I8gWE0C2UigAAAAAAAAAK7VymR8BqD9CbSLrlTGtYdgAAAAAAAAAqjUOioEgL9y6klFiTOk4p0AAAAAAAAAADrc_xGtzicdYsAs4DRTfidAAAAAAAAAAcAszzcogM1j3W5M9Q6_fCOQAAAAAAAAEEQpPozMwT9u3zC7nVdlyVMQAAAAAAAAAIfrr-8yCU41FP7ynT4TIpsQAAAAAAAAAEgD9pAArQSXL9gPSyVhbpxgAAAAAAAAAHlnUCyqDyVJYAXu-upQeomAAAAAAAAAACZk43mZ48MNKz-8sDUsL_rAAAAAAAAAACKhjys_tqUowZalyaQ3fQDAAAAAAAAAAIxfgBzvNqXjtLo-fOw_LghAAAAAAAAAACSrXvEyw1lhWwsb-TRCxpcwAAAAAAAAAEXEL8uypdAacLWMwpaKSA9AAAAAAAAAAMvyF93JW1Qe_ibMGrFnrVsQAAAAAAAAAD8g5GgzaRtndh1_mhtIHztwAAAAAAAACVnnCec0a2-ZcuYpnWUHHz2AAAAAAAAAArGzg_gcEywdxIXvx8_zTZ0QAAAAAAAAAFz0TmQagVnHgFdAowAPCojQAAAAAAAAAEMAV03uVftX-j0VYOYLhjMAAAAAAAAAACSiQqkZi_PQebtsnQ4dVCJQAAAAAAAAACi8uuylUIH4F1Fcj0a85AGgAAAAAAAAAFd2lcY0prSIbhkAi5ECyvfAAAAAAAAAAJbJt7Hnvv06ruHxwwr4EH7gAAAAAAAAAHSfqBjqw_vTWkpaOh9_lnyQAAAAAAAAAWAYbWOxZmjqP_JjIcE2B9BAAAAAAAAABWdZbEvj5KNLRaqtv4ShlGOgAAAAAAAAAHAvY-8GTrHONLnLoYn_aUmwAAAAAAAAAl9iPPrg1Y9vtWhMk7mXQ_KgAAAAAAAAAeuJZrofYGiqBpYJJdGGtLHQAAAAAAAAADzGZ_gCn-Ge9oHmah2m0JWwAAAAAAAAAD2p4Dyo36Ea--rGgiVt2H5QAAAAAAAAAYnKiJH8FKWMrWsgu4g1XUxQAAAAAAAAAQCW8gNBjX2WjN8L1kLc1-_QAAAAAAAAAAdtiM4BIZ8uj8Pj0m6lGJqwAAAAAAAXWAqFV6xhVekP5-uToPI32ragAAAAAAl6-TqFV6xhVekP5-uToPI32ragAAAAAAjhppqFV6xhVekP5-uToPI32ragAAAAAAjhOQ", "types": "CANOBQQD"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8J86z5adi7zJtjuGctS5Ow"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPUo", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uxA4A64BqMWXOrNZbvu1iA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcoiHXy47Qw5euydEoPUexRgAAAAAAAAAga67hy6D4_aH__IrzfMid7wAAAAAAAAABruRc-ZYmuV9h4Dh-4TM_yQAAAAAAAAAVQ3EmxWpEBbNOkdZOwR46OQAAAAAAAAAQZf4KmPLa6_uw8gRgiw9EUAAAAAAAAAE4ihprad0bkU-u2IU9StodIgAAAAAAAAEqfmVqFyGK_erbPbR830tm8gAAAAAAAAAPXgJxJ-tB1qb-u2fqUxCQQAAAAAAAAABEh4Lh6GnasWPDlVelT8lJQgAAAAAAAAAjpv2BnGF3DU5EF7_9vBhh5wAAAAAAAAAjj0GTyJD3lYhDegN7k1VG_wAAAAAAAAAI74qEjIejJXcKrFSlQB8PhgAAAAAAAAAFJQPywLxOZsn4VW068VxtgAAAAAAAAAAFvKQgPQ0wjIftRUZyC5K9ywAAAAAAAAANZf0w4S_WIxaQJn4-TjKTOwAAAAAAAAApu84jH0Fi4giPpR8JCVg2uQAAAAAAAAAFeEsPvNGYH982Mv0mPexpzgAAAAAAAABKpCzfcBWmfuBy5Y8wBxn9kQAAAAAAAAAMFGGSuaVpuuMHaXUzmpPEWQAAAAAAAAABUT1CLo52HplxPz6JwcoqCQAAAAAAAAAJlfjVNXK_x0C4X5O62984zgAAAAAAAAAFZbvmFtHvqv74jokq3XvBkgAAAAAAAACS2RfKfVPwyqKh_r9U1oFgUwAAAAAAAAAfTJNGpZ5zrxHIWzJGPowW7QAAAAAAAAAEJvETSNUFmQzhSgQRV87p_gAAAAAAAAAbe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACWZXdWkChUCjmBhCYfjJANcwAAAAAAAAA40s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAACQe3rNE0bZ_BElIa3hpFL9LQAAAAAAAAAI0s7uxPt4C0neZhw5beiboQAAAAAAAABZvNebmjSwemT2pcHYKHFrrAAAAAAAAAAS5D04LWfxRD5YVqvIVReLkwAAAAAAAAAmpYYnlcC5MRKImDilmGoYsQAAAAAAAAAA", "types": "CAMoBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jqtNscAcTM6hZXRdTqaMBQ"}} -{"Stacktrace": {"frame": {"ids": "z5k14PsCcDvFyUC1kmlV3QAAAAABGlXAz5k14PsCcDvFyUC1kmlV3QAAAAABc5-Qz5k14PsCcDvFyUC1kmlV3QAAAAABcnaEz5k14PsCcDvFyUC1kmlV3QAAAAABakmCz5k14PsCcDvFyUC1kmlV3QAAAAABaBsyz5k14PsCcDvFyUC1kmlV3QAAAAABaBLIz5k14PsCcDvFyUC1kmlV3QAAAAABHZsIz5k14PsCcDvFyUC1kmlV3QAAAAABKB57z5k14PsCcDvFyUC1kmlV3QAAAAABK3JF", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "RacUKMIrwwT1y_qD2hDfpA"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWM0HUcJIYlVV3vofrnZA_EQAAAAAAAAAFwkO70J8PTUJpfPh4iq24QgAAAAAAAAAENADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAAAWOo-Jar91HBUDrbCvN4Mq1AAAAAAAAAAFdpptNj2TDyK9YcbKw8llygAAAAAAAAABW9D_ahUN7evrE8NIbI96ywAAAAAAAAABrrbZ0HKe-J8ZElCatPN6uwAAAAAAAAAFLJuheAAsn3wtTorrVTYnTwAAAAAAAAAF60iALvVIT6xacnSmRvILXgAAAAAAAAANqr5_62ELns70MeFfkAoJ6QAAAAAAAAAm0GDZ0kstVgc85_nBZh3f0QAAAAAAAACLLPlt4oo-IpHI2h8d_e_PDQAAAAAAAACYMkPOQzkxpTZfvC1z0rAMgAAAAAAAAACHND1081BRZFYaMVgvbwz-GQAAAAAAAAFYOXXUWi3HnGXyNYANATzbXgAAAAAAAAGyVtVXhl6s6URamlTOMTdcGgAAAAAAAADmmuP6clMnO_x87qmA5qXiUwAAAAAAAAAEV9Wpi5-CDKWKSEhK-NNvbAAAAAAAAAAhxB00KDzyoofk7hNv-bTuugAAAAAAAABHd55u1lPodAfLflRouVTMDQAAAAAAAAAGZoqK5vOzV3kqWtcjvTTZzgAAAAAAAAANLWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGo-kTZjqjf1ewhEEwXGhsbQAAAAAAAAAELWxbmjqw9fP9oqHxogAn9gAAAAAAAAAGV3A14FfSyi9f2bwkJhRsiAAAAAAAAAAsSidn5oJ7A2M_efsiHDz05QAAAAAAAAAT0_jShB-DuV77HIBPKqBRjgAAAAAAAAAlR8XqrHwsSbyUWtEys51FcwAAAAAAAAAGCl1kgGCrmfrEoupeT-su1wAAAAAAAABmP39cIawm-GXmvXDrjAf_kQAAAAAAAAAUi9L3nP1oJZp3HlfubLaOlAAAAAAAAAAF2DhRBXrBsPziUW_wAGlaqQAAAAAAAABo5mFfstASu8Qeky6I-gL8pgAAAAAAAAEXnZcAdwBOPPRQ2hQm4YWwWgAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlscYYsnZ_Lwaqr0cHEPo0D185QAAAAAAVFpz", "types": "CAOVBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kwSNJ4ks9P4lHM_hMfcyhA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB6k", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jUHt5y4xbMsVQ2NY3U5mxw"}} -{"Stacktrace": {"frame": {"ids": "gtQ4kMk_MBWrPUAFqVnYywAAAAABrm9ggtQ4kMk_MBWrPUAFqVnYywAAAAADHn4ZgtQ4kMk_MBWrPUAFqVnYywAAAAADHoOkgtQ4kMk_MBWrPUAFqVnYywAAAAADHobmgtQ4kMk_MBWrPUAFqVnYywAAAAADHpLPgtQ4kMk_MBWrPUAFqVnYywAAAAADHkmPgtQ4kMk_MBWrPUAFqVnYywAAAAADHiCEgtQ4kMk_MBWrPUAFqVnYywAAAAADHiVygtQ4kMk_MBWrPUAFqVnYywAAAAADHdlvgtQ4kMk_MBWrPUAFqVnYywAAAAACGvt-gtQ4kMk_MBWrPUAFqVnYywAAAAACG4V0gtQ4kMk_MBWrPUAFqVnYywAAAAACG1xVgtQ4kMk_MBWrPUAFqVnYywAAAAABqJoK", "types": "DQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wkNFgmgAHEeZwvM9ZbPDWg"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuYNwZ3CKaS4aU08RhYA19y5ITQAAAAABt0COZ3CKaS4aU08RhYA19y5ITQAAAAABtwT0Z3CKaS4aU08RhYA19y5ITQAAAAABtFpzZ3CKaS4aU08RhYA19y5ITQAAAAABtnwrZ3CKaS4aU08RhYA19y5ITQAAAAABudBy6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFFQe6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFEre6tVKI4mSYDEJ-ABAIpYXcgAAAAAAFBxM6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSlT6tVKI4mSYDEJ-ABAIpYXcgAAAAAADSU76tVKI4mSYDEJ-ABAIpYXcgAAAAAAp1q0", "types": "BwMIBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "uf9UVmqLr0wj8jkOytmlgQ"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC--IHXT4fd_WKeR1cE-hlLelCQAAAAAAC-8UaXT4fd_WKeR1cE-hlLelCQAAAAAACxRlsXT4fd_WKeR1cE-hlLelCQAAAAAACxRdbXT4fd_WKeR1cE-hlLelCQAAAAAACxDqOXT4fd_WKeR1cE-hlLelCQAAAAAACxERKXT4fd_WKeR1cE-hlLelCQAAAAAACxFKsXT4fd_WKeR1cE-hlLelCQAAAAAACxF_pXT4fd_WKeR1cE-hlLelCQAAAAAACqV6vXT4fd_WKeR1cE-hlLelCQAAAAAACqWIIXT4fd_WKeR1cE-hlLelCQAAAAAACqVVkXT4fd_WKeR1cE-hlLelCQAAAAAACqVc3", "types": "EwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "j5hG8KKglQrQ3G7KSXA2QQ"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa87D", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "A998Aw2wlvaHmpTDQoJVWA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABY1tuGWwL6_w4YhNq4ejEUHQAAAAAAAAAA", "types": "CAMFBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "_Hmjwbizys6J1V2OuvGqAQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFwqgcEvvhuguaGYCmGWrnWRz1QAAAAADhEEZcEvvhuguaGYCmGWrnWRz1QAAAAACsrSecEvvhuguaGYCmGWrnWRz1QAAAAACsroGcEvvhuguaGYCmGWrnWRz1QAAAAACsosccEvvhuguaGYCmGWrnWRz1QAAAAACso6VcEvvhuguaGYCmGWrnWRz1QAAAAACsp77cEvvhuguaGYCmGWrnWRz1QAAAAACXrhycEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXuSNcEvvhuguaGYCmGWrnWRz1QAAAAACXrumcEvvhuguaGYCmGWrnWRz1QAAAAACXtc2cEvvhuguaGYCmGWrnWRz1QAAAAACXssucEvvhuguaGYCmGWrnWRz1QAAAAACXtfdcEvvhuguaGYCmGWrnWRz1QAAAAACXvWEcEvvhuguaGYCmGWrnWRz1QAAAAACLjD5cEvvhuguaGYCmGWrnWRz1QAAAAACLjdJcEvvhuguaGYCmGWrnWRz1QAAAAACLj_YcEvvhuguaGYCmGWrnWRz1QAAAAACLl-ZcEvvhuguaGYCmGWrnWRz1QAAAAACHhtbcEvvhuguaGYCmGWrnWRz1QAAAAACFpPEcEvvhuguaGYCmGWrnWRz1QAAAAACEOzk", "types": "FgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "XAkh0cI6mI0TEjgeMQjJRQ"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfk3cEvvhuguaGYCmGWrnWRz1QAAAAACEdtJcEvvhuguaGYCmGWrnWRz1QAAAAACEd21cEvvhuguaGYCmGWrnWRz1QAAAAACEf_KcEvvhuguaGYCmGWrnWRz1QAAAAACEUom", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "kvqyEWe3mfnleSrT6I-tHA"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66OFZ3CKaS4aU08RhYA19y5ITQAAAAAB610wZ3CKaS4aU08RhYA19y5ITQAAAAAB6vFgZ3CKaS4aU08RhYA19y5ITQAAAAABxhffZ3CKaS4aU08RhYA19y5ITQAAAAABxhwaZ3CKaS4aU08RhYA19y5ITQAAAAABxi5BZ3CKaS4aU08RhYA19y5ITQAAAAABxgvA", "types": "CAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "48ZFJTNDYJpyOFN3X2WN0w"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9RFpXT4fd_WKeR1cE-hlLelCQAAAAAAD9RPRXT4fd_WKeR1cE-hlLelCQAAAAAAD9R5HXT4fd_WKeR1cE-hlLelCQAAAAAAD9SJTXT4fd_WKeR1cE-hlLelCQAAAAAAD9SacXT4fd_WKeR1cE-hlLelCQAAAAAAEMg4PXT4fd_WKeR1cE-hlLelCQAAAAAAC-9-kXT4fd_WKeR1cE-hlLelCQAAAAAAC--RVXT4fd_WKeR1cE-hlLelCQAAAAAAC-7XmXT4fd_WKeR1cE-hlLelCQAAAAAAC-z7kXT4fd_WKeR1cE-hlLelCQAAAAAAC-1UKXT4fd_WKeR1cE-hlLelCQAAAAAAC-057XT4fd_WKeR1cE-hlLelCQAAAAAACi90EXT4fd_WKeR1cE-hlLelCQAAAAAAChWmLXT4fd_WKeR1cE-hlLelCQAAAAAACgUOX", "types": "EAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-Uz66tx2I5JTSXA6CNdimw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZ1i", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "mkFUdRqA_r18Eg2eao8QGw"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qJqokGYujMWAw4siq0i868wAAAAAAAAAf6ACqmKWSUegYVOk5FRj2_AAAAAAAAACHnliiCX4exwFhNaWWExWL2QAAAAAAAAACkGpy-6Axrjm2xCzJFK67CgAAAAAAAAAd_zTPw4W-fEbGBy_l_TaoKwAAAAAAAABVX3vNLlXVyKftCeY5HzEuDAAAAAAAAAG6SMh8IRbQlufFRqUZ5FoaFQAAAAAAAAArjCDQmNY6Xpp-DMtX2LlGZgAAAAAAAAAhclhaWL_s4ImtmRo0m-0KrwAAAAAAAAFJlICW2gRy3TXlIYomtjSJtwAAAAAAAAA5cYiYZLNw79YI2sv5ZzfISgAAAAAAAABnsd1-fzhWHGpZk5BbNZ95mAAAAAAAAAERuV9VJttm0goUzsky7YZbIwAAAAAAAACLXoncVs_RZ0C2CaElSEtZqgAAAAAAAAAV_jOWl9rQ0a9rjiw4HiJl9AAAAAAAAAFV", "types": "CAMQBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "riI11_6NUOJGpJKmwVPhYw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABc_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAAB0t-QeP6xIPsm3Ef5XNYDggAAAAAAAAAYqL8FaHgVdmRPKWLaaL6i3QAAAAAAAAAMpmDPo90patYnML-NuPnblgAAAAAAAAAphHi-c42PvbwAHHG7--kJBgAAAAAAAAC9bwzZcffGQ_Xfy1CH0OgBBAAAAAAAAADJOKEtUix2HJWtvCrDrfheVwAAAAAAAAAJnMeuu1XJcvZvKLj3D6xu_gAAAAAAAAABS5BR2ueGoaAxkLIj_xT88AAAAAAAAAAqDkUR0XHgP6Lm04e4ruEe3AAAAAAAAABNdPU-Fy0Jf8CyFdtCnYJ7IAAAAAAAAAAIi-4GrP60Jbwood3rLzWi1AAAAAAAAAACwZt4QZd5Wl87QA05fN5iDQAAAAAAAAAIbcZVdmCVQZDECINuyQR_7AAAAAAAAAAZwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFXkwrwjOS6nVGpR6C__HdAgAAAAAAAAAYHguOptCva-Qt5LF2U-NJjwAAAAAAAAA68NDDGpC6h_glZsYGhl3bbQAAAAAAAADu3H61XYEjDc3ZSP2PdyOABgAAAAAAAAAhSfB-oeBcWpraHjBGdigjZQAAAAAAAAAH7Ff5SrtHXzU4qH7XsJgEBwAAAAAAAAEhEYjuNmRJrJnJk8mNSTX2LAAAAAAAAAAhwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFfuHFrsCqH7YaTh8V39u2EwAAAAAAAAAQ_oQKauFbqUbWXpjVIJWTfwAAAAAAAAA4VOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAFFcONxiLpVthzRpXYOxEMGQAAAAAAAAAUNXOSw4mIaCiqE3IVDLF5_gAAAAAAAAAOfEiYEja4VdiU8ifU8vItEAAAAAAAAABsPtVMQQcIleOLw4oEyd-xxwAAAAAAAABaQQDDEPD_HEBkG6z3nPfSNQAAAAAAAAAoVOVXUzFWZBxRqlSbJ_OGWwAAAAAAAAASRaO3rK5YZuozQ0qHYsOXMQAAAAAAAAAF7ivCHlgEqv0xiNyMDWHzOwAAAAAAAAA_oFCe9j47g8fjqoHcNpNk3wAAAAAAAAAMq884D3SrvWum6J_31_DxKgAAAAAAAAAMwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF0MuXFawPpICiJNh5yZEjjwAAAAAAAAAQlhvHkorjDXPGNzTfFtintgAAAAAAAAAl9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATbPGPRDv1mVfrLWODFwT_VQAAAAAAAAAHrVOBHTqI_0fprNIXiAG4OgAAAAAAAAAKB6CZTBjoKgEykRE_QA6NwwAAAAAAAAAJF-3ttVYlonBAH0C0QNnxqgAAAAAAAAA6ohA7VKtlvRVRiL95E6Kc9gAAAAAAAAACWyKzZPf9H41VOsE_tFJwlwAAAAAAAAAgO0jF3TifKLShZDrS9YtGjgAAAAAAAAAOrN8OVoewhx9_Rg8TpFfqTgAAAAAAAAAF_tmowAuMt_ATc3LuQIkNBgAAAAAAAAAJO5U6U5WhZze-OA0bZxv4kQAAAAAAAAADTLC4KxDBUnDkS4JZ_h-j_QAAAAAAAAAbwvMd1a_-bXv6b_xtdQEkRQAAAAAAAAAMcn26IoO-8y2a5yC5a1ibFQAAAAAAAABbuW05YknQLOIO0-7mqqBrAgAAAAAAAAAH7Zab1kjxi9OJSrkYt0WxrgAAAAAAAAAjYuO8negre7Sf-lmPoxxRFQAAAAAAAAAvspzm-_Ca31VwijYVQAZSLAAAAAAAAAB7TuJIedgiwpK9-3BbSgy5QgAAAAAAAAABoQXmmb1DrrgmbEq20aTNxwAAAAAAAAAItv2GitaUyrjotiOalo5pXgAAAAAAAAADW7av6kFBL38jd5m72xNnHgAAAAAAAABgKZ4H-fBW3C6Xndni_eSq5QAAAAAAAAATxYo8aW0GAHtBLbVgKP6yVwAAAAAAAAAB0Oho76USTH9SXUdk9kUJ_wAAAAAAAAAEEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABIvOYsgO356rKWtYMDmDOhZwAAAAAAAAAIHmNoHhoSjlKHYuhVnL7tmgAAAAAAAAACIXQQ44cok-T_SndfV84TzAAAAAAAAABSEUNjihh0Re1G4wBFFz-KrgAAAAAAAAAIjA6JkQ0PFn46mJYMDk3jtwAAAAAAAABbXyIB1JXxkoOQjMae8CICgwAAAAAAAAAFbOb86QTSjl0Tbgl6WGMPVwAAAAAAAADNq5-VNNWJnEe4GvJK3_qvJwAAAAAAAAAA", "types": "CANqBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Wf7tYPnp7s196C4sU-0Jzw"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABuZCCZ3CKaS4aU08RhYA19y5ITQAAAAABuV8sZ3CKaS4aU08RhYA19y5ITQAAAAABtbFTZ3CKaS4aU08RhYA19y5ITQAAAAABtZi0Z3CKaS4aU08RhYA19y5ITQAAAAABuV_gZ3CKaS4aU08RhYA19y5ITQAAAAABtuKUZ3CKaS4aU08RhYA19y5ITQAAAAABtagwZ3CKaS4aU08RhYA19y5ITQAAAAABuOzgZ3CKaS4aU08RhYA19y5ITQAAAAABuWDuZ3CKaS4aU08RhYA19y5ITQAAAAABta-7", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "fRgvmW6OzWfmn-P-AvBcnw"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6sLpSNDzWiYDmLZi_Z1ZVETLoAAAAAAAib8rSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfrWrSNDzWiYDmLZi_Z1ZVETLoAAAAAAAfpuKAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qZuakkYQH3cBV7wefZCqVAwAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcxVElUvgmdiF2hCNekoE9wgAAAAAAAAAVrRgDrOD9mNwOES2mtujaQAAAAAAAAAAM9HJw1AcNel0sxysI8t-wFAAAAAAAAADdE8HSrAik84bM3Y8Ozjzz0wAAAAAAAAC4Ynf_MUQkDQVzhniQz6muHgAAAAAAAAMlBnVm-5KvPy1J6pivjqO0oQAAAAAAAAAOsIDuB2QR5vYhFugo8XKq2AAAAAAAAAAFRbfURDrLhSRLfAvNZi9cCgAAAAAAAAAC5A5k7wKgUR-9WNHmrqjyGwAAAAAAAAAPYHvoCxdR4GM-ot1OUIn44QAAAAAAAAAPMVq8YmAwgBj5NPTL5fNTvQAAAAAAAAAucSvCQL5bZ9lfqdXSQOeskwAAAAAAAAAI5g_sZRmopLQ6db2MGgkUGgAAAAAAAAAPyPy_wko9njFronX8E7CcQgAAAAAAAAAK9c8RRSv3MGzjv6GzNrzhqQAAAAAAAAAB_1ZpXyWwUvMENe1nbBnl2gAAAAAAAAABPK3ZQtl9-hPr3sHt9CgXkgAAAAAAAAARwTWZ6ExXroCTWtFkYXzHbgAAAAAAAAAF8DjWuv2ON9M4hqERzLLGrwAAAAAAAAA4jl0Few0KXqirBZp0WuOd2wAAAAAAAABV2CjidhF2o1l9AQQZ7O2_8wAAAAAAAAAVAmTcFForv1r91KDhJjsuQQAAAAAAAADdUVlIDr_FMx_kZCYsc8A86AAAAAAAAAAQ8T0AfTas4UaJM-evU8y7oQAAAAAAAAAU_zDk_N7NUcNRTqIuzYKxDgAAAAAAAAAgobA_YN1BhcTIsrqf5XOlGQAAAAAAAAAEfxBB-3BAu4XcVc0Zh58L7QAAAAAAAAAJHxwFNv8DwJmuLSpQ419gewAAAAAAAAAdaMzea5YF1p9DWzFcmq3VzwAAAAAAAAAQnbsBVHmpV2luDgffbdJNFAAAAAAAAAAWcRoGFhrzTt6STyxXzS_QFgAAAAAAAACzs7hdxBbMHWQxy2GABBYaPQAAAAAAAAAJF1o29QfZHCBrMaZ2mOeqvAAAAAAAAAAF2N7LlgD0lzw83YN_Bx-zZgAAAAAAAAAd9zPkZE4RJJmPlROxnxkxmwAAAAAAAAAE9P399qv1PUm-fcjEeECPlgAAAAAAAAABmfgswW5tnP--5haDnNTmnwAAAAAAAAAIudgPCGqbKhChfal6WK47OgAAAAAAAAAFI4bHbdqu4NiomiXC-qdndgAAAAAAAAFgSEJ4L9rNkUfC0VWzNbUViwAAAAAAAABIvF3EXYALHmjQtcdOOO4edQAAAAAAAAAUkyX4HuuLIjtT78u3tBP5uAAAAAAAAAAGAOgIpGcIjpuaWX5JFQA-_wAAAAAAAAAHMFqyYyMA6QeOFwV5IC1VmQAAAAAAAADXgEtqzxSW2T09YOfj4Wq1OQAAAAAAAAATm2ILrEK1YmDxo9niRj31tgAAAAAAAABEHRZBzmi--pIW2SbSHQb5jgAAAAAAAABLJdCwn38kQFolt808Z0rZSwAAAAAAAAAB9hTMtdP-Kaf579B6Djqy8QAAAAAAAAASYWXIxk3SU50xKaZayCzMKAAAAAAAAAAc_iDZMCcFI7BA-AS_7zsasAAAAAAAAACNenhFPgE8IS5vQWWEfmsQOwAAAAAAAAGv6IAXoYeI62bQppY-qjqJ0AAAAAAAAAF5N2e_V1FnhaoAEo890khZ-QAAAAAAAAAGQEcHhqXCi5-qkJh0R6a7kgAAAAAAAAADIYyFbgqASogbSUNUuP6bUwAAAAAAAAAONvzmWU9s6Ykk7vrfIyWaJwAAAAAAAACwX_bfXz5AFHkrYon-Qeo-kQAAAAAAAAHG6XSmObFSSfKQphH28GHZfAAAAAAAAALRs32p4AkG-DDWHE1uaAJ5MQAAAAAAAAAn8yw5xAkzQPNYncv2nxNJ2QAAAAAAAAAninLD7FTDiZ9QX8bC0I9L_QAAAAAAAAApsYti6chh3H8KzXctZah7uwAAAAAAAAAE7EAsiDF3uoTXazC89bRxpAAAAAAAAAAIpeI4q4l4-jzxMAY6KnhlVgAAAAAAAAAmzbjoTM6fVBg8CyNBFi4-kgAAAAAAAAACwi6IGN8qc6k-a5Oge6MluAAAAAAAAAAQEiFiDjtjvWXj4YGVaTJXOQAAAAAAAADjHAPuRG_LRRYFUeA5sYpd1gAAAAAAAABEs4zVuFE809K66EfKcw5rKwAAAAAAAAAQd1GrTiKrlelSEUD78AN9iwAAAAAAAAGrauNwTX46Nq4EeEhNv4i6ZgAAAAAAAAAW8I3EtewC4dcEYoiRpxzXpgAAAAAAAAARMcOo9SSCfgqj14t3xDm01gAAAAAAAAATn-BD459aSOA4JmuYxWtZ3gAAAAAAAAAHrTxaKzkbha_JID224cs5EwAAAAAAAAAHr2p-9d0QpDfcdk32QsPfVQAAAAAAAAA2h9JxRYZ-Y8EVIiI8sDoSGAAAAAAAAABVN_pUSQ-9lnubUvA5GPAV8AAAAAAAAABBHjwmgDoyi_FLJh0vwPhLsQAAAAAAAAAb-AsoQW73iFI5fH1Iwzki_wAAAAAAAAAAZHpec9nZGwrrhoUYM845NAAAAAAAAKrBogCgWMgT5mMAMhpNA0IMiQAAAAAADzw9", "types": "CANVBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "-uvhrHdtYBwaSTwW97ffvg"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAACh0zS1NmuNXqOaWlDl-ljfvsBcwAAAAAAAAlR", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "S05AC4-RVY5vRimCgolcQQ"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAANNFUL9Bd3XIiGWasJdN8trI5tgAAAAAANRA5L9Bd3XIiGWasJdN8trI5tgAAAAAANHhmL9Bd3XIiGWasJdN8trI5tgAAAAAAFBmsL9Bd3XIiGWasJdN8trI5tgAAAAAAFAtEL9Bd3XIiGWasJdN8trI5tgAAAAAADRXJ", "types": "BwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "8nNNC34bhCi_Q3XemgSrmg"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABYpqL9Bd3XIiGWasJdN8trI5tgAAAAAAA10VL9Bd3XIiGWasJdN8trI5tgAAAAAAA1LtL9Bd3XIiGWasJdN8trI5tgAAAAAAA0YUL9Bd3XIiGWasJdN8trI5tgAAAAAAAqzPL9Bd3XIiGWasJdN8trI5tgAAAAAABcqw", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "PO3q1woza9yi3RpmXDEueA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB8C", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3QVerrpALkFsA-z-U___AA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcUjvSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeXyB", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "wb8Q-SnAsfDM-7Ktdo9WMg"}} -{"Stacktrace": {"frame": {"ids": "Yxe-SHgukLEpCkawSk1QWAAAAAAABo4gYxe-SHgukLEpCkawSk1QWAAAAAABXV8tYxe-SHgukLEpCkawSk1QWAAAAAABWBOeYxe-SHgukLEpCkawSk1QWAAAAAABWB4EYxe-SHgukLEpCkawSk1QWAAAAAABV_2nYxe-SHgukLEpCkawSk1QWAAAAAABWCYg", "types": "BgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "lN0VQOhN39IOJVND--OWWA"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbDPcSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa-JlSNDzWiYDmLZi_Z1ZVETLoAAAAAAAa863SNDzWiYDmLZi_Z1ZVETLoAAAAAAAbB65SNDzWiYDmLZi_Z1ZVETLoAAAAAAAaZvM", "types": "CgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "5oBHen4DGgt6AeseHpHNhA"}} -{"Stacktrace": {"frame": {"ids": "klPbOjidNHRsFecU34u2tQAAAAAAAAlaJD-mlhc2khMaMvypB7uCowAAAAAACvxIJD-mlhc2khMaMvypB7uCowAAAAAACrBZJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNLbtJPgD2DsxuaRUZZI3jKQAAAAAAAAG1JD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAAA1NrJD-mlhc2khMaMvypB7uCowAAAAAAIg7EJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNLbtJPgD2DsxuaRUZZI3jKQAAAAAAAAG1JD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAAA1NrJD-mlhc2khMaMvypB7uCowAAAAAAIg7EJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNLbtJPgD2DsxuaRUZZI3jKQAAAAAAAAG1JD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAAA1NrJD-mlhc2khMaMvypB7uCowAAAAAAIg7EJD-mlhc2khMaMvypB7uCowAAAAAAIVoi-lloRzsC44KWcskRXy_mhAAAAAAAAAAFBgl4-X9YCYcvVnIszn2YNAAAAAAAAABN-3warYDsZ5Hs6M1Va9RuVAAAAAAAAACPb0dgoqPkuWglB1BhrIMdSwAAAAAAAAGlMb_Jdpw0erVZ6fHR2qcsCgAAAAAAAALodAW0PGH_CijXXW-uSyrx6AAAAAAAAAGl1h7ZuibHxmv9wrbEMnyQaAAAAAAAAAGJID7BrwgJSBosWED19qH1QgAAAAAAAAEubaBm99KHpwHnMQW1MMiDCQAAAAAAAAA-bJ0Ky1WXKMEGxtNwnImFjQAAAAAAAAGNLbtJPgD2DsxuaRUZZI3jKQAAAAAAAAG19OSIwt7_UxT7zZoUvqu4WwAAAAAAAAAvGECkj5EzwizbnHTSy11lwAAAAAAAAACsIWCarP2Cg-zGilSmP2FwvAAAAAAAAAAxPF46WYS52oqKW28TVdZwhwAAAAAAAABl4SjPzL5sRJ4NoaPppbKRXQAAAAAAAAAyzV-zz_SMeRtFDojkROWSSwAAAAAAAACIZtRK4uMy_Wfw-N_iQmSerQAAAAAAAAA1qtNW2Hg_2f_0M1iSBcGbyAAAAAAAAAAVoGmEXpJvjzbRv2r-bFFlfwAAAAAAAAA7EI5wLwdv0nxJGTj51HGsnwAAAAAAAABpqs9QVbSai1fV6zxJyggieQAAAAAAAABfBUIjEExV8zypjFmSEDklUAAAAAAAAAA8WVw4-tNMtcGbe_AUExiiqwAAAAAAAAFTgO6kDS9N3EuxPdxaJ2XycwAAAAAAAAIChVIXRptYWdYbTtDZhNkyZQAAAAAAAAJEfQmBDS59foxFPsSMJZb9xQAAAAAAAAE_FZMomjWJJ0nF52fd5MCJjwAAAAAAAAAbcNfqzNIuM2moCdDAPZaMPwAAAAAAAAGhwnDqzjdjMz5CchEHZ6EsYQAAAAAAAACtuos5blq03yBGQs7NU0gUPAAAAAAAAAAcPC7g5B1i9o9S-ujXLSZgkQAAAAAAAAICwzMH_4T8_2TQ5oMMj_87zQAAAAAAAAA9LWN9jIx2nEE6yZjMuaDPawAAAAAAAAAGe2uWgKIDMT4N-L-tsrAnsAAAAAAAAAAQA1THegAXTfv6XrMMu5_78AAAAAAAAAAVj7DDlSF8lqr2vW0364KpMQAAAAAAAAAVLWN9jIx2nEE6yZjMuaDPawAAAAAAAAAGe2uWgKIDMT4N-L-tsrAnsAAAAAAAAAAQ_tk_pJhUkQORC8bHHTFf2wAAAAAAAAAbJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAAA1NrJD-mlhc2khMaMvypB7uCowAAAAAAIg7EJD-mlhc2khMaMvypB7uCowAAAAAAIVoiCe11JNj6CHxvgvTjEqpINAAAAAAAAAAbLWN9jIx2nEE6yZjMuaDPawAAAAAAAAAGe2uWgKIDMT4N-L-tsrAnsAAAAAAAAAAQWFVy8ut4LPnLUpwUFH-HpAAAAAAAAAAr2AKyo8gq7bsW8f5lUqQNswAAAAAAAAArLWN9jIx2nEE6yZjMuaDPawAAAAAAAAAGe2uWgKIDMT4N-L-tsrAnsAAAAAAAAAAQWFVy8ut4LPnLUpwUFH-HpAAAAAAAAAAr2AKyo8gq7bsW8f5lUqQNswAAAAAAAAArLWN9jIx2nEE6yZjMuaDPawAAAAAAAAAGe2uWgKIDMT4N-L-tsrAnsAAAAAAAAAAQWFVy8ut4LPnLUpwUFH-HpAAAAAAAAAArJD-mlhc2khMaMvypB7uCowAAAAAAIPSYJD-mlhc2khMaMvypB7uCowAAAAAAIBHyJD-mlhc2khMaMvypB7uCowAAAAAAIMCeJD-mlhc2khMaMvypB7uCowAAAAAAA1NrJD-mlhc2khMaMvypB7uCowAAAAAAIg7EJD-mlhc2khMaMvypB7uCowAAAAAAIVoi2AKyo8gq7bsW8f5lUqQNswAAAAAAAAArLWN9jIx2nEE6yZjMuaDPawAAAAAAAAAG_wKjyluEXlCffpVzynun0AAAAAAAAAAQJD-mlhc2khMaMvypB7uCowAAAAAAITj3JD-mlhc2khMaMvypB7uCowAAAAAADQ5EJD-mlhc2khMaMvypB7uCowAAAAAADNrwJD-mlhc2khMaMvypB7uCowAAAAAADNhEJD-mlhc2khMaMvypB7uCowAAAAAAHbNUJD-mlhc2khMaMvypB7uCowAAAAAAINIK", "types": "BAMLBgYDCwYGAwsGBgMoBgYDDAYGAwMGBgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "jcBkdPt8EyvUbg8R86Rk3Q"}} -{"Stacktrace": {"frame": {"ids": "ogCgWMgT5mMAMhpNA0IMiQAAAAAAD-jc_QYAzQdAagYTCI2yUMpa7wAAAAAAAH6kSNDzWiYDmLZi_Z1ZVETLoAAAAAAAvKDmSNDzWiYDmLZi_Z1ZVETLoAAAAAAA6w2MSNDzWiYDmLZi_Z1ZVETLoAAAAAAA9J18SNDzWiYDmLZi_Z1ZVETLoAAAAAAAcPIGSNDzWiYDmLZi_Z1ZVETLoAAAAAAAeVmiSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcR2ZSNDzWiYDmLZi_Z1ZVETLoAAAAAAAcP5q", "types": "CQM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "9NG-4Nz_av4xih9kQ0ul7Q"}} -{"Stacktrace": {"frame": {"ids": "XT4fd_WKeR1cE-hlLelCQAAAAAAChzIAXT4fd_WKeR1cE-hlLelCQAAAAAAD9PlJXT4fd_WKeR1cE-hlLelCQAAAAAAD9PrZXT4fd_WKeR1cE-hlLelCQAAAAAADHhnOXT4fd_WKeR1cE-hlLelCQAAAAAADHhwHXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAADHgAhXT4fd_WKeR1cE-hlLelCQAAAAAADHgxrXT4fd_WKeR1cE-hlLelCQAAAAAADHf1pXT4fd_WKeR1cE-hlLelCQAAAAAAD8TArXT4fd_WKeR1cE-hlLelCQAAAAAAD8TnEXT4fd_WKeR1cE-hlLelCQAAAAAAD8T0SXT4fd_WKeR1cE-hlLelCQAAAAAAC-utkXT4fd_WKeR1cE-hlLelCQAAAAAAC-t39XT4fd_WKeR1cE-hlLelCQAAAAAAC-we0XT4fd_WKeR1cE-hlLelCQAAAAAAC-wCEXT4fd_WKeR1cE-hlLelCQAAAAAACkR-sXT4fd_WKeR1cE-hlLelCQAAAAAAChWRRXT4fd_WKeR1cE-hlLelCQAAAAAACgUXyXT4fd_WKeR1cE-hlLelCQAAAAAACgdET", "types": "FAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DXipnObSe0dCYjfUl0jbxA"}} -{"Stacktrace": {"frame": {"ids": "634wiWh6F21tPpXr0Zz3mgAAAAAAEfFi8NlMClggx8jaziUTJXlmWAAAAAAAAIYIZSkKN3zNxr0HYuO2pqe5hQAAAAAAwcBwZSkKN3zNxr0HYuO2pqe5hQAAAAAA5ECvZSkKN3zNxr0HYuO2pqe5hQAAAAAA4_9_ZSkKN3zNxr0HYuO2pqe5hQAAAAAAj7b5ZSkKN3zNxr0HYuO2pqe5hQAAAAAAgwXKZSkKN3zNxr0HYuO2pqe5hQAAAAAAgu3UAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8q1I0e-5G_SZK_x73jT5XLYQAAAAAAAAAL79oV5sP-J3yps9pMow1qNAAAAAAAAAAFnB1aJ0RC5jjZQRrK59KJIwAAAAAAAABc4JQqkFvm0YZvatJnibQXiAAAAAAAAAAVXYoHt3UROpdP-PTQpV__OQAAAAAAAAAmB4whtrfnaTSHGModLedLLwAAAAAAAAAFDk85LW9HyxD9vcA1wyDoDgAAAAAAAAACkYDXBO5SkBxFVe0Sldgb5gAAAAAAAAA2JmUwuALYuz7J8pWH7Gnx7AAAAAAAAAAbFB2lbICPeg4uVJ_bp0LkUgAAAAAAAAAZEs-JdNswBBYy0dgOuoAxgQAAAAAAAAAENMPX1MdtzuRZ2k27VY7qAQAAAAAAAAA65XwPSHlCFfN_R3hNCEsGggAAAAAAAAArId-ripUWhn1V9drGRfOjGQAAAAAAAAAt", "types": "CAMPBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "WGa9qjf8wQqVaf6Gdp-z_A"}} -{"Stacktrace": {"frame": {"ids": "pp6LgRqCGeGjs7cnnwItcAAAAAAAD83CeJ7BYIhIN72fM2Cz8k8m9QAAAAAAAIFJsTGLCNH21piOrMPoln5uBQAAAAAAxXoWsTGLCNH21piOrMPoln5uBQAAAAAA7sFesTGLCNH21piOrMPoln5uBQAAAAAA7njLsTGLCNH21piOrMPoln5uBQAAAAAAkiR_sTGLCNH21piOrMPoln5uBQAAAAAAhnLbsTGLCNH21piOrMPoln5uBQAAAAAAhlf0AAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qIhn5y3aUSH0SbJMgByz2sQAAAAAAAAALHQaseND-R9Eij_93pefSLwAAAAAAAAAF4Nbh2qu5FSYDYvePocfslwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPbg3bxycAbj268bN7ebHNQAAAAAAAAAYQvRQT4coI-PzIgrx5HI5cAAAAAAAAAAM0qjoqZl267F0DC5OJqPG4gAAAAAAAABpHBtR9_WOMYvrJ8dEc0qpTgAAAAAAAADH7mHxj6ex12vLxxC3BCGBSgAAAAAAAADJD7No12t1lMzlOf32q04HAAAAAAAAAAAJSLTycpvJcvZvKONGc1TOvgAAAAAAAAAByDhpbqgW_DW17T8_Sh39QgAAAAAAAAAqco4kdxqTWMp4ZBVBAoUGKQAAAAAAAABNTAR6l89VN_4_uhrTdir1MgAAAAAAAAAILD6UzhZ_oYl4ljutvvYPEgAAAAAAAAACr98FFn1qa5eYYNwkaw4apgAAAAAAAAAIiXE09wsufQpbcJFrBbH5RAAAAAAAAAAZdswq7UFB-c5kE0TfryCD4gAAAAAAAAAFINOcODSqL3JdpbkJIMXMVwAAAAAAAAAYIHqK6EVdvAYfMHTCbA83XwAAAAAAAAA6o8jWT_AGiHDMeEUtgtoNGAAAAAAAAAEBegxYzGb2aYe2691ohXwNJgAAAAAAAAA7cRDi80GdZ6M6VVqBiq3ZdAAAAAAAAAAFbdDHvEFMR-a7wkeVjQNwzwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABPKRF4wJDKb2Ir_7zmBYzagAAAAAAAAATfFdJSLTbnU7RRuB30GoVZAAAAAAAAAAK7VuKWRyOXWtTMY28mQZqtAAAAAAAAAADXsky9cTDpKcm_kOUJgRO_wAAAAAAAAGV62YI4UQGzJYoqSNJQeEjWQAAAAAAAABqVb0C_sYOU5d3eeu0yalLowAAAAAAAAAImLfjq87DJtmgQUOWZb8qsAAAAAAAAAHcsWO8JE0tCt_to2b5Aa2uZAAAAAAAAAETM5dg018SyR5wq8ziifZ2mQAAAAAAAACDJiw9vRJF4EkrJZ3CsDEYbAAAAAAAAAAproTQ2x4u1u0ROVEifn0kaQAAAAAAAACHhQj1w50CfP8YweEdnC-JyAAAAAAAAAAEr8runDm4rOcHO76XR-D7jAAAAAAAAAAMqCAXb4nsA8MBowrcfqVWbwAAAAAAAACCbem31qqzjUFpI7bh8w8-nQAAAAAAAACjeIKZHUnkOnlIeLcFKA7B_wAAAAAAAACcBYItgZpVD2E3ydG9PJ9meAAAAAAAAAApUepoRzuMTBR-jFpLlu_fPgAAAAAAAAA0tW1ONDyoCZkpOb4VQBh9egAAAAAAAAALcx_5Zli6ZQBZEsnw0z8RFAAAAAAAAAAjDVSkUfLwOzQuwgYi6TvurAAAAAAAAAATsFs-DxXlXTzn3bVNvCe0KwAAAAAAAAAEvu1niHfy-hSLbNHl3l8G6gAAAAAAAAABGPK7pyl3RjtyKa9WtooOGgAAAAAAAABf", "types": "CAMyBQ"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "DBbDg0Db98hCosBBvxLmXg"}} -{"Stacktrace": {"frame": {"ids": "Z3CKaS4aU08RhYA19y5ITQAAAAABubEQZ3CKaS4aU08RhYA19y5ITQAAAAAB66UmZ3CKaS4aU08RhYA19y5ITQAAAAAB6-vFZ3CKaS4aU08RhYA19y5ITQAAAAADCS9UZ3CKaS4aU08RhYA19y5ITQAAAAACtIpzZ3CKaS4aU08RhYA19y5ITQAAAAAB67dFZ3CKaS4aU08RhYA19y5ITQAAAAADCUYgZ3CKaS4aU08RhYA19y5ITQAAAAACtGOVZ3CKaS4aU08RhYA19y5ITQAAAAADCOQ6Z3CKaS4aU08RhYA19y5ITQAAAAADCN3mZ3CKaS4aU08RhYA19y5ITQAAAAADKbzqZ3CKaS4aU08RhYA19y5ITQAAAAADKUSuZ3CKaS4aU08RhYA19y5ITQAAAAABtHkpZ3CKaS4aU08RhYA19y5ITQAAAAABtHLPZ3CKaS4aU08RhYA19y5ITQAAAAABtQzS", "types": "DwM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "z0qb5lnO7jV9ZiYyxxUpVg"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACFu1icEvvhuguaGYCmGWrnWRz1QAAAAACFlQ1cEvvhuguaGYCmGWrnWRz1QAAAAACEfpKcEvvhuguaGYCmGWrnWRz1QAAAAACEgJx", "types": "BAM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "NobRtV28TztWPphel-_oog"}} -{"Stacktrace": {"frame": {"ids": "cEvvhuguaGYCmGWrnWRz1QAAAAACP7OzcEvvhuguaGYCmGWrnWRz1QAAAAACP_tI", "types": "AgM"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "Q8rLi45IFUbGCdbAHGZ4vQ"}} -{"Stacktrace": {"frame": {"ids": "L9Bd3XIiGWasJdN8trI5tgAAAAAABanQL9Bd3XIiGWasJdN8trI5tgAAAAAAKkiFL9Bd3XIiGWasJdN8trI5tgAAAAAAKfbaL9Bd3XIiGWasJdN8trI5tgAAAAAAKfEoL9Bd3XIiGWasJdN8trI5tgAAAAAABqvmL9Bd3XIiGWasJdN8trI5tgAAAAAAFlDpL9Bd3XIiGWasJdN8trI5tgAAAAAAEl1HL9Bd3XIiGWasJdN8trI5tgAAAAAAER8eL9Bd3XIiGWasJdN8trI5tgAAAAAADHTjL9Bd3XIiGWasJdN8trI5tgAAAAAAB-zZL9Bd3XIiGWasJdN8trI5tgAAAAAACA4_6tVKI4mSYDEJ-ABAIpYXcgAAAAAAwACL6tVKI4mSYDEJ-ABAIpYXcgAAAAAAAEIG6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWzp6tVKI4mSYDEJ-ABAIpYXcgAAAAAALWwd6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL5eG6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL47I6tVKI4mSYDEJ-ABAIpYXcgAAAAAAL4VK", "types": "CwMHBA"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "3gm_ZN3iF76tH1hRk5YEPQ"}} -{"Stacktrace": {"frame": {"ids": "qjB_amR59Lv13Nhle_NwbwAAAAAAEfEyvQ7EacG6CR4rzcFaNFEsTQAAAAAAAIYIYsnZ_Lwaqr0cHEPo0D185QAAAAAAyTYXYsnZ_Lwaqr0cHEPo0D185QAAAAAA5F_vYsnZ_Lwaqr0cHEPo0D185QAAAAAA48YdYsnZ_Lwaqr0cHEPo0D185QAAAAAAlTEtYsnZ_Lwaqr0cHEPo0D185QAAAAAAiEFRYsnZ_Lwaqr0cHEPo0D185QAAAAAAiCkkAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qvj9KWV7ATkWJJTMhiLlh8wAAAAAAAAANTa-wbK0BNd9K2A470omx8wAAAAAAAAAFx69oGDnn9-Q70zg0yENhkwAAAAAAAABcOmzVUgwY22EPoqShuZpT1wAAAAAAAAAB_pf6RlrRVbHIjJBXusiLvgAAAAAAAAAncwKD6wgqD03tpuomHWA1VAAAAAAAAAAMu5vAXtVp9d4wvRuocarrCAAAAAAAAABpkptqAf2DOdNTQQu52rpM3gAAAAAAAACqPJJRZpwO2yOVyjUgLVVt-QAAAAAAAAC9wtq1rh0kPcnhm3dehZEyugAAAAAAAAAz5h_x3DWmOz8VIG9_VAD0HAAAAAAAAABm9Zahk-1cqT1ZM_gvCtd7JQAAAAAAAAAaRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTCG4af_JTpWiKD6yl45wSwAAAAAAAAAYTM-FFtf6UJRBJp2QFKhFgwAAAAAAAAA7hfr8gSfTBHDi3nB85Aj3VAAAAAAAAADKFHmqnwoRLZTiOtbOugfu1wAAAAAAAAAeo0hm06-cLkn8_d3Wa8om5gAAAAAAAAAb7M8FPnN7Hq8fgi1U4GGEugAAAAAAAABAG_m3QDvUNiRwCW9GUDCpQwAAAAAAAAAwP0aMnnZjQkFuYV4Xte8MUgAAAAAAAAAeDLJ-wabvU5yhY1l7UzqxNgAAAAAAAAAM0wmhgaiG_YNdcri9cpVpogAAAAAAAAADV0DLOPGY9h7VEozIU7B7OQAAAAAAAAAMYuFRqUWC2dt608XUwtEIRQAAAAAAAABwBSSHdcDrfxhJYR_pl8U8VgAAAAAAAABGRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFTtR77-iVwHd1W-dedkbBQAAAAAAAAAAI_TFhPF4PLQGeqs-oPUuzgwAAAAAAAABMRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFEbmJdG2t-RBs3brSkct7HQAAAAAAAAAQbMzaZATN1l7AUFoobYOAAgAAAAAAAAAxRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFLOO7StXh6esxEXuTjm8T0gAAAAAAAAAIl7U3ml7f2_vVtVCQjrIATgAAAAAAAAAWkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAASRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFlm-XJDFh7ENnbSwnD_HOPwAAAAAAAAAUIAg97-IO-VMg9H1Gj7LBkwAAAAAAAAAS9kietkvv7S77zKWxgixZjwAAAAAAAABpHOdqGlOl5G4fyBv7lq2-VAAAAAAAAADr4M7YPHJs-s48WlQKqWc80QAAAAAAAAFtsF_YVRjBiPN5mfH4q_WehQAAAAAAAABDTvfGKtfFlcnXcoG5rV8rFQAAAAAAAAAGY3x9QXAOfHkWwEWS3xofjgAAAAAAAAAJ3dMdXm2BcuhRZiE6yMhDcAAAAAAAAAAgRsqyK_7VyS32TvNIVPkv2QAAAAAAAAAFHDK8__dlE-AoQGBiDmXadwAAAAAAAAAcOjvPQ5fmr7USI7dgYlFDbgAAAAAAAADTkKGTpbBfgcr2Zy_3y4Q-AwAAAAAAAAAS2tLNICxYZuozQenxztpj2QAAAAAAAAAFRiyaDZWrYoZ_Qv7vfT5xiQAAAAAAAAA4oAocDZn4BzWp64gjlgLSXwAAAAAAAAAkffbOe9M5qyzsF-UHcB06EAAAAAAAAAAO9QWyFU2pKYfVBJH9Oi6ICQAAAAAAAAF1KiuRpTMprQriC2lNirrb4wAAAAAAAABAwagf_HCTAbfVE_k37p5bHwAAAAAAAAE4Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlvMgb9ybFueXylUIb_E_TiQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl0pik9Obvsa6G-wUWjB6N5gAAAAAAAADYBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlm6DukRuoBGn25PtbhUDv5wAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAlnogIwK3AchEnWGOPGCN6LQAAAAAAAADLBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl6L63fpgszHipLsdjI8HpxgAAAAAAAAC7Bz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAl-FHEsFFINIcXjJ1PouUSuQAAAAAAAAAGmRpiA072sWnuzRZFuwjVhQAAAAAAAADhBz0qZF8UuWmfJAKJzxTpkAAAAAAAAAAFPiOrKx8ttRLABiq6GioeqAAAAAAAAAAyWiRzhRWdZ6M6VVTdW0H5qAAAAAAAAAAFa4Ee0kL33laYREZz55sqWwAAAAAAAAAOOmzVUgwY22EPoqShuZpT1wAAAAAAAAABIrNa0_xDHM5pQ0IXpPFNIAAAAAAAAAATnB6_4jUC-8Udf2LLExTzSQAAAAAAAAAKZEmTi7arcnnQUqeW8qzKIgAAAAAAAAA6OmzVUgwY22EPoqShuZpT1wAAAAAAAAAB5HL_FJ9Eo7P_go50x-0u2AAAAAAAAABw0WDpZKYg7XmmyjyStqqvFgAAAAAAAAANJootPmzqoooIzgXdd2xH2AAAAAAAAAASxiadjaMGgQKvGOi3zMIHPQAAAAAAAAC3fl5eCchuTXp-rAzON1qrRQAAAAAAAAAQL-Yan4Fe1yGb1qGKN4fWZgAAAAAAAAAI1Asoi1frxnZcfhbGbZjMngAAAAAAAAAc7NR0jbOQlaZeFEWcKIy1CgAAAAAAAACgUWue9Vo1qBkmWAHSKXsFCwAAAAAAAAAJTCRTnetVFgN_OTjaaZWcmwAAAAAAAAAYI6mzpa6QLzu6Ui05urz3bQAAAAAAAACHWAYvquCuheRW9mxTkj_2YwAAAAAAAAAFjQWANZrMPDFk0n7awqzZRAAAAAAAAAA9TIPcuO_13mszaKfYH7-tlAAAAAAAAAAHpnzPou3gFrGrThBtxQHp_AAAAAAAAAAIh7Bs1R4R3Tm0Nxa-4OtEmQAAAAAAAAABrthKnkNDFgynN38bWPneAgAAAAAAAAAIRJDxTVlP24il9iEEPCo5ZwAAAAAAAAADz3A_MA2VleZ7zSj0ee4JogAAAAAAAAAiMtOOCUl9OwNOIdQuDgKbNwAAAAAAAAAGqAcwZu8wAPn7u3FXMR5KjwAAAAAAAAAgNADamcz6VgHxdsqQ-H3gJwAAAAAAAAAOkJCg5l0wTnKMeEYikbvwfwAAAAAAAABWyt_cpdTtBVWXz_YP1okGcAAAAAAAAAAUIcdeXxipoRVqav0jM_5DLQAAAAAAAAAFy3suxdda7-517ccPeU80LQAAAAAAAAABxgPPuzI1J0KcF5WhFpW09gAAAAAAAAA0E9rVQyfXmRnEPhP5-Uw5UgAAAAAAAAAELJHrWrJn2NgzCwphqZHUTAAAAAAAAAAIxgPPuzI1J0KcF5WhFpW09gAAAAAAAAA0h7etdb4LVAEPlLKOTYCzyQAAAAAAAAAcODJxpePHpW__WCCRpgG0AQAAAAAAAAAEz7vmRnux3IvBpoyglzVLfwAAAAAAAAAPIs1HM5XBCjCrIyfmtQTsWwAAAAAAAAAJzvqIKMMHl8P7GaPP4lE2kAAAAAAAAAAbsspLyqwqKpD8wnMR9ugciQAAAAAAAABgHL8EuHVSmvyyvO0QJQzjvAAAAAAAAACU9i4yH5hvA0rp4RuaXVKyFQAAAAAAAAAFKQub_5l0sZDFiW2VPwqmFAAAAAAAAAAE7sjdM8tHLt2PY9MFMGkKvAAAAAAAAAB2x14a0Ek7Sslvce6ia1GGDAAAAAAAAAAHrdWn0WQP9V8Fvip5G1kyuQAAAAAAAAAfDvnksL7QDssoGl1VYPV1EwAAAAAAAAA5_UlieIQg1WLVOAgt8Mj7qwAAAAAAAAAELE9059JushFpT02ldF8LBAAAAAAAAAANC2bcwNqql_gFwky6XpRggwAAAAAAAAALnfqsljljgnxi4qqym6m8IQAAAAAAAAABMlyHaLRJGNn2Vpy3WSPy_QAAAAAAAAAORrXasmojz0ojjKVFAz-eswAAAAAAAAAAYsnZ_Lwaqr0cHEPo0D185QAAAAAAlsd-YsnZ_Lwaqr0cHEPo0D185QAAAAAAX12m", "types": "CAOJBQID"}}, "ecs": {"version": "1.12.0"}} -{"create": {"_index": "profiling-stacktraces", "_id": "HkfH8phILjoSDOJDy-1TVA"}} -{"Stacktrace": {"frame": {"ids": "3aS07d9PG4lc4UzuBbVWzQAAAAAAD-sMtQgAmBJBgPLrkikSPRsmtgAAAAAAAH6kqFV6xhVekP5-uToPI32ragAAAAAAxdjXqFV6xhVekP5-uToPI32ragAAAAAA6bHJqFV6xhVekP5-uToPI32ragAAAAAA6e5xqFV6xhVekP5-uToPI32ragAAAAAAl6PgqFV6xhVekP5-uToPI32ragAAAAAAjSrfqFV6xhVekP5-uToPI32ragAAAAAAjUuUAAAAAAAAV4sAAAAAAAAAHezOBBlhpr8qyzrIFcAvcn-PgY-eW1ZoaQAAAAAAAAALARLuf1htvrklOOxyKnOopAAAAAAAAAABTBtZO3-vmynkHlKuzsN9UQAAAAAAAAAyn55ZjUBJzU7CnzmyoRyorwAAAAAAAAAk5Ib9omL2d9xqdBKBL9VmGwAAAAAAAAAAqFV6xhVekP5-uToPI32ragAAAAAAmMkkqFV6xhVekP5-uToPI32ragAAAAAAxn1ZqFV6xhVekP5-uToPI32ragAAAAAAxnpttQgAmBJBgPLrkikSPRsmtgAAAAAAAL3i", "types": "CAMGBQQD"}}, "ecs": {"version": "1.12.0"}} diff --git a/x-pack/plugins/profiling/e2e/load_profiling_data.ts b/x-pack/plugins/profiling/e2e/load_profiling_data.ts index b8fb8f7fa7898..974e2f6ff3dd8 100644 --- a/x-pack/plugins/profiling/e2e/load_profiling_data.ts +++ b/x-pack/plugins/profiling/e2e/load_profiling_data.ts @@ -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.'); } diff --git a/x-pack/plugins/profiling/public/components/flamegraph/flamegraph_tooltip.tsx b/x-pack/plugins/profiling/public/components/flamegraph/flamegraph_tooltip.tsx index ce5835f57e7a7..ae37ebf65c9f0 100644 --- a/x-pack/plugins/profiling/public/components/flamegraph/flamegraph_tooltip.tsx +++ b/x-pack/plugins/profiling/public/components/flamegraph/flamegraph_tooltip.tsx @@ -38,7 +38,6 @@ interface Props { comparisonCountExclusive?: number; comparisonTotalSamples?: number; comparisonTotalSeconds?: number; - samplingRate?: number; onShowMoreClick?: () => void; } @@ -55,7 +54,6 @@ export function FlameGraphTooltip({ comparisonCountExclusive, comparisonTotalSamples, comparisonTotalSeconds, - samplingRate, onShowMoreClick, }: Props) { const theme = useEuiTheme(); @@ -80,8 +78,6 @@ export function FlameGraphTooltip({ }) : undefined; - const prependString = samplingRate === 1.0 ? ' ' : '~'; - return ( @@ -104,7 +100,6 @@ export function FlameGraphTooltip({ formatValue={asPercentage} showDifference formatDifferenceAsPercentage - prependValue={prependString} /> )} @@ -138,7 +132,6 @@ export function FlameGraphTooltip({ } showDifference formatDifferenceAsPercentage={false} - prependValue={prependString} /> {onShowMoreClick && ( <> diff --git a/x-pack/plugins/profiling/public/components/flamegraph/index.tsx b/x-pack/plugins/profiling/public/components/flamegraph/index.tsx index 39bbc47ac382c..5f4bc8cfab9cc 100644 --- a/x-pack/plugins/profiling/public/components/flamegraph/index.tsx +++ b/x-pack/plugins/profiling/public/components/flamegraph/index.tsx @@ -194,7 +194,6 @@ export function FlameGraph({ frame={selected} totalSeconds={primaryFlamegraph?.TotalSeconds ?? 0} totalSamples={totalSamples} - samplingRate={primaryFlamegraph?.SamplingRate ?? 1.0} /> )} diff --git a/x-pack/plugins/profiling/public/components/frame_information_window/get_impact_rows.tsx b/x-pack/plugins/profiling/public/components/frame_information_window/get_impact_rows.tsx index 43e34b6f6901e..59c5eb0086c71 100644 --- a/x-pack/plugins/profiling/public/components/frame_information_window/get_impact_rows.tsx +++ b/x-pack/plugins/profiling/public/components/frame_information_window/get_impact_rows.tsx @@ -20,13 +20,11 @@ export function getImpactRows({ countExclusive, totalSamples, totalSeconds, - isApproximate = false, }: { countInclusive: number; countExclusive: number; totalSamples: number; totalSeconds: number; - isApproximate: boolean; }) { const { selfCPU, totalCPU } = calculateImpactEstimates({ countInclusive, @@ -35,28 +33,33 @@ export function getImpactRows({ totalSeconds, }); - const impactRows = [ + return [ { + 'data-test-subj': 'totalCPU', label: , value: asPercentage(totalCPU.percentage), }, { + 'data-test-subj': 'selfCPU', label: , 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' } @@ -64,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)' } @@ -71,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' } @@ -78,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)' } @@ -85,6 +91,7 @@ export function getImpactRows({ value: asDuration(selfCPU.annualizedCoreSeconds), }, { + 'data-test-subj': 'co2Emission', label: i18n.translate( 'xpack.profiling.flameGraphInformationWindow.co2EmissionInclusiveLabel', { @@ -94,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)' } @@ -101,6 +109,7 @@ export function getImpactRows({ value: asWeight(selfCPU.co2), }, { + 'data-test-subj': 'annualizedCo2Emission', label: i18n.translate( 'xpack.profiling.flameGraphInformationWindow.annualizedCo2InclusiveLabel', { defaultMessage: 'Annualized CO2' } @@ -108,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)' } @@ -115,6 +125,7 @@ export function getImpactRows({ value: asWeight(selfCPU.annualizedCo2), }, { + 'data-test-subj': 'dollarCost', label: i18n.translate( 'xpack.profiling.flameGraphInformationWindow.dollarCostInclusiveLabel', { defaultMessage: 'Dollar cost' } @@ -122,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)' } @@ -129,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' } @@ -136,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)' } @@ -143,6 +157,4 @@ export function getImpactRows({ value: asCost(selfCPU.annualizedDollarCost), }, ]; - - return impactRows; } diff --git a/x-pack/plugins/profiling/public/components/frame_information_window/get_information_rows.ts b/x-pack/plugins/profiling/public/components/frame_information_window/get_information_rows.ts index d142b3ffd1b58..057f56f9c2f06 100644 --- a/x-pack/plugins/profiling/public/components/frame_information_window/get_information_rows.ts +++ b/x-pack/plugins/profiling/public/components/frame_information_window/get_information_rows.ts @@ -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', }), diff --git a/x-pack/plugins/profiling/public/components/frame_information_window/index.tsx b/x-pack/plugins/profiling/public/components/frame_information_window/index.tsx index 0d7e35a93d8c0..d0925897877fc 100644 --- a/x-pack/plugins/profiling/public/components/frame_information_window/index.tsx +++ b/x-pack/plugins/profiling/public/components/frame_information_window/index.tsx @@ -34,10 +34,9 @@ export interface Props { }; totalSamples: number; totalSeconds: number; - samplingRate: number; } -export function FrameInformationWindow({ frame, totalSamples, totalSeconds, samplingRate }: Props) { +export function FrameInformationWindow({ frame, totalSamples, totalSeconds }: Props) { const aiAssistant = useObservabilityAIAssistant(); const promptMessages = useMemo(() => { @@ -155,23 +154,18 @@ export function FrameInformationWindow({ frame, totalSamples, totalSeconds, samp sourceLine, }); - // Are the results sampled? If yes, prepend a '~'. - const isApproximate = (samplingRate ?? 1.0) === 1.0; - const prependString = isApproximate ? undefined : '~'; - const impactRows = getImpactRows({ countInclusive, countExclusive, totalSamples, totalSeconds, - isApproximate, }); return ( - + {aiAssistant.isEnabled() && promptMessages ? ( <> @@ -202,7 +196,7 @@ export function FrameInformationWindow({ frame, totalSamples, totalSeconds, samp - + diff --git a/x-pack/plugins/profiling/public/components/frame_information_window/key_value_list.tsx b/x-pack/plugins/profiling/public/components/frame_information_window/key_value_list.tsx index 9ac9866bd9ae9..367d8e921ee6b 100644 --- a/x-pack/plugins/profiling/public/components/frame_information_window/key_value_list.tsx +++ b/x-pack/plugins/profiling/public/components/frame_information_window/key_value_list.tsx @@ -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 ( {rows.map((row, index) => ( @@ -23,7 +28,11 @@ export function KeyValueList({ rows, prependString = '' }: Props) { {row.label}: - + {prependString} {row.value} diff --git a/x-pack/plugins/profiling/public/components/primary_and_comparison_search_bar.tsx b/x-pack/plugins/profiling/public/components/primary_and_comparison_search_bar.tsx index 5298d43deacf3..12375925bb606 100644 --- a/x-pack/plugins/profiling/public/components/primary_and_comparison_search_bar.tsx +++ b/x-pack/plugins/profiling/public/components/primary_and_comparison_search_bar.tsx @@ -145,6 +145,7 @@ export function PrimaryAndComparisonSearchBar() { onRefreshClick={() => { refresh(); }} + dataTestSubj="profilingComparisonUnifiedSearchBar" /> diff --git a/x-pack/plugins/profiling/public/components/profiling_app_page_template/index.tsx b/x-pack/plugins/profiling/public/components/profiling_app_page_template/index.tsx index 1a7949eff11c8..061215abe6ccd 100644 --- a/x-pack/plugins/profiling/public/components/profiling_app_page_template/index.tsx +++ b/x-pack/plugins/profiling/public/components/profiling_app_page_template/index.tsx @@ -58,6 +58,7 @@ export function ProfilingAppPageTemplate({ >['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} /> ); } diff --git a/x-pack/plugins/profiling/public/components/topn_functions/index.tsx b/x-pack/plugins/profiling/public/components/topn_functions/index.tsx index d3528b522443b..ec99236cb135f 100644 --- a/x-pack/plugins/profiling/public/components/topn_functions/index.tsx +++ b/x-pack/plugins/profiling/public/components/topn_functions/index.tsx @@ -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 | undefined ) => { @@ -262,11 +264,12 @@ export const TopNFunctionsGrid = forwardRef( return ( <> 100 ? 100 : totalCount} renderCellValue={RenderCellValue} inMemory={{ level: 'sorting' }} sorting={{ columns: [{ id: sortField, direction: sortDirection }], onSort }} @@ -331,7 +334,6 @@ export const TopNFunctionsGrid = forwardRef( }} totalSeconds={totalSeconds} totalSamples={totalCount} - samplingRate={topNFunctions?.SamplingRate ?? 1.0} /> )} diff --git a/x-pack/plugins/profiling/public/components/topn_functions_summary/index.tsx b/x-pack/plugins/profiling/public/components/topn_functions_summary/index.tsx index d2057bfafcdcc..960392dfa0bae 100644 --- a/x-pack/plugins/profiling/public/components/topn_functions_summary/index.tsx +++ b/x-pack/plugins/profiling/public/components/topn_functions_summary/index.tsx @@ -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, diff --git a/x-pack/plugins/profiling/public/components/topn_functions_summary/summary_item.tsx b/x-pack/plugins/profiling/public/components/topn_functions_summary/summary_item.tsx index a40ac315de7da..a2f63aa55df28 100644 --- a/x-pack/plugins/profiling/public/components/topn_functions_summary/summary_item.tsx +++ b/x-pack/plugins/profiling/public/components/topn_functions_summary/summary_item.tsx @@ -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 ( {icon ? ( - + ) : null} - + {value} @@ -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 ( } + title={} titleSize="m" description={ <> @@ -101,8 +113,15 @@ export function SummaryItem({ > {!isLoading && comparisonValue ? ( - {comparisonIcon ? : null} - {getValueLable(comparisonValue, comparisonPerc)} + {comparisonIcon ? ( + + ) : null} + + {getValueLable(comparisonValue, comparisonPerc)} + ) : null} diff --git a/x-pack/plugins/profiling/public/views/functions/differential_topn/index.tsx b/x-pack/plugins/profiling/public/views/functions/differential_topn/index.tsx index 7c1ba0e144383..da84528b2ffc2 100644 --- a/x-pack/plugins/profiling/public/views/functions/differential_topn/index.tsx +++ b/x-pack/plugins/profiling/public/views/functions/differential_topn/index.tsx @@ -251,6 +251,7 @@ export function DifferentialTopNFunctionsView() { sortField={sortField} sortDirection={sortDirection} onChangeSort={handleSortChange} + dataTestSubj="TopNFunctionsComparisonGrid" /> diff --git a/x-pack/plugins/profiling/public/views/storage_explorer/data_breakdown/grouped_index_details.tsx b/x-pack/plugins/profiling/public/views/storage_explorer/data_breakdown/grouped_index_details.tsx index 2a438c38e3ca0..51c06eafb6a17 100644 --- a/x-pack/plugins/profiling/public/views/storage_explorer/data_breakdown/grouped_index_details.tsx +++ b/x-pack/plugins/profiling/public/views/storage_explorer/data_breakdown/grouped_index_details.tsx @@ -106,8 +106,8 @@ function IndexSizeItem({ borderBottom: `${theme.euiTheme.border.width.thin} solid ${theme.euiTheme.border.color}`, }} > - - {docCount ? ( + + {docCount !== undefined ? ( asInteger(docCount) ) : ( @@ -115,7 +115,7 @@ function IndexSizeItem({ )} - + {sizeInBytes ? ( asDynamicBytes(sizeInBytes) ) : ( diff --git a/x-pack/plugins/profiling/public/views/storage_explorer/host_breakdown/hosts_table.tsx b/x-pack/plugins/profiling/public/views/storage_explorer/host_breakdown/hosts_table.tsx index e72dead84f909..993636e72317c 100644 --- a/x-pack/plugins/profiling/public/views/storage_explorer/host_breakdown/hosts_table.tsx +++ b/x-pack/plugins/profiling/public/views/storage_explorer/host_breakdown/hosts_table.tsx @@ -108,6 +108,7 @@ export function HostsTable({ data = [], hasDistinctProbabilisticValues }: Props) render: (_, item) => { return ( {item.value}} isLoading={isLoading} /> diff --git a/x-pack/plugins/profiling/server/routes/storage_explorer/get_host_breakdown_size_timeseries.ts b/x-pack/plugins/profiling/server/routes/storage_explorer/get_host_breakdown_size_timeseries.ts index 12adbda75c22f..57ec31e6bcfbd 100644 --- a/x-pack/plugins/profiling/server/routes/storage_explorer/get_host_breakdown_size_timeseries.ts +++ b/x-pack/plugins/profiling/server/routes/storage_explorer/get_host_breakdown_size_timeseries.ts @@ -115,7 +115,7 @@ export async function getHostBreakdownSizeTimeseries({ return { hostId, - hostName: hostDetails.hostName, + hostName: hostDetails?.hostName || '', timeseries, }; }) || [] diff --git a/x-pack/plugins/profiling/server/routes/storage_explorer/get_host_details.ts b/x-pack/plugins/profiling/server/routes/storage_explorer/get_host_details.ts index 73880c9ad484d..65a66071431f1 100644 --- a/x-pack/plugins/profiling/server/routes/storage_explorer/get_host_details.ts +++ b/x-pack/plugins/profiling/server/routes/storage_explorer/get_host_details.ts @@ -115,7 +115,7 @@ export async function getHostDetails({ return { hostId, - hostName: hostDetails?.hostName, + hostName: hostDetails?.hostName || '', probabilisticValues: currentProjectProbabilisticValues?.probabilisticValues || [], projectId, totalEventsSize: totalPerIndex.events, diff --git a/x-pack/plugins/remote_clusters/public/application/sections/components/remote_cluster_form/components/sniff_connection.tsx b/x-pack/plugins/remote_clusters/public/application/sections/components/remote_cluster_form/components/sniff_connection.tsx index 8d853c8b6765d..2d1608bcc4a70 100644 --- a/x-pack/plugins/remote_clusters/public/application/sections/components/remote_cluster_form/components/sniff_connection.tsx +++ b/x-pack/plugins/remote_clusters/public/application/sections/components/remote_cluster_form/components/sniff_connection.tsx @@ -99,8 +99,8 @@ export const SniffConnection: FunctionComponent = ({ transportPort: ( ), diff --git a/x-pack/plugins/reporting/public/lib/reporting_api_client/reporting_api_client.test.ts b/x-pack/plugins/reporting/public/lib/reporting_api_client/reporting_api_client.test.ts index 38e95e9d75323..8737c80e969f8 100644 --- a/x-pack/plugins/reporting/public/lib/reporting_api_client/reporting_api_client.test.ts +++ b/x-pack/plugins/reporting/public/lib/reporting_api_client/reporting_api_client.test.ts @@ -27,7 +27,7 @@ describe('ReportingAPIClient', () => { describe('getReportURL', () => { it('should generate the internal report download URL', () => { expect(apiClient.getReportURL('123')).toMatchInlineSnapshot( - `"/base/path/internal/reporting/jobs/download/123"` + `"/base/path/internal/reporting/jobs/download/123?elasticInternalOrigin=true"` ); }); }); diff --git a/x-pack/plugins/reporting/public/lib/reporting_api_client/reporting_api_client.ts b/x-pack/plugins/reporting/public/lib/reporting_api_client/reporting_api_client.ts index 2681789745751..7e30866474991 100644 --- a/x-pack/plugins/reporting/public/lib/reporting_api_client/reporting_api_client.ts +++ b/x-pack/plugins/reporting/public/lib/reporting_api_client/reporting_api_client.ts @@ -4,6 +4,7 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ +import { ELASTIC_INTERNAL_ORIGIN_QUERY_PARAM } from '@kbn/core-http-common'; import type { HttpFetchQuery } from '@kbn/core/public'; import { HttpSetup, IUiSettingsClient } from '@kbn/core/public'; import { i18n } from '@kbn/i18n'; @@ -17,13 +18,7 @@ import { PUBLIC_ROUTES, REPORTING_MANAGEMENT_HOME, } from '../../../common/constants'; -import { - BaseParams, - DownloadReportFn, - JobId, - ManagementLinkFn, - ReportApiJSON, -} from '../../../common/types'; +import { BaseParams, JobId, ManagementLinkFn, ReportApiJSON } from '../../../common/types'; import { add } from '../../notifier/job_completion_notifications'; import { Job } from '../job'; @@ -58,7 +53,6 @@ interface IReportingAPI { // Function props getManagementLink: ManagementLinkFn; - getDownloadLink: DownloadReportFn; // Diagnostic-related API calls verifyBrowser(): Promise; @@ -98,7 +92,7 @@ export class ReportingAPIClient implements IReportingAPI { */ public getReportURL(jobId: string) { const downloadLink = this.http.basePath.prepend( - `${INTERNAL_ROUTES.JOBS.DOWNLOAD_PREFIX}/${jobId}` + `${INTERNAL_ROUTES.JOBS.DOWNLOAD_PREFIX}/${jobId}?${ELASTIC_INTERNAL_ORIGIN_QUERY_PARAM}=true` ); return downloadLink; @@ -218,8 +212,7 @@ export class ReportingAPIClient implements IReportingAPI { public getManagementLink: ManagementLinkFn = () => this.http.basePath.prepend(REPORTING_MANAGEMENT_HOME); - public getDownloadLink: DownloadReportFn = (jobId: JobId) => - this.http.basePath.prepend(`${INTERNAL_ROUTES.JOBS.DOWNLOAD_PREFIX}/${jobId}`); + public getDownloadLink = (jobId: JobId) => this.getReportURL(jobId); public getServerBasePath = () => this.http.basePath.serverBasePath; diff --git a/x-pack/plugins/reporting/public/lib/stream_handler.test.ts b/x-pack/plugins/reporting/public/lib/stream_handler.test.ts index 6f575652450c1..ed3b973a95e64 100644 --- a/x-pack/plugins/reporting/public/lib/stream_handler.test.ts +++ b/x-pack/plugins/reporting/public/lib/stream_handler.test.ts @@ -34,7 +34,7 @@ jobQueueClientMock.getInfo = () => Promise.resolve({ content: 'this is the completed report data' } as unknown as Job); jobQueueClientMock.getError = () => Promise.resolve('this is the failed report error'); jobQueueClientMock.getManagementLink = () => '/#management'; -jobQueueClientMock.getDownloadLink = () => '/reporting/download/job-123'; +jobQueueClientMock.getReportURL = () => '/reporting/download/job-123'; const mockShowDanger = stub(); const mockShowSuccess = stub(); diff --git a/x-pack/plugins/reporting/public/management/__test__/report_listing.test.helpers.tsx b/x-pack/plugins/reporting/public/management/__test__/report_listing.test.helpers.tsx index 94828369d5148..fc1b0f25d9c01 100644 --- a/x-pack/plugins/reporting/public/management/__test__/report_listing.test.helpers.tsx +++ b/x-pack/plugins/reporting/public/management/__test__/report_listing.test.helpers.tsx @@ -31,6 +31,7 @@ import { InternalApiClientProvider, ReportingAPIClient } from '../../lib/reporti import { Job } from '../../lib/job'; import { ListingProps as Props, ReportListing } from '..'; +import { ReportDiagnostic } from '../components'; export interface TestDependencies { http: ReturnType; @@ -41,16 +42,33 @@ export interface TestDependencies { toasts: NotificationsSetup['toasts']; ilmLocator: LocatorPublic; uiSettings: ReturnType['uiSettings']; + reportDiagnostic: typeof ReportDiagnostic; } -const mockPollConfig = { - jobCompletionNotifier: { - interval: 5000, - intervalErrorMultiplier: 3, +export const mockConfig = { + poll: { + jobCompletionNotifier: { + interval: 5000, + intervalErrorMultiplier: 3, + }, + jobsRefresh: { + interval: 5000, + intervalErrorMultiplier: 3, + }, }, - jobsRefresh: { - interval: 5000, - intervalErrorMultiplier: 3, + export_types: { + pdf: { + enabled: true, + }, + png: { + enabled: true, + }, + csv: { + enabled: true, + }, + }, + roles: { + enabled: false, }, }; @@ -67,7 +85,7 @@ const license$ = { }, } as Observable; -const createTestBed = registerTestBed( +export const createTestBed = registerTestBed( ({ http, application, @@ -83,7 +101,7 @@ const createTestBed = registerTestBed( ) => { getUrl: jest.fn(), } as unknown as LocatorPublic; + const reportDiagnostic = () => ( + + ); + const testDependencies: TestDependencies = { http: httpService, application: applicationServiceMock.createStartContract(), @@ -127,6 +149,7 @@ export const setup = async (props?: Partial) => { get: () => ilmLocator, }, } as unknown as SharePluginSetup['url'], + reportDiagnostic, }; const testBed = createTestBed({ ...testDependencies, ...props }); @@ -162,6 +185,7 @@ export const setup = async (props?: Partial) => { }); component.update(); }, + hasScreenshotDiagnosticLink: () => exists('screenshotDiagnosticLink'), }, }; diff --git a/x-pack/plugins/reporting/public/management/components/report_diagnostic.tsx b/x-pack/plugins/reporting/public/management/components/report_diagnostic.tsx index 03f72c6560829..dd59f34eb24a9 100644 --- a/x-pack/plugins/reporting/public/management/components/report_diagnostic.tsx +++ b/x-pack/plugins/reporting/public/management/components/report_diagnostic.tsx @@ -20,9 +20,11 @@ import { EuiTitle, } from '@elastic/eui'; import { ReportingAPIClient, DiagnoseResponse } from '../../lib/reporting_api_client'; +import { ClientConfigType } from '../../plugin'; interface Props { apiClient: ReportingAPIClient; + clientConfig: ClientConfigType; } type ResultStatus = 'danger' | 'incomplete' | 'complete'; @@ -50,7 +52,7 @@ const initialState: State = { success: true, }; -export const ReportDiagnostic = ({ apiClient }: Props) => { +export const ReportDiagnostic = ({ apiClient, clientConfig }: Props) => { const [state, setStateBase] = useState(initialState); const setState = (s: Partial) => setStateBase({ @@ -58,6 +60,8 @@ export const ReportDiagnostic = ({ apiClient }: Props) => { ...s, }); const { isBusy, chromeStatus, isFlyoutVisible } = state; + const configAllowsImageReports = + clientConfig.export_types.pdf.enabled || clientConfig.export_types.png.enabled; const closeFlyout = () => setState({ ...initialState, isFlyoutVisible: false }); const showFlyout = () => setState({ isFlyoutVisible: true }); @@ -169,13 +173,22 @@ export const ReportDiagnostic = ({ apiClient }: Props) => { } return (
    - {flyout} - - - + {configAllowsImageReports && ( +
    + {flyout} + + + +
    + )}
    ); }; diff --git a/x-pack/plugins/reporting/public/management/index.ts b/x-pack/plugins/reporting/public/management/index.ts index fa9f1fd00cbce..c3e338af8ad3d 100644 --- a/x-pack/plugins/reporting/public/management/index.ts +++ b/x-pack/plugins/reporting/public/management/index.ts @@ -16,7 +16,7 @@ export interface ListingProps { apiClient: ReportingAPIClient; capabilities: ApplicationStart['capabilities']; license$: LicensingPluginStart['license$']; - pollConfig: ClientConfigType['poll']; + config: ClientConfigType; redirect: ApplicationStart['navigateToApp']; navigateToUrl: ApplicationStart['navigateToUrl']; toasts: ToastsSetup; diff --git a/x-pack/plugins/reporting/public/management/mount_management_section.tsx b/x-pack/plugins/reporting/public/management/mount_management_section.tsx index a3f238052f66d..604885e8be360 100644 --- a/x-pack/plugins/reporting/public/management/mount_management_section.tsx +++ b/x-pack/plugins/reporting/public/management/mount_management_section.tsx @@ -22,7 +22,7 @@ export async function mountManagementSection( coreSetup: CoreSetup, coreStart: CoreStart, license$: Observable, - pollConfig: ClientConfigType['poll'], + config: ClientConfigType, apiClient: ReportingAPIClient, urlService: SharePluginSetup['url'], params: ManagementAppMountParams @@ -42,7 +42,7 @@ export async function mountManagementSection( { let testBed: TestBed; @@ -268,4 +269,21 @@ describe('ReportListing', () => { expect(testBed.actions.hasIlmPolicyLink()).toBe(true); }); }); + describe('Screenshotting Diagnostic', () => { + it('shows screenshotting diagnostic link if config enables image reports', () => { + expect(testBed.actions.hasScreenshotDiagnosticLink()).toBe(true); + }); + it('does not show when image reporting not set in config', async () => { + const mockNoImageConfig = { + ...mockConfig, + export_types: { + csv: { enabled: true }, + pdf: { enabled: false }, + png: { enabled: false }, + }, + }; + await runSetup({ config: mockNoImageConfig }); + expect(testBed.actions.hasScreenshotDiagnosticLink()).toBe(false); + }); + }); }); diff --git a/x-pack/plugins/reporting/public/management/report_listing.tsx b/x-pack/plugins/reporting/public/management/report_listing.tsx index d3e2f67897ef2..74753437f54ce 100644 --- a/x-pack/plugins/reporting/public/management/report_listing.tsx +++ b/x-pack/plugins/reporting/public/management/report_listing.tsx @@ -81,7 +81,15 @@ class ReportListingUi extends Component { } public render() { - const { ilmPolicyContextValue, urlService, navigateToUrl, capabilities } = this.props; + const { + apiClient, + toasts, + ilmPolicyContextValue, + urlService, + navigateToUrl, + capabilities, + config, + } = this.props; const ilmLocator = urlService.locators.get('ILM_LOCATOR_ID'); const hasIlmPolicy = ilmPolicyContextValue.status !== 'policy-not-found'; const showIlmPolicyLink = Boolean(ilmLocator && hasIlmPolicy); @@ -101,7 +109,7 @@ class ReportListingUi extends Component { } /> - +
    {this.renderTable()}
    @@ -120,7 +128,7 @@ class ReportListingUi extends Component {
    )} - +
    @@ -138,8 +146,8 @@ class ReportListingUi extends Component { public componentDidMount() { this.mounted = true; - const { pollConfig, license$ } = this.props; - const pollFrequencyInMillis = durationToNumber(pollConfig.jobsRefresh.interval); + const { config, license$ } = this.props; + const pollFrequencyInMillis = durationToNumber(config.poll.jobsRefresh.interval); this.poller = new Poller({ functionToPoll: () => { return this.fetchJobs(); @@ -147,7 +155,7 @@ class ReportListingUi extends Component { pollFrequencyInMillis, trailing: false, continuePollingOnError: true, - pollFrequencyErrorMultiplier: pollConfig.jobsRefresh.intervalErrorMultiplier, + pollFrequencyErrorMultiplier: config.poll.jobsRefresh.intervalErrorMultiplier, }); this.poller.start(); this.licenseSubscription = license$.subscribe(this.licenseHandler); @@ -499,7 +507,10 @@ class ReportListingUi extends Component { } export const ReportListing = ( - props: Omit + props: Omit< + Props, + 'ilmPolicyContextValue' | 'intl' | 'apiClient' | 'capabilities' | 'configAllowsImages' + > ) => { const ilmPolicyStatusValue = useIlmPolicyStatus(); const { apiClient } = useInternalApiClient(); diff --git a/x-pack/plugins/reporting/public/plugin.ts b/x-pack/plugins/reporting/public/plugin.ts index 0c87c96eb9aef..912f519d60002 100644 --- a/x-pack/plugins/reporting/public/plugin.ts +++ b/x-pack/plugins/reporting/public/plugin.ts @@ -189,7 +189,7 @@ export class ReportingPublicPlugin core, start, license$, - this.config.poll, + this.config, apiClient, share.url, params diff --git a/x-pack/plugins/reporting/tsconfig.json b/x-pack/plugins/reporting/tsconfig.json index 05e62e6251e19..f307442001655 100644 --- a/x-pack/plugins/reporting/tsconfig.json +++ b/x-pack/plugins/reporting/tsconfig.json @@ -40,6 +40,7 @@ "@kbn/reporting-common", "@kbn/saved-search-plugin", "@kbn/core-http-router-server-internal", + "@kbn/core-http-common", ], "exclude": [ "target/**/*", diff --git a/x-pack/plugins/rule_registry/server/alert_data_client/browser_fields/index.ts b/x-pack/plugins/rule_registry/server/alert_data_client/browser_fields/index.ts index f7ba028e5917b..bbb91309b4fca 100644 --- a/x-pack/plugins/rule_registry/server/alert_data_client/browser_fields/index.ts +++ b/x-pack/plugins/rule_registry/server/alert_data_client/browser_fields/index.ts @@ -36,6 +36,7 @@ export const fieldDescriptorToBrowserFieldMapper = (fields: FieldDescriptor[]): const browserField = browserFieldFactory(field, category); if (browserFields[category] && browserFields[category]) { + // @ts-expect-error ts upgrade to v4.7.4 Object.assign(browserFields[category].fields, browserField); } else { browserFields[category] = { fields: browserField }; diff --git a/x-pack/plugins/saved_objects_tagging/public/management/components/table.tsx b/x-pack/plugins/saved_objects_tagging/public/management/components/table.tsx index 8f35b0366b79c..359df30516511 100644 --- a/x-pack/plugins/saved_objects_tagging/public/management/components/table.tsx +++ b/x-pack/plugins/saved_objects_tagging/public/management/components/table.tsx @@ -139,9 +139,11 @@ export const TagTable: FC = ({ : []), ]; + const testSubjectState = !loading ? 'table-is-ready' : 'table-is-loading'; + return ( this.tagClient!.getAll({ asSystemRequest: true }), refreshInterval: this.config.cacheRefreshInterval, }); - this.tagClient = new TagsClient({ http, changeListener: this.tagCache }); + this.tagClient = new TagsClient({ analytics, http, changeListener: this.tagCache }); this.assignmentService = new TagAssignmentService({ http }); // do not fetch tags on anonymous page diff --git a/x-pack/plugins/saved_objects_tagging/public/services/tags/tags_client.test.ts b/x-pack/plugins/saved_objects_tagging/public/services/tags/tags_client.test.ts index 8b99336bfa1be..6afafa3c2db21 100644 --- a/x-pack/plugins/saved_objects_tagging/public/services/tags/tags_client.test.ts +++ b/x-pack/plugins/saved_objects_tagging/public/services/tags/tags_client.test.ts @@ -10,6 +10,7 @@ import { Tag } from '../../../common/types'; import { createTag, createTagAttributes } from '../../../common/test_utils'; import { tagsCacheMock } from './tags_cache.mock'; import { TagsClient, FindTagsOptions } from './tags_client'; +import { coreMock } from '@kbn/core/public/mocks'; describe('TagsClient', () => { let tagsClient: TagsClient; @@ -19,7 +20,9 @@ describe('TagsClient', () => { beforeEach(() => { http = httpServiceMock.createSetupContract(); changeListener = tagsCacheMock.create(); + const { analytics } = coreMock.createStart(); tagsClient = new TagsClient({ + analytics, http, changeListener, }); diff --git a/x-pack/plugins/saved_objects_tagging/public/services/tags/tags_client.ts b/x-pack/plugins/saved_objects_tagging/public/services/tags/tags_client.ts index 1ac2cd55d96b2..46aa43df7d075 100644 --- a/x-pack/plugins/saved_objects_tagging/public/services/tags/tags_client.ts +++ b/x-pack/plugins/saved_objects_tagging/public/services/tags/tags_client.ts @@ -5,7 +5,8 @@ * 2.0. */ -import { HttpSetup } from '@kbn/core/public'; +import { HttpSetup, AnalyticsServiceStart } from '@kbn/core/public'; +import { reportPerformanceMetricEvent } from '@kbn/ebt-tools'; import { Tag, TagAttributes, @@ -15,7 +16,15 @@ import { } from '../../../common/types'; import { ITagsChangeListener } from './tags_cache'; +const BULK_DELETE_TAG_EVENT = 'bulkDeleteTag'; +const CREATE_TAG_EVENT = 'createTag'; +const DELETE_TAG_EVENT = 'deleteTag'; +const GET_ALL_TAGS_EVENT = 'getAllTag'; +const FIND_TAG_EVENT = 'findTag'; +const UPDATE_TAG_EVENT = 'updateTag'; + export interface TagsClientOptions { + analytics: AnalyticsServiceStart; http: HttpSetup; changeListener?: ITagsChangeListener; } @@ -45,10 +54,12 @@ export interface ITagInternalClient extends ITagsClient { } export class TagsClient implements ITagInternalClient { + private readonly analytics: AnalyticsServiceStart; private readonly http: HttpSetup; private readonly changeListener?: ITagsChangeListener; - constructor({ http, changeListener }: TagsClientOptions) { + constructor({ analytics, http, changeListener }: TagsClientOptions) { + this.analytics = analytics; this.http = http; this.changeListener = changeListener; } @@ -56,9 +67,15 @@ export class TagsClient implements ITagInternalClient { // public APIs from ITagsClient public async create(attributes: TagAttributes) { + const startTime = window.performance.now(); const { tag } = await this.http.post<{ tag: Tag }>('/api/saved_objects_tagging/tags/create', { body: JSON.stringify(attributes), }); + const duration = window.performance.now() - startTime; + reportPerformanceMetricEvent(this.analytics, { + eventName: CREATE_TAG_EVENT, + duration, + }); trapErrors(() => { if (this.changeListener) { @@ -70,9 +87,15 @@ export class TagsClient implements ITagInternalClient { } public async update(id: string, attributes: TagAttributes) { + const startTime = window.performance.now(); const { tag } = await this.http.post<{ tag: Tag }>(`/api/saved_objects_tagging/tags/${id}`, { body: JSON.stringify(attributes), }); + const duration = window.performance.now() - startTime; + reportPerformanceMetricEvent(this.analytics, { + eventName: UPDATE_TAG_EVENT, + duration, + }); trapErrors(() => { if (this.changeListener) { @@ -90,11 +113,17 @@ export class TagsClient implements ITagInternalClient { } public async getAll({ asSystemRequest }: GetAllTagsOptions = {}) { + const startTime = window.performance.now(); const fetchOptions = { asSystemRequest }; const { tags } = await this.http.get<{ tags: Tag[] }>( '/api/saved_objects_tagging/tags', fetchOptions ); + const duration = window.performance.now() - startTime; + reportPerformanceMetricEvent(this.analytics, { + eventName: GET_ALL_TAGS_EVENT, + duration, + }); trapErrors(() => { if (this.changeListener) { @@ -106,7 +135,13 @@ export class TagsClient implements ITagInternalClient { } public async delete(id: string) { + const startTime = window.performance.now(); await this.http.delete<{}>(`/api/saved_objects_tagging/tags/${id}`); + const duration = window.performance.now() - startTime; + reportPerformanceMetricEvent(this.analytics, { + eventName: DELETE_TAG_EVENT, + duration, + }); trapErrors(() => { if (this.changeListener) { @@ -118,21 +153,38 @@ export class TagsClient implements ITagInternalClient { // internal APIs from ITagInternalClient public async find({ page, perPage, search }: FindTagsOptions) { - return await this.http.get('/internal/saved_objects_tagging/tags/_find', { - query: { - page, - perPage, - search, - }, + const startTime = window.performance.now(); + const response = await this.http.get( + '/internal/saved_objects_tagging/tags/_find', + { + query: { + page, + perPage, + search, + }, + } + ); + const duration = window.performance.now() - startTime; + reportPerformanceMetricEvent(this.analytics, { + eventName: FIND_TAG_EVENT, + duration, }); + + return response; } public async bulkDelete(tagIds: string[]) { + const startTime = window.performance.now(); await this.http.post<{}>('/internal/saved_objects_tagging/tags/_bulk_delete', { body: JSON.stringify({ ids: tagIds, }), }); + const duration = window.performance.now() - startTime; + reportPerformanceMetricEvent(this.analytics, { + eventName: BULK_DELETE_TAG_EVENT, + duration, + }); trapErrors(() => { if (this.changeListener) { diff --git a/x-pack/plugins/saved_objects_tagging/tsconfig.json b/x-pack/plugins/saved_objects_tagging/tsconfig.json index 8d74ebd7de0ed..1876578728d45 100644 --- a/x-pack/plugins/saved_objects_tagging/tsconfig.json +++ b/x-pack/plugins/saved_objects_tagging/tsconfig.json @@ -21,6 +21,7 @@ "@kbn/utility-types", "@kbn/i18n-react", "@kbn/config-schema", + "@kbn/ebt-tools", ], "exclude": [ "target/**/*", diff --git a/x-pack/plugins/screenshotting/server/__mocks__/puppeteer.ts b/x-pack/plugins/screenshotting/server/__mocks__/puppeteer.ts new file mode 100644 index 0000000000000..f295192723c2b --- /dev/null +++ b/x-pack/plugins/screenshotting/server/__mocks__/puppeteer.ts @@ -0,0 +1,47 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +const stubDevTools = { + send: jest.fn(), +}; +const stubTarget = { + createCDPSession: jest.fn(() => { + return stubDevTools; + }), +}; +const stubPage = { + target: jest.fn(() => { + return stubTarget; + }), + emulateTimezone: jest.fn(), + setDefaultTimeout: jest.fn(), + isClosed: jest.fn(), + setViewport: jest.fn(), + evaluate: jest.fn(), + screenshot: jest.fn().mockResolvedValue(`you won't believe this one weird screenshot`), + evaluateOnNewDocument: jest.fn(), + setRequestInterception: jest.fn(), + _client: jest.fn(() => ({ on: jest.fn() })), + on: jest.fn(), + goto: jest.fn(), + waitForSelector: jest.fn().mockResolvedValue(true), + waitForFunction: jest.fn(), +}; +const stubBrowser = { + newPage: jest.fn(() => { + return stubPage; + }), +}; + +const puppeteer = { + launch: jest.fn(() => { + return stubBrowser; + }), +}; + +// eslint-disable-next-line import/no-default-export +export default puppeteer; diff --git a/x-pack/plugins/screenshotting/server/browsers/chromium/driver.test.ts b/x-pack/plugins/screenshotting/server/browsers/chromium/driver.test.ts new file mode 100644 index 0000000000000..fb07eac64ed17 --- /dev/null +++ b/x-pack/plugins/screenshotting/server/browsers/chromium/driver.test.ts @@ -0,0 +1,107 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import type { Logger } from '@kbn/logging'; +import { ScreenshotModePluginSetup } from '@kbn/screenshot-mode-plugin/server'; +import * as puppeteer from 'puppeteer'; +import { Size } from '../../../common/layout'; +import { ConfigType } from '../../config'; +import { PreserveLayout } from '../../layouts/preserve_layout'; +import { HeadlessChromiumDriver } from './driver'; + +describe('chromium driver', () => { + let mockConfig: ConfigType; + let mockLogger: Logger; + let mockScreenshotModeSetup: ScreenshotModePluginSetup; + let mockPage: puppeteer.Page; + + const mockBasePath = '/kibanaTest1'; + + beforeEach(() => { + mockLogger = { debug: jest.fn(), error: jest.fn(), info: jest.fn() } as unknown as Logger; + mockLogger.get = () => mockLogger; + + mockConfig = { + networkPolicy: { + enabled: false, + rules: [], + }, + browser: { + autoDownload: false, + chromium: { proxy: { enabled: false } }, + }, + capture: { + timeouts: { + openUrl: 60000, + waitForElements: 60000, + renderComplete: 60000, + }, + zoom: 2, + }, + poolSize: 1, + }; + + mockPage = { + screenshot: jest.fn().mockResolvedValue(`you won't believe this one weird screenshot`), + evaluate: jest.fn(), + } as unknown as puppeteer.Page; + + mockScreenshotModeSetup = { + setScreenshotContext: jest.fn(), + setScreenshotModeEnabled: jest.fn(), + isScreenshotMode: jest.fn(), + }; + }); + + it('return screenshot with preserve layout option', async () => { + const driver = new HeadlessChromiumDriver( + mockScreenshotModeSetup, + mockConfig, + mockBasePath, + mockPage + ); + + const result = await driver.screenshot({ + elementPosition: { + boundingClientRect: { top: 200, left: 10, height: 10, width: 100 }, + scroll: { x: 100, y: 300 }, + }, + layout: new PreserveLayout({ width: 16, height: 16 }), + }); + + expect(result).toEqual(Buffer.from(`you won't believe this one weird screenshot`, 'base64')); + }); + + it('add error to screenshot contents', async () => { + const driver = new HeadlessChromiumDriver( + mockScreenshotModeSetup, + mockConfig, + mockBasePath, + mockPage + ); + + // @ts-expect-error spy on non-public class method + const testSpy = jest.spyOn(driver, 'injectScreenshottingErrorHeader'); + + const result = await driver.screenshot({ + elementPosition: { + boundingClientRect: { top: 200, left: 10, height: 10, width: 100 }, + scroll: { x: 100, y: 300 }, + }, + layout: new PreserveLayout({} as Size), + error: new Error(`Here's the fake error!`), + }); + + expect(testSpy.mock.lastCall).toMatchInlineSnapshot(` + Array [ + [Error: Here's the fake error!], + "[data-shared-items-container]", + ] + `); + expect(result).toEqual(Buffer.from(`you won't believe this one weird screenshot`, 'base64')); + }); +}); diff --git a/x-pack/plugins/screenshotting/server/browsers/chromium/driver_factory/index.test.ts b/x-pack/plugins/screenshotting/server/browsers/chromium/driver_factory/index.test.ts index 325a734edd741..c3e6f75d6d511 100644 --- a/x-pack/plugins/screenshotting/server/browsers/chromium/driver_factory/index.test.ts +++ b/x-pack/plugins/screenshotting/server/browsers/chromium/driver_factory/index.test.ts @@ -6,6 +6,7 @@ */ import type { Logger } from '@kbn/core/server'; +import { loggerMock } from '@kbn/logging-mocks'; import type { ScreenshotModePluginSetup } from '@kbn/screenshot-mode-plugin/server'; import * as puppeteer from 'puppeteer'; import * as Rx from 'rxjs'; @@ -24,22 +25,18 @@ describe('HeadlessChromiumDriverFactory', () => { }, }, } as ConfigType; - let logger: jest.Mocked; - let screenshotMode: jest.Mocked; + let logger: Logger; + let screenshotMode: ScreenshotModePluginSetup; let factory: HeadlessChromiumDriverFactory; - let mockBrowser: jest.Mocked; + let mockBrowser: puppeteer.Browser; beforeEach(async () => { - logger = { - debug: jest.fn(), - error: jest.fn(), - info: jest.fn(), - warn: jest.fn(), - get: jest.fn(() => logger), - } as unknown as typeof logger; - screenshotMode = {} as unknown as typeof screenshotMode; + logger = loggerMock.create(); + + screenshotMode = {} as unknown as ScreenshotModePluginSetup; let pageClosed = false; + mockBrowser = { newPage: jest.fn().mockResolvedValue({ target: jest.fn(() => ({ @@ -57,9 +54,8 @@ describe('HeadlessChromiumDriverFactory', () => { pageClosed = true; }), process: jest.fn(), - } as unknown as jest.Mocked; - - (puppeteer as jest.Mocked).launch.mockResolvedValue(mockBrowser); + } as unknown as puppeteer.Browser; + jest.spyOn(puppeteer, 'launch').mockResolvedValue(mockBrowser); factory = new HeadlessChromiumDriverFactory(screenshotMode, config, logger, path, ''); jest.spyOn(factory, 'getBrowserLogger').mockReturnValue(Rx.EMPTY); @@ -84,9 +80,8 @@ describe('HeadlessChromiumDriverFactory', () => { }); it('rejects if Puppeteer launch fails', async () => { - (puppeteer as jest.Mocked).launch.mockRejectedValue( - `Puppeteer Launch mock fail.` - ); + jest.spyOn(puppeteer, 'launch').mockRejectedValue(`Puppeteer Launch mock fail.`); + expect(() => factory .createPage({ openUrlTimeout: 0, defaultViewport: DEFAULT_VIEWPORT }) @@ -99,9 +94,8 @@ describe('HeadlessChromiumDriverFactory', () => { describe('close behaviour', () => { it('does not allow close to be called on the browse more than once', async () => { - await factory - .createPage({ openUrlTimeout: 0, defaultViewport: DEFAULT_VIEWPORT }) - .pipe( + await Rx.firstValueFrom( + factory.createPage({ openUrlTimeout: 0, defaultViewport: DEFAULT_VIEWPORT }).pipe( take(1), mergeMap(async ({ close }) => { expect(mockBrowser.close).not.toHaveBeenCalled(); @@ -110,7 +104,7 @@ describe('HeadlessChromiumDriverFactory', () => { expect(mockBrowser.close).toHaveBeenCalledTimes(1); }) ) - .toPromise(); + ); // Check again, after the observable completes expect(mockBrowser.close).toHaveBeenCalledTimes(1); }); diff --git a/x-pack/plugins/screenshotting/server/screenshots/index.ts b/x-pack/plugins/screenshotting/server/screenshots/index.ts index f8dd839dfc55c..b1a0d98fe8a27 100644 --- a/x-pack/plugins/screenshotting/server/screenshots/index.ts +++ b/x-pack/plugins/screenshotting/server/screenshots/index.ts @@ -5,48 +5,18 @@ * 2.0. */ -import type { CloudSetup } from '@kbn/cloud-plugin/server'; -import type { HttpServiceSetup, KibanaRequest, Logger, PackageInfo } from '@kbn/core/server'; +import type { KibanaRequest } from '@kbn/core/server'; import type { ExpressionAstExpression } from '@kbn/expressions-plugin/common'; import type { Optional } from '@kbn/utility-types'; -import { Semaphore } from '@kbn/std'; -import ipaddr from 'ipaddr.js'; -import { defaultsDeep, sum } from 'lodash'; -import { from, Observable, of, throwError } from 'rxjs'; -import { - catchError, - concatMap, - first, - map, - mergeMap, - take, - takeUntil, - tap, - toArray, -} from 'rxjs/operators'; -import { - errors, - LayoutParams, - SCREENSHOTTING_APP_ID, - SCREENSHOTTING_EXPRESSION, - SCREENSHOTTING_EXPRESSION_INPUT, -} from '../../common'; -import { HeadlessChromiumDriverFactory, PerformanceMetrics } from '../browsers'; -import { systemHasInsufficientMemory } from '../cloud'; -import type { ConfigType } from '../config'; -import { durationToNumber } from '../config'; +import { LayoutParams } from '../../common'; +import { PerformanceMetrics } from '../browsers'; import { PdfScreenshotOptions, PdfScreenshotResult, PngScreenshotOptions, PngScreenshotResult, - toPdf, - toPng, } from '../formats'; -import { createLayout, Layout } from '../layouts'; -import { EventLogger, Transactions } from './event_logger'; import type { ScreenshotObservableOptions, ScreenshotObservableResult } from './observable'; -import { ScreenshotObservableHandler, UrlOrUrlWithContext } from './observable'; export type { ScreenshotObservableResult, UrlOrUrlWithContext } from './observable'; @@ -55,17 +25,14 @@ export interface CaptureOptions extends Optional { - const { browserTimezone } = options; - - return this.browserDriverFactory - .createPage( - { - browserTimezone, - openUrlTimeout: durationToNumber(this.config.capture.timeouts.openUrl), - defaultViewport: { width: layout.width, deviceScaleFactor: layout.getBrowserZoom() }, - }, - this.logger - ) - .pipe( - this.semaphore.acquire(), - mergeMap(({ driver, error$, close }) => { - const screen: ScreenshotObservableHandler = new ScreenshotObservableHandler( - driver, - this.config, - eventLogger, - layout, - options - ); - - return from(options.urls).pipe( - concatMap((url, index) => - screen.setupPage(index, url).pipe( - catchError((error) => { - screen.checkPageIsOpen(); // this fails the job if the browser has closed - - this.logger.error(error); - eventLogger.error(error, Transactions.SCREENSHOTTING); - return of({ ...DEFAULT_SETUP_RESULT, error }); // allow "as-is" screenshot with injected warning message - }), - takeUntil(error$), - screen.getScreenshots() - ) - ), - take(options.urls.length), - toArray(), - mergeMap((results) => - // At this point we no longer need the page, close it and send out the results - close().pipe(map(({ metrics }) => ({ metrics, results }))) - ) - ); - }), - first() - ); - } - - private getScreenshottingAppUrl() { - const info = this.http.getServerInfo(); - const { protocol, port } = info; - let { hostname } = info; - - if (ipaddr.isValid(hostname) && !sum(ipaddr.parse(hostname).toByteArray())) { - hostname = 'localhost'; - } - - return `${protocol}://${hostname}:${port}${this.http.basePath.serverBasePath}/app/${SCREENSHOTTING_APP_ID}`; - } - - private getCaptureOptions({ - expression, - input, - request, - ...options - }: ScreenshotOptions): ScreenshotObservableOptions { - const headers = { ...(request?.headers ?? {}), ...(options.headers ?? {}) }; - const urls = expression - ? [ - [ - this.getScreenshottingAppUrl(), - { - [SCREENSHOTTING_EXPRESSION]: expression, - [SCREENSHOTTING_EXPRESSION_INPUT]: input, - }, - ] as UrlOrUrlWithContext, - ] - : options.urls; - - return defaultsDeep( - { - ...options, - headers, - urls, - }, - { - timeouts: { - openUrl: 60000, - waitForElements: 60000, - renderComplete: 120000, - }, - urls: [], - } - ); - } - - systemHasInsufficientMemory(): boolean { - return systemHasInsufficientMemory(this.cloud, this.logger.get('cloud')); - } - - getScreenshots(options: PngScreenshotOptions): Observable; - getScreenshots(options: PdfScreenshotOptions): Observable; - getScreenshots(options: ScreenshotOptions): Observable; - getScreenshots(options: ScreenshotOptions): Observable { - if (this.systemHasInsufficientMemory()) { - return throwError(() => new errors.InsufficientMemoryAvailableOnCloudError()); - } - - const eventLogger = new EventLogger(this.logger, this.config); - const transactionEnd = eventLogger.startTransaction(Transactions.SCREENSHOTTING); - - const layout = createLayout(options.layout ?? {}); - const captureOptions = this.getCaptureOptions(options); - - return this.captureScreenshots(eventLogger, layout, captureOptions).pipe( - tap(({ results, metrics }) => { - transactionEnd({ - labels: { - cpu: metrics?.cpu, - memory: metrics?.memory, - memory_mb: metrics?.memoryInMegabytes, - ...eventLogger.getByteLengthFromCaptureResults(results), - }, - }); - }), - mergeMap((result) => { - switch (options.format) { - case 'pdf': - return toPdf(eventLogger, this.packageInfo, layout, options, result); - default: - return toPng(result); - } - }) - ); - } -} +export { Screenshots } from './screenshots'; diff --git a/x-pack/plugins/screenshotting/server/screenshots/screenshots.test.ts b/x-pack/plugins/screenshotting/server/screenshots/screenshots.test.ts new file mode 100644 index 0000000000000..d5e8757803c81 --- /dev/null +++ b/x-pack/plugins/screenshotting/server/screenshots/screenshots.test.ts @@ -0,0 +1,166 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import type { CloudSetup } from '@kbn/cloud-plugin/server'; +import type { HttpServiceSetup } from '@kbn/core-http-server'; +import type { PackageInfo } from '@kbn/core/server'; +import type { Logger } from '@kbn/logging'; +import { loggerMock } from '@kbn/logging-mocks'; +import type { ScreenshotModePluginSetup } from '@kbn/screenshot-mode-plugin/server'; +import puppeteer from 'puppeteer'; +import * as Rx from 'rxjs'; +import { firstValueFrom } from 'rxjs'; +import type { PngScreenshotOptions } from '..'; +import { HeadlessChromiumDriverFactory } from '../browsers'; +import type { ConfigType } from '../config'; +import { Screenshots } from './screenshots'; + +jest.mock('puppeteer'); + +describe('class Screenshots', () => { + let mockConfig: ConfigType; + let browserDriverFactory: HeadlessChromiumDriverFactory; + let mockPackageInfo: PackageInfo; + let mockHttpSetup: HttpServiceSetup; + let mockCloudSetup: CloudSetup; + let mockLogger: Logger; + let mockScreenshotModeSetup: ScreenshotModePluginSetup; + + const mockBinaryPath = '/kibana/x-pack/plugins/screenshotting/chromium/linux/headless_shell'; + const mockBasePath = '/kibanaTest1'; + + beforeEach(() => { + mockLogger = loggerMock.create(); + + mockConfig = { + networkPolicy: { + enabled: false, + rules: [], + }, + browser: { + autoDownload: false, + chromium: { proxy: { enabled: false } }, + }, + capture: { + timeouts: { + openUrl: 60000, + waitForElements: 60000, + renderComplete: 60000, + }, + zoom: 2, + }, + poolSize: 1, + }; + + mockScreenshotModeSetup = {} as unknown as ScreenshotModePluginSetup; + + browserDriverFactory = new HeadlessChromiumDriverFactory( + mockScreenshotModeSetup, + mockConfig, + mockLogger, + mockBinaryPath, + mockBasePath + ); + + mockCloudSetup = { isCloudEnabled: true, instanceSizeMb: 8000 } as unknown as CloudSetup; + }); + + const getScreenshotsInstance = () => + new Screenshots( + browserDriverFactory, + mockLogger, + mockPackageInfo, + mockHttpSetup, + mockConfig, + mockCloudSetup + ); + + it('detects sufficient memory from cloud plugin', () => { + const screenshotsInstance = getScreenshotsInstance(); + const hasInsufficient = screenshotsInstance.systemHasInsufficientMemory(); + expect(hasInsufficient).toBe(false); + }); + + it('detects insufficient memory from cloud plugin', () => { + mockCloudSetup = { isCloudEnabled: true, instanceSizeMb: 1000 } as unknown as CloudSetup; + const screenshotsInstance = getScreenshotsInstance(); + const hasInsufficient = screenshotsInstance.systemHasInsufficientMemory(); + expect(hasInsufficient).toBe(true); + }); + + it('ignores insufficient memory if cloud is not enabled', () => { + mockCloudSetup = { isCloudEnabled: false, instanceSizeMb: 1000 } as unknown as CloudSetup; + const screenshotsInstance = getScreenshotsInstance(); + const hasInsufficient = screenshotsInstance.systemHasInsufficientMemory(); + expect(hasInsufficient).toBe(false); + }); + + describe('getScreenshots', () => { + beforeAll(() => { + jest.mock('puppeteer'); // see __mocks__/puppeteer.ts + }); + + beforeEach(() => { + jest.spyOn(browserDriverFactory, 'getBrowserLogger').mockReturnValue(Rx.EMPTY); + jest.spyOn(browserDriverFactory, 'getProcessLogger').mockReturnValue(Rx.EMPTY); + jest.spyOn(browserDriverFactory, 'getPageExit').mockReturnValue(Rx.EMPTY); + }); + + it('getScreenshots with PngScreenshotOptions', async () => { + const screenshotsInstance = getScreenshotsInstance(); + + const options: PngScreenshotOptions = { + format: 'png', + layout: { id: 'preserve_layout' }, + urls: ['/app/home/test'], + }; + + const observe = screenshotsInstance.getScreenshots(options); + await firstValueFrom(observe).then((captureResult) => { + expect(captureResult.results[0].screenshots[0].data).toEqual( + Buffer.from(`you won't believe this one weird screenshot`, 'base64') + ); + expect(captureResult.results[0].renderErrors).toBe(undefined); + expect(captureResult.results[0].error).toBe(undefined); + }); + }); + + it('adds warning to the screenshot in case of openUrl timeout', async () => { + // @ts-expect-error should not assign new value to read-only property + mockConfig.capture.timeouts.openUrl = 10; // must be a small amount of milliseconds + + // mock override + const browser = await puppeteer.launch(); + const page = await browser.newPage(); // should be stubPage + const pageGotoSpy = jest.spyOn(page, 'goto'); + pageGotoSpy.mockImplementation( + () => + new Promise((resolve) => { + setTimeout(resolve, 100); // must be larger than 10 + }) + ); + + const screenshotsInstance = getScreenshotsInstance(); + + const options: PngScreenshotOptions = { + format: 'png', + layout: { id: 'preserve_layout' }, + urls: ['/app/home/test'], + }; + + const observe = screenshotsInstance.getScreenshots(options); + await firstValueFrom(observe).then((captureResult) => { + expect(captureResult.results[0].error).toEqual( + new Error( + `Screenshotting encountered a timeout error: "open URL" took longer than 0.01 seconds.` + + ` You may need to increase "xpack.screenshotting.capture.timeouts.openUrl" in kibana.yml.` + ) + ); + }); + }); + }); +}); diff --git a/x-pack/plugins/screenshotting/server/screenshots/screenshots.ts b/x-pack/plugins/screenshotting/server/screenshots/screenshots.ts new file mode 100644 index 0000000000000..64f6ecdb5264a --- /dev/null +++ b/x-pack/plugins/screenshotting/server/screenshots/screenshots.ts @@ -0,0 +1,208 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import type { CloudSetup } from '@kbn/cloud-plugin/server'; +import type { HttpServiceSetup, Logger, PackageInfo } from '@kbn/core/server'; +import { Semaphore } from '@kbn/std'; +import ipaddr from 'ipaddr.js'; +import { defaultsDeep, sum } from 'lodash'; +import { from, Observable, of, throwError } from 'rxjs'; +import { + catchError, + concatMap, + first, + map, + mergeMap, + take, + takeUntil, + tap, + toArray, +} from 'rxjs/operators'; +import { CaptureResult, ScreenshotOptions, ScreenshotResult } from '.'; +import { + errors, + SCREENSHOTTING_APP_ID, + SCREENSHOTTING_EXPRESSION, + SCREENSHOTTING_EXPRESSION_INPUT, +} from '../../common'; +import { HeadlessChromiumDriverFactory } from '../browsers'; +import { systemHasInsufficientMemory } from '../cloud'; +import type { ConfigType } from '../config'; +import { durationToNumber } from '../config'; +import { + PdfScreenshotOptions, + PdfScreenshotResult, + PngScreenshotOptions, + PngScreenshotResult, + toPdf, + toPng, +} from '../formats'; +import { createLayout, Layout } from '../layouts'; +import { EventLogger, Transactions } from './event_logger'; +import type { ScreenshotObservableOptions } from './observable'; +import { ScreenshotObservableHandler, UrlOrUrlWithContext } from './observable'; + +const DEFAULT_SETUP_RESULT = { + elementsPositionAndAttributes: null, + timeRange: null, +}; + +export class Screenshots { + private semaphore: Semaphore; + + constructor( + private readonly browserDriverFactory: HeadlessChromiumDriverFactory, + private readonly logger: Logger, + private readonly packageInfo: PackageInfo, + private readonly http: HttpServiceSetup, + private readonly config: ConfigType, + private readonly cloud?: CloudSetup + ) { + this.semaphore = new Semaphore(config.poolSize); + } + + private captureScreenshots( + eventLogger: EventLogger, + layout: Layout, + options: ScreenshotObservableOptions + ): Observable { + const { browserTimezone } = options; + + return this.browserDriverFactory + .createPage( + { + browserTimezone, + openUrlTimeout: durationToNumber(this.config.capture.timeouts.openUrl), + defaultViewport: { width: layout.width, deviceScaleFactor: layout.getBrowserZoom() }, + }, + this.logger + ) + .pipe( + this.semaphore.acquire(), + mergeMap(({ driver, error$, close }) => { + const screen: ScreenshotObservableHandler = new ScreenshotObservableHandler( + driver, + this.config, + eventLogger, + layout, + options + ); + + return from(options.urls).pipe( + concatMap((url, index) => + screen.setupPage(index, url).pipe( + catchError((error) => { + screen.checkPageIsOpen(); // this fails the job if the browser has closed + + this.logger.error(error); + eventLogger.error(error, Transactions.SCREENSHOTTING); + return of({ ...DEFAULT_SETUP_RESULT, error }); // allow "as-is" screenshot with injected warning message + }), + takeUntil(error$), + screen.getScreenshots() + ) + ), + take(options.urls.length), + toArray(), + mergeMap((results) => + // At this point we no longer need the page, close it and send out the results + close().pipe(map(({ metrics }) => ({ metrics, results }))) + ) + ); + }), + first() + ); + } + + private getScreenshottingAppUrl() { + const info = this.http.getServerInfo(); + const { protocol, port } = info; + let { hostname } = info; + + if (ipaddr.isValid(hostname) && !sum(ipaddr.parse(hostname).toByteArray())) { + hostname = 'localhost'; + } + + return `${protocol}://${hostname}:${port}${this.http.basePath.serverBasePath}/app/${SCREENSHOTTING_APP_ID}`; + } + + private getCaptureOptions({ + expression, + input, + request, + ...options + }: ScreenshotOptions): ScreenshotObservableOptions { + const headers = { ...(request?.headers ?? {}), ...(options.headers ?? {}) }; + const urls = expression + ? [ + [ + this.getScreenshottingAppUrl(), + { + [SCREENSHOTTING_EXPRESSION]: expression, + [SCREENSHOTTING_EXPRESSION_INPUT]: input, + }, + ] as UrlOrUrlWithContext, + ] + : options.urls; + + return defaultsDeep( + { + ...options, + headers, + urls, + }, + { + timeouts: { + openUrl: 60000, + waitForElements: 60000, + renderComplete: 120000, + }, + urls: [], + } + ); + } + + systemHasInsufficientMemory(): boolean { + return systemHasInsufficientMemory(this.cloud, this.logger.get('cloud')); + } + + getScreenshots(options: PngScreenshotOptions): Observable; + getScreenshots(options: PdfScreenshotOptions): Observable; + getScreenshots(options: ScreenshotOptions): Observable; + getScreenshots(options: ScreenshotOptions): Observable { + if (this.systemHasInsufficientMemory()) { + return throwError(() => new errors.InsufficientMemoryAvailableOnCloudError()); + } + + const eventLogger = new EventLogger(this.logger, this.config); + const transactionEnd = eventLogger.startTransaction(Transactions.SCREENSHOTTING); + + const layout = createLayout(options.layout ?? {}); + const captureOptions = this.getCaptureOptions(options); + + return this.captureScreenshots(eventLogger, layout, captureOptions).pipe( + tap(({ results, metrics }) => { + transactionEnd({ + labels: { + cpu: metrics?.cpu, + memory: metrics?.memory, + memory_mb: metrics?.memoryInMegabytes, + ...eventLogger.getByteLengthFromCaptureResults(results), + }, + }); + }), + mergeMap((result) => { + switch (options.format) { + case 'pdf': + return toPdf(eventLogger, this.packageInfo, layout, options, result); + default: + return toPng(result); + } + }) + ); + } +} diff --git a/x-pack/plugins/screenshotting/tsconfig.json b/x-pack/plugins/screenshotting/tsconfig.json index 9110ea16661c2..3749a60fc4fe4 100644 --- a/x-pack/plugins/screenshotting/tsconfig.json +++ b/x-pack/plugins/screenshotting/tsconfig.json @@ -23,6 +23,8 @@ "@kbn/utils", "@kbn/safer-lodash-set", "@kbn/core-logging-server-mocks", + "@kbn/logging-mocks", + "@kbn/core-http-server", ], "exclude": [ "target/**/*", diff --git a/x-pack/plugins/security/server/authentication/authenticator.test.ts b/x-pack/plugins/security/server/authentication/authenticator.test.ts index 2de2fdbf4df2a..fbc31e588dc51 100644 --- a/x-pack/plugins/security/server/authentication/authenticator.test.ts +++ b/x-pack/plugins/security/server/authentication/authenticator.test.ts @@ -62,12 +62,14 @@ function getMockOptions({ selector, accessAgreementMessage, customLogoutURL, + configContext = {}, }: { providers?: Record | string[]; http?: Partial; selector?: AuthenticatorOptions['config']['authc']['selector']; accessAgreementMessage?: string; customLogoutURL?: string; + configContext?: Record; } = {}) { const auditService = auditServiceMock.create(); auditLogger = auditLoggerMock.create(); @@ -86,10 +88,10 @@ function getMockOptions({ loggers: loggingSystemMock.create(), getServerBaseURL: jest.fn(), config: createConfig( - ConfigSchema.validate({ - authc: { selector, providers, http }, - ...accessAgreementObj, - }), + ConfigSchema.validate( + { authc: { selector, providers, http }, ...accessAgreementObj }, + configContext + ), loggingSystemMock.create().get(), { isTLSEnabled: false } ), @@ -317,6 +319,23 @@ describe('Authenticator', () => { }); }); + it('includes JWT options if specified', () => { + new Authenticator( + getMockOptions({ + providers: { basic: { basic1: { order: 0 } } }, + http: { jwt: { taggedRoutesOnly: true } }, + configContext: { serverless: true }, + }) + ); + + expect( + jest.requireMock('./providers/http').HTTPAuthenticationProvider + ).toHaveBeenCalledWith(expect.anything(), { + supportedSchemes: new Set(['apikey', 'bearer', 'basic']), + jwt: { taggedRoutesOnly: true }, + }); + }); + it('does not include additional schemes if `autoSchemesEnabled` is disabled', () => { new Authenticator( getMockOptions({ diff --git a/x-pack/plugins/security/server/authentication/authenticator.ts b/x-pack/plugins/security/server/authentication/authenticator.ts index 24329c0e7575f..032512cc5bf6c 100644 --- a/x-pack/plugins/security/server/authentication/authenticator.ts +++ b/x-pack/plugins/security/server/authentication/authenticator.ts @@ -260,7 +260,7 @@ export class Authenticator { ...providerCommonOptions, name, logger: options.loggers.get(type, name), - urls: { loggedOut: (request) => this.getLoggedOutURL(request, type) }, + urls: { loggedOut: (request: KibanaRequest) => this.getLoggedOutURL(request, type) }, }), this.options.config.authc.providers[type]?.[name] ), @@ -276,7 +276,8 @@ export class Authenticator { name: '__http__', logger: options.loggers.get(HTTPAuthenticationProvider.type), urls: { - loggedOut: (request) => this.getLoggedOutURL(request, HTTPAuthenticationProvider.type), + loggedOut: (request: KibanaRequest) => + this.getLoggedOutURL(request, HTTPAuthenticationProvider.type), }, }) ); @@ -648,7 +649,13 @@ export class Authenticator { throw new Error(`Provider name "${options.name}" is reserved.`); } - this.providers.set(options.name, new HTTPAuthenticationProvider(options, { supportedSchemes })); + this.providers.set( + options.name, + new HTTPAuthenticationProvider(options, { + supportedSchemes, + jwt: this.options.config.authc.http.jwt, + }) + ); } /** diff --git a/x-pack/plugins/security/server/authentication/providers/http.test.ts b/x-pack/plugins/security/server/authentication/providers/http.test.ts index c1e7ba662c513..90ff62294ff3f 100644 --- a/x-pack/plugins/security/server/authentication/providers/http.test.ts +++ b/x-pack/plugins/security/server/authentication/providers/http.test.ts @@ -15,6 +15,7 @@ import { mockAuthenticationProviderOptions } from './base.mock'; import { HTTPAuthenticationProvider } from './http'; import { mockAuthenticatedUser } from '../../../common/model/authenticated_user.mock'; import { securityMock } from '../../mocks'; +import { ROUTE_TAG_ACCEPT_JWT } from '../../routes/tags'; import { AuthenticationResult } from '../authentication_result'; import { DeauthenticationResult } from '../deauthentication_result'; @@ -144,6 +145,113 @@ describe('HTTPAuthenticationProvider', () => { } }); + it('succeeds for JWT authentication if not restricted to tagged routes.', async () => { + const header = 'Bearer header.body.signature'; + const user = mockAuthenticatedUser({ authentication_realm: { name: 'jwt1', type: 'jwt' } }); + const request = httpServerMock.createKibanaRequest({ headers: { authorization: header } }); + + const mockScopedClusterClient = elasticsearchServiceMock.createScopedClusterClient(); + mockScopedClusterClient.asCurrentUser.security.authenticate.mockResponse(user); + mockOptions.client.asScoped.mockReturnValue(mockScopedClusterClient); + mockOptions.client.asScoped.mockClear(); + + const provider = new HTTPAuthenticationProvider(mockOptions, { + supportedSchemes: new Set(['bearer']), + }); + + await expect(provider.authenticate(request)).resolves.toEqual( + AuthenticationResult.succeeded({ + ...user, + authentication_provider: { type: 'http', name: 'http' }, + }) + ); + + expectAuthenticateCall(mockOptions.client, { headers: { authorization: header } }); + + expect(request.headers.authorization).toBe(header); + }); + + it('succeeds for non-JWT authentication if JWT restricted to tagged routes.', async () => { + const header = 'Basic xxx'; + const user = mockAuthenticatedUser(); + const request = httpServerMock.createKibanaRequest({ headers: { authorization: header } }); + + const mockScopedClusterClient = elasticsearchServiceMock.createScopedClusterClient(); + mockScopedClusterClient.asCurrentUser.security.authenticate.mockResponse(user); + mockOptions.client.asScoped.mockReturnValue(mockScopedClusterClient); + mockOptions.client.asScoped.mockClear(); + + const provider = new HTTPAuthenticationProvider(mockOptions, { + supportedSchemes: new Set(['bearer', 'basic']), + jwt: { taggedRoutesOnly: true }, + }); + + await expect(provider.authenticate(request)).resolves.toEqual( + AuthenticationResult.succeeded({ + ...user, + authentication_provider: { type: 'http', name: 'http' }, + }) + ); + + expectAuthenticateCall(mockOptions.client, { headers: { authorization: header } }); + + expect(request.headers.authorization).toBe(header); + }); + + it('succeeds for JWT authentication if restricted to tagged routes and route is tagged.', async () => { + const header = 'Bearer header.body.signature'; + const user = mockAuthenticatedUser({ authentication_realm: { name: 'jwt1', type: 'jwt' } }); + const request = httpServerMock.createKibanaRequest({ + headers: { authorization: header }, + routeTags: [ROUTE_TAG_ACCEPT_JWT], + }); + + const mockScopedClusterClient = elasticsearchServiceMock.createScopedClusterClient(); + mockScopedClusterClient.asCurrentUser.security.authenticate.mockResponse(user); + mockOptions.client.asScoped.mockReturnValue(mockScopedClusterClient); + mockOptions.client.asScoped.mockClear(); + + const provider = new HTTPAuthenticationProvider(mockOptions, { + supportedSchemes: new Set(['bearer']), + jwt: { taggedRoutesOnly: true }, + }); + + await expect(provider.authenticate(request)).resolves.toEqual( + AuthenticationResult.succeeded({ + ...user, + authentication_provider: { type: 'http', name: 'http' }, + }) + ); + + expectAuthenticateCall(mockOptions.client, { headers: { authorization: header } }); + + expect(request.headers.authorization).toBe(header); + }); + + it('fails for JWT authentication if restricted to tagged routes and route is NOT tagged.', async () => { + const header = 'Bearer header.body.signature'; + const user = mockAuthenticatedUser({ authentication_realm: { name: 'jwt1', type: 'jwt' } }); + const request = httpServerMock.createKibanaRequest({ headers: { authorization: header } }); + + const mockScopedClusterClient = elasticsearchServiceMock.createScopedClusterClient(); + mockScopedClusterClient.asCurrentUser.security.authenticate.mockResponse(user); + mockOptions.client.asScoped.mockReturnValue(mockScopedClusterClient); + mockOptions.client.asScoped.mockClear(); + + const provider = new HTTPAuthenticationProvider(mockOptions, { + supportedSchemes: new Set(['bearer']), + jwt: { taggedRoutesOnly: true }, + }); + + await expect(provider.authenticate(request)).resolves.toEqual( + AuthenticationResult.notHandled() + ); + + expectAuthenticateCall(mockOptions.client, { headers: { authorization: header } }); + + expect(request.headers.authorization).toBe(header); + }); + it('fails if authentication via `authorization` header with supported scheme fails.', async () => { const failureReason = new errors.ResponseError(securityMock.createApiResponse({ body: {} })); for (const { schemes, header } of [ diff --git a/x-pack/plugins/security/server/authentication/providers/http.ts b/x-pack/plugins/security/server/authentication/providers/http.ts index 21c2b25d3be8a..dd4bf8c40a435 100644 --- a/x-pack/plugins/security/server/authentication/providers/http.ts +++ b/x-pack/plugins/security/server/authentication/providers/http.ts @@ -9,12 +9,22 @@ import type { KibanaRequest } from '@kbn/core/server'; import type { AuthenticationProviderOptions } from './base'; import { BaseAuthenticationProvider } from './base'; +import { ROUTE_TAG_ACCEPT_JWT } from '../../routes/tags'; import { AuthenticationResult } from '../authentication_result'; import { DeauthenticationResult } from '../deauthentication_result'; import { HTTPAuthorizationHeader } from '../http_authentication'; +/** + * A type-string of the Elasticsearch JWT realm. + */ +const JWT_REALM_TYPE = 'jwt'; + interface HTTPAuthenticationProviderOptions { supportedSchemes: Set; + jwt?: { + // When set, only routes marked with `ROUTE_TAG_ACCEPT_JWT` tag will accept JWT as a means of authentication. + taggedRoutesOnly: boolean; + }; } /** @@ -32,6 +42,11 @@ export class HTTPAuthenticationProvider extends BaseAuthenticationProvider { */ private readonly supportedSchemes: Set; + /** + * Options relevant to the JWT authentication. + */ + private readonly jwt: HTTPAuthenticationProviderOptions['jwt']; + constructor( protected readonly options: Readonly, httpOptions: Readonly @@ -44,6 +59,7 @@ export class HTTPAuthenticationProvider extends BaseAuthenticationProvider { this.supportedSchemes = new Set( [...httpOptions.supportedSchemes].map((scheme) => scheme.toLowerCase()) ); + this.jwt = httpOptions.jwt; } /** @@ -79,6 +95,23 @@ export class HTTPAuthenticationProvider extends BaseAuthenticationProvider { this.logger.debug( `Request to ${request.url.pathname}${request.url.search} has been authenticated via authorization header with "${authorizationHeader.scheme}" scheme.` ); + + // If Kibana is configured to restrict JWT authentication only to selected routes, ensure that the route is marked + // with the `ROUTE_TAG_ACCEPT_JWT` tag to bypass that restriction. + if ( + user.authentication_realm.type === JWT_REALM_TYPE && + this.jwt?.taggedRoutesOnly && + !request.route.options.tags.includes(ROUTE_TAG_ACCEPT_JWT) + ) { + // Log a portion of the JWT signature to make debugging easier. + const jwtExcerpt = authorizationHeader.credentials.slice(-10); + this.logger.error( + `Attempted to authenticate with JWT credentials (…${jwtExcerpt}) against ${request.url.pathname}${request.url.search}, but it's not allowed. ` + + `Ensure that the route is defined with the "${ROUTE_TAG_ACCEPT_JWT}" tag.` + ); + return AuthenticationResult.notHandled(); + } + return AuthenticationResult.succeeded(user); } catch (err) { this.logger.debug( diff --git a/x-pack/plugins/security/server/config.test.ts b/x-pack/plugins/security/server/config.test.ts index 47b16b5752794..04b16aebab9cc 100644 --- a/x-pack/plugins/security/server/config.test.ts +++ b/x-pack/plugins/security/server/config.test.ts @@ -183,6 +183,68 @@ describe('config schema', () => { "showNavLinks": true, } `); + + expect(ConfigSchema.validate({}, { serverless: true, dist: true })).toMatchInlineSnapshot(` + Object { + "audit": Object { + "enabled": false, + }, + "authc": Object { + "http": Object { + "autoSchemesEnabled": true, + "enabled": true, + "jwt": Object { + "taggedRoutesOnly": true, + }, + "schemes": Array [ + "apikey", + "bearer", + ], + }, + "providers": Object { + "anonymous": undefined, + "basic": Object { + "basic": Object { + "accessAgreement": undefined, + "description": undefined, + "enabled": true, + "hint": undefined, + "icon": undefined, + "order": 0, + "session": Object { + "idleTimeout": undefined, + "lifespan": undefined, + }, + "showInSelector": true, + }, + }, + "kerberos": undefined, + "oidc": undefined, + "pki": undefined, + "saml": undefined, + "token": undefined, + }, + "selector": Object {}, + }, + "cookieName": "sid", + "enabled": true, + "loginAssistanceMessage": "", + "public": Object {}, + "secureCookies": false, + "session": Object { + "cleanupInterval": "PT1H", + "idleTimeout": "P3D", + "lifespan": "P30D", + }, + "showInsecureClusterWarning": true, + "showNavLinks": true, + "ui": Object { + "roleManagementEnabled": true, + "roleMappingManagementEnabled": true, + "userManagementEnabled": true, + }, + } + `); }); it('should throw error if xpack.security.encryptionKey is less than 32 characters', () => { @@ -1412,6 +1474,34 @@ describe('config schema', () => { }); }); + describe('authc.http', () => { + it('should not allow xpack.security.authc.http.jwt.* to be configured outside of the serverless context', () => { + expect(() => + ConfigSchema.validate( + { authc: { http: { jwt: { taggedRoutesOnly: false } } } }, + { serverless: false } + ) + ).toThrowErrorMatchingInlineSnapshot( + `"[authc.http.jwt]: a value wasn't expected to be present"` + ); + }); + + it('should allow xpack.security.authc.http.jwt.* to be configured inside of the serverless context', () => { + expect( + ConfigSchema.validate( + { authc: { http: { jwt: { taggedRoutesOnly: false } } } }, + { serverless: true } + ).ui + ).toMatchInlineSnapshot(` + Object { + "roleManagementEnabled": true, + "roleMappingManagementEnabled": true, + "userManagementEnabled": true, + } + `); + }); + }); + describe('ui', () => { it('should not allow xpack.security.ui.* to be configured outside of the serverless context', () => { expect(() => diff --git a/x-pack/plugins/security/server/config.ts b/x-pack/plugins/security/server/config.ts index 15cb6461b97b5..a5483b4e70ba2 100644 --- a/x-pack/plugins/security/server/config.ts +++ b/x-pack/plugins/security/server/config.ts @@ -279,6 +279,11 @@ export const ConfigSchema = schema.object({ enabled: schema.boolean({ defaultValue: true }), autoSchemesEnabled: schema.boolean({ defaultValue: true }), schemes: schema.arrayOf(schema.string(), { defaultValue: ['apikey', 'bearer'] }), + jwt: offeringBasedSchema({ + serverless: schema.object({ + taggedRoutesOnly: schema.boolean({ defaultValue: true }), + }), + }), }), }), audit: schema.object({ diff --git a/x-pack/plugins/security/server/plugin.ts b/x-pack/plugins/security/server/plugin.ts index 4f36c0bf508d0..d196dd9f41139 100644 --- a/x-pack/plugins/security/server/plugin.ts +++ b/x-pack/plugins/security/server/plugin.ts @@ -359,6 +359,7 @@ export class SecurityPlugin getAnonymousAccessService: this.getAnonymousAccess, getUserProfileService: this.getUserProfileService, analyticsService: this.analyticsService.setup({ analytics: core.analytics }), + buildFlavor: this.initializerContext.env.packageInfo.buildFlavor, }); return Object.freeze({ diff --git a/x-pack/plugins/security/server/routes/authentication/common.ts b/x-pack/plugins/security/server/routes/authentication/common.ts index 4eeeed2998098..f359c320151e8 100644 --- a/x-pack/plugins/security/server/routes/authentication/common.ts +++ b/x-pack/plugins/security/server/routes/authentication/common.ts @@ -32,9 +32,14 @@ export function defineCommonRoutes({ basePath, license, logger, + buildFlavor, }: RouteDefinitionParams) { // Generate two identical routes with new and deprecated URL and issue a warning if route with deprecated URL is ever used. - for (const path of ['/api/security/logout', '/api/security/v1/logout']) { + // For a serverless build, do not register deprecated versioned routes + for (const path of [ + '/api/security/logout', + ...(buildFlavor !== 'serverless' ? ['/api/security/v1/logout'] : []), + ]) { router.get( { path, @@ -79,7 +84,11 @@ export function defineCommonRoutes({ } // Generate two identical routes with new and deprecated URL and issue a warning if route with deprecated URL is ever used. - for (const path of ['/internal/security/me', '/api/security/v1/me']) { + // For a serverless build, do not register deprecated versioned routes + for (const path of [ + '/internal/security/me', + ...(buildFlavor !== 'serverless' ? ['/api/security/v1/me'] : []), + ]) { router.get( { path, validate: false }, createLicensedRouteHandler((context, request, response) => { @@ -123,6 +132,8 @@ export function defineCommonRoutes({ return undefined; } + // Register the login route for serverless for the time being. Note: This route will move into the buildFlavor !== 'serverless' block below. See next line. + // ToDo: In the serverless environment, we do not support API login - the only valid authentication methodology (or maybe just method or mechanism?) is SAML router.post( { path: '/internal/security/login', @@ -169,20 +180,23 @@ export function defineCommonRoutes({ }) ); - router.post( - { path: '/internal/security/access_agreement/acknowledge', validate: false }, - createLicensedRouteHandler(async (context, request, response) => { - // If license doesn't allow access agreement we shouldn't handle request. - if (!license.getFeatures().allowAccessAgreement) { - logger.warn(`Attempted to acknowledge access agreement when license doesn't allow it.`); - return response.forbidden({ - body: { message: `Current license doesn't support access agreement.` }, - }); - } + if (buildFlavor !== 'serverless') { + // In the serverless offering, the access agreement functionality isn't available. + router.post( + { path: '/internal/security/access_agreement/acknowledge', validate: false }, + createLicensedRouteHandler(async (context, request, response) => { + // If license doesn't allow access agreement we shouldn't handle request. + if (!license.getFeatures().allowAccessAgreement) { + logger.warn(`Attempted to acknowledge access agreement when license doesn't allow it.`); + return response.forbidden({ + body: { message: `Current license doesn't support access agreement.` }, + }); + } - await getAuthenticationService().acknowledgeAccessAgreement(request); + await getAuthenticationService().acknowledgeAccessAgreement(request); - return response.noContent(); - }) - ); + return response.noContent(); + }) + ); + } } diff --git a/x-pack/plugins/security/server/routes/authentication/saml.ts b/x-pack/plugins/security/server/routes/authentication/saml.ts index 350f3527f3310..ddc31fbc88b89 100644 --- a/x-pack/plugins/security/server/routes/authentication/saml.ts +++ b/x-pack/plugins/security/server/routes/authentication/saml.ts @@ -19,9 +19,14 @@ export function defineSAMLRoutes({ getAuthenticationService, basePath, logger, + buildFlavor, }: RouteDefinitionParams) { // Generate two identical routes with new and deprecated URL and issue a warning if route with deprecated URL is ever used. - for (const path of ['/api/security/saml/callback', '/api/security/v1/saml']) { + // For a serverless build, do not register deprecated versioned routes + for (const path of [ + '/api/security/saml/callback', + ...(buildFlavor !== 'serverless' ? ['/api/security/v1/saml'] : []), + ]) { router.post( { path, diff --git a/x-pack/plugins/security/server/routes/authorization/index.ts b/x-pack/plugins/security/server/routes/authorization/index.ts index b3b29e950d721..0e4cc467f3b14 100644 --- a/x-pack/plugins/security/server/routes/authorization/index.ts +++ b/x-pack/plugins/security/server/routes/authorization/index.ts @@ -12,8 +12,14 @@ import { defineShareSavedObjectPermissionRoutes } from './spaces'; import type { RouteDefinitionParams } from '..'; export function defineAuthorizationRoutes(params: RouteDefinitionParams) { - defineRolesRoutes(params); - definePrivilegesRoutes(params); + // The reset session endpoint is registered with httpResources and should remain public in serverless resetSessionPageRoutes(params); - defineShareSavedObjectPermissionRoutes(params); + defineRolesRoutes(params); // Temporarily allow role APIs (ToDo: move to non-serverless block below) + + // In the serverless environment, roles, privileges, and permissions are managed internally and only + // exposed to users and administrators via control plane UI, eliminating the need for any public HTTP APIs. + if (params.buildFlavor !== 'serverless') { + definePrivilegesRoutes(params); + defineShareSavedObjectPermissionRoutes(params); + } } diff --git a/x-pack/plugins/security/server/routes/index.ts b/x-pack/plugins/security/server/routes/index.ts index ba33ca319cd20..99739208e6b7a 100644 --- a/x-pack/plugins/security/server/routes/index.ts +++ b/x-pack/plugins/security/server/routes/index.ts @@ -7,6 +7,7 @@ import type { Observable } from 'rxjs'; +import type { BuildFlavor } from '@kbn/config/src/types'; import type { HttpResources, IBasePath, Logger } from '@kbn/core/server'; import type { KibanaFeature } from '@kbn/features-plugin/server'; import type { PublicMethodsOf } from '@kbn/utility-types'; @@ -54,20 +55,26 @@ export interface RouteDefinitionParams { getUserProfileService: () => UserProfileServiceStartInternal; getAnonymousAccessService: () => AnonymousAccessServiceStart; analyticsService: AnalyticsServiceSetup; + buildFlavor: BuildFlavor; } export function defineRoutes(params: RouteDefinitionParams) { + defineAnalyticsRoutes(params); + defineApiKeysRoutes(params); defineAuthenticationRoutes(params); defineAuthorizationRoutes(params); defineSessionManagementRoutes(params); - defineApiKeysRoutes(params); - defineIndicesRoutes(params); - defineUsersRoutes(params); defineUserProfileRoutes(params); - defineRoleMappingRoutes(params); + defineUsersRoutes(params); // Temporarily allow user APIs (ToDo: move to non-serverless block below) defineViewRoutes(params); - defineDeprecationsRoutes(params); - defineAnonymousAccessRoutes(params); - defineSecurityCheckupGetStateRoutes(params); - defineAnalyticsRoutes(params); + + // In the serverless environment... + if (params.buildFlavor !== 'serverless') { + defineAnonymousAccessRoutes(params); // anonymous access is disabled + defineDeprecationsRoutes(params); // deprecated kibana user roles are not applicable, these HTTP APIs are not needed + defineIndicesRoutes(params); // the ES privileges form used to help define roles (only consumer) is disabled, so there is no need for these HTTP APIs + defineRoleMappingRoutes(params); // role mappings are managed internally, based on configurations in control plane, these HTTP APIs are not needed + defineSecurityCheckupGetStateRoutes(params); // security checkup is not applicable, these HTTP APIs are not needed + // defineUsersRoutes(params); // the native realm is not enabled (there is only Elastic cloud SAML), no user HTTP API routes are needed + } } diff --git a/x-pack/plugins/security/server/routes/session_management/index.ts b/x-pack/plugins/security/server/routes/session_management/index.ts index 041feea8a62fd..c095a77409975 100644 --- a/x-pack/plugins/security/server/routes/session_management/index.ts +++ b/x-pack/plugins/security/server/routes/session_management/index.ts @@ -13,5 +13,12 @@ import type { RouteDefinitionParams } from '..'; export function defineSessionManagementRoutes(params: RouteDefinitionParams) { defineSessionInfoRoutes(params); defineSessionExtendRoutes(params); - defineInvalidateSessionsRoutes(params); + + // The invalidate session API was introduced to address situations where the session index + // could grow rapidly - when session timeouts are disabled, or with anonymous access. + // In the serverless environment, sessions timeouts are always be enabled, and there is no + // anonymous access. This eliminates the need for an invalidate session HTTP API. + if (params.buildFlavor !== 'serverless') { + defineInvalidateSessionsRoutes(params); + } } diff --git a/x-pack/plugins/security/server/routes/tags.ts b/x-pack/plugins/security/server/routes/tags.ts index 090c04d29757f..a6ffd49d53a52 100644 --- a/x-pack/plugins/security/server/routes/tags.ts +++ b/x-pack/plugins/security/server/routes/tags.ts @@ -25,3 +25,9 @@ export const ROUTE_TAG_CAN_REDIRECT = 'security:canRedirect'; * parties, require special handling. */ export const ROUTE_TAG_AUTH_FLOW = 'security:authFlow'; + +/** + * If `xpack.security.authc.http.jwt.taggedRoutesOnly` flag is set, then only routes marked with this tag will accept + * JWT as a means of authentication. + */ +export const ROUTE_TAG_ACCEPT_JWT = 'security:acceptJWT'; diff --git a/x-pack/plugins/security/server/routes/views/index.test.ts b/x-pack/plugins/security/server/routes/views/index.test.ts index 755a5a1202c73..f5f0296a39c19 100644 --- a/x-pack/plugins/security/server/routes/views/index.test.ts +++ b/x-pack/plugins/security/server/routes/views/index.test.ts @@ -12,6 +12,7 @@ describe('View routes', () => { it('does not register Login routes if both `basic` and `token` providers are disabled', () => { const routeParamsMock = routeDefinitionParamsMock.create({ authc: { providers: { pki: { pki1: { order: 0 } } } }, + accessAgreement: { message: 'some-message' }, }); defineViewRoutes(routeParamsMock); @@ -19,12 +20,12 @@ describe('View routes', () => { expect(routeParamsMock.httpResources.register.mock.calls.map(([{ path }]) => path)) .toMatchInlineSnapshot(` Array [ - "/security/access_agreement", "/security/account", + "/internal/security/capture-url", "/security/logged_out", "/logout", "/security/overwritten_session", - "/internal/security/capture-url", + "/security/access_agreement", ] `); expect(routeParamsMock.router.get.mock.calls.map(([{ path }]) => path)).toMatchInlineSnapshot(` @@ -37,6 +38,7 @@ describe('View routes', () => { it('registers Login routes if `basic` provider is enabled', () => { const routeParamsMock = routeDefinitionParamsMock.create({ authc: { providers: { basic: { basic1: { order: 0 } } } }, + accessAgreement: { message: 'some-message' }, }); defineViewRoutes(routeParamsMock); @@ -44,19 +46,19 @@ describe('View routes', () => { expect(routeParamsMock.httpResources.register.mock.calls.map(([{ path }]) => path)) .toMatchInlineSnapshot(` Array [ - "/login", - "/security/access_agreement", "/security/account", + "/internal/security/capture-url", "/security/logged_out", "/logout", "/security/overwritten_session", - "/internal/security/capture-url", + "/security/access_agreement", + "/login", ] `); expect(routeParamsMock.router.get.mock.calls.map(([{ path }]) => path)).toMatchInlineSnapshot(` Array [ - "/internal/security/login_state", "/internal/security/access_agreement/state", + "/internal/security/login_state", ] `); }); @@ -64,6 +66,7 @@ describe('View routes', () => { it('registers Login routes if `token` provider is enabled', () => { const routeParamsMock = routeDefinitionParamsMock.create({ authc: { providers: { token: { token1: { order: 0 } } } }, + accessAgreement: { message: 'some-message' }, }); defineViewRoutes(routeParamsMock); @@ -71,19 +74,19 @@ describe('View routes', () => { expect(routeParamsMock.httpResources.register.mock.calls.map(([{ path }]) => path)) .toMatchInlineSnapshot(` Array [ - "/login", - "/security/access_agreement", "/security/account", + "/internal/security/capture-url", "/security/logged_out", "/logout", "/security/overwritten_session", - "/internal/security/capture-url", + "/security/access_agreement", + "/login", ] `); expect(routeParamsMock.router.get.mock.calls.map(([{ path }]) => path)).toMatchInlineSnapshot(` Array [ - "/internal/security/login_state", "/internal/security/access_agreement/state", + "/internal/security/login_state", ] `); }); @@ -91,6 +94,7 @@ describe('View routes', () => { it('registers Login routes if Login Selector is enabled even if both `token` and `basic` providers are not enabled', () => { const routeParamsMock = routeDefinitionParamsMock.create({ authc: { selector: { enabled: true }, providers: { pki: { pki1: { order: 0 } } } }, + accessAgreement: { message: 'some-message' }, }); defineViewRoutes(routeParamsMock); @@ -98,19 +102,44 @@ describe('View routes', () => { expect(routeParamsMock.httpResources.register.mock.calls.map(([{ path }]) => path)) .toMatchInlineSnapshot(` Array [ - "/login", - "/security/access_agreement", "/security/account", + "/internal/security/capture-url", "/security/logged_out", "/logout", "/security/overwritten_session", + "/security/access_agreement", + "/login", + ] + `); + expect(routeParamsMock.router.get.mock.calls.map(([{ path }]) => path)).toMatchInlineSnapshot(` + Array [ + "/internal/security/access_agreement/state", + "/internal/security/login_state", + ] + `); + }); + + it('does not register access agreement routes if access agreement is not enabled', () => { + const routeParamsMock = routeDefinitionParamsMock.create({ + authc: { providers: { basic: { basic1: { order: 0 } } } }, + }); + + defineViewRoutes(routeParamsMock); + + expect(routeParamsMock.httpResources.register.mock.calls.map(([{ path }]) => path)) + .toMatchInlineSnapshot(` + Array [ + "/security/account", "/internal/security/capture-url", + "/security/logged_out", + "/logout", + "/security/overwritten_session", + "/login", ] `); expect(routeParamsMock.router.get.mock.calls.map(([{ path }]) => path)).toMatchInlineSnapshot(` Array [ "/internal/security/login_state", - "/internal/security/access_agreement/state", ] `); }); diff --git a/x-pack/plugins/security/server/routes/views/index.ts b/x-pack/plugins/security/server/routes/views/index.ts index f1efa4611dc58..c9fbb3b1bc363 100644 --- a/x-pack/plugins/security/server/routes/views/index.ts +++ b/x-pack/plugins/security/server/routes/views/index.ts @@ -15,17 +15,23 @@ import { defineOverwrittenSessionRoutes } from './overwritten_session'; import type { RouteDefinitionParams } from '..'; export function defineViewRoutes(params: RouteDefinitionParams) { + defineAccountManagementRoutes(params); + defineCaptureURLRoutes(params); + defineLoggedOutRoutes(params); + defineLogoutRoutes(params); + defineOverwrittenSessionRoutes(params); + + if ( + params.config.accessAgreement?.message || + params.config.authc.sortedProviders.some(({ hasAccessAgreement }) => hasAccessAgreement) + ) { + defineAccessAgreementRoutes(params); + } + if ( params.config.authc.selector.enabled || params.config.authc.sortedProviders.some(({ type }) => type === 'basic' || type === 'token') ) { defineLoginRoutes(params); } - - defineAccessAgreementRoutes(params); - defineAccountManagementRoutes(params); - defineLoggedOutRoutes(params); - defineLogoutRoutes(params); - defineOverwrittenSessionRoutes(params); - defineCaptureURLRoutes(params); } diff --git a/x-pack/plugins/security/server/session_management/session_index.test.ts b/x-pack/plugins/security/server/session_management/session_index.test.ts index 36dea9c1caf7b..2a837a7be7807 100644 --- a/x-pack/plugins/security/server/session_management/session_index.test.ts +++ b/x-pack/plugins/security/server/session_management/session_index.test.ts @@ -100,6 +100,54 @@ describe('Session index', () => { expect(mockElasticsearchClient.indices.create).not.toHaveBeenCalled(); }); + it('does not delete legacy index template if the legacy template API is not available (410)', async () => { + const goneError = new errors.ResponseError( + securityMock.createApiResponse( + securityMock.createApiResponse({ body: { type: 'And it is gone!' }, statusCode: 410 }) + ) + ); + mockElasticsearchClient.indices.existsTemplate.mockRejectedValueOnce(goneError); + mockElasticsearchClient.indices.existsIndexTemplate.mockResponse(false); + mockElasticsearchClient.indices.exists.mockResponse(false); + + await sessionIndex.initialize(); + + assertExistenceChecksPerformed(); + + expect(mockElasticsearchClient.indices.deleteTemplate).not.toHaveBeenCalled(); + expect(mockElasticsearchClient.indices.deleteIndexTemplate).not.toHaveBeenCalled(); + expect(mockElasticsearchClient.indices.putAlias).not.toHaveBeenCalled(); + expect(mockElasticsearchClient.indices.getMapping).not.toHaveBeenCalled(); + expect(mockElasticsearchClient.indices.putMapping).not.toHaveBeenCalled(); + expect(mockElasticsearchClient.indices.create).toHaveBeenCalledWith( + getSessionIndexSettings({ indexName, aliasName }) + ); + }); + + it('does not delete legacy index template if the legacy template API is not available (404)', async () => { + const goneError = new errors.ResponseError( + securityMock.createApiResponse( + securityMock.createApiResponse({ body: { type: 'And it is gone!' }, statusCode: 404 }) + ) + ); + mockElasticsearchClient.indices.existsTemplate.mockRejectedValueOnce(goneError); + mockElasticsearchClient.indices.existsIndexTemplate.mockResponse(false); + mockElasticsearchClient.indices.exists.mockResponse(false); + + await sessionIndex.initialize(); + + assertExistenceChecksPerformed(); + + expect(mockElasticsearchClient.indices.deleteTemplate).not.toHaveBeenCalled(); + expect(mockElasticsearchClient.indices.deleteIndexTemplate).not.toHaveBeenCalled(); + expect(mockElasticsearchClient.indices.putAlias).not.toHaveBeenCalled(); + expect(mockElasticsearchClient.indices.getMapping).not.toHaveBeenCalled(); + expect(mockElasticsearchClient.indices.putMapping).not.toHaveBeenCalled(); + expect(mockElasticsearchClient.indices.create).toHaveBeenCalledWith( + getSessionIndexSettings({ indexName, aliasName }) + ); + }); + it('deletes legacy index template if needed and creates index if it does not exist', async () => { mockElasticsearchClient.indices.existsTemplate.mockResponse(true); mockElasticsearchClient.indices.existsIndexTemplate.mockResponse(false); diff --git a/x-pack/plugins/security/server/session_management/session_index.ts b/x-pack/plugins/security/server/session_management/session_index.ts index 0bb2fdac6cbd3..54f448d151389 100644 --- a/x-pack/plugins/security/server/session_management/session_index.ts +++ b/x-pack/plugins/security/server/session_management/session_index.ts @@ -26,7 +26,7 @@ import type { AuditLogger } from '../audit'; import { sessionCleanupConcurrentLimitEvent, sessionCleanupEvent } from '../audit'; import { AnonymousAuthenticationProvider } from '../authentication'; import type { ConfigType } from '../config'; -import { getDetailedErrorMessage } from '../errors'; +import { getDetailedErrorMessage, getErrorStatusCode } from '../errors'; export interface SessionIndexOptions { readonly elasticsearchClient: ElasticsearchClient; @@ -105,16 +105,18 @@ export function getSessionIndexSettings({ }, }, mappings: { - dynamic: 'strict', + dynamic: 'strict' as const, _meta: { [SESSION_INDEX_MAPPINGS_VERSION_META_FIELD_NAME]: SESSION_INDEX_MAPPINGS_VERSION }, properties: { - usernameHash: { type: 'keyword' }, - provider: { properties: { name: { type: 'keyword' }, type: { type: 'keyword' } } }, - idleTimeoutExpiration: { type: 'date' }, - createdAt: { type: 'date' }, - lifespanExpiration: { type: 'date' }, - accessAgreementAcknowledged: { type: 'boolean' }, - content: { type: 'binary' }, + usernameHash: { type: 'keyword' as const }, + provider: { + properties: { name: { type: 'keyword' as const }, type: { type: 'keyword' as const } }, + }, + idleTimeoutExpiration: { type: 'date' as const }, + createdAt: { type: 'date' as const }, + lifespanExpiration: { type: 'date' as const }, + accessAgreementAcknowledged: { type: 'boolean' as const }, + content: { type: 'binary' as const }, }, }, }); @@ -403,10 +405,15 @@ export class SessionIndex { } ); } catch (err) { - this.options.logger.error( - `Failed to check if session legacy index template exists: ${err.message}` - ); - return reject(err); + // The Template API is deprecated and may become unavailable at some point (404 Not Found). It's also + // unavailable in the Serverless offering (410 Gone). In either of these cases, we should disregard the error. + const errorStatusCode = getErrorStatusCode(err); + if (errorStatusCode !== 404 && errorStatusCode !== 410) { + this.options.logger.error( + `Failed to check if session legacy index template exists: ${err.message}` + ); + return reject(err); + } } if (legacyIndexTemplateExists) { diff --git a/x-pack/plugins/security_solution/common/api/detection_engine/model/rule_schema/rule_schemas.ts b/x-pack/plugins/security_solution/common/api/detection_engine/model/rule_schema/rule_schemas.ts index 24badba560b8e..acc429eb2f340 100644 --- a/x-pack/plugins/security_solution/common/api/detection_engine/model/rule_schema/rule_schemas.ts +++ b/x-pack/plugins/security_solution/common/api/detection_engine/model/rule_schema/rule_schemas.ts @@ -221,7 +221,7 @@ export const KqlQueryLanguage = t.keyof({ kuery: null, lucene: null }); export type EqlQueryLanguage = t.TypeOf; export const EqlQueryLanguage = t.literal('eql'); -export const eqlSchema = buildRuleSchemas({ +const eqlSchema = buildRuleSchemas({ required: { type: t.literal('eql'), language: EqlQueryLanguage, @@ -256,7 +256,7 @@ export const EqlPatchParams = eqlSchema.patch; // ------------------------------------------------------------------------------------------------- // Indicator Match rule schema -export const threatMatchSchema = buildRuleSchemas({ +const threatMatchSchema = buildRuleSchemas({ required: { type: t.literal('threat_match'), query: RuleQuery, @@ -307,7 +307,7 @@ export const ThreatMatchPatchParams = threatMatchSchema.patch; // ------------------------------------------------------------------------------------------------- // Custom Query rule schema -export const querySchema = buildRuleSchemas({ +const querySchema = buildRuleSchemas({ required: { type: t.literal('query'), }, @@ -343,7 +343,7 @@ export const QueryPatchParams = querySchema.patch; // ------------------------------------------------------------------------------------------------- // Saved Query rule schema -export const savedQuerySchema = buildRuleSchemas({ +const savedQuerySchema = buildRuleSchemas({ required: { type: t.literal('saved_query'), saved_id, @@ -387,7 +387,7 @@ export const SavedQueryPatchParams = savedQuerySchema.patch; // ------------------------------------------------------------------------------------------------- // Threshold rule schema -export const thresholdSchema = buildRuleSchemas({ +const thresholdSchema = buildRuleSchemas({ required: { type: t.literal('threshold'), query: RuleQuery, @@ -422,7 +422,7 @@ export const ThresholdPatchParams = thresholdSchema.patch; // ------------------------------------------------------------------------------------------------- // Machine Learning rule schema -export const machineLearningSchema = buildRuleSchemas({ +const machineLearningSchema = buildRuleSchemas({ required: { type: t.literal('machine_learning'), anomaly_threshold, @@ -462,7 +462,7 @@ export const MachineLearningPatchParams = machineLearningSchema.patch; // ------------------------------------------------------------------------------------------------- // New Terms rule schema -export const newTermsSchema = buildRuleSchemas({ +const newTermsSchema = buildRuleSchemas({ required: { type: t.literal('new_terms'), query: RuleQuery, diff --git a/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.gen.ts b/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.gen.ts new file mode 100644 index 0000000000000..9f9abdf51dc4e --- /dev/null +++ b/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.gen.ts @@ -0,0 +1,49 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { z } from 'zod'; + +/* + * NOTICE: Do not edit this file manually. + * This file is automatically generated by the OpenAPI Generator `yarn openapi:generate`. + */ + +export type GetPrebuiltRulesAndTimelinesStatusResponse = z.infer< + typeof GetPrebuiltRulesAndTimelinesStatusResponse +>; +export const GetPrebuiltRulesAndTimelinesStatusResponse = z + .object({ + /** + * The total number of custom rules + */ + rules_custom_installed: z.number().min(0), + /** + * The total number of installed prebuilt rules + */ + rules_installed: z.number().min(0), + /** + * The total number of available prebuilt rules that are not installed + */ + rules_not_installed: z.number().min(0), + /** + * The total number of outdated prebuilt rules + */ + rules_not_updated: z.number().min(0), + /** + * The total number of installed prebuilt timelines + */ + timelines_installed: z.number().min(0), + /** + * The total number of available prebuilt timelines that are not installed + */ + timelines_not_installed: z.number().min(0), + /** + * The total number of outdated prebuilt timelines + */ + timelines_not_updated: z.number().min(0), + }) + .strict(); diff --git a/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.schema.yaml b/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.schema.yaml index deea1b32aa3aa..889d7321c0bee 100644 --- a/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.schema.yaml +++ b/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.schema.yaml @@ -5,8 +5,8 @@ info: paths: /api/detection_engine/rules/prepackaged/_status: get: - operationId: GetPrebuiltRulesStatus - x-codegen-enabled: false + operationId: GetPrebuiltRulesAndTimelinesStatus + x-codegen-enabled: true summary: Get the status of Elastic prebuilt rules tags: - Prebuilt Rules API @@ -17,6 +17,7 @@ paths: application/json: schema: type: object + additionalProperties: false properties: rules_custom_installed: type: integer diff --git a/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.test.ts b/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.test.ts index 83c09d2dcab26..8be56e9d41416 100644 --- a/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.test.ts +++ b/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.test.ts @@ -5,11 +5,9 @@ * 2.0. */ -import { left } from 'fp-ts/lib/Either'; -import { pipe } from 'fp-ts/lib/pipeable'; -import { exactCheck, foldLeftRight, getPaths } from '@kbn/securitysolution-io-ts-utils'; - -import { GetPrebuiltRulesAndTimelinesStatusResponse } from './get_prebuilt_rules_and_timelines_status_route'; +import { stringifyZodError } from '@kbn/securitysolution-es-utils'; +import { expectParseError, expectParseSuccess } from '../../../../test/zod_helpers'; +import { GetPrebuiltRulesAndTimelinesStatusResponse } from './get_prebuilt_rules_and_timelines_status_route.gen'; describe('Get prebuilt rules and timelines status response schema', () => { test('it should validate an empty prepackaged response with defaults', () => { @@ -22,12 +20,10 @@ describe('Get prebuilt rules and timelines status response schema', () => { timelines_not_installed: 0, timelines_not_updated: 0, }; - const decoded = GetPrebuiltRulesAndTimelinesStatusResponse.decode(payload); - const checked = exactCheck(payload, decoded); - const message = pipe(checked, foldLeftRight); + const result = GetPrebuiltRulesAndTimelinesStatusResponse.safeParse(payload); - expect(getPaths(left(message.errors))).toEqual([]); - expect(message.schema).toEqual(payload); + expectParseSuccess(result); + expect(result.data).toEqual(payload); }); test('it should not validate an extra invalid field added', () => { @@ -41,12 +37,12 @@ describe('Get prebuilt rules and timelines status response schema', () => { timelines_not_installed: 0, timelines_not_updated: 0, }; - const decoded = GetPrebuiltRulesAndTimelinesStatusResponse.decode(payload); - const checked = exactCheck(payload, decoded); - const message = pipe(checked, foldLeftRight); + const result = GetPrebuiltRulesAndTimelinesStatusResponse.safeParse(payload); - expect(getPaths(left(message.errors))).toEqual(['invalid keys "invalid_field"']); - expect(message.schema).toEqual({}); + expectParseError(result); + expect(stringifyZodError(result.error)).toEqual( + "Unrecognized key(s) in object: 'invalid_field'" + ); }); test('it should NOT validate an empty prepackaged response with a negative "rules_installed" number', () => { @@ -59,14 +55,12 @@ describe('Get prebuilt rules and timelines status response schema', () => { timelines_not_installed: 0, timelines_not_updated: 0, }; - const decoded = GetPrebuiltRulesAndTimelinesStatusResponse.decode(payload); - const checked = exactCheck(payload, decoded); - const message = pipe(checked, foldLeftRight); + const result = GetPrebuiltRulesAndTimelinesStatusResponse.safeParse(payload); - expect(getPaths(left(message.errors))).toEqual([ - 'Invalid value "-1" supplied to "rules_installed"', - ]); - expect(message.schema).toEqual({}); + expectParseError(result); + expect(stringifyZodError(result.error)).toEqual( + 'rules_installed: Number must be greater than or equal to 0' + ); }); test('it should NOT validate an empty prepackaged response with a negative "rules_not_installed"', () => { @@ -79,14 +73,12 @@ describe('Get prebuilt rules and timelines status response schema', () => { timelines_not_installed: 0, timelines_not_updated: 0, }; - const decoded = GetPrebuiltRulesAndTimelinesStatusResponse.decode(payload); - const checked = exactCheck(payload, decoded); - const message = pipe(checked, foldLeftRight); + const result = GetPrebuiltRulesAndTimelinesStatusResponse.safeParse(payload); - expect(getPaths(left(message.errors))).toEqual([ - 'Invalid value "-1" supplied to "rules_not_installed"', - ]); - expect(message.schema).toEqual({}); + expectParseError(result); + expect(stringifyZodError(result.error)).toEqual( + 'rules_not_installed: Number must be greater than or equal to 0' + ); }); test('it should NOT validate an empty prepackaged response with a negative "rules_not_updated"', () => { @@ -99,14 +91,12 @@ describe('Get prebuilt rules and timelines status response schema', () => { timelines_not_installed: 0, timelines_not_updated: 0, }; - const decoded = GetPrebuiltRulesAndTimelinesStatusResponse.decode(payload); - const checked = exactCheck(payload, decoded); - const message = pipe(checked, foldLeftRight); + const result = GetPrebuiltRulesAndTimelinesStatusResponse.safeParse(payload); - expect(getPaths(left(message.errors))).toEqual([ - 'Invalid value "-1" supplied to "rules_not_updated"', - ]); - expect(message.schema).toEqual({}); + expectParseError(result); + expect(stringifyZodError(result.error)).toEqual( + 'rules_not_updated: Number must be greater than or equal to 0' + ); }); test('it should NOT validate an empty prepackaged response with a negative "rules_custom_installed"', () => { @@ -119,14 +109,12 @@ describe('Get prebuilt rules and timelines status response schema', () => { timelines_not_installed: 0, timelines_not_updated: 0, }; - const decoded = GetPrebuiltRulesAndTimelinesStatusResponse.decode(payload); - const checked = exactCheck(payload, decoded); - const message = pipe(checked, foldLeftRight); + const result = GetPrebuiltRulesAndTimelinesStatusResponse.safeParse(payload); - expect(getPaths(left(message.errors))).toEqual([ - 'Invalid value "-1" supplied to "rules_custom_installed"', - ]); - expect(message.schema).toEqual({}); + expectParseError(result); + expect(stringifyZodError(result.error)).toEqual( + 'rules_custom_installed: Number must be greater than or equal to 0' + ); }); test('it should NOT validate an empty prepackaged response if "rules_installed" is not there', () => { @@ -141,13 +129,9 @@ describe('Get prebuilt rules and timelines status response schema', () => { }; // @ts-expect-error delete payload.rules_installed; - const decoded = GetPrebuiltRulesAndTimelinesStatusResponse.decode(payload); - const checked = exactCheck(payload, decoded); - const message = pipe(checked, foldLeftRight); + const result = GetPrebuiltRulesAndTimelinesStatusResponse.safeParse(payload); - expect(getPaths(left(message.errors))).toEqual([ - 'Invalid value "undefined" supplied to "rules_installed"', - ]); - expect(message.schema).toEqual({}); + expectParseError(result); + expect(stringifyZodError(result.error)).toEqual('rules_installed: Required'); }); }); diff --git a/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.ts b/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.ts deleted file mode 100644 index f5c26b81682a1..0000000000000 --- a/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.ts +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import * as t from 'io-ts'; -import { PositiveInteger } from '@kbn/securitysolution-io-ts-types'; - -export type GetPrebuiltRulesAndTimelinesStatusResponse = t.TypeOf< - typeof GetPrebuiltRulesAndTimelinesStatusResponse ->; -export const GetPrebuiltRulesAndTimelinesStatusResponse = t.exact( - t.type({ - rules_custom_installed: PositiveInteger, - rules_installed: PositiveInteger, - rules_not_installed: PositiveInteger, - rules_not_updated: PositiveInteger, - - timelines_installed: PositiveInteger, - timelines_not_installed: PositiveInteger, - timelines_not_updated: PositiveInteger, - }) -); diff --git a/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/index.ts b/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/index.ts index 38607fbd30513..87b43732bb6d2 100644 --- a/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/index.ts +++ b/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/index.ts @@ -5,7 +5,7 @@ * 2.0. */ -export * from './get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route'; +export * from './get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.gen'; export * from './get_prebuilt_rules_status/get_prebuilt_rules_status_route'; export * from './install_prebuilt_rules_and_timelines/install_prebuilt_rules_and_timelines_route'; export * from './perform_rule_installation/perform_rule_installation_route'; diff --git a/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/review_rule_installation/review_rule_installation_route.ts b/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/review_rule_installation/review_rule_installation_route.ts index 7a7f4878defb3..ddb452a73079e 100644 --- a/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/review_rule_installation/review_rule_installation_route.ts +++ b/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/review_rule_installation/review_rule_installation_route.ts @@ -5,15 +5,15 @@ * 2.0. */ -import type { RuleSignatureId, RuleTagArray, RuleVersion } from '../../model'; -import type { DiffableRule } from '../model'; +import type { RuleTagArray } from '../../model'; +import type { RuleResponse } from '../../model/rule_schema/rule_schemas'; export interface ReviewRuleInstallationResponseBody { /** Aggregated info about all rules available for installation */ stats: RuleInstallationStatsForReview; /** Info about individual rules: one object per each rule available for installation */ - rules: RuleInstallationInfoForReview[]; + rules: RuleResponse[]; } export interface RuleInstallationStatsForReview { @@ -23,8 +23,3 @@ export interface RuleInstallationStatsForReview { /** A union of all tags of all rules available for installation */ tags: RuleTagArray; } - -export type RuleInstallationInfoForReview = DiffableRule & { - rule_id: RuleSignatureId; - version: RuleVersion; -}; diff --git a/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/review_rule_upgrade/review_rule_upgrade_route.ts b/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/review_rule_upgrade/review_rule_upgrade_route.ts index a3347b5632b70..994e5908d3933 100644 --- a/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/review_rule_upgrade/review_rule_upgrade_route.ts +++ b/x-pack/plugins/security_solution/common/api/detection_engine/prebuilt_rules/review_rule_upgrade/review_rule_upgrade_route.ts @@ -6,7 +6,8 @@ */ import type { RuleObjectId, RuleSignatureId, RuleTagArray } from '../../model'; -import type { DiffableRule, PartialRuleDiff } from '../model'; +import type { PartialRuleDiff } from '../model'; +import type { RuleResponse } from '../../model/rule_schema/rule_schemas'; export interface ReviewRuleUpgradeResponseBody { /** Aggregated info about all rules available for upgrade */ @@ -27,8 +28,8 @@ export interface RuleUpgradeStatsForReview { export interface RuleUpgradeInfoForReview { id: RuleObjectId; rule_id: RuleSignatureId; - rule: DiffableRule; - target_rule: DiffableRule; + current_rule: RuleResponse; + target_rule: RuleResponse; diff: PartialRuleDiff; revision: number; } diff --git a/x-pack/plugins/security_solution/common/api/detection_engine/rule_management/coverage_overview/coverage_overview_route.ts b/x-pack/plugins/security_solution/common/api/detection_engine/rule_management/coverage_overview/coverage_overview_route.ts index 0f85a1fdc609a..fd54edcaeda35 100644 --- a/x-pack/plugins/security_solution/common/api/detection_engine/rule_management/coverage_overview/coverage_overview_route.ts +++ b/x-pack/plugins/security_solution/common/api/detection_engine/rule_management/coverage_overview/coverage_overview_route.ts @@ -9,24 +9,18 @@ import * as t from 'io-ts'; import { enumeration, NonEmptyArray, NonEmptyString } from '@kbn/securitysolution-io-ts-types'; /** - * Rule activity (status) filter applicable to two groups of rules - * - installed from a Fleet package, custom and customized which are installed but customized later on which - * can be either enabled or disabled - * - available to be installed from a Fleet package rules + * Rule activity (status) filter, which now can filter enabled and disabled rules. + * Later we're going to support available rules as well (prebuilt rules that are not yet installed). */ export enum CoverageOverviewRuleActivity { /** - * Enabled rules (installed from a Fleet package, custom or customized) + * Enabled rules (prebuilt and custom) */ Enabled = 'enabled', /** - * Disabled rules (installed from a Fleet package, custom or customized) + * Disabled rules (prebuilt and custom) */ Disabled = 'disabled', - /** - * Available to be installed from a Fleet package rules (Elastic prebuilt rules) - */ - Available = 'available', } export const CoverageOverviewRuleActivitySchema = enumeration( 'CoverageOverviewRuleActivity', @@ -45,10 +39,6 @@ export enum CoverageOverviewRuleSource { * Rules created manually */ Custom = 'custom', - /** - * Rules installed from a Fleet package but modified later on - */ - Customized = 'customized', } export const CoverageOverviewRuleSourceSchema = enumeration( 'CoverageOverviewRuleSource', diff --git a/x-pack/plugins/security_solution/common/api/timeline/clean_draft_timelines/clean_draft_timelines_route_schema.yaml b/x-pack/plugins/security_solution/common/api/timeline/clean_draft_timelines/clean_draft_timelines_route_schema.yaml new file mode 100644 index 0000000000000..7e839763d52e0 --- /dev/null +++ b/x-pack/plugins/security_solution/common/api/timeline/clean_draft_timelines/clean_draft_timelines_route_schema.yaml @@ -0,0 +1,70 @@ +openapi: 3.0.0 +info: + title: Elastic Security - Timeline - Draft Timeline API + version: 8.9.0 +servers: + - url: 'http://{kibana_host}:{port}' + variables: + kibana_host: + default: localhost + port: + default: '5601' +paths: + /api/timeline/_draft: + post: + operationId: cleanDraftTimelines + summary: Retrieves a draft timeline or timeline template. + description: | + Retrieves a clean draft timeline. If a draft timeline does not exist, it is created and returned. + tags: + - access:securitySolution + requestBody: + description: The type of timeline to create. Valid values are `default` and `template`. + required: true + content: + application/json: + schema: + type: object + properties: + timelineType: + $ref: '../model/components.yaml#/components/schemas/TimelineType' + responses: + 200: + description: Indicates that the draft timeline was successfully created. In the event the user already has a draft timeline, the existing draft timeline is cleared and returned. + content: + application/json: + schema: + type: object + properties: + data: + type: object + properties: + persistTimeline: + type: object + properties: + timeline: + $ref: '../model/components.yaml#/components/schemas/TimelineResponse' + required: + - data + 403: + description: Indicates that the user does not have the required permissions to create a draft timeline. + content: + application:json: + schema: + type: object + properties: + message: + type: string + status_code: + type: number + 409: + description: Indicates that there is already a draft timeline with the given timelineId. + content: + application:json: + schema: + type: object + properties: + message: + type: string + status_code: + type: number \ No newline at end of file diff --git a/x-pack/plugins/security_solution/common/api/timeline/create_timelines/create_timelines_route_schema.yaml b/x-pack/plugins/security_solution/common/api/timeline/create_timelines/create_timelines_route_schema.yaml new file mode 100644 index 0000000000000..8c4585c83926a --- /dev/null +++ b/x-pack/plugins/security_solution/common/api/timeline/create_timelines/create_timelines_route_schema.yaml @@ -0,0 +1,82 @@ +openapi: 3.0.0 +info: + title: Elastic Security - Timeline - Create Timelines API + version: 8.9.0 +externalDocs: + url: https://www.elastic.co/guide/en/security/current/timeline-api-create.html + description: Documentation +servers: + - url: 'http://{kibana_host}:{port}' + variables: + kibana_host: + default: localhost + port: + default: '5601' +paths: + /api/timeline: + post: + operationId: createTimelines + description: Creates a new timeline. + tags: + - access:securitySolution + requestBody: + description: The required timeline fields used to create a new timeline along with optional fields that will be created if not provided. + required: true + content: + application/json: + schema: + type: object + required: + - timeline + properties: + status: + allOf: + - $ref: '../model/components.yaml#/components/schemas/TimelineStatus' + - nullable: true + timelineId: + type: string + nullable: true + templateTimelineId: + type: string + nullable: true + templateTimelineVersion: + type: number + nullable: true + timelineType: + allOf: + - $ref: '../model/components.yaml#/components/schemas/TimelineType' + - nullable: true + version: + type: string + nullable: true + timeline: + $ref: '../model/components.yaml#/components/schemas/SavedTimeline' + responses: + 200: + description: Indicates the timeline was successfully created. + content: + application/json: + schema: + type: object + properties: + data: + type: object + properties: + persistTimeline: + type: object + properties: + timeline: + $ref: '../model/components.yaml#/components/schemas/TimelineResponse' + required: + - data + 405: + description: Indicates that there was an error in the timeline creation. + content: + application/json: + schema: + type: object + properties: + body: + type: string + statusCode: + type: number \ No newline at end of file diff --git a/x-pack/plugins/security_solution/common/api/timeline/delete_note/delete_note_route_schema.yaml b/x-pack/plugins/security_solution/common/api/timeline/delete_note/delete_note_route_schema.yaml new file mode 100644 index 0000000000000..e05666a3319a8 --- /dev/null +++ b/x-pack/plugins/security_solution/common/api/timeline/delete_note/delete_note_route_schema.yaml @@ -0,0 +1,32 @@ +openapi: 3.0.0 +info: + title: Elastic Security - Timeline - Notes API + version: 8.9.0 +servers: + - url: 'http://{kibana_host}:{port}' + variables: + kibana_host: + default: localhost + port: + default: '5601' +paths: + /api/note: + delete: + operationId: deleteNote + description: Deletes a note from a timeline. + tags: + - access:securitySolution + requestBody: + description: The id of the note to delete. + required: true + content: + application/json: + schema: + type: object + properties: + noteId: + type: string + nullable: true + responses: + 200: + description: Indicates the note was successfully deleted. \ No newline at end of file diff --git a/x-pack/plugins/security_solution/common/api/timeline/delete_timelines/delete_timelines_route_schema.yaml b/x-pack/plugins/security_solution/common/api/timeline/delete_timelines/delete_timelines_route_schema.yaml new file mode 100644 index 0000000000000..e6c262f70626e --- /dev/null +++ b/x-pack/plugins/security_solution/common/api/timeline/delete_timelines/delete_timelines_route_schema.yaml @@ -0,0 +1,50 @@ +openapi: 3.0.0 +info: + title: Elastic Security - Timeline - Delete Timelines API + version: 8.9.0 +externalDocs: + url: https://www.elastic.co/guide/en/security/current/timeline-api-delete.html + description: Documentation +servers: + - url: 'http://{kibana_host}:{port}' + variables: + kibana_host: + default: localhost + port: + default: '5601' +paths: + /api/timeline: + delete: + operationId: deleteTimelines + description: Deletes one or more timelines or timeline templates. + tags: + - access:securitySolution + requestBody: + description: The ids of the timelines or timeline templates to delete. + required: true + content: + application/json: + schema: + type: object + required: + - savedObjectIds + properties: + savedObjectIds: + type: array + items: + type: string + responses: + 200: + description: Indicates the timeline was successfully deleted. + content: + application/json: + schema: + type: object + properties: + data: + type: object + properties: + deleteTimeline: + type: boolean + required: + - data \ No newline at end of file diff --git a/x-pack/plugins/security_solution/common/api/timeline/export_timelines/export_timelines_route_schema.yaml b/x-pack/plugins/security_solution/common/api/timeline/export_timelines/export_timelines_route_schema.yaml new file mode 100644 index 0000000000000..c846de607b909 --- /dev/null +++ b/x-pack/plugins/security_solution/common/api/timeline/export_timelines/export_timelines_route_schema.yaml @@ -0,0 +1,59 @@ +openapi: 3.0.0 +info: + title: Elastic Security - Timeline - Import Timelines API + version: 8.9.0 +externalDocs: + url: https://www.elastic.co/guide/en/security/current/timeline-api-import.html + description: Documentation +servers: + - url: 'http://{kibana_host}:{port}' + variables: + kibana_host: + default: localhost + port: + default: '5601' +paths: + /api/timeline/_export: + post: + operationId: exportTimelines + description: Exports timelines as an NDJSON file + tags: + - access:securitySolution + parameters: + - in: query + name: file_name + schema: + type: string + description: The name of the file to export + requestBody: + description: The id of the timelines to export + required: true + content: + application/json: + schema: + type: object + properties: + ids: + nullable: true + type: array + items: + type: string + responses: + 200: + description: Indicates the timelines were successfully exported + content: + application/ndjson: + schema: + type: string + description: NDJSON of the exported timelines + 400: + description: Indicates that the export size limit was exceeded + content: + application/ndjson: + schema: + type: object + properties: + body: + type: string + statusCode: + type: number \ No newline at end of file diff --git a/x-pack/plugins/security_solution/common/api/timeline/get_draft_timelines/get_draft_timelines_route_schema.yaml b/x-pack/plugins/security_solution/common/api/timeline/get_draft_timelines/get_draft_timelines_route_schema.yaml new file mode 100644 index 0000000000000..722f6c3ad0a53 --- /dev/null +++ b/x-pack/plugins/security_solution/common/api/timeline/get_draft_timelines/get_draft_timelines_route_schema.yaml @@ -0,0 +1,64 @@ +openapi: 3.0.0 +info: + title: Elastic Security - Timeline - Get Draft Timelines API + version: 8.9.0 +externalDocs: + url: https://www.elastic.co/guide/en/security/current/_get_timeline_timeline_template_by_savedobjectid.html + description: Documentation +servers: + - url: 'http://{kibana_host}:{port}' + variables: + kibana_host: + default: localhost + port: + default: '5601' +paths: + /api/timeline/_draft: + get: + operationId: getDraftTimelines + description: Retrieves the draft timeline for the current user. If the user does not have a draft timeline, an empty timeline is returned. + tags: + - access:securitySolution + parameters: + - in: query + name: timelineType + schema: + $ref: '../model/components.yaml#/components/schemas/TimelineType' + responses: + 200: + description: Indicates that the draft timeline was successfully retrieved. + content: + application/json: + schema: + type: object + properties: + data: + type: object + properties: + persistTimeline: + type: object + properties: + timeline: + $ref: '../model/components.yaml#/components/schemas/TimelineResponse' + 403: + description: If a draft timeline was not found and we attempted to create one, it indicates that the user does not have the required permissions to create a draft timeline. + content: + application:json: + schema: + type: object + properties: + message: + type: string + status_code: + type: number + 409: + description: This should never happen, but if a draft timeline was not found and we attempted to create one, it indicates that there is already a draft timeline with the given timelineId. + content: + application:json: + schema: + type: object + properties: + message: + type: string + status_code: + type: number \ No newline at end of file diff --git a/x-pack/plugins/security_solution/common/api/timeline/get_timeline/get_timeline_route_schema.yaml b/x-pack/plugins/security_solution/common/api/timeline/get_timeline/get_timeline_route_schema.yaml new file mode 100644 index 0000000000000..9415a8ce2b60c --- /dev/null +++ b/x-pack/plugins/security_solution/common/api/timeline/get_timeline/get_timeline_route_schema.yaml @@ -0,0 +1,49 @@ +openapi: 3.0.0 +info: + title: Elastic Security - Timeline - Get Timeline API + version: 8.9.0 +externalDocs: + url: https://www.elastic.co/guide/en/security/current/_get_timeline_timeline_template_by_savedobjectid.html + description: Documentation +servers: + - url: 'http://{kibana_host}:{port}' + variables: + kibana_host: + default: localhost + port: + default: '5601' +paths: + /api/timeline: + get: + operationId: getTimeline + description: Get an existing saved timeline or timeline template. This API is used to retrieve an existing saved timeline or timeline template. + tags: + - access:securitySolution + parameters: + - in: query + name: template_timeline_id + schema: + type: string + description: The ID of the template timeline to retrieve + - in: query + name: id + schema: + type: string + description: The ID of the timeline to retrieve + responses: + 200: + description: Indicates that the draft timeline was successfully created. In the event the user already has a draft timeline, the existing draft timeline is cleared and returned. + content: + application/json: + schema: + type: object + properties: + data: + type: object + properties: + getOneTimeline: + oneOf: + - $ref: '../model/components.yaml#/components/schemas/TimelineResponse' + - nullable: true + required: + - data \ No newline at end of file diff --git a/x-pack/plugins/security_solution/common/api/timeline/get_timelines/get_timelines_route_schema.yaml b/x-pack/plugins/security_solution/common/api/timeline/get_timelines/get_timelines_route_schema.yaml new file mode 100644 index 0000000000000..ac501f0d7729e --- /dev/null +++ b/x-pack/plugins/security_solution/common/api/timeline/get_timelines/get_timelines_route_schema.yaml @@ -0,0 +1,109 @@ +openapi: 3.0.0 +info: + title: Elastic Security - Timeline - Get Timelines API + version: 8.9.0 +externalDocs: + url: https://www.elastic.co/guide/en/security/current/timeline-api-get.html + description: Documentation +servers: + - url: 'http://{kibana_host}:{port}' + variables: + kibana_host: + default: localhost + port: + default: '5601' +paths: + /api/timelines: + get: + operationId: getTimelines + description: This API is used to retrieve a list of existing saved timelines or timeline templates. + tags: + - access:securitySolution + parameters: + - in: query + name: only_user_favorite + schema: + nullable: true + type: string + enum: + - 'true' + - 'false' + description: If true, only timelines that are marked as favorites by the user are returned. + - in: query + name: timeline_type + schema: + allOf: + - $ref: '../model/components.yaml#/components/schemas/TimelineType' + - nullable: true + - in: query + name: sort_field + schema: + $ref: '../model/components.yaml#/components/schemas/SortFieldTimeline' + - in: query + name: sort_order + schema: + type: string + enum: + - asc + - desc + - in: query + name: page_size + schema: + nullable: true + type: string + - in: query + name: page_index + schema: + nullable: true + type: string + - in: query + name: search + schema: + nullable: true + type: string + - in: query + name: status + schema: + allOf: + - $ref: '../model/components.yaml#/components/schemas/TimelineStatus' + - nullable: true + responses: + 200: + description: Indicates that the draft timeline was successfully created. In the event the user already has a draft timeline, the existing draft timeline is cleared and returned. + content: + application/json: + schema: + type: object + properties: + data: + type: object + properties: + timelines: + type: array + items: + $ref: '../model/components.yaml#/components/schemas/TimelineResponse' + totalCount: + type: number + defaultTimelineCount: + type: number + templateTimelineCount: + type: number + favoriteCount: + type: number + elasticTemplateTimelineCount: + type: number + customTemplateTimelineCount: + type: number + required: + - data + 400: + description: Bad request. The user supplied invalid data. + content: + application:json: + schema: + type: object + properties: + body: + type: string + statusCode: + type: number \ No newline at end of file diff --git a/x-pack/plugins/security_solution/common/api/timeline/import_timelines/import_timelines_route_schema.yaml b/x-pack/plugins/security_solution/common/api/timeline/import_timelines/import_timelines_route_schema.yaml new file mode 100644 index 0000000000000..d12a9ca1b9210 --- /dev/null +++ b/x-pack/plugins/security_solution/common/api/timeline/import_timelines/import_timelines_route_schema.yaml @@ -0,0 +1,92 @@ +openapi: 3.0.0 +info: + title: Elastic Security - Timeline - Import Timelines API + version: 8.9.0 +externalDocs: + url: https://www.elastic.co/guide/en/security/current/timeline-api-import.html + description: Documentation +servers: + - url: 'http://{kibana_host}:{port}' + variables: + kibana_host: + default: localhost + port: + default: '5601' +paths: + /api/timeline/_import: + post: + operationId: importTimelines + description: Imports timelines. + tags: + - access:securitySolution + requestBody: + description: The timelines to import as a readable stream. + required: true + content: + application/json: + schema: + type: object + properties: + file: + type: object + allOf: + - $ref: '../model/components.yaml#/components/schemas/Readable' + - properties: + hapi: + type: object + properties: + filename: + type: string + headers: + type: object + responses: + 200: + description: Indicates the import of timelines was successful. + content: + application/json: + schema: + type: object + properties: + data: + $ref: '../model/components.yaml#/components/schemas/ImportTimelineResult' + required: + - data + + 400: + description: Indicates the import of timelines was unsuccessful because of an invalid file extension. + content: + application/json: + schema: + type: object + properties: + id: + type: string + body: + type: string + statusCode: + type: number + + 404: + description: Indicates that we were unable to locate the saved object client necessary to handle the import. + content: + application/json: + schema: + type: object + properties: + id: + type: string + statusCode: + type: number + 409: + description: Indicates the import of timelines was unsuccessful. + content: + application/json: + schema: + type: object + properties: + id: + type: string + body: + type: string + statusCode: + type: number \ No newline at end of file diff --git a/x-pack/plugins/security_solution/common/api/timeline/index.ts b/x-pack/plugins/security_solution/common/api/timeline/index.ts index 26a4a46f07a61..83748b596e5b1 100644 --- a/x-pack/plugins/security_solution/common/api/timeline/index.ts +++ b/x-pack/plugins/security_solution/common/api/timeline/index.ts @@ -16,7 +16,7 @@ export * from './get_timeline/get_timeline_route'; export * from './get_timelines/get_timelines_route'; export * from './import_timelines/import_timelines_route'; export * from './patch_timelines/patch_timelines_schema'; -export * from './persist_favorite/persist_favorite_schema'; +export * from './persist_favorite/persist_favorite_route'; export * from './persist_note/persist_note_route'; export * from './pinned_events/pinned_events_route'; export * from './install_prepackaged_timelines/install_prepackaged_timelines'; diff --git a/x-pack/plugins/security_solution/common/api/timeline/install_prepackaged_timelines/install_prepackaged_timelines_route_schema.yaml b/x-pack/plugins/security_solution/common/api/timeline/install_prepackaged_timelines/install_prepackaged_timelines_route_schema.yaml new file mode 100644 index 0000000000000..ffad91cab9635 --- /dev/null +++ b/x-pack/plugins/security_solution/common/api/timeline/install_prepackaged_timelines/install_prepackaged_timelines_route_schema.yaml @@ -0,0 +1,65 @@ +openapi: 3.0.0 +info: + title: Elastic Security - Timeline - Install Prepackaged Timelines API + version: 8.9.0 +servers: + - url: 'http://{kibana_host}:{port}' + variables: + kibana_host: + default: localhost + port: + default: '5601' +paths: + /api/timeline/_prepackaged: + post: + operationId: installPrepackedTimelines + description: Installs prepackaged timelines. + tags: + - access:securitySolution + requestBody: + description: The timelines to install or update. + required: true + content: + application/json: + schema: + type: object + properties: + timelinesToInstall: + type: array + items: + allOf: + - $ref: '../model/components.yaml#/components/schemas/ImportTimelines' + - nullable: true + timelinesToUpdate: + type: array + items: + allOf: + - $ref: '../model/components.yaml#/components/schemas/ImportTimelines' + - nullable: true + prepackagedTimelines: + type: array + items: + $ref: '../model/components.yaml#/components/schemas/SavedTimeline' + responses: + 200: + description: Indicates the installation of prepackaged timelines was successful. + content: + application/json: + schema: + type: object + properties: + data: + $ref: '../model/components.yaml#/components/schemas/ImportTimelineResult' + required: + - data + 500: + description: Indicates the installation of prepackaged timelines was unsuccessful. + content: + application:json: + schema: + type: object + properties: + body: + type: string + statusCode: + type: number \ No newline at end of file diff --git a/x-pack/plugins/security_solution/common/api/timeline/model/components.yaml b/x-pack/plugins/security_solution/common/api/timeline/model/components.yaml new file mode 100644 index 0000000000000..3ecd8d7f153ed --- /dev/null +++ b/x-pack/plugins/security_solution/common/api/timeline/model/components.yaml @@ -0,0 +1,504 @@ +components: + schemas: + TimelineType: + type: string + enum: + - default + - template + default: default + description: The type of timeline to create. Valid values are `default` and `template`. + DataProviderType: + type: string + enum: + - default + - template + default: default + description: The type of data provider to create. Valid values are `default` and `template`. + SavedTimeline: + type: object + properties: + columns: + $ref: '#/components/schemas/ColumnHeaderResult' + created: + type: number + createdBy: + type: string + dataProviders: + type: array + items: + $ref: '#/components/schemas/DataProviderResult' + dataViewId: + type: string + dateRange: + type: object + properties: + end: + oneOf: + - type: string + - type: number + start: + oneOf: + - type: string + - type: number + description: + type: string + eqlOptions: + type: object + properties: + eventCategoryField: + type: string + tiebreakerField: + type: string + timestampField: + type: string + eventType: + type: string + excludedRowRendererIds: + type: array + items: + $ref: '#/components/schemas/RowRendererId' + favorite: + type: array + items: + $ref: '#/components/schemas/FavoriteTimelineResult' + filters: + type: array + items: + $ref: '#/components/schemas/FilterTimelineResult' + kqlMode: + type: string + kqlQuery: + $ref: '#/components/schemas/SerializedFilterQueryResult' + indexNames: + type: array + items: + type: string + savedQueryId: + type: string + sort: + $ref: '#/components/schemas/Sort' + status: + type: string + enum: + - active + - draft + - immutable + title: + type: string + templateTimelineId: + type: string + templateTimelineVersion: + type: number + timelineType: + $ref: '#/components/schemas/TimelineType' + updated: + type: number + updatedBy: + type: string + TimelineResponse: + allOf: + - $ref: '#/components/schemas/SavedTimeline' + - type: object + required: + - savedObjectId + - version + properties: + eventIdToNoteIds: + type: array + items: + $ref: '#/components/schemas/Note' + notes: + type: array + items: + $ref: '#/components/schemas/Note' + noteIds: + type: array + items: + type: string + pinnedEventIds: + type: array + items: + type: string + pinnedEventsSaveObject: + type: array + items: + $ref: '#/components/schemas/PinnedEvent' + savedObjectId: + type: string + version: + type: string + FavoriteTimelineResponse: + type: object + required: + - savedObjectId + - version + properties: + savedObjectId: + type: string + version: + type: string + code: + type: number + nullable: true + message: + type: string + nullable: true + templateTimelineId: + type: string + nullable: true + templateTimelineVersion: + type: number + nullable: true + timelineType: + $ref: '#/components/schemas/TimelineType' + favorite: + type: array + items: + $ref: '#/components/schemas/FavoriteTimelineResult' + ColumnHeaderResult: + type: object + properties: + aggregatable: + type: boolean + category: + type: string + columnHeaderType: + type: string + description: + type: string + example: + oneOf: + - type: string + - type: number + indexes: + type: array + items: + type: string + id: + type: string + name: + type: string + placeholder: + type: string + searchable: + type: boolean + type: + type: string + QueryMatchResult: + type: object + properties: + field: + type: string + displayField: + type: string + value: + type: string + displayValue: + type: string + operator: + type: string + DataProviderResult: + type: object + properties: + id: + type: string + name: + type: string + enabled: + type: boolean + excluded: + type: boolean + kqlQuery: + type: string + queryMatch: + $ref: '#/components/schemas/QueryMatchResult' + and: + type: array + items: + $ref: '#/components/schemas/DataProviderResult' + type: + $ref: '#/components/schemas/DataProviderType' + BareNote: + type: object + properties: + eventId: + type: string + note: + type: string + timelineId: + type: string + created: + type: number + createdBy: + type: string + updated: + type: number + updatedBy: + type: string + Note: + allOf: + - $ref: '#/components/schemas/BareNote' + - type: object + properties: + noteId: + type: string + version: + type: string + timelineVersion: + nullable: true + type: string + GlobalNote: + type: object + properties: + noteId: + type: string + version: + type: string + timelineVersion: + nullable: true + type: string + note: + type: string + timelineId: + type: string + created: + type: number + createdBy: + type: string + updated: + type: number + updatedBy: + type: string + Note: + allOf: + - $ref: '#/components/schemas/BareNote' + - type: object + properties: + noteId: + type: string + version: + type: string + timelineVersion: + type: string + RowRendererId: + type: string + enum: + - alert + - alerts + - auditd + - auditd_file + - library + - netflow + - plain + - registry + - suricata + - system + - system_dns + - system_endgame_process + - system_file + - system_fim + - system_security_event + - system_socket + - threat_match + - zeek + FavoriteTimelineResult: + type: object + properties: + fullName: + type: string + userName: + type: string + favoriteDate: + type: number + FilterTimelineResult: + type: object + properties: + exists: + type: boolean + meta: + type: object + properties: + alias: + type: string + controlledBy: + type: string + disabled: + type: boolean + field: + type: string + formattedValue: + type: string + index: + type: string + key: + type: string + negate: + type: boolean + params: + type: string + type: + type: string + value: + type: string + match_all: + type: string + missing: + type: string + query: + type: string + range: + type: string + script: + type: string + SerializedFilterQueryResult: + type: object + properties: + filterQuery: + type: object + properties: + kuery: + type: object + properties: + kind: + type: string + expression: + type: string + serializedQuery: + type: string + PinnedEvent: + type: object + properties: + pinnedEventId: + type: string + eventId: + type: string + timelineId: + type: string + created: + type: number + createdBy: + type: string + updated: + type: number + updatedBy: + type: string + version: + type: string + timelineVersion: + type: string + Sort: + type: object + properties: + columnId: + type: string + sortDirection: + type: string + SortFieldTimeline: + type: object + description: The field to sort the timelines by. + properties: + title: + type: string + description: + type: string + updated: + type: string + created: + type: string + TimelineStatus: + type: string + enum: + - active + - draft + - immutable + default: draft + description: The status of the timeline. Valid values are `active`, `draft`, and `immutable`. + ImportTimelines: + allOf: + - $ref: '#/components/schemas/SavedTimeline' + - type: object + properties: + savedObjectId: + type: string + nullable: true + version: + type: string + nullable: true + globalNotes: + nullable: true + type: array + items: + $ref: '#/components/schemas/BareNote' + eventNotes: + nullable: true + type: array + items: + $ref: '#/components/schemas/BareNote' + pinnedEventIds: + nullable: true + type: array + items: + type: string + ImportTimelineResult: + type: object + properties: + success: + type: boolean + success_count: + type: number + timelines_installed: + type: number + timelines_updated: + type: number + errors: + type: array + items: + type: object + properties: + id: + type: string + error: + type: object + properties: + message: + type: string + status_code: + type: number + ExportedTimelines: + allOf: + - $ref: '#/components/schemas/SavedTimeline' + - type: object + properties: + globalNotes: + type: array + items: + $ref: '#/components/schemas/Note' + eventNotes: + type: array + items: + $ref: '#/components/schemas/Note' + pinnedEventIds: + type: array + items: + type: string + Readable: + type: object + properties: + _maxListeners: + type: {} + _readableState: + type: {} + _read: + type: {} + readable: + type: boolean + _events: + type: {} + _eventsCount: + type: number + _data: + type: {} + _position: + type: number + _encoding: + type: string diff --git a/x-pack/plugins/security_solution/common/api/timeline/patch_timelines/patch_timeline_route_schema.yaml b/x-pack/plugins/security_solution/common/api/timeline/patch_timelines/patch_timeline_route_schema.yaml new file mode 100644 index 0000000000000..4783e42411973 --- /dev/null +++ b/x-pack/plugins/security_solution/common/api/timeline/patch_timelines/patch_timeline_route_schema.yaml @@ -0,0 +1,62 @@ +openapi: 3.0.0 +info: + title: Elastic Security - Timeline - Patch Timeline API + version: 8.9.0 +servers: + - url: 'http://{kibana_host}:{port}' + variables: + kibana_host: + default: localhost + port: + default: '5601' +paths: + /api/timeline: + patch: + operationId: patchTimeline + summary: Updates an existing timeline. + description: Updates an existing timeline. This API is used to update the title, description, date range, pinned events, pinned queries, and/or pinned saved queries of an existing timeline. + tags: + - access:securitySolution + requestBody: + description: The timeline updates along with the timeline ID and version. + required: true + content: + application/json: + schema: + type: object + properties: + timelineId: + type: string + version: + type: string + timeline: + $ref: '../model/components.yaml#/components/schemas/SavedTimeline' + responses: + 200: + description: Indicates that the draft timeline was successfully created. In the event the user already has a draft timeline, the existing draft timeline is cleared and returned. + content: + application/json: + schema: + type: object + properties: + data: + type: object + properties: + persistTimeline: + type: object + properties: + timeline: + $ref: '../model/components.yaml#/components/schemas/TimelineResponse' + required: + - data + 405: + description: Indicates that the user does not have the required access to create a draft timeline. + content: + application/json: + schema: + type: object + properties: + body: + type: string + statusCode: + type: number \ No newline at end of file diff --git a/x-pack/plugins/security_solution/common/api/timeline/persist_favorite/persist_favorite_schema.ts b/x-pack/plugins/security_solution/common/api/timeline/persist_favorite/persist_favorite_route.ts similarity index 100% rename from x-pack/plugins/security_solution/common/api/timeline/persist_favorite/persist_favorite_schema.ts rename to x-pack/plugins/security_solution/common/api/timeline/persist_favorite/persist_favorite_route.ts diff --git a/x-pack/plugins/security_solution/common/api/timeline/persist_favorite/persist_favorite_route_schema.yaml b/x-pack/plugins/security_solution/common/api/timeline/persist_favorite/persist_favorite_route_schema.yaml new file mode 100644 index 0000000000000..aef8f2b2cf4c1 --- /dev/null +++ b/x-pack/plugins/security_solution/common/api/timeline/persist_favorite/persist_favorite_route_schema.yaml @@ -0,0 +1,65 @@ +openapi: 3.0.0 +info: + title: Elastic Security - Timeline - Favorite API (https://www.elastic.co/guide/en/security/current/timeline-api-delete.html) + version: 8.9.0 +servers: + - url: 'http://{kibana_host}:{port}' + variables: + kibana_host: + default: localhost + port: + default: '5601' +paths: + /api/timeline/_favorite: + patch: + operationId: persistFavoriteRoute + description: Persists a given users favorite status of a timeline. + tags: + - access:securitySolution + requestBody: + description: The required timeline fields used to create a new timeline along with optional fields that will be created if not provided. + required: true + content: + application/json: + schema: + type: object + properties: + timelineId: + type: string + nullable: true + templateTimelineId: + type: string + nullable: true + templateTimelineVersion: + type: number + nullable: true + timelineType: + allOf: + - $ref: '../model/components.yaml#/components/schemas/TimelineType' + - nullable: true + responses: + 200: + description: Indicates the favorite status was successfully updated. + content: + application/json: + schema: + type: object + properties: + data: + type: object + properties: + persistFavorite: + $ref: '../model/components.yaml#/components/schemas/FavoriteTimelineResponse' + required: + - data + 403: + description: Indicates the user does not have the required permissions to persist the favorite status. + content: + application:json: + schema: + type: object + properties: + body: + type: string + statusCode: + type: number \ No newline at end of file diff --git a/x-pack/plugins/security_solution/common/api/timeline/persist_note/persist_note_route_schema.yaml b/x-pack/plugins/security_solution/common/api/timeline/persist_note/persist_note_route_schema.yaml new file mode 100644 index 0000000000000..789d4e97e63f7 --- /dev/null +++ b/x-pack/plugins/security_solution/common/api/timeline/persist_note/persist_note_route_schema.yaml @@ -0,0 +1,64 @@ +openapi: 3.0.0 +info: + title: Elastic Security - Timeline - Notes API + version: 8.9.0 +externalDocs: + url: https://www.elastic.co/guide/en/security/current/timeline-api-update.html + description: Documentation +servers: + - url: 'http://{kibana_host}:{port}' + variables: + kibana_host: + default: localhost + port: + default: '5601' +paths: + /api/note: + patch: + operationId: persistNoteroute + description: Persists a note to a timeline. + tags: + - access:securitySolution + requestBody: + description: The note to persist or update along with additional metadata. + required: true + content: + application/json: + schema: + type: object + required: + - note + properties: + note: + $ref: '../model/components.yaml#/components/schemas/BareNote' + overrideOwner: + type: boolean + nullable: true + noteId: + type: string + nullable: true + version: + type: string + nullable: true + responses: + 200: + description: Indicates the favorite status was successfully updated. + content: + application/json: + schema: + type: object + properties: + data: + type: object + properties: + persistNote: + type: object + properties: + code: + type: number + message: + type: string + note: + $ref: '../model/components.yaml#/components/schemas/Note' + required: + - data diff --git a/x-pack/plugins/security_solution/common/api/timeline/pinned_events/pinned_events_route_schema.yaml b/x-pack/plugins/security_solution/common/api/timeline/pinned_events/pinned_events_route_schema.yaml new file mode 100644 index 0000000000000..0d8611bfcab5f --- /dev/null +++ b/x-pack/plugins/security_solution/common/api/timeline/pinned_events/pinned_events_route_schema.yaml @@ -0,0 +1,58 @@ +openapi: 3.0.0 +info: + title: Elastic Security - Timeline - Pinned Event API (https://www.elastic.co/guide/en/security/current/_pin_an_event_to_an_existing_timeline.html) + version: 8.9.0 +servers: + - url: 'http://{kibana_host}:{port}' + variables: + kibana_host: + default: localhost + port: + default: '5601' +paths: + /api/pinned_event: + patch: + operationId: persistPinnedEventRoute + description: Persists a pinned event to a timeline. + tags: + - access:securitySolution + requestBody: + description: The pinned event to persist or update along with additional metadata. + required: true + content: + application/json: + schema: + type: object + required: + - eventId + properties: + eventId: + type: string + pinnedEventId: + type: string + nullable: true + timelineId: + type: string + nullable: true + responses: + 200: + description: Indicate the event was successfully pinned in the timeline. + content: + application/json: + schema: + type: object + properties: + data: + type: object + properties: + persistPinnedEventOnTimeline: + allOf: + - $ref: '../model/components.yaml#/components/schemas/PinnedEvent' + - type: object + properties: + code: + type: number + message: + type: string + required: + - data \ No newline at end of file diff --git a/x-pack/plugins/security_solution/common/detection_engine/diffable_rule_to_rule_response.ts b/x-pack/plugins/security_solution/common/detection_engine/diffable_rule_to_rule_response.ts deleted file mode 100644 index ace815148d454..0000000000000 --- a/x-pack/plugins/security_solution/common/detection_engine/diffable_rule_to_rule_response.ts +++ /dev/null @@ -1,351 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import type * as t from 'io-ts'; -import { parseDuration } from '@kbn/alerting-plugin/common/parse_duration'; - -import type { - DiffableRule, - DiffableCustomQueryFields, - DiffableSavedQueryFields, - DiffableEqlFields, - DiffableThreatMatchFields, - DiffableThresholdFields, - DiffableMachineLearningFields, - DiffableNewTermsFields, -} from '../api/detection_engine/prebuilt_rules/model/diff/diffable_rule/diffable_rule'; -import type { - RuleSchedule, - SavedKqlQuery, - RuleDataSource as DiffableRuleDataSource, - RuleKqlQuery as DiffableRuleKqlQuery, -} from '../api/detection_engine/prebuilt_rules/model/diff/diffable_rule/diffable_field_types'; -import type { - RuleResponse, - querySchema, - savedQuerySchema, - eqlSchema, - threatMatchSchema, - thresholdSchema, - machineLearningSchema, - newTermsSchema, - SharedResponseProps, - KqlQueryLanguage, -} from '../api/detection_engine/model/rule_schema/rule_schemas'; -import type { RuleFilterArray } from '../api/detection_engine/model/rule_schema/common_attributes'; -import { assertUnreachable } from '../utility_types'; - -type RuleResponseCustomQueryFields = t.TypeOf; -type RuleResponseSavedQueryFields = t.TypeOf; -type RuleResponseEqlFields = t.TypeOf; -type RuleResponseThreatMatchFields = t.TypeOf; -type RuleResponseThresholdFields = t.TypeOf; -type RuleResponseMachineLearningFields = t.TypeOf; -type RuleResponseNewTermsFields = t.TypeOf; - -interface RuleResponseScheduleFields { - from: string; - to: string; - interval: string; -} - -const extractRuleSchedule = (ruleSchedule: RuleSchedule): RuleResponseScheduleFields => { - const { interval, lookback } = ruleSchedule; - const lookbackSeconds = Math.floor(parseDuration(lookback) / 1000); - const intervalSeconds = Math.floor(parseDuration(interval) / 1000); - const totalSeconds = lookbackSeconds + intervalSeconds; - - let totalDuration: string; - if (totalSeconds % 3600 === 0) { - totalDuration = `${totalSeconds / 3600}h`; - } else if (totalSeconds % 60 === 0) { - totalDuration = `${totalSeconds / 60}m`; - } else { - totalDuration = `${totalSeconds}s`; - } - - const from = `now-${totalDuration}`; - - return { - from, - to: 'now', - interval, - }; -}; - -type RuleResponseDataSource = { index: string[] } | { data_view_id: string }; - -const extractDataSource = ( - diffableRuleDataSource: DiffableRuleDataSource -): RuleResponseDataSource => { - if (diffableRuleDataSource.type === 'index_patterns') { - return { index: diffableRuleDataSource.index_patterns }; - } else if (diffableRuleDataSource.type === 'data_view') { - return { data_view_id: diffableRuleDataSource.data_view_id }; - } - - return assertUnreachable(diffableRuleDataSource); -}; - -type RuleResponseKqlQuery = - | { query: string; language: KqlQueryLanguage; filters: RuleFilterArray } - | { saved_id: string }; - -const extractKqlQuery = (diffableRuleKqlQuery: DiffableRuleKqlQuery): RuleResponseKqlQuery => { - if (diffableRuleKqlQuery.type === 'inline_query') { - return { - query: diffableRuleKqlQuery.query, - language: diffableRuleKqlQuery.language, - filters: diffableRuleKqlQuery.filters, - }; - } - - if (diffableRuleKqlQuery.type === 'saved_query') { - return { saved_id: diffableRuleKqlQuery.saved_query_id }; - } - - return assertUnreachable(diffableRuleKqlQuery); -}; - -const extractCommonFields = (diffableRule: DiffableRule): Partial => { - const { from, to, interval } = extractRuleSchedule(diffableRule.rule_schedule); - - const commonFields: Partial = { - rule_id: diffableRule.rule_id, - version: diffableRule.version, - meta: diffableRule.meta, - name: diffableRule.name, - tags: diffableRule.tags, - description: diffableRule.description, - severity: diffableRule.severity, - severity_mapping: diffableRule.severity_mapping, - risk_score: diffableRule.risk_score, - risk_score_mapping: diffableRule.risk_score_mapping, - references: diffableRule.references, - false_positives: diffableRule.false_positives, - threat: diffableRule.threat, - note: diffableRule.note, - related_integrations: diffableRule.related_integrations, - required_fields: diffableRule.required_fields, - author: diffableRule.author, - license: diffableRule.license, - from, - to, - interval, - actions: diffableRule.actions, - throttle: diffableRule.throttle, - exceptions_list: diffableRule.exceptions_list, - max_signals: diffableRule.max_signals, - setup: diffableRule.setup, - }; - - if (diffableRule.building_block?.type) { - commonFields.building_block_type = diffableRule.building_block.type; - } - - if (diffableRule.rule_name_override?.field_name) { - commonFields.rule_name_override = diffableRule.rule_name_override.field_name; - } - - if (diffableRule.timeline_template?.timeline_id) { - commonFields.timeline_id = diffableRule.timeline_template.timeline_id; - } - - if (diffableRule.timeline_template?.timeline_title) { - commonFields.timeline_title = diffableRule.timeline_template.timeline_title; - } - - if (diffableRule.timestamp_override?.field_name) { - commonFields.timestamp_override = diffableRule.timestamp_override.field_name; - } - - if (diffableRule.timestamp_override?.fallback_disabled) { - commonFields.timestamp_override_fallback_disabled = - diffableRule.timestamp_override.fallback_disabled; - } - - return commonFields; -}; - -const extractCustomQueryFields = ( - diffableRule: DiffableCustomQueryFields -): RuleResponseCustomQueryFields => { - const customQueryFields: RuleResponseCustomQueryFields = { - type: diffableRule.type, - ...(diffableRule.data_source ? extractDataSource(diffableRule.data_source) : {}), - ...(diffableRule.kql_query ? extractKqlQuery(diffableRule.kql_query) : {}), - }; - - if (diffableRule.alert_suppression) { - customQueryFields.alert_suppression = diffableRule.alert_suppression; - } - - return customQueryFields; -}; - -const extractSavedQueryFields = ( - diffableRule: DiffableSavedQueryFields -): RuleResponseSavedQueryFields => { - /* Typecasting to SavedKqlQuery because a "save_query" DiffableRule can only have "kql_query" of type SavedKqlQuery */ - const diffableRuleKqlQuery = diffableRule.kql_query as SavedKqlQuery; - - const savedQueryFields: RuleResponseSavedQueryFields = { - type: diffableRule.type, - saved_id: diffableRuleKqlQuery.saved_query_id, - ...(diffableRule.data_source ? extractDataSource(diffableRule.data_source) : {}), - }; - - if (diffableRule.alert_suppression) { - savedQueryFields.alert_suppression = diffableRule.alert_suppression; - } - - return savedQueryFields; -}; - -const extractEqlFields = (diffableRule: DiffableEqlFields): RuleResponseEqlFields => { - const eqlFields: RuleResponseEqlFields = { - type: diffableRule.type, - query: diffableRule.eql_query.query, - language: diffableRule.eql_query.language, - filters: diffableRule.eql_query.filters, - event_category_override: diffableRule.event_category_override, - timestamp_field: diffableRule.timestamp_field, - tiebreaker_field: diffableRule.tiebreaker_field, - ...(diffableRule.data_source ? extractDataSource(diffableRule.data_source) : {}), - }; - - return eqlFields; -}; - -const extractThreatMatchFields = ( - diffableRule: DiffableThreatMatchFields -): RuleResponseThreatMatchFields => { - const threatMatchFields: RuleResponseThreatMatchFields = { - type: diffableRule.type, - query: - '' /* Indicator match rules have a "query" equal to an empty string if saved query is used */, - threat_query: diffableRule.threat_query.query ?? '', - threat_language: diffableRule.threat_query.language ?? '', - threat_filters: diffableRule.threat_query.filters ?? [], - threat_index: diffableRule.threat_index, - threat_mapping: diffableRule.threat_mapping, - threat_indicator_path: diffableRule.threat_indicator_path, - ...(diffableRule.data_source ? extractDataSource(diffableRule.data_source) : {}), - ...(diffableRule.kql_query ? extractKqlQuery(diffableRule.kql_query) : {}), - }; - - if (diffableRule.concurrent_searches) { - threatMatchFields.concurrent_searches = diffableRule.concurrent_searches; - } - - if (diffableRule.items_per_search) { - threatMatchFields.items_per_search = diffableRule.items_per_search; - } - - return threatMatchFields; -}; - -const extractThresholdFields = ( - diffableRule: DiffableThresholdFields -): RuleResponseThresholdFields => { - const thresholdFields: RuleResponseThresholdFields = { - type: diffableRule.type, - query: '' /* Threshold rules have a "query" equal to an empty string if saved query is used */, - threshold: diffableRule.threshold, - ...(diffableRule.data_source ? extractDataSource(diffableRule.data_source) : {}), - ...(diffableRule.kql_query ? extractKqlQuery(diffableRule.kql_query) : {}), - }; - - return thresholdFields; -}; - -const extractMachineLearningFields = ( - diffableRule: DiffableMachineLearningFields -): RuleResponseMachineLearningFields => { - const machineLearningFields: RuleResponseMachineLearningFields = { - type: diffableRule.type, - machine_learning_job_id: diffableRule.machine_learning_job_id, - anomaly_threshold: diffableRule.anomaly_threshold, - }; - - return machineLearningFields; -}; - -const extractNewTermsFields = ( - diffableRule: DiffableNewTermsFields -): RuleResponseNewTermsFields => { - const newTermsFields: RuleResponseNewTermsFields = { - type: diffableRule.type, - query: diffableRule.kql_query.query, - language: diffableRule.kql_query.language, - filters: diffableRule.kql_query.filters, - new_terms_fields: diffableRule.new_terms_fields, - history_window_start: diffableRule.history_window_start, - ...(diffableRule.data_source ? extractDataSource(diffableRule.data_source) : {}), - }; - - return newTermsFields; -}; - -/** - * Converts a rule of type DiffableRule to a rule of type RuleResponse. - * Note that DiffableRule doesn't include all the fields that RuleResponse has, so they will be missing from the returned object. These are meta fields like "enabled", "created_at", "created_by", "updated_at", "updated_by", "id", "immutable", "output_index", "revision" - */ -export const diffableRuleToRuleResponse = (diffableRule: DiffableRule): Partial => { - const commonFields = extractCommonFields(diffableRule); - - if (diffableRule.type === 'query') { - return { - ...commonFields, - ...extractCustomQueryFields(diffableRule), - }; - } - - if (diffableRule.type === 'saved_query') { - return { - ...commonFields, - ...extractSavedQueryFields(diffableRule), - }; - } - - if (diffableRule.type === 'eql') { - return { - ...commonFields, - ...extractEqlFields(diffableRule), - }; - } - - if (diffableRule.type === 'threat_match') { - return { - ...commonFields, - ...extractThreatMatchFields(diffableRule), - }; - } - - if (diffableRule.type === 'threshold') { - return { - ...commonFields, - ...extractThresholdFields(diffableRule), - }; - } - - if (diffableRule.type === 'machine_learning') { - return { - ...commonFields, - ...extractMachineLearningFields(diffableRule), - }; - } - - if (diffableRule.type === 'new_terms') { - return { - ...commonFields, - ...extractNewTermsFields(diffableRule), - }; - } - - return assertUnreachable(diffableRule); -}; diff --git a/x-pack/plugins/security_solution/common/risk_engine/index.ts b/x-pack/plugins/security_solution/common/risk_engine/index.ts index 74d01dcd51bf3..b5f4e8f433009 100644 --- a/x-pack/plugins/security_solution/common/risk_engine/index.ts +++ b/x-pack/plugins/security_solution/common/risk_engine/index.ts @@ -8,6 +8,7 @@ export * from './after_keys'; export * from './risk_weights'; export * from './identifier_types'; +export * from './range'; export * from './types'; export * from './indices'; export * from './constants'; diff --git a/x-pack/plugins/security_solution/common/risk_engine/range.ts b/x-pack/plugins/security_solution/common/risk_engine/range.ts new file mode 100644 index 0000000000000..9b8ca2faac2d0 --- /dev/null +++ b/x-pack/plugins/security_solution/common/risk_engine/range.ts @@ -0,0 +1,15 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import * as t from 'io-ts'; + +export const rangeSchema = t.type({ + start: t.string, + end: t.string, +}); +export type RangeSchema = t.TypeOf; +export type Range = RangeSchema; diff --git a/x-pack/plugins/security_solution/common/risk_engine/risk_score_preview/request_schema.ts b/x-pack/plugins/security_solution/common/risk_engine/risk_score_preview/request_schema.ts index eeb22e31dc08d..beeffc98bbe0d 100644 --- a/x-pack/plugins/security_solution/common/risk_engine/risk_score_preview/request_schema.ts +++ b/x-pack/plugins/security_solution/common/risk_engine/risk_score_preview/request_schema.ts @@ -9,6 +9,7 @@ import * as t from 'io-ts'; import { DataViewId } from '../../api/detection_engine/model/rule_schema'; import { afterKeysSchema } from '../after_keys'; import { identifierTypeSchema } from '../identifier_types'; +import { rangeSchema } from '../range'; import { riskWeightsSchema } from '../risk_weights/schema'; export const riskScorePreviewRequestSchema = t.exact( @@ -22,10 +23,7 @@ export const riskScorePreviewRequestSchema = t.exact( filter: t.unknown, page_size: t.number, identifier_type: identifierTypeSchema, - range: t.type({ - start: t.string, - end: t.string, - }), + range: rangeSchema, weights: riskWeightsSchema, }), ]) diff --git a/x-pack/plugins/security_solution/common/test/zod_helpers.ts b/x-pack/plugins/security_solution/common/test/zod_helpers.ts new file mode 100644 index 0000000000000..fd7b8cc8ff3f7 --- /dev/null +++ b/x-pack/plugins/security_solution/common/test/zod_helpers.ts @@ -0,0 +1,20 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import type { SafeParseError, SafeParseReturnType, SafeParseSuccess } from 'zod'; + +export function expectParseError( + result: SafeParseReturnType +): asserts result is SafeParseError { + expect(result.success).toEqual(false); +} + +export function expectParseSuccess( + result: SafeParseReturnType +): asserts result is SafeParseSuccess { + expect(result.success).toEqual(true); +} diff --git a/x-pack/plugins/security_solution/package.json b/x-pack/plugins/security_solution/package.json index 16e511dd1e507..d29baae15d470 100644 --- a/x-pack/plugins/security_solution/package.json +++ b/x-pack/plugins/security_solution/package.json @@ -8,13 +8,14 @@ "extract-mitre-attacks": "node scripts/extract_tactics_techniques_mitre.js && node ../../../scripts/eslint ./public/detections/mitre/mitre_tactics_techniques.ts --fix", "build-beat-doc": "node scripts/beat_docs/build.js && node ../../../scripts/eslint ../timelines/server/utils/beat_schema/fields.ts --fix", "cypress": "../../../node_modules/.bin/cypress", - "cypress:burn": "yarn cypress:run:reporter --env burn=2 --concurrency=1 --headed", - "cypress:changed-specs-only": "yarn cypress:run:reporter --changed-specs-only --env burn=2", - "cypress:run:reporter": "TZ=UTC node ./scripts/start_cypress_parallel run --ftr-config-file ../../test/defend_workflows_cypress/cli_config --reporter ../../../node_modules/cypress-multi-reporters --reporter-options configFile=../../test/security_solution_cypress/cypress/reporter_config.json", - "cypress:dw:open": "node ./scripts/start_cypress_parallel open --config-file ./public/management/cypress.config.ts ts --ftr-config-file ../../test/defend_workflows_cypress/cli_config", - "cypress:dw:run": "node ./scripts/start_cypress_parallel run --config-file ./public/management/cypress.config.ts --ftr-config-file ../../test/defend_workflows_cypress/cli_config --reporter ../../../node_modules/cypress-multi-reporters --reporter-options configFile=../../test/security_solution_cypress/cypress/reporter_config.json; status=$?; yarn junit:merge && exit $status", - "cypress:dw:endpoint:run": "node ./scripts/start_cypress_parallel run --config-file ./public/management/cypress_endpoint.config.ts --ftr-config-file ../../test/defend_workflows_cypress/endpoint_config --reporter ../../../node_modules/cypress-multi-reporters --reporter-options configFile=../../test/security_solution_cypress/cypress/reporter_config.json --concurrency 1; status=$?; yarn junit:merge && exit $status", - "cypress:dw:endpoint:open": "node ./scripts/start_cypress_parallel open --config-file ./public/management/cypress_endpoint.config.ts ts --ftr-config-file ../../test/defend_workflows_cypress/endpoint_config", + "cypress:burn": "yarn cypress:dw run --env burn=2 --headed", + "cypress:changed-specs-only": "yarn cypress:dw run --changed-specs-only --env burn=2", + "cypress:dw": "node ./scripts/start_cypress_parallel --config-file ./public/management/cypress.config.ts ts --ftr-config-file ../../test/defend_workflows_cypress/cli_config", + "cypress:dw:open": "yarn cypress:dw open", + "cypress:dw:run": "yarn cypress:dw run", + "cypress:dw:endpoint": "node ./scripts/start_cypress_parallel --config-file ./public/management/cypress_endpoint.config.ts --ftr-config-file ../../test/defend_workflows_cypress/endpoint_config", + "cypress:dw:endpoint:run": "yarn cypress:dw:endpoint run", + "cypress:dw:endpoint:open": "yarn cypress:dw:endpoint open ", "junit:merge": "../../../node_modules/.bin/mochawesome-merge ../../../target/kibana-security-solution/cypress/results/mochawesome*.json > ../../../target/kibana-security-solution/cypress/results/output.json && ../../../node_modules/.bin/marge ../../../target/kibana-security-solution/cypress/results/output.json --reportDir ../../../target/kibana-security-solution/cypress/results && yarn junit:transform && mkdir -p ../../../target/junit && cp ../../../target/kibana-security-solution/cypress/results/*.xml ../../../target/junit/", "test:generate": "node scripts/endpoint/resolver_generator", "mappings:generate": "node scripts/mappings/mappings_generator", diff --git a/x-pack/plugins/security_solution/public/app/app.tsx b/x-pack/plugins/security_solution/public/app/app.tsx index a234fb258c269..3e172207fb4bd 100644 --- a/x-pack/plugins/security_solution/public/app/app.tsx +++ b/x-pack/plugins/security_solution/public/app/app.tsx @@ -42,6 +42,7 @@ import { PROMPT_CONTEXTS } from '../assistant/content/prompt_contexts'; import { BASE_SECURITY_QUICK_PROMPTS } from '../assistant/content/quick_prompts'; import { BASE_SECURITY_SYSTEM_PROMPTS } from '../assistant/content/prompts/system'; import { useAnonymizationStore } from '../assistant/use_anonymization_store'; +import { useAssistantAvailability } from '../assistant/use_assistant_availability'; interface StartAppComponent { children: React.ReactNode; @@ -70,6 +71,7 @@ const StartAppComponent: FC = ({ upselling, } = services; + const assistantAvailability = useAssistantAvailability(); const { conversations, setConversations } = useConversationStore(); const { defaultAllow, defaultAllowReplacement, setDefaultAllow, setDefaultAllowReplacement } = useAnonymizationStore(); @@ -96,6 +98,7 @@ const StartAppComponent: FC = ({ = 0; + +/** + * Elastic AI Assistant header link + */ +export const AssistantHeaderLink = React.memo(() => { + const { showAssistantOverlay } = useAssistantContext(); + + const keyboardShortcut = isMac ? '⌘ ;' : 'Ctrl ;'; + + const tooltipContent = i18n.translate( + 'xpack.securitySolution.globalHeader.assistantHeaderLinkShortcutTooltip', + { + values: { keyboardShortcut }, + defaultMessage: 'Keyboard shortcut {keyboardShortcut}', + } + ); + + const showOverlay = useCallback( + () => showAssistantOverlay({ showOverlay: true }), + [showAssistantOverlay] + ); + + return ( + + + + + + + + {i18n.translate('xpack.securitySolution.globalHeader.assistantHeaderLink', { + defaultMessage: 'AI Assistant', + })} + + + + + ); +}); + +AssistantHeaderLink.displayName = 'AssistantHeaderLink'; diff --git a/x-pack/plugins/security_solution/public/app/home/global_header/index.test.tsx b/x-pack/plugins/security_solution/public/app/home/global_header/index.test.tsx index abd7712a6073f..7dc0b338193a9 100644 --- a/x-pack/plugins/security_solution/public/app/home/global_header/index.test.tsx +++ b/x-pack/plugins/security_solution/public/app/home/global_header/index.test.tsx @@ -5,7 +5,7 @@ * 2.0. */ import React from 'react'; -import { render } from '@testing-library/react'; +import { render, waitFor } from '@testing-library/react'; import { useLocation } from 'react-router-dom'; import { useVariationMock } from '../../../common/components/utils.mocks'; import { GlobalHeader } from '.'; @@ -26,6 +26,7 @@ import { TimelineId } from '../../../../common/types/timeline'; import { createStore } from '../../../common/store'; import { kibanaObservable } from '@kbn/timelines-plugin/public/mock'; import { sourcererPaths } from '../../../common/containers/sourcerer'; +import { useAssistantAvailability } from '../../../assistant/use_assistant_availability'; jest.mock('react-router-dom', () => { const actual = jest.requireActual('react-router-dom'); @@ -48,6 +49,15 @@ jest.mock('react-reverse-portal', () => ({ createHtmlPortalNode: () => ({ unmount: jest.fn() }), })); +jest.mock('../../../assistant/use_assistant_availability'); + +jest.mocked(useAssistantAvailability).mockReturnValue({ + hasAssistantPrivilege: false, + hasConnectorsAllPrivilege: true, + hasConnectorsReadPrivilege: true, + isAssistantEnabled: true, +}); + describe('global header', () => { const mockSetHeaderActionMenu = jest.fn(); const state = { @@ -172,4 +182,46 @@ describe('global header', () => { expect(queryByTestId('sourcerer-trigger')).not.toBeInTheDocument(); }); + + it('shows AI Assistant header link if user has necessary privileges', () => { + (useLocation as jest.Mock).mockReturnValue([ + { pageName: SecurityPageName.overview, detailName: undefined }, + ]); + + jest.mocked(useAssistantAvailability).mockReturnValue({ + hasAssistantPrivilege: true, + hasConnectorsAllPrivilege: true, + hasConnectorsReadPrivilege: true, + isAssistantEnabled: true, + }); + + const { findByTestId } = render( + + + + ); + + waitFor(() => expect(findByTestId('assistantHeaderLink')).toBeInTheDocument()); + }); + + it('does not show AI Assistant header link if user does not have necessary privileges', () => { + (useLocation as jest.Mock).mockReturnValue([ + { pageName: SecurityPageName.overview, detailName: undefined }, + ]); + + jest.mocked(useAssistantAvailability).mockReturnValue({ + hasAssistantPrivilege: false, + hasConnectorsAllPrivilege: true, + hasConnectorsReadPrivilege: true, + isAssistantEnabled: true, + }); + + const { findByTestId } = render( + + + + ); + + waitFor(() => expect(findByTestId('assistantHeaderLink')).not.toBeInTheDocument()); + }); }); diff --git a/x-pack/plugins/security_solution/public/app/home/global_header/index.tsx b/x-pack/plugins/security_solution/public/app/home/global_header/index.tsx index 85fbcb8284cb5..615d4e8161786 100644 --- a/x-pack/plugins/security_solution/public/app/home/global_header/index.tsx +++ b/x-pack/plugins/security_solution/public/app/home/global_header/index.tsx @@ -27,13 +27,15 @@ import { timelineSelectors } from '../../../timelines/store/timeline'; import { useShallowEqualSelector } from '../../../common/hooks/use_selector'; import { getScopeFromPath, showSourcererByPath } from '../../../common/containers/sourcerer'; import { useAddIntegrationsUrl } from '../../../common/hooks/use_add_integrations_url'; +import { AssistantHeaderLink } from './assistant_header_link'; +import { useAssistantAvailability } from '../../../assistant/use_assistant_availability'; const BUTTON_ADD_DATA = i18n.translate('xpack.securitySolution.globalHeader.buttonAddData', { defaultMessage: 'Add integrations', }); /** - * This component uses the reverse portal to add the Add Data and ML job settings buttons on the + * This component uses the reverse portal to add the Add Data, ML job settings, and AI Assistant buttons on the * right hand side of the Kibana global header */ export const GlobalHeader = React.memo( @@ -52,6 +54,8 @@ export const GlobalHeader = React.memo( const { href, onClick } = useAddIntegrationsUrl(); + const { hasAssistantPrivilege } = useAssistantAvailability(); + useEffect(() => { setHeaderActionMenu((element) => { const mount = toMountPoint(, { theme$: theme.theme$ }); @@ -87,6 +91,7 @@ export const GlobalHeader = React.memo( {showSourcerer && !showTimeline && ( )} + {hasAssistantPrivilege && } diff --git a/x-pack/plugins/security_solution/public/app/home/index.test.tsx b/x-pack/plugins/security_solution/public/app/home/index.test.tsx index d9e940f0c2f07..9bce539a0b311 100644 --- a/x-pack/plugins/security_solution/public/app/home/index.test.tsx +++ b/x-pack/plugins/security_solution/public/app/home/index.test.tsx @@ -271,6 +271,7 @@ describe('HomePage', () => { const state = 'test-query-id'; const savedQueryData: SavedQuery = { id: 'testSavedquery', + namespaces: ['default'], attributes: { title: 'testtitle', description: 'testDescription', diff --git a/x-pack/plugins/security_solution/public/assistant/get_comments/index.tsx b/x-pack/plugins/security_solution/public/assistant/get_comments/index.tsx index af644f8a4c5e5..b6d4d9723d87b 100644 --- a/x-pack/plugins/security_solution/public/assistant/get_comments/index.tsx +++ b/x-pack/plugins/security_solution/public/assistant/get_comments/index.tsx @@ -10,6 +10,7 @@ import type { Conversation } from '@kbn/elastic-assistant'; import { EuiAvatar, EuiMarkdownFormat, EuiText } from '@elastic/eui'; import React from 'react'; +import { AssistantAvatar } from '@kbn/elastic-assistant'; import { CommentActions } from '../comment_actions'; import * as i18n from './translations'; @@ -57,7 +58,7 @@ export const getComments = ({ timelineAvatar: isUser ? ( ) : ( - + ), timestamp: i18n.AT( message.timestamp.length === 0 ? new Date().toLocaleString() : message.timestamp diff --git a/x-pack/plugins/security_solution/public/assistant/use_assistant_availability/index.tsx b/x-pack/plugins/security_solution/public/assistant/use_assistant_availability/index.tsx index b2206157661b9..e30ffc57f9e96 100644 --- a/x-pack/plugins/security_solution/public/assistant/use_assistant_availability/index.tsx +++ b/x-pack/plugins/security_solution/public/assistant/use_assistant_availability/index.tsx @@ -14,15 +14,31 @@ export interface UseAssistantAvailability { isAssistantEnabled: boolean; // When true, the Assistant is hidden and unavailable hasAssistantPrivilege: boolean; + // When true, user has `All` privilege for `Connectors and Actions` (show/execute/delete/save ui capabilities) + hasConnectorsAllPrivilege: boolean; + // When true, user has `Read` privilege for `Connectors and Actions` (show/execute ui capabilities) + hasConnectorsReadPrivilege: boolean; } export const useAssistantAvailability = (): UseAssistantAvailability => { const isEnterprise = useLicense().isEnterprise(); const capabilities = useKibana().services.application.capabilities; - const isAssistantEnabled = capabilities[ASSISTANT_FEATURE_ID]?.['ai-assistant'] === true; + const hasAssistantPrivilege = capabilities[ASSISTANT_FEATURE_ID]?.['ai-assistant'] === true; + + // Connectors & Actions capabilities as defined in x-pack/plugins/actions/server/feature.ts + // `READ` ui capabilities defined as: { ui: ['show', 'execute'] } + const hasConnectorsReadPrivilege = + capabilities.actions?.show === true && capabilities.actions?.execute === true; + // `ALL` ui capabilities defined as: { ui: ['show', 'execute', 'save', 'delete'] } + const hasConnectorsAllPrivilege = + hasConnectorsReadPrivilege && + capabilities.actions?.delete === true && + capabilities.actions?.save === true; return { + hasAssistantPrivilege, + hasConnectorsAllPrivilege, + hasConnectorsReadPrivilege, isAssistantEnabled: isEnterprise, - hasAssistantPrivilege: isAssistantEnabled, }; }; diff --git a/x-pack/plugins/security_solution/public/common/components/control_columns/row_action/index.tsx b/x-pack/plugins/security_solution/public/common/components/control_columns/row_action/index.tsx index 2e9493dc6ff42..e2950f3ecf73e 100644 --- a/x-pack/plugins/security_solution/public/common/components/control_columns/row_action/index.tsx +++ b/x-pack/plugins/security_solution/public/common/components/control_columns/row_action/index.tsx @@ -9,7 +9,7 @@ import type { EuiDataGridCellValueElementProps } from '@elastic/eui'; import React, { useCallback, useMemo } from 'react'; import { useDispatch } from 'react-redux'; import { useExpandableFlyoutContext } from '@kbn/expandable-flyout'; -import { dataTableActions } from '@kbn/securitysolution-data-table'; +import { dataTableActions, TableId } from '@kbn/securitysolution-data-table'; import { useUiSetting$ } from '@kbn/kibana-react-plugin/public'; import { ENABLE_EXPANDABLE_FLYOUT_SETTING } from '../../../../../common/constants'; import { RightPanelKey } from '../../../../flyout/right'; @@ -97,7 +97,8 @@ const RowActionComponent = ({ }, }; - if (isSecurityFlyoutEnabled) { + // excluding rule preview page as some sections in new flyout are not applicable when user is creating a new rule + if (isSecurityFlyoutEnabled && tableId !== TableId.rulePreview) { openFlyout({ right: { id: RightPanelKey, diff --git a/x-pack/plugins/security_solution/public/common/components/event_details/event_details.tsx b/x-pack/plugins/security_solution/public/common/components/event_details/event_details.tsx index 87f450ecb43b4..7d0892d3cbf9d 100644 --- a/x-pack/plugins/security_solution/public/common/components/event_details/event_details.tsx +++ b/x-pack/plugins/security_solution/public/common/components/event_details/event_details.tsx @@ -171,8 +171,8 @@ const EventDetailsComponent: React.FC = ({ const goToTableTab = useCallback(() => setSelectedTabId(EventsViewType.tableView), []); const eventFields = useMemo(() => getEnrichmentFields(data), [data]); - const { ruleId } = useBasicDataFromDetailsData(data); - const { rule: maybeRule } = useRuleWithFallback(ruleId); + const basicAlertData = useBasicDataFromDetailsData(data); + const { rule: maybeRule } = useRuleWithFallback(basicAlertData.ruleId); const existingEnrichments = useMemo( () => isAlert @@ -222,6 +222,7 @@ const EventDetailsComponent: React.FC = ({ const endpointResponseActionsEnabled = useIsExperimentalFeatureEnabled( 'endpointResponseActionsEnabled' ); + const summaryTab: EventViewTab | undefined = useMemo( () => isAlert @@ -319,7 +320,9 @@ const EventDetailsComponent: React.FC = ({ )} - + {basicAlertData.ruleId && maybeRule?.note && ( + + )} ), } @@ -332,17 +335,19 @@ const EventDetailsComponent: React.FC = ({ id, handleOnEventClosed, isReadOnly, + threatDetails, renderer, detailsEcsData, isDraggable, goToTableTab, - threatDetails, + maybeRule?.investigation_fields, + maybeRule?.note, showThreatSummary, hostRisk, userRisk, allEnrichments, isEnrichmentsLoading, - maybeRule, + basicAlertData, ] ); diff --git a/x-pack/plugins/security_solution/public/common/components/event_details/investigation_guide_view.test.tsx b/x-pack/plugins/security_solution/public/common/components/event_details/investigation_guide_view.test.tsx index c6c10dc0417e1..c1a57c6a9ab77 100644 --- a/x-pack/plugins/security_solution/public/common/components/event_details/investigation_guide_view.test.tsx +++ b/x-pack/plugins/security_solution/public/common/components/event_details/investigation_guide_view.test.tsx @@ -8,27 +8,17 @@ import React from 'react'; import { render } from '@testing-library/react'; import { InvestigationGuideView } from './investigation_guide_view'; -import { useRuleWithFallback } from '../../../detection_engine/rule_management/logic/use_rule_with_fallback'; - -const mockUseRuleWithFallback = useRuleWithFallback as jest.Mock; -jest.mock('../../../detection_engine/rule_management/logic/use_rule_with_fallback'); +import type { GetBasicDataFromDetailsData } from '../../../timelines/components/side_panel/event_details/helpers'; const defaultProps = { - data: [ - { - category: 'kibana', - field: 'kibana.alert.rule.uuid', - values: ['rule-uuid'], - originalValue: ['rule-uuid'], - isObjectArray: false, - }, - ], + basicData: { + ruleId: 'rule-id', + } as unknown as GetBasicDataFromDetailsData, + ruleNote: 'test note', }; describe('Investigation guide view', () => { it('should render title and clamped investigation guide (with read more/read less) by default', () => { - mockUseRuleWithFallback.mockReturnValue({ rule: { note: 'test note' } }); - const { getByTestId, queryByTestId } = render(); expect(getByTestId('summary-view-guide')).toBeInTheDocument(); @@ -37,8 +27,6 @@ describe('Investigation guide view', () => { }); it('should render full investigation guide when showFullView is true', () => { - mockUseRuleWithFallback.mockReturnValue({ rule: { note: 'test note' } }); - const { getByTestId, queryByTestId } = render( ); @@ -47,19 +35,6 @@ describe('Investigation guide view', () => { expect(queryByTestId('investigation-guide-clamped')).not.toBeInTheDocument(); }); - it('should not render investigation guide when rule id is not available', () => { - const { queryByTestId } = render(); - expect(queryByTestId('investigation-guide-clamped')).not.toBeInTheDocument(); - expect(queryByTestId('investigation-guide-full-view')).not.toBeInTheDocument(); - }); - - it('should not render investigation guide button when investigation guide is not available', () => { - mockUseRuleWithFallback.mockReturnValue({ rule: {} }); - const { queryByTestId } = render(); - expect(queryByTestId('investigation-guide-clamped')).not.toBeInTheDocument(); - expect(queryByTestId('investigation-guide-full-view')).not.toBeInTheDocument(); - }); - it('should not render investigation guide title when showTitle is false', () => { const { queryByTestId } = render( diff --git a/x-pack/plugins/security_solution/public/common/components/event_details/investigation_guide_view.tsx b/x-pack/plugins/security_solution/public/common/components/event_details/investigation_guide_view.tsx index 7230dd2c21e67..cb3eb321bd3fa 100644 --- a/x-pack/plugins/security_solution/public/common/components/event_details/investigation_guide_view.tsx +++ b/x-pack/plugins/security_solution/public/common/components/event_details/investigation_guide_view.tsx @@ -9,12 +9,9 @@ import { EuiSpacer, EuiTitle, EuiText } from '@elastic/eui'; import React, { createContext } from 'react'; import styled from 'styled-components'; import type { GetBasicDataFromDetailsData } from '../../../timelines/components/side_panel/event_details/helpers'; -import { useBasicDataFromDetailsData } from '../../../timelines/components/side_panel/event_details/helpers'; import * as i18n from './translations'; -import { useRuleWithFallback } from '../../../detection_engine/rule_management/logic/use_rule_with_fallback'; import { MarkdownRenderer } from '../markdown_editor'; import { LineClamp } from '../line_clamp'; -import type { TimelineEventsDetailsItem } from '../../../../common/search_strategy'; export const Indent = styled.div` padding: 0 8px; @@ -25,9 +22,13 @@ export const BasicAlertDataContext = createContext = ({ - data, + basicData, + ruleNote, showFullView = false, showTitle = true, }) => { - const basicAlertData = useBasicDataFromDetailsData(data); - const { rule: maybeRule } = useRuleWithFallback(basicAlertData.ruleId); - - if (!basicAlertData.ruleId || !maybeRule?.note) { - return null; - } - return ( - + {showTitle && ( <> @@ -68,12 +63,12 @@ const InvestigationGuideViewComponent: React.FC = ( {showFullView ? ( - {maybeRule.note} + {ruleNote} ) : ( - {maybeRule.note} + {ruleNote} )} diff --git a/x-pack/plugins/security_solution/public/common/components/event_details/osquery_tab.tsx b/x-pack/plugins/security_solution/public/common/components/event_details/osquery_tab.tsx index 4edc6b7ae08de..289561c0bc4aa 100644 --- a/x-pack/plugins/security_solution/public/common/components/event_details/osquery_tab.tsx +++ b/x-pack/plugins/security_solution/public/common/components/event_details/osquery_tab.tsx @@ -61,7 +61,7 @@ export const useOsqueryTab = ({ const { OsqueryResults, fetchAllLiveQueries } = osquery; const { data: actionsData } = fetchAllLiveQueries({ - filterQuery: { term: { alert_ids: alertId } }, + kuery: `alert_ids: ( ${alertId} )`, alertId, skip: shouldEarlyReturn, }); diff --git a/x-pack/plugins/security_solution/public/common/components/event_details/table/investigate_in_timeline_button.tsx b/x-pack/plugins/security_solution/public/common/components/event_details/table/investigate_in_timeline_button.tsx index ec957dadd4c65..ad464585ec682 100644 --- a/x-pack/plugins/security_solution/public/common/components/event_details/table/investigate_in_timeline_button.tsx +++ b/x-pack/plugins/security_solution/public/common/components/event_details/table/investigate_in_timeline_button.tsx @@ -7,6 +7,7 @@ import React, { useMemo, useCallback } from 'react'; import { EuiButton, EuiButtonEmpty } from '@elastic/eui'; +import type { IconType } from '@elastic/eui'; import type { Filter } from '@kbn/es-query'; import { useDispatch } from 'react-redux'; @@ -31,11 +32,21 @@ export interface InvestigateInTimelineButtonProps { timeRange?: TimeRange; keepDataView?: boolean; isDisabled?: boolean; + iconType?: IconType; } export const InvestigateInTimelineButton: React.FunctionComponent< InvestigateInTimelineButtonProps -> = ({ asEmptyButton, children, dataProviders, filters, timeRange, keepDataView, ...rest }) => { +> = ({ + asEmptyButton, + children, + dataProviders, + filters, + timeRange, + keepDataView, + iconType, + ...rest +}) => { const dispatch = useDispatch(); const getDataViewsSelector = useMemo( @@ -113,6 +124,7 @@ export const InvestigateInTimelineButton: React.FunctionComponent< onClick={configureAndOpenTimeline} flush="right" size="xs" + iconType={iconType} > {children} diff --git a/x-pack/plugins/security_solution/public/common/components/header_actions/action_icon_item.tsx b/x-pack/plugins/security_solution/public/common/components/header_actions/action_icon_item.tsx index 33ce078fe31df..d45631a0dc450 100644 --- a/x-pack/plugins/security_solution/public/common/components/header_actions/action_icon_item.tsx +++ b/x-pack/plugins/security_solution/public/common/components/header_actions/action_icon_item.tsx @@ -7,7 +7,13 @@ import type { MouseEvent } from 'react'; import React from 'react'; -import { EuiContextMenuItem, EuiButtonIcon, EuiToolTip, EuiText } from '@elastic/eui'; +import { + EuiContextMenuItem, + EuiButtonIcon, + EuiToolTip, + EuiText, + EuiButtonEmpty, +} from '@elastic/eui'; import { EventsTdContent } from '../../../timelines/components/timeline/styles'; import { DEFAULT_ACTION_BUTTON_WIDTH } from '.'; @@ -20,7 +26,7 @@ interface ActionIconItemProps { isDisabled?: boolean; onClick?: (event: MouseEvent) => void; children?: React.ReactNode; - buttonType?: 'text' | 'icon'; + buttonType?: 'text' | 'icon' | 'emptyButton'; } const ActionIconItemComponent: React.FC = ({ @@ -67,6 +73,17 @@ const ActionIconItemComponent: React.FC = ({ )} + {buttonType === 'emptyButton' && ( + + {content} + + )} ); diff --git a/x-pack/plugins/security_solution/public/common/components/markdown_editor/renderer.tsx b/x-pack/plugins/security_solution/public/common/components/markdown_editor/renderer.tsx index b51d1ad78680c..431b9b0051f5e 100644 --- a/x-pack/plugins/security_solution/public/common/components/markdown_editor/renderer.tsx +++ b/x-pack/plugins/security_solution/public/common/components/markdown_editor/renderer.tsx @@ -7,7 +7,7 @@ import React, { memo, useMemo } from 'react'; import { cloneDeep } from 'lodash/fp'; -import type { EuiLinkAnchorProps } from '@elastic/eui'; +import type { EuiLinkAnchorProps, EuiTextProps } from '@elastic/eui'; import { EuiMarkdownFormat, EuiCallOut, EuiLink, EuiSpacer } from '@elastic/eui'; import unified from 'unified'; import { FormattedMessage } from '@kbn/i18n-react'; @@ -21,9 +21,10 @@ import * as i18n from './translations'; interface Props { children: string; disableLinks?: boolean; + textSize?: EuiTextProps['size']; } -const MarkdownRendererComponent: React.FC = ({ children, disableLinks }) => { +const MarkdownRendererComponent: React.FC = ({ children, disableLinks, textSize = 'm' }) => { const MarkdownLinkProcessingComponent: React.FC = useMemo( // eslint-disable-next-line react/display-name () => (props) => , @@ -97,6 +98,7 @@ const MarkdownRendererComponent: React.FC = ({ children, disableLinks }) {children} diff --git a/x-pack/plugins/security_solution/public/common/components/navigation/helpers.test.tsx b/x-pack/plugins/security_solution/public/common/components/navigation/helpers.test.tsx index 732c6d5a0857f..31dc79605b167 100644 --- a/x-pack/plugins/security_solution/public/common/components/navigation/helpers.test.tsx +++ b/x-pack/plugins/security_solution/public/common/components/navigation/helpers.test.tsx @@ -11,7 +11,7 @@ import type { AppLinkItems } from '../../links'; import { updateAppLinks } from '../../links'; import { mockGlobalState } from '../../mock'; import type { Capabilities } from '@kbn/core-capabilities-common'; -import { UpsellingService } from '../../lib/upsellings'; +import { UpsellingService } from '@kbn/security-solution-upselling/service'; const defaultAppLinks: AppLinkItems = [ { diff --git a/x-pack/plugins/security_solution/public/common/components/search_bar/index.test.tsx b/x-pack/plugins/security_solution/public/common/components/search_bar/index.test.tsx index aa5f3fcf275f7..adc097617e386 100644 --- a/x-pack/plugins/security_solution/public/common/components/search_bar/index.test.tsx +++ b/x-pack/plugins/security_solution/public/common/components/search_bar/index.test.tsx @@ -154,6 +154,7 @@ describe('SearchBarComponent', () => { it('calls useUpdateUrlParam for savedQuery', () => { const savedQuery: SavedQuery = { id: 'testSavedquery', + namespaces: ['default'], attributes: { title: 'testtitle', description: 'testDescription', @@ -260,6 +261,7 @@ describe('SearchBarComponent', () => { jest.clearAllMocks(); const savedQuery: SavedQuery = { id: 'testSavedQuery123', + namespaces: ['default'], attributes: { title: 'testtitle', description: 'testDescription', diff --git a/x-pack/plugins/security_solution/public/common/components/upselling_provider/upselling_provider.tsx b/x-pack/plugins/security_solution/public/common/components/upselling_provider/upselling_provider.tsx index 34668ea9583a3..3372500e95749 100644 --- a/x-pack/plugins/security_solution/public/common/components/upselling_provider/upselling_provider.tsx +++ b/x-pack/plugins/security_solution/public/common/components/upselling_provider/upselling_provider.tsx @@ -6,7 +6,7 @@ */ import React, { memo, useContext } from 'react'; -import type { UpsellingService } from '../../..'; +import type { UpsellingService } from '@kbn/security-solution-upselling/service'; export const UpsellingProviderContext = React.createContext(null); diff --git a/x-pack/plugins/security_solution/public/common/hooks/use_upselling.test.tsx b/x-pack/plugins/security_solution/public/common/hooks/use_upselling.test.tsx index cd70445dcebae..835959a85bbd9 100644 --- a/x-pack/plugins/security_solution/public/common/hooks/use_upselling.test.tsx +++ b/x-pack/plugins/security_solution/public/common/hooks/use_upselling.test.tsx @@ -8,7 +8,7 @@ import { renderHook } from '@testing-library/react-hooks'; import React from 'react'; import { SecurityPageName } from '../../../common'; -import { UpsellingService } from '../lib/upsellings'; +import { UpsellingService } from '@kbn/security-solution-upselling/service'; import { useUpsellingComponent, useUpsellingMessage, useUpsellingPage } from './use_upselling'; import { UpsellingProvider } from '../components/upselling_provider'; diff --git a/x-pack/plugins/security_solution/public/common/hooks/use_upselling.ts b/x-pack/plugins/security_solution/public/common/hooks/use_upselling.ts index 03f5935a85e0f..8ef01b5b56a25 100644 --- a/x-pack/plugins/security_solution/public/common/hooks/use_upselling.ts +++ b/x-pack/plugins/security_solution/public/common/hooks/use_upselling.ts @@ -8,10 +8,12 @@ import { useMemo } from 'react'; import useObservable from 'react-use/lib/useObservable'; import type React from 'react'; +import type { + UpsellingSectionId, + UpsellingMessageId, +} from '@kbn/security-solution-upselling/service'; import { useUpsellingService } from '../components/upselling_provider'; -import type { UpsellingSectionId } from '../lib/upsellings'; import type { SecurityPageName } from '../../../common'; -import type { UpsellingMessageId } from '../lib/upsellings/types'; export const useUpsellingComponent = (id: UpsellingSectionId): React.ComponentType | null => { const upselling = useUpsellingService(); diff --git a/x-pack/plugins/security_solution/public/common/lib/kibana/kibana_react.mock.ts b/x-pack/plugins/security_solution/public/common/lib/kibana/kibana_react.mock.ts index 3dce598b1b205..9910470072d2e 100644 --- a/x-pack/plugins/security_solution/public/common/lib/kibana/kibana_react.mock.ts +++ b/x-pack/plugins/security_solution/public/common/lib/kibana/kibana_react.mock.ts @@ -48,7 +48,7 @@ import { cloudExperimentsMock } from '@kbn/cloud-experiments-plugin/common/mocks import { guidedOnboardingMock } from '@kbn/guided-onboarding-plugin/public/mocks'; import { dataViewPluginMocks } from '@kbn/data-views-plugin/public/mocks'; import { of } from 'rxjs'; -import { UpsellingService } from '../upsellings'; +import { UpsellingService } from '@kbn/security-solution-upselling/service'; import { cloudMock } from '@kbn/cloud-plugin/public/mocks'; import { NavigationProvider } from '@kbn/security-solution-navigation'; diff --git a/x-pack/plugins/security_solution/public/common/links/links.test.tsx b/x-pack/plugins/security_solution/public/common/links/links.test.tsx index 7e00e39f75437..e24c3920014c3 100644 --- a/x-pack/plugins/security_solution/public/common/links/links.test.tsx +++ b/x-pack/plugins/security_solution/public/common/links/links.test.tsx @@ -21,7 +21,7 @@ import { } from './links'; import { createCapabilities } from './test_utils'; import { hasCapabilities } from '../lib/capabilities'; -import { UpsellingService } from '../lib/upsellings'; +import { UpsellingService } from '@kbn/security-solution-upselling/service'; import React from 'react'; const defaultAppLinks: AppLinkItems = [ diff --git a/x-pack/plugins/security_solution/public/common/links/types.ts b/x-pack/plugins/security_solution/public/common/links/types.ts index 7e87d1d0bc098..53b5adc93b774 100644 --- a/x-pack/plugins/security_solution/public/common/links/types.ts +++ b/x-pack/plugins/security_solution/public/common/links/types.ts @@ -14,8 +14,8 @@ import type { LinkCategory as GenericLinkCategory, LinkCategories as GenericLinkCategories, } from '@kbn/security-solution-navigation'; +import type { UpsellingService } from '@kbn/security-solution-upselling/service'; import type { ExperimentalFeatures } from '../../../common/experimental_features'; -import type { UpsellingService } from '../lib/upsellings'; import type { RequiredCapabilities } from '../lib/capabilities'; /** diff --git a/x-pack/plugins/security_solution/public/common/mock/endpoint/app_context_render.tsx b/x-pack/plugins/security_solution/public/common/mock/endpoint/app_context_render.tsx index ebf077de26dd1..575c159d29d72 100644 --- a/x-pack/plugins/security_solution/public/common/mock/endpoint/app_context_render.tsx +++ b/x-pack/plugins/security_solution/public/common/mock/endpoint/app_context_render.tsx @@ -211,10 +211,14 @@ export const createAppRootMockRenderer = (): AppContextTestRender => { app: experimentalFeaturesReducer, }; - const store = createStore(mockGlobalState, storeReducer, kibanaObservable, storage, [ - ...managementMiddlewareFactory(coreStart, depsStart), - middlewareSpy.actionSpyMiddleware, - ]); + const store = createStore( + mockGlobalState, + storeReducer, + kibanaObservable, + storage, + // @ts-expect-error ts upgrade v4.7.4 + [...managementMiddlewareFactory(coreStart, depsStart), middlewareSpy.actionSpyMiddleware] + ); const queryClient = new QueryClient({ defaultOptions: { diff --git a/x-pack/plugins/security_solution/public/common/mock/mock_assistant_provider.tsx b/x-pack/plugins/security_solution/public/common/mock/mock_assistant_provider.tsx index ec43bddc9e0e4..f36b776b72b04 100644 --- a/x-pack/plugins/security_solution/public/common/mock/mock_assistant_provider.tsx +++ b/x-pack/plugins/security_solution/public/common/mock/mock_assistant_provider.tsx @@ -8,6 +8,7 @@ import { httpServiceMock } from '@kbn/core-http-browser-mocks'; import { actionTypeRegistryMock } from '@kbn/triggers-actions-ui-plugin/public/application/action_type_registry.mock'; import React from 'react'; +import type { AssistantAvailability } from '@kbn/elastic-assistant'; import { AssistantProvider } from '@kbn/elastic-assistant'; interface Props { @@ -22,10 +23,17 @@ export const MockAssistantProviderComponent: React.FC = ({ children }) => const actionTypeRegistry = actionTypeRegistryMock.create(); const mockHttp = httpServiceMock.createStartContract({ basePath: '/test' }); mockHttp.get.mockResolvedValue([]); + const mockAssistantAvailability: AssistantAvailability = { + hasAssistantPrivilege: false, + hasConnectorsAllPrivilege: true, + hasConnectorsReadPrivilege: true, + isAssistantEnabled: true, + }; return ( [])} baseAllow={[]} baseAllowReplacement={[]} diff --git a/x-pack/plugins/security_solution/public/common/utils/exception_list_items/mappers.ts b/x-pack/plugins/security_solution/public/common/utils/exception_list_items/mappers.ts index fa2af605eabfa..534abcc9ed98b 100644 --- a/x-pack/plugins/security_solution/public/common/utils/exception_list_items/mappers.ts +++ b/x-pack/plugins/security_solution/public/common/utils/exception_list_items/mappers.ts @@ -81,7 +81,10 @@ function groupHashEntry(prefix: 'process' | 'file', conditionEntry: ConditionEnt return; } - const entry = createEntryMatchAny(`${prefix}${EntryFieldType.HASH}${type}`, values); + const entry = createEntryMatchAny( + `${prefix}${EntryFieldType.HASH}${type}`, + values.map((value) => value.toLowerCase()) + ); entriesArray.push(entry); }); diff --git a/x-pack/plugins/security_solution/public/common/utils/timeline/use_show_timeline.test.tsx b/x-pack/plugins/security_solution/public/common/utils/timeline/use_show_timeline.test.tsx index 4711d802f4853..30f9483169b13 100644 --- a/x-pack/plugins/security_solution/public/common/utils/timeline/use_show_timeline.test.tsx +++ b/x-pack/plugins/security_solution/public/common/utils/timeline/use_show_timeline.test.tsx @@ -7,7 +7,7 @@ import { renderHook, act } from '@testing-library/react-hooks'; import { allowedExperimentalValues } from '../../../../common/experimental_features'; -import { UpsellingService } from '../../lib/upsellings'; +import { UpsellingService } from '@kbn/security-solution-upselling/service'; import { updateAppLinks } from '../../links'; import { links } from '../../links/app_links'; import { useShowTimeline } from './use_show_timeline'; diff --git a/x-pack/plugins/security_solution/public/dashboards/links.ts b/x-pack/plugins/security_solution/public/dashboards/links.ts index d71ba02064de1..0f4f8800578f6 100644 --- a/x-pack/plugins/security_solution/public/dashboards/links.ts +++ b/x-pack/plugins/security_solution/public/dashboards/links.ts @@ -15,7 +15,6 @@ import { detectionResponseLinks, entityAnalyticsLinks, overviewLinks, - coverageOverviewDashboardLinks, } from '../overview/links'; import { IconDashboards } from '../common/icons/dashboards'; @@ -27,7 +26,6 @@ const subLinks: LinkItem[] = [ vulnerabilityDashboardLink, entityAnalyticsLinks, ecsDataQualityDashboardLinks, - coverageOverviewDashboardLinks, ].map((link) => ({ ...link, sideNavIcon: IconDashboards })); export const dashboardsLinks: LinkItem = { diff --git a/x-pack/plugins/security_solution/public/dashboards/pages/landing_page/index.test.tsx b/x-pack/plugins/security_solution/public/dashboards/pages/landing_page/index.test.tsx index 426549123ef10..41479adb42623 100644 --- a/x-pack/plugins/security_solution/public/dashboards/pages/landing_page/index.test.tsx +++ b/x-pack/plugins/security_solution/public/dashboards/pages/landing_page/index.test.tsx @@ -157,6 +157,16 @@ describe('Dashboards landing', () => { expect(screen.queryByTestId('dashboardsTable')).not.toBeInTheDocument(); }); + it('should not render loading icon if no read capability', async () => { + mockUseCapabilities.mockReturnValue({ + ...DEFAULT_DASHBOARD_CAPABILITIES, + show: false, + }); + await renderDashboardLanding(); + + expect(screen.queryByTestId('dashboardLoadingIcon')).not.toBeInTheDocument(); + }); + describe('Create Security Dashboard button', () => { it('should render', async () => { await renderDashboardLanding(); diff --git a/x-pack/plugins/security_solution/public/dashboards/pages/landing_page/index.tsx b/x-pack/plugins/security_solution/public/dashboards/pages/landing_page/index.tsx index a843533400cf7..e72e38429f35d 100644 --- a/x-pack/plugins/security_solution/public/dashboards/pages/landing_page/index.tsx +++ b/x-pack/plugins/security_solution/public/dashboards/pages/landing_page/index.tsx @@ -132,7 +132,7 @@ export const DashboardsLandingPage = () => { /> - {canReadDashboard && securityTagsExist && initialFilter ? ( + {canReadDashboard && securityTagsExist && initialFilter && ( <> @@ -148,8 +148,11 @@ export const DashboardsLandingPage = () => { urlStateEnabled={false} /> - ) : ( - } /> + )} + {canReadDashboard && !securityTagsExist && ( + } + /> )} diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/utils/helpers.test.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/utils/helpers.test.tsx index e7a3d40dd9ad7..bb99c323a4503 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/utils/helpers.test.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/utils/helpers.test.tsx @@ -1467,6 +1467,16 @@ describe('Exception helpers', () => { capabilities: endpointCapabilties, }, _id: 'b9edb05a090729be2077b99304542d6844973843dec43177ac618f383df44a6d', + destination: { + port: 443, + }, + source: { + ports: [1, 2, 4], + }, + flow: { + final: false, + skip: true, + }, }; const expectedHighlightedFields = [ { @@ -1645,6 +1655,68 @@ describe('Exception helpers', () => { }); expect(entries).toEqual(expectedExceptionEntries); }); + it('should build exception entries with "match" operator and ensure that integer value is converted to a string', () => { + const entries = buildExceptionEntriesFromAlertFields({ + highlightedFields: [ + ...expectedHighlightedFields, + { + id: 'destination.port', + }, + ], + alertData, + }); + expect(alertData).toEqual( + expect.objectContaining({ + destination: { + port: 443, + }, + }) + ); + expect(entries).toEqual([ + ...expectedExceptionEntries, + { + field: 'destination.port', + operator: 'included', + type: 'match', + value: '443', + }, + ]); + }); + it('should build exception entries with "match" operator and ensure that boolean value is converted to a string', () => { + const entries = buildExceptionEntriesFromAlertFields({ + highlightedFields: [ + ...expectedHighlightedFields, + { + id: 'flow.final', + }, + { id: 'flow.skip' }, + ], + alertData, + }); + expect(alertData).toEqual( + expect.objectContaining({ + flow: { + final: false, + skip: true, + }, + }) + ); + expect(entries).toEqual([ + ...expectedExceptionEntries, + { + field: 'flow.final', + operator: 'included', + type: 'match', + value: 'false', + }, + { + field: 'flow.skip', + operator: 'included', + type: 'match', + value: 'true', + }, + ]); + }); it('should build the exception entries with "match_any" in case the field key has multiple values', () => { const entries = buildExceptionEntriesFromAlertFields({ highlightedFields: [ @@ -1657,6 +1729,26 @@ describe('Exception helpers', () => { }); expect(entries).toEqual([...expectedExceptionEntries, entriesWithMatchAny]); }); + it('should build the exception entries with "match_any" in case the field key has multiple values and ensure that the array value is converted to a string', () => { + const entries = buildExceptionEntriesFromAlertFields({ + highlightedFields: [ + ...expectedHighlightedFields, + { + id: 'source.ports', + }, + ], + alertData, + }); + expect(entries).toEqual([ + ...expectedExceptionEntries, + { + field: 'source.ports', + operator, + type: ListOperatorTypeEnum.MATCH_ANY, + value: ['1', '2', '4'], + }, + ]); + }); }); describe('filterHighlightedFields', () => { diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/utils/helpers.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/utils/helpers.tsx index 617dd2901363c..d37a650a2d926 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/utils/helpers.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/utils/helpers.tsx @@ -874,6 +874,9 @@ export const buildRuleExceptionWithConditions = ({ Generate exception conditions based on the highlighted fields of the alert that have corresponding values in the alert data. For the initial implementation the nested conditions are not considered + Converting a singular value to a string or an array of strings + is necessary because the "Match" or "Match any" operators + are designed to operate with string value(s). */ export const buildExceptionEntriesFromAlertFields = ({ highlightedFields, @@ -884,18 +887,24 @@ export const buildExceptionEntriesFromAlertFields = ({ }): EntriesArray => { return Object.values(highlightedFields).reduce((acc: EntriesArray, field) => { const fieldKey = field.id; - const fieldValue = get(alertData, fieldKey) || get(alertData, getKibanaAlertIdField(fieldKey)); + const fieldValue = get(alertData, fieldKey) ?? get(alertData, getKibanaAlertIdField(fieldKey)); - if (fieldValue) { + if (fieldValue !== null && fieldValue !== undefined) { + const listOperatorType = Array.isArray(fieldValue) + ? ListOperatorTypeEnum.MATCH_ANY + : ListOperatorTypeEnum.MATCH; + + const fieldValueAsString = Array.isArray(fieldValue) + ? fieldValue.map(String) + : fieldValue.toString(); acc.push({ field: fieldKey, operator: ListOperatorEnum.INCLUDED, - type: Array.isArray(fieldValue) - ? ListOperatorTypeEnum.MATCH_ANY - : ListOperatorTypeEnum.MATCH, - value: fieldValue, + type: listOperatorType, + value: fieldValueAsString, }); } + return acc; }, []); }; @@ -917,7 +926,10 @@ export const getPrepopulatedRuleExceptionWithHighlightFields = ({ const highlightedFields = getAlertHighlightedFields(alertData, ruleCustomHighlightedFields); if (!highlightedFields.length) return null; - const exceptionEntries = buildExceptionEntriesFromAlertFields({ highlightedFields, alertData }); + const exceptionEntries = buildExceptionEntriesFromAlertFields({ + highlightedFields, + alertData, + }); if (!exceptionEntries.length) return null; return buildRuleExceptionWithConditions({ diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/api.test.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/api.test.ts index aad6cf8a04917..cf584bb87c207 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/api.test.ts +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/api.test.ts @@ -37,7 +37,6 @@ import { fetchRulesSnoozeSettings, } from './api'; -const abortCtrl = new AbortController(); const mockKibanaServices = KibanaServices.get as jest.Mock; jest.mock('../../../common/lib/kibana'); @@ -53,12 +52,14 @@ describe('Detections Rules API', () => { test('POSTs rule', async () => { const payload = getCreateRulesSchemaMock(); - await createRule({ rule: payload, signal: abortCtrl.signal }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules', { - body: '{"description":"Detecting root and admin users","name":"Query with a rule id","query":"user.name: root or user.name: admin","severity":"high","type":"query","risk_score":55,"language":"kuery","rule_id":"rule-1"}', - method: 'POST', - signal: abortCtrl.signal, - }); + await createRule({ rule: payload }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules', + expect.objectContaining({ + body: '{"description":"Detecting root and admin users","name":"Query with a rule id","query":"user.name: root or user.name: admin","severity":"high","type":"query","risk_score":55,"language":"kuery","rule_id":"rule-1"}', + method: 'POST', + }) + ); }); }); @@ -70,12 +71,14 @@ describe('Detections Rules API', () => { test('PUTs rule', async () => { const payload = getUpdateRulesSchemaMock(); - await updateRule({ rule: payload, signal: abortCtrl.signal }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules', { - body: '{"description":"Detecting root and admin users","name":"Query with a rule id","query":"user.name: root or user.name: admin","severity":"high","type":"query","risk_score":55,"language":"kuery","id":"04128c15-0d1b-4716-a4c5-46997ac7f3bd"}', - method: 'PUT', - signal: abortCtrl.signal, - }); + await updateRule({ rule: payload }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules', + expect.objectContaining({ + body: '{"description":"Detecting root and admin users","name":"Query with a rule id","query":"user.name: root or user.name: admin","severity":"high","type":"query","risk_score":55,"language":"kuery","id":"04128c15-0d1b-4716-a4c5-46997ac7f3bd"}', + method: 'PUT', + }) + ); }); }); @@ -87,12 +90,14 @@ describe('Detections Rules API', () => { test('PATCHs rule', async () => { const payload = getPatchRulesSchemaMock(); - await patchRule({ ruleProperties: payload, signal: abortCtrl.signal }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules', { - body: JSON.stringify(payload), - method: 'PATCH', - signal: abortCtrl.signal, - }); + await patchRule({ ruleProperties: payload }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules', + expect.objectContaining({ + body: JSON.stringify(payload), + method: 'PATCH', + }) + ); }); }); @@ -106,13 +111,14 @@ describe('Detections Rules API', () => { const payload = getCreateRulesSchemaMock(); await previewRule({ rule: { ...payload, invocationCount: 1, timeframeEnd: '2015-03-12 05:17:10' }, - signal: abortCtrl.signal, - }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/preview', { - body: '{"description":"Detecting root and admin users","name":"Query with a rule id","query":"user.name: root or user.name: admin","severity":"high","type":"query","risk_score":55,"language":"kuery","rule_id":"rule-1","invocationCount":1,"timeframeEnd":"2015-03-12 05:17:10"}', - method: 'POST', - signal: abortCtrl.signal, }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/preview', + expect.objectContaining({ + body: '{"description":"Detecting root and admin users","name":"Query with a rule id","query":"user.name: root or user.name: admin","severity":"high","type":"query","risk_score":55,"language":"kuery","rule_id":"rule-1","invocationCount":1,"timeframeEnd":"2015-03-12 05:17:10"}', + method: 'POST', + }) + ); }); }); @@ -123,17 +129,19 @@ describe('Detections Rules API', () => { }); test('check parameter url, query without any options', async () => { - await fetchRules({ signal: abortCtrl.signal }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/_find', { - method: 'GET', - query: { - page: 1, - per_page: 20, - sort_field: 'enabled', - sort_order: 'desc', - }, - signal: abortCtrl.signal, - }); + await fetchRules({}); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/_find', + expect.objectContaining({ + method: 'GET', + query: { + page: 1, + per_page: 20, + sort_field: 'enabled', + sort_order: 'desc', + }, + }) + ); }); test('check parameter url, query with a filter', async () => { @@ -148,21 +156,22 @@ describe('Detections Rules API', () => { field: 'enabled', order: 'desc', }, - signal: abortCtrl.signal, }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/_find', { - method: 'GET', - query: { - filter: - '(alert.attributes.name: "hello world" OR alert.attributes.params.index: "hello world" OR alert.attributes.params.threat.tactic.id: "hello world" OR alert.attributes.params.threat.tactic.name: "hello world" OR alert.attributes.params.threat.technique.id: "hello world" OR alert.attributes.params.threat.technique.name: "hello world" OR alert.attributes.params.threat.technique.subtechnique.id: "hello world" OR alert.attributes.params.threat.technique.subtechnique.name: "hello world")', - page: 1, - per_page: 20, - sort_field: 'enabled', - sort_order: 'desc', - }, - signal: abortCtrl.signal, - }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/_find', + expect.objectContaining({ + method: 'GET', + query: { + filter: + '(alert.attributes.name: "hello world" OR alert.attributes.params.index: "hello world" OR alert.attributes.params.threat.tactic.id: "hello world" OR alert.attributes.params.threat.tactic.name: "hello world" OR alert.attributes.params.threat.technique.id: "hello world" OR alert.attributes.params.threat.technique.name: "hello world" OR alert.attributes.params.threat.technique.subtechnique.id: "hello world" OR alert.attributes.params.threat.technique.subtechnique.name: "hello world")', + page: 1, + per_page: 20, + sort_field: 'enabled', + sort_order: 'desc', + }, + }) + ); }); test('check parameter url, query with a filter get escaped correctly', async () => { @@ -177,21 +186,22 @@ describe('Detections Rules API', () => { field: 'enabled', order: 'desc', }, - signal: abortCtrl.signal, }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/_find', { - method: 'GET', - query: { - filter: - '(alert.attributes.name: "\\" \\OR \\(foo\\:bar\\)" OR alert.attributes.params.index: "\\" \\OR \\(foo\\:bar\\)" OR alert.attributes.params.threat.tactic.id: "\\" \\OR \\(foo\\:bar\\)" OR alert.attributes.params.threat.tactic.name: "\\" \\OR \\(foo\\:bar\\)" OR alert.attributes.params.threat.technique.id: "\\" \\OR \\(foo\\:bar\\)" OR alert.attributes.params.threat.technique.name: "\\" \\OR \\(foo\\:bar\\)" OR alert.attributes.params.threat.technique.subtechnique.id: "\\" \\OR \\(foo\\:bar\\)" OR alert.attributes.params.threat.technique.subtechnique.name: "\\" \\OR \\(foo\\:bar\\)")', - page: 1, - per_page: 20, - sort_field: 'enabled', - sort_order: 'desc', - }, - signal: abortCtrl.signal, - }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/_find', + expect.objectContaining({ + method: 'GET', + query: { + filter: + '(alert.attributes.name: "\\" \\OR \\(foo\\:bar\\)" OR alert.attributes.params.index: "\\" \\OR \\(foo\\:bar\\)" OR alert.attributes.params.threat.tactic.id: "\\" \\OR \\(foo\\:bar\\)" OR alert.attributes.params.threat.tactic.name: "\\" \\OR \\(foo\\:bar\\)" OR alert.attributes.params.threat.technique.id: "\\" \\OR \\(foo\\:bar\\)" OR alert.attributes.params.threat.technique.name: "\\" \\OR \\(foo\\:bar\\)" OR alert.attributes.params.threat.technique.subtechnique.id: "\\" \\OR \\(foo\\:bar\\)" OR alert.attributes.params.threat.technique.subtechnique.name: "\\" \\OR \\(foo\\:bar\\)")', + page: 1, + per_page: 20, + sort_field: 'enabled', + sort_order: 'desc', + }, + }) + ); }); test('check parameter url, query with showCustomRules', async () => { @@ -206,20 +216,21 @@ describe('Detections Rules API', () => { field: 'enabled', order: 'desc', }, - signal: abortCtrl.signal, }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/_find', { - method: 'GET', - query: { - filter: 'alert.attributes.params.immutable: false', - page: 1, - per_page: 20, - sort_field: 'enabled', - sort_order: 'desc', - }, - signal: abortCtrl.signal, - }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/_find', + expect.objectContaining({ + method: 'GET', + query: { + filter: 'alert.attributes.params.immutable: false', + page: 1, + per_page: 20, + sort_field: 'enabled', + sort_order: 'desc', + }, + }) + ); }); test('check parameter url, query with showElasticRules', async () => { @@ -234,20 +245,21 @@ describe('Detections Rules API', () => { field: 'enabled', order: 'desc', }, - signal: abortCtrl.signal, }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/_find', { - method: 'GET', - query: { - filter: 'alert.attributes.params.immutable: true', - page: 1, - per_page: 20, - sort_field: 'enabled', - sort_order: 'desc', - }, - signal: abortCtrl.signal, - }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/_find', + expect.objectContaining({ + method: 'GET', + query: { + filter: 'alert.attributes.params.immutable: true', + page: 1, + per_page: 20, + sort_field: 'enabled', + sort_order: 'desc', + }, + }) + ); }); test('check parameter url, query with tags', async () => { @@ -262,20 +274,21 @@ describe('Detections Rules API', () => { field: 'enabled', order: 'desc', }, - signal: abortCtrl.signal, }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/_find', { - method: 'GET', - query: { - filter: 'alert.attributes.tags:("hello" AND "world")', - page: 1, - per_page: 20, - sort_field: 'enabled', - sort_order: 'desc', - }, - signal: abortCtrl.signal, - }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/_find', + expect.objectContaining({ + method: 'GET', + query: { + filter: 'alert.attributes.tags:("hello" AND "world")', + page: 1, + per_page: 20, + sort_field: 'enabled', + sort_order: 'desc', + }, + }) + ); }); test('check parameter url, passed sort field is snake case', async () => { @@ -290,20 +303,21 @@ describe('Detections Rules API', () => { field: 'updatedAt', order: 'desc', }, - signal: abortCtrl.signal, }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/_find', { - method: 'GET', - query: { - filter: 'alert.attributes.tags:("hello" AND "world")', - page: 1, - per_page: 20, - sort_field: 'updatedAt', - sort_order: 'desc', - }, - signal: abortCtrl.signal, - }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/_find', + expect.objectContaining({ + method: 'GET', + query: { + filter: 'alert.attributes.tags:("hello" AND "world")', + page: 1, + per_page: 20, + sort_field: 'updatedAt', + sort_order: 'desc', + }, + }) + ); }); test('query with tags KQL parses without errors when tags contain characters such as left parenthesis (', async () => { @@ -314,7 +328,6 @@ describe('Detections Rules API', () => { showElasticRules: true, tags: ['('], }, - signal: abortCtrl.signal, }); const [ [ @@ -339,7 +352,6 @@ describe('Detections Rules API', () => { field: 'enabled', order: 'desc', }, - signal: abortCtrl.signal, }); const [ [ @@ -364,7 +376,6 @@ describe('Detections Rules API', () => { field: 'enabled', order: 'desc', }, - signal: abortCtrl.signal, }); const [ [ @@ -389,24 +400,25 @@ describe('Detections Rules API', () => { field: 'enabled', order: 'desc', }, - signal: abortCtrl.signal, - }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/_find', { - method: 'GET', - query: { - filter: - '(alert.attributes.name: "ruleName" OR alert.attributes.params.index: "ruleName" OR alert.attributes.params.threat.tactic.id: "ruleName" OR alert.attributes.params.threat.tactic.name: "ruleName" OR alert.attributes.params.threat.technique.id: "ruleName" OR alert.attributes.params.threat.technique.name: "ruleName" OR alert.attributes.params.threat.technique.subtechnique.id: "ruleName" OR alert.attributes.params.threat.technique.subtechnique.name: "ruleName") AND alert.attributes.tags:("hello" AND "world")', - page: 1, - per_page: 20, - sort_field: 'enabled', - sort_order: 'desc', - }, - signal: abortCtrl.signal, }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/_find', + expect.objectContaining({ + method: 'GET', + query: { + filter: + '(alert.attributes.name: "ruleName" OR alert.attributes.params.index: "ruleName" OR alert.attributes.params.threat.tactic.id: "ruleName" OR alert.attributes.params.threat.tactic.name: "ruleName" OR alert.attributes.params.threat.technique.id: "ruleName" OR alert.attributes.params.threat.technique.name: "ruleName" OR alert.attributes.params.threat.technique.subtechnique.id: "ruleName" OR alert.attributes.params.threat.technique.subtechnique.name: "ruleName") AND alert.attributes.tags:("hello" AND "world")', + page: 1, + per_page: 20, + sort_field: 'enabled', + sort_order: 'desc', + }, + }) + ); }); test('happy path', async () => { - const rulesResp = await fetchRules({ signal: abortCtrl.signal }); + const rulesResp = await fetchRules({}); expect(rulesResp).toEqual(rulesMock); }); }); @@ -418,18 +430,20 @@ describe('Detections Rules API', () => { }); test('check parameter url, query', async () => { - await fetchRuleById({ id: 'mySuperRuleId', signal: abortCtrl.signal }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules', { - query: { - id: 'mySuperRuleId', - }, - method: 'GET', - signal: abortCtrl.signal, - }); + await fetchRuleById({ id: 'mySuperRuleId' }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules', + expect.objectContaining({ + query: { + id: 'mySuperRuleId', + }, + method: 'GET', + }) + ); }); test('happy path', async () => { - const ruleResp = await fetchRuleById({ id: 'mySuperRuleId', signal: abortCtrl.signal }); + const ruleResp = await fetchRuleById({ id: 'mySuperRuleId' }); expect(ruleResp).toEqual(getRulesSchemaMock()); }); }); @@ -455,37 +469,41 @@ describe('Detections Rules API', () => { }); test('check parameter url, body and query when importing rules', async () => { - await importRules({ fileToImport, signal: abortCtrl.signal }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/_import', { - signal: abortCtrl.signal, - method: 'POST', - body: formData, - headers: { - 'Content-Type': undefined, - }, - query: { - overwrite: false, - overwrite_action_connectors: false, - overwrite_exceptions: false, - }, - }); + await importRules({ fileToImport }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/_import', + expect.objectContaining({ + method: 'POST', + body: formData, + headers: { + 'Content-Type': undefined, + }, + query: { + overwrite: false, + overwrite_action_connectors: false, + overwrite_exceptions: false, + }, + }) + ); }); test('check parameter url, body and query when importing rules with overwrite', async () => { - await importRules({ fileToImport, overwrite: true, signal: abortCtrl.signal }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/_import', { - signal: abortCtrl.signal, - method: 'POST', - body: formData, - headers: { - 'Content-Type': undefined, - }, - query: { - overwrite: true, - overwrite_exceptions: false, - overwrite_action_connectors: false, - }, - }); + await importRules({ fileToImport, overwrite: true }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/_import', + expect.objectContaining({ + method: 'POST', + body: formData, + headers: { + 'Content-Type': undefined, + }, + query: { + overwrite: true, + overwrite_exceptions: false, + overwrite_action_connectors: false, + }, + }) + ); }); test('happy path', async () => { @@ -502,7 +520,7 @@ describe('Detections Rules API', () => { action_connectors_errors: [], action_connectors_warnings: [], }); - const resp = await importRules({ fileToImport, signal: abortCtrl.signal }); + const resp = await importRules({ fileToImport }); expect(resp).toEqual({ success: true, success_count: 33, @@ -537,51 +555,54 @@ describe('Detections Rules API', () => { test('check parameter url, body and query when exporting rules', async () => { await exportRules({ ids: ['mySuperRuleId', 'mySuperRuleId_II'], - signal: abortCtrl.signal, - }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/_export', { - signal: abortCtrl.signal, - method: 'POST', - body: '{"objects":[{"rule_id":"mySuperRuleId"},{"rule_id":"mySuperRuleId_II"}]}', - query: { - exclude_export_details: false, - file_name: 'rules_export.ndjson', - }, }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/_export', + expect.objectContaining({ + method: 'POST', + body: '{"objects":[{"rule_id":"mySuperRuleId"},{"rule_id":"mySuperRuleId_II"}]}', + query: { + exclude_export_details: false, + file_name: 'rules_export.ndjson', + }, + }) + ); }); test('check parameter url, body and query when exporting rules with excludeExportDetails', async () => { await exportRules({ excludeExportDetails: true, ids: ['mySuperRuleId', 'mySuperRuleId_II'], - signal: abortCtrl.signal, - }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/_export', { - signal: abortCtrl.signal, - method: 'POST', - body: '{"objects":[{"rule_id":"mySuperRuleId"},{"rule_id":"mySuperRuleId_II"}]}', - query: { - exclude_export_details: true, - file_name: 'rules_export.ndjson', - }, }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/_export', + expect.objectContaining({ + method: 'POST', + body: '{"objects":[{"rule_id":"mySuperRuleId"},{"rule_id":"mySuperRuleId_II"}]}', + query: { + exclude_export_details: true, + file_name: 'rules_export.ndjson', + }, + }) + ); }); test('check parameter url, body and query when exporting rules with fileName', async () => { await exportRules({ filename: 'myFileName.ndjson', ids: ['mySuperRuleId', 'mySuperRuleId_II'], - signal: abortCtrl.signal, - }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/_export', { - signal: abortCtrl.signal, - method: 'POST', - body: '{"objects":[{"rule_id":"mySuperRuleId"},{"rule_id":"mySuperRuleId_II"}]}', - query: { - exclude_export_details: false, - file_name: 'myFileName.ndjson', - }, }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/_export', + expect.objectContaining({ + method: 'POST', + body: '{"objects":[{"rule_id":"mySuperRuleId"},{"rule_id":"mySuperRuleId_II"}]}', + query: { + exclude_export_details: false, + file_name: 'myFileName.ndjson', + }, + }) + ); }); test('check parameter url, body and query when exporting rules with all options', async () => { @@ -589,23 +610,23 @@ describe('Detections Rules API', () => { excludeExportDetails: true, filename: 'myFileName.ndjson', ids: ['mySuperRuleId', 'mySuperRuleId_II'], - signal: abortCtrl.signal, - }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/_export', { - signal: abortCtrl.signal, - method: 'POST', - body: '{"objects":[{"rule_id":"mySuperRuleId"},{"rule_id":"mySuperRuleId_II"}]}', - query: { - exclude_export_details: true, - file_name: 'myFileName.ndjson', - }, }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/_export', + expect.objectContaining({ + method: 'POST', + body: '{"objects":[{"rule_id":"mySuperRuleId"},{"rule_id":"mySuperRuleId_II"}]}', + query: { + exclude_export_details: true, + file_name: 'myFileName.ndjson', + }, + }) + ); }); test('happy path', async () => { const resp = await exportRules({ ids: ['mySuperRuleId', 'mySuperRuleId_II'], - signal: abortCtrl.signal, }); expect(resp).toEqual(blob); }); @@ -623,14 +644,16 @@ describe('Detections Rules API', () => { fetchMock.mockResolvedValue(prePackagedRulesStatus); }); test('check parameter url when fetching tags', async () => { - await getPrePackagedRulesStatus({ signal: abortCtrl.signal }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/prepackaged/_status', { - signal: abortCtrl.signal, - method: 'GET', - }); + await getPrePackagedRulesStatus({}); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/prepackaged/_status', + expect.objectContaining({ + method: 'GET', + }) + ); }); test('happy path', async () => { - const resp = await getPrePackagedRulesStatus({ signal: abortCtrl.signal }); + const resp = await getPrePackagedRulesStatus({}); expect(resp).toEqual(prePackagedRulesStatus); }); }); @@ -654,16 +677,18 @@ describe('Detections Rules API', () => { namespaceType: 'single', }, ]; - await findRuleExceptionReferences({ lists: payload, signal: abortCtrl.signal }); - expect(fetchMock).toHaveBeenCalledWith(DETECTION_ENGINE_RULES_EXCEPTIONS_REFERENCE_URL, { - query: { - ids: '123,456', - list_ids: 'list_id_1,list_id_2', - namespace_types: 'single,single', - }, - method: 'GET', - signal: abortCtrl.signal, - }); + await findRuleExceptionReferences({ lists: payload }); + expect(fetchMock).toHaveBeenCalledWith( + DETECTION_ENGINE_RULES_EXCEPTIONS_REFERENCE_URL, + expect.objectContaining({ + query: { + ids: '123,456', + list_ids: 'list_id_1,list_id_2', + namespace_types: 'single,single', + }, + method: 'GET', + }) + ); }); }); @@ -678,16 +703,19 @@ describe('Detections Rules API', () => { test('passes a query', async () => { await performBulkAction({ bulkAction: { type: BulkActionType.enable, query: 'some query' } }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/_bulk_action', { - method: 'POST', - body: JSON.stringify({ - action: 'enable', - query: 'some query', - }), - query: { - dry_run: false, - }, - }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/_bulk_action', + expect.objectContaining({ + method: 'POST', + body: JSON.stringify({ + action: 'enable', + query: 'some query', + }), + query: { + dry_run: false, + }, + }) + ); }); test('passes ids', async () => { @@ -695,16 +723,19 @@ describe('Detections Rules API', () => { bulkAction: { type: BulkActionType.disable, ids: ['ruleId1', 'ruleId2'] }, }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/_bulk_action', { - method: 'POST', - body: JSON.stringify({ - action: 'disable', - ids: ['ruleId1', 'ruleId2'], - }), - query: { - dry_run: false, - }, - }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/_bulk_action', + expect.objectContaining({ + method: 'POST', + body: JSON.stringify({ + action: 'disable', + ids: ['ruleId1', 'ruleId2'], + }), + query: { + dry_run: false, + }, + }) + ); }); test('passes edit payload', async () => { @@ -718,17 +749,20 @@ describe('Detections Rules API', () => { }, }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/_bulk_action', { - method: 'POST', - body: JSON.stringify({ - action: 'edit', - ids: ['ruleId1'], - edit: [{ type: 'add_index_patterns', value: ['some-index-pattern'] }], - }), - query: { - dry_run: false, - }, - }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/_bulk_action', + expect.objectContaining({ + method: 'POST', + body: JSON.stringify({ + action: 'edit', + ids: ['ruleId1'], + edit: [{ type: 'add_index_patterns', value: ['some-index-pattern'] }], + }), + query: { + dry_run: false, + }, + }) + ); }); test('executes dry run', async () => { @@ -737,14 +771,17 @@ describe('Detections Rules API', () => { dryRun: true, }); - expect(fetchMock).toHaveBeenCalledWith('/api/detection_engine/rules/_bulk_action', { - method: 'POST', - body: JSON.stringify({ - action: 'disable', - query: 'some query', - }), - query: { dry_run: true }, - }); + expect(fetchMock).toHaveBeenCalledWith( + '/api/detection_engine/rules/_bulk_action', + expect.objectContaining({ + method: 'POST', + body: JSON.stringify({ + action: 'disable', + query: 'some query', + }), + query: { dry_run: true }, + }) + ); }); test('returns result', async () => { diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/api.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/api.ts index 27ce67f23a978..9a0345faf4c0f 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/api.ts +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/api.ts @@ -94,6 +94,7 @@ import type { export const createRule = async ({ rule, signal }: CreateRulesProps): Promise => KibanaServices.get().http.fetch(DETECTION_ENGINE_RULES_URL, { method: 'POST', + version: '2023-10-31', body: JSON.stringify(rule), signal, }); @@ -114,6 +115,7 @@ export const createRule = async ({ rule, signal }: CreateRulesProps): Promise => KibanaServices.get().http.fetch(DETECTION_ENGINE_RULES_URL, { method: 'PUT', + version: '2023-10-31', body: JSON.stringify(rule), signal, }); @@ -135,6 +137,7 @@ export const patchRule = async ({ }: PatchRuleProps): Promise => KibanaServices.get().http.fetch(DETECTION_ENGINE_RULES_URL, { method: 'PATCH', + version: '2023-10-31', body: JSON.stringify(ruleProperties), signal, }); @@ -192,6 +195,7 @@ export const fetchRules = async ({ return KibanaServices.get().http.fetch(DETECTION_ENGINE_RULES_URL_FIND, { method: 'GET', + version: '2023-10-31', query, signal, }); @@ -213,6 +217,7 @@ export const fetchRules = async ({ export const fetchRuleById = async ({ id, signal }: FetchRuleProps): Promise => KibanaServices.get().http.fetch(DETECTION_ENGINE_RULES_URL, { method: 'GET', + version: '2023-10-31', query: { id }, signal, }); @@ -267,6 +272,7 @@ export const fetchCoverageOverview = async ({ }: FetchCoverageOverviewProps): Promise => KibanaServices.get().http.fetch(RULE_MANAGEMENT_COVERAGE_OVERVIEW_URL, { method: 'POST', + version: '1', body: JSON.stringify({ filter, }), @@ -369,6 +375,7 @@ export async function performBulkAction({ return KibanaServices.get().http.fetch(DETECTION_ENGINE_RULES_BULK_ACTION, { method: 'POST', + version: '2023-10-31', body: JSON.stringify(params), query: { dry_run: dryRun }, }); @@ -392,6 +399,7 @@ export async function bulkExportRules(queryOrIds: QueryOrIds): Promise(DETECTION_ENGINE_RULES_BULK_ACTION, { method: 'POST', + version: '2023-10-31', body: JSON.stringify(params), }); } @@ -426,6 +434,7 @@ export const importRules = async ({ `${DETECTION_ENGINE_RULES_URL}/_import`, { method: 'POST', + version: '2023-10-31', headers: { 'Content-Type': undefined }, query: { overwrite, @@ -461,6 +470,7 @@ export const exportRules = async ({ return KibanaServices.get().http.fetch(`${DETECTION_ENGINE_RULES_URL}/_export`, { method: 'POST', + version: '2023-10-31', body, query: { exclude_export_details: excludeExportDetails, @@ -484,6 +494,7 @@ export const fetchRuleManagementFilters = async ({ }): Promise => KibanaServices.get().http.fetch(RULE_MANAGEMENT_FILTERS_URL, { method: 'GET', + version: '1', signal, }); @@ -497,10 +508,11 @@ export const fetchRuleManagementFilters = async ({ export const getPrePackagedRulesStatus = async ({ signal, }: { - signal: AbortSignal | undefined; + signal?: AbortSignal; }): Promise => KibanaServices.get().http.fetch(PREBUILT_RULES_STATUS_URL, { method: 'GET', + version: '2023-10-31', signal, }); @@ -642,6 +654,7 @@ export const getPrebuiltRulesStatus = async ({ GET_PREBUILT_RULES_STATUS_URL, { method: 'GET', + version: '1', signal, } ); @@ -660,6 +673,7 @@ export const reviewRuleUpgrade = async ({ }): Promise => KibanaServices.get().http.fetch(REVIEW_RULE_UPGRADE_URL, { method: 'POST', + version: '1', signal, }); @@ -677,12 +691,14 @@ export const reviewRuleInstall = async ({ }): Promise => KibanaServices.get().http.fetch(REVIEW_RULE_INSTALLATION_URL, { method: 'POST', + version: '1', signal, }); export const performInstallAllRules = async (): Promise => KibanaServices.get().http.fetch(PERFORM_RULE_INSTALLATION_URL, { method: 'POST', + version: '1', body: JSON.stringify({ mode: 'ALL_RULES', }), @@ -693,6 +709,7 @@ export const performInstallSpecificRules = async ( ): Promise => KibanaServices.get().http.fetch(PERFORM_RULE_INSTALLATION_URL, { method: 'POST', + version: '1', body: JSON.stringify({ mode: 'SPECIFIC_RULES', rules, @@ -702,6 +719,7 @@ export const performInstallSpecificRules = async ( export const performUpgradeAllRules = async (): Promise => KibanaServices.get().http.fetch(PERFORM_RULE_UPGRADE_URL, { method: 'POST', + version: '1', body: JSON.stringify({ mode: 'ALL_RULES', pick_version: 'TARGET', @@ -713,6 +731,7 @@ export const performUpgradeSpecificRules = async ( ): Promise => KibanaServices.get().http.fetch(PERFORM_RULE_UPGRADE_URL, { method: 'POST', + version: '1', body: JSON.stringify({ mode: 'SPECIFIC_RULES', rules, diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_about_section.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_about_section.tsx index a02c299109cce..12ca5b5683f68 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_about_section.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_about_section.tsx @@ -164,6 +164,14 @@ const FalsePositives = ({ falsePositives }: { falsePositives: string[] }) => ( ); +interface InvestigationFieldsProps { + investigationFields: string[]; +} + +const InvestigationFields = ({ investigationFields }: InvestigationFieldsProps) => ( + +); + interface LicenseProps { license: string; } @@ -208,13 +216,10 @@ interface TagsProps { const Tags = ({ tags }: TagsProps) => ; -// eslint-disable-next-line complexity -const prepareAboutSectionListItems = ( - rule: Partial -): EuiDescriptionListProps['listItems'] => { +const prepareAboutSectionListItems = (rule: RuleResponse): EuiDescriptionListProps['listItems'] => { const aboutSectionListItems: EuiDescriptionListProps['listItems'] = []; - if (rule.author) { + if (rule.author.length > 0) { aboutSectionListItems.push({ title: i18n.AUTHOR_FIELD_LABEL, description: , @@ -228,14 +233,12 @@ const prepareAboutSectionListItems = ( }); } - if (rule.severity) { - aboutSectionListItems.push({ - title: i18n.SEVERITY_FIELD_LABEL, - description: , - }); - } + aboutSectionListItems.push({ + title: i18n.SEVERITY_FIELD_LABEL, + description: , + }); - if (rule.severity_mapping && rule.severity_mapping.length > 0) { + if (rule.severity_mapping.length > 0) { aboutSectionListItems.push( ...rule.severity_mapping .filter((severityMappingItem) => severityMappingItem.field !== '') @@ -248,14 +251,12 @@ const prepareAboutSectionListItems = ( ); } - if (rule.risk_score) { - aboutSectionListItems.push({ - title: i18n.RISK_SCORE_FIELD_LABEL, - description: , - }); - } + aboutSectionListItems.push({ + title: i18n.RISK_SCORE_FIELD_LABEL, + description: , + }); - if (rule.risk_score_mapping && rule.risk_score_mapping.length > 0) { + if (rule.risk_score_mapping.length > 0) { aboutSectionListItems.push( ...rule.risk_score_mapping .filter((riskScoreMappingItem) => riskScoreMappingItem.field !== '') @@ -268,20 +269,27 @@ const prepareAboutSectionListItems = ( ); } - if (rule.references && rule.references.length > 0) { + if (rule.references.length > 0) { aboutSectionListItems.push({ title: i18n.REFERENCES_FIELD_LABEL, description: , }); } - if (rule.false_positives && rule.false_positives.length > 0) { + if (rule.false_positives.length > 0) { aboutSectionListItems.push({ title: i18n.FALSE_POSITIVES_FIELD_LABEL, description: , }); } + if (rule.investigation_fields && rule.investigation_fields.length > 0) { + aboutSectionListItems.push({ + title: i18n.INVESTIGATION_FIELDS_FIELD_LABEL, + description: , + }); + } + if (rule.license) { aboutSectionListItems.push({ title: i18n.LICENSE_FIELD_LABEL, @@ -296,7 +304,7 @@ const prepareAboutSectionListItems = ( }); } - if (rule.threat && rule.threat.length > 0) { + if (rule.threat.length > 0) { aboutSectionListItems.push({ title: i18n.THREAT_FIELD_LABEL, description: , @@ -317,7 +325,7 @@ const prepareAboutSectionListItems = ( }); } - if (rule.tags && rule.tags.length > 0) { + if (rule.tags.length > 0) { aboutSectionListItems.push({ title: i18n.TAGS_FIELD_LABEL, description: , @@ -328,7 +336,7 @@ const prepareAboutSectionListItems = ( }; export interface RuleAboutSectionProps { - rule: Partial; + rule: RuleResponse; } export const RuleAboutSection = ({ rule }: RuleAboutSectionProps) => { diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_definition_section.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_definition_section.tsx index 4839e7f2dc48f..8957ebe1ff9d5 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_definition_section.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_definition_section.tsx @@ -8,25 +8,99 @@ import React from 'react'; import { isEmpty } from 'lodash/fp'; import styled from 'styled-components'; -import { EuiDescriptionList, EuiText, EuiFlexGrid, EuiFlexItem, EuiFlexGroup } from '@elastic/eui'; +import { + EuiDescriptionList, + EuiText, + EuiFlexGrid, + EuiFlexItem, + EuiFlexGroup, + EuiLoadingSpinner, + EuiBadge, +} from '@elastic/eui'; import type { EuiDescriptionListProps } from '@elastic/eui'; import type { Type, ThreatMapping as ThreatMappingType, } from '@kbn/securitysolution-io-ts-alerting-types'; +import type { Filter } from '@kbn/es-query'; +import type { SavedQuery } from '@kbn/data-plugin/public'; +import { mapAndFlattenFilters } from '@kbn/data-plugin/public'; import { FieldIcon } from '@kbn/react-field'; import { castEsToKbnFieldTypeName } from '@kbn/field-types'; +import { FilterBadgeGroup } from '@kbn/unified-search-plugin/public'; import type { RuleResponse } from '../../../../../common/api/detection_engine/model/rule_schema/rule_schemas'; import type { Threshold as ThresholdType } from '../../../../../common/api/detection_engine/model/rule_schema/specific_attributes/threshold_attributes'; import type { RequiredFieldArray } from '../../../../../common/api/detection_engine/model/rule_schema/common_attributes'; import { assertUnreachable } from '../../../../../common/utility_types'; import * as descriptionStepI18n from '../../../../detections/components/rules/description_step/translations'; -import { MlJobsDescription } from '../../../../detections/components/rules/ml_jobs_description/ml_jobs_description'; import { RelatedIntegrationsDescription } from '../../../../detections/components/rules/related_integrations/integrations_description'; +import { useGetSavedQuery } from '../../../../detections/pages/detection_engine/rules/use_get_saved_query'; import * as threatMatchI18n from '../../../../common/components/threat_match/translations'; +import * as timelinesI18n from '../../../../timelines/components/timeline/translations'; +import { useRuleIndexPattern } from '../../../rule_creation_ui/pages/form'; +import { DataSourceType } from '../../../../detections/pages/detection_engine/rules/types'; +import { convertHistoryStartToSize } from '../../../../detections/pages/detection_engine/rules/helpers'; +import { MlJobLink } from '../../../../detections/components/rules/ml_job_link/ml_job_link'; +import { useSecurityJobs } from '../../../../common/components/ml_popover/hooks/use_security_jobs'; import { BadgeList } from './badge_list'; import * as i18n from './translations'; +interface SavedQueryNameProps { + savedQueryName: string; +} + +const SavedQueryName = ({ savedQueryName }: SavedQueryNameProps) => ( + {savedQueryName} +); + +const EuiBadgeWrap = styled(EuiBadge)` + .euiBadge__text { + white-space: pre-wrap !important; + } +`; + +interface FiltersProps { + filters: Filter[]; + dataViewId?: string; + index?: string[]; +} + +const Filters = ({ filters, dataViewId, index }: FiltersProps) => { + const { indexPattern } = useRuleIndexPattern({ + dataSourceType: dataViewId ? DataSourceType.DataView : DataSourceType.IndexPatterns, + index: index ?? [], + dataViewId, + }); + + const flattenedFilters = mapAndFlattenFilters(filters); + + return ( + + {flattenedFilters.map((filter, idx) => ( + + + {indexPattern != null ? ( + + ) : ( + + )} + + + ))} + + ); +}; + +const QueryContent = styled.div` + white-space: pre-wrap; +`; + +interface QueryProps { + query: string; +} + +const Query = ({ query }: QueryProps) => {query}; + interface IndexProps { index: string[]; } @@ -53,6 +127,36 @@ const Threshold = ({ threshold }: ThresholdProps) => ( ); +interface AnomalyThresholdProps { + anomalyThreshold: number; +} + +const AnomalyThreshold = ({ anomalyThreshold }: AnomalyThresholdProps) => ( + {anomalyThreshold} +); + +interface MachineLearningJobListProps { + jobIds: string[]; +} + +const MachineLearningJobList = ({ jobIds }: MachineLearningJobListProps) => { + const { jobs } = useSecurityJobs(); + + const relevantJobs = jobs.filter((job) => jobIds.includes(job.id)); + + return ( + <> + {relevantJobs.map((job) => ( + + ))} + + ); +}; + const getRuleTypeDescription = (ruleType: Type) => { switch (ruleType) { case 'machine_learning': @@ -94,7 +198,7 @@ interface RequiredFieldsProps { const RequiredFields = ({ requiredFields }: RequiredFieldsProps) => ( {requiredFields.map((rF, index) => ( - + { return {description}; }; +interface NewTermsFieldsProps { + newTermsFields: string[]; +} + +const NewTermsFields = ({ newTermsFields }: NewTermsFieldsProps) => ( + +); + +interface HistoryWindowSizeProps { + historyWindowStart?: string; +} + +const HistoryWindowSize = ({ historyWindowStart }: HistoryWindowSizeProps) => { + const size = historyWindowStart ? convertHistoryStartToSize(historyWindowStart) : '7d'; + + return {size}; +}; + +// eslint-disable-next-line complexity const prepareDefinitionSectionListItems = ( - rule: Partial + rule: RuleResponse, + savedQuery?: SavedQuery ): EuiDescriptionListProps['listItems'] => { const definitionSectionListItems: EuiDescriptionListProps['listItems'] = []; @@ -181,21 +305,62 @@ const prepareDefinitionSectionListItems = ( }); } - if (rule.type) { + if (savedQuery) { + definitionSectionListItems.push({ + title: descriptionStepI18n.SAVED_QUERY_NAME_LABEL, + description: , + }); + + if (savedQuery.attributes.filters) { + definitionSectionListItems.push({ + title: descriptionStepI18n.SAVED_QUERY_FILTERS_LABEL, + description: , + }); + } + } + + if ('filters' in rule && rule.filters && rule.filters.length > 0) { + definitionSectionListItems.push({ + title: savedQuery + ? descriptionStepI18n.SAVED_QUERY_FILTERS_LABEL + : descriptionStepI18n.FILTERS_LABEL, + description: ( + + ), + }); + } + + if ('query' in rule && rule.query) { + definitionSectionListItems.push({ + title: savedQuery ? descriptionStepI18n.SAVED_QUERY_LABEL : descriptionStepI18n.QUERY_LABEL, + description: , + }); + } + + definitionSectionListItems.push({ + title: i18n.RULE_TYPE_FIELD_LABEL, + description: , + }); + + if ('anomaly_threshold' in rule && rule.anomaly_threshold) { definitionSectionListItems.push({ - title: i18n.RULE_TYPE_FIELD_LABEL, - description: , + title: i18n.ANOMALY_THRESHOLD_FIELD_LABEL, + description: , }); } if ('machine_learning_job_id' in rule) { definitionSectionListItems.push({ title: i18n.MACHINE_LEARNING_JOB_ID_FIELD_LABEL, - description: , + description: , }); } - if (rule.related_integrations && rule.related_integrations.length > 0) { + if (rule.related_integrations.length > 0) { definitionSectionListItems.push({ title: i18n.RELATED_INTEGRATIONS_FIELD_LABEL, description: ( @@ -204,19 +369,19 @@ const prepareDefinitionSectionListItems = ( }); } - if (rule.required_fields && rule.required_fields.length > 0) { + if (rule.required_fields.length > 0) { definitionSectionListItems.push({ title: i18n.REQUIRED_FIELDS_FIELD_LABEL, description: , }); } - if (rule.timeline_title) { - definitionSectionListItems.push({ - title: i18n.TIMELINE_TITLE_FIELD_LABEL, - description: , - }); - } + definitionSectionListItems.push({ + title: i18n.TIMELINE_TITLE_FIELD_LABEL, + description: ( + + ), + }); if ('threshold' in rule && rule.threshold) { definitionSectionListItems.push({ @@ -239,15 +404,58 @@ const prepareDefinitionSectionListItems = ( }); } + if ('threat_filters' in rule && rule.threat_filters && rule.threat_filters.length > 0) { + definitionSectionListItems.push({ + title: savedQuery + ? descriptionStepI18n.SAVED_QUERY_FILTERS_LABEL + : descriptionStepI18n.FILTERS_LABEL, + description: ( + + ), + }); + } + + if ('threat_query' in rule && rule.threat_query) { + definitionSectionListItems.push({ + title: savedQuery + ? descriptionStepI18n.SAVED_QUERY_LABEL + : descriptionStepI18n.THREAT_QUERY_LABEL, + description: , + }); + } + + if ('new_terms_fields' in rule && rule.new_terms_fields && rule.new_terms_fields.length > 0) { + definitionSectionListItems.push({ + title: i18n.NEW_TERMS_FIELDS_FIELD_LABEL, + description: , + }); + } + + if (rule.type === 'new_terms' || 'history_window_start' in rule) { + definitionSectionListItems.push({ + title: i18n.HISTORY_WINDOW_SIZE_FIELD_LABEL, + description: , + }); + } + return definitionSectionListItems; }; export interface RuleDefinitionSectionProps { - rule: Partial; + rule: RuleResponse; } export const RuleDefinitionSection = ({ rule }: RuleDefinitionSectionProps) => { - const definitionSectionListItems = prepareDefinitionSectionListItems(rule); + const { savedQuery } = useGetSavedQuery({ + savedQueryId: rule.type === 'saved_query' ? rule.saved_id : '', + ruleType: rule.type, + }); + + const definitionSectionListItems = prepareDefinitionSectionListItems(rule, savedQuery); return (
    diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_details_flyout.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_details_flyout.tsx index 9cd5a751c5c58..e4a596f6264bb 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_details_flyout.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_details_flyout.tsx @@ -7,6 +7,8 @@ import React, { useMemo, useState, useEffect } from 'react'; import styled from 'styled-components'; +import { css } from '@emotion/css'; +import { euiThemeVars } from '@kbn/ui-theme'; import { EuiButton, EuiButtonEmpty, @@ -20,7 +22,7 @@ import { EuiFlexGroup, EuiFlexItem, } from '@elastic/eui'; -import type { EuiTabbedContentTab } from '@elastic/eui'; +import type { EuiTabbedContentTab, EuiTabbedContentProps } from '@elastic/eui'; import type { RuleResponse } from '../../../../../common/api/detection_engine/model/rule_schema/rule_schemas'; import { RuleOverviewTab, useOverviewTabSections } from './rule_overview_tab'; @@ -37,7 +39,7 @@ const StyledEuiFlyoutBody = styled(EuiFlyoutBody)` .euiFlyoutBody__overflowContent { flex: 1; overflow: hidden; - padding: ${({ theme }) => `0 ${theme.eui.euiSizeL} ${theme.eui.euiSizeM}`}; + padding: ${({ theme }) => `0 ${theme.eui.euiSizeL} 0`}; } } `; @@ -79,8 +81,27 @@ const StyledEuiTabbedContent = styled(EuiTabbedContent)` } `; +/* + * Fixes tabs to the top and allows the content to scroll. + */ +const ScrollableFlyoutTabbedContent = (props: EuiTabbedContentProps) => ( + + + + + +); + +const tabPaddingClassName = css` + padding: 0 ${euiThemeVars.euiSizeM} ${euiThemeVars.euiSizeXL} ${euiThemeVars.euiSizeM}; +`; + +const TabContentPadding: React.FC = ({ children }) => ( +
    {children}
    +); + interface RuleDetailsFlyoutProps { - rule: Partial; + rule: RuleResponse; actionButtonLabel: string; isActionButtonDisabled: boolean; onActionButtonClick: (ruleId: string) => void; @@ -101,11 +122,13 @@ export const RuleDetailsFlyout = ({ id: 'overview', name: i18n.OVERVIEW_TAB_LABEL, content: ( - + + + ), }), [rule, expandedOverviewSections, toggleOverviewSection] @@ -115,7 +138,11 @@ export const RuleDetailsFlyout = ({ () => ({ id: 'investigationGuide', name: i18n.INVESTIGATION_GUIDE_TAB_LABEL, - content: , + content: ( + + + + ), }), [rule.note] ); @@ -151,17 +178,17 @@ export const RuleDetailsFlyout = ({ paddingSize="l" > - +

    {rule.name}

    - - - - - + diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_investigation_guide_tab.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_investigation_guide_tab.tsx index 6824714e070b5..e6d01d1fca588 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_investigation_guide_tab.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_investigation_guide_tab.tsx @@ -6,9 +6,7 @@ */ import React from 'react'; -import { css } from '@emotion/react'; import { EuiSpacer } from '@elastic/eui'; -import { euiThemeVars } from '@kbn/ui-theme'; import { MarkdownRenderer } from '../../../../common/components/markdown_editor'; import type { InvestigationGuide } from '../../../../../common/api/detection_engine/model/rule_schema/common_attributes'; @@ -18,13 +16,9 @@ interface RuleInvestigationGuideTabProps { export const RuleInvestigationGuideTab = ({ note }: RuleInvestigationGuideTabProps) => { return ( -
    + <> - {note} -
    + {note} + ); }; diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_overview_tab.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_overview_tab.tsx index ed54f5e8ce68c..aa9b42abe6ba7 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_overview_tab.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_overview_tab.tsx @@ -6,8 +6,6 @@ */ import React, { useState, useMemo, useCallback } from 'react'; -import { css } from '@emotion/react'; -import { euiThemeVars } from '@kbn/ui-theme'; import { EuiTitle, EuiAccordion, @@ -88,7 +86,7 @@ const ExpandableSection = ({ title, isOpen, toggle, children }: ExpandableSectio }; interface RuleOverviewTabProps { - rule: Partial; + rule: RuleResponse; expandedOverviewSections: Record; toggleOverviewSection: Record void>; } @@ -98,11 +96,7 @@ export const RuleOverviewTab = ({ expandedOverviewSections, toggleOverviewSection, }: RuleOverviewTabProps) => ( -
    + <> - {rule.setup && ( <> + - )} -
    + ); diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_schedule_section.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_schedule_section.tsx index 866fbdfdee939..e7d2bbaeb831d 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_schedule_section.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_schedule_section.tsx @@ -27,25 +27,22 @@ const From = ({ from, interval }: FromProps) => ( ); export interface RuleScheduleSectionProps { - rule: Partial; + rule: RuleResponse; } export const RuleScheduleSection = ({ rule }: RuleScheduleSectionProps) => { const ruleSectionListItems = []; - if (rule.interval) { - ruleSectionListItems.push({ + ruleSectionListItems.push( + { title: i18n.INTERVAL_FIELD_LABEL, description: , - }); - } - - if (rule.interval && rule.from) { - ruleSectionListItems.push({ + }, + { title: i18n.FROM_FIELD_LABEL, description: , - }); - } + } + ); return (
    diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_setup_guide_section.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_setup_guide_section.tsx index 1fe5c5bfedd35..b6a358349a117 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_setup_guide_section.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/rule_setup_guide_section.tsx @@ -16,7 +16,7 @@ interface RuleSetupGuideSectionProps { export const RuleSetupGuideSection = ({ setup }: RuleSetupGuideSectionProps) => { return (
    - {setup} + {setup}
    ); }; diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/translations.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/translations.ts index 8164a83950502..55b0edc254d73 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/translations.ts +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/translations.ts @@ -126,6 +126,13 @@ export const FALSE_POSITIVES_FIELD_LABEL = i18n.translate( } ); +export const INVESTIGATION_FIELDS_FIELD_LABEL = i18n.translate( + 'xpack.securitySolution.detectionEngine.ruleDetails.investigationFieldsFieldLabel', + { + defaultMessage: 'Custom highlighted fields', + } +); + export const LICENSE_FIELD_LABEL = i18n.translate( 'xpack.securitySolution.detectionEngine.ruleDetails.licenseFieldLabel', { @@ -203,6 +210,13 @@ export const MACHINE_LEARNING_JOB_ID_FIELD_LABEL = i18n.translate( } ); +export const ANOMALY_THRESHOLD_FIELD_LABEL = i18n.translate( + 'xpack.securitySolution.detectionEngine.ruleDetails.anomalyThresholdFieldLabel', + { + defaultMessage: 'Anomaly score threshold', + } +); + export const RELATED_INTEGRATIONS_FIELD_LABEL = i18n.translate( 'xpack.securitySolution.detectionEngine.ruleDetails.relatedIntegrationsFieldLabel', { @@ -245,6 +259,20 @@ export const THREAT_FILTERS_FIELD_LABEL = i18n.translate( } ); +export const NEW_TERMS_FIELDS_FIELD_LABEL = i18n.translate( + 'xpack.securitySolution.detectionEngine.ruleDetails.newTermsFieldsFieldLabel', + { + defaultMessage: 'Fields', + } +); + +export const HISTORY_WINDOW_SIZE_FIELD_LABEL = i18n.translate( + 'xpack.securitySolution.detectionEngine.ruleDetails.historyWindowSizeFieldLabel', + { + defaultMessage: 'History Window Size', + } +); + export const INTERVAL_FIELD_LABEL = i18n.translate( 'xpack.securitySolution.detectionEngine.ruleDetails.intervalFieldLabel', { diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/use_rule_details_flyout.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/use_rule_details_flyout.tsx index 7aff5b7fb38f3..ccce517db5b55 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/use_rule_details_flyout.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_details/use_rule_details_flyout.tsx @@ -7,44 +7,41 @@ import React, { useCallback } from 'react'; import { invariant } from '../../../../../common/utils/invariant'; -import type { - RuleInstallationInfoForReview, - RuleSignatureId, -} from '../../../../../common/api/detection_engine'; -import type { DiffableRule } from '../../../../../common/api/detection_engine/prebuilt_rules/model/diff/diffable_rule/diffable_rule'; +import type { RuleObjectId } from '../../../../../common/api/detection_engine'; +import type { RuleResponse } from '../../../../../common/api/detection_engine/model/rule_schema'; export interface RuleDetailsFlyoutState { - flyoutRule: RuleInstallationInfoForReview | null; + previewedRule: RuleResponse | null; } export interface RuleDetailsFlyoutActions { - openFlyoutForRuleId: (ruleId: RuleSignatureId) => void; - closeFlyout: () => void; + openRulePreview: (ruleId: RuleObjectId) => void; + closeRulePreview: () => void; } export const useRuleDetailsFlyout = ( - rules: DiffableRule[] + rules: RuleResponse[] ): RuleDetailsFlyoutState & RuleDetailsFlyoutActions => { - const [flyoutRule, setFlyoutRule] = React.useState(null); + const [previewedRule, setRuleForPreview] = React.useState(null); - const openFlyoutForRuleId = useCallback( - (ruleId: RuleSignatureId) => { - const ruleToShowInFlyout = rules.find((rule) => rule.rule_id === ruleId); + const openRulePreview = useCallback( + (ruleId: RuleObjectId) => { + const ruleToShowInFlyout = rules.find((rule) => { + return rule.id === ruleId; + }); invariant(ruleToShowInFlyout, `Rule with id ${ruleId} not found`); - if (ruleToShowInFlyout) { - setFlyoutRule(ruleToShowInFlyout); - } + setRuleForPreview(ruleToShowInFlyout); }, - [rules, setFlyoutRule] + [rules, setRuleForPreview] ); - const closeFlyout = useCallback(() => { - setFlyoutRule(null); + const closeRulePreview = useCallback(() => { + setRuleForPreview(null); }, []); return { - openFlyoutForRuleId, - closeFlyout, - flyoutRule, + openRulePreview, + closeRulePreview, + previewedRule, }; }; diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/logic/coverage_overview/build_coverage_overview_dashboard_model.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_management/logic/coverage_overview/build_coverage_overview_dashboard_model.ts index 8f0275ba8d0c5..d1586362553c6 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management/logic/coverage_overview/build_coverage_overview_dashboard_model.ts +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/logic/coverage_overview/build_coverage_overview_dashboard_model.ts @@ -115,10 +115,13 @@ function addRule( id: ruleId, name: ruleData.name, }); - } else if (ruleData.activity === CoverageOverviewRuleActivity.Available) { - container.availableRules.push({ - id: ruleId, - name: ruleData.name, - }); } + + // When we add support for available (not installed) rules to this feature, add the following here: + // else if (ruleData.activity === CoverageOverviewRuleActivity.Available) { + // container.availableRules.push({ + // id: ruleId, + // name: ruleData.name, + // }); + // } } diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/logic/types.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_management/logic/types.ts index 63a6b70356ea3..8c89032a7d15b 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management/logic/types.ts +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/logic/types.ts @@ -290,7 +290,7 @@ export interface ImportDataProps { overwrite?: boolean; overwriteExceptions?: boolean; overwriteActionConnectors?: boolean; - signal: AbortSignal; + signal?: AbortSignal; } export interface ImportRulesResponseError { diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/add_prebuilt_rules_table/add_prebuilt_rules_flyout.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/add_prebuilt_rules_table/add_prebuilt_rules_flyout.tsx deleted file mode 100644 index e62246897a190..0000000000000 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/add_prebuilt_rules_table/add_prebuilt_rules_flyout.tsx +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import React from 'react'; - -import { useAddPrebuiltRulesTableContext } from './add_prebuilt_rules_table_context'; -import { RuleDetailsFlyout } from '../../../../rule_management/components/rule_details/rule_details_flyout'; -import type { RuleResponse } from '../../../../../../common/api/detection_engine/model/rule_schema/rule_schemas'; -import { diffableRuleToRuleResponse } from '../../../../../../common/detection_engine/diffable_rule_to_rule_response'; -import * as i18n from './translations'; - -export const AddPrebuiltRulesFlyout = () => { - const { - state: { flyoutRule, isFlyoutInstallButtonDisabled }, - actions: { installOneRule, closeFlyout }, - } = useAddPrebuiltRulesTableContext(); - - if (flyoutRule == null) { - return null; - } - - const ruleResponse: Partial = diffableRuleToRuleResponse(flyoutRule); - - return ( - - ); -}; diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/add_prebuilt_rules_table/add_prebuilt_rules_table.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/add_prebuilt_rules_table/add_prebuilt_rules_table.tsx index 029f31f19a688..e64645e967cc2 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/add_prebuilt_rules_table/add_prebuilt_rules_table.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/add_prebuilt_rules_table/add_prebuilt_rules_table.tsx @@ -22,7 +22,6 @@ import { AddPrebuiltRulesTableNoItemsMessage } from './add_prebuilt_rules_no_ite import { useAddPrebuiltRulesTableContext } from './add_prebuilt_rules_table_context'; import { AddPrebuiltRulesTableFilters } from './add_prebuilt_rules_table_filters'; import { useAddPrebuiltRulesTableColumns } from './use_add_prebuilt_rules_table_columns'; -import { AddPrebuiltRulesFlyout } from './add_prebuilt_rules_flyout'; /** * Table Component for displaying new rules that are available to be installed @@ -97,8 +96,6 @@ export const AddPrebuiltRulesTable = React.memo(() => { data-test-subj="add-prebuilt-rules-table" columns={rulesColumns} /> - - ) } diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/add_prebuilt_rules_table/add_prebuilt_rules_table_context.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/add_prebuilt_rules_table/add_prebuilt_rules_table_context.tsx index 9b7fd830a4f4b..870025a9aa5f8 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/add_prebuilt_rules_table/add_prebuilt_rules_table_context.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/add_prebuilt_rules_table/add_prebuilt_rules_table_context.tsx @@ -9,10 +9,7 @@ import type { Dispatch, SetStateAction } from 'react'; import React, { createContext, useCallback, useContext, useMemo, useState } from 'react'; import { useFetchPrebuiltRulesStatusQuery } from '../../../../rule_management/api/hooks/prebuilt_rules/use_fetch_prebuilt_rules_status_query'; import { useIsUpgradingSecurityPackages } from '../../../../rule_management/logic/use_upgrade_security_packages'; -import type { - RuleInstallationInfoForReview, - RuleSignatureId, -} from '../../../../../../common/api/detection_engine'; +import type { RuleSignatureId } from '../../../../../../common/api/detection_engine'; import { invariant } from '../../../../../../common/utils/invariant'; import { usePerformInstallAllRules, @@ -22,16 +19,19 @@ import { usePrebuiltRulesInstallReview } from '../../../../rule_management/logic import type { AddPrebuiltRulesTableFilterOptions } from './use_filter_prebuilt_rules_to_install'; import { useFilterPrebuiltRulesToInstall } from './use_filter_prebuilt_rules_to_install'; import { useRuleDetailsFlyout } from '../../../../rule_management/components/rule_details/use_rule_details_flyout'; +import type { RuleResponse } from '../../../../../../common/api/detection_engine/model/rule_schema/rule_schemas'; +import { RuleDetailsFlyout } from '../../../../rule_management/components/rule_details/rule_details_flyout'; +import * as i18n from './translations'; export interface AddPrebuiltRulesTableState { /** * Rules available to be installed */ - rules: RuleInstallationInfoForReview[]; + rules: RuleResponse[]; /** * Rules to display in table after applying filters */ - filteredRules: RuleInstallationInfoForReview[]; + filteredRules: RuleResponse[]; /** * Currently selected table filter */ @@ -68,17 +68,7 @@ export interface AddPrebuiltRulesTableState { /** * Rule rows selected in EUI InMemory Table */ - selectedRules: RuleInstallationInfoForReview[]; - /** - * Rule that is currently displayed in the flyout or null if flyout is closed - */ - flyoutRule: RuleInstallationInfoForReview | null; - /** - * Is true when the install button in the flyout is disabled - * (e.g. when the rule is already being installed or when the table is being refetched) - * - **/ - isFlyoutInstallButtonDisabled: boolean; + selectedRules: RuleResponse[]; } export interface AddPrebuiltRulesTableActions { @@ -87,9 +77,8 @@ export interface AddPrebuiltRulesTableActions { installAllRules: () => void; installSelectedRules: () => void; setFilterOptions: Dispatch>; - selectRules: (rules: RuleInstallationInfoForReview[]) => void; - openFlyoutForRuleId: (ruleId: RuleSignatureId) => void; - closeFlyout: () => void; + selectRules: (rules: RuleResponse[]) => void; + openRulePreview: (ruleId: RuleSignatureId) => void; } export interface AddPrebuiltRulesContextType { @@ -107,7 +96,7 @@ export const AddPrebuiltRulesTableContextProvider = ({ children, }: AddPrebuiltRulesTableContextProviderProps) => { const [loadingRules, setLoadingRules] = useState([]); - const [selectedRules, setSelectedRules] = useState([]); + const [selectedRules, setSelectedRules] = useState([]); const [filterOptions, setFilterOptions] = useState({ filter: '', @@ -144,9 +133,9 @@ export const AddPrebuiltRulesTableContextProvider = ({ const filteredRules = useFilterPrebuiltRulesToInstall({ filterOptions, rules }); - const { openFlyoutForRuleId, closeFlyout, flyoutRule } = useRuleDetailsFlyout(filteredRules); - const isFlyoutInstallButtonDisabled = Boolean( - (flyoutRule?.rule_id && loadingRules.includes(flyoutRule.rule_id)) || + const { openRulePreview, closeRulePreview, previewedRule } = useRuleDetailsFlyout(filteredRules); + const canPreviewedRuleBeInstalled = Boolean( + (previewedRule?.rule_id && loadingRules.includes(previewedRule.rule_id)) || isRefetching || isUpgradingSecurityPackages ); @@ -199,17 +188,9 @@ export const AddPrebuiltRulesTableContextProvider = ({ installSelectedRules, reFetchRules: refetch, selectRules: setSelectedRules, - openFlyoutForRuleId, - closeFlyout, + openRulePreview, }), - [ - installAllRules, - installOneRule, - installSelectedRules, - refetch, - openFlyoutForRuleId, - closeFlyout, - ] + [installAllRules, installOneRule, installSelectedRules, refetch, openRulePreview] ); const providerValue = useMemo(() => { @@ -226,8 +207,6 @@ export const AddPrebuiltRulesTableContextProvider = ({ isUpgradingSecurityPackages, selectedRules, lastUpdated: dataUpdatedAt, - flyoutRule, - isFlyoutInstallButtonDisabled, }, actions, }; @@ -243,14 +222,23 @@ export const AddPrebuiltRulesTableContextProvider = ({ isUpgradingSecurityPackages, selectedRules, dataUpdatedAt, - flyoutRule, - isFlyoutInstallButtonDisabled, actions, ]); return ( - {children} + <> + {children} + {previewedRule && ( + + )} + ); }; diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/add_prebuilt_rules_table/use_add_prebuilt_rules_table_columns.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/add_prebuilt_rules_table/use_add_prebuilt_rules_table_columns.tsx index e384226213b23..275dc1276cb5a 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/add_prebuilt_rules_table/use_add_prebuilt_rules_table_columns.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/add_prebuilt_rules_table/use_add_prebuilt_rules_table_columns.tsx @@ -15,15 +15,17 @@ import { IntegrationsPopover } from '../../../../../detections/components/rules/ import { SeverityBadge } from '../../../../../detections/components/rules/severity_badge'; import * as i18n from '../../../../../detections/pages/detection_engine/rules/translations'; import type { Rule } from '../../../../rule_management/logic'; -import type { RuleInstallationInfoForReview } from '../../../../../../common/api/detection_engine/prebuilt_rules'; import { useUserData } from '../../../../../detections/components/user_info'; import { hasUserCRUDPermission } from '../../../../../common/utils/privileges'; import type { AddPrebuiltRulesTableActions } from './add_prebuilt_rules_table_context'; import { useAddPrebuiltRulesTableContext } from './add_prebuilt_rules_table_context'; -import type { RuleSignatureId } from '../../../../../../common/api/detection_engine/model/rule_schema'; +import type { + RuleSignatureId, + RuleResponse, +} from '../../../../../../common/api/detection_engine/model/rule_schema'; import { getNormalizedSeverity } from '../helpers'; -export type TableColumn = EuiBasicTableColumn; +export type TableColumn = EuiBasicTableColumn; interface RuleNameProps { name: string; @@ -32,13 +34,13 @@ interface RuleNameProps { const RuleName = ({ name, ruleId }: RuleNameProps) => { const { - actions: { openFlyoutForRuleId }, + actions: { openRulePreview }, } = useAddPrebuiltRulesTableContext(); return ( { - openFlyoutForRuleId(ruleId); + openRulePreview(ruleId); }} > {name} @@ -49,8 +51,8 @@ const RuleName = ({ name, ruleId }: RuleNameProps) => { export const RULE_NAME_COLUMN: TableColumn = { field: 'name', name: i18n.COLUMN_RULE, - render: (value: RuleInstallationInfoForReview['name'], rule: RuleInstallationInfoForReview) => ( - + render: (value: RuleResponse['name'], rule: RuleResponse) => ( + ), sortable: true, truncateText: true, @@ -62,7 +64,7 @@ const TAGS_COLUMN: TableColumn = { field: 'tags', name: null, align: 'center', - render: (tags: RuleInstallationInfoForReview['tags']) => { + render: (tags: RuleResponse['tags']) => { if (tags == null || tags.length === 0) { return null; } @@ -91,7 +93,7 @@ const INTEGRATIONS_COLUMN: TableColumn = { field: 'related_integrations', name: null, align: 'center', - render: (integrations: RuleInstallationInfoForReview['related_integrations']) => { + render: (integrations: RuleResponse['related_integrations']) => { if (integrations == null || integrations.length === 0) { return null; } @@ -159,7 +161,7 @@ export const useAddPrebuiltRulesTableColumns = (): TableColumn[] => { field: 'severity', name: i18n.COLUMN_SEVERITY, render: (value: Rule['severity']) => , - sortable: ({ severity }: RuleInstallationInfoForReview) => getNormalizedSeverity(severity), + sortable: ({ severity }: RuleResponse) => getNormalizedSeverity(severity), truncateText: true, width: '12%', }, diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/add_prebuilt_rules_table/use_filter_prebuilt_rules_to_install.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/add_prebuilt_rules_table/use_filter_prebuilt_rules_to_install.ts index a870b56e30732..245d879fa1c51 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/add_prebuilt_rules_table/use_filter_prebuilt_rules_to_install.ts +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/add_prebuilt_rules_table/use_filter_prebuilt_rules_to_install.ts @@ -6,7 +6,7 @@ */ import { useMemo } from 'react'; -import type { RuleInstallationInfoForReview } from '../../../../../../common/api/detection_engine/prebuilt_rules'; +import type { RuleResponse } from '../../../../../../common/api/detection_engine/model/rule_schema'; import type { FilterOptions } from '../../../../rule_management/logic/types'; export type AddPrebuiltRulesTableFilterOptions = Pick; @@ -15,7 +15,7 @@ export const useFilterPrebuiltRulesToInstall = ({ rules, filterOptions, }: { - rules: RuleInstallationInfoForReview[]; + rules: RuleResponse[]; filterOptions: AddPrebuiltRulesTableFilterOptions; }) => { const filteredRules = useMemo(() => { diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/rules_tables.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/rules_tables.tsx index 27229da7746fb..3c2c79ef20d3f 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/rules_tables.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/rules_tables.tsx @@ -249,7 +249,7 @@ export const RulesTables = React.memo(({ selectedTab }) => { const shouldShowLinearProgress = (isFetched && isRefetching) || isUpgradingSecurityPackages; const shouldShowLoadingOverlay = (!isFetched && isRefetching) || isPreflightInProgress; - const numberOfSelectedRules = isAllSelected ? pagination.total : selectedRuleIds?.length ?? 1; + const rulesCount = Math.max(isAllSelected ? pagination.total : selectedRuleIds?.length ?? 0, 1); return ( <> @@ -302,7 +302,7 @@ export const RulesTables = React.memo(({ selectedTab }) => { )} {isBulkEditFlyoutVisible && bulkEditActionType !== undefined && ( diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/upgrade_prebuilt_rules_table/upgrade_prebuilt_rules_flyout.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/upgrade_prebuilt_rules_table/upgrade_prebuilt_rules_flyout.tsx deleted file mode 100644 index 4749af8e1d785..0000000000000 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/upgrade_prebuilt_rules_table/upgrade_prebuilt_rules_flyout.tsx +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import React from 'react'; - -import { useUpgradePrebuiltRulesTableContext } from './upgrade_prebuilt_rules_table_context'; -import { RuleDetailsFlyout } from '../../../../rule_management/components/rule_details/rule_details_flyout'; -import type { RuleResponse } from '../../../../../../common/api/detection_engine/model/rule_schema/rule_schemas'; -import { diffableRuleToRuleResponse } from '../../../../../../common/detection_engine/diffable_rule_to_rule_response'; -import * as i18n from './translations'; - -export const UpgradePrebuiltRulesFlyout = () => { - const { - state: { flyoutRule, isFlyoutInstallButtonDisabled }, - actions: { upgradeOneRule, closeFlyout }, - } = useUpgradePrebuiltRulesTableContext(); - - if (flyoutRule == null) { - return null; - } - - const ruleResponse: Partial = diffableRuleToRuleResponse(flyoutRule); - - return ( - - ); -}; diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/upgrade_prebuilt_rules_table/upgrade_prebuilt_rules_table.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/upgrade_prebuilt_rules_table/upgrade_prebuilt_rules_table.tsx index fc91cbd6ccf6c..c1468b458e339 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/upgrade_prebuilt_rules_table/upgrade_prebuilt_rules_table.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/upgrade_prebuilt_rules_table/upgrade_prebuilt_rules_table.tsx @@ -23,7 +23,6 @@ import { UpgradePrebuiltRulesTableButtons } from './upgrade_prebuilt_rules_table import { useUpgradePrebuiltRulesTableContext } from './upgrade_prebuilt_rules_table_context'; import { UpgradePrebuiltRulesTableFilters } from './upgrade_prebuilt_rules_table_filters'; import { useUpgradePrebuiltRulesTableColumns } from './use_upgrade_prebuilt_rules_table_columns'; -import { UpgradePrebuiltRulesFlyout } from './upgrade_prebuilt_rules_flyout'; const NO_ITEMS_MESSAGE = ( { data-test-subj="rules-upgrades-table" columns={rulesColumns} /> - - ) } diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/upgrade_prebuilt_rules_table/upgrade_prebuilt_rules_table_context.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/upgrade_prebuilt_rules_table/upgrade_prebuilt_rules_table_context.tsx index 0577292a84fea..1f99b3f65fffd 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/upgrade_prebuilt_rules_table/upgrade_prebuilt_rules_table_context.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/upgrade_prebuilt_rules_table/upgrade_prebuilt_rules_table_context.tsx @@ -23,6 +23,8 @@ import type { UpgradePrebuiltRulesTableFilterOptions } from './use_filter_prebui import { useFilterPrebuiltRulesToUpgrade } from './use_filter_prebuilt_rules_to_upgrade'; import { useAsyncConfirmation } from '../rules_table/use_async_confirmation'; import { useRuleDetailsFlyout } from '../../../../rule_management/components/rule_details/use_rule_details_flyout'; +import { RuleDetailsFlyout } from '../../../../rule_management/components/rule_details/rule_details_flyout'; +import * as i18n from './translations'; import { MlJobUpgradeModal } from '../../../../../detections/components/modals/ml_job_upgrade_modal'; @@ -73,16 +75,6 @@ export interface UpgradePrebuiltRulesTableState { * Rule rows selected in EUI InMemory Table */ selectedRules: RuleUpgradeInfoForReview[]; - /** - * Rule that is currently displayed in the flyout or null if flyout is closed - */ - flyoutRule: RuleUpgradeInfoForReview['rule'] | null; - /** - * Is true when the upgrade button in the flyout is disabled - * (e.g. when the rule is already being upgrade or when the table is being refetched) - * - **/ - isFlyoutInstallButtonDisabled: boolean; } export interface UpgradePrebuiltRulesTableActions { @@ -92,8 +84,7 @@ export interface UpgradePrebuiltRulesTableActions { upgradeAllRules: () => void; setFilterOptions: Dispatch>; selectRules: (rules: RuleUpgradeInfoForReview[]) => void; - openFlyoutForRuleId: (ruleId: RuleSignatureId) => void; - closeFlyout: () => void; + openRulePreview: (ruleId: string) => void; } export interface UpgradePrebuiltRulesContextType { @@ -141,11 +132,11 @@ export const UpgradePrebuiltRulesTableContextProvider = ({ const filteredRules = useFilterPrebuiltRulesToUpgrade({ filterOptions, rules }); - const { openFlyoutForRuleId, closeFlyout, flyoutRule } = useRuleDetailsFlyout( + const { openRulePreview, closeRulePreview, previewedRule } = useRuleDetailsFlyout( filteredRules.map((upgradeInfo) => upgradeInfo.target_rule) ); - const isFlyoutInstallButtonDisabled = Boolean( - (flyoutRule?.rule_id && loadingRules.includes(flyoutRule.rule_id)) || + const canPreviewedRuleBeUpgraded = Boolean( + (previewedRule?.rule_id && loadingRules.includes(previewedRule.rule_id)) || isRefetching || isUpgradingSecurityPackages ); @@ -176,7 +167,7 @@ export const UpgradePrebuiltRulesTableContextProvider = ({ await upgradeSpecificRulesRequest([ { rule_id: ruleId, - version: rule.diff.fields.version?.target_version ?? rule.rule.version, + version: rule.diff.fields.version?.target_version ?? rule.current_rule.version, revision: rule.revision, }, ]); @@ -190,7 +181,7 @@ export const UpgradePrebuiltRulesTableContextProvider = ({ const upgradeSelectedRules = useCallback(async () => { const rulesToUpgrade = selectedRules.map((rule) => ({ rule_id: rule.rule_id, - version: rule.diff.fields.version?.target_version ?? rule.rule.version, + version: rule.diff.fields.version?.target_version ?? rule.current_rule.version, revision: rule.revision, })); setLoadingRules((prev) => [...prev, ...rulesToUpgrade.map((r) => r.rule_id)]); @@ -227,17 +218,9 @@ export const UpgradePrebuiltRulesTableContextProvider = ({ upgradeAllRules, setFilterOptions, selectRules: setSelectedRules, - openFlyoutForRuleId, - closeFlyout, + openRulePreview, }), - [ - refetch, - upgradeOneRule, - upgradeSelectedRules, - upgradeAllRules, - openFlyoutForRuleId, - closeFlyout, - ] + [refetch, upgradeOneRule, upgradeSelectedRules, upgradeAllRules, openRulePreview] ); const providerValue = useMemo(() => { @@ -254,8 +237,6 @@ export const UpgradePrebuiltRulesTableContextProvider = ({ selectedRules, loadingRules, lastUpdated: dataUpdatedAt, - flyoutRule, - isFlyoutInstallButtonDisabled, }, actions, }; @@ -272,21 +253,30 @@ export const UpgradePrebuiltRulesTableContextProvider = ({ selectedRules, loadingRules, dataUpdatedAt, - flyoutRule, - isFlyoutInstallButtonDisabled, actions, ]); return ( - {isUpgradeModalVisible && ( - - )} - {children} + <> + {isUpgradeModalVisible && ( + + )} + {children} + {previewedRule && ( + + )} + ); }; diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/upgrade_prebuilt_rules_table/use_filter_prebuilt_rules_to_upgrade.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/upgrade_prebuilt_rules_table/use_filter_prebuilt_rules_to_upgrade.ts index 715810b7a4fd9..342a1e6e8768e 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/upgrade_prebuilt_rules_table/use_filter_prebuilt_rules_to_upgrade.ts +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/upgrade_prebuilt_rules_table/use_filter_prebuilt_rules_to_upgrade.ts @@ -20,13 +20,13 @@ export const useFilterPrebuiltRulesToUpgrade = ({ }) => { const filteredRules = useMemo(() => { const { filter, tags } = filterOptions; - return rules.filter(({ rule }) => { - if (filter && !rule.name.toLowerCase().includes(filter.toLowerCase())) { + return rules.filter((ruleInfo) => { + if (filter && !ruleInfo.current_rule.name.toLowerCase().includes(filter.toLowerCase())) { return false; } if (tags && tags.length > 0) { - return tags.every((tag) => rule.tags.includes(tag)); + return tags.every((tag) => ruleInfo.current_rule.tags.includes(tag)); } return true; diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/upgrade_prebuilt_rules_table/use_upgrade_prebuilt_rules_table_columns.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/upgrade_prebuilt_rules_table/use_upgrade_prebuilt_rules_table_columns.tsx index ad110c223b630..054d77cb5e441 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/upgrade_prebuilt_rules_table/use_upgrade_prebuilt_rules_table_columns.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/upgrade_prebuilt_rules_table/use_upgrade_prebuilt_rules_table_columns.tsx @@ -32,13 +32,13 @@ interface RuleNameProps { const RuleName = ({ name, ruleId }: RuleNameProps) => { const { - actions: { openFlyoutForRuleId }, + actions: { openRulePreview }, } = useUpgradePrebuiltRulesTableContext(); return ( { - openFlyoutForRuleId(ruleId); + openRulePreview(ruleId); }} > {name} @@ -47,11 +47,12 @@ const RuleName = ({ name, ruleId }: RuleNameProps) => { }; const RULE_NAME_COLUMN: TableColumn = { - field: 'rule.name', + field: 'current_rule.name', name: i18n.COLUMN_RULE, - render: (value: RuleUpgradeInfoForReview['rule']['name'], rule: RuleUpgradeInfoForReview) => ( - - ), + render: ( + value: RuleUpgradeInfoForReview['current_rule']['name'], + rule: RuleUpgradeInfoForReview + ) => , sortable: true, truncateText: true, width: '60%', @@ -59,7 +60,7 @@ const RULE_NAME_COLUMN: TableColumn = { }; const TAGS_COLUMN: TableColumn = { - field: 'rule.tags', + field: 'current_rule.tags', name: null, align: 'center', render: (tags: Rule['tags']) => { @@ -88,7 +89,7 @@ const TAGS_COLUMN: TableColumn = { }; const INTEGRATIONS_COLUMN: TableColumn = { - field: 'rule.related_integrations', + field: 'current_rule.related_integrations', name: null, align: 'center', render: (integrations: Rule['related_integrations']) => { @@ -144,7 +145,7 @@ export const useUpgradePrebuiltRulesTableColumns = (): TableColumn[] => { ...(showRelatedIntegrations ? [INTEGRATIONS_COLUMN] : []), TAGS_COLUMN, { - field: 'rule.risk_score', + field: 'current_rule.risk_score', name: i18n.COLUMN_RISK_SCORE, render: (value: Rule['risk_score']) => ( @@ -156,10 +157,10 @@ export const useUpgradePrebuiltRulesTableColumns = (): TableColumn[] => { width: '85px', }, { - field: 'rule.severity', + field: 'current_rule.severity', name: i18n.COLUMN_SEVERITY, render: (value: Rule['severity']) => , - sortable: ({ rule: { severity } }: RuleUpgradeInfoForReview) => + sortable: ({ current_rule: { severity } }: RuleUpgradeInfoForReview) => getNormalizedSeverity(severity), truncateText: true, width: '12%', diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/constants.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/constants.ts index 85c734bbc077b..7c170579a217a 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/constants.ts +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/constants.ts @@ -5,14 +5,13 @@ * 2.0. */ -import { euiPalettePositive } from '@elastic/eui'; import { CoverageOverviewRuleActivity, CoverageOverviewRuleSource, } from '../../../../../common/api/detection_engine'; import * as i18n from './translations'; -export const coverageOverviewPaletteColors = euiPalettePositive(5); +export const coverageOverviewPaletteColors = ['#00BFB326', '#00BFB34D', '#00BFB399', '#00BFB3']; export const coverageOverviewPanelWidth = 160; diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/coverage_overview_dashboard.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/coverage_overview_dashboard.tsx index b9ed3be8ad6ac..6762ee6b1b0e2 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/coverage_overview_dashboard.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/coverage_overview_dashboard.tsx @@ -5,7 +5,7 @@ * 2.0. */ import React from 'react'; -import { EuiFlexGroup, EuiFlexItem, EuiSpacer } from '@elastic/eui'; +import { EuiFlexGroup, EuiFlexItem, EuiLink, EuiSpacer, EuiText } from '@elastic/eui'; import { HeaderPage } from '../../../../common/components/header_page'; import * as i18n from './translations'; @@ -18,9 +18,22 @@ const CoverageOverviewDashboardComponent = () => { const { state: { data }, } = useCoverageOverviewDashboardContext(); + const subtitle = ( + + {i18n.CoverageOverviewDashboardInformation}{' '} + + {i18n.CoverageOverviewDashboardInformationLink} + + + ); return ( <> - + diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/coverage_overview_dashboard_context.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/coverage_overview_dashboard_context.tsx index db96f1a5b8018..e76075535b193 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/coverage_overview_dashboard_context.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/coverage_overview_dashboard_context.tsx @@ -14,11 +14,11 @@ import React, { useReducer, } from 'react'; import { invariant } from '../../../../../common/utils/invariant'; -import type { +import { + BulkActionType, CoverageOverviewRuleActivity, CoverageOverviewRuleSource, } from '../../../../../common/api/detection_engine'; -import { BulkActionType } from '../../../../../common/api/detection_engine'; import type { CoverageOverviewDashboardState } from './coverage_overview_dashboard_reducer'; import { SET_SHOW_EXPANDED_CELLS, @@ -53,7 +53,10 @@ interface CoverageOverviewDashboardContextProviderProps { export const initialState: CoverageOverviewDashboardState = { showExpandedCells: false, - filter: {}, + filter: { + activity: [CoverageOverviewRuleActivity.Enabled], + source: [CoverageOverviewRuleSource.Prebuilt, CoverageOverviewRuleSource.Custom], + }, data: undefined, isLoading: false, }; diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/helpers.test.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/helpers.test.ts index 5a1aee424352a..738eb981f37bb 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/helpers.test.ts +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/helpers.test.ts @@ -5,7 +5,7 @@ * 2.0. */ -import type { CoverageOverviewRuleActivity } from '../../../../../common/api/detection_engine'; +import { CoverageOverviewRuleActivity } from '../../../../../common/api/detection_engine'; import { getCoverageOverviewFilterMock } from '../../../../../common/api/detection_engine/rule_management/coverage_overview/coverage_overview_route.mock'; import { getMockCoverageOverviewMitreSubTechnique, @@ -17,6 +17,7 @@ import { extractSelected, getNumOfCoveredSubtechniques, getNumOfCoveredTechniques, + getTotalRuleCount, populateSelected, } from './helpers'; @@ -88,4 +89,26 @@ describe('helpers', () => { ]); }); }); + + describe('getTotalRuleCount', () => { + it('returns count of all rules when no activity filter is present', () => { + const payload = getMockCoverageOverviewMitreTechnique(); + expect(getTotalRuleCount(payload)).toEqual(2); + }); + + it('returns count of one rule type when an activity filter is present', () => { + const payload = getMockCoverageOverviewMitreTechnique(); + expect(getTotalRuleCount(payload, [CoverageOverviewRuleActivity.Disabled])).toEqual(1); + }); + + it('returns count of multiple rule type when multiple activity filter is present', () => { + const payload = getMockCoverageOverviewMitreTechnique(); + expect( + getTotalRuleCount(payload, [ + CoverageOverviewRuleActivity.Enabled, + CoverageOverviewRuleActivity.Disabled, + ]) + ).toEqual(2); + }); + }); }); diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/helpers.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/helpers.ts index 82d50e7b9721b..7e8f757561a78 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/helpers.ts +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/helpers.ts @@ -6,10 +6,8 @@ */ import type { EuiSelectableOption } from '@elastic/eui'; -import type { - CoverageOverviewRuleActivity, - CoverageOverviewRuleSource, -} from '../../../../../common/api/detection_engine'; +import type { CoverageOverviewRuleSource } from '../../../../../common/api/detection_engine'; +import { CoverageOverviewRuleActivity } from '../../../../../common/api/detection_engine'; import type { CoverageOverviewMitreTactic } from '../../../rule_management/model/coverage_overview/mitre_tactic'; import type { CoverageOverviewMitreTechnique } from '../../../rule_management/model/coverage_overview/mitre_technique'; import { coverageOverviewCardColorThresholds } from './constants'; @@ -43,3 +41,20 @@ export const populateSelected = ( allOptions.map((option) => selected.includes(option.label) ? { ...option, checked: 'on' } : option ); + +export const getTotalRuleCount = ( + technique: CoverageOverviewMitreTechnique, + activity?: CoverageOverviewRuleActivity[] +): number => { + if (!activity) { + return technique.enabledRules.length + technique.disabledRules.length; + } + let totalRuleCount = 0; + if (activity.includes(CoverageOverviewRuleActivity.Enabled)) { + totalRuleCount += technique.enabledRules.length; + } + if (activity.includes(CoverageOverviewRuleActivity.Disabled)) { + totalRuleCount += technique.disabledRules.length; + } + return totalRuleCount; +}; diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/rule_activity_filter.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/rule_activity_filter.tsx index 0bb7e082e861e..43159822deab3 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/rule_activity_filter.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/rule_activity_filter.tsx @@ -97,7 +97,6 @@ const RuleActivityFilterComponent = ({ {i18n.CoverageOverviewFilterPopoverTitle} {i18n.CoverageOverviewFilterPopoverClearAll} diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/rule_source_filter.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/rule_source_filter.tsx index c17af658672da..fd1995beb68d7 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/rule_source_filter.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/rule_source_filter.tsx @@ -96,7 +96,6 @@ const RuleSourceFilterComponent = ({ {i18n.CoverageOverviewFilterPopoverTitle} {i18n.CoverageOverviewFilterPopoverClearAll} diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/technique_panel.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/technique_panel.tsx index 8de089d62e298..e182b6445513c 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/technique_panel.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/technique_panel.tsx @@ -10,7 +10,8 @@ import { css } from '@emotion/css'; import React, { memo, useCallback, useMemo } from 'react'; import type { CoverageOverviewMitreTechnique } from '../../../rule_management/model/coverage_overview/mitre_technique'; import { coverageOverviewPanelWidth } from './constants'; -import { getCardBackgroundColor } from './helpers'; +import { useCoverageOverviewDashboardContext } from './coverage_overview_dashboard_context'; +import { getCardBackgroundColor, getTotalRuleCount } from './helpers'; import { CoverageOverviewPanelRuleStats } from './shared_components/panel_rule_stats'; import * as i18n from './translations'; @@ -29,9 +30,13 @@ const CoverageOverviewMitreTechniquePanelComponent = ({ isPopoverOpen, isExpanded, }: CoverageOverviewMitreTechniquePanelProps) => { + const { + state: { filter }, + } = useCoverageOverviewDashboardContext(); + const totalRuleCount = getTotalRuleCount(technique, filter.activity); const techniqueBackgroundColor = useMemo( - () => getCardBackgroundColor(technique.enabledRules.length), - [technique.enabledRules.length] + () => getCardBackgroundColor(totalRuleCount), + [totalRuleCount] ); const handlePanelOnClick = useCallback( diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/technique_panel_popover.test.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/technique_panel_popover.test.tsx index a41cdad7abb58..896a5c64ca9b2 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/technique_panel_popover.test.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/technique_panel_popover.test.tsx @@ -13,8 +13,10 @@ import { TestProviders } from '../../../../common/mock'; import type { CoverageOverviewMitreTechnique } from '../../../rule_management/model/coverage_overview/mitre_technique'; import { CoverageOverviewMitreTechniquePanelPopover } from './technique_panel_popover'; import { useCoverageOverviewDashboardContext } from './coverage_overview_dashboard_context'; +import { useUserData } from '../../../../detections/components/user_info'; jest.mock('./coverage_overview_dashboard_context'); +jest.mock('../../../../detections/components/user_info'); const mockEnableAllDisabled = jest.fn(); @@ -31,9 +33,10 @@ const renderTechniquePanelPopover = ( describe('CoverageOverviewMitreTechniquePanelPopover', () => { beforeEach(() => { (useCoverageOverviewDashboardContext as jest.Mock).mockReturnValue({ - state: { showExpandedCells: false }, + state: { showExpandedCells: false, filter: {} }, actions: { enableAllDisabled: mockEnableAllDisabled }, }); + (useUserData as jest.Mock).mockReturnValue([{ loading: false, canUserCRUD: true }]); }); afterEach(() => { @@ -49,7 +52,7 @@ describe('CoverageOverviewMitreTechniquePanelPopover', () => { test('it renders panel with expanded view', () => { (useCoverageOverviewDashboardContext as jest.Mock).mockReturnValue({ - state: { showExpandedCells: true }, + state: { showExpandedCells: true, filter: {} }, actions: { enableAllDisabled: mockEnableAllDisabled }, }); const wrapper = renderTechniquePanelPopover(); @@ -103,4 +106,14 @@ describe('CoverageOverviewMitreTechniquePanelPopover', () => { }); expect(wrapper.getByTestId('enableAllDisabledButton')).toBeDisabled(); }); + + test('"Enable all disabled" button is disabled when user does not have CRUD permissions', async () => { + (useUserData as jest.Mock).mockReturnValue([{ loading: false, canUserCRUD: false }]); + const wrapper = renderTechniquePanelPopover(); + + act(() => { + fireEvent.click(wrapper.getByTestId('coverageOverviewTechniquePanel')); + }); + expect(wrapper.getByTestId('enableAllDisabledButton')).toBeDisabled(); + }); }); diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/technique_panel_popover.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/technique_panel_popover.tsx index 9beae73a21c4c..f5fc71b08b055 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/technique_panel_popover.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/technique_panel_popover.tsx @@ -21,6 +21,7 @@ import { } from '@elastic/eui'; import { css, cx } from '@emotion/css'; import React, { memo, useCallback, useMemo, useState } from 'react'; +import { useUserData } from '../../../../detections/components/user_info'; import type { CoverageOverviewMitreTechnique } from '../../../rule_management/model/coverage_overview/mitre_technique'; import { getNumOfCoveredSubtechniques } from './helpers'; import { CoverageOverviewRuleListHeader } from './shared_components/popover_list_header'; @@ -36,13 +37,19 @@ export interface CoverageOverviewMitreTechniquePanelPopoverProps { const CoverageOverviewMitreTechniquePanelPopoverComponent = ({ technique, }: CoverageOverviewMitreTechniquePanelPopoverProps) => { + const [{ loading: userInfoLoading, canUserCRUD }] = useUserData(); const [isPopoverOpen, setIsPopoverOpen] = useState(false); - const [isEnableButtonLoading, setIsDisableButtonLoading] = useState(false); + const [isLoading, setIsLoading] = useState(false); const closePopover = useCallback(() => setIsPopoverOpen(false), []); const coveredSubtechniques = useMemo(() => getNumOfCoveredSubtechniques(technique), [technique]); const isEnableButtonDisabled = useMemo( - () => technique.disabledRules.length === 0, - [technique.disabledRules.length] + () => !canUserCRUD || technique.disabledRules.length === 0, + [canUserCRUD, technique.disabledRules.length] + ); + + const isEnableButtonLoading = useMemo( + () => isLoading || userInfoLoading, + [isLoading, userInfoLoading] ); const { @@ -51,10 +58,10 @@ const CoverageOverviewMitreTechniquePanelPopoverComponent = ({ } = useCoverageOverviewDashboardContext(); const handleEnableAllDisabled = useCallback(async () => { - setIsDisableButtonLoading(true); + setIsLoading(true); const ruleIds = technique.disabledRules.map((rule) => rule.id); await enableAllDisabled(ruleIds); - setIsDisableButtonLoading(false); + setIsLoading(false); closePopover(); }, [closePopover, enableAllDisabled, technique.disabledRules]); diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/translations.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/translations.ts index b4aa93f2bcc02..c3e205531fdce 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/translations.ts +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/pages/coverage_overview/translations.ts @@ -152,7 +152,7 @@ export const CoverageOverviewSearchBarPlaceholder = i18n.translate( 'xpack.securitySolution.coverageOverviewDashboard.searchBarPlaceholder', { defaultMessage: - 'Search for the tactic, technique (e.g.,"defence evasion" or "TA0005") or rule name, index pattern (e.g.,"filebeat-*")', + 'Search for the tactic, technique (e.g.,"defense evasion" or "TA0005") or rule name', } ); @@ -169,3 +169,18 @@ export const CoverageOverviewFilterPopoverClearAll = i18n.translate( defaultMessage: 'Clear all', } ); + +export const CoverageOverviewDashboardInformation = i18n.translate( + 'xpack.securitySolution.coverageOverviewDashboard.dashboardInformation', + { + defaultMessage: + 'The interactive MITRE ATT&CK coverage below shows the current state of your coverage from installed rules, click on a cell to view further details. Unmapped rules will not be displayed. View further information from our', + } +); + +export const CoverageOverviewDashboardInformationLink = i18n.translate( + 'xpack.securitySolution.coverageOverviewDashboard.dashboardInformationLink', + { + defaultMessage: 'docs.', + } +); diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_monitoring/api/api_client.test.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_monitoring/api/api_client.test.ts index ef58a6b985ec9..9fac84959f7dc 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_monitoring/api/api_client.test.ts +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_monitoring/api/api_client.test.ts @@ -25,8 +25,6 @@ describe('Rule Monitoring API Client', () => { const mockKibanaServices = KibanaServices.get as jest.Mock; mockKibanaServices.mockReturnValue({ http: { fetch: fetchMock } }); - const signal = new AbortController().signal; - describe('setupDetectionEngineHealthApi', () => { const responseMock = {}; @@ -38,9 +36,12 @@ describe('Rule Monitoring API Client', () => { it('calls API with correct parameters', async () => { await api.setupDetectionEngineHealthApi(); - expect(fetchMock).toHaveBeenCalledWith('/internal/detection_engine/health/_setup', { - method: 'POST', - }); + expect(fetchMock).toHaveBeenCalledWith( + '/internal/detection_engine/health/_setup', + expect.objectContaining({ + method: 'POST', + }) + ); }); }); @@ -60,15 +61,14 @@ describe('Rule Monitoring API Client', () => { }); it('calls API correctly with only rule id specified', async () => { - await api.fetchRuleExecutionEvents({ ruleId: '42', signal }); + await api.fetchRuleExecutionEvents({ ruleId: '42' }); expect(fetchMock).toHaveBeenCalledWith( '/internal/detection_engine/rules/42/execution/events', - { + expect.objectContaining({ method: 'GET', query: {}, - signal, - } + }) ); }); @@ -80,12 +80,11 @@ describe('Rule Monitoring API Client', () => { sortOrder: 'asc', page: 42, perPage: 146, - signal, }); expect(fetchMock).toHaveBeenCalledWith( '/internal/detection_engine/rules/42/execution/events', - { + expect.objectContaining({ method: 'GET', query: { event_types: 'message', @@ -94,8 +93,7 @@ describe('Rule Monitoring API Client', () => { page: 42, per_page: 146, }, - signal, - } + }) ); }); }); @@ -118,12 +116,11 @@ describe('Rule Monitoring API Client', () => { end: '2001-01-02T17:00:00.000Z', queryText: '', statusFilters: [], - signal, }); expect(fetchMock).toHaveBeenCalledWith( '/internal/detection_engine/rules/42/execution/results', - { + expect.objectContaining({ method: 'GET', query: { end: '2001-01-02T17:00:00.000Z', @@ -135,8 +132,7 @@ describe('Rule Monitoring API Client', () => { start: '2001-01-01T17:00:00.000Z', status_filters: '', }, - signal, - } + }) ); }); @@ -147,7 +143,6 @@ describe('Rule Monitoring API Client', () => { end: 'now', queryText: '', statusFilters: [], - signal, }); expect(response).toEqual(responseMock); }); diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_monitoring/api/api_client.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_monitoring/api/api_client.ts index 89acf126c3a67..d5d34447d2bf4 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_monitoring/api/api_client.ts +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_monitoring/api/api_client.ts @@ -28,6 +28,7 @@ import type { export const api: IRuleMonitoringApiClient = { setupDetectionEngineHealthApi: async (): Promise => { await http().fetch(SETUP_HEALTH_URL, { + version: '1', method: 'POST', }); }, @@ -41,6 +42,7 @@ export const api: IRuleMonitoringApiClient = { return http().fetch(url, { method: 'GET', + version: '1', query: { event_types: eventTypes?.join(','), log_levels: logLevels?.join(','), @@ -74,6 +76,7 @@ export const api: IRuleMonitoringApiClient = { return http().fetch(url, { method: 'GET', + version: '1', query: { start: startDate?.utc().toISOString(), end: endDate?.utc().toISOString(), diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_response_actions/osquery/osquery_response_action.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_response_actions/osquery/osquery_response_action.tsx index f72ca73c607c0..f8e1a60bda79f 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_response_actions/osquery/osquery_response_action.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_response_actions/osquery/osquery_response_action.tsx @@ -85,6 +85,7 @@ export const OsqueryResponseAction = React.memo((props: OsqueryResponseActionPro ); } + // @ts-expect-error ts upgrade v4.7.4 if (isMounted() && OsqueryForm) { return ( void; } diff --git a/x-pack/plugins/security_solution/public/detections/components/rules/description_step/threat_description.tsx b/x-pack/plugins/security_solution/public/detections/components/rules/description_step/threat_description.tsx index f36c57db1bc81..375113977c9f8 100644 --- a/x-pack/plugins/security_solution/public/detections/components/rules/description_step/threat_description.tsx +++ b/x-pack/plugins/security_solution/public/detections/components/rules/description_step/threat_description.tsx @@ -4,7 +4,7 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { EuiFlexItem, EuiLink, EuiFlexGroup, EuiSpacer, EuiButtonEmpty } from '@elastic/eui'; +import { EuiFlexItem, EuiLink, EuiFlexGroup, EuiButtonEmpty } from '@elastic/eui'; import React, { useEffect, useState } from 'react'; import styled from 'styled-components'; import type { BuildThreatDescription } from './types'; @@ -120,7 +120,6 @@ export const ThreatEuiFlexGroup = ({ label, threat }: BuildThreatDescription) => ); })} - ); }; diff --git a/x-pack/plugins/security_solution/public/detections/components/rules/rule_preview/index.tsx b/x-pack/plugins/security_solution/public/detections/components/rules/rule_preview/index.tsx index 55931e74ff9d4..c4d50062675d2 100644 --- a/x-pack/plugins/security_solution/public/detections/components/rules/rule_preview/index.tsx +++ b/x-pack/plugins/security_solution/public/detections/components/rules/rule_preview/index.tsx @@ -25,7 +25,7 @@ import { isEqual } from 'lodash'; import * as i18n from './translations'; import { usePreviewRoute } from './use_preview_route'; import { PreviewHistogram } from './preview_histogram'; -import { PreviewLogsComponent } from './preview_logs'; +import { PreviewLogs } from './preview_logs'; import { useKibana } from '../../../../common/lib/kibana'; import { LoadingHistogram } from './loading_histogram'; import { useStartTransaction } from '../../../../common/lib/apm/use_start_transaction'; @@ -274,7 +274,7 @@ const RulePreviewComponent: React.FC = ({ timeframeOptions={previewData.timeframeOptions} /> )} - + ); }; diff --git a/x-pack/plugins/security_solution/public/detections/components/rules/rule_preview/preview_histogram.tsx b/x-pack/plugins/security_solution/public/detections/components/rules/rule_preview/preview_histogram.tsx index 89ed3aaf97b91..24f6b82383a13 100644 --- a/x-pack/plugins/security_solution/public/detections/components/rules/rule_preview/preview_histogram.tsx +++ b/x-pack/plugins/security_solution/public/detections/components/rules/rule_preview/preview_histogram.tsx @@ -69,7 +69,7 @@ interface PreviewHistogramProps { const DEFAULT_HISTOGRAM_HEIGHT = 300; -export const PreviewHistogram = ({ +const PreviewHistogramComponent = ({ previewId, addNoiseWarning, spaceId, @@ -262,3 +262,6 @@ export const PreviewHistogram = ({ ); }; + +export const PreviewHistogram = React.memo(PreviewHistogramComponent); +PreviewHistogram.displayName = 'PreviewHistogram'; diff --git a/x-pack/plugins/security_solution/public/detections/components/rules/rule_preview/preview_logs.tsx b/x-pack/plugins/security_solution/public/detections/components/rules/rule_preview/preview_logs.tsx index b6f9135c8b99f..1c01a0491e92c 100644 --- a/x-pack/plugins/security_solution/public/detections/components/rules/rule_preview/preview_logs.tsx +++ b/x-pack/plugins/security_solution/public/detections/components/rules/rule_preview/preview_logs.tsx @@ -10,7 +10,7 @@ import { EuiCallOut, EuiText, EuiSpacer, EuiAccordion } from '@elastic/eui'; import type { RulePreviewLogs } from '../../../../../common/api/detection_engine'; import * as i18n from './translations'; -interface PreviewLogsComponentProps { +interface PreviewLogsProps { logs: RulePreviewLogs[]; hasNoiseWarning: boolean; isAborted: boolean; @@ -42,11 +42,7 @@ const addLogs = ( allLogs: SortedLogs[] ) => (logs.length ? [{ startedAt, logs, duration }, ...allLogs] : allLogs); -export const PreviewLogsComponent: React.FC = ({ - logs, - hasNoiseWarning, - isAborted, -}) => { +const PreviewLogsComponent: React.FC = ({ logs, hasNoiseWarning, isAborted }) => { const sortedLogs = useMemo( () => logs.reduce<{ @@ -73,6 +69,9 @@ export const PreviewLogsComponent: React.FC = ({ ); }; +export const PreviewLogs = React.memo(PreviewLogsComponent); +PreviewLogs.displayName = 'PreviewLogs'; + const LogAccordion: React.FC = ({ logs, isError, children }) => { const firstLog = logs[0]; if (!(children || firstLog)) return null; diff --git a/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/helpers.tsx b/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/helpers.tsx index 7ef797d64eeb0..78c81f5c9b1d5 100644 --- a/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/helpers.tsx +++ b/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/helpers.tsx @@ -144,7 +144,7 @@ export const getDefineStepsData = (rule: Rule): DefineStepRule => ({ rule.alert_suppression?.missing_fields_strategy ?? DEFAULT_SUPPRESSION_MISSING_FIELDS_STRATEGY, }); -const convertHistoryStartToSize = (relativeTime: string) => { +export const convertHistoryStartToSize = (relativeTime: string) => { if (relativeTime.startsWith('now-')) { return relativeTime.substring(4); } else { diff --git a/x-pack/plugins/security_solution/public/explore/components/risk_score/risk_details_tab_body/index.tsx b/x-pack/plugins/security_solution/public/explore/components/risk_score/risk_details_tab_body/index.tsx index a708b390be534..cdff32acef9fd 100644 --- a/x-pack/plugins/security_solution/public/explore/components/risk_score/risk_details_tab_body/index.tsx +++ b/x-pack/plugins/security_solution/public/explore/components/risk_score/risk_details_tab_body/index.tsx @@ -87,14 +87,13 @@ const RiskDetailsTabBodyComponent: React.FC< [entityName, riskEntity] ); - const { data, loading, refetch, inspect, isDeprecated, isModuleEnabled, isAuthorized } = - useRiskScore({ - filterQuery, - onlyLatest: false, - riskEntity, - skip: !overTimeToggleStatus && !contributorsToggleStatus, - timerange, - }); + const { data, loading, refetch, inspect, isDeprecated, isModuleEnabled } = useRiskScore({ + filterQuery, + onlyLatest: false, + riskEntity, + skip: !overTimeToggleStatus && !contributorsToggleStatus, + timerange, + }); const { data: riskScoreEngineStatus } = useRiskEngineStatus(); @@ -136,10 +135,6 @@ const RiskDetailsTabBodyComponent: React.FC< isDeprecated: isDeprecated && !loading, }; - if (!isAuthorized) { - return <>{'TODO: Add RiskScore Upsell'}; - } - if (riskScoreEngineStatus?.isUpdateAvailable) { return ; } diff --git a/x-pack/plugins/security_solution/public/explore/hosts/pages/details/index.tsx b/x-pack/plugins/security_solution/public/explore/hosts/pages/details/index.tsx index 26f7eb6a8af1c..bfffcebf8a1eb 100644 --- a/x-pack/plugins/security_solution/public/explore/hosts/pages/details/index.tsx +++ b/x-pack/plugins/security_solution/public/explore/hosts/pages/details/index.tsx @@ -66,6 +66,7 @@ import { LandingPageComponent } from '../../../../common/components/landing_page import { AlertCountByRuleByStatus } from '../../../../common/components/alert_count_by_status'; import { useLicense } from '../../../../common/hooks/use_license'; import { ResponderActionButton } from '../../../../detections/components/endpoint_responder/responder_action_button'; +import { useHasSecurityCapability } from '../../../../helper_hooks'; const ES_HOST_FIELD = 'host.name'; const HostOverviewManage = manageQuery(HostOverview); @@ -152,7 +153,7 @@ const HostDetailsComponent: React.FC = ({ detailName, hostDeta dispatch(setHostDetailsTablesActivePageToZero()); }, [dispatch, detailName]); - const isPlatinumOrTrialLicense = useMlCapabilities().isPlatinumOrTrialLicense; + const hasEntityAnalyticsCapability = useHasSecurityCapability('entity-analytics'); const { hasKibanaREAD, hasIndexRead } = useAlertsPrivileges(); const canReadAlerts = hasKibanaREAD && hasIndexRead; @@ -252,7 +253,7 @@ const HostDetailsComponent: React.FC = ({ detailName, hostDeta { }); const isEnterprisePlus = useLicense().isEnterprise(); + const hasEntityAnalyticsCapability = useHasSecurityCapability('entity-analytics'); const onSkipFocusBeforeEventsTable = useCallback(() => { containerElement.current @@ -215,7 +217,7 @@ const HostsComponent = () => { diff --git a/x-pack/plugins/security_solution/public/explore/hosts/pages/navigation/host_risk_score_tab_body.tsx b/x-pack/plugins/security_solution/public/explore/hosts/pages/navigation/host_risk_score_tab_body.tsx index 5511706a349fe..055a02d9c072e 100644 --- a/x-pack/plugins/security_solution/public/explore/hosts/pages/navigation/host_risk_score_tab_body.tsx +++ b/x-pack/plugins/security_solution/public/explore/hosts/pages/navigation/host_risk_score_tab_body.tsx @@ -74,7 +74,6 @@ export const HostRiskScoreQueryTabBody = ({ isModuleEnabled, loading, refetch, - isAuthorized, totalCount, } = useRiskScore({ filterQuery, @@ -96,10 +95,6 @@ export const HostRiskScoreQueryTabBody = ({ isDeprecated: isDeprecated && !loading, }; - if (!isAuthorized) { - return <>{'TODO: Add RiskScore Upsell'}; - } - if (riskScoreEngineStatus?.isUpdateAvailable) { return ; } diff --git a/x-pack/plugins/security_solution/public/explore/users/pages/details/index.tsx b/x-pack/plugins/security_solution/public/explore/users/pages/details/index.tsx index 3612fd784d518..b751bc0e73b9f 100644 --- a/x-pack/plugins/security_solution/public/explore/users/pages/details/index.tsx +++ b/x-pack/plugins/security_solution/public/explore/users/pages/details/index.tsx @@ -64,6 +64,7 @@ import { UsersType } from '../../store/model'; import { hasMlUserPermissions } from '../../../../../common/machine_learning/has_ml_user_permissions'; import { useMlCapabilities } from '../../../../common/components/ml/hooks/use_ml_capabilities'; import { LandingPageComponent } from '../../../../common/components/landing_page'; +import { useHasSecurityCapability } from '../../../../helper_hooks'; const QUERY_ID = 'UsersDetailsQueryId'; const ES_USER_FIELD = 'user.name'; @@ -73,7 +74,7 @@ const UsersDetailsComponent: React.FC = ({ usersDetailsPagePath, }) => { const dispatch = useDispatch(); - const isPlatinumOrTrialLicense = useMlCapabilities().isPlatinumOrTrialLicense; + const hasEntityAnalyticsCapability = useHasSecurityCapability('entity-analytics'); const getTable = useMemo(() => dataTableSelectors.getTableByIdSelector(), []); const graphEventId = useShallowEqualSelector( (state) => (getTable(state, TableId.hostsPageEvents) ?? timelineDefaults).graphEventId @@ -241,7 +242,7 @@ const UsersDetailsComponent: React.FC = ({ navTabs={navTabsUsersDetails( detailName, hasMlUserPermissions(capabilities), - isPlatinumOrTrialLicense + hasEntityAnalyticsCapability )} /> diff --git a/x-pack/plugins/security_solution/public/explore/users/pages/navigation/user_risk_score_tab_body.tsx b/x-pack/plugins/security_solution/public/explore/users/pages/navigation/user_risk_score_tab_body.tsx index 0c1aa2abb9cd8..c1652a49036c2 100644 --- a/x-pack/plugins/security_solution/public/explore/users/pages/navigation/user_risk_score_tab_body.tsx +++ b/x-pack/plugins/security_solution/public/explore/users/pages/navigation/user_risk_score_tab_body.tsx @@ -75,7 +75,6 @@ export const UserRiskScoreQueryTabBody = ({ loading, refetch, totalCount, - isAuthorized, } = useRiskScore({ filterQuery, pagination, @@ -96,10 +95,6 @@ export const UserRiskScoreQueryTabBody = ({ isDeprecated: isDeprecated && !loading, }; - if (!isAuthorized) { - return <>{'TODO: Add RiskScore Upsell'}; - } - if (riskScoreEngineStatus?.isUpdateAvailable) { return ; } diff --git a/x-pack/plugins/security_solution/public/explore/users/pages/users.tsx b/x-pack/plugins/security_solution/public/explore/users/pages/users.tsx index 7e91dcf859948..0666e34e6155e 100644 --- a/x-pack/plugins/security_solution/public/explore/users/pages/users.tsx +++ b/x-pack/plugins/security_solution/public/explore/users/pages/users.tsx @@ -52,6 +52,7 @@ import { hasMlUserPermissions } from '../../../../common/machine_learning/has_ml import { useMlCapabilities } from '../../../common/components/ml/hooks/use_ml_capabilities'; import { LandingPageComponent } from '../../../common/components/landing_page'; import { userNameExistsFilter } from './details/helpers'; +import { useHasSecurityCapability } from '../../../helper_hooks'; const ID = 'UsersQueryId'; @@ -175,10 +176,10 @@ const UsersComponent = () => { ); const capabilities = useMlCapabilities(); - const isPlatinumOrTrialLicense = useMlCapabilities().isPlatinumOrTrialLicense; + const hasEntityAnalyticsCapability = useHasSecurityCapability('entity-analytics'); const navTabs = useMemo( - () => navTabsUsers(hasMlUserPermissions(capabilities), isPlatinumOrTrialLicense), - [capabilities, isPlatinumOrTrialLicense] + () => navTabsUsers(hasMlUserPermissions(capabilities), hasEntityAnalyticsCapability), + [capabilities, hasEntityAnalyticsCapability] ); return ( diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/correlations_cases_table.test.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/correlations_cases_table.test.tsx deleted file mode 100644 index 629fd02072c9c..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/left/components/correlations_cases_table.test.tsx +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import React from 'react'; -import { render } from '@testing-library/react'; -import { CaseDetailsLink } from '../../../common/components/links'; - -import { - CorrelationsCasesTable, - type CorrelationsCasesTableProps, -} from './correlations_cases_table'; -import type { RelatedCase } from '@kbn/cases-plugin/common'; -import { CaseStatuses } from '@kbn/cases-components'; - -jest.mock('../../../common/components/links', () => ({ - CaseDetailsLink: jest - .fn() - .mockImplementation(({ title }) => <>{``}), -})); - -const cases: RelatedCase[] = [ - { - id: 'case-1', - title: 'Case 1', - description: '', - createdAt: '', - totals: { - alerts: 0, - userComments: 0, - }, - status: CaseStatuses.open, - }, - { - id: 'case-2', - title: 'Case 2', - description: '', - createdAt: '', - totals: { - alerts: 0, - userComments: 0, - }, - status: CaseStatuses.open, - }, -]; - -const props: CorrelationsCasesTableProps = { - cases, -}; - -describe('CorrelationsCasesTable', () => { - it('renders the table correctly', () => { - render(); - - expect(CaseDetailsLink).toHaveBeenCalledWith( - expect.objectContaining({ - title: 'Case 1', - detailName: 'case-1', - }), - expect.anything() - ); - }); -}); diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/correlations_cases_table.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/correlations_cases_table.tsx deleted file mode 100644 index 993239ce45d7e..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/left/components/correlations_cases_table.tsx +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { type EuiBasicTableColumn, EuiInMemoryTable } from '@elastic/eui'; -import type { RelatedCase } from '@kbn/cases-plugin/common'; -import React, { type FC } from 'react'; -import { CaseDetailsLink } from '../../../common/components/links'; - -import * as i18n from './translations'; - -export interface CorrelationsCasesTableProps { - cases: RelatedCase[]; -} - -const columns: Array> = [ - { - field: 'title', - name: i18n.CORRELATIONS_CASE_NAME_COLUMN_TITLE, - truncateText: true, - render: (value: string, caseData: RelatedCase) => ( - - {caseData.title} - - ), - }, - { - field: 'status', - name: i18n.CORRELATIONS_CASE_STATUS_COLUMN_TITLE, - truncateText: true, - }, -]; - -export const CorrelationsCasesTable: FC = ({ cases }) => ( - -); diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/correlations_details.test.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/correlations_details.test.tsx index 6b52bcf921b0a..dcd8c5884c6fb 100644 --- a/x-pack/plugins/security_solution/public/flyout/left/components/correlations_details.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/left/components/correlations_details.test.tsx @@ -6,111 +6,163 @@ */ import React from 'react'; -import { render, screen } from '@testing-library/react'; -import { useTimelineEventsDetails } from '../../../timelines/containers/details'; -import { useSourcererDataView } from '../../../common/containers/sourcerer'; -import { useCorrelations, type UseCorrelationsResult } from '../../shared/hooks/use_correlations'; +import { render } from '@testing-library/react'; import { CorrelationsDetails } from './correlations_details'; -import { type GetRelatedCasesByAlertResponse } from '@kbn/cases-plugin/common'; -import type { SelectedDataView } from '../../../common/store/sourcerer/model'; import { TestProviders } from '../../../common/mock'; import { LeftPanelContext } from '../context'; -import { CaseStatuses } from '@kbn/cases-components'; - -jest.mock('../../../timelines/containers/details'); -jest.mock('../../../common/containers/sourcerer'); -jest.mock('../../shared/hooks/use_correlations'); - -const mockCasesByAlertId: GetRelatedCasesByAlertResponse = [ - { - id: '123', - title: 'Mock Case', - description: 'This is a mock case for testing purposes', - status: CaseStatuses.open, - createdAt: '2021-10-01T12:00:00Z', - totals: { - alerts: 5, - userComments: 2, - }, - }, -]; - -const mockUseCorrelationsResult: UseCorrelationsResult = { - loading: false, - error: false, - data: [], - dataCount: 0, - alertsBySessionIds: ['alert1', 'alert2', 'alert3'], - sameSourceAlertsIds: ['alert1', 'alert2'], - ancestryAlertsIds: ['alert3'], - cases: mockCasesByAlertId, -}; - -const contextValue: LeftPanelContext = { - indexName: 'index', - eventId: 'event', - getFieldsData: () => null, - dataFormattedForFieldBrowser: [], - dataAsNestedObject: null, - scopeId: '', - browserFields: null, - searchHit: undefined, - investigationFields: [], -}; +import { useShowRelatedAlertsByAncestry } from '../../shared/hooks/use_show_related_alerts_by_ancestry'; +import { useShowRelatedAlertsBySameSourceEvent } from '../../shared/hooks/use_show_related_alerts_by_same_source_event'; +import { useShowRelatedAlertsBySession } from '../../shared/hooks/use_show_related_alerts_by_session'; +import { useShowRelatedCases } from '../../shared/hooks/use_show_related_cases'; +import { useShowSuppressedAlerts } from '../../shared/hooks/use_show_suppressed_alerts'; +import { + CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TABLE_TEST_ID, + CORRELATIONS_DETAILS_BY_SESSION_SECTION_TABLE_TEST_ID, + CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TABLE_TEST_ID, + CORRELATIONS_DETAILS_CASES_SECTION_TABLE_TEST_ID, + CORRELATIONS_DETAILS_SUPPRESSED_ALERTS_SECTION_TEST_ID, + CORRELATIONS_DETAILS_TEST_ID, +} from './test_ids'; +import { useFetchRelatedAlertsBySession } from '../../shared/hooks/use_fetch_related_alerts_by_session'; +import { useFetchRelatedAlertsByAncestry } from '../../shared/hooks/use_fetch_related_alerts_by_ancestry'; +import { useFetchRelatedAlertsBySameSourceEvent } from '../../shared/hooks/use_fetch_related_alerts_by_same_source_event'; +import { useFetchRelatedCases } from '../../shared/hooks/use_fetch_related_cases'; +import { mockContextValue } from '../mocks/mock_context'; +import { EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID } from '../../shared/components/test_ids'; + +jest.mock('react-router-dom', () => { + const actual = jest.requireActual('react-router-dom'); + return { ...actual, useLocation: jest.fn().mockReturnValue({ pathname: '' }) }; +}); +jest.mock('../../shared/hooks/use_show_related_alerts_by_ancestry'); +jest.mock('../../shared/hooks/use_show_related_alerts_by_same_source_event'); +jest.mock('../../shared/hooks/use_show_related_alerts_by_session'); +jest.mock('../../shared/hooks/use_show_related_cases'); +jest.mock('../../shared/hooks/use_show_suppressed_alerts'); +jest.mock('../../shared/hooks/use_fetch_related_alerts_by_session'); +jest.mock('../../shared/hooks/use_fetch_related_alerts_by_ancestry'); +jest.mock('../../shared/hooks/use_fetch_related_alerts_by_same_source_event'); +jest.mock('../../shared/hooks/use_fetch_related_cases'); const renderCorrelationDetails = () => { return render( - + ); }; +const CORRELATIONS_DETAILS_SUPPRESSED_ALERTS_TITLE_TEST_ID = + EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID( + CORRELATIONS_DETAILS_SUPPRESSED_ALERTS_SECTION_TEST_ID + ); + describe('CorrelationsDetails', () => { beforeEach(() => { jest.clearAllMocks(); - - jest - .mocked(useSourcererDataView) - .mockReturnValue({ runtimeMappings: {} } as unknown as SelectedDataView); }); - it('renders loading spinner when data is loading', () => { + it('renders all sections', () => { jest - .mocked(useTimelineEventsDetails) - .mockReturnValue([true, null, undefined, null, async () => {}]); - jest.mocked(useCorrelations).mockReturnValue(mockUseCorrelationsResult); - - renderCorrelationDetails(); - - expect(screen.getByRole('progressbar')).toBeInTheDocument(); + .mocked(useShowRelatedAlertsByAncestry) + .mockReturnValue({ show: true, documentId: 'documentId', indices: ['index1'] }); + jest + .mocked(useShowRelatedAlertsBySameSourceEvent) + .mockReturnValue({ show: true, originalEventId: 'originalEventId' }); + jest + .mocked(useShowRelatedAlertsBySession) + .mockReturnValue({ show: true, entityId: 'entityId' }); + jest.mocked(useShowRelatedCases).mockReturnValue(true); + jest.mocked(useShowSuppressedAlerts).mockReturnValue({ show: true, alertSuppressionCount: 1 }); + + (useFetchRelatedAlertsByAncestry as jest.Mock).mockReturnValue({ + loading: false, + error: false, + data: [], + dataCount: 1, + }); + (useFetchRelatedAlertsBySameSourceEvent as jest.Mock).mockReturnValue({ + loading: false, + error: false, + data: [], + dataCount: 1, + }); + (useFetchRelatedAlertsBySession as jest.Mock).mockReturnValue({ + loading: false, + error: false, + data: [], + dataCount: 1, + }); + (useFetchRelatedCases as jest.Mock).mockReturnValue({ + loading: false, + error: false, + data: [], + dataCount: 1, + }); + + const { getByTestId } = renderCorrelationDetails(); + + expect(getByTestId(CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TABLE_TEST_ID)).toBeInTheDocument(); + expect(getByTestId(CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TABLE_TEST_ID)).toBeInTheDocument(); + expect(getByTestId(CORRELATIONS_DETAILS_BY_SESSION_SECTION_TABLE_TEST_ID)).toBeInTheDocument(); + expect(getByTestId(CORRELATIONS_DETAILS_CASES_SECTION_TABLE_TEST_ID)).toBeInTheDocument(); + expect(getByTestId(CORRELATIONS_DETAILS_SUPPRESSED_ALERTS_TITLE_TEST_ID)).toBeInTheDocument(); }); - it('renders error message when there is an error', () => { + it('should render no section and show error message if show values are false', () => { + jest + .mocked(useShowRelatedAlertsByAncestry) + .mockReturnValue({ show: false, documentId: 'documentId', indices: ['index1'] }); jest - .mocked(useTimelineEventsDetails) - .mockReturnValue([false, null, undefined, null, async () => {}]); - jest.mocked(useCorrelations).mockReturnValue({ ...mockUseCorrelationsResult, error: true }); + .mocked(useShowRelatedAlertsBySameSourceEvent) + .mockReturnValue({ show: false, originalEventId: 'originalEventId' }); + jest + .mocked(useShowRelatedAlertsBySession) + .mockReturnValue({ show: false, entityId: 'entityId' }); + jest.mocked(useShowRelatedCases).mockReturnValue(false); + jest.mocked(useShowSuppressedAlerts).mockReturnValue({ show: false, alertSuppressionCount: 0 }); - renderCorrelationDetails(); + const { getByTestId, queryByTestId } = renderCorrelationDetails(); expect( - screen.getByText('There was an error displaying Correlation Details view') - ).toBeInTheDocument(); + queryByTestId(CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TABLE_TEST_ID) + ).not.toBeInTheDocument(); + expect( + queryByTestId(CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TABLE_TEST_ID) + ).not.toBeInTheDocument(); + expect( + queryByTestId(CORRELATIONS_DETAILS_BY_SESSION_SECTION_TABLE_TEST_ID) + ).not.toBeInTheDocument(); + expect(queryByTestId(CORRELATIONS_DETAILS_CASES_SECTION_TABLE_TEST_ID)).not.toBeInTheDocument(); + expect( + queryByTestId(CORRELATIONS_DETAILS_SUPPRESSED_ALERTS_TITLE_TEST_ID) + ).not.toBeInTheDocument(); + expect(getByTestId(`${CORRELATIONS_DETAILS_TEST_ID}Error`)).toBeInTheDocument(); }); - it('renders alerts tables when data is loaded', () => { - jest - .mocked(useTimelineEventsDetails) - .mockReturnValue([false, null, undefined, null, async () => {}]); - jest.mocked(useCorrelations).mockReturnValue(mockUseCorrelationsResult); + it('should render no section if values are null', () => { + jest.mocked(useShowRelatedAlertsByAncestry).mockReturnValue({ show: true }); + jest.mocked(useShowRelatedAlertsBySameSourceEvent).mockReturnValue({ show: true }); + jest.mocked(useShowRelatedAlertsBySession).mockReturnValue({ show: true }); + jest.mocked(useShowRelatedCases).mockReturnValue(false); + jest.mocked(useShowSuppressedAlerts).mockReturnValue({ show: false, alertSuppressionCount: 0 }); - renderCorrelationDetails(); + const { queryByTestId } = renderCorrelationDetails(); - expect(screen.getByText('1 alert related by ancestry')).toBeInTheDocument(); - expect(screen.getByText('2 alerts related by source event')).toBeInTheDocument(); - expect(screen.getByText('3 alerts related by session')).toBeInTheDocument(); + expect( + queryByTestId(CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TABLE_TEST_ID) + ).not.toBeInTheDocument(); + expect( + queryByTestId(CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TABLE_TEST_ID) + ).not.toBeInTheDocument(); + expect( + queryByTestId(CORRELATIONS_DETAILS_BY_SESSION_SECTION_TABLE_TEST_ID) + ).not.toBeInTheDocument(); + expect(queryByTestId(CORRELATIONS_DETAILS_CASES_SECTION_TABLE_TEST_ID)).not.toBeInTheDocument(); + expect( + queryByTestId(CORRELATIONS_DETAILS_SUPPRESSED_ALERTS_TITLE_TEST_ID) + ).not.toBeInTheDocument(); }); }); diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/correlations_details.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/correlations_details.tsx index 85b497716b32d..0e6e927779710 100644 --- a/x-pack/plugins/security_solution/public/flyout/left/components/correlations_details.tsx +++ b/x-pack/plugins/security_solution/public/flyout/left/components/correlations_details.tsx @@ -6,41 +6,20 @@ */ import React from 'react'; -import { - EuiEmptyPrompt, - EuiFlexGroup, - EuiFlexItem, - EuiLoadingSpinner, - EuiSpacer, -} from '@elastic/eui'; -import { useTimelineEventsDetails } from '../../../timelines/containers/details'; -import { useSourcererDataView } from '../../../common/containers/sourcerer'; - -import { useCorrelations } from '../../shared/hooks/use_correlations'; +import { EuiFlexGroup, EuiFlexItem } from '@elastic/eui'; +import { CORRELATIONS_ERROR_MESSAGE } from './translations'; +import { CORRELATIONS_DETAILS_TEST_ID } from './test_ids'; +import { RelatedAlertsBySession } from './related_alerts_by_session'; +import { RelatedAlertsBySameSourceEvent } from './related_alerts_by_same_source_event'; +import { RelatedCases } from './related_cases'; +import { useShowRelatedCases } from '../../shared/hooks/use_show_related_cases'; +import { useShowRelatedAlertsByAncestry } from '../../shared/hooks/use_show_related_alerts_by_ancestry'; +import { useShowSuppressedAlerts } from '../../shared/hooks/use_show_suppressed_alerts'; import { useLeftPanelContext } from '../context'; -import { useRouteSpy } from '../../../common/utils/route/use_route_spy'; -import { SecurityPageName } from '../../../../common'; -import { SourcererScopeName } from '../../../common/store/sourcerer/model'; -import { AlertsTable } from './correlations_details_alerts_table'; -import { ERROR_MESSAGE, ERROR_TITLE } from '../../shared/translations'; -import { - CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TEST_ID, - CORRELATIONS_DETAILS_BY_ANCESTRY_TABLE_TEST_ID, - CORRELATIONS_DETAILS_BY_SESSION_SECTION_TEST_ID, - CORRELATIONS_DETAILS_BY_SESSION_TABLE_TEST_ID, - CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TEST_ID, - CORRELATIONS_DETAILS_BY_SOURCE_TABLE_TEST_ID, - CORRELATIONS_DETAILS_CASES_SECTION_TEST_ID, - CORRELATIONS_DETAILS_ERROR_TEST_ID, -} from './test_ids'; -import { CorrelationsCasesTable } from './correlations_cases_table'; -import { - ANCESTRY_ALERTS_HEADING, - RELATED_CASES_HEADING, - SESSION_ALERTS_HEADING, - SOURCE_ALERTS_HEADING, -} from './translations'; -import { ExpandablePanel } from '../../shared/components/expandable_panel'; +import { useShowRelatedAlertsBySameSourceEvent } from '../../shared/hooks/use_show_related_alerts_by_same_source_event'; +import { useShowRelatedAlertsBySession } from '../../shared/hooks/use_show_related_alerts_by_session'; +import { RelatedAlertsByAncestry } from './related_alerts_by_ancestry'; +import { SuppressedAlerts } from './suppressed_alerts'; export const CORRELATIONS_TAB_ID = 'correlations-details'; @@ -48,121 +27,81 @@ export const CORRELATIONS_TAB_ID = 'correlations-details'; * Correlations displayed in the document details expandable flyout left section under the Insights tab */ export const CorrelationsDetails: React.FC = () => { - const { indexName, eventId, scopeId } = useLeftPanelContext(); - - const [{ pageName }] = useRouteSpy(); - const sourcererScope = - pageName === SecurityPageName.detections - ? SourcererScopeName.detections - : SourcererScopeName.default; - - const sourcererDataView = useSourcererDataView(sourcererScope); - - const [isEventDataLoading, eventData, _searchHit, dataAsNestedObject] = useTimelineEventsDetails({ - indexName, - eventId, - runtimeMappings: sourcererDataView.runtimeMappings, - skip: !eventId, - }); + const { dataAsNestedObject, dataFormattedForFieldBrowser, eventId, getFieldsData, scopeId } = + useLeftPanelContext(); const { - loading: isCorrelationsLoading, - error: correlationsError, - ancestryAlertsIds, - alertsBySessionIds, - sameSourceAlertsIds, - cases, - } = useCorrelations({ - eventId, + show: showAlertsByAncestry, + documentId, + indices, + } = useShowRelatedAlertsByAncestry({ + getFieldsData, dataAsNestedObject, - dataFormattedForFieldBrowser: eventData, - scopeId, + dataFormattedForFieldBrowser, + }); + const { show: showSameSourceAlerts, originalEventId } = useShowRelatedAlertsBySameSourceEvent({ + getFieldsData, + }); + const { show: showAlertsBySession, entityId } = useShowRelatedAlertsBySession({ getFieldsData }); + const showCases = useShowRelatedCases(); + const { show: showSuppressedAlerts, alertSuppressionCount } = useShowSuppressedAlerts({ + getFieldsData, }); - const topLevelLoading = isEventDataLoading || isCorrelationsLoading; - - if (topLevelLoading) { - return ( - - - - - - ); - } - - if (correlationsError) { - return ( - {ERROR_TITLE('Correlation Details')}

    } - body={

    {ERROR_MESSAGE('Correlation Details view')}

    } - data-test-subj={CORRELATIONS_DETAILS_ERROR_TEST_ID} - /> - ); - } + const canShowAtLeastOneInsight = + showAlertsByAncestry || + showSameSourceAlerts || + showAlertsBySession || + showCases || + showSuppressedAlerts; return ( <> - - - - - - - - - - - - - - - - - - - - - + {canShowAtLeastOneInsight ? ( + + {showSuppressedAlerts && ( + + + + )} + {showCases && ( + + + + )} + {showSameSourceAlerts && originalEventId && ( + + + + )} + {showAlertsBySession && entityId && ( + + + + )} + {showAlertsByAncestry && documentId && indices && ( + + + + )} + + ) : ( +
    + {CORRELATIONS_ERROR_MESSAGE} +
    + )} ); }; diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/correlations_details_alerts_table.test.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/correlations_details_alerts_table.test.tsx index 156b254eaf081..3d36a54e728e2 100644 --- a/x-pack/plugins/security_solution/public/flyout/left/components/correlations_details_alerts_table.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/left/components/correlations_details_alerts_table.test.tsx @@ -7,8 +7,9 @@ import React from 'react'; import { render } from '@testing-library/react'; +import { TestProviders } from '../../../common/mock'; import { EuiBasicTable } from '@elastic/eui'; -import { AlertsTable, columns } from './correlations_details_alerts_table'; +import { CorrelationsDetailsAlertsTable, columns } from './correlations_details_alerts_table'; import { usePaginatedAlerts } from '../hooks/use_paginated_alerts'; jest.mock('../hooks/use_paginated_alerts'); @@ -17,7 +18,11 @@ jest.mock('@elastic/eui', () => ({ EuiBasicTable: jest.fn(() =>
    ), })); -describe('AlertsTable', () => { +const TEST_ID = 'TEST'; +const scopeId = 'scopeId'; +const eventId = 'eventId'; + +describe('CorrelationsDetailsAlertsTable', () => { const alertIds = ['id1', 'id2', 'id3']; beforeEach(() => { @@ -59,7 +64,19 @@ describe('AlertsTable', () => { }); it('renders EuiBasicTable with correct props', () => { - render(); + const { getByTestId } = render( + + + + ); + expect(getByTestId(`${TEST_ID}InvestigateInTimeline`)).toBeInTheDocument(); expect(jest.mocked(usePaginatedAlerts)).toHaveBeenCalled(); diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/correlations_details_alerts_table.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/correlations_details_alerts_table.tsx index 28d05d3a08d70..dbb39b25c79ef 100644 --- a/x-pack/plugins/security_solution/public/flyout/left/components/correlations_details_alerts_table.tsx +++ b/x-pack/plugins/security_solution/public/flyout/left/components/correlations_details_alerts_table.tsx @@ -6,17 +6,22 @@ */ import React, { type FC, useMemo, useCallback } from 'react'; -import { type Criteria, EuiBasicTable, formatDate, EuiEmptyPrompt } from '@elastic/eui'; - +import { type Criteria, EuiBasicTable, formatDate } from '@elastic/eui'; import { Severity } from '@kbn/securitysolution-io-ts-alerting-types'; +import type { Filter } from '@kbn/es-query'; import { isRight } from 'fp-ts/lib/Either'; import { ALERT_REASON, ALERT_RULE_NAME } from '@kbn/rule-data-utils'; +import type { DataProvider } from '../../../../common/types'; import { SeverityBadge } from '../../../detections/components/rules/severity_badge'; import { usePaginatedAlerts } from '../hooks/use_paginated_alerts'; -import { ERROR_MESSAGE, ERROR_TITLE } from '../../shared/translations'; import * as i18n from './translations'; +import { ExpandablePanel } from '../../shared/components/expandable_panel'; +import { InvestigateInTimelineButton } from '../../../common/components/event_details/table/investigate_in_timeline_button'; +import { ACTION_INVESTIGATE_IN_TIMELINE } from '../../../detections/components/alerts_table/translations'; +import { getDataProvider } from '../../../common/components/event_details/table/use_action_cell_data_provider'; export const TIMESTAMP_DATE_FORMAT = 'MMM D, YYYY @ HH:mm:ss.SSS'; +const dataProviderLimit = 5; export const columns = [ { @@ -47,11 +52,27 @@ export const columns = [ }, ]; -export interface AlertsTableProps { +export interface CorrelationsDetailsAlertsTableProps { + /** + * Text to display in the ExpandablePanel title section + */ + title: string; + /** + * Whether the table is loading + */ + loading: boolean; /** * Ids of alerts to display in the table */ - alertIds: string[]; + alertIds: string[] | undefined; + /** + * Maintain backwards compatibility // TODO remove when possible + */ + scopeId: string; + /** + * Id of the document + */ + eventId: string; /** * Data test subject string for testing */ @@ -61,9 +82,23 @@ export interface AlertsTableProps { /** * Renders paginated alert array based on the provided alertIds */ -export const AlertsTable: FC = ({ alertIds, 'data-test-subj': dataTestSubj }) => { - const { setPagination, setSorting, data, loading, paginationConfig, sorting, error } = - usePaginatedAlerts(alertIds); +export const CorrelationsDetailsAlertsTable: FC = ({ + title, + loading, + alertIds, + scopeId, + eventId, + 'data-test-subj': dataTestSubj, +}) => { + const { + setPagination, + setSorting, + data, + loading: alertsLoading, + paginationConfig, + sorting, + error, + } = usePaginatedAlerts(alertIds || []); const onTableChange = useCallback( ({ page, sort }: Criteria>) => { @@ -90,27 +125,94 @@ export const AlertsTable: FC = ({ alertIds, 'data-test-subj': ); }, [data]); - if (error) { - return ( - {ERROR_TITLE('alert data')}

    } - body={

    {ERROR_MESSAGE('alert data')}

    } - data-test-subj={`${dataTestSubj}Error`} - /> - ); - } + const shouldUseFilters = Boolean( + alertIds && alertIds.length && alertIds.length >= dataProviderLimit + ); + const dataProviders = useMemo( + () => (shouldUseFilters ? null : getDataProviders(scopeId, eventId, alertIds)), + [alertIds, shouldUseFilters, scopeId, eventId] + ); + const filters: Filter[] | null = useMemo( + () => (shouldUseFilters ? getFilters(alertIds) : null), + [alertIds, shouldUseFilters] + ); return ( - > + + + {ACTION_INVESTIGATE_IN_TIMELINE} + +
    + ), + }} + content={{ error }} + expand={{ + expandable: true, + expandedOnFirstRender: true, + }} data-test-subj={dataTestSubj} - loading={loading} - items={mappedData} - columns={columns} - pagination={paginationConfig} - sorting={sorting} - onChange={onTableChange} - /> + > + > + data-test-subj={`${dataTestSubj}Table`} + loading={loading || alertsLoading} + items={mappedData} + columns={columns} + pagination={paginationConfig} + sorting={sorting} + onChange={onTableChange} + /> + ); }; + +const getFilters = (alertIds?: string[]) => { + if (alertIds && alertIds.length) { + return [ + { + meta: { + alias: i18n.CORRELATIONS_DETAILS_TABLE_FILTER, + type: 'phrases', + key: '_id', + params: [...alertIds], + negate: false, + disabled: false, + value: alertIds.join(), + }, + query: { + bool: { + should: alertIds.map((id) => { + return { + match_phrase: { + _id: id, + }, + }; + }), + minimum_should_match: 1, + }, + }, + }, + ]; + } + return null; +}; + +const getDataProviders = (scopeId: string, eventId: string, alertIds?: string[]) => { + if (alertIds && alertIds.length) { + return alertIds.reduce((result, alertId, index) => { + const id = `${scopeId}-${eventId}-event.id-${index}-${alertId}`; + result.push(getDataProvider('_id', id, alertId)); + return result; + }, []); + } + return null; +}; diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/entities_details.test.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/entities_details.test.tsx index 0446218830cef..d02f84207ecde 100644 --- a/x-pack/plugins/security_solution/public/flyout/left/components/entities_details.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/left/components/entities_details.test.tsx @@ -13,6 +13,7 @@ import { TestProviders } from '../../../common/mock'; import { EntitiesDetails } from './entities_details'; import { ENTITIES_DETAILS_TEST_ID, HOST_DETAILS_TEST_ID, USER_DETAILS_TEST_ID } from './test_ids'; import { mockContextValue } from '../mocks/mock_context'; +import { EXPANDABLE_PANEL_CONTENT_TEST_ID } from '../../shared/components/test_ids'; jest.mock('react-router-dom', () => { const actual = jest.requireActual('react-router-dom'); @@ -31,6 +32,9 @@ jest.mock('react-redux', () => { }; }); +const USER_TEST_ID = EXPANDABLE_PANEL_CONTENT_TEST_ID(USER_DETAILS_TEST_ID); +const HOST_TEST_ID = EXPANDABLE_PANEL_CONTENT_TEST_ID(HOST_DETAILS_TEST_ID); + describe('', () => { it('renders entities details correctly', () => { const { getByTestId } = render( @@ -41,8 +45,8 @@ describe('', () => { ); expect(getByTestId(ENTITIES_DETAILS_TEST_ID)).toBeInTheDocument(); - expect(getByTestId(USER_DETAILS_TEST_ID)).toBeInTheDocument(); - expect(getByTestId(HOST_DETAILS_TEST_ID)).toBeInTheDocument(); + expect(getByTestId(USER_TEST_ID)).toBeInTheDocument(); + expect(getByTestId(HOST_TEST_ID)).toBeInTheDocument(); }); it('does not render user and host details if user name and host name are not available', () => { @@ -59,8 +63,8 @@ describe('', () => { ); - expect(queryByTestId(USER_DETAILS_TEST_ID)).not.toBeInTheDocument(); - expect(queryByTestId(HOST_DETAILS_TEST_ID)).not.toBeInTheDocument(); + expect(queryByTestId(USER_TEST_ID)).not.toBeInTheDocument(); + expect(queryByTestId(HOST_TEST_ID)).not.toBeInTheDocument(); }); it('does not render user and host details if @timestamp is not available', () => { @@ -85,7 +89,7 @@ describe('', () => { ); - expect(queryByTestId(USER_DETAILS_TEST_ID)).not.toBeInTheDocument(); - expect(queryByTestId(HOST_DETAILS_TEST_ID)).not.toBeInTheDocument(); + expect(queryByTestId(USER_TEST_ID)).not.toBeInTheDocument(); + expect(queryByTestId(HOST_TEST_ID)).not.toBeInTheDocument(); }); }); diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/host_details.test.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/host_details.test.tsx index d3281b2169877..4ee515e539442 100644 --- a/x-pack/plugins/security_solution/public/flyout/left/components/host_details.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/left/components/host_details.test.tsx @@ -21,6 +21,7 @@ import { HOST_DETAILS_INFO_TEST_ID, HOST_DETAILS_RELATED_USERS_TABLE_TEST_ID, } from './test_ids'; +import { EXPANDABLE_PANEL_CONTENT_TEST_ID } from '../../shared/components/test_ids'; jest.mock('react-router-dom', () => { const actual = jest.requireActual('react-router-dom'); @@ -134,7 +135,7 @@ describe('', () => { ); - expect(getByTestId(HOST_DETAILS_TEST_ID)).toBeInTheDocument(); + expect(getByTestId(EXPANDABLE_PANEL_CONTENT_TEST_ID(HOST_DETAILS_TEST_ID))).toBeInTheDocument(); }); describe('Host overview', () => { diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/investigation_guide.test.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/investigation_guide.test.tsx new file mode 100644 index 0000000000000..4de5f29bd7ea2 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/left/components/investigation_guide.test.tsx @@ -0,0 +1,90 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { render } from '@testing-library/react'; +import { InvestigationGuide } from './investigation_guide'; +import { LeftPanelContext } from '../context'; +import { TestProviders } from '../../../common/mock'; +import { + INVESTIGATION_GUIDE_LOADING_TEST_ID, + INVESTIGATION_GUIDE_NO_DATA_TEST_ID, +} from './test_ids'; +import { mockContextValue } from '../mocks/mock_context'; +import { useInvestigationGuide } from '../../shared/hooks/use_investigation_guide'; + +jest.mock('../../shared/hooks/use_investigation_guide'); + +const renderInvestigationGuide = (context: LeftPanelContext = mockContextValue) => ( + + + + + +); + +describe('', () => { + it('should render investigation guide', () => { + (useInvestigationGuide as jest.Mock).mockReturnValue({ + loading: false, + error: false, + basicAlertData: { ruleId: 'ruleId' }, + ruleNote: 'test note', + }); + const { queryByTestId } = render(renderInvestigationGuide()); + expect(queryByTestId(INVESTIGATION_GUIDE_NO_DATA_TEST_ID)).not.toBeInTheDocument(); + expect(queryByTestId(INVESTIGATION_GUIDE_LOADING_TEST_ID)).not.toBeInTheDocument(); + }); + + it('should render loading', () => { + (useInvestigationGuide as jest.Mock).mockReturnValue({ + loading: true, + }); + const { getByTestId } = render(renderInvestigationGuide()); + expect(getByTestId(INVESTIGATION_GUIDE_LOADING_TEST_ID)).toBeInTheDocument(); + }); + + it('should render no data message when there is no ruleId', () => { + (useInvestigationGuide as jest.Mock).mockReturnValue({ + basicAlertData: {}, + ruleNote: 'test note', + }); + const { getByTestId } = render(renderInvestigationGuide()); + expect(getByTestId(INVESTIGATION_GUIDE_NO_DATA_TEST_ID)).toBeInTheDocument(); + }); + + it('should render no data message when there is no rule note', () => { + (useInvestigationGuide as jest.Mock).mockReturnValue({ + basicAlertData: { ruleId: 'ruleId' }, + ruleNote: undefined, + }); + const { getByTestId } = render(renderInvestigationGuide()); + expect(getByTestId(INVESTIGATION_GUIDE_NO_DATA_TEST_ID)).toBeInTheDocument(); + }); + + it('should render null when dataFormattedForFieldBrowser is null', () => { + const mockContext = { + ...mockContextValue, + dataFormattedForFieldBrowser: null, + }; + (useInvestigationGuide as jest.Mock).mockReturnValue({ + loading: false, + error: false, + }); + const { container } = render(renderInvestigationGuide(mockContext)); + expect(container).toBeEmptyDOMElement(); + }); + + it('should render null useInvestigationGuide errors out', () => { + (useInvestigationGuide as jest.Mock).mockReturnValue({ + loading: false, + error: true, + }); + const { container } = render(renderInvestigationGuide()); + expect(container).toBeEmptyDOMElement(); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/investigation_guide.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/investigation_guide.tsx new file mode 100644 index 0000000000000..f0278eb86da53 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/left/components/investigation_guide.tsx @@ -0,0 +1,80 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +import React from 'react'; +import { EuiFlexGroup, EuiFlexItem, EuiLink, EuiLoadingSpinner } from '@elastic/eui'; +import { FormattedMessage } from '@kbn/i18n-react'; +import { useInvestigationGuide } from '../../shared/hooks/use_investigation_guide'; +import { useLeftPanelContext } from '../context'; +import { + INVESTIGATION_GUIDE_LOADING_TEST_ID, + INVESTIGATION_GUIDE_NO_DATA_TEST_ID, +} from './test_ids'; +import { InvestigationGuideView } from '../../../common/components/event_details/investigation_guide_view'; + +/** + * Investigation guide displayed in the left panel. + * Renders a message saying the guide hasn't been set up or the full investigation guide. + */ +export const InvestigationGuide: React.FC = () => { + const { dataFormattedForFieldBrowser } = useLeftPanelContext(); + + const { loading, error, basicAlertData, ruleNote } = useInvestigationGuide({ + dataFormattedForFieldBrowser, + }); + + if (!dataFormattedForFieldBrowser || error) { + return null; + } + + if (loading) { + return ( + + + + + + ); + } + + return ( + <> + {basicAlertData.ruleId && ruleNote ? ( + + ) : ( +
    + + + + ), + }} + /> +
    + )} + + ); +}; + +InvestigationGuide.displayName = 'InvestigationGuide'; diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details.test.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details.test.tsx index 1201ef514ac9f..a5f2883b676af 100644 --- a/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details.test.tsx @@ -7,21 +7,16 @@ import { render } from '@testing-library/react'; import React from 'react'; -import { getSummaryRows } from '../../../common/components/event_details/get_alert_summary_rows'; import { LeftPanelContext } from '../context'; import { PrevalenceDetails } from './prevalence_details'; import { + PREVALENCE_DETAILS_LOADING_TEST_ID, PREVALENCE_DETAILS_TABLE_ERROR_TEST_ID, PREVALENCE_DETAILS_TABLE_TEST_ID, } from './test_ids'; -import { useFetchFieldValuePairByEventType } from '../../shared/hooks/use_fetch_field_value_pair_by_event_type'; -import { useFetchFieldValuePairWithAggregation } from '../../shared/hooks/use_fetch_field_value_pair_with_aggregation'; -import { useFetchUniqueByField } from '../../shared/hooks/use_fetch_unique_by_field'; +import { usePrevalence } from '../../shared/hooks/use_prevalence'; -jest.mock('../../../common/components/event_details/get_alert_summary_rows'); -jest.mock('../../shared/hooks/use_fetch_field_value_pair_by_event_type'); -jest.mock('../../shared/hooks/use_fetch_field_value_pair_with_aggregation'); -jest.mock('../../shared/hooks/use_fetch_unique_by_field'); +jest.mock('../../shared/hooks/use_prevalence'); const panelContextValue = { eventId: 'event id', @@ -31,33 +26,31 @@ const panelContextValue = { } as unknown as LeftPanelContext; describe('PrevalenceDetails', () => { - jest.mocked(useFetchFieldValuePairByEventType).mockReturnValue({ - loading: false, - error: false, - count: 1, - }); - jest.mocked(useFetchFieldValuePairWithAggregation).mockReturnValue({ - loading: false, - error: false, - count: 1, - }); - jest.mocked(useFetchUniqueByField).mockReturnValue({ - loading: false, - error: false, - count: 1, - }); - it('should render the table', () => { - const mockSummaryRow = { - title: 'test', - description: { - data: { - field: 'field', + const field1 = 'field1'; + const field2 = 'field2'; + (usePrevalence as jest.Mock).mockReturnValue({ + loading: false, + error: false, + data: [ + { + field: field1, + value: 'value1', + alertCount: 1, + docCount: 1, + hostPrevalence: 0.05, + userPrevalence: 0.1, }, - values: ['value'], - }, - }; - (getSummaryRows as jest.Mock).mockReturnValue([mockSummaryRow]); + { + field: field2, + value: 'value2', + alertCount: 1, + docCount: 1, + hostPrevalence: 0.5, + userPrevalence: 0.05, + }, + ], + }); const { getByTestId } = render( @@ -68,8 +61,28 @@ describe('PrevalenceDetails', () => { expect(getByTestId(PREVALENCE_DETAILS_TABLE_TEST_ID)).toBeInTheDocument(); }); - it('should render the error message if no highlighted fields', () => { - jest.mocked(getSummaryRows).mockReturnValue([]); + it('should render loading', () => { + (usePrevalence as jest.Mock).mockReturnValue({ + loading: true, + error: false, + data: [], + }); + + const { getByTestId } = render( + + + + ); + + expect(getByTestId(PREVALENCE_DETAILS_LOADING_TEST_ID)).toBeInTheDocument(); + }); + + it('should render error if call errors out', () => { + (usePrevalence as jest.Mock).mockReturnValue({ + loading: false, + error: true, + data: [], + }); const { getByTestId } = render( @@ -79,4 +92,64 @@ describe('PrevalenceDetails', () => { expect(getByTestId(PREVALENCE_DETAILS_TABLE_ERROR_TEST_ID)).toBeInTheDocument(); }); + + it('should render error if event is null', () => { + const contextValue = { + ...panelContextValue, + eventId: null, + } as unknown as LeftPanelContext; + (usePrevalence as jest.Mock).mockReturnValue({ + loading: false, + error: true, + data: [], + }); + + const { getByTestId } = render( + + + + ); + + expect(getByTestId(PREVALENCE_DETAILS_TABLE_ERROR_TEST_ID)).toBeInTheDocument(); + }); + + it('should render error if dataFormattedForFieldBrowser is null', () => { + const contextValue = { + ...panelContextValue, + dataFormattedForFieldBrowser: null, + }; + (usePrevalence as jest.Mock).mockReturnValue({ + loading: false, + error: true, + data: [], + }); + + const { getByTestId } = render( + + + + ); + + expect(getByTestId(PREVALENCE_DETAILS_TABLE_ERROR_TEST_ID)).toBeInTheDocument(); + }); + + it('should render error if browserFields is null', () => { + const contextValue = { + ...panelContextValue, + browserFields: null, + }; + (usePrevalence as jest.Mock).mockReturnValue({ + loading: false, + error: true, + data: [], + }); + + const { getByTestId } = render( + + + + ); + + expect(getByTestId(PREVALENCE_DETAILS_TABLE_ERROR_TEST_ID)).toBeInTheDocument(); + }); }); diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details.tsx index 504d2d2c9232f..eeadf1362c71e 100644 --- a/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details.tsx +++ b/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details.tsx @@ -5,102 +5,118 @@ * 2.0. */ -import React, { useMemo } from 'react'; -import type { EuiBasicTableColumn } from '@elastic/eui'; -import { EuiBasicTable, EuiEmptyPrompt } from '@elastic/eui'; +import React, { useState } from 'react'; +import type { EuiBasicTableColumn, OnTimeChangeProps } from '@elastic/eui'; +import { + EuiEmptyPrompt, + EuiFlexGroup, + EuiFlexItem, + EuiInMemoryTable, + EuiLoadingSpinner, + EuiPanel, + EuiSpacer, + EuiSuperDatePicker, +} from '@elastic/eui'; +import type { PrevalenceData } from '../../shared/hooks/use_prevalence'; +import { usePrevalence } from '../../shared/hooks/use_prevalence'; import { ERROR_MESSAGE, ERROR_TITLE } from '../../shared/translations'; import { + HOST_TITLE, PREVALENCE_ERROR_MESSAGE, PREVALENCE_TABLE_ALERT_COUNT_COLUMN_TITLE, + PREVALENCE_TABLE_COUNT_COLUMN_TITLE, PREVALENCE_TABLE_DOC_COUNT_COLUMN_TITLE, - PREVALENCE_TABLE_HOST_PREVALENCE_COLUMN_TITLE, - PREVALENCE_TABLE_NAME_COLUMN_TITLE, - PREVALENCE_TABLE_TYPE_COLUMN_TITLE, - PREVALENCE_TABLE_USER_PREVALENCE_COLUMN_TITLE, + PREVALENCE_TABLE_VALUE_COLUMN_TITLE, + PREVALENCE_TABLE_PREVALENCE_COLUMN_TITLE, + PREVALENCE_TABLE_FIELD_COLUMN_TITLE, + USER_TITLE, + PREVALENCE_NO_DATA_MESSAGE, } from './translations'; import { + PREVALENCE_DETAILS_LOADING_TEST_ID, PREVALENCE_DETAILS_TABLE_ALERT_COUNT_CELL_TEST_ID, PREVALENCE_DETAILS_TABLE_DOC_COUNT_CELL_TEST_ID, PREVALENCE_DETAILS_TABLE_ERROR_TEST_ID, PREVALENCE_DETAILS_TABLE_HOST_PREVALENCE_CELL_TEST_ID, - PREVALENCE_DETAILS_TABLE_NAME_CELL_TEST_ID, - PREVALENCE_DETAILS_TABLE_TEST_ID, - PREVALENCE_DETAILS_TABLE_TYPE_CELL_TEST_ID, + PREVALENCE_DETAILS_TABLE_VALUE_CELL_TEST_ID, + PREVALENCE_DETAILS_TABLE_FIELD_CELL_TEST_ID, PREVALENCE_DETAILS_TABLE_USER_PREVALENCE_CELL_TEST_ID, + PREVALENCE_DETAILS_TABLE_NO_DATA_TEST_ID, + PREVALENCE_DETAILS_DATE_PICKER_TEST_ID, + PREVALENCE_DETAILS_TABLE_TEST_ID, } from './test_ids'; -import { PrevalenceDetailsCountCell } from './prevalence_details_count_cell'; -import type { AlertSummaryRow } from '../../../common/components/event_details/helpers'; -import { PrevalenceDetailsPrevalenceCell } from './prevalence_details_prevalence_cell'; -import { getSummaryRows } from '../../../common/components/event_details/get_alert_summary_rows'; import { useLeftPanelContext } from '../context'; -import { EventKind } from '../../shared/hooks/use_fetch_field_value_pair_by_event_type'; - -interface PrevalenceDetailsTableCell { - highlightedField: { name: string; values: string[] }; -} export const PREVALENCE_TAB_ID = 'prevalence-details'; +const DEFAULT_FROM = 'now-30d'; +const DEFAULT_TO = 'now'; -const columns: Array> = [ +const columns: Array> = [ { - field: 'type', - name: PREVALENCE_TABLE_TYPE_COLUMN_TITLE, - 'data-test-subj': PREVALENCE_DETAILS_TABLE_TYPE_CELL_TEST_ID, + field: 'field', + name: PREVALENCE_TABLE_FIELD_COLUMN_TITLE, + 'data-test-subj': PREVALENCE_DETAILS_TABLE_FIELD_CELL_TEST_ID, }, { - field: 'name', - name: PREVALENCE_TABLE_NAME_COLUMN_TITLE, - 'data-test-subj': PREVALENCE_DETAILS_TABLE_NAME_CELL_TEST_ID, + field: 'value', + name: PREVALENCE_TABLE_VALUE_COLUMN_TITLE, + 'data-test-subj': PREVALENCE_DETAILS_TABLE_VALUE_CELL_TEST_ID, }, { field: 'alertCount', - name: PREVALENCE_TABLE_ALERT_COUNT_COLUMN_TITLE, - 'data-test-subj': PREVALENCE_DETAILS_TABLE_ALERT_COUNT_CELL_TEST_ID, - render: (data: PrevalenceDetailsTableCell) => ( - + name: ( + + {PREVALENCE_TABLE_ALERT_COUNT_COLUMN_TITLE} + {PREVALENCE_TABLE_COUNT_COLUMN_TITLE} + ), + 'data-test-subj': PREVALENCE_DETAILS_TABLE_ALERT_COUNT_CELL_TEST_ID, + width: '10%', }, { field: 'docCount', - name: PREVALENCE_TABLE_DOC_COUNT_COLUMN_TITLE, - 'data-test-subj': PREVALENCE_DETAILS_TABLE_DOC_COUNT_CELL_TEST_ID, - render: (data: PrevalenceDetailsTableCell) => ( - + name: ( + + {PREVALENCE_TABLE_DOC_COUNT_COLUMN_TITLE} + {PREVALENCE_TABLE_COUNT_COLUMN_TITLE} + ), + 'data-test-subj': PREVALENCE_DETAILS_TABLE_DOC_COUNT_CELL_TEST_ID, + width: '10%', }, { field: 'hostPrevalence', - name: PREVALENCE_TABLE_HOST_PREVALENCE_COLUMN_TITLE, + name: ( + + {HOST_TITLE} + {PREVALENCE_TABLE_PREVALENCE_COLUMN_TITLE} + + ), 'data-test-subj': PREVALENCE_DETAILS_TABLE_HOST_PREVALENCE_CELL_TEST_ID, - render: (data: PrevalenceDetailsTableCell) => ( - + render: (hostPrevalence: number) => ( + <> + {Math.round(hostPrevalence * 100)} + {'%'} + ), + width: '10%', }, { field: 'userPrevalence', - name: PREVALENCE_TABLE_USER_PREVALENCE_COLUMN_TITLE, + name: ( + + {USER_TITLE} + {PREVALENCE_TABLE_PREVALENCE_COLUMN_TITLE} + + ), 'data-test-subj': PREVALENCE_DETAILS_TABLE_USER_PREVALENCE_CELL_TEST_ID, - render: (data: PrevalenceDetailsTableCell) => ( - + render: (userPrevalence: number) => ( + <> + {Math.round(userPrevalence * 100)} + {'%'} + ), + width: '10%', }, ]; @@ -108,40 +124,40 @@ const columns: Array> = [ * Prevalence table displayed in the document details expandable flyout left section under the Insights tab */ export const PrevalenceDetails: React.FC = () => { - const { browserFields, dataFormattedForFieldBrowser, eventId, scopeId, investigationFields } = + const { browserFields, dataFormattedForFieldBrowser, eventId, investigationFields } = useLeftPanelContext(); - const data = useMemo(() => { - const summaryRows = getSummaryRows({ - browserFields: browserFields || {}, - data: dataFormattedForFieldBrowser || [], - eventId, - scopeId, - investigationFields, - isReadOnly: false, - }); + const [start, setStart] = useState(DEFAULT_FROM); + const [end, setEnd] = useState(DEFAULT_TO); - const getCellRenderFields = (summaryRow: AlertSummaryRow): PrevalenceDetailsTableCell => ({ - highlightedField: { - name: summaryRow.description.data.field, - values: summaryRow.description.values || [], - }, - }); + const onTimeChange = ({ start: s, end: e }: OnTimeChangeProps) => { + setStart(s); + setEnd(e); + }; - return (summaryRows || []).map((summaryRow) => { - const fields = getCellRenderFields(summaryRow); - return { - type: summaryRow.description.data.field, - name: summaryRow.description.values, - alertCount: fields, - docCount: fields, - hostPrevalence: fields, - userPrevalence: fields, - }; - }); - }, [browserFields, investigationFields, dataFormattedForFieldBrowser, eventId, scopeId]); + const { loading, error, data } = usePrevalence({ + dataFormattedForFieldBrowser, + investigationFields, + interval: { + from: start, + to: end, + }, + }); + + if (loading) { + return ( + + + + + + ); + } - if (!eventId || !dataFormattedForFieldBrowser || !browserFields || !data || data.length === 0) { + if (!eventId || !dataFormattedForFieldBrowser || !browserFields || error) { return ( { } return ( - + <> + + + + {data.length > 0 ? ( + + ) : ( +
    + {PREVALENCE_NO_DATA_MESSAGE} +
    + )} +
    + ); }; diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details_count_cell.test.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details_count_cell.test.tsx deleted file mode 100644 index 5b81565ec2804..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details_count_cell.test.tsx +++ /dev/null @@ -1,90 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { render } from '@testing-library/react'; -import React from 'react'; -import { - EventKind, - useFetchFieldValuePairByEventType, -} from '../../shared/hooks/use_fetch_field_value_pair_by_event_type'; -import { - PREVALENCE_DETAILS_COUNT_CELL_ERROR_TEST_ID, - PREVALENCE_DETAILS_COUNT_CELL_LOADING_TEST_ID, - PREVALENCE_DETAILS_COUNT_CELL_VALUE_TEST_ID, -} from './test_ids'; -import { PrevalenceDetailsCountCell } from './prevalence_details_count_cell'; - -jest.mock('../../shared/hooks/use_fetch_field_value_pair_by_event_type'); - -const highlightedField = { - name: 'field', - values: ['values'], -}; -const type = { - eventKind: EventKind.signal, - include: true, -}; - -describe('PrevalenceDetailsAlertCountCell', () => { - it('should show loading spinner', () => { - jest.mocked(useFetchFieldValuePairByEventType).mockReturnValue({ - loading: true, - error: false, - count: 0, - }); - - const { getByTestId } = render( - - ); - - expect(getByTestId(PREVALENCE_DETAILS_COUNT_CELL_LOADING_TEST_ID)).toBeInTheDocument(); - }); - - it('should return error icon', () => { - jest.mocked(useFetchFieldValuePairByEventType).mockReturnValue({ - loading: false, - error: true, - count: 0, - }); - - const { getByTestId } = render( - - ); - - expect(getByTestId(PREVALENCE_DETAILS_COUNT_CELL_ERROR_TEST_ID)).toBeInTheDocument(); - }); - - it('should show count value with eventKind undefined', () => { - jest.mocked(useFetchFieldValuePairByEventType).mockReturnValue({ - loading: false, - error: false, - count: 1, - }); - - const { getByTestId } = render( - - ); - - expect(getByTestId(PREVALENCE_DETAILS_COUNT_CELL_VALUE_TEST_ID)).toBeInTheDocument(); - expect(getByTestId(PREVALENCE_DETAILS_COUNT_CELL_VALUE_TEST_ID)).toHaveTextContent('1'); - }); - - it('should show count value with eventKind passed via props', () => { - jest.mocked(useFetchFieldValuePairByEventType).mockReturnValue({ - loading: false, - error: false, - count: 1, - }); - - const { getByTestId } = render( - - ); - - expect(getByTestId(PREVALENCE_DETAILS_COUNT_CELL_VALUE_TEST_ID)).toBeInTheDocument(); - expect(getByTestId(PREVALENCE_DETAILS_COUNT_CELL_VALUE_TEST_ID)).toHaveTextContent('1'); - }); -}); diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details_count_cell.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details_count_cell.tsx deleted file mode 100644 index a2e3959a9b1c6..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details_count_cell.tsx +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import type { VFC } from 'react'; -import React from 'react'; -import { EuiIcon, EuiLoadingSpinner } from '@elastic/eui'; -import { - PREVALENCE_DETAILS_COUNT_CELL_ERROR_TEST_ID, - PREVALENCE_DETAILS_COUNT_CELL_LOADING_TEST_ID, - PREVALENCE_DETAILS_COUNT_CELL_VALUE_TEST_ID, -} from './test_ids'; -import type { EventType } from '../../shared/hooks/use_fetch_field_value_pair_by_event_type'; -import { useFetchFieldValuePairByEventType } from '../../shared/hooks/use_fetch_field_value_pair_by_event_type'; - -export interface PrevalenceDetailsCountCellProps { - /** - * The highlighted field name and values - * */ - highlightedField: { name: string; values: string[] }; - /** - * Limit the search to include or exclude a specific value for the event.kind field - * (alert, asset, enrichment, event, metric, state, pipeline_error, signal) - */ - type: EventType; -} - -/** - * Component displaying a value in many PrevalenceDetails table cells. It is used for the third and fourth columns, - * which display the number of alerts and documents for a given field/value pair. - * For the doc columns, type should "signal" for its eventKind property, and exclude set to true. - * For the alert columns, type should have "signal" for its eventKind property, and include should be true. - */ -export const PrevalenceDetailsCountCell: VFC = ({ - highlightedField, - type, -}) => { - const { loading, error, count } = useFetchFieldValuePairByEventType({ - highlightedField, - type, - }); - - if (loading) { - return ; - } - - if (error) { - return ( - - ); - } - - return
    {count}
    ; -}; - -PrevalenceDetailsCountCell.displayName = 'PrevalenceDetailsCountCell'; diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details_prevalence_cell.test.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details_prevalence_cell.test.tsx deleted file mode 100644 index b4bf809665f98..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details_prevalence_cell.test.tsx +++ /dev/null @@ -1,161 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { render } from '@testing-library/react'; -import React from 'react'; -import { - PREVALENCE_DETAILS_PREVALENCE_CELL_ERROR_TEST_ID, - PREVALENCE_DETAILS_PREVALENCE_CELL_LOADING_TEST_ID, - PREVALENCE_DETAILS_PREVALENCE_CELL_VALUE_TEST_ID, -} from './test_ids'; -import { PrevalenceDetailsPrevalenceCell } from './prevalence_details_prevalence_cell'; -import { useFetchFieldValuePairWithAggregation } from '../../shared/hooks/use_fetch_field_value_pair_with_aggregation'; -import { useFetchUniqueByField } from '../../shared/hooks/use_fetch_unique_by_field'; - -jest.mock('../../shared/hooks/use_fetch_field_value_pair_with_aggregation'); -jest.mock('../../shared/hooks/use_fetch_unique_by_field'); - -const highlightedField = { - name: 'field', - values: ['values'], -}; -const aggregationField = 'aggregationField'; - -describe('PrevalenceDetailsAlertCountCell', () => { - it('should show loading spinner when useFetchFieldValuePairWithAggregation loading', () => { - jest.mocked(useFetchFieldValuePairWithAggregation).mockReturnValue({ - loading: true, - error: false, - count: 0, - }); - jest.mocked(useFetchUniqueByField).mockReturnValue({ - loading: false, - error: false, - count: 0, - }); - - const { getByTestId } = render( - - ); - - expect(getByTestId(PREVALENCE_DETAILS_PREVALENCE_CELL_LOADING_TEST_ID)).toBeInTheDocument(); - }); - - it('should show loading spinner when useFetchUniqueByField loading', () => { - jest.mocked(useFetchFieldValuePairWithAggregation).mockReturnValue({ - loading: false, - error: false, - count: 0, - }); - jest.mocked(useFetchUniqueByField).mockReturnValue({ - loading: true, - error: false, - count: 0, - }); - - const { getByTestId } = render( - - ); - - expect(getByTestId(PREVALENCE_DETAILS_PREVALENCE_CELL_LOADING_TEST_ID)).toBeInTheDocument(); - }); - - it('should return null if useFetchFieldValuePairWithAggregation errors out', () => { - jest.mocked(useFetchFieldValuePairWithAggregation).mockReturnValue({ - loading: false, - error: true, - count: 0, - }); - jest.mocked(useFetchUniqueByField).mockReturnValue({ - loading: false, - error: false, - count: 0, - }); - - const { getByTestId } = render( - - ); - - expect(getByTestId(PREVALENCE_DETAILS_PREVALENCE_CELL_ERROR_TEST_ID)).toBeInTheDocument(); - }); - - it('should return null if useFetchUniqueByField errors out', () => { - jest.mocked(useFetchFieldValuePairWithAggregation).mockReturnValue({ - loading: false, - error: false, - count: 0, - }); - jest.mocked(useFetchUniqueByField).mockReturnValue({ - loading: false, - error: true, - count: 0, - }); - - const { getByTestId } = render( - - ); - - expect(getByTestId(PREVALENCE_DETAILS_PREVALENCE_CELL_ERROR_TEST_ID)).toBeInTheDocument(); - }); - - it('should return null if prevalence is infinite', () => { - jest.mocked(useFetchFieldValuePairWithAggregation).mockReturnValue({ - loading: false, - error: false, - count: 0, - }); - jest.mocked(useFetchUniqueByField).mockReturnValue({ - loading: false, - error: false, - count: 0, - }); - - const { getByTestId } = render( - - ); - - expect(getByTestId(PREVALENCE_DETAILS_PREVALENCE_CELL_ERROR_TEST_ID)).toBeInTheDocument(); - }); - - it('should show prevalence value', () => { - jest.mocked(useFetchFieldValuePairWithAggregation).mockReturnValue({ - loading: false, - error: false, - count: 1, - }); - jest.mocked(useFetchUniqueByField).mockReturnValue({ - loading: false, - error: false, - count: 1, - }); - - const { getByTestId } = render( - - ); - - expect(getByTestId(PREVALENCE_DETAILS_PREVALENCE_CELL_VALUE_TEST_ID)).toBeInTheDocument(); - expect(getByTestId(PREVALENCE_DETAILS_PREVALENCE_CELL_VALUE_TEST_ID)).toHaveTextContent('1'); - }); -}); diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details_prevalence_cell.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details_prevalence_cell.tsx deleted file mode 100644 index 9c05bc8e8ea32..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/left/components/prevalence_details_prevalence_cell.tsx +++ /dev/null @@ -1,78 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import type { VFC } from 'react'; -import React from 'react'; -import { EuiIcon, EuiLoadingSpinner } from '@elastic/eui'; -import { - PREVALENCE_DETAILS_PREVALENCE_CELL_ERROR_TEST_ID, - PREVALENCE_DETAILS_PREVALENCE_CELL_LOADING_TEST_ID, - PREVALENCE_DETAILS_PREVALENCE_CELL_VALUE_TEST_ID, -} from './test_ids'; -import { useFetchFieldValuePairWithAggregation } from '../../shared/hooks/use_fetch_field_value_pair_with_aggregation'; -import { useFetchUniqueByField } from '../../shared/hooks/use_fetch_unique_by_field'; - -export interface PrevalenceDetailsPrevalenceCellProps { - /** - * The highlighted field name and values - * */ - highlightedField: { name: string; values: string[] }; - /** - * The aggregation field - */ - aggregationField: string; -} - -/** - * Component displaying a value in many PrevalenceDetails table cells. It is used for the fifth and sixth columns, - * which displays the prevalence percentage for host.name and user.name fields. - */ -export const PrevalenceDetailsPrevalenceCell: VFC = ({ - highlightedField, - aggregationField, -}) => { - const { - loading: aggregationLoading, - error: aggregationError, - count: aggregationCount, - } = useFetchFieldValuePairWithAggregation({ - highlightedField, - aggregationField, - }); - - const { - loading: uniqueLoading, - error: uniqueError, - count: uniqueCount, - } = useFetchUniqueByField({ field: aggregationField }); - - if (aggregationLoading || uniqueLoading) { - return ( - - ); - } - - const prevalence = aggregationCount / uniqueCount; - if (aggregationError || uniqueError || !isFinite(prevalence)) { - return ( - - ); - } - - return ( -
    - {Math.round(prevalence * 100)} - {'%'} -
    - ); -}; - -PrevalenceDetailsPrevalenceCell.displayName = 'PrevalenceDetailsPrevalenceCell'; diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/related_alerts_by_ancestry.test.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/related_alerts_by_ancestry.test.tsx new file mode 100644 index 0000000000000..c54b76468841b --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/left/components/related_alerts_by_ancestry.test.tsx @@ -0,0 +1,114 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { render } from '@testing-library/react'; +import { TestProviders } from '../../../common/mock'; +import { + CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TABLE_TEST_ID, + CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TEST_ID, +} from './test_ids'; +import { RelatedAlertsByAncestry } from './related_alerts_by_ancestry'; +import { useFetchRelatedAlertsByAncestry } from '../../shared/hooks/use_fetch_related_alerts_by_ancestry'; +import { + EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID, + EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID, +} from '../../shared/components/test_ids'; +import { usePaginatedAlerts } from '../hooks/use_paginated_alerts'; + +jest.mock('../../shared/hooks/use_fetch_related_alerts_by_ancestry'); +jest.mock('../hooks/use_paginated_alerts'); + +const documentId = 'documentId'; +const indices = ['index1']; +const scopeId = 'scopeId'; +const eventId = 'eventId'; + +const TOGGLE_ICON = EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID( + CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TEST_ID +); +const TITLE_ICON = EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID( + CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TEST_ID +); +const TITLE_TEXT = EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID( + CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TEST_ID +); + +describe('', () => { + it('should render many related alerts correctly', () => { + (useFetchRelatedAlertsByAncestry as jest.Mock).mockReturnValue({ + loading: false, + error: false, + data: ['1', '2'], + dataCount: 2, + }); + (usePaginatedAlerts as jest.Mock).mockReturnValue({ + loading: false, + error: false, + data: [ + { + _id: '1', + _index: 'index', + fields: { + '@timestamp': ['2022-01-01'], + 'kibana.alert.rule.name': ['Rule1'], + 'kibana.alert.reason': ['Reason1'], + 'kibana.alert.severity': ['Severity1'], + }, + }, + { + _id: '2', + _index: 'index', + fields: { + '@timestamp': ['2022-01-02'], + 'kibana.alert.rule.name': ['Rule2'], + 'kibana.alert.reason': ['Reason2'], + 'kibana.alert.severity': ['Severity2'], + }, + }, + ], + }); + + const { getByTestId } = render( + + + + ); + expect(getByTestId(TOGGLE_ICON)).toBeInTheDocument(); + expect(getByTestId(TITLE_ICON)).toBeInTheDocument(); + expect(getByTestId(TITLE_TEXT)).toBeInTheDocument(); + expect( + getByTestId(`${CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TEST_ID}InvestigateInTimeline`) + ).toBeInTheDocument(); + expect(getByTestId(CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TABLE_TEST_ID)).toBeInTheDocument(); + }); + + it('should render null if error', () => { + (useFetchRelatedAlertsByAncestry as jest.Mock).mockReturnValue({ + loading: false, + error: true, + }); + + const { container } = render( + + + + ); + expect(container).toBeEmptyDOMElement(); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/related_alerts_by_ancestry.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/related_alerts_by_ancestry.tsx new file mode 100644 index 0000000000000..517f62ef590ba --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/left/components/related_alerts_by_ancestry.tsx @@ -0,0 +1,65 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { CorrelationsDetailsAlertsTable } from './correlations_details_alerts_table'; +import { CORRELATIONS_ANCESTRY_ALERTS } from '../../shared/translations'; +import { useFetchRelatedAlertsByAncestry } from '../../shared/hooks/use_fetch_related_alerts_by_ancestry'; +import { CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TEST_ID } from './test_ids'; + +export interface RelatedAlertsByAncestryProps { + /** + * Value of the kibana.alert.ancestors.id field + */ + documentId: string; + /** + * Values of the kibana.alert.rule.parameters.index field + */ + indices: string[]; + /** + * Maintain backwards compatibility // TODO remove when possible + */ + scopeId: string; + /** + * Id of the document + */ + eventId: string; +} + +/** + * Show related alerts by ancestry in an expandable panel with a table + */ +export const RelatedAlertsByAncestry: React.VFC = ({ + documentId, + indices, + scopeId, + eventId, +}) => { + const { loading, error, data, dataCount } = useFetchRelatedAlertsByAncestry({ + documentId, + indices, + scopeId, + }); + const title = `${dataCount} ${CORRELATIONS_ANCESTRY_ALERTS(dataCount)}`; + + if (error) { + return null; + } + + return ( + + ); +}; + +RelatedAlertsByAncestry.displayName = 'RelatedAlertsByAncestry'; diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/related_alerts_by_same_source_event.test.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/related_alerts_by_same_source_event.test.tsx new file mode 100644 index 0000000000000..77dbe5ef21a2c --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/left/components/related_alerts_by_same_source_event.test.tsx @@ -0,0 +1,111 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { render } from '@testing-library/react'; +import { TestProviders } from '../../../common/mock'; +import { + CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TEST_ID, + CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TABLE_TEST_ID, +} from './test_ids'; +import { useFetchRelatedAlertsBySameSourceEvent } from '../../shared/hooks/use_fetch_related_alerts_by_same_source_event'; +import { RelatedAlertsBySameSourceEvent } from './related_alerts_by_same_source_event'; +import { + EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID, + EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID, +} from '../../shared/components/test_ids'; +import { usePaginatedAlerts } from '../hooks/use_paginated_alerts'; + +jest.mock('../../shared/hooks/use_fetch_related_alerts_by_same_source_event'); +jest.mock('../hooks/use_paginated_alerts'); + +const originalEventId = 'originalEventId'; +const scopeId = 'scopeId'; +const eventId = 'eventId'; + +const TOGGLE_ICON = EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID( + CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TEST_ID +); +const TITLE_ICON = EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID( + CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TEST_ID +); +const TITLE_TEXT = EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID( + CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TEST_ID +); + +describe('', () => { + it('should render component correctly', () => { + (useFetchRelatedAlertsBySameSourceEvent as jest.Mock).mockReturnValue({ + loading: false, + error: false, + data: ['1', '2'], + dataCount: 2, + }); + (usePaginatedAlerts as jest.Mock).mockReturnValue({ + loading: false, + erro: false, + data: [ + { + _id: '1', + _index: 'index', + fields: { + '@timestamp': ['2022-01-01'], + 'kibana.alert.rule.name': ['Rule1'], + 'kibana.alert.reason': ['Reason1'], + 'kibana.alert.severity': ['Severity1'], + }, + }, + { + _id: '2', + _index: 'index', + fields: { + '@timestamp': ['2022-01-02'], + 'kibana.alert.rule.name': ['Rule2'], + 'kibana.alert.reason': ['Reason2'], + 'kibana.alert.severity': ['Severity2'], + }, + }, + ], + }); + + const { getByTestId } = render( + + + + ); + expect(getByTestId(TOGGLE_ICON)).toBeInTheDocument(); + expect(getByTestId(TITLE_ICON)).toBeInTheDocument(); + expect(getByTestId(TITLE_TEXT)).toBeInTheDocument(); + expect( + getByTestId(`${CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TEST_ID}InvestigateInTimeline`) + ).toBeInTheDocument(); + expect(getByTestId(CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TABLE_TEST_ID)).toBeInTheDocument(); + }); + + it('should render null if error', () => { + (useFetchRelatedAlertsBySameSourceEvent as jest.Mock).mockReturnValue({ + loading: false, + error: true, + }); + + const { container } = render( + + + + ); + expect(container).toBeEmptyDOMElement(); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/related_alerts_by_same_source_event.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/related_alerts_by_same_source_event.tsx new file mode 100644 index 0000000000000..eea480301043f --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/left/components/related_alerts_by_same_source_event.tsx @@ -0,0 +1,59 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { CORRELATIONS_SAME_SOURCE_ALERTS } from '../../shared/translations'; +import { useFetchRelatedAlertsBySameSourceEvent } from '../../shared/hooks/use_fetch_related_alerts_by_same_source_event'; +import { CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TEST_ID } from './test_ids'; +import { CorrelationsDetailsAlertsTable } from './correlations_details_alerts_table'; + +export interface RelatedAlertsBySameSourceEventProps { + /** + * Value of the kibana.alert.original_event.id field + */ + originalEventId: string; + /** + * Maintain backwards compatibility // TODO remove when possible + */ + scopeId: string; + /** + * Id of the document + */ + eventId: string; +} + +/** + * Show related alerts by same source event in an expandable panel with a table + */ +export const RelatedAlertsBySameSourceEvent: React.VFC = ({ + originalEventId, + scopeId, + eventId, +}) => { + const { loading, error, data, dataCount } = useFetchRelatedAlertsBySameSourceEvent({ + originalEventId, + scopeId, + }); + const title = `${dataCount} ${CORRELATIONS_SAME_SOURCE_ALERTS(dataCount)}`; + + if (error) { + return null; + } + + return ( + + ); +}; + +RelatedAlertsBySameSourceEvent.displayName = 'RelatedAlertsBySameSourceEvent'; diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/related_alerts_by_session.test.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/related_alerts_by_session.test.tsx new file mode 100644 index 0000000000000..de1725eef64c9 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/left/components/related_alerts_by_session.test.tsx @@ -0,0 +1,103 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { render } from '@testing-library/react'; +import { TestProviders } from '../../../common/mock'; +import { + CORRELATIONS_DETAILS_BY_SESSION_SECTION_TABLE_TEST_ID, + CORRELATIONS_DETAILS_BY_SESSION_SECTION_TEST_ID, +} from './test_ids'; +import { RelatedAlertsBySession } from './related_alerts_by_session'; +import { useFetchRelatedAlertsBySession } from '../../shared/hooks/use_fetch_related_alerts_by_session'; +import { usePaginatedAlerts } from '../hooks/use_paginated_alerts'; +import { + EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID, + EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID, +} from '../../shared/components/test_ids'; + +jest.mock('../../shared/hooks/use_fetch_related_alerts_by_session'); +jest.mock('../hooks/use_paginated_alerts'); + +const entityId = 'entityId'; +const scopeId = 'scopeId'; +const eventId = 'eventId'; + +const TOGGLE_ICON = EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID( + CORRELATIONS_DETAILS_BY_SESSION_SECTION_TEST_ID +); +const TITLE_ICON = EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID( + CORRELATIONS_DETAILS_BY_SESSION_SECTION_TEST_ID +); +const TITLE_TEXT = EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID( + CORRELATIONS_DETAILS_BY_SESSION_SECTION_TEST_ID +); + +describe('', () => { + it('should render component correctly', () => { + (useFetchRelatedAlertsBySession as jest.Mock).mockReturnValue({ + loading: false, + error: false, + data: ['1', '2'], + dataCount: 2, + }); + (usePaginatedAlerts as jest.Mock).mockReturnValue({ + loading: false, + erro: false, + data: [ + { + _id: '1', + _index: 'index', + fields: { + '@timestamp': ['2022-01-01'], + 'kibana.alert.rule.name': ['Rule1'], + 'kibana.alert.reason': ['Reason1'], + 'kibana.alert.severity': ['Severity1'], + }, + }, + { + _id: '2', + _index: 'index', + fields: { + '@timestamp': ['2022-01-02'], + 'kibana.alert.rule.name': ['Rule2'], + 'kibana.alert.reason': ['Reason2'], + 'kibana.alert.severity': ['Severity2'], + }, + }, + ], + }); + + const { getByTestId } = render( + + + + ); + expect(getByTestId(TOGGLE_ICON)).toBeInTheDocument(); + expect(getByTestId(TITLE_ICON)).toBeInTheDocument(); + expect(getByTestId(TITLE_TEXT)).toBeInTheDocument(); + expect( + getByTestId(`${CORRELATIONS_DETAILS_BY_SESSION_SECTION_TEST_ID}InvestigateInTimeline`) + ).toBeInTheDocument(); + expect(getByTestId(CORRELATIONS_DETAILS_BY_SESSION_SECTION_TABLE_TEST_ID)).toBeInTheDocument(); + }); + + it('should render null if error', () => { + (useFetchRelatedAlertsBySession as jest.Mock).mockReturnValue({ + loading: false, + error: true, + }); + + const { container } = render( + + + + ); + expect(container).toBeEmptyDOMElement(); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/related_alerts_by_session.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/related_alerts_by_session.tsx new file mode 100644 index 0000000000000..726390529fe63 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/left/components/related_alerts_by_session.tsx @@ -0,0 +1,59 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { CORRELATIONS_SESSION_ALERTS } from '../../shared/translations'; +import { CorrelationsDetailsAlertsTable } from './correlations_details_alerts_table'; +import { useFetchRelatedAlertsBySession } from '../../shared/hooks/use_fetch_related_alerts_by_session'; +import { CORRELATIONS_DETAILS_BY_SESSION_SECTION_TEST_ID } from './test_ids'; + +export interface RelatedAlertsBySessionProps { + /** + * Value of the process.entry_leader.entity_id field + */ + entityId: string; + /** + * Maintain backwards compatibility // TODO remove when possible + */ + scopeId: string; + /** + * Id of the document + */ + eventId: string; +} + +/** + * Show related alerts by session in an expandable panel with a table + */ +export const RelatedAlertsBySession: React.VFC = ({ + entityId, + scopeId, + eventId, +}) => { + const { loading, error, data, dataCount } = useFetchRelatedAlertsBySession({ + entityId, + scopeId, + }); + const title = `${dataCount} ${CORRELATIONS_SESSION_ALERTS(dataCount)}`; + + if (error) { + return null; + } + + return ( + + ); +}; + +RelatedAlertsBySession.displayName = 'RelatedAlertsBySession'; diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/related_cases.test.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/related_cases.test.tsx new file mode 100644 index 0000000000000..ce11b234e8359 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/left/components/related_cases.test.tsx @@ -0,0 +1,73 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { render } from '@testing-library/react'; +import { + CORRELATIONS_DETAILS_CASES_SECTION_TABLE_TEST_ID, + CORRELATIONS_DETAILS_CASES_SECTION_TEST_ID, +} from './test_ids'; +import { RelatedCases } from './related_cases'; +import { useFetchRelatedCases } from '../../shared/hooks/use_fetch_related_cases'; +import { + EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID, + EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID, +} from '../../shared/components/test_ids'; + +jest.mock('../../shared/hooks/use_fetch_related_cases'); +jest.mock('../../../common/components/links', () => ({ + CaseDetailsLink: jest + .fn() + .mockImplementation(({ title }) => <>{``}), +})); + +const eventId = 'eventId'; + +const TOGGLE_ICON = EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID( + CORRELATIONS_DETAILS_CASES_SECTION_TEST_ID +); +const TITLE_ICON = EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID( + CORRELATIONS_DETAILS_CASES_SECTION_TEST_ID +); +const TITLE_TEXT = EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID( + CORRELATIONS_DETAILS_CASES_SECTION_TEST_ID +); + +describe('', () => { + it('should render many related cases correctly', () => { + (useFetchRelatedCases as jest.Mock).mockReturnValue({ + loading: false, + error: false, + data: [ + { + id: 'id', + title: 'title', + description: 'description', + status: 'open', + }, + ], + dataCount: 1, + }); + + const { getByTestId } = render(); + expect(getByTestId(TOGGLE_ICON)).toBeInTheDocument(); + expect(getByTestId(TITLE_ICON)).toBeInTheDocument(); + expect(getByTestId(TITLE_TEXT)).toHaveTextContent('1 related case'); + expect(getByTestId(CORRELATIONS_DETAILS_CASES_SECTION_TABLE_TEST_ID)).toBeInTheDocument(); + }); + + it('should render null if error', () => { + (useFetchRelatedCases as jest.Mock).mockReturnValue({ + loading: false, + error: true, + }); + + const { container } = render(); + expect(container).toBeEmptyDOMElement(); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/related_cases.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/related_cases.tsx new file mode 100644 index 0000000000000..71b6edf46df4f --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/left/components/related_cases.tsx @@ -0,0 +1,91 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import type { EuiBasicTableColumn } from '@elastic/eui'; +import { EuiInMemoryTable, EuiSkeletonText } from '@elastic/eui'; +import type { RelatedCase } from '@kbn/cases-plugin/common'; +import { CaseDetailsLink } from '../../../common/components/links'; +import { CORRELATIONS_RELATED_CASES } from '../../shared/translations'; +import { + CORRELATIONS_DETAILS_CASES_SECTION_TABLE_TEST_ID, + CORRELATIONS_DETAILS_CASES_SECTION_TEST_ID, +} from './test_ids'; +import { useFetchRelatedCases } from '../../shared/hooks/use_fetch_related_cases'; +import { ExpandablePanel } from '../../shared/components/expandable_panel'; +import { + CORRELATIONS_CASE_NAME_COLUMN_TITLE, + CORRELATIONS_CASE_STATUS_COLUMN_TITLE, +} from './translations'; + +const ICON = 'warning'; + +const columns: Array> = [ + { + field: 'title', + name: CORRELATIONS_CASE_NAME_COLUMN_TITLE, + truncateText: true, + render: (value: string, caseData: RelatedCase) => ( + + {caseData.title} + + ), + }, + { + field: 'status', + name: CORRELATIONS_CASE_STATUS_COLUMN_TITLE, + truncateText: true, + }, +]; + +export interface RelatedCasesProps { + /** + * Id of the document + */ + eventId: string; +} + +/** + * + */ +export const RelatedCases: React.VFC = ({ eventId }) => { + const { loading, error, data, dataCount } = useFetchRelatedCases({ eventId }); + const title = `${dataCount} ${CORRELATIONS_RELATED_CASES(dataCount)}`; + + if (loading) { + return ; + } + + if (error) { + return null; + } + + return ( + + + + ); +}; + +RelatedCases.displayName = 'RelatedCases'; diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/session_view.test.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/session_view.test.tsx index 16c15e971f7a7..8438ab478cfb4 100644 --- a/x-pack/plugins/security_solution/public/flyout/left/components/session_view.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/left/components/session_view.test.tsx @@ -11,21 +11,21 @@ import '@testing-library/jest-dom'; import { LeftPanelContext } from '../context'; import { TestProviders } from '../../../common/mock'; import { SESSION_VIEW_ERROR_TEST_ID, SESSION_VIEW_TEST_ID } from './test_ids'; +import { SessionView } from './session_view'; import { - SessionView, - SESSION_ENTITY_ID, - SESSION_START_TIME, - KIBANA_ANCESTOR_INDEX, -} from './session_view'; + ANCESTOR_INDEX, + ENTRY_LEADER_ENTITY_ID, + ENTRY_LEADER_START, +} from '../../shared/constants/field_names'; interface MockData { [key: string]: string; } const mockData: MockData = { - [SESSION_ENTITY_ID]: 'id', - [SESSION_START_TIME]: '2023-04-25T04:33:23.676Z', - [KIBANA_ANCESTOR_INDEX]: '.ds-logs-endpoint.events.process-default', + [ENTRY_LEADER_ENTITY_ID]: 'id', + [ENTRY_LEADER_START]: '2023-04-25T04:33:23.676Z', + [ANCESTOR_INDEX]: '.ds-logs-endpoint.events.process-default', }; const mockFieldsData = (prop: string) => { diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/session_view.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/session_view.tsx index 94921bce0f82d..48f1164f75168 100644 --- a/x-pack/plugins/security_solution/public/flyout/left/components/session_view.tsx +++ b/x-pack/plugins/security_solution/public/flyout/left/components/session_view.tsx @@ -8,6 +8,11 @@ import type { FC } from 'react'; import React from 'react'; import { EuiEmptyPrompt } from '@elastic/eui'; +import { + ANCESTOR_INDEX, + ENTRY_LEADER_ENTITY_ID, + ENTRY_LEADER_START, +} from '../../shared/constants/field_names'; import { getField } from '../../shared/utils'; import { ERROR_MESSAGE, ERROR_TITLE } from '../../shared/translations'; import { SESSION_VIEW_ERROR_MESSAGE } from './translations'; @@ -15,10 +20,7 @@ import { SESSION_VIEW_ERROR_TEST_ID, SESSION_VIEW_TEST_ID } from './test_ids'; import { useKibana } from '../../../common/lib/kibana'; import { useLeftPanelContext } from '../context'; -export const SESSION_VIEW_ID = 'session_view'; -export const SESSION_ENTITY_ID = 'process.entry_leader.entity_id'; -export const SESSION_START_TIME = 'process.entry_leader.start'; -export const KIBANA_ANCESTOR_INDEX = 'kibana.alert.ancestors.index'; +export const SESSION_VIEW_ID = 'session-view'; /** * Session view displayed in the document details expandable flyout left section under the Visualize tab @@ -27,9 +29,9 @@ export const SessionView: FC = () => { const { sessionView } = useKibana().services; const { getFieldsData, indexName } = useLeftPanelContext(); - const ancestorIndex = getField(getFieldsData(KIBANA_ANCESTOR_INDEX)); // e.g in case of alert, we want to grab it's origin index - const sessionEntityId = getField(getFieldsData(SESSION_ENTITY_ID)); - const sessionStartTime = getField(getFieldsData(SESSION_START_TIME)); + const ancestorIndex = getField(getFieldsData(ANCESTOR_INDEX)); // e.g in case of alert, we want to grab it's origin index + const sessionEntityId = getField(getFieldsData(ENTRY_LEADER_ENTITY_ID)); + const sessionStartTime = getField(getFieldsData(ENTRY_LEADER_START)); const index = ancestorIndex || indexName; if (!index || !sessionEntityId || !sessionStartTime) { diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/suppressed_alerts.test.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/suppressed_alerts.test.tsx new file mode 100644 index 0000000000000..646cbb2fc9bd5 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/left/components/suppressed_alerts.test.tsx @@ -0,0 +1,87 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { render } from '@testing-library/react'; +import { TestProviders } from '../../../common/mock'; +import { + CORRELATIONS_DETAILS_SUPPRESSED_ALERTS_SECTION_TEST_ID, + SUPPRESSED_ALERTS_SECTION_TECHNICAL_PREVIEW_TEST_ID, +} from './test_ids'; +import { SuppressedAlerts } from './suppressed_alerts'; +import { + EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID, + EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID, +} from '../../shared/components/test_ids'; +import { LeftPanelContext } from '../context'; +import { mockContextValue } from '../mocks/mock_context'; + +const mockDataAsNestedObject = { + _id: 'testId', +}; + +const TOGGLE_ICON = EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID( + CORRELATIONS_DETAILS_SUPPRESSED_ALERTS_SECTION_TEST_ID +); +const TITLE_ICON = EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID( + CORRELATIONS_DETAILS_SUPPRESSED_ALERTS_SECTION_TEST_ID +); +const TITLE_TEXT = EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID( + CORRELATIONS_DETAILS_SUPPRESSED_ALERTS_SECTION_TEST_ID +); +const INVESTIGATE_IN_TIMELINE_BUTTON_TEST_ID = `${CORRELATIONS_DETAILS_SUPPRESSED_ALERTS_SECTION_TEST_ID}InvestigateInTimeline`; + +describe('', () => { + it('should render zero component correctly', () => { + const { getByTestId, queryByTestId } = render( + + + + + + ); + + expect(getByTestId(TITLE_ICON)).toBeInTheDocument(); + expect(getByTestId(TITLE_TEXT)).toHaveTextContent('0 suppressed alert'); + expect(queryByTestId(INVESTIGATE_IN_TIMELINE_BUTTON_TEST_ID)).not.toBeInTheDocument(); + expect(queryByTestId(TOGGLE_ICON)).not.toBeInTheDocument(); + expect(getByTestId(SUPPRESSED_ALERTS_SECTION_TECHNICAL_PREVIEW_TEST_ID)).toBeInTheDocument(); + }); + + it('should render single component correctly', () => { + const { getByTestId, queryByTestId } = render( + + + + + + ); + + expect(getByTestId(TITLE_ICON)).toBeInTheDocument(); + expect(getByTestId(TITLE_TEXT)).toHaveTextContent('1 suppressed alert'); + expect(getByTestId(INVESTIGATE_IN_TIMELINE_BUTTON_TEST_ID)).toBeInTheDocument(); + expect(queryByTestId(TOGGLE_ICON)).not.toBeInTheDocument(); + expect(getByTestId(SUPPRESSED_ALERTS_SECTION_TECHNICAL_PREVIEW_TEST_ID)).toBeInTheDocument(); + }); + + it('should render multiple component correctly', () => { + const { getByTestId, queryByTestId } = render( + + + + + + ); + + expect(getByTestId(TITLE_ICON)).toBeInTheDocument(); + expect(getByTestId(TITLE_TEXT)).toHaveTextContent('2 suppressed alerts'); + expect(getByTestId(INVESTIGATE_IN_TIMELINE_BUTTON_TEST_ID)).toBeInTheDocument(); + expect(queryByTestId(TOGGLE_ICON)).not.toBeInTheDocument(); + expect(getByTestId(SUPPRESSED_ALERTS_SECTION_TECHNICAL_PREVIEW_TEST_ID)).toBeInTheDocument(); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/suppressed_alerts.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/suppressed_alerts.tsx new file mode 100644 index 0000000000000..9b543e23f6535 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/left/components/suppressed_alerts.tsx @@ -0,0 +1,74 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import type { EcsSecurityExtension as Ecs } from '@kbn/securitysolution-ecs'; +import { EuiBetaBadge, EuiFlexItem, EuiFlexGroup } from '@elastic/eui'; +import { CORRELATIONS_SUPPRESSED_ALERTS } from '../../shared/translations'; +import { ExpandablePanel } from '../../shared/components/expandable_panel'; +import { + CORRELATIONS_DETAILS_SUPPRESSED_ALERTS_SECTION_TEST_ID, + SUPPRESSED_ALERTS_SECTION_TECHNICAL_PREVIEW_TEST_ID, +} from './test_ids'; +import { SUPPRESSED_ALERTS_COUNT_TECHNICAL_PREVIEW } from '../../../common/components/event_details/insights/translations'; +import { InvestigateInTimelineAction } from '../../../detections/components/alerts_table/timeline_actions/investigate_in_timeline_action'; + +export interface SuppressedAlertsProps { + /** + * An object with top level fields from the ECS object + */ + dataAsNestedObject: Ecs | null; + /** + * Value of the kibana.alert.suppression.doc_count field + */ + alertSuppressionCount: number; +} + +/** + * Displays number of suppressed alerts and investigate in timeline icon + */ +export const SuppressedAlerts: React.VFC = ({ + dataAsNestedObject, + alertSuppressionCount, +}) => { + const title = ( + + + {`${alertSuppressionCount} ${CORRELATIONS_SUPPRESSED_ALERTS(alertSuppressionCount)}`} + + + + + + ); + + const headerContent = alertSuppressionCount > 0 && ( +
    + +
    + ); + + return ( + + ); +}; + +SuppressedAlerts.displayName = 'SuppressedAlerts'; diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/test_ids.ts b/x-pack/plugins/security_solution/public/flyout/left/components/test_ids.ts index ea58b280a101e..6c736770544bd 100644 --- a/x-pack/plugins/security_solution/public/flyout/left/components/test_ids.ts +++ b/x-pack/plugins/security_solution/public/flyout/left/components/test_ids.ts @@ -6,6 +6,7 @@ */ /* Visualization tab */ + const PREFIX = 'securitySolutionDocumentDetailsFlyout' as const; export const ANALYZER_GRAPH_TEST_ID = `${PREFIX}AnalyzerGraph` as const; @@ -17,11 +18,14 @@ export const SESSION_VIEW_ERROR_TEST_ID = `${PREFIX}SessionViewError` as const; /* Prevalence */ +export const PREVALENCE_DETAILS_DATE_PICKER_TEST_ID = + `${PREFIX}PrevalenceDetailsDatePicker` as const; export const PREVALENCE_DETAILS_TABLE_TEST_ID = `${PREFIX}PrevalenceDetailsTable` as const; -export const PREVALENCE_DETAILS_TABLE_TYPE_CELL_TEST_ID = - `${PREFIX}PrevalenceDetailsTableTypeCell` as const; -export const PREVALENCE_DETAILS_TABLE_NAME_CELL_TEST_ID = - `${PREFIX}PrevalenceDetailsTableNameCell` as const; +export const PREVALENCE_DETAILS_LOADING_TEST_ID = `${PREFIX}PrevalenceDetailsLoading` as const; +export const PREVALENCE_DETAILS_TABLE_FIELD_CELL_TEST_ID = + `${PREFIX}PrevalenceDetailsTableFieldCell` as const; +export const PREVALENCE_DETAILS_TABLE_VALUE_CELL_TEST_ID = + `${PREFIX}PrevalenceDetailsTableValueCell` as const; export const PREVALENCE_DETAILS_TABLE_ALERT_COUNT_CELL_TEST_ID = `${PREFIX}PrevalenceDetailsTableAlertCountCell` as const; export const PREVALENCE_DETAILS_TABLE_DOC_COUNT_CELL_TEST_ID = @@ -30,21 +34,13 @@ export const PREVALENCE_DETAILS_TABLE_HOST_PREVALENCE_CELL_TEST_ID = `${PREFIX}PrevalenceDetailsTableHostPrevalenceCell` as const; export const PREVALENCE_DETAILS_TABLE_USER_PREVALENCE_CELL_TEST_ID = `${PREFIX}PrevalenceDetailsTableUserPrevalenceCell` as const; -export const PREVALENCE_DETAILS_TABLE_ERROR_TEST_ID = `${PREFIX}PrevalenceDetailsTable` as const; -export const PREVALENCE_DETAILS_COUNT_CELL_LOADING_TEST_ID = - `${PREFIX}PrevalenceDetailsCountCellLoading` as const; -export const PREVALENCE_DETAILS_COUNT_CELL_ERROR_TEST_ID = - `${PREFIX}PrevalenceDetailsCountCellError` as const; -export const PREVALENCE_DETAILS_COUNT_CELL_VALUE_TEST_ID = - `${PREFIX}PrevalenceDetailsCountCellValue` as const; -export const PREVALENCE_DETAILS_PREVALENCE_CELL_LOADING_TEST_ID = - `${PREFIX}PrevalenceDetailsPrevalenceCellLoading` as const; -export const PREVALENCE_DETAILS_PREVALENCE_CELL_ERROR_TEST_ID = - `${PREFIX}PrevalenceDetailsPrevalenceCellError` as const; -export const PREVALENCE_DETAILS_PREVALENCE_CELL_VALUE_TEST_ID = - `${PREFIX}PrevalenceDetailsPrevalenceCellValue` as const; +export const PREVALENCE_DETAILS_TABLE_ERROR_TEST_ID = + `${PREFIX}PrevalenceDetailsTableError` as const; +export const PREVALENCE_DETAILS_TABLE_NO_DATA_TEST_ID = + `${PREFIX}PrevalenceDetailsTableNoData` as const; /* Entities */ + export const ENTITIES_DETAILS_TEST_ID = `${PREFIX}EntitiesDetails` as const; export const USER_DETAILS_TEST_ID = `${PREFIX}UsersDetails` as const; export const USER_DETAILS_INFO_TEST_ID = 'user-overview'; @@ -61,24 +57,29 @@ export const THREAT_INTELLIGENCE_DETAILS_ENRICHMENTS_TEST_ID = `threat-match-det export const THREAT_INTELLIGENCE_DETAILS_SPINNER_TEST_ID = `${PREFIX}ThreatIntelligenceDetailsLoadingSpinner` as const; -export const CORRELATIONS_DETAILS_ERROR_TEST_ID = `${CORRELATIONS_DETAILS_TEST_ID}Error` as const; - -export const CORRELATIONS_DETAILS_BY_ANCESTRY_TABLE_TEST_ID = - `${CORRELATIONS_DETAILS_TEST_ID}AlertsByAncestryTable` as const; -export const CORRELATIONS_DETAILS_BY_SOURCE_TABLE_TEST_ID = - `${CORRELATIONS_DETAILS_TEST_ID}AlertsBySourceTable` as const; -export const CORRELATIONS_DETAILS_BY_SESSION_TABLE_TEST_ID = - `${CORRELATIONS_DETAILS_TEST_ID}AlertsBySessionTable` as const; - export const CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TEST_ID = `${CORRELATIONS_DETAILS_TEST_ID}AlertsByAncestrySection` as const; +export const CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TABLE_TEST_ID = + `${CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TEST_ID}Table` as const; export const CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TEST_ID = `${CORRELATIONS_DETAILS_TEST_ID}AlertsBySourceSection` as const; +export const CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TABLE_TEST_ID = + `${CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TEST_ID}Table` as const; export const CORRELATIONS_DETAILS_BY_SESSION_SECTION_TEST_ID = `${CORRELATIONS_DETAILS_TEST_ID}AlertsBySessionSection` as const; +export const CORRELATIONS_DETAILS_BY_SESSION_SECTION_TABLE_TEST_ID = + `${CORRELATIONS_DETAILS_BY_SESSION_SECTION_TEST_ID}Table` as const; export const CORRELATIONS_DETAILS_CASES_SECTION_TEST_ID = `${CORRELATIONS_DETAILS_TEST_ID}CasesSection` as const; - +export const CORRELATIONS_DETAILS_CASES_SECTION_TABLE_TEST_ID = + `${CORRELATIONS_DETAILS_CASES_SECTION_TEST_ID}Table` as const; +export const CORRELATIONS_DETAILS_SUPPRESSED_ALERTS_SECTION_TEST_ID = + `${CORRELATIONS_DETAILS_TEST_ID}SuppressedAlertsSection` as const; +export const SUPPRESSED_ALERTS_SECTION_TECHNICAL_PREVIEW_TEST_ID = + `${CORRELATIONS_DETAILS_TEST_ID}SuppressedAlertsSectionTechnicalPreview` as const; export const RESPONSE_BASE_TEST_ID = `${PREFIX}Responses` as const; export const RESPONSE_DETAILS_TEST_ID = `${RESPONSE_BASE_TEST_ID}Details` as const; export const RESPONSE_EMPTY_TEST_ID = `${RESPONSE_BASE_TEST_ID}Empty` as const; + +export const INVESTIGATION_GUIDE_LOADING_TEST_ID = `${PREFIX}InvestigationGuideLoading`; +export const INVESTIGATION_GUIDE_NO_DATA_TEST_ID = `${PREFIX}NoData`; diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/translations.ts b/x-pack/plugins/security_solution/public/flyout/left/components/translations.ts index a83d9911ad32c..dbd0cd21e129c 100644 --- a/x-pack/plugins/security_solution/public/flyout/left/components/translations.ts +++ b/x-pack/plugins/security_solution/public/flyout/left/components/translations.ts @@ -21,6 +21,13 @@ export const SESSION_VIEW_ERROR_MESSAGE = i18n.translate( } ); +export const CORRELATIONS_ERROR_MESSAGE = i18n.translate( + 'xpack.securitySolution.flyout.correlationsErrorMessage', + { + defaultMessage: 'No correlations data available', + } +); + export const USER_TITLE = i18n.translate('xpack.securitySolution.flyout.entities.userTitle', { defaultMessage: 'User', }); @@ -92,45 +99,52 @@ export const PREVALENCE_ERROR_MESSAGE = i18n.translate( } ); -export const PREVALENCE_TABLE_TYPE_COLUMN_TITLE = i18n.translate( - 'xpack.securitySolution.flyout.prevalenceTableTypeColumnTitle', +export const PREVALENCE_NO_DATA_MESSAGE = i18n.translate( + 'xpack.securitySolution.flyout.prevalenceNoDataMessage', { - defaultMessage: 'Type', + defaultMessage: 'No prevalence data available', } ); -export const PREVALENCE_TABLE_NAME_COLUMN_TITLE = i18n.translate( - 'xpack.securitySolution.flyout.prevalenceTableNameColumnTitle', +export const PREVALENCE_TABLE_FIELD_COLUMN_TITLE = i18n.translate( + 'xpack.securitySolution.flyout.prevalenceTableFieldColumnTitle', { - defaultMessage: 'Name', + defaultMessage: 'Field', + } +); + +export const PREVALENCE_TABLE_VALUE_COLUMN_TITLE = i18n.translate( + 'xpack.securitySolution.flyout.prevalenceTableValueColumnTitle', + { + defaultMessage: 'Value', } ); export const PREVALENCE_TABLE_ALERT_COUNT_COLUMN_TITLE = i18n.translate( 'xpack.securitySolution.flyout.prevalenceTableAlertCountColumnTitle', { - defaultMessage: 'Alert count', + defaultMessage: 'Alert', } ); export const PREVALENCE_TABLE_DOC_COUNT_COLUMN_TITLE = i18n.translate( 'xpack.securitySolution.flyout.prevalenceTableDocCountColumnTitle', { - defaultMessage: 'Doc count', + defaultMessage: 'Document', } ); -export const PREVALENCE_TABLE_HOST_PREVALENCE_COLUMN_TITLE = i18n.translate( - 'xpack.securitySolution.flyout.prevalenceTableHostPrevalenceColumnTitle', +export const PREVALENCE_TABLE_COUNT_COLUMN_TITLE = i18n.translate( + 'xpack.securitySolution.flyout.prevalenceTableCountColumnTitle', { - defaultMessage: 'Host prevalence', + defaultMessage: 'count', } ); -export const PREVALENCE_TABLE_USER_PREVALENCE_COLUMN_TITLE = i18n.translate( - 'xpack.securitySolution.flyout.prevalenceTableUserPrevalenceColumnTitle', +export const PREVALENCE_TABLE_PREVALENCE_COLUMN_TITLE = i18n.translate( + 'xpack.securitySolution.flyout.prevalenceTablePrevalenceColumnTitle', { - defaultMessage: 'User prevalence', + defaultMessage: 'prevalence', } ); @@ -184,26 +198,9 @@ export const CORRELATIONS_CASE_NAME_COLUMN_TITLE = i18n.translate( } ); -export const ANCESTRY_ALERTS_HEADING = (count: number) => - i18n.translate('xpack.securitySolution.flyout.correlations.ancestryAlertsHeading', { - defaultMessage: '{count, plural, one {# alert} other {# alerts}} related by ancestry', - values: { count }, - }); - -export const SOURCE_ALERTS_HEADING = (count: number) => - i18n.translate('xpack.securitySolution.flyout.correlations.sourceAlertsHeading', { - defaultMessage: '{count, plural, one {# alert} other {# alerts}} related by source event', - values: { count }, - }); - -export const SESSION_ALERTS_HEADING = (count: number) => - i18n.translate('xpack.securitySolution.flyout.correlations.sessionAlertsHeading', { - defaultMessage: '{count, plural, one {# alert} other {# alerts}} related by session', - values: { count }, - }); - -export const RELATED_CASES_HEADING = (count: number) => - i18n.translate('xpack.securitySolution.flyout.correlations.relatedCasesHeading', { - defaultMessage: '{count} related {count, plural, one {case} other {cases}}', - values: { count }, - }); +export const CORRELATIONS_DETAILS_TABLE_FILTER = i18n.translate( + 'xpack.securitySolution.flyout.correlations.correlationsDetailsTableFilter', + { + defaultMessage: 'Correlations Details Table Alert IDs', + } +); diff --git a/x-pack/plugins/security_solution/public/flyout/left/components/user_details.test.tsx b/x-pack/plugins/security_solution/public/flyout/left/components/user_details.test.tsx index 6f449e2279195..51eaf1bb76b74 100644 --- a/x-pack/plugins/security_solution/public/flyout/left/components/user_details.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/left/components/user_details.test.tsx @@ -21,6 +21,7 @@ import { USER_DETAILS_INFO_TEST_ID, USER_DETAILS_RELATED_HOSTS_TABLE_TEST_ID, } from './test_ids'; +import { EXPANDABLE_PANEL_CONTENT_TEST_ID } from '../../shared/components/test_ids'; jest.mock('react-router-dom', () => { const actual = jest.requireActual('react-router-dom'); @@ -132,7 +133,7 @@ describe('', () => { ); - expect(getByTestId(USER_DETAILS_TEST_ID)).toBeInTheDocument(); + expect(getByTestId(EXPANDABLE_PANEL_CONTENT_TEST_ID(USER_DETAILS_TEST_ID))).toBeInTheDocument(); }); describe('Host overview', () => { diff --git a/x-pack/plugins/security_solution/public/flyout/left/content.tsx b/x-pack/plugins/security_solution/public/flyout/left/content.tsx index 65ecf46062e8c..27fb60800d40a 100644 --- a/x-pack/plugins/security_solution/public/flyout/left/content.tsx +++ b/x-pack/plugins/security_solution/public/flyout/left/content.tsx @@ -20,11 +20,11 @@ export interface PanelContentProps { /** * Document details expandable flyout left section. Appears after the user clicks on the expand details button in the right section. - * Will display the content of the visualize, investigation and insights tabs. + * Displays the content of investigation and insights tabs (visualize is hidden for 8.9). */ export const PanelContent: VFC = ({ selectedTabId }) => { const selectedTabContent = useMemo(() => { - return tabs.find((tab) => tab.id === selectedTabId)?.content; + return tabs.filter((tab) => tab.visible).find((tab) => tab.id === selectedTabId)?.content; }, [selectedTabId]); return {selectedTabContent}; diff --git a/x-pack/plugins/security_solution/public/flyout/left/header.tsx b/x-pack/plugins/security_solution/public/flyout/left/header.tsx index db84d01699479..df11d7bf36db7 100644 --- a/x-pack/plugins/security_solution/public/flyout/left/header.tsx +++ b/x-pack/plugins/security_solution/public/flyout/left/header.tsx @@ -13,15 +13,26 @@ import type { LeftPanelPaths } from '.'; import { tabs } from './tabs'; export interface PanelHeaderProps { + /** + * Id of the tab selected in the parent component to display its content + */ selectedTabId: LeftPanelPaths; + /** + * Callback to set the selected tab id in the parent component + * @param selected + */ setSelectedTabId: (selected: LeftPanelPaths) => void; - handleOnEventClosed?: () => void; } -export const PanelHeader: VFC = memo( - ({ selectedTabId, setSelectedTabId, handleOnEventClosed }) => { - const onSelectedTabChanged = (id: LeftPanelPaths) => setSelectedTabId(id); - const renderTabs = tabs.map((tab, index) => ( +/** + * Header at the top of the left section. + * Displays the investigation and insights tabs (visualize is hidden for 8.9). + */ +export const PanelHeader: VFC = memo(({ selectedTabId, setSelectedTabId }) => { + const onSelectedTabChanged = (id: LeftPanelPaths) => setSelectedTabId(id); + const renderTabs = tabs + .filter((tab) => tab.visible) + .map((tab, index) => ( onSelectedTabChanged(tab.id)} isSelected={tab.id === selectedTabId} @@ -32,20 +43,19 @@ export const PanelHeader: VFC = memo( )); - return ( - - - {renderTabs} - - - ); - } -); + return ( + + + {renderTabs} + + + ); +}); PanelHeader.displayName = 'PanelHeader'; diff --git a/x-pack/plugins/security_solution/public/flyout/left/index.tsx b/x-pack/plugins/security_solution/public/flyout/left/index.tsx index 627689f78b39d..73138b7ecb266 100644 --- a/x-pack/plugins/security_solution/public/flyout/left/index.tsx +++ b/x-pack/plugins/security_solution/public/flyout/left/index.tsx @@ -39,9 +39,10 @@ export const LeftPanel: FC> = memo(({ path }) => { const { eventId, indexName, scopeId } = useLeftPanelContext(); const selectedTabId = useMemo(() => { - const defaultTab = tabs[0].id; + const visibleTabs = tabs.filter((tab) => tab.visible); + const defaultTab = visibleTabs[0].id; if (!path) return defaultTab; - return tabs.map((tab) => tab.id).find((tabId) => tabId === path.tab) ?? defaultTab; + return visibleTabs.map((tab) => tab.id).find((tabId) => tabId === path.tab) ?? defaultTab; }, [path]); const setSelectedTabId = (tabId: LeftPanelTabsType[number]['id']) => { diff --git a/x-pack/plugins/security_solution/public/flyout/left/mocks/mock_context.ts b/x-pack/plugins/security_solution/public/flyout/left/mocks/mock_context.ts index 3569570568986..abc36f1bf202a 100644 --- a/x-pack/plugins/security_solution/public/flyout/left/mocks/mock_context.ts +++ b/x-pack/plugins/security_solution/public/flyout/left/mocks/mock_context.ts @@ -37,8 +37,8 @@ export const mockContextValue: LeftPanelContext = { eventId: 'eventId', indexName: 'index', scopeId: 'scopeId', - browserFields: null, - dataFormattedForFieldBrowser: null, + browserFields: {}, + dataFormattedForFieldBrowser: [], getFieldsData: mockGetFieldsData, searchHit: { _id: 'testId', diff --git a/x-pack/plugins/security_solution/public/flyout/left/tabs.tsx b/x-pack/plugins/security_solution/public/flyout/left/tabs.tsx index a7c557bbc7def..9ac70d515cc45 100644 --- a/x-pack/plugins/security_solution/public/flyout/left/tabs.tsx +++ b/x-pack/plugins/security_solution/public/flyout/left/tabs.tsx @@ -24,6 +24,7 @@ export type LeftPanelTabsType = Array<{ 'data-test-subj': string; name: string; content: React.ReactElement; + visible: boolean; }>; export const tabs: LeftPanelTabsType = [ @@ -32,23 +33,27 @@ export const tabs: LeftPanelTabsType = [ 'data-test-subj': VISUALIZE_TAB_TEST_ID, name: VISUALIZE_TAB, content: , + visible: false, }, { id: 'insights', 'data-test-subj': INSIGHTS_TAB_TEST_ID, name: INSIGHTS_TAB, content: , + visible: true, }, { id: 'investigation', 'data-test-subj': INVESTIGATION_TAB_TEST_ID, name: INVESTIGATIONS_TAB, content: , + visible: true, }, { id: 'response', 'data-test-subj': RESPONSE_TAB_TEST_ID, name: RESPONSE_TAB, content: , + visible: true, }, ]; diff --git a/x-pack/plugins/security_solution/public/flyout/left/tabs/investigation_tab.tsx b/x-pack/plugins/security_solution/public/flyout/left/tabs/investigation_tab.tsx index c3bfb4733c0c4..ce0629d790b2b 100644 --- a/x-pack/plugins/security_solution/public/flyout/left/tabs/investigation_tab.tsx +++ b/x-pack/plugins/security_solution/public/flyout/left/tabs/investigation_tab.tsx @@ -7,8 +7,8 @@ import React, { memo } from 'react'; import { EuiPanel } from '@elastic/eui'; +import { InvestigationGuide } from '../components/investigation_guide'; import { INVESTIGATION_TAB_CONTENT_TEST_ID } from './test_ids'; -import { InvestigationGuideView } from '../../../common/components/event_details/investigation_guide_view'; import { useLeftPanelContext } from '../context'; /** @@ -16,17 +16,13 @@ import { useLeftPanelContext } from '../context'; */ export const InvestigationTab: React.FC = memo(() => { const { dataFormattedForFieldBrowser } = useLeftPanelContext(); - if (dataFormattedForFieldBrowser === null) { + if (dataFormattedForFieldBrowser == null) { return null; } return ( - + ); }); diff --git a/x-pack/plugins/security_solution/public/flyout/preview/components/alert_reason_preview.tsx b/x-pack/plugins/security_solution/public/flyout/preview/components/alert_reason_preview.tsx index 4fd912cbfbeec..d8791beb7bfd2 100644 --- a/x-pack/plugins/security_solution/public/flyout/preview/components/alert_reason_preview.tsx +++ b/x-pack/plugins/security_solution/public/flyout/preview/components/alert_reason_preview.tsx @@ -7,12 +7,21 @@ import React, { useMemo } from 'react'; import { EuiPanel, EuiSpacer, EuiTitle } from '@elastic/eui'; +import styled from '@emotion/styled'; +import { euiThemeVars } from '@kbn/ui-theme'; import { ALERT_REASON_TITLE } from './translations'; import { ALERT_REASON_PREVIEW_BODY_TEST_ID } from './test_ids'; import { usePreviewPanelContext } from '../context'; import { getRowRenderer } from '../../../timelines/components/timeline/body/renderers/get_row_renderer'; import { defaultRowRenderers } from '../../../timelines/components/timeline/body/renderers'; +const ReasonPreviewContainerWrapper = styled.div` + overflow-x: auto; + padding-block: ${euiThemeVars.euiSizeS}; +`; + +const ReasonPreviewContainer = styled.div``; + /** * Alert reason renderer on a preview panel on top of the right section of expandable flyout */ @@ -27,6 +36,19 @@ export const AlertReasonPreview: React.FC = () => { [dataAsNestedObject] ); + const rowRenderer = useMemo( + () => + renderer && dataAsNestedObject + ? renderer.renderRow({ + contextId: 'event-details', + data: dataAsNestedObject, + isDraggable: false, + scopeId: 'global', + }) + : null, + [renderer, dataAsNestedObject] + ); + if (!dataAsNestedObject || !renderer) { return null; } @@ -37,12 +59,11 @@ export const AlertReasonPreview: React.FC = () => {
    {ALERT_REASON_TITLE}
    - {renderer.renderRow({ - contextId: 'event-details', - data: dataAsNestedObject, - isDraggable: false, - scopeId: 'global', - })} + + + {rowRenderer} + + ); }; diff --git a/x-pack/plugins/security_solution/public/flyout/preview/components/rule_preview.test.tsx b/x-pack/plugins/security_solution/public/flyout/preview/components/rule_preview.test.tsx index fc9b8616d5fd7..13be8994a7d14 100644 --- a/x-pack/plugins/security_solution/public/flyout/preview/components/rule_preview.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/preview/components/rule_preview.test.tsx @@ -22,6 +22,7 @@ import { mockDefineStepRule, mockScheduleStepRule, } from '../../../detection_engine/rule_management_ui/components/rules_table/__mocks__/mock'; +import { useGetSavedQuery } from '../../../detections/pages/detection_engine/rules/use_get_saved_query'; import { RULE_PREVIEW_BODY_TEST_ID, RULE_PREVIEW_ABOUT_HEADER_TEST_ID, @@ -43,6 +44,9 @@ jest.mock('../../../detection_engine/rule_management/logic/use_rule_with_fallbac const mockGetStepsData = getStepsData as jest.Mock; jest.mock('../../../detections/pages/detection_engine/rules/helpers'); +const mockUseGetSavedQuery = useGetSavedQuery as jest.Mock; +jest.mock('../../../detections/pages/detection_engine/rules/use_get_saved_query'); + const mockTheme = getMockTheme({ eui: { euiColorMediumShade: '#ece' } }); const contextValue = { @@ -69,6 +73,7 @@ describe('', () => { scheduleRuleData: mockScheduleStepRule(), ruleActionsData: { actions: ['action'] }, }); + mockUseGetSavedQuery.mockReturnValue({ isSavedQueryLoading: false, savedQueryBar: null }); const { getByTestId } = render( diff --git a/x-pack/plugins/security_solution/public/flyout/preview/components/rule_preview.tsx b/x-pack/plugins/security_solution/public/flyout/preview/components/rule_preview.tsx index 0a78f6a29141f..023c214630dd4 100644 --- a/x-pack/plugins/security_solution/public/flyout/preview/components/rule_preview.tsx +++ b/x-pack/plugins/security_solution/public/flyout/preview/components/rule_preview.tsx @@ -6,6 +6,8 @@ */ import React, { memo, useState, useEffect } from 'react'; import { EuiText, EuiHorizontalRule, EuiSpacer, EuiPanel, EuiLoadingSpinner } from '@elastic/eui'; +import { useKibana } from '../../../common/lib/kibana'; +import { useGetSavedQuery } from '../../../detections/pages/detection_engine/rules/use_get_saved_query'; import type { Rule } from '../../../detection_engine/rule_management/logic'; import { usePreviewPanelContext } from '../context'; import { ExpandableSection } from '../../right/components/expandable_section'; @@ -33,6 +35,7 @@ export const RulePreview: React.FC = memo(() => { const { ruleId, indexPattern } = usePreviewPanelContext(); const [rule, setRule] = useState(null); const { rule: maybeRule, loading: ruleLoading } = useRuleWithFallback(ruleId ?? ''); + const { data } = useKibana().services; // persist rule until refresh is complete useEffect(() => { @@ -51,6 +54,23 @@ export const RulePreview: React.FC = memo(() => { ruleActionsData: null, }; + const [dataViewTitle, setDataViewTitle] = useState(); + + useEffect(() => { + const fetchDataViewTitle = async () => { + if (defineRuleData?.dataViewId != null && defineRuleData?.dataViewId !== '') { + const dataView = await data.dataViews.get(defineRuleData?.dataViewId); + setDataViewTitle(dataView.title); + } + }; + fetchDataViewTitle(); + }, [data.dataViews, defineRuleData?.dataViewId]); + + const { isSavedQueryLoading, savedQueryBar } = useGetSavedQuery({ + savedQueryId: rule?.saved_id, + ruleType: rule?.type, + }); + const hasNotificationActions = Boolean(ruleActionsData?.actions?.length); const hasResponseActions = Boolean(ruleActionsData?.responseActions?.length); const hasActions = ruleActionsData != null && (hasNotificationActions || hasResponseActions); @@ -76,7 +96,7 @@ export const RulePreview: React.FC = memo(() => { )} - {defineRuleData && ( + {defineRuleData && !isSavedQueryLoading && ( <> { diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/analyzer_preview.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/analyzer_preview.tsx index e26ede68bc397..54fa7d6907bdc 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/components/analyzer_preview.tsx +++ b/x-pack/plugins/security_solution/public/flyout/right/components/analyzer_preview.tsx @@ -4,12 +4,16 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import React, { useEffect, useState } from 'react'; +import React, { useEffect, useMemo, useState } from 'react'; import { find } from 'lodash/fp'; +import { EuiTreeView } from '@elastic/eui'; +import { ANALYZER_PREVIEW_TEST_ID } from './test_ids'; +import { getTreeNodes } from '../utils/analyzer_helpers'; +import { ANALYZER_PREVIEW_TITLE } from './translations'; +import { ANCESTOR_ID, RULE_PARAMETERS_INDEX } from '../../shared/constants/field_names'; import { useRightPanelContext } from '../context'; import { useAlertPrevalenceFromProcessTree } from '../../../common/containers/alerts/use_alert_prevalence_from_process_tree'; import type { StatsNode } from '../../../common/containers/alerts/use_alert_prevalence_from_process_tree'; -import { AnalyzerTree } from './analyzer_tree'; import { isActiveTimeline } from '../../../helpers'; const CHILD_COUNT_LIMIT = 3; @@ -30,14 +34,14 @@ export const AnalyzerPreview: React.FC = () => { const [cache, setCache] = useState>({}); const { dataFormattedForFieldBrowser: data, scopeId } = useRightPanelContext(); - const documentId = find({ category: 'kibana', field: 'kibana.alert.ancestors.id' }, data); + const documentId = find({ category: 'kibana', field: ANCESTOR_ID }, data); const processDocumentId = documentId && Array.isArray(documentId.values) ? documentId.values[0] : ''; - const index = find({ category: 'kibana', field: 'kibana.alert.rule.parameters.index' }, data); + const index = find({ category: 'kibana', field: RULE_PARAMETERS_INDEX }, data); const indices = index?.values ?? []; - const { loading, error, statsNodes } = useAlertPrevalenceFromProcessTree({ + const { statsNodes } = useAlertPrevalenceFromProcessTree({ isActiveTimeline: isActiveTimeline(scopeId), documentId: processDocumentId, indices, @@ -49,19 +53,24 @@ export const AnalyzerPreview: React.FC = () => { } }, [statsNodes, setCache]); - if (!documentId || !index) { + const items = useMemo( + () => getTreeNodes(cache.statsNodes ?? [], CHILD_COUNT_LIMIT, ANCESTOR_LEVEL, DESCENDANT_LEVEL), + [cache.statsNodes] + ); + + if (!documentId || !index || !items || items.length === 0) { return null; } return ( - +
    + +
    ); }; diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/analyzer_preview_container.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/analyzer_preview_container.test.tsx new file mode 100644 index 0000000000000..9892cfe3adf25 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/right/components/analyzer_preview_container.test.tsx @@ -0,0 +1,126 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { render, screen } from '@testing-library/react'; +import { TestProviders } from '../../../common/mock'; +import React from 'react'; +import { RightPanelContext } from '../context'; +import { AnalyzerPreviewContainer } from './analyzer_preview_container'; +import { isInvestigateInResolverActionEnabled } from '../../../detections/components/alerts_table/timeline_actions/investigate_in_resolver'; +import { ANALYZER_PREVIEW_TEST_ID } from './test_ids'; +import { useAlertPrevalenceFromProcessTree } from '../../../common/containers/alerts/use_alert_prevalence_from_process_tree'; +import * as mock from '../mocks/mock_analyzer_data'; +import { + EXPANDABLE_PANEL_CONTENT_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID, + EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID, +} from '../../shared/components/test_ids'; +import { mockDataFormattedForFieldBrowser } from '../../shared/mocks/mock_context'; +import { useInvestigateInTimeline } from '../../../detections/components/alerts_table/timeline_actions/use_investigate_in_timeline'; + +jest.mock('../../../detections/components/alerts_table/timeline_actions/investigate_in_resolver'); +jest.mock('../../../common/containers/alerts/use_alert_prevalence_from_process_tree'); +jest.mock( + '../../../detections/components/alerts_table/timeline_actions/use_investigate_in_timeline' +); +jest.mock('react-router-dom', () => { + const actual = jest.requireActual('react-router-dom'); + return { ...actual, useLocation: jest.fn().mockReturnValue({ pathname: '' }) }; +}); + +const panelContextValue = { + dataAsNestedObject: null, + dataFormattedForFieldBrowser: mockDataFormattedForFieldBrowser, +} as unknown as RightPanelContext; + +const TEST_ID = ANALYZER_PREVIEW_TEST_ID; +const ERROR_TEST_ID = `${ANALYZER_PREVIEW_TEST_ID}Error`; + +const renderAnalyzerPreview = () => + render( + + + + + + ); + +describe('AnalyzerPreviewContainer', () => { + afterEach(() => { + jest.resetAllMocks(); + }); + + it('should render component and link in header', () => { + (isInvestigateInResolverActionEnabled as jest.Mock).mockReturnValue(true); + (useAlertPrevalenceFromProcessTree as jest.Mock).mockReturnValue({ + loading: false, + error: false, + alertIds: ['alertid'], + statsNodes: mock.mockStatsNodes, + }); + (useInvestigateInTimeline as jest.Mock).mockReturnValue({ + investigateInTimelineAlertClick: jest.fn(), + }); + + const { getByTestId, queryByTestId } = renderAnalyzerPreview(); + + expect(getByTestId(TEST_ID)).toBeInTheDocument(); + expect(queryByTestId(ERROR_TEST_ID)).not.toBeInTheDocument(); + expect( + getByTestId(EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID(ANALYZER_PREVIEW_TEST_ID)) + ).toBeInTheDocument(); + expect( + screen.queryByTestId(EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID(ANALYZER_PREVIEW_TEST_ID)) + ).not.toBeInTheDocument(); + expect( + screen.getByTestId(EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID(ANALYZER_PREVIEW_TEST_ID)) + ).toBeInTheDocument(); + expect( + screen.getByTestId(EXPANDABLE_PANEL_CONTENT_TEST_ID(ANALYZER_PREVIEW_TEST_ID)) + ).toBeInTheDocument(); + expect( + screen.queryByTestId(EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID(ANALYZER_PREVIEW_TEST_ID)) + ).not.toBeInTheDocument(); + }); + + it('should render error message and text in header', () => { + (isInvestigateInResolverActionEnabled as jest.Mock).mockReturnValue(false); + (useInvestigateInTimeline as jest.Mock).mockReturnValue({ + investigateInTimelineAlertClick: jest.fn(), + }); + + const { getByTestId, queryByTestId } = renderAnalyzerPreview(); + + expect(queryByTestId(TEST_ID)).not.toBeInTheDocument(); + expect(getByTestId(ERROR_TEST_ID)).toBeInTheDocument(); + expect( + getByTestId(EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID(ANALYZER_PREVIEW_TEST_ID)) + ).toBeInTheDocument(); + }); + + it('should navigate to left section Visualize tab when clicking on title', () => { + (isInvestigateInResolverActionEnabled as jest.Mock).mockReturnValue(true); + (useAlertPrevalenceFromProcessTree as jest.Mock).mockReturnValue({ + loading: false, + error: false, + alertIds: ['alertid'], + statsNodes: mock.mockStatsNodes, + }); + (useInvestigateInTimeline as jest.Mock).mockReturnValue({ + investigateInTimelineAlertClick: jest.fn(), + }); + + const { getByTestId } = renderAnalyzerPreview(); + + const { investigateInTimelineAlertClick } = useInvestigateInTimeline({}); + + getByTestId(EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID(ANALYZER_PREVIEW_TEST_ID)).click(); + expect(investigateInTimelineAlertClick).toHaveBeenCalled(); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/analyzer_preview_container.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/analyzer_preview_container.tsx new file mode 100644 index 0000000000000..d4698e962ccb3 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/right/components/analyzer_preview_container.tsx @@ -0,0 +1,74 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React, { useCallback } from 'react'; +import { useDispatch } from 'react-redux'; +import { TimelineTabs } from '@kbn/securitysolution-data-table'; +import { useStartTransaction } from '../../../common/lib/apm/use_start_transaction'; +import { useInvestigateInTimeline } from '../../../detections/components/alerts_table/timeline_actions/use_investigate_in_timeline'; +import { ALERTS_ACTIONS } from '../../../common/lib/apm/user_actions'; +import { getScopedActions } from '../../../helpers'; +import { setActiveTabTimeline } from '../../../timelines/store/timeline/actions'; +import { useRightPanelContext } from '../context'; +import { isInvestigateInResolverActionEnabled } from '../../../detections/components/alerts_table/timeline_actions/investigate_in_resolver'; +import { AnalyzerPreview } from './analyzer_preview'; +import { ANALYZER_PREVIEW_TEST_ID } from './test_ids'; +import { ANALYZER_PREVIEW_ERROR, ANALYZER_PREVIEW_TITLE } from './translations'; +import { ExpandablePanel } from '../../shared/components/expandable_panel'; + +const timelineId = 'timeline-1'; + +/** + * Analyzer preview under Overview, Visualizations. It shows a tree representation of analyzer. + */ +export const AnalyzerPreviewContainer: React.FC = () => { + const { dataAsNestedObject } = useRightPanelContext(); + + // decide whether to show the analyzer preview or not + const isEnabled = isInvestigateInResolverActionEnabled(dataAsNestedObject || undefined); + + const dispatch = useDispatch(); + const { startTransaction } = useStartTransaction(); + const { investigateInTimelineAlertClick } = useInvestigateInTimeline({ + ecsRowData: dataAsNestedObject, + }); + + // open timeline to the analyzer tab because the expandable flyout left panel Visualize => Analyzer tab is not ready + const goToAnalyzerTab = useCallback(() => { + // open timeline + investigateInTimelineAlertClick(); + + // open analyzer tab + startTransaction({ name: ALERTS_ACTIONS.OPEN_ANALYZER }); + const scopedActions = getScopedActions(timelineId); + if (scopedActions && dataAsNestedObject) { + dispatch( + scopedActions.updateGraphEventId({ id: timelineId, graphEventId: dataAsNestedObject._id }) + ); + } + dispatch(setActiveTabTimeline({ id: timelineId, activeTab: TimelineTabs.graph })); + }, [dataAsNestedObject, dispatch, investigateInTimelineAlertClick, startTransaction]); + + return ( + + {isEnabled ? ( + + ) : ( +
    {ANALYZER_PREVIEW_ERROR}
    + )} +
    + ); +}; + +AnalyzerPreviewContainer.displayName = 'AnalyzerPreviewContainer'; diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/analyzer_tree.stories.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/analyzer_tree.stories.tsx deleted file mode 100644 index 8f9e41014951a..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/right/components/analyzer_tree.stories.tsx +++ /dev/null @@ -1,111 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import React from 'react'; -import type { Story } from '@storybook/react'; -import { ExpandableFlyoutContext } from '@kbn/expandable-flyout/src/context'; -import { AnalyzerTree } from './analyzer_tree'; -import * as mock from '../mocks/mock_analyzer_data'; -import { RightPanelContext } from '../context'; - -export default { - component: AnalyzerTree, - title: 'Flyout/AnalyzerTree', -}; - -const defaultProps = { - loading: false, - error: false, -}; - -const flyoutContextValue = { - openLeftPanel: () => {}, -} as unknown as ExpandableFlyoutContext; - -const contextValue = { - eventId: 'eventId', - indexName: 'indexName', - scopeId: 'alerts-page', -} as unknown as RightPanelContext; - -const wrapper = (children: React.ReactNode) => ( - - {children} - -); - -export const Default: Story = () => { - return wrapper(); -}; - -export const SingleNode: Story = () => { - return wrapper(); -}; - -export const ShowParent: Story = () => { - return wrapper(); -}; - -export const ShowGrandparent: Story = () => { - return wrapper( - - ); -}; - -export const HideGrandparent: Story = () => { - return wrapper( - - ); -}; - -export const ShowChildren: Story = () => { - return wrapper(); -}; - -export const ShowOnlyOneChild: Story = () => { - return wrapper( - - ); -}; - -export const ShowGrandchildren: Story = () => { - return wrapper(); -}; - -export const HideGrandchildren: Story = () => { - return wrapper( - - ); -}; - -export const Loading: Story = () => { - return wrapper(); -}; - -export const Error: Story = () => { - return wrapper(); -}; - -export const Empty: Story = () => { - return wrapper(); -}; diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/analyzer_tree.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/analyzer_tree.test.tsx deleted file mode 100644 index 8cbc791c234d2..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/right/components/analyzer_tree.test.tsx +++ /dev/null @@ -1,104 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import React from 'react'; -import { render } from '@testing-library/react'; -import { - ANALYZER_PREVIEW_TOGGLE_ICON_TEST_ID, - ANALYZER_PREVIEW_TITLE_LINK_TEST_ID, - ANALYZER_PREVIEW_TITLE_ICON_TEST_ID, - ANALYZER_PREVIEW_CONTENT_TEST_ID, - ANALYZER_PREVIEW_TITLE_TEXT_TEST_ID, - ANALYZER_PREVIEW_LOADING_TEST_ID, -} from './test_ids'; -import { ANALYZER_PREVIEW_TITLE } from './translations'; -import * as mock from '../mocks/mock_analyzer_data'; -import type { AnalyzerTreeProps } from './analyzer_tree'; -import { AnalyzerTree } from './analyzer_tree'; -import { ExpandableFlyoutContext } from '@kbn/expandable-flyout/src/context'; -import { TestProviders } from '@kbn/timelines-plugin/public/mock'; -import { RightPanelContext } from '../context'; -import { LeftPanelKey, LeftPanelVisualizeTab } from '../../left'; -import { ANALYZE_GRAPH_ID } from '../../left/components/analyze_graph'; - -const defaultProps: AnalyzerTreeProps = { - statsNodes: mock.mockStatsNodes, - loading: false, - error: false, -}; - -const flyoutContextValue = { - openLeftPanel: jest.fn(), -} as unknown as ExpandableFlyoutContext; - -const panelContextValue = { - eventId: 'event id', - indexName: 'indexName', - browserFields: {}, - dataFormattedForFieldBrowser: [], -} as unknown as RightPanelContext; - -const renderAnalyzerTree = (children: React.ReactNode) => - render( - - - - {children} - - - - ); - -describe('', () => { - it('should render wrapper component', () => { - const { getByTestId, queryByTestId } = renderAnalyzerTree(); - expect(queryByTestId(ANALYZER_PREVIEW_TOGGLE_ICON_TEST_ID)).not.toBeInTheDocument(); - expect(getByTestId(ANALYZER_PREVIEW_TITLE_LINK_TEST_ID)).toBeInTheDocument(); - expect(getByTestId(ANALYZER_PREVIEW_TITLE_ICON_TEST_ID)).toBeInTheDocument(); - expect(getByTestId(ANALYZER_PREVIEW_CONTENT_TEST_ID)).toBeInTheDocument(); - expect(queryByTestId(ANALYZER_PREVIEW_TITLE_TEXT_TEST_ID)).not.toBeInTheDocument(); - }); - - it('should render the component when data is passed', () => { - const { getByTestId, getByText } = renderAnalyzerTree(); - expect(getByText(ANALYZER_PREVIEW_TITLE)).toBeInTheDocument(); - expect(getByTestId(ANALYZER_PREVIEW_CONTENT_TEST_ID)).toBeInTheDocument(); - }); - - it('should render blank when data is not passed', () => { - const { queryByTestId, queryByText } = renderAnalyzerTree( - - ); - expect(queryByText(ANALYZER_PREVIEW_TITLE)).not.toBeInTheDocument(); - expect(queryByTestId(ANALYZER_PREVIEW_CONTENT_TEST_ID)).not.toBeInTheDocument(); - }); - - it('should render loading spinner when loading is true', () => { - const { getByTestId } = renderAnalyzerTree(); - expect(getByTestId(ANALYZER_PREVIEW_LOADING_TEST_ID)).toBeInTheDocument(); - }); - - it('should not render when error is true', () => { - const { getByTestId } = renderAnalyzerTree(); - expect(getByTestId(ANALYZER_PREVIEW_CONTENT_TEST_ID)).toBeEmptyDOMElement(); - }); - - it('should navigate to left section Visualize tab when clicking on title', () => { - const { getByTestId } = renderAnalyzerTree(); - - getByTestId(ANALYZER_PREVIEW_TITLE_LINK_TEST_ID).click(); - expect(flyoutContextValue.openLeftPanel).toHaveBeenCalledWith({ - id: LeftPanelKey, - path: { tab: LeftPanelVisualizeTab, subTab: ANALYZE_GRAPH_ID }, - params: { - id: panelContextValue.eventId, - indexName: panelContextValue.indexName, - scopeId: panelContextValue.scopeId, - }, - }); - }); -}); diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/analyzer_tree.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/analyzer_tree.tsx deleted file mode 100644 index e22ee53fda80c..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/right/components/analyzer_tree.tsx +++ /dev/null @@ -1,102 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ -import React, { useCallback, useMemo } from 'react'; -import { EuiTreeView } from '@elastic/eui'; -import { useExpandableFlyoutContext } from '@kbn/expandable-flyout'; -import { ExpandablePanel } from '../../shared/components/expandable_panel'; -import { useRightPanelContext } from '../context'; -import { LeftPanelKey, LeftPanelVisualizeTab } from '../../left'; -import { ANALYZER_PREVIEW_TITLE } from './translations'; -import { ANALYZER_PREVIEW_TEST_ID } from './test_ids'; -import { ANALYZE_GRAPH_ID } from '../../left/components/analyze_graph'; -import type { StatsNode } from '../../../common/containers/alerts/use_alert_prevalence_from_process_tree'; -import { getTreeNodes } from '../utils/analyzer_helpers'; - -export interface AnalyzerTreeProps { - /** - * statsNode data from resolver tree api - */ - statsNodes?: StatsNode[]; - /** - * Boolean value of whether data is in loading - */ - loading: boolean; - /** - * Boolean value of whether there is error in data fetching - */ - error: boolean; - /** - * Optional parameter to limit the number of child nodes to be displayed - */ - childCountLimit?: number; - /** - * Optional parameter to limit the depth of ancestors - */ - ancestorLevel?: number; - /** - * Optional parameter to limit the depth of descendants - */ - descendantLevel?: number; -} - -/** - * Analyzer tree that represent a summary view of analyzer. It shows current process, and its parent and child processes - */ -export const AnalyzerTree: React.FC = ({ - statsNodes, - loading, - error, - childCountLimit = 3, - ancestorLevel = 1, - descendantLevel = 1, -}) => { - const { eventId, indexName, scopeId } = useRightPanelContext(); - const { openLeftPanel } = useExpandableFlyoutContext(); - const items = useMemo( - () => getTreeNodes(statsNodes ?? [], childCountLimit, ancestorLevel, descendantLevel), - [statsNodes, childCountLimit, ancestorLevel, descendantLevel] - ); - - const goToAnalyserTab = useCallback(() => { - openLeftPanel({ - id: LeftPanelKey, - path: { - tab: LeftPanelVisualizeTab, - subTab: ANALYZE_GRAPH_ID, - }, - params: { - id: eventId, - indexName, - scopeId, - }, - }); - }, [eventId, openLeftPanel, indexName, scopeId]); - - if (items && items.length !== 0) { - return ( - - - - ); - } - return null; -}; - -AnalyzerTree.displayName = 'AnalyzerTree'; diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/correlations_overview.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/correlations_overview.test.tsx index 70b37762b704b..664b90a54b767 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/components/correlations_overview.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/right/components/correlations_overview.test.tsx @@ -11,25 +11,76 @@ import { ExpandableFlyoutContext } from '@kbn/expandable-flyout/src/context'; import { RightPanelContext } from '../context'; import { TestProviders } from '../../../common/mock'; import { CorrelationsOverview } from './correlations_overview'; -import { useCorrelations } from '../../shared/hooks/use_correlations'; import { CORRELATIONS_TAB_ID } from '../../left/components/correlations_details'; import { LeftPanelInsightsTab, LeftPanelKey } from '../../left'; import { - INSIGHTS_CORRELATIONS_CONTENT_TEST_ID, - INSIGHTS_CORRELATIONS_LOADING_TEST_ID, - INSIGHTS_CORRELATIONS_TITLE_ICON_TEST_ID, - INSIGHTS_CORRELATIONS_TITLE_LINK_TEST_ID, - INSIGHTS_CORRELATIONS_TITLE_TEXT_TEST_ID, - INSIGHTS_CORRELATIONS_TOGGLE_ICON_TEST_ID, + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_ANCESTRY_TEST_ID, + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SAME_SOURCE_EVENT_TEST_ID, + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SESSION_TEST_ID, + INSIGHTS_CORRELATIONS_RELATED_CASES_TEST_ID, + INSIGHTS_CORRELATIONS_SUPPRESSED_ALERTS_TEST_ID, + INSIGHTS_CORRELATIONS_TEST_ID, + SUMMARY_ROW_VALUE_TEST_ID, } from './test_ids'; +import { useShowRelatedAlertsByAncestry } from '../../shared/hooks/use_show_related_alerts_by_ancestry'; +import { useShowRelatedAlertsBySameSourceEvent } from '../../shared/hooks/use_show_related_alerts_by_same_source_event'; +import { useShowRelatedAlertsBySession } from '../../shared/hooks/use_show_related_alerts_by_session'; +import { useShowRelatedCases } from '../../shared/hooks/use_show_related_cases'; +import { useShowSuppressedAlerts } from '../../shared/hooks/use_show_suppressed_alerts'; +import { useFetchRelatedAlertsByAncestry } from '../../shared/hooks/use_fetch_related_alerts_by_ancestry'; +import { useFetchRelatedAlertsBySameSourceEvent } from '../../shared/hooks/use_fetch_related_alerts_by_same_source_event'; +import { useFetchRelatedAlertsBySession } from '../../shared/hooks/use_fetch_related_alerts_by_session'; +import { useFetchRelatedCases } from '../../shared/hooks/use_fetch_related_cases'; +import { + EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID, + EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID, +} from '../../shared/components/test_ids'; + +jest.mock('../../shared/hooks/use_show_related_alerts_by_ancestry'); +jest.mock('../../shared/hooks/use_show_related_alerts_by_same_source_event'); +jest.mock('../../shared/hooks/use_show_related_alerts_by_session'); +jest.mock('../../shared/hooks/use_show_related_cases'); +jest.mock('../../shared/hooks/use_show_suppressed_alerts'); +jest.mock('../../shared/hooks/use_fetch_related_alerts_by_session'); +jest.mock('../../shared/hooks/use_fetch_related_alerts_by_ancestry'); +jest.mock('../../shared/hooks/use_fetch_related_alerts_by_same_source_event'); +jest.mock('../../shared/hooks/use_fetch_related_cases'); + +const TOGGLE_ICON_TEST_ID = EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID(INSIGHTS_CORRELATIONS_TEST_ID); +const TITLE_LINK_TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID( + INSIGHTS_CORRELATIONS_TEST_ID +); +const TITLE_ICON_TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID( + INSIGHTS_CORRELATIONS_TEST_ID +); +const TITLE_TEXT_TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID( + INSIGHTS_CORRELATIONS_TEST_ID +); -jest.mock('../../shared/hooks/use_correlations'); +const SUPPRESSED_ALERTS_TEST_ID = SUMMARY_ROW_VALUE_TEST_ID( + INSIGHTS_CORRELATIONS_SUPPRESSED_ALERTS_TEST_ID +); +const RELATED_ALERTS_BY_ANCESTRY_TEST_ID = SUMMARY_ROW_VALUE_TEST_ID( + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_ANCESTRY_TEST_ID +); +const RELATED_ALERTS_BY_SAME_SOURCE_EVENT_TEST_ID = SUMMARY_ROW_VALUE_TEST_ID( + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SAME_SOURCE_EVENT_TEST_ID +); +const RELATED_ALERTS_BY_SESSION_TEST_ID = SUMMARY_ROW_VALUE_TEST_ID( + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SESSION_TEST_ID +); +const RELATED_CASES_TEST_ID = SUMMARY_ROW_VALUE_TEST_ID( + INSIGHTS_CORRELATIONS_RELATED_CASES_TEST_ID +); +const CORRELATIONS_ERROR_TEST_ID = `${INSIGHTS_CORRELATIONS_TEST_ID}Error`; const panelContextValue = { eventId: 'event id', indexName: 'indexName', browserFields: {}, - dataFormattedForFieldBrowser: [], + getFieldsData: () => {}, scopeId: 'scopeId', } as unknown as RightPanelContext; @@ -43,101 +94,99 @@ const renderCorrelationsOverview = (contextValue: RightPanelContext) => ( describe('', () => { it('should render wrapper component', () => { - (useCorrelations as jest.Mock).mockReturnValue({ - loading: false, - error: false, - data: [], - }); + jest.mocked(useShowRelatedAlertsByAncestry).mockReturnValue({ show: false }); + jest.mocked(useShowRelatedAlertsBySameSourceEvent).mockReturnValue({ show: false }); + jest.mocked(useShowRelatedAlertsBySession).mockReturnValue({ show: false }); + jest.mocked(useShowRelatedCases).mockReturnValue(false); + jest.mocked(useShowSuppressedAlerts).mockReturnValue({ show: false, alertSuppressionCount: 0 }); const { getByTestId, queryByTestId } = render(renderCorrelationsOverview(panelContextValue)); - expect(queryByTestId(INSIGHTS_CORRELATIONS_TOGGLE_ICON_TEST_ID)).not.toBeInTheDocument(); - expect(getByTestId(INSIGHTS_CORRELATIONS_TITLE_LINK_TEST_ID)).toBeInTheDocument(); - expect(getByTestId(INSIGHTS_CORRELATIONS_TITLE_ICON_TEST_ID)).toBeInTheDocument(); - expect(queryByTestId(INSIGHTS_CORRELATIONS_TITLE_TEXT_TEST_ID)).not.toBeInTheDocument(); + expect(queryByTestId(TOGGLE_ICON_TEST_ID)).not.toBeInTheDocument(); + expect(getByTestId(TITLE_LINK_TEST_ID)).toBeInTheDocument(); + expect(getByTestId(TITLE_ICON_TEST_ID)).toBeInTheDocument(); + expect(queryByTestId(TITLE_TEXT_TEST_ID)).not.toBeInTheDocument(); }); it('should show component with all rows in expandable panel', () => { - (useCorrelations as jest.Mock).mockReturnValue({ + jest + .mocked(useShowRelatedAlertsByAncestry) + .mockReturnValue({ show: true, documentId: 'documentId', indices: ['index1'] }); + jest + .mocked(useShowRelatedAlertsBySameSourceEvent) + .mockReturnValue({ show: true, originalEventId: 'originalEventId' }); + jest + .mocked(useShowRelatedAlertsBySession) + .mockReturnValue({ show: true, entityId: 'entityId' }); + jest.mocked(useShowRelatedCases).mockReturnValue(true); + jest.mocked(useShowSuppressedAlerts).mockReturnValue({ show: true, alertSuppressionCount: 1 }); + + (useFetchRelatedAlertsByAncestry as jest.Mock).mockReturnValue({ loading: false, error: false, - data: [ - { icon: 'warning', value: 1, text: 'related case' }, - { icon: 'warning', value: 2, text: 'alerts related by ancestry' }, - { icon: 'warning', value: 3, text: 'alerts related by the same source event' }, - { icon: 'warning', value: 4, text: 'alerts related by session' }, - ], - dataCount: 4, + dataCount: 1, }); - - const { getByTestId } = render(renderCorrelationsOverview(panelContextValue)); - expect(getByTestId(INSIGHTS_CORRELATIONS_TITLE_LINK_TEST_ID)).toHaveTextContent('Correlations'); - expect(getByTestId(INSIGHTS_CORRELATIONS_CONTENT_TEST_ID)).toHaveTextContent('1 related case'); - expect(getByTestId(INSIGHTS_CORRELATIONS_CONTENT_TEST_ID)).toHaveTextContent( - '2 alerts related by ancestry' - ); - expect(getByTestId(INSIGHTS_CORRELATIONS_CONTENT_TEST_ID)).toHaveTextContent( - '3 alerts related by the same source event' - ); - expect(getByTestId(INSIGHTS_CORRELATIONS_CONTENT_TEST_ID)).toHaveTextContent( - '4 alerts related by session' - ); - }); - - it('should hide row if data is missing', () => { - (useCorrelations as jest.Mock).mockReturnValue({ + (useFetchRelatedAlertsBySameSourceEvent as jest.Mock).mockReturnValue({ loading: false, error: false, - data: [ - { icon: 'warning', value: 1, text: 'alert related by ancestry' }, - { icon: 'warning', value: 1, text: 'alert related by the same source event' }, - { icon: 'warning', value: 1, text: 'alert related by session' }, - ], - dataCount: 4, + dataCount: 1, }); - - const { getByTestId } = render(renderCorrelationsOverview(panelContextValue)); - expect(getByTestId(INSIGHTS_CORRELATIONS_CONTENT_TEST_ID)).not.toHaveTextContent( - 'related case' - ); - }); - - it('should render null if all rows are hidden', () => { - (useCorrelations as jest.Mock).mockReturnValue({ + (useFetchRelatedAlertsBySession as jest.Mock).mockReturnValue({ loading: false, - error: true, - data: [], - dataCount: 0, + error: false, + dataCount: 1, + }); + (useFetchRelatedCases as jest.Mock).mockReturnValue({ + loading: false, + error: false, + dataCount: 1, }); const { getByTestId } = render(renderCorrelationsOverview(panelContextValue)); - expect(getByTestId(INSIGHTS_CORRELATIONS_CONTENT_TEST_ID)).toBeEmptyDOMElement(); + expect(getByTestId(RELATED_ALERTS_BY_ANCESTRY_TEST_ID)).toBeInTheDocument(); + expect(getByTestId(RELATED_ALERTS_BY_SAME_SOURCE_EVENT_TEST_ID)).toBeInTheDocument(); + expect(getByTestId(RELATED_ALERTS_BY_SESSION_TEST_ID)).toBeInTheDocument(); + expect(getByTestId(RELATED_CASES_TEST_ID)).toBeInTheDocument(); + expect(getByTestId(SUPPRESSED_ALERTS_TEST_ID)).toBeInTheDocument(); }); - it('should render loading if any rows are loading', () => { - (useCorrelations as jest.Mock).mockReturnValue({ - loading: true, - error: false, - data: [], - dataCount: 0, - }); + it('should hide rows and show error message if show values are false', () => { + jest + .mocked(useShowRelatedAlertsByAncestry) + .mockReturnValue({ show: false, documentId: 'documentId', indices: ['index1'] }); + jest + .mocked(useShowRelatedAlertsBySameSourceEvent) + .mockReturnValue({ show: false, originalEventId: 'originalEventId' }); + jest + .mocked(useShowRelatedAlertsBySession) + .mockReturnValue({ show: false, entityId: 'entityId' }); + jest.mocked(useShowRelatedCases).mockReturnValue(false); + jest.mocked(useShowSuppressedAlerts).mockReturnValue({ show: false, alertSuppressionCount: 0 }); - const { getByTestId } = render(renderCorrelationsOverview(panelContextValue)); - expect(getByTestId(INSIGHTS_CORRELATIONS_LOADING_TEST_ID)).toBeInTheDocument(); + const { getByTestId, queryByTestId } = render(renderCorrelationsOverview(panelContextValue)); + expect(queryByTestId(RELATED_ALERTS_BY_ANCESTRY_TEST_ID)).not.toBeInTheDocument(); + expect(queryByTestId(RELATED_ALERTS_BY_SAME_SOURCE_EVENT_TEST_ID)).not.toBeInTheDocument(); + expect(queryByTestId(RELATED_ALERTS_BY_SESSION_TEST_ID)).not.toBeInTheDocument(); + expect(queryByTestId(RELATED_CASES_TEST_ID)).not.toBeInTheDocument(); + expect(queryByTestId(SUPPRESSED_ALERTS_TEST_ID)).not.toBeInTheDocument(); + expect(getByTestId(CORRELATIONS_ERROR_TEST_ID)).toBeInTheDocument(); }); - it('should navigate to the left section Insights tab when clicking on button', () => { - (useCorrelations as jest.Mock).mockReturnValue({ - loading: false, - error: false, - data: [ - { icon: 'warning', value: 1, text: 'related case' }, - { icon: 'warning', value: 6, text: 'alerts related by ancestry' }, - { icon: 'warning', value: 1, text: 'alert related by the same source event' }, - { icon: 'warning', value: 6, text: 'alerts related by session' }, - ], - dataCount: 4, - }); + it('should hide rows if values are null', () => { + jest.mocked(useShowRelatedAlertsByAncestry).mockReturnValue({ show: true }); + jest.mocked(useShowRelatedAlertsBySameSourceEvent).mockReturnValue({ show: true }); + jest.mocked(useShowRelatedAlertsBySession).mockReturnValue({ show: true }); + jest.mocked(useShowRelatedCases).mockReturnValue(false); + jest.mocked(useShowSuppressedAlerts).mockReturnValue({ show: false, alertSuppressionCount: 0 }); + + const { queryByTestId } = render(renderCorrelationsOverview(panelContextValue)); + expect(queryByTestId(RELATED_ALERTS_BY_ANCESTRY_TEST_ID)).not.toBeInTheDocument(); + expect(queryByTestId(RELATED_ALERTS_BY_SAME_SOURCE_EVENT_TEST_ID)).not.toBeInTheDocument(); + expect(queryByTestId(RELATED_ALERTS_BY_SESSION_TEST_ID)).not.toBeInTheDocument(); + expect(queryByTestId(RELATED_CASES_TEST_ID)).not.toBeInTheDocument(); + expect(queryByTestId(SUPPRESSED_ALERTS_TEST_ID)).not.toBeInTheDocument(); + }); + it('should navigate to the left section Insights tab when clicking on button', () => { const flyoutContextValue = { openLeftPanel: jest.fn(), } as unknown as ExpandableFlyoutContext; @@ -152,7 +201,7 @@ describe('', () => {
    ); - getByTestId(INSIGHTS_CORRELATIONS_TITLE_LINK_TEST_ID).click(); + getByTestId(TITLE_LINK_TEST_ID).click(); expect(flyoutContextValue.openLeftPanel).toHaveBeenCalledWith({ id: LeftPanelKey, path: { tab: LeftPanelInsightsTab, subTab: CORRELATIONS_TAB_ID }, diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/correlations_overview.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/correlations_overview.tsx index 73d2407c9d115..750d260bbf21f 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/components/correlations_overview.tsx +++ b/x-pack/plugins/security_solution/public/flyout/right/components/correlations_overview.tsx @@ -5,15 +5,23 @@ * 2.0. */ -import React, { useCallback, useMemo } from 'react'; +import React, { useCallback } from 'react'; import { EuiFlexGroup } from '@elastic/eui'; import { useExpandableFlyoutContext } from '@kbn/expandable-flyout'; import { ExpandablePanel } from '../../shared/components/expandable_panel'; -import { InsightsSummaryRow } from './insights_summary_row'; -import { useCorrelations } from '../../shared/hooks/use_correlations'; +import { useShowRelatedAlertsBySession } from '../../shared/hooks/use_show_related_alerts_by_session'; +import { RelatedAlertsBySession } from './related_alerts_by_session'; +import { useShowRelatedAlertsBySameSourceEvent } from '../../shared/hooks/use_show_related_alerts_by_same_source_event'; +import { RelatedAlertsBySameSourceEvent } from './related_alerts_by_same_source_event'; +import { RelatedAlertsByAncestry } from './related_alerts_by_ancestry'; +import { useShowRelatedAlertsByAncestry } from '../../shared/hooks/use_show_related_alerts_by_ancestry'; +import { SuppressedAlerts } from './suppressed_alerts'; +import { useShowSuppressedAlerts } from '../../shared/hooks/use_show_suppressed_alerts'; +import { RelatedCases } from './related_cases'; +import { useShowRelatedCases } from '../../shared/hooks/use_show_related_cases'; import { INSIGHTS_CORRELATIONS_TEST_ID } from './test_ids'; import { useRightPanelContext } from '../context'; -import { CORRELATIONS_TITLE } from './translations'; +import { CORRELATIONS_ERROR, CORRELATIONS_TITLE } from './translations'; import { LeftPanelKey, LeftPanelInsightsTab } from '../../left'; import { CORRELATIONS_TAB_ID } from '../../left/components/correlations_details'; @@ -23,8 +31,14 @@ import { CORRELATIONS_TAB_ID } from '../../left/components/correlations_details' * and the SummaryPanel component for data rendering. */ export const CorrelationsOverview: React.FC = () => { - const { eventId, indexName, dataAsNestedObject, dataFormattedForFieldBrowser, scopeId } = - useRightPanelContext(); + const { + dataAsNestedObject, + dataFormattedForFieldBrowser, + eventId, + indexName, + getFieldsData, + scopeId, + } = useRightPanelContext(); const { openLeftPanel } = useExpandableFlyoutContext(); const goToCorrelationsTab = useCallback(() => { @@ -42,26 +56,30 @@ export const CorrelationsOverview: React.FC = () => { }); }, [eventId, openLeftPanel, indexName, scopeId]); - const { loading, error, data } = useCorrelations({ - eventId, + const { + show: showAlertsByAncestry, + documentId, + indices, + } = useShowRelatedAlertsByAncestry({ + getFieldsData, dataAsNestedObject, dataFormattedForFieldBrowser, - scopeId, + }); + const { show: showSameSourceAlerts, originalEventId } = useShowRelatedAlertsBySameSourceEvent({ + getFieldsData, + }); + const { show: showAlertsBySession, entityId } = useShowRelatedAlertsBySession({ getFieldsData }); + const showCases = useShowRelatedCases(); + const { show: showSuppressedAlerts, alertSuppressionCount } = useShowSuppressedAlerts({ + getFieldsData, }); - const correlationRows = useMemo( - () => - data.map((d) => ( - - )), - [data] - ); + const canShowAtLeastOneInsight = + showAlertsByAncestry || + showSameSourceAlerts || + showAlertsBySession || + showCases || + showSuppressedAlerts; return ( { callback: goToCorrelationsTab, iconType: 'arrowStart', }} - content={{ loading, error }} data-test-subj={INSIGHTS_CORRELATIONS_TEST_ID} > - - {correlationRows} - + {canShowAtLeastOneInsight ? ( + + {showSuppressedAlerts && ( + + )} + {showCases && } + {showSameSourceAlerts && originalEventId && ( + + )} + {showAlertsBySession && entityId && ( + + )} + {showAlertsByAncestry && documentId && indices && ( + + )} + + ) : ( +
    {CORRELATIONS_ERROR}
    + )}
    ); }; diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/entities_overview.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/entities_overview.test.tsx index 29bb8068281ae..d26a93262fa31 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/components/entities_overview.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/right/components/entities_overview.test.tsx @@ -11,14 +11,22 @@ import { RightPanelContext } from '../context'; import { ENTITIES_HOST_OVERVIEW_TEST_ID, ENTITIES_USER_OVERVIEW_TEST_ID, - INSIGHTS_ENTITIES_TOGGLE_ICON_TEST_ID, - INSIGHTS_ENTITIES_TITLE_LINK_TEST_ID, - INSIGHTS_ENTITIES_TITLE_ICON_TEST_ID, - INSIGHTS_ENTITIES_TITLE_TEXT_TEST_ID, + INSIGHTS_ENTITIES_TEST_ID, } from './test_ids'; import { EntitiesOverview } from './entities_overview'; import { TestProviders } from '../../../common/mock'; import { mockGetFieldsData } from '../mocks/mock_context'; +import { + EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID, + EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID, +} from '../../shared/components/test_ids'; + +const TOGGLE_ICON_TEST_ID = EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID(INSIGHTS_ENTITIES_TEST_ID); +const TITLE_LINK_TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID(INSIGHTS_ENTITIES_TEST_ID); +const TITLE_ICON_TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID(INSIGHTS_ENTITIES_TEST_ID); +const TITLE_TEXT_TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID(INSIGHTS_ENTITIES_TEST_ID); describe('', () => { it('should render wrapper component', () => { @@ -35,11 +43,11 @@ describe('', () => { ); - expect(queryByTestId(INSIGHTS_ENTITIES_TOGGLE_ICON_TEST_ID)).not.toBeInTheDocument(); - expect(getByTestId(INSIGHTS_ENTITIES_TITLE_LINK_TEST_ID)).toBeInTheDocument(); - expect(getByTestId(INSIGHTS_ENTITIES_TITLE_LINK_TEST_ID)).toHaveTextContent('Entities'); - expect(getByTestId(INSIGHTS_ENTITIES_TITLE_ICON_TEST_ID)).toBeInTheDocument(); - expect(queryByTestId(INSIGHTS_ENTITIES_TITLE_TEXT_TEST_ID)).not.toBeInTheDocument(); + expect(queryByTestId(TOGGLE_ICON_TEST_ID)).not.toBeInTheDocument(); + expect(getByTestId(TITLE_LINK_TEST_ID)).toBeInTheDocument(); + expect(getByTestId(TITLE_LINK_TEST_ID)).toHaveTextContent('Entities'); + expect(getByTestId(TITLE_ICON_TEST_ID)).toBeInTheDocument(); + expect(queryByTestId(TITLE_TEXT_TEST_ID)).not.toBeInTheDocument(); }); it('should render user and host', () => { diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/header_title.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/header_title.test.tsx index f4c24e64954ba..6d132ce54501e 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/components/header_title.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/right/components/header_title.test.tsx @@ -17,7 +17,7 @@ import { FLYOUT_HEADER_TITLE_TEST_ID, } from './test_ids'; import { HeaderTitle } from './header_title'; -import { DOCUMENT_DETAILS } from './translations'; +import { EVENT_DETAILS } from './translations'; import moment from 'moment-timezone'; import { useDateFormat, useTimeZone } from '../../../common/lib/kibana'; import { mockDataFormattedForFieldBrowser, mockGetFieldsData } from '../mocks/mock_context'; @@ -175,6 +175,6 @@ describe('', () => { const { getByTestId } = renderHeader(contextValue); - expect(getByTestId(FLYOUT_HEADER_TITLE_TEST_ID)).toHaveTextContent(DOCUMENT_DETAILS); + expect(getByTestId(FLYOUT_HEADER_TITLE_TEST_ID)).toHaveTextContent(EVENT_DETAILS); }); }); diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/header_title.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/header_title.tsx index eca086385eb17..bac1b3d9f1bd1 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/components/header_title.tsx +++ b/x-pack/plugins/security_solution/public/flyout/right/components/header_title.tsx @@ -19,7 +19,7 @@ import { } from '../../../common/components/event_details/translations'; import { DocumentSeverity } from './severity'; import { RiskScore } from './risk_score'; -import { DOCUMENT_DETAILS } from './translations'; +import { EVENT_DETAILS } from './translations'; import { useBasicDataFromDetailsData } from '../../../timelines/components/side_panel/event_details/helpers'; import { useRightPanelContext } from '../context'; import { PreferenceFormattedDate } from '../../../common/components/formatted_date'; @@ -79,11 +79,11 @@ export const HeaderTitle: VFC = memo(({ flyoutIsExpandable })

    - {isAlert && !isEmpty(ruleName) ? ruleName : DOCUMENT_DETAILS} + {isAlert && !isEmpty(ruleName) ? ruleName : EVENT_DETAILS}

    - + diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/highlighted_fields.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/highlighted_fields.test.tsx index ed9d2cd623709..0d8ed18d83a43 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/components/highlighted_fields.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/right/components/highlighted_fields.test.tsx @@ -11,11 +11,11 @@ import { RightPanelContext } from '../context'; import { HIGHLIGHTED_FIELDS_DETAILS_TEST_ID, HIGHLIGHTED_FIELDS_TITLE_TEST_ID } from './test_ids'; import { HighlightedFields } from './highlighted_fields'; import { mockDataFormattedForFieldBrowser } from '../mocks/mock_context'; -import { useHighlightedFields } from '../hooks/use_highlighted_fields'; +import { useHighlightedFields } from '../../shared/hooks/use_highlighted_fields'; import { TestProviders } from '../../../common/mock'; import { useRuleWithFallback } from '../../../detection_engine/rule_management/logic/use_rule_with_fallback'; -jest.mock('../hooks/use_highlighted_fields'); +jest.mock('../../shared/hooks/use_highlighted_fields'); jest.mock('../../../detection_engine/rule_management/logic/use_rule_with_fallback'); describe('', () => { @@ -27,15 +27,11 @@ describe('', () => { const panelContextValue = { dataFormattedForFieldBrowser: mockDataFormattedForFieldBrowser, } as unknown as RightPanelContext; - (useHighlightedFields as jest.Mock).mockReturnValue([ - { - field: 'field', - description: { - field: 'field', - values: ['value'], - }, + (useHighlightedFields as jest.Mock).mockReturnValue({ + field: { + values: ['value'], }, - ]); + }); const { getByTestId } = render( @@ -53,7 +49,7 @@ describe('', () => { const panelContextValue = { dataFormattedForFieldBrowser: mockDataFormattedForFieldBrowser, } as unknown as RightPanelContext; - (useHighlightedFields as jest.Mock).mockReturnValue([]); + (useHighlightedFields as jest.Mock).mockReturnValue({}); const { container } = render( @@ -68,15 +64,11 @@ describe('', () => { const panelContextValue = { dataFormattedForFieldBrowser: null, } as unknown as RightPanelContext; - (useHighlightedFields as jest.Mock).mockReturnValue([ - { - field: 'field', - description: { - field: 'field', - values: ['value'], - }, + (useHighlightedFields as jest.Mock).mockReturnValue({ + field: { + values: ['value'], }, - ]); + }); const { container } = render( diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/highlighted_fields.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/highlighted_fields.tsx index f02682721ee5c..79f75ba7ff861 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/components/highlighted_fields.tsx +++ b/x-pack/plugins/security_solution/public/flyout/right/components/highlighted_fields.tsx @@ -6,9 +6,10 @@ */ import type { FC } from 'react'; -import React from 'react'; +import React, { useMemo } from 'react'; import type { EuiBasicTableColumn } from '@elastic/eui'; import { EuiFlexGroup, EuiFlexItem, EuiInMemoryTable, EuiPanel, EuiTitle } from '@elastic/eui'; +import { convertHighlightedFieldsToTableRow } from '../../shared/utils/highlighted_fields_helpers'; import { useRuleWithFallback } from '../../../detection_engine/rule_management/logic/use_rule_with_fallback'; import { useBasicDataFromDetailsData } from '../../../timelines/components/side_panel/event_details/helpers'; import { HighlightedFieldsCell } from './highlighted_fields_cell'; @@ -17,7 +18,6 @@ import { SecurityCellActions, SecurityCellActionsTrigger, } from '../../../common/components/cell_actions'; -import type { UseHighlightedFieldsResult } from '../hooks/use_highlighted_fields'; import { HIGHLIGHTED_FIELDS_DETAILS_TEST_ID, HIGHLIGHTED_FIELDS_TITLE_TEST_ID } from './test_ids'; import { HIGHLIGHTED_FIELDS_FIELD_COLUMN, @@ -25,14 +25,30 @@ import { HIGHLIGHTED_FIELDS_VALUE_COLUMN, } from './translations'; import { useRightPanelContext } from '../context'; -import { useHighlightedFields } from '../hooks/use_highlighted_fields'; +import { useHighlightedFields } from '../../shared/hooks/use_highlighted_fields'; -const columns: Array> = [ +export interface HighlightedFieldsTableRow { + /** + * Highlighted field name (overrideField or if null, falls back to id) + */ + field: string; + description: { + /** + * Highlighted field name (overrideField or if null, falls back to id) + */ + field: string; + /** + * Highlighted field value + */ + values: string[] | null | undefined; + }; +} + +const columns: Array> = [ { field: 'field', name: HIGHLIGHTED_FIELDS_FIELD_COLUMN, 'data-test-subj': 'fieldCell', - width: '125px', }, { field: 'description', @@ -66,8 +82,12 @@ export const HighlightedFields: FC = () => { dataFormattedForFieldBrowser, investigationFields: maybeRule?.investigation_fields ?? [], }); + const items = useMemo( + () => convertHighlightedFieldsToTableRow(highlightedFields), + [highlightedFields] + ); - if (!dataFormattedForFieldBrowser || highlightedFields.length === 0) { + if (!dataFormattedForFieldBrowser || items.length === 0) { return null; } @@ -80,7 +100,7 @@ export const HighlightedFields: FC = () => { - + diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/investigation_guide.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/investigation_guide.test.tsx new file mode 100644 index 0000000000000..ecac8547c6a51 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/right/components/investigation_guide.test.tsx @@ -0,0 +1,94 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { render } from '@testing-library/react'; +import { InvestigationGuide } from './investigation_guide'; +import { RightPanelContext } from '../context'; +import { + INVESTIGATION_GUIDE_BUTTON_TEST_ID, + INVESTIGATION_GUIDE_LOADING_TEST_ID, + INVESTIGATION_GUIDE_NO_DATA_TEST_ID, +} from './test_ids'; +import { mockContextValue } from '../mocks/mock_right_panel_context'; +import { mockFlyoutContextValue } from '../../shared/mocks/mock_flyout_context'; +import { ExpandableFlyoutContext } from '@kbn/expandable-flyout/src/context'; +import { useInvestigationGuide } from '../../shared/hooks/use_investigation_guide'; + +jest.mock('../../shared/hooks/use_investigation_guide'); + +const renderInvestigationGuide = (context: RightPanelContext = mockContextValue) => ( + + + + + +); + +describe('', () => { + it('should render investigation guide button correctly', () => { + (useInvestigationGuide as jest.Mock).mockReturnValue({ + loading: false, + error: false, + basicAlertData: { ruleId: 'ruleId' }, + ruleNote: 'test note', + }); + const { getByTestId } = render(renderInvestigationGuide()); + expect(getByTestId(INVESTIGATION_GUIDE_BUTTON_TEST_ID)).toBeInTheDocument(); + }); + + it('should render loading', () => { + (useInvestigationGuide as jest.Mock).mockReturnValue({ + loading: true, + }); + const { getByTestId } = render(renderInvestigationGuide()); + expect(getByTestId(INVESTIGATION_GUIDE_LOADING_TEST_ID)).toBeInTheDocument(); + }); + + it('should render no data message when there is no ruleId', () => { + (useInvestigationGuide as jest.Mock).mockReturnValue({ + basicAlertData: {}, + ruleNote: 'test note', + }); + const { getByTestId } = render(renderInvestigationGuide()); + expect(getByTestId(INVESTIGATION_GUIDE_NO_DATA_TEST_ID)).toBeInTheDocument(); + }); + + it('should render no data message when there is no rule note', () => { + (useInvestigationGuide as jest.Mock).mockReturnValue({ + basicAlertData: { ruleId: 'ruleId' }, + ruleNote: undefined, + }); + const { getByTestId } = render(renderInvestigationGuide()); + expect(getByTestId(INVESTIGATION_GUIDE_NO_DATA_TEST_ID)).toBeInTheDocument(); + }); + + it('should not render investigation guide button when dataFormattedForFieldBrowser is null', () => { + (useInvestigationGuide as jest.Mock).mockReturnValue({ + loading: false, + error: false, + show: false, + }); + const mockContext = { + ...mockContextValue, + dataFormattedForFieldBrowser: null, + }; + const { container } = render(renderInvestigationGuide(mockContext)); + expect(container).toBeEmptyDOMElement(); + }); + + it('should render null when useInvestigationGuide errors out', () => { + (useInvestigationGuide as jest.Mock).mockReturnValue({ + loading: false, + error: true, + show: false, + }); + + const { container } = render(renderInvestigationGuide()); + expect(container).toBeEmptyDOMElement(); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/investigation_guide.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/investigation_guide.tsx new file mode 100644 index 0000000000000..4816577495c70 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/right/components/investigation_guide.tsx @@ -0,0 +1,94 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +import React, { useCallback } from 'react'; +import { EuiButton, EuiFlexGroup, EuiFlexItem, EuiLoadingSpinner, EuiTitle } from '@elastic/eui'; +import { useExpandableFlyoutContext } from '@kbn/expandable-flyout'; +import { useInvestigationGuide } from '../../shared/hooks/use_investigation_guide'; +import { useRightPanelContext } from '../context'; +import { LeftPanelKey, LeftPanelInvestigationTab } from '../../left'; +import { + INVESTIGATION_GUIDE_BUTTON_TEST_ID, + INVESTIGATION_GUIDE_LOADING_TEST_ID, + INVESTIGATION_GUIDE_NO_DATA_TEST_ID, + INVESTIGATION_GUIDE_TEST_ID, +} from './test_ids'; +import { + INVESTIGATION_GUIDE_BUTTON, + INVESTIGATION_GUIDE_NO_DATA, + INVESTIGATION_GUIDE_TITLE, +} from './translations'; + +/** + * Render either the investigation guide button that opens Investigation section in the left panel, + * or a no-data message if investigation guide hasn't been set up on the rule + */ +export const InvestigationGuide: React.FC = () => { + const { openLeftPanel } = useExpandableFlyoutContext(); + const { eventId, indexName, scopeId, dataFormattedForFieldBrowser } = useRightPanelContext(); + + const { loading, error, basicAlertData, ruleNote } = useInvestigationGuide({ + dataFormattedForFieldBrowser, + }); + + const goToInvestigationsTab = useCallback(() => { + openLeftPanel({ + id: LeftPanelKey, + path: { + tab: LeftPanelInvestigationTab, + }, + params: { + id: eventId, + indexName, + scopeId, + }, + }); + }, [eventId, indexName, openLeftPanel, scopeId]); + + if (!dataFormattedForFieldBrowser || error) { + return null; + } + + if (loading) { + return ( + + + + + + ); + } + + return ( + + + +
    {INVESTIGATION_GUIDE_TITLE}
    +
    +
    + + {basicAlertData.ruleId && ruleNote ? ( + + {INVESTIGATION_GUIDE_BUTTON} + + ) : ( +
    + {INVESTIGATION_GUIDE_NO_DATA} +
    + )} +
    +
    + ); +}; + +InvestigationGuide.displayName = 'InvestigationGuideButton'; diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/investigation_guide_button.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/investigation_guide_button.test.tsx deleted file mode 100644 index faf5ac6fe8e09..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/right/components/investigation_guide_button.test.tsx +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import React from 'react'; -import { render } from '@testing-library/react'; -import { InvestigationGuideButton } from './investigation_guide_button'; -import { RightPanelContext } from '../context'; -import { INVESTIGATION_GUIDE_BUTTON_TEST_ID } from './test_ids'; -import { mockContextValue } from '../mocks/mock_right_panel_context'; -import { mockFlyoutContextValue } from '../../shared/mocks/mock_flyout_context'; -import { ExpandableFlyoutContext } from '@kbn/expandable-flyout/src/context'; -import { useRuleWithFallback } from '../../../detection_engine/rule_management/logic/use_rule_with_fallback'; - -const mockUseRuleWithFallback = useRuleWithFallback as jest.Mock; -jest.mock('../../../detection_engine/rule_management/logic/use_rule_with_fallback'); - -describe('', () => { - it('should render investigation guide button correctly', () => { - mockUseRuleWithFallback.mockReturnValue({ rule: { note: 'test note' } }); - const { getByTestId } = render( - - - - - - ); - expect(getByTestId(INVESTIGATION_GUIDE_BUTTON_TEST_ID)).toBeInTheDocument(); - }); - - it('should not render investigation guide button when dataFormattedForFieldBrowser is null', () => { - const { container } = render( - - - - - - ); - - expect(container).toBeEmptyDOMElement(); - }); - - it('should not render investigation guide button when rule id is null', () => { - const { container } = render( - - - - - - ); - expect(container).toBeEmptyDOMElement(); - }); - - it('should not render investigation guide button when investigation guide is not available', () => { - mockUseRuleWithFallback.mockReturnValue({ rule: {} }); - const { container } = render( - - - - - - ); - expect(container).toBeEmptyDOMElement(); - }); -}); diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/investigation_guide_button.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/investigation_guide_button.tsx deleted file mode 100644 index ce9eb79c903b3..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/right/components/investigation_guide_button.tsx +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ -import React, { useCallback } from 'react'; -import { EuiButton } from '@elastic/eui'; -import { useExpandableFlyoutContext } from '@kbn/expandable-flyout'; -import { useRightPanelContext } from '../context'; -import { useRuleWithFallback } from '../../../detection_engine/rule_management/logic/use_rule_with_fallback'; -import { useBasicDataFromDetailsData } from '../../../timelines/components/side_panel/event_details/helpers'; -import { LeftPanelKey, LeftPanelInvestigationTab } from '../../left'; -import { INVESTIGATION_GUIDE_BUTTON_TEST_ID } from './test_ids'; -import { INVESTIGATION_GUIDE_TITLE } from './translations'; - -/** - * Investigation guide button that opens Investigation section in the left panel - */ -export const InvestigationGuideButton: React.FC = () => { - const { openLeftPanel } = useExpandableFlyoutContext(); - const { eventId, indexName, scopeId, dataFormattedForFieldBrowser } = useRightPanelContext(); - - const { ruleId } = useBasicDataFromDetailsData(dataFormattedForFieldBrowser); - const { rule: maybeRule } = useRuleWithFallback(ruleId); - - const goToInvestigationsTab = useCallback(() => { - openLeftPanel({ - id: LeftPanelKey, - path: { - tab: LeftPanelInvestigationTab, - }, - params: { - id: eventId, - indexName, - scopeId, - }, - }); - }, [eventId, indexName, openLeftPanel, scopeId]); - - if (!dataFormattedForFieldBrowser || !ruleId || !maybeRule?.note) { - return null; - } - return ( - - {INVESTIGATION_GUIDE_TITLE} - - ); -}; - -InvestigationGuideButton.displayName = 'InvestigationGuideButton'; diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/investigation_section.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/investigation_section.tsx index b0b021d1bd60c..655aa13ea177b 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/components/investigation_section.tsx +++ b/x-pack/plugins/security_solution/public/flyout/right/components/investigation_section.tsx @@ -12,7 +12,7 @@ import { ExpandableSection } from './expandable_section'; import { HighlightedFields } from './highlighted_fields'; import { INVESTIGATION_SECTION_TEST_ID } from './test_ids'; import { INVESTIGATION_TITLE } from './translations'; -import { InvestigationGuideButton } from './investigation_guide_button'; +import { InvestigationGuide } from './investigation_guide'; export interface DescriptionSectionProps { /** * Boolean to allow the component to be expanded or collapsed on first render @@ -30,7 +30,7 @@ export const InvestigationSection: VFC = ({ expanded = title={INVESTIGATION_TITLE} data-test-subj={INVESTIGATION_SECTION_TEST_ID} > - + diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/prevalence_overview.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/prevalence_overview.test.tsx index 828a8b247543b..96abc4689771e 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/components/prevalence_overview.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/right/components/prevalence_overview.test.tsx @@ -9,158 +9,199 @@ import { ExpandableFlyoutContext } from '@kbn/expandable-flyout/src/context'; import { render } from '@testing-library/react'; import { TestProviders } from '../../../common/mock'; import { RightPanelContext } from '../context'; -import { - INSIGHTS_PREVALENCE_TITLE_ICON_TEST_ID, - INSIGHTS_PREVALENCE_TITLE_LINK_TEST_ID, - INSIGHTS_PREVALENCE_TITLE_TEXT_TEST_ID, - INSIGHTS_PREVALENCE_TOGGLE_ICON_TEST_ID, -} from './test_ids'; +import { INSIGHTS_PREVALENCE_TEST_ID } from './test_ids'; import { LeftPanelInsightsTab, LeftPanelKey } from '../../left'; import React from 'react'; import { PrevalenceOverview } from './prevalence_overview'; -import { usePrevalence } from '../hooks/use_prevalence'; -import { PrevalenceOverviewRow } from './prevalence_overview_row'; -import { useFetchFieldValuePairWithAggregation } from '../../shared/hooks/use_fetch_field_value_pair_with_aggregation'; -import { useFetchUniqueByField } from '../../shared/hooks/use_fetch_unique_by_field'; import { PREVALENCE_TAB_ID } from '../../left/components/prevalence_details'; -import type { BrowserFields, TimelineEventsDetailsItem } from '@kbn/timelines-plugin/common'; - -jest.mock('../../shared/hooks/use_fetch_field_value_pair_with_aggregation'); -jest.mock('../../shared/hooks/use_fetch_unique_by_field'); -jest.mock('../hooks/use_prevalence'); - -const highlightedField = { - name: 'field', - values: ['values'], -}; -const panelContextValue = ( - eventId: string | null, - browserFields: BrowserFields | null, - dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] | null -) => - ({ - eventId, - indexName: 'indexName', - browserFields, - dataFormattedForFieldBrowser, - scopeId: 'scopeId', - } as unknown as RightPanelContext); - -const renderPrevalenceOverview = (contextValue: RightPanelContext) => ( +import { + EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID, + EXPANDABLE_PANEL_LOADING_TEST_ID, + EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID, +} from '../../shared/components/test_ids'; +import { usePrevalence } from '../../shared/hooks/use_prevalence'; +import { mockContextValue } from '../mocks/mock_right_panel_context'; + +jest.mock('../../shared/hooks/use_prevalence'); + +const TOGGLE_ICON_TEST_ID = EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID(INSIGHTS_PREVALENCE_TEST_ID); +const TITLE_LINK_TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID(INSIGHTS_PREVALENCE_TEST_ID); +const TITLE_ICON_TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID(INSIGHTS_PREVALENCE_TEST_ID); +const TITLE_TEXT_TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID(INSIGHTS_PREVALENCE_TEST_ID); + +const flyoutContextValue = { + openLeftPanel: jest.fn(), +} as unknown as ExpandableFlyoutContext; + +const renderPrevalenceOverview = (contextValue: RightPanelContext = mockContextValue) => ( - - - + + + + + ); describe('', () => { it('should render wrapper component', () => { - (useFetchFieldValuePairWithAggregation as jest.Mock).mockReturnValue({ + (usePrevalence as jest.Mock).mockReturnValue({ loading: false, error: false, - count: 1, + data: [], }); - (useFetchUniqueByField as jest.Mock).mockReturnValue({ - loading: false, + + const { getByTestId, queryByTestId } = render(renderPrevalenceOverview()); + expect(queryByTestId(TOGGLE_ICON_TEST_ID)).not.toBeInTheDocument(); + expect(getByTestId(TITLE_LINK_TEST_ID)).toBeInTheDocument(); + expect(getByTestId(TITLE_LINK_TEST_ID)).toHaveTextContent('Prevalence'); + expect(getByTestId(TITLE_ICON_TEST_ID)).toBeInTheDocument(); + expect(queryByTestId(TITLE_TEXT_TEST_ID)).not.toBeInTheDocument(); + }); + + it('should render loading', () => { + (usePrevalence as jest.Mock).mockReturnValue({ + loading: true, error: false, - count: 10, + data: [], }); - (usePrevalence as jest.Mock).mockReturnValue([]); - - const { getByTestId, queryByTestId } = render( - renderPrevalenceOverview(panelContextValue('eventId', {}, [])) - ); - expect(queryByTestId(INSIGHTS_PREVALENCE_TOGGLE_ICON_TEST_ID)).not.toBeInTheDocument(); - expect(getByTestId(INSIGHTS_PREVALENCE_TITLE_LINK_TEST_ID)).toBeInTheDocument(); - expect(getByTestId(INSIGHTS_PREVALENCE_TITLE_ICON_TEST_ID)).toBeInTheDocument(); - expect(queryByTestId(INSIGHTS_PREVALENCE_TITLE_TEXT_TEST_ID)).not.toBeInTheDocument(); + + const { getByTestId } = render(renderPrevalenceOverview()); + + expect( + getByTestId(EXPANDABLE_PANEL_LOADING_TEST_ID(INSIGHTS_PREVALENCE_TEST_ID)) + ).toBeInTheDocument(); }); - it('should render component', () => { - (useFetchFieldValuePairWithAggregation as jest.Mock).mockReturnValue({ + it('should render no-data message', () => { + (usePrevalence as jest.Mock).mockReturnValue({ loading: false, error: false, - count: 1, + data: [], }); - (useFetchUniqueByField as jest.Mock).mockReturnValue({ + + const { getByTestId } = render(renderPrevalenceOverview()); + + expect(getByTestId(`${INSIGHTS_PREVALENCE_TEST_ID}Error`)).toBeInTheDocument(); + }); + + it('should render only data with prevalence less than 10%', () => { + const field1 = 'field1'; + const field2 = 'field2'; + (usePrevalence as jest.Mock).mockReturnValue({ loading: false, error: false, - count: 10, + data: [ + { + field: field1, + value: 'value1', + alertCount: 1, + docCount: 1, + hostPrevalence: 0.05, + userPrevalence: 0.1, + }, + { + field: field2, + value: 'value2', + alertCount: 1, + docCount: 1, + hostPrevalence: 0.5, + userPrevalence: 0.05, + }, + ], }); - (usePrevalence as jest.Mock).mockReturnValue([ - , - ]); - const { getByTestId } = render(renderPrevalenceOverview(panelContextValue('eventId', {}, []))); + const { queryByTestId, getByTestId } = render(renderPrevalenceOverview()); + + expect(getByTestId(TITLE_LINK_TEST_ID)).toHaveTextContent('Prevalence'); - expect(getByTestId(INSIGHTS_PREVALENCE_TITLE_LINK_TEST_ID)).toHaveTextContent('Prevalence'); + const iconDataTestSubj1 = `${INSIGHTS_PREVALENCE_TEST_ID}${field1}Icon`; + const valueDataTestSubj1 = `${INSIGHTS_PREVALENCE_TEST_ID}${field1}Value`; + expect(getByTestId(iconDataTestSubj1)).toBeInTheDocument(); + expect(getByTestId(valueDataTestSubj1)).toBeInTheDocument(); + expect(getByTestId(valueDataTestSubj1)).toHaveTextContent('field1, value1 is uncommon'); - const iconDataTestSubj = 'testIcon'; - const valueDataTestSubj = 'testValue'; - expect(getByTestId(iconDataTestSubj)).toBeInTheDocument(); - expect(getByTestId(valueDataTestSubj)).toBeInTheDocument(); + const iconDataTestSubj2 = `${INSIGHTS_PREVALENCE_TEST_ID}${field2}Icon`; + const valueDataTestSubj2 = `${INSIGHTS_PREVALENCE_TEST_ID}${field2}Value`; + expect(queryByTestId(iconDataTestSubj2)).not.toBeInTheDocument(); + expect(queryByTestId(valueDataTestSubj2)).not.toBeInTheDocument(); }); it('should render null if eventId is null', () => { - (usePrevalence as jest.Mock).mockReturnValue([]); + (usePrevalence as jest.Mock).mockReturnValue({ + loading: false, + error: false, + data: [], + }); + const contextValue = { + ...mockContextValue, + eventId: null, + } as unknown as RightPanelContext; - const { container } = render(renderPrevalenceOverview(panelContextValue(null, {}, []))); + const { container } = render(renderPrevalenceOverview(contextValue)); expect(container).toBeEmptyDOMElement(); }); it('should render null if browserFields is null', () => { - (usePrevalence as jest.Mock).mockReturnValue([]); + (usePrevalence as jest.Mock).mockReturnValue({ + loading: false, + error: false, + data: [], + }); + const contextValue = { + ...mockContextValue, + browserFields: null, + }; - const { container } = render(renderPrevalenceOverview(panelContextValue('eventId', null, []))); + const { container } = render(renderPrevalenceOverview(contextValue)); expect(container).toBeEmptyDOMElement(); }); it('should render null if dataFormattedForFieldBrowser is null', () => { - (usePrevalence as jest.Mock).mockReturnValue([]); + (usePrevalence as jest.Mock).mockReturnValue({ + loading: false, + error: false, + data: [], + }); + const contextValue = { + ...mockContextValue, + dataFormattedForFieldBrowser: null, + }; - const { container } = render(renderPrevalenceOverview(panelContextValue('eventId', {}, null))); + const { container } = render(renderPrevalenceOverview(contextValue)); expect(container).toBeEmptyDOMElement(); }); it('should navigate to left section Insights tab when clicking on button', () => { - (useFetchFieldValuePairWithAggregation as jest.Mock).mockReturnValue({ - loading: false, - error: false, - count: 1, - }); - (useFetchUniqueByField as jest.Mock).mockReturnValue({ + (usePrevalence as jest.Mock).mockReturnValue({ loading: false, error: false, - count: 10, + data: [ + { + field: 'field1', + value: 'value1', + alertCount: 1, + docCount: 1, + hostPrevalence: 0.05, + userPrevalence: 0.1, + }, + ], }); - (usePrevalence as jest.Mock).mockReturnValue([ - , - ]); - const flyoutContextValue = { - openLeftPanel: jest.fn(), - } as unknown as ExpandableFlyoutContext; - - const { getByTestId } = render( - - - - - - - - ); - - getByTestId(INSIGHTS_PREVALENCE_TITLE_LINK_TEST_ID).click(); + + const { getByTestId } = render(renderPrevalenceOverview()); + + getByTestId(TITLE_LINK_TEST_ID).click(); expect(flyoutContextValue.openLeftPanel).toHaveBeenCalledWith({ id: LeftPanelKey, path: { tab: LeftPanelInsightsTab, subTab: PREVALENCE_TAB_ID }, params: { id: 'eventId', - indexName: 'indexName', + indexName: 'index', scopeId: 'scopeId', }, }); diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/prevalence_overview.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/prevalence_overview.tsx index b017b4b9225a4..309925c21d98b 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/components/prevalence_overview.tsx +++ b/x-pack/plugins/security_solution/public/flyout/right/components/prevalence_overview.tsx @@ -6,21 +6,25 @@ */ import type { FC } from 'react'; -import React, { useCallback } from 'react'; +import React, { useCallback, useMemo } from 'react'; import { EuiFlexGroup } from '@elastic/eui'; import { useExpandableFlyoutContext } from '@kbn/expandable-flyout'; import { ExpandablePanel } from '../../shared/components/expandable_panel'; -import { usePrevalence } from '../hooks/use_prevalence'; +import { usePrevalence } from '../../shared/hooks/use_prevalence'; import { INSIGHTS_PREVALENCE_TEST_ID } from './test_ids'; import { useRightPanelContext } from '../context'; -import { PREVALENCE_TITLE } from './translations'; +import { PREVALENCE_NO_DATA, PREVALENCE_ROW_UNCOMMON, PREVALENCE_TITLE } from './translations'; import { LeftPanelKey, LeftPanelInsightsTab } from '../../left'; import { PREVALENCE_TAB_ID } from '../../left/components/prevalence_details'; +import { InsightsSummaryRow } from './insights_summary_row'; + +const PERCENTAGE_THRESHOLD = 0.1; // we show the prevalence if its value is below 10% +const DEFAULT_FROM = 'now-30d'; +const DEFAULT_TO = 'now'; /** * Prevalence section under Insights section, overview tab. - * The component fetches the necessary data, then pass it down to the InsightsSubSection component for loading and error state, - * and the SummaryPanel component for data rendering. + * The component fetches the necessary data at once. The loading and error states are handled by the ExpandablePanel component. */ export const PrevalenceOverview: FC = () => { const { @@ -48,14 +52,27 @@ export const PrevalenceOverview: FC = () => { }); }, [eventId, openLeftPanel, indexName, scopeId]); - const prevalenceRows = usePrevalence({ - eventId, - browserFields, + const { loading, error, data } = usePrevalence({ dataFormattedForFieldBrowser, investigationFields, - scopeId, + interval: { + from: DEFAULT_FROM, + to: DEFAULT_TO, + }, }); + // only show data if the host prevalence is below 10% + const uncommonData = useMemo( + () => + data.filter( + (d) => + isFinite(d.hostPrevalence) && + d.hostPrevalence > 0 && + d.hostPrevalence < PERCENTAGE_THRESHOLD + ), + [data] + ); + if (!eventId || !browserFields || !dataFormattedForFieldBrowser) { return null; } @@ -67,10 +84,21 @@ export const PrevalenceOverview: FC = () => { callback: goToCorrelationsTab, iconType: 'arrowStart', }} + content={{ loading, error }} data-test-subj={INSIGHTS_PREVALENCE_TEST_ID} > - {prevalenceRows} + {uncommonData.length > 0 ? ( + uncommonData.map((d) => ( + + )) + ) : ( +
    {PREVALENCE_NO_DATA}
    + )}
    ); diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/prevalence_overview_row.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/prevalence_overview_row.test.tsx deleted file mode 100644 index 6398a55b50cdd..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/right/components/prevalence_overview_row.test.tsx +++ /dev/null @@ -1,108 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { render } from '@testing-library/react'; -import React from 'react'; -import { PrevalenceOverviewRow } from './prevalence_overview_row'; -import { useFetchFieldValuePairWithAggregation } from '../../shared/hooks/use_fetch_field_value_pair_with_aggregation'; -import { useFetchUniqueByField } from '../../shared/hooks/use_fetch_unique_by_field'; - -jest.mock('../../shared/hooks/use_fetch_field_value_pair_with_aggregation'); -jest.mock('../../shared/hooks/use_fetch_unique_by_field'); - -const highlightedField = { - name: 'field', - values: ['values'], -}; -const dataTestSubj = 'test'; -const iconDataTestSubj = 'testIcon'; -const valueDataTestSubj = 'testValue'; -const colorDataTestSubj = 'testColor'; -const loadingDataTestSubj = 'testLoading'; - -describe('', () => { - it('should display row if prevalence is below or equal threshold', () => { - (useFetchFieldValuePairWithAggregation as jest.Mock).mockReturnValue({ - loading: false, - error: false, - count: 1, - }); - (useFetchUniqueByField as jest.Mock).mockReturnValue({ - loading: false, - error: false, - count: 10, - }); - - const { getByTestId, getAllByText, queryByTestId } = render( - - ); - - const { name, values } = highlightedField; - - expect(getByTestId(iconDataTestSubj)).toBeInTheDocument(); - expect(getByTestId(valueDataTestSubj)).toBeInTheDocument(); - expect(getAllByText(`${name}, ${values} is uncommon`)).toHaveLength(1); - expect(queryByTestId(colorDataTestSubj)).not.toBeInTheDocument(); - }); - - it('should not display row if prevalence is higher than threshold', () => { - (useFetchFieldValuePairWithAggregation as jest.Mock).mockReturnValue({ - loading: false, - error: false, - count: 1, - }); - (useFetchUniqueByField as jest.Mock).mockReturnValue({ - loading: false, - error: false, - count: 2, - }); - - const { queryAllByAltText } = render( - - ); - - expect(queryAllByAltText('is uncommon')).toHaveLength(0); - }); - - it('should not display row if error retrieving data', () => { - (useFetchFieldValuePairWithAggregation as jest.Mock).mockReturnValue({ - loading: false, - error: true, - count: 0, - }); - (useFetchUniqueByField as jest.Mock).mockReturnValue({ - loading: false, - error: true, - count: 0, - }); - - const { queryAllByAltText } = render( - - ); - - expect(queryAllByAltText('is uncommon')).toHaveLength(0); - }); - - it('should display loading', () => { - (useFetchFieldValuePairWithAggregation as jest.Mock).mockReturnValue({ - loading: true, - error: false, - count: 1, - }); - (useFetchUniqueByField as jest.Mock).mockReturnValue({ - loading: false, - error: false, - count: 10, - }); - - const { getByTestId } = render( - - ); - - expect(getByTestId(loadingDataTestSubj)).toBeInTheDocument(); - }); -}); diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/prevalence_overview_row.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/prevalence_overview_row.tsx deleted file mode 100644 index 12e44a42220db..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/right/components/prevalence_overview_row.tsx +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import type { VFC } from 'react'; -import React from 'react'; -import { PREVALENCE_ROW_UNCOMMON } from './translations'; -import { useFetchFieldValuePairWithAggregation } from '../../shared/hooks/use_fetch_field_value_pair_with_aggregation'; -import { useFetchUniqueByField } from '../../shared/hooks/use_fetch_unique_by_field'; -import { InsightsSummaryRow } from './insights_summary_row'; - -const HOST_FIELD = 'host.name'; -const PERCENTAGE_THRESHOLD = 0.1; // we show the prevalence if its value is below 10% - -export interface PrevalenceOverviewRowProps { - /** - * The highlighted field name and values - * */ - highlightedField: { name: string; values: string[] }; - /** - * Prefix data-test-subj because this component will be used in multiple places - */ - ['data-test-subj']?: string; -} - -/** - * Retrieves the unique hosts for the field/value pair as well as the total number of unique hosts, - * calculate the prevalence. If the prevalence is higher than 0.1, the row will render null. - */ -export const PrevalenceOverviewRow: VFC = ({ - highlightedField, - 'data-test-subj': dataTestSubj, -}) => { - const { - loading: hostsLoading, - error: hostsError, - count: hostsCount, - } = useFetchFieldValuePairWithAggregation({ - highlightedField, - aggregationField: HOST_FIELD, - }); - - const { - loading: uniqueHostsLoading, - error: uniqueHostsError, - count: uniqueHostsCount, - } = useFetchUniqueByField({ field: HOST_FIELD }); - - const { name, values } = highlightedField; - - // prevalence is number of host(s) where the field/value pair was found divided by the total number of hosts in the environment - const prevalence = hostsCount / uniqueHostsCount; - const loading = hostsLoading || uniqueHostsLoading; - const error = hostsError || uniqueHostsError; - const text = `${name}, ${values} ${PREVALENCE_ROW_UNCOMMON}`; - - // we do not want to render the row is the prevalence is Infinite, 0 or above the decided threshold - const shouldNotRender = - isFinite(prevalence) && (prevalence === 0 || prevalence > PERCENTAGE_THRESHOLD); - - return ( - - ); -}; - -PrevalenceOverviewRow.displayName = 'PrevalenceOverviewRow'; diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/related_alerts_by_ancestry.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/related_alerts_by_ancestry.test.tsx new file mode 100644 index 0000000000000..9f6a4ec83a2c2 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/right/components/related_alerts_by_ancestry.test.tsx @@ -0,0 +1,92 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { render } from '@testing-library/react'; +import { + SUMMARY_ROW_ICON_TEST_ID, + SUMMARY_ROW_VALUE_TEST_ID, + SUMMARY_ROW_LOADING_TEST_ID, + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_ANCESTRY_TEST_ID, +} from './test_ids'; +import { RelatedAlertsByAncestry } from './related_alerts_by_ancestry'; +import { useFetchRelatedAlertsByAncestry } from '../../shared/hooks/use_fetch_related_alerts_by_ancestry'; + +jest.mock('../../shared/hooks/use_fetch_related_alerts_by_ancestry'); + +const documentId = 'documentId'; +const indices = ['indices']; +const scopeId = 'scopeId'; + +const ICON_TEST_ID = SUMMARY_ROW_ICON_TEST_ID( + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_ANCESTRY_TEST_ID +); +const VALUE_TEST_ID = SUMMARY_ROW_VALUE_TEST_ID( + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_ANCESTRY_TEST_ID +); +const LOADING_TEST_ID = SUMMARY_ROW_LOADING_TEST_ID( + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_ANCESTRY_TEST_ID +); + +describe('', () => { + it('should render many related alerts correctly', () => { + (useFetchRelatedAlertsByAncestry as jest.Mock).mockReturnValue({ + loading: false, + error: false, + dataCount: 2, + }); + + const { getByTestId } = render( + + ); + expect(getByTestId(ICON_TEST_ID)).toBeInTheDocument(); + const value = getByTestId(VALUE_TEST_ID); + expect(value).toBeInTheDocument(); + expect(value).toHaveTextContent('2 alerts related by ancestry'); + expect(getByTestId(VALUE_TEST_ID)).toBeInTheDocument(); + }); + + it('should render single related alerts correctly', () => { + (useFetchRelatedAlertsByAncestry as jest.Mock).mockReturnValue({ + loading: false, + error: false, + dataCount: 1, + }); + + const { getByTestId } = render( + + ); + expect(getByTestId(ICON_TEST_ID)).toBeInTheDocument(); + const value = getByTestId(VALUE_TEST_ID); + expect(value).toBeInTheDocument(); + expect(value).toHaveTextContent('1 alert related by ancestry'); + expect(getByTestId(VALUE_TEST_ID)).toBeInTheDocument(); + }); + + it('should render loading skeleton', () => { + (useFetchRelatedAlertsByAncestry as jest.Mock).mockReturnValue({ + loading: true, + }); + + const { getByTestId } = render( + + ); + expect(getByTestId(LOADING_TEST_ID)).toBeInTheDocument(); + }); + + it('should render null if error', () => { + (useFetchRelatedAlertsByAncestry as jest.Mock).mockReturnValue({ + loading: false, + error: true, + }); + + const { container } = render( + + ); + expect(container).toBeEmptyDOMElement(); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/related_alerts_by_ancestry.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/related_alerts_by_ancestry.tsx new file mode 100644 index 0000000000000..0a48443de7320 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/right/components/related_alerts_by_ancestry.tsx @@ -0,0 +1,59 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { useFetchRelatedAlertsByAncestry } from '../../shared/hooks/use_fetch_related_alerts_by_ancestry'; +import { CORRELATIONS_ANCESTRY_ALERTS } from '../../shared/translations'; +import { InsightsSummaryRow } from './insights_summary_row'; +import { INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_ANCESTRY_TEST_ID } from './test_ids'; + +const ICON = 'warning'; + +export interface RelatedAlertsByAncestryProps { + /** + * Value of the kibana.alert.ancestors.id field + */ + documentId: string; + /** + * Values of the kibana.alert.rule.parameters.index field + */ + indices: string[]; + /** + * Maintain backwards compatibility // TODO remove when possible + */ + scopeId: string; +} + +/** + * Show related alerts by ancestry in summary row + */ +export const RelatedAlertsByAncestry: React.VFC = ({ + documentId, + indices, + scopeId, +}) => { + const { loading, error, dataCount } = useFetchRelatedAlertsByAncestry({ + documentId, + indices, + scopeId, + }); + const text = CORRELATIONS_ANCESTRY_ALERTS(dataCount); + + return ( + + ); +}; + +RelatedAlertsByAncestry.displayName = 'RelatedAlertsByAncestry'; diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/related_alerts_by_same_source_event.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/related_alerts_by_same_source_event.test.tsx new file mode 100644 index 0000000000000..afcbaeb8c5c88 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/right/components/related_alerts_by_same_source_event.test.tsx @@ -0,0 +1,91 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { render } from '@testing-library/react'; +import { + SUMMARY_ROW_ICON_TEST_ID, + SUMMARY_ROW_VALUE_TEST_ID, + SUMMARY_ROW_LOADING_TEST_ID, + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SAME_SOURCE_EVENT_TEST_ID, +} from './test_ids'; +import { useFetchRelatedAlertsBySameSourceEvent } from '../../shared/hooks/use_fetch_related_alerts_by_same_source_event'; +import { RelatedAlertsBySameSourceEvent } from './related_alerts_by_same_source_event'; + +jest.mock('../../shared/hooks/use_fetch_related_alerts_by_same_source_event'); + +const originalEventId = 'originalEventId'; +const scopeId = 'scopeId'; + +const ICON_TEST_ID = SUMMARY_ROW_ICON_TEST_ID( + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SAME_SOURCE_EVENT_TEST_ID +); +const VALUE_TEST_ID = SUMMARY_ROW_VALUE_TEST_ID( + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SAME_SOURCE_EVENT_TEST_ID +); +const LOADING_TEST_ID = SUMMARY_ROW_LOADING_TEST_ID( + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SAME_SOURCE_EVENT_TEST_ID +); + +describe('', () => { + it('should render many related alerts correctly', () => { + (useFetchRelatedAlertsBySameSourceEvent as jest.Mock).mockReturnValue({ + loading: false, + error: false, + dataCount: 2, + }); + + const { getByTestId } = render( + + ); + expect(getByTestId(ICON_TEST_ID)).toBeInTheDocument(); + const value = getByTestId(VALUE_TEST_ID); + expect(value).toBeInTheDocument(); + expect(value).toHaveTextContent('2 alerts related by source event'); + expect(getByTestId(VALUE_TEST_ID)).toBeInTheDocument(); + }); + + it('should render single related alerts correctly', () => { + (useFetchRelatedAlertsBySameSourceEvent as jest.Mock).mockReturnValue({ + loading: false, + error: false, + dataCount: 1, + }); + + const { getByTestId } = render( + + ); + expect(getByTestId(ICON_TEST_ID)).toBeInTheDocument(); + const value = getByTestId(VALUE_TEST_ID); + expect(value).toBeInTheDocument(); + expect(value).toHaveTextContent('1 alert related by source event'); + expect(getByTestId(VALUE_TEST_ID)).toBeInTheDocument(); + }); + + it('should render loading skeleton', () => { + (useFetchRelatedAlertsBySameSourceEvent as jest.Mock).mockReturnValue({ + loading: true, + }); + + const { getByTestId } = render( + + ); + expect(getByTestId(LOADING_TEST_ID)).toBeInTheDocument(); + }); + + it('should render null if error', () => { + (useFetchRelatedAlertsBySameSourceEvent as jest.Mock).mockReturnValue({ + loading: false, + error: true, + }); + + const { container } = render( + + ); + expect(container).toBeEmptyDOMElement(); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/related_alerts_by_same_source_event.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/related_alerts_by_same_source_event.tsx new file mode 100644 index 0000000000000..1d5df7a326c44 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/right/components/related_alerts_by_same_source_event.tsx @@ -0,0 +1,53 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { useFetchRelatedAlertsBySameSourceEvent } from '../../shared/hooks/use_fetch_related_alerts_by_same_source_event'; +import { CORRELATIONS_SAME_SOURCE_ALERTS } from '../../shared/translations'; +import { InsightsSummaryRow } from './insights_summary_row'; +import { INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SAME_SOURCE_EVENT_TEST_ID } from './test_ids'; + +const ICON = 'warning'; + +export interface RelatedAlertsBySameSourceEventProps { + /** + * Value of the kibana.alert.original_event.id field + */ + originalEventId: string; + /** + * Maintain backwards compatibility // TODO remove when possible + */ + scopeId: string; +} + +/** + * Show related alerts by same source event in summary row + */ +export const RelatedAlertsBySameSourceEvent: React.VFC = ({ + originalEventId, + scopeId, +}) => { + const { loading, error, dataCount } = useFetchRelatedAlertsBySameSourceEvent({ + originalEventId, + scopeId, + }); + const text = CORRELATIONS_SAME_SOURCE_ALERTS(dataCount); + + return ( + + ); +}; + +RelatedAlertsBySameSourceEvent.displayName = 'RelatedAlertsBySameSourceEvent'; diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/related_alerts_by_session.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/related_alerts_by_session.test.tsx new file mode 100644 index 0000000000000..133f00e44b26b --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/right/components/related_alerts_by_session.test.tsx @@ -0,0 +1,89 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { render } from '@testing-library/react'; +import { + SUMMARY_ROW_ICON_TEST_ID, + SUMMARY_ROW_VALUE_TEST_ID, + SUMMARY_ROW_LOADING_TEST_ID, + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SESSION_TEST_ID, +} from './test_ids'; +import { RelatedAlertsBySession } from './related_alerts_by_session'; +import { useFetchRelatedAlertsBySession } from '../../shared/hooks/use_fetch_related_alerts_by_session'; + +jest.mock('../../shared/hooks/use_fetch_related_alerts_by_session'); + +const entityId = 'entityId'; +const scopeId = 'scopeId'; + +const ICON_TEST_ID = SUMMARY_ROW_ICON_TEST_ID( + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SESSION_TEST_ID +); +const VALUE_TEST_ID = SUMMARY_ROW_VALUE_TEST_ID( + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SESSION_TEST_ID +); +const LOADING_TEST_ID = SUMMARY_ROW_LOADING_TEST_ID( + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SESSION_TEST_ID +); + +describe('', () => { + it('should render many related alerts correctly', () => { + (useFetchRelatedAlertsBySession as jest.Mock).mockReturnValue({ + loading: false, + error: false, + dataCount: 2, + }); + + const { getByTestId } = render( + + ); + expect(getByTestId(ICON_TEST_ID)).toBeInTheDocument(); + const value = getByTestId(VALUE_TEST_ID); + expect(value).toBeInTheDocument(); + expect(value).toHaveTextContent('2 alerts related by session'); + expect(getByTestId(VALUE_TEST_ID)).toBeInTheDocument(); + }); + + it('should render single related alerts correctly', () => { + (useFetchRelatedAlertsBySession as jest.Mock).mockReturnValue({ + loading: false, + error: false, + dataCount: 1, + }); + + const { getByTestId } = render( + + ); + expect(getByTestId(ICON_TEST_ID)).toBeInTheDocument(); + const value = getByTestId(VALUE_TEST_ID); + expect(value).toBeInTheDocument(); + expect(value).toHaveTextContent('1 alert related by session'); + expect(getByTestId(VALUE_TEST_ID)).toBeInTheDocument(); + }); + + it('should render loading skeleton', () => { + (useFetchRelatedAlertsBySession as jest.Mock).mockReturnValue({ + loading: true, + }); + + const { getByTestId } = render( + + ); + expect(getByTestId(LOADING_TEST_ID)).toBeInTheDocument(); + }); + + it('should render null if error', () => { + (useFetchRelatedAlertsBySession as jest.Mock).mockReturnValue({ + loading: false, + error: true, + }); + + const { container } = render(); + expect(container).toBeEmptyDOMElement(); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/related_alerts_by_session.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/related_alerts_by_session.tsx new file mode 100644 index 0000000000000..2a015c0c880d9 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/right/components/related_alerts_by_session.tsx @@ -0,0 +1,53 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { useFetchRelatedAlertsBySession } from '../../shared/hooks/use_fetch_related_alerts_by_session'; +import { CORRELATIONS_SESSION_ALERTS } from '../../shared/translations'; +import { InsightsSummaryRow } from './insights_summary_row'; +import { INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SESSION_TEST_ID } from './test_ids'; + +const ICON = 'warning'; + +export interface RelatedAlertsBySessionProps { + /** + * Value of the process.entry_leader.entity_id field + */ + entityId: string; + /** + * Maintain backwards compatibility // TODO remove when possible + */ + scopeId: string; +} + +/** + * Show related alerts by session in summary row + */ +export const RelatedAlertsBySession: React.VFC = ({ + entityId, + scopeId, +}) => { + const { loading, error, dataCount } = useFetchRelatedAlertsBySession({ + entityId, + scopeId, + }); + const text = CORRELATIONS_SESSION_ALERTS(dataCount); + + return ( + + ); +}; + +RelatedAlertsBySession.displayName = 'RelatedAlertsBySession'; diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/related_cases.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/related_cases.test.tsx new file mode 100644 index 0000000000000..7d0d1a88fb2ec --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/right/components/related_cases.test.tsx @@ -0,0 +1,76 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { render } from '@testing-library/react'; +import { + INSIGHTS_CORRELATIONS_RELATED_CASES_TEST_ID, + SUMMARY_ROW_ICON_TEST_ID, + SUMMARY_ROW_LOADING_TEST_ID, + SUMMARY_ROW_VALUE_TEST_ID, +} from './test_ids'; +import { RelatedCases } from './related_cases'; +import { useFetchRelatedCases } from '../../shared/hooks/use_fetch_related_cases'; + +jest.mock('../../shared/hooks/use_fetch_related_cases'); + +const eventId = 'eventId'; + +const ICON_TEST_ID = SUMMARY_ROW_ICON_TEST_ID(INSIGHTS_CORRELATIONS_RELATED_CASES_TEST_ID); +const VALUE_TEST_ID = SUMMARY_ROW_VALUE_TEST_ID(INSIGHTS_CORRELATIONS_RELATED_CASES_TEST_ID); +const LOADING_TEST_ID = SUMMARY_ROW_LOADING_TEST_ID(INSIGHTS_CORRELATIONS_RELATED_CASES_TEST_ID); + +describe('', () => { + it('should render many related cases correctly', () => { + (useFetchRelatedCases as jest.Mock).mockReturnValue({ + loading: false, + error: false, + dataCount: 2, + }); + + const { getByTestId } = render(); + expect(getByTestId(ICON_TEST_ID)).toBeInTheDocument(); + const value = getByTestId(VALUE_TEST_ID); + expect(value).toBeInTheDocument(); + expect(value).toHaveTextContent('2 related cases'); + expect(getByTestId(VALUE_TEST_ID)).toBeInTheDocument(); + }); + + it('should render single related case correctly', () => { + (useFetchRelatedCases as jest.Mock).mockReturnValue({ + loading: false, + error: false, + dataCount: 1, + }); + + const { getByTestId } = render(); + expect(getByTestId(ICON_TEST_ID)).toBeInTheDocument(); + const value = getByTestId(VALUE_TEST_ID); + expect(value).toBeInTheDocument(); + expect(value).toHaveTextContent('1 related case'); + expect(getByTestId(VALUE_TEST_ID)).toBeInTheDocument(); + }); + + it('should render loading skeleton', () => { + (useFetchRelatedCases as jest.Mock).mockReturnValue({ + loading: true, + }); + + const { getByTestId } = render(); + expect(getByTestId(LOADING_TEST_ID)).toBeInTheDocument(); + }); + + it('should render null if error', () => { + (useFetchRelatedCases as jest.Mock).mockReturnValue({ + loading: false, + error: true, + }); + + const { container } = render(); + expect(container).toBeEmptyDOMElement(); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/related_cases.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/related_cases.tsx new file mode 100644 index 0000000000000..d20e4fc09d56b --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/right/components/related_cases.tsx @@ -0,0 +1,43 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { CORRELATIONS_RELATED_CASES } from '../../shared/translations'; +import { useFetchRelatedCases } from '../../shared/hooks/use_fetch_related_cases'; +import { InsightsSummaryRow } from './insights_summary_row'; +import { INSIGHTS_CORRELATIONS_RELATED_CASES_TEST_ID } from './test_ids'; + +const ICON = 'warning'; + +export interface RelatedCasesProps { + /** + * Id of the document + */ + eventId: string; +} + +/** + * + */ +export const RelatedCases: React.VFC = ({ eventId }) => { + const { loading, error, dataCount } = useFetchRelatedCases({ eventId }); + const text = CORRELATIONS_RELATED_CASES(dataCount); + + return ( + + ); +}; + +RelatedCases.displayName = 'RelatedCases'; diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/session_preview.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/session_preview.test.tsx index 64247d5b0dd17..279954cd8d996 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/components/session_preview.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/right/components/session_preview.test.tsx @@ -12,15 +12,6 @@ import { TestProviders } from '../../../common/mock'; import React from 'react'; import { ExpandableFlyoutContext } from '@kbn/expandable-flyout/src/context'; import { RightPanelContext } from '../context'; -import { - SESSION_PREVIEW_CONTENT_TEST_ID, - SESSION_PREVIEW_TITLE_ICON_TEST_ID, - SESSION_PREVIEW_TITLE_LINK_TEST_ID, - SESSION_PREVIEW_TITLE_TEXT_TEST_ID, - SESSION_PREVIEW_TOGGLE_ICON_TEST_ID, -} from './test_ids'; -import { LeftPanelKey, LeftPanelVisualizeTab } from '../../left'; -import { SESSION_VIEW_ID } from '../../left/components/session_view'; jest.mock('../hooks/use_process_data'); @@ -51,26 +42,6 @@ describe('SessionPreview', () => { jest.resetAllMocks(); }); - it('should render wrapper component', () => { - jest.mocked(useProcessData).mockReturnValue({ - processName: 'process1', - userName: 'user1', - startAt: '2022-01-01T00:00:00.000Z', - ruleName: 'rule1', - ruleId: 'id', - workdir: '/path/to/workdir', - command: 'command1', - }); - - renderSessionPreview(); - - expect(screen.queryByTestId(SESSION_PREVIEW_TOGGLE_ICON_TEST_ID)).not.toBeInTheDocument(); - expect(screen.getByTestId(SESSION_PREVIEW_TITLE_LINK_TEST_ID)).toBeInTheDocument(); - expect(screen.getByTestId(SESSION_PREVIEW_TITLE_ICON_TEST_ID)).toBeInTheDocument(); - expect(screen.getByTestId(SESSION_PREVIEW_CONTENT_TEST_ID)).toBeInTheDocument(); - expect(screen.queryByTestId(SESSION_PREVIEW_TITLE_TEXT_TEST_ID)).not.toBeInTheDocument(); - }); - it('renders session preview with all data', () => { jest.mocked(useProcessData).mockReturnValue({ processName: 'process1', @@ -88,7 +59,7 @@ describe('SessionPreview', () => { expect(screen.getByText('started')).toBeInTheDocument(); expect(screen.getByText('process1')).toBeInTheDocument(); expect(screen.getByText('at')).toBeInTheDocument(); - expect(screen.getByText('2022-01-01T00:00:00Z')).toBeInTheDocument(); + expect(screen.getByText('Jan 1, 2022 @ 00:00:00.000')).toBeInTheDocument(); expect(screen.getByText('with rule')).toBeInTheDocument(); expect(screen.getByText('rule1')).toBeInTheDocument(); expect(screen.getByText('by')).toBeInTheDocument(); @@ -115,29 +86,4 @@ describe('SessionPreview', () => { expect(screen.queryByText('with rule')).not.toBeInTheDocument(); expect(screen.queryByText('by')).not.toBeInTheDocument(); }); - - it('should navigate to left section Visualize tab when clicking on title', () => { - jest.mocked(useProcessData).mockReturnValue({ - processName: 'process1', - userName: 'user1', - startAt: '2022-01-01T00:00:00.000Z', - ruleName: 'rule1', - ruleId: 'id', - workdir: '/path/to/workdir', - command: 'command1', - }); - - const { getByTestId } = renderSessionPreview(); - - getByTestId(SESSION_PREVIEW_TITLE_LINK_TEST_ID).click(); - expect(flyoutContextValue.openLeftPanel).toHaveBeenCalledWith({ - id: LeftPanelKey, - path: { tab: LeftPanelVisualizeTab, subTab: SESSION_VIEW_ID }, - params: { - id: panelContextValue.eventId, - indexName: panelContextValue.indexName, - scopeId: panelContextValue.scopeId, - }, - }); - }); }); diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/session_preview.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/session_preview.tsx index 5c298311bf3c0..9ad7e2bd05d75 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/components/session_preview.tsx +++ b/x-pack/plugins/security_solution/public/flyout/right/components/session_preview.tsx @@ -6,24 +6,19 @@ */ import { EuiCode, EuiIcon, useEuiTheme } from '@elastic/eui'; -import React, { useMemo, type FC, useCallback } from 'react'; -import { useExpandableFlyoutContext } from '@kbn/expandable-flyout'; -import { ExpandablePanel } from '../../shared/components/expandable_panel'; -import { SIGNAL_RULE_NAME_FIELD_NAME } from '../../../timelines/components/timeline/body/renderers/constants'; +import React, { useMemo, type FC } from 'react'; +import { SESSION_PREVIEW_TEST_ID } from './test_ids'; import { useRightPanelContext } from '../context'; +import { SIGNAL_RULE_NAME_FIELD_NAME } from '../../../timelines/components/timeline/body/renderers/constants'; import { PreferenceFormattedDate } from '../../../common/components/formatted_date'; import { useProcessData } from '../hooks/use_process_data'; -import { SESSION_PREVIEW_TEST_ID } from './test_ids'; import { SESSION_PREVIEW_COMMAND_TEXT, SESSION_PREVIEW_PROCESS_TEXT, SESSION_PREVIEW_RULE_TEXT, SESSION_PREVIEW_TIME_TEXT, - SESSION_PREVIEW_TITLE, } from './translations'; -import { LeftPanelKey, LeftPanelVisualizeTab } from '../../left'; import { RenderRuleName } from '../../../timelines/components/timeline/body/renderers/formatted_field_helpers'; -import { SESSION_VIEW_ID } from '../../left/components/session_view'; /** * One-off helper to make sure that inline values are rendered consistently @@ -42,26 +37,10 @@ const ValueContainer: FC<{ text?: string }> = ({ text, children }) => ( ); /** - * Renders session preview under visualistions section in the flyout right EuiPanel + * Renders session preview under Visualizations section in the flyout right EuiPanel */ export const SessionPreview: FC = () => { - const { eventId, indexName, scopeId } = useRightPanelContext(); - const { openLeftPanel } = useExpandableFlyoutContext(); - - const goToSessionViewTab = useCallback(() => { - openLeftPanel({ - id: LeftPanelKey, - path: { - tab: LeftPanelVisualizeTab, - subTab: SESSION_VIEW_ID, - }, - params: { - id: eventId, - indexName, - scopeId, - }, - }); - }, [eventId, openLeftPanel, indexName, scopeId]); + const { eventId, scopeId } = useRightPanelContext(); const { processName, userName, startAt, ruleName, ruleId, workdir, command } = useProcessData(); const { euiTheme } = useEuiTheme(); @@ -124,25 +103,16 @@ export const SessionPreview: FC = () => { }, [command, workdir]); return ( - -
    - - -   - {userName} - - {processNameFragment} - {timeFragment} - {ruleFragment} - {commandFragment} -
    -
    +
    + + +   + {userName} + + {processNameFragment} + {timeFragment} + {ruleFragment} + {commandFragment} +
    ); }; diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/session_preview_container.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/session_preview_container.test.tsx new file mode 100644 index 0000000000000..8db5d4a9cacf5 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/right/components/session_preview_container.test.tsx @@ -0,0 +1,110 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { render, screen } from '@testing-library/react'; +import { TestProviders } from '../../../common/mock'; +import React from 'react'; +import { RightPanelContext } from '../context'; +import { SessionPreviewContainer } from './session_preview_container'; +import { useSessionPreview } from '../hooks/use_session_preview'; +import { useLicense } from '../../../common/hooks/use_license'; +import { SESSION_PREVIEW_TEST_ID } from './test_ids'; +import { + EXPANDABLE_PANEL_CONTENT_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID, + EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID, +} from '../../shared/components/test_ids'; +import { mockGetFieldsData } from '../mocks/mock_context'; + +jest.mock('../hooks/use_session_preview'); +jest.mock('../../../common/hooks/use_license'); + +const panelContextValue = { + dataAsNestedObject: null, + getFieldsData: mockGetFieldsData, +} as unknown as RightPanelContext; + +const sessionViewConfig = { + index: {}, + sessionEntityId: 'sessionEntityId', + sessionStartTime: 'sessionStartTime', +}; + +const TEST_ID = SESSION_PREVIEW_TEST_ID; +const ERROR_TEST_ID = `${SESSION_PREVIEW_TEST_ID}Error`; +const UPSELL_TEST_ID = `${SESSION_PREVIEW_TEST_ID}UpSell`; + +const renderSessionPreview = () => + render( + + + + + + ); + +describe('SessionPreviewContainer', () => { + afterEach(() => { + jest.resetAllMocks(); + }); + + it('should render component and link in header', () => { + (useSessionPreview as jest.Mock).mockReturnValue(sessionViewConfig); + (useLicense as jest.Mock).mockReturnValue({ isEnterprise: () => true }); + + const { getByTestId, queryByTestId } = renderSessionPreview(); + + expect(getByTestId(TEST_ID)).toBeInTheDocument(); + expect(queryByTestId(ERROR_TEST_ID)).not.toBeInTheDocument(); + expect(queryByTestId(UPSELL_TEST_ID)).not.toBeInTheDocument(); + expect( + getByTestId(EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID(SESSION_PREVIEW_TEST_ID)) + ).toBeInTheDocument(); + expect( + screen.queryByTestId(EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID(SESSION_PREVIEW_TEST_ID)) + ).not.toBeInTheDocument(); + expect( + screen.getByTestId(EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID(SESSION_PREVIEW_TEST_ID)) + ).toBeInTheDocument(); + expect( + screen.getByTestId(EXPANDABLE_PANEL_CONTENT_TEST_ID(SESSION_PREVIEW_TEST_ID)) + ).toBeInTheDocument(); + expect( + screen.queryByTestId(EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID(SESSION_PREVIEW_TEST_ID)) + ).not.toBeInTheDocument(); + }); + + it('should render error message and text in header if no sessionConfig', () => { + (useSessionPreview as jest.Mock).mockReturnValue(null); + (useLicense as jest.Mock).mockReturnValue({ isEnterprise: () => true }); + + const { getByTestId, queryByTestId } = renderSessionPreview(); + + expect(queryByTestId(TEST_ID)).not.toBeInTheDocument(); + expect(getByTestId(ERROR_TEST_ID)).toBeInTheDocument(); + expect(queryByTestId(UPSELL_TEST_ID)).not.toBeInTheDocument(); + expect( + getByTestId(EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID(SESSION_PREVIEW_TEST_ID)) + ).toBeInTheDocument(); + }); + + it('should render error message and text in header if no correct license', () => { + (useSessionPreview as jest.Mock).mockReturnValue(sessionViewConfig); + (useLicense as jest.Mock).mockReturnValue({ isEnterprise: () => false }); + + const { getByTestId, queryByTestId } = renderSessionPreview(); + + expect(queryByTestId(TEST_ID)).not.toBeInTheDocument(); + expect(queryByTestId(ERROR_TEST_ID)).not.toBeInTheDocument(); + expect(getByTestId(UPSELL_TEST_ID)).toBeInTheDocument(); + expect( + getByTestId(EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID(SESSION_PREVIEW_TEST_ID)) + ).toBeInTheDocument(); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/session_preview_container.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/session_preview_container.tsx new file mode 100644 index 0000000000000..af4d192b45bf6 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/right/components/session_preview_container.tsx @@ -0,0 +1,86 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React, { type FC, useCallback } from 'react'; +import { TimelineTabs } from '@kbn/securitysolution-data-table'; +import { useDispatch } from 'react-redux'; +import { useLicense } from '../../../common/hooks/use_license'; +import { SessionPreview } from './session_preview'; +import { useSessionPreview } from '../hooks/use_session_preview'; +import { useInvestigateInTimeline } from '../../../detections/components/alerts_table/timeline_actions/use_investigate_in_timeline'; +import { useRightPanelContext } from '../context'; +import { ALERTS_ACTIONS } from '../../../common/lib/apm/user_actions'; +import { ExpandablePanel } from '../../shared/components/expandable_panel'; +import { SESSION_PREVIEW_TEST_ID } from './test_ids'; +import { + SESSION_PREVIEW_ERROR, + SESSION_PREVIEW_TITLE, + SESSION_PREVIEW_UPSELL, +} from './translations'; +import { useStartTransaction } from '../../../common/lib/apm/use_start_transaction'; +import { setActiveTabTimeline } from '../../../timelines/store/timeline/actions'; +import { getScopedActions } from '../../../helpers'; + +const timelineId = 'timeline-1'; + +/** + * Checks if the SessionView component is available, if so render it or else render an error message + */ +export const SessionPreviewContainer: FC = () => { + const { dataAsNestedObject, getFieldsData } = useRightPanelContext(); + + // decide whether to show the session view or not + const sessionViewConfig = useSessionPreview({ getFieldsData }); + const isEnterprisePlus = useLicense().isEnterprise(); + const isEnabled = sessionViewConfig && isEnterprisePlus; + + const dispatch = useDispatch(); + const { startTransaction } = useStartTransaction(); + const scopedActions = getScopedActions(timelineId); + const { investigateInTimelineAlertClick } = useInvestigateInTimeline({ + ecsRowData: dataAsNestedObject, + }); + + const goToSessionViewTab = useCallback(() => { + // open timeline + investigateInTimelineAlertClick(); + + // open session view tab + startTransaction({ name: ALERTS_ACTIONS.OPEN_SESSION_VIEW }); + if (sessionViewConfig !== null) { + dispatch(setActiveTabTimeline({ id: timelineId, activeTab: TimelineTabs.session })); + if (scopedActions) { + dispatch(scopedActions.updateSessionViewConfig({ id: timelineId, sessionViewConfig })); + } + } + }, [ + dispatch, + investigateInTimelineAlertClick, + scopedActions, + sessionViewConfig, + startTransaction, + ]); + + const noSessionMessage = !isEnterprisePlus ? ( +
    {SESSION_PREVIEW_UPSELL}
    + ) : !sessionViewConfig ? ( +
    {SESSION_PREVIEW_ERROR}
    + ) : null; + + return ( + + {isEnabled ? : noSessionMessage} + + ); +}; diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/suppressed_alerts.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/suppressed_alerts.test.tsx new file mode 100644 index 0000000000000..585e8f02ace03 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/right/components/suppressed_alerts.test.tsx @@ -0,0 +1,54 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { render } from '@testing-library/react'; +import { + SUMMARY_ROW_ICON_TEST_ID, + SUMMARY_ROW_VALUE_TEST_ID, + INSIGHTS_CORRELATIONS_SUPPRESSED_ALERTS_TEST_ID, + SUPPRESSED_ALERTS_TECHNICAL_PREVIEW_TEST_ID, +} from './test_ids'; +import { SuppressedAlerts } from './suppressed_alerts'; + +const ICON_TEST_ID = SUMMARY_ROW_ICON_TEST_ID(INSIGHTS_CORRELATIONS_SUPPRESSED_ALERTS_TEST_ID); +const VALUE_TEST_ID = SUMMARY_ROW_VALUE_TEST_ID(INSIGHTS_CORRELATIONS_SUPPRESSED_ALERTS_TEST_ID); + +describe('', () => { + it('should render zero suppressed alert correctly', () => { + const { getByTestId } = render(); + + expect(getByTestId(ICON_TEST_ID)).toBeInTheDocument(); + const value = getByTestId(VALUE_TEST_ID); + expect(value).toBeInTheDocument(); + expect(value).toHaveTextContent('0 suppressed alert'); + expect(getByTestId(VALUE_TEST_ID)).toBeInTheDocument(); + expect(getByTestId(SUPPRESSED_ALERTS_TECHNICAL_PREVIEW_TEST_ID)).toBeInTheDocument(); + }); + + it('should render single suppressed alert correctly', () => { + const { getByTestId } = render(); + + expect(getByTestId(ICON_TEST_ID)).toBeInTheDocument(); + const value = getByTestId(VALUE_TEST_ID); + expect(value).toBeInTheDocument(); + expect(value).toHaveTextContent('1 suppressed alert'); + expect(getByTestId(VALUE_TEST_ID)).toBeInTheDocument(); + expect(getByTestId(SUPPRESSED_ALERTS_TECHNICAL_PREVIEW_TEST_ID)).toBeInTheDocument(); + }); + + it('should render multiple suppressed alerts row correctly', () => { + const { getByTestId } = render(); + + expect(getByTestId(ICON_TEST_ID)).toBeInTheDocument(); + const value = getByTestId(VALUE_TEST_ID); + expect(value).toBeInTheDocument(); + expect(value).toHaveTextContent('2 suppressed alerts'); + expect(getByTestId(VALUE_TEST_ID)).toBeInTheDocument(); + expect(getByTestId(SUPPRESSED_ALERTS_TECHNICAL_PREVIEW_TEST_ID)).toBeInTheDocument(); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/suppressed_alerts.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/suppressed_alerts.tsx new file mode 100644 index 0000000000000..4732d43cadff9 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/right/components/suppressed_alerts.tsx @@ -0,0 +1,57 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { EuiFlexGroup, EuiFlexItem, EuiBetaBadge } from '@elastic/eui'; +import { + INSIGHTS_CORRELATIONS_SUPPRESSED_ALERTS_TEST_ID, + SUPPRESSED_ALERTS_TECHNICAL_PREVIEW_TEST_ID, +} from './test_ids'; +import { CORRELATIONS_SUPPRESSED_ALERTS } from '../../shared/translations'; +import { InsightsSummaryRow } from './insights_summary_row'; +import { SUPPRESSED_ALERTS_COUNT_TECHNICAL_PREVIEW } from '../../../common/components/event_details/insights/translations'; +import { TECHNICAL_PREVIEW_MESSAGE } from './translations'; + +export interface SuppressedAlertsProps { + /** + * Value of the kibana.alert.suppression.doc_count field + */ + alertSuppressionCount: number; +} + +/** + * Show related alerts by ancestry in summary row + */ +export const SuppressedAlerts: React.VFC = ({ alertSuppressionCount }) => { + return ( + + + + + + + + + ); +}; + +SuppressedAlerts.displayName = 'SuppressedAlerts'; diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/test_ids.ts b/x-pack/plugins/security_solution/public/flyout/right/components/test_ids.ts index 7d41fe13f9fca..0d7bac7493e6a 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/components/test_ids.ts +++ b/x-pack/plugins/security_solution/public/flyout/right/components/test_ids.ts @@ -5,14 +5,6 @@ * 2.0. */ -import { - EXPANDABLE_PANEL_CONTENT_TEST_ID, - EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID, - EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID, - EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID, - EXPANDABLE_PANEL_LOADING_TEST_ID, - EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID, -} from '../../shared/components/test_ids'; import { RESPONSE_BASE_TEST_ID } from '../../left/components/test_ids'; import { CONTENT_TEST_ID, HEADER_TEST_ID } from './expandable_section'; @@ -71,27 +63,26 @@ export const HIGHLIGHTED_FIELDS_LINKED_CELL_TEST_ID = export const HIGHLIGHTED_FIELDS_AGENT_STATUS_CELL_TEST_ID = 'securitySolutionDocumentDetailsFlyoutHighlightedFieldsAgentStatusCell'; -export const INVESTIGATION_GUIDE_BUTTON_TEST_ID = - 'securitySolutionDocumentDetailsFlyoutInvestigationGuideButton'; +export const INVESTIGATION_GUIDE_TEST_ID = + 'securitySolutionDocumentDetailsFlyoutInvestigationGuide'; +export const INVESTIGATION_GUIDE_BUTTON_TEST_ID = `${INVESTIGATION_GUIDE_TEST_ID}Button`; +export const INVESTIGATION_GUIDE_LOADING_TEST_ID = `${INVESTIGATION_GUIDE_TEST_ID}Loading`; +export const INVESTIGATION_GUIDE_NO_DATA_TEST_ID = `${INVESTIGATION_GUIDE_TEST_ID}NoData`; /* Insights section */ export const INSIGHTS_TEST_ID = 'securitySolutionDocumentDetailsFlyoutInsights'; export const INSIGHTS_HEADER_TEST_ID = `${INSIGHTS_TEST_ID}Header`; +/* Summary row */ + +export const SUMMARY_ROW_LOADING_TEST_ID = (dataTestSubj: string) => `${dataTestSubj}Loading`; +export const SUMMARY_ROW_ICON_TEST_ID = (dataTestSubj: string) => `${dataTestSubj}Icon`; +export const SUMMARY_ROW_VALUE_TEST_ID = (dataTestSubj: string) => `${dataTestSubj}Value`; + /* Insights Entities */ export const INSIGHTS_ENTITIES_TEST_ID = 'securitySolutionDocumentDetailsFlyoutInsightsEntities'; -export const INSIGHTS_ENTITIES_TOGGLE_ICON_TEST_ID = - EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID(INSIGHTS_ENTITIES_TEST_ID); -export const INSIGHTS_ENTITIES_TITLE_LINK_TEST_ID = - EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID(INSIGHTS_ENTITIES_TEST_ID); -export const INSIGHTS_ENTITIES_TITLE_TEXT_TEST_ID = - EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID(INSIGHTS_ENTITIES_TEST_ID); -export const INSIGHTS_ENTITIES_TITLE_ICON_TEST_ID = - EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID(INSIGHTS_ENTITIES_TEST_ID); -export const INSIGHTS_ENTITIES_CONTENT_TEST_ID = - EXPANDABLE_PANEL_CONTENT_TEST_ID(INSIGHTS_ENTITIES_TEST_ID); export const ENTITIES_USER_OVERVIEW_TEST_ID = 'securitySolutionDocumentDetailsFlyoutEntitiesUserOverview'; export const ENTITIES_USER_OVERVIEW_LINK_TEST_ID = `${ENTITIES_USER_OVERVIEW_TEST_ID}Link`; @@ -109,110 +100,37 @@ export const ENTITIES_HOST_OVERVIEW_RISK_LEVEL_TEST_ID = `${ENTITIES_HOST_OVERVI export const INSIGHTS_THREAT_INTELLIGENCE_TEST_ID = 'securitySolutionDocumentDetailsFlyoutInsightsThreatIntelligence'; -export const INSIGHTS_THREAT_INTELLIGENCE_TOGGLE_ICON_TEST_ID = - EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID(INSIGHTS_THREAT_INTELLIGENCE_TEST_ID); -export const INSIGHTS_THREAT_INTELLIGENCE_TITLE_LINK_TEST_ID = - EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID(INSIGHTS_THREAT_INTELLIGENCE_TEST_ID); -export const INSIGHTS_THREAT_INTELLIGENCE_TITLE_TEXT_TEST_ID = - EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID(INSIGHTS_THREAT_INTELLIGENCE_TEST_ID); -export const INSIGHTS_THREAT_INTELLIGENCE_TITLE_ICON_TEST_ID = - EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID(INSIGHTS_THREAT_INTELLIGENCE_TEST_ID); -export const INSIGHTS_THREAT_INTELLIGENCE_LOADING_TEST_ID = EXPANDABLE_PANEL_LOADING_TEST_ID( - INSIGHTS_THREAT_INTELLIGENCE_TEST_ID -); -export const INSIGHTS_THREAT_INTELLIGENCE_CONTENT_TEST_ID = EXPANDABLE_PANEL_CONTENT_TEST_ID( - INSIGHTS_THREAT_INTELLIGENCE_TEST_ID -); export const INSIGHTS_THREAT_INTELLIGENCE_CONTAINER_TEST_ID = `${INSIGHTS_THREAT_INTELLIGENCE_TEST_ID}Container`; -export const INSIGHTS_THREAT_INTELLIGENCE_VALUE_TEST_ID = `${INSIGHTS_THREAT_INTELLIGENCE_TEST_ID}Value`; /* Insights Correlations */ export const INSIGHTS_CORRELATIONS_TEST_ID = 'securitySolutionDocumentDetailsFlyoutInsightsCorrelations'; -export const INSIGHTS_CORRELATIONS_TOGGLE_ICON_TEST_ID = EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID( - INSIGHTS_CORRELATIONS_TEST_ID -); -export const INSIGHTS_CORRELATIONS_TITLE_LINK_TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID( - INSIGHTS_CORRELATIONS_TEST_ID -); -export const INSIGHTS_CORRELATIONS_TITLE_TEXT_TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID( - INSIGHTS_CORRELATIONS_TEST_ID -); -export const INSIGHTS_CORRELATIONS_TITLE_ICON_TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID( - INSIGHTS_CORRELATIONS_TEST_ID -); -export const INSIGHTS_CORRELATIONS_LOADING_TEST_ID = EXPANDABLE_PANEL_LOADING_TEST_ID( - INSIGHTS_CORRELATIONS_TEST_ID -); -export const INSIGHTS_CORRELATIONS_CONTENT_TEST_ID = EXPANDABLE_PANEL_CONTENT_TEST_ID( - INSIGHTS_CORRELATIONS_TEST_ID -); -export const INSIGHTS_CORRELATIONS_VALUE_TEST_ID = `${INSIGHTS_CORRELATIONS_TEST_ID}Value`; +export const INSIGHTS_CORRELATIONS_SUPPRESSED_ALERTS_TEST_ID = + 'securitySolutionDocumentDetailsFlyoutInsightsCorrelationsSupressedAlerts'; +export const SUPPRESSED_ALERTS_TECHNICAL_PREVIEW_TEST_ID = + 'securitySolutionDocumentDetailsFlyoutSupressedAlertsTechnicalPreview'; +export const INSIGHTS_CORRELATIONS_RELATED_CASES_TEST_ID = + 'securitySolutionDocumentDetailsFlyoutInsightsCorrelationsRelatedCases'; +export const INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SESSION_TEST_ID = + 'securitySolutionDocumentDetailsFlyoutInsightsCorrelationsRelatedAlertsBySession'; +export const INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SAME_SOURCE_EVENT_TEST_ID = + 'securitySolutionDocumentDetailsFlyoutInsightsCorrelationsRelatedAlertsBySameSourceEvent'; +export const INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_ANCESTRY_TEST_ID = + 'securitySolutionDocumentDetailsFlyoutInsightsCorrelationsRelatedAlertsByAncestry'; /* Insights Prevalence */ export const INSIGHTS_PREVALENCE_TEST_ID = 'securitySolutionDocumentDetailsFlyoutInsightsPrevalence'; -export const INSIGHTS_PREVALENCE_TOGGLE_ICON_TEST_ID = EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID( - INSIGHTS_PREVALENCE_TEST_ID -); -export const INSIGHTS_PREVALENCE_TITLE_LINK_TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID( - INSIGHTS_PREVALENCE_TEST_ID -); -export const INSIGHTS_PREVALENCE_TITLE_TEXT_TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID( - INSIGHTS_PREVALENCE_TEST_ID -); -export const INSIGHTS_PREVALENCE_TITLE_ICON_TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID( - INSIGHTS_PREVALENCE_TEST_ID -); -export const INSIGHTS_PREVALENCE_LOADING_TEST_ID = EXPANDABLE_PANEL_LOADING_TEST_ID( - INSIGHTS_PREVALENCE_TEST_ID -); -export const INSIGHTS_PREVALENCE_CONTENT_TEST_ID = EXPANDABLE_PANEL_CONTENT_TEST_ID( - INSIGHTS_PREVALENCE_TEST_ID -); -export const INSIGHTS_PREVALENCE_VALUE_TEST_ID = `${INSIGHTS_PREVALENCE_TEST_ID}Value`; -export const INSIGHTS_PREVALENCE_ROW_TEST_ID = - 'securitySolutionDocumentDetailsFlyoutInsightsPrevalenceRow'; /* Visualizations section */ export const VISUALIZATIONS_SECTION_TEST_ID = 'securitySolutionDocumentDetailsVisualizationsTitle'; export const VISUALIZATIONS_SECTION_HEADER_TEST_ID = 'securitySolutionDocumentDetailsVisualizationsTitleHeader'; - -/* Visualizations analyzer preview */ - -export const ANALYZER_PREVIEW_TEST_ID = 'securitySolutionDocumentDetailsAnalayzerPreview'; -export const ANALYZER_PREVIEW_TOGGLE_ICON_TEST_ID = - EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID(ANALYZER_PREVIEW_TEST_ID); -export const ANALYZER_PREVIEW_TITLE_LINK_TEST_ID = - EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID(ANALYZER_PREVIEW_TEST_ID); -export const ANALYZER_PREVIEW_TITLE_TEXT_TEST_ID = - EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID(ANALYZER_PREVIEW_TEST_ID); -export const ANALYZER_PREVIEW_TITLE_ICON_TEST_ID = - EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID(ANALYZER_PREVIEW_TEST_ID); -export const ANALYZER_PREVIEW_LOADING_TEST_ID = - EXPANDABLE_PANEL_LOADING_TEST_ID(ANALYZER_PREVIEW_TEST_ID); -export const ANALYZER_PREVIEW_CONTENT_TEST_ID = - EXPANDABLE_PANEL_CONTENT_TEST_ID(ANALYZER_PREVIEW_TEST_ID); - -/* Visualizations session preview */ - +export const ANALYZER_PREVIEW_TEST_ID = 'securitySolutionDocumentDetailsAnalyzerPreview'; export const SESSION_PREVIEW_TEST_ID = 'securitySolutionDocumentDetailsSessionPreview'; -export const SESSION_PREVIEW_TOGGLE_ICON_TEST_ID = - EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID(SESSION_PREVIEW_TEST_ID); -export const SESSION_PREVIEW_TITLE_LINK_TEST_ID = - EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID(SESSION_PREVIEW_TEST_ID); -export const SESSION_PREVIEW_TITLE_TEXT_TEST_ID = - EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID(SESSION_PREVIEW_TEST_ID); -export const SESSION_PREVIEW_TITLE_ICON_TEST_ID = - EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID(SESSION_PREVIEW_TEST_ID); -export const SESSION_PREVIEW_LOADING_TEST_ID = - EXPANDABLE_PANEL_LOADING_TEST_ID(SESSION_PREVIEW_TEST_ID); -export const SESSION_PREVIEW_CONTENT_TEST_ID = - EXPANDABLE_PANEL_CONTENT_TEST_ID(SESSION_PREVIEW_TEST_ID); /* Response section */ diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/threat_intelligence_overview.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/threat_intelligence_overview.test.tsx index 2dca57df2b3eb..53fda9b40c3c4 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/components/threat_intelligence_overview.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/right/components/threat_intelligence_overview.test.tsx @@ -16,16 +16,34 @@ import { useFetchThreatIntelligence } from '../hooks/use_fetch_threat_intelligen import { THREAT_INTELLIGENCE_TAB_ID } from '../../left/components/threat_intelligence_details'; import { INSIGHTS_THREAT_INTELLIGENCE_CONTAINER_TEST_ID, - INSIGHTS_THREAT_INTELLIGENCE_CONTENT_TEST_ID, - INSIGHTS_THREAT_INTELLIGENCE_LOADING_TEST_ID, - INSIGHTS_THREAT_INTELLIGENCE_TITLE_ICON_TEST_ID, - INSIGHTS_THREAT_INTELLIGENCE_TITLE_LINK_TEST_ID, - INSIGHTS_THREAT_INTELLIGENCE_TITLE_TEXT_TEST_ID, - INSIGHTS_THREAT_INTELLIGENCE_TOGGLE_ICON_TEST_ID, + INSIGHTS_THREAT_INTELLIGENCE_TEST_ID, } from './test_ids'; +import { + EXPANDABLE_PANEL_CONTENT_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID, + EXPANDABLE_PANEL_LOADING_TEST_ID, + EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID, +} from '../../shared/components/test_ids'; jest.mock('../hooks/use_fetch_threat_intelligence'); +const TOGGLE_ICON_TEST_ID = EXPANDABLE_PANEL_TOGGLE_ICON_TEST_ID( + INSIGHTS_THREAT_INTELLIGENCE_TEST_ID +); +const TITLE_LINK_TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID( + INSIGHTS_THREAT_INTELLIGENCE_TEST_ID +); +const TITLE_ICON_TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID( + INSIGHTS_THREAT_INTELLIGENCE_TEST_ID +); +const TITLE_TEXT_TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID( + INSIGHTS_THREAT_INTELLIGENCE_TEST_ID +); +const CONTENT_TEST_ID = EXPANDABLE_PANEL_CONTENT_TEST_ID(INSIGHTS_THREAT_INTELLIGENCE_TEST_ID); +const LOADING_TEST_ID = EXPANDABLE_PANEL_LOADING_TEST_ID(INSIGHTS_THREAT_INTELLIGENCE_TEST_ID); + const panelContextValue = { eventId: 'event id', indexName: 'indexName', @@ -50,10 +68,10 @@ describe('', () => { renderThreatIntelligenceOverview(panelContextValue) ); - expect(queryByTestId(INSIGHTS_THREAT_INTELLIGENCE_TOGGLE_ICON_TEST_ID)).not.toBeInTheDocument(); - expect(getByTestId(INSIGHTS_THREAT_INTELLIGENCE_TITLE_ICON_TEST_ID)).toBeInTheDocument(); - expect(getByTestId(INSIGHTS_THREAT_INTELLIGENCE_TITLE_LINK_TEST_ID)).toBeInTheDocument(); - expect(queryByTestId(INSIGHTS_THREAT_INTELLIGENCE_TITLE_TEXT_TEST_ID)).not.toBeInTheDocument(); + expect(queryByTestId(TOGGLE_ICON_TEST_ID)).not.toBeInTheDocument(); + expect(getByTestId(TITLE_ICON_TEST_ID)).toBeInTheDocument(); + expect(getByTestId(TITLE_LINK_TEST_ID)).toBeInTheDocument(); + expect(queryByTestId(TITLE_TEXT_TEST_ID)).not.toBeInTheDocument(); }); it('should render 1 match detected and 1 field enriched', () => { @@ -65,13 +83,9 @@ describe('', () => { const { getByTestId } = render(renderThreatIntelligenceOverview(panelContextValue)); - expect(getByTestId(INSIGHTS_THREAT_INTELLIGENCE_TITLE_LINK_TEST_ID)).toHaveTextContent( - 'Threat Intelligence' - ); - expect(getByTestId(INSIGHTS_THREAT_INTELLIGENCE_CONTENT_TEST_ID)).toHaveTextContent( - '1 threat match detected' - ); - expect(getByTestId(INSIGHTS_THREAT_INTELLIGENCE_CONTENT_TEST_ID)).toHaveTextContent( + expect(getByTestId(TITLE_LINK_TEST_ID)).toHaveTextContent('Threat Intelligence'); + expect(getByTestId(CONTENT_TEST_ID)).toHaveTextContent('1 threat match detected'); + expect(getByTestId(CONTENT_TEST_ID)).toHaveTextContent( '1 field enriched with threat intelligence' ); }); @@ -85,13 +99,9 @@ describe('', () => { const { getByTestId } = render(renderThreatIntelligenceOverview(panelContextValue)); - expect(getByTestId(INSIGHTS_THREAT_INTELLIGENCE_TITLE_LINK_TEST_ID)).toHaveTextContent( - 'Threat Intelligence' - ); - expect(getByTestId(INSIGHTS_THREAT_INTELLIGENCE_CONTENT_TEST_ID)).toHaveTextContent( - '2 threat matches detected' - ); - expect(getByTestId(INSIGHTS_THREAT_INTELLIGENCE_CONTENT_TEST_ID)).toHaveTextContent( + expect(getByTestId(TITLE_LINK_TEST_ID)).toHaveTextContent('Threat Intelligence'); + expect(getByTestId(CONTENT_TEST_ID)).toHaveTextContent('2 threat matches detected'); + expect(getByTestId(CONTENT_TEST_ID)).toHaveTextContent( '2 fields enriched with threat intelligence' ); }); @@ -105,7 +115,7 @@ describe('', () => { const { getByTestId } = render(renderThreatIntelligenceOverview(panelContextValue)); - expect(getByTestId(INSIGHTS_THREAT_INTELLIGENCE_CONTENT_TEST_ID)).toHaveTextContent( + expect(getByTestId(CONTENT_TEST_ID)).toHaveTextContent( '0 field enriched with threat intelligence' ); }); @@ -119,9 +129,7 @@ describe('', () => { const { getByTestId } = render(renderThreatIntelligenceOverview(panelContextValue)); - expect(getByTestId(INSIGHTS_THREAT_INTELLIGENCE_CONTENT_TEST_ID)).toHaveTextContent( - '0 threat match detected' - ); + expect(getByTestId(CONTENT_TEST_ID)).toHaveTextContent('0 threat match detected'); }); it('should render loading', () => { @@ -131,7 +139,7 @@ describe('', () => { const { getAllByTestId } = render(renderThreatIntelligenceOverview(panelContextValue)); - expect(getAllByTestId(INSIGHTS_THREAT_INTELLIGENCE_LOADING_TEST_ID)).toHaveLength(2); + expect(getAllByTestId(LOADING_TEST_ID)).toHaveLength(2); }); it('should render null when eventId is null', () => { @@ -183,7 +191,7 @@ describe('', () => { ); - getByTestId(INSIGHTS_THREAT_INTELLIGENCE_TITLE_LINK_TEST_ID).click(); + getByTestId(TITLE_LINK_TEST_ID).click(); expect(flyoutContextValue.openLeftPanel).toHaveBeenCalledWith({ id: LeftPanelKey, path: { tab: LeftPanelInsightsTab, subTab: THREAT_INTELLIGENCE_TAB_ID }, diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/translations.ts b/x-pack/plugins/security_solution/public/flyout/right/components/translations.ts index a411b0f44054e..24df07b006401 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/components/translations.ts +++ b/x-pack/plugins/security_solution/public/flyout/right/components/translations.ts @@ -19,9 +19,9 @@ export const COLLAPSE_DETAILS_BUTTON = i18n.translate( { defaultMessage: 'Collapse details' } ); -export const DOCUMENT_DETAILS = i18n.translate( +export const EVENT_DETAILS = i18n.translate( 'xpack.securitySolution.flyout.documentDetails.headerTitle', - { defaultMessage: 'Document details' } + { defaultMessage: 'Event details' } ); export const SEVERITY_TITLE = i18n.translate( @@ -145,11 +145,23 @@ export const CORRELATIONS_TITLE = i18n.translate( { defaultMessage: 'Correlations' } ); +export const CORRELATIONS_ERROR = i18n.translate( + 'xpack.securitySolution.flyout.documentDetails.correlations.error', + { + defaultMessage: 'No correlations data available', + } +); + export const PREVALENCE_TITLE = i18n.translate( 'xpack.securitySolution.flyout.documentDetails.prevalenceTitle', { defaultMessage: 'Prevalence' } ); +export const PREVALENCE_NO_DATA = i18n.translate( + 'xpack.securitySolution.flyout.documentDetails.prevalenceNoData', + { defaultMessage: 'No field/value pairs are uncommon' } +); + export const THREAT_MATCH_DETECTED = i18n.translate( 'xpack.securitySolution.flyout.documentDetails.overviewTab.threatIntelligence.threatMatch', { @@ -195,17 +207,38 @@ export const ANALYZER_PREVIEW_TITLE = i18n.translate( { defaultMessage: 'Analyzer preview' } ); +export const ANALYZER_PREVIEW_ERROR = i18n.translate( + 'xpack.securitySolution.flyout.documentDetails.analyzerPreview.error', + { + defaultMessage: 'No analyzer graph data available', + } +); + export const SHARE = i18n.translate('xpack.securitySolution.flyout.documentDetails.share', { defaultMessage: 'Share Alert', }); export const INVESTIGATION_GUIDE_TITLE = i18n.translate( - 'xpack.securitySolution.flyout.documentDetails.investigationGuideText', + 'xpack.securitySolution.flyout.documentDetails.investigationGuideTitle', { defaultMessage: 'Investigation guide', } ); +export const INVESTIGATION_GUIDE_BUTTON = i18n.translate( + 'xpack.securitySolution.flyout.documentDetails.investigationGuideButton', + { + defaultMessage: 'Show investigation guide', + } +); + +export const INVESTIGATION_GUIDE_NO_DATA = i18n.translate( + 'xpack.securitySolution.flyout.documentDetails.investigationGuideNoData', + { + defaultMessage: 'An investigation guide has not been created for this rule.', + } +); + export const SESSION_PREVIEW_TITLE = i18n.translate( 'xpack.securitySolution.flyout.documentDetails.sessionPreview.title', { @@ -213,6 +246,21 @@ export const SESSION_PREVIEW_TITLE = i18n.translate( } ); +export const SESSION_PREVIEW_UPSELL = i18n.translate( + 'xpack.securitySolution.flyout.documentDetails.sessionPreview.upsell', + { + defaultMessage: + 'Session preview is disabled because your license does not support it. Please upgrade your license.', + } +); + +export const SESSION_PREVIEW_ERROR = i18n.translate( + 'xpack.securitySolution.flyout.documentDetails.sessionPreview.error', + { + defaultMessage: 'No session view data available', + } +); + export const SESSION_PREVIEW_PROCESS_TEXT = i18n.translate( 'xpack.securitySolution.flyout.documentDetails.sessionPreview.processText', { @@ -251,3 +299,11 @@ export const RESPONSE_TITLE = i18n.translate( export const RESPONSE_EMPTY = i18n.translate('xpack.securitySolution.flyout.response.empty', { defaultMessage: 'There are no response actions defined for this event.', }); + +export const TECHNICAL_PREVIEW_MESSAGE = i18n.translate( + 'xpack.securitySolution.flyout.documentDetails.technicalPreviewMessage', + { + defaultMessage: + 'This functionality is in technical preview and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.', + } +); diff --git a/x-pack/plugins/security_solution/public/flyout/right/components/visualizations_section.tsx b/x-pack/plugins/security_solution/public/flyout/right/components/visualizations_section.tsx index a8e3e56c0a5cb..b2cc0d2969c7e 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/components/visualizations_section.tsx +++ b/x-pack/plugins/security_solution/public/flyout/right/components/visualizations_section.tsx @@ -7,13 +7,13 @@ import React from 'react'; import { EuiSpacer } from '@elastic/eui'; +import { AnalyzerPreviewContainer } from './analyzer_preview_container'; +import { SessionPreviewContainer } from './session_preview_container'; import { ExpandableSection } from './expandable_section'; import { VISUALIZATIONS_SECTION_TEST_ID } from './test_ids'; import { VISUALIZATIONS_TITLE } from './translations'; -import { AnalyzerPreview } from './analyzer_preview'; -import { SessionPreview } from './session_preview'; -export interface VisualizatioinsSectionProps { +export interface VisualizationsSectionProps { /** * Boolean to allow the component to be expanded or collapsed on first render */ @@ -23,7 +23,7 @@ export interface VisualizatioinsSectionProps { /** * Visualizations section in overview. It contains analyzer preview and session view preview. */ -export const VisualizationsSection: React.FC = ({ +export const VisualizationsSection: React.FC = ({ expanded = false, }) => { return ( @@ -32,11 +32,11 @@ export const VisualizationsSection: React.FC = ({ title={VISUALIZATIONS_TITLE} data-test-subj={VISUALIZATIONS_SECTION_TEST_ID} > - + - + ); }; diff --git a/x-pack/plugins/security_solution/public/flyout/right/hooks/use_assistant.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/hooks/use_assistant.test.tsx index 1a538a2ceaeae..ec4fcd4c18dc4 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/hooks/use_assistant.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/right/hooks/use_assistant.test.tsx @@ -28,9 +28,12 @@ describe('useAssistant', () => { let hookResult: RenderHookResult; it(`should return showAssistant true and a value for promptContextId`, () => { - jest - .mocked(useAssistantAvailability) - .mockReturnValue({ hasAssistantPrivilege: true, isAssistantEnabled: true }); + jest.mocked(useAssistantAvailability).mockReturnValue({ + hasAssistantPrivilege: true, + hasConnectorsAllPrivilege: true, + hasConnectorsReadPrivilege: true, + isAssistantEnabled: true, + }); jest .mocked(useAssistantOverlay) .mockReturnValue({ showAssistantOverlay: jest.fn, promptContextId: '123' }); @@ -42,9 +45,12 @@ describe('useAssistant', () => { }); it(`should return showAssistant false if hasAssistantPrivilege is false`, () => { - jest - .mocked(useAssistantAvailability) - .mockReturnValue({ hasAssistantPrivilege: false, isAssistantEnabled: true }); + jest.mocked(useAssistantAvailability).mockReturnValue({ + hasAssistantPrivilege: false, + hasConnectorsAllPrivilege: true, + hasConnectorsReadPrivilege: true, + isAssistantEnabled: true, + }); jest .mocked(useAssistantOverlay) .mockReturnValue({ showAssistantOverlay: jest.fn, promptContextId: '123' }); @@ -54,4 +60,31 @@ describe('useAssistant', () => { expect(hookResult.result.current.showAssistant).toEqual(false); expect(hookResult.result.current.promptContextId).toEqual(''); }); + + it('returns anonymized prompt context data', async () => { + jest.mocked(useAssistantAvailability).mockReturnValue({ + hasAssistantPrivilege: true, + hasConnectorsAllPrivilege: true, + hasConnectorsReadPrivilege: true, + isAssistantEnabled: true, + }); + jest + .mocked(useAssistantOverlay) + .mockReturnValue({ showAssistantOverlay: jest.fn, promptContextId: '123' }); + + hookResult = renderUseAssistant(); + + const getPromptContext = (useAssistantOverlay as jest.Mock).mock.calls[0][3]; + + expect(await getPromptContext()).toEqual({ + '@timestamp': ['2023-01-01T01:01:01.000Z'], + 'kibana.alert.ancestors.id': ['ancestors-id'], + 'kibana.alert.rule.description': ['rule-description'], + 'kibana.alert.rule.name': ['rule-name'], + 'kibana.alert.rule.parameters.index': ['rule-parameters-index'], + 'kibana.alert.rule.uuid': ['rule-uuid'], + 'kibana.alert.workflow_status': ['open'], + 'process.entity_id': ['process-entity_id'], + }); + }); }); diff --git a/x-pack/plugins/security_solution/public/flyout/right/hooks/use_assistant.ts b/x-pack/plugins/security_solution/public/flyout/right/hooks/use_assistant.ts index 13392692e6746..8d9360fdb0f5e 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/hooks/use_assistant.ts +++ b/x-pack/plugins/security_solution/public/flyout/right/hooks/use_assistant.ts @@ -9,7 +9,7 @@ import type { TimelineEventsDetailsItem } from '@kbn/timelines-plugin/common'; import { useAssistantOverlay } from '@kbn/elastic-assistant'; import { useCallback } from 'react'; import { useAssistantAvailability } from '../../../assistant/use_assistant_availability'; -import { getPromptContextFromEventDetailsItem } from '../../../assistant/helpers'; +import { getRawData } from '../../../assistant/helpers'; import { ALERT_SUMMARY_CONTEXT_DESCRIPTION, ALERT_SUMMARY_CONVERSATION_ID, @@ -59,7 +59,7 @@ export const useAssistant = ({ const { hasAssistantPrivilege } = useAssistantAvailability(); const useAssistantHook = hasAssistantPrivilege ? useAssistantOverlay : useAssistantNoop; const getPromptContext = useCallback( - async () => getPromptContextFromEventDetailsItem(dataFormattedForFieldBrowser ?? []), + async () => getRawData(dataFormattedForFieldBrowser ?? []), [dataFormattedForFieldBrowser] ); const { promptContextId } = useAssistantHook( diff --git a/x-pack/plugins/security_solution/public/flyout/right/hooks/use_prevalence.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/hooks/use_prevalence.test.tsx deleted file mode 100644 index aff691037d435..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/right/hooks/use_prevalence.test.tsx +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import type { ReactElement } from 'react'; -import { getSummaryRows } from '../../../common/components/event_details/get_alert_summary_rows'; -import { usePrevalence } from './use_prevalence'; -import type { RenderHookResult } from '@testing-library/react-hooks'; -import { renderHook } from '@testing-library/react-hooks'; -import { mockDataFormattedForFieldBrowser } from '../mocks/mock_context'; - -jest.mock('../../../common/components/event_details/get_alert_summary_rows'); - -const eventId = 'eventId'; -const browserFields = null; -const dataFormattedForFieldBrowser = mockDataFormattedForFieldBrowser; -const scopeId = 'scopeId'; - -describe('usePrevalence', () => { - let hookResult: RenderHookResult; - - it('should return 1 row to render', () => { - const mockSummaryRow = { - title: 'test', - description: { - data: { - field: 'field', - }, - values: ['value'], - }, - }; - (getSummaryRows as jest.Mock).mockReturnValue([mockSummaryRow]); - - hookResult = renderHook(() => - usePrevalence({ browserFields, dataFormattedForFieldBrowser, eventId, scopeId }) - ); - - expect(hookResult.result.current.length).toEqual(1); - }); - - it('should return empty true', () => { - (getSummaryRows as jest.Mock).mockReturnValue([]); - - hookResult = renderHook(() => - usePrevalence({ browserFields, dataFormattedForFieldBrowser, eventId, scopeId }) - ); - - expect(hookResult.result.current.length).toEqual(0); - }); -}); diff --git a/x-pack/plugins/security_solution/public/flyout/right/hooks/use_prevalence.tsx b/x-pack/plugins/security_solution/public/flyout/right/hooks/use_prevalence.tsx deleted file mode 100644 index 5121e166e9a73..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/right/hooks/use_prevalence.tsx +++ /dev/null @@ -1,83 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import type { BrowserFields, TimelineEventsDetailsItem } from '@kbn/timelines-plugin/common'; -import type { ReactElement } from 'react'; -import React, { useMemo } from 'react'; -import { getSummaryRows } from '../../../common/components/event_details/get_alert_summary_rows'; -import { PrevalenceOverviewRow } from '../components/prevalence_overview_row'; -import { INSIGHTS_PREVALENCE_ROW_TEST_ID } from '../components/test_ids'; - -export interface UsePrevalenceParams { - /** - * Id of the document - */ - eventId: string; - /** - * An object containing fields by type - */ - browserFields: BrowserFields | null; - /** - * An array of field objects with category and value - */ - dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] | null; - /** - * Maintain backwards compatibility // TODO remove when possible - */ - scopeId: string; - /** - * User defined fields to highlight (defined on rule) - */ - investigationFields?: string[]; -} - -/** - * This hook retrieves the highlighted fields from the {@link getSummaryRows} method, then iterates through them - * and generate a {@link PrevalenceOverviewRow} for each. - * We use a callback method passed down to the {@link PrevalenceOverviewRow} component to know when it's rendered as null. - * We need to let the parent know when all the {@link PrevalenceOverviewRow} are null, so it can hide then entire section. - */ -export const usePrevalence = ({ - eventId, - browserFields, - dataFormattedForFieldBrowser, - investigationFields, - scopeId, -}: UsePrevalenceParams): ReactElement[] => { - // retrieves the highlighted fields - const summaryRows = useMemo( - () => - getSummaryRows({ - browserFields: browserFields || {}, - data: dataFormattedForFieldBrowser || [], - investigationFields: investigationFields || [], - eventId, - scopeId, - isReadOnly: false, - }), - [browserFields, investigationFields, dataFormattedForFieldBrowser, eventId, scopeId] - ); - - return useMemo( - () => - summaryRows.map((row) => { - const highlightedField = { - name: row.description.data.field, - values: row.description.values || [], - }; - - return ( - - ); - }), - [summaryRows] - ); -}; diff --git a/x-pack/plugins/security_solution/public/flyout/right/hooks/use_session_preview.test.tsx b/x-pack/plugins/security_solution/public/flyout/right/hooks/use_session_preview.test.tsx new file mode 100644 index 0000000000000..17b3e7a6a0616 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/right/hooks/use_session_preview.test.tsx @@ -0,0 +1,44 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import type { RenderHookResult } from '@testing-library/react-hooks'; +import { renderHook } from '@testing-library/react-hooks'; +import type { UseSessionPreviewParams } from './use_session_preview'; +import { useSessionPreview } from './use_session_preview'; +import type { SessionViewConfig } from '@kbn/securitysolution-data-table/common/types'; +import type { GetFieldsData } from '../../../common/hooks/use_get_fields_data'; + +describe('useSessionPreview', () => { + let hookResult: RenderHookResult; + + it(`should return a session view config object`, () => { + const getFieldsData: GetFieldsData = (field: string) => field; + + hookResult = renderHook((props: UseSessionPreviewParams) => useSessionPreview(props), { + initialProps: { getFieldsData }, + }); + + expect(hookResult.result.current).toEqual({ + index: 'kibana.alert.ancestors.index', + investigatedAlertId: '_id', + jumpToCursor: 'kibana.alert.original_time', + jumpToEntityId: 'process.entity_id', + sessionEntityId: 'process.entry_leader.entity_id', + sessionStartTime: 'process.entry_leader.start', + }); + }); + + it(`should return null if data isn't ready for session view`, () => { + const getFieldsData: GetFieldsData = (field: string) => ''; + + hookResult = renderHook((props: UseSessionPreviewParams) => useSessionPreview(props), { + initialProps: { getFieldsData }, + }); + + expect(hookResult.result.current).toEqual(null); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/right/hooks/use_session_preview.ts b/x-pack/plugins/security_solution/public/flyout/right/hooks/use_session_preview.ts new file mode 100644 index 0000000000000..f0a3c75dbb8cf --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/right/hooks/use_session_preview.ts @@ -0,0 +1,46 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import type { SessionViewConfig } from '@kbn/securitysolution-data-table/common/types'; +import type { GetFieldsData } from '../../../common/hooks/use_get_fields_data'; +import { getField } from '../../shared/utils'; + +export interface UseSessionPreviewParams { + /** + * Retrieves searchHit values for the provided field + */ + getFieldsData: GetFieldsData; +} + +/** + * Hook that returns the session view configuration if the session view is available for the alert + */ +export const useSessionPreview = ({ + getFieldsData, +}: UseSessionPreviewParams): SessionViewConfig | null => { + const _id = getField(getFieldsData('_id')); + const index = + getField(getFieldsData('kibana.alert.ancestors.index')) || getField(getFieldsData('_index')); + const entryLeaderEntityId = getField(getFieldsData('process.entry_leader.entity_id')); + const entryLeaderStart = getField(getFieldsData('process.entry_leader.start')); + const entityId = getField(getFieldsData('process.entity_id')); + const time = + getField(getFieldsData('kibana.alert.original_time')) || getField(getFieldsData('timestamp')); + + if (!index || !entryLeaderEntityId || !entryLeaderStart) { + return null; + } + + return { + index, + sessionEntityId: entryLeaderEntityId, + sessionStartTime: entryLeaderStart, + ...(entityId && { jumpToEntityId: entityId }), + ...(time && { jumpToCursor: time }), + ...(_id && { investigatedAlertId: _id }), + }; +}; diff --git a/x-pack/plugins/security_solution/public/flyout/right/index.tsx b/x-pack/plugins/security_solution/public/flyout/right/index.tsx index 1af4450b921ab..5ed6e6a6f357f 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/index.tsx +++ b/x-pack/plugins/security_solution/public/flyout/right/index.tsx @@ -9,7 +9,7 @@ import type { FC } from 'react'; import React, { memo, useMemo } from 'react'; import type { FlyoutPanelProps, PanelPath } from '@kbn/expandable-flyout'; import { useExpandableFlyoutContext } from '@kbn/expandable-flyout'; -import { EventKind } from '../shared/hooks/use_fetch_field_value_pair_by_event_type'; +import { EventKind } from '../shared/constants/event_kinds'; import { getField } from '../shared/utils'; import { useRightPanelContext } from './context'; import { PanelHeader } from './header'; diff --git a/x-pack/plugins/security_solution/public/flyout/right/mocks/mock_context.ts b/x-pack/plugins/security_solution/public/flyout/right/mocks/mock_context.ts index cdc058569d9d3..c90a286d1dd97 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/mocks/mock_context.ts +++ b/x-pack/plugins/security_solution/public/flyout/right/mocks/mock_context.ts @@ -5,7 +5,12 @@ * 2.0. */ -import { ALERT_REASON, ALERT_RISK_SCORE, ALERT_SEVERITY } from '@kbn/rule-data-utils'; +import { + ALERT_REASON, + ALERT_RISK_SCORE, + ALERT_SEVERITY, + ALERT_SUPPRESSION_DOCS_COUNT, +} from '@kbn/rule-data-utils'; /** * Returns mocked data for field (mock this method: x-pack/plugins/security_solution/public/common/hooks/use_get_fields_data.ts) @@ -24,6 +29,8 @@ export const mockGetFieldsData = (field: string): string[] => { return ['user1']; case ALERT_REASON: return ['reason']; + case ALERT_SUPPRESSION_DOCS_COUNT: + return ['1']; default: return []; } diff --git a/x-pack/plugins/security_solution/public/flyout/right/mocks/mock_right_panel_context.ts b/x-pack/plugins/security_solution/public/flyout/right/mocks/mock_right_panel_context.ts index e7593b1eea9e9..38b69703356c0 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/mocks/mock_right_panel_context.ts +++ b/x-pack/plugins/security_solution/public/flyout/right/mocks/mock_right_panel_context.ts @@ -17,7 +17,7 @@ export const mockContextValue: RightPanelContext = { scopeId: 'scopeId', getFieldsData: mockGetFieldsData, dataFormattedForFieldBrowser: mockDataFormattedForFieldBrowser, - browserFields: null, + browserFields: {}, dataAsNestedObject: null, searchHit: undefined, investigationFields: [], diff --git a/x-pack/plugins/security_solution/public/flyout/shared/components/expandable_panel.test.tsx b/x-pack/plugins/security_solution/public/flyout/shared/components/expandable_panel.test.tsx index 7c7f46a11c308..4889e4ebe005a 100644 --- a/x-pack/plugins/security_solution/public/flyout/shared/components/expandable_panel.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/shared/components/expandable_panel.test.tsx @@ -37,7 +37,6 @@ describe('', () => { {children} ); - expect(getByTestId(TEST_ID)).toBeInTheDocument(); expect(getByTestId(EXPANDABLE_PANEL_HEADER_TITLE_ICON_TEST_ID(TEST_ID))).toBeInTheDocument(); expect(getByTestId(EXPANDABLE_PANEL_CONTENT_TEST_ID(TEST_ID))).toHaveTextContent( 'test content' @@ -104,7 +103,6 @@ describe('', () => { {children} ); - expect(getByTestId(TEST_ID)).toBeInTheDocument(); expect(getByTestId(EXPANDABLE_PANEL_HEADER_LEFT_SECTION_TEST_ID(TEST_ID))).toHaveTextContent( 'test title' ); @@ -151,7 +149,6 @@ describe('', () => { {children} ); - expect(getByTestId(TEST_ID)).toBeInTheDocument(); expect(getByTestId(EXPANDABLE_PANEL_HEADER_LEFT_SECTION_TEST_ID(TEST_ID))).toHaveTextContent( 'test title' ); diff --git a/x-pack/plugins/security_solution/public/flyout/shared/components/expandable_panel.tsx b/x-pack/plugins/security_solution/public/flyout/shared/components/expandable_panel.tsx index f9bf5994dff35..1de328f5c44b6 100644 --- a/x-pack/plugins/security_solution/public/flyout/shared/components/expandable_panel.tsx +++ b/x-pack/plugins/security_solution/public/flyout/shared/components/expandable_panel.tsx @@ -17,28 +17,17 @@ import { EuiTitle, EuiText, EuiLoadingSpinner, + useEuiTheme, } from '@elastic/eui'; -import styled from 'styled-components'; - -const StyledEuiFlexItem = styled(EuiFlexItem)` - margin-right: ${({ theme }) => theme.eui.euiSizeM}; -`; - -const StyledEuiIcon = styled(EuiIcon)` - margin: ${({ theme }) => theme.eui.euiSizeS} 0; -`; - -const StyledEuiLink = styled(EuiLink)` - font-size: 12px; - font-weight: 700; -`; +import type { IconType } from '@elastic/eui'; +import { css } from '@emotion/react'; export interface ExpandablePanelPanelProps { header: { /** * String value of the title to be displayed in the header of panel */ - title: string; + title: string | React.ReactNode; /** * Callback function to be called when the title is clicked */ @@ -46,9 +35,9 @@ export interface ExpandablePanelPanelProps { /** * Icon string for displaying the specified icon in the header */ - iconType: string; + iconType: IconType; /** - * Optional content and actions to be displayed on the right side of header + * Optional content and actions to be displayed next to header or on the right side of header */ headerContent?: React.ReactNode; }; @@ -114,9 +103,11 @@ export const ExpandablePanel: React.FC = ({ [dataTestSubj, toggleStatus, toggleQuery] ); + const { euiTheme } = useEuiTheme(); + const headerLeftSection = useMemo( () => ( - + = ({ > {expandable && children && toggleIcon} - {callback ? ( - + {title} - + ) : ( {title} @@ -144,17 +145,23 @@ export const ExpandablePanel: React.FC = ({ ), - [dataTestSubj, expandable, children, toggleIcon, callback, iconType, title] + [dataTestSubj, expandable, children, toggleIcon, callback, iconType, euiTheme.size.s, title] ); const headerRightSection = useMemo( () => headerContent && ( - + {headerContent} - + ), - [dataTestSubj, headerContent] + [dataTestSubj, euiTheme.size.m, headerContent] ); const showContent = useMemo(() => { @@ -175,7 +182,7 @@ export const ExpandablePanel: React.FC = ({ ); return ( - + {headerLeftSection} diff --git a/x-pack/plugins/security_solution/public/flyout/shared/constants/event_kinds.ts b/x-pack/plugins/security_solution/public/flyout/shared/constants/event_kinds.ts new file mode 100644 index 0000000000000..45cec29602ccb --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/shared/constants/event_kinds.ts @@ -0,0 +1,17 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export enum EventKind { + alert = 'alert', + asset = 'asset', + enrichment = 'enrichment', + event = 'event', + metric = 'metric', + state = 'state', + pipeline_error = 'pipeline_error', + signal = 'signal', +} diff --git a/x-pack/plugins/security_solution/public/flyout/shared/constants/field_names.ts b/x-pack/plugins/security_solution/public/flyout/shared/constants/field_names.ts new file mode 100644 index 0000000000000..e9a896a73dded --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/shared/constants/field_names.ts @@ -0,0 +1,13 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export const ANCESTOR_ID = 'kibana.alert.ancestors.id'; +export const RULE_PARAMETERS_INDEX = 'kibana.alert.rule.parameters.index'; +export const ORIGINAL_EVENT_ID = 'kibana.alert.original_event.id'; +export const ENTRY_LEADER_ENTITY_ID = 'process.entry_leader.entity_id'; +export const ENTRY_LEADER_START = 'process.entry_leader.start'; +export const ANCESTOR_INDEX = 'kibana.alert.ancestors.index'; diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_correlations.test.tsx b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_correlations.test.tsx deleted file mode 100644 index 25762692d7f45..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_correlations.test.tsx +++ /dev/null @@ -1,217 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import type { RenderHookResult } from '@testing-library/react-hooks'; -import { renderHook } from '@testing-library/react-hooks'; -import type { EcsSecurityExtension as Ecs } from '@kbn/securitysolution-ecs'; -import { useShowRelatedCases } from './use_show_related_cases'; -import { useFetchRelatedCases } from './use_fetch_related_cases'; -import { useShowRelatedAlertsByAncestry } from './use_show_related_alerts_by_ancestry'; -import { useFetchRelatedAlertsByAncestry } from './use_fetch_related_alerts_by_ancestry'; -import { useShowRelatedAlertsBySameSourceEvent } from './use_show_related_alerts_by_same_source_event'; -import { useFetchRelatedAlertsBySameSourceEvent } from './use_fetch_related_alerts_by_same_source_event'; -import { useShowRelatedAlertsBySession } from './use_show_related_alerts_by_session'; -import { useFetchRelatedAlertsBySession } from './use_fetch_related_alerts_by_session'; -import type { UseCorrelationsParams, UseCorrelationsResult } from './use_correlations'; -import { useCorrelations } from './use_correlations'; -import { mockDataAsNestedObject, mockDataFormattedForFieldBrowser } from '../mocks/mock_context'; - -jest.mock('./use_show_related_cases'); -jest.mock('./use_fetch_related_cases'); -jest.mock('./use_show_related_alerts_by_ancestry'); -jest.mock('./use_fetch_related_alerts_by_ancestry'); -jest.mock('./use_show_related_alerts_by_same_source_event'); -jest.mock('./use_fetch_related_alerts_by_same_source_event'); -jest.mock('./use_show_related_alerts_by_session'); -jest.mock('./use_fetch_related_alerts_by_session'); - -const eventId = 'eventId'; -const dataAsNestedObject = mockDataAsNestedObject as unknown as Ecs; -const dataFormattedForFieldBrowser = mockDataFormattedForFieldBrowser; -const scopeId = 'scopeId'; - -const mockShowHooks = ({ - cases = true, - ancestry = true, - sameSource = true, - session = true, -}: { - cases?: boolean; - ancestry?: boolean; - sameSource?: boolean; - session?: boolean; -}) => { - (useShowRelatedCases as jest.Mock).mockReturnValue(cases); - (useShowRelatedAlertsByAncestry as jest.Mock).mockReturnValue(ancestry); - (useShowRelatedAlertsBySameSourceEvent as jest.Mock).mockReturnValue(sameSource); - (useShowRelatedAlertsBySession as jest.Mock).mockReturnValue(session); -}; - -const mockFetchLoadingReturnValue = { - loading: true, - error: false, - dataCount: 0, -}; - -const mockFetchErrorReturnValue = { - loading: false, - error: true, - dataCount: 0, -}; - -const mockFetchReturnValue = { - loading: false, - error: false, - dataCount: 1, -}; - -const mockFetchHooks = ({ - cases = mockFetchReturnValue, - ancestry = mockFetchReturnValue, - sameSource = mockFetchReturnValue, - session = mockFetchReturnValue, -}: { - cases?: typeof mockFetchReturnValue; - ancestry?: typeof mockFetchReturnValue; - sameSource?: typeof mockFetchReturnValue; - session?: typeof mockFetchReturnValue; -}) => { - (useFetchRelatedCases as jest.Mock).mockReturnValue(cases); - (useFetchRelatedAlertsByAncestry as jest.Mock).mockReturnValue(ancestry); - (useFetchRelatedAlertsBySameSourceEvent as jest.Mock).mockReturnValue(sameSource); - (useFetchRelatedAlertsBySession as jest.Mock).mockReturnValue(session); -}; - -describe('useCorrelations', () => { - let hookResult: RenderHookResult; - - it(`should return loading true if casesLoading is true`, () => { - mockShowHooks({}); - mockFetchHooks({ cases: mockFetchLoadingReturnValue }); - - hookResult = renderHook(() => - useCorrelations({ eventId, dataAsNestedObject, dataFormattedForFieldBrowser, scopeId }) - ); - - expect(hookResult.result.current.loading).toEqual(true); - expect(hookResult.result.current.dataCount).toEqual(3); - }); - - it(`should return loading true if ancestryAlertsLoading is true`, () => { - mockShowHooks({}); - mockFetchHooks({ ancestry: mockFetchLoadingReturnValue }); - - hookResult = renderHook(() => - useCorrelations({ eventId, dataAsNestedObject, dataFormattedForFieldBrowser, scopeId }) - ); - - expect(hookResult.result.current.loading).toEqual(true); - expect(hookResult.result.current.dataCount).toEqual(3); - }); - - it(`should return loading true if sameSourceAlertsLoading is true`, () => { - mockShowHooks({}); - mockFetchHooks({ sameSource: mockFetchLoadingReturnValue }); - - hookResult = renderHook(() => - useCorrelations({ eventId, dataAsNestedObject, dataFormattedForFieldBrowser, scopeId }) - ); - - expect(hookResult.result.current.loading).toEqual(true); - expect(hookResult.result.current.dataCount).toEqual(3); - }); - - it(`should return loading true if alertsBySessionLoading is true`, () => { - mockShowHooks({}); - mockFetchHooks({ session: mockFetchLoadingReturnValue }); - - hookResult = renderHook(() => - useCorrelations({ eventId, dataAsNestedObject, dataFormattedForFieldBrowser, scopeId }) - ); - - expect(hookResult.result.current.loading).toEqual(true); - expect(hookResult.result.current.dataCount).toEqual(3); - }); - - it(`should return dataCount 3 if casesError is true`, () => { - mockShowHooks({}); - mockFetchHooks({ cases: mockFetchErrorReturnValue }); - - hookResult = renderHook(() => - useCorrelations({ eventId, dataAsNestedObject, dataFormattedForFieldBrowser, scopeId }) - ); - - expect(hookResult.result.current.dataCount).toEqual(3); - }); - - it(`should return dataCount 3 if ancestryAlertsError is true`, () => { - mockShowHooks({}); - mockFetchHooks({ ancestry: mockFetchErrorReturnValue }); - - hookResult = renderHook(() => - useCorrelations({ eventId, dataAsNestedObject, dataFormattedForFieldBrowser, scopeId }) - ); - - expect(hookResult.result.current.dataCount).toEqual(3); - }); - - it(`should return dataCount 3 if sameSourceAlertsError is true`, () => { - mockShowHooks({}); - mockFetchHooks({ sameSource: mockFetchErrorReturnValue }); - - hookResult = renderHook(() => - useCorrelations({ eventId, dataAsNestedObject, dataFormattedForFieldBrowser, scopeId }) - ); - - expect(hookResult.result.current.dataCount).toEqual(3); - }); - - it(`should return dataCount 3 if alertsBySessionError is true`, () => { - mockShowHooks({}); - mockFetchHooks({ session: mockFetchErrorReturnValue }); - - hookResult = renderHook(() => - useCorrelations({ eventId, dataAsNestedObject, dataFormattedForFieldBrowser, scopeId }) - ); - - expect(hookResult.result.current.dataCount).toEqual(3); - }); - - it(`should return error true if all errors are true`, () => { - mockShowHooks({}); - mockFetchHooks({ - cases: mockFetchErrorReturnValue, - ancestry: mockFetchErrorReturnValue, - sameSource: mockFetchErrorReturnValue, - session: mockFetchErrorReturnValue, - }); - - hookResult = renderHook(() => - useCorrelations({ eventId, dataAsNestedObject, dataFormattedForFieldBrowser, scopeId }) - ); - - expect(hookResult.result.current.error).toEqual(true); - expect(hookResult.result.current.dataCount).toEqual(0); - }); - - it(`should return dataCount 0 if all loading are true`, () => { - mockShowHooks({}); - mockFetchHooks({ - cases: mockFetchLoadingReturnValue, - ancestry: mockFetchLoadingReturnValue, - sameSource: mockFetchLoadingReturnValue, - session: mockFetchLoadingReturnValue, - }); - - hookResult = renderHook(() => - useCorrelations({ eventId, dataAsNestedObject, dataFormattedForFieldBrowser, scopeId }) - ); - - expect(hookResult.result.current.loading).toEqual(true); - expect(hookResult.result.current.dataCount).toEqual(0); - }); -}); diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_correlations.ts b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_correlations.ts deleted file mode 100644 index 24f328d059d54..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_correlations.ts +++ /dev/null @@ -1,229 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import type { TimelineEventsDetailsItem } from '@kbn/timelines-plugin/common'; -import type { EcsSecurityExtension as Ecs } from '@kbn/securitysolution-ecs'; -import { useEffect, useMemo, useReducer } from 'react'; -import type { GetRelatedCasesByAlertResponse } from '@kbn/cases-plugin/common'; -import { useFetchRelatedAlertsBySameSourceEvent } from './use_fetch_related_alerts_by_same_source_event'; -import { useShowRelatedCases } from './use_show_related_cases'; -import { useFetchRelatedCases } from './use_fetch_related_cases'; -import { - CORRELATIONS_ANCESTRY_ALERT, - CORRELATIONS_ANCESTRY_ALERTS, - CORRELATIONS_RELATED_CASE, - CORRELATIONS_RELATED_CASES, - CORRELATIONS_SAME_SESSION_ALERT, - CORRELATIONS_SAME_SESSION_ALERTS, - CORRELATIONS_SAME_SOURCE_EVENT_ALERT, - CORRELATIONS_SAME_SOURCE_EVENT_ALERTS, -} from '../translations'; -import { useShowRelatedAlertsByAncestry } from './use_show_related_alerts_by_ancestry'; -import { useFetchRelatedAlertsByAncestry } from './use_fetch_related_alerts_by_ancestry'; -import { useShowRelatedAlertsBySameSourceEvent } from './use_show_related_alerts_by_same_source_event'; -import { useShowRelatedAlertsBySession } from './use_show_related_alerts_by_session'; -import { useFetchRelatedAlertsBySession } from './use_fetch_related_alerts_by_session'; - -export interface InsightsSummaryPanelData { - icon: string; - value: number; - text: string; -} - -export interface UseCorrelationsParams { - /** - * Id of the document - */ - eventId: string; - /** - * An object with top level fields from the ECS object - */ - dataAsNestedObject: Ecs | null; - /** - * An array of field objects with category and value - */ - dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] | null; - /** - * Maintain backwards compatibility // TODO remove when possible - */ - scopeId: string; -} -export interface UseCorrelationsResult { - /** - * Returns true while data is loading - */ - loading: boolean; - /** - * Returns true if there is an error while retrieving data - */ - error: boolean; - /** - * Data ready to be consumed by the InsightsSummaryPanel component - */ - data: InsightsSummaryPanelData[]; - /** - * Data length - */ - dataCount: number; - /** - * Ids of specific alerts correlated by session, can be used to fetch specific alert documents - */ - alertsBySessionIds: string[]; - /** - * Ids of specific alerts correlated by source, can be used to fetch specific alert documents - */ - sameSourceAlertsIds: string[]; - /** - * Ids of specific alerts correlated by ancestry, can be used to fetch specific alert documents - */ - ancestryAlertsIds: string[]; - /** - * Cases data, can be used to render correlated cases table - */ - cases: GetRelatedCasesByAlertResponse; -} - -/** - * Retrieves all correlations data from custom hooks - */ -export const useCorrelations = ({ - eventId, - dataAsNestedObject, - dataFormattedForFieldBrowser, - scopeId, -}: UseCorrelationsParams): UseCorrelationsResult => { - const [data, updateInsightsSummaryPanel] = useReducer( - ( - currentEntries: InsightsSummaryPanelData[], - newEntry: { icon: string; value: number; text: string } - ) => { - return [...currentEntries, newEntry]; - }, - [] - ); - - // cases - const showCases = useShowRelatedCases(); - const { - loading: casesLoading, - error: casesError, - dataCount: casesCount, - data: cases, - } = useFetchRelatedCases({ eventId }); - - useEffect(() => { - if (showCases && !casesLoading && !casesError) { - updateInsightsSummaryPanel({ - icon: 'warning', - value: casesCount, - text: casesCount <= 1 ? CORRELATIONS_RELATED_CASE : CORRELATIONS_RELATED_CASES, - }); - } - }, [casesCount, casesError, casesLoading, showCases]); - - // alerts by ancestry - const showAlertsByAncestry = useShowRelatedAlertsByAncestry({ - dataFormattedForFieldBrowser, - dataAsNestedObject, - }); - const { - loading: ancestryAlertsLoading, - error: ancestryAlertsError, - dataCount: ancestryAlertsCount, - data: ancestryAlertsIds, - } = useFetchRelatedAlertsByAncestry({ - dataFormattedForFieldBrowser, - scopeId, - }); - - useEffect(() => { - if (showAlertsByAncestry && !ancestryAlertsLoading && !ancestryAlertsError) { - updateInsightsSummaryPanel({ - icon: 'warning', - value: ancestryAlertsCount, - text: ancestryAlertsCount <= 1 ? CORRELATIONS_ANCESTRY_ALERT : CORRELATIONS_ANCESTRY_ALERTS, - }); - } - }, [ancestryAlertsCount, ancestryAlertsError, ancestryAlertsLoading, showAlertsByAncestry]); - - // alerts related to same source event - const showSameSourceAlerts = useShowRelatedAlertsBySameSourceEvent({ - dataFormattedForFieldBrowser, - }); - const { - loading: sameSourceAlertsLoading, - error: sameSourceAlertsError, - dataCount: sameSourceAlertsCount, - data: sameSourceAlertsIds, - } = useFetchRelatedAlertsBySameSourceEvent({ - dataFormattedForFieldBrowser, - scopeId, - }); - - useEffect(() => { - if (showSameSourceAlerts && !sameSourceAlertsLoading && !sameSourceAlertsError) { - updateInsightsSummaryPanel({ - icon: 'warning', - value: sameSourceAlertsCount, - text: - sameSourceAlertsCount <= 1 - ? CORRELATIONS_SAME_SOURCE_EVENT_ALERT - : CORRELATIONS_SAME_SOURCE_EVENT_ALERTS, - }); - } - }, [sameSourceAlertsCount, sameSourceAlertsError, sameSourceAlertsLoading, showSameSourceAlerts]); - - // alerts related by session - const showAlertsBySession = useShowRelatedAlertsBySession({ dataFormattedForFieldBrowser }); - const { - loading: alertsBySessionLoading, - error: alertsBySessionError, - dataCount: alertsBySessionCount, - data: alertsBySessionIds, - } = useFetchRelatedAlertsBySession({ - dataFormattedForFieldBrowser, - scopeId, - }); - - useEffect(() => { - if (showAlertsBySession && !alertsBySessionLoading && !alertsBySessionError) { - updateInsightsSummaryPanel({ - icon: 'warning', - value: alertsBySessionCount, - text: - alertsBySessionCount <= 1 - ? CORRELATIONS_SAME_SESSION_ALERT - : CORRELATIONS_SAME_SESSION_ALERTS, - }); - } - }, [alertsBySessionCount, alertsBySessionError, alertsBySessionLoading, showAlertsBySession]); - - return useMemo( - () => ({ - loading: - casesLoading || ancestryAlertsLoading || alertsBySessionLoading || sameSourceAlertsLoading, - error: data.length === 0, - data, - dataCount: data.length || 0, - alertsBySessionIds, - sameSourceAlertsIds, - ancestryAlertsIds: ancestryAlertsIds || [], - cases, - }), - [ - alertsBySessionIds, - alertsBySessionLoading, - ancestryAlertsIds, - ancestryAlertsLoading, - cases, - casesLoading, - data, - sameSourceAlertsIds, - sameSourceAlertsLoading, - ] - ); -}; diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_field_value_pair_by_event_type.test.ts b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_field_value_pair_by_event_type.test.ts deleted file mode 100644 index bac2f7b37af63..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_field_value_pair_by_event_type.test.ts +++ /dev/null @@ -1,85 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { useQuery } from '@tanstack/react-query'; -import type { RenderHookResult } from '@testing-library/react-hooks'; -import { renderHook } from '@testing-library/react-hooks'; -import { useKibana } from '../../../common/lib/kibana'; -import type { - UseFetchFieldValuePairByEventTypeParams, - UseFetchFieldValuePairByEventTypeResult, -} from './use_fetch_field_value_pair_by_event_type'; -import { - EventKind, - useFetchFieldValuePairByEventType, -} from './use_fetch_field_value_pair_by_event_type'; - -jest.mock('@tanstack/react-query'); -jest.mock('../../../common/lib/kibana'); - -const highlightedField = { - name: 'field', - values: ['values'], -}; -const type = { - eventKind: EventKind.alert, - include: true, -}; - -describe('useFetchFieldValuePairByEventType', () => { - let hookResult: RenderHookResult< - UseFetchFieldValuePairByEventTypeParams, - UseFetchFieldValuePairByEventTypeResult - >; - (useKibana as jest.Mock).mockReturnValue({ - services: { - data: { search: jest.fn() }, - }, - }); - - it('should return loading true while data is being fetched', () => { - (useQuery as jest.Mock).mockReturnValue({ - isLoading: true, - isError: false, - data: 0, - }); - - hookResult = renderHook(() => useFetchFieldValuePairByEventType({ highlightedField, type })); - - expect(hookResult.result.current.loading).toBeTruthy(); - expect(hookResult.result.current.error).toBeFalsy(); - expect(hookResult.result.current.count).toBe(0); - }); - - it('should return error true when data fetching has errored out', () => { - (useQuery as jest.Mock).mockReturnValue({ - isLoading: false, - isError: true, - data: 0, - }); - - hookResult = renderHook(() => useFetchFieldValuePairByEventType({ highlightedField, type })); - - expect(hookResult.result.current.loading).toBeFalsy(); - expect(hookResult.result.current.error).toBeTruthy(); - expect(hookResult.result.current.count).toBe(0); - }); - - it('should return count on success', () => { - (useQuery as jest.Mock).mockReturnValue({ - isLoading: false, - isError: false, - data: 1, - }); - - hookResult = renderHook(() => useFetchFieldValuePairByEventType({ highlightedField, type })); - - expect(hookResult.result.current.loading).toBeFalsy(); - expect(hookResult.result.current.error).toBeFalsy(); - expect(hookResult.result.current.count).toBe(1); - }); -}); diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_field_value_pair_by_event_type.ts b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_field_value_pair_by_event_type.ts deleted file mode 100644 index c1e52b90558e5..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_field_value_pair_by_event_type.ts +++ /dev/null @@ -1,167 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { buildEsQuery } from '@kbn/es-query'; -import type { IEsSearchRequest } from '@kbn/data-plugin/public'; -import { useQuery } from '@tanstack/react-query'; -import { createFetchData } from '../utils/fetch_data'; -import { useKibana } from '../../../common/lib/kibana'; -import type { RawResponse } from '../utils/fetch_data'; - -const QUERY_KEY = 'FetchFieldValuePairByEventType'; -const DEFAULT_FROM = 'now-30d'; -const DEFAULT_TO = 'now'; - -export enum EventKind { - alert = 'alert', - asset = 'asset', - enrichment = 'enrichment', - event = 'event', - metric = 'metric', - state = 'state', - pipeline_error = 'pipeline_error', - signal = 'signal', -} - -export interface EventType { - eventKind: EventKind; - include?: boolean; - exclude?: boolean; -} - -export interface UseFetchFieldValuePairByEventTypeParams { - /** - * The highlighted field name and values - * */ - highlightedField: { name: string; values: string[] }; - /** - * Limit the search to include or exclude a specific value for the event.kind field - * (alert, asset, enrichment, event, metric, state, pipeline_error, signal) - */ - type: EventType; -} - -export interface UseFetchFieldValuePairByEventTypeResult { - /** - * Returns true if data is being loaded - */ - loading: boolean; - /** - * Returns true if fetching data has errored out - */ - error: boolean; - /** - * Number of unique hosts found for the field/value pair - */ - count: number; -} - -/** - * Hook to retrieve all the unique hosts in the environment that have the field/value pair, using ReactQuery. - */ -export const useFetchFieldValuePairByEventType = ({ - highlightedField, - type, -}: UseFetchFieldValuePairByEventTypeParams): UseFetchFieldValuePairByEventTypeResult => { - const { - services: { - data: { search: searchService }, - }, - } = useKibana(); - - const { from, to } = { from: DEFAULT_FROM, to: DEFAULT_TO }; - - const { name, values } = highlightedField; - - const req: IEsSearchRequest = buildSearchRequest(name, values, from, to, type); - - const { data, isLoading, isError } = useQuery( - [QUERY_KEY, name, values, from, to, type], - () => createFetchData(searchService, req), - { - select: (res) => res.hits.total, - keepPreviousData: true, - } - ); - - return { - loading: isLoading, - error: isError, - count: data || 0, - }; -}; - -/** - * Build the search request for the field/values pair, for a date range from/to. - * We set the size to 0 as we only care about the total number of documents. - * Passing signalEventKind as true will return only alerts (event.kind === "signal"), otherwise return all other documents (event.kind !== "signal") - */ -const buildSearchRequest = ( - field: string, - values: string[], - from: string, - to: string, - type: EventType -): IEsSearchRequest => { - const query = buildEsQuery( - undefined, - [], - [ - { - query: { - bool: { - must: [ - { - match: { - [field]: values[0], - }, - }, - { - range: { - '@timestamp': { - gte: from, - lte: to, - }, - }, - }, - ...(type.include - ? [ - { - match: { - 'event.kind': type.eventKind, - }, - }, - ] - : []), - ], - ...(type.exclude - ? { - must_not: [ - { - match: { - 'event.kind': type.eventKind, - }, - }, - ], - } - : {}), - }, - }, - meta: {}, - }, - ] - ); - - return { - params: { - body: { - query, - size: 1000, - }, - }, - }; -}; diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_field_value_pair_with_aggregation.test.ts b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_field_value_pair_with_aggregation.test.ts deleted file mode 100644 index 7de92d29cc17e..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_field_value_pair_with_aggregation.test.ts +++ /dev/null @@ -1,94 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { useQuery } from '@tanstack/react-query'; -import type { RenderHookResult } from '@testing-library/react-hooks'; -import { renderHook } from '@testing-library/react-hooks'; -import { useKibana } from '../../../common/lib/kibana'; -import type { - UseFetchFieldValuePairWithAggregationParams, - UseFetchFieldValuePairWithAggregationResult, -} from './use_fetch_field_value_pair_with_aggregation'; -import { useFetchFieldValuePairWithAggregation } from './use_fetch_field_value_pair_with_aggregation'; - -jest.mock('@tanstack/react-query'); -jest.mock('../../../common/lib/kibana'); - -const highlightedField = { - name: 'field', - values: ['values'], -}; -const aggregationField = 'aggregationField'; - -describe('useFetchFieldValuePairWithAggregation', () => { - let hookResult: RenderHookResult< - UseFetchFieldValuePairWithAggregationParams, - UseFetchFieldValuePairWithAggregationResult - >; - (useKibana as jest.Mock).mockReturnValue({ - services: { - data: { search: jest.fn() }, - }, - }); - - it('should return loading true while data is being fetched', () => { - (useQuery as jest.Mock).mockReturnValue({ - isLoading: true, - isError: false, - data: 0, - }); - - hookResult = renderHook(() => - useFetchFieldValuePairWithAggregation({ - highlightedField, - aggregationField, - }) - ); - - expect(hookResult.result.current.loading).toBeTruthy(); - expect(hookResult.result.current.error).toBeFalsy(); - expect(hookResult.result.current.count).toBe(0); - }); - - it('should return error true when data fetching has errored out', () => { - (useQuery as jest.Mock).mockReturnValue({ - isLoading: false, - isError: true, - data: 0, - }); - - hookResult = renderHook(() => - useFetchFieldValuePairWithAggregation({ - highlightedField, - aggregationField, - }) - ); - - expect(hookResult.result.current.loading).toBeFalsy(); - expect(hookResult.result.current.error).toBeTruthy(); - expect(hookResult.result.current.count).toBe(0); - }); - - it('should return count on success', () => { - (useQuery as jest.Mock).mockReturnValue({ - isLoading: false, - isError: false, - data: 1, - }); - - hookResult = renderHook(() => - useFetchFieldValuePairWithAggregation({ - highlightedField, - aggregationField, - }) - ); - - expect(hookResult.result.current.loading).toBeFalsy(); - expect(hookResult.result.current.error).toBeFalsy(); - expect(hookResult.result.current.count).toBe(1); - }); -}); diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_field_value_pair_with_aggregation.ts b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_field_value_pair_with_aggregation.ts deleted file mode 100644 index 16be9931db1f3..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_field_value_pair_with_aggregation.ts +++ /dev/null @@ -1,122 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { buildEsQuery } from '@kbn/es-query'; -import type { IEsSearchRequest } from '@kbn/data-plugin/public'; -import { useQuery } from '@tanstack/react-query'; -import { buildAggregationSearchRequest } from '../utils/build_requests'; -import type { RawAggregatedDataResponse } from '../utils/fetch_data'; -import { AGG_KEY, createFetchData } from '../utils/fetch_data'; -import { useKibana } from '../../../common/lib/kibana'; - -const QUERY_KEY = 'useFetchFieldValuePairWithAggregation'; -const DEFAULT_FROM = 'now-30d'; -const DEFAULT_TO = 'now'; - -export interface UseFetchFieldValuePairWithAggregationParams { - /** - * The highlighted field name and values - * */ - highlightedField: { name: string; values: string[] }; - /** - * Field to aggregate value by - */ - aggregationField: string; -} - -export interface UseFetchFieldValuePairWithAggregationResult { - /** - * Returns true if data is being loaded - */ - loading: boolean; - /** - * Returns true if fetching data has errored out - */ - error: boolean; - /** - * Number of unique hosts found for the field/value pair - */ - count: number; -} - -/** - * Hook to retrieve all the unique documents for the aggregationField in the environment that have the field/value pair, using ReactQuery. - * - * Foe example, passing 'host.name' via the aggregationField props will return the number of unique hosts in the environment that have the field/value pair. - */ -export const useFetchFieldValuePairWithAggregation = ({ - highlightedField, - aggregationField, -}: UseFetchFieldValuePairWithAggregationParams): UseFetchFieldValuePairWithAggregationResult => { - const { - services: { - data: { search: searchService }, - }, - } = useKibana(); - - const { from, to } = { from: DEFAULT_FROM, to: DEFAULT_TO }; - const { name, values } = highlightedField; - - const searchRequest = buildSearchRequest(name, values, from, to, aggregationField); - - const { data, isLoading, isError } = useQuery( - [QUERY_KEY, name, values, from, to, aggregationField], - () => createFetchData(searchService, searchRequest), - { - select: (res) => res.aggregations[AGG_KEY].buckets.length, - keepPreviousData: true, - } - ); - - return { - loading: isLoading, - error: isError, - count: data || 0, - }; -}; - -/** - * Build the search request for the field/values pair, for a date range from/to. - * The request contains aggregation by aggregationField. - */ -const buildSearchRequest = ( - field: string, - values: string[], - from: string, - to: string, - aggregationField: string -): IEsSearchRequest => { - const query = buildEsQuery( - undefined, - [], - [ - { - query: { - bool: { - filter: [ - { - match: { - [field]: values[0], - }, - }, - { - range: { - '@timestamp': { - gte: from, - lte: to, - }, - }, - }, - ], - }, - }, - meta: {}, - }, - ] - ); - return buildAggregationSearchRequest(aggregationField, AGG_KEY, query); -}; diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_prevalence.ts b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_prevalence.ts new file mode 100644 index 0000000000000..804784728c3f7 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_prevalence.ts @@ -0,0 +1,203 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { buildEsQuery } from '@kbn/es-query'; +import type { IEsSearchRequest } from '@kbn/data-plugin/public'; +import { useQuery } from '@tanstack/react-query'; +import type { QueryDslQueryContainer } from '@elastic/elasticsearch/lib/api/types'; +import { createFetchData } from '../utils/fetch_data'; +import { useKibana } from '../../../common/lib/kibana'; + +const QUERY_KEY = 'useFetchFieldValuePairWithAggregation'; + +export const FIELD_NAMES_AGG_KEY = 'fieldNames'; +export const EVENT_KIND_AGG_KEY = 'eventKind'; +export const HOST_NAME_AGG_KEY = 'hostName'; +export const USER_NAME_AGG_KEY = 'userName'; +export const HOSTS_AGG_KEY = 'hosts'; +export const USERS_AGG_KEY = 'users'; + +export interface AggregationValue { + doc_count: number; + key: string; +} + +/** + * Interface for a specific aggregation schema with nested aggregations, used in the prevalence components + */ +export interface RawAggregatedDataResponse { + aggregations: { + [FIELD_NAMES_AGG_KEY]: { + buckets: { + [key: string]: { + eventKind: { buckets: AggregationValue[] }; + hostName: { value: number }; + userName: { value: number }; + }; + }; + }; + [HOSTS_AGG_KEY]: { + value: number; + }; + [USERS_AGG_KEY]: { + value: number; + }; + }; +} + +export interface UseFetchPrevalenceParams { + /** + * The highlighted field name and values, already formatted for the query + * */ + highlightedFieldsFilters: Record; + /** + * The from and to values for the query + */ + interval: { from: string; to: string }; +} + +export interface UseFetchPrevalenceResult { + /** + * Returns true if data is being loaded + */ + loading: boolean; + /** + * Returns true if fetching data has errored out + */ + error: boolean; + /** + * Returns the prevalence raw aggregated data + */ + data: RawAggregatedDataResponse | undefined; +} + +/** + * Hook to fetch prevalence data for both the PrevalenceDetails and PrevalenceOverview components. + * Here's how we fetch the data: + * - the query filter is just limiting to the from/to datetime range + * - we do 3 top level aggregations: + * - one for each field/value pairs + * - one for all the unique hosts in the environment + * - one for all the unique users in the environment + * For each field/value pair aggregated, we do 3 sub aggregations: + * - one to retrieve the unique hosts which have the field/value pair + * - one to retrieve the unique users which have the field/value pair + * - one to retrieve how many documents are of the different type of event.kind + * All of these values are then used to calculate the alert count, document count, host and user prevalence values. + */ +export const useFetchPrevalence = ({ + highlightedFieldsFilters, + interval: { from, to }, +}: UseFetchPrevalenceParams): UseFetchPrevalenceResult => { + const { + services: { + data: { search: searchService }, + }, + } = useKibana(); + + const searchRequest = buildSearchRequest(highlightedFieldsFilters, from, to); + + const { data, isLoading, isError } = useQuery( + [QUERY_KEY, highlightedFieldsFilters, from, to], + () => createFetchData(searchService, searchRequest) + ); + + return { + loading: isLoading, + error: isError, + data, + }; +}; + +/** + * Build the search request for the field/values pair, for a date range from/to. + * The request contains aggregation by aggregationField. + */ +const buildSearchRequest = ( + highlightedFieldsFilters: Record, + from: string, + to: string +): IEsSearchRequest => { + const query = buildEsQuery( + undefined, + [], + [ + { + query: { + bool: { + filter: [ + { + range: { + '@timestamp': { + gte: from, + lte: to, + }, + }, + }, + ], + }, + }, + meta: {}, + }, + ] + ); + + return buildAggregationSearchRequest(query, highlightedFieldsFilters); +}; + +const buildAggregationSearchRequest = ( + query: QueryDslQueryContainer, + highlightedFieldsFilters: Record +): IEsSearchRequest => ({ + params: { + body: { + query, + aggs: { + // with this aggregation, we can in a single call retrieve all the values for each field/value pairs + [FIELD_NAMES_AGG_KEY]: { + filters: { + filters: highlightedFieldsFilters, + }, + aggs: { + // this sub aggregation allows us to retrieve all the hosts which have the field/value pair + [HOST_NAME_AGG_KEY]: { + cardinality: { + field: 'host.name', + }, + }, + // this sub aggregation allows us to retrieve all the users which have the field/value pair + [USER_NAME_AGG_KEY]: { + cardinality: { + field: 'user.name', + }, + }, + // we use this sub aggregation to differentiate between alerts (event.kind === 'signal') and documents (event.kind !== 'signal') + [EVENT_KIND_AGG_KEY]: { + terms: { + field: 'event.kind', + size: 10, // there should be only 8 different value for the event.kind field + }, + }, + }, + }, + // retrieve all the unique hosts in the environment + [HOSTS_AGG_KEY]: { + cardinality: { + field: 'host.name', + }, + }, + // retrieve all the unique users in the environment + [USERS_AGG_KEY]: { + cardinality: { + field: 'user.name', + }, + }, + }, + size: 0, + }, + }, +}); diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_ancestry.test.tsx b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_ancestry.test.tsx index 973dc391c9a31..27d0e83b34b1a 100644 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_ancestry.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_ancestry.test.tsx @@ -7,7 +7,6 @@ import type { RenderHookResult } from '@testing-library/react-hooks'; import { renderHook } from '@testing-library/react-hooks'; -import { mockDataFormattedForFieldBrowser } from '../mocks/mock_context'; import type { UseFetchRelatedAlertsByAncestryParams, UseFetchRelatedAlertsByAncestryResult, @@ -17,7 +16,8 @@ import { useAlertPrevalenceFromProcessTree } from '../../../common/containers/al jest.mock('../../../common/containers/alerts/use_alert_prevalence_from_process_tree'); -const dataFormattedForFieldBrowser = mockDataFormattedForFieldBrowser; +const documentId = 'documentId'; +const indices = ['index1']; const scopeId = 'scopeId'; describe('useFetchRelatedAlertsByAncestry', () => { @@ -34,7 +34,7 @@ describe('useFetchRelatedAlertsByAncestry', () => { }); hookResult = renderHook(() => - useFetchRelatedAlertsByAncestry({ dataFormattedForFieldBrowser, scopeId }) + useFetchRelatedAlertsByAncestry({ documentId, indices, scopeId }) ); expect(hookResult.result.current.loading).toEqual(true); @@ -51,7 +51,7 @@ describe('useFetchRelatedAlertsByAncestry', () => { }); hookResult = renderHook(() => - useFetchRelatedAlertsByAncestry({ dataFormattedForFieldBrowser, scopeId }) + useFetchRelatedAlertsByAncestry({ documentId, indices, scopeId }) ); expect(hookResult.result.current.loading).toEqual(false); @@ -68,7 +68,7 @@ describe('useFetchRelatedAlertsByAncestry', () => { }); hookResult = renderHook(() => - useFetchRelatedAlertsByAncestry({ dataFormattedForFieldBrowser, scopeId }) + useFetchRelatedAlertsByAncestry({ documentId, indices, scopeId }) ); expect(hookResult.result.current.loading).toEqual(false); diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_ancestry.ts b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_ancestry.ts index d5d762e3dc534..5dd4a2da67e70 100644 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_ancestry.ts +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_ancestry.ts @@ -5,17 +5,19 @@ * 2.0. */ -import type { TimelineEventsDetailsItem } from '@kbn/timelines-plugin/common'; -import { find } from 'lodash/fp'; import { useMemo } from 'react'; import { useAlertPrevalenceFromProcessTree } from '../../../common/containers/alerts/use_alert_prevalence_from_process_tree'; import { isActiveTimeline } from '../../../helpers'; export interface UseFetchRelatedAlertsByAncestryParams { /** - * An array of field objects with category and value + * Value of the kibana.alert.ancestors.id field */ - dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] | null; + documentId: string; + /** + * Values of the kibana.alert.rule.parameters.index field + */ + indices: string[]; /** * Maintain backwards compatibility // TODO remove when possible */ @@ -45,33 +47,16 @@ export interface UseFetchRelatedAlertsByAncestryResult { * This uses the kibana.alert.ancestors.id and kibana.alert.rule.parameters.index fields. */ export const useFetchRelatedAlertsByAncestry = ({ - dataFormattedForFieldBrowser, + documentId, + indices, scopeId, }: UseFetchRelatedAlertsByAncestryParams): UseFetchRelatedAlertsByAncestryResult => { - const documentId = useMemo(() => { - const originalDocumentId = find( - { category: 'kibana', field: 'kibana.alert.ancestors.id' }, - dataFormattedForFieldBrowser - ); - const { values } = originalDocumentId ?? { values: [] }; - return Array.isArray(values) ? values[0] : ''; - }, [dataFormattedForFieldBrowser]); - - const { values: indices } = useMemo( - () => - find( - { category: 'kibana', field: 'kibana.alert.rule.parameters.index' }, - dataFormattedForFieldBrowser - ) || { values: [] }, - [dataFormattedForFieldBrowser] - ); - - const isActiveTimelines = isActiveTimeline(scopeId ?? ''); + const isActiveTimelines = isActiveTimeline(scopeId); const { loading, error, alertIds } = useAlertPrevalenceFromProcessTree({ isActiveTimeline: isActiveTimelines, documentId, - indices: indices || [], + indices, }); return useMemo( diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_same_source_event.test.tsx b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_same_source_event.test.tsx index cdac222d114cc..f4f6bb894eba0 100644 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_same_source_event.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_same_source_event.test.tsx @@ -7,7 +7,6 @@ import type { RenderHookResult } from '@testing-library/react-hooks'; import { renderHook } from '@testing-library/react-hooks'; -import { mockDataFormattedForFieldBrowser } from '../mocks/mock_context'; import type { UseFetchRelatedAlertsBySameSourceEventParams, UseFetchRelatedAlertsBySameSourceEventResult, @@ -17,7 +16,7 @@ import { useAlertPrevalence } from '../../../common/containers/alerts/use_alert_ jest.mock('../../../common/containers/alerts/use_alert_prevalence'); -const dataFormattedForFieldBrowser = mockDataFormattedForFieldBrowser; +const originalEventId = 'originalEventId'; const scopeId = 'scopeId'; describe('useFetchRelatedAlertsBySameSourceEvent', () => { @@ -34,7 +33,7 @@ describe('useFetchRelatedAlertsBySameSourceEvent', () => { count: 0, }); hookResult = renderHook(() => - useFetchRelatedAlertsBySameSourceEvent({ dataFormattedForFieldBrowser, scopeId }) + useFetchRelatedAlertsBySameSourceEvent({ originalEventId, scopeId }) ); expect(hookResult.result.current.loading).toEqual(true); @@ -51,7 +50,7 @@ describe('useFetchRelatedAlertsBySameSourceEvent', () => { count: 0, }); hookResult = renderHook(() => - useFetchRelatedAlertsBySameSourceEvent({ dataFormattedForFieldBrowser, scopeId }) + useFetchRelatedAlertsBySameSourceEvent({ originalEventId, scopeId }) ); expect(hookResult.result.current.loading).toEqual(false); @@ -68,7 +67,7 @@ describe('useFetchRelatedAlertsBySameSourceEvent', () => { count: 2, }); hookResult = renderHook(() => - useFetchRelatedAlertsBySameSourceEvent({ dataFormattedForFieldBrowser, scopeId }) + useFetchRelatedAlertsBySameSourceEvent({ originalEventId, scopeId }) ); expect(hookResult.result.current.loading).toEqual(false); diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_same_source_event.ts b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_same_source_event.ts index 764e85f21b1b0..7e3fde3796c94 100644 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_same_source_event.ts +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_same_source_event.ts @@ -5,17 +5,16 @@ * 2.0. */ -import type { TimelineEventsDetailsItem } from '@kbn/timelines-plugin/common'; -import { find } from 'lodash/fp'; import { useMemo } from 'react'; +import { ORIGINAL_EVENT_ID } from '../constants/field_names'; import { useAlertPrevalence } from '../../../common/containers/alerts/use_alert_prevalence'; import { isActiveTimeline } from '../../../helpers'; export interface UseFetchRelatedAlertsBySameSourceEventParams { /** - * An array of field objects with category and value + * Value of the kibana.alert.original_event.id field */ - dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] | null; + originalEventId: string; /** * Maintain backwards compatibility // TODO remove when possible */ @@ -44,21 +43,12 @@ export interface UseFetchRelatedAlertsBySameSourceEventResult { * Returns the number of alerts for the same source event (and the loading, error statuses as well as the alerts count) */ export const useFetchRelatedAlertsBySameSourceEvent = ({ - dataFormattedForFieldBrowser, + originalEventId, scopeId, }: UseFetchRelatedAlertsBySameSourceEventParams): UseFetchRelatedAlertsBySameSourceEventResult => { - const { field, values } = useMemo( - () => - find( - { category: 'kibana', field: 'kibana.alert.original_event.id' }, - dataFormattedForFieldBrowser - ) || { field: '', values: [] }, - [dataFormattedForFieldBrowser] - ); - const { loading, error, count, alertIds } = useAlertPrevalence({ - field, - value: values, + field: ORIGINAL_EVENT_ID, + value: originalEventId, isActiveTimelines: isActiveTimeline(scopeId), signalIndexName: null, includeAlertIds: true, diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_session.test.tsx b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_session.test.tsx index d326453121405..dfbe47a258277 100644 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_session.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_session.test.tsx @@ -13,12 +13,11 @@ import type { UseFetchRelatedAlertsBySessionResult, } from './use_fetch_related_alerts_by_session'; import { useFetchRelatedAlertsBySession } from './use_fetch_related_alerts_by_session'; -import { mockDataFormattedForFieldBrowser } from '../mocks/mock_context'; import { useAlertPrevalence } from '../../../common/containers/alerts/use_alert_prevalence'; jest.mock('../../../common/containers/alerts/use_alert_prevalence'); -const dataFormattedForFieldBrowser = mockDataFormattedForFieldBrowser; +const entityId = 'entityId'; const scopeId = 'scopeId'; describe('useFetchRelatedAlertsBySession', () => { @@ -34,9 +33,7 @@ describe('useFetchRelatedAlertsBySession', () => { alertIds: [], count: 0, }); - hookResult = renderHook(() => - useFetchRelatedAlertsBySession({ dataFormattedForFieldBrowser, scopeId }) - ); + hookResult = renderHook(() => useFetchRelatedAlertsBySession({ entityId, scopeId })); expect(hookResult.result.current.loading).toEqual(true); expect(hookResult.result.current.error).toEqual(false); @@ -51,9 +48,7 @@ describe('useFetchRelatedAlertsBySession', () => { alertIds: [], count: 0, }); - hookResult = renderHook(() => - useFetchRelatedAlertsBySession({ dataFormattedForFieldBrowser, scopeId }) - ); + hookResult = renderHook(() => useFetchRelatedAlertsBySession({ entityId, scopeId })); expect(hookResult.result.current.loading).toEqual(false); expect(hookResult.result.current.error).toEqual(true); @@ -68,9 +63,7 @@ describe('useFetchRelatedAlertsBySession', () => { alertIds: ['1', '2'], count: 2, }); - hookResult = renderHook(() => - useFetchRelatedAlertsBySession({ dataFormattedForFieldBrowser, scopeId }) - ); + hookResult = renderHook(() => useFetchRelatedAlertsBySession({ entityId, scopeId })); expect(hookResult.result.current.loading).toEqual(false); expect(hookResult.result.current.error).toEqual(false); diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_session.ts b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_session.ts index 2c1104eadddc9..1eca3d8d51368 100644 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_session.ts +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_related_alerts_by_session.ts @@ -5,17 +5,16 @@ * 2.0. */ -import type { TimelineEventsDetailsItem } from '@kbn/timelines-plugin/common'; -import { find } from 'lodash/fp'; import { useMemo } from 'react'; import { useAlertPrevalence } from '../../../common/containers/alerts/use_alert_prevalence'; import { isActiveTimeline } from '../../../helpers'; +import { ENTRY_LEADER_ENTITY_ID } from '../constants/field_names'; export interface UseFetchRelatedAlertsBySessionParams { /** - * An array of field objects with category and value + * Value of the process.entry_leader.entity_id field */ - dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] | null; + entityId: string; /** * Maintain backwards compatibility // TODO remove when possible */ @@ -44,17 +43,12 @@ export interface UseFetchRelatedAlertsBySessionResult { * Returns the number of alerts by session for the document (and the loading, error statuses as well as the alerts count) */ export const useFetchRelatedAlertsBySession = ({ - dataFormattedForFieldBrowser, + entityId, scopeId, }: UseFetchRelatedAlertsBySessionParams): UseFetchRelatedAlertsBySessionResult => { - const processSessionField = find( - { category: 'process', field: 'process.entry_leader.entity_id' }, - dataFormattedForFieldBrowser - ); - const { field, values } = processSessionField || { field: '', values: [] }; const { loading, error, count, alertIds } = useAlertPrevalence({ - field, - value: values, + field: ENTRY_LEADER_ENTITY_ID, + value: entityId, isActiveTimelines: isActiveTimeline(scopeId), signalIndexName: null, includeAlertIds: true, diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_unique_by_field.test.ts b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_unique_by_field.test.ts deleted file mode 100644 index 556ff4ecb6164..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_unique_by_field.test.ts +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { useQuery } from '@tanstack/react-query'; -import type { RenderHookResult } from '@testing-library/react-hooks'; -import { renderHook } from '@testing-library/react-hooks'; -import { useKibana } from '../../../common/lib/kibana'; -import type { - UseFetchUniqueByFieldParams, - UseFetchUniqueByFieldValue, -} from './use_fetch_unique_by_field'; -import { useFetchUniqueByField } from './use_fetch_unique_by_field'; - -jest.mock('@tanstack/react-query'); -jest.mock('../../../common/lib/kibana'); - -const field = 'host.name'; - -describe('useFetchUniqueByField', () => { - let hookResult: RenderHookResult; - (useKibana as jest.Mock).mockReturnValue({ - services: { - data: { search: jest.fn() }, - }, - }); - - it('should return loading true while data is being fetched', () => { - (useQuery as jest.Mock).mockReturnValue({ - isLoading: true, - isError: false, - data: 0, - }); - - hookResult = renderHook(() => useFetchUniqueByField({ field })); - - expect(hookResult.result.current.loading).toBeTruthy(); - expect(hookResult.result.current.error).toBeFalsy(); - expect(hookResult.result.current.count).toBe(0); - }); - - it('should return error true when data fetching has errored out', () => { - (useQuery as jest.Mock).mockReturnValue({ - isLoading: false, - isError: true, - data: 0, - }); - - hookResult = renderHook(() => useFetchUniqueByField({ field })); - - expect(hookResult.result.current.loading).toBeFalsy(); - expect(hookResult.result.current.error).toBeTruthy(); - expect(hookResult.result.current.count).toBe(0); - }); - - it('should return count on success', () => { - (useQuery as jest.Mock).mockReturnValue({ - isLoading: false, - isError: false, - data: 1, - }); - - hookResult = renderHook(() => useFetchUniqueByField({ field })); - - expect(hookResult.result.current.loading).toBeFalsy(); - expect(hookResult.result.current.error).toBeFalsy(); - expect(hookResult.result.current.count).toBe(1); - }); -}); diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_unique_by_field.ts b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_unique_by_field.ts deleted file mode 100644 index 74ef08f7a7f28..0000000000000 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_fetch_unique_by_field.ts +++ /dev/null @@ -1,67 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { useQuery } from '@tanstack/react-query'; -import type { IEsSearchRequest } from '@kbn/data-plugin/common'; -import type { RawAggregatedDataResponse } from '../utils/fetch_data'; -import { AGG_KEY, createFetchData } from '../utils/fetch_data'; -import { useKibana } from '../../../common/lib/kibana'; -import { buildAggregationSearchRequest } from '../utils/build_requests'; - -const QUERY_KEY = 'useFetchUniqueByField'; - -export interface UseFetchUniqueByFieldParams { - /** - * Field to aggregate by - */ - field: string; -} - -export interface UseFetchUniqueByFieldValue { - /** - * Returns true if data is being loaded - */ - loading: boolean; - /** - * Returns true if fetching data has errored out - */ - error: boolean; - /** - * Number of unique document by field found in the environment - */ - count: number; -} - -/** - * Hook to retrieve all unique documents by field in the environment, using ReactQuery. - * - * For example, passing 'host.name' via the field props will return the number of unique hosts in the environment. - */ -export const useFetchUniqueByField = ({ - field, -}: UseFetchUniqueByFieldParams): UseFetchUniqueByFieldValue => { - const { - services: { - data: { search: searchService }, - }, - } = useKibana(); - const searchRequest: IEsSearchRequest = buildAggregationSearchRequest(field, AGG_KEY); - const { data, isLoading, isError } = useQuery( - [QUERY_KEY, field], - () => createFetchData(searchService, searchRequest), - { - select: (res) => res.aggregations[AGG_KEY].buckets.length, - keepPreviousData: true, - } - ); - - return { - loading: isLoading, - error: isError, - count: data || 0, - }; -}; diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_highlighted_fields.test.tsx b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_highlighted_fields.test.tsx new file mode 100644 index 0000000000000..77890fbd96f4b --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_highlighted_fields.test.tsx @@ -0,0 +1,24 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { renderHook } from '@testing-library/react-hooks'; + +import { mockDataFormattedForFieldBrowser } from '../mocks/mock_context'; +import { useHighlightedFields } from './use_highlighted_fields'; + +const dataFormattedForFieldBrowser = mockDataFormattedForFieldBrowser; + +describe('useHighlightedFields', () => { + it('should return data', () => { + const hookResult = renderHook(() => useHighlightedFields({ dataFormattedForFieldBrowser })); + expect(hookResult.result.current).toEqual({ + 'kibana.alert.rule.type': { + values: ['query'], + }, + }); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/right/hooks/use_highlighted_fields.ts b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_highlighted_fields.ts similarity index 75% rename from x-pack/plugins/security_solution/public/flyout/right/hooks/use_highlighted_fields.ts rename to x-pack/plugins/security_solution/public/flyout/shared/hooks/use_highlighted_fields.ts index b9377a6ca85ac..ab7de04a021ce 100644 --- a/x-pack/plugins/security_solution/public/flyout/right/hooks/use_highlighted_fields.ts +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_highlighted_fields.ts @@ -26,19 +26,15 @@ export interface UseHighlightedFieldsParams { } export interface UseHighlightedFieldsResult { - /** - * Highlighted field name (label or if null, falls back to id) - */ - field: string; - description: { + [fieldName: string]: { /** - * Highlighted field name (overrideField or if null, falls back to id) + * If the field has a custom override */ - field: string; + overrideField?: string; /** - * Highlighted field value + * Values for the field */ - values: string[] | null | undefined; + values: string[]; }; } @@ -48,8 +44,8 @@ export interface UseHighlightedFieldsResult { export const useHighlightedFields = ({ dataFormattedForFieldBrowser, investigationFields, -}: UseHighlightedFieldsParams): UseHighlightedFieldsResult[] => { - if (!dataFormattedForFieldBrowser) return []; +}: UseHighlightedFieldsParams): UseHighlightedFieldsResult => { + if (!dataFormattedForFieldBrowser) return {}; const eventCategories = getEventCategoriesFromData(dataFormattedForFieldBrowser); @@ -78,19 +74,26 @@ export const useHighlightedFields = ({ highlightedFieldsOverride: investigationFields ?? [], }); - return tableFields.reduce((acc, field) => { + return tableFields.reduce((acc, field) => { const item = dataFormattedForFieldBrowser.find( (data) => data.field === field.id || (field.legacyId && data.field === field.legacyId) ); - if (!item || isEmpty(item.values)) { + if (!item) { + return acc; + } + + // if there aren't any values we can skip this highlighted field + const fieldValues = item.values; + if (!fieldValues || isEmpty(fieldValues)) { return acc; } - // If we found the data by its legacy id we swap the ids to display the correct one + // if we found the data by its legacy id we swap the ids to display the correct one if (item.field === field.legacyId) { field.id = field.legacyId; } + // if the field is agent.id and the event is not an endpoint event we skip it if ( field.id === 'agent.id' && !isAlertFromEndpointEvent({ data: dataFormattedForFieldBrowser }) @@ -98,15 +101,12 @@ export const useHighlightedFields = ({ return acc; } - return [ + return { ...acc, - { - field: field.label ?? field.id, - description: { - field: field.overrideField ?? field.id, - values: item.values, - }, + [field.id]: { + ...(field.overrideField && { overrideField: field.overrideField }), + values: fieldValues, }, - ]; - }, []); + }; + }, {}); }; diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_investigation_guide.test.ts b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_investigation_guide.test.ts new file mode 100644 index 0000000000000..a60fae257a0b9 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_investigation_guide.test.ts @@ -0,0 +1,59 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import type { RenderHookResult } from '@testing-library/react-hooks'; +import { renderHook } from '@testing-library/react-hooks'; +import type { + UseInvestigationGuideParams, + UseInvestigationGuideResult, +} from './use_investigation_guide'; +import { useBasicDataFromDetailsData } from '../../../timelines/components/side_panel/event_details/helpers'; +import { useRuleWithFallback } from '../../../detection_engine/rule_management/logic/use_rule_with_fallback'; +import { mockDataFormattedForFieldBrowser } from '../mocks/mock_context'; +import { useInvestigationGuide } from './use_investigation_guide'; + +jest.mock('../../../timelines/components/side_panel/event_details/helpers'); +jest.mock('../../../detection_engine/rule_management/logic/use_rule_with_fallback'); + +const dataFormattedForFieldBrowser = mockDataFormattedForFieldBrowser; + +describe('useInvestigationGuide', () => { + let hookResult: RenderHookResult; + + it('should return loading true', () => { + (useBasicDataFromDetailsData as jest.Mock).mockReturnValue({ ruleId: 'ruleId' }); + (useRuleWithFallback as jest.Mock).mockReturnValue({ loading: true }); + + hookResult = renderHook(() => useInvestigationGuide({ dataFormattedForFieldBrowser })); + + expect(hookResult.result.current.loading).toBeTruthy(); + }); + + it('should return error true', () => { + (useBasicDataFromDetailsData as jest.Mock).mockReturnValue({ ruleId: 'ruleId' }); + (useRuleWithFallback as jest.Mock).mockReturnValue({ error: true }); + + hookResult = renderHook(() => useInvestigationGuide({ dataFormattedForFieldBrowser })); + }); + + it('should return basicAlertData and ruleNote', () => { + (useBasicDataFromDetailsData as jest.Mock).mockReturnValue({ ruleId: 'ruleId' }); + (useRuleWithFallback as jest.Mock).mockReturnValue({ + loading: false, + error: false, + basicAlertsData: { ruleId: 'ruleId' }, + rule: { note: 'test note' }, + }); + + hookResult = renderHook(() => useInvestigationGuide({ dataFormattedForFieldBrowser })); + + expect(hookResult.result.current.loading).toBeFalsy(); + expect(hookResult.result.current.error).toBeFalsy(); + expect(hookResult.result.current.basicAlertData).toEqual({ ruleId: 'ruleId' }); + expect(hookResult.result.current.ruleNote).toEqual('test note'); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_investigation_guide.ts b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_investigation_guide.ts new file mode 100644 index 0000000000000..66d2183ad64fe --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_investigation_guide.ts @@ -0,0 +1,54 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import type { TimelineEventsDetailsItem } from '@kbn/timelines-plugin/common'; +import type { GetBasicDataFromDetailsData } from '../../../timelines/components/side_panel/event_details/helpers'; +import { useBasicDataFromDetailsData } from '../../../timelines/components/side_panel/event_details/helpers'; +import { useRuleWithFallback } from '../../../detection_engine/rule_management/logic/use_rule_with_fallback'; + +export interface UseInvestigationGuideParams { + /** + * An array of field objects with category and value + */ + dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] | null; +} + +export interface UseInvestigationGuideResult { + /** + * True if investigation guide data is loading + */ + loading: boolean; + /** + * True if investigation guide data is in error state + */ + error: unknown; + /** + * + */ + basicAlertData: GetBasicDataFromDetailsData; + /** + * + */ + ruleNote: string | undefined; +} + +/** + * Checks if the investigation guide data for a given rule is available to render + */ +export const useInvestigationGuide = ({ + dataFormattedForFieldBrowser, +}: UseInvestigationGuideParams): UseInvestigationGuideResult => { + const basicAlertData = useBasicDataFromDetailsData(dataFormattedForFieldBrowser); + const { loading, error, rule: maybeRule } = useRuleWithFallback(basicAlertData.ruleId); + + return { + loading, + error, + basicAlertData, + ruleNote: maybeRule?.note, + }; +}; diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_prevalence.test.tsx b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_prevalence.test.tsx new file mode 100644 index 0000000000000..5d7bccd74b424 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_prevalence.test.tsx @@ -0,0 +1,135 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { renderHook } from '@testing-library/react-hooks'; + +import { usePrevalence } from './use_prevalence'; +import { mockDataFormattedForFieldBrowser } from '../mocks/mock_context'; +import { useHighlightedFields } from './use_highlighted_fields'; +import { + FIELD_NAMES_AGG_KEY, + HOSTS_AGG_KEY, + useFetchPrevalence, + USERS_AGG_KEY, +} from './use_fetch_prevalence'; + +jest.mock('./use_highlighted_fields'); +jest.mock('./use_fetch_prevalence'); + +const interval = { + from: 'now-30d', + to: 'now', +}; +const dataFormattedForFieldBrowser = mockDataFormattedForFieldBrowser; +const investigationFields = ['host.name', 'user.name']; + +describe('usePrevalence', () => { + it('should return loading true', () => { + (useHighlightedFields as jest.Mock).mockReturnValue({ + 'host.name': { + values: ['host-1'], + }, + }); + (useFetchPrevalence as jest.Mock).mockReturnValue({ + loading: true, + error: false, + data: undefined, + }); + + const hookResult = renderHook(() => + usePrevalence({ interval, dataFormattedForFieldBrowser, investigationFields }) + ); + + expect(hookResult.result.current.loading).toEqual(true); + expect(hookResult.result.current.error).toEqual(false); + expect(hookResult.result.current.data).toEqual([]); + }); + + it('should return error true', () => { + (useHighlightedFields as jest.Mock).mockReturnValue({ + 'host.name': { + values: ['host-1'], + }, + }); + (useFetchPrevalence as jest.Mock).mockReturnValue({ + loading: false, + error: true, + data: undefined, + }); + + const hookResult = renderHook(() => + usePrevalence({ interval, dataFormattedForFieldBrowser, investigationFields }) + ); + + expect(hookResult.result.current.loading).toEqual(false); + expect(hookResult.result.current.error).toEqual(true); + expect(hookResult.result.current.data).toEqual([]); + }); + + it('should return data', () => { + (useHighlightedFields as jest.Mock).mockReturnValue({ + 'host.name': { + values: ['host-1'], + }, + }); + (useFetchPrevalence as jest.Mock).mockReturnValue({ + loading: false, + error: false, + data: { + aggregations: { + [FIELD_NAMES_AGG_KEY]: { + buckets: { + 'host.name': { + eventKind: { + buckets: [ + { + key: 'signal', + doc_count: 1, + }, + { + key: 'event', + doc_count: 1, + }, + ], + }, + hostName: { + value: 10, + }, + userName: { + value: 20, + }, + }, + }, + }, + [HOSTS_AGG_KEY]: { + value: 100, + }, + [USERS_AGG_KEY]: { + value: 200, + }, + }, + }, + }); + + const hookResult = renderHook(() => + usePrevalence({ interval, dataFormattedForFieldBrowser, investigationFields }) + ); + + expect(hookResult.result.current.loading).toEqual(false); + expect(hookResult.result.current.error).toEqual(false); + expect(hookResult.result.current.data).toEqual([ + { + field: 'host.name', + value: 'host-1', + alertCount: 1, + docCount: 1, + hostPrevalence: 0.1, + userPrevalence: 0.1, + }, + ]); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_prevalence.ts b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_prevalence.ts new file mode 100644 index 0000000000000..a7b110f92e740 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_prevalence.ts @@ -0,0 +1,148 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import type { TimelineEventsDetailsItem } from '@kbn/timelines-plugin/common'; +import { isArray } from 'lodash/fp'; +import { useMemo } from 'react'; +import { useHighlightedFields } from './use_highlighted_fields'; +import { convertHighlightedFieldsToPrevalenceFilters } from '../utils/highlighted_fields_helpers'; +import type { AggregationValue } from './use_fetch_prevalence'; +import { + EVENT_KIND_AGG_KEY, + FIELD_NAMES_AGG_KEY, + HOST_NAME_AGG_KEY, + HOSTS_AGG_KEY, + useFetchPrevalence, + USER_NAME_AGG_KEY, + USERS_AGG_KEY, +} from './use_fetch_prevalence'; +import { EventKind } from '../constants/event_kinds'; + +export interface PrevalenceData { + field: string; + value: string; + alertCount: number; + docCount: number; + hostPrevalence: number; + userPrevalence: number; +} +export interface UsePrevalenceParams { + /** + * The from and to values for the query + */ + interval: { from: string; to: string }; + /** + * An array of field objects with category and value + */ + dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] | null; + /** + * User defined fields to highlight (defined on the rule) + */ + investigationFields?: string[]; +} + +export interface UsePrevalenceResult { + /** + * Returns true if data is being loaded + */ + loading: boolean; + /** + * Returns true if fetching data has errored out + */ + error: boolean; + /** + * Returns the prevalence data formatted for the EuiInMemoryTable component + */ + data: PrevalenceData[]; +} + +/** + * Hook to fetch the prevalence data, then prepares the data to be consumed by the EuiInMemoryTable component + * in the PrevalenceDetails component + */ +export const usePrevalence = ({ + interval, + dataFormattedForFieldBrowser, + investigationFields, +}: UsePrevalenceParams): UsePrevalenceResult => { + const highlightedFields = useHighlightedFields({ + dataFormattedForFieldBrowser, + investigationFields, + }); + const highlightedFieldsFilters = useMemo( + () => convertHighlightedFieldsToPrevalenceFilters(highlightedFields), + [highlightedFields] + ); + const { data, loading, error } = useFetchPrevalence({ highlightedFieldsFilters, interval }); + + const items: PrevalenceData[] = []; + + if (data && data.aggregations) { + // total number of unique hosts in the environment + const uniqueHostsInEnvironment = data.aggregations[HOSTS_AGG_KEY].value; + + // total number of unique users in the environment + const uniqueUsersInEnvironment = data.aggregations[USERS_AGG_KEY].value; + + const fieldNames = Object.keys(data.aggregations[FIELD_NAMES_AGG_KEY].buckets); + + fieldNames.forEach((fieldName: string) => { + const fieldValue = highlightedFields[fieldName].values; + + // retrieves the number of signals for the current field/value pair + const alertCount = + data.aggregations[FIELD_NAMES_AGG_KEY].buckets[fieldName][EVENT_KIND_AGG_KEY].buckets.find( + (aggregationValue: AggregationValue) => aggregationValue.key === EventKind.signal + )?.doc_count || 0; + + // calculate the number of documents (non-signal) for the current field/value pair + let docCount = 0; + data.aggregations[FIELD_NAMES_AGG_KEY].buckets[fieldName][EVENT_KIND_AGG_KEY].buckets.reduce( + (acc, curr) => { + if (curr.key !== EventKind.signal) { + docCount += curr.doc_count; + } + return acc; + }, + docCount + ); + + // number of unique hosts in which the current field/value pair is present + const uniqueHostsForCurrentFieldValuePair = + data.aggregations[FIELD_NAMES_AGG_KEY].buckets[fieldName][HOST_NAME_AGG_KEY].value; + + // number of unique users in which the current field/value pair is present + const uniqueUsersForCurrentFieldValuePair = + data.aggregations[FIELD_NAMES_AGG_KEY].buckets[fieldName][USER_NAME_AGG_KEY].value; + + // calculate host prevalence + const hostPrevalence = uniqueHostsInEnvironment + ? uniqueHostsForCurrentFieldValuePair / uniqueHostsInEnvironment + : 0; + + // calculate user prevalence + const userPrevalence = uniqueUsersInEnvironment + ? uniqueUsersForCurrentFieldValuePair / uniqueUsersInEnvironment + : 0; + + items.push({ + field: fieldName, + value: isArray(fieldValue) ? fieldValue[0] : fieldValue, + alertCount, + docCount, + hostPrevalence, + userPrevalence, + }); + }); + } + + return { + loading, + error, + data: items, + }; +}; diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_ancestry.test.tsx b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_ancestry.test.tsx index 812037d1ce4e8..7500d7c041708 100644 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_ancestry.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_ancestry.test.tsx @@ -8,12 +8,14 @@ import type { RenderHookResult } from '@testing-library/react-hooks'; import { renderHook } from '@testing-library/react-hooks'; import type { EcsSecurityExtension as Ecs } from '@kbn/securitysolution-ecs'; -import type { UseShowRelatedAlertsByAncestryParams } from './use_show_related_alerts_by_ancestry'; +import type { + UseShowRelatedAlertsByAncestryParams, + UseShowRelatedAlertsByAncestryResult, +} from './use_show_related_alerts_by_ancestry'; import { useShowRelatedAlertsByAncestry } from './use_show_related_alerts_by_ancestry'; import { useIsExperimentalFeatureEnabled } from '../../../common/hooks/use_experimental_features'; -import type { TimelineEventsDetailsItem } from '@kbn/timelines-plugin/common'; import { licenseService } from '../../../common/hooks/use_license'; -import { mockDataAsNestedObject } from '../mocks/mock_context'; +import { mockDataAsNestedObject, mockDataFormattedForFieldBrowser } from '../mocks/mock_context'; jest.mock('../../../common/hooks/use_experimental_features'); jest.mock('../../../common/hooks/use_license', () => { @@ -30,157 +32,83 @@ jest.mock('../../../common/hooks/use_license', () => { const licenseServiceMock = licenseService as jest.Mocked; const dataAsNestedObject = mockDataAsNestedObject as unknown as Ecs; +const dataFormattedForFieldBrowser = mockDataFormattedForFieldBrowser; -const agentType = { - category: 'agent', - field: 'agent.type', - isObjectArray: false, - originalValue: ['endpoint'], - values: ['endpoint'], -}; -const eventModule = { - category: 'event', - field: 'event.module', - isObjectArray: false, - originalValue: ['abc'], - values: ['abc'], -}; -const processEntityId = { - category: 'process', - field: 'process.entity_id', - isObjectArray: false, - originalValue: ['abc'], - values: ['abc'], -}; -const alertAncestorId = { - category: 'kibana', - field: 'kibana.alert.ancestors.id', - isObjectArray: false, - originalValue: ['abc'], - values: ['abc'], -}; -const ruleParameterIndex = { - category: 'kibana', - field: 'kibana.alert.rule.parameters.index', - isObjectArray: false, - originalValue: ['abc'], - values: ['abc'], -}; +describe('useShowRelatedAlertsByAncestry', () => { + let hookResult: RenderHookResult< + UseShowRelatedAlertsByAncestryParams, + UseShowRelatedAlertsByAncestryResult + >; -describe('useShowRelatedAlertsBySameSourceEvent', () => { - let hookResult: RenderHookResult; - - it('should return false if dataFormattedForFieldBrowser is null', () => { + it('should return false if getFieldsData returns null', () => { (useIsExperimentalFeatureEnabled as jest.Mock).mockReturnValue(true); licenseServiceMock.isPlatinumPlus.mockReturnValue(true); - const dataFormattedForFieldBrowser = null; + const getFieldsData = () => null; hookResult = renderHook(() => - useShowRelatedAlertsByAncestry({ dataFormattedForFieldBrowser, dataAsNestedObject }) + useShowRelatedAlertsByAncestry({ + getFieldsData, + dataAsNestedObject, + dataFormattedForFieldBrowser, + }) ); - expect(hookResult.result.current).toEqual(false); + expect(hookResult.result.current).toEqual({ show: false, indices: ['rule-parameters-index'] }); }); it(`should return false if feature isn't enabled`, () => { - (useIsExperimentalFeatureEnabled as jest.Mock).mockReturnValue(true); - licenseServiceMock.isPlatinumPlus.mockReturnValue(false); - const dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] = [ - agentType, - eventModule, - processEntityId, - alertAncestorId, - ruleParameterIndex, - ]; - hookResult = renderHook(() => - useShowRelatedAlertsByAncestry({ dataFormattedForFieldBrowser, dataAsNestedObject }) - ); - - expect(hookResult.result.current).toEqual(false); - }); - - it('should return false if dataFormattedForFieldBrowser is missing kibana.alert.ancestors.id field', () => { - (useIsExperimentalFeatureEnabled as jest.Mock).mockReturnValue(true); + (useIsExperimentalFeatureEnabled as jest.Mock).mockReturnValue(false); licenseServiceMock.isPlatinumPlus.mockReturnValue(true); - const dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] = [ - agentType, - eventModule, - processEntityId, - ruleParameterIndex, - ]; + const getFieldsData = () => 'value'; hookResult = renderHook(() => - useShowRelatedAlertsByAncestry({ dataFormattedForFieldBrowser, dataAsNestedObject }) + useShowRelatedAlertsByAncestry({ + getFieldsData, + dataAsNestedObject, + dataFormattedForFieldBrowser, + }) ); - expect(hookResult.result.current).toEqual(false); + expect(hookResult.result.current).toEqual({ + show: false, + documentId: 'value', + indices: ['rule-parameters-index'], + }); }); - it('should return false if dataFormattedForFieldBrowser is missing kibana.alert.rule.parameters.index field', () => { + it(`should return false if license is lower than platinum`, () => { (useIsExperimentalFeatureEnabled as jest.Mock).mockReturnValue(true); - licenseServiceMock.isPlatinumPlus.mockReturnValue(true); - const dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] = [ - agentType, - eventModule, - processEntityId, - alertAncestorId, - ]; - hookResult = renderHook(() => - useShowRelatedAlertsByAncestry({ dataFormattedForFieldBrowser, dataAsNestedObject }) - ); - - expect(hookResult.result.current).toEqual(false); - }); - - it('should return false if dataFormattedForFieldBrowser is missing process.entity_id field', () => { - (useIsExperimentalFeatureEnabled as jest.Mock).mockReturnValue(true); - licenseServiceMock.isPlatinumPlus.mockReturnValue(true); - const dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] = [ - agentType, - eventModule, - alertAncestorId, - ruleParameterIndex, - ]; - hookResult = renderHook(() => - useShowRelatedAlertsByAncestry({ dataFormattedForFieldBrowser, dataAsNestedObject }) - ); - - expect(hookResult.result.current).toEqual(false); - }); - - it('should return false if dataFormattedForFieldBrowser is missing event.module field', () => { - (useIsExperimentalFeatureEnabled as jest.Mock).mockReturnValue(true); - licenseServiceMock.isPlatinumPlus.mockReturnValue(true); - const dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] = [ - { - category: 'agent', - field: 'agent.type', - isObjectArray: false, - originalValue: ['winlogbeat'], - values: ['winlogbeat'], - }, - processEntityId, - alertAncestorId, - ruleParameterIndex, - ]; + licenseServiceMock.isPlatinumPlus.mockReturnValue(false); + const getFieldsData = () => 'value'; hookResult = renderHook(() => - useShowRelatedAlertsByAncestry({ dataFormattedForFieldBrowser, dataAsNestedObject }) + useShowRelatedAlertsByAncestry({ + getFieldsData, + dataAsNestedObject, + dataFormattedForFieldBrowser, + }) ); - expect(hookResult.result.current).toEqual(false); + expect(hookResult.result.current).toEqual({ + show: false, + documentId: 'value', + indices: ['rule-parameters-index'], + }); }); - it('should return false if dataFormattedForFieldBrowser is missing agent.type field', () => { + it('should return true if getFieldsData has the correct fields', () => { (useIsExperimentalFeatureEnabled as jest.Mock).mockReturnValue(true); licenseServiceMock.isPlatinumPlus.mockReturnValue(true); - const dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] = [ - eventModule, - processEntityId, - alertAncestorId, - ruleParameterIndex, - ]; + const getFieldsData = () => 'value'; hookResult = renderHook(() => - useShowRelatedAlertsByAncestry({ dataFormattedForFieldBrowser, dataAsNestedObject }) + useShowRelatedAlertsByAncestry({ + getFieldsData, + dataAsNestedObject, + dataFormattedForFieldBrowser, + }) ); - expect(hookResult.result.current).toEqual(false); + expect(hookResult.result.current).toEqual({ + show: true, + documentId: 'value', + indices: ['rule-parameters-index'], + }); }); }); diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_ancestry.ts b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_ancestry.ts index 2904629303e31..85fde8e6732b3 100644 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_ancestry.ts +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_ancestry.ts @@ -6,30 +6,54 @@ */ import type { EcsSecurityExtension as Ecs } from '@kbn/securitysolution-ecs'; -import type { TimelineEventsDetailsItem } from '@kbn/timelines-plugin/common'; +import { useMemo } from 'react'; import { find } from 'lodash/fp'; +import type { TimelineEventsDetailsItem } from '@kbn/timelines-plugin/common'; +import type { GetFieldsData } from '../../../common/hooks/use_get_fields_data'; import { isInvestigateInResolverActionEnabled } from '../../../detections/components/alerts_table/timeline_actions/investigate_in_resolver'; import { useIsExperimentalFeatureEnabled } from '../../../common/hooks/use_experimental_features'; import { useLicense } from '../../../common/hooks/use_license'; +import { getField } from '../utils'; +import { ANCESTOR_ID } from '../constants/field_names'; export interface UseShowRelatedAlertsByAncestryParams { /** - * An array of field objects with category and value + * Retrieves searchHit values for the provided field */ - dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] | null; + getFieldsData: GetFieldsData; /** * An object with top level fields from the ECS object */ dataAsNestedObject: Ecs | null; + /** + * An array of field objects with category and value + */ + dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] | null; +} + +export interface UseShowRelatedAlertsByAncestryResult { + /** + * Returns true if the user has at least platinum privilege, and if the document has ancestry data + */ + show: boolean; + /** + * Value of the kibana.alert.ancestors.id field + */ + documentId?: string; + /** + * Values of the kibana.alert.rule.parameters.index field + */ + indices?: string[]; } /** * Returns true if the user has at least platinum privilege, and if the document has ancestry data */ export const useShowRelatedAlertsByAncestry = ({ - dataFormattedForFieldBrowser, + getFieldsData, dataAsNestedObject, -}: UseShowRelatedAlertsByAncestryParams): boolean => { + dataFormattedForFieldBrowser, +}: UseShowRelatedAlertsByAncestryParams): UseShowRelatedAlertsByAncestryResult => { const isRelatedAlertsByProcessAncestryEnabled = useIsExperimentalFeatureEnabled( 'insightsRelatedAlertsByProcessAncestry' ); @@ -37,21 +61,31 @@ export const useShowRelatedAlertsByAncestry = ({ dataAsNestedObject || undefined ); - const originalDocumentId = find( - { category: 'kibana', field: 'kibana.alert.ancestors.id' }, - dataFormattedForFieldBrowser - ); - const originalDocumentIndex = find( - { category: 'kibana', field: 'kibana.alert.rule.parameters.index' }, - dataFormattedForFieldBrowser + const originalDocumentId = getField(getFieldsData(ANCESTOR_ID)); + + // can't use getFieldsData here as the kibana.alert.rule.parameters is different and can be nested + const originalDocumentIndex = useMemo( + () => + find( + { category: 'kibana', field: 'kibana.alert.rule.parameters.index' }, + dataFormattedForFieldBrowser + ), + [dataFormattedForFieldBrowser] ); - const canShowAncestryInsight = + const hasAtLeastPlatinum = useLicense().isPlatinumPlus(); + + const show = isRelatedAlertsByProcessAncestryEnabled && hasProcessEntityInfo && - originalDocumentId && - originalDocumentIndex; - const hasAtLeastPlatinum = useLicense().isPlatinumPlus(); + originalDocumentId != null && + originalDocumentIndex != null && + hasAtLeastPlatinum; - return canShowAncestryInsight != null && canShowAncestryInsight && hasAtLeastPlatinum; + return { + show, + ...(originalDocumentId && { documentId: originalDocumentId }), + ...(originalDocumentIndex && + originalDocumentIndex.values && { indices: originalDocumentIndex.values }), + }; }; diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_same_source_event.test.tsx b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_same_source_event.test.tsx index 5b47c7579ec12..01a014409264c 100644 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_same_source_event.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_same_source_event.test.tsx @@ -8,45 +8,29 @@ import type { RenderHookResult } from '@testing-library/react-hooks'; import { renderHook } from '@testing-library/react-hooks'; -import type { ShowRelatedAlertsBySameSourceEventParams } from './use_show_related_alerts_by_same_source_event'; +import type { + ShowRelatedAlertsBySameSourceEventParams, + ShowRelatedAlertsBySameSourceEventResult, +} from './use_show_related_alerts_by_same_source_event'; import { useShowRelatedAlertsBySameSourceEvent } from './use_show_related_alerts_by_same_source_event'; -import type { TimelineEventsDetailsItem } from '@kbn/timelines-plugin/common'; describe('useShowRelatedAlertsBySameSourceEvent', () => { - let hookResult: RenderHookResult; + let hookResult: RenderHookResult< + ShowRelatedAlertsBySameSourceEventParams, + ShowRelatedAlertsBySameSourceEventResult + >; - it('should return false if dataFormattedForFieldBrowser is null', () => { - const dataFormattedForFieldBrowser = null; - hookResult = renderHook(() => - useShowRelatedAlertsBySameSourceEvent({ dataFormattedForFieldBrowser }) - ); + it('should return false if getFieldsData returns null', () => { + const getFieldsData = () => null; + hookResult = renderHook(() => useShowRelatedAlertsBySameSourceEvent({ getFieldsData })); - expect(hookResult.result.current).toEqual(false); + expect(hookResult.result.current).toEqual({ show: false }); }); - it('should return false if dataFormattedForFieldBrowser is missing the correct field', () => { - const dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] = []; - hookResult = renderHook(() => - useShowRelatedAlertsBySameSourceEvent({ dataFormattedForFieldBrowser }) - ); + it('should return true if getFieldsData has the correct field', () => { + const getFieldsData = () => 'original_event'; + hookResult = renderHook(() => useShowRelatedAlertsBySameSourceEvent({ getFieldsData })); - expect(hookResult.result.current).toEqual(false); - }); - - it('should return true if dataFormattedForFieldBrowser has the correct field', () => { - const dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] = [ - { - category: 'kibana', - field: 'kibana.alert.original_event.id', - isObjectArray: false, - originalValue: ['abc'], - values: ['abc'], - }, - ]; - hookResult = renderHook(() => - useShowRelatedAlertsBySameSourceEvent({ dataFormattedForFieldBrowser }) - ); - - expect(hookResult.result.current).toEqual(true); + expect(hookResult.result.current).toEqual({ show: true, originalEventId: 'original_event' }); }); }); diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_same_source_event.ts b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_same_source_event.ts index c02395db551d8..0de1af516aad4 100644 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_same_source_event.ts +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_same_source_event.ts @@ -5,27 +5,37 @@ * 2.0. */ -import { find } from 'lodash/fp'; -import type { TimelineEventsDetailsItem } from '@kbn/timelines-plugin/common'; -import { hasData } from '../../../common/components/event_details/insights/helpers'; +import type { GetFieldsData } from '../../../common/hooks/use_get_fields_data'; +import { ORIGINAL_EVENT_ID } from '../constants/field_names'; +import { getField } from '../utils'; export interface ShowRelatedAlertsBySameSourceEventParams { /** - * An array of field objects with category and value + * Retrieves searchHit values for the provided field */ - dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] | null; + getFieldsData: GetFieldsData; +} + +export interface ShowRelatedAlertsBySameSourceEventResult { + /** + * Returns true if the document has kibana.alert.original_event.id field with values + */ + show: boolean; + /** + * Value of the kibana.alert.original_event.id field + */ + originalEventId?: string; } /** * Returns true if document has kibana.alert.original.event.id field with values */ export const useShowRelatedAlertsBySameSourceEvent = ({ - dataFormattedForFieldBrowser, -}: ShowRelatedAlertsBySameSourceEventParams): boolean => { - const sourceEventField = find( - { category: 'kibana', field: 'kibana.alert.original_event.id' }, - dataFormattedForFieldBrowser - ); - - return hasData(sourceEventField); + getFieldsData, +}: ShowRelatedAlertsBySameSourceEventParams): ShowRelatedAlertsBySameSourceEventResult => { + const originalEventId = getField(getFieldsData(ORIGINAL_EVENT_ID)); + return { + show: originalEventId != null, + ...(originalEventId && { originalEventId }), + }; }; diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_session.test.tsx b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_session.test.tsx index 740f52a59a49e..32595a4c27c6d 100644 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_session.test.tsx +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_session.test.tsx @@ -8,39 +8,29 @@ import type { RenderHookResult } from '@testing-library/react-hooks'; import { renderHook } from '@testing-library/react-hooks'; -import type { UseShowRelatedAlertsBySessionParams } from './use_show_related_alerts_by_session'; +import type { + UseShowRelatedAlertsBySessionParams, + UseShowRelatedAlertsBySessionResult, +} from './use_show_related_alerts_by_session'; import { useShowRelatedAlertsBySession } from './use_show_related_alerts_by_session'; -import type { TimelineEventsDetailsItem } from '@kbn/timelines-plugin/common'; describe('useShowRelatedAlertsBySession', () => { - let hookResult: RenderHookResult; + let hookResult: RenderHookResult< + UseShowRelatedAlertsBySessionParams, + UseShowRelatedAlertsBySessionResult + >; - it('should return false if dataFormattedForFieldBrowser is null', () => { - const dataFormattedForFieldBrowser = null; - hookResult = renderHook(() => useShowRelatedAlertsBySession({ dataFormattedForFieldBrowser })); + it('should return false if getFieldsData returns null', () => { + const getFieldsData = () => null; + hookResult = renderHook(() => useShowRelatedAlertsBySession({ getFieldsData })); - expect(hookResult.result.current).toEqual(false); + expect(hookResult.result.current).toEqual({ show: false }); }); - it('should return false if dataFormattedForFieldBrowser is missing the correct field', () => { - const dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] = []; - hookResult = renderHook(() => useShowRelatedAlertsBySession({ dataFormattedForFieldBrowser })); + it('should return true if getFieldsData has the correct field', () => { + const getFieldsData = () => 'entity_id'; + hookResult = renderHook(() => useShowRelatedAlertsBySession({ getFieldsData })); - expect(hookResult.result.current).toEqual(false); - }); - - it('should return true if dataFormattedForFieldBrowser has the correct field', () => { - const dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] = [ - { - category: 'process', - field: 'process.entry_leader.entity_id', - isObjectArray: false, - originalValue: ['abc'], - values: ['abc'], - }, - ]; - hookResult = renderHook(() => useShowRelatedAlertsBySession({ dataFormattedForFieldBrowser })); - - expect(hookResult.result.current).toEqual(true); + expect(hookResult.result.current).toEqual({ show: true, entityId: 'entity_id' }); }); }); diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_session.ts b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_session.ts index cec04767f3885..04831584a64a7 100644 --- a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_session.ts +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_related_alerts_by_session.ts @@ -5,27 +5,37 @@ * 2.0. */ -import { find } from 'lodash/fp'; -import type { TimelineEventsDetailsItem } from '@kbn/timelines-plugin/common'; -import { hasData } from '../../../common/components/event_details/insights/helpers'; +import { ENTRY_LEADER_ENTITY_ID } from '../constants/field_names'; +import type { GetFieldsData } from '../../../common/hooks/use_get_fields_data'; +import { getField } from '../utils'; export interface UseShowRelatedAlertsBySessionParams { /** - * An array of field objects with category and value + * Retrieves searchHit values for the provided field */ - dataFormattedForFieldBrowser: TimelineEventsDetailsItem[] | null; + getFieldsData: GetFieldsData; +} + +export interface UseShowRelatedAlertsBySessionResult { + /** + * Returns true if the document has process.entry_leader.entity_id field with values + */ + show: boolean; + /** + * Value of the process.entry_leader.entity_id field + */ + entityId?: string; } /** * Returns true if document has process.entry_leader.entity_id field with values */ export const useShowRelatedAlertsBySession = ({ - dataFormattedForFieldBrowser, -}: UseShowRelatedAlertsBySessionParams): boolean => { - const processSessionField = find( - { category: 'process', field: 'process.entry_leader.entity_id' }, - dataFormattedForFieldBrowser - ); - - return hasData(processSessionField); + getFieldsData, +}: UseShowRelatedAlertsBySessionParams): UseShowRelatedAlertsBySessionResult => { + const entityId = getField(getFieldsData(ENTRY_LEADER_ENTITY_ID)); + return { + show: entityId != null, + ...(entityId && { entityId }), + }; }; diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_suppressed_alerts.test.tsx b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_suppressed_alerts.test.tsx new file mode 100644 index 0000000000000..622f37a0997cf --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_suppressed_alerts.test.tsx @@ -0,0 +1,32 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import type { RenderHookResult } from '@testing-library/react-hooks'; +import { renderHook } from '@testing-library/react-hooks'; +import type { + ShowSuppressedAlertsParams, + ShowSuppressedAlertsResult, +} from './use_show_suppressed_alerts'; +import { useShowSuppressedAlerts } from './use_show_suppressed_alerts'; + +describe('useShowSuppressedAlerts', () => { + let hookResult: RenderHookResult; + + it('should return false if getFieldsData returns null', () => { + const getFieldsData = () => null; + hookResult = renderHook(() => useShowSuppressedAlerts({ getFieldsData })); + + expect(hookResult.result.current).toEqual({ show: false, alertSuppressionCount: 0 }); + }); + + it('should return true if getFieldsData has the correct field', () => { + const getFieldsData = () => '2'; + hookResult = renderHook(() => useShowSuppressedAlerts({ getFieldsData })); + + expect(hookResult.result.current).toEqual({ show: true, alertSuppressionCount: 2 }); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_suppressed_alerts.ts b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_suppressed_alerts.ts new file mode 100644 index 0000000000000..22ed0a0af84a7 --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/shared/hooks/use_show_suppressed_alerts.ts @@ -0,0 +1,42 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { ALERT_SUPPRESSION_DOCS_COUNT } from '@kbn/rule-data-utils'; +import type { GetFieldsData } from '../../../common/hooks/use_get_fields_data'; + +export interface ShowSuppressedAlertsParams { + /** + * Retrieves searchHit values for the provided field + */ + getFieldsData: GetFieldsData; +} + +export interface ShowSuppressedAlertsResult { + /** + * Returns true if the document has kibana.alert.original_event.id field with values + */ + show: boolean; + /** + * Number of suppressed alerts + */ + alertSuppressionCount: number; +} + +/** + * Returns true if document has kibana.alert.suppression.docs_count field with values + */ +export const useShowSuppressedAlerts = ({ + getFieldsData, +}: ShowSuppressedAlertsParams): ShowSuppressedAlertsResult => { + const alertSuppressionField = getFieldsData(ALERT_SUPPRESSION_DOCS_COUNT); + const alertSuppressionCount = alertSuppressionField ? parseInt(alertSuppressionField[0], 10) : 0; + + return { + show: Boolean(alertSuppressionField), + alertSuppressionCount, + }; +}; diff --git a/x-pack/plugins/security_solution/public/flyout/shared/mocks/mock_context.ts b/x-pack/plugins/security_solution/public/flyout/shared/mocks/mock_context.ts index 4dec259d00136..8280fb64df927 100644 --- a/x-pack/plugins/security_solution/public/flyout/shared/mocks/mock_context.ts +++ b/x-pack/plugins/security_solution/public/flyout/shared/mocks/mock_context.ts @@ -11,6 +11,9 @@ export const mockDataAsNestedObject = { _id: '123', '@timestamp': ['2023-01-01T01:01:01.000Z'], + agent: { + type: ['endpoint'], + }, event: { category: ['malware'], kind: ['signal'], @@ -28,6 +31,7 @@ export const mockDataAsNestedObject = { }, process: { name: ['process-name'], + entity_id: ['process-entity_id'], }, }; @@ -84,4 +88,18 @@ export const mockDataFormattedForFieldBrowser = [ originalValue: ['process-entity_id'], isObjectArray: false, }, + { + category: 'event', + field: 'event.category', + values: ['registry'], + originalValue: ['registry'], + isObjectArray: false, + }, + { + category: 'kibana', + field: 'kibana.alert.rule.type', + values: ['query'], + originalValue: ['query'], + isObjectArray: false, + }, ]; diff --git a/x-pack/plugins/security_solution/public/flyout/shared/translations.ts b/x-pack/plugins/security_solution/public/flyout/shared/translations.ts index a9a7aa6cd217c..b58e106cb26b1 100644 --- a/x-pack/plugins/security_solution/public/flyout/shared/translations.ts +++ b/x-pack/plugins/security_solution/public/flyout/shared/translations.ts @@ -19,62 +19,32 @@ export const ERROR_MESSAGE = (message: string) => defaultMessage: 'There was an error displaying {message}', }); -export const CORRELATIONS_TEXT = i18n.translate( - 'xpack.securitySolution.flyout.documentDetails.overviewTab.correlationsText', - { - defaultMessage: 'fields of correlation', - } -); - -export const CORRELATIONS_ANCESTRY_ALERT = i18n.translate( - 'xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.ancestryAlert', - { - defaultMessage: 'alert related by ancestry', - } -); +export const CORRELATIONS_SUPPRESSED_ALERTS = (count: number) => + i18n.translate('xpack.securitySolution.flyout.documentDetails.correlations.suppressedAlerts', { + defaultMessage: 'suppressed {count, plural, =1 {alert} other {alerts}}', + values: { count }, + }); -export const CORRELATIONS_ANCESTRY_ALERTS = i18n.translate( - 'xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.ancestryAlerts', - { - defaultMessage: 'alerts related by ancestry', - } -); -export const CORRELATIONS_SAME_SOURCE_EVENT_ALERT = i18n.translate( - 'xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.sameSourceEventAlert', - { - defaultMessage: 'alert related by the same source event', - } -); +export const CORRELATIONS_ANCESTRY_ALERTS = (count: number) => + i18n.translate('xpack.securitySolution.flyout.documentDetails.correlations.ancestryAlerts', { + defaultMessage: '{count, plural, one {alert} other {alerts}} related by ancestry', + values: { count }, + }); -export const CORRELATIONS_SAME_SOURCE_EVENT_ALERTS = i18n.translate( - 'xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.sameSourceEventAlerts', - { - defaultMessage: 'alerts related by the same source event', - } -); -export const CORRELATIONS_SAME_SESSION_ALERT = i18n.translate( - 'xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.sameSessionAlert', - { - defaultMessage: 'alert related by session', - } -); +export const CORRELATIONS_SAME_SOURCE_ALERTS = (count: number) => + i18n.translate('xpack.securitySolution.flyout.documentDetails.correlations.sourceAlerts', { + defaultMessage: '{count, plural, one {alert} other {alerts}} related by source event', + values: { count }, + }); -export const CORRELATIONS_SAME_SESSION_ALERTS = i18n.translate( - 'xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.sameSessionAlerts', - { - defaultMessage: 'alerts related by session', - } -); -export const CORRELATIONS_RELATED_CASE = i18n.translate( - 'xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.relatedCase', - { - defaultMessage: 'related case', - } -); +export const CORRELATIONS_SESSION_ALERTS = (count: number) => + i18n.translate('xpack.securitySolution.flyout.documentDetails.correlations.sessionAlerts', { + defaultMessage: '{count, plural, one {alert} other {alerts}} related by session', + values: { count }, + }); -export const CORRELATIONS_RELATED_CASES = i18n.translate( - 'xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.relatedCases', - { - defaultMessage: 'related cases', - } -); +export const CORRELATIONS_RELATED_CASES = (count: number) => + i18n.translate('xpack.securitySolution.flyout.documentDetails.correlations.relatedCases', { + defaultMessage: 'related {count, plural, one {case} other {cases}}', + values: { count }, + }); diff --git a/x-pack/plugins/security_solution/public/flyout/shared/utils/fetch_data.ts b/x-pack/plugins/security_solution/public/flyout/shared/utils/fetch_data.ts index 3fa079b539fc3..08dfe620aff2b 100644 --- a/x-pack/plugins/security_solution/public/flyout/shared/utils/fetch_data.ts +++ b/x-pack/plugins/security_solution/public/flyout/shared/utils/fetch_data.ts @@ -8,28 +8,6 @@ import type { IEsSearchRequest, IKibanaSearchResponse } from '@kbn/data-plugin/common'; import type { ISearchStart } from '@kbn/data-plugin/public'; -export const AGG_KEY = 'aggregation'; - -/** - * Interface for aggregation responses - */ -export interface RawAggregatedDataResponse { - aggregations: { - [AGG_KEY]: { - buckets: unknown[]; - }; - }; -} - -/** - * Interface for non-aggregated responses - */ -export interface RawResponse { - hits: { - total: number; - }; -} - /** * Reusable method that returns a promise wrapping the search functionality of Kibana search service */ diff --git a/x-pack/plugins/security_solution/public/flyout/shared/utils/highlighted_fields_helpers.test.ts b/x-pack/plugins/security_solution/public/flyout/shared/utils/highlighted_fields_helpers.test.ts new file mode 100644 index 0000000000000..f79a7a300eb3e --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/shared/utils/highlighted_fields_helpers.test.ts @@ -0,0 +1,65 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { + convertHighlightedFieldsToPrevalenceFilters, + convertHighlightedFieldsToTableRow, +} from './highlighted_fields_helpers'; + +describe('convertHighlightedFieldsToTableRow', () => { + it('should convert highlighted fields to a table row', () => { + const highlightedFields = { + 'host.name': { + values: ['host-1'], + }, + }; + expect(convertHighlightedFieldsToTableRow(highlightedFields)).toEqual([ + { + field: 'host.name', + description: { + field: 'host.name', + values: ['host-1'], + }, + }, + ]); + }); + + it('should convert take override name over default name', () => { + const highlightedFields = { + 'host.name': { + overrideField: 'host.name-override', + values: ['host-1'], + }, + }; + expect(convertHighlightedFieldsToTableRow(highlightedFields)).toEqual([ + { + field: 'host.name-override', + description: { + field: 'host.name-override', + values: ['host-1'], + }, + }, + ]); + }); +}); + +describe('convertHighlightedFieldsToPrevalenceFilters', () => { + it('should convert highlighted fields to prevalence filters', () => { + const highlightedFields = { + 'host.name': { + values: ['host-1'], + }, + 'user.name': { + values: ['user-1'], + }, + }; + expect(convertHighlightedFieldsToPrevalenceFilters(highlightedFields)).toEqual({ + 'host.name': { match: { 'host.name': 'host-1' } }, + 'user.name': { match: { 'user.name': 'user-1' } }, + }); + }); +}); diff --git a/x-pack/plugins/security_solution/public/flyout/shared/utils/highlighted_fields_helpers.ts b/x-pack/plugins/security_solution/public/flyout/shared/utils/highlighted_fields_helpers.ts new file mode 100644 index 0000000000000..d44ec666a27bc --- /dev/null +++ b/x-pack/plugins/security_solution/public/flyout/shared/utils/highlighted_fields_helpers.ts @@ -0,0 +1,51 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import type { QueryDslQueryContainer } from '@elastic/elasticsearch/lib/api/types'; +import type { UseHighlightedFieldsResult } from '../hooks/use_highlighted_fields'; +import type { HighlightedFieldsTableRow } from '../../right/components/highlighted_fields'; + +/** + * Converts the highlighted fields to a format that can be consumed by the HighlightedFields component + * @param highlightedFields + */ +export const convertHighlightedFieldsToTableRow = ( + highlightedFields: UseHighlightedFieldsResult +): HighlightedFieldsTableRow[] => { + const fieldNames = Object.keys(highlightedFields); + return fieldNames.map((fieldName) => { + const values = highlightedFields[fieldName].values; + const overrideFieldName = highlightedFields[fieldName].overrideField; + const field = overrideFieldName ? overrideFieldName : fieldName; + + return { + field, + description: { + field, + values, + }, + }; + }); +}; + +/** + * Converts the highlighted fields to a format that can be consumed by the prevalence query + * @param highlightedFields + */ +export const convertHighlightedFieldsToPrevalenceFilters = ( + highlightedFields: UseHighlightedFieldsResult +): Record => { + const fieldNames = Object.keys(highlightedFields); + return fieldNames.reduce((acc, curr) => { + const values = highlightedFields[curr].values; + + return { + ...acc, + [curr]: { match: { [curr]: Array.isArray(values) ? values[0] : values } }, + }; + }, []) as unknown as Record; +}; diff --git a/x-pack/plugins/security_solution/public/index.ts b/x-pack/plugins/security_solution/public/index.ts index 987189ec2d722..28b99af129b1d 100644 --- a/x-pack/plugins/security_solution/public/index.ts +++ b/x-pack/plugins/security_solution/public/index.ts @@ -12,13 +12,6 @@ import type { PluginSetup, PluginStart } from './types'; export type { TimelineModel } from './timelines/store/timeline/model'; export type { LinkItem } from './common/links'; -export type { - UpsellingService, - PageUpsellings, - SectionUpsellings, - UpsellingSectionId, -} from './common/lib/upsellings'; - export const plugin = (context: PluginInitializerContext): Plugin => new Plugin(context); export type { PluginSetup, PluginStart }; diff --git a/x-pack/plugins/security_solution/public/management/components/page_overlay/page_overlay.tsx b/x-pack/plugins/security_solution/public/management/components/page_overlay/page_overlay.tsx index 27b449f841448..3ea38e5ed2314 100644 --- a/x-pack/plugins/security_solution/public/management/components/page_overlay/page_overlay.tsx +++ b/x-pack/plugins/security_solution/public/management/components/page_overlay/page_overlay.tsx @@ -264,6 +264,7 @@ export const PageOverlay = memo( useEffect(() => { if ( isMounted() && + // @ts-expect-error ts upgrade v4.7.4 onHide && hideOnUrlPathnameChange && !isHidden && diff --git a/x-pack/plugins/security_solution/public/management/cypress.config.ts b/x-pack/plugins/security_solution/public/management/cypress.config.ts index 160810432a1ed..b02724cb8eec8 100644 --- a/x-pack/plugins/security_solution/public/management/cypress.config.ts +++ b/x-pack/plugins/security_solution/public/management/cypress.config.ts @@ -10,6 +10,11 @@ import { defineCypressConfig } from '@kbn/cypress-config'; import { dataLoaders } from './cypress/support/data_loaders'; export default defineCypressConfig({ + reporter: '../../../../node_modules/cypress-multi-reporters', + reporterOptions: { + configFile: './public/management/reporter_config.json', + }, + defaultCommandTimeout: 60000, execTimeout: 120000, pageLoadTimeout: 12000, diff --git a/x-pack/plugins/security_solution/public/management/cypress/cypress.d.ts b/x-pack/plugins/security_solution/public/management/cypress/cypress.d.ts index 533f6627f793f..4d84dc88af9c9 100644 --- a/x-pack/plugins/security_solution/public/management/cypress/cypress.d.ts +++ b/x-pack/plugins/security_solution/public/management/cypress/cypress.d.ts @@ -36,7 +36,7 @@ import type { declare global { namespace Cypress { interface SuiteConfigOverrides { - env: { + env?: { ftrConfig: SecuritySolutionDescribeBlockFtrConfig; }; } diff --git a/x-pack/plugins/security_solution/public/management/cypress/e2e/endpoint/isolate.cy.ts b/x-pack/plugins/security_solution/public/management/cypress/e2e/endpoint/isolate.cy.ts index 5ec6ed11c80a4..f39d7fae9f0fe 100644 --- a/x-pack/plugins/security_solution/public/management/cypress/e2e/endpoint/isolate.cy.ts +++ b/x-pack/plugins/security_solution/public/management/cypress/e2e/endpoint/isolate.cy.ts @@ -31,7 +31,7 @@ import { createEndpointHost } from '../../tasks/create_endpoint_host'; import { deleteAllLoadedEndpointData } from '../../tasks/delete_all_endpoint_data'; import { enableAllPolicyProtections } from '../../tasks/endpoint_policy'; -describe('Isolate command', () => { +describe.skip('Isolate command', () => { let isolateComment: string; let releaseComment: string; let indexedPolicy: IndexedFleetEndpointPolicyResponse; diff --git a/x-pack/plugins/security_solution/public/management/cypress/e2e/endpoint/response_console.cy.ts b/x-pack/plugins/security_solution/public/management/cypress/e2e/endpoint/response_console.cy.ts index d2ea69dca1618..245de3ce5512c 100644 --- a/x-pack/plugins/security_solution/public/management/cypress/e2e/endpoint/response_console.cy.ts +++ b/x-pack/plugins/security_solution/public/management/cypress/e2e/endpoint/response_console.cy.ts @@ -188,8 +188,7 @@ describe('Response console', () => { }); }); - // Broken until this is fixed: https://github.com/elastic/kibana/issues/162760 - describe.skip('File operations: get-file and execute', () => { + describe('File operations: get-file and execute', () => { const homeFilePath = process.env.CI || true ? '/home/vagrant' : `/home/ubuntu`; const fileContent = 'This is a test file for the get-file command.'; diff --git a/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/automated_response_actions/history_log.cy.ts b/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/automated_response_actions/history_log.cy.ts index e6b7887c5d6f7..388f6eb81dfcb 100644 --- a/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/automated_response_actions/history_log.cy.ts +++ b/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/automated_response_actions/history_log.cy.ts @@ -5,7 +5,7 @@ * 2.0. */ -import { generateRandomStringName } from '@kbn/osquery-plugin/cypress/tasks/integrations'; +import { generateRandomStringName } from '../../../tasks/utils'; import { indexEndpointHosts } from '../../../tasks/index_endpoint_hosts'; import type { ReturnTypeFromChainable } from '../../../types'; import { indexEndpointRuleAlerts } from '../../../tasks/index_endpoint_rule_alerts'; diff --git a/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/automated_response_actions/no_license.cy.ts b/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/automated_response_actions/no_license.cy.ts index 3ef371b1c847b..b046a067e260c 100644 --- a/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/automated_response_actions/no_license.cy.ts +++ b/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/automated_response_actions/no_license.cy.ts @@ -5,12 +5,12 @@ * 2.0. */ -import { generateRandomStringName } from '@kbn/osquery-plugin/cypress/tasks/integrations'; import { disableExpandableFlyoutAdvancedSettings } from '../../../tasks/common'; import { APP_ALERTS_PATH } from '../../../../../../common/constants'; import { closeAllToasts } from '../../../tasks/toasts'; import { fillUpNewRule } from '../../../tasks/response_actions'; import { login, loginWithRole, ROLE } from '../../../tasks/login'; +import { generateRandomStringName } from '../../../tasks/utils'; import type { ReturnTypeFromChainable } from '../../../types'; import { indexEndpointHosts } from '../../../tasks/index_endpoint_hosts'; import { indexEndpointRuleAlerts } from '../../../tasks/index_endpoint_rule_alerts'; diff --git a/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/automated_response_actions/results.cy.ts b/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/automated_response_actions/results.cy.ts index f0cac7527c19e..82fc29edb7b5e 100644 --- a/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/automated_response_actions/results.cy.ts +++ b/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/automated_response_actions/results.cy.ts @@ -5,8 +5,8 @@ * 2.0. */ -import { generateRandomStringName } from '@kbn/osquery-plugin/cypress/tasks/integrations'; import { disableExpandableFlyoutAdvancedSettings } from '../../../tasks/common'; +import { generateRandomStringName } from '../../../tasks/utils'; import { APP_ALERTS_PATH } from '../../../../../../common/constants'; import { closeAllToasts } from '../../../tasks/toasts'; import { indexEndpointHosts } from '../../../tasks/index_endpoint_hosts'; diff --git a/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/isolate.cy.ts b/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/isolate.cy.ts index 8e3811c93ee0e..549b1c4e2a328 100644 --- a/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/isolate.cy.ts +++ b/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/isolate.cy.ts @@ -89,7 +89,7 @@ describe('Isolate command', () => { }); }); - describe('from Alerts', () => { + describe.skip('from Alerts', () => { let endpointData: ReturnTypeFromChainable | undefined; let alertData: ReturnTypeFromChainable | undefined; let hostname: string; diff --git a/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/policy_response.cy.ts b/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/policy_response.cy.ts index ae9c0806ecdf4..c8949b8c09077 100644 --- a/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/policy_response.cy.ts +++ b/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/policy_response.cy.ts @@ -15,7 +15,7 @@ import { navigateToFleetAgentDetails } from '../../screens/fleet'; import { EndpointPolicyResponseGenerator } from '../../../../../common/endpoint/data_generators/endpoint_policy_response_generator'; import { descriptions } from '../../../components/policy_response/policy_response_friendly_names'; -describe('Endpoint Policy Response', () => { +describe.skip('Endpoint Policy Response', () => { let loadedEndpoint: CyIndexEndpointHosts; let endpointMetadata: HostMetadata; let loadedPolicyResponse: IndexedEndpointPolicyResponse; diff --git a/x-pack/plugins/security_solution/public/management/cypress/fixtures/artifacts_page.ts b/x-pack/plugins/security_solution/public/management/cypress/fixtures/artifacts_page.ts index e6c3c941482a9..bbd173b60cb88 100644 --- a/x-pack/plugins/security_solution/public/management/cypress/fixtures/artifacts_page.ts +++ b/x-pack/plugins/security_solution/public/management/cypress/fixtures/artifacts_page.ts @@ -328,7 +328,7 @@ export const getArtifactsListTestsData = (): ArtifactsFixtureType[] => [ { selector: 'blocklistPage-card-criteriaConditions', value: - ' OSIS WindowsAND file.hash.*is one of A4370C0CF81686C0B696FA6261c9d3e0d810ae704ab8301839dffd5d5112f476', + ' OSIS WindowsAND file.hash.*is one of a4370c0cf81686c0b696fa6261c9d3e0d810ae704ab8301839dffd5d5112f476', }, ], }, @@ -363,7 +363,7 @@ export const getArtifactsListTestsData = (): ArtifactsFixtureType[] => [ { type: 'click', customSelector: - '[data-test-subj="blocklist-form-values-input-A4370C0CF81686C0B696FA6261c9d3e0d810ae704ab8301839dffd5d5112f476"] > span > button', + '[data-test-subj="blocklist-form-values-input-a4370c0cf81686c0b696fa6261c9d3e0d810ae704ab8301839dffd5d5112f476"] > span > button', }, { type: 'input', diff --git a/x-pack/plugins/security_solution/public/management/cypress/tasks/add_alerts_to_case.ts b/x-pack/plugins/security_solution/public/management/cypress/tasks/add_alerts_to_case.ts index 171f2e9d6d698..8cc44c219771a 100644 --- a/x-pack/plugins/security_solution/public/management/cypress/tasks/add_alerts_to_case.ts +++ b/x-pack/plugins/security_solution/public/management/cypress/tasks/add_alerts_to_case.ts @@ -36,6 +36,9 @@ export const addAlertsToCase = ({ method: 'GET', url: DETECTION_ENGINE_RULES_URL, qs: { rule_id: ELASTIC_SECURITY_RULE_ID }, + headers: { + 'elastic-api-version': '2023-10-31', + }, }).then((ruleResponse) => { const endpointRuleDocId = ruleResponse.body.id; diff --git a/x-pack/plugins/security_solution/public/management/cypress/tasks/alerts.ts b/x-pack/plugins/security_solution/public/management/cypress/tasks/alerts.ts index 83fe39dca9e69..0ff00c181b26d 100644 --- a/x-pack/plugins/security_solution/public/management/cypress/tasks/alerts.ts +++ b/x-pack/plugins/security_solution/public/management/cypress/tasks/alerts.ts @@ -71,6 +71,9 @@ export const fetchEndpointSecurityDetectionRule = (): Cypress.Chainable => qs: { rule_id: ELASTIC_SECURITY_RULE_ID, }, + headers: { + 'elastic-api-version': '2023-10-31', + }, }).then(({ body }) => { return body; }); @@ -87,6 +90,9 @@ export const stopStartEndpointDetectionsRule = (): Cypress.Chainable => { action: 'disable', ids: [endpointRule.id], }, + headers: { + 'elastic-api-version': '2023-10-31', + }, }).then(() => { return endpointRule; }); @@ -102,6 +108,9 @@ export const stopStartEndpointDetectionsRule = (): Cypress.Chainable => { action: 'enable', ids: [endpointRule.id], }, + headers: { + 'elastic-api-version': '2023-10-31', + }, }).then(() => endpointRule); }) .then((endpointRule) => { diff --git a/x-pack/plugins/security_solution/public/management/cypress/tasks/api_fixtures.ts b/x-pack/plugins/security_solution/public/management/cypress/tasks/api_fixtures.ts index 71804d873c46c..c948062c994c0 100644 --- a/x-pack/plugins/security_solution/public/management/cypress/tasks/api_fixtures.ts +++ b/x-pack/plugins/security_solution/public/management/cypress/tasks/api_fixtures.ts @@ -13,7 +13,13 @@ export const generateRandomStringName = (length: number) => Array.from({ length }, () => Math.random().toString(36).substring(2)); export const cleanupRule = (id: string) => { - request({ method: 'DELETE', url: `/api/detection_engine/rules?id=${id}` }); + request({ + method: 'DELETE', + url: `/api/detection_engine/rules?id=${id}`, + headers: { + 'elastic-api-version': '2023-10-31', + }, + }); }; export const loadRule = (body = {}, includeResponseActions = true) => @@ -67,6 +73,9 @@ export const loadRule = (body = {}, includeResponseActions = true) => } : {}), }, + headers: { + 'elastic-api-version': '2023-10-31', + }, }).then((response) => response.body); export const loadCase = (owner: string) => diff --git a/x-pack/plugins/security_solution/public/management/cypress/tasks/utils.ts b/x-pack/plugins/security_solution/public/management/cypress/tasks/utils.ts new file mode 100644 index 0000000000000..54839c97361ab --- /dev/null +++ b/x-pack/plugins/security_solution/public/management/cypress/tasks/utils.ts @@ -0,0 +1,9 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export const generateRandomStringName = (length: number) => + Array.from({ length }, () => Math.random().toString(36).substring(2)); diff --git a/x-pack/plugins/security_solution/public/management/cypress/tsconfig.json b/x-pack/plugins/security_solution/public/management/cypress/tsconfig.json index c79c48ca3640f..dc0b2e1ca4fd4 100644 --- a/x-pack/plugins/security_solution/public/management/cypress/tsconfig.json +++ b/x-pack/plugins/security_solution/public/management/cypress/tsconfig.json @@ -35,6 +35,5 @@ "@kbn/test", "@kbn/repo-info", "@kbn/data-views-plugin", - "@kbn/osquery-plugin/cypress", ] } diff --git a/x-pack/plugins/security_solution/public/management/cypress_endpoint.config.ts b/x-pack/plugins/security_solution/public/management/cypress_endpoint.config.ts index 36f68e73e6bcd..73f260d63b4b9 100644 --- a/x-pack/plugins/security_solution/public/management/cypress_endpoint.config.ts +++ b/x-pack/plugins/security_solution/public/management/cypress_endpoint.config.ts @@ -13,6 +13,11 @@ import { responseActionTasks } from './cypress/support/response_actions'; // eslint-disable-next-line import/no-default-export export default defineCypressConfig({ + reporter: '../../../../node_modules/cypress-multi-reporters', + reporterOptions: { + configFile: './public/management/reporter_config.json', + }, + defaultCommandTimeout: 60000, execTimeout: 120000, pageLoadTimeout: 12000, diff --git a/x-pack/plugins/security_solution/public/management/pages/policy/view/ingest_manager_integration/components/with_security_context/render_context_providers.tsx b/x-pack/plugins/security_solution/public/management/pages/policy/view/ingest_manager_integration/components/with_security_context/render_context_providers.tsx index 972da1a436678..4ad30f3945ee6 100644 --- a/x-pack/plugins/security_solution/public/management/pages/policy/view/ingest_manager_integration/components/with_security_context/render_context_providers.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/policy/view/ingest_manager_integration/components/with_security_context/render_context_providers.tsx @@ -10,6 +10,7 @@ import React, { memo } from 'react'; import { Provider as ReduxStoreProvider } from 'react-redux'; import type { Store } from 'redux'; import { NavigationProvider } from '@kbn/security-solution-navigation'; +import type { UpsellingService } from '@kbn/security-solution-upselling/service'; import { UpsellingProvider } from '../../../../../../../common/components/upselling_provider'; import { UserPrivilegesProvider } from '../../../../../../../common/components/user_privileges/user_privileges_context'; import type { SecuritySolutionQueryClient } from '../../../../../../../common/containers/query_client/query_client_provider'; @@ -18,7 +19,6 @@ import { SecuritySolutionStartDependenciesContext } from '../../../../../../../c import { CurrentLicense } from '../../../../../../../common/components/current_license'; import type { StartPlugins } from '../../../../../../../types'; import { useKibana } from '../../../../../../../common/lib/kibana'; -import type { UpsellingService } from '../../../../../../..'; export type RenderContextProvidersProps = PropsWithChildren<{ store: Store; diff --git a/x-pack/plugins/security_solution/public/management/pages/policy/view/ingest_manager_integration/types.ts b/x-pack/plugins/security_solution/public/management/pages/policy/view/ingest_manager_integration/types.ts index cc27971de63ab..1e5b4260b2148 100644 --- a/x-pack/plugins/security_solution/public/management/pages/policy/view/ingest_manager_integration/types.ts +++ b/x-pack/plugins/security_solution/public/management/pages/policy/view/ingest_manager_integration/types.ts @@ -6,8 +6,8 @@ */ import type { CoreStart } from '@kbn/core-lifecycle-browser'; +import type { UpsellingService } from '@kbn/security-solution-upselling/service'; import type { StartPlugins } from '../../../../../types'; -import type { UpsellingService } from '../../../../..'; export interface FleetUiExtensionGetterOptions { coreStart: CoreStart; diff --git a/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_details.tsx b/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_details.tsx index 5adf40105255c..f1a0976cbf021 100644 --- a/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_details.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_details.tsx @@ -60,7 +60,7 @@ export const PolicyDetails = React.memo(() => { }, ], }; - }, [getAppUrl, routeState.backLink]); + }, [getAppUrl, routeState?.backLink]); const headerRightContent = ( { : []), 'User notification', 'Agent version 7.15+', - ...(config.notifyUser - ? ['Notify user', 'Notification message', '—'] - : ["Don't notify user"]), + ...(config.notifyUser ? ['Notify user', 'Notification message', '—'] : ['Notify user']), ...(config.prebuiltRules ? [ 'View related detection rules. ', diff --git a/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/cards/malware_protections_card.test.tsx b/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/cards/malware_protections_card.test.tsx index 20bcc9282dbc4..2658d77fa7f9c 100644 --- a/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/cards/malware_protections_card.test.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/cards/malware_protections_card.test.tsx @@ -182,7 +182,7 @@ describe('Policy Malware Protections Card', () => { 'Info' + 'User notification' + 'Agent version 7.11+' + - "Don't notify user" + + 'Notify user' + 'View related detection rules. Prebuilt rules are tagged “Elastic” on the Detection Rules page.' ) ); diff --git a/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/event_collection_card.tsx b/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/event_collection_card.tsx index 97bff346e35a3..df2d85bd69bcd 100644 --- a/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/event_collection_card.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/event_collection_card.tsx @@ -134,7 +134,7 @@ export const EventCollectionCard = memo(
    {options.map(({ name, protectionField }) => { - const keyPath = `${policyOs}.events.${protectionField}`; + const keyPath = `${policyOs}.events.${String(protectionField)}`; return ( { - const keyPath = `${policyOs}.events.${protectionField}`; + const keyPath = `${policyOs}.events.${String(protectionField)}`; const isChecked = get(policy, keyPath); const fieldString = protectionField as string; diff --git a/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/notify_user_option.test.tsx b/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/notify_user_option.test.tsx index 5a6e591e8e1b5..350686d5c5312 100644 --- a/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/notify_user_option.test.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/notify_user_option.test.tsx @@ -191,7 +191,7 @@ describe('Policy form Detect Prevent Protection level component', () => { render(); expect(renderResult.getByTestId('test')).toHaveTextContent( - exactMatchText("User notificationAgent version 7.11+Don't notify user") + exactMatchText('User notificationAgent version 7.11+Notify user') ); }); }); diff --git a/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/notify_user_option.tsx b/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/notify_user_option.tsx index 76bdde0d3e465..8daa9a7ed1875 100644 --- a/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/notify_user_option.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/components/notify_user_option.tsx @@ -40,13 +40,6 @@ export const NOTIFY_USER_CHECKBOX_LABEL = i18n.translate( } ); -export const DO_NOT_NOTIFY_USER_CHECKBOX_LABEL = i18n.translate( - 'xpack.securitySolution.endpoint.policyDetail.doNotNotifyUser', - { - defaultMessage: "Don't notify user", - } -); - const NOTIFICATION_MESSAGE_LABEL = i18n.translate( 'xpack.securitySolution.endpoint.policyDetailsConfig.notificationMessage', { @@ -82,9 +75,6 @@ export const NotifyUserOption = React.memo( const selected = policy.windows[protection].mode; const userNotificationSelected = policy.windows.popup[protection].enabled; const userNotificationMessage = policy.windows.popup[protection].message; - const checkboxLabel = userNotificationSelected - ? NOTIFY_USER_CHECKBOX_LABEL - : DO_NOT_NOTIFY_USER_CHECKBOX_LABEL; const handleUserNotificationCheckbox = useCallback( (event) => { @@ -184,10 +174,10 @@ export const NotifyUserOption = React.memo( onChange={handleUserNotificationCheckbox} checked={userNotificationSelected} disabled={!isEditMode || selected === ProtectionModes.off} - label={checkboxLabel} + label={NOTIFY_USER_CHECKBOX_LABEL} /> ) : ( - <>{checkboxLabel} + <>{NOTIFY_USER_CHECKBOX_LABEL} )} {userNotificationSelected && diff --git a/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/policy_settings_form.test.tsx b/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/policy_settings_form.test.tsx index c055ed3281a09..9197b029a8b59 100644 --- a/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/policy_settings_form.test.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_form/policy_settings_form.test.tsx @@ -12,7 +12,7 @@ import { createAppRootMockRenderer } from '../../../../../common/mock/endpoint'; import type { PolicySettingsFormProps } from './policy_settings_form'; import { PolicySettingsForm } from './policy_settings_form'; import { FleetPackagePolicyGenerator } from '../../../../../../common/endpoint/data_generators/fleet_package_policy_generator'; -import type { UpsellingService } from '../../../../../common/lib/upsellings'; +import type { UpsellingService } from '@kbn/security-solution-upselling/service'; jest.mock('../../../../../common/hooks/use_license'); diff --git a/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_layout/policy_settings_layout.tsx b/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_layout/policy_settings_layout.tsx index 3ee9506e6ad44..1a3a62c1e2ebf 100644 --- a/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_layout/policy_settings_layout.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/policy/view/policy_settings_layout/policy_settings_layout.tsx @@ -7,6 +7,7 @@ import React, { memo, useCallback, useEffect, useMemo, useState } from 'react'; import { useLocation } from 'react-router-dom'; +import { useDispatch } from 'react-redux'; import type { ApplicationStart } from '@kbn/core-application-browser'; import { FormattedMessage } from '@kbn/i18n-react'; import { EuiButton, EuiButtonEmpty, EuiFlexGroup, EuiFlexItem, EuiSpacer } from '@elastic/eui'; @@ -42,6 +43,7 @@ export const PolicySettingsLayout = memo(({ policy: _ }, } = useKibana(); const toasts = useToasts(); + const dispatch = useDispatch(); const { state: locationRouteState } = useLocation(); const { canWritePolicyManagement } = useUserPrivileges().endpointPrivileges; const { isLoading: isUpdating, mutateAsync: sendPolicyUpdate } = useUpdateEndpointPolicy(); @@ -89,7 +91,7 @@ export const PolicySettingsLayout = memo(({ policy: _ update.inputs[0].config.policy.value = policySettings; sendPolicyUpdate({ policy: update }) - .then(() => { + .then(({ item: policyItem }) => { toasts.addSuccess({ 'data-test-subj': 'policyDetailsSuccessMessage', title: i18n.translate( @@ -109,6 +111,14 @@ export const PolicySettingsLayout = memo(({ policy: _ if (routeState && routeState.onSaveNavigateTo) { navigateToApp(...routeState.onSaveNavigateTo); + } else { + // Since the 'policyItem' is stored in a store and fetched as a result of an action on urlChange, we still need to dispatch an action even though Redux was removed from this component. + dispatch({ + type: 'serverReturnedPolicyDetailsData', + payload: { + policyItem, + }, + }); } }) .catch((err) => { @@ -123,6 +133,7 @@ export const PolicySettingsLayout = memo(({ policy: _ handleSaveCancel(); }, [ + dispatch, handleSaveCancel, navigateToApp, policy, diff --git a/x-pack/plugins/security_solution/public/management/reporter_config.json b/x-pack/plugins/security_solution/public/management/reporter_config.json new file mode 100644 index 0000000000000..b72a5cf077c6a --- /dev/null +++ b/x-pack/plugins/security_solution/public/management/reporter_config.json @@ -0,0 +1,10 @@ +{ + "reporterEnabled": "mochawesome, mocha-junit-reporter", + "reporterOptions": { + "html": false, + "json": true, + "mochaFile": "../../../target/kibana-security-solution/cypress/results/TEST-security-solution-cypress-[hash].xml", + "overwrite": false, + "reportDir": "../../../target/kibana-security-solution/cypress/results" + } +} diff --git a/x-pack/plugins/security_solution/public/mocks.ts b/x-pack/plugins/security_solution/public/mocks.ts index d40cda3294802..b48da210d6756 100644 --- a/x-pack/plugins/security_solution/public/mocks.ts +++ b/x-pack/plugins/security_solution/public/mocks.ts @@ -6,9 +6,9 @@ */ import { BehaviorSubject } from 'rxjs'; +import { UpsellingService } from '@kbn/security-solution-upselling/service'; import type { BreadcrumbsNav } from './common/breadcrumbs'; import type { NavigationLink } from './common/links/types'; -import { UpsellingService } from './common/lib/upsellings'; import type { PluginStart, PluginSetup } from './types'; const setupMock = (): PluginSetup => ({ @@ -22,6 +22,7 @@ const startMock = (): PluginStart => ({ getNavLinks$: jest.fn(() => new BehaviorSubject([])), setIsSidebarEnabled: jest.fn(), setGetStartedPage: jest.fn(), + setIsILMAvailable: jest.fn(), getBreadcrumbsNav$: jest.fn( () => new BehaviorSubject({ leading: [], trailing: [] }) ), diff --git a/x-pack/plugins/security_solution/public/overview/links.ts b/x-pack/plugins/security_solution/public/overview/links.ts index a9a2bbe6c7640..069adc35a6f5c 100644 --- a/x-pack/plugins/security_solution/public/overview/links.ts +++ b/x-pack/plugins/security_solution/public/overview/links.ts @@ -7,7 +7,6 @@ import { i18n } from '@kbn/i18n'; import { - COVERAGE_OVERVIEW_PATH, DATA_QUALITY_PATH, DETECTION_RESPONSE_PATH, ENTITY_ANALYTICS_PATH, @@ -22,7 +21,6 @@ import { GETTING_STARTED, OVERVIEW, ENTITY_ANALYTICS, - COVERAGE_OVERVIEW, } from '../app/translations'; import type { LinkItem } from '../common/links/types'; import overviewPageImg from '../common/images/overview_page.png'; @@ -88,7 +86,7 @@ export const entityAnalyticsLinks: LinkItem = { 'Entity analytics, anomalies, and threats to narrow down the monitoring surface area.', }), path: ENTITY_ANALYTICS_PATH, - capabilities: [`${SERVER_APP_ID}.show`], + capabilities: [`${SERVER_APP_ID}.entity-analytics`], isBeta: false, licenseType: 'platinum', globalSearchKeywords: [ENTITY_ANALYTICS], @@ -113,24 +111,3 @@ export const ecsDataQualityDashboardLinks: LinkItem = { }), ], }; - -export const coverageOverviewDashboardLinks: LinkItem = { - id: SecurityPageName.coverageOverview, - title: COVERAGE_OVERVIEW, - landingImage: overviewPageImg, // TODO: change with updated image before removing feature flag https://github.com/elastic/security-team/issues/2905 - description: i18n.translate( - 'xpack.securitySolution.appLinks.coverageOverviewDashboardDescription', - { - defaultMessage: - 'An overview of rule coverage according to the MITRE ATT&CK\u00AE specifications', - } - ), - path: COVERAGE_OVERVIEW_PATH, - capabilities: [`${SERVER_APP_ID}.show`], - globalSearchKeywords: [ - i18n.translate('xpack.securitySolution.appLinks.coverageOverviewDashboard', { - defaultMessage: 'MITRE ATT&CK Coverage', - }), - ], - experimentalKey: 'detectionsCoverageOverview', -}; diff --git a/x-pack/plugins/security_solution/public/overview/pages/data_quality.test.tsx b/x-pack/plugins/security_solution/public/overview/pages/data_quality.test.tsx index 7601dbc122f88..ffb3b616f2389 100644 --- a/x-pack/plugins/security_solution/public/overview/pages/data_quality.test.tsx +++ b/x-pack/plugins/security_solution/public/overview/pages/data_quality.test.tsx @@ -8,6 +8,7 @@ import { render, screen, waitFor } from '@testing-library/react'; import React from 'react'; import { MemoryRouter } from 'react-router-dom'; +import { of } from 'rxjs'; import { useKibana as mockUseKibana } from '../../common/lib/kibana/__mocks__'; import { TestProviders } from '../../common/mock'; @@ -15,6 +16,7 @@ import { DataQuality } from './data_quality'; import { HOT, WARM, UNMANAGED } from './translations'; const mockedUseKibana = mockUseKibana(); +const mockIsILMAvailable = of(true); jest.mock('../../common/components/landing_page'); jest.mock('../../common/lib/kibana', () => { @@ -49,6 +51,7 @@ jest.mock('../../common/lib/kibana', () => { useCasesAddToNewCaseFlyout: jest.fn(), }, }, + isILMAvailable$: mockIsILMAvailable, }, }), useUiSetting$: () => ['0,0.[000]'], diff --git a/x-pack/plugins/security_solution/public/overview/pages/data_quality.tsx b/x-pack/plugins/security_solution/public/overview/pages/data_quality.tsx index 641a32bae889b..3019af1907dcc 100644 --- a/x-pack/plugins/security_solution/public/overview/pages/data_quality.tsx +++ b/x-pack/plugins/security_solution/public/overview/pages/data_quality.tsx @@ -15,7 +15,7 @@ import { INDEX_LIFECYCLE_MANAGEMENT_PHASES, SELECT_ONE_OR_MORE_ILM_PHASES, } from '@kbn/ecs-data-quality-dashboard'; -import type { EuiComboBoxOptionOption } from '@elastic/eui'; +import type { EuiComboBoxOptionOption, OnTimeChangeProps } from '@elastic/eui'; import { EuiComboBox, EuiFormControlLayout, @@ -25,9 +25,11 @@ import { EuiText, EuiToolTip, useGeneratedHtmlId, + EuiSuperDatePicker, } from '@elastic/eui'; -import React, { useCallback, useMemo, useState } from 'react'; +import React, { useCallback, useEffect, useMemo, useState } from 'react'; import styled from 'styled-components'; +import useObservable from 'react-use/lib/useObservable'; import { useAssistantAvailability } from '../../assistant/use_assistant_availability'; import { SecurityPageName } from '../../app/types'; @@ -120,6 +122,9 @@ const defaultOptions: EuiComboBoxOptionOption[] = [ }, ]; +const DEFAULT_START_TIME = 'now-7d'; +const DEFAULT_END_TIME = 'now'; + const renderOption = ( option: EuiComboBoxOptionOption ): React.ReactNode => ( @@ -152,6 +157,26 @@ const DataQualityComponent: React.FC = () => { const [selectedOptions, setSelectedOptions] = useState(defaultOptions); const { indicesExist, loading: isSourcererLoading, selectedPatterns } = useSourcererDataView(); const { signalIndexName, loading: isSignalIndexNameLoading } = useSignalIndex(); + const { isILMAvailable$, cases } = useKibana().services; + const isILMAvailable = useObservable(isILMAvailable$); + + const [startDate, setStartTime] = useState(); + const [endDate, setEndTime] = useState(); + const onTimeChange = ({ start, end, isInvalid }: OnTimeChangeProps) => { + if (isInvalid) { + return; + } + + setStartTime(start); + setEndTime(end); + }; + + useEffect(() => { + if (isILMAvailable != null && isILMAvailable === false) { + setStartTime(DEFAULT_START_TIME); + setEndTime(DEFAULT_END_TIME); + } + }, [isILMAvailable]); const alertsAndSelectedPatterns = useMemo( () => @@ -192,7 +217,6 @@ const DataQualityComponent: React.FC = () => { [userCasesPermissions.create, userCasesPermissions.read] ); - const { cases } = useKibana().services; const createCaseFlyout = cases.hooks.useCasesAddToNewCaseFlyout({ toastContent: i18n.ADD_TO_CASE_SUCCESS, }); @@ -231,41 +255,57 @@ const DataQualityComponent: React.FC = () => { return ( <> - {indicesExist ? ( + {indicesExist && isILMAvailable != null ? ( - - - + + + + + )} + {!isILMAvailable && startDate && endDate && ( + + - - + + )} diff --git a/x-pack/plugins/security_solution/public/overview/pages/translations.ts b/x-pack/plugins/security_solution/public/overview/pages/translations.ts index 93d1d328c6177..5290202ba702d 100644 --- a/x-pack/plugins/security_solution/public/overview/pages/translations.ts +++ b/x-pack/plugins/security_solution/public/overview/pages/translations.ts @@ -29,6 +29,13 @@ export const DATA_QUALITY_TITLE = i18n.translate( } ); +export const DATE_PICKER_TOOLTIP = i18n.translate( + 'xpack.securitySolution.dataQualityDashboard.datePicker.tooltip', + { + defaultMessage: `Conducting data quality checks is possible solely for the data present within the Ingest and Search Boost window (last 7 days).`, + } +); + export const ELASTIC_COMMON_SCHEMA = i18n.translate( 'xpack.securitySolution.dataQualityDashboard.elasticCommonSchemaReferenceLink', { diff --git a/x-pack/plugins/security_solution/public/overview/routes.tsx b/x-pack/plugins/security_solution/public/overview/routes.tsx index 0d9dd4100ef34..ab986b47c30f7 100644 --- a/x-pack/plugins/security_solution/public/overview/routes.tsx +++ b/x-pack/plugins/security_solution/public/overview/routes.tsx @@ -7,7 +7,6 @@ import React from 'react'; import { TrackApplicationView } from '@kbn/usage-collection-plugin/public'; -import { Redirect } from 'react-router-dom'; import { LANDING_PATH, OVERVIEW_PATH, @@ -15,7 +14,6 @@ import { DETECTION_RESPONSE_PATH, SecurityPageName, ENTITY_ANALYTICS_PATH, - COVERAGE_OVERVIEW_PATH, } from '../../common/constants'; import type { SecuritySubPluginRoutes } from '../app/types'; @@ -25,9 +23,7 @@ import { DetectionResponse } from './pages/detection_response'; import { PluginTemplateWrapper } from '../common/components/plugin_template_wrapper'; import { EntityAnalyticsPage } from './pages/entity_analytics'; import { SecurityRoutePageWrapper } from '../common/components/security_route_page_wrapper'; -import { CoverageOverviewPage } from '../detection_engine/rule_management_ui/pages/coverage_overview'; import { LandingPage } from './pages/landing'; -import { useIsExperimentalFeatureEnabled } from '../common/hooks/use_experimental_features'; const OverviewRoutes = () => ( @@ -69,22 +65,6 @@ const DataQualityRoutes = () => ( ); -const CoverageOverviewRoutes = () => { - const isDetectionsCoverageOverviewEnabled = useIsExperimentalFeatureEnabled( - 'detectionsCoverageOverview' - ); - - return isDetectionsCoverageOverviewEnabled ? ( - - - - - - ) : ( - - ); -}; - export const routes: SecuritySubPluginRoutes = [ { path: OVERVIEW_PATH, @@ -106,8 +86,4 @@ export const routes: SecuritySubPluginRoutes = [ path: DATA_QUALITY_PATH, component: DataQualityRoutes, }, - { - path: COVERAGE_OVERVIEW_PATH, - component: CoverageOverviewRoutes, - }, ]; diff --git a/x-pack/plugins/security_solution/public/plugin_contract.ts b/x-pack/plugins/security_solution/public/plugin_contract.ts index 06d72e736b041..a96572e006f89 100644 --- a/x-pack/plugins/security_solution/public/plugin_contract.ts +++ b/x-pack/plugins/security_solution/public/plugin_contract.ts @@ -7,13 +7,14 @@ import { BehaviorSubject } from 'rxjs'; import type { RouteProps } from 'react-router-dom'; -import { UpsellingService } from './common/lib/upsellings'; +import { UpsellingService } from '@kbn/security-solution-upselling/service'; import type { ContractStartServices, PluginSetup, PluginStart } from './types'; import type { AppLinksSwitcher } from './common/links'; import { navLinks$ } from './common/links/nav_links'; import { breadcrumbsNav$ } from './common/breadcrumbs'; export class PluginContract { + public isILMAvailable$: BehaviorSubject; public isSidebarEnabled$: BehaviorSubject; public getStartedComponent$: BehaviorSubject; public upsellingService: UpsellingService; @@ -22,6 +23,7 @@ export class PluginContract { constructor() { this.extraRoutes$ = new BehaviorSubject([]); + this.isILMAvailable$ = new BehaviorSubject(true); this.isSidebarEnabled$ = new BehaviorSubject(true); this.getStartedComponent$ = new BehaviorSubject(null); this.upsellingService = new UpsellingService(); @@ -31,6 +33,7 @@ export class PluginContract { public getStartServices(): ContractStartServices { return { extraRoutes$: this.extraRoutes$.asObservable(), + isILMAvailable$: this.isILMAvailable$.asObservable(), isSidebarEnabled$: this.isSidebarEnabled$.asObservable(), getStartedComponent$: this.getStartedComponent$.asObservable(), upselling: this.upsellingService, @@ -52,6 +55,7 @@ export class PluginContract { setExtraRoutes: (extraRoutes) => this.extraRoutes$.next(extraRoutes), setIsSidebarEnabled: (isSidebarEnabled: boolean) => this.isSidebarEnabled$.next(isSidebarEnabled), + setIsILMAvailable: (isILMAvailable: boolean) => this.isILMAvailable$.next(isILMAvailable), setGetStartedPage: (getStartedComponent) => { this.getStartedComponent$.next(getStartedComponent); }, diff --git a/x-pack/plugins/security_solution/public/rules/landing.tsx b/x-pack/plugins/security_solution/public/rules/landing.tsx index aaf28d48d0bd7..e934c917a9d30 100644 --- a/x-pack/plugins/security_solution/public/rules/landing.tsx +++ b/x-pack/plugins/security_solution/public/rules/landing.tsx @@ -7,14 +7,13 @@ import React from 'react'; import { i18n } from '@kbn/i18n'; import { TrackApplicationView } from '@kbn/usage-collection-plugin/public'; -import { EuiFlexGroup, EuiFlexItem, EuiSpacer } from '@elastic/eui'; +import { EuiSpacer } from '@elastic/eui'; import { LandingLinksIconsCategories } from '@kbn/security-solution-navigation/landing_links'; import { SecurityPageName } from '../../common'; import { PluginTemplateWrapper } from '../common/components/plugin_template_wrapper'; import { SecuritySolutionPageWrapper } from '../common/components/page_wrapper'; import { SpyRoute } from '../common/utils/route/spy_routes'; import { Title } from '../common/components/header_page/title'; -import { SecuritySolutionLinkButton } from '../common/components/links'; import { useRootNavLink } from '../common/links/nav_links'; import { useGlobalQueryString } from '../common/utils/global_query_string'; import { trackLandingLinkClick } from '../common/lib/telemetry/trackers'; @@ -23,23 +22,6 @@ const RULES_PAGE_TITLE = i18n.translate('xpack.securitySolution.rules.landing.pa defaultMessage: 'Rules', }); -const CREATE_RULE_BUTTON = i18n.translate('xpack.securitySolution.rules.landing.createRule', { - defaultMessage: 'Create rule', -}); - -const RulesLandingHeader: React.FC = () => ( - - - - </EuiFlexItem> - <EuiFlexItem grow={false}> - <SecuritySolutionLinkButton deepLinkId={SecurityPageName.rulesCreate} iconType="plusInCircle"> - {CREATE_RULE_BUTTON} - </SecuritySolutionLinkButton> - </EuiFlexItem> - </EuiFlexGroup> -); - export const RulesLandingPage = () => { const { links = [], categories = [] } = useRootNavLink(SecurityPageName.rulesLanding) ?? {}; const urlState = useGlobalQueryString(); @@ -48,7 +30,7 @@ export const RulesLandingPage = () => { <PluginTemplateWrapper> <TrackApplicationView viewId={SecurityPageName.rulesLanding}> <SecuritySolutionPageWrapper> - <RulesLandingHeader /> + <Title title={RULES_PAGE_TITLE} /> <EuiSpacer size="xl" /> <LandingLinksIconsCategories links={links} diff --git a/x-pack/plugins/security_solution/public/rules/links.ts b/x-pack/plugins/security_solution/public/rules/links.ts index 4e6482ab67bbd..276a4f1b2f7af 100644 --- a/x-pack/plugins/security_solution/public/rules/links.ts +++ b/x-pack/plugins/security_solution/public/rules/links.ts @@ -13,13 +13,22 @@ import { RULES_LANDING_PATH, RULES_ADD_PATH, SERVER_APP_ID, + COVERAGE_OVERVIEW_PATH, } from '../../common/constants'; -import { ADD_RULES, CREATE_NEW_RULE, EXCEPTIONS, RULES, SIEM_RULES } from '../app/translations'; +import { + ADD_RULES, + COVERAGE_OVERVIEW, + CREATE_NEW_RULE, + EXCEPTIONS, + RULES, + SIEM_RULES, +} from '../app/translations'; import { SecurityPageName } from '../app/types'; import { benchmarksLink } from '../cloud_security_posture/links'; import type { LinkItem } from '../common/links'; import { IconConsoleCloud } from '../common/icons/console_cloud'; import { IconRollup } from '../common/icons/rollup'; +import { IconDashboards } from '../common/icons/dashboards'; export const links: LinkItem = { id: SecurityPageName.rulesLanding, @@ -78,6 +87,25 @@ export const links: LinkItem = { ], }, benchmarksLink, + { + id: SecurityPageName.coverageOverview, + title: COVERAGE_OVERVIEW, + landingIcon: IconDashboards, + description: i18n.translate( + 'xpack.securitySolution.appLinks.coverageOverviewDashboardDescription', + { + defaultMessage: 'Review and maintain your protections MITRE ATT&CK® coverage', + } + ), + path: COVERAGE_OVERVIEW_PATH, + capabilities: [`${SERVER_APP_ID}.show`], + globalSearchKeywords: [ + i18n.translate('xpack.securitySolution.appLinks.coverageOverviewDashboard', { + defaultMessage: 'MITRE ATT&CK Coverage', + }), + ], + experimentalKey: 'detectionsCoverageOverview', + }, ], categories: [ { @@ -90,5 +118,11 @@ export const links: LinkItem = { SecurityPageName.exceptions, ], }, + { + label: i18n.translate('xpack.securitySolution.appLinks.category.discover', { + defaultMessage: 'Discover', + }), + linkIds: [SecurityPageName.coverageOverview], + }, ], }; diff --git a/x-pack/plugins/security_solution/public/rules/routes.tsx b/x-pack/plugins/security_solution/public/rules/routes.tsx index e5f3360f189d5..aefdd505c95e0 100644 --- a/x-pack/plugins/security_solution/public/rules/routes.tsx +++ b/x-pack/plugins/security_solution/public/rules/routes.tsx @@ -10,7 +10,12 @@ import { Routes, Route } from '@kbn/shared-ux-router'; import { TrackApplicationView } from '@kbn/usage-collection-plugin/public'; import * as i18n from './translations'; -import { RULES_LANDING_PATH, RULES_PATH, SecurityPageName } from '../../common/constants'; +import { + COVERAGE_OVERVIEW_PATH, + RULES_LANDING_PATH, + RULES_PATH, + SecurityPageName, +} from '../../common/constants'; import { NotFoundPage } from '../app/404'; import { RulesPage } from '../detection_engine/rule_management_ui/pages/rule_management'; import { CreateRulePage } from '../detection_engine/rule_creation_ui/pages/rule_creation'; @@ -26,6 +31,8 @@ import { AllRulesTabs } from '../detection_engine/rule_management_ui/components/ import { AddRulesPage } from '../detection_engine/rule_management_ui/pages/add_rules'; import type { SecuritySubPluginRoutes } from '../app/types'; import { RulesLandingPage } from './landing'; +import { useIsExperimentalFeatureEnabled } from '../common/hooks/use_experimental_features'; +import { CoverageOverviewPage } from '../detection_engine/rule_management_ui/pages/coverage_overview'; const RulesSubRoutes = [ { @@ -102,6 +109,22 @@ const RulesContainerComponent: React.FC = () => { const Rules = React.memo(RulesContainerComponent); +const CoverageOverviewRoutes = () => { + const isDetectionsCoverageOverviewEnabled = useIsExperimentalFeatureEnabled( + 'detectionsCoverageOverview' + ); + + return isDetectionsCoverageOverviewEnabled ? ( + <PluginTemplateWrapper> + <TrackApplicationView viewId={SecurityPageName.coverageOverview}> + <CoverageOverviewPage /> + </TrackApplicationView> + </PluginTemplateWrapper> + ) : ( + <Redirect to={SecurityPageName.landing} /> + ); +}; + export const routes: SecuritySubPluginRoutes = [ { path: RULES_LANDING_PATH, @@ -111,4 +134,8 @@ export const routes: SecuritySubPluginRoutes = [ path: RULES_PATH, component: Rules, }, + { + path: COVERAGE_OVERVIEW_PATH, + component: CoverageOverviewRoutes, + }, ]; diff --git a/x-pack/plugins/security_solution/public/timelines/components/graph_overlay/index.tsx b/x-pack/plugins/security_solution/public/timelines/components/graph_overlay/index.tsx index 5a888fccf7b12..7b686f1bbc113 100644 --- a/x-pack/plugins/security_solution/public/timelines/components/graph_overlay/index.tsx +++ b/x-pack/plugins/security_solution/public/timelines/components/graph_overlay/index.tsx @@ -50,6 +50,7 @@ const OverlayContainer = styled.div` `; const FullScreenOverlayStyles = css` + background-color: ${({ theme }) => `${theme.eui.euiColorEmptyShade};`} position: fixed; top: 0; bottom: 2em; diff --git a/x-pack/plugins/security_solution/public/timelines/components/side_panel/index.test.tsx b/x-pack/plugins/security_solution/public/timelines/components/side_panel/index.test.tsx index 25ceb5836b908..8895d1307c89b 100644 --- a/x-pack/plugins/security_solution/public/timelines/components/side_panel/index.test.tsx +++ b/x-pack/plugins/security_solution/public/timelines/components/side_panel/index.test.tsx @@ -114,6 +114,8 @@ describe('Details Panel Component', () => { describe('DetailsPanel: rendering', () => { beforeEach(() => { (useAssistantAvailability as jest.Mock).mockReturnValue({ + hasConnectorsAllPrivilege: true, + hasConnectorsReadPrivilege: true, hasAssistantPrivilege: false, isAssistantEnabled: true, }); diff --git a/x-pack/plugins/security_solution/public/types.ts b/x-pack/plugins/security_solution/public/types.ts index ce754bdc29307..e958e22019c54 100644 --- a/x-pack/plugins/security_solution/public/types.ts +++ b/x-pack/plugins/security_solution/public/types.ts @@ -54,6 +54,7 @@ import type { RouteProps } from 'react-router-dom'; import type { DiscoverStart } from '@kbn/discover-plugin/public'; import type { NavigationPublicPluginStart } from '@kbn/navigation-plugin/public'; import type { DataViewEditorStart } from '@kbn/data-view-editor-plugin/public'; +import type { UpsellingService } from '@kbn/security-solution-upselling/service'; import type { ResolverPluginSetup } from './resolver/types'; import type { Inspect } from '../common/search_strategy'; import type { Detections } from './detections'; @@ -74,7 +75,6 @@ import type { EntityAnalytics } from './entity_analytics'; import type { TelemetryClientStart } from './common/lib/telemetry'; import type { Dashboards } from './dashboards'; -import type { UpsellingService } from './common/lib/upsellings'; import type { BreadcrumbsNav } from './common/breadcrumbs/types'; import type { TopValuesPopoverService } from './app/components/top_values_popover/top_values_popover_service'; @@ -139,6 +139,7 @@ export interface StartPluginsDependencies extends StartPlugins { export interface ContractStartServices { extraRoutes$: Observable<RouteProps[]>; + isILMAvailable$: Observable<boolean>; isSidebarEnabled$: Observable<boolean>; getStartedComponent$: Observable<React.ComponentType | null>; upselling: UpsellingService; @@ -175,6 +176,7 @@ export interface PluginSetup { export interface PluginStart { getNavLinks$: () => Observable<NavigationLink[]>; setExtraRoutes: (extraRoutes: RouteProps[]) => void; + setIsILMAvailable: (isILMAvailable: boolean) => void; setIsSidebarEnabled: (isSidebarEnabled: boolean) => void; setGetStartedPage: (getStartedComponent: React.ComponentType) => void; getBreadcrumbsNav$: () => Observable<BreadcrumbsNav>; diff --git a/x-pack/plugins/security_solution/scripts/endpoint/common/screen/column_layout_formatter.ts b/x-pack/plugins/security_solution/scripts/endpoint/common/screen/column_layout_formatter.ts index ab07ddd535534..6bdb5f006f296 100644 --- a/x-pack/plugins/security_solution/scripts/endpoint/common/screen/column_layout_formatter.ts +++ b/x-pack/plugins/security_solution/scripts/endpoint/common/screen/column_layout_formatter.ts @@ -6,8 +6,7 @@ */ import stripAnsi from 'strip-ansi'; -// eslint-disable-next-line import/no-extraneous-dependencies -import ansiRegex from 'ansi-regex'; // its a dependency of `strip-ansi` so it should be fine +import ansiRegex from 'ansi-regex'; import { blue } from 'chalk'; import { DataFormatter } from './data_formatter'; import { SCREEN_ROW_MAX_WIDTH } from './constants'; diff --git a/x-pack/plugins/security_solution/scripts/openapi/template_service/templates/schema_item.handlebars b/x-pack/plugins/security_solution/scripts/openapi/template_service/templates/schema_item.handlebars index 87ce8e58105c7..2d544a702ac00 100644 --- a/x-pack/plugins/security_solution/scripts/openapi/template_service/templates/schema_item.handlebars +++ b/x-pack/plugins/security_solution/scripts/openapi/template_service/templates/schema_item.handlebars @@ -78,6 +78,7 @@ z.unknown() {{@key}}: {{> schema_item requiredBool=(includes ../required @key)}}, {{/each}} }) + {{#if (eq additionalProperties false)}}.strict(){{/if}} {{~/inline~}} {{~#*inline "type_string"~}} diff --git a/x-pack/plugins/security_solution/scripts/run_cypress/parallel.ts b/x-pack/plugins/security_solution/scripts/run_cypress/parallel.ts index 19f409fb6a567..f029fc79ca0e8 100644 --- a/x-pack/plugins/security_solution/scripts/run_cypress/parallel.ts +++ b/x-pack/plugins/security_solution/scripts/run_cypress/parallel.ts @@ -16,6 +16,7 @@ import cypress from 'cypress'; import { findChangedFiles } from 'find-cypress-specs'; import minimatch from 'minimatch'; import path from 'path'; +import grep from '@cypress/grep/src/plugin'; import { EsVersion, @@ -35,19 +36,17 @@ import { createFailError } from '@kbn/dev-cli-errors'; import pRetry from 'p-retry'; import { renderSummaryTable } from './print_run'; import { getLocalhostRealIp } from '../endpoint/common/localhost_services'; -import { parseTestFileConfig } from './utils'; +import { isSkipped, parseTestFileConfig } from './utils'; /** * Retrieve test files using a glob pattern. * If process.env.RUN_ALL_TESTS is true, returns all matching files, otherwise, return files that should be run by this job based on process.env.BUILDKITE_PARALLEL_JOB_COUNT and process.env.BUILDKITE_PARALLEL_JOB */ -const retrieveIntegrations = ( - /** Pattern passed to globby to find spec files. */ specPattern: string[] -) => { - const integrationsPaths = globby.sync(specPattern); +const retrieveIntegrations = (integrationsPaths: string[]) => { + const nonSkippedSpecs = integrationsPaths.filter((filePath) => !isSkipped(filePath)); if (process.env.RUN_ALL_TESTS === 'true') { - return integrationsPaths; + return nonSkippedSpecs; } else { // The number of instances of this job were created const chunksTotal: number = process.env.BUILDKITE_PARALLEL_JOB_COUNT @@ -58,13 +57,13 @@ const retrieveIntegrations = ( ? parseInt(process.env.BUILDKITE_PARALLEL_JOB, 10) : 0; - const integrationsPathsForChunk: string[] = []; + const nonSkippedSpecsForChunk: string[] = []; - for (let i = chunkIndex; i < integrationsPaths.length; i += chunksTotal) { - integrationsPathsForChunk.push(integrationsPaths[i]); + for (let i = chunkIndex; i < nonSkippedSpecs.length; i += chunksTotal) { + nonSkippedSpecsForChunk.push(nonSkippedSpecs[i]); } - return integrationsPathsForChunk; + return nonSkippedSpecsForChunk; } }; @@ -89,7 +88,17 @@ export const cli = () => { ) as string; const cypressConfigFile = await import(cypressConfigFilePath); const spec: string | undefined = argv?.spec as string; - let files = retrieveIntegrations(spec ? [spec] : cypressConfigFile?.e2e?.specPattern); + const grepSpecPattern = grep({ + ...cypressConfigFile, + specPattern: spec ?? cypressConfigFile.e2e.specPattern, + excludeSpecPattern: [], + }).specPattern; + + let files = retrieveIntegrations( + _.isArray(grepSpecPattern) + ? grepSpecPattern + : globby.sync(spec ? [spec] : cypressConfigFile.e2e.specPattern) + ); if (argv.changedSpecsOnly) { const basePath = process.cwd().split('kibana/')[1]; @@ -112,7 +121,8 @@ export const cli = () => { } if (!files?.length) { - throw new Error('No files found'); + // eslint-disable-next-line no-process-exit + return process.exit(0); } const esPorts: number[] = [9200, 9220]; @@ -266,9 +276,18 @@ export const cli = () => { } if (hasFleetServerArgs) { + vars.kbnTestServer.serverArgs.push( + `--xpack.fleet.agents.fleet_server.hosts=["https://${hostRealIp}:${fleetServerPort}"]` + ); vars.kbnTestServer.serverArgs.push( `--xpack.fleet.agents.elasticsearch.host=http://${hostRealIp}:${esPort}` ); + + if (vars.serverless) { + vars.kbnTestServer.serverArgs.push( + `--xpack.fleet.internal.fleetServerStandalone=false` + ); + } } // Serverless Specific @@ -337,16 +356,20 @@ ${JSON.stringify(config.getAll(), null, 2)} { retries: 2, forever: false } ); - await runKibanaServer({ - procs, - config, - installDir: options?.installDir, - extraKbnOpts: - options?.installDir || options?.ci || !isOpen - ? [] - : ['--dev', '--no-dev-config', '--no-dev-credentials'], - onEarlyExit, - }); + await pRetry( + async () => + runKibanaServer({ + procs, + config, + installDir: options?.installDir, + extraKbnOpts: + options?.installDir || options?.ci || !isOpen + ? [] + : ['--dev', '--no-dev-config', '--no-dev-credentials'], + onEarlyExit, + }), + { retries: 2, forever: false } + ); await providers.loadAll(); @@ -469,11 +492,7 @@ ${JSON.stringify(cyCustomEnv, null, 2)} return result; }, { - concurrency: (argv.concurrency as number | undefined) - ? (argv.concurrency as number) - : !isOpen - ? 2 - : 1, + concurrency: 1, } ).then((results) => { renderSummaryTable(results as CypressCommandLine.CypressRunResult[]); diff --git a/x-pack/plugins/security_solution/scripts/run_cypress/utils.ts b/x-pack/plugins/security_solution/scripts/run_cypress/utils.ts index e0338c57f1ae7..fdaf5aeac1288 100644 --- a/x-pack/plugins/security_solution/scripts/run_cypress/utils.ts +++ b/x-pack/plugins/security_solution/scripts/run_cypress/utils.ts @@ -13,6 +13,24 @@ import type { ExpressionStatement, ObjectExpression, ObjectProperty } from '@bab import { schema, type TypeOf } from '@kbn/config-schema'; import { getExperimentalAllowedValues } from '../../common/experimental_features'; +export const isSkipped = (filePath: string): boolean => { + const testFile = fs.readFileSync(filePath, { encoding: 'utf8' }); + + const ast = parser.parse(testFile, { + sourceType: 'module', + plugins: ['typescript'], + }); + + const expressionStatement = _.find(ast.program.body, ['type', 'ExpressionStatement']) as + | ExpressionStatement + | undefined; + + const callExpression = expressionStatement?.expression; + + // @ts-expect-error + return callExpression?.callee?.property?.name === 'skip'; +}; + export const parseTestFileConfig = (filePath: string): SecuritySolutionDescribeBlockFtrConfig => { const testFile = fs.readFileSync(filePath, { encoding: 'utf8' }); diff --git a/x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts b/x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts index d1c07d203d580..3b9690c902fc8 100644 --- a/x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts +++ b/x-pack/plugins/security_solution/server/endpoint/lib/artifacts/lists.ts @@ -14,14 +14,15 @@ import type { FoundExceptionListItemSchema, } from '@kbn/securitysolution-io-ts-list-types'; import type { OperatingSystem } from '@kbn/securitysolution-utils'; -import { hasSimpleExecutableName } from '@kbn/securitysolution-utils'; +import { EntryFieldType, hasSimpleExecutableName } from '@kbn/securitysolution-utils'; -import type { - ENDPOINT_BLOCKLISTS_LIST_ID, - ENDPOINT_EVENT_FILTERS_LIST_ID, - ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID, - ENDPOINT_LIST_ID, - ENDPOINT_TRUSTED_APPS_LIST_ID, +import { + ENDPOINT_ARTIFACT_LISTS, + type ENDPOINT_BLOCKLISTS_LIST_ID, + type ENDPOINT_EVENT_FILTERS_LIST_ID, + type ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID, + type ENDPOINT_LIST_ID, + type ENDPOINT_TRUSTED_APPS_LIST_ID, } from '@kbn/securitysolution-list-constants'; import type { ExceptionListClient } from '@kbn/lists-plugin/server'; import { validate } from '@kbn/securitysolution-io-ts-utils'; @@ -159,13 +160,36 @@ export function translateToEndpointExceptions( const entriesFiltered: TranslatedExceptionListItem[] = []; if (schemaVersion === 'v1') { exceptions.forEach((entry) => { - const translatedItem = translateItem(schemaVersion, entry); - const entryHash = createHash('sha256').update(JSON.stringify(translatedItem)).digest('hex'); - if (!entrySet.has(entryHash)) { - entriesFiltered.push(translatedItem); - entrySet.add(entryHash); + // For Blocklist, we create a single entry for each blocklist entry item + // if there is an entry with more than one hash type. + if ( + entry.list_id === ENDPOINT_ARTIFACT_LISTS.blocklists.id && + entry.entries.length > 1 && + !!entry.entries[0].field.match(EntryFieldType.HASH) + ) { + entry.entries.forEach((blocklistSingleEntry) => { + const translatedItem = translateItem(schemaVersion, { + ...entry, + entries: [blocklistSingleEntry], + }); + const entryHash = createHash('sha256') + .update(JSON.stringify(translatedItem)) + .digest('hex'); + if (!entrySet.has(entryHash)) { + entriesFiltered.push(translatedItem); + entrySet.add(entryHash); + } + }); + } else { + const translatedItem = translateItem(schemaVersion, entry); + const entryHash = createHash('sha256').update(JSON.stringify(translatedItem)).digest('hex'); + if (!entrySet.has(entryHash)) { + entriesFiltered.push(translatedItem); + entrySet.add(entryHash); + } } }); + return entriesFiltered; } else { throw new Error('unsupported schemaVersion'); diff --git a/x-pack/plugins/security_solution/server/endpoint/routes/error_handler.ts b/x-pack/plugins/security_solution/server/endpoint/routes/error_handler.ts index f7ffa856d6f6c..a14303e0004ee 100644 --- a/x-pack/plugins/security_solution/server/endpoint/routes/error_handler.ts +++ b/x-pack/plugins/security_solution/server/endpoint/routes/error_handler.ts @@ -6,6 +6,7 @@ */ import type { IKibanaResponse, KibanaResponseFactory, Logger } from '@kbn/core/server'; +import { FleetFileNotFound } from '@kbn/fleet-plugin/server/errors'; import { CustomHttpRequestError } from '../../utils/custom_http_request_error'; import { NotFoundError } from '../errors'; import { EndpointHostUnEnrolledError, EndpointHostNotFoundError } from '../services/metadata'; @@ -38,7 +39,7 @@ export const errorHandler = <E extends Error>( }); } - if (error instanceof NotFoundError) { + if (error instanceof NotFoundError || error instanceof FleetFileNotFound) { return res.notFound({ body: error }); } diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.ts index f6c69ccd8a88b..4848cb5e52c4e 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/get_prebuilt_rules_and_timelines_status/get_prebuilt_rules_and_timelines_status_route.ts @@ -13,8 +13,8 @@ import type { SetupPlugins } from '../../../../../plugin'; import type { SecuritySolutionPluginRouter } from '../../../../../types'; import { - PREBUILT_RULES_STATUS_URL, GetPrebuiltRulesAndTimelinesStatusResponse, + PREBUILT_RULES_STATUS_URL, } from '../../../../../../common/api/detection_engine/prebuilt_rules'; import { getExistingPrepackagedRules } from '../../../rule_management/logic/search/get_existing_prepackaged_rules'; @@ -31,75 +31,74 @@ export const getPrebuiltRulesAndTimelinesStatusRoute = ( router: SecuritySolutionPluginRouter, security: SetupPlugins['security'] ) => { - router.get( - { + router.versioned + .get({ + access: 'public', path: PREBUILT_RULES_STATUS_URL, - validate: false, options: { tags: ['access:securitySolution'], }, - }, - async (context, request, response) => { - const siemResponse = buildSiemResponse(response); - const ctx = await context.resolve(['core', 'alerting']); - const savedObjectsClient = ctx.core.savedObjects.client; - const rulesClient = ctx.alerting.getRulesClient(); - const ruleAssetsClient = createPrebuiltRuleAssetsClient(savedObjectsClient); - - try { - const latestPrebuiltRules = await ruleAssetsClient.fetchLatestAssets(); + }) + .addVersion( + { + version: '2023-10-31', + validate: false, + }, + async (context, request, response) => { + const siemResponse = buildSiemResponse(response); + const ctx = await context.resolve(['core', 'alerting']); + const savedObjectsClient = ctx.core.savedObjects.client; + const rulesClient = ctx.alerting.getRulesClient(); + const ruleAssetsClient = createPrebuiltRuleAssetsClient(savedObjectsClient); - const customRules = await findRules({ - rulesClient, - perPage: 1, - page: 1, - sortField: 'enabled', - sortOrder: 'desc', - filter: 'alert.attributes.params.immutable: false', - fields: undefined, - }); + try { + const latestPrebuiltRules = await ruleAssetsClient.fetchLatestAssets(); - const installedPrebuiltRules = rulesToMap( - await getExistingPrepackagedRules({ rulesClient }) - ); + const customRules = await findRules({ + rulesClient, + perPage: 1, + page: 1, + sortField: 'enabled', + sortOrder: 'desc', + filter: 'alert.attributes.params.immutable: false', + fields: undefined, + }); - const rulesToInstall = getRulesToInstall(latestPrebuiltRules, installedPrebuiltRules); - const rulesToUpdate = getRulesToUpdate(latestPrebuiltRules, installedPrebuiltRules); + const installedPrebuiltRules = rulesToMap( + await getExistingPrepackagedRules({ rulesClient }) + ); - const frameworkRequest = await buildFrameworkRequest(context, security, request); - const prebuiltTimelineStatus = await checkTimelinesStatus(frameworkRequest); - const [validatedPrebuiltTimelineStatus] = validate( - prebuiltTimelineStatus, - checkTimelineStatusRt - ); + const rulesToInstall = getRulesToInstall(latestPrebuiltRules, installedPrebuiltRules); + const rulesToUpdate = getRulesToUpdate(latestPrebuiltRules, installedPrebuiltRules); - const responseBody: GetPrebuiltRulesAndTimelinesStatusResponse = { - rules_custom_installed: customRules.total, - rules_installed: installedPrebuiltRules.size, - rules_not_installed: rulesToInstall.length, - rules_not_updated: rulesToUpdate.length, - timelines_installed: validatedPrebuiltTimelineStatus?.prepackagedTimelines.length ?? 0, - timelines_not_installed: validatedPrebuiltTimelineStatus?.timelinesToInstall.length ?? 0, - timelines_not_updated: validatedPrebuiltTimelineStatus?.timelinesToUpdate.length ?? 0, - }; + const frameworkRequest = await buildFrameworkRequest(context, security, request); + const prebuiltTimelineStatus = await checkTimelinesStatus(frameworkRequest); + const [validatedPrebuiltTimelineStatus] = validate( + prebuiltTimelineStatus, + checkTimelineStatusRt + ); - const [validatedBody, validationError] = validate( - responseBody, - GetPrebuiltRulesAndTimelinesStatusResponse - ); + const responseBody: GetPrebuiltRulesAndTimelinesStatusResponse = { + rules_custom_installed: customRules.total, + rules_installed: installedPrebuiltRules.size, + rules_not_installed: rulesToInstall.length, + rules_not_updated: rulesToUpdate.length, + timelines_installed: validatedPrebuiltTimelineStatus?.prepackagedTimelines.length ?? 0, + timelines_not_installed: + validatedPrebuiltTimelineStatus?.timelinesToInstall.length ?? 0, + timelines_not_updated: validatedPrebuiltTimelineStatus?.timelinesToUpdate.length ?? 0, + }; - if (validationError != null) { - return siemResponse.error({ statusCode: 500, body: validationError }); - } else { - return response.ok({ body: validatedBody ?? {} }); + return response.ok({ + body: GetPrebuiltRulesAndTimelinesStatusResponse.parse(responseBody), + }); + } catch (err) { + const error = transformError(err); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); } - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/get_prebuilt_rules_status/get_prebuilt_rules_status_route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/get_prebuilt_rules_status/get_prebuilt_rules_status_route.ts index 159591e273a37..a5596ca4c8498 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/get_prebuilt_rules_status/get_prebuilt_rules_status_route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/get_prebuilt_rules_status/get_prebuilt_rules_status_route.ts @@ -16,48 +16,53 @@ import { fetchRuleVersionsTriad } from '../../logic/rule_versions/fetch_rule_ver import { getVersionBuckets } from '../../model/rule_versions/get_version_buckets'; export const getPrebuiltRulesStatusRoute = (router: SecuritySolutionPluginRouter) => { - router.get( - { + router.versioned + .get({ + access: 'internal', path: GET_PREBUILT_RULES_STATUS_URL, - validate: {}, options: { tags: ['access:securitySolution'], }, - }, - async (context, request, response) => { - const siemResponse = buildSiemResponse(response); + }) + .addVersion( + { + version: '1', + validate: {}, + }, + async (context, request, response) => { + const siemResponse = buildSiemResponse(response); - try { - const ctx = await context.resolve(['core', 'alerting']); - const soClient = ctx.core.savedObjects.client; - const rulesClient = ctx.alerting.getRulesClient(); - const ruleAssetsClient = createPrebuiltRuleAssetsClient(soClient); - const ruleObjectsClient = createPrebuiltRuleObjectsClient(rulesClient); + try { + const ctx = await context.resolve(['core', 'alerting']); + const soClient = ctx.core.savedObjects.client; + const rulesClient = ctx.alerting.getRulesClient(); + const ruleAssetsClient = createPrebuiltRuleAssetsClient(soClient); + const ruleObjectsClient = createPrebuiltRuleObjectsClient(rulesClient); - const ruleVersionsMap = await fetchRuleVersionsTriad({ - ruleAssetsClient, - ruleObjectsClient, - }); - const { currentRules, installableRules, upgradeableRules, totalAvailableRules } = - getVersionBuckets(ruleVersionsMap); + const ruleVersionsMap = await fetchRuleVersionsTriad({ + ruleAssetsClient, + ruleObjectsClient, + }); + const { currentRules, installableRules, upgradeableRules, totalAvailableRules } = + getVersionBuckets(ruleVersionsMap); - const body: GetPrebuiltRulesStatusResponseBody = { - stats: { - num_prebuilt_rules_installed: currentRules.length, - num_prebuilt_rules_to_install: installableRules.length, - num_prebuilt_rules_to_upgrade: upgradeableRules.length, - num_prebuilt_rules_total_in_package: totalAvailableRules.length, - }, - }; + const body: GetPrebuiltRulesStatusResponseBody = { + stats: { + num_prebuilt_rules_installed: currentRules.length, + num_prebuilt_rules_to_install: installableRules.length, + num_prebuilt_rules_to_upgrade: upgradeableRules.length, + num_prebuilt_rules_total_in_package: totalAvailableRules.length, + }, + }; - return response.ok({ body }); - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); + return response.ok({ body }); + } catch (err) { + const error = transformError(err); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); + } } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/install_prebuilt_rules_and_timelines/install_prebuilt_rules_and_timelines_route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/install_prebuilt_rules_and_timelines/install_prebuilt_rules_and_timelines_route.ts index 711565e5e793d..92f610391753e 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/install_prebuilt_rules_and_timelines/install_prebuilt_rules_and_timelines_route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/install_prebuilt_rules_and_timelines/install_prebuilt_rules_and_timelines_route.ts @@ -30,10 +30,10 @@ import { upgradePrebuiltRules } from '../../logic/rule_objects/upgrade_prebuilt_ import { rulesToMap } from '../../logic/utils'; export const installPrebuiltRulesAndTimelinesRoute = (router: SecuritySolutionPluginRouter) => { - router.put( - { + router.versioned + .put({ + access: 'public', path: PREBUILT_RULES_URL, - validate: false, options: { tags: ['access:securitySolution'], timeout: { @@ -44,28 +44,33 @@ export const installPrebuiltRulesAndTimelinesRoute = (router: SecuritySolutionPl idleSocket: moment.duration('1', 'hour').asMilliseconds(), }, }, - }, - async (context, _, response) => { - const siemResponse = buildSiemResponse(response); - - try { - const rulesClient = (await context.alerting).getRulesClient(); - - const validated = await createPrepackagedRules( - await context.securitySolution, - rulesClient, - undefined - ); - return response.ok({ body: validated ?? {} }); - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); + }) + .addVersion( + { + version: '2023-10-31', + validate: false, + }, + async (context, _, response) => { + const siemResponse = buildSiemResponse(response); + + try { + const rulesClient = (await context.alerting).getRulesClient(); + + const validated = await createPrepackagedRules( + await context.securitySolution, + rulesClient, + undefined + ); + return response.ok({ body: validated ?? {} }); + } catch (err) { + const error = transformError(err); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); + } } - } - ); + ); }; export class PrepackagedRulesError extends Error { diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/perform_rule_installation/perform_rule_installation_route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/perform_rule_installation/perform_rule_installation_route.ts index b87db8619a99c..dd6437ccc8e29 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/perform_rule_installation/perform_rule_installation_route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/perform_rule_installation/perform_rule_installation_route.ts @@ -30,113 +30,120 @@ import { getVersionBuckets } from '../../model/rule_versions/get_version_buckets import { performTimelinesInstallation } from '../../logic/perform_timelines_installation'; export const performRuleInstallationRoute = (router: SecuritySolutionPluginRouter) => { - router.post( - { + router.versioned + .post({ + access: 'internal', path: PERFORM_RULE_INSTALLATION_URL, - validate: { - body: buildRouteValidation(PerformRuleInstallationRequestBody), - }, options: { tags: ['access:securitySolution'], }, - }, - async (context, request, response) => { - const siemResponse = buildSiemResponse(response); + }) + .addVersion( + { + version: '1', + validate: { + request: { + body: buildRouteValidation(PerformRuleInstallationRequestBody), + }, + }, + }, + async (context, request, response) => { + const siemResponse = buildSiemResponse(response); - try { - const ctx = await context.resolve(['core', 'alerting', 'securitySolution']); - const config = ctx.securitySolution.getConfig(); - const soClient = ctx.core.savedObjects.client; - const rulesClient = ctx.alerting.getRulesClient(); - const ruleAssetsClient = createPrebuiltRuleAssetsClient(soClient); - const ruleObjectsClient = createPrebuiltRuleObjectsClient(rulesClient); - const exceptionsListClient = ctx.securitySolution.getExceptionListClient(); + try { + const ctx = await context.resolve(['core', 'alerting', 'securitySolution']); + const config = ctx.securitySolution.getConfig(); + const soClient = ctx.core.savedObjects.client; + const rulesClient = ctx.alerting.getRulesClient(); + const ruleAssetsClient = createPrebuiltRuleAssetsClient(soClient); + const ruleObjectsClient = createPrebuiltRuleObjectsClient(rulesClient); + const exceptionsListClient = ctx.securitySolution.getExceptionListClient(); - const { mode } = request.body; + const { mode } = request.body; - // This will create the endpoint list if it does not exist yet - await exceptionsListClient?.createEndpointList(); + // This will create the endpoint list if it does not exist yet + await exceptionsListClient?.createEndpointList(); - // If this API is used directly without hitting any detection engine - // pages first, the rules package might be missing. - await ensureLatestRulesPackageInstalled(ruleAssetsClient, config, ctx.securitySolution); + // If this API is used directly without hitting any detection engine + // pages first, the rules package might be missing. + await ensureLatestRulesPackageInstalled(ruleAssetsClient, config, ctx.securitySolution); - const fetchErrors: Array<PromisePoolError<{ rule_id: string }>> = []; - const skippedRules: SkippedRuleInstall[] = []; + const fetchErrors: Array<PromisePoolError<{ rule_id: string }>> = []; + const skippedRules: SkippedRuleInstall[] = []; - const ruleVersionsMap = await fetchRuleVersionsTriad({ - ruleAssetsClient, - ruleObjectsClient, - versionSpecifiers: mode === 'ALL_RULES' ? undefined : request.body.rules, - }); - const { currentRules, installableRules } = getVersionBuckets(ruleVersionsMap); + const ruleVersionsMap = await fetchRuleVersionsTriad({ + ruleAssetsClient, + ruleObjectsClient, + versionSpecifiers: mode === 'ALL_RULES' ? undefined : request.body.rules, + }); + const { currentRules, installableRules } = getVersionBuckets(ruleVersionsMap); - // Perform all the checks we can before we start the upgrade process - if (mode === 'SPECIFIC_RULES') { - const currentRuleIds = new Set(currentRules.map((rule) => rule.rule_id)); - const installableRuleIds = new Set(installableRules.map((rule) => rule.rule_id)); - request.body.rules.forEach((rule) => { - // Check that the requested rule is not installed yet - if (currentRuleIds.has(rule.rule_id)) { - skippedRules.push({ - rule_id: rule.rule_id, - reason: SkipRuleInstallReason.ALREADY_INSTALLED, - }); - return; - } + // Perform all the checks we can before we start the upgrade process + if (mode === 'SPECIFIC_RULES') { + const currentRuleIds = new Set(currentRules.map((rule) => rule.rule_id)); + const installableRuleIds = new Set(installableRules.map((rule) => rule.rule_id)); + request.body.rules.forEach((rule) => { + // Check that the requested rule is not installed yet + if (currentRuleIds.has(rule.rule_id)) { + skippedRules.push({ + rule_id: rule.rule_id, + reason: SkipRuleInstallReason.ALREADY_INSTALLED, + }); + return; + } - // Check that the requested rule is installable - if (!installableRuleIds.has(rule.rule_id)) { - fetchErrors.push({ - error: new Error( - `Rule with ID "${rule.rule_id}" and version "${rule.version}" not found` - ), - item: rule, - }); - } - }); - } + // Check that the requested rule is installable + if (!installableRuleIds.has(rule.rule_id)) { + fetchErrors.push({ + error: new Error( + `Rule with ID "${rule.rule_id}" and version "${rule.version}" not found` + ), + item: rule, + }); + } + }); + } - const { results: installedRules, errors: installationErrors } = await createPrebuiltRules( - rulesClient, - installableRules - ); - const ruleErrors = [...fetchErrors, ...installationErrors]; + const { results: installedRules, errors: installationErrors } = await createPrebuiltRules( + rulesClient, + installableRules + ); + const ruleErrors = [...fetchErrors, ...installationErrors]; - const { error: timelineInstallationError } = await performTimelinesInstallation( - ctx.securitySolution - ); + const { error: timelineInstallationError } = await performTimelinesInstallation( + ctx.securitySolution + ); - const allErrors = aggregatePrebuiltRuleErrors(ruleErrors); - if (timelineInstallationError) { - allErrors.push({ - message: timelineInstallationError, - rules: [], - }); - } + const allErrors = aggregatePrebuiltRuleErrors(ruleErrors); + if (timelineInstallationError) { + allErrors.push({ + message: timelineInstallationError, + rules: [], + }); + } - const body: PerformRuleInstallationResponseBody = { - summary: { - total: installedRules.length + skippedRules.length + ruleErrors.length, - succeeded: installedRules.length, - skipped: skippedRules.length, - failed: ruleErrors.length, - }, - results: { - created: installedRules.map(({ result }) => internalRuleToAPIResponse(result)), - skipped: skippedRules, - }, - errors: allErrors, - }; + const body: PerformRuleInstallationResponseBody = { + summary: { + total: installedRules.length + skippedRules.length + ruleErrors.length, + succeeded: installedRules.length, + skipped: skippedRules.length, + failed: ruleErrors.length, + }, + results: { + created: installedRules.map(({ result }) => internalRuleToAPIResponse(result)), + skipped: skippedRules, + }, + errors: allErrors, + }; - return response.ok({ body }); - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); + return response.ok({ body }); + } catch (err) { + const error = transformError(err); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); + } } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/perform_rule_upgrade/perform_rule_upgrade_route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/perform_rule_upgrade/perform_rule_upgrade_route.ts index d722d58244d06..3009495e32297 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/perform_rule_upgrade/perform_rule_upgrade_route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/perform_rule_upgrade/perform_rule_upgrade_route.ts @@ -32,158 +32,165 @@ import type { PrebuiltRuleAsset } from '../../model/rule_assets/prebuilt_rule_as import { getVersionBuckets } from '../../model/rule_versions/get_version_buckets'; export const performRuleUpgradeRoute = (router: SecuritySolutionPluginRouter) => { - router.post( - { + router.versioned + .post({ + access: 'internal', path: PERFORM_RULE_UPGRADE_URL, - validate: { - body: buildRouteValidation(PerformRuleUpgradeRequestBody), - }, options: { tags: ['access:securitySolution'], }, - }, - async (context, request, response) => { - const siemResponse = buildSiemResponse(response); - - try { - const ctx = await context.resolve(['core', 'alerting', 'securitySolution']); - const soClient = ctx.core.savedObjects.client; - const rulesClient = ctx.alerting.getRulesClient(); - const ruleAssetsClient = createPrebuiltRuleAssetsClient(soClient); - const ruleObjectsClient = createPrebuiltRuleObjectsClient(rulesClient); + }) + .addVersion( + { + version: '1', + validate: { + request: { + body: buildRouteValidation(PerformRuleUpgradeRequestBody), + }, + }, + }, + async (context, request, response) => { + const siemResponse = buildSiemResponse(response); - const { mode, pick_version: globalPickVersion = PickVersionValues.TARGET } = request.body; + try { + const ctx = await context.resolve(['core', 'alerting', 'securitySolution']); + const soClient = ctx.core.savedObjects.client; + const rulesClient = ctx.alerting.getRulesClient(); + const ruleAssetsClient = createPrebuiltRuleAssetsClient(soClient); + const ruleObjectsClient = createPrebuiltRuleObjectsClient(rulesClient); - const fetchErrors: Array<PromisePoolError<{ rule_id: string }>> = []; - const targetRules: PrebuiltRuleAsset[] = []; - const skippedRules: SkippedRuleUpgrade[] = []; + const { mode, pick_version: globalPickVersion = PickVersionValues.TARGET } = request.body; - const versionSpecifiers = mode === 'ALL_RULES' ? undefined : request.body.rules; - const versionSpecifiersMap = new Map( - versionSpecifiers?.map((rule) => [rule.rule_id, rule]) - ); - const ruleVersionsMap = await fetchRuleVersionsTriad({ - ruleAssetsClient, - ruleObjectsClient, - versionSpecifiers, - }); - const versionBuckets = getVersionBuckets(ruleVersionsMap); - const { currentRules } = versionBuckets; - // The upgradeable rules list is mutable; we can remove rules from it because of version mismatch - let upgradeableRules = versionBuckets.upgradeableRules; + const fetchErrors: Array<PromisePoolError<{ rule_id: string }>> = []; + const targetRules: PrebuiltRuleAsset[] = []; + const skippedRules: SkippedRuleUpgrade[] = []; - // Perform all the checks we can before we start the upgrade process - if (mode === 'SPECIFIC_RULES') { - const installedRuleIds = new Set(currentRules.map((rule) => rule.rule_id)); - const upgradeableRuleIds = new Set( - upgradeableRules.map(({ current }) => current.rule_id) + const versionSpecifiers = mode === 'ALL_RULES' ? undefined : request.body.rules; + const versionSpecifiersMap = new Map( + versionSpecifiers?.map((rule) => [rule.rule_id, rule]) ); - request.body.rules.forEach((rule) => { - // Check that the requested rule was found - if (!installedRuleIds.has(rule.rule_id)) { - fetchErrors.push({ - error: new Error( - `Rule with ID "${rule.rule_id}" and version "${rule.version}" not found` - ), - item: rule, - }); - return; - } + const ruleVersionsMap = await fetchRuleVersionsTriad({ + ruleAssetsClient, + ruleObjectsClient, + versionSpecifiers, + }); + const versionBuckets = getVersionBuckets(ruleVersionsMap); + const { currentRules } = versionBuckets; + // The upgradeable rules list is mutable; we can remove rules from it because of version mismatch + let upgradeableRules = versionBuckets.upgradeableRules; - // Check that the requested rule is upgradeable - if (!upgradeableRuleIds.has(rule.rule_id)) { - skippedRules.push({ - rule_id: rule.rule_id, - reason: SkipRuleUpgradeReason.RULE_UP_TO_DATE, - }); - return; - } + // Perform all the checks we can before we start the upgrade process + if (mode === 'SPECIFIC_RULES') { + const installedRuleIds = new Set(currentRules.map((rule) => rule.rule_id)); + const upgradeableRuleIds = new Set( + upgradeableRules.map(({ current }) => current.rule_id) + ); + request.body.rules.forEach((rule) => { + // Check that the requested rule was found + if (!installedRuleIds.has(rule.rule_id)) { + fetchErrors.push({ + error: new Error( + `Rule with ID "${rule.rule_id}" and version "${rule.version}" not found` + ), + item: rule, + }); + return; + } - // Check that rule revisions match (no update slipped in since the user reviewed the list) - const currentRevision = ruleVersionsMap.get(rule.rule_id)?.current?.revision; - if (rule.revision !== currentRevision) { - fetchErrors.push({ - error: new Error( - `Revision mismatch for rule ID ${rule.rule_id}: expected ${rule.revision}, got ${currentRevision}` - ), - item: rule, - }); - // Remove the rule from the list of upgradeable rules - upgradeableRules = upgradeableRules.filter( - ({ current }) => current.rule_id !== rule.rule_id - ); - } - }); - } + // Check that the requested rule is upgradeable + if (!upgradeableRuleIds.has(rule.rule_id)) { + skippedRules.push({ + rule_id: rule.rule_id, + reason: SkipRuleUpgradeReason.RULE_UP_TO_DATE, + }); + return; + } - // Construct the list of target rule versions - upgradeableRules.forEach(({ current, target }) => { - const rulePickVersion = - versionSpecifiersMap?.get(current.rule_id)?.pick_version ?? globalPickVersion; - switch (rulePickVersion) { - case PickVersionValues.BASE: - const baseVersion = ruleVersionsMap.get(current.rule_id)?.base; - if (baseVersion) { - targetRules.push({ ...baseVersion, version: target.version }); - } else { + // Check that rule revisions match (no update slipped in since the user reviewed the list) + const currentRevision = ruleVersionsMap.get(rule.rule_id)?.current?.revision; + if (rule.revision !== currentRevision) { fetchErrors.push({ - error: new Error(`Could not find base version for rule ${current.rule_id}`), - item: current, + error: new Error( + `Revision mismatch for rule ID ${rule.rule_id}: expected ${rule.revision}, got ${currentRevision}` + ), + item: rule, }); + // Remove the rule from the list of upgradeable rules + upgradeableRules = upgradeableRules.filter( + ({ current }) => current.rule_id !== rule.rule_id + ); } - break; - case PickVersionValues.CURRENT: - targetRules.push({ ...current, version: target.version }); - break; - case PickVersionValues.TARGET: - targetRules.push(target); - break; - default: - assertUnreachable(rulePickVersion); + }); } - }); - // Perform the upgrade - const { results: updatedRules, errors: installationErrors } = await upgradePrebuiltRules( - rulesClient, - targetRules - ); - const ruleErrors = [...fetchErrors, ...installationErrors]; + // Construct the list of target rule versions + upgradeableRules.forEach(({ current, target }) => { + const rulePickVersion = + versionSpecifiersMap?.get(current.rule_id)?.pick_version ?? globalPickVersion; + switch (rulePickVersion) { + case PickVersionValues.BASE: + const baseVersion = ruleVersionsMap.get(current.rule_id)?.base; + if (baseVersion) { + targetRules.push({ ...baseVersion, version: target.version }); + } else { + fetchErrors.push({ + error: new Error(`Could not find base version for rule ${current.rule_id}`), + item: current, + }); + } + break; + case PickVersionValues.CURRENT: + targetRules.push({ ...current, version: target.version }); + break; + case PickVersionValues.TARGET: + targetRules.push(target); + break; + default: + assertUnreachable(rulePickVersion); + } + }); - const { error: timelineInstallationError } = await performTimelinesInstallation( - ctx.securitySolution - ); + // Perform the upgrade + const { results: updatedRules, errors: installationErrors } = await upgradePrebuiltRules( + rulesClient, + targetRules + ); + const ruleErrors = [...fetchErrors, ...installationErrors]; - const allErrors = aggregatePrebuiltRuleErrors(ruleErrors); - if (timelineInstallationError) { - allErrors.push({ - message: timelineInstallationError, - rules: [], - }); - } + const { error: timelineInstallationError } = await performTimelinesInstallation( + ctx.securitySolution + ); - const body: PerformRuleUpgradeResponseBody = { - summary: { - total: updatedRules.length + skippedRules.length + ruleErrors.length, - skipped: skippedRules.length, - succeeded: updatedRules.length, - failed: ruleErrors.length, - }, - results: { - updated: updatedRules.map(({ result }) => internalRuleToAPIResponse(result)), - skipped: skippedRules, - }, - errors: allErrors, - }; + const allErrors = aggregatePrebuiltRuleErrors(ruleErrors); + if (timelineInstallationError) { + allErrors.push({ + message: timelineInstallationError, + rules: [], + }); + } - return response.ok({ body }); - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); + const body: PerformRuleUpgradeResponseBody = { + summary: { + total: updatedRules.length + skippedRules.length + ruleErrors.length, + skipped: skippedRules.length, + succeeded: updatedRules.length, + failed: ruleErrors.length, + }, + results: { + updated: updatedRules.map(({ result }) => internalRuleToAPIResponse(result)), + skipped: skippedRules, + }, + errors: allErrors, + }; + + return response.ok({ body }); + } catch (err) { + const error = transformError(err); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); + } } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/review_rule_installation/review_rule_installation_route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/review_rule_installation/review_rule_installation_route.ts index 701724389d200..c10ca16fe0874 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/review_rule_installation/review_rule_installation_route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/review_rule_installation/review_rule_installation_route.ts @@ -9,58 +9,64 @@ import { transformError } from '@kbn/securitysolution-es-utils'; import { REVIEW_RULE_INSTALLATION_URL } from '../../../../../../common/api/detection_engine/prebuilt_rules'; import type { ReviewRuleInstallationResponseBody, - RuleInstallationInfoForReview, RuleInstallationStatsForReview, } from '../../../../../../common/api/detection_engine/prebuilt_rules'; import type { SecuritySolutionPluginRouter } from '../../../../../types'; import { buildSiemResponse } from '../../../routes/utils'; -import { convertRuleToDiffable } from '../../logic/diff/normalization/convert_rule_to_diffable'; import { createPrebuiltRuleAssetsClient } from '../../logic/rule_assets/prebuilt_rule_assets_client'; import { createPrebuiltRuleObjectsClient } from '../../logic/rule_objects/prebuilt_rule_objects_client'; import { fetchRuleVersionsTriad } from '../../logic/rule_versions/fetch_rule_versions_triad'; import type { PrebuiltRuleAsset } from '../../model/rule_assets/prebuilt_rule_asset'; import { getVersionBuckets } from '../../model/rule_versions/get_version_buckets'; +import { convertPrebuiltRuleAssetToRuleResponse } from '../../../rule_management/normalization/rule_converters'; export const reviewRuleInstallationRoute = (router: SecuritySolutionPluginRouter) => { - router.post( - { + router.versioned + .post({ + access: 'internal', path: REVIEW_RULE_INSTALLATION_URL, - validate: {}, options: { tags: ['access:securitySolution'], }, - }, - async (context, request, response) => { - const siemResponse = buildSiemResponse(response); + }) + .addVersion( + { + version: '1', + validate: {}, + }, + async (context, request, response) => { + const siemResponse = buildSiemResponse(response); - try { - const ctx = await context.resolve(['core', 'alerting']); - const soClient = ctx.core.savedObjects.client; - const rulesClient = ctx.alerting.getRulesClient(); - const ruleAssetsClient = createPrebuiltRuleAssetsClient(soClient); - const ruleObjectsClient = createPrebuiltRuleObjectsClient(rulesClient); + try { + const ctx = await context.resolve(['core', 'alerting']); + const soClient = ctx.core.savedObjects.client; + const rulesClient = ctx.alerting.getRulesClient(); + const ruleAssetsClient = createPrebuiltRuleAssetsClient(soClient); + const ruleObjectsClient = createPrebuiltRuleObjectsClient(rulesClient); - const ruleVersionsMap = await fetchRuleVersionsTriad({ - ruleAssetsClient, - ruleObjectsClient, - }); - const { installableRules } = getVersionBuckets(ruleVersionsMap); + const ruleVersionsMap = await fetchRuleVersionsTriad({ + ruleAssetsClient, + ruleObjectsClient, + }); + const { installableRules } = getVersionBuckets(ruleVersionsMap); - const body: ReviewRuleInstallationResponseBody = { - stats: calculateRuleStats(installableRules), - rules: calculateRuleInfos(installableRules), - }; + const body: ReviewRuleInstallationResponseBody = { + stats: calculateRuleStats(installableRules), + rules: installableRules.map((prebuiltRuleAsset) => + convertPrebuiltRuleAssetToRuleResponse(prebuiltRuleAsset) + ), + }; - return response.ok({ body }); - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); + return response.ok({ body }); + } catch (err) { + const error = transformError(err); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); + } } - } - ); + ); }; const getAggregatedTags = (rules: PrebuiltRuleAsset[]): string[] => { @@ -77,9 +83,3 @@ const calculateRuleStats = ( tags: tagsOfRulesToInstall, }; }; - -const calculateRuleInfos = ( - rulesToInstall: PrebuiltRuleAsset[] -): RuleInstallationInfoForReview[] => { - return rulesToInstall.map((rule) => convertRuleToDiffable(rule)); -}; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/review_rule_upgrade/review_rule_upgrade_route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/review_rule_upgrade/review_rule_upgrade_route.ts index 8a29b5120a73b..a383cc2ad92a9 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/review_rule_upgrade/review_rule_upgrade_route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/prebuilt_rules/api/review_rule_upgrade/review_rule_upgrade_route.ts @@ -15,6 +15,7 @@ import type { ThreeWayDiff, } from '../../../../../../common/api/detection_engine/prebuilt_rules'; import { invariant } from '../../../../../../common/utils/invariant'; +import type { RuleResponse } from '../../../../../../common/api/detection_engine/model/rule_schema/rule_schemas'; import type { SecuritySolutionPluginRouter } from '../../../../../types'; import { buildSiemResponse } from '../../../routes/utils'; import type { CalculateRuleDiffResult } from '../../logic/diff/calculate_rule_diff'; @@ -23,53 +24,59 @@ import { createPrebuiltRuleAssetsClient } from '../../logic/rule_assets/prebuilt import { createPrebuiltRuleObjectsClient } from '../../logic/rule_objects/prebuilt_rule_objects_client'; import { fetchRuleVersionsTriad } from '../../logic/rule_versions/fetch_rule_versions_triad'; import { getVersionBuckets } from '../../model/rule_versions/get_version_buckets'; +import { convertPrebuiltRuleAssetToRuleResponse } from '../../../rule_management/normalization/rule_converters'; export const reviewRuleUpgradeRoute = (router: SecuritySolutionPluginRouter) => { - router.post( - { + router.versioned + .post({ + access: 'internal', path: REVIEW_RULE_UPGRADE_URL, - validate: {}, options: { tags: ['access:securitySolution'], }, - }, - async (context, request, response) => { - const siemResponse = buildSiemResponse(response); + }) + .addVersion( + { + version: '1', + validate: {}, + }, + async (context, request, response) => { + const siemResponse = buildSiemResponse(response); - try { - const ctx = await context.resolve(['core', 'alerting']); - const soClient = ctx.core.savedObjects.client; - const rulesClient = ctx.alerting.getRulesClient(); - const ruleAssetsClient = createPrebuiltRuleAssetsClient(soClient); - const ruleObjectsClient = createPrebuiltRuleObjectsClient(rulesClient); + try { + const ctx = await context.resolve(['core', 'alerting']); + const soClient = ctx.core.savedObjects.client; + const rulesClient = ctx.alerting.getRulesClient(); + const ruleAssetsClient = createPrebuiltRuleAssetsClient(soClient); + const ruleObjectsClient = createPrebuiltRuleObjectsClient(rulesClient); - const ruleVersionsMap = await fetchRuleVersionsTriad({ - ruleAssetsClient, - ruleObjectsClient, - }); - const { upgradeableRules } = getVersionBuckets(ruleVersionsMap); + const ruleVersionsMap = await fetchRuleVersionsTriad({ + ruleAssetsClient, + ruleObjectsClient, + }); + const { upgradeableRules } = getVersionBuckets(ruleVersionsMap); - const ruleDiffCalculationResults = upgradeableRules.map(({ current }) => { - const ruleVersions = ruleVersionsMap.get(current.rule_id); - invariant(ruleVersions != null, 'ruleVersions not found'); - return calculateRuleDiff(ruleVersions); - }); + const ruleDiffCalculationResults = upgradeableRules.map(({ current }) => { + const ruleVersions = ruleVersionsMap.get(current.rule_id); + invariant(ruleVersions != null, 'ruleVersions not found'); + return calculateRuleDiff(ruleVersions); + }); - const body: ReviewRuleUpgradeResponseBody = { - stats: calculateRuleStats(ruleDiffCalculationResults), - rules: calculateRuleInfos(ruleDiffCalculationResults), - }; + const body: ReviewRuleUpgradeResponseBody = { + stats: calculateRuleStats(ruleDiffCalculationResults), + rules: calculateRuleInfos(ruleDiffCalculationResults), + }; - return response.ok({ body }); - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); + return response.ok({ body }); + } catch (err) { + const error = transformError(err); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); + } } - } - ); + ); }; const calculateRuleStats = (results: CalculateRuleDiffResult[]): RuleUpgradeStatsForReview => { @@ -86,16 +93,21 @@ const calculateRuleInfos = (results: CalculateRuleDiffResult[]): RuleUpgradeInfo return results.map((result) => { const { ruleDiff, ruleVersions } = result; const installedCurrentVersion = ruleVersions.input.current; - const diffableCurrentVersion = ruleVersions.output.current; - const diffableTargetVersion = ruleVersions.output.target; + const targetVersion = ruleVersions.input.target; invariant(installedCurrentVersion != null, 'installedCurrentVersion not found'); + invariant(targetVersion != null, 'targetVersion not found'); + + const targetRule: RuleResponse = { + ...convertPrebuiltRuleAssetToRuleResponse(targetVersion), + id: installedCurrentVersion.id, + }; return { id: installedCurrentVersion.id, rule_id: installedCurrentVersion.rule_id, revision: installedCurrentVersion.revision, - rule: diffableCurrentVersion, - target_rule: diffableTargetVersion, + current_rule: installedCurrentVersion, + target_rule: targetRule, diff: { fields: pickBy<ThreeWayDiff<unknown>>( ruleDiff.fields, diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/routes/__mocks__/request_context.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/routes/__mocks__/request_context.ts index f45a57208e915..a71585308c397 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/routes/__mocks__/request_context.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/routes/__mocks__/request_context.ts @@ -34,7 +34,7 @@ import type { import { getEndpointAuthzInitialStateMock } from '../../../../../common/endpoint/service/authz/mocks'; import type { EndpointAuthz } from '../../../../../common/endpoint/types/authz'; -import { riskEngineDataClientMock } from '../../../risk_engine/__mocks__/risk_engine_data_client_mock'; +import { riskEngineDataClientMock } from '../../../risk_engine/risk_engine_data_client.mock'; export const createMockClients = () => { const core = coreMock.createRequestHandlerContext(); diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/routes/__mocks__/server.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/routes/__mocks__/server.ts index 5a95c7a09d5b6..c1d7b8fb601a5 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/routes/__mocks__/server.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/routes/__mocks__/server.ts @@ -12,28 +12,48 @@ import { responseMock as responseFactoryMock } from './response_factory'; import { requestMock } from '.'; import { responseAdapter } from './test_adapters'; import type { SecuritySolutionRequestHandlerContext } from '../../../../types'; +import type { RegisteredVersionedRoute } from '@kbn/core-http-router-server-mocks'; interface Route { - config: RouteConfig<unknown, unknown, unknown, 'get' | 'post' | 'delete' | 'patch' | 'put'>; + validate: RouteConfig< + unknown, + unknown, + unknown, + 'get' | 'post' | 'delete' | 'patch' | 'put' + >['validate']; handler: RequestHandler; } -const getRoute = (routerMock: MockServer['router']): Route => { - const routeCalls = [ - ...routerMock.get.mock.calls, - ...routerMock.post.mock.calls, - ...routerMock.put.mock.calls, - ...routerMock.patch.mock.calls, - ...routerMock.delete.mock.calls, - ]; - - const [route] = routeCalls; - if (!route) { - throw new Error('No route registered!'); +const HTTP_METHODS = ['get', 'post', 'put', 'patch', 'delete'] as const; + +const getClassicRoute = (routerMock: MockServer['router']): Route | undefined => { + const method = HTTP_METHODS.find((m) => routerMock[m].mock.calls.length > 0); + if (!method) { + return undefined; } - const [config, handler] = route; - return { config, handler }; + const [config, handler] = routerMock[method].mock.calls[0]; + return { validate: config.validate, handler }; +}; + +const getVersionedRoute = (router: MockServer['router']): Route => { + const method = HTTP_METHODS.find((m) => router.versioned[m].mock.calls.length > 0); + if (!method) { + throw new Error('No route registered!'); + } + const config = router.versioned[method].mock.calls[0][0]; + const routePath = config.path; + + const route: RegisteredVersionedRoute = router.versioned.getRoute(method, routePath); + const firstVersion = Object.values(route.versions)[0]; + + return { + validate: + firstVersion.config.validate === false + ? false + : firstVersion.config.validate.request || false, + handler: firstVersion.handler, + }; }; const buildResultMock = () => ({ ok: jest.fn((x) => x), badRequest: jest.fn((x) => x) }); @@ -66,7 +86,7 @@ class MockServer { } private getRoute(): Route { - return getRoute(this.router); + return getClassicRoute(this.router) ?? getVersionedRoute(this.router); } // eslint-disable-next-line @typescript-eslint/no-explicit-any @@ -75,7 +95,7 @@ class MockServer { } private validateRequest(request: KibanaRequest): KibanaRequest { - const validations = this.getRoute().config.validate; + const validations = this.getRoute().validate; if (!validations) { return request; } diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_actions/route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_actions/route.ts index 98cd2186501bb..14022e9e44af2 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_actions/route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_actions/route.ts @@ -233,310 +233,317 @@ export const performBulkActionRoute = ( ml: SetupPlugins['ml'], logger: Logger ) => { - router.post( - { + router.versioned + .post({ + access: 'public', path: DETECTION_ENGINE_RULES_BULK_ACTION, - validate: { - body: buildRouteValidation(PerformBulkActionRequestBody), - query: buildRouteValidation(PerformBulkActionRequestQuery), - }, options: { tags: ['access:securitySolution', routeLimitedConcurrencyTag(MAX_ROUTE_CONCURRENCY)], timeout: { idleSocket: moment.duration(15, 'minutes').asMilliseconds(), }, }, - }, - async (context, request, response): Promise<IKibanaResponse<PerformBulkActionResponse>> => { - const { body } = request; - const siemResponse = buildSiemResponse(response); - - if (body?.ids && body.ids.length > RULES_TABLE_MAX_PAGE_SIZE) { - return siemResponse.error({ - body: `More than ${RULES_TABLE_MAX_PAGE_SIZE} ids sent for bulk edit action.`, - statusCode: 400, - }); - } - - if (body?.ids && body.query !== undefined) { - return siemResponse.error({ - body: `Both query and ids are sent. Define either ids or query in request payload.`, - statusCode: 400, - }); - } + }) + .addVersion( + { + version: '2023-10-31', + validate: { + request: { + body: buildRouteValidation(PerformBulkActionRequestBody), + query: buildRouteValidation(PerformBulkActionRequestQuery), + }, + }, + }, + async (context, request, response): Promise<IKibanaResponse<PerformBulkActionResponse>> => { + const { body } = request; + const siemResponse = buildSiemResponse(response); + + if (body?.ids && body.ids.length > RULES_TABLE_MAX_PAGE_SIZE) { + return siemResponse.error({ + body: `More than ${RULES_TABLE_MAX_PAGE_SIZE} ids sent for bulk edit action.`, + statusCode: 400, + }); + } - const isDryRun = request.query.dry_run === 'true'; + if (body?.ids && body.query !== undefined) { + return siemResponse.error({ + body: `Both query and ids are sent. Define either ids or query in request payload.`, + statusCode: 400, + }); + } - // dry run is not supported for export, as it doesn't change ES state and has different response format(exported JSON file) - if (isDryRun && body.action === BulkActionType.export) { - return siemResponse.error({ - body: `Export action doesn't support dry_run mode`, - statusCode: 400, - }); - } + const isDryRun = request.query.dry_run === 'true'; - const abortController = new AbortController(); - - // subscribing to completed$, because it handles both cases when request was completed and aborted. - // when route is finished by timeout, aborted$ is not getting fired - request.events.completed$.subscribe(() => abortController.abort()); - try { - const ctx = await context.resolve([ - 'core', - 'securitySolution', - 'alerting', - 'licensing', - 'lists', - 'actions', - ]); - - const rulesClient = ctx.alerting.getRulesClient(); - const exceptionsClient = ctx.lists?.getExceptionListClient(); - const savedObjectsClient = ctx.core.savedObjects.client; - const actionsClient = (await ctx.actions)?.getActionsClient(); - - const { getExporter, getClient } = (await ctx.core).savedObjects; - const client = getClient({ includedHiddenTypes: ['action'] }); - - const exporter = getExporter(client); - - const mlAuthz = buildMlAuthz({ - license: ctx.licensing.license, - ml, - request, - savedObjectsClient, - }); - - const query = body.query !== '' ? body.query : undefined; - - // handling this action before switch statement as bulkEditRules fetch rules within - // rulesClient method, hence there is no need to use fetchRulesByQueryOrIds utility - if (body.action === BulkActionType.edit && !isDryRun) { - const { rules, errors, skipped } = await bulkEditRules({ - rulesClient, - filter: query, - ids: body.ids, - actions: body.edit, - mlAuthz, + // dry run is not supported for export, as it doesn't change ES state and has different response format(exported JSON file) + if (isDryRun && body.action === BulkActionType.export) { + return siemResponse.error({ + body: `Export action doesn't support dry_run mode`, + statusCode: 400, }); + } - return buildBulkResponse(response, { - updated: rules, - skipped, - errors, + const abortController = new AbortController(); + + // subscribing to completed$, because it handles both cases when request was completed and aborted. + // when route is finished by timeout, aborted$ is not getting fired + request.events.completed$.subscribe(() => abortController.abort()); + try { + const ctx = await context.resolve([ + 'core', + 'securitySolution', + 'alerting', + 'licensing', + 'lists', + 'actions', + ]); + + const rulesClient = ctx.alerting.getRulesClient(); + const exceptionsClient = ctx.lists?.getExceptionListClient(); + const savedObjectsClient = ctx.core.savedObjects.client; + const actionsClient = (await ctx.actions)?.getActionsClient(); + + const { getExporter, getClient } = (await ctx.core).savedObjects; + const client = getClient({ includedHiddenTypes: ['action'] }); + + const exporter = getExporter(client); + + const mlAuthz = buildMlAuthz({ + license: ctx.licensing.license, + ml, + request, + savedObjectsClient, }); - } - const fetchRulesOutcome = await fetchRulesByQueryOrIds({ - rulesClient, - query, - ids: body.ids, - abortSignal: abortController.signal, - }); - - const rules = fetchRulesOutcome.results.map(({ result }) => result); - let bulkActionOutcome: PromisePoolOutcome<RuleAlertType, RuleAlertType | null>; - let updated: RuleAlertType[] = []; - let created: RuleAlertType[] = []; - let deleted: RuleAlertType[] = []; - - switch (body.action) { - case BulkActionType.enable: - bulkActionOutcome = await initPromisePool({ - concurrency: MAX_RULES_TO_UPDATE_IN_PARALLEL, - items: rules, - executor: async (rule) => { - await validateBulkEnableRule({ mlAuthz, rule }); - - // during dry run only validation is getting performed and rule is not saved in ES, thus return early - if (isDryRun) { - return rule; - } - - if (!rule.enabled) { - await rulesClient.enable({ id: rule.id }); - } - - return { - ...rule, - enabled: true, - }; - }, - abortSignal: abortController.signal, + const query = body.query !== '' ? body.query : undefined; + + // handling this action before switch statement as bulkEditRules fetch rules within + // rulesClient method, hence there is no need to use fetchRulesByQueryOrIds utility + if (body.action === BulkActionType.edit && !isDryRun) { + const { rules, errors, skipped } = await bulkEditRules({ + rulesClient, + filter: query, + ids: body.ids, + actions: body.edit, + mlAuthz, }); - updated = bulkActionOutcome.results - .map(({ result }) => result) - .filter((rule): rule is RuleAlertType => rule !== null); - break; - case BulkActionType.disable: - bulkActionOutcome = await initPromisePool({ - concurrency: MAX_RULES_TO_UPDATE_IN_PARALLEL, - items: rules, - executor: async (rule) => { - await validateBulkDisableRule({ mlAuthz, rule }); - - // during dry run only validation is getting performed and rule is not saved in ES, thus return early - if (isDryRun) { - return rule; - } - - if (rule.enabled) { - await rulesClient.disable({ id: rule.id }); - } - - return { - ...rule, - enabled: false, - }; - }, - abortSignal: abortController.signal, + + return buildBulkResponse(response, { + updated: rules, + skipped, + errors, }); - updated = bulkActionOutcome.results - .map(({ result }) => result) - .filter((rule): rule is RuleAlertType => rule !== null); - break; - - case BulkActionType.delete: - bulkActionOutcome = await initPromisePool({ - concurrency: MAX_RULES_TO_UPDATE_IN_PARALLEL, - items: rules, - executor: async (rule) => { - // during dry run return early for delete, as no validations needed for this action - if (isDryRun) { - return null; - } + } - await deleteRules({ - ruleId: rule.id, - rulesClient, - }); + const fetchRulesOutcome = await fetchRulesByQueryOrIds({ + rulesClient, + query, + ids: body.ids, + abortSignal: abortController.signal, + }); - return null; - }, - abortSignal: abortController.signal, - }); - deleted = bulkActionOutcome.results - .map(({ item }) => item) - .filter((rule): rule is RuleAlertType => rule !== null); - break; - - case BulkActionType.duplicate: - bulkActionOutcome = await initPromisePool({ - concurrency: MAX_RULES_TO_UPDATE_IN_PARALLEL, - items: rules, - executor: async (rule) => { - await validateBulkDuplicateRule({ mlAuthz, rule }); - - // during dry run only validation is getting performed and rule is not saved in ES, thus return early - if (isDryRun) { - return rule; - } - - let shouldDuplicateExceptions = true; - let shouldDuplicateExpiredExceptions = true; - if (body.duplicate !== undefined) { - shouldDuplicateExceptions = body.duplicate.include_exceptions; - shouldDuplicateExpiredExceptions = body.duplicate.include_expired_exceptions; - } - - const duplicateRuleToCreate = await duplicateRule({ - rule, - }); - - const createdRule = await rulesClient.create({ - data: duplicateRuleToCreate, - }); - - // we try to create exceptions after rule created, and then update rule - const exceptions = shouldDuplicateExceptions - ? await duplicateExceptions({ - ruleId: rule.params.ruleId, - exceptionLists: rule.params.exceptionsList, - includeExpiredExceptions: shouldDuplicateExpiredExceptions, - exceptionsClient, - }) - : []; - - const updatedRule = await rulesClient.update({ - id: createdRule.id, - data: { - ...duplicateRuleToCreate, - params: { - ...duplicateRuleToCreate.params, - exceptionsList: exceptions, - }, - }, - shouldIncrementRevision: () => false, - }); - - // TODO: figureout why types can't return just updatedRule - return { ...createdRule, ...updatedRule }; - }, - abortSignal: abortController.signal, - }); - created = bulkActionOutcome.results - .map(({ result }) => result) - .filter((rule): rule is RuleAlertType => rule !== null); - break; + const rules = fetchRulesOutcome.results.map(({ result }) => result); + let bulkActionOutcome: PromisePoolOutcome<RuleAlertType, RuleAlertType | null>; + let updated: RuleAlertType[] = []; + let created: RuleAlertType[] = []; + let deleted: RuleAlertType[] = []; + + switch (body.action) { + case BulkActionType.enable: + bulkActionOutcome = await initPromisePool({ + concurrency: MAX_RULES_TO_UPDATE_IN_PARALLEL, + items: rules, + executor: async (rule) => { + await validateBulkEnableRule({ mlAuthz, rule }); + + // during dry run only validation is getting performed and rule is not saved in ES, thus return early + if (isDryRun) { + return rule; + } + + if (!rule.enabled) { + await rulesClient.enable({ id: rule.id }); + } + + return { + ...rule, + enabled: true, + }; + }, + abortSignal: abortController.signal, + }); + updated = bulkActionOutcome.results + .map(({ result }) => result) + .filter((rule): rule is RuleAlertType => rule !== null); + break; + case BulkActionType.disable: + bulkActionOutcome = await initPromisePool({ + concurrency: MAX_RULES_TO_UPDATE_IN_PARALLEL, + items: rules, + executor: async (rule) => { + await validateBulkDisableRule({ mlAuthz, rule }); + + // during dry run only validation is getting performed and rule is not saved in ES, thus return early + if (isDryRun) { + return rule; + } + + if (rule.enabled) { + await rulesClient.disable({ id: rule.id }); + } + + return { + ...rule, + enabled: false, + }; + }, + abortSignal: abortController.signal, + }); + updated = bulkActionOutcome.results + .map(({ result }) => result) + .filter((rule): rule is RuleAlertType => rule !== null); + break; + + case BulkActionType.delete: + bulkActionOutcome = await initPromisePool({ + concurrency: MAX_RULES_TO_UPDATE_IN_PARALLEL, + items: rules, + executor: async (rule) => { + // during dry run return early for delete, as no validations needed for this action + if (isDryRun) { + return null; + } + + await deleteRules({ + ruleId: rule.id, + rulesClient, + }); - case BulkActionType.export: - const exported = await getExportByObjectIds( - rulesClient, - exceptionsClient, - savedObjectsClient, - rules.map(({ params }) => ({ rule_id: params.ruleId })), - logger, - exporter, - request, - actionsClient - ); - - const responseBody = `${exported.rulesNdjson}${exported.exceptionLists}${exported.actionConnectors}${exported.exportDetails}`; - - return response.ok({ - headers: { - 'Content-Disposition': `attachment; filename="rules_export.ndjson"`, - 'Content-Type': 'application/ndjson', - }, - body: responseBody, - }); + return null; + }, + abortSignal: abortController.signal, + }); + deleted = bulkActionOutcome.results + .map(({ item }) => item) + .filter((rule): rule is RuleAlertType => rule !== null); + break; + + case BulkActionType.duplicate: + bulkActionOutcome = await initPromisePool({ + concurrency: MAX_RULES_TO_UPDATE_IN_PARALLEL, + items: rules, + executor: async (rule) => { + await validateBulkDuplicateRule({ mlAuthz, rule }); + + // during dry run only validation is getting performed and rule is not saved in ES, thus return early + if (isDryRun) { + return rule; + } + + let shouldDuplicateExceptions = true; + let shouldDuplicateExpiredExceptions = true; + if (body.duplicate !== undefined) { + shouldDuplicateExceptions = body.duplicate.include_exceptions; + shouldDuplicateExpiredExceptions = body.duplicate.include_expired_exceptions; + } + + const duplicateRuleToCreate = await duplicateRule({ + rule, + }); + + const createdRule = await rulesClient.create({ + data: duplicateRuleToCreate, + }); + + // we try to create exceptions after rule created, and then update rule + const exceptions = shouldDuplicateExceptions + ? await duplicateExceptions({ + ruleId: rule.params.ruleId, + exceptionLists: rule.params.exceptionsList, + includeExpiredExceptions: shouldDuplicateExpiredExceptions, + exceptionsClient, + }) + : []; + + const updatedRule = await rulesClient.update({ + id: createdRule.id, + data: { + ...duplicateRuleToCreate, + params: { + ...duplicateRuleToCreate.params, + exceptionsList: exceptions, + }, + }, + shouldIncrementRevision: () => false, + }); + + // TODO: figureout why types can't return just updatedRule + return { ...createdRule, ...updatedRule }; + }, + abortSignal: abortController.signal, + }); + created = bulkActionOutcome.results + .map(({ result }) => result) + .filter((rule): rule is RuleAlertType => rule !== null); + break; + + case BulkActionType.export: + const exported = await getExportByObjectIds( + rulesClient, + exceptionsClient, + savedObjectsClient, + rules.map(({ params }) => ({ rule_id: params.ruleId })), + logger, + exporter, + request, + actionsClient + ); + + const responseBody = `${exported.rulesNdjson}${exported.exceptionLists}${exported.actionConnectors}${exported.exportDetails}`; + + return response.ok({ + headers: { + 'Content-Disposition': `attachment; filename="rules_export.ndjson"`, + 'Content-Type': 'application/ndjson', + }, + body: responseBody, + }); + + // will be processed only when isDryRun === true + // during dry run only validation is getting performed and rule is not saved in ES + case BulkActionType.edit: + bulkActionOutcome = await initPromisePool({ + concurrency: MAX_RULES_TO_UPDATE_IN_PARALLEL, + items: rules, + executor: async (rule) => { + await dryRunValidateBulkEditRule({ mlAuthz, rule, edit: body.edit }); - // will be processed only when isDryRun === true - // during dry run only validation is getting performed and rule is not saved in ES - case BulkActionType.edit: - bulkActionOutcome = await initPromisePool({ - concurrency: MAX_RULES_TO_UPDATE_IN_PARALLEL, - items: rules, - executor: async (rule) => { - await dryRunValidateBulkEditRule({ mlAuthz, rule, edit: body.edit }); - - return rule; - }, - abortSignal: abortController.signal, - }); - updated = bulkActionOutcome.results - .map(({ result }) => result) - .filter((rule): rule is RuleAlertType => rule !== null); - } + return rule; + }, + abortSignal: abortController.signal, + }); + updated = bulkActionOutcome.results + .map(({ result }) => result) + .filter((rule): rule is RuleAlertType => rule !== null); + } + + if (abortController.signal.aborted === true) { + throw new AbortError('Bulk action was aborted'); + } - if (abortController.signal.aborted === true) { - throw new AbortError('Bulk action was aborted'); + return buildBulkResponse(response, { + updated, + deleted, + created, + errors: [...fetchRulesOutcome.errors, ...bulkActionOutcome.errors], + isDryRun, + }); + } catch (err) { + const error = transformError(err); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); } - - return buildBulkResponse(response, { - updated, - deleted, - created, - errors: [...fetchRulesOutcome.errors, ...bulkActionOutcome.errors], - isDryRun, - }); - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_create_rules/route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_create_rules/route.ts index f0ceafe84170d..ecbf6e47f1825 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_create_rules/route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_create_rules/route.ts @@ -42,117 +42,124 @@ export const bulkCreateRulesRoute = ( ml: SetupPlugins['ml'], logger: Logger ) => { - router.post( - { + router.versioned + .post({ + access: 'public', path: DETECTION_ENGINE_RULES_BULK_CREATE, - validate: { - body: buildRouteValidation(BulkCreateRulesRequestBody), - }, options: { tags: ['access:securitySolution'], }, - }, - async (context, request, response): Promise<IKibanaResponse<BulkCrudRulesResponse>> => { - logDeprecatedBulkEndpoint(logger, DETECTION_ENGINE_RULES_BULK_CREATE); - - const siemResponse = buildSiemResponse(response); - - const ctx = await context.resolve(['core', 'securitySolution', 'licensing', 'alerting']); - - const rulesClient = ctx.alerting.getRulesClient(); - const savedObjectsClient = ctx.core.savedObjects.client; - - const mlAuthz = buildMlAuthz({ - license: ctx.licensing.license, - ml, - request, - savedObjectsClient, - }); - - const ruleDefinitions = request.body; - const dupes = getDuplicates(ruleDefinitions, 'rule_id'); - - const rules = await Promise.all( - ruleDefinitions - .filter((rule) => rule.rule_id == null || !dupes.includes(rule.rule_id)) - .map(async (payloadRule) => { - if (payloadRule.rule_id != null) { - const rule = await readRules({ - id: undefined, - rulesClient, - ruleId: payloadRule.rule_id, - }); - if (rule != null) { - return createBulkErrorObject({ + }) + .addVersion( + { + version: '2023-10-31', + validate: { + request: { + body: buildRouteValidation(BulkCreateRulesRequestBody), + }, + }, + }, + async (context, request, response): Promise<IKibanaResponse<BulkCrudRulesResponse>> => { + logDeprecatedBulkEndpoint(logger, DETECTION_ENGINE_RULES_BULK_CREATE); + + const siemResponse = buildSiemResponse(response); + + const ctx = await context.resolve(['core', 'securitySolution', 'licensing', 'alerting']); + + const rulesClient = ctx.alerting.getRulesClient(); + const savedObjectsClient = ctx.core.savedObjects.client; + + const mlAuthz = buildMlAuthz({ + license: ctx.licensing.license, + ml, + request, + savedObjectsClient, + }); + + const ruleDefinitions = request.body; + const dupes = getDuplicates(ruleDefinitions, 'rule_id'); + + const rules = await Promise.all( + ruleDefinitions + .filter((rule) => rule.rule_id == null || !dupes.includes(rule.rule_id)) + .map(async (payloadRule) => { + if (payloadRule.rule_id != null) { + const rule = await readRules({ + id: undefined, + rulesClient, ruleId: payloadRule.rule_id, - statusCode: 409, - message: `rule_id: "${payloadRule.rule_id}" already exists`, }); + if (rule != null) { + return createBulkErrorObject({ + ruleId: payloadRule.rule_id, + statusCode: 409, + message: `rule_id: "${payloadRule.rule_id}" already exists`, + }); + } } - } - - try { - validateRulesWithDuplicatedDefaultExceptionsList({ - allRules: request.body, - exceptionsList: payloadRule.exceptions_list, - ruleId: payloadRule.rule_id, - }); - - await validateRuleDefaultExceptionList({ - exceptionsList: payloadRule.exceptions_list, - rulesClient, - ruleRuleId: payloadRule.rule_id, - ruleId: undefined, - }); - - const validationErrors = validateCreateRuleProps(payloadRule); - if (validationErrors.length) { - return createBulkErrorObject({ + + try { + validateRulesWithDuplicatedDefaultExceptionsList({ + allRules: request.body, + exceptionsList: payloadRule.exceptions_list, ruleId: payloadRule.rule_id, - statusCode: 400, - message: validationErrors.join(), }); - } - throwAuthzError(await mlAuthz.validateRuleType(payloadRule.type)); - - const createdRule = await createRules({ - rulesClient, - params: payloadRule, - }); - - return transformValidateBulkError(createdRule.params.ruleId, createdRule); - } catch (err) { - return transformBulkError( - payloadRule.rule_id, - err as Error & { statusCode?: number } - ); - } - }) - ); - const rulesBulk = [ - ...rules, - ...dupes.map((ruleId) => - createBulkErrorObject({ - ruleId, - statusCode: 409, - message: `rule_id: "${ruleId}" already exists`, - }) - ), - ]; - const [validated, errors] = validate(rulesBulk, BulkCrudRulesResponse); - if (errors != null) { - return siemResponse.error({ - statusCode: 500, - body: errors, - headers: getDeprecatedBulkEndpointHeader(DETECTION_ENGINE_RULES_BULK_CREATE), - }); - } else { - return response.ok({ - body: validated ?? {}, - headers: getDeprecatedBulkEndpointHeader(DETECTION_ENGINE_RULES_BULK_CREATE), - }); + await validateRuleDefaultExceptionList({ + exceptionsList: payloadRule.exceptions_list, + rulesClient, + ruleRuleId: payloadRule.rule_id, + ruleId: undefined, + }); + + const validationErrors = validateCreateRuleProps(payloadRule); + if (validationErrors.length) { + return createBulkErrorObject({ + ruleId: payloadRule.rule_id, + statusCode: 400, + message: validationErrors.join(), + }); + } + + throwAuthzError(await mlAuthz.validateRuleType(payloadRule.type)); + + const createdRule = await createRules({ + rulesClient, + params: payloadRule, + }); + + return transformValidateBulkError(createdRule.params.ruleId, createdRule); + } catch (err) { + return transformBulkError( + payloadRule.rule_id, + err as Error & { statusCode?: number } + ); + } + }) + ); + const rulesBulk = [ + ...rules, + ...dupes.map((ruleId) => + createBulkErrorObject({ + ruleId, + statusCode: 409, + message: `rule_id: "${ruleId}" already exists`, + }) + ), + ]; + const [validated, errors] = validate(rulesBulk, BulkCrudRulesResponse); + if (errors != null) { + return siemResponse.error({ + statusCode: 500, + body: errors, + headers: getDeprecatedBulkEndpointHeader(DETECTION_ENGINE_RULES_BULK_CREATE), + }); + } else { + return response.ok({ + body: validated ?? {}, + headers: getDeprecatedBulkEndpointHeader(DETECTION_ENGINE_RULES_BULK_CREATE), + }); + } } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_delete_rules/route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_delete_rules/route.ts index f3d4dc4fd64b9..fb6be3e5e25ea 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_delete_rules/route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_delete_rules/route.ts @@ -5,34 +5,31 @@ * 2.0. */ -import type { RouteConfig, RequestHandler, Logger, IKibanaResponse } from '@kbn/core/server'; +import type { VersionedRouteConfig } from '@kbn/core-http-server'; +import type { IKibanaResponse, Logger, RequestHandler } from '@kbn/core/server'; import { validate } from '@kbn/securitysolution-io-ts-utils'; - -import { DETECTION_ENGINE_RULES_BULK_DELETE } from '../../../../../../../common/constants'; import { + BulkCrudRulesResponse, BulkDeleteRulesRequestBody, validateQueryRuleByIds, - BulkCrudRulesResponse, } from '../../../../../../../common/api/detection_engine/rule_management'; - -import { buildRouteValidation } from '../../../../../../utils/build_validation/route_validation'; +import { DETECTION_ENGINE_RULES_BULK_DELETE } from '../../../../../../../common/constants'; import type { SecuritySolutionPluginRouter, SecuritySolutionRequestHandlerContext, } from '../../../../../../types'; - -import { getIdBulkError } from '../../../utils/utils'; -import { transformValidateBulkError } from '../../../utils/validate'; +import { buildRouteValidation } from '../../../../../../utils/build_validation/route_validation'; import { - transformBulkError, buildSiemResponse, createBulkErrorObject, + transformBulkError, } from '../../../../routes/utils'; import { deleteRules } from '../../../logic/crud/delete_rules'; import { readRules } from '../../../logic/crud/read_rules'; +import { getIdBulkError } from '../../../utils/utils'; +import { transformValidateBulkError } from '../../../utils/validate'; import { getDeprecatedBulkEndpointHeader, logDeprecatedBulkEndpoint } from '../../deprecation'; -type Config = RouteConfig<unknown, unknown, BulkDeleteRulesRequestBody, 'delete' | 'post'>; type Handler = RequestHandler< unknown, unknown, @@ -45,15 +42,6 @@ type Handler = RequestHandler< * @deprecated since version 8.2.0. Use the detection_engine/rules/_bulk_action API instead */ export const bulkDeleteRulesRoute = (router: SecuritySolutionPluginRouter, logger: Logger) => { - const config: Config = { - validate: { - body: buildRouteValidation(BulkDeleteRulesRequestBody), - }, - path: DETECTION_ENGINE_RULES_BULK_DELETE, - options: { - tags: ['access:securitySolution'], - }, - }; const handler: Handler = async ( context, request, @@ -112,6 +100,21 @@ export const bulkDeleteRulesRoute = (router: SecuritySolutionPluginRouter, logge } }; - router.delete(config, handler); - router.post(config, handler); + const routeConfig: VersionedRouteConfig<'post' | 'delete'> = { + access: 'public', + path: DETECTION_ENGINE_RULES_BULK_DELETE, + options: { + tags: ['access:securitySolution'], + }, + }; + const versionConfig = { + version: '2023-10-31', + validate: { + request: { + body: buildRouteValidation(BulkDeleteRulesRequestBody), + }, + }, + }; + router.versioned.delete(routeConfig).addVersion(versionConfig, handler); + router.versioned.post(routeConfig).addVersion(versionConfig, handler); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_patch_rules/route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_patch_rules/route.ts index 2fb8660c6aaa2..f29c84cf71049 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_patch_rules/route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_patch_rules/route.ts @@ -36,95 +36,102 @@ export const bulkPatchRulesRoute = ( ml: SetupPlugins['ml'], logger: Logger ) => { - router.patch( - { + router.versioned + .patch({ + access: 'public', path: DETECTION_ENGINE_RULES_BULK_UPDATE, - validate: { - body: buildRouteValidationNonExact(BulkPatchRulesRequestBody), - }, options: { tags: ['access:securitySolution'], }, - }, - async (context, request, response): Promise<IKibanaResponse<BulkCrudRulesResponse>> => { - logDeprecatedBulkEndpoint(logger, DETECTION_ENGINE_RULES_BULK_UPDATE); + }) + .addVersion( + { + version: '2023-10-31', + validate: { + request: { + body: buildRouteValidationNonExact(BulkPatchRulesRequestBody), + }, + }, + }, + async (context, request, response): Promise<IKibanaResponse<BulkCrudRulesResponse>> => { + logDeprecatedBulkEndpoint(logger, DETECTION_ENGINE_RULES_BULK_UPDATE); - const siemResponse = buildSiemResponse(response); + const siemResponse = buildSiemResponse(response); - const ctx = await context.resolve(['core', 'securitySolution', 'alerting', 'licensing']); + const ctx = await context.resolve(['core', 'securitySolution', 'alerting', 'licensing']); - const rulesClient = ctx.alerting.getRulesClient(); - const savedObjectsClient = ctx.core.savedObjects.client; + const rulesClient = ctx.alerting.getRulesClient(); + const savedObjectsClient = ctx.core.savedObjects.client; - const mlAuthz = buildMlAuthz({ - license: ctx.licensing.license, - ml, - request, - savedObjectsClient, - }); + const mlAuthz = buildMlAuthz({ + license: ctx.licensing.license, + ml, + request, + savedObjectsClient, + }); - const rules = await Promise.all( - request.body.map(async (payloadRule) => { - const idOrRuleIdOrUnknown = payloadRule.id ?? payloadRule.rule_id ?? '(unknown id)'; + const rules = await Promise.all( + request.body.map(async (payloadRule) => { + const idOrRuleIdOrUnknown = payloadRule.id ?? payloadRule.rule_id ?? '(unknown id)'; - try { - if (payloadRule.type) { - // reject an unauthorized "promotion" to ML - throwAuthzError(await mlAuthz.validateRuleType(payloadRule.type)); - } + try { + if (payloadRule.type) { + // reject an unauthorized "promotion" to ML + throwAuthzError(await mlAuthz.validateRuleType(payloadRule.type)); + } - const existingRule = await readRules({ - rulesClient, - ruleId: payloadRule.rule_id, - id: payloadRule.id, - }); - if (existingRule?.params.type) { - // reject an unauthorized modification of an ML rule - throwAuthzError(await mlAuthz.validateRuleType(existingRule?.params.type)); - } + const existingRule = await readRules({ + rulesClient, + ruleId: payloadRule.rule_id, + id: payloadRule.id, + }); + if (existingRule?.params.type) { + // reject an unauthorized modification of an ML rule + throwAuthzError(await mlAuthz.validateRuleType(existingRule?.params.type)); + } - validateRulesWithDuplicatedDefaultExceptionsList({ - allRules: request.body, - exceptionsList: payloadRule.exceptions_list, - ruleId: idOrRuleIdOrUnknown, - }); + validateRulesWithDuplicatedDefaultExceptionsList({ + allRules: request.body, + exceptionsList: payloadRule.exceptions_list, + ruleId: idOrRuleIdOrUnknown, + }); - await validateRuleDefaultExceptionList({ - exceptionsList: payloadRule.exceptions_list, - rulesClient, - ruleRuleId: payloadRule.rule_id, - ruleId: payloadRule.id, - }); + await validateRuleDefaultExceptionList({ + exceptionsList: payloadRule.exceptions_list, + rulesClient, + ruleRuleId: payloadRule.rule_id, + ruleId: payloadRule.id, + }); - const rule = await patchRules({ - existingRule, - rulesClient, - nextParams: payloadRule, - }); - if (rule != null && rule.enabled != null && rule.name != null) { - return transformValidateBulkError(rule.id, rule); - } else { - return getIdBulkError({ id: payloadRule.id, ruleId: payloadRule.rule_id }); + const rule = await patchRules({ + existingRule, + rulesClient, + nextParams: payloadRule, + }); + if (rule != null && rule.enabled != null && rule.name != null) { + return transformValidateBulkError(rule.id, rule); + } else { + return getIdBulkError({ id: payloadRule.id, ruleId: payloadRule.rule_id }); + } + } catch (err) { + return transformBulkError(idOrRuleIdOrUnknown, err); } - } catch (err) { - return transformBulkError(idOrRuleIdOrUnknown, err); - } - }) - ); + }) + ); - const [validated, errors] = validate(rules, BulkCrudRulesResponse); - if (errors != null) { - return siemResponse.error({ - statusCode: 500, - body: errors, - headers: getDeprecatedBulkEndpointHeader(DETECTION_ENGINE_RULES_BULK_UPDATE), - }); - } else { - return response.ok({ - body: validated ?? {}, - headers: getDeprecatedBulkEndpointHeader(DETECTION_ENGINE_RULES_BULK_UPDATE), - }); + const [validated, errors] = validate(rules, BulkCrudRulesResponse); + if (errors != null) { + return siemResponse.error({ + statusCode: 500, + body: errors, + headers: getDeprecatedBulkEndpointHeader(DETECTION_ENGINE_RULES_BULK_UPDATE), + }); + } else { + return response.ok({ + body: validated ?? {}, + headers: getDeprecatedBulkEndpointHeader(DETECTION_ENGINE_RULES_BULK_UPDATE), + }); + } } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_update_rules/route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_update_rules/route.ts index f11412aa72b65..13d9f0945f034 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_update_rules/route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/bulk_update_rules/route.ts @@ -41,95 +41,102 @@ export const bulkUpdateRulesRoute = ( ml: SetupPlugins['ml'], logger: Logger ) => { - router.put( - { + router.versioned + .put({ + access: 'public', path: DETECTION_ENGINE_RULES_BULK_UPDATE, - validate: { - body: buildRouteValidation(BulkUpdateRulesRequestBody), - }, options: { tags: ['access:securitySolution'], }, - }, - async (context, request, response): Promise<IKibanaResponse<BulkCrudRulesResponse>> => { - logDeprecatedBulkEndpoint(logger, DETECTION_ENGINE_RULES_BULK_UPDATE); + }) + .addVersion( + { + version: '2023-10-31', + validate: { + request: { + body: buildRouteValidation(BulkUpdateRulesRequestBody), + }, + }, + }, + async (context, request, response): Promise<IKibanaResponse<BulkCrudRulesResponse>> => { + logDeprecatedBulkEndpoint(logger, DETECTION_ENGINE_RULES_BULK_UPDATE); - const siemResponse = buildSiemResponse(response); + const siemResponse = buildSiemResponse(response); - const ctx = await context.resolve(['core', 'securitySolution', 'alerting', 'licensing']); + const ctx = await context.resolve(['core', 'securitySolution', 'alerting', 'licensing']); - const rulesClient = ctx.alerting.getRulesClient(); - const savedObjectsClient = ctx.core.savedObjects.client; + const rulesClient = ctx.alerting.getRulesClient(); + const savedObjectsClient = ctx.core.savedObjects.client; - const mlAuthz = buildMlAuthz({ - license: ctx.licensing.license, - ml, - request, - savedObjectsClient, - }); + const mlAuthz = buildMlAuthz({ + license: ctx.licensing.license, + ml, + request, + savedObjectsClient, + }); - const rules = await Promise.all( - request.body.map(async (payloadRule) => { - const idOrRuleIdOrUnknown = payloadRule.id ?? payloadRule.rule_id ?? '(unknown id)'; - try { - const validationErrors = validateUpdateRuleProps(payloadRule); - if (validationErrors.length) { - return createBulkErrorObject({ - ruleId: payloadRule.rule_id, - statusCode: 400, - message: validationErrors.join(), - }); - } + const rules = await Promise.all( + request.body.map(async (payloadRule) => { + const idOrRuleIdOrUnknown = payloadRule.id ?? payloadRule.rule_id ?? '(unknown id)'; + try { + const validationErrors = validateUpdateRuleProps(payloadRule); + if (validationErrors.length) { + return createBulkErrorObject({ + ruleId: payloadRule.rule_id, + statusCode: 400, + message: validationErrors.join(), + }); + } - throwAuthzError(await mlAuthz.validateRuleType(payloadRule.type)); + throwAuthzError(await mlAuthz.validateRuleType(payloadRule.type)); - const existingRule = await readRules({ - rulesClient, - ruleId: payloadRule.rule_id, - id: payloadRule.id, - }); + const existingRule = await readRules({ + rulesClient, + ruleId: payloadRule.rule_id, + id: payloadRule.id, + }); - validateRulesWithDuplicatedDefaultExceptionsList({ - allRules: request.body, - exceptionsList: payloadRule.exceptions_list, - ruleId: idOrRuleIdOrUnknown, - }); - await validateRuleDefaultExceptionList({ - exceptionsList: payloadRule.exceptions_list, - rulesClient, - ruleRuleId: payloadRule.rule_id, - ruleId: payloadRule.id, - }); + validateRulesWithDuplicatedDefaultExceptionsList({ + allRules: request.body, + exceptionsList: payloadRule.exceptions_list, + ruleId: idOrRuleIdOrUnknown, + }); + await validateRuleDefaultExceptionList({ + exceptionsList: payloadRule.exceptions_list, + rulesClient, + ruleRuleId: payloadRule.rule_id, + ruleId: payloadRule.id, + }); - const rule = await updateRules({ - rulesClient, - existingRule, - ruleUpdate: payloadRule, - }); - if (rule != null) { - return transformValidateBulkError(rule.id, rule); - } else { - return getIdBulkError({ id: payloadRule.id, ruleId: payloadRule.rule_id }); + const rule = await updateRules({ + rulesClient, + existingRule, + ruleUpdate: payloadRule, + }); + if (rule != null) { + return transformValidateBulkError(rule.id, rule); + } else { + return getIdBulkError({ id: payloadRule.id, ruleId: payloadRule.rule_id }); + } + } catch (err) { + return transformBulkError(idOrRuleIdOrUnknown, err); } - } catch (err) { - return transformBulkError(idOrRuleIdOrUnknown, err); - } - }) - ); + }) + ); - const [validated, errors] = validate(rules, BulkCrudRulesResponse); - if (errors != null) { - return siemResponse.error({ - statusCode: 500, - body: errors, - headers: getDeprecatedBulkEndpointHeader(DETECTION_ENGINE_RULES_BULK_UPDATE), - }); - } else { - return response.ok({ - body: validated ?? {}, - headers: getDeprecatedBulkEndpointHeader(DETECTION_ENGINE_RULES_BULK_UPDATE), - }); + const [validated, errors] = validate(rules, BulkCrudRulesResponse); + if (errors != null) { + return siemResponse.error({ + statusCode: 500, + body: errors, + headers: getDeprecatedBulkEndpointHeader(DETECTION_ENGINE_RULES_BULK_UPDATE), + }); + } else { + return response.ok({ + body: validated ?? {}, + headers: getDeprecatedBulkEndpointHeader(DETECTION_ENGINE_RULES_BULK_UPDATE), + }); + } } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/coverage_overview/handle_coverage_overview_request.test.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/coverage_overview/handle_coverage_overview_request.test.ts index d80057ffdef90..371ab0dce2c45 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/coverage_overview/handle_coverage_overview_request.test.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/coverage_overview/handle_coverage_overview_request.test.ts @@ -7,17 +7,14 @@ import type { Rule } from '@kbn/alerting-plugin/common'; import { rulesClientMock } from '@kbn/alerting-plugin/server/mocks'; +import { findRules } from '../../../logic/search/find_rules'; import { handleCoverageOverviewRequest } from './handle_coverage_overview_request'; -describe('handleCoverageOverviewRequest', () => { - let rulesClient: ReturnType<typeof rulesClientMock.create>; - - beforeEach(() => { - rulesClient = rulesClientMock.create(); - }); +jest.mock('../../../logic/search/find_rules'); - it('does not request more than 10k', async () => { - rulesClient.find +describe('handleCoverageOverviewRequest', () => { + it('does not request more than 10k rules', async () => { + (findRules as jest.Mock) .mockResolvedValueOnce({ total: 25555, page: 1, @@ -40,17 +37,17 @@ describe('handleCoverageOverviewRequest', () => { await handleCoverageOverviewRequest({ params: {}, deps: { - rulesClient, + rulesClient: rulesClientMock.create(), }, }); - expect(rulesClient.find).toHaveBeenCalledTimes(1); - expect(rulesClient.find).toHaveBeenCalledWith({ - options: expect.objectContaining({ + expect(findRules).toHaveBeenCalledTimes(1); + expect(findRules).toHaveBeenCalledWith( + expect.objectContaining({ page: 1, perPage: 10000, - }), - }); + }) + ); }); }); diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/coverage_overview/handle_coverage_overview_request.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/coverage_overview/handle_coverage_overview_request.ts index 961307a7e4262..67900c2296355 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/coverage_overview/handle_coverage_overview_request.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/coverage_overview/handle_coverage_overview_request.ts @@ -17,6 +17,7 @@ import { CoverageOverviewRuleActivity, } from '../../../../../../../common/api/detection_engine'; import type { RuleParams } from '../../../../rule_schema'; +import { findRules } from '../../../logic/search/find_rules'; type CoverageOverviewRuleParams = Pick<RuleParams, 'threat'>; @@ -34,32 +35,25 @@ export async function handleCoverageOverviewRequest({ deps: { rulesClient }, }: HandleCoverageOverviewRequestArgs): Promise<CoverageOverviewResponse> { const activitySet = new Set(filter?.activity); - const kqlFilter = filter - ? convertRulesFilterToKQL({ - filter: filter.search_term, - showCustomRules: filter.source?.includes(CoverageOverviewRuleSource.Custom) ?? false, - showElasticRules: filter.source?.includes(CoverageOverviewRuleSource.Prebuilt) ?? false, - enabled: - (activitySet.has(CoverageOverviewRuleActivity.Enabled) && - activitySet.has(CoverageOverviewRuleActivity.Disabled)) || - (!activitySet.has(CoverageOverviewRuleActivity.Enabled) && - !activitySet.has(CoverageOverviewRuleActivity.Disabled)) - ? undefined - : activitySet.has(CoverageOverviewRuleActivity.Enabled), - }) - : undefined; + const kqlFilter = convertRulesFilterToKQL({ + filter: filter?.search_term, + showCustomRules: filter?.source?.includes(CoverageOverviewRuleSource.Custom) ?? false, + showElasticRules: filter?.source?.includes(CoverageOverviewRuleSource.Prebuilt) ?? false, + enabled: getIsEnabledFilter(activitySet), + }); // rulesClient.find uses ES Search API to fetch the rules. It has some limitations when the number of rules exceeds // index.max_result_window (set to 10K by default) Kibana fails. A proper way to handle it is via ES PIT API. // This way the endpoint handles max 10K rules for now while support for the higher number of rules will be addressed // in https://github.com/elastic/kibana/issues/160698 - const rules = await rulesClient.find<CoverageOverviewRuleParams>({ - options: { - filter: kqlFilter, - fields: ['name', 'enabled', 'params.threat'], - page: 1, - perPage: 10000, - }, + const rules = await findRules({ + rulesClient, + filter: kqlFilter, + fields: ['name', 'enabled', 'params.threat'], + page: 1, + perPage: 10000, + sortField: undefined, + sortOrder: undefined, }); return rules.data.reduce(appendRuleToResponse, { @@ -69,6 +63,47 @@ export async function handleCoverageOverviewRequest({ } as CoverageOverviewResponse); } +function getIsEnabledFilter(activitySet: Set<CoverageOverviewRuleActivity>): boolean | undefined { + const bothSpecified = + activitySet.has(CoverageOverviewRuleActivity.Enabled) && + activitySet.has(CoverageOverviewRuleActivity.Disabled); + const noneSpecified = + !activitySet.has(CoverageOverviewRuleActivity.Enabled) && + !activitySet.has(CoverageOverviewRuleActivity.Disabled); + + return bothSpecified || noneSpecified + ? undefined + : activitySet.has(CoverageOverviewRuleActivity.Enabled); +} + +function appendRuleToResponse( + response: CoverageOverviewResponse, + rule: SanitizedRule<CoverageOverviewRuleParams> +): CoverageOverviewResponse { + const categories = extractRuleMitreCategories(rule); + + for (const category of categories) { + if (!response.coverage[category]) { + response.coverage[category] = [rule.id]; + } else { + response.coverage[category].push(rule.id); + } + } + + if (categories.length === 0) { + response.unmapped_rule_ids.push(rule.id); + } + + response.rules_data[rule.id] = { + name: rule.name, + activity: rule.enabled + ? CoverageOverviewRuleActivity.Enabled + : CoverageOverviewRuleActivity.Disabled, + }; + + return response; +} + /** * Extracts rule's MITRE ATT&CK™ tactics, techniques and subtechniques * @@ -101,31 +136,3 @@ function extractRuleMitreCategories(rule: SanitizedRule<CoverageOverviewRulePara return Array.from(categories); } - -function appendRuleToResponse( - response: CoverageOverviewResponse, - rule: SanitizedRule<CoverageOverviewRuleParams> -): CoverageOverviewResponse { - const categories = extractRuleMitreCategories(rule); - - for (const category of categories) { - if (!response.coverage[category]) { - response.coverage[category] = [rule.id]; - } else { - response.coverage[category].push(rule.id); - } - } - - if (categories.length === 0) { - response.unmapped_rule_ids.push(rule.id); - } - - response.rules_data[rule.id] = { - name: rule.name, - activity: rule.enabled - ? CoverageOverviewRuleActivity.Enabled - : CoverageOverviewRuleActivity.Disabled, - }; - - return response; -} diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/coverage_overview/route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/coverage_overview/route.ts index 485dc7795c458..0a298008dd354 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/coverage_overview/route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/coverage_overview/route.ts @@ -18,38 +18,45 @@ import { buildSiemResponse } from '../../../../routes/utils'; import { handleCoverageOverviewRequest } from './handle_coverage_overview_request'; export const getCoverageOverviewRoute = (router: SecuritySolutionPluginRouter) => { - router.post( - { + router.versioned + .post({ + access: 'internal', path: RULE_MANAGEMENT_COVERAGE_OVERVIEW_URL, - validate: { - body: buildRouteValidation(CoverageOverviewRequestBody), - }, options: { tags: ['access:securitySolution'], }, - }, - async (context, request, response): Promise<IKibanaResponse<CoverageOverviewResponse>> => { - const siemResponse = buildSiemResponse(response); + }) + .addVersion( + { + version: '1', + validate: { + request: { + body: buildRouteValidation(CoverageOverviewRequestBody), + }, + }, + }, + async (context, request, response): Promise<IKibanaResponse<CoverageOverviewResponse>> => { + const siemResponse = buildSiemResponse(response); - try { - const ctx = await context.resolve(['alerting']); + try { + const ctx = await context.resolve(['alerting']); - const responseData = await handleCoverageOverviewRequest({ - params: request.body, - deps: { rulesClient: ctx.alerting.getRulesClient() }, - }); + const responseData = await handleCoverageOverviewRequest({ + params: request.body, + deps: { rulesClient: ctx.alerting.getRulesClient() }, + }); - return response.ok({ - body: responseData, - }); - } catch (err) { - const error = transformError(err); + return response.ok({ + body: responseData, + }); + } catch (err) { + const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); + } } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/create_rule/route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/create_rule/route.ts index 5aab7a60e5fba..746917a30c298 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/create_rule/route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/create_rule/route.ts @@ -29,91 +29,99 @@ export const createRuleRoute = ( router: SecuritySolutionPluginRouter, ml: SetupPlugins['ml'] ): void => { - router.post( - { + router.versioned + .post({ + access: 'public', path: DETECTION_ENGINE_RULES_URL, - validate: { - body: buildRouteValidation(CreateRuleRequestBody), - }, + options: { tags: ['access:securitySolution'], }, - }, - async (context, request, response): Promise<IKibanaResponse<CreateRuleResponse>> => { - const siemResponse = buildSiemResponse(response); - const validationErrors = validateCreateRuleProps(request.body); - if (validationErrors.length) { - return siemResponse.error({ statusCode: 400, body: validationErrors }); - } + }) + .addVersion( + { + version: '2023-10-31', + validate: { + request: { + body: buildRouteValidation(CreateRuleRequestBody), + }, + }, + }, + async (context, request, response): Promise<IKibanaResponse<CreateRuleResponse>> => { + const siemResponse = buildSiemResponse(response); + const validationErrors = validateCreateRuleProps(request.body); + if (validationErrors.length) { + return siemResponse.error({ statusCode: 400, body: validationErrors }); + } - try { - const ctx = await context.resolve([ - 'core', - 'securitySolution', - 'licensing', - 'alerting', - 'lists', - ]); + try { + const ctx = await context.resolve([ + 'core', + 'securitySolution', + 'licensing', + 'alerting', + 'lists', + ]); - const rulesClient = ctx.alerting.getRulesClient(); - const savedObjectsClient = ctx.core.savedObjects.client; - const exceptionsClient = ctx.lists?.getExceptionListClient(); + const rulesClient = ctx.alerting.getRulesClient(); + const savedObjectsClient = ctx.core.savedObjects.client; + const exceptionsClient = ctx.lists?.getExceptionListClient(); - if (request.body.rule_id != null) { - const rule = await readRules({ - rulesClient, - ruleId: request.body.rule_id, - id: undefined, - }); - if (rule != null) { - return siemResponse.error({ - statusCode: 409, - body: `rule_id: "${request.body.rule_id}" already exists`, + if (request.body.rule_id != null) { + const rule = await readRules({ + rulesClient, + ruleId: request.body.rule_id, + id: undefined, }); + if (rule != null) { + return siemResponse.error({ + statusCode: 409, + body: `rule_id: "${request.body.rule_id}" already exists`, + }); + } } - } - const mlAuthz = buildMlAuthz({ - license: ctx.licensing.license, - ml, - request, - savedObjectsClient, - }); - throwAuthzError(await mlAuthz.validateRuleType(request.body.type)); + const mlAuthz = buildMlAuthz({ + license: ctx.licensing.license, + ml, + request, + savedObjectsClient, + }); + throwAuthzError(await mlAuthz.validateRuleType(request.body.type)); - // This will create the endpoint list if it does not exist yet - await exceptionsClient?.createEndpointList(); - checkDefaultRuleExceptionListReferences({ - exceptionLists: request.body.exceptions_list, - }); + // This will create the endpoint list if it does not exist yet + await exceptionsClient?.createEndpointList(); + checkDefaultRuleExceptionListReferences({ + exceptionLists: request.body.exceptions_list, + }); - await validateRuleDefaultExceptionList({ - exceptionsList: request.body.exceptions_list, - rulesClient, - ruleRuleId: undefined, - ruleId: undefined, - }); + await validateRuleDefaultExceptionList({ + exceptionsList: request.body.exceptions_list, + rulesClient, + ruleRuleId: undefined, + ruleId: undefined, + }); - await validateResponseActionsPermissions(ctx.securitySolution, request.body); + await validateResponseActionsPermissions(ctx.securitySolution, request.body); - const createdRule = await createRules({ - rulesClient, - params: request.body, - }); + const createdRule = await createRules({ + rulesClient, + params: request.body, + }); - const [validated, errors] = transformValidate(createdRule); - if (errors != null) { - return siemResponse.error({ statusCode: 500, body: errors }); - } else { - return response.ok({ body: validated }); + const [validated, errors] = transformValidate(createdRule); + if (errors != null) { + return siemResponse.error({ statusCode: 500, body: errors }); + } else { + return response.ok({ body: validated }); + } + } catch (err) { + const error = transformError(err as Error); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); } - } catch (err) { - const error = transformError(err as Error); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/delete_rule/route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/delete_rule/route.ts index e43014b3ec8b9..c1479b9ef125d 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/delete_rule/route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/delete_rule/route.ts @@ -21,57 +21,64 @@ import { readRules } from '../../../logic/crud/read_rules'; import { getIdError, transform } from '../../../utils/utils'; export const deleteRuleRoute = (router: SecuritySolutionPluginRouter) => { - router.delete( - { + router.versioned + .delete({ + access: 'public', path: DETECTION_ENGINE_RULES_URL, - validate: { - query: buildRouteValidation(DeleteRuleRequestQuery), - }, options: { tags: ['access:securitySolution'], }, - }, - async (context, request, response): Promise<IKibanaResponse<DeleteRuleResponse>> => { - const siemResponse = buildSiemResponse(response); - const validationErrors = validateQueryRuleByIds(request.query); - if (validationErrors.length) { - return siemResponse.error({ statusCode: 400, body: validationErrors }); - } + }) + .addVersion( + { + version: '2023-10-31', + validate: { + request: { + query: buildRouteValidation(DeleteRuleRequestQuery), + }, + }, + }, + async (context, request, response): Promise<IKibanaResponse<DeleteRuleResponse>> => { + const siemResponse = buildSiemResponse(response); + const validationErrors = validateQueryRuleByIds(request.query); + if (validationErrors.length) { + return siemResponse.error({ statusCode: 400, body: validationErrors }); + } + + try { + const { id, rule_id: ruleId } = request.query; - try { - const { id, rule_id: ruleId } = request.query; + const ctx = await context.resolve(['core', 'securitySolution', 'alerting']); + const rulesClient = ctx.alerting.getRulesClient(); - const ctx = await context.resolve(['core', 'securitySolution', 'alerting']); - const rulesClient = ctx.alerting.getRulesClient(); + const rule = await readRules({ rulesClient, id, ruleId }); - const rule = await readRules({ rulesClient, id, ruleId }); + if (!rule) { + const error = getIdError({ id, ruleId }); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); + } - if (!rule) { - const error = getIdError({ id, ruleId }); + await deleteRules({ + ruleId: rule.id, + rulesClient, + }); + + const transformed = transform(rule); + if (transformed == null) { + return siemResponse.error({ statusCode: 500, body: 'failed to transform alert' }); + } else { + return response.ok({ body: transformed ?? {} }); + } + } catch (err) { + const error = transformError(err); return siemResponse.error({ body: error.message, statusCode: error.statusCode, }); } - - await deleteRules({ - ruleId: rule.id, - rulesClient, - }); - - const transformed = transform(rule); - if (transformed == null) { - return siemResponse.error({ statusCode: 500, body: 'failed to transform alert' }); - } else { - return response.ok({ body: transformed ?? {} }); - } - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/export_rules/route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/export_rules/route.ts index d1a98fc429532..674b8433d5c00 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/export_rules/route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/export_rules/route.ts @@ -27,90 +27,97 @@ export const exportRulesRoute = ( config: ConfigType, logger: Logger ) => { - router.post( - { + router.versioned + .post({ + access: 'public', path: `${DETECTION_ENGINE_RULES_URL}/_export`, - validate: { - query: buildRouteValidation(ExportRulesRequestQuery), - body: buildRouteValidation(ExportRulesRequestBody), - }, options: { tags: ['access:securitySolution'], }, - }, - async (context, request, response) => { - const siemResponse = buildSiemResponse(response); - const rulesClient = (await context.alerting).getRulesClient(); - const exceptionsClient = (await context.lists)?.getExceptionListClient(); - const actionsClient = (await context.actions)?.getActionsClient(); + }) + .addVersion( + { + version: '2023-10-31', + validate: { + request: { + query: buildRouteValidation(ExportRulesRequestQuery), + body: buildRouteValidation(ExportRulesRequestBody), + }, + }, + }, + async (context, request, response) => { + const siemResponse = buildSiemResponse(response); + const rulesClient = (await context.alerting).getRulesClient(); + const exceptionsClient = (await context.lists)?.getExceptionListClient(); + const actionsClient = (await context.actions)?.getActionsClient(); - const { - getExporter, - getClient, - client: savedObjectsClient, - } = (await context.core).savedObjects; + const { + getExporter, + getClient, + client: savedObjectsClient, + } = (await context.core).savedObjects; - const client = getClient({ includedHiddenTypes: ['action'] }); - const actionsExporter = getExporter(client); - try { - const exportSizeLimit = config.maxRuleImportExportSize; - if (request.body?.objects != null && request.body.objects.length > exportSizeLimit) { - return siemResponse.error({ - statusCode: 400, - body: `Can't export more than ${exportSizeLimit} rules`, - }); - } else { - const nonPackagedRulesCount = await getNonPackagedRulesCount({ - rulesClient, - }); - if (nonPackagedRulesCount > exportSizeLimit) { + const client = getClient({ includedHiddenTypes: ['action'] }); + const actionsExporter = getExporter(client); + try { + const exportSizeLimit = config.maxRuleImportExportSize; + if (request.body?.objects != null && request.body.objects.length > exportSizeLimit) { return siemResponse.error({ statusCode: 400, body: `Can't export more than ${exportSizeLimit} rules`, }); + } else { + const nonPackagedRulesCount = await getNonPackagedRulesCount({ + rulesClient, + }); + if (nonPackagedRulesCount > exportSizeLimit) { + return siemResponse.error({ + statusCode: 400, + body: `Can't export more than ${exportSizeLimit} rules`, + }); + } } - } - const exportedRulesAndReferences = - request.body?.objects != null - ? await getExportByObjectIds( - rulesClient, - exceptionsClient, - savedObjectsClient, - request.body.objects, - logger, - actionsExporter, - request, - actionsClient - ) - : await getExportAll( - rulesClient, - exceptionsClient, - savedObjectsClient, - logger, - actionsExporter, - request, - actionsClient - ); + const exportedRulesAndReferences = + request.body?.objects != null + ? await getExportByObjectIds( + rulesClient, + exceptionsClient, + savedObjectsClient, + request.body.objects, + logger, + actionsExporter, + request, + actionsClient + ) + : await getExportAll( + rulesClient, + exceptionsClient, + savedObjectsClient, + logger, + actionsExporter, + request, + actionsClient + ); - const responseBody = request.query.exclude_export_details - ? exportedRulesAndReferences.rulesNdjson - : `${exportedRulesAndReferences.rulesNdjson}${exportedRulesAndReferences.exceptionLists}${exportedRulesAndReferences.actionConnectors}${exportedRulesAndReferences.exportDetails}`; + const responseBody = request.query.exclude_export_details + ? exportedRulesAndReferences.rulesNdjson + : `${exportedRulesAndReferences.rulesNdjson}${exportedRulesAndReferences.exceptionLists}${exportedRulesAndReferences.actionConnectors}${exportedRulesAndReferences.exportDetails}`; - return response.ok({ - headers: { - 'Content-Disposition': `attachment; filename="${request.query.file_name}"`, - 'Content-Type': 'application/ndjson', - }, - body: responseBody, - }); - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); + return response.ok({ + headers: { + 'Content-Disposition': `attachment; filename="${request.query.file_name}"`, + 'Content-Type': 'application/ndjson', + }, + body: responseBody, + }); + } catch (err) { + const error = transformError(err); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); + } } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/filters/route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/filters/route.ts index 07c71c34da175..183d4f8e2f78d 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/filters/route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/filters/route.ts @@ -52,48 +52,53 @@ async function fetchRulesCount(rulesClient: RulesClient): Promise<RulesCount> { } export const getRuleManagementFilters = (router: SecuritySolutionPluginRouter) => { - router.get( - { + router.versioned + .get({ + access: 'internal', path: RULE_MANAGEMENT_FILTERS_URL, - validate: false, options: { tags: ['access:securitySolution'], }, - }, - async (context, _, response): Promise<IKibanaResponse<GetRuleManagementFiltersResponse>> => { - const siemResponse = buildSiemResponse(response); - const ctx = await context.resolve(['alerting']); - const rulesClient = ctx.alerting.getRulesClient(); + }) + .addVersion( + { + version: '1', + validate: false, + }, + async (context, _, response): Promise<IKibanaResponse<GetRuleManagementFiltersResponse>> => { + const siemResponse = buildSiemResponse(response); + const ctx = await context.resolve(['alerting']); + const rulesClient = ctx.alerting.getRulesClient(); - try { - const [{ prebuilt: prebuiltRulesCount, custom: customRulesCount }, tags] = - await Promise.all([fetchRulesCount(rulesClient), readTags({ rulesClient })]); - const responseBody: GetRuleManagementFiltersResponse = { - rules_summary: { - custom_count: customRulesCount, - prebuilt_installed_count: prebuiltRulesCount, - }, - aggregated_fields: { - tags, - }, - }; - const [validatedBody, validationError] = validate( - responseBody, - GetRuleManagementFiltersResponse - ); + try { + const [{ prebuilt: prebuiltRulesCount, custom: customRulesCount }, tags] = + await Promise.all([fetchRulesCount(rulesClient), readTags({ rulesClient })]); + const responseBody: GetRuleManagementFiltersResponse = { + rules_summary: { + custom_count: customRulesCount, + prebuilt_installed_count: prebuiltRulesCount, + }, + aggregated_fields: { + tags, + }, + }; + const [validatedBody, validationError] = validate( + responseBody, + GetRuleManagementFiltersResponse + ); - if (validationError != null) { - return siemResponse.error({ statusCode: 500, body: validationError }); - } else { - return response.ok({ body: validatedBody }); + if (validationError != null) { + return siemResponse.error({ statusCode: 500, body: validationError }); + } else { + return response.ok({ body: validatedBody }); + } + } catch (err) { + const error = transformError(err); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); } - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/find_rules/route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/find_rules/route.ts index 5a1062981f8af..76496d26cb856 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/find_rules/route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/find_rules/route.ts @@ -22,52 +22,59 @@ import { buildRouteValidation } from '../../../../../../utils/build_validation/r import { transformFindAlerts } from '../../../utils/utils'; export const findRulesRoute = (router: SecuritySolutionPluginRouter, logger: Logger) => { - router.get( - { + router.versioned + .get({ + access: 'public', path: DETECTION_ENGINE_RULES_URL_FIND, - validate: { - query: buildRouteValidation(FindRulesRequestQuery), - }, options: { tags: ['access:securitySolution'], }, - }, - async (context, request, response): Promise<IKibanaResponse<FindRulesResponse>> => { - const siemResponse = buildSiemResponse(response); + }) + .addVersion( + { + version: '2023-10-31', + validate: { + request: { + query: buildRouteValidation(FindRulesRequestQuery), + }, + }, + }, + async (context, request, response): Promise<IKibanaResponse<FindRulesResponse>> => { + const siemResponse = buildSiemResponse(response); - const validationErrors = validateFindRulesRequestQuery(request.query); - if (validationErrors.length) { - return siemResponse.error({ statusCode: 400, body: validationErrors }); - } + const validationErrors = validateFindRulesRequestQuery(request.query); + if (validationErrors.length) { + return siemResponse.error({ statusCode: 400, body: validationErrors }); + } - try { - const { query } = request; - const ctx = await context.resolve(['core', 'securitySolution', 'alerting']); - const rulesClient = ctx.alerting.getRulesClient(); + try { + const { query } = request; + const ctx = await context.resolve(['core', 'securitySolution', 'alerting']); + const rulesClient = ctx.alerting.getRulesClient(); - const rules = await findRules({ - rulesClient, - perPage: query.per_page, - page: query.page, - sortField: query.sort_field, - sortOrder: query.sort_order, - filter: query.filter, - fields: query.fields, - }); + const rules = await findRules({ + rulesClient, + perPage: query.per_page, + page: query.page, + sortField: query.sort_field, + sortOrder: query.sort_order, + filter: query.filter, + fields: query.fields, + }); - const transformed = transformFindAlerts(rules); - if (transformed == null) { - return siemResponse.error({ statusCode: 500, body: 'Internal error transforming' }); - } else { - return response.ok({ body: transformed ?? {} }); + const transformed = transformFindAlerts(rules); + if (transformed == null) { + return siemResponse.error({ statusCode: 500, body: 'Internal error transforming' }); + } else { + return response.ok({ body: transformed ?? {} }); + } + } catch (err) { + const error = transformError(err); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); } - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/import_rules/route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/import_rules/route.ts index ac4d849e00ea4..3ec268676801d 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/import_rules/route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/import_rules/route.ts @@ -47,15 +47,10 @@ export const importRulesRoute = ( config: ConfigType, ml: SetupPlugins['ml'] ) => { - router.post( - { + router.versioned + .post({ + access: 'public', path: `${DETECTION_ENGINE_RULES_URL}/_import`, - validate: { - query: buildRouteValidation<typeof ImportRulesRequestQuery, ImportRulesRequestQueryDecoded>( - ImportRulesRequestQuery - ), - body: schema.any(), // validation on file object is accomplished later in the handler. - }, options: { tags: ['access:securitySolution'], body: { @@ -63,150 +58,163 @@ export const importRulesRoute = ( output: 'stream', }, }, - }, - async (context, request, response): Promise<IKibanaResponse<ImportRulesResponse>> => { - const siemResponse = buildSiemResponse(response); - - try { - const ctx = await context.resolve([ - 'core', - 'securitySolution', - 'alerting', - 'actions', - 'lists', - 'licensing', - ]); - - const rulesClient = ctx.alerting.getRulesClient(); - const actionsClient = ctx.actions.getActionsClient(); - const actionSOClient = ctx.core.savedObjects.getClient({ - includedHiddenTypes: ['action'], - }); - const actionsImporter = ctx.core.savedObjects.getImporter(actionSOClient); - - const savedObjectsClient = ctx.core.savedObjects.client; - const exceptionsClient = ctx.lists?.getExceptionListClient(); - - const mlAuthz = buildMlAuthz({ - license: ctx.licensing.license, - ml, - request, - savedObjectsClient, - }); - - const { filename } = (request.body.file as HapiReadableStream).hapi; - const fileExtension = extname(filename).toLowerCase(); - if (fileExtension !== '.ndjson') { - return siemResponse.error({ - statusCode: 400, - body: `Invalid file extension ${fileExtension}`, + }) + .addVersion( + { + version: '2023-10-31', + validate: { + request: { + query: buildRouteValidation< + typeof ImportRulesRequestQuery, + ImportRulesRequestQueryDecoded + >(ImportRulesRequestQuery), + body: schema.any(), // validation on file object is accomplished later in the handler. + }, + }, + }, + async (context, request, response): Promise<IKibanaResponse<ImportRulesResponse>> => { + const siemResponse = buildSiemResponse(response); + + try { + const ctx = await context.resolve([ + 'core', + 'securitySolution', + 'alerting', + 'actions', + 'lists', + 'licensing', + ]); + + const rulesClient = ctx.alerting.getRulesClient(); + const actionsClient = ctx.actions.getActionsClient(); + const actionSOClient = ctx.core.savedObjects.getClient({ + includedHiddenTypes: ['action'], }); - } + const actionsImporter = ctx.core.savedObjects.getImporter(actionSOClient); + + const savedObjectsClient = ctx.core.savedObjects.client; + const exceptionsClient = ctx.lists?.getExceptionListClient(); + + const mlAuthz = buildMlAuthz({ + license: ctx.licensing.license, + ml, + request, + savedObjectsClient, + }); + + const { filename } = (request.body.file as HapiReadableStream).hapi; + const fileExtension = extname(filename).toLowerCase(); + if (fileExtension !== '.ndjson') { + return siemResponse.error({ + statusCode: 400, + body: `Invalid file extension ${fileExtension}`, + }); + } - const objectLimit = config.maxRuleImportExportSize; - - // parse file to separate out exceptions from rules - const readAllStream = createRulesAndExceptionsStreamFromNdJson(objectLimit); - const [{ exceptions, rules, actionConnectors }] = await createPromiseFromStreams< - RuleExceptionsPromiseFromStreams[] - >([request.body.file as HapiReadableStream, ...readAllStream]); - - // import exceptions, includes validation - const { - errors: exceptionsErrors, - successCount: exceptionsSuccessCount, - success: exceptionsSuccess, - } = await importRuleExceptions({ - exceptions, - exceptionsClient, - overwrite: request.query.overwrite_exceptions, - maxExceptionsImportSize: objectLimit, - }); - // report on duplicate rules - const [duplicateIdErrors, parsedObjectsWithoutDuplicateErrors] = - getTupleDuplicateErrorsAndUniqueRules(rules, request.query.overwrite); - - const migratedParsedObjectsWithoutDuplicateErrors = await migrateLegacyActionsIds( - parsedObjectsWithoutDuplicateErrors, - actionSOClient - ); - - // import actions-connectors - const { - successCount: actionConnectorSuccessCount, - success: actionConnectorSuccess, - warnings: actionConnectorWarnings, - errors: actionConnectorErrors, - rulesWithMigratedActions, - } = await importRuleActionConnectors({ - actionConnectors, - actionsClient, - actionsImporter, - rules: migratedParsedObjectsWithoutDuplicateErrors, - overwrite: request.query.overwrite_action_connectors, - }); - - // rulesWithMigratedActions: Is returned only in case connectors were exported from different namespace and the - // original rules actions' ids were replaced with new destinationIds - const parsedRules = actionConnectorErrors.length - ? [] - : rulesWithMigratedActions || migratedParsedObjectsWithoutDuplicateErrors; - - // gather all exception lists that the imported rules reference - const foundReferencedExceptionLists = await getReferencedExceptionLists({ - rules: parsedRules, - savedObjectsClient, - }); - - const chunkParseObjects = chunk(CHUNK_PARSED_OBJECT_SIZE, parsedRules); - - const importRuleResponse: ImportRuleResponse[] = await importRulesHelper({ - ruleChunks: chunkParseObjects, - rulesResponseAcc: [...actionConnectorErrors, ...duplicateIdErrors], - mlAuthz, - overwriteRules: request.query.overwrite, - rulesClient, - savedObjectsClient, - exceptionsClient, - spaceId: ctx.securitySolution.getSpaceId(), - existingLists: foundReferencedExceptionLists, - allowMissingConnectorSecrets: !!actionConnectors.length, - }); - const errorsResp = importRuleResponse.filter((resp) => isBulkError(resp)) as BulkError[]; - const successes = importRuleResponse.filter((resp) => { - if (isImportRegular(resp)) { - return resp.status_code === 200; + const objectLimit = config.maxRuleImportExportSize; + + // parse file to separate out exceptions from rules + const readAllStream = createRulesAndExceptionsStreamFromNdJson(objectLimit); + const [{ exceptions, rules, actionConnectors }] = await createPromiseFromStreams< + RuleExceptionsPromiseFromStreams[] + >([request.body.file as HapiReadableStream, ...readAllStream]); + + // import exceptions, includes validation + const { + errors: exceptionsErrors, + successCount: exceptionsSuccessCount, + success: exceptionsSuccess, + } = await importRuleExceptions({ + exceptions, + exceptionsClient, + overwrite: request.query.overwrite_exceptions, + maxExceptionsImportSize: objectLimit, + }); + // report on duplicate rules + const [duplicateIdErrors, parsedObjectsWithoutDuplicateErrors] = + getTupleDuplicateErrorsAndUniqueRules(rules, request.query.overwrite); + + const migratedParsedObjectsWithoutDuplicateErrors = await migrateLegacyActionsIds( + parsedObjectsWithoutDuplicateErrors, + actionSOClient + ); + + // import actions-connectors + const { + successCount: actionConnectorSuccessCount, + success: actionConnectorSuccess, + warnings: actionConnectorWarnings, + errors: actionConnectorErrors, + rulesWithMigratedActions, + } = await importRuleActionConnectors({ + actionConnectors, + actionsClient, + actionsImporter, + rules: migratedParsedObjectsWithoutDuplicateErrors, + overwrite: request.query.overwrite_action_connectors, + }); + + // rulesWithMigratedActions: Is returned only in case connectors were exported from different namespace and the + // original rules actions' ids were replaced with new destinationIds + const parsedRules = actionConnectorErrors.length + ? [] + : rulesWithMigratedActions || migratedParsedObjectsWithoutDuplicateErrors; + + // gather all exception lists that the imported rules reference + const foundReferencedExceptionLists = await getReferencedExceptionLists({ + rules: parsedRules, + savedObjectsClient, + }); + + const chunkParseObjects = chunk(CHUNK_PARSED_OBJECT_SIZE, parsedRules); + + const importRuleResponse: ImportRuleResponse[] = await importRulesHelper({ + ruleChunks: chunkParseObjects, + rulesResponseAcc: [...actionConnectorErrors, ...duplicateIdErrors], + mlAuthz, + overwriteRules: request.query.overwrite, + rulesClient, + savedObjectsClient, + exceptionsClient, + spaceId: ctx.securitySolution.getSpaceId(), + existingLists: foundReferencedExceptionLists, + allowMissingConnectorSecrets: !!actionConnectors.length, + }); + const errorsResp = importRuleResponse.filter((resp) => isBulkError(resp)) as BulkError[]; + const successes = importRuleResponse.filter((resp) => { + if (isImportRegular(resp)) { + return resp.status_code === 200; + } else { + return false; + } + }); + const importRules: ImportRulesResponse = { + success: errorsResp.length === 0, + success_count: successes.length, + rules_count: rules.length, + errors: errorsResp, + exceptions_errors: exceptionsErrors, + exceptions_success: exceptionsSuccess, + exceptions_success_count: exceptionsSuccessCount, + action_connectors_success: actionConnectorSuccess, + action_connectors_success_count: actionConnectorSuccessCount, + action_connectors_errors: actionConnectorErrors, + action_connectors_warnings: actionConnectorWarnings, + }; + + const [validated, errors] = validate(importRules, ImportRulesResponse); + if (errors != null) { + return siemResponse.error({ statusCode: 500, body: errors }); } else { - return false; + return response.ok({ body: validated ?? {} }); } - }); - const importRules: ImportRulesResponse = { - success: errorsResp.length === 0, - success_count: successes.length, - rules_count: rules.length, - errors: errorsResp, - exceptions_errors: exceptionsErrors, - exceptions_success: exceptionsSuccess, - exceptions_success_count: exceptionsSuccessCount, - action_connectors_success: actionConnectorSuccess, - action_connectors_success_count: actionConnectorSuccessCount, - action_connectors_errors: actionConnectorErrors, - action_connectors_warnings: actionConnectorWarnings, - }; - - const [validated, errors] = validate(importRules, ImportRulesResponse); - if (errors != null) { - return siemResponse.error({ statusCode: 500, body: errors }); - } else { - return response.ok({ body: validated ?? {} }); + } catch (err) { + const error = transformError(err); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); } - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/patch_rule/route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/patch_rule/route.ts index 558137726d2f5..39fdd30306378 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/patch_rule/route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/patch_rule/route.ts @@ -27,85 +27,92 @@ import { getIdError } from '../../../utils/utils'; import { transformValidate } from '../../../utils/validate'; export const patchRuleRoute = (router: SecuritySolutionPluginRouter, ml: SetupPlugins['ml']) => { - router.patch( - { + router.versioned + .patch({ + access: 'public', path: DETECTION_ENGINE_RULES_URL, - validate: { - // Use non-exact validation because everything is optional in patch - since everything is optional, - // io-ts can't find the right schema from the type specific union and the exact check breaks. - // We do type specific validation after fetching the existing rule so we know the rule type. - body: buildRouteValidationNonExact(PatchRuleRequestBody), - }, options: { tags: ['access:securitySolution'], }, - }, - async (context, request, response): Promise<IKibanaResponse<PatchRuleResponse>> => { - const siemResponse = buildSiemResponse(response); - const validationErrors = validatePatchRuleRequestBody(request.body); - if (validationErrors.length) { - return siemResponse.error({ statusCode: 400, body: validationErrors }); - } - try { - const params = request.body; - const rulesClient = (await context.alerting).getRulesClient(); - const savedObjectsClient = (await context.core).savedObjects.client; - - const mlAuthz = buildMlAuthz({ - license: (await context.licensing).license, - ml, - request, - savedObjectsClient, - }); - if (params.type) { - // reject an unauthorized "promotion" to ML - throwAuthzError(await mlAuthz.validateRuleType(params.type)); + }) + .addVersion( + { + version: '2023-10-31', + validate: { + request: { + // Use non-exact validation because everything is optional in patch - since everything is optional, + // io-ts can't find the right schema from the type specific union and the exact check breaks. + // We do type specific validation after fetching the existing rule so we know the rule type. + body: buildRouteValidationNonExact(PatchRuleRequestBody), + }, + }, + }, + async (context, request, response): Promise<IKibanaResponse<PatchRuleResponse>> => { + const siemResponse = buildSiemResponse(response); + const validationErrors = validatePatchRuleRequestBody(request.body); + if (validationErrors.length) { + return siemResponse.error({ statusCode: 400, body: validationErrors }); } + try { + const params = request.body; + const rulesClient = (await context.alerting).getRulesClient(); + const savedObjectsClient = (await context.core).savedObjects.client; - const existingRule = await readRules({ - rulesClient, - ruleId: params.rule_id, - id: params.id, - }); - if (existingRule?.params.type) { - // reject an unauthorized modification of an ML rule - throwAuthzError(await mlAuthz.validateRuleType(existingRule?.params.type)); - } + const mlAuthz = buildMlAuthz({ + license: (await context.licensing).license, + ml, + request, + savedObjectsClient, + }); + if (params.type) { + // reject an unauthorized "promotion" to ML + throwAuthzError(await mlAuthz.validateRuleType(params.type)); + } + + const existingRule = await readRules({ + rulesClient, + ruleId: params.rule_id, + id: params.id, + }); + if (existingRule?.params.type) { + // reject an unauthorized modification of an ML rule + throwAuthzError(await mlAuthz.validateRuleType(existingRule?.params.type)); + } - checkDefaultRuleExceptionListReferences({ exceptionLists: params.exceptions_list }); - await validateRuleDefaultExceptionList({ - exceptionsList: params.exceptions_list, - rulesClient, - ruleRuleId: params.rule_id, - ruleId: params.id, - }); + checkDefaultRuleExceptionListReferences({ exceptionLists: params.exceptions_list }); + await validateRuleDefaultExceptionList({ + exceptionsList: params.exceptions_list, + rulesClient, + ruleRuleId: params.rule_id, + ruleId: params.id, + }); - const rule = await patchRules({ - rulesClient, - existingRule, - nextParams: params, - }); - if (rule != null && rule.enabled != null && rule.name != null) { - const [validated, errors] = transformValidate(rule); - if (errors != null) { - return siemResponse.error({ statusCode: 500, body: errors }); + const rule = await patchRules({ + rulesClient, + existingRule, + nextParams: params, + }); + if (rule != null && rule.enabled != null && rule.name != null) { + const [validated, errors] = transformValidate(rule); + if (errors != null) { + return siemResponse.error({ statusCode: 500, body: errors }); + } else { + return response.ok({ body: validated ?? {} }); + } } else { - return response.ok({ body: validated ?? {} }); + const error = getIdError({ id: params.id, ruleId: params.rule_id }); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); } - } else { - const error = getIdError({ id: params.id, ruleId: params.rule_id }); + } catch (err) { + const error = transformError(err); return siemResponse.error({ body: error.message, statusCode: error.statusCode, }); } - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/read_rule/route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/read_rule/route.ts index 0a1a29392470b..2bd0cc76e1850 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/read_rule/route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/read_rule/route.ts @@ -20,55 +20,62 @@ import { readRules } from '../../../logic/crud/read_rules'; import { getIdError, transform } from '../../../utils/utils'; export const readRuleRoute = (router: SecuritySolutionPluginRouter, logger: Logger) => { - router.get( - { + router.versioned + .get({ + access: 'public', path: DETECTION_ENGINE_RULES_URL, - validate: { - query: buildRouteValidation(ReadRuleRequestQuery), - }, options: { tags: ['access:securitySolution'], }, - }, - async (context, request, response): Promise<IKibanaResponse<ReadRuleResponse>> => { - const siemResponse = buildSiemResponse(response); - const validationErrors = validateQueryRuleByIds(request.query); - if (validationErrors.length) { - return siemResponse.error({ statusCode: 400, body: validationErrors }); - } + }) + .addVersion( + { + version: '2023-10-31', + validate: { + request: { + query: buildRouteValidation(ReadRuleRequestQuery), + }, + }, + }, + async (context, request, response): Promise<IKibanaResponse<ReadRuleResponse>> => { + const siemResponse = buildSiemResponse(response); + const validationErrors = validateQueryRuleByIds(request.query); + if (validationErrors.length) { + return siemResponse.error({ statusCode: 400, body: validationErrors }); + } - const { id, rule_id: ruleId } = request.query; + const { id, rule_id: ruleId } = request.query; - try { - const rulesClient = (await context.alerting).getRulesClient(); + try { + const rulesClient = (await context.alerting).getRulesClient(); - // TODO: https://github.com/elastic/kibana/issues/125642 Reuse fetchRuleById - const rule = await readRules({ - id, - rulesClient, - ruleId, - }); - if (rule != null) { - const transformed = transform(rule); - if (transformed == null) { - return siemResponse.error({ statusCode: 500, body: 'Internal error transforming' }); + // TODO: https://github.com/elastic/kibana/issues/125642 Reuse fetchRuleById + const rule = await readRules({ + id, + rulesClient, + ruleId, + }); + if (rule != null) { + const transformed = transform(rule); + if (transformed == null) { + return siemResponse.error({ statusCode: 500, body: 'Internal error transforming' }); + } else { + return response.ok({ body: transformed ?? {} }); + } } else { - return response.ok({ body: transformed ?? {} }); + const error = getIdError({ id, ruleId }); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); } - } else { - const error = getIdError({ id, ruleId }); + } catch (err) { + const error = transformError(err); return siemResponse.error({ body: error.message, statusCode: error.statusCode, }); } - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/update_rule/route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/update_rule/route.ts index cef4808f16930..a281acba9857b 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/update_rule/route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/rules/update_rule/route.ts @@ -27,80 +27,91 @@ import { getIdError } from '../../../utils/utils'; import { transformValidate, validateResponseActionsPermissions } from '../../../utils/validate'; export const updateRuleRoute = (router: SecuritySolutionPluginRouter, ml: SetupPlugins['ml']) => { - router.put( - { + router.versioned + .put({ + access: 'public', path: DETECTION_ENGINE_RULES_URL, - validate: { - body: buildRouteValidation(UpdateRuleRequestBody), - }, options: { tags: ['access:securitySolution'], }, - }, - async (context, request, response): Promise<IKibanaResponse<UpdateRuleResponse>> => { - const siemResponse = buildSiemResponse(response); - const validationErrors = validateUpdateRuleProps(request.body); - if (validationErrors.length) { - return siemResponse.error({ statusCode: 400, body: validationErrors }); - } - try { - const ctx = await context.resolve(['core', 'securitySolution', 'alerting', 'licensing']); + }) + .addVersion( + { + version: '2023-10-31', + validate: { + request: { + body: buildRouteValidation(UpdateRuleRequestBody), + }, + }, + }, + async (context, request, response): Promise<IKibanaResponse<UpdateRuleResponse>> => { + const siemResponse = buildSiemResponse(response); + const validationErrors = validateUpdateRuleProps(request.body); + if (validationErrors.length) { + return siemResponse.error({ statusCode: 400, body: validationErrors }); + } + try { + const ctx = await context.resolve(['core', 'securitySolution', 'alerting', 'licensing']); - const rulesClient = ctx.alerting.getRulesClient(); - const savedObjectsClient = ctx.core.savedObjects.client; + const rulesClient = ctx.alerting.getRulesClient(); + const savedObjectsClient = ctx.core.savedObjects.client; - const mlAuthz = buildMlAuthz({ - license: ctx.licensing.license, - ml, - request, - savedObjectsClient, - }); - throwAuthzError(await mlAuthz.validateRuleType(request.body.type)); + const mlAuthz = buildMlAuthz({ + license: ctx.licensing.license, + ml, + request, + savedObjectsClient, + }); + throwAuthzError(await mlAuthz.validateRuleType(request.body.type)); - checkDefaultRuleExceptionListReferences({ exceptionLists: request.body.exceptions_list }); + checkDefaultRuleExceptionListReferences({ exceptionLists: request.body.exceptions_list }); - await validateRuleDefaultExceptionList({ - exceptionsList: request.body.exceptions_list, - rulesClient, - ruleRuleId: request.body.rule_id, - ruleId: request.body.id, - }); + await validateRuleDefaultExceptionList({ + exceptionsList: request.body.exceptions_list, + rulesClient, + ruleRuleId: request.body.rule_id, + ruleId: request.body.id, + }); - const existingRule = await readRules({ - rulesClient, - ruleId: request.body.rule_id, - id: request.body.id, - }); + const existingRule = await readRules({ + rulesClient, + ruleId: request.body.rule_id, + id: request.body.id, + }); - await validateResponseActionsPermissions(ctx.securitySolution, request.body, existingRule); + await validateResponseActionsPermissions( + ctx.securitySolution, + request.body, + existingRule + ); - const rule = await updateRules({ - rulesClient, - existingRule, - ruleUpdate: request.body, - }); + const rule = await updateRules({ + rulesClient, + existingRule, + ruleUpdate: request.body, + }); - if (rule != null) { - const [validated, errors] = transformValidate(rule); - if (errors != null) { - return siemResponse.error({ statusCode: 500, body: errors }); + if (rule != null) { + const [validated, errors] = transformValidate(rule); + if (errors != null) { + return siemResponse.error({ statusCode: 500, body: errors }); + } else { + return response.ok({ body: validated ?? {} }); + } } else { - return response.ok({ body: validated ?? {} }); + const error = getIdError({ id: request.body.id, ruleId: request.body.rule_id }); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); } - } else { - const error = getIdError({ id: request.body.id, ruleId: request.body.rule_id }); + } catch (err) { + const error = transformError(err); return siemResponse.error({ body: error.message, statusCode: error.statusCode, }); } - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/tags/read_tags/route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/tags/read_tags/route.ts index fa7b5ab598631..12eb6dbd309a8 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/tags/read_tags/route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/api/tags/read_tags/route.ts @@ -14,34 +14,39 @@ import { buildSiemResponse } from '../../../../routes/utils'; import { readTags } from './read_tags'; export const readTagsRoute = (router: SecuritySolutionPluginRouter) => { - router.get( - { + router.versioned + .get({ + access: 'public', path: DETECTION_ENGINE_TAGS_URL, - validate: false, options: { tags: ['access:securitySolution'], }, - }, - async (context, request, response): Promise<IKibanaResponse<ReadTagsResponse>> => { - const siemResponse = buildSiemResponse(response); - const rulesClient = (await context.alerting)?.getRulesClient(); + }) + .addVersion( + { + version: '2023-10-31', + validate: false, + }, + async (context, request, response): Promise<IKibanaResponse<ReadTagsResponse>> => { + const siemResponse = buildSiemResponse(response); + const rulesClient = (await context.alerting)?.getRulesClient(); - if (!rulesClient) { - return siemResponse.error({ statusCode: 404 }); - } + if (!rulesClient) { + return siemResponse.error({ statusCode: 404 }); + } - try { - const tags = await readTags({ - rulesClient, - }); - return response.ok({ body: tags }); - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); + try { + const tags = await readTags({ + rulesClient, + }); + return response.ok({ body: tags }); + } catch (err) { + const error = transformError(err); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); + } } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/logic/search/enrich_filter_with_rule_type_mappings.test.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/logic/search/enrich_filter_with_rule_type_mappings.test.ts index f57ab2d4b87f4..f87399b7f2bbd 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/logic/search/enrich_filter_with_rule_type_mappings.test.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/logic/search/enrich_filter_with_rule_type_mappings.test.ts @@ -17,22 +17,26 @@ import { import { enrichFilterWithRuleTypeMapping } from './enrich_filter_with_rule_type_mappings'; -const allAlertTypeIds = `(alert.attributes.alertTypeId: ${EQL_RULE_TYPE_ID} +const allAlertTypeIds = `alert.attributes.alertTypeId: ${EQL_RULE_TYPE_ID} OR alert.attributes.alertTypeId: ${ML_RULE_TYPE_ID} OR alert.attributes.alertTypeId: ${QUERY_RULE_TYPE_ID} OR alert.attributes.alertTypeId: ${SAVED_QUERY_RULE_TYPE_ID} OR alert.attributes.alertTypeId: ${INDICATOR_RULE_TYPE_ID} OR alert.attributes.alertTypeId: ${THRESHOLD_RULE_TYPE_ID} - OR alert.attributes.alertTypeId: ${NEW_TERMS_RULE_TYPE_ID})`.replace(/[\n\r]/g, ''); + OR alert.attributes.alertTypeId: ${NEW_TERMS_RULE_TYPE_ID}`.replace(/[\n\r]/g, ''); describe('enrichFilterWithRuleTypeMapping', () => { test('it returns a full filter with an AND if sent down', () => { expect(enrichFilterWithRuleTypeMapping('alert.attributes.enabled: true')).toEqual( - `${allAlertTypeIds} AND alert.attributes.enabled: true` + `(${allAlertTypeIds}) AND (alert.attributes.enabled: true)` ); }); test('it returns existing filter with no AND when not set [rule registry enabled: %p]', () => { expect(enrichFilterWithRuleTypeMapping(null)).toEqual(allAlertTypeIds); }); + + test('it returns existing filter with no AND when filter is an empty string', () => { + expect(enrichFilterWithRuleTypeMapping('')).toEqual(allAlertTypeIds); + }); }); diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/logic/search/enrich_filter_with_rule_type_mappings.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/logic/search/enrich_filter_with_rule_type_mappings.ts index 70d56fba86ad7..6e6a7b24ff36d 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/logic/search/enrich_filter_with_rule_type_mappings.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/logic/search/enrich_filter_with_rule_type_mappings.ts @@ -7,23 +7,25 @@ import { ruleTypeMappings } from '@kbn/securitysolution-rules'; -const alertTypeFilter = `(${Object.values(ruleTypeMappings) +const alertTypeFilter = Object.values(ruleTypeMappings) .map((type) => `alert.attributes.alertTypeId: ${type}`) .filter((type, i, arr) => type != null && arr.indexOf(type) === i) - .join(' OR ')})`; + .join(' OR '); /** * updates filter to restrict search results to only Security Solution rule types (siem.eqlRule, siem.mlRule, etc..) * @example * filter BEFORE: "alert.attributes.enabled: true" - * modified filter AFTER: "(alert.attributes.alertTypeId: siem.eqlRule OR alert.attributes.alertTypeId: siem.mlRule OR alert.attributes.alertTypeId: siem.queryRule OR alert.attributes.alertTypeId: siem.savedQueryRule OR alert.attributes.alertTypeId: siem.indicatorRule OR alert.attributes.alertTypeId: siem.thresholdRule) AND alert.attributes.enabled: true" + * modified filter AFTER: "(alert.attributes.alertTypeId: siem.eqlRule OR alert.attributes.alertTypeId: siem.mlRule OR alert.attributes.alertTypeId: siem.queryRule OR alert.attributes.alertTypeId: siem.savedQueryRule OR alert.attributes.alertTypeId: siem.indicatorRule OR alert.attributes.alertTypeId: siem.thresholdRule) AND (alert.attributes.enabled: true") + * * @param filter * @returns modified filter */ export const enrichFilterWithRuleTypeMapping = (filter: string | null | undefined) => { - if (filter == null) { + if (filter == null || filter.length === 0) { return alertTypeFilter; - } else { - return `${alertTypeFilter} AND ${filter}`; } + + // Just in case of statements OR'ed in the filter wrap it in parentheses + return `(${alertTypeFilter}) AND (${filter})`; }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/normalization/rule_converters.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/normalization/rule_converters.ts index ecb379a1dcc2d..385fe889be40a 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/normalization/rule_converters.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_management/normalization/rule_converters.ts @@ -8,7 +8,7 @@ import { v4 as uuidv4 } from 'uuid'; import { BadRequestError } from '@kbn/securitysolution-es-utils'; -import { validateNonExact } from '@kbn/securitysolution-io-ts-utils'; +import { validate, validateNonExact } from '@kbn/securitysolution-io-ts-utils'; import { ruleTypeMappings } from '@kbn/securitysolution-rules'; import type { ResolvedSanitizedRule, SanitizedRule } from '@kbn/alerting-plugin/common'; @@ -24,7 +24,6 @@ import type { RequiredFieldArray, SetupGuide, RuleCreateProps, - RuleResponse, TypeSpecificCreateProps, TypeSpecificResponse, } from '../../../../../common/api/detection_engine/model/rule_schema'; @@ -36,6 +35,7 @@ import { SavedQueryPatchParams, ThreatMatchPatchParams, ThresholdPatchParams, + RuleResponse, } from '../../../../../common/api/detection_engine/model/rule_schema'; import { @@ -76,6 +76,11 @@ import type { import { transformFromAlertThrottle, transformToActionFrequency } from './rule_actions'; import { convertAlertSuppressionToCamel, convertAlertSuppressionToSnake } from '../utils/utils'; import { createRuleExecutionSummary } from '../../rule_monitoring'; +import type { PrebuiltRuleAsset } from '../../prebuilt_rules'; + +const DEFAULT_FROM = 'now-6m' as const; +const DEFAULT_TO = 'now' as const; +const DEFAULT_INTERVAL = '5m' as const; // These functions provide conversions from the request API schema to the internal rule schema and from the internal rule schema // to the response API schema. This provides static type-check assurances that the internal schema is in sync with the API schema for @@ -472,7 +477,7 @@ export const convertCreateAPIToInternalSchema = ( ruleId: newRuleId, falsePositives: input.false_positives ?? [], investigationFields: input.investigation_fields ?? [], - from: input.from ?? 'now-6m', + from: input.from ?? DEFAULT_FROM, immutable, license: input.license, outputIndex: input.output_index ?? '', @@ -488,7 +493,7 @@ export const convertCreateAPIToInternalSchema = ( threat: input.threat ?? [], timestampOverride: input.timestamp_override, timestampOverrideFallbackDisabled: input.timestamp_override_fallback_disabled, - to: input.to ?? 'now', + to: input.to ?? DEFAULT_TO, references: input.references ?? [], namespace: input.namespace, note: input.note, @@ -680,3 +685,48 @@ export const internalRuleToAPIResponse = ( execution_summary: executionSummary ?? undefined, }; }; + +export const convertPrebuiltRuleAssetToRuleResponse = ( + prebuiltRuleAsset: PrebuiltRuleAsset +): RuleResponse => { + const prebuiltRuleAssetDefaults = { + enabled: false, + risk_score_mapping: [], + severity_mapping: [], + interval: DEFAULT_INTERVAL, + to: DEFAULT_TO, + from: DEFAULT_FROM, + exceptions_list: [], + false_positives: [], + max_signals: DEFAULT_MAX_SIGNALS, + actions: [], + related_integrations: [], + required_fields: [], + setup: '', + references: [], + threat: [], + tags: [], + author: [], + }; + + const ruleResponseSpecificFields = { + id: uuidv4(), + updated_at: new Date(0).toISOString(), + updated_by: '', + created_at: new Date(0).toISOString(), + created_by: '', + immutable: true, + revision: 1, + }; + + const [rule, error] = validate( + { ...prebuiltRuleAssetDefaults, ...prebuiltRuleAsset, ...ruleResponseSpecificFields }, + RuleResponse + ); + + if (!rule) { + throw new Error(error); + } + + return rule; +}; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_cluster_health/get_cluster_health_route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_cluster_health/get_cluster_health_route.ts index 46e505ebe5f77..6d9faeaa95c7f 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_cluster_health/get_cluster_health_route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_cluster_health/get_cluster_health_route.ts @@ -32,51 +32,61 @@ import { validateGetClusterHealthRequest } from './get_cluster_health_request'; * (the same stats are calculated over each of the discreet sub-intervals of the whole interval) */ export const getClusterHealthRoute = (router: SecuritySolutionPluginRouter) => { - router.get( - { + router.versioned + .get({ + access: 'internal', path: GET_CLUSTER_HEALTH_URL, - validate: {}, options: { tags: ['access:securitySolution'], - access: 'public', // must be public to enable "system" users to collect data }, - }, - async (context, request, response) => { - return handleClusterHealthRequest({ - response, - resolveParameters: () => validateGetClusterHealthRequest({}), - resolveDependencies: async () => { - const ctx = await context.resolve(['securitySolution']); - const healthClient = ctx.securitySolution.getDetectionEngineHealthClient(); - return { healthClient }; - }, - }); - } - ); + }) + .addVersion( + { + version: '1', + validate: {}, + }, + async (context, request, response) => { + return handleClusterHealthRequest({ + response, + resolveParameters: () => validateGetClusterHealthRequest({}), + resolveDependencies: async () => { + const ctx = await context.resolve(['securitySolution']); + const healthClient = ctx.securitySolution.getDetectionEngineHealthClient(); + return { healthClient }; + }, + }); + } + ); - router.post( - { + router.versioned + .post({ + access: 'internal', path: GET_CLUSTER_HEALTH_URL, - validate: { - body: buildRouteValidation(GetClusterHealthRequestBody), - }, options: { tags: ['access:securitySolution'], - access: 'public', // must be public to enable "system" users to collect data }, - }, - async (context, request, response): Promise<IKibanaResponse<GetClusterHealthResponse>> => { - return handleClusterHealthRequest({ - response, - resolveParameters: () => validateGetClusterHealthRequest(request.body), - resolveDependencies: async () => { - const ctx = await context.resolve(['securitySolution']); - const healthClient = ctx.securitySolution.getDetectionEngineHealthClient(); - return { healthClient }; + }) + .addVersion( + { + version: '1', + validate: { + request: { + body: buildRouteValidation(GetClusterHealthRequestBody), + }, }, - }); - } - ); + }, + async (context, request, response): Promise<IKibanaResponse<GetClusterHealthResponse>> => { + return handleClusterHealthRequest({ + response, + resolveParameters: () => validateGetClusterHealthRequest(request.body), + resolveDependencies: async () => { + const ctx = await context.resolve(['securitySolution']); + const healthClient = ctx.securitySolution.getDetectionEngineHealthClient(); + return { healthClient }; + }, + }); + } + ); }; interface ClusterHealthRouteDependencies { diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_rule_health/get_rule_health_route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_rule_health/get_rule_health_route.ts index b9ba33cfc7a4c..310514d17f968 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_rule_health/get_rule_health_route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_rule_health/get_rule_health_route.ts @@ -29,46 +29,52 @@ import { validateGetRuleHealthRequest } from './get_rule_health_request'; * (the same stats are calculated over each of the discreet sub-intervals of the whole interval) */ export const getRuleHealthRoute = (router: SecuritySolutionPluginRouter) => { - router.post( - { + router.versioned + .post({ + access: 'internal', path: GET_RULE_HEALTH_URL, - validate: { - body: buildRouteValidation(GetRuleHealthRequestBody), - }, options: { tags: ['access:securitySolution'], - access: 'public', // must be public to enable "system" users to collect data }, - }, - async (context, request, response): Promise<IKibanaResponse<GetRuleHealthResponse>> => { - const siemResponse = buildSiemResponse(response); + }) + .addVersion( + { + version: '1', + validate: { + request: { + body: buildRouteValidation(GetRuleHealthRequestBody), + }, + }, + }, + async (context, request, response): Promise<IKibanaResponse<GetRuleHealthResponse>> => { + const siemResponse = buildSiemResponse(response); - try { - const params = validateGetRuleHealthRequest(request.body); + try { + const params = validateGetRuleHealthRequest(request.body); - const ctx = await context.resolve(['securitySolution']); - const healthClient = ctx.securitySolution.getDetectionEngineHealthClient(); + const ctx = await context.resolve(['securitySolution']); + const healthClient = ctx.securitySolution.getDetectionEngineHealthClient(); - const ruleHealthParameters = { interval: params.interval, rule_id: params.ruleId }; - const ruleHealth = await healthClient.calculateRuleHealth(ruleHealthParameters); + const ruleHealthParameters = { interval: params.interval, rule_id: params.ruleId }; + const ruleHealth = await healthClient.calculateRuleHealth(ruleHealthParameters); - const responseBody: GetRuleHealthResponse = { - timings: calculateHealthTimings(params.requestReceivedAt), - parameters: ruleHealthParameters, - health: { - ...ruleHealth, - debug: params.debug ? ruleHealth.debug : undefined, - }, - }; + const responseBody: GetRuleHealthResponse = { + timings: calculateHealthTimings(params.requestReceivedAt), + parameters: ruleHealthParameters, + health: { + ...ruleHealth, + debug: params.debug ? ruleHealth.debug : undefined, + }, + }; - return response.ok({ body: responseBody }); - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); + return response.ok({ body: responseBody }); + } catch (err) { + const error = transformError(err); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); + } } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_space_health/get_space_health_route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_space_health/get_space_health_route.ts index 1f90382542d8a..d76a2212f29c0 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_space_health/get_space_health_route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/get_space_health/get_space_health_route.ts @@ -32,51 +32,61 @@ import { validateGetSpaceHealthRequest } from './get_space_health_request'; * (the same stats are calculated over each of the discreet sub-intervals of the whole interval) */ export const getSpaceHealthRoute = (router: SecuritySolutionPluginRouter) => { - router.get( - { + router.versioned + .get({ + access: 'internal', path: GET_SPACE_HEALTH_URL, - validate: {}, options: { tags: ['access:securitySolution'], - access: 'public', // must be public to enable "system" users to collect data }, - }, - async (context, request, response): Promise<IKibanaResponse<GetSpaceHealthResponse>> => { - return handleSpaceHealthRequest({ - response, - resolveParameters: () => validateGetSpaceHealthRequest({}), - resolveDependencies: async () => { - const ctx = await context.resolve(['securitySolution']); - const healthClient = ctx.securitySolution.getDetectionEngineHealthClient(); - return { healthClient }; - }, - }); - } - ); + }) + .addVersion( + { + version: '1', + validate: {}, + }, + async (context, request, response): Promise<IKibanaResponse<GetSpaceHealthResponse>> => { + return handleSpaceHealthRequest({ + response, + resolveParameters: () => validateGetSpaceHealthRequest({}), + resolveDependencies: async () => { + const ctx = await context.resolve(['securitySolution']); + const healthClient = ctx.securitySolution.getDetectionEngineHealthClient(); + return { healthClient }; + }, + }); + } + ); - router.post( - { + router.versioned + .post({ + access: 'internal', path: GET_SPACE_HEALTH_URL, - validate: { - body: buildRouteValidation(GetSpaceHealthRequestBody), - }, options: { tags: ['access:securitySolution'], - access: 'public', // must be public to enable "system" users to collect data }, - }, - async (context, request, response) => { - return handleSpaceHealthRequest({ - response, - resolveParameters: () => validateGetSpaceHealthRequest(request.body), - resolveDependencies: async () => { - const ctx = await context.resolve(['securitySolution']); - const healthClient = ctx.securitySolution.getDetectionEngineHealthClient(); - return { healthClient }; + }) + .addVersion( + { + version: '1', + validate: { + request: { + body: buildRouteValidation(GetSpaceHealthRequestBody), + }, }, - }); - } - ); + }, + async (context, request, response) => { + return handleSpaceHealthRequest({ + response, + resolveParameters: () => validateGetSpaceHealthRequest(request.body), + resolveDependencies: async () => { + const ctx = await context.resolve(['securitySolution']); + const healthClient = ctx.securitySolution.getDetectionEngineHealthClient(); + return { healthClient }; + }, + }); + } + ); }; interface SpaceHealthRouteDependencies { diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/setup/setup_health_route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/setup/setup_health_route.ts index 8523a2adb349b..685ce8f677952 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/setup/setup_health_route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/detection_engine_health/setup/setup_health_route.ts @@ -18,32 +18,36 @@ import { buildSiemResponse } from '../../../../routes/utils'; * and can do any other setup work. */ export const setupHealthRoute = (router: SecuritySolutionPluginRouter) => { - router.post( - { + router.versioned + .post({ + access: 'internal', path: SETUP_HEALTH_URL, - validate: {}, options: { tags: ['access:securitySolution'], - access: 'public', // must be public to enable "system" users to collect data }, - }, - async (context, request, response): Promise<IKibanaResponse<SetupHealthResponse>> => { - const siemResponse = buildSiemResponse(response); + }) + .addVersion( + { + version: '1', + validate: {}, + }, + async (context, request, response): Promise<IKibanaResponse<SetupHealthResponse>> => { + const siemResponse = buildSiemResponse(response); - try { - const ctx = await context.resolve(['securitySolution']); - const healthClient = ctx.securitySolution.getDetectionEngineHealthClient(); + try { + const ctx = await context.resolve(['securitySolution']); + const healthClient = ctx.securitySolution.getDetectionEngineHealthClient(); - await healthClient.installAssetsForMonitoringHealth(); + await healthClient.installAssetsForMonitoringHealth(); - return response.ok({ body: {} }); - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); + return response.ok({ body: {} }); + } catch (err) { + const error = transformError(err); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); + } } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/rule_execution_logs/get_rule_execution_events/get_rule_execution_events_route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/rule_execution_logs/get_rule_execution_events/get_rule_execution_events_route.ts index dd6fc4d5964f1..10c8cc065b996 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/rule_execution_logs/get_rule_execution_events/get_rule_execution_events_route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/rule_execution_logs/get_rule_execution_events/get_rule_execution_events_route.ts @@ -23,45 +23,52 @@ import { * Accepts rule's saved object ID (`rule.id`) and options for filtering, sorting and pagination. */ export const getRuleExecutionEventsRoute = (router: SecuritySolutionPluginRouter) => { - router.get( - { + router.versioned + .get({ + access: 'internal', path: GET_RULE_EXECUTION_EVENTS_URL, - validate: { - params: buildRouteValidation(GetRuleExecutionEventsRequestParams), - query: buildRouteValidation(GetRuleExecutionEventsRequestQuery), - }, options: { tags: ['access:securitySolution'], }, - }, - async ( - context, - request, - response - ): Promise<IKibanaResponse<GetRuleExecutionEventsResponse>> => { - const { params, query } = request; - const siemResponse = buildSiemResponse(response); + }) + .addVersion( + { + version: '1', + validate: { + request: { + params: buildRouteValidation(GetRuleExecutionEventsRequestParams), + query: buildRouteValidation(GetRuleExecutionEventsRequestQuery), + }, + }, + }, + async ( + context, + request, + response + ): Promise<IKibanaResponse<GetRuleExecutionEventsResponse>> => { + const { params, query } = request; + const siemResponse = buildSiemResponse(response); - try { - const ctx = await context.resolve(['securitySolution']); - const executionLog = ctx.securitySolution.getRuleExecutionLog(); - const executionEventsResponse = await executionLog.getExecutionEvents({ - ruleId: params.ruleId, - eventTypes: query.event_types, - logLevels: query.log_levels, - sortOrder: query.sort_order, - page: query.page, - perPage: query.per_page, - }); + try { + const ctx = await context.resolve(['securitySolution']); + const executionLog = ctx.securitySolution.getRuleExecutionLog(); + const executionEventsResponse = await executionLog.getExecutionEvents({ + ruleId: params.ruleId, + eventTypes: query.event_types, + logLevels: query.log_levels, + sortOrder: query.sort_order, + page: query.page, + perPage: query.per_page, + }); - return response.ok({ body: executionEventsResponse }); - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); + return response.ok({ body: executionEventsResponse }); + } catch (err) { + const error = transformError(err); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); + } } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/rule_execution_logs/get_rule_execution_results/get_rule_execution_results_route.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/rule_execution_logs/get_rule_execution_results/get_rule_execution_results_route.ts index efc20a2b2053d..24b8949120cf5 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/rule_execution_logs/get_rule_execution_results/get_rule_execution_results_route.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_monitoring/api/rule_execution_logs/get_rule_execution_results/get_rule_execution_results_route.ts @@ -23,59 +23,66 @@ import { * Accepts rule's saved object ID (`rule.id`), `start`, `end` and `filters` query params. */ export const getRuleExecutionResultsRoute = (router: SecuritySolutionPluginRouter) => { - router.get( - { + router.versioned + .get({ + access: 'internal', path: GET_RULE_EXECUTION_RESULTS_URL, - validate: { - params: buildRouteValidation(GetRuleExecutionResultsRequestParams), - query: buildRouteValidation(GetRuleExecutionResultsRequestQuery), - }, options: { tags: ['access:securitySolution'], }, - }, - async ( - context, - request, - response - ): Promise<IKibanaResponse<GetRuleExecutionResultsResponse>> => { - const { ruleId } = request.params; - const { - start, - end, - query_text: queryText, - status_filters: statusFilters, - page, - per_page: perPage, - sort_field: sortField, - sort_order: sortOrder, - } = request.query; - - const siemResponse = buildSiemResponse(response); - - try { - const ctx = await context.resolve(['securitySolution']); - const executionLog = ctx.securitySolution.getRuleExecutionLog(); - const executionResultsResponse = await executionLog.getExecutionResults({ - ruleId, + }) + .addVersion( + { + version: '1', + validate: { + request: { + params: buildRouteValidation(GetRuleExecutionResultsRequestParams), + query: buildRouteValidation(GetRuleExecutionResultsRequestQuery), + }, + }, + }, + async ( + context, + request, + response + ): Promise<IKibanaResponse<GetRuleExecutionResultsResponse>> => { + const { ruleId } = request.params; + const { start, end, - queryText, - statusFilters, + query_text: queryText, + status_filters: statusFilters, page, - perPage, - sortField, - sortOrder, - }); + per_page: perPage, + sort_field: sortField, + sort_order: sortOrder, + } = request.query; + + const siemResponse = buildSiemResponse(response); + + try { + const ctx = await context.resolve(['securitySolution']); + const executionLog = ctx.securitySolution.getRuleExecutionLog(); + const executionResultsResponse = await executionLog.getExecutionResults({ + ruleId, + start, + end, + queryText, + statusFilters, + page, + perPage, + sortField, + sortOrder, + }); - return response.ok({ body: executionResultsResponse }); - } catch (err) { - const error = transformError(err); - return siemResponse.error({ - body: error.message, - statusCode: error.statusCode, - }); + return response.ok({ body: executionResultsResponse }); + } catch (err) { + const error = transformError(err); + return siemResponse.error({ + body: error.message, + statusCode: error.statusCode, + }); + } } - } - ); + ); }; diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/indicator_match/threat_mapping/get_threat_list.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/indicator_match/threat_mapping/get_threat_list.ts index 73301b2c4dfb5..9009d20c379df 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/indicator_match/threat_mapping/get_threat_list.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/indicator_match/threat_mapping/get_threat_list.ts @@ -64,7 +64,7 @@ export const getThreatList = async ({ runtime_mappings: runtimeMappings, sort: getSortForThreatList({ index, - listItemIndex: listClient.getListItemIndex(), + listItemIndex: listClient.getListItemName(), }), }, track_total_hits: false, diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/threshold/find_threshold_signals.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/threshold/find_threshold_signals.ts index 214633b8e67db..ce9bec5f32249 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/threshold/find_threshold_signals.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/threshold/find_threshold_signals.ts @@ -6,6 +6,7 @@ */ import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey'; +import { isEmpty } from 'lodash'; import type { AlertInstanceContext, @@ -28,7 +29,7 @@ import type { ThresholdBucket, ThresholdSingleBucketAggregationResult, } from './types'; -import { shouldFilterByCardinality } from './utils'; +import { shouldFilterByCardinality, searchResultHasAggs } from './utils'; import type { IRuleExecutionLogForExecutors } from '../../rule_monitoring'; import { getMaxSignalsWarning } from '../utils/utils'; @@ -74,7 +75,6 @@ export const findThresholdSignals = async ({ warnings: string[]; }> => { // Leaf aggregations used below - let sortKeys; const buckets: ThresholdBucket[] = []; const searchAfterResults: SearchAfterResults = { searchDurations: [], @@ -85,6 +85,7 @@ export const findThresholdSignals = async ({ const includeCardinalityFilter = shouldFilterByCardinality(threshold); if (hasThresholdFields(threshold)) { + let sortKeys: Record<string, string | number | null> | undefined; do { const { searchResult, searchDuration, searchErrors } = await singleSearchAfter({ aggregations: buildThresholdMultiBucketAggregation({ @@ -106,20 +107,22 @@ export const findThresholdSignals = async ({ secondaryTimestamp, }); - const searchResultWithAggs = searchResult as ThresholdMultiBucketAggregationResult; - if (!searchResultWithAggs.aggregations) { + searchAfterResults.searchDurations.push(searchDuration); + if (!isEmpty(searchErrors)) { + searchAfterResults.searchErrors.push(...searchErrors); + sortKeys = undefined; // this will eject us out of the loop + // if a search failure occurs on a secondary iteration, + // we will return early. + } else if (searchResultHasAggs<ThresholdMultiBucketAggregationResult>(searchResult)) { + const thresholdTerms = searchResult.aggregations?.thresholdTerms; + sortKeys = thresholdTerms?.after_key; + + buckets.push( + ...((searchResult.aggregations?.thresholdTerms.buckets as ThresholdBucket[]) ?? []) + ); + } else { throw new Error('Aggregations were missing on threshold rule search result'); } - - searchAfterResults.searchDurations.push(searchDuration); - searchAfterResults.searchErrors.push(...searchErrors); - - const thresholdTerms = searchResultWithAggs.aggregations?.thresholdTerms; - sortKeys = thresholdTerms.after_key; - - buckets.push( - ...(searchResultWithAggs.aggregations.thresholdTerms.buckets as ThresholdBucket[]) - ); } while (sortKeys && buckets.length <= maxSignals); } else { const { searchResult, searchDuration, searchErrors } = await singleSearchAfter({ @@ -142,30 +145,32 @@ export const findThresholdSignals = async ({ secondaryTimestamp, }); - const searchResultWithAggs = searchResult as ThresholdSingleBucketAggregationResult; - if (!searchResultWithAggs.aggregations) { - throw new Error('Aggregations were missing on threshold rule search result'); - } - searchAfterResults.searchDurations.push(searchDuration); searchAfterResults.searchErrors.push(...searchErrors); - const docCount = searchResultWithAggs.hits.total.value; if ( - docCount >= threshold.value && - (!includeCardinalityFilter || - (searchResultWithAggs.aggregations.cardinality_count?.value ?? 0) >= - threshold.cardinality[0].value) + !searchResultHasAggs<ThresholdSingleBucketAggregationResult>(searchResult) && + isEmpty(searchErrors) ) { - buckets.push({ - doc_count: docCount, - key: {}, - max_timestamp: searchResultWithAggs.aggregations.max_timestamp, - min_timestamp: searchResultWithAggs.aggregations.min_timestamp, - ...(includeCardinalityFilter - ? { cardinality_count: searchResultWithAggs.aggregations.cardinality_count } - : {}), - }); + throw new Error('Aggregations were missing on threshold rule search result'); + } else if (searchResultHasAggs<ThresholdSingleBucketAggregationResult>(searchResult)) { + const docCount = searchResult.hits.total.value; + if ( + docCount >= threshold.value && + (!includeCardinalityFilter || + (searchResult?.aggregations?.cardinality_count?.value ?? 0) >= + threshold.cardinality[0].value) + ) { + buckets.push({ + doc_count: docCount, + key: {}, + max_timestamp: searchResult.aggregations?.max_timestamp ?? { value: null }, + min_timestamp: searchResult.aggregations?.min_timestamp ?? { value: null }, + ...(includeCardinalityFilter + ? { cardinality_count: searchResult.aggregations?.cardinality_count } + : {}), + }); + } } } diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/threshold/threshold.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/threshold/threshold.ts index 38396fd936737..416d5b5a53f4f 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/threshold/threshold.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/threshold/threshold.ts @@ -5,6 +5,7 @@ * 2.0. */ +import { isEmpty } from 'lodash'; import type { SearchHit } from '@elastic/elasticsearch/lib/api/typesWithBodyKey'; import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey'; import type { ExceptionListItemSchema } from '@kbn/securitysolution-io-ts-list-types'; @@ -135,8 +136,6 @@ export const thresholdExecutor = async ({ aggregatableTimestampField, }); - // Build and index new alerts - const createResult = await bulkCreateThresholdSignals({ buckets, completeRule, @@ -152,7 +151,10 @@ export const thresholdExecutor = async ({ ruleExecutionLogger, }); - addToSearchAfterReturn({ current: result, next: createResult }); + addToSearchAfterReturn({ + current: result, + next: { ...createResult, success: createResult.success && isEmpty(searchErrors) }, + }); result.errors.push(...previousSearchErrors); result.errors.push(...searchErrors); diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/threshold/utils.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/threshold/utils.ts index b1f5ed818e506..52685190950f1 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/threshold/utils.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/rule_types/threshold/utils.ts @@ -5,14 +5,20 @@ * 2.0. */ +import type { estypes } from '@elastic/elasticsearch'; import { createHash } from 'crypto'; import { v5 as uuidv5 } from 'uuid'; import type { ThresholdNormalized, ThresholdWithCardinality, } from '../../../../../common/api/detection_engine/model/rule_schema'; -import type { RuleRangeTuple } from '../types'; -import type { ThresholdSignalHistory, ThresholdAlertState } from './types'; +import type { RuleRangeTuple, SignalSearchResponse } from '../types'; +import type { + ThresholdSignalHistory, + ThresholdAlertState, + ThresholdSingleBucketAggregationResult, + ThresholdMultiBucketAggregationResult, +} from './types'; /** * Returns a new signal history based on what the previous @@ -82,3 +88,9 @@ export const getThresholdTermsHash = ( ) .digest('hex'); }; + +export const searchResultHasAggs = < + T extends ThresholdSingleBucketAggregationResult | ThresholdMultiBucketAggregationResult +>( + obj: SignalSearchResponse<Record<estypes.AggregateName, estypes.AggregationsAggregate>> +): obj is T => obj?.aggregations != null; diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/calculate_risk_scores.test.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/calculate_risk_scores.test.ts index e7f1f6ab942ae..f75fd94c42d30 100644 --- a/x-pack/plugins/security_solution/server/lib/risk_engine/calculate_risk_scores.test.ts +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/calculate_risk_scores.test.ts @@ -48,6 +48,34 @@ describe('calculateRiskScores()', () => { ); }); + it('drops an empty object filter if specified by the caller', async () => { + params.filter = {}; + await calculateRiskScores(params); + expect(esClient.search).toHaveBeenCalledWith( + expect.objectContaining({ + query: { + bool: { + filter: expect.not.arrayContaining([{}]), + }, + }, + }) + ); + }); + + it('drops an empty array filter if specified by the caller', async () => { + params.filter = []; + await calculateRiskScores(params); + expect(esClient.search).toHaveBeenCalledWith( + expect.objectContaining({ + query: { + bool: { + filter: expect.not.arrayContaining([[]]), + }, + }, + }) + ); + }); + describe('identifierType', () => { it('creates aggs for both host and user by default', async () => { await calculateRiskScores(params); diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/calculate_risk_scores.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/calculate_risk_scores.ts index 9d33df97f003d..6c95eb0f13b08 100644 --- a/x-pack/plugins/security_solution/server/lib/risk_engine/calculate_risk_scores.ts +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/calculate_risk_scores.ts @@ -5,6 +5,7 @@ * 2.0. */ +import { isEmpty } from 'lodash'; import type { AggregationsAggregationContainer, QueryDslQueryContainer, @@ -213,7 +214,7 @@ export const calculateRiskScores = async ({ const now = new Date().toISOString(); const filter = [{ exists: { field: ALERT_RISK_SCORE } }, filterFromRange(range)]; - if (userFilter) { + if (!isEmpty(userFilter)) { filter.push(userFilter as QueryDslQueryContainer); } const identifierTypes: IdentifierType[] = identifierType ? [identifierType] : ['host', 'user']; diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/get_risk_inputs_index.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/get_risk_inputs_index.ts index 5cc53912886d9..d50c8c34877a4 100644 --- a/x-pack/plugins/security_solution/server/lib/risk_engine/get_risk_inputs_index.ts +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/get_risk_inputs_index.ts @@ -9,7 +9,7 @@ import type { MappingRuntimeFields } from '@elastic/elasticsearch/lib/api/types' import type { Logger, SavedObjectsClientContract } from '@kbn/core/server'; import type { DataViewAttributes } from '@kbn/data-views-plugin/common'; -interface RiskInputsIndexResponse { +export interface RiskInputsIndexResponse { index: string; runtimeMappings: MappingRuntimeFields; } diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/helpers.test.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/helpers.test.ts new file mode 100644 index 0000000000000..6a1918cccc1ff --- /dev/null +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/helpers.test.ts @@ -0,0 +1,53 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { isRiskScoreCalculationComplete } from './helpers'; + +describe('isRiskScoreCalculationComplete', () => { + it('is true if both after_keys.host and after_keys.user are empty', () => { + const result = { + after_keys: { + host: {}, + user: {}, + }, + }; + // @ts-expect-error using a minimal result object for testing + expect(isRiskScoreCalculationComplete(result)).toEqual(true); + }); + + it('is true if after_keys is an empty object', () => { + const result = { + after_keys: {}, + }; + // @ts-expect-error using a minimal result object for testing + expect(isRiskScoreCalculationComplete(result)).toEqual(true); + }); + + it('is false if the host key has a key/value', () => { + const result = { + after_keys: { + host: { + key: 'value', + }, + }, + }; + // @ts-expect-error using a minimal result object for testing + expect(isRiskScoreCalculationComplete(result)).toEqual(false); + }); + + it('is false if the user key has a key/value', () => { + const result = { + after_keys: { + user: { + key: 'value', + }, + }, + }; + // @ts-expect-error using a minimal result object for testing + expect(isRiskScoreCalculationComplete(result)).toEqual(false); + }); +}); diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/helpers.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/helpers.ts index 05ccabe18d8a8..90a7b0c54c275 100644 --- a/x-pack/plugins/security_solution/server/lib/risk_engine/helpers.ts +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/helpers.ts @@ -6,6 +6,7 @@ */ import type { AfterKey, AfterKeys, IdentifierType } from '../../../common/risk_engine'; +import type { CalculateAndPersistScoresResponse } from './types'; export const getFieldForIdentifierAgg = (identifierType: IdentifierType): string => identifierType === 'host' ? 'host.name' : 'user.name'; @@ -17,3 +18,9 @@ export const getAfterKeyForIdentifierType = ({ afterKeys: AfterKeys; identifierType: IdentifierType; }): AfterKey | undefined => afterKeys[identifierType]; + +export const isRiskScoreCalculationComplete = ( + result: CalculateAndPersistScoresResponse +): boolean => + Object.keys(result.after_keys.host ?? {}).length === 0 && + Object.keys(result.after_keys.user ?? {}).length === 0; diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/__mocks__/risk_engine_data_client_mock.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/risk_engine_data_client.mock.ts similarity index 65% rename from x-pack/plugins/security_solution/server/lib/risk_engine/__mocks__/risk_engine_data_client_mock.ts rename to x-pack/plugins/security_solution/server/lib/risk_engine/risk_engine_data_client.mock.ts index fc23aaf7beda5..53c7291aa497c 100644 --- a/x-pack/plugins/security_solution/server/lib/risk_engine/__mocks__/risk_engine_data_client_mock.ts +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/risk_engine_data_client.mock.ts @@ -5,13 +5,19 @@ * 2.0. */ -import type { RiskEngineDataClient } from '../risk_engine_data_client'; +import type { RiskEngineDataClient } from './risk_engine_data_client'; const createRiskEngineDataClientMock = () => ({ + disableLegacyRiskEngine: jest.fn(), + disableRiskEngine: jest.fn(), + enableRiskEngine: jest.fn(), + getConfiguration: jest.fn(), + getRiskInputsIndex: jest.fn(), + getStatus: jest.fn(), getWriter: jest.fn(), - initializeResources: jest.fn(), init: jest.fn(), + initializeResources: jest.fn(), } as unknown as jest.Mocked<RiskEngineDataClient>); export const riskEngineDataClientMock = { create: createRiskEngineDataClientMock }; diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/risk_engine_data_client.test.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/risk_engine_data_client.test.ts index 8e76189790578..9a723a5bc0e8b 100644 --- a/x-pack/plugins/security_solution/server/lib/risk_engine/risk_engine_data_client.test.ts +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/risk_engine_data_client.test.ts @@ -15,7 +15,10 @@ import { elasticsearchServiceMock, savedObjectsClientMock, } from '@kbn/core/server/mocks'; +import { taskManagerMock } from '@kbn/task-manager-plugin/server/mocks'; +import type { SavedObject } from '@kbn/core/server'; import { RiskEngineDataClient } from './risk_engine_data_client'; +import type { RiskEngineConfiguration } from './types'; import { createDataStream } from './utils/create_datastream'; import * as savedObjectConfig from './utils/saved_object_configuration'; import * as transforms from './utils/transforms'; @@ -537,10 +540,6 @@ describe('RiskEngineDataClient', () => { mockSavedObjectClient.find.mockResolvedValue(getSavedObjectConfiguration()); }); - afterEach(() => { - mockSavedObjectClient.find.mockReset(); - }); - it('should return status with enabled true', async () => { mockSavedObjectClient.find.mockResolvedValue( getSavedObjectConfiguration({ @@ -611,31 +610,43 @@ describe('RiskEngineDataClient', () => { }); }); + describe('#getConfiguration', () => { + it('retrieves configuration from the saved object', async () => { + mockSavedObjectClient.find.mockResolvedValueOnce(getSavedObjectConfiguration()); + + const configuration = await riskEngineDataClient.getConfiguration(); + + expect(mockSavedObjectClient.find).toHaveBeenCalledTimes(1); + + expect(configuration).toEqual({ + enabled: false, + }); + }); + }); + describe('enableRiskEngine', () => { - afterEach(() => { - mockSavedObjectClient.find.mockReset(); + let mockTaskManagerStart: ReturnType<typeof taskManagerMock.createStart>; + + beforeEach(() => { + mockSavedObjectClient.find.mockResolvedValue(getSavedObjectConfiguration()); + mockTaskManagerStart = taskManagerMock.createStart(); }); - it('should return error if saved object not exist', async () => { - mockSavedObjectClient.find.mockResolvedValueOnce({ + it('returns an error if saved object does not exist', async () => { + mockSavedObjectClient.find.mockResolvedValue({ page: 1, per_page: 20, total: 0, saved_objects: [], }); - expect.assertions(1); - try { - await riskEngineDataClient.enableRiskEngine(); - } catch (e) { - expect(e.message).toEqual('There no saved object configuration for risk engine'); - } + await expect( + riskEngineDataClient.enableRiskEngine({ taskManager: mockTaskManagerStart }) + ).rejects.toThrow('Risk engine configuration not found'); }); - it('should update saved object attrubute', async () => { - mockSavedObjectClient.find.mockResolvedValueOnce(getSavedObjectConfiguration()); - - await riskEngineDataClient.enableRiskEngine(); + it('should update saved object attribute', async () => { + await riskEngineDataClient.enableRiskEngine({ taskManager: mockTaskManagerStart }); expect(mockSavedObjectClient.update).toHaveBeenCalledWith( 'risk-engine-configuration', @@ -648,11 +659,36 @@ describe('RiskEngineDataClient', () => { } ); }); + + describe('if task manager throws an error', () => { + beforeEach(() => { + mockTaskManagerStart.ensureScheduled.mockRejectedValueOnce(new Error('Task Manager error')); + }); + + it('disables the risk engine and re-throws the error', async () => { + await expect( + riskEngineDataClient.enableRiskEngine({ taskManager: mockTaskManagerStart }) + ).rejects.toThrow('Task Manager error'); + + expect(mockSavedObjectClient.update).toHaveBeenCalledWith( + 'risk-engine-configuration', + 'de8ca330-2d26-11ee-bc86-f95bf6192ee6', + { + enabled: false, + }, + { + refresh: 'wait_for', + } + ); + }); + }); }); describe('disableRiskEngine', () => { - afterEach(() => { - mockSavedObjectClient.find.mockReset(); + let mockTaskManagerStart: ReturnType<typeof taskManagerMock.createStart>; + + beforeEach(() => { + mockTaskManagerStart = taskManagerMock.createStart(); }); it('should return error if saved object not exist', async () => { @@ -665,16 +701,16 @@ describe('RiskEngineDataClient', () => { expect.assertions(1); try { - await riskEngineDataClient.disableRiskEngine(); + await riskEngineDataClient.disableRiskEngine({ taskManager: mockTaskManagerStart }); } catch (e) { - expect(e.message).toEqual('There no saved object configuration for risk engine'); + expect(e.message).toEqual('Risk engine configuration not found'); } }); it('should update saved object attrubute', async () => { mockSavedObjectClient.find.mockResolvedValueOnce(getSavedObjectConfiguration()); - await riskEngineDataClient.disableRiskEngine(); + await riskEngineDataClient.disableRiskEngine({ taskManager: mockTaskManagerStart }); expect(mockSavedObjectClient.update).toHaveBeenCalledWith( 'risk-engine-configuration', @@ -690,6 +726,7 @@ describe('RiskEngineDataClient', () => { }); describe('init', () => { + let mockTaskManagerStart: ReturnType<typeof taskManagerMock.createStart>; const initializeResourcesMock = jest.spyOn( RiskEngineDataClient.prototype, 'initializeResources' @@ -701,6 +738,7 @@ describe('RiskEngineDataClient', () => { 'disableLegacyRiskEngine' ); beforeEach(() => { + mockTaskManagerStart = taskManagerMock.createStart(); disableLegacyRiskEngineMock.mockImplementation(() => Promise.resolve(true)); initializeResourcesMock.mockImplementation(() => { @@ -711,9 +749,9 @@ describe('RiskEngineDataClient', () => { return Promise.resolve(getSavedObjectConfiguration().saved_objects[0]); }); - jest.spyOn(savedObjectConfig, 'initSavedObjects').mockImplementation(() => { - return Promise.resolve(getSavedObjectConfiguration().saved_objects[0]); - }); + jest + .spyOn(savedObjectConfig, 'initSavedObjects') + .mockResolvedValue({} as unknown as SavedObject<RiskEngineConfiguration>); }); afterEach(() => { @@ -725,6 +763,7 @@ describe('RiskEngineDataClient', () => { it('success', async () => { const initResult = await riskEngineDataClient.init({ namespace: 'default', + taskManager: mockTaskManagerStart, }); expect(initResult).toEqual({ @@ -742,6 +781,7 @@ describe('RiskEngineDataClient', () => { }); const initResult = await riskEngineDataClient.init({ namespace: 'default', + taskManager: mockTaskManagerStart, }); expect(initResult).toEqual({ @@ -760,6 +800,7 @@ describe('RiskEngineDataClient', () => { const initResult = await riskEngineDataClient.init({ namespace: 'default', + taskManager: mockTaskManagerStart, }); expect(initResult).toEqual({ @@ -778,6 +819,7 @@ describe('RiskEngineDataClient', () => { const initResult = await riskEngineDataClient.init({ namespace: 'default', + taskManager: mockTaskManagerStart, }); expect(initResult).toEqual({ @@ -796,6 +838,7 @@ describe('RiskEngineDataClient', () => { const initResult = await riskEngineDataClient.init({ namespace: 'default', + taskManager: mockTaskManagerStart, }); expect(initResult).toEqual({ @@ -814,6 +857,7 @@ describe('RiskEngineDataClient', () => { const initResult = await riskEngineDataClient.init({ namespace: 'default', + taskManager: mockTaskManagerStart, }); expect(initResult).toEqual({ diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/risk_engine_data_client.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/risk_engine_data_client.ts index cc151ebc542ee..bbbf51aef66a6 100644 --- a/x-pack/plugins/security_solution/server/lib/risk_engine/risk_engine_data_client.ts +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/risk_engine_data_client.ts @@ -15,6 +15,7 @@ import { import { mappingFromFieldMap } from '@kbn/alerting-plugin/common'; import { DEFAULT_NAMESPACE_STRING } from '@kbn/core-saved-objects-utils-server'; import type { Logger, ElasticsearchClient, SavedObjectsClientContract } from '@kbn/core/server'; +import type { TaskManagerStartContract } from '@kbn/task-manager-plugin/server'; import { riskScoreFieldMap, @@ -47,10 +48,13 @@ import { initSavedObjects, getEnabledRiskEngineAmount, } from './utils/saved_object_configuration'; +import { getRiskInputsIndex } from './get_risk_inputs_index'; +import { removeRiskScoringTask, startRiskScoringTask } from './tasks'; import { createIndex } from './utils/create_index'; interface InitOpts { namespace: string; + taskManager: TaskManagerStartContract; } interface InitializeRiskEngineResourcesOpts { @@ -69,7 +73,7 @@ export class RiskEngineDataClient { private writerCache: Map<string, Writer> = new Map(); constructor(private readonly options: RiskEngineDataClientOpts) {} - public async init({ namespace }: InitOpts) { + public async init({ namespace, taskManager }: InitOpts) { const result: InitRiskEngineResult = { legacyRiskEngineDisabled: false, riskEngineResourcesInstalled: false, @@ -94,7 +98,10 @@ export class RiskEngineDataClient { } try { - await initSavedObjects({ savedObjectsClient: this.options.soClient }); + await initSavedObjects({ + savedObjectsClient: this.options.soClient, + namespace, + }); result.riskEngineConfigurationCreated = true; } catch (e) { result.errors.push(e.message); @@ -102,7 +109,7 @@ export class RiskEngineDataClient { } try { - await this.enableRiskEngine(); + await this.enableRiskEngine({ taskManager }); result.riskEngineEnabled = true; } catch (e) { result.errors.push(e.message); @@ -133,6 +140,18 @@ export class RiskEngineDataClient { return writer; } + public getConfiguration = () => + getConfiguration({ + savedObjectsClient: this.options.soClient, + }); + + public getRiskInputsIndex = ({ dataViewId }: { dataViewId: string }) => + getRiskInputsIndex({ + dataViewId, + logger: this.options.logger, + soClient: this.options.soClient, + }); + public async getStatus({ namespace }: { namespace: string }) { const riskEngineStatus = await this.getCurrentStatus(); const legacyRiskEngineStatus = await this.getLegacyStatus({ namespace }); @@ -140,18 +159,38 @@ export class RiskEngineDataClient { return { riskEngineStatus, legacyRiskEngineStatus, isMaxAmountOfRiskEnginesReached }; } - public async enableRiskEngine() { - // code to run task - return updateSavedObjectAttribute({ - savedObjectsClient: this.options.soClient, - attributes: { - enabled: true, - }, - }); + public async enableRiskEngine({ taskManager }: { taskManager: TaskManagerStartContract }) { + try { + const configurationResult = await updateSavedObjectAttribute({ + savedObjectsClient: this.options.soClient, + attributes: { + enabled: true, + }, + }); + + await startRiskScoringTask({ + logger: this.options.logger, + namespace: this.options.namespace, + riskEngineDataClient: this, + taskManager, + }); + + return configurationResult; + } catch (e) { + this.options.logger.error(`Error while enabling risk engine: ${e.message}`); + + await this.disableRiskEngine({ taskManager }); + + throw e; + } } - public async disableRiskEngine() { - // code to stop task + public async disableRiskEngine({ taskManager }: { taskManager: TaskManagerStartContract }) { + await removeRiskScoringTask({ + namespace: this.options.namespace, + taskManager, + logger: this.options.logger, + }); return updateSavedObjectAttribute({ savedObjectsClient: this.options.soClient, @@ -179,7 +218,7 @@ export class RiskEngineDataClient { } private async getCurrentStatus() { - const configuration = await getConfiguration({ savedObjectsClient: this.options.soClient }); + const configuration = await this.getConfiguration(); if (configuration) { return configuration.enabled ? RiskEngineStatus.ENABLED : RiskEngineStatus.DISABLED; diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/risk_score_service.mock.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/risk_score_service.mock.ts index fc4e3d43b28e5..800e82d9a1686 100644 --- a/x-pack/plugins/security_solution/server/lib/risk_engine/risk_score_service.mock.ts +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/risk_score_service.mock.ts @@ -25,6 +25,8 @@ const createRiskScoreMock = (overrides: Partial<RiskScore> = {}): RiskScore => ( const createRiskScoreServiceMock = (): jest.Mocked<RiskScoreService> => ({ calculateScores: jest.fn(), calculateAndPersistScores: jest.fn(), + getConfiguration: jest.fn(), + getRiskInputsIndex: jest.fn(), }); export const riskScoreServiceMock = { diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/risk_score_service.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/risk_score_service.ts index 6bc9f45c991f8..2876050fb9a14 100644 --- a/x-pack/plugins/security_solution/server/lib/risk_engine/risk_score_service.ts +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/risk_score_service.ts @@ -11,16 +11,20 @@ import type { CalculateAndPersistScoresResponse, CalculateScoresParams, CalculateScoresResponse, + RiskEngineConfiguration, } from './types'; import { calculateRiskScores } from './calculate_risk_scores'; import { calculateAndPersistRiskScores } from './calculate_and_persist_risk_scores'; import type { RiskEngineDataClient } from './risk_engine_data_client'; +import type { RiskInputsIndexResponse } from './get_risk_inputs_index'; export interface RiskScoreService { calculateScores: (params: CalculateScoresParams) => Promise<CalculateScoresResponse>; calculateAndPersistScores: ( params: CalculateAndPersistScoresParams ) => Promise<CalculateAndPersistScoresResponse>; + getConfiguration: () => Promise<RiskEngineConfiguration | null>; + getRiskInputsIndex: ({ dataViewId }: { dataViewId: string }) => Promise<RiskInputsIndexResponse>; } export interface RiskScoreServiceFactoryParams { @@ -39,4 +43,6 @@ export const riskScoreServiceFactory = ({ calculateScores: (params) => calculateRiskScores({ ...params, esClient, logger }), calculateAndPersistScores: (params) => calculateAndPersistRiskScores({ ...params, esClient, logger, riskEngineDataClient, spaceId }), + getConfiguration: async () => riskEngineDataClient.getConfiguration(), + getRiskInputsIndex: async (params) => riskEngineDataClient.getRiskInputsIndex(params), }); diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_disable_route.test.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_disable_route.test.ts new file mode 100644 index 0000000000000..e7c162ddd08e8 --- /dev/null +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_disable_route.test.ts @@ -0,0 +1,105 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { taskManagerMock } from '@kbn/task-manager-plugin/server/mocks'; +import { riskEngineDisableRoute } from './risk_engine_disable_route'; + +import { RISK_ENGINE_DISABLE_URL } from '../../../../common/constants'; +import { + serverMock, + requestContextMock, + requestMock, +} from '../../detection_engine/routes/__mocks__'; +import { riskEngineDataClientMock } from '../risk_engine_data_client.mock'; + +describe('risk score calculation route', () => { + let server: ReturnType<typeof serverMock.create>; + let context: ReturnType<typeof requestContextMock.convertContext>; + let mockTaskManagerStart: ReturnType<typeof taskManagerMock.createStart>; + let mockRiskEngineDataClient: ReturnType<typeof riskEngineDataClientMock.create>; + let getStartServicesMock: jest.Mock; + + beforeEach(() => { + jest.resetAllMocks(); + + server = serverMock.create(); + const { clients } = requestContextMock.createTools(); + mockRiskEngineDataClient = riskEngineDataClientMock.create(); + context = requestContextMock.convertContext( + requestContextMock.create({ + ...clients, + riskEngineDataClient: mockRiskEngineDataClient, + }) + ); + mockTaskManagerStart = taskManagerMock.createStart(); + }); + + const buildRequest = () => { + return requestMock.create({ + method: 'post', + path: RISK_ENGINE_DISABLE_URL, + body: {}, + }); + }; + + describe('when task manager is available', () => { + beforeEach(() => { + getStartServicesMock = jest + .fn() + .mockResolvedValue([{}, { taskManager: mockTaskManagerStart }]); + riskEngineDisableRoute(server.router, getStartServicesMock); + }); + + it('invokes the risk score data client', async () => { + const request = buildRequest(); + await server.inject(request, context); + + expect(mockRiskEngineDataClient.disableRiskEngine).toHaveBeenCalled(); + }); + + it('returns a 200 when disabling is successful', async () => { + // @ts-expect-error response is not used in the route nor this test + mockRiskEngineDataClient.disableRiskEngine.mockResolvedValue({ enabled: false }); + const request = buildRequest(); + const response = await server.inject(request, context); + + expect(response.status).toEqual(200); + }); + + it('returns a 500 if disabling fails', async () => { + mockRiskEngineDataClient.disableRiskEngine.mockRejectedValue( + new Error('something went wrong') + ); + const request = buildRequest(); + const response = await server.inject(request, context); + + expect(response.status).toEqual(500); + expect(response.body.message.message).toEqual('something went wrong'); + }); + }); + + describe('when task manager is unavailable', () => { + beforeEach(() => { + getStartServicesMock = jest.fn().mockResolvedValueOnce([{}, { taskManager: undefined }]); + riskEngineDisableRoute(server.router, getStartServicesMock); + }); + + it('returns a 400 response', async () => { + const request = buildRequest(); + const response = await server.inject(request, context); + + expect(response.status).toEqual(400); + expect(response.body).toEqual({ + message: { + message: + 'Task Manager is unavailable, but is required to disable the risk engine. Please enable the taskManager plugin and try again.', + }, + status_code: 400, + }); + }); + }); +}); diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_disable_route.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_disable_route.ts index 999a7dbfd2848..480f23139a9ef 100644 --- a/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_disable_route.ts +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_disable_route.ts @@ -5,17 +5,16 @@ * 2.0. */ -import type { Logger } from '@kbn/core/server'; +import type { StartServicesAccessor } from '@kbn/core/server'; import { buildSiemResponse } from '@kbn/lists-plugin/server/routes/utils'; import { transformError } from '@kbn/securitysolution-es-utils'; import { RISK_ENGINE_DISABLE_URL, APP_ID } from '../../../../common/constants'; -import type { SetupPlugins } from '../../../plugin'; +import type { StartPlugins } from '../../../plugin'; import type { SecuritySolutionPluginRouter } from '../../../types'; export const riskEngineDisableRoute = ( router: SecuritySolutionPluginRouter, - logger: Logger, - security: SetupPlugins['security'] + getStartServices: StartServicesAccessor<StartPlugins> ) => { router.post( { @@ -28,11 +27,22 @@ export const riskEngineDisableRoute = ( async (context, request, response) => { const siemResponse = buildSiemResponse(response); + const [_, { taskManager }] = await getStartServices(); const securitySolution = await context.securitySolution; const riskEngineClient = securitySolution.getRiskEngineDataClient(); + if (!taskManager) { + return siemResponse.error({ + statusCode: 400, + body: { + message: + 'Task Manager is unavailable, but is required to disable the risk engine. Please enable the taskManager plugin and try again.', + }, + }); + } + try { - await riskEngineClient.disableRiskEngine(); + await riskEngineClient.disableRiskEngine({ taskManager }); return response.ok({ body: { success: true } }); } catch (e) { const error = transformError(e); diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_enable_route.test.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_enable_route.test.ts new file mode 100644 index 0000000000000..8ef30ae60e368 --- /dev/null +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_enable_route.test.ts @@ -0,0 +1,105 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { taskManagerMock } from '@kbn/task-manager-plugin/server/mocks'; +import { riskEngineEnableRoute } from './risk_engine_enable_route'; + +import { RISK_ENGINE_ENABLE_URL } from '../../../../common/constants'; +import { + serverMock, + requestContextMock, + requestMock, +} from '../../detection_engine/routes/__mocks__'; +import { riskEngineDataClientMock } from '../risk_engine_data_client.mock'; + +describe('risk score calculation route', () => { + let server: ReturnType<typeof serverMock.create>; + let context: ReturnType<typeof requestContextMock.convertContext>; + let mockTaskManagerStart: ReturnType<typeof taskManagerMock.createStart>; + let mockRiskEngineDataClient: ReturnType<typeof riskEngineDataClientMock.create>; + let getStartServicesMock: jest.Mock; + + beforeEach(() => { + jest.resetAllMocks(); + + server = serverMock.create(); + const { clients } = requestContextMock.createTools(); + mockRiskEngineDataClient = riskEngineDataClientMock.create(); + context = requestContextMock.convertContext( + requestContextMock.create({ + ...clients, + riskEngineDataClient: mockRiskEngineDataClient, + }) + ); + mockTaskManagerStart = taskManagerMock.createStart(); + }); + + const buildRequest = () => { + return requestMock.create({ + method: 'post', + path: RISK_ENGINE_ENABLE_URL, + body: {}, + }); + }; + + describe('when task manager is available', () => { + beforeEach(() => { + getStartServicesMock = jest + .fn() + .mockResolvedValue([{}, { taskManager: mockTaskManagerStart }]); + riskEngineEnableRoute(server.router, getStartServicesMock); + }); + + it('invokes the risk score service', async () => { + const request = buildRequest(); + await server.inject(request, context); + + expect(mockRiskEngineDataClient.enableRiskEngine).toHaveBeenCalled(); + }); + + it('returns a 200 when enablement is successful', async () => { + // @ts-expect-error response is not used in the route nor this test + mockRiskEngineDataClient.enableRiskEngine.mockResolvedValue({ enabled: true }); + const request = buildRequest(); + const response = await server.inject(request, context); + + expect(response.status).toEqual(200); + }); + + it('returns a 500 if enabling fails', async () => { + mockRiskEngineDataClient.enableRiskEngine.mockRejectedValue( + new Error('something went wrong') + ); + const request = buildRequest(); + const response = await server.inject(request, context); + + expect(response.status).toEqual(500); + expect(response.body.message.message).toEqual('something went wrong'); + }); + }); + + describe('when task manager is unavailable', () => { + beforeEach(() => { + getStartServicesMock = jest.fn().mockResolvedValueOnce([{}, { taskManager: undefined }]); + riskEngineEnableRoute(server.router, getStartServicesMock); + }); + + it('returns a 400 response', async () => { + const request = buildRequest(); + const response = await server.inject(request, context); + + expect(response.status).toEqual(400); + expect(response.body).toEqual({ + message: { + message: + 'Task Manager is unavailable, but is required to enable the risk engine. Please enable the taskManager plugin and try again.', + }, + status_code: 400, + }); + }); + }); +}); diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_enable_route.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_enable_route.ts index 468b6e608fe97..311218213b440 100644 --- a/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_enable_route.ts +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_enable_route.ts @@ -5,17 +5,16 @@ * 2.0. */ -import type { Logger } from '@kbn/core/server'; +import type { StartServicesAccessor } from '@kbn/core/server'; import { buildSiemResponse } from '@kbn/lists-plugin/server/routes/utils'; import { transformError } from '@kbn/securitysolution-es-utils'; import { RISK_ENGINE_ENABLE_URL, APP_ID } from '../../../../common/constants'; -import type { SetupPlugins } from '../../../plugin'; +import type { StartPlugins } from '../../../plugin'; import type { SecuritySolutionPluginRouter } from '../../../types'; export const riskEngineEnableRoute = ( router: SecuritySolutionPluginRouter, - logger: Logger, - security: SetupPlugins['security'] + getStartServices: StartServicesAccessor<StartPlugins> ) => { router.post( { @@ -27,11 +26,22 @@ export const riskEngineEnableRoute = ( }, async (context, request, response) => { const siemResponse = buildSiemResponse(response); + const [_, { taskManager }] = await getStartServices(); const securitySolution = await context.securitySolution; const riskEngineClient = securitySolution.getRiskEngineDataClient(); + if (!taskManager) { + return siemResponse.error({ + statusCode: 400, + body: { + message: + 'Task Manager is unavailable, but is required to enable the risk engine. Please enable the taskManager plugin and try again.', + }, + }); + } + try { - await riskEngineClient.enableRiskEngine(); + await riskEngineClient.enableRiskEngine({ taskManager }); return response.ok({ body: { success: true } }); } catch (e) { const error = transformError(e); diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_init_route.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_init_route.ts index 2a842bf1ed086..5dc83521bc0d6 100644 --- a/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_init_route.ts +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_init_route.ts @@ -5,18 +5,17 @@ * 2.0. */ -import type { Logger } from '@kbn/core/server'; +import type { StartServicesAccessor } from '@kbn/core/server'; import { buildSiemResponse } from '@kbn/lists-plugin/server/routes/utils'; import { transformError } from '@kbn/securitysolution-es-utils'; import { RISK_ENGINE_INIT_URL, APP_ID } from '../../../../common/constants'; -import type { SetupPlugins } from '../../../plugin'; +import type { StartPlugins } from '../../../plugin'; import type { SecuritySolutionPluginRouter } from '../../../types'; export const riskEngineInitRoute = ( router: SecuritySolutionPluginRouter, - logger: Logger, - security: SetupPlugins['security'] + getStartServices: StartServicesAccessor<StartPlugins> ) => { router.post( { @@ -29,11 +28,23 @@ export const riskEngineInitRoute = ( async (context, request, response) => { const siemResponse = buildSiemResponse(response); const securitySolution = await context.securitySolution; - const riskEngineClient = securitySolution.getRiskEngineDataClient(); + const [_, { taskManager }] = await getStartServices(); + const riskEngineDataClient = securitySolution.getRiskEngineDataClient(); const spaceId = securitySolution.getSpaceId(); try { - const initResult = await riskEngineClient.init({ + if (!taskManager) { + return siemResponse.error({ + statusCode: 400, + body: { + message: + 'Task Manager is unavailable, but is required to initialize the risk engine. Please enable the taskManager plugin and try again.', + }, + }); + } + + const initResult = await riskEngineDataClient.init({ + taskManager, namespace: spaceId, }); diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_status_route.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_status_route.ts index 50ba575e4b44f..84d788eb8813c 100644 --- a/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_status_route.ts +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/routes/risk_engine_status_route.ts @@ -5,14 +5,13 @@ * 2.0. */ -import type { Logger } from '@kbn/core/server'; import { buildSiemResponse } from '@kbn/lists-plugin/server/routes/utils'; import { transformError } from '@kbn/securitysolution-es-utils'; import { RISK_ENGINE_STATUS_URL, APP_ID } from '../../../../common/constants'; import type { SecuritySolutionPluginRouter } from '../../../types'; -export const riskEngineStatusRoute = (router: SecuritySolutionPluginRouter, logger: Logger) => { +export const riskEngineStatusRoute = (router: SecuritySolutionPluginRouter) => { router.get( { path: RISK_ENGINE_STATUS_URL, diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/saved_object/risk_engine_configuration_type.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/saved_object/risk_engine_configuration_type.ts index 81171fde5e3b4..103babdde3db1 100644 --- a/x-pack/plugins/security_solution/server/lib/risk_engine/saved_object/risk_engine_configuration_type.ts +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/saved_object/risk_engine_configuration_type.ts @@ -13,9 +13,35 @@ export const riskEngineConfigurationTypeName = 'risk-engine-configuration'; export const riskEngineConfigurationTypeMappings: SavedObjectsType['mappings'] = { dynamic: false, properties: { + dataViewId: { + type: 'keyword', + }, enabled: { type: 'boolean', }, + filter: { + dynamic: false, + properties: {}, + }, + identifierType: { + type: 'keyword', + }, + interval: { + type: 'keyword', + }, + pageSize: { + type: 'integer', + }, + range: { + properties: { + start: { + type: 'keyword', + }, + end: { + type: 'keyword', + }, + }, + }, }, }; diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/constants.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/constants.ts new file mode 100644 index 0000000000000..3af5af989a3c8 --- /dev/null +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/constants.ts @@ -0,0 +1,20 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export const SCOPE = ['securitySolution']; +export const TYPE = 'risk_engine:risk_scoring'; +export const VERSION = '0.0.1'; +export const INTERVAL = '1h'; +export const TIMEOUT = '5m'; + +export const RISK_SCORING_TASK_CONSTANTS = { + SCOPE, + TYPE, + VERSION, + INTERVAL, + TIMEOUT, +}; diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/helpers.test.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/helpers.test.ts new file mode 100644 index 0000000000000..20eec9fa968d9 --- /dev/null +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/helpers.test.ts @@ -0,0 +1,51 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import moment from 'moment'; +import { convertDateToISOString } from './helpers'; + +moment.suppressDeprecationWarnings = true; + +describe('convertDateToISOString', () => { + const ISO_8601_PATTERN = /\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z/; + + it('converts a datemath expression to an ISO string', () => { + const date = 'now-1d'; + const result = convertDateToISOString(date); + + expect(result).toMatch(ISO_8601_PATTERN); + }); + + it('converts a rounded datemath expression to an ISO string', () => { + const date = 'now-30d/d'; + const result = convertDateToISOString(date); + + expect(result).toMatch(ISO_8601_PATTERN); + }); + + it('converts a regular date string to an ISO string', () => { + const date = '2023-08-03T12:34:56.789Z'; + const result = convertDateToISOString(date); + + expect(result).toMatch(ISO_8601_PATTERN); + }); + + it('does nothing to an ISO string', () => { + const date = '2023-08-03T12:34:56.789Z'; + const result = convertDateToISOString(date); + + expect(result).toEqual(date); + }); + + it('throws an error if the date string is invalid', () => { + const date = 'hi mom'; + + expect(() => { + convertDateToISOString(date); + }).toThrowErrorMatchingInlineSnapshot(`"Could not convert string \\"hi mom\\" to ISO string"`); + }); +}); diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/helpers.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/helpers.ts new file mode 100644 index 0000000000000..dfacb8b78f30a --- /dev/null +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/helpers.ts @@ -0,0 +1,74 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import datemath from '@kbn/datemath'; +import { + CoreKibanaRequest, + type KibanaRequest, + SECURITY_EXTENSION_ID, + type CoreStart, +} from '@kbn/core/server'; +import { addSpaceIdToPath } from '@kbn/spaces-plugin/server'; + +import type { Range } from '../../../../common/risk_engine'; + +export const convertDateToISOString = (dateString: string): string => { + const date = datemath.parse(dateString); + + if (date?.isValid()) { + return date.toISOString(); + } else { + throw new Error(`Could not convert string "${dateString}" to ISO string`); + } +}; + +export const convertRangeToISO = (range: Range): Range => ({ + start: convertDateToISOString(range.start), + end: convertDateToISOString(range.end), +}); + +const buildFakeScopedRequest = ({ + coreStart, + namespace, +}: { + coreStart: CoreStart; + namespace: string; +}): KibanaRequest => { + const rawRequest = { + headers: {}, + path: '/', + }; + + const request = CoreKibanaRequest.from(rawRequest); + const scopedPath = addSpaceIdToPath('/', namespace); + + coreStart.http.basePath.set(request, scopedPath); + + return request; +}; + +/** + * Builds a SavedObjectsClient scoped to the given namespace. This should be used with caution, and only in cases where a real kibana request is not available to build a proper scoped client (e.g. a task manager task). + * + __Note__: Because the kibana system user cannot access SavedObjects itself, this client does not have the security extension enabled, which has (negative) implications both for logging and for security. + * @param coreStart CoreStart plugin context + * @param namespace the namespace to which the client should be scoped + * @returns a SavedObjectsClient scoped to the given namespace + */ +export const buildScopedInternalSavedObjectsClientUnsafe = ({ + coreStart, + namespace, +}: { + coreStart: CoreStart; + namespace: string; +}) => { + const fakeScopedRequest = buildFakeScopedRequest({ coreStart, namespace }); + + return coreStart.savedObjects.getScopedClient(fakeScopedRequest, { + excludedExtensions: [SECURITY_EXTENSION_ID], + }); +}; diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/index.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/index.ts new file mode 100644 index 0000000000000..0c619ecc5813e --- /dev/null +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/index.ts @@ -0,0 +1,12 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export { + registerRiskScoringTask, + startRiskScoringTask, + removeRiskScoringTask, +} from './risk_scoring_task'; diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/risk_scoring_task.mock.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/risk_scoring_task.mock.ts new file mode 100644 index 0000000000000..9a74dd60dce61 --- /dev/null +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/risk_scoring_task.mock.ts @@ -0,0 +1,33 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { type ConcreteTaskInstance, TaskStatus } from '@kbn/task-manager-plugin/server'; +import { taskManagerMock } from '@kbn/task-manager-plugin/server/mocks'; +import { TYPE, VERSION } from './constants'; +import { defaultState } from './state'; + +const createRiskScoringTaskInstanceMock = ( + overrides: Partial<ConcreteTaskInstance> = {} +): ConcreteTaskInstance => + taskManagerMock.createTask({ + id: `${TYPE}:default:${VERSION}`, + runAt: new Date(), + attempts: 0, + ownerId: '', + status: TaskStatus.Running, + startedAt: new Date(), + scheduledAt: new Date(), + retryAt: new Date(), + params: {}, + state: defaultState, + taskType: TYPE, + ...overrides, + }); + +export const riskScoringTaskMock = { + createInstance: createRiskScoringTaskInstanceMock, +}; diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/risk_scoring_task.test.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/risk_scoring_task.test.ts new file mode 100644 index 0000000000000..37120a85f0d30 --- /dev/null +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/risk_scoring_task.test.ts @@ -0,0 +1,398 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { SavedObjectsErrorHelpers } from '@kbn/core/server'; +import { coreMock } from '@kbn/core/server/mocks'; +import { taskManagerMock } from '@kbn/task-manager-plugin/server/mocks'; +import { loggerMock } from '@kbn/logging-mocks'; + +import type { RiskScoreService } from '../risk_score_service'; +import { riskScoreServiceMock } from '../risk_score_service.mock'; +import { riskScoringTaskMock } from './risk_scoring_task.mock'; +import { riskEngineDataClientMock } from '../risk_engine_data_client.mock'; +import { + registerRiskScoringTask, + startRiskScoringTask, + removeRiskScoringTask, + runTask, +} from './risk_scoring_task'; + +const ISO_8601_PATTERN = /\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z/; + +describe('Risk Scoring Task', () => { + let mockRiskEngineDataClient: ReturnType<typeof riskEngineDataClientMock.create>; + let mockRiskScoreService: ReturnType<typeof riskScoreServiceMock.create>; + let mockCore: ReturnType<typeof coreMock.createSetup>; + let mockTaskManagerSetup: ReturnType<typeof taskManagerMock.createSetup>; + let mockTaskManagerStart: ReturnType<typeof taskManagerMock.createStart>; + let mockLogger: ReturnType<typeof loggerMock.create>; + + beforeEach(() => { + mockCore = coreMock.createSetup(); + mockRiskEngineDataClient = riskEngineDataClientMock.create(); + mockRiskScoreService = riskScoreServiceMock.create(); + mockTaskManagerSetup = taskManagerMock.createSetup(); + mockTaskManagerStart = taskManagerMock.createStart(); + mockLogger = loggerMock.create(); + }); + + describe('registerRiskScoringTask()', () => { + it('registers the task with TaskManager', () => { + expect(mockTaskManagerSetup.registerTaskDefinitions).not.toHaveBeenCalled(); + registerRiskScoringTask({ + getStartServices: mockCore.getStartServices, + kibanaVersion: '8.10.0', + taskManager: mockTaskManagerSetup, + logger: mockLogger, + }); + expect(mockTaskManagerSetup.registerTaskDefinitions).toHaveBeenCalled(); + }); + + it('does nothing if TaskManager is not available', () => { + expect(mockTaskManagerSetup.registerTaskDefinitions).not.toHaveBeenCalled(); + registerRiskScoringTask({ + getStartServices: mockCore.getStartServices, + kibanaVersion: '8.10.0', + taskManager: undefined, + logger: mockLogger, + }); + expect(mockTaskManagerSetup.registerTaskDefinitions).not.toHaveBeenCalled(); + }); + }); + + describe('startRiskScoringTask()', () => { + it('schedules the task', async () => { + await startRiskScoringTask({ + logger: mockLogger, + namespace: 'default', + taskManager: mockTaskManagerStart, + riskEngineDataClient: mockRiskEngineDataClient, + }); + + expect(mockTaskManagerStart.ensureScheduled).toHaveBeenCalledWith( + expect.objectContaining({ + schedule: { interval: '1h' }, + taskType: 'risk_engine:risk_scoring', + }) + ); + }); + + it('schedules the task for a particular namespace', async () => { + await startRiskScoringTask({ + logger: mockLogger, + namespace: 'other', + taskManager: mockTaskManagerStart, + riskEngineDataClient: mockRiskEngineDataClient, + }); + + expect(mockTaskManagerStart.ensureScheduled).toHaveBeenCalledWith( + expect.objectContaining({ + schedule: { interval: '1h' }, + taskType: 'risk_engine:risk_scoring', + state: expect.objectContaining({ namespace: 'other' }), + }) + ); + }); + + it('rethrows an error from taskManager', async () => { + mockTaskManagerStart.ensureScheduled.mockRejectedValueOnce(new Error('whoops')); + + await expect( + startRiskScoringTask({ + logger: mockLogger, + namespace: 'other', + taskManager: mockTaskManagerStart, + riskEngineDataClient: mockRiskEngineDataClient, + }) + ).rejects.toThrowError('whoops'); + }); + }); + + describe('removeRiskScoringTask()', () => { + it('removes the task', async () => { + await removeRiskScoringTask({ + namespace: 'default', + logger: mockLogger, + taskManager: mockTaskManagerStart, + }); + + expect(mockTaskManagerStart.remove).toHaveBeenCalledWith( + 'risk_engine:risk_scoring:default:0.0.1' + ); + }); + + it('removes the task for a non-default namespace', async () => { + await removeRiskScoringTask({ + namespace: 'other', + logger: mockLogger, + taskManager: mockTaskManagerStart, + }); + + expect(mockTaskManagerStart.remove).toHaveBeenCalledWith( + 'risk_engine:risk_scoring:other:0.0.1' + ); + }); + + it('does nothing if task was not found', async () => { + mockTaskManagerStart.remove.mockRejectedValueOnce( + SavedObjectsErrorHelpers.createGenericNotFoundError('type', 'id') + ); + await removeRiskScoringTask({ + namespace: 'default', + logger: mockLogger, + taskManager: mockTaskManagerStart, + }); + + expect(mockLogger.error).not.toHaveBeenCalled(); + }); + + it('rethrows errors other than "not found"', async () => { + mockTaskManagerStart.remove.mockRejectedValueOnce(new Error('whoops')); + + await expect( + removeRiskScoringTask({ + namespace: 'default', + logger: mockLogger, + taskManager: mockTaskManagerStart, + }) + ).rejects.toThrowError('whoops'); + + expect(mockLogger.error).toHaveBeenCalledWith('Failed to remove risk scoring task: whoops'); + }); + }); + + describe('runTask()', () => { + let riskScoringTaskInstanceMock: ReturnType<typeof riskScoringTaskMock.createInstance>; + let getRiskScoreService: (namespace: string) => Promise<RiskScoreService>; + + beforeEach(async () => { + await startRiskScoringTask({ + logger: mockLogger, + namespace: 'default', + taskManager: mockTaskManagerStart, + riskEngineDataClient: mockRiskEngineDataClient, + }); + riskScoringTaskInstanceMock = riskScoringTaskMock.createInstance(); + mockRiskScoreService.getRiskInputsIndex.mockResolvedValueOnce({ + index: 'index', + runtimeMappings: {}, + }); + mockRiskScoreService.getConfiguration.mockResolvedValue({ + dataViewId: 'data_view_id', + enabled: true, + filter: {}, + identifierType: 'host', + interval: '1h', + pageSize: 10_000, + range: { start: 'now-30d', end: 'now' }, + }); + + getRiskScoreService = jest.fn().mockResolvedValueOnce(mockRiskScoreService); + }); + + describe('when there are no scores to calculate', () => { + beforeEach(() => { + mockRiskScoreService.calculateAndPersistScores.mockResolvedValueOnce({ + after_keys: {}, + scores_written: 0, + errors: [], + }); + }); + + it('invokes the risk score service only once', async () => { + await runTask({ + getRiskScoreService, + logger: mockLogger, + taskInstance: riskScoringTaskInstanceMock, + }); + expect(mockRiskScoreService.calculateAndPersistScores).toHaveBeenCalledTimes(1); + }); + }); + + describe('when there are scores to calculate', () => { + beforeEach(() => { + mockRiskScoreService.calculateAndPersistScores + .mockResolvedValueOnce({ + after_keys: { host: { 'host.name': 'value' } }, + scores_written: 5, + errors: [], + }) + .mockResolvedValueOnce({ + after_keys: {}, + scores_written: 5, + errors: [], + }); + }); + + it('retrieves configuration from the saved object', async () => { + await runTask({ + getRiskScoreService, + logger: mockLogger, + taskInstance: riskScoringTaskInstanceMock, + }); + + expect(mockRiskScoreService.getConfiguration).toHaveBeenCalledTimes(1); + }); + + it('invokes the risk score service once for each page of scores', async () => { + await runTask({ + getRiskScoreService, + logger: mockLogger, + taskInstance: riskScoringTaskInstanceMock, + }); + expect(mockRiskScoreService.calculateAndPersistScores).toHaveBeenCalledTimes(2); + }); + + it('invokes the risk score service with the persisted configuration', async () => { + mockRiskScoreService.getConfiguration.mockResolvedValueOnce({ + dataViewId: 'data_view_id', + enabled: true, + filter: { + term: { 'host.name': 'SUSPICIOUS' }, + }, + identifierType: 'host', + interval: '2h', + pageSize: 11_111, + range: { start: 'now-30d', end: 'now' }, + }); + await runTask({ + getRiskScoreService, + logger: mockLogger, + taskInstance: riskScoringTaskInstanceMock, + }); + + expect(mockRiskScoreService.calculateAndPersistScores).toHaveBeenCalledWith( + expect.objectContaining({ + filter: { + term: { 'host.name': 'SUSPICIOUS' }, + }, + identifierType: 'host', + pageSize: 11_111, + range: { + start: expect.stringMatching(ISO_8601_PATTERN), + end: expect.stringMatching(ISO_8601_PATTERN), + }, + }) + ); + }); + + describe('when no identifier type is configured', () => { + beforeEach(() => { + mockRiskScoreService.getConfiguration.mockResolvedValue({ + dataViewId: 'data_view_id', + enabled: true, + filter: {}, + identifierType: undefined, + interval: '1h', + pageSize: 10_000, + range: { start: 'now-30d', end: 'now' }, + }); + // add additional mock responses for the additional identifier calls + mockRiskScoreService.calculateAndPersistScores + .mockResolvedValueOnce({ + after_keys: { host: { 'user.name': 'value' } }, + scores_written: 5, + errors: [], + }) + .mockResolvedValueOnce({ + after_keys: {}, + scores_written: 5, + errors: [], + }); + }); + + it('invokes the risk score service once for type of identifier', async () => { + await runTask({ + getRiskScoreService, + logger: mockLogger, + taskInstance: riskScoringTaskInstanceMock, + }); + expect(mockRiskScoreService.calculateAndPersistScores).toHaveBeenCalledTimes(4); + + expect(mockRiskScoreService.calculateAndPersistScores).toHaveBeenCalledWith( + expect.objectContaining({ + identifierType: 'host', + }) + ); + expect(mockRiskScoreService.calculateAndPersistScores).toHaveBeenCalledWith( + expect.objectContaining({ + identifierType: 'user', + }) + ); + }); + }); + + it('updates the task state', async () => { + const { state: initialState } = riskScoringTaskInstanceMock; + const { state: nextState } = await runTask({ + getRiskScoreService, + logger: mockLogger, + taskInstance: riskScoringTaskInstanceMock, + }); + + expect(initialState).not.toEqual(nextState); + expect(nextState).toEqual( + expect.objectContaining({ + runs: 1, + scoresWritten: 10, + }) + ); + }); + + describe('short-circuiting', () => { + it('does not execute if the risk engine is not enabled', async () => { + mockRiskScoreService.getConfiguration.mockResolvedValueOnce({ + dataViewId: 'data_view_id', + enabled: false, + filter: { + term: { 'host.name': 'SUSPICIOUS' }, + }, + identifierType: undefined, + interval: '2h', + pageSize: 11_111, + range: { start: 'now-30d', end: 'now' }, + }); + await runTask({ + getRiskScoreService, + logger: mockLogger, + taskInstance: riskScoringTaskInstanceMock, + }); + + expect(mockRiskScoreService.calculateAndPersistScores).not.toHaveBeenCalled(); + expect(mockLogger.info).toHaveBeenCalledWith(expect.stringContaining('not enabled')); + }); + + it('does not execute if the configuration is not found', async () => { + mockRiskScoreService.getConfiguration.mockResolvedValueOnce(null); + await runTask({ + getRiskScoreService, + logger: mockLogger, + taskInstance: riskScoringTaskInstanceMock, + }); + + expect(mockRiskScoreService.calculateAndPersistScores).not.toHaveBeenCalled(); + expect(mockLogger.info).toHaveBeenCalledWith( + expect.stringContaining('configuration not found') + ); + }); + + it('does not execute if the riskScoreService is not available', async () => { + await runTask({ + getRiskScoreService: jest.fn().mockResolvedValueOnce(undefined), + logger: mockLogger, + taskInstance: riskScoringTaskInstanceMock, + }); + + expect(mockRiskScoreService.calculateAndPersistScores).not.toHaveBeenCalled(); + expect(mockLogger.info).toHaveBeenCalledWith( + expect.stringContaining('service is not available') + ); + }); + }); + }); + }); +}); diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/risk_scoring_task.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/risk_scoring_task.ts new file mode 100644 index 0000000000000..075f01ac66ea9 --- /dev/null +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/risk_scoring_task.ts @@ -0,0 +1,246 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import moment from 'moment'; +import { asyncForEach } from '@kbn/std'; +import { + type Logger, + SavedObjectsErrorHelpers, + type StartServicesAccessor, +} from '@kbn/core/server'; +import type { + ConcreteTaskInstance, + TaskManagerSetupContract, + TaskManagerStartContract, +} from '@kbn/task-manager-plugin/server'; + +import type { AfterKeys, IdentifierType } from '../../../../common/risk_engine'; +import type { StartPlugins } from '../../../plugin'; +import { type RiskScoreService, riskScoreServiceFactory } from '../risk_score_service'; +import { RiskEngineDataClient } from '../risk_engine_data_client'; +import { isRiskScoreCalculationComplete } from '../helpers'; +import { + defaultState, + stateSchemaByVersion, + type LatestTaskStateSchema as RiskScoringTaskState, +} from './state'; +import { INTERVAL, SCOPE, TIMEOUT, TYPE, VERSION } from './constants'; +import { buildScopedInternalSavedObjectsClientUnsafe, convertRangeToISO } from './helpers'; +import { RiskScoreEntity } from '../../../../common/risk_engine/types'; + +const logFactory = + (logger: Logger, taskId: string) => + (message: string): void => + logger.info(`[task ${taskId}]: ${message}`); + +const getTaskName = (): string => TYPE; + +const getTaskId = (namespace: string): string => `${TYPE}:${namespace}:${VERSION}`; + +type GetRiskScoreService = (namespace: string) => Promise<RiskScoreService>; + +export const registerRiskScoringTask = ({ + getStartServices, + kibanaVersion, + logger, + taskManager, +}: { + getStartServices: StartServicesAccessor<StartPlugins>; + kibanaVersion: string; + logger: Logger; + taskManager: TaskManagerSetupContract | undefined; +}): void => { + if (!taskManager) { + logger.info('Task Manager is unavailable; skipping risk engine task registration.'); + return; + } + + const getRiskScoreService: GetRiskScoreService = (namespace) => + getStartServices().then(([coreStart, _]) => { + const esClient = coreStart.elasticsearch.client.asInternalUser; + const soClient = buildScopedInternalSavedObjectsClientUnsafe({ coreStart, namespace }); + const riskEngineDataClient = new RiskEngineDataClient({ + logger, + kibanaVersion, + esClient, + namespace, + soClient, + }); + + return riskScoreServiceFactory({ + esClient, + logger, + riskEngineDataClient, + spaceId: namespace, + }); + }); + + taskManager.registerTaskDefinitions({ + [getTaskName()]: { + title: 'Entity Analytics Risk Engine - Risk Scoring Task', + timeout: TIMEOUT, + stateSchemaByVersion, + createTaskRunner: createTaskRunnerFactory({ logger, getRiskScoreService }), + }, + }); +}; + +export const startRiskScoringTask = async ({ + logger, + namespace, + riskEngineDataClient, + taskManager, +}: { + logger: Logger; + namespace: string; + riskEngineDataClient: RiskEngineDataClient; + taskManager: TaskManagerStartContract; +}) => { + const taskId = getTaskId(namespace); + const log = logFactory(logger, taskId); + log('starting task'); + const interval = (await riskEngineDataClient.getConfiguration())?.interval ?? INTERVAL; + + log('attempting to schedule'); + try { + await taskManager.ensureScheduled({ + id: taskId, + taskType: getTaskName(), + scope: SCOPE, + schedule: { + interval, + }, + state: { ...defaultState, namespace }, + params: { version: VERSION }, + }); + } catch (e) { + logger.warn(`[task ${taskId}]: error scheduling task, received ${e.message}`); + throw e; + } +}; + +export const removeRiskScoringTask = async ({ + logger, + namespace, + taskManager, +}: { + logger: Logger; + namespace: string; + taskManager: TaskManagerStartContract; +}) => { + try { + await taskManager.remove(getTaskId(namespace)); + } catch (err) { + if (!SavedObjectsErrorHelpers.isNotFoundError(err)) { + logger.error(`Failed to remove risk scoring task: ${err.message}`); + throw err; + } + } +}; + +export const runTask = async ({ + getRiskScoreService, + logger, + taskInstance, +}: { + logger: Logger; + getRiskScoreService: GetRiskScoreService; + taskInstance: ConcreteTaskInstance; +}): Promise<{ + state: RiskScoringTaskState; +}> => { + const state = taskInstance.state as RiskScoringTaskState; + const taskId = taskInstance.id; + const log = logFactory(logger, taskId); + const taskExecutionTime = moment().utc().toISOString(); + log('running task'); + + let scoresWritten = 0; + const updatedState = { + lastExecutionTimestamp: taskExecutionTime, + namespace: state.namespace, + runs: state.runs + 1, + scoresWritten, + }; + + if (taskId !== getTaskId(state.namespace)) { + log('outdated task; exiting'); + return { state: updatedState }; + } + + const riskScoreService = await getRiskScoreService(state.namespace); + if (!riskScoreService) { + log('risk score service is not available; exiting task'); + return { state: updatedState }; + } + + const configuration = await riskScoreService.getConfiguration(); + if (configuration == null) { + log( + 'Risk engine configuration not found; exiting task. Please reinitialize the risk engine and try again' + ); + return { state: updatedState }; + } + + const { + dataViewId, + enabled, + filter, + identifierType: configuredIdentifierType, + range: configuredRange, + pageSize, + } = configuration; + if (!enabled) { + log('risk engine is not enabled, exiting task'); + return { state: updatedState }; + } + + const range = convertRangeToISO(configuredRange); + const { index, runtimeMappings } = await riskScoreService.getRiskInputsIndex({ + dataViewId, + }); + const identifierTypes: IdentifierType[] = configuredIdentifierType + ? [configuredIdentifierType] + : [RiskScoreEntity.host, RiskScoreEntity.user]; + + await asyncForEach(identifierTypes, async (identifierType) => { + let isWorkComplete = false; + let afterKeys: AfterKeys = {}; + while (!isWorkComplete) { + const result = await riskScoreService.calculateAndPersistScores({ + afterKeys, + index, + filter, + identifierType, + pageSize, + range, + runtimeMappings, + weights: [], + }); + + isWorkComplete = isRiskScoreCalculationComplete(result); + afterKeys = result.after_keys; + scoresWritten += result.scores_written; + } + }); + + updatedState.scoresWritten = scoresWritten; + + log('task run completed'); + return { + state: updatedState, + }; +}; + +const createTaskRunnerFactory = + ({ logger, getRiskScoreService }: { logger: Logger; getRiskScoreService: GetRiskScoreService }) => + ({ taskInstance }: { taskInstance: ConcreteTaskInstance }) => { + return { + run: async () => runTask({ getRiskScoreService, logger, taskInstance }), + cancel: async () => {}, + }; + }; diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/state.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/state.ts new file mode 100644 index 0000000000000..65271e150e150 --- /dev/null +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/tasks/state.ts @@ -0,0 +1,44 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { schema, type TypeOf } from '@kbn/config-schema'; + +/** + * WARNING: Do not modify the existing versioned schema(s) below, instead define a new version (ex: 2, 3, 4). + * This is required to support zero-downtime upgrades and rollbacks. See https://github.com/elastic/kibana/issues/155764. + * + * As you add a new schema version, don't forget to change latestTaskStateSchema variable to reference the latest schema. + * For example, changing stateSchemaByVersion[1].schema to stateSchemaByVersion[2].schema. + */ +export const stateSchemaByVersion = { + 1: { + // A task that was created < 8.10 will go through this "up" migration + // to ensure it matches the v1 schema. + up: (state: Record<string, unknown>) => ({ + lastExecutionTimestamp: state.lastExecutionTimestamp || undefined, + runs: state.runs || 0, + namespace: typeof state.namespace === 'string' ? state.namespace : 'default', + scoresWritten: typeof state.scoresWritten === 'number' ? state.scoresWritten : undefined, + }), + schema: schema.object({ + lastExecutionTimestamp: schema.maybe(schema.string()), + namespace: schema.string(), + runs: schema.number(), + scoresWritten: schema.maybe(schema.number()), + }), + }, +}; + +const latestTaskStateSchema = stateSchemaByVersion[1].schema; +export type LatestTaskStateSchema = TypeOf<typeof latestTaskStateSchema>; + +export const defaultState: LatestTaskStateSchema = { + lastExecutionTimestamp: undefined, + namespace: 'default', + runs: 0, + scoresWritten: undefined, +}; diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/types.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/types.ts index 7316b69bc3de6..1e9751ff1388e 100644 --- a/x-pack/plugins/security_solution/server/lib/risk_engine/types.ts +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/types.ts @@ -11,6 +11,7 @@ import type { AfterKeys, IdentifierType, RiskWeights, + Range, RiskEngineStatus, RiskScore, } from '../../../common/risk_engine'; @@ -34,7 +35,7 @@ export interface CalculateAndPersistScoresParams { filter?: unknown; identifierType: IdentifierType; pageSize: number; - range: { start: string; end: string }; + range: Range; runtimeMappings: MappingRuntimeFields; weights?: RiskWeights; } @@ -129,5 +130,11 @@ export interface RiskScoreBucket { } export interface RiskEngineConfiguration { + dataViewId: string; enabled: boolean; + filter: unknown; + identifierType: IdentifierType | undefined; + interval: string; + pageSize: number; + range: Range; } diff --git a/x-pack/plugins/security_solution/server/lib/risk_engine/utils/saved_object_configuration.ts b/x-pack/plugins/security_solution/server/lib/risk_engine/utils/saved_object_configuration.ts index f14a479333df8..415e9f84777e3 100644 --- a/x-pack/plugins/security_solution/server/lib/risk_engine/utils/saved_object_configuration.ts +++ b/x-pack/plugins/security_solution/server/lib/risk_engine/utils/saved_object_configuration.ts @@ -6,6 +6,7 @@ */ import type { SavedObject, SavedObjectsClientContract } from '@kbn/core/server'; +import { getAlertsIndex } from '../../../../common/utils/risk_score_modules'; import type { RiskEngineConfiguration } from '../types'; import { riskEngineConfigurationTypeName } from '../saved_object'; @@ -13,6 +14,20 @@ export interface SavedObjectsClientArg { savedObjectsClient: SavedObjectsClientContract; } +const getDefaultRiskEngineConfiguration = ({ + namespace, +}: { + namespace: string; +}): RiskEngineConfiguration => ({ + dataViewId: getAlertsIndex(namespace), + enabled: false, + filter: {}, + identifierType: undefined, + interval: '1h', + pageSize: 10_000, + range: { start: 'now-30d', end: 'now' }, +}); + const getConfigurationSavedObject = async ({ savedObjectsClient, }: SavedObjectsClientArg): Promise<SavedObject<RiskEngineConfiguration> | undefined> => { @@ -47,7 +62,7 @@ export const updateSavedObjectAttribute = async ({ }); if (!savedObjectConfiguration) { - throw new Error('There no saved object configuration for risk engine'); + throw new Error('Risk engine configuration not found'); } const result = await savedObjectsClient.update( @@ -64,14 +79,19 @@ export const updateSavedObjectAttribute = async ({ return result; }; -export const initSavedObjects = async ({ savedObjectsClient }: SavedObjectsClientArg) => { +export const initSavedObjects = async ({ + namespace, + savedObjectsClient, +}: SavedObjectsClientArg & { namespace: string }) => { const configuration = await getConfigurationSavedObject({ savedObjectsClient }); if (configuration) { return configuration; } - const result = await savedObjectsClient.create(riskEngineConfigurationTypeName, { - enabled: false, - }); + const result = await savedObjectsClient.create( + riskEngineConfigurationTypeName, + getDefaultRiskEngineConfiguration({ namespace }), + {} + ); return result; }; diff --git a/x-pack/plugins/security_solution/server/plugin.ts b/x-pack/plugins/security_solution/server/plugin.ts index db285ae678ab5..35719e21a20e6 100644 --- a/x-pack/plugins/security_solution/server/plugin.ts +++ b/x-pack/plugins/security_solution/server/plugin.ts @@ -97,6 +97,7 @@ import { } from '../common/endpoint/constants'; import { AppFeatures } from './lib/app_features'; +import { registerRiskScoringTask } from './lib/risk_engine/tasks/risk_scoring_task'; export type { SetupPlugins, StartPlugins, PluginSetup, PluginStart } from './plugin_contract'; @@ -161,6 +162,15 @@ export class Plugin implements ISecuritySolutionPlugin { this.ruleMonitoringService.setup(core, plugins); + if (experimentalFeatures.riskScoringPersistence) { + registerRiskScoringTask({ + getStartServices: core.getStartServices, + kibanaVersion: pluginContext.env.packageInfo.version, + logger: this.logger, + taskManager: plugins.taskManager, + }); + } + const requestContextFactory = new RequestContextFactory({ config, logger, diff --git a/x-pack/plugins/security_solution/server/routes/index.ts b/x-pack/plugins/security_solution/server/routes/index.ts index cd88c9ffaca1b..d3786ea8acb88 100644 --- a/x-pack/plugins/security_solution/server/routes/index.ts +++ b/x-pack/plugins/security_solution/server/routes/index.ts @@ -183,9 +183,9 @@ export const initRoutes = ( if (config.experimentalFeatures.riskScoringRoutesEnabled) { riskScorePreviewRoute(router, logger); riskScoreCalculationRoute(router, logger); - riskEngineInitRoute(router, logger, security); - riskEngineEnableRoute(router, logger, security); - riskEngineStatusRoute(router, logger); - riskEngineDisableRoute(router, logger, security); + riskEngineStatusRoute(router); + riskEngineInitRoute(router, getStartServices); + riskEngineEnableRoute(router, getStartServices); + riskEngineDisableRoute(router, getStartServices); } }; diff --git a/x-pack/plugins/security_solution/tsconfig.json b/x-pack/plugins/security_solution/tsconfig.json index fbcfe9df91c5a..4ef9c7499474c 100644 --- a/x-pack/plugins/security_solution/tsconfig.json +++ b/x-pack/plugins/security_solution/tsconfig.json @@ -12,8 +12,7 @@ "server/**/*.json", "scripts/**/*.json", "public/**/*.json", - "../../../typings/**/*", - "./public/management/cypress/cypress.d.ts" + "../../../typings/**/*" ], "exclude": [ "target/**/*", @@ -163,6 +162,7 @@ "@kbn/cloud-chat-plugin", "@kbn/alerts-ui-shared", "@kbn/security-solution-navigation", + "@kbn/security-solution-upselling", "@kbn/discover-plugin", "@kbn/data-view-editor-plugin", "@kbn/navigation-plugin", diff --git a/x-pack/plugins/security_solution_ess/public/plugin.ts b/x-pack/plugins/security_solution_ess/public/plugin.ts index a0c5aa694b73c..e9cd1d1eefae3 100644 --- a/x-pack/plugins/security_solution_ess/public/plugin.ts +++ b/x-pack/plugins/security_solution_ess/public/plugin.ts @@ -45,6 +45,8 @@ export class SecuritySolutionEssPlugin }); securitySolution.setGetStartedPage(getSecurityGetStartedComponent(services)); + securitySolution.setIsILMAvailable(true); + subscribeBreadcrumbs(services); return {}; diff --git a/x-pack/plugins/security_solution_ess/public/upselling/pages/translations.ts b/x-pack/plugins/security_solution_ess/public/upselling/pages/translations.ts deleted file mode 100644 index 5ec6b838fbd46..0000000000000 --- a/x-pack/plugins/security_solution_ess/public/upselling/pages/translations.ts +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { i18n } from '@kbn/i18n'; - -export const PLATINUM = i18n.translate('xpack.securitySolutionEss.paywall.platinum', { - defaultMessage: 'Platinum', -}); - -export const UPGRADE_MESSAGE = i18n.translate('xpack.securitySolutionEss.paywall.upgradeMessage', { - defaultMessage: 'This feature is available with Platinum or higher subscription', -}); - -export const UPGRADE_BUTTON = i18n.translate('xpack.securitySolutionEss.paywall.upgradeButton', { - defaultMessage: 'Upgrade to Platinum', -}); - -export const ENTITY_ANALYTICS_LICENSE_DESC = i18n.translate( - 'xpack.securitySolutionEss.entityAnalytics.pageDesc', - { - defaultMessage: 'Detect threats from users and hosts within your network with Entity Analytics', - } -); - -export const ENTITY_ANALYTICS_TITLE = i18n.translate( - 'xpack.securitySolutionEss.navigation.entityAnalytics', - { - defaultMessage: 'Entity Analytics', - } -); diff --git a/x-pack/plugins/security_solution_ess/public/upselling/register_upsellings.tsx b/x-pack/plugins/security_solution_ess/public/upselling/register_upsellings.tsx index f750507d17bc8..930f8443369f8 100644 --- a/x-pack/plugins/security_solution_ess/public/upselling/register_upsellings.tsx +++ b/x-pack/plugins/security_solution_ess/public/upselling/register_upsellings.tsx @@ -13,14 +13,15 @@ import type { SectionUpsellings, UpsellingMessageId, UpsellingSectionId, -} from '@kbn/security-solution-plugin/public/common/lib/upsellings/types'; +} from '@kbn/security-solution-upselling/service/types'; import type { ILicense, LicenseType } from '@kbn/licensing-plugin/public'; -import { lazy } from 'react'; -import type React from 'react'; -import { UPGRADE_INVESTIGATION_GUIDE } from './messages/investigation_guide_upselling'; +import React, { lazy } from 'react'; +import { UPGRADE_INVESTIGATION_GUIDE } from '@kbn/security-solution-upselling/messages'; import type { Services } from '../common/services'; import { withServicesProvider } from '../common/services'; -const EntityAnalyticsUpsellingLazy = lazy(() => import('./pages/entity_analytics_upselling')); +const EntityAnalyticsUpsellingLazy = lazy( + () => import('@kbn/security-solution-upselling/pages/entity_analytics') +); interface UpsellingsConfig { minimumLicenseRequired: LicenseType; @@ -42,7 +43,7 @@ export const registerUpsellings = ( license: ILicense, services: Services ) => { - const upsellingPagesToRegister = upsellingPages.reduce<PageUpsellings>( + const upsellingPagesToRegister = upsellingPages(services).reduce<PageUpsellings>( (pageUpsellings, { pageName, minimumLicenseRequired, component }) => { if (!license.hasAtLeast(minimumLicenseRequired)) { pageUpsellings[pageName] = withServicesProvider(component, services); @@ -78,12 +79,19 @@ export const registerUpsellings = ( }; // Upsellings for entire pages, linked to a SecurityPageName -export const upsellingPages: UpsellingPages = [ +export const upsellingPages: (services: Services) => UpsellingPages = (services) => [ // It is highly advisable to make use of lazy loaded components to minimize bundle size. { pageName: SecurityPageName.entityAnalytics, minimumLicenseRequired: 'platinum', - component: EntityAnalyticsUpsellingLazy, + component: () => ( + <EntityAnalyticsUpsellingLazy + requiredLicense="Platinum" + subscriptionUrl={services.application.getUrlForApp('management', { + path: 'stack/license_management', + })} + /> + ), }, ]; @@ -97,6 +105,6 @@ export const upsellingMessages: UpsellingMessages = [ { id: 'investigation_guide', minimumLicenseRequired: 'platinum', - message: UPGRADE_INVESTIGATION_GUIDE('platinum'), + message: UPGRADE_INVESTIGATION_GUIDE('Platinum'), }, ]; diff --git a/x-pack/plugins/security_solution_ess/tsconfig.json b/x-pack/plugins/security_solution_ess/tsconfig.json index 08c7e49b6a166..57c520bf896c1 100644 --- a/x-pack/plugins/security_solution_ess/tsconfig.json +++ b/x-pack/plugins/security_solution_ess/tsconfig.json @@ -21,6 +21,6 @@ "@kbn/kibana-react-plugin", "@kbn/security-solution-navigation", "@kbn/licensing-plugin", - "@kbn/shared-ux-page-kibana-template", + "@kbn/security-solution-upselling", ] } diff --git a/x-pack/plugins/security_solution_serverless/public/plugin.ts b/x-pack/plugins/security_solution_serverless/public/plugin.ts index 946e84c895f74..05ea3185ce43c 100644 --- a/x-pack/plugins/security_solution_serverless/public/plugin.ts +++ b/x-pack/plugins/security_solution_serverless/public/plugin.ts @@ -54,8 +54,10 @@ export class SecuritySolutionServerlessPlugin const services = createServices(core, startDeps); - registerUpsellings(securitySolution.getUpselling(), this.config.productTypes); + registerUpsellings(securitySolution.getUpselling(), this.config.productTypes, services); + securitySolution.setGetStartedPage(getSecurityGetStartedComponent(services, productTypes)); + securitySolution.setIsILMAvailable(false); configureNavigation(services, this.config); setRoutes(services); diff --git a/x-pack/plugins/security_solution_serverless/public/upselling/lazy_upselling.tsx b/x-pack/plugins/security_solution_serverless/public/upselling/lazy_upselling.tsx index a3640195544e0..e24434ea0b9e8 100644 --- a/x-pack/plugins/security_solution_serverless/public/upselling/lazy_upselling.tsx +++ b/x-pack/plugins/security_solution_serverless/public/upselling/lazy_upselling.tsx @@ -26,3 +26,7 @@ export const ThreatIntelligencePaywallLazy = withSuspenseUpsell( export const OsqueryResponseActionsUpsellingSectionLazy = withSuspenseUpsell( lazy(() => import('./pages/osquery_automated_response_actions')) ); + +export const EntityAnalyticsUpsellingLazy = withSuspenseUpsell( + lazy(() => import('@kbn/security-solution-upselling/pages/entity_analytics')) +); diff --git a/x-pack/plugins/security_solution_serverless/public/upselling/messages/investigation_guide_upselling.tsx b/x-pack/plugins/security_solution_serverless/public/upselling/messages/investigation_guide_upselling.tsx deleted file mode 100644 index 591e979fbfbbe..0000000000000 --- a/x-pack/plugins/security_solution_serverless/public/upselling/messages/investigation_guide_upselling.tsx +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import type { AppFeatureKey } from '@kbn/security-solution-plugin/common'; -import { i18n } from '@kbn/i18n'; -import { getProductTypeByPLI } from '../hooks/use_product_type_by_pli'; - -export const UPGRADE_INVESTIGATION_GUIDE = (productTypeRequired: string) => - i18n.translate('xpack.securitySolutionServerless.markdown.insight.upsell', { - defaultMessage: - 'Upgrade to {productTypeRequired} to make use of insights in investigation guides', - values: { - productTypeRequired, - }, - }); - -export const investigationGuideUpselling = (requiredPLI: AppFeatureKey): string => { - const productTypeRequired = getProductTypeByPLI(requiredPLI); - return productTypeRequired ? UPGRADE_INVESTIGATION_GUIDE(productTypeRequired) : ''; -}; diff --git a/x-pack/plugins/security_solution_serverless/public/upselling/pages/generic_upselling_page.tsx b/x-pack/plugins/security_solution_serverless/public/upselling/pages/generic_upselling_page.tsx deleted file mode 100644 index cf0d93e82dec7..0000000000000 --- a/x-pack/plugins/security_solution_serverless/public/upselling/pages/generic_upselling_page.tsx +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import React from 'react'; -import { EuiEmptyPrompt, EuiLink } from '@elastic/eui'; -import type { AppFeatureKey } from '@kbn/security-solution-plugin/common'; -import { getProductTypeByPLI } from '../hooks/use_product_type_by_pli'; - -export const GenericUpsellingPage: React.FC<{ requiredPLI: AppFeatureKey }> = React.memo( - function GenericUpsellingPage({ requiredPLI }) { - const productTypeRequired = getProductTypeByPLI(requiredPLI); - - return ( - <EuiEmptyPrompt - iconType="logoSecurity" - title={<>{'This is a testing component for a Serverless upselling prompt.'}</>} - body={ - <> - {'Get'} <EuiLink href="#">{productTypeRequired}</EuiLink> {'to enable this feature'} - <br /> - <br /> - <iframe - title="money" - src="https://giphy.com/embed/px8O7NANzzaqk" - width="480" - height="283" - frameBorder="0" - className="giphy-embed" - allowFullScreen - /> - </> - } - /> - ); - } -); - -// eslint-disable-next-line import/no-default-export -export { GenericUpsellingPage as default }; diff --git a/x-pack/plugins/security_solution_serverless/public/upselling/register_upsellings.tsx b/x-pack/plugins/security_solution_serverless/public/upselling/register_upsellings.tsx index 01290dad9f00b..ee8427717ad01 100644 --- a/x-pack/plugins/security_solution_serverless/public/upselling/register_upsellings.tsx +++ b/x-pack/plugins/security_solution_serverless/public/upselling/register_upsellings.tsx @@ -14,16 +14,20 @@ import type { import type { MessageUpsellings, UpsellingMessageId, -} from '@kbn/security-solution-plugin/public/common/lib/upsellings/types'; +} from '@kbn/security-solution-upselling/service/types'; import React from 'react'; +import { UPGRADE_INVESTIGATION_GUIDE } from '@kbn/security-solution-upselling/messages'; import { EndpointPolicyProtectionsLazy } from './sections/endpoint_management'; import type { SecurityProductTypes } from '../../common/config'; import { getProductAppFeatures } from '../../common/pli/pli_features'; -import { investigationGuideUpselling } from './messages/investigation_guide_upselling'; import { OsqueryResponseActionsUpsellingSectionLazy, ThreatIntelligencePaywallLazy, + EntityAnalyticsUpsellingLazy, } from './lazy_upselling'; +import { getProductTypeByPLI } from './hooks/use_product_type_by_pli'; +import type { Services } from '../common/services'; +import { withServicesProvider } from '../common/services'; interface UpsellingsConfig { pli: AppFeatureKey; @@ -42,14 +46,15 @@ type UpsellingMessages = UpsellingsMessageConfig[]; export const registerUpsellings = ( upselling: UpsellingService, - productTypes: SecurityProductTypes + productTypes: SecurityProductTypes, + services: Services ) => { const enabledPLIsSet = new Set(getProductAppFeatures(productTypes)); const upsellingPagesToRegister = upsellingPages.reduce<PageUpsellings>( (pageUpsellings, { pageName, pli, component }) => { if (!enabledPLIsSet.has(pli)) { - pageUpsellings[pageName] = component; + pageUpsellings[pageName] = withServicesProvider(component, services); } return pageUpsellings; }, @@ -84,6 +89,15 @@ export const registerUpsellings = ( // Upsellings for entire pages, linked to a SecurityPageName export const upsellingPages: UpsellingPages = [ // It is highly advisable to make use of lazy loaded components to minimize bundle size. + { + pageName: SecurityPageName.entityAnalytics, + pli: AppFeatureKey.advancedInsights, + component: () => ( + <EntityAnalyticsUpsellingLazy + requiredProduct={getProductTypeByPLI(AppFeatureKey.advancedInsights) ?? undefined} + /> + ), + }, { pageName: SecurityPageName.threatIntelligence, pli: AppFeatureKey.threatIntelligence, @@ -117,6 +131,8 @@ export const upsellingMessages: UpsellingMessages = [ { id: 'investigation_guide', pli: AppFeatureKey.investigationGuide, - message: investigationGuideUpselling(AppFeatureKey.investigationGuide), + message: UPGRADE_INVESTIGATION_GUIDE( + getProductTypeByPLI(AppFeatureKey.investigationGuide) ?? '' + ), }, ]; diff --git a/x-pack/plugins/security_solution_serverless/public/upselling/sections/generic_upselling_section.tsx b/x-pack/plugins/security_solution_serverless/public/upselling/sections/generic_upselling_section.tsx deleted file mode 100644 index 090285d6823bc..0000000000000 --- a/x-pack/plugins/security_solution_serverless/public/upselling/sections/generic_upselling_section.tsx +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import React from 'react'; -import { EuiEmptyPrompt, EuiLink } from '@elastic/eui'; -import type { AppFeatureKey } from '@kbn/security-solution-plugin/common'; -import { getProductTypeByPLI } from '../hooks/use_product_type_by_pli'; - -export const GenericUpsellingSection: React.FC<{ requiredPLI: AppFeatureKey }> = React.memo( - function GenericUpsellingSection({ requiredPLI }) { - const productTypeRequired = getProductTypeByPLI(requiredPLI); - - return ( - <EuiEmptyPrompt - iconType="logoSecurity" - title={<>{'This is a testing component for a Serverless upselling prompt.'}</>} - body={ - <> - {'Get'} <EuiLink href="#">{productTypeRequired}</EuiLink> {'to enable this feature'} - <br /> - <br /> - <iframe - title="money" - src="https://giphy.com/embed/px8O7NANzzaqk" - width="480" - height="283" - frameBorder="0" - className="giphy-embed" - allowFullScreen - /> - </> - } - /> - ); - } -); - -// eslint-disable-next-line import/no-default-export -export { GenericUpsellingSection as default }; diff --git a/x-pack/plugins/security_solution_serverless/server/endpoint/services/metering_service.ts b/x-pack/plugins/security_solution_serverless/server/endpoint/services/metering_service.ts index b47450eca235c..307ba5714e0f4 100644 --- a/x-pack/plugins/security_solution_serverless/server/endpoint/services/metering_service.ts +++ b/x-pack/plugins/security_solution_serverless/server/endpoint/services/metering_service.ts @@ -10,7 +10,7 @@ import type { ElasticsearchClient } from '@kbn/core/server'; import { ENDPOINT_HEARTBEAT_INDEX } from '@kbn/security-solution-plugin/common/endpoint/constants'; import type { EndpointHeartbeat } from '@kbn/security-solution-plugin/common/endpoint/types'; -import { ProductLine, type ProductTier } from '../../../common/product'; +import { ProductLine, ProductTier } from '../../../common/product'; import type { UsageRecord, MeteringCallbackInput } from '../../types'; import type { ServerlessSecurityConfig } from '../../config'; @@ -20,6 +20,7 @@ const SAMPLE_PERIOD_SECONDS = 3600; const THRESHOLD_MINUTES = 30; export class EndpointMeteringService { + private type: ProductLine.endpoint | `${ProductLine.cloud}_${ProductLine.endpoint}` | undefined; private tier: ProductTier | undefined; public getUsageRecords = async ({ @@ -30,6 +31,11 @@ export class EndpointMeteringService { lastSuccessfulReport, config, }: MeteringCallbackInput): Promise<UsageRecord[]> => { + this.setType(config); + if (!this.type) { + return []; + } + this.setTier(config); const heartbeatsResponse = await this.getHeartbeatsSince( @@ -42,14 +48,6 @@ export class EndpointMeteringService { return []; } - if (!this.tier) { - throw new Error( - `no product tier information found for heartbeats: ${JSON.stringify( - heartbeatsResponse.hits.hits - )}` - ); - } - return heartbeatsResponse.hits.hits.reduce((acc, { _source }) => { if (!_source) { return acc; @@ -108,11 +106,14 @@ export class EndpointMeteringService { timestamp.setMilliseconds(0); return { + // keep endpoint instead of this.type as id prefix so + // we don't double count in the event of add-on changes id: `endpoint-${agentId}-${timestamp}`, usage_timestamp: timestampStr, creation_timestamp: timestampStr, usage: { - type: 'security_solution_endpoint', + // type postfix is used to determine the PLI to bill + type: `security_solution_${this.type}`, period_seconds: SAMPLE_PERIOD_SECONDS, quantity: 1, }, @@ -126,15 +127,44 @@ export class EndpointMeteringService { }; } + private setType(config: ServerlessSecurityConfig) { + if (this.type) { + return; + } + + let hasCloudAddOn = false; + let hasEndpointAddOn = false; + config.productTypes.forEach((productType) => { + if (productType.product_line === ProductLine.cloud) { + hasCloudAddOn = true; + } + if (productType.product_line === ProductLine.endpoint) { + hasEndpointAddOn = true; + } + }); + + if (hasEndpointAddOn) { + this.type = ProductLine.endpoint; + return; + } + if (hasCloudAddOn) { + this.type = `${ProductLine.cloud}_${ProductLine.endpoint}`; + } + } + private setTier(config: ServerlessSecurityConfig) { if (this.tier) { return; } - const endpoint = config.productTypes.find( - (productType) => productType.product_line === ProductLine.endpoint + const product = config.productTypes.find( + (productType) => + // tiers are always matching so either is fine + productType.product_line === ProductLine.endpoint || + productType.product_line === ProductLine.cloud ); - this.tier = endpoint?.product_tier; + // default essentials is safe since we only reach tier if add-on exists + this.tier = product?.product_tier || ProductTier.essentials; } } diff --git a/x-pack/plugins/security_solution_serverless/tsconfig.json b/x-pack/plugins/security_solution_serverless/tsconfig.json index 6ea4adba54291..7e3bf59fad132 100644 --- a/x-pack/plugins/security_solution_serverless/tsconfig.json +++ b/x-pack/plugins/security_solution_serverless/tsconfig.json @@ -10,6 +10,8 @@ "public/**/*.tsx", "server/**/*.ts", "../../../typings/**/*" + , + "../../packages/security-solution/upselling/sections/generic_upselling_section.tsx" ], "exclude": ["target/**/*"], "kbn_references": [ @@ -23,6 +25,7 @@ "@kbn/shared-ux-page-solution-nav", "@kbn/security-solution-side-nav", "@kbn/security-solution-navigation", + "@kbn/security-solution-upselling", "@kbn/default-nav-ml", "@kbn/default-nav-devtools", "@kbn/kibana-react-plugin", diff --git a/x-pack/plugins/serverless_search/common/doc_links.ts b/x-pack/plugins/serverless_search/common/doc_links.ts index 1055eb844883f..fdf57a80f30e2 100644 --- a/x-pack/plugins/serverless_search/common/doc_links.ts +++ b/x-pack/plugins/serverless_search/common/doc_links.ts @@ -11,58 +11,82 @@ class ESDocLinks { public apiIntro: string = ''; public beats: string = ''; public connectors: string = ''; - public elasticsearchClients: string = ''; public integrations: string = ''; - public goAdvancedConfig: string = ''; + public kibanaFeedback: string = ''; + public kibanaRunApiInConsole: string = ''; + public logStash: string = ''; + public metadata: string = ''; + public roleDescriptors: string = ''; + public securityApis: string = ''; + // Client links + public elasticsearchClients: string = ''; + // go + public goApiReference: string | undefined = undefined; public goBasicConfig: string = ''; public goClient: string = ''; + // javascript public jsApiReference: string = ''; - public jsAdvancedConfig: string = ''; public jsBasicConfig: string = ''; public jsClient: string = ''; - public kibanaRunApiInConsole: string = ''; - public logStash: string = ''; - public metadata: string = ''; - public phpAdvancedConfig: string = ''; + // php + public phpApiReference: string | undefined = undefined; public phpBasicConfig: string = ''; public phpClient: string = ''; - public pythonAdvancedConfig: string = ''; + // python + public pythonApiReference: string | undefined = undefined; public pythonBasicConfig: string = ''; public pythonClient: string = ''; - public roleDescriptors: string = ''; - public rubyAdvancedConfig: string = ''; + // ruby public rubyBasicConfig: string = ''; public rubyClient: string = ''; public rubyExamples: string = ''; - public securityApis: string = ''; + + // Getting Started + public gettingStartedIngest: string = ''; + public gettingStartedSearch: string = ''; + public gettingStartedExplore: string = ''; + constructor() {} setDocLinks(newDocLinks: DocLinks) { - this.apiIntro = newDocLinks.apis.restApis; - this.elasticsearchClients = newDocLinks.clients.guide; + this.apiIntro = newDocLinks.serverlessClients.httpApis; this.integrations = newDocLinks.serverlessSearch.integrations; - this.goAdvancedConfig = newDocLinks.clients.goConnecting; - this.goBasicConfig = newDocLinks.clients.goGettingStarted; - this.goClient = newDocLinks.clients.goOverview; - this.jsAdvancedConfig = newDocLinks.clients.jsAdvancedConfig; - this.jsApiReference = newDocLinks.clients.jsApiReference; - this.jsBasicConfig = newDocLinks.clients.jsBasicConfig; - this.jsClient = newDocLinks.clients.jsIntro; - this.kibanaRunApiInConsole = newDocLinks.console.guide; + this.logStash = newDocLinks.serverlessSearch.integrationsLogstash; + this.beats = newDocLinks.serverlessSearch.integrationsBeats; + this.connectors = newDocLinks.serverlessSearch.integrationsConnectorClient; + this.kibanaFeedback = newDocLinks.kibana.feedback; + this.kibanaRunApiInConsole = newDocLinks.console.serverlessGuide; this.metadata = newDocLinks.security.mappingRoles; - this.phpAdvancedConfig = newDocLinks.clients.phpConfiguration; - this.phpBasicConfig = newDocLinks.clients.phpConnecting; - this.phpClient = newDocLinks.clients.phpOverview; - this.phpBasicConfig = newDocLinks.clients.phpConnecting; - this.pythonAdvancedConfig = newDocLinks.clients.pythonConfig; - this.pythonBasicConfig = newDocLinks.clients.pythonConnecting; - this.pythonClient = newDocLinks.clients.pythonOverview; this.roleDescriptors = newDocLinks.security.mappingRoles; - this.rubyAdvancedConfig = newDocLinks.clients.rubyAdvancedConfig; - this.rubyBasicConfig = newDocLinks.clients.rubyBasicConfig; - this.rubyExamples = newDocLinks.clients.rubyExamples; - this.rubyClient = newDocLinks.clients.rubyOverview; this.securityApis = newDocLinks.apis.securityApis; + + // Client links + this.elasticsearchClients = newDocLinks.serverlessClients.httpApis; + // Go + this.goApiReference = newDocLinks.serverlessClients.goApiReference; + this.goBasicConfig = newDocLinks.serverlessClients.goGettingStarted; + this.goClient = newDocLinks.serverlessClients.goGettingStarted; + // JS + this.jsApiReference = newDocLinks.serverlessClients.jsApiReference; + this.jsBasicConfig = newDocLinks.serverlessClients.jsGettingStarted; + this.jsClient = newDocLinks.serverlessClients.jsGettingStarted; + // PHP + this.phpApiReference = newDocLinks.serverlessClients.phpApiReference; + this.phpBasicConfig = newDocLinks.serverlessClients.phpGettingStarted; + this.phpClient = newDocLinks.serverlessClients.phpGettingStarted; + // Python + this.pythonApiReference = newDocLinks.serverlessClients.pythonGettingStarted; + this.pythonBasicConfig = newDocLinks.clients.pythonConnecting; + this.pythonClient = newDocLinks.serverlessClients.pythonGettingStarted; + // Python + this.rubyBasicConfig = newDocLinks.serverlessClients.rubyGettingStarted; + this.rubyExamples = newDocLinks.serverlessClients.rubyApiReference; + this.rubyClient = newDocLinks.serverlessClients.rubyGettingStarted; + + // Getting Started + this.gettingStartedIngest = newDocLinks.serverlessSearch.gettingStartedIngest; + this.gettingStartedSearch = newDocLinks.serverlessSearch.gettingStartedSearch; + this.gettingStartedExplore = newDocLinks.serverlessSearch.gettingStartedExplore; } } diff --git a/x-pack/plugins/serverless_search/kibana.jsonc b/x-pack/plugins/serverless_search/kibana.jsonc index a8c6b8c3b77ee..d056148e3aa79 100644 --- a/x-pack/plugins/serverless_search/kibana.jsonc +++ b/x-pack/plugins/serverless_search/kibana.jsonc @@ -14,6 +14,7 @@ "dashboard", "devTools", "discover", + "enterpriseSearch", "grokdebugger", "management", "ml", diff --git a/x-pack/plugins/serverless_search/public/application/components/connectors_overview.tsx b/x-pack/plugins/serverless_search/public/application/components/connectors_overview.tsx new file mode 100644 index 0000000000000..97a3b5887389f --- /dev/null +++ b/x-pack/plugins/serverless_search/public/application/components/connectors_overview.tsx @@ -0,0 +1,291 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { + EuiButton, + EuiFlexGroup, + EuiFlexItem, + EuiIcon, + EuiLink, + EuiPageTemplate, + EuiPanel, + EuiText, + EuiTitle, + EuiToolTip, +} from '@elastic/eui'; +import { Connector } from '@kbn/enterprise-search-plugin/common/types/connectors'; +import { i18n } from '@kbn/i18n'; +import { FormattedMessage } from '@kbn/i18n-react'; +import { useQuery } from '@tanstack/react-query'; +import React from 'react'; + +import { ConnectorServerSideDefinition } from '@kbn/enterprise-search-plugin/common/connectors/connectors'; +import { LEARN_MORE_LABEL } from '../../../common/i18n_string'; +import { PLUGIN_ID } from '../../../common'; +import { useKibanaServices } from '../hooks/use_kibana'; + +export const ConnectorsOverview = () => { + const { http } = useKibanaServices(); + + const assetBasePath = http.basePath.prepend(`/plugins/${PLUGIN_ID}/assets/`); + const connectorsPath = assetBasePath + 'connectors.svg'; + + const { data } = useQuery({ + queryKey: ['fetchConnectors'], + queryFn: () => + http.fetch<{ connectors: Connector[] }>('/internal/serverless_search/connectors'), + }); + + const { data: connectorTypes } = useQuery({ + queryKey: ['fetchConnectorTypes'], + queryFn: () => + http.fetch<{ connectors: ConnectorServerSideDefinition[] }>( + '/internal/serverless_search/connector_types' + ), + }); + return ( + <EuiPageTemplate offset={0} grow restrictWidth data-test-subj="svlSearchConnectorsPage"> + <EuiPageTemplate.Header + pageTitle={i18n.translate('xpack.serverlessSearch.connectors.title', { + defaultMessage: 'Connectors', + })} + rightSideItems={[ + <EuiFlexGroup direction="row" alignItems="flexStart"> + <EuiFlexItem> + <EuiFlexGroup + alignItems="center" + gutterSize="xs" + justifyContent="flexEnd" + direction="row" + > + <EuiFlexItem grow={false}> + <EuiIcon + size="s" + type={http.basePath.prepend(`/plugins/${PLUGIN_ID}/assets/github.svg`)} + /> + </EuiFlexItem> + <EuiFlexItem grow={false}> + <EuiText size="s"> + <EuiLink target="_blank" href="https://github.com/elastic/connectors-python"> + {i18n.translate('xpack.serverlessSearch.connectorsPythonLink', { + defaultMessage: 'connectors-python', + })} + </EuiLink> + </EuiText> + </EuiFlexItem> + </EuiFlexGroup> + </EuiFlexItem> + <EuiFlexItem> + <EuiButton fill iconType="plusInCircleFilled"> + {i18n.translate('xpack.serverlessSearch.connectors.createConnector', { + defaultMessage: 'Create connector', + })} + </EuiButton> + </EuiFlexItem> + </EuiFlexGroup>, + ]} + > + <EuiText> + <p> + <FormattedMessage + id="xpack.serverlessSearch.connectors.headerContent" + defaultMessage="Sync third-party data sources to Elasticsearch, by deploying Elastic connectors on your own infrastructure. {learnMoreLink}" + values={{ + learnMoreLink: ( + <EuiLink external target="_blank" href={'TODO TODO'}> + {LEARN_MORE_LABEL} + </EuiLink> + ), + }} + /> + </p> + </EuiText> + </EuiPageTemplate.Header> + {(data?.connectors || []).length > 0 ? ( + <></> + ) : ( + <EuiPageTemplate.Section restrictWidth color="subdued"> + <EuiFlexGroup alignItems="center" direction="column"> + <EuiFlexItem> + <EuiPanel paddingSize="l" hasShadow={false} hasBorder> + <EuiFlexGroup alignItems="center" justifyContent="center" direction="column"> + <EuiFlexItem> + <EuiIcon size="xxl" type={connectorsPath} /> + </EuiFlexItem> + <EuiFlexItem> + <EuiTitle> + <h2> + {i18n.translate('xpack.serverlessSearch.connectorsEmpty.title', { + defaultMessage: 'Create a connector', + })} + </h2> + </EuiTitle> + </EuiFlexItem> + <EuiFlexItem> + <EuiText> + <p> + {i18n.translate('xpack.serverlessSearch.connectorsEmpty.description', { + defaultMessage: + "To set up and deploy a connector you'll be working between the third-party data source, your terminal, and the Kibana UI. The high level process looks like this:", + })} + </p> + </EuiText> + </EuiFlexItem> + <EuiFlexItem> + <EuiPanel color="subdued"> + <EuiFlexGroup> + <EuiFlexItem> + <EuiFlexGroup + justifyContent="center" + alignItems="center" + direction="column" + > + <EuiFlexItem grow={false}> + <EuiIcon color="primary" size="l" type="documents" /> + </EuiFlexItem> + <EuiFlexItem> + <EuiText> + <p> + {i18n.translate( + 'xpack.serverlessSearch.connectorsEmpty.guideOneDescription', + { + defaultMessage: "Choose a data source you'd like to sync", + } + )} + </p> + </EuiText> + </EuiFlexItem> + </EuiFlexGroup> + </EuiFlexItem> + <EuiFlexItem> + <EuiFlexGroup + justifyContent="center" + alignItems="center" + direction="column" + > + <EuiFlexItem grow={false}> + <EuiIcon color="primary" size="l" type={connectorsPath} /> + </EuiFlexItem> + <EuiFlexItem> + <EuiText> + <p> + <FormattedMessage + id="xpack.serverlessSearch.connectorsEmpty.guideTwoDescription" + defaultMessage="Deploy connector code on your own infrastructure by running from {source}, or using {docker}" + values={{ + source: ( + <EuiLink href="TODO TODO TODO"> + {i18n.translate( + 'xpack.serverlessSearch.connectorsEmpty.sourceLabel', + { defaultMessage: 'source' } + )} + </EuiLink> + ), + docker: ( + <EuiLink href="TODO TODO TODO"> + {i18n.translate( + 'xpack.serverlessSearch.connectorsEmpty.dockerLabel', + { defaultMessage: 'Docker' } + )} + </EuiLink> + ), + }} + /> + </p> + </EuiText> + </EuiFlexItem> + </EuiFlexGroup> + </EuiFlexItem> + <EuiFlexItem> + <EuiFlexGroup + justifyContent="center" + alignItems="center" + direction="column" + > + <EuiFlexItem grow={false}> + <EuiFlexGroup + gutterSize="s" + direction="row" + alignItems="center" + justifyContent="center" + > + <EuiFlexItem> + <EuiIcon color="primary" size="l" type="documents" /> + </EuiFlexItem> + <EuiFlexItem> + <EuiIcon size="m" type="sortRight" /> + </EuiFlexItem> + <EuiFlexItem> + <EuiIcon color="primary" size="l" type={connectorsPath} /> + </EuiFlexItem> + <EuiFlexItem> + <EuiIcon size="m" type="sortRight" /> + </EuiFlexItem> + <EuiFlexItem> + <EuiIcon color="primary" size="l" type="logoElastic" /> + </EuiFlexItem> + </EuiFlexGroup> + </EuiFlexItem> + <EuiFlexItem> + <EuiText> + <p> + {i18n.translate( + 'xpack.serverlessSearch.connectorsEmpty.guideThreeDescription', + { + defaultMessage: + 'Enter access and connection details for your data source and run your first sync', + } + )} + </p> + </EuiText> + </EuiFlexItem> + </EuiFlexGroup> + </EuiFlexItem> + </EuiFlexGroup> + </EuiPanel> + </EuiFlexItem> + <EuiFlexItem> + <EuiButton fill iconType="plusInCircleFilled"> + {i18n.translate('xpack.serverlessSearch.connectorsEmpty.createConnector', { + defaultMessage: 'Create connector', + })} + </EuiButton> + </EuiFlexItem> + </EuiFlexGroup> + </EuiPanel> + </EuiFlexItem> + <EuiFlexItem> + <EuiTitle> + <h3> + {i18n.translate('xpack.serverlessSearch.connectorsEmpty.availableConnectors', { + defaultMessage: 'Available connectors', + })} + </h3> + </EuiTitle> + </EuiFlexItem> + <EuiFlexItem> + <EuiFlexGroup gutterSize="s"> + {connectorTypes?.connectors.map((connectorType) => ( + <EuiFlexItem> + <EuiToolTip content={connectorType.name}> + <EuiIcon + size="l" + title={connectorType.name} + id={connectorType.serviceType} + type={connectorType.iconPath} + /> + </EuiToolTip> + </EuiFlexItem> + ))} + </EuiFlexGroup> + </EuiFlexItem> + </EuiFlexGroup> + </EuiPageTemplate.Section> + )} + </EuiPageTemplate> + ); +}; diff --git a/x-pack/plugins/serverless_search/public/application/components/indexing_api.tsx b/x-pack/plugins/serverless_search/public/application/components/indexing_api.tsx deleted file mode 100644 index 35674a82695b2..0000000000000 --- a/x-pack/plugins/serverless_search/public/application/components/indexing_api.tsx +++ /dev/null @@ -1,259 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import React, { useMemo, useState } from 'react'; - -import { - EuiCallOut, - EuiComboBox, - EuiComboBoxOptionOption, - EuiFlexGroup, - EuiFlexItem, - EuiFormRow, - EuiLink, - EuiPageTemplate, - EuiSpacer, - EuiStat, - EuiText, -} from '@elastic/eui'; -import { i18n } from '@kbn/i18n'; -import { FormattedMessage } from '@kbn/i18n-react'; -import { useQuery } from '@tanstack/react-query'; -import { OverviewPanel, LanguageClientPanel, CodeBox } from '@kbn/search-api-panels'; -import type { - LanguageDefinition, - LanguageDefinitionSnippetArguments, -} from '@kbn/search-api-panels'; - -import { PLUGIN_ID } from '../../../common'; -import { IndexData, FetchIndicesResult } from '../../../common/types'; -import { FETCH_INDICES_PATH } from '../routes'; -import { API_KEY_PLACEHOLDER, ELASTICSEARCH_URL_PLACEHOLDER } from '../constants'; -import { useKibanaServices } from '../hooks/use_kibana'; -import { javascriptDefinition } from './languages/javascript'; -import { languageDefinitions } from './languages/languages'; -import { getCodeSnippet, showTryInConsole } from './languages/utils'; - -const NoIndicesContent = () => ( - <> - <EuiSpacer /> - <EuiText> - <FormattedMessage - id="xpack.serverlessSearch.content.indexingApi.clientPanel.noIndices.helpText" - defaultMessage="Don't have an index yet? {getStartedLink}" - values={{ - getStartedLink: ( - <EuiLink href="#" external> - {i18n.translate( - 'xpack.serverlessSearch.content.indexingApi.clientPanel.noIndices.getStartedLink', - { defaultMessage: 'Get started' } - )} - </EuiLink> - ), - }} - /> - </EuiText> - </> -); - -interface IndicesContentProps { - indices: IndexData[]; - isLoading: boolean; - onChange: (selectedOptions: Array<EuiComboBoxOptionOption<IndexData>>) => void; - selectedIndex?: IndexData; - setSearchValue: (searchValue?: string) => void; -} -const IndicesContent = ({ - indices, - isLoading, - onChange, - selectedIndex, - setSearchValue, -}: IndicesContentProps) => { - const toOption = (index: IndexData) => ({ label: index.name, value: index }); - const options: Array<EuiComboBoxOptionOption<IndexData>> = indices.map(toOption); - return ( - <> - <EuiSpacer /> - <EuiFlexGroup> - <EuiFlexItem> - <EuiFormRow - fullWidth - label={i18n.translate( - 'xpack.serverlessSearch.content.indexingApi.index.comboBox.title', - { defaultMessage: 'Index' } - )} - > - <EuiComboBox - async - fullWidth - isLoading={isLoading} - singleSelection={{ asPlainText: true }} - onChange={onChange} - onSearchChange={setSearchValue} - options={options} - selectedOptions={selectedIndex ? [toOption(selectedIndex)] : undefined} - /> - </EuiFormRow> - </EuiFlexItem> - <EuiFlexItem grow={false}> - <EuiStat - // TODO: format count based on locale - title={selectedIndex ? selectedIndex.count.toLocaleString() : '--'} - titleColor="primary" - description={i18n.translate( - 'xpack.serverlessSearch.content.indexingApi.index.documentCount.description', - { defaultMessage: 'Documents' } - )} - /> - </EuiFlexItem> - </EuiFlexGroup> - </> - ); -}; - -export const ElasticsearchIndexingApi = () => { - const { cloud, http, share } = useKibanaServices(); - const [selectedLanguage, setSelectedLanguage] = - useState<LanguageDefinition>(javascriptDefinition); - const [indexSearchQuery, setIndexSearchQuery] = useState<string | undefined>(undefined); - const [selectedIndex, setSelectedIndex] = useState<IndexData | undefined>(undefined); - const elasticsearchURL = useMemo(() => { - return cloud?.elasticsearchUrl ?? ELASTICSEARCH_URL_PLACEHOLDER; - }, [cloud]); - const { data, isLoading, isError } = useQuery({ - queryKey: ['indices', { searchQuery: indexSearchQuery }], - queryFn: async () => { - const query = { - search_query: indexSearchQuery || null, - }; - const result = await http.get<FetchIndicesResult>(FETCH_INDICES_PATH, { query }); - return result; - }, - }); - - const codeSnippetArguments: LanguageDefinitionSnippetArguments = { - url: elasticsearchURL, - apiKey: API_KEY_PLACEHOLDER, - indexName: selectedIndex?.name, - }; - const showNoIndices = !isLoading && data?.indices?.length === 0 && indexSearchQuery === undefined; - - return ( - <EuiPageTemplate offset={0} grow restrictWidth data-test-subj="svlSearchIndexingApiPage"> - <EuiPageTemplate.Header - pageTitle={i18n.translate('xpack.serverlessSearch.content.indexingApi.header.title', { - defaultMessage: 'Indexing API', - })} - description={i18n.translate( - 'xpack.serverlessSearch.content.indexingApi.header.description', - { - defaultMessage: - 'Add data to your data stream or index to make it searchable. Choose an ingestion method that fits your application and workflow.', - } - )} - bottomBorder="extended" - /> - {isError && ( - <EuiPageTemplate.Section> - <EuiCallOut - color="danger" - title={i18n.translate( - 'xpack.serverlessSearch.content.indexingApi.fetchIndices.error.title', - { defaultMessage: 'Error fetching indices' } - )} - /> - </EuiPageTemplate.Section> - )} - <EuiPageTemplate.Section color="subdued" bottomBorder="extended"> - <OverviewPanel - title={i18n.translate('xpack.serverlessSearch.content.indexingApi.clientPanel.title', { - defaultMessage: 'Ingest data for the first time', - })} - description={i18n.translate( - 'xpack.serverlessSearch.content.indexingApi.clientPanel.description', - { defaultMessage: 'Adding documents to your already created index using the API' } - )} - leftPanelContent={ - <> - <EuiFlexGroup direction="column"> - <EuiFlexItem> - <EuiText size="s"> - <strong> - {i18n.translate( - 'xpack.serverlessSearch.content.indexingApi.clientPanel.selectClient.heading', - { - defaultMessage: 'Choose one', - } - )} - </strong> - </EuiText> - </EuiFlexItem> - </EuiFlexGroup> - <EuiSpacer size="s" /> - <EuiFlexGroup gutterSize="xs" direction="row"> - {languageDefinitions.map((language, index) => ( - <EuiFlexItem key={`panelItem.${index}`}> - <LanguageClientPanel - language={language} - setSelectedLanguage={setSelectedLanguage} - isSelectedLanguage={selectedLanguage === language} - http={http} - pluginId={PLUGIN_ID} - /> - </EuiFlexItem> - ))} - </EuiFlexGroup> - <EuiSpacer /> - <CodeBox - languages={languageDefinitions} - codeSnippet={getCodeSnippet( - selectedLanguage, - 'ingestDataIndex', - codeSnippetArguments - )} - selectedLanguage={selectedLanguage} - setSelectedLanguage={setSelectedLanguage} - http={http} - pluginId={PLUGIN_ID} - sharePlugin={share} - showTryInConsole={showTryInConsole('ingestDataIndex')} - /> - </> - } - links={ - showNoIndices - ? undefined - : [ - { - label: i18n.translate( - 'xpack.serverlessSearch.content.indexingApi.ingestDocsLink', - { defaultMessage: 'Ingestion documentation' } - ), - href: '#', // TODO: get doc links ? - }, - ] - } - > - {showNoIndices ? ( - <NoIndicesContent /> - ) : ( - <IndicesContent - isLoading={isLoading} - indices={data?.indices ?? []} - onChange={(options) => { - setSelectedIndex(options?.[0]?.value); - }} - setSearchValue={setIndexSearchQuery} - selectedIndex={selectedIndex} - /> - )} - </OverviewPanel> - </EuiPageTemplate.Section> - </EuiPageTemplate> - ); -}; diff --git a/x-pack/plugins/serverless_search/public/application/components/languages/console.ts b/x-pack/plugins/serverless_search/public/application/components/languages/console.ts deleted file mode 100644 index d234262d93f13..0000000000000 --- a/x-pack/plugins/serverless_search/public/application/components/languages/console.ts +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { LanguageDefinition } from '@kbn/search-api-panels'; -import { INDEX_NAME_PLACEHOLDER } from '../../constants'; - -export const consoleDefinition: Partial<LanguageDefinition> = { - buildSearchQuery: `POST /books/_search?pretty -{ - "query": { - "query_string": { - "query": "snow" - } - } -}`, - ingestData: `POST _bulk?pretty -{ "index" : { "_index" : "books" } } -{"name": "Snow Crash", "author": "Neal Stephenson", "release_date": "1992-06-01", "page_count": 470} -{ "index" : { "_index" : "books" } } -{"name": "Revelation Space", "author": "Alastair Reynolds", "release_date": "2000-03-15", "page_count": 585} -{ "index" : { "_index" : "books" } } -{"name": "1984", "author": "George Orwell", "release_date": "1985-06-01", "page_count": 328} -{ "index" : { "_index" : "books" } } -{"name": "Fahrenheit 451", "author": "Ray Bradbury", "release_date": "1953-10-15", "page_count": 227} -{ "index" : { "_index" : "books" } } -{"name": "Brave New World", "author": "Aldous Huxley", "release_date": "1932-06-01", "page_count": 268} -{ "index" : { "_index" : "books" } } -{"name": "The Handmaid's Tale", "author": "Margaret Atwood", "release_date": "1985-06-01", "page_count": 311}`, - ingestDataIndex: ({ indexName }) => `POST _bulk?pretty - { "index" : { "_index" : "${indexName ?? INDEX_NAME_PLACEHOLDER}" } } - {"name": "foo", "title": "bar"} -`, -}; diff --git a/x-pack/plugins/serverless_search/public/application/components/languages/curl.ts b/x-pack/plugins/serverless_search/public/application/components/languages/curl.ts index a0ed0f89723c9..b744c1884ba49 100644 --- a/x-pack/plugins/serverless_search/public/application/components/languages/curl.ts +++ b/x-pack/plugins/serverless_search/public/application/components/languages/curl.ts @@ -24,6 +24,12 @@ export const curlDefinition: LanguageDefinition = { configureClient: ({ apiKey, url }) => `export ES_URL="${url}" export API_KEY="${apiKey}"`, docLink: docLinks.apiIntro, + github: { + link: 'https://github.com/curl/curl', + label: i18n.translate('xpack.serverlessSearch.languages.cURL.githubLabel', { + defaultMessage: 'curl', + }), + }, iconType: 'curl.svg', id: Languages.CURL, ingestData: `curl -X POST "\$\{ES_URL\}/_bulk?pretty" \\ diff --git a/x-pack/plugins/serverless_search/public/application/components/languages/go.ts b/x-pack/plugins/serverless_search/public/application/components/languages/go.ts index 00e70f7ce7a99..0ef4dc483ad53 100644 --- a/x-pack/plugins/serverless_search/public/application/components/languages/go.ts +++ b/x-pack/plugins/serverless_search/public/application/components/languages/go.ts @@ -10,7 +10,7 @@ import { Languages, LanguageDefinition } from '@kbn/search-api-panels'; import { docLinks } from '../../../../common/doc_links'; export const goDefinition: LanguageDefinition = { - advancedConfig: docLinks.goAdvancedConfig, + apiReference: docLinks.goApiReference, basicConfig: docLinks.goBasicConfig, buildSearchQuery: `searchResp, err := es.Search(). Index("books"). @@ -38,6 +38,12 @@ func main() { } }`, docLink: docLinks.goClient, + github: { + link: 'https://github.com/elastic/elasticsearch-serverless-go', + label: i18n.translate('xpack.serverlessSearch.languages.go.githubLabel', { + defaultMessage: 'elasticsearch-serverless-go', + }), + }, iconType: 'go.svg', id: Languages.GO, ingestData: `ingestResult, err := es.Bulk(). diff --git a/x-pack/plugins/serverless_search/public/application/components/languages/javascript.ts b/x-pack/plugins/serverless_search/public/application/components/languages/javascript.ts index bac5452ca5105..418416e6d5394 100644 --- a/x-pack/plugins/serverless_search/public/application/components/languages/javascript.ts +++ b/x-pack/plugins/serverless_search/public/application/components/languages/javascript.ts @@ -10,7 +10,6 @@ import { i18n } from '@kbn/i18n'; import { docLinks } from '../../../../common/doc_links'; export const javascriptDefinition: LanguageDefinition = { - advancedConfig: docLinks.jsAdvancedConfig, apiReference: docLinks.jsApiReference, basicConfig: docLinks.jsBasicConfig, buildSearchQuery: `// Let's search! @@ -29,6 +28,12 @@ auth: { } });`, docLink: docLinks.jsClient, + github: { + link: 'https://github.com/elastic/elasticsearch-serverless-js', + label: i18n.translate('xpack.serverlessSearch.languages.javascript.githubLabel', { + defaultMessage: 'elasticsearch-serverless', + }), + }, iconType: 'javascript.svg', id: Languages.JAVASCRIPT, ingestData: `// Sample flight data diff --git a/x-pack/plugins/serverless_search/public/application/components/languages/php.ts b/x-pack/plugins/serverless_search/public/application/components/languages/php.ts index a13a1ea9b7177..e31f02e025954 100644 --- a/x-pack/plugins/serverless_search/public/application/components/languages/php.ts +++ b/x-pack/plugins/serverless_search/public/application/components/languages/php.ts @@ -11,7 +11,7 @@ import { docLinks } from '../../../../common/doc_links'; import { INDEX_NAME_PLACEHOLDER } from '../../constants'; export const phpDefinition: LanguageDefinition = { - advancedConfig: docLinks.phpAdvancedConfig, + apiReference: docLinks.phpApiReference, basicConfig: docLinks.phpBasicConfig, buildSearchQuery: `$params = [ 'index' => 'books', @@ -27,6 +27,12 @@ print_r($response->asArray());`, ->setApiKey('${apiKey}') ->build();`, docLink: docLinks.phpClient, + github: { + link: 'https://github.com/elastic/elasticsearch-serverless-php', + label: i18n.translate('xpack.serverlessSearch.languages.php.githubLink', { + defaultMessage: 'elasticsearch-serverless-php', + }), + }, iconType: 'php.svg', id: Languages.PHP, ingestData: `$params = [ diff --git a/x-pack/plugins/serverless_search/public/application/components/languages/python.ts b/x-pack/plugins/serverless_search/public/application/components/languages/python.ts index 4fa3da0323868..ac4ab3d7792b4 100644 --- a/x-pack/plugins/serverless_search/public/application/components/languages/python.ts +++ b/x-pack/plugins/serverless_search/public/application/components/languages/python.ts @@ -11,7 +11,7 @@ import { docLinks } from '../../../../common/doc_links'; import { INDEX_NAME_PLACEHOLDER } from '../../constants'; export const pythonDefinition: LanguageDefinition = { - advancedConfig: docLinks.pythonAdvancedConfig, + apiReference: docLinks.pythonApiReference, basicConfig: docLinks.pythonBasicConfig, buildSearchQuery: `client.search(index="books", q="snow")`, configureClient: ({ url, apiKey }) => `from elasticsearch import Elasticsearch @@ -21,6 +21,12 @@ client = Elasticsearch( api_key="${apiKey}" )`, docLink: docLinks.pythonClient, + github: { + link: 'https://github.com/elastic/elasticsearch-serverless-python', + label: i18n.translate('xpack.serverlessSearch.languages.python.githubLabel', { + defaultMessage: 'elasticsearch-serverless-python', + }), + }, iconType: 'python.svg', id: Languages.PYTHON, ingestData: `documents = [ diff --git a/x-pack/plugins/serverless_search/public/application/components/languages/ruby.ts b/x-pack/plugins/serverless_search/public/application/components/languages/ruby.ts index 4339d5f8261cc..c9562f76a3148 100644 --- a/x-pack/plugins/serverless_search/public/application/components/languages/ruby.ts +++ b/x-pack/plugins/serverless_search/public/application/components/languages/ruby.ts @@ -11,7 +11,6 @@ import { docLinks } from '../../../../common/doc_links'; import { INDEX_NAME_PLACEHOLDER } from '../../constants'; export const rubyDefinition: LanguageDefinition = { - advancedConfig: docLinks.rubyAdvancedConfig, apiReference: docLinks.rubyExamples, buildSearchQuery: `client.search(index: 'books', q: 'snow')`, configureClient: ({ url, apiKey }) => `client = ElasticsearchServerless::Client.new( @@ -21,6 +20,12 @@ export const rubyDefinition: LanguageDefinition = { `, basicConfig: docLinks.rubyBasicConfig, docLink: docLinks.rubyClient, + github: { + link: 'https://github.com/elastic/elasticsearch-serverless-ruby', + label: i18n.translate('xpack.serverlessSearch.languages.ruby.githubLabel', { + defaultMessage: 'elasticsearch-serverless-ruby', + }), + }, iconType: 'ruby.svg', id: Languages.RUBY, ingestData: `documents = [ diff --git a/x-pack/plugins/serverless_search/public/application/components/languages/utils.ts b/x-pack/plugins/serverless_search/public/application/components/languages/utils.ts deleted file mode 100644 index 84f575ea0cc02..0000000000000 --- a/x-pack/plugins/serverless_search/public/application/components/languages/utils.ts +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { LanguageDefinition, LanguageDefinitionSnippetArguments } from '@kbn/search-api-panels'; -import { consoleDefinition } from './console'; - -export const showTryInConsole = (code: keyof LanguageDefinition) => code in consoleDefinition; - -export const getCodeSnippet = ( - language: Partial<LanguageDefinition>, - key: keyof LanguageDefinition, - args: LanguageDefinitionSnippetArguments -): string => { - const snippetVal = language[key]; - if (snippetVal === undefined) return ''; - if (typeof snippetVal === 'string') return snippetVal; - return snippetVal(args); -}; diff --git a/x-pack/plugins/serverless_search/public/application/components/overview.tsx b/x-pack/plugins/serverless_search/public/application/components/overview.tsx index 79652e78e815e..3d7783ee9a50a 100644 --- a/x-pack/plugins/serverless_search/public/application/components/overview.tsx +++ b/x-pack/plugins/serverless_search/public/application/components/overview.tsx @@ -27,6 +27,8 @@ import { CodeBox, LanguageClientPanel, InstallClientPanel, + getLanguageDefinitionCodeSnippet, + getConsoleRequest, } from '@kbn/search-api-panels'; import React, { useMemo, useState } from 'react'; @@ -34,6 +36,8 @@ import type { LanguageDefinition, LanguageDefinitionSnippetArguments, } from '@kbn/search-api-panels'; +import { useQuery } from '@tanstack/react-query'; +import { Connector } from '@kbn/enterprise-search-plugin/common/types/connectors'; import { docLinks } from '../../../common/doc_links'; import { PLUGIN_ID } from '../../../common'; import { useKibanaServices } from '../hooks/use_kibana'; @@ -42,7 +46,6 @@ import { javascriptDefinition } from './languages/javascript'; import { languageDefinitions } from './languages/languages'; import './overview.scss'; import { ApiKeyPanel } from './api_key/api_key'; -import { getCodeSnippet, showTryInConsole } from './languages/utils'; export const ElasticsearchOverview = () => { const [selectedLanguage, setSelectedLanguage] = @@ -60,6 +63,12 @@ export const ElasticsearchOverview = () => { apiKey: clientApiKey, }; + const { data } = useQuery({ + queryKey: ['fetchConnectors'], + queryFn: () => + http.fetch<{ connectors: Connector[] }>('/internal/serverless_search/connectors'), + }); + return ( <EuiPageTemplate offset={0} grow restrictWidth data-test-subj="svlSearchOverviewPage"> <EuiPageTemplate.Section alignment="top" className="serverlessSearchHeaderSection"> @@ -75,8 +84,7 @@ export const ElasticsearchOverview = () => { language={language} setSelectedLanguage={setSelectedLanguage} isSelectedLanguage={selectedLanguage === language} - http={http} - pluginId={PLUGIN_ID} + assetBasePath={assetBasePath} /> </EuiFlexItem> ))} @@ -85,13 +93,16 @@ export const ElasticsearchOverview = () => { <EuiPageTemplate.Section color="subdued" bottomBorder="extended"> <InstallClientPanel - codeSnippet={getCodeSnippet(selectedLanguage, 'installClient', codeSnippetArguments)} - showTryInConsole={showTryInConsole('installClient')} + codeSnippet={getLanguageDefinitionCodeSnippet( + selectedLanguage, + 'installClient', + codeSnippetArguments + )} + consoleRequest={getConsoleRequest('installClient')} languages={languageDefinitions} language={selectedLanguage} setSelectedLanguage={setSelectedLanguage} - http={http} - pluginId={PLUGIN_ID} + assetBasePath={assetBasePath} application={application} sharePlugin={share} /> @@ -124,16 +135,15 @@ export const ElasticsearchOverview = () => { leftPanelContent={ <CodeBox languages={languageDefinitions} - codeSnippet={getCodeSnippet( + codeSnippet={getLanguageDefinitionCodeSnippet( selectedLanguage, 'configureClient', codeSnippetArguments )} - showTryInConsole={showTryInConsole('configureClient')} + consoleRequest={getConsoleRequest('configureClient')} selectedLanguage={selectedLanguage} setSelectedLanguage={setSelectedLanguage} - http={http} - pluginId={PLUGIN_ID} + assetBasePath={assetBasePath} application={application} sharePlugin={share} /> @@ -152,19 +162,6 @@ export const ElasticsearchOverview = () => { }, ] : []), - ...(selectedLanguage.advancedConfig - ? [ - { - href: selectedLanguage.advancedConfig, - label: i18n.translate( - 'xpack.serverlessSearch.configureClient.advancedConfigLabel', - { - defaultMessage: 'Advanced configuration', - } - ), - }, - ] - : []), ]} title={i18n.translate('xpack.serverlessSearch.configureClient.title', { defaultMessage: 'Configure your client', @@ -180,12 +177,15 @@ export const ElasticsearchOverview = () => { leftPanelContent={ <CodeBox languages={languageDefinitions} - codeSnippet={getCodeSnippet(selectedLanguage, 'testConnection', codeSnippetArguments)} - showTryInConsole={showTryInConsole('testConnection')} + codeSnippet={getLanguageDefinitionCodeSnippet( + selectedLanguage, + 'testConnection', + codeSnippetArguments + )} + consoleRequest={getConsoleRequest('testConnection')} selectedLanguage={selectedLanguage} setSelectedLanguage={setSelectedLanguage} - http={http} - pluginId={PLUGIN_ID} + assetBasePath={assetBasePath} application={application} sharePlugin={share} /> @@ -198,14 +198,17 @@ export const ElasticsearchOverview = () => { </EuiPageTemplate.Section> <EuiPageTemplate.Section color="subdued" bottomBorder="extended"> <IngestData - codeSnippet={getCodeSnippet(selectedLanguage, 'ingestData', codeSnippetArguments)} - showTryInConsole={showTryInConsole('ingestData')} + codeSnippet={getLanguageDefinitionCodeSnippet( + selectedLanguage, + 'ingestData', + codeSnippetArguments + )} + showTryInConsole={getConsoleRequest('ingestData')} languages={languageDefinitions} selectedLanguage={selectedLanguage} setSelectedLanguage={setSelectedLanguage} - http={http} + assetBasePath={assetBasePath} docLinks={docLinks} - pluginId={PLUGIN_ID} application={application} sharePlugin={share} /> @@ -219,16 +222,15 @@ export const ElasticsearchOverview = () => { leftPanelContent={ <CodeBox languages={languageDefinitions} - codeSnippet={getCodeSnippet( + codeSnippet={getLanguageDefinitionCodeSnippet( selectedLanguage, 'buildSearchQuery', codeSnippetArguments )} - showTryInConsole={showTryInConsole('buildSearchQuery')} + consoleRequest={getConsoleRequest('buildSearchQuery')} selectedLanguage={selectedLanguage} setSelectedLanguage={setSelectedLanguage} - http={http} - pluginId={PLUGIN_ID} + assetBasePath={assetBasePath} application={application} sharePlugin={share} /> @@ -360,26 +362,28 @@ export const ElasticsearchOverview = () => { </EuiPageTemplate.Section> <EuiPageTemplate.Section alignment="top" className="serverlessSearchFooter"> <EuiFlexGroup gutterSize="l"> - <EuiFlexItem> - <FooterIcon - // TODO: update with real link - href="https://elastic.co" - imgSrc={`${assetBasePath}invite_users_icon.png`} - title={i18n.translate('xpack.serverlessSearch.footer.inviteUsers.title', { - defaultMessage: 'Invite more users', - })} - /> - </EuiFlexItem> - <EuiFlexItem> - <FooterIcon - // TODO: update with real link - href="https://elastic.co" - imgSrc={`${assetBasePath}billing_icon.png`} - title={i18n.translate('xpack.serverlessSearch.footer.billing.title', { - defaultMessage: 'Billing and usage', - })} - /> - </EuiFlexItem> + {cloud.usersAndRolesUrl && ( + <EuiFlexItem> + <FooterIcon + href={cloud.usersAndRolesUrl} + imgSrc={`${assetBasePath}invite_users_icon.png`} + title={i18n.translate('xpack.serverlessSearch.footer.inviteUsers.title', { + defaultMessage: 'Invite more users', + })} + /> + </EuiFlexItem> + )} + {cloud.billingUrl && ( + <EuiFlexItem> + <FooterIcon + href={cloud.billingUrl} + imgSrc={`${assetBasePath}billing_icon.png`} + title={i18n.translate('xpack.serverlessSearch.footer.billing.title', { + defaultMessage: 'Billing and usage', + })} + /> + </EuiFlexItem> + )} <EuiFlexItem> <FooterIcon href="https://www.elastic.co/community/" @@ -391,8 +395,7 @@ export const ElasticsearchOverview = () => { </EuiFlexItem> <EuiFlexItem> <FooterIcon - // TODO: update with real link - href="https://www.elastic.co/kibana/feedback" + href={docLinks.kibanaFeedback} imgSrc={`${assetBasePath}feedback_icon.png`} title={i18n.translate('xpack.serverlessSearch.footer.feedback.title', { defaultMessage: 'Give feedback', diff --git a/x-pack/plugins/serverless_search/public/application/indexing_api.tsx b/x-pack/plugins/serverless_search/public/application/connectors.tsx similarity index 75% rename from x-pack/plugins/serverless_search/public/application/indexing_api.tsx rename to x-pack/plugins/serverless_search/public/application/connectors.tsx index ee1d11d4223f8..bcdd4d4168e44 100644 --- a/x-pack/plugins/serverless_search/public/application/indexing_api.tsx +++ b/x-pack/plugins/serverless_search/public/application/connectors.tsx @@ -5,12 +5,16 @@ * 2.0. */ -import React from 'react'; -import ReactDOM from 'react-dom'; -import { CoreStart } from '@kbn/core/public'; -import { KibanaContextProvider, KibanaThemeProvider } from '@kbn/kibana-react-plugin/public'; +import { CoreStart } from '@kbn/core-lifecycle-browser'; + import { I18nProvider } from '@kbn/i18n-react'; +import { KibanaContextProvider } from '@kbn/kibana-react-plugin/public'; +import { KibanaThemeProvider } from '@kbn/react-kibana-context-theme'; + import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; + +import ReactDOM from 'react-dom'; +import React from 'react'; import { ReactQueryDevtools } from '@tanstack/react-query-devtools'; import { ServerlessSearchContext } from './hooks/use_kibana'; @@ -19,15 +23,15 @@ export async function renderApp( core: CoreStart, services: ServerlessSearchContext ) { - const { ElasticsearchIndexingApi } = await import('./components/indexing_api'); + const { ConnectorsOverview } = await import('./components/connectors_overview'); const queryClient = new QueryClient(); ReactDOM.render( - <KibanaThemeProvider theme$={core.theme.theme$}> + <KibanaThemeProvider theme={core.theme}> <KibanaContextProvider services={{ ...core, ...services }}> <QueryClientProvider client={queryClient}> <ReactQueryDevtools initialIsOpen={false} /> <I18nProvider> - <ElasticsearchIndexingApi /> + <ConnectorsOverview /> </I18nProvider> </QueryClientProvider> </KibanaContextProvider> diff --git a/x-pack/plugins/serverless_search/public/application/elasticsearch.tsx b/x-pack/plugins/serverless_search/public/application/elasticsearch.tsx index 89e8af942c40a..0f5f08a2104f6 100644 --- a/x-pack/plugins/serverless_search/public/application/elasticsearch.tsx +++ b/x-pack/plugins/serverless_search/public/application/elasticsearch.tsx @@ -8,10 +8,11 @@ import React from 'react'; import ReactDOM from 'react-dom'; import { CoreStart } from '@kbn/core/public'; -import { KibanaContextProvider, KibanaThemeProvider } from '@kbn/kibana-react-plugin/public'; +import { KibanaContextProvider } from '@kbn/kibana-react-plugin/public'; import { I18nProvider } from '@kbn/i18n-react'; import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; import { ReactQueryDevtools } from '@tanstack/react-query-devtools'; +import { KibanaThemeProvider } from '@kbn/react-kibana-context-theme'; import { ServerlessSearchContext } from './hooks/use_kibana'; export async function renderApp( @@ -22,7 +23,7 @@ export async function renderApp( const { ElasticsearchOverview } = await import('./components/overview'); const queryClient = new QueryClient(); ReactDOM.render( - <KibanaThemeProvider theme$={core.theme.theme$}> + <KibanaThemeProvider theme={core.theme}> <KibanaContextProvider services={{ ...core, ...services }}> <QueryClientProvider client={queryClient}> <ReactQueryDevtools initialIsOpen={false} /> diff --git a/x-pack/plugins/serverless_search/public/assets/connectors.svg b/x-pack/plugins/serverless_search/public/assets/connectors.svg new file mode 100644 index 0000000000000..659e9e5494352 --- /dev/null +++ b/x-pack/plugins/serverless_search/public/assets/connectors.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="15 15 70 70" fill="none"><circle cx="50" cy="50" r="35" fill="#0060d5"/><mask id="A" maskUnits="userSpaceOnUse" x="15" y="15" width="70" height="70" mask-type="alpha"><circle cx="50" cy="50" r="35" fill="#0060d5"/></mask><g mask="url(#A)"><path fill-rule="evenodd" d="M49.293 36.565l-2.828-2.828a5 5 0 0 0-7.071 0l-5.657 5.657a5 5 0 0 0 0 7.071l2.828 2.828 12.728-12.728zm-.707-4.95a8 8 0 0 0-11.314 0l-5.657 5.657a8 8 0 0 0 0 11.314l4.95 4.95 16.971-16.971-4.95-4.95zm17.678 21.92l-2.828-2.828-12.728 12.728 2.828 2.828a5 5 0 0 0 7.071 0l5.657-5.657a5 5 0 0 0 0-7.071zm-2.828-7.071l-16.97 16.971 4.95 4.95a8 8 0 0 0 11.314 0l5.657-5.657a8 8 0 0 0 0-11.314l-4.95-4.95z" fill="#fff"/><rect x="23.13" y="21.716" width="20" height="3" rx="1.5" transform="rotate(45 23.13 21.716)" fill="#fff"/><rect x="64.142" y="62.728" width="20" height="3" rx="1.5" transform="rotate(45 64.142 62.728)" fill="#fff"/><rect x="40.101" y="45.757" width="11" height="3" rx="1.5" transform="rotate(45 40.101 45.757)" fill="#fff"/><rect x="47.879" y="37.979" width="11" height="3" rx="1.5" transform="rotate(45 47.879 37.979)" fill="#fff"/></g></svg> \ No newline at end of file diff --git a/x-pack/plugins/serverless_search/public/layout/nav.tsx b/x-pack/plugins/serverless_search/public/layout/nav.tsx index 568b3e8ca5cdf..65eb1787a07a9 100644 --- a/x-pack/plugins/serverless_search/public/layout/nav.tsx +++ b/x-pack/plugins/serverless_search/public/layout/nav.tsx @@ -72,6 +72,12 @@ const navigationTree: NavigationTreeDefinition = { defaultMessage: 'Alerts', }), }, + { + link: 'serverlessConnectors', + title: i18n.translate('xpack.serverlessSearch.nav.connectors', { + defaultMessage: 'Connectors', + }), + }, ], }, { @@ -92,13 +98,6 @@ const navigationTree: NavigationTreeDefinition = { }), link: 'management:ingest_pipelines', }, - { - id: 'content_indexing_api', - link: 'serverlessIndexingApi', - title: i18n.translate('xpack.serverlessSearch.nav.content.indexingApi', { - defaultMessage: 'Indexing API', - }), - }, ], }, { diff --git a/x-pack/plugins/serverless_search/public/plugin.ts b/x-pack/plugins/serverless_search/public/plugin.ts index b4914b710bafa..dfe9cbbc5165c 100644 --- a/x-pack/plugins/serverless_search/public/plugin.ts +++ b/x-pack/plugins/serverless_search/public/plugin.ts @@ -47,14 +47,15 @@ export class ServerlessSearchPlugin return await renderApp(element, coreStart, { userProfile, ...services }); }, }); + core.application.register({ - id: 'serverlessIndexingApi', - title: i18n.translate('xpack.serverlessSearch.app.indexingApi.title', { - defaultMessage: 'Indexing API', + id: 'serverlessConnectors', + title: i18n.translate('xpack.serverlessSearch.app.connectors.title', { + defaultMessage: 'Connectors', }), - appRoute: '/app/indexing_api', + appRoute: '/app/connectors', async mount({ element }: AppMountParameters) { - const { renderApp } = await import('./application/indexing_api'); + const { renderApp } = await import('./application/connectors'); const [coreStart, services] = await core.getStartServices(); const { security } = services; docLinks.setDocLinks(coreStart.docLinks.links); @@ -64,6 +65,7 @@ export class ServerlessSearchPlugin return await renderApp(element, coreStart, { userProfile, ...services }); }, }); + return {}; } diff --git a/x-pack/plugins/serverless_search/server/plugin.ts b/x-pack/plugins/serverless_search/server/plugin.ts index d57752e40068c..2798a4333d35c 100644 --- a/x-pack/plugins/serverless_search/server/plugin.ts +++ b/x-pack/plugins/serverless_search/server/plugin.ts @@ -13,6 +13,7 @@ import type { CoreSetup, } from '@kbn/core/server'; import type { SecurityPluginStart } from '@kbn/security-plugin/server'; +import { EnterpriseSearchPluginStart } from '@kbn/enterprise-search-plugin/server'; import { registerApiKeyRoutes } from './routes/api_key_routes'; import { registerIndicesRoutes } from './routes/indices_routes'; @@ -23,10 +24,12 @@ import type { SetupDependencies, StartDependencies, } from './types'; +import { registerConnectorsRoutes } from './routes/connectors_routes'; export interface RouteDependencies { logger: Logger; router: IRouter; + search: EnterpriseSearchPluginStart; security: SecurityPluginStart; } @@ -43,6 +46,7 @@ export class ServerlessSearchPlugin private readonly config: ServerlessSearchConfig; private readonly logger: Logger; private security?: SecurityPluginStart; + private enterpriseSearch?: EnterpriseSearchPluginStart; constructor(initializerContext: PluginInitializerContext) { this.config = initializerContext.config.get<ServerlessSearchConfig>(); @@ -54,11 +58,18 @@ export class ServerlessSearchPlugin pluginsSetup: SetupDependencies ) { const router = http.createRouter(); - getStartServices().then(([, { security }]) => { + getStartServices().then(([, { enterpriseSearch, security }]) => { this.security = security; - const dependencies = { logger: this.logger, router, security: this.security }; + this.enterpriseSearch = enterpriseSearch; + const dependencies = { + logger: this.logger, + router, + search: this.enterpriseSearch, + security: this.security, + }; registerApiKeyRoutes(dependencies); + registerConnectorsRoutes(dependencies); registerIndicesRoutes(dependencies); }); diff --git a/x-pack/plugins/serverless_search/server/routes/connectors_routes.ts b/x-pack/plugins/serverless_search/server/routes/connectors_routes.ts new file mode 100644 index 0000000000000..c74c18f6d7414 --- /dev/null +++ b/x-pack/plugins/serverless_search/server/routes/connectors_routes.ts @@ -0,0 +1,44 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { RouteDependencies } from '../plugin'; + +export const registerConnectorsRoutes = ({ router, search, security }: RouteDependencies) => { + router.get( + { + path: '/internal/serverless_search/connectors', + validate: {}, + }, + async (context, request, response) => { + const connectors = await search.connectorsService.getConnectors(request); + + return response.ok({ + body: { + connectors, + }, + headers: { 'content-type': 'application/json' }, + }); + } + ); + + router.get( + { + path: '/internal/serverless_search/connector_types', + validate: {}, + }, + async (context, request, response) => { + const connectors = await search.connectorsService.getConnectorTypes(); + + return response.ok({ + body: { + connectors, + }, + headers: { 'content-type': 'application/json' }, + }); + } + ); +}; diff --git a/x-pack/plugins/serverless_search/server/types.ts b/x-pack/plugins/serverless_search/server/types.ts index 8e8f7f15a8124..38100d36f330e 100644 --- a/x-pack/plugins/serverless_search/server/types.ts +++ b/x-pack/plugins/serverless_search/server/types.ts @@ -6,6 +6,7 @@ */ import type { SecurityPluginStart } from '@kbn/security-plugin/server'; +import type { EnterpriseSearchPluginStart } from '@kbn/enterprise-search-plugin/server'; import type { MlPluginSetup } from '@kbn/ml-plugin/server'; // eslint-disable-next-line @typescript-eslint/no-empty-interface @@ -14,6 +15,7 @@ export interface ServerlessSearchPluginSetup {} export interface ServerlessSearchPluginStart {} export interface StartDependencies { + enterpriseSearch: EnterpriseSearchPluginStart; security: SecurityPluginStart; } export interface SetupDependencies { diff --git a/x-pack/plugins/serverless_search/tsconfig.json b/x-pack/plugins/serverless_search/tsconfig.json index 5e1624175f763..1187c90cd1a79 100644 --- a/x-pack/plugins/serverless_search/tsconfig.json +++ b/x-pack/plugins/serverless_search/tsconfig.json @@ -17,6 +17,7 @@ "kbn_references": [ "@kbn/core", "@kbn/config-schema", + "@kbn/enterprise-search-plugin", "@kbn/management-plugin", "@kbn/shared-ux-chrome-navigation", "@kbn/doc-links", @@ -31,5 +32,7 @@ "@kbn/management-cards-navigation", "@kbn/core-elasticsearch-server", "@kbn/search-api-panels", + "@kbn/core-lifecycle-browser", + "@kbn/react-kibana-context-theme", ] } diff --git a/x-pack/plugins/session_view/kibana.jsonc b/x-pack/plugins/session_view/kibana.jsonc index a591b2d92676a..d247f924256bb 100644 --- a/x-pack/plugins/session_view/kibana.jsonc +++ b/x-pack/plugins/session_view/kibana.jsonc @@ -1,7 +1,7 @@ { "type": "plugin", "id": "@kbn/session-view-plugin", - "owner": "@elastic/sec-cloudnative-integrations", + "owner": "@elastic/kibana-cloud-security-posture", "plugin": { "id": "sessionView", "server": true, diff --git a/x-pack/plugins/spaces/server/plugin.ts b/x-pack/plugins/spaces/server/plugin.ts index cb8b42f343baa..893d3db22d709 100644 --- a/x-pack/plugins/spaces/server/plugin.ts +++ b/x-pack/plugins/spaces/server/plugin.ts @@ -103,7 +103,7 @@ export class SpacesPlugin private defaultSpaceService?: DefaultSpaceService; - constructor(initializerContext: PluginInitializerContext) { + constructor(private readonly initializerContext: PluginInitializerContext) { this.config$ = initializerContext.config.create<ConfigType>(); this.log = initializerContext.logger.get(); this.spacesService = new SpacesService(); @@ -148,18 +148,21 @@ export class SpacesPlugin logger: this.log, }); - const externalRouter = core.http.createRouter<SpacesRequestHandlerContext>(); - initExternalSpacesApi({ - externalRouter, - log: this.log, - getStartServices: core.getStartServices, - getSpacesService, - usageStatsServicePromise, - }); + const router = core.http.createRouter<SpacesRequestHandlerContext>(); + + initExternalSpacesApi( + { + router, + log: this.log, + getStartServices: core.getStartServices, + getSpacesService, + usageStatsServicePromise, + }, + this.initializerContext.env.packageInfo.buildFlavor + ); - const internalRouter = core.http.createRouter<SpacesRequestHandlerContext>(); initInternalSpacesApi({ - internalRouter, + router, getSpacesService, }); diff --git a/x-pack/plugins/spaces/server/routes/api/external/copy_to_space.test.ts b/x-pack/plugins/spaces/server/routes/api/external/copy_to_space.test.ts index 4018cfa11b7b7..7722316799076 100644 --- a/x-pack/plugins/spaces/server/routes/api/external/copy_to_space.test.ts +++ b/x-pack/plugins/spaces/server/routes/api/external/copy_to_space.test.ts @@ -80,7 +80,7 @@ describe('copy to space', () => { }); initCopyToSpacesApi({ - externalRouter: router, + router, getStartServices: async () => [coreStart, {}, {}], log, getSpacesService: () => spacesServiceStart, diff --git a/x-pack/plugins/spaces/server/routes/api/external/copy_to_space.ts b/x-pack/plugins/spaces/server/routes/api/external/copy_to_space.ts index 7faf03ea60b57..0c866de5bde66 100644 --- a/x-pack/plugins/spaces/server/routes/api/external/copy_to_space.ts +++ b/x-pack/plugins/spaces/server/routes/api/external/copy_to_space.ts @@ -24,10 +24,10 @@ const areObjectsUnique = (objects: SavedObjectIdentifier[]) => _.uniqBy(objects, (o: SavedObjectIdentifier) => `${o.type}:${o.id}`).length === objects.length; export function initCopyToSpacesApi(deps: ExternalRouteDeps) { - const { externalRouter, getSpacesService, usageStatsServicePromise, getStartServices } = deps; + const { router, getSpacesService, usageStatsServicePromise, getStartServices } = deps; const usageStatsClientPromise = usageStatsServicePromise.then(({ getClient }) => getClient()); - externalRouter.post( + router.post( { path: '/api/spaces/_copy_saved_objects', options: { @@ -137,7 +137,7 @@ export function initCopyToSpacesApi(deps: ExternalRouteDeps) { }) ); - externalRouter.post( + router.post( { path: '/api/spaces/_resolve_copy_saved_objects_errors', options: { diff --git a/x-pack/plugins/spaces/server/routes/api/external/delete.test.ts b/x-pack/plugins/spaces/server/routes/api/external/delete.test.ts index 02792389424db..09ed757a5df74 100644 --- a/x-pack/plugins/spaces/server/routes/api/external/delete.test.ts +++ b/x-pack/plugins/spaces/server/routes/api/external/delete.test.ts @@ -62,7 +62,7 @@ describe('Spaces Public API', () => { }); initDeleteSpacesApi({ - externalRouter: router, + router, getStartServices: async () => [coreStart, {}, {}], log, getSpacesService: () => spacesServiceStart, diff --git a/x-pack/plugins/spaces/server/routes/api/external/delete.ts b/x-pack/plugins/spaces/server/routes/api/external/delete.ts index b2f0d71d34a21..63679f49847b7 100644 --- a/x-pack/plugins/spaces/server/routes/api/external/delete.ts +++ b/x-pack/plugins/spaces/server/routes/api/external/delete.ts @@ -15,9 +15,9 @@ import { wrapError } from '../../../lib/errors'; import { createLicensedRouteHandler } from '../../lib'; export function initDeleteSpacesApi(deps: ExternalRouteDeps) { - const { externalRouter, log, getSpacesService } = deps; + const { router, log, getSpacesService } = deps; - externalRouter.delete( + router.delete( { path: '/api/spaces/space/{id}', validate: { diff --git a/x-pack/plugins/spaces/server/routes/api/external/disable_legacy_url_aliases.test.ts b/x-pack/plugins/spaces/server/routes/api/external/disable_legacy_url_aliases.test.ts index 6af58c124be08..ed7c403182ab5 100644 --- a/x-pack/plugins/spaces/server/routes/api/external/disable_legacy_url_aliases.test.ts +++ b/x-pack/plugins/spaces/server/routes/api/external/disable_legacy_url_aliases.test.ts @@ -65,7 +65,7 @@ describe('_disable_legacy_url_aliases', () => { }); initDisableLegacyUrlAliasesApi({ - externalRouter: router, + router, getStartServices: async () => [coreStart, {}, {}], log, getSpacesService: () => spacesServiceStart, diff --git a/x-pack/plugins/spaces/server/routes/api/external/disable_legacy_url_aliases.ts b/x-pack/plugins/spaces/server/routes/api/external/disable_legacy_url_aliases.ts index ff523ea99c06b..725d0c87612fb 100644 --- a/x-pack/plugins/spaces/server/routes/api/external/disable_legacy_url_aliases.ts +++ b/x-pack/plugins/spaces/server/routes/api/external/disable_legacy_url_aliases.ts @@ -12,10 +12,10 @@ import { wrapError } from '../../../lib/errors'; import { createLicensedRouteHandler } from '../../lib'; export function initDisableLegacyUrlAliasesApi(deps: ExternalRouteDeps) { - const { externalRouter, getSpacesService, usageStatsServicePromise } = deps; + const { router, getSpacesService, usageStatsServicePromise } = deps; const usageStatsClientPromise = usageStatsServicePromise.then(({ getClient }) => getClient()); - externalRouter.post( + router.post( { path: '/api/spaces/_disable_legacy_url_aliases', validate: { diff --git a/x-pack/plugins/spaces/server/routes/api/external/get.test.ts b/x-pack/plugins/spaces/server/routes/api/external/get.test.ts index 43ac45ec3c4c5..34c1ed01e0ce4 100644 --- a/x-pack/plugins/spaces/server/routes/api/external/get.test.ts +++ b/x-pack/plugins/spaces/server/routes/api/external/get.test.ts @@ -61,7 +61,7 @@ describe('GET space', () => { }); initGetSpaceApi({ - externalRouter: router, + router, getStartServices: async () => [coreStart, {}, {}], log, getSpacesService: () => spacesServiceStart, diff --git a/x-pack/plugins/spaces/server/routes/api/external/get.ts b/x-pack/plugins/spaces/server/routes/api/external/get.ts index a26cfe0211d16..ce89aac5fe186 100644 --- a/x-pack/plugins/spaces/server/routes/api/external/get.ts +++ b/x-pack/plugins/spaces/server/routes/api/external/get.ts @@ -13,9 +13,9 @@ import { wrapError } from '../../../lib/errors'; import { createLicensedRouteHandler } from '../../lib'; export function initGetSpaceApi(deps: ExternalRouteDeps) { - const { externalRouter, getSpacesService } = deps; + const { router, getSpacesService } = deps; - externalRouter.get( + router.get( { path: '/api/spaces/space/{id}', validate: { diff --git a/x-pack/plugins/spaces/server/routes/api/external/get_all.test.ts b/x-pack/plugins/spaces/server/routes/api/external/get_all.test.ts index 8fa87bf5ffa42..93eab7a52b81e 100644 --- a/x-pack/plugins/spaces/server/routes/api/external/get_all.test.ts +++ b/x-pack/plugins/spaces/server/routes/api/external/get_all.test.ts @@ -62,7 +62,7 @@ describe('GET /spaces/space', () => { }); initGetAllSpacesApi({ - externalRouter: router, + router, getStartServices: async () => [coreStart, {}, {}], log, getSpacesService: () => spacesServiceStart, diff --git a/x-pack/plugins/spaces/server/routes/api/external/get_all.ts b/x-pack/plugins/spaces/server/routes/api/external/get_all.ts index 06d629a194560..c1dc24caf151e 100644 --- a/x-pack/plugins/spaces/server/routes/api/external/get_all.ts +++ b/x-pack/plugins/spaces/server/routes/api/external/get_all.ts @@ -13,9 +13,9 @@ import { wrapError } from '../../../lib/errors'; import { createLicensedRouteHandler } from '../../lib'; export function initGetAllSpacesApi(deps: ExternalRouteDeps) { - const { externalRouter, log, getSpacesService } = deps; + const { router, log, getSpacesService } = deps; - externalRouter.get( + router.get( { path: '/api/spaces/space', validate: { diff --git a/x-pack/plugins/spaces/server/routes/api/external/get_shareable_references.test.ts b/x-pack/plugins/spaces/server/routes/api/external/get_shareable_references.test.ts index daa957c04d11f..c9ea0d71c11b7 100644 --- a/x-pack/plugins/spaces/server/routes/api/external/get_shareable_references.test.ts +++ b/x-pack/plugins/spaces/server/routes/api/external/get_shareable_references.test.ts @@ -61,7 +61,7 @@ describe('get shareable references', () => { spacesClientService: clientServiceStart, }); initGetShareableReferencesApi({ - externalRouter: router, + router, getStartServices: async () => [coreStart, {}, {}], log, getSpacesService: () => spacesServiceStart, diff --git a/x-pack/plugins/spaces/server/routes/api/external/get_shareable_references.ts b/x-pack/plugins/spaces/server/routes/api/external/get_shareable_references.ts index ec5b0ce82ece4..f9b18961fae59 100644 --- a/x-pack/plugins/spaces/server/routes/api/external/get_shareable_references.ts +++ b/x-pack/plugins/spaces/server/routes/api/external/get_shareable_references.ts @@ -12,9 +12,9 @@ import { wrapError } from '../../../lib/errors'; import { createLicensedRouteHandler } from '../../lib'; export function initGetShareableReferencesApi(deps: ExternalRouteDeps) { - const { externalRouter, getStartServices } = deps; + const { router, getStartServices } = deps; - externalRouter.post( + router.post( { path: '/api/spaces/_get_shareable_references', validate: { diff --git a/x-pack/plugins/spaces/server/routes/api/external/index.ts b/x-pack/plugins/spaces/server/routes/api/external/index.ts index 8716f63a5657f..290807f9b5f4d 100644 --- a/x-pack/plugins/spaces/server/routes/api/external/index.ts +++ b/x-pack/plugins/spaces/server/routes/api/external/index.ts @@ -5,6 +5,7 @@ * 2.0. */ +import type { BuildFlavor } from '@kbn/config/src/types'; import type { CoreSetup, Logger } from '@kbn/core/server'; import { initCopyToSpacesApi } from './copy_to_space'; @@ -21,21 +22,28 @@ import type { SpacesRouter } from '../../../types'; import type { UsageStatsServiceSetup } from '../../../usage_stats'; export interface ExternalRouteDeps { - externalRouter: SpacesRouter; + router: SpacesRouter; getStartServices: CoreSetup['getStartServices']; getSpacesService: () => SpacesServiceStart; usageStatsServicePromise: Promise<UsageStatsServiceSetup>; log: Logger; } -export function initExternalSpacesApi(deps: ExternalRouteDeps) { - initDeleteSpacesApi(deps); +export function initExternalSpacesApi(deps: ExternalRouteDeps, buildFlavor: BuildFlavor) { + // These two routes are always registered, internal in serverless by default initGetSpaceApi(deps); initGetAllSpacesApi(deps); - initPostSpacesApi(deps); - initPutSpacesApi(deps); - initCopyToSpacesApi(deps); - initUpdateObjectsSpacesApi(deps); - initGetShareableReferencesApi(deps); - initDisableLegacyUrlAliasesApi(deps); + + // In the serverless environment, Spaces are enabled but are effectively hidden from the user. We + // do not support more than 1 space: the default space. These HTTP APIs for creating, deleting, + // updating, and manipulating saved objects across multiple spaces are not needed. + if (buildFlavor !== 'serverless') { + initPutSpacesApi(deps); + initDeleteSpacesApi(deps); + initPostSpacesApi(deps); + initCopyToSpacesApi(deps); + initUpdateObjectsSpacesApi(deps); + initGetShareableReferencesApi(deps); + initDisableLegacyUrlAliasesApi(deps); + } } diff --git a/x-pack/plugins/spaces/server/routes/api/external/post.test.ts b/x-pack/plugins/spaces/server/routes/api/external/post.test.ts index 01c08eca85ec7..88c763f31c0be 100644 --- a/x-pack/plugins/spaces/server/routes/api/external/post.test.ts +++ b/x-pack/plugins/spaces/server/routes/api/external/post.test.ts @@ -62,7 +62,7 @@ describe('Spaces Public API', () => { }); initPostSpacesApi({ - externalRouter: router, + router, getStartServices: async () => [coreStart, {}, {}], log, getSpacesService: () => spacesServiceStart, diff --git a/x-pack/plugins/spaces/server/routes/api/external/post.ts b/x-pack/plugins/spaces/server/routes/api/external/post.ts index 3ea6da647b4f2..d8091a0140e00 100644 --- a/x-pack/plugins/spaces/server/routes/api/external/post.ts +++ b/x-pack/plugins/spaces/server/routes/api/external/post.ts @@ -15,9 +15,9 @@ import { spaceSchema } from '../../../lib/space_schema'; import { createLicensedRouteHandler } from '../../lib'; export function initPostSpacesApi(deps: ExternalRouteDeps) { - const { externalRouter, log, getSpacesService } = deps; + const { router, log, getSpacesService } = deps; - externalRouter.post( + router.post( { path: '/api/spaces/space', validate: { diff --git a/x-pack/plugins/spaces/server/routes/api/external/put.test.ts b/x-pack/plugins/spaces/server/routes/api/external/put.test.ts index 126d15268edf8..5e1e6077a758e 100644 --- a/x-pack/plugins/spaces/server/routes/api/external/put.test.ts +++ b/x-pack/plugins/spaces/server/routes/api/external/put.test.ts @@ -62,7 +62,7 @@ describe('PUT /api/spaces/space', () => { }); initPutSpacesApi({ - externalRouter: router, + router, getStartServices: async () => [coreStart, {}, {}], log, getSpacesService: () => spacesServiceStart, diff --git a/x-pack/plugins/spaces/server/routes/api/external/put.ts b/x-pack/plugins/spaces/server/routes/api/external/put.ts index fb9f818576580..753ec8e028925 100644 --- a/x-pack/plugins/spaces/server/routes/api/external/put.ts +++ b/x-pack/plugins/spaces/server/routes/api/external/put.ts @@ -15,9 +15,9 @@ import { spaceSchema } from '../../../lib/space_schema'; import { createLicensedRouteHandler } from '../../lib'; export function initPutSpacesApi(deps: ExternalRouteDeps) { - const { externalRouter, getSpacesService } = deps; + const { router, getSpacesService } = deps; - externalRouter.put( + router.put( { path: '/api/spaces/space/{id}', validate: { diff --git a/x-pack/plugins/spaces/server/routes/api/external/update_objects_spaces.test.ts b/x-pack/plugins/spaces/server/routes/api/external/update_objects_spaces.test.ts index 4c5fd44a6bb30..195db8148a378 100644 --- a/x-pack/plugins/spaces/server/routes/api/external/update_objects_spaces.test.ts +++ b/x-pack/plugins/spaces/server/routes/api/external/update_objects_spaces.test.ts @@ -62,7 +62,7 @@ describe('update_objects_spaces', () => { spacesClientService: clientServiceStart, }); initUpdateObjectsSpacesApi({ - externalRouter: router, + router, getStartServices: async () => [coreStart, {}, {}], log, getSpacesService: () => spacesServiceStart, diff --git a/x-pack/plugins/spaces/server/routes/api/external/update_objects_spaces.ts b/x-pack/plugins/spaces/server/routes/api/external/update_objects_spaces.ts index ea95557514d52..5e610c9693ab5 100644 --- a/x-pack/plugins/spaces/server/routes/api/external/update_objects_spaces.ts +++ b/x-pack/plugins/spaces/server/routes/api/external/update_objects_spaces.ts @@ -14,7 +14,7 @@ import { SPACE_ID_REGEX } from '../../../lib/space_schema'; import { createLicensedRouteHandler } from '../../lib'; export function initUpdateObjectsSpacesApi(deps: ExternalRouteDeps) { - const { externalRouter, getStartServices } = deps; + const { router, getStartServices } = deps; const spacesSchema = schema.arrayOf( schema.string({ @@ -33,7 +33,7 @@ export function initUpdateObjectsSpacesApi(deps: ExternalRouteDeps) { } ); - externalRouter.post( + router.post( { path: '/api/spaces/_update_objects_spaces', validate: { diff --git a/x-pack/plugins/spaces/server/routes/api/internal/get_active_space.test.ts b/x-pack/plugins/spaces/server/routes/api/internal/get_active_space.test.ts index 172f1afec53cf..afa0f0a995944 100644 --- a/x-pack/plugins/spaces/server/routes/api/internal/get_active_space.test.ts +++ b/x-pack/plugins/spaces/server/routes/api/internal/get_active_space.test.ts @@ -26,7 +26,7 @@ describe('GET /internal/spaces/_active_space', () => { }); initGetActiveSpaceApi({ - internalRouter: router, + router, getSpacesService: () => service.start({ basePath: coreStart.http.basePath, diff --git a/x-pack/plugins/spaces/server/routes/api/internal/get_active_space.ts b/x-pack/plugins/spaces/server/routes/api/internal/get_active_space.ts index feb6d8b59628b..2996e7dbc4ed1 100644 --- a/x-pack/plugins/spaces/server/routes/api/internal/get_active_space.ts +++ b/x-pack/plugins/spaces/server/routes/api/internal/get_active_space.ts @@ -10,9 +10,9 @@ import { wrapError } from '../../../lib/errors'; import { createLicensedRouteHandler } from '../../lib'; export function initGetActiveSpaceApi(deps: InternalRouteDeps) { - const { internalRouter, getSpacesService } = deps; + const { router, getSpacesService } = deps; - internalRouter.get( + router.get( { path: '/internal/spaces/_active_space', validate: false, diff --git a/x-pack/plugins/spaces/server/routes/api/internal/index.ts b/x-pack/plugins/spaces/server/routes/api/internal/index.ts index 2f732bfcaf5ab..0cf8135d7b718 100644 --- a/x-pack/plugins/spaces/server/routes/api/internal/index.ts +++ b/x-pack/plugins/spaces/server/routes/api/internal/index.ts @@ -10,7 +10,7 @@ import type { SpacesServiceStart } from '../../../spaces_service/spaces_service' import type { SpacesRouter } from '../../../types'; export interface InternalRouteDeps { - internalRouter: SpacesRouter; + router: SpacesRouter; getSpacesService: () => SpacesServiceStart; } diff --git a/x-pack/plugins/spaces/server/spaces_client/spaces_client.test.ts b/x-pack/plugins/spaces/server/spaces_client/spaces_client.test.ts index e9305f07f1b0e..67c926229601b 100644 --- a/x-pack/plugins/spaces/server/spaces_client/spaces_client.test.ts +++ b/x-pack/plugins/spaces/server/spaces_client/spaces_client.test.ts @@ -18,7 +18,11 @@ const createMockDebugLogger = () => { }; const createMockConfig = ( - mockConfig: ConfigType = { enabled: true, maxSpaces: 1000, allowFeatureVisibility: true } + mockConfig: ConfigType = { + enabled: true, + maxSpaces: 1000, + allowFeatureVisibility: true, + } ) => { return ConfigSchema.validate(mockConfig, { serverless: !mockConfig.allowFeatureVisibility }); }; @@ -209,7 +213,11 @@ describe('#create', () => { total: maxSpaces - 1, } as any); - const mockConfig = createMockConfig({ enabled: true, maxSpaces, allowFeatureVisibility: true }); + const mockConfig = createMockConfig({ + enabled: true, + maxSpaces, + allowFeatureVisibility: true, + }); const client = new SpacesClient(mockDebugLogger, mockConfig, mockCallWithRequestRepository, []); @@ -235,7 +243,11 @@ describe('#create', () => { total: maxSpaces, } as any); - const mockConfig = createMockConfig({ enabled: true, maxSpaces, allowFeatureVisibility: true }); + const mockConfig = createMockConfig({ + enabled: true, + maxSpaces, + allowFeatureVisibility: true, + }); const client = new SpacesClient(mockDebugLogger, mockConfig, mockCallWithRequestRepository, []); diff --git a/x-pack/plugins/spaces/tsconfig.json b/x-pack/plugins/spaces/tsconfig.json index 43ea0f1c6c562..d59e30e3a0194 100644 --- a/x-pack/plugins/spaces/tsconfig.json +++ b/x-pack/plugins/spaces/tsconfig.json @@ -31,6 +31,7 @@ "@kbn/core-custom-branding-browser-mocks", "@kbn/core-custom-branding-common", "@kbn/shared-ux-link-redirect-app", + "@kbn/config", ], "exclude": [ "target/**/*", diff --git a/x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/__snapshots__/geo_containment_alert_type_expression.test.tsx.snap b/x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/__snapshots__/geo_containment_alert_type_expression.test.tsx.snap index 8036c63e4f48e..abef05ed9b343 100644 --- a/x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/__snapshots__/geo_containment_alert_type_expression.test.tsx.snap +++ b/x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/__snapshots__/geo_containment_alert_type_expression.test.tsx.snap @@ -89,7 +89,7 @@ exports[`should render BoundaryIndexExpression 1`] = ` exports[`should render EntityIndexExpression 1`] = ` <ExpressionWithPopover - defaultValue="Select a data view and geo point field" + defaultValue="Select a data view and geospatial field" expressionDescription="index" isInvalid={false} popoverContent={ @@ -108,6 +108,7 @@ exports[`should render EntityIndexExpression 1`] = ` includedGeoTypes={ Array [ "geo_point", + "geo_shape", ] } indexPatternService={ @@ -183,7 +184,7 @@ exports[`should render EntityIndexExpression 1`] = ` exports[`should render EntityIndexExpression w/ invalid flag if invalid 1`] = ` <ExpressionWithPopover - defaultValue="Select a data view and geo point field" + defaultValue="Select a data view and geospatial field" expressionDescription="index" isInvalid={true} popoverContent={ @@ -202,6 +203,7 @@ exports[`should render EntityIndexExpression w/ invalid flag if invalid 1`] = ` includedGeoTypes={ Array [ "geo_point", + "geo_shape", ] } indexPatternService={ diff --git a/x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/expressions/entity_index_expression.tsx b/x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/expressions/entity_index_expression.tsx index 10aba3123c2cc..fe75c7b22dcc2 100644 --- a/x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/expressions/entity_index_expression.tsx +++ b/x-pack/plugins/stack_alerts/public/rule_types/geo_containment/query_builder/expressions/entity_index_expression.tsx @@ -161,7 +161,7 @@ export const EntityIndexExpression: FunctionComponent<Props> = ({ isInvalid={isInvalid} value={indexPattern.title} defaultValue={i18n.translate('xpack.stackAlerts.geoContainment.entityIndexSelect', { - defaultMessage: 'Select a data view and geo point field', + defaultMessage: 'Select a data view and geospatial field', })} popoverContent={indexPopover} expressionDescription={i18n.translate('xpack.stackAlerts.geoContainment.entityIndexLabel', { diff --git a/x-pack/plugins/stack_alerts/public/rule_types/geo_containment/readme.md b/x-pack/plugins/stack_alerts/public/rule_types/geo_containment/readme.md index 4b23f95a6e2e0..0ee0c19f0d432 100644 --- a/x-pack/plugins/stack_alerts/public/rule_types/geo_containment/readme.md +++ b/x-pack/plugins/stack_alerts/public/rule_types/geo_containment/readme.md @@ -4,7 +4,7 @@ There are several steps required to set up geo containment alerts for testing in that allows you to view triggered alerts as they happen. These instructions outline how to load test data, but really these steps can be used to load any data for geo containment alerts so long as you have the following data: -- An index containing a`geo_point` field and a `date` field. This data is presumed to +- An index containing a`geo_point` or `geo_shape` field and a `date` field. This data is presumed to be dynamic (updated). - An index containing `geo_shape` data, such as boundary data, bounding box data, etc. This data is presumed to be static (not updated). Shape data matching the query is diff --git a/x-pack/plugins/stack_alerts/public/rule_types/geo_containment/types.ts b/x-pack/plugins/stack_alerts/public/rule_types/geo_containment/types.ts index 949ebe6ff1e39..b34dd9ec4f8d2 100644 --- a/x-pack/plugins/stack_alerts/public/rule_types/geo_containment/types.ts +++ b/x-pack/plugins/stack_alerts/public/rule_types/geo_containment/types.ts @@ -23,6 +23,5 @@ export interface GeoContainmentAlertParams extends RuleTypeParams { boundaryIndexQuery?: Query; } -// Will eventually include 'geo_shape' -export const ES_GEO_FIELD_TYPES = ['geo_point']; +export const ES_GEO_FIELD_TYPES = ['geo_point', 'geo_shape']; export const ES_GEO_SHAPE_TYPES = ['geo_shape']; diff --git a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/executor.test.ts b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/executor.test.ts index 302389bb8d8d0..cec83d2cf9e71 100644 --- a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/executor.test.ts +++ b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/executor.test.ts @@ -220,7 +220,8 @@ describe('getGeoContainmentExecutor', () => { { dateInShape: '2021-04-28T16:56:11.923Z', docId: 'ZVBoGXkBsFLYN2Tj1wmV', - location: [-73.99018926545978, 40.751759740523994], + location: [0, 0], + locationWkt: 'POINT (-73.99018926545978 40.751759740523994)', shapeLocationId: 'kFATGXkBsFLYN2Tj6AAk', }, ], @@ -228,7 +229,8 @@ describe('getGeoContainmentExecutor', () => { { dateInShape: '2021-04-28T16:56:11.923Z', docId: 'ZlBoGXkBsFLYN2Tj1wmV', - location: [-73.99561604484916, 40.75449890457094], + location: [0, 0], + locationWkt: 'POINT (-73.99561604484916 40.75449890457094)', shapeLocationId: 'kFATGXkBsFLYN2Tj6AAk', }, ], diff --git a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/alert_context.test.ts b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/alert_context.test.ts index 77476e0a0ca9d..20649dd3d0ce4 100644 --- a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/alert_context.test.ts +++ b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/alert_context.test.ts @@ -9,6 +9,31 @@ import { getContainedAlertContext, getRecoveredAlertContext } from './alert_cont import { OTHER_CATEGORY } from '../constants'; test('getContainedAlertContext', () => { + expect( + getContainedAlertContext({ + entityName: 'entity1', + containment: { + location: [0, 0], + locationWkt: 'POINT (100 0)', + shapeLocationId: 'boundary1Id', + dateInShape: '2022-06-21T16:56:11.923Z', + docId: 'docId', + }, + shapesIdsNamesMap: { boundary1Id: 'boundary1Name' }, + windowEnd: new Date('2022-06-21T17:00:00.000Z'), + }) + ).toEqual({ + containingBoundaryId: 'boundary1Id', + containingBoundaryName: 'boundary1Name', + detectionDateTime: '2022-06-21T17:00:00.000Z', + entityDateTime: '2022-06-21T16:56:11.923Z', + entityDocumentId: 'docId', + entityId: 'entity1', + entityLocation: 'POINT (100 0)', + }); +}); + +test('getContainedAlertContext for backwards compatible number[] location format', () => { expect( getContainedAlertContext({ entityName: 'entity1', @@ -37,7 +62,8 @@ describe('getRecoveredAlertContext', () => { const activeEntities = new Map(); activeEntities.set('entity1', [ { - location: [100, 0], + location: [0, 0], + locationWkt: 'POINT (100 0)', shapeLocationId: 'boundary1Id', dateInShape: '2022-06-21T16:56:11.923Z', docId: 'docId', @@ -63,7 +89,8 @@ describe('getRecoveredAlertContext', () => { const inactiveEntities = new Map(); inactiveEntities.set('entity1', [ { - location: [100, 0], + location: [0, 0], + locationWkt: 'POINT (100 0)', shapeLocationId: OTHER_CATEGORY, dateInShape: '2022-06-21T16:56:11.923Z', docId: 'docId', diff --git a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/alert_context.ts b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/alert_context.ts index 42e65edaec789..6550a681e0321 100644 --- a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/alert_context.ts +++ b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/alert_context.ts @@ -50,7 +50,10 @@ function getAlertContext({ entityId: entityName, entityDateTime: containment.dateInShape || null, entityDocumentId: containment.docId, - entityLocation: `POINT (${containment.location[0]} ${containment.location[1]})`, + entityLocation: + containment.locationWkt !== undefined + ? containment.locationWkt + : `POINT (${containment.location[0]} ${containment.location[1]})`, detectionDateTime: new Date(windowEnd).toISOString(), }; if (!isRecovered) { diff --git a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/es_query_builder.ts b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/es_query_builder.ts index 44d453401078c..4927f52da78dd 100644 --- a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/es_query_builder.ts +++ b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/es_query_builder.ts @@ -63,13 +63,16 @@ export async function executeEsQuery( }, }, ], - docvalue_fields: [ + fields: [ entity, { field: dateField, format: 'strict_date_optional_time', }, - geoField, + { + field: geoField, + format: 'wkt', + }, ], _source: false, }, diff --git a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/get_entities_and_generate_alerts.test.ts b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/get_entities_and_generate_alerts.test.ts index 7433492d3aacc..339e53b03056b 100644 --- a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/get_entities_and_generate_alerts.test.ts +++ b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/get_entities_and_generate_alerts.test.ts @@ -54,6 +54,7 @@ describe('getEntitiesAndGenerateAlerts', () => { [ { location: [0, 0], + locationWkt: 'POINT (0 0)', shapeLocationId: '123', dateInShape: 'Wed Dec 09 2020 14:31:31 GMT-0700 (Mountain Standard Time)', docId: 'docId1', @@ -65,6 +66,7 @@ describe('getEntitiesAndGenerateAlerts', () => { [ { location: [0, 0], + locationWkt: 'POINT (0 0)', shapeLocationId: '456', dateInShape: 'Wed Dec 16 2020 15:31:31 GMT-0700 (Mountain Standard Time)', docId: 'docId2', @@ -76,6 +78,7 @@ describe('getEntitiesAndGenerateAlerts', () => { [ { location: [0, 0], + locationWkt: 'POINT (0 0)', shapeLocationId: '789', dateInShape: 'Wed Dec 23 2020 16:31:31 GMT-0700 (Mountain Standard Time)', docId: 'docId3', @@ -141,6 +144,7 @@ describe('getEntitiesAndGenerateAlerts', () => { [ { location: [0, 0], + locationWkt: 'POINT (0 0)', shapeLocationId: '999', dateInShape: 'Wed Dec 09 2020 12:31:31 GMT-0700 (Mountain Standard Time)', docId: 'docId7', @@ -166,6 +170,7 @@ describe('getEntitiesAndGenerateAlerts', () => { [ { location: [0, 0], + locationWkt: 'POINT (0 0)', shapeLocationId: '999', dateInShape: 'Wed Dec 09 2020 12:31:31 GMT-0700 (Mountain Standard Time)', docId: 'docId7', @@ -204,6 +209,7 @@ describe('getEntitiesAndGenerateAlerts', () => { const currLocationMapWithOther = new Map([...currLocationMap]).set('d', [ { location: [0, 0], + locationWkt: 'POINT (0 0)', shapeLocationId: OTHER_CATEGORY, dateInShape: 'Wed Dec 09 2020 14:31:31 GMT-0700 (Mountain Standard Time)', docId: 'docId1', @@ -225,6 +231,7 @@ describe('getEntitiesAndGenerateAlerts', () => { [ { location: [0, 0], + locationWkt: 'POINT (0 0)', shapeLocationId: 'other', dateInShape: 'Wed Dec 09 2020 14:31:31 GMT-0700 (Mountain Standard Time)', docId: 'docId1', @@ -241,18 +248,21 @@ describe('getEntitiesAndGenerateAlerts', () => { const currLocationMapWithThreeMore = new Map([...currLocationMap]).set('d', [ { location: [0, 0], + locationWkt: 'POINT (0 0)', shapeLocationId: '789', dateInShape: 'Wed Dec 10 2020 14:31:31 GMT-0700 (Mountain Standard Time)', docId: 'docId1', }, { location: [0, 0], + locationWkt: 'POINT (0 0)', shapeLocationId: '123', dateInShape: 'Wed Dec 08 2020 12:31:31 GMT-0700 (Mountain Standard Time)', docId: 'docId2', }, { location: [0, 0], + locationWkt: 'POINT (0 0)', shapeLocationId: '456', dateInShape: 'Wed Dec 07 2020 10:31:31 GMT-0700 (Mountain Standard Time)', docId: 'docId3', @@ -277,18 +287,21 @@ describe('getEntitiesAndGenerateAlerts', () => { const currLocationMapWithOther = new Map([...currLocationMap]).set('d', [ { location: [0, 0], + locationWkt: 'POINT (0 0)', shapeLocationId: OTHER_CATEGORY, dateInShape: 'Wed Dec 10 2020 14:31:31 GMT-0700 (Mountain Standard Time)', docId: 'docId1', }, { location: [0, 0], + locationWkt: 'POINT (0 0)', shapeLocationId: '123', dateInShape: 'Wed Dec 08 2020 12:31:31 GMT-0700 (Mountain Standard Time)', docId: 'docId1', }, { location: [0, 0], + locationWkt: 'POINT (0 0)', shapeLocationId: '456', dateInShape: 'Wed Dec 07 2020 10:31:31 GMT-0700 (Mountain Standard Time)', docId: 'docId1', @@ -310,18 +323,21 @@ describe('getEntitiesAndGenerateAlerts', () => { const currLocationMapWithOther = new Map([...currLocationMap]).set('d', [ { location: [0, 0], + locationWkt: 'POINT (0 0)', shapeLocationId: '123', dateInShape: 'Wed Dec 10 2020 14:31:31 GMT-0700 (Mountain Standard Time)', docId: 'docId1', }, { location: [0, 0], + locationWkt: 'POINT (0 0)', shapeLocationId: OTHER_CATEGORY, dateInShape: 'Wed Dec 08 2020 12:31:31 GMT-0700 (Mountain Standard Time)', docId: 'docId1', }, { location: [0, 0], + locationWkt: 'POINT (0 0)', shapeLocationId: '456', dateInShape: 'Wed Dec 07 2020 10:31:31 GMT-0700 (Mountain Standard Time)', docId: 'docId1', @@ -338,6 +354,7 @@ describe('getEntitiesAndGenerateAlerts', () => { new Map([...currLocationMap]).set('d', [ { location: [0, 0], + locationWkt: 'POINT (0 0)', shapeLocationId: '123', dateInShape: 'Wed Dec 10 2020 14:31:31 GMT-0700 (Mountain Standard Time)', docId: 'docId1', diff --git a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/get_entities_and_generate_alerts.ts b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/get_entities_and_generate_alerts.ts index 4bf1aad7f536d..c0d372e08dced 100644 --- a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/get_entities_and_generate_alerts.ts +++ b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/get_entities_and_generate_alerts.ts @@ -56,6 +56,11 @@ export function getEntitiesAndGenerateAlerts( return; } + // TODO remove otherCatIndex check + // Elasticsearch filters aggregation is used to group results into buckets matching entity locations intersecting boundary shapes + // filters.other_bucket_key returns bucket with entities that did not intersect any boundary shape. + // shapeLocationId === OTHER_CATEGORY can only occur when containments.length === 1 + // test data does not follow this pattern and needs to be updated. const otherCatIndex = containments.findIndex( ({ shapeLocationId }) => shapeLocationId === OTHER_CATEGORY ); diff --git a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/transform_results.test.ts b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/transform_results.test.ts index 6c87157ded42f..91ec87fe19619 100644 --- a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/transform_results.test.ts +++ b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/transform_results.test.ts @@ -12,7 +12,7 @@ import { transformResults } from './transform_results'; describe('transformResults', () => { const dateField = '@timestamp'; const geoField = 'location'; - test('should correctly transform expected results', async () => { + test('should correctly transform expected results', () => { const transformedResults = transformResults( // @ts-ignore sampleAggsJsonResponse.body, @@ -27,13 +27,15 @@ describe('transformResults', () => { { dateInShape: '2021-04-28T16:56:11.923Z', docId: 'ZVBoGXkBsFLYN2Tj1wmV', - location: [-73.99018926545978, 40.751759740523994], + location: [0, 0], + locationWkt: 'POINT (-73.99018926545978 40.751759740523994)', shapeLocationId: 'kFATGXkBsFLYN2Tj6AAk', }, { dateInShape: '2021-04-28T16:56:01.896Z', docId: 'YlBoGXkBsFLYN2TjsAlp', - location: [-73.98968475870788, 40.7506317878142], + location: [0, 0], + locationWkt: 'POINT (-73.98968475870788 40.7506317878142)', shapeLocationId: 'other', }, ], @@ -44,13 +46,15 @@ describe('transformResults', () => { { dateInShape: '2021-04-28T16:56:11.923Z', docId: 'ZlBoGXkBsFLYN2Tj1wmV', - location: [-73.99561604484916, 40.75449890457094], + location: [0, 0], + locationWkt: 'POINT (-73.99561604484916 40.75449890457094)', shapeLocationId: 'kFATGXkBsFLYN2Tj6AAk', }, { dateInShape: '2021-04-28T16:56:01.896Z', docId: 'Y1BoGXkBsFLYN2TjsAlp', - location: [-73.99459345266223, 40.755913141183555], + location: [0, 0], + locationWkt: 'POINT (-73.99459345266223 40.755913141183555)', shapeLocationId: 'other', }, ], @@ -61,7 +65,8 @@ describe('transformResults', () => { { dateInShape: '2021-04-28T16:56:11.923Z', docId: 'Z1BoGXkBsFLYN2Tj1wmV', - location: [-73.98662586696446, 40.7667087810114], + location: [0, 0], + locationWkt: 'POINT (-73.98662586696446 40.7667087810114)', shapeLocationId: 'other', }, ], @@ -72,7 +77,7 @@ describe('transformResults', () => { const nestedDateField = 'time_data.@timestamp'; const nestedGeoField = 'geo.coords.location'; - test('should correctly transform expected results if fields are nested', async () => { + test('should correctly transform expected results if fields are nested', () => { const transformedResults = transformResults( // @ts-ignore sampleAggsJsonResponseWithNesting.body, @@ -87,7 +92,8 @@ describe('transformResults', () => { { dateInShape: '2020-09-28T18:01:41.190Z', docId: 'N-ng1XQB6yyY-xQxnGSM', - location: [-82.8814151789993, 40.62806099653244], + location: [0, 0], + locationWkt: 'POINT (-82.8814151789993 40.62806099653244)', shapeLocationId: '0DrJu3QB6yyY-xQxv6Ip', }, ], @@ -98,7 +104,8 @@ describe('transformResults', () => { { dateInShape: '2020-09-28T18:01:41.191Z', docId: 'iOng1XQB6yyY-xQxnGSM', - location: [-82.22068064846098, 39.006176185794175], + location: [0, 0], + locationWkt: 'POINT (-82.22068064846098 39.006176185794175)', shapeLocationId: '0DrJu3QB6yyY-xQxv6Ip', }, ], @@ -109,7 +116,8 @@ describe('transformResults', () => { { dateInShape: '2020-09-28T18:01:41.191Z', docId: 'n-ng1XQB6yyY-xQxnGSM', - location: [-84.71324851736426, 41.6677269525826], + location: [0, 0], + locationWkt: 'POINT (-84.71324851736426 41.6677269525826)', shapeLocationId: '0DrJu3QB6yyY-xQxv6Ip', }, ], @@ -120,7 +128,8 @@ describe('transformResults', () => { { dateInShape: '2020-09-28T18:01:41.192Z', docId: 'GOng1XQB6yyY-xQxnGWM', - location: [6.073727197945118, 39.07997465226799], + location: [0, 0], + locationWkt: 'POINT (6.073727197945118 39.07997465226799)', shapeLocationId: '0DrJu3QB6yyY-xQxv6Ip', }, ], diff --git a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/transform_results.ts b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/transform_results.ts index d9b1c36fa4812..6b457575b4029 100644 --- a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/transform_results.ts +++ b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/lib/transform_results.ts @@ -6,64 +6,55 @@ */ import _ from 'lodash'; -import type * as estypes from '@elastic/elasticsearch/lib/api/typesWithBodyKey'; import type { GeoContainmentAlertInstanceState } from '../types'; // Flatten agg results and get latest locations for each entity export function transformResults( - results: estypes.SearchResponse<unknown>, + results: any, // eslint-disable-line @typescript-eslint/no-explicit-any dateField: string, geoField: string ): Map<string, GeoContainmentAlertInstanceState[]> { - const buckets = _.get(results, 'aggregations.shapes.buckets', {}); - const arrResults = _.flatMap(buckets, (bucket: unknown, bucketKey: string) => { - const subBuckets = _.get(bucket, 'entitySplit.buckets', []); - return _.map(subBuckets, (subBucket) => { - const locationFieldResult = _.get( - subBucket, - `entityHits.hits.hits[0].fields["${geoField}"][0]`, - '' - ); - const location = locationFieldResult - ? _.chain(locationFieldResult) - .split(', ') - .map((coordString) => +coordString) - .reverse() - .value() - : []; - const dateInShape = _.get( - subBucket, - `entityHits.hits.hits[0].fields["${dateField}"][0]`, - null - ); - const docId = _.get(subBucket, `entityHits.hits.hits[0]._id`); + const resultsMap = new Map<string, GeoContainmentAlertInstanceState[]>(); + const boundarySplitBuckets = results?.aggregations?.shapes?.buckets ?? {}; + for (const boundaryId in boundarySplitBuckets) { + if (!boundarySplitBuckets.hasOwnProperty(boundaryId)) { + continue; + } - return { - location, - shapeLocationId: bucketKey, - entityName: subBucket.key, - dateInShape, - docId, - }; - }); + const entitySplitBuckets = boundarySplitBuckets[boundaryId]?.entitySplit?.buckets ?? []; + for (let i = 0; i < entitySplitBuckets.length; i++) { + const entityName = entitySplitBuckets[i].key; + const entityResults = resultsMap.get(entityName) ?? []; + entityResults.push({ + // Required for zero down time (ZDT) + // populate legacy location so non-updated-kibana nodes can handle new alert state + // + // Why 0,0 vs parsing WKT and populating actual location? + // This loop gets processed for each entity location in each containing boundary, ie: its a hot loop + // There is a mimial amount of time between one kibana node updating and all Kibana nodes being updated + // vs a huge CPU penetatily for all kibana nodes for the rest of the time + // Algorithm optimized for the more common use case where all Kibana nodes are running updated version + location: [0, 0], + locationWkt: + entitySplitBuckets[i].entityHits?.hits?.hits?.[0]?.fields?.[geoField]?.[0] ?? '', + shapeLocationId: boundaryId, + dateInShape: + entitySplitBuckets[i].entityHits?.hits?.hits?.[0]?.fields?.[dateField]?.[0] ?? null, + docId: entitySplitBuckets[i].entityHits?.hits?.hits?.[0]?._id, + }); + resultsMap.set(entityName, entityResults); + } + } + + // TODO remove sort + // legacy algorithm sorted entity hits oldest to newest for an undocumented reason + // preserving sort to avoid unknown breaking changes + resultsMap.forEach((value, key) => { + if (value.length > 1) { + // sort oldest to newest + resultsMap.set(key, _.orderBy(value, ['dateInShape'], ['desc', 'asc'])); + } }); - const orderedResults = _.orderBy(arrResults, ['entityName', 'dateInShape'], ['asc', 'desc']) - // Get unique - .reduce( - ( - accu: Map<string, GeoContainmentAlertInstanceState[]>, - el: GeoContainmentAlertInstanceState & { entityName: string } - ) => { - const { entityName, ...locationData } = el; - if (entityName) { - if (!accu.has(entityName)) { - accu.set(entityName, []); - } - accu.get(entityName)!.push(locationData); - } - return accu; - }, - new Map() - ); - return orderedResults; + + return resultsMap; } diff --git a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/tests/es_sample_response.json b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/tests/es_sample_response.json index b5751e527df4d..401afa8d8807e 100644 --- a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/tests/es_sample_response.json +++ b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/tests/es_sample_response.json @@ -60,7 +60,7 @@ "2021-04-28T16:56:11.923Z" ], "location":[ - "40.751759740523994, -73.99018926545978" + "POINT (-73.99018926545978 40.751759740523994)" ], "entity_id":[ "0" @@ -94,7 +94,7 @@ "2021-04-28T16:56:11.923Z" ], "location":[ - "40.75449890457094, -73.99561604484916" + "POINT (-73.99561604484916 40.75449890457094)" ], "entity_id":[ "1" @@ -157,7 +157,7 @@ "2021-04-28T16:56:11.923Z" ], "location":[ - "40.7667087810114, -73.98662586696446" + "POINT (-73.98662586696446 40.7667087810114)" ], "entity_id":[ "2" @@ -191,7 +191,7 @@ "2021-04-28T16:56:01.896Z" ], "location":[ - "40.755913141183555, -73.99459345266223" + "POINT (-73.99459345266223 40.755913141183555)" ], "entity_id":[ "1" @@ -225,7 +225,7 @@ "2021-04-28T16:56:01.896Z" ], "location":[ - "40.7506317878142, -73.98968475870788" + "POINT (-73.98968475870788 40.7506317878142)" ], "entity_id":[ "0" diff --git a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/tests/es_sample_response_with_nesting.json b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/tests/es_sample_response_with_nesting.json index 9baf58465c38e..b8973e185dabc 100644 --- a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/tests/es_sample_response_with_nesting.json +++ b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/tests/es_sample_response_with_nesting.json @@ -46,7 +46,7 @@ "2020-09-28T18:01:41.190Z" ], "geo.coords.location" : [ - "40.62806099653244, -82.8814151789993" + "POINT (-82.8814151789993 40.62806099653244)" ], "entity_id" : [ "936" @@ -80,7 +80,7 @@ "2020-09-28T18:01:41.191Z" ], "geo.coords.location" : [ - "39.006176185794175, -82.22068064846098" + "POINT (-82.22068064846098 39.006176185794175)" ], "entity_id" : [ "AAL2019" @@ -114,7 +114,7 @@ "2020-09-28T18:01:41.191Z" ], "geo.coords.location" : [ - "41.6677269525826, -84.71324851736426" + "POINT (-84.71324851736426 41.6677269525826)" ], "entity_id" : [ "AAL2323" @@ -148,7 +148,7 @@ "2020-09-28T18:01:41.192Z" ], "geo.coords.location" : [ - "39.07997465226799, 6.073727197945118" + "POINT (6.073727197945118 39.07997465226799)" ], "entity_id" : [ "ABD5250" diff --git a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/types.ts b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/types.ts index 236688d504efe..00d09051d1007 100644 --- a/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/types.ts +++ b/x-pack/plugins/stack_alerts/server/rule_types/geo_containment/types.ts @@ -54,7 +54,11 @@ export interface GeoContainmentRuleState extends RuleTypeState { } export interface GeoContainmentAlertInstanceState extends AlertInstanceState { + // 8.10-, location is [lon, lat] array. + // continue to populate 'location' for backwards compatibility with persisted alert instance state and ZDT location: number[]; + // 8.11+, location will be wkt represenation of geometry. + locationWkt?: string; shapeLocationId: string; dateInShape: string | null; docId: string; diff --git a/x-pack/plugins/synthetics/public/apps/synthetics/components/test_run_details/components/test_run_error_info.tsx b/x-pack/plugins/synthetics/public/apps/synthetics/components/test_run_details/components/test_run_error_info.tsx index 3c72df22f21aa..071e7f5180079 100644 --- a/x-pack/plugins/synthetics/public/apps/synthetics/components/test_run_details/components/test_run_error_info.tsx +++ b/x-pack/plugins/synthetics/public/apps/synthetics/components/test_run_details/components/test_run_error_info.tsx @@ -42,7 +42,7 @@ export const TestRunErrorInfo = ({ </EuiCallOut> )} <EuiSpacer size="m" /> - {isDownMonitor && (showErrorLogs || hasNoSteps) && ( + {(showErrorLogs || hasNoSteps) && ( <StdErrorLogs checkGroup={journeyDetails?.journey?.monitor.check_group} hideTitle={false} diff --git a/x-pack/plugins/synthetics/public/apps/synthetics/components/test_run_details/test_run_details.tsx b/x-pack/plugins/synthetics/public/apps/synthetics/components/test_run_details/test_run_details.tsx index 85a4c22ae8e0a..7f9dd6076fdd1 100644 --- a/x-pack/plugins/synthetics/public/apps/synthetics/components/test_run_details/test_run_details.tsx +++ b/x-pack/plugins/synthetics/public/apps/synthetics/components/test_run_details/test_run_details.tsx @@ -85,6 +85,14 @@ export const TestRunDetails = () => { </EuiPanel> <EuiSpacer size="m" /> <TestRunSteps isLoading={stepsLoading} steps={stepsData?.steps ?? []} /> + <EuiSpacer size="m" /> + <EuiPanel hasShadow={false} hasBorder> + <TestRunErrorInfo + journeyDetails={stepsData?.details} + showErrorTitle={false} + showErrorLogs={true} + /> + </EuiPanel> </EuiFlexItem> <EuiFlexItem css={{ flexBasis: '36%', minWidth: 'min-content' }}> <StepDurationPanel legendPosition="bottom" /> diff --git a/x-pack/plugins/task_manager/server/routes/background_task_utilization.test.ts b/x-pack/plugins/task_manager/server/routes/background_task_utilization.test.ts index e70c78b8e2120..322060b4f9b61 100644 --- a/x-pack/plugins/task_manager/server/routes/background_task_utilization.test.ts +++ b/x-pack/plugins/task_manager/server/routes/background_task_utilization.test.ts @@ -57,11 +57,13 @@ describe('backgroundTaskUtilizationRoute', () => { `"/internal/task_manager/_background_task_utilization"` ); expect(config1.options?.authRequired).toEqual(true); + expect(config1.options?.tags).toEqual(['security:acceptJWT']); const [config2] = router.get.mock.calls[1]; expect(config2.path).toMatchInlineSnapshot(`"/api/task_manager/_background_task_utilization"`); expect(config2.options?.authRequired).toEqual(true); + expect(config2.options?.tags).toEqual(['security:acceptJWT']); }); it(`sets "authRequired" to false when config.unsafe.authenticate_background_task_utilization is set to false`, async () => { diff --git a/x-pack/plugins/task_manager/server/routes/background_task_utilization.ts b/x-pack/plugins/task_manager/server/routes/background_task_utilization.ts index 38b1ce9966f33..b72b8ad5a7043 100644 --- a/x-pack/plugins/task_manager/server/routes/background_task_utilization.ts +++ b/x-pack/plugins/task_manager/server/routes/background_task_utilization.ts @@ -117,6 +117,9 @@ export function backgroundTaskUtilizationRoute( options: { access: 'public', // access must be public to allow "system" users, like metrics collectors, to access these routes authRequired: routeOption.isAuthenticated ?? true, + // The `security:acceptJWT` tag allows route to be accessed with JWT credentials. It points to + // ROUTE_TAG_ACCEPT_JWT from '@kbn/security-plugin/server' that cannot be imported here directly. + tags: ['security:acceptJWT'], }, }, async function ( diff --git a/x-pack/plugins/task_manager/server/routes/metrics.test.ts b/x-pack/plugins/task_manager/server/routes/metrics.test.ts index a9703aa7548dd..172e29d61f110 100644 --- a/x-pack/plugins/task_manager/server/routes/metrics.test.ts +++ b/x-pack/plugins/task_manager/server/routes/metrics.test.ts @@ -28,6 +28,7 @@ describe('metricsRoute', () => { const [config] = router.get.mock.calls[0]; expect(config.path).toMatchInlineSnapshot(`"/api/task_manager/metrics"`); + expect(config.options?.tags).toEqual(['security:acceptJWT']); }); it('emits resetMetric$ event when route is accessed and reset query param is true', async () => { diff --git a/x-pack/plugins/task_manager/server/routes/metrics.ts b/x-pack/plugins/task_manager/server/routes/metrics.ts index 737f2b44fd79e..692227899979b 100644 --- a/x-pack/plugins/task_manager/server/routes/metrics.ts +++ b/x-pack/plugins/task_manager/server/routes/metrics.ts @@ -48,6 +48,9 @@ export function metricsRoute(params: MetricsRouteParams) { path: `/api/task_manager/metrics`, options: { access: 'public', + // The `security:acceptJWT` tag allows route to be accessed with JWT credentials. It points to + // ROUTE_TAG_ACCEPT_JWT from '@kbn/security-plugin/server' that cannot be imported here directly. + tags: ['security:acceptJWT'], }, // Uncomment when we determine that we can restrict API usage to Global admins based on telemetry // options: { tags: ['access:taskManager'] }, diff --git a/x-pack/plugins/task_manager/server/task_store.test.ts b/x-pack/plugins/task_manager/server/task_store.test.ts index 76cce77144256..933410be29b0c 100644 --- a/x-pack/plugins/task_manager/server/task_store.test.ts +++ b/x-pack/plugins/task_manager/server/task_store.test.ts @@ -381,7 +381,9 @@ describe('TaskStore', () => { index: 'tasky', body: { size: 0, - query: { bool: { filter: [{ term: { type: 'task' } }] } }, + query: { + bool: { filter: [{ term: { type: 'task' } }, { term: { 'task.enabled': true } }] }, + }, aggs: { testAgg: { terms: { field: 'task.taskType' } } }, }, }); @@ -401,7 +403,11 @@ describe('TaskStore', () => { query: { bool: { must: [ - { bool: { filter: [{ term: { type: 'task' } }] } }, + { + bool: { + filter: [{ term: { type: 'task' } }, { term: { 'task.enabled': true } }], + }, + }, { term: { 'task.taskType': 'bar' } }, ], }, @@ -420,7 +426,9 @@ describe('TaskStore', () => { expect(args).toMatchObject({ body: { size: 0, - query: { bool: { filter: [{ term: { type: 'task' } }] } }, + query: { + bool: { filter: [{ term: { type: 'task' } }, { term: { 'task.enabled': true } }] }, + }, aggs: { testAgg: { terms: { field: 'task.taskType' } } }, runtime_mappings: { testMapping: { type: 'long', script: { source: `` } } }, }, diff --git a/x-pack/plugins/task_manager/server/task_store.ts b/x-pack/plugins/task_manager/server/task_store.ts index 52140b2e4d468..acc12b39ec0b2 100644 --- a/x-pack/plugins/task_manager/server/task_store.ts +++ b/x-pack/plugins/task_manager/server/task_store.ts @@ -477,7 +477,7 @@ export class TaskStore { index: this.index, ignore_unavailable: true, track_total_hits: true, - body: ensureAggregationOnlyReturnsTaskObjects({ + body: ensureAggregationOnlyReturnsEnabledTaskObjects({ query, aggs, runtime_mappings, @@ -595,11 +595,11 @@ function ensureQueryOnlyReturnsTaskObjects(opts: SearchOpts): SearchOpts { }; } -function ensureAggregationOnlyReturnsTaskObjects(opts: AggregationOpts): AggregationOpts { +function ensureAggregationOnlyReturnsEnabledTaskObjects(opts: AggregationOpts): AggregationOpts { const originalQuery = opts.query; const filterToOnlyTasks = { bool: { - filter: [{ term: { type: 'task' } }], + filter: [{ term: { type: 'task' } }, { term: { 'task.enabled': true } }], }, }; const query = originalQuery diff --git a/x-pack/plugins/transform/public/app/sections/create_transform/components/wizard/wizard.tsx b/x-pack/plugins/transform/public/app/sections/create_transform/components/wizard/wizard.tsx index da4bcd1d1c6bd..a26866452ff3f 100644 --- a/x-pack/plugins/transform/public/app/sections/create_transform/components/wizard/wizard.tsx +++ b/x-pack/plugins/transform/public/app/sections/create_transform/components/wizard/wizard.tsx @@ -17,7 +17,6 @@ import { Storage } from '@kbn/kibana-utils-plugin/public'; import { StorageContextProvider } from '@kbn/ml-local-storage'; import { UrlStateProvider } from '@kbn/ml-url-state'; import { UI_SETTINGS } from '@kbn/data-plugin/common'; -import { toMountPoint, wrapWithTheme } from '@kbn/kibana-react-plugin/public'; import type { FieldStatsServices } from '@kbn/unified-field-list/src/components/field_stats'; import type { RuntimeMappings } from '@kbn/ml-runtime-field-utils'; @@ -228,9 +227,7 @@ export const Wizard: FC<WizardProps> = React.memo(({ cloneConfig, searchItems }) const stepsConfig = [stepDefine, stepDetails, stepCreate]; const datePickerDeps = { - ...pick(appDependencies, ['data', 'http', 'notifications', 'theme', 'uiSettings']), - toMountPoint, - wrapWithTheme, + ...pick(appDependencies, ['data', 'http', 'notifications', 'theme', 'uiSettings', 'i18n']), uiSettingsKeys: UI_SETTINGS, }; diff --git a/x-pack/plugins/translations/translations/fr-FR.json b/x-pack/plugins/translations/translations/fr-FR.json index 536325568ccd2..bfff9d80f7f39 100644 --- a/x-pack/plugins/translations/translations/fr-FR.json +++ b/x-pack/plugins/translations/translations/fr-FR.json @@ -2334,7 +2334,6 @@ "discover.docViews.table.tableTitle": "Tableau", "discover.docViews.table.toggleColumnInTableButtonAriaLabel": "Afficher/Masquer la colonne dans le tableau", "discover.docViews.table.toggleColumnInTableButtonTooltip": "Afficher/Masquer la colonne dans le tableau", - "discover.docViews.table.toggleFieldDetails": "Afficher/Masquer les détails du champ", "discover.docViews.table.unableToFilterForPresenceOfMetaFieldsTooltip": "Impossible de filtrer sur les champs méta", "discover.docViews.table.unableToFilterForPresenceOfScriptedFieldsTooltip": "Impossible de filtrer sur les champs scriptés", "discover.docViews.table.unindexedFieldsCanNotBeSearchedTooltip": "Les champs non indexés ou les valeurs ignorées ne peuvent pas être recherchés", @@ -10462,7 +10461,6 @@ "xpack.cases.caseTable.caseDetailsLinkAria": "cliquez pour visiter le cas portant le titre {detailName}", "xpack.cases.caseTable.pushLinkAria": "cliquez pour afficher l'incident relatif à {thirdPartyName}.", "xpack.cases.caseTable.selectedCasesTitle": "{totalRules} {totalRules, plural, =1 {cas} one {aux cas suivants} many {cas} other {cas}} sélectionné(s)", - "xpack.cases.caseTable.showingCasesTitle": "Affichage de {totalRules} {totalRules, plural, =1 {cas} one {aux cas suivants} many {cas} other {cas}}", "xpack.cases.caseTable.unit": "{totalCount, plural, =1 {cas} one {aux cas suivants} many {cas} other {cas}}", "xpack.cases.caseView.actionLabel.selectedThirdParty": "{thirdParty} sélectionné comme système de gestion des incidents", "xpack.cases.caseView.actionLabel.viewIncident": "Afficher {incidentNumber}", @@ -11934,8 +11932,6 @@ "xpack.elasticAssistant.dataAnonymizationEditor.stats.availableStat.availableTooltip": "{total} champs dans ce contexte sont disponibles pour être inclus dans la conversation", "xpack.elasticAssistant.assistant.apiErrorTitle": "Une erreur s’est produite lors de l’envoi de votre message. Si le problème persiste, veuillez tester la configuration du connecteur.", "xpack.elasticAssistant.assistant.clearChat": "Effacer le chat", - "xpack.elasticAssistant.assistant.connectors.addConnectorButton.connectorAddedDescription": "Prêt à continuer la conversation...", - "xpack.elasticAssistant.assistant.connectors.addConnectorButton.connectorAddedTitle": "Connecteur d'intelligence artificielle générative ajouté.", "xpack.elasticAssistant.assistant.connectors.addConnectorButton.description": "Configurez un connecteur pour continuer la conversation", "xpack.elasticAssistant.assistant.connectors.addConnectorButton.title": "Ajouter un connecteur d'intelligence artificielle générative", "xpack.elasticAssistant.assistant.connectors.connectorSelector.ariaLabel": "Sélecteur de conversation", @@ -17222,7 +17218,6 @@ "xpack.idxMgmt.forceMergeIndicesAction.successfullyForceMergedIndicesMessage": "Fusion forcée effectué avec succès : [{indexNames}]", "xpack.idxMgmt.formWizard.stepAliases.aliasesEditorHelpText": "Utiliser le format JSON : {code}", "xpack.idxMgmt.formWizard.stepSettings.settingsEditorHelpText": "Utiliser le format JSON : {code}", - "xpack.idxMgmt.goToDiscover": "Afficher {indexName} dans Discover", "xpack.idxMgmt.home.componentTemplates.confirmButtonLabel": "Supprimer {numComponentTemplatesToDelete, plural, one {modèle de composant} many {modèles de composants} other {modèles de composants}}", "xpack.idxMgmt.home.componentTemplates.deleteModal.deleteDescription": "Vous êtes sur le point de supprimer {numComponentTemplatesToDelete, plural, one {ce modèle de composant} many {ces modèles de composants} other {ces modèles de composants}} :", "xpack.idxMgmt.home.componentTemplates.deleteModal.modalTitleText": "Supprimer {numComponentTemplatesToDelete, plural, one {le modèle de composant} many {# modèles de composants} other {# modèles de composants}}", @@ -17233,9 +17228,6 @@ "xpack.idxMgmt.home.idxMgmtDescription": "Mettez à jour vos index Elasticsearch individuellement ou par lots. {learnMoreLink}", "xpack.idxMgmt.home.indexTemplatesDescription": "Utilisez des modèles d'index composables pour appliquer automatiquement des paramètres, des mappings et des alias aux index. {learnMoreLink}", "xpack.idxMgmt.indexActionsMenu.clearIndexCacheLabel": "Effacer le cache {selectedIndexCount, plural, one {index} many {index système non migrés} other {d'index}}", - "xpack.idxMgmt.indexActionsMenu.closeIndex.closeDescription": "Vous êtes sur le point de fermer {selectedIndexCount, plural, one {cet index} many {ces index} other {ces index}} :", - "xpack.idxMgmt.indexActionsMenu.closeIndex.confirmModal.confirmButtonText": "Fermer {selectedIndexCount, plural, one {index} many {index système non migrés} other {index}}", - "xpack.idxMgmt.indexActionsMenu.closeIndex.confirmModal.modalTitle": "Fermer {selectedIndexCount, plural, one {index} many {# index} other {# index}}", "xpack.idxMgmt.indexActionsMenu.closeIndexLabel": "Fermer {selectedIndexCount, plural, one {index} many {index système non migrés} other {index}}", "xpack.idxMgmt.indexActionsMenu.deleteIndex.confirmModal.confirmButtonText": "Supprimer {selectedIndexCount, plural, one {index} many {index système non migrés} other {index}}", "xpack.idxMgmt.indexActionsMenu.deleteIndex.confirmModal.modalTitle": "Supprimer {selectedIndexCount, plural, one {index} many {# index} other {# index}}", @@ -17562,16 +17554,8 @@ "xpack.idxMgmt.home.legacyIndexTemplatesDeprecation.ctaLearnMoreLinkText": "en savoir plus.", "xpack.idxMgmt.home.legacyIndexTemplatesDeprecation.learnMoreLinkText": "En savoir plus.", "xpack.idxMgmt.home.legacyIndexTemplatesTitle": "Modèles d'index hérités", - "xpack.idxMgmt.indexActionsMenu.closeIndex.checkboxLabel": "Je comprends les conséquences de la fermeture d'un index système", - "xpack.idxMgmt.indexActionsMenu.closeIndex.proceedWithCautionCallOutDescription": "Les index système sont essentiels aux opérations internes. Vous pouvez rouvrir l'index à l'aide de l'API Open Index (Ouvrir un index).", - "xpack.idxMgmt.indexActionsMenu.closeIndex.proceedWithCautionCallOutTitle": "La fermeture d'un index système peut empêcher Kibana de fonctionner", - "xpack.idxMgmt.indexActionsMenu.closeIndex.systemIndexLabel": "Index système", - "xpack.idxMgmt.indexActionsMenu.deleteIndex.checkboxLabel": "Je comprends les conséquences de la suppression d'un index système", "xpack.idxMgmt.indexActionsMenu.deleteIndex.confirmModal.cancelButtonText": "Annuler", "xpack.idxMgmt.indexActionsMenu.deleteIndex.deleteWarningDescription": "Vous ne pouvez pas récupérer un index supprimé. Assurez-vous de disposer des sauvegardes appropriées.", - "xpack.idxMgmt.indexActionsMenu.deleteIndex.proceedWithCautionCallOutDescription": "Les index système sont essentiels aux opérations internes. Si vous supprimez un index système, vous ne pouvez pas le récupérer. Assurez-vous de disposer des sauvegardes appropriées.", - "xpack.idxMgmt.indexActionsMenu.deleteIndex.proceedWithCautionCallOutTitle": "La suppression d'un index système peut empêcher Kibana de fonctionner", - "xpack.idxMgmt.indexActionsMenu.deleteIndex.systemIndexLabel": "Index système", "xpack.idxMgmt.indexActionsMenu.forceMerge.confirmModal.cancelButtonText": "Annuler", "xpack.idxMgmt.indexActionsMenu.forceMerge.confirmModal.confirmButtonText": "Forcer la fusion", "xpack.idxMgmt.indexActionsMenu.forceMerge.confirmModal.modalTitle": "Forcer la fusion", @@ -28433,7 +28417,6 @@ "xpack.remoteClusters.remoteClusterForm.sectionModeTitle": "Mode de connexion", "xpack.remoteClusters.remoteClusterForm.sectionNameDescription": "Nom unique pour le cluster.", "xpack.remoteClusters.remoteClusterForm.sectionNameTitle": "Nom", - "xpack.remoteClusters.remoteClusterForm.sectionSeedsHelpText.transportPortLinkText": "port de transport", "xpack.remoteClusters.remoteClusterForm.sectionSkipUnavailableDescription.learnMoreLinkLabel": "En savoir plus.", "xpack.remoteClusters.remoteClusterForm.sectionSkipUnavailableDescription.optionNameLabel": "Ignorer si indisponible", "xpack.remoteClusters.remoteClusterForm.sectionSkipUnavailableLabel": "Ignorer si indisponible", @@ -30029,10 +30012,6 @@ "xpack.securitySolution.exceptions.viewer.lastUpdated": "Mis à jour {updated}", "xpack.securitySolution.exceptions.viewer.paginationDetails": "Affichage de {partOne} sur {partTwo}", "xpack.securitySolution.fieldBrowser.descriptionForScreenReaderOnly": "Description pour le champ {field} :", - "xpack.securitySolution.flyout.correlations.ancestryAlertsHeading": "{count, plural, one {# alerte} many {# alertes} other {Alertes #}} associé par ancêtre", - "xpack.securitySolution.flyout.correlations.relatedCasesHeading": "{count} associé {count, plural, one {cas} many {aux cas suivants} other {aux cas suivants}}", - "xpack.securitySolution.flyout.correlations.sessionAlertsHeading": "{count, plural, one {# alerte} many {# alertes} other {Alertes #}} associé(es) par session", - "xpack.securitySolution.flyout.correlations.sourceAlertsHeading": "{count, plural, one {# alerte} many {# alertes} other {Alertes #}} associé(es) par événement source", "xpack.securitySolution.flyout.errorMessage": "Une erreur est survenue lors de l'affichage de {message}", "xpack.securitySolution.flyout.errorTitle": "Impossible d'afficher {title}", "xpack.securitySolution.footer.autoRefreshActiveTooltip": "Lorsque le rafraîchissement automatique est activé, la chronologie vous montre les {numberOfItems} derniers événements qui correspondent à votre requête.", @@ -33308,25 +33287,14 @@ "xpack.securitySolution.flyout.documentDetails.entitiesButton": "Entités", "xpack.securitySolution.flyout.documentDetails.entitiesTitle": "Entités", "xpack.securitySolution.flyout.documentDetails.expandDetailButton": "Développer les détails de l'alerte", - "xpack.securitySolution.flyout.documentDetails.headerTitle": "Détails des documents", "xpack.securitySolution.flyout.documentDetails.highlightedFieldsTitle": "Champs en surbrillance", "xpack.securitySolution.flyout.documentDetails.insightsOptions": "Options des informations exploitables", "xpack.securitySolution.flyout.documentDetails.insightsTab": "Informations exploitables", "xpack.securitySolution.flyout.documentDetails.insightsTitle": "Informations exploitables", - "xpack.securitySolution.flyout.documentDetails.investigationGuideText": "Guide d'investigation", "xpack.securitySolution.flyout.documentDetails.investigationSectionTitle": "Investigation", "xpack.securitySolution.flyout.documentDetails.investigationsTab": "Investigation", "xpack.securitySolution.flyout.documentDetails.jsonTab": "JSON", "xpack.securitySolution.flyout.documentDetails.overviewTab": "Aperçu", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.ancestryAlert": "alerte associée par ancêtre", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.ancestryAlerts": "alertes associées par ancêtre", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.relatedCase": "cas associé", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.relatedCases": "cas associés", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.sameSessionAlert": "alerte associée par session", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.sameSessionAlerts": "alertes associées par session", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.sameSourceEventAlert": "alerte associée par le même événement source", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.sameSourceEventAlerts": "alertes associées par le même événement source", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlationsText": "champs de corrélation", "xpack.securitySolution.flyout.documentDetails.overviewTab.prevalenceRowText": "est inhabituel", "xpack.securitySolution.flyout.documentDetails.overviewTab.threatIntelligence.threatEnrichment": "champ enrichi avec la Threat Intelligence", "xpack.securitySolution.flyout.documentDetails.overviewTab.threatIntelligence.threatEnrichments": "champs enrichis avec la Threat Intelligence", @@ -33365,10 +33333,6 @@ "xpack.securitySolution.flyout.prevalenceErrorMessage": "prévalence", "xpack.securitySolution.flyout.prevalenceTableAlertCountColumnTitle": "Nombre d'alertes", "xpack.securitySolution.flyout.prevalenceTableDocCountColumnTitle": "Compte du document", - "xpack.securitySolution.flyout.prevalenceTableHostPrevalenceColumnTitle": "Prévalence de l’hôte", - "xpack.securitySolution.flyout.prevalenceTableNameColumnTitle": "Nom", - "xpack.securitySolution.flyout.prevalenceTableTypeColumnTitle": "Type", - "xpack.securitySolution.flyout.prevalenceTableUserPrevalenceColumnTitle": "Prévalence de l’utilisateur", "xpack.securitySolution.flyout.response.empty": "Il n’y a pas d’actions de réponse définies pour cet évènement.", "xpack.securitySolution.flyout.response.title": "Réponses", "xpack.securitySolution.flyout.sessionViewErrorMessage": "vue de session", @@ -34706,7 +34670,6 @@ "xpack.serverlessSearch.apiKey.userFieldLabel": "Utilisateur", "xpack.serverlessSearch.back": "Retour", "xpack.serverlessSearch.cancel": "Annuler", - "xpack.serverlessSearch.configureClient.advancedConfigLabel": "Configuration avancée", "xpack.serverlessSearch.configureClient.basicConfigLabel": "Configuration de base", "xpack.serverlessSearch.configureClient.description": "Initialiser votre client avec votre clé d’API et votre identifiant de cloud uniques", "xpack.serverlessSearch.configureClient.title": "Configurer votre client", @@ -34733,7 +34696,6 @@ "xpack.serverlessSearch.languages.ruby": "Ruby", "xpack.serverlessSearch.learnMore": "En savoir plus", "xpack.serverlessSearch.nav.content": "Contenu", - "xpack.serverlessSearch.nav.content.indexingApi": "API d’indexation", "xpack.serverlessSearch.nav.content.indices": "Index", "xpack.serverlessSearch.nav.devTools": "Outils de développement", "xpack.serverlessSearch.nav.explore": "Explorer", diff --git a/x-pack/plugins/translations/translations/ja-JP.json b/x-pack/plugins/translations/translations/ja-JP.json index 0b839aaea88f6..443e6725a422a 100644 --- a/x-pack/plugins/translations/translations/ja-JP.json +++ b/x-pack/plugins/translations/translations/ja-JP.json @@ -2349,7 +2349,6 @@ "discover.docViews.table.tableTitle": "表", "discover.docViews.table.toggleColumnInTableButtonAriaLabel": "表の列を切り替える", "discover.docViews.table.toggleColumnInTableButtonTooltip": "表の列を切り替える", - "discover.docViews.table.toggleFieldDetails": "フィールド詳細を切り替える", "discover.docViews.table.unableToFilterForPresenceOfMetaFieldsTooltip": "メタフィールドの有無でフィルタリングできません", "discover.docViews.table.unableToFilterForPresenceOfScriptedFieldsTooltip": "スクリプトフィールドの有無でフィルタリングできません", "discover.docViews.table.unindexedFieldsCanNotBeSearchedTooltip": "インデックスがないフィールドまたは無視された値は検索できません", @@ -10477,7 +10476,6 @@ "xpack.cases.caseTable.caseDetailsLinkAria": "クリックすると、タイトル{detailName}のケースを表示します", "xpack.cases.caseTable.pushLinkAria": "クリックすると、{thirdPartyName}でインシデントを表示します。", "xpack.cases.caseTable.selectedCasesTitle": "{totalRules}件の{totalRules, plural, =1 {ケース} other {ケース}}が選択済み", - "xpack.cases.caseTable.showingCasesTitle": "{totalRules} {totalRules, plural, =1 {ケース} other {ケース}}を表示中", "xpack.cases.caseTable.unit": "{totalCount, plural, =1 {ケース} other {ケース}}", "xpack.cases.caseView.actionLabel.selectedThirdParty": "{thirdParty}をインシデント管理システムとして選択しました", "xpack.cases.caseView.actionLabel.viewIncident": "{incidentNumber}を表示", @@ -11948,8 +11946,6 @@ "xpack.elasticAssistant.dataAnonymizationEditor.stats.availableStat.availableTooltip": "このコンテキストの{total}個のフィールドを会話に含めることができます", "xpack.elasticAssistant.assistant.apiErrorTitle": "メッセージの送信中にエラーが発生しました。問題が解決しない場合は、コネクター構成をテストしてください。", "xpack.elasticAssistant.assistant.clearChat": "チャットを消去", - "xpack.elasticAssistant.assistant.connectors.addConnectorButton.connectorAddedDescription": "会話を続行する準備ができました...", - "xpack.elasticAssistant.assistant.connectors.addConnectorButton.connectorAddedTitle": "生成AIコネクターが追加されました。", "xpack.elasticAssistant.assistant.connectors.addConnectorButton.description": "会話を続行するようにコネクターを構成", "xpack.elasticAssistant.assistant.connectors.addConnectorButton.title": "生成AIコネクターを追加", "xpack.elasticAssistant.assistant.connectors.connectorSelector.ariaLabel": "会話セレクター", @@ -17236,7 +17232,6 @@ "xpack.idxMgmt.forceMergeIndicesAction.successfullyForceMergedIndicesMessage": "[{indexNames}]が強制結合されました", "xpack.idxMgmt.formWizard.stepAliases.aliasesEditorHelpText": "JSONフォーマットを使用:{code}", "xpack.idxMgmt.formWizard.stepSettings.settingsEditorHelpText": "JSONフォーマットを使用:{code}", - "xpack.idxMgmt.goToDiscover": "Discoverで{indexName}を表示", "xpack.idxMgmt.home.componentTemplates.confirmButtonLabel": "{numComponentTemplatesToDelete, plural, other {コンポーネントテンプレート}}削除", "xpack.idxMgmt.home.componentTemplates.deleteModal.deleteDescription": "{numComponentTemplatesToDelete, plural, other {これらのコンポーネントテンプレート}}を削除しようとしています:", "xpack.idxMgmt.home.componentTemplates.deleteModal.modalTitleText": "{numComponentTemplatesToDelete, plural, other {#個のコンポーネントテンプレート}}削除", @@ -17247,9 +17242,6 @@ "xpack.idxMgmt.home.idxMgmtDescription": "Elasticsearchインデックスを個々に、または一斉に更新します。{learnMoreLink}", "xpack.idxMgmt.home.indexTemplatesDescription": "作成可能なインデックステンプレートを使用して設定、マッピング、エイリアスをインデックスに自動的に適用します。{learnMoreLink}", "xpack.idxMgmt.indexActionsMenu.clearIndexCacheLabel": "{selectedIndexCount, plural, other {インデックス}}キャッシュをクリア", - "xpack.idxMgmt.indexActionsMenu.closeIndex.closeDescription": "{selectedIndexCount, plural, other {これらのインデックス}}を閉じようとしています:", - "xpack.idxMgmt.indexActionsMenu.closeIndex.confirmModal.confirmButtonText": "{selectedIndexCount, plural, other {インデックス}}を閉じる", - "xpack.idxMgmt.indexActionsMenu.closeIndex.confirmModal.modalTitle": "{selectedIndexCount, plural, other {#個のインデックス}}を閉じる", "xpack.idxMgmt.indexActionsMenu.closeIndexLabel": "{selectedIndexCount, plural, other {インデックス}}を閉じる", "xpack.idxMgmt.indexActionsMenu.deleteIndex.confirmModal.confirmButtonText": "{selectedIndexCount, plural, other {インデックス}}削除", "xpack.idxMgmt.indexActionsMenu.deleteIndex.confirmModal.modalTitle": "{selectedIndexCount, plural, other {#個のインデックス}}削除", @@ -17576,16 +17568,8 @@ "xpack.idxMgmt.home.legacyIndexTemplatesDeprecation.ctaLearnMoreLinkText": "詳細情報。", "xpack.idxMgmt.home.legacyIndexTemplatesDeprecation.learnMoreLinkText": "詳細情報", "xpack.idxMgmt.home.legacyIndexTemplatesTitle": "レガシーインデックステンプレート", - "xpack.idxMgmt.indexActionsMenu.closeIndex.checkboxLabel": "システムインデックスを閉じることの重大な影響を理解しています", - "xpack.idxMgmt.indexActionsMenu.closeIndex.proceedWithCautionCallOutDescription": "システムインデックスは内部オペレーションに不可欠です。Open Index APIを使用して再オープンすることができます。", - "xpack.idxMgmt.indexActionsMenu.closeIndex.proceedWithCautionCallOutTitle": "システムインデックスを閉じることで、Kibanaに重大な障害が生じる可能性があります", - "xpack.idxMgmt.indexActionsMenu.closeIndex.systemIndexLabel": "システムインデックス", - "xpack.idxMgmt.indexActionsMenu.deleteIndex.checkboxLabel": "システムインデックスを削除することの重大な影響を理解しています", "xpack.idxMgmt.indexActionsMenu.deleteIndex.confirmModal.cancelButtonText": "キャンセル", "xpack.idxMgmt.indexActionsMenu.deleteIndex.deleteWarningDescription": "削除されたインデックスは復元できません。適切なバックアップがあることを確認してください。", - "xpack.idxMgmt.indexActionsMenu.deleteIndex.proceedWithCautionCallOutDescription": "システムインデックスは内部オペレーションに不可欠です。システムインデックスを削除すると、復元することはできません。適切なバックアップがあることを確認してください。", - "xpack.idxMgmt.indexActionsMenu.deleteIndex.proceedWithCautionCallOutTitle": "十分ご注意ください!", - "xpack.idxMgmt.indexActionsMenu.deleteIndex.systemIndexLabel": "システムインデックス", "xpack.idxMgmt.indexActionsMenu.forceMerge.confirmModal.cancelButtonText": "キャンセル", "xpack.idxMgmt.indexActionsMenu.forceMerge.confirmModal.confirmButtonText": "強制結合", "xpack.idxMgmt.indexActionsMenu.forceMerge.confirmModal.modalTitle": "強制結合", @@ -28433,7 +28417,6 @@ "xpack.remoteClusters.remoteClusterForm.sectionModeTitle": "接続モード", "xpack.remoteClusters.remoteClusterForm.sectionNameDescription": "クラスターの固有の名前です。", "xpack.remoteClusters.remoteClusterForm.sectionNameTitle": "名前", - "xpack.remoteClusters.remoteClusterForm.sectionSeedsHelpText.transportPortLinkText": "トランスポートポート", "xpack.remoteClusters.remoteClusterForm.sectionSkipUnavailableDescription.learnMoreLinkLabel": "詳細情報", "xpack.remoteClusters.remoteClusterForm.sectionSkipUnavailableDescription.optionNameLabel": "利用不可の場合スキップ", "xpack.remoteClusters.remoteClusterForm.sectionSkipUnavailableLabel": "利用不可の場合スキップ", @@ -30028,10 +30011,6 @@ "xpack.securitySolution.exceptions.viewer.lastUpdated": "{updated}を更新しました", "xpack.securitySolution.exceptions.viewer.paginationDetails": "{partOne}/{partTwo}ページを表示中", "xpack.securitySolution.fieldBrowser.descriptionForScreenReaderOnly": "フィールド{field}の説明:", - "xpack.securitySolution.flyout.correlations.ancestryAlertsHeading": "上位項目に関連する{count, plural, other {#件のアラート}}", - "xpack.securitySolution.flyout.correlations.relatedCasesHeading": "{count}件の関連する{count, plural, other {ケース}}", - "xpack.securitySolution.flyout.correlations.sessionAlertsHeading": "セッションに関連する{count, plural, other {#件のアラート}}", - "xpack.securitySolution.flyout.correlations.sourceAlertsHeading": "ソースイベントに関連する{count, plural, other {#件のアラート}}", "xpack.securitySolution.flyout.errorMessage": "{message}の表示中にエラーが発生しました", "xpack.securitySolution.flyout.errorTitle": "{title}を表示できません", "xpack.securitySolution.footer.autoRefreshActiveTooltip": "自動更新が有効な間、タイムラインはクエリに一致する直近{numberOfItems}件のイベントを表示します。", @@ -33307,25 +33286,14 @@ "xpack.securitySolution.flyout.documentDetails.entitiesButton": "エンティティ", "xpack.securitySolution.flyout.documentDetails.entitiesTitle": "エンティティ", "xpack.securitySolution.flyout.documentDetails.expandDetailButton": "アラート詳細を展開", - "xpack.securitySolution.flyout.documentDetails.headerTitle": "ドキュメント詳細", "xpack.securitySolution.flyout.documentDetails.highlightedFieldsTitle": "ハイライトされたフィールド", "xpack.securitySolution.flyout.documentDetails.insightsOptions": "インサイトオプション", "xpack.securitySolution.flyout.documentDetails.insightsTab": "インサイト", "xpack.securitySolution.flyout.documentDetails.insightsTitle": "インサイト", - "xpack.securitySolution.flyout.documentDetails.investigationGuideText": "調査ガイド", "xpack.securitySolution.flyout.documentDetails.investigationSectionTitle": "調査", "xpack.securitySolution.flyout.documentDetails.investigationsTab": "調査", "xpack.securitySolution.flyout.documentDetails.jsonTab": "JSON", "xpack.securitySolution.flyout.documentDetails.overviewTab": "概要", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.ancestryAlert": "上位項目に関連するアラート", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.ancestryAlerts": "上位項目に関連するアラート", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.relatedCase": "関連するケース", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.relatedCases": "関連するケース", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.sameSessionAlert": "セッションに関連するアラート", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.sameSessionAlerts": "セッションに関連するアラート", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.sameSourceEventAlert": "同じソースイベントに関連するアラート", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.sameSourceEventAlerts": "同じソースイベントに関連するアラート", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlationsText": "相関のフィールド", "xpack.securitySolution.flyout.documentDetails.overviewTab.prevalenceRowText": "共通しない", "xpack.securitySolution.flyout.documentDetails.overviewTab.threatIntelligence.threatEnrichment": "脅威インテリジェンスで拡張されたフィールド", "xpack.securitySolution.flyout.documentDetails.overviewTab.threatIntelligence.threatEnrichments": "脅威インテリジェンスで拡張されたフィールド", @@ -33364,10 +33332,6 @@ "xpack.securitySolution.flyout.prevalenceErrorMessage": "発生率", "xpack.securitySolution.flyout.prevalenceTableAlertCountColumnTitle": "アラート件数", "xpack.securitySolution.flyout.prevalenceTableDocCountColumnTitle": "ドキュメントカウント", - "xpack.securitySolution.flyout.prevalenceTableHostPrevalenceColumnTitle": "ホスト発生率", - "xpack.securitySolution.flyout.prevalenceTableNameColumnTitle": "名前", - "xpack.securitySolution.flyout.prevalenceTableTypeColumnTitle": "型", - "xpack.securitySolution.flyout.prevalenceTableUserPrevalenceColumnTitle": "ユーザー発生率", "xpack.securitySolution.flyout.response.empty": "このイベントに対する対応アクションは定義されていません。", "xpack.securitySolution.flyout.response.title": "対応", "xpack.securitySolution.flyout.sessionViewErrorMessage": "セッションビュー", @@ -34705,7 +34669,6 @@ "xpack.serverlessSearch.apiKey.userFieldLabel": "ユーザー", "xpack.serverlessSearch.back": "戻る", "xpack.serverlessSearch.cancel": "キャンセル", - "xpack.serverlessSearch.configureClient.advancedConfigLabel": "高度な構成", "xpack.serverlessSearch.configureClient.basicConfigLabel": "基本構成", "xpack.serverlessSearch.configureClient.description": "一意のAPIキーとCloud IDでクライアントを初期化", "xpack.serverlessSearch.configureClient.title": "クライアントを構成", @@ -34732,7 +34695,6 @@ "xpack.serverlessSearch.languages.ruby": "Ruby", "xpack.serverlessSearch.learnMore": "詳細", "xpack.serverlessSearch.nav.content": "コンテンツ", - "xpack.serverlessSearch.nav.content.indexingApi": "インデックスAPI", "xpack.serverlessSearch.nav.content.indices": "インデックス", "xpack.serverlessSearch.nav.devTools": "開発ツール", "xpack.serverlessSearch.nav.explore": "探索", diff --git a/x-pack/plugins/translations/translations/zh-CN.json b/x-pack/plugins/translations/translations/zh-CN.json index 3ac0d9aa42fbf..f4f6bf13a8f28 100644 --- a/x-pack/plugins/translations/translations/zh-CN.json +++ b/x-pack/plugins/translations/translations/zh-CN.json @@ -2349,7 +2349,6 @@ "discover.docViews.table.tableTitle": "表", "discover.docViews.table.toggleColumnInTableButtonAriaLabel": "在表中切换列", "discover.docViews.table.toggleColumnInTableButtonTooltip": "在表中切换列", - "discover.docViews.table.toggleFieldDetails": "切换字段详细信息", "discover.docViews.table.unableToFilterForPresenceOfMetaFieldsTooltip": "无法筛选元数据字段是否存在", "discover.docViews.table.unableToFilterForPresenceOfScriptedFieldsTooltip": "无法筛选脚本字段是否存在", "discover.docViews.table.unindexedFieldsCanNotBeSearchedTooltip": "无法搜索未编入索引的字段或被忽略的值", @@ -10477,7 +10476,6 @@ "xpack.cases.caseTable.caseDetailsLinkAria": "单击以访问标题为 {detailName} 的案例", "xpack.cases.caseTable.pushLinkAria": "单击可在 {thirdPartyName} 上查看该事件。", "xpack.cases.caseTable.selectedCasesTitle": "已选定 {totalRules} 个{totalRules, plural, =1 {案例} other {案例}}", - "xpack.cases.caseTable.showingCasesTitle": "正在显示 {totalRules} 个 {totalRules, plural, =1 {案例} other {案例}}", "xpack.cases.caseTable.unit": "{totalCount, plural, =1 {案例} other {案例}}", "xpack.cases.caseView.actionLabel.selectedThirdParty": "已选择 {thirdParty} 作为事件管理系统", "xpack.cases.caseView.actionLabel.viewIncident": "查看 {incidentNumber}", @@ -11948,8 +11946,6 @@ "xpack.elasticAssistant.dataAnonymizationEditor.stats.availableStat.availableTooltip": "可在对话中包含此上下文中的 {total} 个字段", "xpack.elasticAssistant.assistant.apiErrorTitle": "发送消息时出错。如果问题持续存在,请测试连接器配置。", "xpack.elasticAssistant.assistant.clearChat": "清除聊天", - "xpack.elasticAssistant.assistant.connectors.addConnectorButton.connectorAddedDescription": "准备继续对话……", - "xpack.elasticAssistant.assistant.connectors.addConnectorButton.connectorAddedTitle": "已添加生成式 AI 连接器!", "xpack.elasticAssistant.assistant.connectors.addConnectorButton.description": "配置连接器以继续对话", "xpack.elasticAssistant.assistant.connectors.addConnectorButton.title": "添加生成式 AI 连接器", "xpack.elasticAssistant.assistant.connectors.connectorSelector.ariaLabel": "对话选择器", @@ -17236,7 +17232,6 @@ "xpack.idxMgmt.forceMergeIndicesAction.successfullyForceMergedIndicesMessage": "已成功强制合并:[{indexNames}]", "xpack.idxMgmt.formWizard.stepAliases.aliasesEditorHelpText": "使用 JSON 格式:{code}", "xpack.idxMgmt.formWizard.stepSettings.settingsEditorHelpText": "使用 JSON 格式:{code}", - "xpack.idxMgmt.goToDiscover": "在 Discover 中显示 {indexName}", "xpack.idxMgmt.home.componentTemplates.confirmButtonLabel": "删除 {numComponentTemplatesToDelete, plural, other {组件模板}}", "xpack.idxMgmt.home.componentTemplates.deleteModal.deleteDescription": "您即将删除{numComponentTemplatesToDelete, plural, other {以下组件模板}}:", "xpack.idxMgmt.home.componentTemplates.deleteModal.modalTitleText": "删除 {numComponentTemplatesToDelete, plural, other {# 个组件模板}}", @@ -17247,9 +17242,6 @@ "xpack.idxMgmt.home.idxMgmtDescription": "分别或批量更新您的 Elasticsearch 索引。{learnMoreLink}", "xpack.idxMgmt.home.indexTemplatesDescription": "使用可组合索引模板可将设置、映射和别名自动应用到索引。{learnMoreLink}", "xpack.idxMgmt.indexActionsMenu.clearIndexCacheLabel": "清除{selectedIndexCount, plural, other {索引}}缓存", - "xpack.idxMgmt.indexActionsMenu.closeIndex.closeDescription": "您即将关闭{selectedIndexCount, plural, other {以下索引}}:", - "xpack.idxMgmt.indexActionsMenu.closeIndex.confirmModal.confirmButtonText": "关闭{selectedIndexCount, plural, other {索引}}", - "xpack.idxMgmt.indexActionsMenu.closeIndex.confirmModal.modalTitle": "关闭{selectedIndexCount, plural, other {# 个索引}}", "xpack.idxMgmt.indexActionsMenu.closeIndexLabel": "关闭{selectedIndexCount, plural, other {索引}}", "xpack.idxMgmt.indexActionsMenu.deleteIndex.confirmModal.confirmButtonText": "删除 {selectedIndexCount, plural, other {索引}}", "xpack.idxMgmt.indexActionsMenu.deleteIndex.confirmModal.modalTitle": "删除 {selectedIndexCount, plural, other {# 个索引}}", @@ -17576,16 +17568,8 @@ "xpack.idxMgmt.home.legacyIndexTemplatesDeprecation.ctaLearnMoreLinkText": "了解详情。", "xpack.idxMgmt.home.legacyIndexTemplatesDeprecation.learnMoreLinkText": "了解详情。", "xpack.idxMgmt.home.legacyIndexTemplatesTitle": "旧版索引模板", - "xpack.idxMgmt.indexActionsMenu.closeIndex.checkboxLabel": "我了解关闭系统索引的后果", - "xpack.idxMgmt.indexActionsMenu.closeIndex.proceedWithCautionCallOutDescription": "系统索引对内部操作至关重要。您可以使用 Open Index API 重新打开此索引。", - "xpack.idxMgmt.indexActionsMenu.closeIndex.proceedWithCautionCallOutTitle": "关闭系统索引会使 Kibana 出现故障", - "xpack.idxMgmt.indexActionsMenu.closeIndex.systemIndexLabel": "系统索引", - "xpack.idxMgmt.indexActionsMenu.deleteIndex.checkboxLabel": "我了解删除系统索引的后果", "xpack.idxMgmt.indexActionsMenu.deleteIndex.confirmModal.cancelButtonText": "取消", "xpack.idxMgmt.indexActionsMenu.deleteIndex.deleteWarningDescription": "您无法恢复删除的索引。确保您有适当的备份。", - "xpack.idxMgmt.indexActionsMenu.deleteIndex.proceedWithCautionCallOutDescription": "系统索引对内部操作至关重要。如果删除系统索引,将无法恢复。确保您有适当的备份。", - "xpack.idxMgmt.indexActionsMenu.deleteIndex.proceedWithCautionCallOutTitle": "删除系统索引会使 Kibana 出现故障", - "xpack.idxMgmt.indexActionsMenu.deleteIndex.systemIndexLabel": "系统索引", "xpack.idxMgmt.indexActionsMenu.forceMerge.confirmModal.cancelButtonText": "取消", "xpack.idxMgmt.indexActionsMenu.forceMerge.confirmModal.confirmButtonText": "强制合并", "xpack.idxMgmt.indexActionsMenu.forceMerge.confirmModal.modalTitle": "强制合并", @@ -28431,7 +28415,6 @@ "xpack.remoteClusters.remoteClusterForm.sectionModeTitle": "连接模式", "xpack.remoteClusters.remoteClusterForm.sectionNameDescription": "集群的唯一名称。", "xpack.remoteClusters.remoteClusterForm.sectionNameTitle": "名称", - "xpack.remoteClusters.remoteClusterForm.sectionSeedsHelpText.transportPortLinkText": "传输端口", "xpack.remoteClusters.remoteClusterForm.sectionSkipUnavailableDescription.learnMoreLinkLabel": "了解详情。", "xpack.remoteClusters.remoteClusterForm.sectionSkipUnavailableDescription.optionNameLabel": "如果不可用,则跳过", "xpack.remoteClusters.remoteClusterForm.sectionSkipUnavailableLabel": "如果不可用,则跳过", @@ -30024,10 +30007,6 @@ "xpack.securitySolution.exceptions.viewer.lastUpdated": "已更新 {updated}", "xpack.securitySolution.exceptions.viewer.paginationDetails": "正在显示 {partOne} 个,共 {partTwo} 个", "xpack.securitySolution.fieldBrowser.descriptionForScreenReaderOnly": "{field} 字段的描述:", - "xpack.securitySolution.flyout.correlations.ancestryAlertsHeading": "{count, plural, other {# 个告警}}与体系相关", - "xpack.securitySolution.flyout.correlations.relatedCasesHeading": "{count} 个相关{count, plural, other {案例}}", - "xpack.securitySolution.flyout.correlations.sessionAlertsHeading": "{count, plural, other {# 个告警}}与会话相关", - "xpack.securitySolution.flyout.correlations.sourceAlertsHeading": "{count, plural, other {# 个告警}}与源事件相关", "xpack.securitySolution.flyout.errorMessage": "显示 {message} 时出现错误", "xpack.securitySolution.flyout.errorTitle": "无法显示 {title}", "xpack.securitySolution.footer.autoRefreshActiveTooltip": "自动刷新已启用时,时间线将显示匹配查询的最近 {numberOfItems} 个事件。", @@ -33303,25 +33282,14 @@ "xpack.securitySolution.flyout.documentDetails.entitiesButton": "实体", "xpack.securitySolution.flyout.documentDetails.entitiesTitle": "实体", "xpack.securitySolution.flyout.documentDetails.expandDetailButton": "展开告警详情", - "xpack.securitySolution.flyout.documentDetails.headerTitle": "文档详情", "xpack.securitySolution.flyout.documentDetails.highlightedFieldsTitle": "突出显示的字段", "xpack.securitySolution.flyout.documentDetails.insightsOptions": "洞见选项", "xpack.securitySolution.flyout.documentDetails.insightsTab": "洞见", "xpack.securitySolution.flyout.documentDetails.insightsTitle": "洞见", - "xpack.securitySolution.flyout.documentDetails.investigationGuideText": "调查指南", "xpack.securitySolution.flyout.documentDetails.investigationSectionTitle": "调查", "xpack.securitySolution.flyout.documentDetails.investigationsTab": "调查", "xpack.securitySolution.flyout.documentDetails.jsonTab": "JSON", "xpack.securitySolution.flyout.documentDetails.overviewTab": "概览", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.ancestryAlert": "告警与体系相关", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.ancestryAlerts": "告警与体系相关", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.relatedCase": "相关案例", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.relatedCases": "相关案例", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.sameSessionAlert": "告警与会话相关", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.sameSessionAlerts": "告警与会话相关", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.sameSourceEventAlert": "告警与同一源事件相关", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlations.sameSourceEventAlerts": "告警与同一源事件相关", - "xpack.securitySolution.flyout.documentDetails.overviewTab.correlationsText": "相关性字段", "xpack.securitySolution.flyout.documentDetails.overviewTab.prevalenceRowText": "不常见", "xpack.securitySolution.flyout.documentDetails.overviewTab.threatIntelligence.threatEnrichment": "已使用威胁情报扩充字段", "xpack.securitySolution.flyout.documentDetails.overviewTab.threatIntelligence.threatEnrichments": "已使用威胁情报扩充字段", @@ -33360,10 +33328,6 @@ "xpack.securitySolution.flyout.prevalenceErrorMessage": "普及率", "xpack.securitySolution.flyout.prevalenceTableAlertCountColumnTitle": "告警计数", "xpack.securitySolution.flyout.prevalenceTableDocCountColumnTitle": "文档计数", - "xpack.securitySolution.flyout.prevalenceTableHostPrevalenceColumnTitle": "主机普及率", - "xpack.securitySolution.flyout.prevalenceTableNameColumnTitle": "名称", - "xpack.securitySolution.flyout.prevalenceTableTypeColumnTitle": "类型", - "xpack.securitySolution.flyout.prevalenceTableUserPrevalenceColumnTitle": "用户普及率", "xpack.securitySolution.flyout.response.empty": "没有为此事件定义响应操作。", "xpack.securitySolution.flyout.response.title": "响应", "xpack.securitySolution.flyout.sessionViewErrorMessage": "会话视图", @@ -34701,7 +34665,6 @@ "xpack.serverlessSearch.apiKey.userFieldLabel": "用户", "xpack.serverlessSearch.back": "返回", "xpack.serverlessSearch.cancel": "取消", - "xpack.serverlessSearch.configureClient.advancedConfigLabel": "高级配置", "xpack.serverlessSearch.configureClient.basicConfigLabel": "基本配置", "xpack.serverlessSearch.configureClient.description": "使用唯一 API 密钥和云 ID 对客户端进行初始化", "xpack.serverlessSearch.configureClient.title": "配置客户端", @@ -34728,7 +34691,6 @@ "xpack.serverlessSearch.languages.ruby": "Ruby", "xpack.serverlessSearch.learnMore": "了解详情", "xpack.serverlessSearch.nav.content": "内容", - "xpack.serverlessSearch.nav.content.indexingApi": "正在索引 API", "xpack.serverlessSearch.nav.content.indices": "索引", "xpack.serverlessSearch.nav.devTools": "开发工具", "xpack.serverlessSearch.nav.explore": "浏览", diff --git a/x-pack/plugins/triggers_actions_ui/.storybook/decorator.tsx b/x-pack/plugins/triggers_actions_ui/.storybook/decorator.tsx index 19fbb190162d4..14180d867d7ea 100644 --- a/x-pack/plugins/triggers_actions_ui/.storybook/decorator.tsx +++ b/x-pack/plugins/triggers_actions_ui/.storybook/decorator.tsx @@ -58,11 +58,13 @@ export const StorybookContextDecorator: React.FC<StorybookContextDecoratorProps> ExperimentalFeaturesService.init({ experimentalFeatures: { rulesListDatagrid: true, + // @ts-expect-error ts upgrade v4.7.4 internalAlertsTable: true, ruleTagFilter: true, ruleStatusFilter: true, rulesDetailLogs: true, ruleUseExecutionStatus: false, + // @ts-expect-error ts upgrade v4.7.4 ruleKqlBar: true, }, }); diff --git a/x-pack/plugins/triggers_actions_ui/common/experimental_features.ts b/x-pack/plugins/triggers_actions_ui/common/experimental_features.ts index 4b59e95b300ac..501d9b7f22239 100644 --- a/x-pack/plugins/triggers_actions_ui/common/experimental_features.ts +++ b/x-pack/plugins/triggers_actions_ui/common/experimental_features.ts @@ -42,6 +42,7 @@ export const parseExperimentalConfigValue = (configValue: string[]): Experimenta throw new TriggersActionsUIInvalidExperimentalValue(`[${value}] is not valid.`); } + // @ts-expect-error ts upgrade v4.7.4 enabledFeatures[value as keyof ExperimentalFeatures] = true; } diff --git a/x-pack/plugins/triggers_actions_ui/public/application/constants/index.ts b/x-pack/plugins/triggers_actions_ui/public/application/constants/index.ts index 22ead5ca4d2fe..11e93713cbbc1 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/constants/index.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/constants/index.ts @@ -95,7 +95,10 @@ export const LOCKED_COLUMNS = [ ]; export const RULE_EXECUTION_DEFAULT_INITIAL_VISIBLE_COLUMNS = [...LOCKED_COLUMNS.slice(1)]; -export const GLOBAL_EXECUTION_DEFAULT_INITIAL_VISIBLE_COLUMNS = ['rule_name', ...LOCKED_COLUMNS]; +export const GLOBAL_EXECUTION_DEFAULT_INITIAL_VISIBLE_COLUMNS = [ + 'rule_name', + ...LOCKED_COLUMNS.slice(1), +]; export const DEFAULT_NUMBER_FORMAT = 'format:number:defaultPattern'; export const CONNECTOR_EXECUTION_LOG_COLUMN_IDS = [ diff --git a/x-pack/plugins/triggers_actions_ui/public/application/home.tsx b/x-pack/plugins/triggers_actions_ui/public/application/home.tsx index 803044e960bd7..d55e66644a5ae 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/home.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/application/home.tsx @@ -23,7 +23,9 @@ import { useKibana } from '../common/lib/kibana'; import { suspendedComponentWithProps } from './lib/suspended_component_with_props'; const RulesList = lazy(() => import('./sections/rules_list/components/rules_list')); -const LogsList = lazy(() => import('./sections/logs_list/components/logs_list')); +const LogsList = lazy( + () => import('./sections/rule_details/components/global_rule_event_log_list') +); const AlertsPage = lazy(() => import('./sections/alerts_table/alerts_page')); export interface MatchParams { diff --git a/x-pack/plugins/triggers_actions_ui/public/application/hooks/use_load_rule_event_logs.ts b/x-pack/plugins/triggers_actions_ui/public/application/hooks/use_load_rule_event_logs.ts new file mode 100644 index 0000000000000..627b1b2f9a6a6 --- /dev/null +++ b/x-pack/plugins/triggers_actions_ui/public/application/hooks/use_load_rule_event_logs.ts @@ -0,0 +1,70 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +import { useCallback } from 'react'; +import { useQuery } from '@tanstack/react-query'; +import datemath from '@kbn/datemath'; +import { useKibana } from '../../common/lib/kibana'; +import { + loadExecutionLogAggregations, + loadGlobalExecutionLogAggregations, + LoadExecutionLogAggregationsProps, + LoadGlobalExecutionLogAggregationsProps, +} from '../lib/rule_api/load_execution_log_aggregations'; + +const getParsedDate = (date: string) => { + if (date.includes('now')) { + return datemath.parse(date)?.format() || date; + } + return date; +}; + +interface CommonProps { + onError?: (err: any) => void; +} + +type LoadExecutionLogProps = LoadExecutionLogAggregationsProps & CommonProps; +type LoadGlobalExecutionLogProps = LoadGlobalExecutionLogAggregationsProps & CommonProps; + +export type UseLoadRuleEventLogsProps = LoadExecutionLogProps | LoadGlobalExecutionLogProps; + +const isGlobal = (props: UseLoadRuleEventLogsProps): props is LoadGlobalExecutionLogProps => { + return (props as LoadExecutionLogAggregationsProps).id === '*'; +}; + +export function useLoadRuleEventLogs(props: UseLoadRuleEventLogsProps) { + const { http } = useKibana().services; + + const queryFn = useCallback(() => { + if (isGlobal(props)) { + return loadGlobalExecutionLogAggregations({ + http, + ...props, + dateStart: getParsedDate(props.dateStart), + ...(props.dateEnd ? { dateEnd: getParsedDate(props.dateEnd) } : {}), + }); + } + return loadExecutionLogAggregations({ + http, + ...props, + dateStart: getParsedDate(props.dateStart), + ...(props.dateEnd ? { dateEnd: getParsedDate(props.dateEnd) } : {}), + }); + }, [props, http]); + + const { data, isLoading, isFetching, refetch } = useQuery({ + queryKey: ['loadRuleEventLog', props], + queryFn, + onError: props.onError, + refetchOnWindowFocus: false, + }); + + return { + data, + isLoading: isLoading || isFetching, + loadEventLogs: refetch, + }; +} diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/get_filter.test.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/get_filter.test.ts index 53b75afd774da..7a18cc2b1e8a6 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/get_filter.test.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/get_filter.test.ts @@ -34,4 +34,10 @@ describe('getFilter', () => { test('should not return filter if outcome filter is invalid', () => { expect(getFilter({ outcomeFilter: ['doesntexist'] })).toEqual([]); }); + + test('should return ruleTypeId filter', () => { + expect(getFilter({ ruleTypeIds: ['test-1', 'test-2'] })).toEqual([ + 'kibana.alert.rule.rule_type_id:(test-1 or test-2)', + ]); + }); }); diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/get_filter.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/get_filter.ts index 59ccef9734b65..c82497ab06a5a 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/get_filter.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/get_filter.ts @@ -10,10 +10,12 @@ export const getFilter = ({ message, outcomeFilter, runId, + ruleTypeIds, }: { message?: string; outcomeFilter?: string[]; runId?: string; + ruleTypeIds?: string[]; }) => { const filter: string[] = []; @@ -33,6 +35,10 @@ export const getFilter = ({ filter.push(`kibana.alert.rule.execution.uuid: ${runId}`); } + if (ruleTypeIds?.length) { + filter.push(`kibana.alert.rule.rule_type_id:(${ruleTypeIds.join(' or ')})`); + } + return filter; }; diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/load_execution_kpi_aggregations.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/load_execution_kpi_aggregations.ts index 076e1167f444a..735ea6185da86 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/load_execution_kpi_aggregations.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/load_execution_kpi_aggregations.ts @@ -16,6 +16,7 @@ export interface LoadExecutionKPIAggregationsProps { message?: string; dateStart: string; dateEnd?: string; + ruleTypeIds?: string[]; } export const loadExecutionKPIAggregations = ({ @@ -25,8 +26,9 @@ export const loadExecutionKPIAggregations = ({ message, dateStart, dateEnd, + ruleTypeIds, }: LoadExecutionKPIAggregationsProps & { http: HttpSetup }) => { - const filter = getFilter({ outcomeFilter, message }); + const filter = getFilter({ outcomeFilter, message, ruleTypeIds }); return http.get<IExecutionKPIResult>( `${INTERNAL_BASE_ALERTING_API_PATH}/rule/${id}/_execution_kpi`, diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/load_execution_log_aggregations.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/load_execution_log_aggregations.ts index 671a1edce467d..334b4aea135a2 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/load_execution_log_aggregations.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/load_execution_log_aggregations.ts @@ -53,6 +53,7 @@ export interface LoadExecutionLogAggregationsProps { dateStart: string; dateEnd?: string; outcomeFilter?: string[]; + ruleTypeIds?: string[]; message?: string; perPage?: number; page?: number; @@ -70,13 +71,14 @@ export const loadExecutionLogAggregations = async ({ dateStart, dateEnd, outcomeFilter, + ruleTypeIds, message, perPage = 10, page = 0, sort = [], }: LoadExecutionLogAggregationsProps & { http: HttpSetup }) => { const sortField: any[] = sort; - const filter = getFilter({ outcomeFilter, message }); + const filter = getFilter({ outcomeFilter, message, ruleTypeIds }); const result = await http.get<AsApiContract<IExecutionLogResult>>( `${INTERNAL_BASE_ALERTING_API_PATH}/rule/${id}/_execution_log`, @@ -102,6 +104,7 @@ export const loadGlobalExecutionLogAggregations = async ({ dateStart, dateEnd, outcomeFilter, + ruleTypeIds, message, perPage = 10, page = 0, @@ -109,7 +112,7 @@ export const loadGlobalExecutionLogAggregations = async ({ namespaces, }: LoadGlobalExecutionLogAggregationsProps & { http: HttpSetup }) => { const sortField: any[] = sort; - const filter = getFilter({ outcomeFilter, message }); + const filter = getFilter({ outcomeFilter, message, ruleTypeIds }); const result = await http.get<AsApiContract<IExecutionLogResult>>( `${INTERNAL_BASE_ALERTING_API_PATH}/_global_execution_logs`, diff --git a/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/load_global_execution_kpi_aggregations.ts b/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/load_global_execution_kpi_aggregations.ts index 7052257d1fc87..67b0c225beb59 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/load_global_execution_kpi_aggregations.ts +++ b/x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/load_global_execution_kpi_aggregations.ts @@ -17,6 +17,7 @@ export interface LoadGlobalExecutionKPIAggregationsProps { dateStart: string; dateEnd?: string; namespaces?: Array<string | undefined>; + ruleTypeIds?: string[]; } export const loadGlobalExecutionKPIAggregations = ({ @@ -27,8 +28,9 @@ export const loadGlobalExecutionKPIAggregations = ({ dateStart, dateEnd, namespaces, + ruleTypeIds, }: LoadGlobalExecutionKPIAggregationsProps & { http: HttpSetup }) => { - const filter = getFilter({ outcomeFilter, message }); + const filter = getFilter({ outcomeFilter, message, ruleTypeIds }); return http.get<IExecutionKPIResult>(`${INTERNAL_BASE_ALERTING_API_PATH}/_global_execution_kpi`, { query: { diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/alerts_table/alerts_table.test.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/alerts_table/alerts_table.test.tsx index cd8d8b7c7209a..564ac2d80bad9 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/sections/alerts_table/alerts_table.test.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/application/sections/alerts_table/alerts_table.test.tsx @@ -33,7 +33,7 @@ import { bulkActionsReducer } from './bulk_actions/reducer'; import { BrowserFields } from '@kbn/rule-registry-plugin/common'; import { getCasesMockMap } from './cases/index.mock'; import { getMaintenanceWindowMockMap } from './maintenance_windows/index.mock'; -import { createAppMockRenderer } from '../test_utils'; +import { createAppMockRenderer, getJsDomPerformanceFix } from '../test_utils'; import { createCasesServiceMock } from './index.mock'; import { useCaseViewNavigation } from './cases/use_case_view_navigation'; import { act } from 'react-dom/test-utils'; @@ -196,41 +196,14 @@ const mockedUseCellActions: UseCellActions = () => { }; }; -const originalGetComputedStyle = Object.assign({}, window.getComputedStyle); +const { fix, cleanup } = getJsDomPerformanceFix(); beforeAll(() => { - // The JSDOM implementation is too slow - // Especially for dropdowns that try to position themselves - // perf issue - https://github.com/jsdom/jsdom/issues/3234 - Object.defineProperty(window, 'getComputedStyle', { - value: (el: HTMLElement) => { - /** - * This is based on the jsdom implementation of getComputedStyle - * https://github.com/jsdom/jsdom/blob/9dae17bf0ad09042cfccd82e6a9d06d3a615d9f4/lib/jsdom/browser/Window.js#L779-L820 - * - * It is missing global style parsing and will only return styles applied directly to an element. - * Will not return styles that are global or from emotion - */ - const declaration = new CSSStyleDeclaration(); - const { style } = el; - - Array.prototype.forEach.call(style, (property: string) => { - declaration.setProperty( - property, - style.getPropertyValue(property), - style.getPropertyPriority(property) - ); - }); - - return declaration; - }, - configurable: true, - writable: true, - }); + fix(); }); afterAll(() => { - Object.defineProperty(window, 'getComputedStyle', originalGetComputedStyle); + cleanup(); }); describe('AlertsTable', () => { diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/common/components/event_log/event_log_list_status_filter.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/common/components/event_log/event_log_list_status_filter.tsx index 29c2e8a0f4b88..44ea69016497b 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/sections/common/components/event_log/event_log_list_status_filter.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/application/sections/common/components/event_log/event_log_list_status_filter.tsx @@ -46,6 +46,7 @@ export const EventLogListStatusFilter = (props: EventLogListStatusFilterProps) = <EuiPopover isOpen={isPopoverOpen} closePopover={() => setIsPopoverOpen(false)} + data-test-subj="eventLogStatusFilter" button={ <EuiFilterButton data-test-subj="eventLogStatusFilterButton" diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/common/components/refine_search_prompt.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/common/components/refine_search_prompt.tsx index 381fc9ca6d26f..dd30f5cf6830e 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/sections/common/components/refine_search_prompt.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/application/sections/common/components/refine_search_prompt.tsx @@ -40,7 +40,7 @@ export const RefineSearchPrompt = (props: RefineSearchFooterProps) => { } return ( - <EuiText style={textStyles} textAlign="center" size="s"> + <EuiText style={textStyles} textAlign="center" size="s" data-test-subj="refineSearchPrompt"> <FormattedMessage id="xpack.triggersActionsUI.sections.refineSearchPrompt.prompt" defaultMessage="These are the first {visibleDocumentSize} documents matching your search, refine your search to see others." diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/index.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/index.tsx index 3cab90c72694c..dd7e945fd4ec6 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/sections/index.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/application/sections/index.tsx @@ -61,3 +61,6 @@ export const RuleTagBadge = suspendedComponentWithProps( export const RuleStatusPanel = suspendedComponentWithProps( lazy(() => import('./rule_details/components/rule_status_panel')) ); +export const GlobalRuleEventLogList = suspendedComponentWithProps( + lazy(() => import('./rule_details/components/global_rule_event_log_list')) +); diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/logs_list/components/logs_list.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/logs_list/components/logs_list.tsx deleted file mode 100644 index d51b0e8d5d169..0000000000000 --- a/x-pack/plugins/triggers_actions_ui/public/application/sections/logs_list/components/logs_list.tsx +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { suspendedComponentWithProps } from '../../../lib/suspended_component_with_props'; -import { - RuleEventLogListTableWithApi, - RuleEventLogListCommonProps, -} from '../../rule_details/components/rule_event_log_list_table'; - -const GLOBAL_EVENT_LOG_LIST_STORAGE_KEY = - 'xpack.triggersActionsUI.globalEventLogList.initialColumns'; - -export const LogsList = ({ - setHeaderActions, -}: { - setHeaderActions: RuleEventLogListCommonProps['setHeaderActions']; -}) => { - return suspendedComponentWithProps( - RuleEventLogListTableWithApi, - 'xl' - )({ - ruleId: '*', - refreshToken: { - resolve: () => { - /* noop */ - }, - reject: () => { - /* noop */ - }, - }, - initialPageSize: 50, - hasRuleNames: true, - hasAllSpaceSwitch: true, - localStorageKey: GLOBAL_EVENT_LOG_LIST_STORAGE_KEY, - setHeaderActions, - }); -}; - -// eslint-disable-next-line import/no-default-export -export default LogsList; diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/global_rule_event_log_list.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/global_rule_event_log_list.tsx new file mode 100644 index 0000000000000..bb939e3e26180 --- /dev/null +++ b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/global_rule_event_log_list.tsx @@ -0,0 +1,60 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React, { useCallback } from 'react'; +import { SpacesContextProps } from '@kbn/spaces-plugin/public'; +import { RuleEventLogListTable, RuleEventLogListCommonProps } from './rule_event_log_list_table'; +import { useKibana } from '../../../../common/lib/kibana'; + +const getEmptyFunctionComponent: React.FC<SpacesContextProps> = ({ children }) => <>{children}</>; + +export interface GlobalRuleEventLogListProps { + setHeaderActions?: RuleEventLogListCommonProps['setHeaderActions']; + localStorageKey?: RuleEventLogListCommonProps['localStorageKey']; + filteredRuleTypes?: RuleEventLogListCommonProps['filteredRuleTypes']; +} + +const GLOBAL_EVENT_LOG_LIST_STORAGE_KEY = + 'xpack.triggersActionsUI.globalEventLogList.initialColumns'; + +const REFRESH_TOKEN = { + resolve: () => { + /* noop */ + }, + reject: () => { + /* noop */ + }, +}; + +export const GlobalRuleEventLogList = (props: GlobalRuleEventLogListProps) => { + const { setHeaderActions, localStorageKey, filteredRuleTypes } = props; + const { spaces } = useKibana().services; + + // eslint-disable-next-line react-hooks/exhaustive-deps + const SpacesContextWrapper = useCallback( + spaces ? spaces.ui.components.getSpacesContextProvider : getEmptyFunctionComponent, + [spaces] + ); + + return ( + <SpacesContextWrapper feature="triggersActions"> + <RuleEventLogListTable + ruleId={'*'} + refreshToken={REFRESH_TOKEN} + initialPageSize={50} + hasRuleNames={true} + hasAllSpaceSwitch={true} + localStorageKey={localStorageKey || GLOBAL_EVENT_LOG_LIST_STORAGE_KEY} + filteredRuleTypes={filteredRuleTypes} + setHeaderActions={setHeaderActions} + /> + </SpacesContextWrapper> + ); +}; + +// eslint-disable-next-line import/no-default-export +export { GlobalRuleEventLogList as default }; diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule.test.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule.test.tsx index 8cbaabc309364..7f49f8872f109 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule.test.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule.test.tsx @@ -7,15 +7,16 @@ import * as React from 'react'; import { shallow } from 'enzyme'; +import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; import { mountWithIntl, nextTick } from '@kbn/test-jest-helpers'; import { act } from 'react-dom/test-utils'; import type { Capabilities } from '@kbn/core/public'; import { coreMock } from '@kbn/core/public/mocks'; -import { RuleComponent, alertToListItem } from './rule'; +import { RuleComponent, alertToListItem, RuleComponentProps } from './rule'; import { AlertListItem } from './types'; import { RuleAlertList } from './rule_alert_list'; import { RuleSummary, AlertStatus, RuleType, RuleTypeModel } from '../../../../types'; -import { mockRule } from './test_helpers'; +import { mockRule, mockLogResponse } from './test_helpers'; import { ruleTypeRegistryMock } from '../../../rule_type_registry.mock'; import { useKibana } from '../../../../common/lib/kibana'; import { useBulkGetMaintenanceWindows } from '../../alerts_table/hooks/use_bulk_get_maintenance_windows'; @@ -26,6 +27,13 @@ jest.mock('../../../../common/get_experimental_features', () => ({ getIsExperimentalFeatureEnabled: jest.fn(), })); jest.mock('../../alerts_table/hooks/use_bulk_get_maintenance_windows'); +jest.mock('../../../lib/rule_api/load_execution_log_aggregations', () => ({ + loadExecutionLogAggregations: jest.fn(), +})); + +const { loadExecutionLogAggregations } = jest.requireMock( + '../../../lib/rule_api/load_execution_log_aggregations' +); const mocks = coreMock.createSetup(); @@ -85,8 +93,30 @@ beforeEach(() => { data: maintenanceWindowsMap, isFetching: false, }); + loadExecutionLogAggregations.mockResolvedValue(mockLogResponse); +}); + +afterEach(() => { + jest.clearAllMocks(); +}); + +const queryClient = new QueryClient({ + defaultOptions: { + queries: { + retry: false, + cacheTime: 0, + }, + }, }); +const RuleComponentWithProvider = (props: RuleComponentProps) => { + return ( + <QueryClientProvider client={queryClient}> + <RuleComponent {...props} /> + </QueryClientProvider> + ); +}; + describe('rules', () => { it('render a list of rules', async () => { const rule = mockRule(); @@ -116,7 +146,7 @@ describe('rules', () => { ]; const wrapper = mountWithIntl( - <RuleComponent + <RuleComponentWithProvider {...mockAPIs} rule={rule} ruleType={ruleType} @@ -171,7 +201,7 @@ describe('rules', () => { }; const wrapper = mountWithIntl( - <RuleComponent + <RuleComponentWithProvider {...mockAPIs} rule={rule} ruleType={ruleType} @@ -202,7 +232,7 @@ describe('rules', () => { const ruleUsEast: AlertStatus = { status: 'OK', muted: false, flapping: false }; const wrapper = mountWithIntl( - <RuleComponent + <RuleComponentWithProvider {...mockAPIs} rule={rule} ruleType={ruleType} @@ -348,7 +378,7 @@ describe('execution duration overview', () => { const ruleSummary = mockRuleSummary(); const wrapper = mountWithIntl( - <RuleComponent + <RuleComponentWithProvider {...mockAPIs} rule={rule} ruleType={ruleType} @@ -375,7 +405,7 @@ describe('disable/enable functionality', () => { const ruleType = mockRuleType(); const ruleSummary = mockRuleSummary(); const wrapper = mountWithIntl( - <RuleComponent + <RuleComponentWithProvider {...mockAPIs} rule={rule} ruleType={ruleType} @@ -397,7 +427,7 @@ describe('disable/enable functionality', () => { const ruleType = mockRuleType(); const ruleSummary = mockRuleSummary(); const wrapper = mountWithIntl( - <RuleComponent + <RuleComponentWithProvider {...mockAPIs} rule={rule} ruleType={ruleType} diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule.tsx index e520d222cec16..38b43114452ef 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule.tsx @@ -35,7 +35,7 @@ const RuleEventLogList = lazy(() => import('./rule_event_log_list')); const RuleAlertList = lazy(() => import('./rule_alert_list')); const RuleDefinition = lazy(() => import('./rule_definition')); -type RuleProps = { +export type RuleComponentProps = { rule: Rule; ruleType: RuleType; readOnly: boolean; @@ -64,7 +64,7 @@ export function RuleComponent({ onChangeDuration, durationEpoch = Date.now(), isLoadingChart, -}: RuleProps) { +}: RuleComponentProps) { const { ruleTypeRegistry, actionTypeRegistry } = useKibana().services; const alerts = Object.entries(ruleSummary.alerts) @@ -152,6 +152,7 @@ export function RuleComponent({ healthColor={healthColor} statusMessage={statusMessage} requestRefresh={requestRefresh} + refreshToken={refreshToken} /> </EuiFlexItem> {suspendedComponentWithProps( diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list.test.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list.test.tsx index 7a427de413ee0..ee860db2de387 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list.test.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list.test.tsx @@ -6,37 +6,47 @@ */ import React from 'react'; -import { v4 as uuidv4 } from 'uuid'; -import { act } from 'react-dom/test-utils'; -import { mountWithIntl, nextTick } from '@kbn/test-jest-helpers'; +import { render, screen, waitFor, cleanup } from '@testing-library/react'; import { useKibana } from '../../../../common/lib/kibana'; import { ActionGroup, ALERTS_FEATURE_ID } from '@kbn/alerting-plugin/common'; -import { EuiSuperDatePicker, EuiDataGrid } from '@elastic/eui'; -import { EventLogListStatusFilter } from '../../common/components/event_log'; -import { RuleEventLogList } from './rule_event_log_list'; -import { RefineSearchPrompt } from '../../common/components/refine_search_prompt'; -import { - RULE_EXECUTION_DEFAULT_INITIAL_VISIBLE_COLUMNS, - GLOBAL_EXECUTION_DEFAULT_INITIAL_VISIBLE_COLUMNS, -} from '../../../constants'; +import { __IntlProvider as IntlProvider } from '@kbn/i18n-react'; +import { RuleEventLogList, RuleEventLogListProps } from './rule_event_log_list'; import { mockRule, mockRuleType, mockRuleSummary, mockLogResponse } from './test_helpers'; import { RuleType } from '../../../../types'; import { loadActionErrorLog } from '../../../lib/rule_api/load_action_error_log'; +import { getJsDomPerformanceFix } from '../../test_utils'; const useKibanaMock = useKibana as jest.Mocked<typeof useKibana>; jest.mock('../../../../common/lib/kibana'); jest.mock('../../../lib/rule_api/load_action_error_log', () => ({ loadActionErrorLog: jest.fn(), })); +jest.mock('../../../lib/rule_api/load_execution_log_aggregations', () => ({ + loadExecutionLogAggregations: jest.fn(), +})); +jest.mock('../../../../common/get_experimental_features', () => ({ + getIsExperimentalFeatureEnabled: jest.fn(), +})); +jest.mock('../../../hooks/use_load_rule_event_logs', () => ({ + useLoadRuleEventLogs: jest.fn(), +})); + +const { getIsExperimentalFeatureEnabled } = jest.requireMock( + '../../../../common/get_experimental_features' +); +const { useLoadRuleEventLogs } = jest.requireMock('../../../hooks/use_load_rule_event_logs'); + +const RuleEventLogListWithProvider = (props: RuleEventLogListProps<'stackManagement'>) => { + return ( + <IntlProvider locale="en"> + <RuleEventLogList {...props} /> + </IntlProvider> + ); +}; const loadActionErrorLogMock = loadActionErrorLog as unknown as jest.MockedFunction< typeof loadActionErrorLog >; - -const loadExecutionLogAggregationsMock = jest.fn(); - -const onChangeDurationMock = jest.fn(); - const ruleMock = mockRule(); const authorizedConsumers = { @@ -64,10 +74,22 @@ const mockErrorLogResponse = { ], }; -// FLAKY: https://github.com/elastic/kibana/issues/139062 -describe.skip('rule_event_log_list', () => { +const onChangeDurationMock = jest.fn(); + +const { fix, cleanup: cleanupJsDomePerformanceFix } = getJsDomPerformanceFix(); + +beforeAll(() => { + fix(); +}); + +afterAll(() => { + cleanupJsDomePerformanceFix(); +}); + +const mockLoadEventLog = jest.fn(); +describe('rule_event_log_list', () => { beforeEach(() => { - jest.clearAllMocks(); + getIsExperimentalFeatureEnabled.mockImplementation(() => true); useKibanaMock().services.uiSettings.get = jest.fn().mockImplementation((value: string) => { if (value === 'timepicker:quickRanges') { return [ @@ -80,640 +102,39 @@ describe.skip('rule_event_log_list', () => { } }); loadActionErrorLogMock.mockResolvedValue(mockErrorLogResponse); - loadExecutionLogAggregationsMock.mockResolvedValue(mockLogResponse); - }); - - it('renders correctly', async () => { - const wrapper = mountWithIntl( - <RuleEventLogList - ruleId={ruleMock.id} - ruleType={ruleType} - ruleSummary={mockRuleSummary({ ruleTypeId: ruleMock.ruleTypeId })} - numberOfExecutions={60} - onChangeDuration={onChangeDurationMock} - loadExecutionLogAggregations={loadExecutionLogAggregationsMock} - /> - ); - - // Run the initial load fetch call - expect(loadExecutionLogAggregationsMock).toHaveBeenCalledTimes(1); - - expect(loadExecutionLogAggregationsMock).toHaveBeenCalledWith( - expect.objectContaining({ - id: ruleMock.id, - sort: [], - outcomeFilter: [], - page: 0, - perPage: 10, - }) - ); - - // Loading - expect(wrapper.find(EuiSuperDatePicker).props().isLoading).toBeTruthy(); - - // Let the load resolve - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - // Verify the initial columns are rendered - RULE_EXECUTION_DEFAULT_INITIAL_VISIBLE_COLUMNS.forEach((column) => { - expect(wrapper.find(`[data-test-subj="dataGridHeaderCell-${column}"]`).exists()).toBeTruthy(); - }); - - expect(wrapper.find(EuiSuperDatePicker).props().isLoading).toBeFalsy(); - - expect(wrapper.find(EventLogListStatusFilter).exists()).toBeTruthy(); - expect(wrapper.find('[data-gridcell-column-id="timestamp"]').length).toEqual(5); - expect(wrapper.find(EuiDataGrid).props().rowCount).toEqual(mockLogResponse.total); - }); - - it('can sort by single and/or multiple column(s)', async () => { - const wrapper = mountWithIntl( - <RuleEventLogList - ruleId={ruleMock.id} - ruleType={ruleType} - ruleSummary={mockRuleSummary({ ruleTypeId: ruleMock.ruleTypeId })} - numberOfExecutions={60} - onChangeDuration={onChangeDurationMock} - loadExecutionLogAggregations={loadExecutionLogAggregationsMock} - /> - ); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - let headerCellButton = wrapper.find('[data-test-subj="dataGridHeaderCell-timestamp"] button'); - - headerCellButton.simulate('click'); - - let headerAction = wrapper.find('[data-test-subj="dataGridHeaderCellActionGroup-timestamp"]'); - - expect(headerAction.exists()).toBeTruthy(); - - // Sort by the timestamp column - headerAction.find('li').at(1).find('button').simulate('click'); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - expect(loadExecutionLogAggregationsMock).toHaveBeenLastCalledWith( - expect.objectContaining({ - id: ruleMock.id, - message: '', - outcomeFilter: [], - page: 0, - perPage: 10, - sort: [{ timestamp: { order: 'desc' } }], - }) - ); - - // Open the popover again - headerCellButton.simulate('click'); - - headerAction = wrapper.find('[data-test-subj="dataGridHeaderCellActionGroup-timestamp"]'); - - // Sort by the timestamp column, this time, in the opposite direction - headerAction.find('li').at(2).find('button').simulate('click'); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - expect(loadExecutionLogAggregationsMock).toHaveBeenLastCalledWith( - expect.objectContaining({ - id: ruleMock.id, - sort: [{ timestamp: { order: 'desc' } }], - outcomeFilter: [], - page: 0, - perPage: 10, - }) - ); - - // Find another column - headerCellButton = wrapper.find( - '[data-test-subj="dataGridHeaderCell-execution_duration"] button' - ); - - // Open the popover again - headerCellButton.simulate('click'); - - headerAction = wrapper.find( - '[data-test-subj="dataGridHeaderCellActionGroup-execution_duration"]' - ); - - // Sort - headerAction.find('li').at(1).find('button').simulate('click'); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - expect(loadExecutionLogAggregationsMock).toHaveBeenLastCalledWith( - expect.objectContaining({ - id: ruleMock.id, - sort: [ - { - timestamp: { order: 'desc' }, - }, - { - execution_duration: { order: 'desc' }, - }, - ], - outcomeFilter: [], - page: 0, - perPage: 10, - }) - ); - }); - - it('can filter by execution log outcome status', async () => { - const wrapper = mountWithIntl( - <RuleEventLogList - ruleId={ruleMock.id} - ruleType={ruleType} - ruleSummary={mockRuleSummary({ ruleTypeId: ruleMock.ruleTypeId })} - numberOfExecutions={60} - onChangeDuration={onChangeDurationMock} - loadExecutionLogAggregations={loadExecutionLogAggregationsMock} - /> - ); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - // Filter by success - wrapper.find('[data-test-subj="eventLogStatusFilterButton"]').at(0).simulate('click'); - - wrapper.find('[data-test-subj="eventLogStatusFilter-success"]').at(0).simulate('click'); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - expect(loadExecutionLogAggregationsMock).toHaveBeenLastCalledWith( - expect.objectContaining({ - id: ruleMock.id, - sort: [], - outcomeFilter: ['success'], - page: 0, - perPage: 10, - }) - ); - - // Filter by failure as well - wrapper.find('[data-test-subj="eventLogStatusFilterButton"]').at(0).simulate('click'); - - wrapper.find('[data-test-subj="eventLogStatusFilter-failure"]').at(0).simulate('click'); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - expect(loadExecutionLogAggregationsMock).toHaveBeenLastCalledWith( - expect.objectContaining({ - id: ruleMock.id, - sort: [], - outcomeFilter: ['success', 'failure'], - page: 0, - perPage: 10, - }) - ); - }); - - it('can paginate', async () => { - loadExecutionLogAggregationsMock.mockResolvedValue({ - ...mockLogResponse, - total: 100, - }); - - const wrapper = mountWithIntl( - <RuleEventLogList - ruleId={ruleMock.id} - ruleType={ruleType} - ruleSummary={mockRuleSummary({ ruleTypeId: ruleMock.ruleTypeId })} - numberOfExecutions={60} - onChangeDuration={onChangeDurationMock} - loadExecutionLogAggregations={loadExecutionLogAggregationsMock} - /> - ); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - expect(wrapper.find('.euiPagination').exists()).toBeTruthy(); - - // Paginate to the next page - wrapper.find('.euiPagination .euiPagination__item a').at(0).simulate('click'); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - expect(loadExecutionLogAggregationsMock).toHaveBeenLastCalledWith( - expect.objectContaining({ - id: ruleMock.id, - sort: [], - outcomeFilter: [], - page: 1, - perPage: 10, - }) - ); - - // Change the page size - wrapper.find('[data-test-subj="tablePaginationPopoverButton"] button').simulate('click'); - - wrapper.find('[data-test-subj="tablePagination-50-rows"] button').simulate('click'); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - expect(loadExecutionLogAggregationsMock).toHaveBeenLastCalledWith( - expect.objectContaining({ - id: ruleMock.id, - sort: [], - outcomeFilter: [], - page: 0, - perPage: 50, - }) - ); - }); - - it('can filter by start and end date', async () => { - const nowMock = jest.spyOn(Date, 'now').mockReturnValue(0); - - const wrapper = mountWithIntl( - <RuleEventLogList - ruleId={ruleMock.id} - ruleType={ruleType} - ruleSummary={mockRuleSummary({ ruleTypeId: ruleMock.ruleTypeId })} - numberOfExecutions={60} - onChangeDuration={onChangeDurationMock} - loadExecutionLogAggregations={loadExecutionLogAggregationsMock} - /> - ); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - expect(loadExecutionLogAggregationsMock).toHaveBeenLastCalledWith( - expect.objectContaining({ - id: ruleMock.id, - sort: [], - outcomeFilter: [], - page: 0, - perPage: 10, - dateStart: '1969-12-30T19:00:00-05:00', - dateEnd: '1969-12-31T19:00:00-05:00', - }) - ); - - wrapper - .find('[data-test-subj="superDatePickerToggleQuickMenuButton"] button') - .simulate('click'); - - wrapper - .find('[data-test-subj="superDatePickerCommonlyUsed_Last_15 minutes"] button') - .simulate('click'); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - expect(loadExecutionLogAggregationsMock).toHaveBeenLastCalledWith( - expect.objectContaining({ - id: ruleMock.id, - sort: [], - outcomeFilter: [], - page: 0, - perPage: 10, - dateStart: '1969-12-31T18:45:00-05:00', - dateEnd: '1969-12-31T19:00:00-05:00', - }) - ); - - nowMock.mockRestore(); - }); - - it('can save display columns to localStorage', async () => { - const wrapper = mountWithIntl( - <RuleEventLogList - ruleId={ruleMock.id} - ruleType={ruleType} - ruleSummary={mockRuleSummary({ ruleTypeId: ruleMock.ruleTypeId })} - numberOfExecutions={60} - onChangeDuration={onChangeDurationMock} - loadExecutionLogAggregations={loadExecutionLogAggregationsMock} - /> - ); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - expect( - JSON.parse( - localStorage.getItem('xpack.triggersActionsUI.ruleEventLogList.initialColumns') ?? 'null' - ) - ).toEqual(GLOBAL_EXECUTION_DEFAULT_INITIAL_VISIBLE_COLUMNS); - - wrapper.find('[data-test-subj="dataGridColumnSelectorButton"] button').simulate('click'); - - wrapper - .find( - '[data-test-subj="dataGridColumnSelectorToggleColumnVisibility-num_active_alerts"] button' - ) - .simulate('click'); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - expect( - JSON.parse( - localStorage.getItem('xpack.triggersActionsUI.ruleEventLogList.initialColumns') ?? 'null' - ) - ).toEqual(['timestamp', 'execution_duration', 'status', 'message', 'num_errored_actions']); - }); - - it('does not show the refine search prompt normally', async () => { - const wrapper = mountWithIntl( - <RuleEventLogList - ruleId={ruleMock.id} - ruleType={ruleType} - ruleSummary={mockRuleSummary({ ruleTypeId: ruleMock.ruleTypeId })} - numberOfExecutions={60} - onChangeDuration={onChangeDurationMock} - loadExecutionLogAggregations={loadExecutionLogAggregationsMock} - /> - ); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - expect(wrapper.find(RefineSearchPrompt).exists()).toBeFalsy(); - }); - - it('shows the refine search prompt when our queries return too much data', async () => { - loadExecutionLogAggregationsMock.mockResolvedValue({ - data: [], - total: 1100, - }); - - const wrapper = mountWithIntl( - <RuleEventLogList - ruleId={ruleMock.id} - ruleType={ruleType} - ruleSummary={mockRuleSummary({ ruleTypeId: ruleMock.ruleTypeId })} - numberOfExecutions={60} - onChangeDuration={onChangeDurationMock} - loadExecutionLogAggregations={loadExecutionLogAggregationsMock} - /> - ); - - await act(async () => { - await nextTick(); - wrapper.update(); + useLoadRuleEventLogs.mockReturnValue({ + data: mockLogResponse, + isLoading: false, + loadEventLogs: mockLoadEventLog, }); - - // Initially do not show the prompt - expect(wrapper.find(RefineSearchPrompt).exists()).toBeFalsy(); - - // Go to the last page - wrapper.find('[data-test-subj="pagination-button-99"]').first().simulate('click'); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - // Prompt is shown - expect(wrapper.find(RefineSearchPrompt).text()).toEqual( - 'These are the first 1000 documents matching your search, refine your search to see others. Back to top.' - ); - - // Go to the second last page - wrapper.find('[data-test-subj="pagination-button-98"]').first().simulate('click'); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - // Prompt is not shown - expect(wrapper.find(RefineSearchPrompt).exists()).toBeFalsy(); }); - it('shows the correct pagination results when results are 0', async () => { - loadExecutionLogAggregationsMock.mockResolvedValue({ - ...mockLogResponse, - total: 0, - }); - - const wrapper = mountWithIntl( - <RuleEventLogList - ruleId={ruleMock.id} - ruleType={ruleType} - ruleSummary={mockRuleSummary({ ruleTypeId: ruleMock.ruleTypeId })} - numberOfExecutions={60} - onChangeDuration={onChangeDurationMock} - loadExecutionLogAggregations={loadExecutionLogAggregationsMock} - /> - ); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - expect(wrapper.find('[data-test-subj="eventLogPaginationStatus"]').first().text()).toEqual( - 'Showing 0 of 0 log entries' - ); - }); - - it('shows the correct pagination result when result is 1', async () => { - loadExecutionLogAggregationsMock.mockResolvedValue({ - ...mockLogResponse, - total: 1, - }); - - const wrapper = mountWithIntl( - <RuleEventLogList - ruleId={ruleMock.id} - ruleType={ruleType} - ruleSummary={mockRuleSummary({ ruleTypeId: ruleMock.ruleTypeId })} - numberOfExecutions={60} - onChangeDuration={onChangeDurationMock} - loadExecutionLogAggregations={loadExecutionLogAggregationsMock} - /> - ); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - expect(wrapper.find('[data-test-subj="eventLogPaginationStatus"]').first().text()).toEqual( - 'Showing 1 - 1 of 1 log entry' - ); - }); - - it('shows the correct pagination result when paginated', async () => { - loadExecutionLogAggregationsMock.mockResolvedValue({ - ...mockLogResponse, - total: 85, - }); - - const wrapper = mountWithIntl( - <RuleEventLogList - ruleId={ruleMock.id} - ruleType={ruleType} - ruleSummary={mockRuleSummary({ ruleTypeId: ruleMock.ruleTypeId })} - numberOfExecutions={60} - onChangeDuration={onChangeDurationMock} - loadExecutionLogAggregations={loadExecutionLogAggregationsMock} - /> - ); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - expect(wrapper.find('[data-test-subj="eventLogPaginationStatus"]').first().text()).toEqual( - 'Showing 1 - 10 of 85 log entries' - ); - - wrapper.find('[data-test-subj="pagination-button-1"]').first().simulate('click'); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - expect(wrapper.find('[data-test-subj="eventLogPaginationStatus"]').first().text()).toEqual( - 'Showing 11 - 20 of 85 log entries' - ); - - wrapper.find('[data-test-subj="pagination-button-8"]').first().simulate('click'); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - expect(wrapper.find('[data-test-subj="eventLogPaginationStatus"]').first().text()).toEqual( - 'Showing 81 - 85 of 85 log entries' - ); - }); - - it('renders errored action badges in message rows', async () => { - loadExecutionLogAggregationsMock.mockResolvedValue({ - data: [ - { - id: uuidv4(), - timestamp: '2022-03-20T07:40:44-07:00', - duration: 5000000, - status: 'success', - message: 'rule execution #1', - version: '8.2.0', - num_active_alerts: 2, - num_new_alerts: 4, - num_recovered_alerts: 3, - num_triggered_actions: 10, - num_succeeded_actions: 0, - num_errored_actions: 4, - total_search_duration: 1000000, - es_search_duration: 1400000, - schedule_delay: 2000000, - timed_out: false, - }, - ], - total: 1, - }); - - const wrapper = mountWithIntl( - <RuleEventLogList - ruleId={ruleMock.id} - ruleType={ruleType} - ruleSummary={mockRuleSummary({ ruleTypeId: ruleMock.ruleTypeId })} - numberOfExecutions={60} - onChangeDuration={onChangeDurationMock} - loadExecutionLogAggregations={loadExecutionLogAggregationsMock} - /> - ); - - await act(async () => { - await nextTick(); - wrapper.update(); - }); - - expect(wrapper.find('[data-test-subj="ruleActionErrorBadge"]').first().text()).toEqual('4'); - - // Click to open flyout - wrapper.find('[data-test-subj="eventLogDataGridErroredActionBadge"]').first().simulate('click'); - expect(wrapper.find('[data-test-subj="ruleActionErrorLogFlyout"]').exists()).toBeTruthy(); + afterEach(() => { + jest.clearAllMocks(); + cleanup(); }); it('shows rule summary and execution duration chart', async () => { - loadExecutionLogAggregationsMock.mockResolvedValue({ - ...mockLogResponse, - total: 85, - }); - - const wrapper = mountWithIntl( - <RuleEventLogList + render( + <RuleEventLogListWithProvider fetchRuleSummary={false} ruleId={ruleMock.id} ruleType={ruleType} ruleSummary={mockRuleSummary({ ruleTypeId: ruleMock.ruleTypeId })} numberOfExecutions={60} onChangeDuration={onChangeDurationMock} - loadExecutionLogAggregations={loadExecutionLogAggregationsMock} /> ); - await act(async () => { - await nextTick(); - wrapper.update(); - }); + const avgExecutionDurationPanel = screen.getByTestId('avgExecutionDurationPanel'); - const avgExecutionDurationPanel = wrapper.find('[data-test-subj="avgExecutionDurationPanel"]'); - expect(avgExecutionDurationPanel.exists()).toBeTruthy(); - expect(avgExecutionDurationPanel.first().prop('color')).toEqual('subdued'); - expect(wrapper.find('EuiStat[data-test-subj="avgExecutionDurationStat"]').text()).toEqual( - 'Average duration00:00:00.100' - ); - expect(wrapper.find('[data-test-subj="ruleDurationWarning"]').exists()).toBeFalsy(); - - expect(wrapper.find('[data-test-subj="executionDurationChartPanel"]').exists()).toBeTruthy(); - expect(wrapper.find('[data-test-subj="avgExecutionDurationPanel"]').exists()).toBeTruthy(); - expect(wrapper.find('[data-test-subj="ruleEventLogListAvgDuration"]').first().text()).toEqual( - '00:00:00.100' - ); + await waitFor(() => { + expect(avgExecutionDurationPanel.textContent).toEqual('Average duration00:00:00.100'); + expect(screen.queryByTestId('ruleDurationWarning')).not.toBeInTheDocument(); + expect(screen.getByTestId('executionDurationChartPanel')).toBeInTheDocument(); + expect(screen.getByTestId('avgExecutionDurationPanel')).toBeInTheDocument(); + expect(screen.getByTestId('ruleEventLogListAvgDuration').textContent).toEqual('00:00:00.100'); + }); }); it('renders average execution duration', async () => { @@ -723,30 +144,23 @@ describe.skip('rule_event_log_list', () => { ruleTypeId: ruleMock.ruleTypeId, }); - const wrapper = mountWithIntl( - <RuleEventLogList + render( + <RuleEventLogListWithProvider fetchRuleSummary={false} ruleId={ruleMock.id} ruleType={ruleTypeCustom} ruleSummary={ruleSummary} numberOfExecutions={60} onChangeDuration={onChangeDurationMock} - loadExecutionLogAggregations={loadExecutionLogAggregationsMock} /> ); - await act(async () => { - await nextTick(); - wrapper.update(); - }); + const avgExecutionDurationPanel = screen.getByTestId('avgExecutionDurationPanel'); - const avgExecutionDurationPanel = wrapper.find('[data-test-subj="avgExecutionDurationPanel"]'); - expect(avgExecutionDurationPanel.exists()).toBeTruthy(); - expect(avgExecutionDurationPanel.first().prop('color')).toEqual('subdued'); - expect(wrapper.find('EuiStat[data-test-subj="avgExecutionDurationStat"]').text()).toEqual( - 'Average duration00:01:00.284' - ); - expect(wrapper.find('[data-test-subj="ruleDurationWarning"]').exists()).toBeFalsy(); + await waitFor(() => { + expect(avgExecutionDurationPanel.textContent).toEqual('Average duration00:01:00.284'); + expect(screen.queryByTestId('ruleDurationWarning')).not.toBeInTheDocument(); + }); }); it('renders warning when average execution duration exceeds rule timeout', async () => { @@ -756,37 +170,29 @@ describe.skip('rule_event_log_list', () => { ruleTypeId: ruleMock.ruleTypeId, }); - loadExecutionLogAggregationsMock.mockResolvedValue({ - ...mockLogResponse, - total: 85, + useLoadRuleEventLogs.mockReturnValue({ + data: { + ...mockLogResponse, + total: 85, + }, + isLoading: false, + loadEventLogs: mockLoadEventLog, }); - const wrapper = mountWithIntl( - <RuleEventLogList + render( + <RuleEventLogListWithProvider fetchRuleSummary={false} ruleId={ruleMock.id} ruleType={ruleTypeCustom} ruleSummary={ruleSummary} numberOfExecutions={60} onChangeDuration={onChangeDurationMock} - loadExecutionLogAggregations={loadExecutionLogAggregationsMock} /> ); - await act(async () => { - await nextTick(); - wrapper.update(); + await waitFor(() => { + expect(screen.getByTestId('ruleEventLogListAvgDuration').textContent).toEqual('16:44:44.345'); + expect(screen.getByTestId('ruleDurationWarning')).toBeInTheDocument(); }); - - const avgExecutionDurationPanel = wrapper.find('[data-test-subj="avgExecutionDurationPanel"]'); - expect(avgExecutionDurationPanel.exists()).toBeTruthy(); - expect(avgExecutionDurationPanel.first().prop('color')).toEqual('warning'); - - const avgExecutionDurationStat = wrapper - .find('EuiStat[data-test-subj="avgExecutionDurationStat"]') - .text() - .replaceAll('Info', ''); - expect(avgExecutionDurationStat).toEqual('Average duration16:44:44.345'); - expect(wrapper.find('[data-test-subj="ruleDurationWarning"]').exists()).toBeTruthy(); }); }); diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list.tsx index 75234562096d0..99e53fef8d499 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list.tsx @@ -11,7 +11,7 @@ import { RuleExecutionSummaryAndChartWithApi } from './rule_execution_summary_an import { RuleSummary, RuleType } from '../../../../types'; import { ComponentOpts as RuleApis } from '../../common/components/with_bulk_rule_api_operations'; -import { RuleEventLogListTableWithApi } from './rule_event_log_list_table'; +import { RuleEventLogListTable } from './rule_event_log_list_table'; import { RefreshToken } from './types'; const RULE_EVENT_LOG_LIST_STORAGE_KEY = 'xpack.triggersActionsUI.ruleEventLogList.initialColumns'; @@ -55,7 +55,6 @@ export const RuleEventLogList = <T extends RuleEventLogListOptions>( refreshToken, requestRefresh, fetchRuleSummary = true, - loadExecutionLogAggregations, } = props; const { @@ -79,11 +78,10 @@ export const RuleEventLogList = <T extends RuleEventLogListOptions>( fetchRuleSummary={fetchRuleSummary} /> <EuiSpacer /> - <RuleEventLogListTableWithApi + <RuleEventLogListTable localStorageKey={localStorageKey} ruleId={ruleId} refreshToken={refreshToken} - overrideLoadExecutionLogAggregations={loadExecutionLogAggregations} /> </div> ); diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list_kpi.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list_kpi.tsx index 9e393a6507fc6..63ef7cb5bbc22 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list_kpi.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list_kpi.tsx @@ -62,6 +62,7 @@ export type RuleEventLogListKPIProps = { message?: string; refreshToken?: RefreshToken; namespaces?: Array<string | undefined>; + filteredRuleTypes?: string[]; } & Pick<RuleApis, 'loadExecutionKPIAggregations' | 'loadGlobalExecutionKPIAggregations'>; export const RuleEventLogListKPI = (props: RuleEventLogListKPIProps) => { @@ -73,6 +74,7 @@ export const RuleEventLogListKPI = (props: RuleEventLogListKPIProps) => { message, refreshToken, namespaces, + filteredRuleTypes, loadExecutionKPIAggregations, loadGlobalExecutionKPIAggregations, } = props; @@ -103,6 +105,7 @@ export const RuleEventLogListKPI = (props: RuleEventLogListKPIProps) => { outcomeFilter, message, ...(namespaces ? { namespaces } : {}), + ruleTypeIds: filteredRuleTypes, }); setKpi(newKpi); } catch (e) { diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list_table.test.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list_table.test.tsx new file mode 100644 index 0000000000000..ffcb8f69ee7c4 --- /dev/null +++ b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list_table.test.tsx @@ -0,0 +1,528 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { v4 as uuidv4 } from 'uuid'; +import { fireEvent, render, screen, waitFor, cleanup } from '@testing-library/react'; +import { useKibana } from '../../../../common/lib/kibana'; +import { __IntlProvider as IntlProvider } from '@kbn/i18n-react'; +import { RuleEventLogListTable, RuleEventLogListTableProps } from './rule_event_log_list_table'; +import { + RULE_EXECUTION_DEFAULT_INITIAL_VISIBLE_COLUMNS, + GLOBAL_EXECUTION_DEFAULT_INITIAL_VISIBLE_COLUMNS, +} from '../../../constants'; +import { mockRule, mockLogResponse } from './test_helpers'; +import { getJsDomPerformanceFix } from '../../test_utils'; +import { loadActionErrorLog } from '../../../lib/rule_api/load_action_error_log'; + +const useKibanaMock = useKibana as jest.Mocked<typeof useKibana>; +jest.mock('../../../../common/lib/kibana'); +jest.mock('../../../lib/rule_api/load_action_error_log', () => ({ + loadActionErrorLog: jest.fn(), +})); +jest.mock('../../../lib/rule_api/load_execution_log_aggregations', () => ({ + loadExecutionLogAggregations: jest.fn(), +})); +jest.mock('../../../../common/get_experimental_features', () => ({ + getIsExperimentalFeatureEnabled: jest.fn(), +})); +jest.mock('../../../hooks/use_load_rule_event_logs', () => ({ + useLoadRuleEventLogs: jest.fn(), +})); + +const { getIsExperimentalFeatureEnabled } = jest.requireMock( + '../../../../common/get_experimental_features' +); +const { useLoadRuleEventLogs } = jest.requireMock('../../../hooks/use_load_rule_event_logs'); + +const RuleEventLogListWithProvider = (props: RuleEventLogListTableProps<'stackManagement'>) => { + return ( + <IntlProvider locale="en"> + <RuleEventLogListTable {...props} /> + </IntlProvider> + ); +}; + +const loadActionErrorLogMock = loadActionErrorLog as unknown as jest.MockedFunction< + typeof loadActionErrorLog +>; +const ruleMock = mockRule(); + +const mockErrorLogResponse = { + totalErrors: 1, + errors: [ + { + id: '66b9c04a-d5d3-4ed4-aa7c-94ddaca3ac1d', + timestamp: '2022-03-31T18:03:33.133Z', + type: 'alerting', + message: + "rule execution failure: .es-query:d87fcbd0-b11b-11ec-88f6-293354dba871: 'Mine' - x_content_parse_exception: [parsing_exception] Reason: unknown query [match_allxxxx] did you mean [match_all]?", + }, + ], +}; + +const mockLoadEventLog = jest.fn(); + +const { fix, cleanup: cleanupJsDomePerformanceFix } = getJsDomPerformanceFix(); + +beforeAll(() => { + fix(); +}); + +afterAll(() => { + cleanupJsDomePerformanceFix(); +}); + +describe('rule_event_log_list_table', () => { + beforeEach(() => { + getIsExperimentalFeatureEnabled.mockImplementation(() => true); + useKibanaMock().services.uiSettings.get = jest.fn().mockImplementation((value: string) => { + if (value === 'timepicker:quickRanges') { + return [ + { + from: 'now-15m', + to: 'now', + display: 'Last 15 minutes', + }, + ]; + } + }); + loadActionErrorLogMock.mockResolvedValue(mockErrorLogResponse); + useLoadRuleEventLogs.mockReturnValue({ + data: mockLogResponse, + isLoading: false, + loadEventLogs: mockLoadEventLog, + }); + }); + + afterEach(() => { + jest.clearAllMocks(); + cleanup(); + }); + + it('renders correctly', async () => { + render(<RuleEventLogListWithProvider ruleId={ruleMock.id} />); + + await waitFor(() => { + expect(useLoadRuleEventLogs).toHaveBeenLastCalledWith( + expect.objectContaining({ + id: ruleMock.id, + sort: [], + outcomeFilter: [], + page: 0, + perPage: 10, + }) + ); + + RULE_EXECUTION_DEFAULT_INITIAL_VISIBLE_COLUMNS.forEach((column) => { + expect(screen.getByTestId(`dataGridHeaderCell-${column}`)).toBeInTheDocument(); + }); + expect(screen.getByTestId('eventLogStatusFilter')).toBeInTheDocument(); + expect(screen.getAllByText('rule execution #1').length).toEqual(4); + }); + }); + + it('should display loading spinner if loading event logs', async () => { + useLoadRuleEventLogs.mockReturnValue({ + data: [], + isLoading: true, + loadEventLogs: mockLoadEventLog, + }); + + render(<RuleEventLogListWithProvider ruleId={ruleMock.id} />); + await waitFor(() => { + expect(screen.getByTestId('centerJustifiedSpinner')).toBeInTheDocument(); + }); + }); + + it('can sort by single column by ascending', async () => { + render(<RuleEventLogListWithProvider ruleId={ruleMock.id} />); + + const timeStampCell = screen.getByTestId('dataGridHeaderCell-timestamp'); + fireEvent.click(timeStampCell.querySelector('button')!); + + const timeStampCellPopover = screen.getByTestId('dataGridHeaderCellActionGroup-timestamp'); + fireEvent.click(timeStampCellPopover.querySelectorAll('li')[0]!.querySelector('button')!); + + await waitFor(() => { + expect(useLoadRuleEventLogs).toHaveBeenLastCalledWith( + expect.objectContaining({ + id: ruleMock.id, + message: '', + outcomeFilter: [], + page: 0, + perPage: 10, + sort: [{ timestamp: { order: 'asc' } }], + }) + ); + }); + }); + + it('can sort single column by descending', async () => { + render(<RuleEventLogListWithProvider ruleId={ruleMock.id} />); + + const timeStampCell = screen.getByTestId('dataGridHeaderCell-timestamp'); + fireEvent.click(timeStampCell.querySelector('button')!); + + const timeStampCellPopover = screen.getByTestId('dataGridHeaderCellActionGroup-timestamp'); + fireEvent.click(timeStampCellPopover.querySelectorAll('li')[1]!.querySelector('button')!); + + await waitFor(() => { + expect(useLoadRuleEventLogs).toHaveBeenLastCalledWith( + expect.objectContaining({ + id: ruleMock.id, + message: '', + outcomeFilter: [], + page: 0, + perPage: 10, + sort: [{ timestamp: { order: 'desc' } }], + }) + ); + }); + }); + + it('can filter by single execution status', async () => { + render(<RuleEventLogListWithProvider ruleId={ruleMock.id} />); + + // Filter by success + fireEvent.click(screen.getByTestId('eventLogStatusFilterButton')); + fireEvent.click(screen.getByTestId('eventLogStatusFilter-success')); + + await waitFor(() => { + expect(useLoadRuleEventLogs).toHaveBeenLastCalledWith( + expect.objectContaining({ + id: ruleMock.id, + sort: [], + outcomeFilter: ['success'], + page: 0, + perPage: 10, + }) + ); + }); + }); + + it('can filter by multiple execution status', async () => { + render(<RuleEventLogListWithProvider ruleId={ruleMock.id} />); + + // Filter by success + fireEvent.click(screen.getByTestId('eventLogStatusFilterButton')); + fireEvent.click(screen.getByTestId('eventLogStatusFilter-success')); + + // Filter by failure as well + fireEvent.click(screen.getByTestId('eventLogStatusFilterButton')); + fireEvent.click(screen.getByTestId('eventLogStatusFilter-failure')); + + await waitFor(() => { + expect(useLoadRuleEventLogs).toHaveBeenLastCalledWith( + expect.objectContaining({ + id: ruleMock.id, + sort: [], + outcomeFilter: ['success', 'failure'], + page: 0, + perPage: 10, + }) + ); + }); + }); + + it('can filter by rule types', async () => { + render( + <RuleEventLogListWithProvider ruleId={ruleMock.id} filteredRuleTypes={['test-1', 'test-2']} /> + ); + await waitFor(() => { + expect(useLoadRuleEventLogs).toHaveBeenLastCalledWith( + expect.objectContaining({ + id: ruleMock.id, + sort: [], + page: 0, + perPage: 10, + ruleTypeIds: ['test-1', 'test-2'], + }) + ); + }); + }); + + describe('pagination', () => { + beforeEach(() => { + useLoadRuleEventLogs.mockReturnValue({ + data: { + ...mockLogResponse, + total: 100, + }, + isLoading: true, + loadEventLogs: mockLoadEventLog, + }); + }); + + it('can paginate', async () => { + render(<RuleEventLogListWithProvider ruleId={ruleMock.id} />); + + expect(screen.getByTestId('pagination-button-previous')).toBeInTheDocument(); + expect(screen.getByTestId('pagination-button-next')).toBeInTheDocument(); + + fireEvent.click(screen.getByTestId('pagination-button-1')); + + await waitFor(() => { + expect(useLoadRuleEventLogs).toHaveBeenLastCalledWith( + expect.objectContaining({ + id: ruleMock.id, + sort: [], + outcomeFilter: [], + page: 1, + perPage: 10, + }) + ); + }); + }); + + it('can change the page size', async () => { + render(<RuleEventLogListWithProvider ruleId={ruleMock.id} />); + + // Change the page size + fireEvent.click(screen.getByTestId('tablePaginationPopoverButton')); + fireEvent.click(screen.getByTestId('tablePagination-50-rows')); + + await waitFor(() => { + expect(useLoadRuleEventLogs).toHaveBeenLastCalledWith( + expect.objectContaining({ + id: ruleMock.id, + sort: [], + outcomeFilter: [], + page: 0, + perPage: 50, + }) + ); + }); + }); + + it('shows the correct pagination results when results are 0', async () => { + useLoadRuleEventLogs.mockReturnValue({ + data: { + data: mockLogResponse.data, + total: 0, + }, + isLoading: false, + loadEventLogs: mockLoadEventLog, + }); + render(<RuleEventLogListWithProvider ruleId={ruleMock.id} />); + + await waitFor(() => { + expect(screen.getByTestId('eventLogPaginationStatus').textContent).toEqual( + 'Showing 0 of 0 log entries' + ); + }); + }); + + it('shows the correct pagination result when result is 1', async () => { + useLoadRuleEventLogs.mockReturnValue({ + data: { + data: mockLogResponse.data, + total: 1, + }, + isLoading: false, + loadEventLogs: mockLoadEventLog, + }); + + render(<RuleEventLogListWithProvider ruleId={ruleMock.id} />); + + await waitFor(() => { + expect(screen.getByTestId('eventLogPaginationStatus').textContent).toEqual( + 'Showing 1 - 1 of 1 log entry' + ); + }); + }); + + it('shows the correct pagination result when paginated', async () => { + useLoadRuleEventLogs.mockReturnValue({ + data: { + data: mockLogResponse.data, + total: 85, + }, + isLoading: false, + loadEventLogs: mockLoadEventLog, + }); + + render(<RuleEventLogListWithProvider ruleId={ruleMock.id} />); + + expect(screen.getByTestId('eventLogPaginationStatus').textContent).toEqual( + 'Showing 1 - 10 of 85 log entries' + ); + + fireEvent.click(screen.getByTestId('pagination-button-1')); + + await waitFor(() => { + expect(screen.getByTestId('eventLogPaginationStatus').textContent).toEqual( + 'Showing 11 - 20 of 85 log entries' + ); + }); + }); + + it('shows the correct pagination result when paginated to the last page', async () => { + useLoadRuleEventLogs.mockReturnValue({ + data: { + data: mockLogResponse.data, + total: 85, + }, + isLoading: false, + loadEventLogs: mockLoadEventLog, + }); + + render(<RuleEventLogListWithProvider ruleId={ruleMock.id} />); + + expect(screen.getByTestId('eventLogPaginationStatus').textContent).toEqual( + 'Showing 1 - 10 of 85 log entries' + ); + + fireEvent.click(screen.getByTestId('pagination-button-8')); + + await waitFor(() => { + expect(screen.getByTestId('eventLogPaginationStatus').textContent).toEqual( + 'Showing 81 - 85 of 85 log entries' + ); + }); + }); + }); + + it('can filter by start and end date', async () => { + render(<RuleEventLogListWithProvider ruleId={ruleMock.id} />); + + expect(useLoadRuleEventLogs).toHaveBeenLastCalledWith( + expect.objectContaining({ + id: ruleMock.id, + sort: [], + outcomeFilter: [], + page: 0, + perPage: 10, + dateStart: 'now-24h', + dateEnd: 'now', + }) + ); + + fireEvent.click(screen.getByTestId('superDatePickerToggleQuickMenuButton')); + fireEvent.click(screen.getByTestId('superDatePickerCommonlyUsed_Last_15 minutes')); + + await waitFor(() => { + expect(useLoadRuleEventLogs).toHaveBeenLastCalledWith( + expect.objectContaining({ + id: ruleMock.id, + sort: [], + outcomeFilter: [], + page: 0, + perPage: 10, + dateStart: 'now-15m', + dateEnd: 'now', + }) + ); + }); + }); + + it('can save display columns to localStorage', async () => { + render( + <RuleEventLogListWithProvider + ruleId={ruleMock.id} + localStorageKey={'xpack.triggersActionsUI.RuleEventLogListWithProvider.initialColumns'} + /> + ); + + expect( + JSON.parse( + localStorage.getItem( + 'xpack.triggersActionsUI.RuleEventLogListWithProvider.initialColumns' + ) ?? 'null' + ) + ).toEqual(GLOBAL_EXECUTION_DEFAULT_INITIAL_VISIBLE_COLUMNS); + + fireEvent.click(screen.getByTestId('dataGridColumnSelectorButton')); + fireEvent.click( + screen.getByTestId('dataGridColumnSelectorToggleColumnVisibility-num_active_alerts') + ); + + await waitFor(() => { + expect( + JSON.parse( + localStorage.getItem( + 'xpack.triggersActionsUI.RuleEventLogListWithProvider.initialColumns' + ) ?? 'null' + ) + ).toEqual(['timestamp', 'execution_duration', 'status', 'message', 'num_errored_actions']); + }); + }); + + describe('refine search prompt', () => { + beforeEach(() => { + useLoadRuleEventLogs.mockReturnValue({ + data: { + data: mockLogResponse.data, + total: 1100, + }, + isLoading: false, + loadEventLogs: mockLoadEventLog, + }); + }); + + it('should not show the refine search prompt normally', async () => { + render(<RuleEventLogListWithProvider ruleId={ruleMock.id} />); + + await waitFor(() => { + expect(screen.queryByTestId('refineSearchPrompt')).not.toBeInTheDocument(); + }); + }); + + it('should show the refine search prompt when our queries return too much data', async () => { + render(<RuleEventLogListWithProvider ruleId={ruleMock.id} />); + + // Go to the last page + fireEvent.click(screen.getByTestId('pagination-button-99')); + + // Prompt is shown + await waitFor(() => { + expect(screen.getByTestId('refineSearchPrompt')).toBeInTheDocument(); + }); + }); + }); + + it('renders errored action badges in message rows', async () => { + useLoadRuleEventLogs.mockReturnValue({ + data: { + data: [ + { + id: uuidv4(), + timestamp: '2022-03-20T07:40:44-07:00', + duration: 5000000, + status: 'success', + message: 'rule execution #1', + version: '8.2.0', + num_active_alerts: 2, + num_new_alerts: 4, + num_recovered_alerts: 3, + num_triggered_actions: 10, + num_succeeded_actions: 0, + num_errored_actions: 4, + total_search_duration: 1000000, + es_search_duration: 1400000, + schedule_delay: 2000000, + timed_out: false, + }, + ], + total: 1, + }, + isLoading: false, + loadEventLogs: mockLoadEventLog, + }); + + render(<RuleEventLogListWithProvider ruleId={ruleMock.id} />); + + expect(screen.getByTestId('ruleActionErrorBadge').textContent).toEqual('4'); + + // Click to open flyout + fireEvent.click(screen.getByTestId('eventLogDataGridErroredActionBadge')); + + await waitFor(() => { + expect(screen.getByTestId('ruleActionErrorLogFlyout')).toBeInTheDocument(); + }); + }); +}); diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list_table.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list_table.tsx index 58125c1069396..32db0a686bff5 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list_table.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list_table.tsx @@ -8,7 +8,6 @@ import React, { useCallback, useEffect, useState, useMemo, useRef } from 'react'; import { i18n } from '@kbn/i18n'; import { FormattedMessage } from '@kbn/i18n-react'; -import datemath from '@kbn/datemath'; import { EuiFieldSearch, EuiFlexItem, @@ -22,7 +21,6 @@ import { EuiDataGridColumn, } from '@elastic/eui'; import { IExecutionLog } from '@kbn/alerting-plugin/common'; -import { SpacesContextProps } from '@kbn/spaces-plugin/public'; import { useKibana } from '../../../../common/lib/kibana'; import { RULE_EXECUTION_DEFAULT_INITIAL_VISIBLE_COLUMNS, @@ -46,23 +44,11 @@ import { RefineSearchPrompt } from '../../common/components/refine_search_prompt import { RulesListDocLink } from '../../rules_list/components/rules_list_doc_link'; import { LoadExecutionLogAggregationsProps } from '../../../lib/rule_api'; import { RuleEventLogListKPIWithApi as RuleEventLogListKPI } from './rule_event_log_list_kpi'; -import { - ComponentOpts as RuleApis, - withBulkRuleOperations, -} from '../../common/components/with_bulk_rule_api_operations'; import { useMultipleSpaces } from '../../../hooks/use_multiple_spaces'; +import { useLoadRuleEventLogs } from '../../../hooks/use_load_rule_event_logs'; import { RulesSettingsLink } from '../../../components/rules_setting/rules_settings_link'; import { RefreshToken } from './types'; -const getEmptyFunctionComponent: React.FC<SpacesContextProps> = ({ children }) => <>{children}</>; - -const getParsedDate = (date: string) => { - if (date.includes('now')) { - return datemath.parse(date)?.format() || date; - } - return date; -}; - const API_FAILED_MESSAGE = i18n.translate( 'xpack.triggersActionsUI.sections.ruleDetails.eventLogColumn.apiError', { @@ -100,18 +86,16 @@ const MAX_RESULTS = 1000; export type RuleEventLogListOptions = 'stackManagement' | 'default'; -export type RuleEventLogListCommonProps = { +export interface RuleEventLogListCommonProps { ruleId: string; localStorageKey?: string; refreshToken?: RefreshToken; initialPageSize?: number; - // Duplicating these properties is extremely silly but it's the only way to get Jest to cooperate with the way this component is structured - overrideLoadExecutionLogAggregations?: RuleApis['loadExecutionLogAggregations']; - overrideLoadGlobalExecutionLogAggregations?: RuleApis['loadGlobalExecutionLogAggregations']; hasRuleNames?: boolean; hasAllSpaceSwitch?: boolean; + filteredRuleTypes?: string[]; setHeaderActions?: (components?: React.ReactNode[]) => void; -} & Pick<RuleApis, 'loadExecutionLogAggregations' | 'loadGlobalExecutionLogAggregations'>; +} export type RuleEventLogListTableProps<T extends RuleEventLogListOptions = 'default'> = T extends 'default' @@ -127,14 +111,11 @@ export const RuleEventLogListTable = <T extends RuleEventLogListOptions>( ruleId, localStorageKey = RULE_EVENT_LOG_LIST_STORAGE_KEY, refreshToken, - loadGlobalExecutionLogAggregations, - loadExecutionLogAggregations, - overrideLoadGlobalExecutionLogAggregations, - overrideLoadExecutionLogAggregations, initialPageSize = 10, hasRuleNames = false, hasAllSpaceSwitch = false, setHeaderActions, + filteredRuleTypes, } = props; const { uiSettings, notifications } = useKibana().services; @@ -167,7 +148,6 @@ export const RuleEventLogListTable = <T extends RuleEventLogListOptions>( }); // Date related states - const [isLoading, setIsLoading] = useState<boolean>(false); const [dateStart, setDateStart] = useState<string>('now-24h'); const [dateEnd, setDateEnd] = useState<string>('now'); const [dateFormat] = useState(() => uiSettings?.get('dateFormat')); @@ -213,50 +193,41 @@ export const RuleEventLogListTable = <T extends RuleEventLogListOptions>( // eslint-disable-next-line react-hooks/exhaustive-deps }, []); - const loadLogsFn = useMemo(() => { - if (ruleId === '*') { - return overrideLoadGlobalExecutionLogAggregations ?? loadGlobalExecutionLogAggregations; - } - return overrideLoadExecutionLogAggregations ?? loadExecutionLogAggregations; - }, [ - ruleId, - overrideLoadExecutionLogAggregations, - overrideLoadGlobalExecutionLogAggregations, - loadExecutionLogAggregations, - loadGlobalExecutionLogAggregations, - ]); - - const loadEventLogs = async () => { - if (!loadLogsFn) { - return; - } - setIsLoading(true); - try { - const result = await loadLogsFn({ - id: ruleId, - sort: formattedSort as LoadExecutionLogAggregationsProps['sort'], - outcomeFilter: filter, - message: searchText, - dateStart: getParsedDate(dateStart), - dateEnd: getParsedDate(dateEnd), - page: pagination.pageIndex, - perPage: pagination.pageSize, - namespaces, - }); - setLogs(result.data); - setPagination({ - ...pagination, - totalItemCount: Math.min(result.total, MAX_RESULTS), - }); - setActualTotalItemCount(result.total); - } catch (e) { + const onError = useCallback( + (e) => { notifications.toasts.addDanger({ title: API_FAILED_MESSAGE, text: e.body?.message ?? e, }); + }, + [notifications] + ); + + const { data, isLoading, loadEventLogs } = useLoadRuleEventLogs({ + id: ruleId, + sort: formattedSort as LoadExecutionLogAggregationsProps['sort'], + outcomeFilter: filter, + message: searchText, + dateStart, + dateEnd, + page: pagination.pageIndex, + perPage: pagination.pageSize, + namespaces, + ruleTypeIds: filteredRuleTypes, + onError, + }); + + useEffect(() => { + if (!data) { + return; } - setIsLoading(false); - }; + setPagination((prevPagination) => ({ + ...prevPagination, + totalItemCount: Math.min(data.total, MAX_RESULTS), + })); + setLogs(data.data); + setActualTotalItemCount(data.total); + }, [data]); const getPaginatedRowIndex = useCallback( (rowIndex: number) => { @@ -694,7 +665,7 @@ export const RuleEventLogListTable = <T extends RuleEventLogListOptions>( }, [refreshToken]); return ( - <EuiFlexGroup gutterSize="none" direction="column"> + <EuiFlexGroup gutterSize="none" direction="column" data-test-subj="ruleEventLogListTable"> <EuiFlexItem grow={false}> <EuiFlexGroup alignItems="center"> <EuiFlexItem grow={false}> @@ -745,6 +716,7 @@ export const RuleEventLogListTable = <T extends RuleEventLogListOptions>( message={searchText} refreshToken={internalRefreshToken} namespaces={namespaces} + filteredRuleTypes={filteredRuleTypes} /> <EuiSpacer /> </EuiFlexItem> @@ -769,23 +741,5 @@ export const RuleEventLogListTable = <T extends RuleEventLogListOptions>( </EuiFlexGroup> ); }; - -const RuleEventLogListTableWithSpaces: React.FC<RuleEventLogListTableProps> = (props) => { - const { spaces } = useKibana().services; - - // eslint-disable-next-line react-hooks/exhaustive-deps - const SpacesContextWrapper = useCallback( - spaces ? spaces.ui.components.getSpacesContextProvider : getEmptyFunctionComponent, - [spaces] - ); - return ( - <SpacesContextWrapper feature="triggersActions"> - <RuleEventLogListTable {...props} /> - </SpacesContextWrapper> - ); -}; - -export const RuleEventLogListTableWithApi = withBulkRuleOperations(RuleEventLogListTableWithSpaces); - // eslint-disable-next-line import/no-default-export -export { RuleEventLogListTableWithApi as default }; +export { RuleEventLogListTable as default }; diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_execution_summary_and_chart.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_execution_summary_and_chart.tsx index 6a577e9ecf667..d5d740748b371 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_execution_summary_and_chart.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_execution_summary_and_chart.tsx @@ -179,9 +179,8 @@ export const RuleExecutionSummaryAndChart = (props: RuleExecutionSummaryAndChart </EuiText> <EuiFlexGroup gutterSize="xs" style={{ alignItems: 'center' }}> {showDurationWarning && ( - <EuiFlexItem grow={false}> + <EuiFlexItem grow={false} data-test-subj="ruleDurationWarning"> <EuiIconTip - data-test-subj="ruleDurationWarning" anchorClassName="ruleDurationWarningIcon" type="warning" color="warning" diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_status_panel.test.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_status_panel.test.tsx index c118f4294fecf..de3a9baf6da8c 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_status_panel.test.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_status_panel.test.tsx @@ -7,13 +7,36 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; +import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; import { mountWithIntl, nextTick } from '@kbn/test-jest-helpers'; -import RuleStatusPanelWithApi, { RuleStatusPanel } from './rule_status_panel'; +import { RuleStatusPanel, RuleStatusPanelWithApiProps } from './rule_status_panel'; import { mockRule } from './test_helpers'; jest.mock('../../../lib/rule_api/load_execution_log_aggregations', () => ({ - loadExecutionLogAggregations: () => ({ total: 400 }), + loadExecutionLogAggregations: jest.fn(), })); + +const { loadExecutionLogAggregations } = jest.requireMock( + '../../../lib/rule_api/load_execution_log_aggregations' +); + +const queryClient = new QueryClient({ + defaultOptions: { + queries: { + retry: false, + cacheTime: 0, + }, + }, +}); + +const RuleStatusPanelWithProvider = (props: RuleStatusPanelWithApiProps) => { + return ( + <QueryClientProvider client={queryClient}> + <RuleStatusPanel {...props} /> + </QueryClientProvider> + ); +}; + jest.mock('../../../../common/lib/kibana', () => ({ useKibana: () => ({ services: { @@ -32,15 +55,26 @@ const mockAPIs = { bulkDisableRules: jest.fn(), snoozeRule: jest.fn(), unsnoozeRule: jest.fn(), - loadExecutionLogAggregations: jest.fn(), }; const requestRefresh = jest.fn(); describe('rule status panel', () => { + beforeEach(() => { + loadExecutionLogAggregations.mockResolvedValue({ + total: 400, + data: [], + }); + }); + + afterEach(() => { + jest.clearAllMocks(); + }); + it('fetches and renders the number of executions in the last 24 hours', async () => { const rule = mockRule(); const wrapper = mountWithIntl( - <RuleStatusPanelWithApi + <RuleStatusPanelWithProvider + {...mockAPIs} rule={rule} isEditable healthColor="primary" @@ -48,13 +82,21 @@ describe('rule status panel', () => { requestRefresh={requestRefresh} /> ); + await act(async () => { await nextTick(); wrapper.update(); }); + const ruleExecutionsDescription = wrapper.find( '[data-test-subj="ruleStatus-numberOfExecutions"]' ); + + await act(async () => { + await nextTick(); + wrapper.update(); + }); + expect(ruleExecutionsDescription.first().text()).toBe('400 executions in the last 24 hr'); }); @@ -62,7 +104,7 @@ describe('rule status panel', () => { const rule = mockRule({ enabled: true }); const bulkDisableRules = jest.fn(); const wrapper = mountWithIntl( - <RuleStatusPanel + <RuleStatusPanelWithProvider {...mockAPIs} rule={rule} isEditable @@ -96,7 +138,7 @@ describe('rule status panel', () => { const rule = mockRule({ enabled: false }); const bulkDisableRules = jest.fn(); const wrapper = mountWithIntl( - <RuleStatusPanel + <RuleStatusPanelWithProvider {...mockAPIs} rule={rule} isEditable @@ -130,7 +172,7 @@ describe('rule status panel', () => { const rule = mockRule({ enabled: false }); const bulkEnableRules = jest.fn(); const wrapper = mountWithIntl( - <RuleStatusPanel + <RuleStatusPanelWithProvider {...mockAPIs} rule={rule} isEditable @@ -164,7 +206,7 @@ describe('rule status panel', () => { const rule = mockRule({ enabled: true }); const bulkEnableRules = jest.fn(); const wrapper = mountWithIntl( - <RuleStatusPanel + <RuleStatusPanelWithProvider {...mockAPIs} rule={rule} isEditable @@ -204,7 +246,7 @@ describe('rule status panel', () => { }) as any; const wrapper = mountWithIntl( - <RuleStatusPanel + <RuleStatusPanelWithProvider {...mockAPIs} rule={rule} isEditable diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_status_panel.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_status_panel.tsx index 3c02b7bcdbc9b..7167ad7f9b337 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_status_panel.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_status_panel.tsx @@ -6,8 +6,7 @@ */ import { i18n } from '@kbn/i18n'; -import datemath from '@kbn/datemath'; -import React, { useState, useEffect, useCallback, useMemo } from 'react'; +import React, { useState, useEffect, useCallback, useMemo, useRef } from 'react'; import moment from 'moment'; import { FormattedMessage } from '@kbn/i18n-react'; import { @@ -27,6 +26,8 @@ import { withBulkRuleOperations, } from '../../common/components/with_bulk_rule_api_operations'; import { RulesListNotifyBadge } from '../../rules_list/components/notify_badge'; +import { useLoadRuleEventLogs } from '../../../hooks/use_load_rule_event_logs'; +import { RefreshToken } from './types'; export interface RuleStatusPanelProps { rule: any; @@ -34,19 +35,16 @@ export interface RuleStatusPanelProps { requestRefresh: () => void; healthColor: string; statusMessage?: string | null; + refreshToken?: RefreshToken; } -type ComponentOpts = Pick< +export type RuleStatusPanelWithApiProps = Pick< RuleApis, - | 'bulkDisableRules' - | 'bulkEnableRules' - | 'snoozeRule' - | 'unsnoozeRule' - | 'loadExecutionLogAggregations' + 'bulkDisableRules' | 'bulkEnableRules' | 'snoozeRule' | 'unsnoozeRule' > & RuleStatusPanelProps; -export const RuleStatusPanel: React.FC<ComponentOpts> = ({ +export const RuleStatusPanel: React.FC<RuleStatusPanelWithApiProps> = ({ rule, bulkEnableRules, bulkDisableRules, @@ -56,9 +54,10 @@ export const RuleStatusPanel: React.FC<ComponentOpts> = ({ isEditable, healthColor, statusMessage, - loadExecutionLogAggregations, + refreshToken, }) => { const [lastNumberOfExecutions, setLastNumberOfExecutions] = useState<number | null>(null); + const isInitialized = useRef(false); const onSnoozeRule = useCallback( (snoozeSchedule) => snoozeRule(rule, snoozeSchedule), @@ -83,24 +82,33 @@ export const RuleStatusPanel: React.FC<ComponentOpts> = ({ return statusMessage; }, [rule, statusMessage]); - const getLastNumberOfExecutions = useCallback(async () => { - try { - const result = await loadExecutionLogAggregations({ - id: rule.id, - dateStart: datemath.parse('now-24h')!.format(), - dateEnd: datemath.parse('now')!.format(), - page: 0, - perPage: 10, - }); - setLastNumberOfExecutions(result.total); - } catch (e) { - // Do nothing if executions fail to fetch + const { data, loadEventLogs } = useLoadRuleEventLogs({ + id: rule.id, + dateStart: 'now-24h', + dateEnd: 'now', + page: 0, + perPage: 10, + }); + + useEffect(() => { + if (!data) { + return; } - }, [loadExecutionLogAggregations, setLastNumberOfExecutions, rule]); + setLastNumberOfExecutions(data.total); + }, [data]); + + const requestRefreshInternal = useCallback(() => { + loadEventLogs(); + requestRefresh(); + }, [requestRefresh, loadEventLogs]); useEffect(() => { - getLastNumberOfExecutions(); - }, [getLastNumberOfExecutions]); + if (isInitialized.current) { + loadEventLogs(); + } + isInitialized.current = true; + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [refreshToken]); return ( <EuiPanel data-test-subj="ruleStatusPanel" hasBorder paddingSize="none"> @@ -127,7 +135,7 @@ export const RuleStatusPanel: React.FC<ComponentOpts> = ({ snoozeRule={async () => {}} unsnoozeRule={async () => {}} rule={rule} - onRuleChanged={requestRefresh} + onRuleChanged={requestRefreshInternal} direction="row" isEditable={isEditable} hideSnoozeOption @@ -186,7 +194,7 @@ export const RuleStatusPanel: React.FC<ComponentOpts> = ({ snoozeSettings={rule} loading={!rule} disabled={!isEditable} - onRuleChanged={requestRefresh} + onRuleChanged={requestRefreshInternal} snoozeRule={onSnoozeRule} unsnoozeRule={onUnsnoozeRule} showTooltipInline diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/test_utils.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/test_utils.tsx index 4dd06217de0dc..8dc2d4c307a6f 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/sections/test_utils.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/application/sections/test_utils.tsx @@ -74,3 +74,43 @@ export const createAppMockRenderer = (): AppMockRenderer => { AppWrapper, }; }; + +export const getJsDomPerformanceFix = () => { + const originalGetComputedStyle = Object.assign({}, window.getComputedStyle); + + return { + fix: () => { + // The JSDOM implementation is too slow + // Especially for dropdowns that try to position themselves + // perf issue - https://github.com/jsdom/jsdom/issues/3234 + Object.defineProperty(window, 'getComputedStyle', { + value: (el: HTMLElement) => { + /** + * This is based on the jsdom implementation of getComputedStyle + * https://github.com/jsdom/jsdom/blob/9dae17bf0ad09042cfccd82e6a9d06d3a615d9f4/lib/jsdom/browser/Window.js#L779-L820 + * + * It is missing global style parsing and will only return styles applied directly to an element. + * Will not return styles that are global or from emotion + */ + const declaration = new CSSStyleDeclaration(); + const { style } = el; + + Array.prototype.forEach.call(style, (property: string) => { + declaration.setProperty( + property, + style.getPropertyValue(property), + style.getPropertyPriority(property) + ); + }); + + return declaration; + }, + configurable: true, + writable: true, + }); + }, + cleanup: () => { + Object.defineProperty(window, 'getComputedStyle', originalGetComputedStyle); + }, + }; +}; diff --git a/x-pack/plugins/triggers_actions_ui/public/common/get_experimental_features.test.tsx b/x-pack/plugins/triggers_actions_ui/public/common/get_experimental_features.test.tsx index 36514f6c90172..1b6e424e3883c 100644 --- a/x-pack/plugins/triggers_actions_ui/public/common/get_experimental_features.test.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/common/get_experimental_features.test.tsx @@ -16,11 +16,13 @@ describe('getIsExperimentalFeatureEnabled', () => { ExperimentalFeaturesService.init({ experimentalFeatures: { rulesListDatagrid: true, + // @ts-expect-error ts upgrade v4.7.4 internalAlertsTable: true, rulesDetailLogs: true, ruleTagFilter: true, ruleStatusFilter: true, ruleUseExecutionStatus: false, + // @ts-expect-error ts upgrade v4.7.4 ruleKqlBar: true, }, }); diff --git a/x-pack/plugins/triggers_actions_ui/public/common/get_global_rule_event_log_list.tsx b/x-pack/plugins/triggers_actions_ui/public/common/get_global_rule_event_log_list.tsx new file mode 100644 index 0000000000000..546a5a31d9916 --- /dev/null +++ b/x-pack/plugins/triggers_actions_ui/public/common/get_global_rule_event_log_list.tsx @@ -0,0 +1,21 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; +import { GlobalRuleEventLogList } from '../application/sections'; +import type { GlobalRuleEventLogListProps } from '../application/sections/rule_details/components/global_rule_event_log_list'; + +const queryClient = new QueryClient(); + +export const getGlobalRuleEventLogListLazy = (props: GlobalRuleEventLogListProps) => { + return ( + <QueryClientProvider client={queryClient}> + <GlobalRuleEventLogList {...props} />; + </QueryClientProvider> + ); +}; diff --git a/x-pack/plugins/triggers_actions_ui/public/common/get_rule_event_log_list.tsx b/x-pack/plugins/triggers_actions_ui/public/common/get_rule_event_log_list.tsx index 4501e32188f82..1d2e2cf580411 100644 --- a/x-pack/plugins/triggers_actions_ui/public/common/get_rule_event_log_list.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/common/get_rule_event_log_list.tsx @@ -6,14 +6,21 @@ */ import React from 'react'; +import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; import { RuleEventLogList } from '../application/sections'; import type { RuleEventLogListProps, RuleEventLogListOptions, } from '../application/sections/rule_details/components/rule_event_log_list'; +const queryClient = new QueryClient(); + export const getRuleEventLogListLazy = <T extends RuleEventLogListOptions = 'default'>( props: RuleEventLogListProps<T> ) => { - return <RuleEventLogList {...props} />; + return ( + <QueryClientProvider client={queryClient}> + <RuleEventLogList {...props} />; + </QueryClientProvider> + ); }; diff --git a/x-pack/plugins/triggers_actions_ui/public/mocks.ts b/x-pack/plugins/triggers_actions_ui/public/mocks.ts index 5c90b6fc22c8c..2ca68c5204ad9 100644 --- a/x-pack/plugins/triggers_actions_ui/public/mocks.ts +++ b/x-pack/plugins/triggers_actions_ui/public/mocks.ts @@ -31,6 +31,7 @@ import { getRuleTagFilterLazy } from './common/get_rule_tag_filter'; import { getRuleStatusFilterLazy } from './common/get_rule_status_filter'; import { getRuleTagBadgeLazy } from './common/get_rule_tag_badge'; import { getRuleEventLogListLazy } from './common/get_rule_event_log_list'; +import { getGlobalRuleEventLogListLazy } from './common/get_global_rule_event_log_list'; import { getRulesListLazy } from './common/get_rules_list'; import { getAlertsTableStateLazy } from './common/get_alerts_table_state'; import { getAlertsSearchBarLazy } from './common/get_alerts_search_bar'; @@ -113,6 +114,9 @@ function createStartMock(): TriggersAndActionsUIPublicPluginStart { getRuleEventLogList: <T extends RuleEventLogListOptions>(props: RuleEventLogListProps<T>) => { return getRuleEventLogListLazy<T>(props); }, + getGlobalRuleEventLogList: (props) => { + return getGlobalRuleEventLogListLazy(props); + }, getRulesListNotifyBadge: (props) => { return getRulesListNotifyBadgeLazy(props); }, diff --git a/x-pack/plugins/triggers_actions_ui/public/plugin.ts b/x-pack/plugins/triggers_actions_ui/public/plugin.ts index 97dd090df32e6..6f66f38e8541a 100644 --- a/x-pack/plugins/triggers_actions_ui/public/plugin.ts +++ b/x-pack/plugins/triggers_actions_ui/public/plugin.ts @@ -64,6 +64,7 @@ import type { RuleTagBadgeOptions, RuleEventLogListProps, RuleEventLogListOptions, + GlobalRuleEventLogListProps, RulesListProps, RulesListNotifyBadgePropsWithApi, AlertsTableConfigurationRegistry, @@ -87,6 +88,7 @@ import { getAlertSummaryWidgetLazy } from './common/get_rule_alerts_summary'; import { RuleSnoozeModalProps } from './application/sections/rules_list/components/rule_snooze_modal'; import { getRuleSnoozeModalLazy } from './common/get_rule_snooze_modal'; import { getRulesSettingsLinkLazy } from './common/get_rules_settings_link'; +import { getGlobalRuleEventLogListLazy } from './common/get_global_rule_event_log_list'; export interface TriggersAndActionsUIPublicPluginSetup { actionTypeRegistry: TypeRegistry<ActionTypeModel>; @@ -137,6 +139,9 @@ export interface TriggersAndActionsUIPublicPluginStart { getAlertSummaryWidget: (props: AlertSummaryWidgetProps) => ReactElement<AlertSummaryWidgetProps>; getRuleSnoozeModal: (props: RuleSnoozeModalProps) => ReactElement<RuleSnoozeModalProps>; getRulesSettingsLink: () => ReactElement; + getGlobalRuleEventLogList: ( + props: GlobalRuleEventLogListProps + ) => ReactElement<GlobalRuleEventLogListProps>; } interface PluginsSetup { @@ -418,6 +423,9 @@ export class Plugin getRuleEventLogList: <T extends RuleEventLogListOptions>(props: RuleEventLogListProps<T>) => { return getRuleEventLogListLazy(props); }, + getGlobalRuleEventLogList: (props: GlobalRuleEventLogListProps) => { + return getGlobalRuleEventLogListLazy(props); + }, getRulesListNotifyBadge: (props: RulesListNotifyBadgePropsWithApi) => { return getRulesListNotifyBadgeLazy(props); }, diff --git a/x-pack/plugins/triggers_actions_ui/public/types.ts b/x-pack/plugins/triggers_actions_ui/public/types.ts index a60b5ccffdc17..7c6454c8cc3e4 100644 --- a/x-pack/plugins/triggers_actions_ui/public/types.ts +++ b/x-pack/plugins/triggers_actions_ui/public/types.ts @@ -78,6 +78,7 @@ import type { RuleEventLogListProps, RuleEventLogListOptions, } from './application/sections/rule_details/components/rule_event_log_list'; +import type { GlobalRuleEventLogListProps } from './application/sections/rule_details/components/global_rule_event_log_list'; import type { AlertSummaryTimeRange } from './application/sections/alert_summary_widget/types'; import type { CreateConnectorFlyoutProps } from './application/sections/action_connector_form/create_connector_flyout'; import type { EditConnectorFlyoutProps } from './application/sections/action_connector_form/edit_connector_flyout'; @@ -127,6 +128,7 @@ export type { RuleTagBadgeOptions, RuleEventLogListProps, RuleEventLogListOptions, + GlobalRuleEventLogListProps, RulesListProps, CreateConnectorFlyoutProps, EditConnectorFlyoutProps, diff --git a/x-pack/test/accessibility/apps/ingest_node_pipelines.ts b/x-pack/test/accessibility/apps/ingest_node_pipelines.ts index 4c554cc52c691..c10d2ce8c4600 100644 --- a/x-pack/test/accessibility/apps/ingest_node_pipelines.ts +++ b/x-pack/test/accessibility/apps/ingest_node_pipelines.ts @@ -14,8 +14,7 @@ export default function ({ getService, getPageObjects }: any) { const log = getService('log'); const a11y = getService('a11y'); /* this is the wrapping service around axe */ - // FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/157512 - describe.skip('Ingest Pipelines Accessibility', async () => { + describe('Ingest Pipelines Accessibility', async () => { before(async () => { await putSamplePipeline(esClient); await common.navigateToApp('ingestPipelines'); @@ -29,7 +28,7 @@ export default function ({ getService, getPageObjects }: any) { await a11y.testAppSnapshot(); }); - it('List View', async () => { + it('Details View', async () => { await testSubjects.click('pipelineDetailsLink'); await retry.waitFor('testPipeline detail panel to be visible', async () => { if (!testSubjects.isDisplayed('pipelineDetails')) { @@ -50,8 +49,7 @@ export default function ({ getService, getPageObjects }: any) { }); it('Create Pipeline Wizard', async () => { - await testSubjects.click('emptyStateCreatePipelineDropdown'); - await testSubjects.click('emptyStateCreatePipelineButton'); + await common.navigateToUrl('ingestPipelines', 'create', { shouldUseHashForSubUrl: false }); await retry.waitFor('Create pipeline page one to be visible', async () => { return testSubjects.isDisplayed('pageTitle') ? true : false; }); diff --git a/x-pack/test/alerting_api_integration/security_and_spaces/group1/tests/alerting/find_with_post.ts b/x-pack/test/alerting_api_integration/security_and_spaces/group1/tests/alerting/find_with_post.ts index 0708d098d81fe..9e750fd23d78a 100644 --- a/x-pack/test/alerting_api_integration/security_and_spaces/group1/tests/alerting/find_with_post.ts +++ b/x-pack/test/alerting_api_integration/security_and_spaces/group1/tests/alerting/find_with_post.ts @@ -19,8 +19,7 @@ const findTestUtils = ( supertest: SuperTest<Test>, supertestWithoutAuth: any ) => { - // FLAKY: https://github.com/elastic/kibana/issues/148660 - describe.skip(describeType, () => { + describe(describeType, () => { afterEach(() => objectRemover.removeAll()); for (const scenario of UserAtSpaceScenarios) { @@ -81,6 +80,8 @@ const findTestUtils = ( actions: [], params: {}, created_by: 'elastic', + api_key_created_by_user: false, + revision: 0, scheduled_task_id: match.scheduled_task_id, created_at: match.created_at, updated_at: match.updated_at, @@ -297,10 +298,13 @@ const findTestUtils = ( group: 'default', connector_type_id: 'test.noop', params: {}, + uuid: match.actions[0].uuid, }, ], params: {}, created_by: 'elastic', + api_key_created_by_user: null, + revision: 0, throttle: '1m', updated_by: 'elastic', api_key_owner: null, @@ -367,7 +371,7 @@ const findTestUtils = ( .set('kbn-xsrf', 'foo') .auth(user.username, user.password) .send({ - filter: 'alert.attributes.alertTypeId: "test.restricted - noop"', + filter: 'alert.attributes.alertTypeId:test.restricted-noop', fields: ['tags'], sort_field: 'createdAt', }); @@ -456,7 +460,7 @@ const findTestUtils = ( .set('kbn-xsrf', 'foo') .auth(user.username, user.password) .send({ - filter: 'alert.attributes.alertTypeId: "test.restricted - noop"', + filter: 'alert.attributes.alertTypeId:test.restricted-noop', fields: ['tags', 'executionStatus'], sort_field: 'createdAt', }); @@ -518,7 +522,7 @@ const findTestUtils = ( const response = await supertestWithoutAuth .post( - `${getUrlPrefix(space.id)}/${ + `${getUrlPrefix('other')}/${ describeType === 'public' ? 'api' : 'internal' }/alerting/rules/_find` ) diff --git a/x-pack/test/alerting_api_integration/security_and_spaces/group2/tests/alerting/rbac_legacy.ts b/x-pack/test/alerting_api_integration/security_and_spaces/group2/tests/alerting/rbac_legacy.ts index 9e199f07a7aea..ce30fbc283034 100644 --- a/x-pack/test/alerting_api_integration/security_and_spaces/group2/tests/alerting/rbac_legacy.ts +++ b/x-pack/test/alerting_api_integration/security_and_spaces/group2/tests/alerting/rbac_legacy.ts @@ -56,9 +56,7 @@ export default function alertTests({ getService }: FtrProviderContext) { ), }; - // FLAKY: https://github.com/elastic/kibana/issues/159123 - // FLAKY: https://github.com/elastic/kibana/issues/15912 - describe.skip('alerts', () => { + describe('alerts', () => { const authorizationIndex = '.kibana-test-authorization'; const objectRemover = new ObjectRemover(supertest); @@ -87,7 +85,7 @@ export default function alertTests({ getService }: FtrProviderContext) { describe(scenario.id, () => { let alertUtils: AlertUtils; - before(async () => { + before(() => { alertUtils = new AlertUtils({ user, space, diff --git a/x-pack/test/alerting_api_integration/spaces_only/tests/alerting/group1/get_alert_summary.ts b/x-pack/test/alerting_api_integration/spaces_only/tests/alerting/group1/get_alert_summary.ts index f5508d4ef39d3..6a825be98d327 100644 --- a/x-pack/test/alerting_api_integration/spaces_only/tests/alerting/group1/get_alert_summary.ts +++ b/x-pack/test/alerting_api_integration/spaces_only/tests/alerting/group1/get_alert_summary.ts @@ -25,8 +25,7 @@ export default function createGetAlertSummaryTests({ getService }: FtrProviderCo const retry = getService('retry'); const alertUtils = new AlertUtils({ space: Spaces.space1, supertestWithoutAuth }); - // FLAKY: https://github.com/elastic/kibana/issues/156792 - describe.skip('getAlertSummary', () => { + describe('getAlertSummary', () => { const objectRemover = new ObjectRemover(supertest); afterEach(() => objectRemover.removeAll()); @@ -272,6 +271,26 @@ export default function createGetAlertSummaryTests({ getService }: FtrProviderCo }); it('handles multi-alert status during maintenance window', async () => { + const { body: createdMaintenanceWindow } = await supertest + .post(`${getUrlPrefix(Spaces.space1.id)}/internal/alerting/rules/maintenance_window`) + .set('kbn-xsrf', 'foo') + .send({ + title: 'test-maintenance-window', + duration: 60 * 60 * 1000, // 1 hr + r_rule: { + dtstart: new Date().toISOString(), + tzid: 'UTC', + freq: 2, // weekly + }, + }); + objectRemover.add( + Spaces.space1.id, + createdMaintenanceWindow.id, + 'rules/maintenance_window', + 'alerting', + true + ); + // pattern of when the rule should fire const pattern = { alertA: [true, true, true, true], @@ -293,27 +312,6 @@ export default function createGetAlertSummaryTests({ getService }: FtrProviderCo objectRemover.add(Spaces.space1.id, createdRule.id, 'rule', 'alerting'); - const { body: createdMaintenanceWindow } = await supertest - .post(`${getUrlPrefix(Spaces.space1.id)}/internal/alerting/rules/maintenance_window`) - .set('kbn-xsrf', 'foo') - .send({ - title: 'test-maintenance-window', - duration: 60 * 60 * 1000, // 1 hr - r_rule: { - dtstart: new Date().toISOString(), - tzid: 'UTC', - freq: 2, // weekly - }, - }); - - objectRemover.add( - Spaces.space1.id, - createdMaintenanceWindow.id, - 'rules/maintenance_window', - 'alerting', - true - ); - await alertUtils.muteInstance(createdRule.id, 'alertC'); await alertUtils.muteInstance(createdRule.id, 'alertD'); await waitForEvents(createdRule.id, ['new-instance', 'recovered-instance']); diff --git a/x-pack/test/api_integration/apis/management/index_management/constants.ts b/x-pack/test/api_integration/apis/management/index_management/constants.ts index ab308efc243e4..d231011782fd3 100644 --- a/x-pack/test/api_integration/apis/management/index_management/constants.ts +++ b/x-pack/test/api_integration/apis/management/index_management/constants.ts @@ -8,3 +8,26 @@ export const API_BASE_PATH = '/api/index_management'; export const INDEX_PATTERNS = ['test*']; + +const expectedIndexKeys = [ + 'health', + 'hidden', + 'status', + 'name', + 'uuid', + 'primary', + 'replica', + 'documents', + 'documents_deleted', + 'size', + 'primary_size', + 'isFrozen', + 'aliases', + // Cloud disables CCR, so wouldn't expect follower indices. + 'isFollowerIndex', // data enricher + 'ilm', // data enricher + 'isRollupIndex', // data enricher +]; +// We need to sort the keys before comparing then, because race conditions +// can cause enrichers to register in non-deterministic order. +export const sortedExpectedIndexKeys = expectedIndexKeys.sort(); diff --git a/x-pack/test/api_integration/apis/management/index_management/index.js b/x-pack/test/api_integration/apis/management/index_management/index.js index 7152715ef02b4..15d043826ddda 100644 --- a/x-pack/test/api_integration/apis/management/index_management/index.js +++ b/x-pack/test/api_integration/apis/management/index_management/index.js @@ -15,5 +15,6 @@ export default function ({ loadTestFile }) { loadTestFile(require.resolve('./templates')); loadTestFile(require.resolve('./component_templates')); loadTestFile(require.resolve('./cluster_nodes')); + loadTestFile(require.resolve('./index_details')); }); } diff --git a/x-pack/test/api_integration/apis/management/index_management/index_details.ts b/x-pack/test/api_integration/apis/management/index_management/index_details.ts new file mode 100644 index 0000000000000..cfbfd4b12a9e1 --- /dev/null +++ b/x-pack/test/api_integration/apis/management/index_management/index_details.ts @@ -0,0 +1,48 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { INTERNAL_API_BASE_PATH } from '@kbn/index-management-plugin/common'; +import { FtrProviderContext } from '../../../ftr_provider_context'; +import { sortedExpectedIndexKeys } from './constants'; + +export default function ({ getService }: FtrProviderContext) { + const supertest = getService('supertest'); + const es = getService('es'); + const esDeleteAllIndices = getService('esDeleteAllIndices'); + const createIndex = async (name: string) => { + await es.indices.create({ index: name }); + }; + + const testIndex = 'test_index'; + describe('index details', async () => { + before(async () => { + await createIndex(testIndex); + }); + after(async () => { + await esDeleteAllIndices([testIndex]); + }); + + it('returns index details', async () => { + const { body: index } = await supertest + .get(`${INTERNAL_API_BASE_PATH}/indices/${testIndex}`) + .set('kbn-xsrf', 'xxx') + .expect(200); + + const sortedReceivedKeys = Object.keys(index).sort(); + + expect(sortedReceivedKeys).to.eql(sortedExpectedIndexKeys); + }); + + it(`throws 404 when index doesn't exist`, async () => { + await supertest + .get(`${INTERNAL_API_BASE_PATH}/indices/non_existent`) + .set('kbn-xsrf', 'xxx') + .expect(404); + }); + }); +} diff --git a/x-pack/test/api_integration/apis/management/index_management/indices.js b/x-pack/test/api_integration/apis/management/index_management/indices.js index 26dd64aeffda3..8d012f7a02d41 100644 --- a/x-pack/test/api_integration/apis/management/index_management/indices.js +++ b/x-pack/test/api_integration/apis/management/index_management/indices.js @@ -9,6 +9,7 @@ import expect from '@kbn/expect'; import { initElasticsearchHelpers } from './lib'; import { registerHelpers } from './indices.helpers'; +import { sortedExpectedIndexKeys } from './constants'; export default function ({ getService }) { const supertest = getService('supertest'); @@ -186,31 +187,9 @@ export default function ({ getService }) { // Find the "test_index" created to verify expected keys const indexCreated = indices.find((index) => index.name === 'test_index'); - const expectedKeys = [ - 'health', - 'hidden', - 'status', - 'name', - 'uuid', - 'primary', - 'replica', - 'documents', - 'documents_deleted', - 'size', - 'primary_size', - 'isFrozen', - 'aliases', - // Cloud disables CCR, so wouldn't expect follower indices. - 'isFollowerIndex', // data enricher - 'ilm', // data enricher - 'isRollupIndex', // data enricher - ]; - // We need to sort the keys before comparing then, because race conditions - // can cause enrichers to register in non-deterministic order. - const sortedExpectedKeys = expectedKeys.sort(); const sortedReceivedKeys = Object.keys(indexCreated).sort(); - expect(sortedReceivedKeys).to.eql(sortedExpectedKeys); + expect(sortedReceivedKeys).to.eql(sortedExpectedIndexKeys); }); }); @@ -222,32 +201,10 @@ export default function ({ getService }) { // create an index to assert against, otherwise the test is flaky await createIndex('reload-test-index'); const { body } = await reload().expect(200); - const expectedKeys = [ - 'health', - 'hidden', - 'status', - 'name', - 'uuid', - 'primary', - 'replica', - 'documents', - 'documents_deleted', - 'size', - 'primary_size', - 'isFrozen', - 'aliases', - // Cloud disables CCR, so wouldn't expect follower indices. - 'isFollowerIndex', // data enricher - 'ilm', // data enricher - 'isRollupIndex', // data enricher - ]; - // We need to sort the keys before comparing then, because race conditions - // can cause enrichers to register in non-deterministic order. - const sortedExpectedKeys = expectedKeys.sort(); const indexCreated = body.find((index) => index.name === 'reload-test-index'); const sortedReceivedKeys = Object.keys(indexCreated).sort(); - expect(sortedReceivedKeys).to.eql(sortedExpectedKeys); + expect(sortedReceivedKeys).to.eql(sortedExpectedIndexKeys); expect(body.length > 1).to.be(true); // to contrast it with the next test }); }); diff --git a/x-pack/test/api_integration/apis/ml/index.ts b/x-pack/test/api_integration/apis/ml/index.ts index 67855b378fc51..3f9450c50cfaa 100644 --- a/x-pack/test/api_integration/apis/ml/index.ts +++ b/x-pack/test/api_integration/apis/ml/index.ts @@ -73,5 +73,6 @@ export default function ({ getService, loadTestFile }: FtrProviderContext) { loadTestFile(require.resolve('./system')); loadTestFile(require.resolve('./trained_models')); loadTestFile(require.resolve('./notifications')); + loadTestFile(require.resolve('./model_management')); }); } diff --git a/x-pack/test/api_integration/apis/ml/model_management/index.ts b/x-pack/test/api_integration/apis/ml/model_management/index.ts new file mode 100644 index 0000000000000..00bc82ce685e4 --- /dev/null +++ b/x-pack/test/api_integration/apis/ml/model_management/index.ts @@ -0,0 +1,15 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { FtrProviderContext } from '../../../ftr_provider_context'; + +export default function ({ loadTestFile }: FtrProviderContext) { + describe('model management', function () { + loadTestFile(require.resolve('./memory_usage')); + loadTestFile(require.resolve('./nodes_overview')); + }); +} diff --git a/x-pack/test/api_integration/apis/ml/model_management/memory_usage.ts b/x-pack/test/api_integration/apis/ml/model_management/memory_usage.ts new file mode 100644 index 0000000000000..ce75f9d523e53 --- /dev/null +++ b/x-pack/test/api_integration/apis/ml/model_management/memory_usage.ts @@ -0,0 +1,107 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { Datafeed, Job } from '@kbn/ml-plugin/common/types/anomaly_detection_jobs'; +import { FtrProviderContext } from '../../../ftr_provider_context'; +import { USER } from '../../../../functional/services/ml/security_common'; +import { getCommonRequestHeader } from '../../../../functional/services/ml/common_api'; + +export default ({ getService }: FtrProviderContext) => { + const supertest = getService('supertestWithoutAuth'); + const ml = getService('ml'); + const esArchiver = getService('esArchiver'); + + // @ts-expect-error not full interface + const JOB_CONFIG: Job = { + job_id: `fq_multi_1_ae`, + description: + 'mean/min/max(responsetime) partition=airline on farequote dataset with 1h bucket span', + groups: ['farequote', 'automated', 'multi-metric'], + analysis_config: { + bucket_span: '1h', + influencers: ['airline'], + detectors: [ + { function: 'mean', field_name: 'responsetime', partition_field_name: 'airline' }, + { function: 'min', field_name: 'responsetime', partition_field_name: 'airline' }, + { function: 'max', field_name: 'responsetime', partition_field_name: 'airline' }, + ], + }, + data_description: { time_field: '@timestamp' }, + analysis_limits: { model_memory_limit: '20mb' }, + model_plot_config: { enabled: true }, + }; + + // @ts-expect-error not full interface + const DATAFEED_CONFIG: Datafeed = { + datafeed_id: 'datafeed-fq_multi_1_ae', + indices: ['ft_farequote'], + job_id: 'fq_multi_1_ae', + query: { bool: { must: [{ match_all: {} }] } }, + }; + + async function createMockJobs() { + await ml.api.createAnomalyDetectionJob(JOB_CONFIG); + await ml.api.createDatafeed(DATAFEED_CONFIG); + await ml.api.openAnomalyDetectionJob(JOB_CONFIG.job_id); + await ml.api.startDatafeed(DATAFEED_CONFIG.datafeed_id); + } + + describe('GET model_management/memory_usage', () => { + before(async () => { + await ml.testResources.setKibanaTimeZoneToUTC(); + await ml.api.createTestTrainedModels('regression', 2); + await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/ml/farequote'); + await createMockJobs(); + }); + + after(async () => { + await ml.api.closeAnomalyDetectionJob(JOB_CONFIG.job_id); + await ml.api.cleanMlIndices(); + await ml.testResources.cleanMLSavedObjects(); + }); + + it('returns model memory usage', async () => { + const { body, status } = await supertest + .get(`/internal/ml/model_management/memory_usage`) + .auth(USER.ML_POWERUSER, ml.securityCommon.getPasswordForUser(USER.ML_POWERUSER)) + .set(getCommonRequestHeader('1')); + ml.api.assertResponseStatusCode(200, status, body); + + expect(body[0].id).to.eql('fq_multi_1_ae'); + expect(body[0].type).to.eql('anomaly-detector'); + expect(body[0].size).to.greaterThan(10000000); + }); + + it('filters out memory usage response based on the entity type', async () => { + const { body, status } = await supertest + .get(`/internal/ml/model_management/memory_usage`) + .query({ type: 'data-frame-analytics' }) + .auth(USER.ML_POWERUSER, ml.securityCommon.getPasswordForUser(USER.ML_POWERUSER)) + .set(getCommonRequestHeader('1')); + ml.api.assertResponseStatusCode(200, status, body); + + expect(body).to.eql([]); + }); + + it('returns an error for the user with viewer permissions', async () => { + const { body, status } = await supertest + .get(`/internal/ml/model_management/memory_usage`) + .auth(USER.ML_VIEWER, ml.securityCommon.getPasswordForUser(USER.ML_VIEWER)) + .set(getCommonRequestHeader('1')); + ml.api.assertResponseStatusCode(403, status, body); + }); + + it('returns an error for unauthorized user', async () => { + const { body, status } = await supertest + .get(`/internal/ml/model_management/memory_usage`) + .auth(USER.ML_UNAUTHORIZED, ml.securityCommon.getPasswordForUser(USER.ML_UNAUTHORIZED)) + .set(getCommonRequestHeader('1')); + ml.api.assertResponseStatusCode(403, status, body); + }); + }); +}; diff --git a/x-pack/test/api_integration/apis/ml/model_management/nodes_overview.ts b/x-pack/test/api_integration/apis/ml/model_management/nodes_overview.ts new file mode 100644 index 0000000000000..7677e4683d355 --- /dev/null +++ b/x-pack/test/api_integration/apis/ml/model_management/nodes_overview.ts @@ -0,0 +1,97 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { Datafeed, Job } from '@kbn/ml-plugin/common/types/anomaly_detection_jobs'; +import { FtrProviderContext } from '../../../ftr_provider_context'; +import { USER } from '../../../../functional/services/ml/security_common'; +import { getCommonRequestHeader } from '../../../../functional/services/ml/common_api'; + +export default ({ getService }: FtrProviderContext) => { + const supertest = getService('supertestWithoutAuth'); + const ml = getService('ml'); + const esArchiver = getService('esArchiver'); + + // @ts-expect-error not full interface + const JOB_CONFIG: Job = { + job_id: `fq_multi_1_ae`, + description: + 'mean/min/max(responsetime) partition=airline on farequote dataset with 1h bucket span', + groups: ['farequote', 'automated', 'multi-metric'], + analysis_config: { + bucket_span: '1h', + influencers: ['airline'], + detectors: [ + { function: 'mean', field_name: 'responsetime', partition_field_name: 'airline' }, + { function: 'min', field_name: 'responsetime', partition_field_name: 'airline' }, + { function: 'max', field_name: 'responsetime', partition_field_name: 'airline' }, + ], + }, + data_description: { time_field: '@timestamp' }, + analysis_limits: { model_memory_limit: '20mb' }, + model_plot_config: { enabled: true }, + }; + + // @ts-expect-error not full interface + const DATAFEED_CONFIG: Datafeed = { + datafeed_id: 'datafeed-fq_multi_1_ae', + indices: ['ft_farequote'], + job_id: 'fq_multi_1_ae', + query: { bool: { must: [{ match_all: {} }] } }, + }; + + async function createMockJobs() { + await ml.api.createAnomalyDetectionJob(JOB_CONFIG); + await ml.api.createDatafeed(DATAFEED_CONFIG); + await ml.api.openAnomalyDetectionJob(JOB_CONFIG.job_id); + await ml.api.startDatafeed(DATAFEED_CONFIG.datafeed_id); + } + + describe('GET model_management/nodes_overview', () => { + before(async () => { + await ml.testResources.setKibanaTimeZoneToUTC(); + await ml.api.createTestTrainedModels('regression', 2); + await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/ml/farequote'); + await createMockJobs(); + }); + + after(async () => { + await ml.api.closeAnomalyDetectionJob(JOB_CONFIG.job_id); + await ml.api.cleanMlIndices(); + await ml.testResources.cleanMLSavedObjects(); + }); + + it('returns nodes overview', async () => { + const { body, status } = await supertest + .get(`/internal/ml/model_management/nodes_overview`) + .auth(USER.ML_POWERUSER, ml.securityCommon.getPasswordForUser(USER.ML_POWERUSER)) + .set(getCommonRequestHeader('1')); + ml.api.assertResponseStatusCode(200, status, body); + + expect(body.nodes[0].roles).to.contain('ml'); + expect(body.nodes[0].memory_overview.anomaly_detection.total).to.be.greaterThan(10000000); + expect(body.nodes[0].memory_overview.dfa_training.total).to.eql(0); + expect(body.nodes[0].memory_overview.trained_models.total).to.eql(0); + }); + + it('returns an error for the user with viewer permissions', async () => { + const { body, status } = await supertest + .get(`/internal/ml/model_management/nodes_overview`) + .auth(USER.ML_VIEWER, ml.securityCommon.getPasswordForUser(USER.ML_VIEWER)) + .set(getCommonRequestHeader('1')); + ml.api.assertResponseStatusCode(403, status, body); + }); + + it('returns an error for unauthorized user', async () => { + const { body, status } = await supertest + .get(`/internal/ml/model_management/nodes_overview`) + .auth(USER.ML_UNAUTHORIZED, ml.securityCommon.getPasswordForUser(USER.ML_UNAUTHORIZED)) + .set(getCommonRequestHeader('1')); + ml.api.assertResponseStatusCode(403, status, body); + }); + }); +}; diff --git a/x-pack/test/api_integration/apis/ml/trained_models/get_model_stats.ts b/x-pack/test/api_integration/apis/ml/trained_models/get_model_stats.ts index 8d0ba0c0c36d9..96edc0cb47bad 100644 --- a/x-pack/test/api_integration/apis/ml/trained_models/get_model_stats.ts +++ b/x-pack/test/api_integration/apis/ml/trained_models/get_model_stats.ts @@ -24,6 +24,16 @@ export default ({ getService }: FtrProviderContext) => { await ml.api.cleanMlIndices(); }); + it('returns trained model stats', async () => { + const { body, status } = await supertest + .get(`/internal/ml/trained_models/_stats`) + .auth(USER.ML_VIEWER, ml.securityCommon.getPasswordForUser(USER.ML_VIEWER)) + .set(getCommonRequestHeader('1')); + ml.api.assertResponseStatusCode(200, status, body); + + expect(body.count).to.eql(3); + }); + it('returns trained model stats by id', async () => { const { body, status } = await supertest .get(`/internal/ml/trained_models/dfa_regression_model_n_0/_stats`) diff --git a/x-pack/test/api_integration/apis/search/search.ts b/x-pack/test/api_integration/apis/search/search.ts index 0aed1ac636126..a7bf10ea7dc6c 100644 --- a/x-pack/test/api_integration/apis/search/search.ts +++ b/x-pack/test/api_integration/apis/search/search.ts @@ -455,7 +455,8 @@ export default function ({ getService }: FtrProviderContext) { .expect(404); }); - it('should delete a completed search', async function () { + // FLAKY: https://github.com/elastic/kibana/issues/164856 + it.skip('should delete a completed search', async function () { await markRequiresShardDelayAgg(this); const resp = await supertest diff --git a/x-pack/test/apm_api_integration/tests/alerts/alerting_api_helper.ts b/x-pack/test/apm_api_integration/tests/alerts/alerting_api_helper.ts deleted file mode 100644 index 75379eb156250..0000000000000 --- a/x-pack/test/apm_api_integration/tests/alerts/alerting_api_helper.ts +++ /dev/null @@ -1,121 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import type { SuperTest, Test } from 'supertest'; -import { ApmRuleType } from '@kbn/apm-plugin/common/rules/apm_rule_types'; -import { ApmRuleParamsType } from '@kbn/apm-plugin/common/rules/schema'; -import { ApmDocumentType } from '@kbn/apm-plugin/common/document_type'; -import { RollupInterval } from '@kbn/apm-plugin/common/rollup'; -import { ApmApiClient } from '../../common/config'; - -export async function createIndexConnector({ - supertest, - name, - indexName, -}: { - supertest: SuperTest<Test>; - name: string; - indexName: string; -}) { - const { body } = await supertest - .post(`/api/actions/connector`) - .set('kbn-xsrf', 'foo') - .send({ - name, - config: { - index: indexName, - refresh: true, - }, - connector_type_id: '.index', - }); - return body.id as string; -} - -export async function createApmRule<T extends ApmRuleType>({ - supertest, - name, - ruleTypeId, - params, - actions = [], -}: { - supertest: SuperTest<Test>; - ruleTypeId: T; - name: string; - params: ApmRuleParamsType[T]; - actions?: any[]; -}) { - try { - const { body } = await supertest - .post(`/api/alerting/rule`) - .set('kbn-xsrf', 'foo') - .send({ - params, - consumer: 'apm', - schedule: { - interval: '1m', - }, - tags: ['apm'], - name, - rule_type_id: ruleTypeId, - actions, - }); - return body; - } catch (error: any) { - throw new Error(`[Rule] Creating a rule failed: ${error}`); - } -} - -function getTimerange() { - return { - start: new Date(Date.now() - 24 * 60 * 60 * 1000).toISOString(), - end: new Date(Date.now() + 5 * 60 * 1000).toISOString(), - }; -} - -export async function fetchServiceInventoryAlertCounts(apmApiClient: ApmApiClient) { - const timerange = getTimerange(); - const serviceInventoryResponse = await apmApiClient.readUser({ - endpoint: 'GET /internal/apm/services', - params: { - query: { - ...timerange, - environment: 'ENVIRONMENT_ALL', - kuery: '', - probability: 1, - documentType: ApmDocumentType.ServiceTransactionMetric, - rollupInterval: RollupInterval.SixtyMinutes, - }, - }, - }); - return serviceInventoryResponse.body.items.reduce<Record<string, number>>((acc, item) => { - return { ...acc, [item.serviceName]: item.alertsCount ?? 0 }; - }, {}); -} - -export async function fetchServiceTabAlertCount({ - apmApiClient, - serviceName, -}: { - apmApiClient: ApmApiClient; - serviceName: string; -}) { - const timerange = getTimerange(); - const alertsCountReponse = await apmApiClient.readUser({ - endpoint: 'GET /internal/apm/services/{serviceName}/alerts_count', - params: { - path: { - serviceName, - }, - query: { - ...timerange, - environment: 'ENVIRONMENT_ALL', - }, - }, - }); - - return alertsCountReponse.body.alertsCount; -} diff --git a/x-pack/test/apm_api_integration/tests/alerts/anomaly_alert.spec.ts b/x-pack/test/apm_api_integration/tests/alerts/anomaly_alert.spec.ts index e3f2a25af3d3d..0925e5c9e3e6a 100644 --- a/x-pack/test/apm_api_integration/tests/alerts/anomaly_alert.spec.ts +++ b/x-pack/test/apm_api_integration/tests/alerts/anomaly_alert.spec.ts @@ -12,8 +12,8 @@ import { range } from 'lodash'; import { ML_ANOMALY_SEVERITY } from '@kbn/ml-anomaly-utils/anomaly_severity'; import { FtrProviderContext } from '../../common/ftr_provider_context'; import { createAndRunApmMlJobs } from '../../common/utils/create_and_run_apm_ml_jobs'; -import { createApmRule } from './alerting_api_helper'; -import { waitForRuleStatus } from './wait_for_rule_status'; +import { createApmRule, deleteRuleById } from './helpers/alerting_api_helper'; +import { waitForRuleStatus } from './helpers/wait_for_rule_status'; export default function ApiTest({ getService }: FtrProviderContext) { const registry = getService('registry'); @@ -37,7 +37,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { const NORMAL_DURATION = 100; const NORMAL_RATE = 1; - let ruleId: string | undefined; + let ruleId: string; before(async () => { const serviceA = apm @@ -69,7 +69,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { after(async () => { await synthtraceEsClient.clean(); - await supertest.delete(`/api/alerting/rule/${ruleId}`).set('kbn-xsrf', 'foo'); + await deleteRuleById({ supertest, ruleId }); }); describe('with ml jobs', () => { @@ -98,12 +98,12 @@ export default function ApiTest({ getService }: FtrProviderContext) { if (!ruleId) { expect(ruleId).to.not.eql(undefined); } else { - const executionStatus = await waitForRuleStatus({ - id: ruleId, + const ruleStatus = await waitForRuleStatus({ + ruleId, expectedStatus: 'active', supertest, }); - expect(executionStatus.status).to.be('active'); + expect(ruleStatus).to.be('active'); } }); }); diff --git a/x-pack/test/apm_api_integration/tests/alerts/error_count_threshold.spec.ts b/x-pack/test/apm_api_integration/tests/alerts/error_count_threshold.spec.ts index 7ee8f4a61aa3f..e3b0d06fbc5a1 100644 --- a/x-pack/test/apm_api_integration/tests/alerts/error_count_threshold.spec.ts +++ b/x-pack/test/apm_api_integration/tests/alerts/error_count_threshold.spec.ts @@ -5,57 +5,69 @@ * 2.0. */ -import moment from 'moment'; import { ApmRuleType } from '@kbn/apm-plugin/common/rules/apm_rule_types'; -import { errorCountMessage } from '@kbn/apm-plugin/common/rules/default_action_message'; +import { errorCountActionVariables } from '@kbn/apm-plugin/server/routes/alerts/rule_types/error_count/register_error_count_rule_type'; import { apm, timerange } from '@kbn/apm-synthtrace-client'; import { getErrorGroupingKey } from '@kbn/apm-synthtrace-client/src/lib/apm/instance'; import expect from '@kbn/expect'; +import { omit } from 'lodash'; import { FtrProviderContext } from '../../common/ftr_provider_context'; import { createApmRule, - createIndexConnector, + deleteRuleById, + deleteAlertsByRuleId, fetchServiceInventoryAlertCounts, fetchServiceTabAlertCount, -} from './alerting_api_helper'; -import { - waitForRuleStatus, - waitForDocumentInIndex, - waitForAlertInIndex, -} from './wait_for_rule_status'; + ApmAlertFields, + createIndexConnector, + deleteActionConnector, + getIndexAction, +} from './helpers/alerting_api_helper'; +import { cleanupAllState } from './helpers/cleanup_state'; +import { waitForAlertsForRule } from './helpers/wait_for_alerts_for_rule'; +import { waitForIndexConnectorResults } from './helpers/wait_for_index_connector_results'; +import { waitForRuleStatus } from './helpers/wait_for_rule_status'; export default function ApiTest({ getService }: FtrProviderContext) { const registry = getService('registry'); - const supertest = getService('supertest'); const es = getService('es'); const apmApiClient = getService('apmApiClient'); - const esDeleteAllIndices = getService('esDeleteAllIndices'); - const synthtraceEsClient = getService('synthtraceEsClient'); registry.when('error count threshold alert', { config: 'basic', archives: [] }, () => { - let ruleId1: string; - let ruleId2: string; - let alertId: string; - let startedAt: string; - let actionId1: string | undefined; - let actionId2: string | undefined; - - const APM_ALERTS_INDEX = '.alerts-observability.apm.alerts-default'; - const ALERT_ACTION_INDEX_NAME1 = 'alert-action-error-count1'; - const ALERT_ACTION_INDEX_NAME2 = 'alert-action-error-count2'; - - const errorMessage = '[ResponseError] index_not_found_exception'; - const errorGroupingKey = getErrorGroupingKey(errorMessage); + const javaErrorMessage = 'a java error'; + const phpErrorMessage = 'a php error'; + + const ruleParams = { + environment: 'production', + threshold: 1, + windowSize: 1, + windowUnit: 'h', + groupBy: [ + 'service.name', + 'service.environment', + 'transaction.name', + 'error.grouping_key', + 'error.grouping_name', + ], + }; before(async () => { + cleanupAllState({ es, supertest }); + const opbeansJava = apm .service({ name: 'opbeans-java', environment: 'production', agentName: 'java' }) .instance('instance'); + + const opbeansPhp = apm + .service({ name: 'opbeans-php', environment: 'production', agentName: 'php' }) + .instance('instance'); + const opbeansNode = apm .service({ name: 'opbeans-node', environment: 'production', agentName: 'node' }) .instance('instance'); + const events = timerange('now-15m', 'now') .ratePerMinute(1) .generator((timestamp) => { @@ -65,7 +77,8 @@ export default function ApiTest({ getService }: FtrProviderContext) { .timestamp(timestamp) .duration(100) .failure() - .errors(opbeansJava.error({ message: errorMessage }).timestamp(timestamp + 50)), + .errors(opbeansJava.error({ message: javaErrorMessage }).timestamp(timestamp + 50)), + opbeansNode .transaction({ transactionName: 'tx-node' }) .timestamp(timestamp) @@ -73,140 +86,165 @@ export default function ApiTest({ getService }: FtrProviderContext) { .success(), ]; }); - await synthtraceEsClient.index(events); + + const phpEvents = timerange('now-15m', 'now') + .ratePerMinute(2) + .generator((timestamp) => { + return [ + opbeansPhp + .transaction({ transactionName: 'tx-php' }) + .timestamp(timestamp) + .duration(100) + .failure() + .errors(opbeansPhp.error({ message: phpErrorMessage }).timestamp(timestamp + 50)), + ]; + }); + + await Promise.all([synthtraceEsClient.index(events), synthtraceEsClient.index(phpEvents)]); }); after(async () => { await synthtraceEsClient.clean(); - await supertest.delete(`/api/alerting/rule/${ruleId1}`).set('kbn-xsrf', 'foo'); - await supertest.delete(`/api/actions/connector/${actionId1}`).set('kbn-xsrf', 'foo'); - await supertest.delete(`/api/alerting/rule/${ruleId2}`).set('kbn-xsrf', 'foo'); - await supertest.delete(`/api/actions/connector/${actionId2}`).set('kbn-xsrf', 'foo'); - await esDeleteAllIndices([ALERT_ACTION_INDEX_NAME1, ALERT_ACTION_INDEX_NAME2]); - await es.deleteByQuery({ - index: APM_ALERTS_INDEX, - query: { term: { 'kibana.alert.rule.uuid': ruleId1 } }, - }); - await es.deleteByQuery({ - index: APM_ALERTS_INDEX, - query: { term: { 'kibana.alert.rule.uuid': ruleId2 } }, - }); - await es.deleteByQuery({ - index: '.kibana-event-log-*', - query: { term: { 'kibana.alert.rule.consumer': 'apm' } }, - }); }); - describe('create alert without filter query', () => { + describe('create rule without kql filter', () => { + let ruleId: string; + let alerts: ApmAlertFields[]; + let actionId: string; + before(async () => { - actionId1 = await createIndexConnector({ - supertest, - name: 'Error count without filter query', - indexName: ALERT_ACTION_INDEX_NAME1, + actionId = await createIndexConnector({ supertest, name: 'Transation error count' }); + const indexAction = getIndexAction({ + actionId, + actionVariables: errorCountActionVariables, }); const createdRule = await createApmRule({ supertest, ruleTypeId: ApmRuleType.ErrorCount, - name: 'Apm error count without filter query', + name: 'Apm error count without kql query', params: { - environment: 'production', - threshold: 1, - windowSize: 1, - windowUnit: 'h', - kqlFilter: '', - groupBy: [ - 'service.name', - 'service.environment', - 'transaction.name', - 'error.grouping_key', - 'error.grouping_name', - ], + ...ruleParams, }, - actions: [ - { - group: 'threshold_met', - id: actionId1, - params: { - documents: [ - { - message: `${errorCountMessage} -- Transaction name: {{context.transactionName}} -- Error grouping key: {{context.errorGroupingKey}} -- Error grouping name: {{context.errorGroupingName}}`, - }, - ], - }, - frequency: { - notify_when: 'onActionGroupChange', - throttle: null, - summary: false, - }, - }, - ], + actions: [indexAction], }); - expect(createdRule.id).to.not.eql(undefined); - ruleId1 = createdRule.id; + + ruleId = createdRule.id; + alerts = await waitForAlertsForRule({ es, ruleId, minimumAlertCount: 2 }); + }); + + after(async () => { + await deleteActionConnector({ supertest, es, actionId }); + await deleteRuleById({ supertest, ruleId }); + await deleteAlertsByRuleId({ es, ruleId }); }); it('checks if rule is active', async () => { - const executionStatus = await waitForRuleStatus({ - id: ruleId1, + const ruleStatus = await waitForRuleStatus({ + ruleId, expectedStatus: 'active', supertest, }); - expect(executionStatus.status).to.be('active'); + expect(ruleStatus).to.be('active'); }); - it('indexes alert document with all group-by fields', async () => { - const resp = await waitForAlertInIndex({ - es, - indexName: APM_ALERTS_INDEX, - ruleId: ruleId1, + describe('action variables', () => { + let results: Array<Record<string, string>>; + + before(async () => { + results = await waitForIndexConnectorResults({ es, minCount: 2 }); }); - alertId = (resp.hits.hits[0]._source as any)['kibana.alert.uuid']; - startedAt = (resp.hits.hits[0]._source as any)['kibana.alert.start']; - - expect(resp.hits.hits[0]._source).property('service.name', 'opbeans-java'); - expect(resp.hits.hits[0]._source).property('service.environment', 'production'); - expect(resp.hits.hits[0]._source).property('transaction.name', 'tx-java'); - expect(resp.hits.hits[0]._source).property('error.grouping_key', errorGroupingKey); - expect(resp.hits.hits[0]._source).property('error.grouping_name', errorMessage); - }); - it('returns correct message', async () => { - const rangeFrom = moment(startedAt).subtract('5', 'minute').toISOString(); - const resp = await waitForDocumentInIndex<{ message: string }>({ - es, - indexName: ALERT_ACTION_INDEX_NAME1, + it('produces a index action document for each service', async () => { + expect(results.map(({ serviceName }) => serviceName).sort()).to.eql([ + 'opbeans-java', + 'opbeans-php', + ]); }); - expect(resp.hits.hits[0]._source?.message).eql( - `Error count is 15 in the last 1 hr for service: opbeans-java, env: production, name: tx-java, error key: ${errorGroupingKey}, error name: ${errorMessage}. Alert when > 1. + it('has the right keys', async () => { + const phpEntry = results.find((result) => result.serviceName === 'opbeans-php')!; + expect(Object.keys(phpEntry).sort()).to.eql([ + 'alertDetailsUrl', + 'environment', + 'errorGroupingKey', + 'errorGroupingName', + 'interval', + 'reason', + 'serviceName', + 'threshold', + 'transactionName', + 'triggerValue', + 'viewInAppUrl', + ]); + }); -Apm error count without filter query is active with the following conditions: + it('has the right values', () => { + const phpEntry = results.find((result) => result.serviceName === 'opbeans-php')!; + expect(omit(phpEntry, 'alertDetailsUrl')).to.eql({ + environment: 'production', + interval: '1 hr', + reason: + 'Error count is 30 in the last 1 hr for service: opbeans-php, env: production, name: tx-php, error key: c85df8159a74b47b461d6ddaa6ba7da38cfc3e74019aef66257d10df74adeb99, error name: a php error. Alert when > 1.', + serviceName: 'opbeans-php', + transactionName: 'tx-php', + errorGroupingKey: 'c85df8159a74b47b461d6ddaa6ba7da38cfc3e74019aef66257d10df74adeb99', + errorGroupingName: 'a php error', + threshold: '1', + triggerValue: '30', + viewInAppUrl: + 'http://mockedPublicBaseUrl/app/apm/services/opbeans-php/errors?environment=production', + }); + }); + }); -- Service name: opbeans-java -- Environment: production -- Error count: 15 errors over the last 1 hr -- Threshold: 1 + it('produces one alert for each of the opbeans-java and opbeans-php', async () => { + const alertReasons = [alerts[0]['kibana.alert.reason'], alerts[1]['kibana.alert.reason']]; -[View alert details](http://mockedpublicbaseurl/app/observability/alerts?_a=(kuery:%27kibana.alert.uuid:%20%22${alertId}%22%27%2CrangeFrom:%27${rangeFrom}%27%2CrangeTo:now%2Cstatus:all)) + expect(alertReasons).to.eql([ + 'Error count is 30 in the last 1 hr for service: opbeans-php, env: production, name: tx-php, error key: c85df8159a74b47b461d6ddaa6ba7da38cfc3e74019aef66257d10df74adeb99, error name: a php error. Alert when > 1.', + 'Error count is 15 in the last 1 hr for service: opbeans-java, env: production, name: tx-java, error key: b6a4ac83620b34ae44dd98a13e144782f88698f827af7edb10690c5e6e7d8597, error name: a java error. Alert when > 1.', + ]); + }); -- Transaction name: tx-java -- Error grouping key: ${errorGroupingKey} -- Error grouping name: ${errorMessage}` - ); + it('indexes alert document with all group-by fields', async () => { + const alertDetails = [alerts[0], alerts[1]].map((alert) => { + return { + serviceName: alert!['service.name'], + environment: alert!['service.environment'], + transactionName: alert!['transaction.name'], + errorGroupingKey: alert!['error.grouping_key'], + errorGroupingName: alert!['error.grouping_name'], + }; + }); + + expect(alertDetails).to.eql([ + { + serviceName: 'opbeans-php', + environment: 'production', + transactionName: 'tx-php', + errorGroupingKey: getErrorGroupingKey(phpErrorMessage), + errorGroupingName: phpErrorMessage, + }, + { + serviceName: 'opbeans-java', + environment: 'production', + transactionName: 'tx-java', + errorGroupingKey: getErrorGroupingKey(javaErrorMessage), + errorGroupingName: javaErrorMessage, + }, + ]); }); - it('shows the correct alert count for each service on service inventory', async () => { + it('shows the a single alert for opbeans-java and opbeans-php on the service inventory', async () => { const serviceInventoryAlertCounts = await fetchServiceInventoryAlertCounts(apmApiClient); expect(serviceInventoryAlertCounts).to.eql({ 'opbeans-node': 0, 'opbeans-java': 1, + 'opbeans-php': 1, }); }); - it('shows the correct alert count in opbeans-java service', async () => { + it('shows 1 alert for opbeans-java in the tab', async () => { const serviceTabAlertCount = await fetchServiceTabAlertCount({ apmApiClient, serviceName: 'opbeans-java', @@ -214,7 +252,7 @@ Apm error count without filter query is active with the following conditions: expect(serviceTabAlertCount).to.be(1); }); - it('shows the correct alert count in opbeans-node service', async () => { + it('shows no alerts for opbeans-node in the tab', async () => { const serviceTabAlertCount = await fetchServiceTabAlertCount({ apmApiClient, serviceName: 'opbeans-node', @@ -223,131 +261,39 @@ Apm error count without filter query is active with the following conditions: }); }); - describe('create alert with filter query', () => { + describe('create rule with kql filter for opbeans-php', () => { + let ruleId: string; + before(async () => { - actionId2 = await createIndexConnector({ - supertest, - name: 'Error count with filter query', - indexName: ALERT_ACTION_INDEX_NAME2, - }); const createdRule = await createApmRule({ supertest, ruleTypeId: ApmRuleType.ErrorCount, - name: 'Apm error count with filter query', + name: 'Apm error count with kql query', params: { - environment: 'ENVIRONMENT_ALL', - threshold: 1, - windowSize: 1, - windowUnit: 'h', - serviceName: undefined, - kqlFilter: 'service.name: opbeans-java and service.environment: production', - groupBy: [ - 'service.name', - 'service.environment', - 'transaction.name', - 'error.grouping_key', - 'error.grouping_name', - ], - }, - actions: [ - { - group: 'threshold_met', - id: actionId2, - params: { - documents: [ - { - message: `${errorCountMessage} -- Transaction name: {{context.transactionName}} -- Error grouping key: {{context.errorGroupingKey}} -- Error grouping name: {{context.errorGroupingName}}`, - }, - ], - }, - frequency: { - notify_when: 'onActionGroupChange', - throttle: null, - summary: false, + searchConfiguration: { + query: { + query: 'service.name: opbeans-php', + language: 'kuery', }, }, - ], - }); - expect(createdRule.id).to.not.eql(undefined); - ruleId2 = createdRule.id; - }); - - it('checks if rule is active', async () => { - const executionStatus = await waitForRuleStatus({ - id: ruleId2, - expectedStatus: 'active', - supertest, + ...ruleParams, + }, + actions: [], }); - expect(executionStatus.status).to.be('active'); + ruleId = createdRule.id; }); - it('indexes alert document with all group-by fields', async () => { - const resp = await waitForAlertInIndex({ - es, - indexName: APM_ALERTS_INDEX, - ruleId: ruleId2, - }); - alertId = (resp.hits.hits[0]._source as any)['kibana.alert.uuid']; - startedAt = (resp.hits.hits[0]._source as any)['kibana.alert.start']; - - expect(resp.hits.hits[0]._source).property('service.name', 'opbeans-java'); - expect(resp.hits.hits[0]._source).property('service.environment', 'production'); - expect(resp.hits.hits[0]._source).property('transaction.name', 'tx-java'); - expect(resp.hits.hits[0]._source).property('error.grouping_key', errorGroupingKey); - expect(resp.hits.hits[0]._source).property('error.grouping_name', errorMessage); + after(async () => { + await deleteRuleById({ supertest, ruleId }); + await deleteAlertsByRuleId({ es, ruleId }); }); - it('returns correct message', async () => { - const rangeFrom = moment(startedAt).subtract('5', 'minute').toISOString(); - const resp = await waitForDocumentInIndex<{ message: string }>({ - es, - indexName: ALERT_ACTION_INDEX_NAME2, - }); - - expect(resp.hits.hits[0]._source?.message).eql( - `Error count is 15 in the last 1 hr for service: opbeans-java, env: production, name: tx-java, error key: ${errorGroupingKey}, error name: ${errorMessage}. Alert when > 1. - -Apm error count with filter query is active with the following conditions: - -- Service name: opbeans-java -- Environment: production -- Error count: 15 errors over the last 1 hr -- Threshold: 1 - -[View alert details](http://mockedpublicbaseurl/app/observability/alerts?_a=(kuery:%27kibana.alert.uuid:%20%22${alertId}%22%27%2CrangeFrom:%27${rangeFrom}%27%2CrangeTo:now%2Cstatus:all)) - -- Transaction name: tx-java -- Error grouping key: ${errorGroupingKey} -- Error grouping name: ${errorMessage}` + it('produces one alert for the opbeans-php service', async () => { + const alerts = await waitForAlertsForRule({ es, ruleId }); + expect(alerts[0]['kibana.alert.reason']).to.be( + 'Error count is 30 in the last 1 hr for service: opbeans-php, env: production, name: tx-php, error key: c85df8159a74b47b461d6ddaa6ba7da38cfc3e74019aef66257d10df74adeb99, error name: a php error. Alert when > 1.' ); }); - - it('shows the correct alert count for each service on service inventory', async () => { - const serviceInventoryAlertCounts = await fetchServiceInventoryAlertCounts(apmApiClient); - expect(serviceInventoryAlertCounts).to.eql({ - 'opbeans-node': 0, - 'opbeans-java': 2, - }); - }); - - it('shows the correct alert count in opbeans-java service', async () => { - const serviceTabAlertCount = await fetchServiceTabAlertCount({ - apmApiClient, - serviceName: 'opbeans-java', - }); - expect(serviceTabAlertCount).to.be(2); - }); - - it('shows the correct alert count in opbeans-node service', async () => { - const serviceTabAlertCount = await fetchServiceTabAlertCount({ - apmApiClient, - serviceName: 'opbeans-node', - }); - expect(serviceTabAlertCount).to.be(0); - }); }); }); } diff --git a/x-pack/test/apm_api_integration/tests/alerts/helpers/alerting_api_helper.ts b/x-pack/test/apm_api_integration/tests/alerts/helpers/alerting_api_helper.ts new file mode 100644 index 0000000000000..c32f052886961 --- /dev/null +++ b/x-pack/test/apm_api_integration/tests/alerts/helpers/alerting_api_helper.ts @@ -0,0 +1,253 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { Client, errors } from '@elastic/elasticsearch'; +import { ParsedTechnicalFields } from '@kbn/rule-registry-plugin/common'; +import pRetry from 'p-retry'; +import type { SuperTest, Test } from 'supertest'; +import { ApmRuleType } from '@kbn/apm-plugin/common/rules/apm_rule_types'; +import { ApmRuleParamsType } from '@kbn/apm-plugin/common/rules/schema'; +import { ApmDocumentType } from '@kbn/apm-plugin/common/document_type'; +import { RollupInterval } from '@kbn/apm-plugin/common/rollup'; +import { ApmApiClient } from '../../../common/config'; + +export const APM_ALERTS_INDEX = '.alerts-observability.apm.alerts-*'; +export const APM_ACTION_VARIABLE_INDEX = 'apm-index-connector-test'; + +export async function createApmRule<T extends ApmRuleType>({ + supertest, + name, + ruleTypeId, + params, + actions = [], +}: { + supertest: SuperTest<Test>; + ruleTypeId: T; + name: string; + params: ApmRuleParamsType[T]; + actions?: any[]; +}) { + try { + const { body } = await supertest + .post(`/api/alerting/rule`) + .set('kbn-xsrf', 'foo') + .send({ + params, + consumer: 'apm', + schedule: { + interval: '1m', + }, + tags: ['apm'], + name, + rule_type_id: ruleTypeId, + actions, + }); + return body; + } catch (error: any) { + throw new Error(`[Rule] Creating a rule failed: ${error}`); + } +} + +function getTimerange() { + return { + start: new Date(Date.now() - 24 * 60 * 60 * 1000).toISOString(), + end: new Date(Date.now() + 5 * 60 * 1000).toISOString(), + }; +} + +export async function fetchServiceInventoryAlertCounts(apmApiClient: ApmApiClient) { + const timerange = getTimerange(); + const serviceInventoryResponse = await apmApiClient.readUser({ + endpoint: 'GET /internal/apm/services', + params: { + query: { + ...timerange, + environment: 'ENVIRONMENT_ALL', + kuery: '', + probability: 1, + documentType: ApmDocumentType.ServiceTransactionMetric, + rollupInterval: RollupInterval.SixtyMinutes, + }, + }, + }); + + return serviceInventoryResponse.body.items.reduce<Record<string, number>>((acc, item) => { + return { ...acc, [item.serviceName]: item.alertsCount ?? 0 }; + }, {}); +} + +export async function fetchServiceTabAlertCount({ + apmApiClient, + serviceName, +}: { + apmApiClient: ApmApiClient; + serviceName: string; +}) { + const timerange = getTimerange(); + const alertsCountReponse = await apmApiClient.readUser({ + endpoint: 'GET /internal/apm/services/{serviceName}/alerts_count', + params: { + path: { + serviceName, + }, + query: { + ...timerange, + environment: 'ENVIRONMENT_ALL', + }, + }, + }); + + return alertsCountReponse.body.alertsCount; +} + +export async function runRuleSoon({ + ruleId, + supertest, +}: { + ruleId: string; + supertest: SuperTest<Test>; +}): Promise<Record<string, any>> { + return pRetry( + async () => { + try { + const response = await supertest + .post(`/internal/alerting/rule/${ruleId}/_run_soon`) + .set('kbn-xsrf', 'foo'); + // Sometimes the rule may already be running, which returns a 200. Try until it isn't + if (response.status !== 204) { + throw new Error(`runRuleSoon got ${response.status} status`); + } + return response; + } catch (error) { + throw new Error(`[Rule] Running a rule ${ruleId} failed: ${error}`); + } + }, + { retries: 10 } + ); +} + +export async function deleteAlertsByRuleId({ es, ruleId }: { es: Client; ruleId: string }) { + await es.deleteByQuery({ + index: APM_ALERTS_INDEX, + query: { term: { 'kibana.alert.rule.uuid': ruleId } }, + }); +} + +export async function deleteRuleById({ + supertest, + ruleId, +}: { + supertest: SuperTest<Test>; + ruleId: string; +}) { + await supertest.delete(`/api/alerting/rule/${ruleId}`).set('kbn-xsrf', 'foo'); +} + +export async function deleteApmRules(supertest: SuperTest<Test>) { + const res = await supertest.get( + `/api/alerting/rules/_find?filter=alert.attributes.consumer:apm&per_page=10000` + ); + + return Promise.all( + res.body.data.map(async (rule: any) => { + await supertest.delete(`/api/alerting/rule/${rule.id}`).set('kbn-xsrf', 'foo'); + }) + ); +} + +export function deleteApmAlerts(es: Client) { + return es.deleteByQuery({ index: APM_ALERTS_INDEX, query: { match_all: {} } }); +} + +export async function clearKibanaApmEventLog(es: Client) { + return es.deleteByQuery({ + index: '.kibana-event-log-*', + query: { term: { 'kibana.alert.rule.consumer': 'apm' } }, + }); +} + +export type ApmAlertFields = ParsedTechnicalFields & { + 'service.name': string; + 'service.environment': string; + 'transaction.name': string; + 'error.grouping_key': string; + 'error.grouping_name': string; +}; + +export async function createIndexConnector({ + supertest, + name, +}: { + supertest: SuperTest<Test>; + name: string; +}) { + const { body } = await supertest + .post(`/api/actions/connector`) + .set('kbn-xsrf', 'foo') + .send({ + name, + config: { + index: APM_ACTION_VARIABLE_INDEX, + refresh: true, + }, + connector_type_id: '.index', + }); + return body.id as string; +} + +export function getIndexAction({ + actionId, + actionVariables, +}: { + actionId: string; + actionVariables: Array<{ name: string }>; +}) { + return { + group: 'threshold_met', + id: actionId, + params: { + documents: [ + actionVariables.reduce<Record<string, string>>((acc, actionVariable) => { + acc[actionVariable.name] = `{{context.${actionVariable.name}}}`; + return acc; + }, {}), + ], + }, + frequency: { + notify_when: 'onActionGroupChange', + throttle: null, + summary: false, + }, + }; +} + +export async function deleteActionConnector({ + supertest, + es, + actionId, +}: { + supertest: SuperTest<Test>; + es: Client; + actionId: string; +}) { + return Promise.all([ + await supertest.delete(`/api/actions/connector/${actionId}`).set('kbn-xsrf', 'foo'), + await deleteActionConnectorIndex(es), + ]); +} + +export async function deleteActionConnectorIndex(es: Client) { + try { + await es.indices.delete({ index: APM_ACTION_VARIABLE_INDEX }); + } catch (e) { + if (e instanceof errors.ResponseError && e.statusCode === 404) { + return; + } + + throw e; + } +} diff --git a/x-pack/test/apm_api_integration/tests/alerts/helpers/cleanup_state.ts b/x-pack/test/apm_api_integration/tests/alerts/helpers/cleanup_state.ts new file mode 100644 index 0000000000000..243ca1f71a36e --- /dev/null +++ b/x-pack/test/apm_api_integration/tests/alerts/helpers/cleanup_state.ts @@ -0,0 +1,35 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { Client } from '@elastic/elasticsearch'; +import type { SuperTest, Test } from 'supertest'; +import { + clearKibanaApmEventLog, + deleteApmRules, + deleteApmAlerts, + deleteActionConnectorIndex, +} from './alerting_api_helper'; + +export async function cleanupAllState({ + es, + supertest, +}: { + es: Client; + supertest: SuperTest<Test>; +}) { + try { + await Promise.all([ + await deleteActionConnectorIndex(es), + await deleteApmRules(supertest), + await deleteApmAlerts(es), + await clearKibanaApmEventLog(es), + ]); + } catch (e) { + // eslint-disable-next-line no-console + console.error(`An error occured while cleaning up the state: ${e}`); + } +} diff --git a/x-pack/test/apm_api_integration/common/utils/wait_for_active_alert.ts b/x-pack/test/apm_api_integration/tests/alerts/helpers/wait_for_active_apm_alerts.ts similarity index 61% rename from x-pack/test/apm_api_integration/common/utils/wait_for_active_alert.ts rename to x-pack/test/apm_api_integration/tests/alerts/helpers/wait_for_active_apm_alerts.ts index 30e7ba0c4acc5..f27522c87d9ee 100644 --- a/x-pack/test/apm_api_integration/common/utils/wait_for_active_alert.ts +++ b/x-pack/test/apm_api_integration/tests/alerts/helpers/wait_for_active_apm_alerts.ts @@ -4,22 +4,21 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ +import type { Client } from '@elastic/elasticsearch'; import pRetry from 'p-retry'; import { ToolingLog } from '@kbn/tooling-log'; -import { Client } from '@elastic/elasticsearch'; +import { APM_ALERTS_INDEX } from './alerting_api_helper'; -async function getActiveAlert({ +export async function getActiveApmAlerts({ ruleId, esClient, - log, }: { ruleId: string; waitMillis?: number; esClient: Client; - log: ToolingLog; }): Promise<Record<string, any>> { const searchParams = { - index: '.alerts-observability.apm.alerts-*', + index: APM_ALERTS_INDEX, size: 1, query: { bool: { @@ -44,16 +43,10 @@ async function getActiveAlert({ }, }; const response = await esClient.search(searchParams); - const firstHit = response.hits.hits[0]; - if (!firstHit) { - log.debug(`No active alert found for rule ${ruleId}`); - throw new Error(`No active alert found for rule ${ruleId}`); - } - log.debug(`Get active alert for the rule ${ruleId}`); - return firstHit; + return response.hits.hits.map((hit) => hit._source); } -export function waitForActiveAlert({ +export function waitForActiveApmAlert({ ruleId, esClient, log, @@ -64,8 +57,21 @@ export function waitForActiveAlert({ log: ToolingLog; }): Promise<Record<string, any>> { log.debug(`Wait for the rule ${ruleId} to be active`); - return pRetry(() => getActiveAlert({ ruleId, esClient, log }), { - retries: 10, - factor: 1.5, - }); + return pRetry( + async () => { + const activeApmAlerts = await getActiveApmAlerts({ ruleId, esClient }); + + if (activeApmAlerts.length === 0) { + log.debug(`No active alert found for rule ${ruleId}`); + throw new Error(`No active alert found for rule ${ruleId}`); + } + log.debug(`Get active alert for the rule ${ruleId}`); + + return activeApmAlerts[0]; + }, + { + retries: 10, + factor: 1.5, + } + ); } diff --git a/x-pack/test/apm_api_integration/tests/alerts/helpers/wait_for_alerts_for_rule.ts b/x-pack/test/apm_api_integration/tests/alerts/helpers/wait_for_alerts_for_rule.ts new file mode 100644 index 0000000000000..334631b354cd1 --- /dev/null +++ b/x-pack/test/apm_api_integration/tests/alerts/helpers/wait_for_alerts_for_rule.ts @@ -0,0 +1,52 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import type { Client } from '@elastic/elasticsearch'; +import type { + AggregationsAggregate, + SearchResponse, +} from '@elastic/elasticsearch/lib/api/typesWithBodyKey'; +import pRetry from 'p-retry'; +import { ApmAlertFields, APM_ALERTS_INDEX } from './alerting_api_helper'; + +async function getAlertByRuleId({ es, ruleId }: { es: Client; ruleId: string }) { + const response = (await es.search({ + index: APM_ALERTS_INDEX, + body: { + query: { + term: { + 'kibana.alert.rule.uuid': ruleId, + }, + }, + }, + })) as SearchResponse<ApmAlertFields, Record<string, AggregationsAggregate>>; + + return response.hits.hits.map((hit) => hit._source) as ApmAlertFields[]; +} + +export async function waitForAlertsForRule({ + es, + ruleId, + minimumAlertCount = 1, +}: { + es: Client; + ruleId: string; + minimumAlertCount?: number; +}) { + return pRetry( + async () => { + const alerts = await getAlertByRuleId({ es, ruleId }); + const actualAlertCount = alerts.length; + if (actualAlertCount < minimumAlertCount) { + throw new Error(`Expected ${minimumAlertCount} but got ${actualAlertCount} alerts`); + } + + return alerts; + }, + { retries: 5 } + ); +} diff --git a/x-pack/test/apm_api_integration/tests/alerts/helpers/wait_for_index_connector_results.ts b/x-pack/test/apm_api_integration/tests/alerts/helpers/wait_for_index_connector_results.ts new file mode 100644 index 0000000000000..9646289420804 --- /dev/null +++ b/x-pack/test/apm_api_integration/tests/alerts/helpers/wait_for_index_connector_results.ts @@ -0,0 +1,31 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { Client } from '@elastic/elasticsearch'; +import pRetry from 'p-retry'; +import { APM_ACTION_VARIABLE_INDEX } from './alerting_api_helper'; + +async function getIndexConnectorResults(es: Client) { + const res = await es.search({ index: APM_ACTION_VARIABLE_INDEX }); + return res.hits.hits.map((hit) => hit._source) as Array<Record<string, string>>; +} + +export async function waitForIndexConnectorResults({ + es, + minCount = 1, +}: { + es: Client; + minCount?: number; +}) { + return pRetry(async () => { + const results = await getIndexConnectorResults(es); + if (results.length < minCount) { + throw new Error(`Expected ${minCount} but got ${results.length} results`); + } + return results; + }); +} diff --git a/x-pack/test/apm_api_integration/tests/alerts/helpers/wait_for_rule_status.ts b/x-pack/test/apm_api_integration/tests/alerts/helpers/wait_for_rule_status.ts new file mode 100644 index 0000000000000..7f29fabdeb545 --- /dev/null +++ b/x-pack/test/apm_api_integration/tests/alerts/helpers/wait_for_rule_status.ts @@ -0,0 +1,58 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { isEqual } from 'lodash'; +import pRetry from 'p-retry'; +import type SuperTest from 'supertest'; + +export async function waitForRuleStatus({ + ruleId, + expectedStatus, + supertest, +}: { + ruleId: string; + expectedStatus: string; + supertest: SuperTest.SuperTest<SuperTest.Test>; +}): Promise<Record<string, any>> { + return pRetry( + async () => { + const response = await supertest.get(`/api/alerting/rule/${ruleId}`); + const status = response.body?.execution_status?.status; + + if (status !== expectedStatus) { + throw new Error(`waitForStatus(${expectedStatus}): got ${status}`); + } + return status; + }, + { retries: 10 } + ); +} + +export function waitFor<T>({ + expectation, + fn, + debug = false, +}: { + expectation: T; + fn: () => Promise<T>; + debug?: boolean; +}) { + return pRetry( + async () => { + const actual = await fn(); + if (debug) { + // eslint-disable-next-line no-console + console.log('Waiting for', expectation, 'got', actual); + } + + if (!isEqual(actual, expectation)) { + throw new Error(`Expected ${actual} to be ${expectation}`); + } + }, + { retries: 5 } + ); +} diff --git a/x-pack/test/apm_api_integration/tests/alerts/preview_chart_error_count.spec.ts b/x-pack/test/apm_api_integration/tests/alerts/preview_chart_error_count.spec.ts index ea2c8c470a70b..519440746864d 100644 --- a/x-pack/test/apm_api_integration/tests/alerts/preview_chart_error_count.spec.ts +++ b/x-pack/test/apm_api_integration/tests/alerts/preview_chart_error_count.spec.ts @@ -41,7 +41,12 @@ export default function ApiTest({ getService }: FtrProviderContext) { start: new Date(start).toISOString(), end: new Date(end).toISOString(), interval: '5m', - kqlFilter: 'service.name: synth-go', + searchConfiguration: JSON.stringify({ + query: { + query: 'service.name: synth-go', + language: 'kuery', + }, + }), serviceName: undefined, errorGroupingKey: undefined, environment: 'ENVIRONMENT_ALL', @@ -328,9 +333,14 @@ export default function ApiTest({ getService }: FtrProviderContext) { params: { query: { ...getOptionsWithFilterQuery().params.query, - kqlFilter: `service.name: synth-go and error.grouping_key: ${getErrorGroupingKey( - 'Error 1' - )}`, + searchConfiguration: JSON.stringify({ + query: { + query: `service.name: synth-go and error.grouping_key: ${getErrorGroupingKey( + 'Error 1' + )}`, + language: 'kuery', + }, + }), }, }, }; @@ -430,9 +440,14 @@ export default function ApiTest({ getService }: FtrProviderContext) { params: { query: { ...getOptionsWithFilterQuery().params.query, - kqlFilter: `service.name: synth-go and error.grouping_key: ${getErrorGroupingKey( - 'Error 0' - )}`, + searchConfiguration: JSON.stringify({ + query: { + query: `service.name: synth-go and error.grouping_key: ${getErrorGroupingKey( + 'Error 0' + )}`, + language: 'kuery', + }, + }), groupBy: [SERVICE_NAME, SERVICE_ENVIRONMENT, ERROR_GROUP_ID], }, }, @@ -463,7 +478,12 @@ export default function ApiTest({ getService }: FtrProviderContext) { params: { query: { ...getOptionsWithFilterQuery().params.query, - kqlFilter: '', + searchConfiguration: JSON.stringify({ + query: { + query: '', + language: 'kuery', + }, + }), }, }, }; @@ -490,7 +510,12 @@ export default function ApiTest({ getService }: FtrProviderContext) { params: { query: { ...getOptionsWithFilterQuery().params.query, - kqlFilter: '', + searchConfiguration: JSON.stringify({ + query: { + query: '', + language: 'kuery', + }, + }), groupBy: [SERVICE_NAME, SERVICE_ENVIRONMENT, ERROR_GROUP_ID], }, }, diff --git a/x-pack/test/apm_api_integration/tests/alerts/preview_chart_error_rate.spec.ts b/x-pack/test/apm_api_integration/tests/alerts/preview_chart_error_rate.spec.ts index 8e77035c27696..5175b9eb83044 100644 --- a/x-pack/test/apm_api_integration/tests/alerts/preview_chart_error_rate.spec.ts +++ b/x-pack/test/apm_api_integration/tests/alerts/preview_chart_error_rate.spec.ts @@ -42,7 +42,12 @@ export default function ApiTest({ getService }: FtrProviderContext) { start: new Date(start).toISOString(), end: new Date(end).toISOString(), interval: '5m', - kqlFilter: 'service.name: synth-go and transaction.type: request', + searchConfiguration: JSON.stringify({ + query: { + query: 'service.name: synth-go and transaction.type: request', + language: 'kuery', + }, + }), serviceName: undefined, transactionType: undefined, transactionName: undefined, @@ -351,8 +356,13 @@ export default function ApiTest({ getService }: FtrProviderContext) { params: { query: { ...getOptionsWithFilterQuery().params.query, - kqlFilter: - 'service.name: synth-go and transaction.type: request and transaction.name: GET /banana', + searchConfiguration: JSON.stringify({ + query: { + query: + 'service.name: synth-go and transaction.type: request and transaction.name: GET /banana', + language: 'kuery', + }, + }), }, }, }; @@ -376,8 +386,13 @@ export default function ApiTest({ getService }: FtrProviderContext) { params: { query: { ...getOptionsWithFilterQuery().params.query, - kqlFilter: - 'service.name: synth-go and transaction.type: request and transaction.name: foo', + searchConfiguration: JSON.stringify({ + query: { + query: + 'service.name: synth-go and transaction.type: request and transaction.name: foo', + language: 'kuery', + }, + }), }, }, }; @@ -472,8 +487,13 @@ export default function ApiTest({ getService }: FtrProviderContext) { params: { query: { ...getOptionsWithFilterQuery().params.query, - kqlFilter: - 'service.name: synth-go and transaction.type: request and transaction.name: GET /apple', + searchConfiguration: JSON.stringify({ + query: { + query: + 'service.name: synth-go and transaction.type: request and transaction.name: GET /apple', + language: 'kuery', + }, + }), groupBy: [SERVICE_NAME, SERVICE_ENVIRONMENT, TRANSACTION_TYPE, TRANSACTION_NAME], }, }, @@ -499,7 +519,12 @@ export default function ApiTest({ getService }: FtrProviderContext) { params: { query: { ...getOptionsWithFilterQuery().params.query, - kqlFilter: '', + searchConfiguration: JSON.stringify({ + query: { + query: '', + language: 'kuery', + }, + }), }, }, }; @@ -526,7 +551,12 @@ export default function ApiTest({ getService }: FtrProviderContext) { params: { query: { ...getOptionsWithFilterQuery().params.query, - kqlFilter: '', + searchConfiguration: JSON.stringify({ + query: { + query: '', + language: 'kuery', + }, + }), groupBy: [SERVICE_NAME, SERVICE_ENVIRONMENT, TRANSACTION_TYPE, TRANSACTION_NAME], }, }, diff --git a/x-pack/test/apm_api_integration/tests/alerts/preview_chart_transaction_duration.spec.ts b/x-pack/test/apm_api_integration/tests/alerts/preview_chart_transaction_duration.spec.ts index d882bd84d1193..d7408e9232560 100644 --- a/x-pack/test/apm_api_integration/tests/alerts/preview_chart_transaction_duration.spec.ts +++ b/x-pack/test/apm_api_integration/tests/alerts/preview_chart_transaction_duration.spec.ts @@ -32,7 +32,6 @@ export default function ApiTest({ getService }: FtrProviderContext) { transactionType: 'request', environment: 'ENVIRONMENT_ALL', interval: '5m', - kqlFilter: '', }, }, }); @@ -43,7 +42,12 @@ export default function ApiTest({ getService }: FtrProviderContext) { start: new Date(start).toISOString(), end: new Date(end).toISOString(), interval: '5m', - kqlFilter: 'service.name: synth-go and transaction.type: request', + searchConfiguration: JSON.stringify({ + query: { + query: 'service.name: synth-go and transaction.type: request', + language: 'kuery', + }, + }), serviceName: undefined, transactionType: undefined, transactionName: undefined, @@ -322,8 +326,13 @@ export default function ApiTest({ getService }: FtrProviderContext) { params: { query: { ...getOptionsWithFilterQuery().params.query, - kqlFilter: - 'service.name: synth-go and transaction.type: request and transaction.name: GET /banana', + searchConfiguration: JSON.stringify({ + query: { + query: + 'service.name: synth-go and transaction.type: request and transaction.name: GET /banana', + language: 'kuery', + }, + }), groupBy: [SERVICE_NAME, SERVICE_ENVIRONMENT, TRANSACTION_TYPE], }, }, @@ -348,8 +357,13 @@ export default function ApiTest({ getService }: FtrProviderContext) { params: { query: { ...getOptionsWithFilterQuery().params.query, - kqlFilter: - 'service.name: synth-go and transaction.type: request and transaction.name: foo', + searchConfiguration: JSON.stringify({ + query: { + query: + 'service.name: synth-go and transaction.type: request and transaction.name: foo', + language: 'kuery', + }, + }), groupBy: [SERVICE_NAME, SERVICE_ENVIRONMENT, TRANSACTION_TYPE], }, }, @@ -439,8 +453,13 @@ export default function ApiTest({ getService }: FtrProviderContext) { params: { query: { ...getOptionsWithFilterQuery().params.query, - kqlFilter: - 'service.name: synth-go and transaction.type: request and transaction.name: GET /apple', + searchConfiguration: JSON.stringify({ + query: { + query: + 'service.name: synth-go and transaction.type: request and transaction.name: GET /apple', + language: 'kuery', + }, + }), groupBy: [SERVICE_NAME, SERVICE_ENVIRONMENT, TRANSACTION_TYPE, TRANSACTION_NAME], }, }, @@ -466,7 +485,12 @@ export default function ApiTest({ getService }: FtrProviderContext) { params: { query: { ...getOptionsWithFilterQuery().params.query, - kqlFilter: '', + searchConfiguration: JSON.stringify({ + query: { + query: '', + language: 'kuery', + }, + }), }, }, }; @@ -493,7 +517,12 @@ export default function ApiTest({ getService }: FtrProviderContext) { params: { query: { ...getOptionsWithFilterQuery().params.query, - kqlFilter: '', + searchConfiguration: JSON.stringify({ + query: { + query: '', + language: 'kuery', + }, + }), groupBy: [SERVICE_NAME, SERVICE_ENVIRONMENT, TRANSACTION_TYPE, TRANSACTION_NAME], }, }, diff --git a/x-pack/test/apm_api_integration/tests/alerts/transaction_duration.spec.ts b/x-pack/test/apm_api_integration/tests/alerts/transaction_duration.spec.ts index 549b8a33e9428..3dbfa93a69d46 100644 --- a/x-pack/test/apm_api_integration/tests/alerts/transaction_duration.spec.ts +++ b/x-pack/test/apm_api_integration/tests/alerts/transaction_duration.spec.ts @@ -6,41 +6,50 @@ */ import { AggregationType, ApmRuleType } from '@kbn/apm-plugin/common/rules/apm_rule_types'; +import { transactionDurationActionVariables } from '@kbn/apm-plugin/server/routes/alerts/rule_types/transaction_duration/register_transaction_duration_rule_type'; import { apm, timerange } from '@kbn/apm-synthtrace-client'; import expect from '@kbn/expect'; +import { omit } from 'lodash'; import { FtrProviderContext } from '../../common/ftr_provider_context'; import { createApmRule, - createIndexConnector, fetchServiceInventoryAlertCounts, fetchServiceTabAlertCount, -} from './alerting_api_helper'; -import { - waitForRuleStatus, - waitForDocumentInIndex, - waitForAlertInIndex, -} from './wait_for_rule_status'; + deleteAlertsByRuleId, + deleteRuleById, + clearKibanaApmEventLog, + ApmAlertFields, + createIndexConnector, + getIndexAction, + deleteActionConnector, +} from './helpers/alerting_api_helper'; +import { cleanupAllState } from './helpers/cleanup_state'; +import { waitForAlertsForRule } from './helpers/wait_for_alerts_for_rule'; +import { waitForRuleStatus } from './helpers/wait_for_rule_status'; +import { waitForIndexConnectorResults } from './helpers/wait_for_index_connector_results'; export default function ApiTest({ getService }: FtrProviderContext) { const registry = getService('registry'); - const supertest = getService('supertest'); const es = getService('es'); const apmApiClient = getService('apmApiClient'); - const esDeleteAllIndices = getService('esDeleteAllIndices'); - const synthtraceEsClient = getService('synthtraceEsClient'); - registry.when('transaction duration alert', { config: 'basic', archives: [] }, () => { - let ruleId1: string; - let actionId1: string | undefined; - let ruleId2: string; - let actionId2: string | undefined; - const APM_ALERTS_INDEX = '.alerts-observability.apm.alerts-default'; - const ALERT_ACTION_INDEX_NAME1 = 'alert-action-transaction-duration1'; - const ALERT_ACTION_INDEX_NAME2 = 'alert-action-transaction-duration2'; + const ruleParams = { + threshold: 3000, + windowSize: 5, + windowUnit: 'm', + transactionType: 'request', + serviceName: 'opbeans-java', + environment: 'production', + aggregationType: AggregationType.Avg, + groupBy: ['service.name', 'service.environment', 'transaction.type', 'transaction.name'], + }; + registry.when('transaction duration alert', { config: 'basic', archives: [] }, () => { before(async () => { + cleanupAllState({ es, supertest }); + const opbeansJava = apm .service({ name: 'opbeans-java', environment: 'production', agentName: 'java' }) .instance('instance'); @@ -68,100 +77,100 @@ export default function ApiTest({ getService }: FtrProviderContext) { after(async () => { await synthtraceEsClient.clean(); - await supertest.delete(`/api/alerting/rule/${ruleId1}`).set('kbn-xsrf', 'foo'); - await supertest.delete(`/api/actions/connector/${actionId1}`).set('kbn-xsrf', 'foo'); - await supertest.delete(`/api/alerting/rule/${ruleId2}`).set('kbn-xsrf', 'foo'); - await supertest.delete(`/api/actions/connector/${actionId2}`).set('kbn-xsrf', 'foo'); - await esDeleteAllIndices([ALERT_ACTION_INDEX_NAME1, ALERT_ACTION_INDEX_NAME2]); - await es.deleteByQuery({ - index: APM_ALERTS_INDEX, - query: { term: { 'kibana.alert.rule.uuid': ruleId1 } }, - }); - await es.deleteByQuery({ - index: APM_ALERTS_INDEX, - query: { term: { 'kibana.alert.rule.uuid': ruleId2 } }, - }); - await es.deleteByQuery({ - index: '.kibana-event-log-*', - query: { term: { 'kibana.alert.rule.consumer': 'apm' } }, - }); + await clearKibanaApmEventLog(es); }); - describe('create rule without filter query', () => { + describe('create rule for opbeans-java without kql filter', () => { + let ruleId: string; + let actionId: string; + let alerts: ApmAlertFields[]; + before(async () => { - actionId1 = await createIndexConnector({ - supertest, - name: 'Transation duration without filter query', - indexName: ALERT_ACTION_INDEX_NAME1, + actionId = await createIndexConnector({ supertest, name: 'Transation duration' }); + const indexAction = getIndexAction({ + actionId, + actionVariables: transactionDurationActionVariables, }); + const createdRule = await createApmRule({ supertest, ruleTypeId: ApmRuleType.TransactionDuration, - name: 'Apm transaction duration without filter query', + name: 'Apm transaction duration without kql filter', params: { - threshold: 3000, - windowSize: 5, - windowUnit: 'm', - transactionType: 'request', - serviceName: 'opbeans-java', - environment: 'production', - aggregationType: AggregationType.Avg, - kqlFilter: '', - groupBy: [ - 'service.name', - 'service.environment', - 'transaction.type', - 'transaction.name', - ], + ...ruleParams, }, - actions: [ - { - group: 'threshold_met', - id: actionId1, - params: { - documents: [{ message: 'Transaction Name: {{context.transactionName}}' }], - }, - frequency: { - notify_when: 'onActionGroupChange', - throttle: null, - summary: false, - }, - }, - ], + actions: [indexAction], }); - expect(createdRule.id).to.not.eql(undefined); - ruleId1 = createdRule.id; + ruleId = createdRule.id; + alerts = await waitForAlertsForRule({ es, ruleId }); + }); + + after(async () => { + await deleteActionConnector({ supertest, es, actionId }); + await deleteAlertsByRuleId({ es, ruleId }); + await deleteRuleById({ supertest, ruleId }); }); it('checks if rule is active', async () => { - const executionStatus = await waitForRuleStatus({ - id: ruleId1, + const ruleStatus = await waitForRuleStatus({ + ruleId, expectedStatus: 'active', supertest, }); - expect(executionStatus.status).to.be('active'); + expect(ruleStatus).to.be('active'); }); - it('returns correct message', async () => { - const resp = await waitForDocumentInIndex<{ message: string }>({ - es, - indexName: ALERT_ACTION_INDEX_NAME1, + describe('action variables', () => { + let results: Array<Record<string, string>>; + + before(async () => { + results = await waitForIndexConnectorResults({ es }); }); - expect(resp.hits.hits[0]._source?.message).eql(`Transaction Name: tx-java`); - }); + it('populates the action connector index with every action variable', async () => { + expect(results.length).to.be(1); + expect(Object.keys(results[0]).sort()).to.eql([ + 'alertDetailsUrl', + 'environment', + 'interval', + 'reason', + 'serviceName', + 'threshold', + 'transactionName', + 'transactionType', + 'triggerValue', + 'viewInAppUrl', + ]); + }); - it('indexes alert document with all group-by fields', async () => { - const resp = await waitForAlertInIndex({ - es, - indexName: APM_ALERTS_INDEX, - ruleId: ruleId1, + it('populates the document with the correct values', async () => { + expect(omit(results[0], 'alertDetailsUrl')).to.eql({ + environment: 'production', + interval: '5 mins', + reason: + 'Avg. latency is 5.0 s in the last 5 mins for service: opbeans-java, env: production, type: request, name: tx-java. Alert when > 3.0 s.', + serviceName: 'opbeans-java', + transactionType: 'request', + transactionName: 'tx-java', + threshold: '3000', + triggerValue: '5,000 ms', + viewInAppUrl: + 'http://mockedPublicBaseUrl/app/apm/services/opbeans-java?transactionType=request&environment=production', + }); }); + }); - expect(resp.hits.hits[0]._source).property('service.name', 'opbeans-java'); - expect(resp.hits.hits[0]._source).property('service.environment', 'production'); - expect(resp.hits.hits[0]._source).property('transaction.type', 'request'); - expect(resp.hits.hits[0]._source).property('transaction.name', 'tx-java'); + it('produces an alert for opbeans-java with the correct reason', async () => { + expect(alerts[0]['kibana.alert.reason']).to.be( + 'Avg. latency is 5.0 s in the last 5 mins for service: opbeans-java, env: production, type: request, name: tx-java. Alert when > 3.0 s.' + ); + }); + + it('indexes alert document with all group-by fields', async () => { + expect(alerts[0]).property('service.name', 'opbeans-java'); + expect(alerts[0]).property('service.environment', 'production'); + expect(alerts[0]).property('transaction.type', 'request'); + expect(alerts[0]).property('transaction.name', 'tx-java'); }); it('shows the correct alert count for each service on service inventory', async () => { @@ -189,101 +198,75 @@ export default function ApiTest({ getService }: FtrProviderContext) { }); }); - describe('create rule with filter query', () => { + describe('create rule for opbeans-node using kql filter', () => { + let ruleId: string; + let alerts: ApmAlertFields[]; + before(async () => { - actionId2 = await createIndexConnector({ - supertest, - name: 'Transation duration with filter query', - indexName: ALERT_ACTION_INDEX_NAME2, - }); const createdRule = await createApmRule({ supertest, ruleTypeId: ApmRuleType.TransactionDuration, - name: 'Apm transaction duration with filter query', + name: 'Apm transaction duration with kql filter', params: { - threshold: 3000, - windowSize: 5, - windowUnit: 'm', - transactionType: undefined, - serviceName: undefined, - environment: 'ENVIRONMENT_ALL', - aggregationType: AggregationType.Avg, - kqlFilter: - 'service.name: opbeans-node and transaction.type: request and service.environment: production', - groupBy: [ - 'service.name', - 'service.environment', - 'transaction.type', - 'transaction.name', - ], - }, - actions: [ - { - group: 'threshold_met', - id: actionId2, - params: { - documents: [{ message: 'Transaction Name: {{context.transactionName}}' }], - }, - frequency: { - notify_when: 'onActionGroupChange', - throttle: null, - summary: false, + searchConfiguration: { + query: { + query: + 'service.name: opbeans-node and transaction.type: request and service.environment: production', + language: 'kuery', }, }, - ], + ...ruleParams, + }, + actions: [], }); - expect(createdRule.id).to.not.eql(undefined); - ruleId2 = createdRule.id; + ruleId = createdRule.id; + alerts = await waitForAlertsForRule({ es, ruleId }); + }); + + after(async () => { + await deleteAlertsByRuleId({ es, ruleId }); + await deleteRuleById({ supertest, ruleId }); }); it('checks if rule is active', async () => { - const executionStatus = await waitForRuleStatus({ - id: ruleId2, + const ruleStatus = await waitForRuleStatus({ + ruleId, expectedStatus: 'active', supertest, }); - expect(executionStatus.status).to.be('active'); + expect(ruleStatus).to.be('active'); }); - it('returns correct message', async () => { - const resp = await waitForDocumentInIndex<{ message: string }>({ - es, - indexName: ALERT_ACTION_INDEX_NAME2, - }); - - expect(resp.hits.hits[0]._source?.message).eql(`Transaction Name: tx-node`); + it('produces an alert for opbeans-node with the correct reason', async () => { + expect(alerts[0]['kibana.alert.reason']).to.be( + 'Avg. latency is 4.0 s in the last 5 mins for service: opbeans-node, env: production, type: request, name: tx-node. Alert when > 3.0 s.' + ); }); it('indexes alert document with all group-by fields', async () => { - const resp = await waitForAlertInIndex({ - es, - indexName: APM_ALERTS_INDEX, - ruleId: ruleId2, - }); - - expect(resp.hits.hits[0]._source).property('service.name', 'opbeans-node'); - expect(resp.hits.hits[0]._source).property('service.environment', 'production'); - expect(resp.hits.hits[0]._source).property('transaction.type', 'request'); - expect(resp.hits.hits[0]._source).property('transaction.name', 'tx-node'); + expect(alerts[0]).property('service.name', 'opbeans-node'); + expect(alerts[0]).property('service.environment', 'production'); + expect(alerts[0]).property('transaction.type', 'request'); + expect(alerts[0]).property('transaction.name', 'tx-node'); }); - it('shows the correct alert count for each service on service inventory', async () => { + it('shows alert count=1 for opbeans-node on service inventory', async () => { const serviceInventoryAlertCounts = await fetchServiceInventoryAlertCounts(apmApiClient); expect(serviceInventoryAlertCounts).to.eql({ 'opbeans-node': 1, - 'opbeans-java': 1, + 'opbeans-java': 0, }); }); - it('shows the correct alert count in opbeans-java service', async () => { + it('shows alert count=0 in opbeans-java service', async () => { const serviceTabAlertCount = await fetchServiceTabAlertCount({ apmApiClient, serviceName: 'opbeans-java', }); - expect(serviceTabAlertCount).to.be(1); + expect(serviceTabAlertCount).to.be(0); }); - it('shows the correct alert count in opbeans-node service', async () => { + it('shows alert count=1 in opbeans-node service', async () => { const serviceTabAlertCount = await fetchServiceTabAlertCount({ apmApiClient, serviceName: 'opbeans-node', diff --git a/x-pack/test/apm_api_integration/tests/alerts/transaction_error_rate.spec.ts b/x-pack/test/apm_api_integration/tests/alerts/transaction_error_rate.spec.ts index af0568f93ad4c..e51372f3d8b01 100644 --- a/x-pack/test/apm_api_integration/tests/alerts/transaction_error_rate.spec.ts +++ b/x-pack/test/apm_api_integration/tests/alerts/transaction_error_rate.spec.ts @@ -6,45 +6,39 @@ */ import { ApmRuleType } from '@kbn/apm-plugin/common/rules/apm_rule_types'; +import { transactionErrorRateActionVariables } from '@kbn/apm-plugin/server/routes/alerts/rule_types/transaction_error_rate/register_transaction_error_rate_rule_type'; import { apm, timerange } from '@kbn/apm-synthtrace-client'; import expect from '@kbn/expect'; -import moment from 'moment'; +import { omit } from 'lodash'; import { FtrProviderContext } from '../../common/ftr_provider_context'; import { createApmRule, - createIndexConnector, fetchServiceInventoryAlertCounts, fetchServiceTabAlertCount, -} from './alerting_api_helper'; -import { - waitForRuleStatus, - waitForDocumentInIndex, - waitForAlertInIndex, -} from './wait_for_rule_status'; + deleteAlertsByRuleId, + clearKibanaApmEventLog, + deleteRuleById, + ApmAlertFields, + getIndexAction, + createIndexConnector, + deleteActionConnector, +} from './helpers/alerting_api_helper'; +import { cleanupAllState } from './helpers/cleanup_state'; +import { waitForAlertsForRule } from './helpers/wait_for_alerts_for_rule'; +import { waitForRuleStatus } from './helpers/wait_for_rule_status'; +import { waitForIndexConnectorResults } from './helpers/wait_for_index_connector_results'; export default function ApiTest({ getService }: FtrProviderContext) { const registry = getService('registry'); - const supertest = getService('supertest'); const es = getService('es'); const apmApiClient = getService('apmApiClient'); - const esDeleteAllIndices = getService('esDeleteAllIndices'); - const synthtraceEsClient = getService('synthtraceEsClient'); registry.when('transaction error rate alert', { config: 'basic', archives: [] }, () => { - let ruleId1: string; - let ruleId2: string; - let alertId: string; - let startedAt: string; - let actionId1: string | undefined; - let actionId2: string | undefined; - - const APM_ALERTS_INDEX = '.alerts-observability.apm.alerts-default'; - const ALERT_ACTION_INDEX_NAME1 = 'alert-action-transaction-error-rate1'; - const ALERT_ACTION_INDEX_NAME2 = 'alert-action-transaction-error-rate2'; - before(async () => { + cleanupAllState({ es, supertest }); + const opbeansJava = apm .service({ name: 'opbeans-java', environment: 'production', agentName: 'java' }) .instance('instance'); @@ -82,44 +76,32 @@ export default function ApiTest({ getService }: FtrProviderContext) { after(async () => { await synthtraceEsClient.clean(); - await supertest.delete(`/api/alerting/rule/${ruleId1}`).set('kbn-xsrf', 'foo'); - await supertest.delete(`/api/actions/connector/${actionId1}`).set('kbn-xsrf', 'foo'); - await supertest.delete(`/api/alerting/rule/${ruleId2}`).set('kbn-xsrf', 'foo'); - await supertest.delete(`/api/actions/connector/${actionId2}`).set('kbn-xsrf', 'foo'); - await esDeleteAllIndices([ALERT_ACTION_INDEX_NAME1, ALERT_ACTION_INDEX_NAME2]); - await es.deleteByQuery({ - index: APM_ALERTS_INDEX, - query: { term: { 'kibana.alert.rule.uuid': ruleId1 } }, - }); - await es.deleteByQuery({ - index: APM_ALERTS_INDEX, - query: { term: { 'kibana.alert.rule.uuid': ruleId2 } }, - }); - await es.deleteByQuery({ - index: '.kibana-event-log-*', - query: { term: { 'kibana.alert.rule.consumer': 'apm' } }, - }); + await clearKibanaApmEventLog(es); }); - describe('create alert without filter query', () => { + describe('create rule without kql query', () => { + let ruleId: string; + let actionId: string; + let alerts: ApmAlertFields[]; + before(async () => { - actionId1 = await createIndexConnector({ - supertest, - name: 'Transation error rate without filter query', - indexName: ALERT_ACTION_INDEX_NAME1, + actionId = await createIndexConnector({ supertest, name: 'Transation error rate' }); + const indexAction = getIndexAction({ + actionId, + actionVariables: transactionErrorRateActionVariables, }); + const createdRule = await createApmRule({ supertest, ruleTypeId: ApmRuleType.TransactionErrorRate, - name: 'Apm transaction error rate without filter query', + name: 'Apm transaction error rate without kql query', params: { - threshold: 50, + threshold: 40, windowSize: 5, windowUnit: 'm', transactionType: 'request', serviceName: 'opbeans-java', environment: 'production', - kqlFilter: '', groupBy: [ 'service.name', 'service.environment', @@ -127,66 +109,81 @@ export default function ApiTest({ getService }: FtrProviderContext) { 'transaction.name', ], }, - actions: [ - { - group: 'threshold_met', - id: actionId1, - params: { - documents: [ - { - message: `Transaction Name: {{context.transactionName}} -- Alert URL: {{context.alertDetailsUrl}}`, - }, - ], - }, - frequency: { - notify_when: 'onActionGroupChange', - throttle: null, - summary: false, - }, - }, - ], + actions: [indexAction], }); - expect(createdRule.id).to.not.eql(undefined); - ruleId1 = createdRule.id; + ruleId = createdRule.id; + alerts = await waitForAlertsForRule({ es, ruleId }); + }); + + after(async () => { + await deleteActionConnector({ supertest, es, actionId }); + await deleteRuleById({ supertest, ruleId }); + await deleteAlertsByRuleId({ es, ruleId }); }); it('checks if rule is active', async () => { - const executionStatus = await waitForRuleStatus({ - id: ruleId1, + const ruleStatus = await waitForRuleStatus({ + ruleId, expectedStatus: 'active', supertest, }); - expect(executionStatus.status).to.be('active'); + expect(ruleStatus).to.be('active'); }); - it('indexes alert document with all group-by fields', async () => { - const resp = await waitForAlertInIndex({ - es, - indexName: APM_ALERTS_INDEX, - ruleId: ruleId1, + describe('action variables', () => { + let results: Array<Record<string, string>>; + + before(async () => { + results = await waitForIndexConnectorResults({ es }); }); - alertId = (resp.hits.hits[0]._source as any)['kibana.alert.uuid']; - startedAt = (resp.hits.hits[0]._source as any)['kibana.alert.start']; - expect(resp.hits.hits[0]._source).property('service.name', 'opbeans-java'); - expect(resp.hits.hits[0]._source).property('service.environment', 'production'); - expect(resp.hits.hits[0]._source).property('transaction.type', 'request'); - expect(resp.hits.hits[0]._source).property('transaction.name', 'tx-java'); - }); + it('has the right keys', async () => { + expect(results.length).to.be(1); + expect(Object.keys(results[0]).sort()).to.eql([ + 'alertDetailsUrl', + 'environment', + 'interval', + 'reason', + 'serviceName', + 'threshold', + 'transactionName', + 'transactionType', + 'triggerValue', + 'viewInAppUrl', + ]); + }); - it('returns correct message', async () => { - const rangeFrom = moment(startedAt).subtract('5', 'minute').toISOString(); - const resp = await waitForDocumentInIndex<{ message: string }>({ - es, - indexName: ALERT_ACTION_INDEX_NAME1, + it('has the right values', () => { + expect(omit(results[0], 'alertDetailsUrl')).to.eql({ + environment: 'production', + interval: '5 mins', + reason: + 'Failed transactions is 50% in the last 5 mins for service: opbeans-java, env: production, type: request, name: tx-java. Alert when > 40%.', + serviceName: 'opbeans-java', + transactionName: 'tx-java', + threshold: '40', + transactionType: 'request', + triggerValue: '50', + viewInAppUrl: + 'http://mockedPublicBaseUrl/app/apm/services/opbeans-java?transactionType=request&environment=production', + }); }); + }); + + it('indexes alert document with all group-by fields', async () => { + expect(alerts[0]).property('service.name', 'opbeans-java'); + expect(alerts[0]).property('service.environment', 'production'); + expect(alerts[0]).property('transaction.type', 'request'); + expect(alerts[0]).property('transaction.name', 'tx-java'); + }); - expect(resp.hits.hits[0]._source?.message).eql(`Transaction Name: tx-java -- Alert URL: http://mockedpublicbaseurl/app/observability/alerts?_a=(kuery:%27kibana.alert.uuid:%20%22${alertId}%22%27%2CrangeFrom:%27${rangeFrom}%27%2CrangeTo:now%2Cstatus:all)`); + it('produces an alert for opbeans-java with the correct reason', async () => { + expect(alerts[0]!['kibana.alert.reason']).to.be( + 'Failed transactions is 50% in the last 5 mins for service: opbeans-java, env: production, type: request, name: tx-java. Alert when > 40%.' + ); }); - it('shows the correct alert count for each service on service inventory', async () => { + it('shows the 1 alert count for opbeans-java in service inventory', async () => { const serviceInventoryAlertCounts = await fetchServiceInventoryAlertCounts(apmApiClient); expect(serviceInventoryAlertCounts).to.eql({ 'opbeans-node': 0, @@ -211,26 +208,29 @@ export default function ApiTest({ getService }: FtrProviderContext) { }); }); - describe('create alert with filter query', () => { + describe('create rule with kql query', () => { + let ruleId: string; + let alerts: ApmAlertFields[]; + before(async () => { - actionId2 = await createIndexConnector({ - supertest, - name: 'Transation error rate without filter query', - indexName: ALERT_ACTION_INDEX_NAME2, - }); const createdRule = await createApmRule({ supertest, ruleTypeId: ApmRuleType.TransactionErrorRate, - name: 'Apm transaction error rate without filter query', + name: 'Apm transaction error rate without kql query', params: { - threshold: 50, + threshold: 40, windowSize: 5, windowUnit: 'm', transactionType: undefined, serviceName: undefined, environment: 'ENVIRONMENT_ALL', - kqlFilter: - 'service.name: opbeans-node and transaction.type: request and service.environment: production', + searchConfiguration: { + query: { + query: + 'service.name: opbeans-node and transaction.type: request and service.environment: production', + language: 'kuery', + }, + }, groupBy: [ 'service.name', 'service.environment', @@ -238,82 +238,47 @@ export default function ApiTest({ getService }: FtrProviderContext) { 'transaction.name', ], }, - actions: [ - { - group: 'threshold_met', - id: actionId2, - params: { - documents: [ - { - message: `Transaction Name: {{context.transactionName}} -- Alert URL: {{context.alertDetailsUrl}}`, - }, - ], - }, - frequency: { - notify_when: 'onActionGroupChange', - throttle: null, - summary: false, - }, - }, - ], + actions: [], }); - expect(createdRule.id).to.not.eql(undefined); - ruleId2 = createdRule.id; + ruleId = createdRule.id; + alerts = await waitForAlertsForRule({ es, ruleId }); }); - it('checks if rule is active', async () => { - const executionStatus = await waitForRuleStatus({ - id: ruleId2, - expectedStatus: 'active', - supertest, - }); - expect(executionStatus.status).to.be('active'); + after(async () => { + await deleteRuleById({ supertest, ruleId }); + await deleteAlertsByRuleId({ es, ruleId }); }); it('indexes alert document with all group-by fields', async () => { - const resp = await waitForAlertInIndex({ - es, - indexName: APM_ALERTS_INDEX, - ruleId: ruleId2, - }); - alertId = (resp.hits.hits[0]._source as any)['kibana.alert.uuid']; - startedAt = (resp.hits.hits[0]._source as any)['kibana.alert.start']; - - expect(resp.hits.hits[0]._source).property('service.name', 'opbeans-node'); - expect(resp.hits.hits[0]._source).property('service.environment', 'production'); - expect(resp.hits.hits[0]._source).property('transaction.type', 'request'); - expect(resp.hits.hits[0]._source).property('transaction.name', 'tx-node'); + expect(alerts[0]).property('service.name', 'opbeans-node'); + expect(alerts[0]).property('service.environment', 'production'); + expect(alerts[0]).property('transaction.type', 'request'); + expect(alerts[0]).property('transaction.name', 'tx-node'); }); - it('returns correct message', async () => { - const rangeFrom = moment(startedAt).subtract('5', 'minute').toISOString(); - const resp = await waitForDocumentInIndex<{ message: string }>({ - es, - indexName: ALERT_ACTION_INDEX_NAME2, - }); - - expect(resp.hits.hits[0]._source?.message).eql(`Transaction Name: tx-node -- Alert URL: http://mockedpublicbaseurl/app/observability/alerts?_a=(kuery:%27kibana.alert.uuid:%20%22${alertId}%22%27%2CrangeFrom:%27${rangeFrom}%27%2CrangeTo:now%2Cstatus:all)`); + it('produces an alert for opbeans-node with the correct reason', async () => { + expect(alerts[0]!['kibana.alert.reason']).to.be( + 'Failed transactions is 50% in the last 5 mins for service: opbeans-node, env: production, type: request, name: tx-node. Alert when > 40%.' + ); }); - it('shows the correct alert count for each service on service inventory', async () => { + it('shows alert count=1 for opbeans-node on service inventory', async () => { const serviceInventoryAlertCounts = await fetchServiceInventoryAlertCounts(apmApiClient); expect(serviceInventoryAlertCounts).to.eql({ 'opbeans-node': 1, - 'opbeans-java': 1, + 'opbeans-java': 0, }); }); - it('shows the correct alert count in opbeans-java service', async () => { + it('shows alert count=0 in opbeans-java service', async () => { const serviceTabAlertCount = await fetchServiceTabAlertCount({ apmApiClient, serviceName: 'opbeans-java', }); - expect(serviceTabAlertCount).to.be(1); + expect(serviceTabAlertCount).to.be(0); }); - it('shows the correct alert count in opbeans-node service', async () => { + it('shows alert count=1 in opbeans-node service', async () => { const serviceTabAlertCount = await fetchServiceTabAlertCount({ apmApiClient, serviceName: 'opbeans-node', diff --git a/x-pack/test/apm_api_integration/tests/alerts/wait_for_rule_status.ts b/x-pack/test/apm_api_integration/tests/alerts/wait_for_rule_status.ts deleted file mode 100644 index 03a4aacd8f2ec..0000000000000 --- a/x-pack/test/apm_api_integration/tests/alerts/wait_for_rule_status.ts +++ /dev/null @@ -1,111 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ -import type { Client } from '@elastic/elasticsearch'; -import type { - AggregationsAggregate, - SearchResponse, -} from '@elastic/elasticsearch/lib/api/typesWithBodyKey'; -import pRetry from 'p-retry'; -import type SuperTest from 'supertest'; - -export async function waitForRuleStatus({ - id, - expectedStatus, - supertest, -}: { - id: string; - expectedStatus: string; - supertest: SuperTest.SuperTest<SuperTest.Test>; -}): Promise<Record<string, any>> { - return pRetry( - async () => { - const response = await supertest.get(`/api/alerting/rule/${id}`); - const { execution_status: executionStatus } = response.body || {}; - const { status } = executionStatus || {}; - if (status !== expectedStatus) { - throw new Error(`waitForStatus(${expectedStatus}): got ${status}`); - } - return executionStatus; - }, - { retries: 10 } - ); -} - -export async function runRuleSoon({ - ruleId, - supertest, -}: { - ruleId: string; - supertest: SuperTest.SuperTest<SuperTest.Test>; -}): Promise<Record<string, any>> { - return pRetry( - async () => { - try { - const response = await supertest - .post(`/internal/alerting/rule/${ruleId}/_run_soon`) - .set('kbn-xsrf', 'foo'); - // Sometimes the rule may already be running, which returns a 200. Try until it isn't - if (response.status !== 204) { - throw new Error(`runRuleSoon got ${response.status} status`); - } - return response; - } catch (error) { - throw new Error(`[Rule] Running a rule ${ruleId} failed: ${error}`); - } - }, - { retries: 10 } - ); -} - -export async function waitForDocumentInIndex<T>({ - es, - indexName, -}: { - es: Client; - indexName: string; -}): Promise<SearchResponse<T, Record<string, AggregationsAggregate>>> { - return pRetry( - async () => { - const response = await es.search<T>({ index: indexName }); - if (response.hits.hits.length === 0) { - throw new Error('No hits found'); - } - return response; - }, - { retries: 10 } - ); -} - -export async function waitForAlertInIndex<T>({ - es, - indexName, - ruleId, -}: { - es: Client; - indexName: string; - ruleId: string; -}): Promise<SearchResponse<T, Record<string, AggregationsAggregate>>> { - return pRetry( - async () => { - const response = await es.search<T>({ - index: indexName, - body: { - query: { - term: { - 'kibana.alert.rule.uuid': ruleId, - }, - }, - }, - }); - if (response.hits.hits.length === 0) { - throw new Error('No hits found'); - } - return response; - }, - { retries: 10 } - ); -} diff --git a/x-pack/test/apm_api_integration/tests/event_metadata/event_metadata.spec.ts b/x-pack/test/apm_api_integration/tests/event_metadata/event_metadata.spec.ts index a2c3328f633b3..b390df4c98eae 100644 --- a/x-pack/test/apm_api_integration/tests/event_metadata/event_metadata.spec.ts +++ b/x-pack/test/apm_api_integration/tests/event_metadata/event_metadata.spec.ts @@ -12,10 +12,10 @@ import { FtrProviderContext } from '../../common/ftr_provider_context'; export default function ApiTest({ getService }: FtrProviderContext) { const registry = getService('registry'); const apmApiClient = getService('apmApiClient'); - const esClient = getService('es'); + const es = getService('es'); async function getLastDocId(processorEvent: ProcessorEvent) { - const response = await esClient.search<{ + const response = await es.search<{ [key: string]: { id: string }; }>({ index: ['apm-*'], diff --git a/x-pack/test/apm_api_integration/tests/index.ts b/x-pack/test/apm_api_integration/tests/index.ts index aa3d8ac8afaeb..7b4ab43aaaeae 100644 --- a/x-pack/test/apm_api_integration/tests/index.ts +++ b/x-pack/test/apm_api_integration/tests/index.ts @@ -14,7 +14,9 @@ const envGrepFiles = process.env.APM_TEST_GREP_FILES as string; function getGlobPattern() { try { const envGrepFilesParsed = JSON.parse(envGrepFiles as string) as string[]; - return envGrepFilesParsed.map((pattern) => `**/${pattern}**`); + return envGrepFilesParsed.map((pattern) => { + return pattern.includes('spec') ? `**/${pattern}**` : `**/${pattern}**.spec.ts`; + }); } catch (e) { // ignore } diff --git a/x-pack/test/apm_api_integration/tests/service_groups/service_group_count/service_group_count.spec.ts b/x-pack/test/apm_api_integration/tests/service_groups/service_group_count/service_group_count.spec.ts index 481b95afbc357..14a5af9478b0b 100644 --- a/x-pack/test/apm_api_integration/tests/service_groups/service_group_count/service_group_count.spec.ts +++ b/x-pack/test/apm_api_integration/tests/service_groups/service_group_count/service_group_count.spec.ts @@ -7,8 +7,12 @@ import { AggregationType, ApmRuleType } from '@kbn/apm-plugin/common/rules/apm_rule_types'; import expect from '@kbn/expect'; import { FtrProviderContext } from '../../../common/ftr_provider_context'; -import { waitForActiveAlert } from '../../../common/utils/wait_for_active_alert'; -import { createApmRule } from '../../alerts/alerting_api_helper'; +import { + createApmRule, + deleteRuleById, + deleteApmAlerts, +} from '../../alerts/helpers/alerting_api_helper'; +import { waitForActiveApmAlert } from '../../alerts/helpers/wait_for_active_apm_alerts'; import { createServiceGroupApi, deleteAllServiceGroups, @@ -21,7 +25,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { const apmApiClient = getService('apmApiClient'); const supertest = getService('supertest'); const synthtraceEsClient = getService('synthtraceEsClient'); - const esClient = getService('es'); + const es = getService('es'); const log = getService('log'); const start = Date.now() - 24 * 60 * 60 * 1000; const end = Date.now(); @@ -84,12 +88,12 @@ export default function ApiTest({ getService }: FtrProviderContext) { before(async () => { const createdRule = await createRule(); ruleId = createdRule.id; - await waitForActiveAlert({ ruleId, esClient, log }); + await waitForActiveApmAlert({ ruleId, esClient: es, log }); }); after(async () => { - await supertest.delete(`/api/alerting/rule/${ruleId}`).set('kbn-xsrf', 'true'); - await esClient.deleteByQuery({ index: '.alerts*', query: { match_all: {} } }); + await deleteRuleById({ supertest, ruleId }); + await deleteApmAlerts(es); }); it('returns the correct number of alerts', async () => { diff --git a/x-pack/test/apm_api_integration/tests/services/service_alerts.spec.ts b/x-pack/test/apm_api_integration/tests/services/service_alerts.spec.ts index 59d3c50da8a9f..682c87766517d 100644 --- a/x-pack/test/apm_api_integration/tests/services/service_alerts.spec.ts +++ b/x-pack/test/apm_api_integration/tests/services/service_alerts.spec.ts @@ -8,26 +8,27 @@ import expect from '@kbn/expect'; import { AggregationType, ApmRuleType } from '@kbn/apm-plugin/common/rules/apm_rule_types'; import { apm, timerange } from '@kbn/apm-synthtrace-client'; import { FtrProviderContext } from '../../common/ftr_provider_context'; -import { createApmRule } from '../alerts/alerting_api_helper'; import { - waitForRuleStatus, + createApmRule, + deleteApmAlerts, runRuleSoon, - waitForAlertInIndex, -} from '../alerts/wait_for_rule_status'; + deleteRuleById, + ApmAlertFields, +} from '../alerts/helpers/alerting_api_helper'; +import { waitForRuleStatus } from '../alerts/helpers/wait_for_rule_status'; +import { waitForAlertsForRule } from '../alerts/helpers/wait_for_alerts_for_rule'; export default function ServiceAlerts({ getService }: FtrProviderContext) { const registry = getService('registry'); const apmApiClient = getService('apmApiClient'); const supertest = getService('supertest'); const synthtraceEsClient = getService('synthtraceEsClient'); - const esClient = getService('es'); + const es = getService('es'); const dayInMs = 24 * 60 * 60 * 1000; const start = Date.now() - dayInMs; const end = Date.now() + dayInMs; const goService = 'synth-go'; - const APM_ALERTS_INDEX = '.alerts-observability.apm.alerts-default'; - async function getServiceAlerts({ serviceName, environment, @@ -120,24 +121,26 @@ export default function ServiceAlerts({ getService }: FtrProviderContext) { describe('with alerts', () => { let ruleId: string; + let alerts: ApmAlertFields[]; + before(async () => { const createdRule = await createRule(); ruleId = createdRule.id; - expect(createdRule.id).to.not.eql(undefined); + alerts = await waitForAlertsForRule({ es, ruleId }); }); after(async () => { - await supertest.delete(`/api/alerting/rule/${ruleId}`).set('kbn-xsrf', 'true'); - await esClient.deleteByQuery({ index: '.alerts*', query: { match_all: {} } }); + await deleteRuleById({ supertest, ruleId }); + await deleteApmAlerts(es); }); it('checks if rule is active', async () => { - const executionStatus = await waitForRuleStatus({ - id: ruleId, + const ruleStatus = await waitForRuleStatus({ + ruleId, expectedStatus: 'active', supertest, }); - expect(executionStatus.status).to.be('active'); + expect(ruleStatus).to.be('active'); }); it('should successfully run the rule', async () => { @@ -148,14 +151,8 @@ export default function ServiceAlerts({ getService }: FtrProviderContext) { expect(response.status).to.be(204); }); - it('indexes alert document', async () => { - const resp = await waitForAlertInIndex({ - es: esClient, - indexName: APM_ALERTS_INDEX, - ruleId, - }); - - expect(resp.hits.hits.length).to.be(1); + it('produces 1 alert', async () => { + expect(alerts.length).to.be(1); }); it('returns the correct number of alerts', async () => { diff --git a/x-pack/test/apm_api_integration/tests/settings/agent_keys/agent_keys.spec.ts b/x-pack/test/apm_api_integration/tests/settings/agent_keys/agent_keys.spec.ts index 2b8506af33a36..82c869dd09fe2 100644 --- a/x-pack/test/apm_api_integration/tests/settings/agent_keys/agent_keys.spec.ts +++ b/x-pack/test/apm_api_integration/tests/settings/agent_keys/agent_keys.spec.ts @@ -15,7 +15,7 @@ import { expectToReject } from '../../../common/utils/expect_to_reject'; export default function ApiTest({ getService }: FtrProviderContext) { const registry = getService('registry'); const apmApiClient = getService('apmApiClient'); - const esClient = getService('es'); + const es = getService('es'); const agentKeyName = 'test'; const allApplicationPrivileges = [PrivilegeType.AGENT_CONFIG, PrivilegeType.EVENT]; @@ -100,7 +100,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { { config: 'basic', archives: [] }, () => { afterEach(async () => { - await esClient.security.invalidateApiKey({ + await es.security.invalidateApiKey({ username: ApmUsername.apmManageOwnAndCreateAgentKeys, }); }); @@ -114,7 +114,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { expect(body.agentKey).to.have.property('encoded'); expect(body.agentKey.name).to.be(agentKeyName); - const { api_keys: apiKeys } = await esClient.security.getApiKey({}); + const { api_keys: apiKeys } = await es.security.getApiKey({}); expect( apiKeys.filter((key) => !key.invalidated && key.metadata?.application === 'apm') ).to.have.length(1); @@ -139,7 +139,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { expect(body.invalidatedAgentKeys).to.eql([id]); // Get - const { api_keys: apiKeys } = await esClient.security.getApiKey({}); + const { api_keys: apiKeys } = await es.security.getApiKey({}); expect( apiKeys.filter((key) => !key.invalidated && key.metadata?.application === 'apm') ).to.be.empty(); diff --git a/x-pack/test/apm_api_integration/tests/sourcemaps/sourcemaps.ts b/x-pack/test/apm_api_integration/tests/sourcemaps/sourcemaps.ts index 48a5cd4f1077e..769041847bb3f 100644 --- a/x-pack/test/apm_api_integration/tests/sourcemaps/sourcemaps.ts +++ b/x-pack/test/apm_api_integration/tests/sourcemaps/sourcemaps.ts @@ -40,11 +40,11 @@ a1.TableInfo$ForeignKey$$ExternalSyntheticOutline0 -> a1.e: export default function ApiTest({ getService }: FtrProviderContext) { const registry = getService('registry'); const apmApiClient = getService('apmApiClient'); - const esClient = getService('es'); + const es = getService('es'); function waitForSourceMapCount(expectedCount: number) { const getSourceMapCount = async () => { - const res = await esClient.search({ + const res = await es.search({ index: '.apm-source-map', size: 0, track_total_hits: true, @@ -64,7 +64,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { } async function deleteAllApmSourceMaps() { - await esClient.deleteByQuery({ + await es.deleteByQuery({ index: '.apm-source-map*', refresh: true, query: { match_all: {} }, @@ -72,7 +72,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { } async function deleteAllFleetSourceMaps() { - return esClient.deleteByQuery({ + return es.deleteByQuery({ index: '.fleet-artifacts*', refresh: true, query: { @@ -195,7 +195,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { }); it('is uploaded as a fleet artifact', async () => { - const res = await esClient.search({ + const res = await es.search({ index: '.fleet-artifacts', size: 1, query: { @@ -210,7 +210,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { }); it('is added to .apm-source-map index', async () => { - const res = await esClient.search<ApmSourceMap>({ + const res = await es.search<ApmSourceMap>({ index: '.apm-source-map', }); @@ -231,8 +231,8 @@ export default function ApiTest({ getService }: FtrProviderContext) { before(async () => { async function getSourceMapDocFromApmIndex() { - await esClient.indices.refresh({ index: '.apm-source-map' }); - return await esClient.get<ApmSourceMap>({ + await es.indices.refresh({ index: '.apm-source-map' }); + return await es.get<ApmSourceMap>({ index: '.apm-source-map', id: 'uploading-test-1.0.0-bar', }); @@ -256,7 +256,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { }); it('creates one document in the .apm-source-map index', async () => { - const res = await esClient.search<ApmSourceMap>({ index: '.apm-source-map', size: 0 }); + const res = await es.search<ApmSourceMap>({ index: '.apm-source-map', size: 0 }); // @ts-expect-error expect(res.hits.total.value).to.be(1); @@ -301,7 +301,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { }); it('is uploaded as a fleet artifact', async () => { - const res = await esClient.search({ + const res = await es.search({ index: '.fleet-artifacts', size: 1, query: { @@ -316,7 +316,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { }); it('is added to .apm-source-map index', async () => { - const res = await esClient.search<ApmSourceMap>({ + const res = await es.search<ApmSourceMap>({ index: '.apm-source-map', }); @@ -337,8 +337,8 @@ export default function ApiTest({ getService }: FtrProviderContext) { before(async () => { async function getSourceMapDocFromApmIndex() { - await esClient.indices.refresh({ index: '.apm-source-map' }); - return await esClient.get<ApmSourceMap>({ + await es.indices.refresh({ index: '.apm-source-map' }); + return await es.get<ApmSourceMap>({ index: '.apm-source-map', id: 'uploading-test-1.0.0-android', }); @@ -361,7 +361,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { }); it('creates one document in the .apm-source-map index', async () => { - const res = await esClient.search<ApmSourceMap>({ index: '.apm-source-map', size: 0 }); + const res = await es.search<ApmSourceMap>({ index: '.apm-source-map', size: 0 }); // @ts-expect-error expect(res.hits.total.value).to.be(1); @@ -475,7 +475,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { it('can delete an apm source map', async () => { // check that the sourcemap is deleted from .apm-source-map index - const res = await esClient.search({ index: '.apm-source-map' }); + const res = await es.search({ index: '.apm-source-map' }); // @ts-expect-error expect(res.hits.total.value).to.be(0); }); diff --git a/x-pack/test/apm_api_integration/tests/time_range_metadata/time_range_metadata.spec.ts b/x-pack/test/apm_api_integration/tests/time_range_metadata/time_range_metadata.spec.ts index 4ee6221a0e7a9..34600b863b517 100644 --- a/x-pack/test/apm_api_integration/tests/time_range_metadata/time_range_metadata.spec.ts +++ b/x-pack/test/apm_api_integration/tests/time_range_metadata/time_range_metadata.spec.ts @@ -22,8 +22,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { const registry = getService('registry'); const apmApiClient = getService('apmApiClient'); const synthtraceEsClient = getService('synthtraceEsClient'); - - const esClient = getService('es'); + const es = getService('es'); const start = moment('2022-01-01T00:00:00.000Z'); const end = moment('2022-01-02T00:00:00.000Z').subtract(1, 'millisecond'); @@ -386,7 +385,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { describe('when service metrics are only available in the current time range', () => { before(async () => { - await esClient.deleteByQuery({ + await es.deleteByQuery({ index: 'metrics-apm*', query: { bool: { @@ -436,7 +435,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { describe('after deleting a specific data set', () => { before(async () => { - await esClient.deleteByQuery({ + await es.deleteByQuery({ index: 'metrics-apm*', query: { bool: { diff --git a/x-pack/test/apm_api_integration/tests/transactions/transactions_groups_alerts.spec.ts b/x-pack/test/apm_api_integration/tests/transactions/transactions_groups_alerts.spec.ts index 483c47ac96846..46ca219c5b6f4 100644 --- a/x-pack/test/apm_api_integration/tests/transactions/transactions_groups_alerts.spec.ts +++ b/x-pack/test/apm_api_integration/tests/transactions/transactions_groups_alerts.spec.ts @@ -13,12 +13,15 @@ import { RollupInterval } from '@kbn/apm-plugin/common/rollup'; import { apm, timerange } from '@kbn/apm-synthtrace-client'; import { AggregationType, ApmRuleType } from '@kbn/apm-plugin/common/rules/apm_rule_types'; import { FtrProviderContext } from '../../common/ftr_provider_context'; -import { createApmRule } from '../alerts/alerting_api_helper'; import { - waitForRuleStatus, + createApmRule, runRuleSoon, - waitForAlertInIndex, -} from '../alerts/wait_for_rule_status'; + deleteApmAlerts, + deleteRuleById, + ApmAlertFields, +} from '../alerts/helpers/alerting_api_helper'; +import { waitForRuleStatus } from '../alerts/helpers/wait_for_rule_status'; +import { waitForAlertsForRule } from '../alerts/helpers/wait_for_alerts_for_rule'; type TransactionsGroupsMainStatistics = APIReturnType<'GET /internal/apm/services/{serviceName}/transactions/groups/main_statistics'>; @@ -28,12 +31,11 @@ export default function ApiTest({ getService }: FtrProviderContext) { const apmApiClient = getService('apmApiClient'); const synthtraceEsClient = getService('synthtraceEsClient'); const supertest = getService('supertest'); - const esClient = getService('es'); + const es = getService('es'); const serviceName = 'synth-go'; const dayInMs = 24 * 60 * 60 * 1000; const start = Date.now() - dayInMs; const end = Date.now() + dayInMs; - const APM_ALERTS_INDEX = '.alerts-observability.apm.alerts-default'; async function getTransactionGroups(overrides?: { path?: { @@ -139,6 +141,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { describe('Transaction groups with avg transaction duration alerts', () => { let ruleId: string; + let alerts: ApmAlertFields[]; before(async () => { const createdRule = await createApmRule({ @@ -162,22 +165,22 @@ export default function ApiTest({ getService }: FtrProviderContext) { }, ruleTypeId: ApmRuleType.TransactionDuration, }); - expect(createdRule.id).to.not.eql(undefined); ruleId = createdRule.id; + alerts = await waitForAlertsForRule({ es, ruleId }); }); after(async () => { - await supertest.delete(`/api/alerting/rule/${ruleId}`).set('kbn-xsrf', 'true'); - await esClient.deleteByQuery({ index: '.alerts*', query: { match_all: {} } }); + await deleteRuleById({ supertest, ruleId }); + await deleteApmAlerts(es); }); it('checks if rule is active', async () => { - const executionStatus = await waitForRuleStatus({ - id: ruleId, + const ruleStatus = await waitForRuleStatus({ + ruleId, expectedStatus: 'active', supertest, }); - expect(executionStatus.status).to.be('active'); + expect(ruleStatus).to.be('active'); }); it('should successfully run the rule', async () => { @@ -189,13 +192,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { }); it('indexes alert document', async () => { - const resp = await waitForAlertInIndex({ - es: esClient, - indexName: APM_ALERTS_INDEX, - ruleId, - }); - - expect(resp.hits.hits.length).to.be(1); + expect(alerts.length).to.be(1); }); it('returns the correct number of alert counts', async () => { @@ -221,6 +218,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { describe('Transaction groups with p99 transaction duration alerts', () => { let ruleId: string; + let alerts: ApmAlertFields[]; before(async () => { const createdRule = await createApmRule({ @@ -244,22 +242,23 @@ export default function ApiTest({ getService }: FtrProviderContext) { }, ruleTypeId: ApmRuleType.TransactionDuration, }); - expect(createdRule.id).to.not.eql(undefined); + ruleId = createdRule.id; + alerts = await waitForAlertsForRule({ es, ruleId }); }); after(async () => { - await supertest.delete(`/api/alerting/rule/${ruleId}`).set('kbn-xsrf', 'true'); - await esClient.deleteByQuery({ index: '.alerts*', query: { match_all: {} } }); + await deleteRuleById({ supertest, ruleId }); + await deleteApmAlerts(es); }); it('checks if rule is active', async () => { - const executionStatus = await waitForRuleStatus({ - id: ruleId, + const ruleStatus = await waitForRuleStatus({ + ruleId, expectedStatus: 'active', supertest, }); - expect(executionStatus.status).to.be('active'); + expect(ruleStatus).to.be('active'); }); it('should successfully run the rule', async () => { @@ -271,13 +270,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { }); it('indexes alert document', async () => { - const resp = await waitForAlertInIndex({ - es: esClient, - indexName: APM_ALERTS_INDEX, - ruleId, - }); - - expect(resp.hits.hits.length).to.be(1); + expect(alerts.length).to.be(1); }); it('returns the correct number of alert counts', async () => { @@ -306,6 +299,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { describe('Transaction groups with error rate alerts', () => { let ruleId: string; + let alerts: ApmAlertFields[]; before(async () => { const createdRule = await createApmRule({ @@ -328,22 +322,22 @@ export default function ApiTest({ getService }: FtrProviderContext) { }, ruleTypeId: ApmRuleType.TransactionErrorRate, }); - expect(createdRule.id).to.not.eql(undefined); ruleId = createdRule.id; + alerts = await waitForAlertsForRule({ es, ruleId }); }); after(async () => { - await supertest.delete(`/api/alerting/rule/${ruleId}`).set('kbn-xsrf', 'true'); - await esClient.deleteByQuery({ index: '.alerts*', query: { match_all: {} } }); + await deleteRuleById({ supertest, ruleId }); + await deleteApmAlerts(es); }); it('checks if rule is active', async () => { - const executionStatus = await waitForRuleStatus({ - id: ruleId, + const ruleStatus = await waitForRuleStatus({ + ruleId, expectedStatus: 'active', supertest, }); - expect(executionStatus.status).to.be('active'); + expect(ruleStatus).to.be('active'); }); it('should successfully run the rule', async () => { @@ -355,13 +349,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { }); it('indexes alert document', async () => { - const resp = await waitForAlertInIndex({ - es: esClient, - indexName: APM_ALERTS_INDEX, - ruleId, - }); - - expect(resp.hits.hits.length).to.be(1); + expect(alerts.length).to.be(1); }); it('returns the correct number of alert counts', async () => { diff --git a/x-pack/test/cases_api_integration/common/lib/api/index.ts b/x-pack/test/cases_api_integration/common/lib/api/index.ts index e1ffdcd51c588..f32a578103584 100644 --- a/x-pack/test/cases_api_integration/common/lib/api/index.ts +++ b/x-pack/test/cases_api_integration/common/lib/api/index.ts @@ -524,6 +524,7 @@ export const getCase = async ({ `${getSpaceUrlPrefix(auth?.space)}${CASES_URL}/${caseId}?includeComments=${includeComments}` ) .set('kbn-xsrf', 'true') + .set('x-elastic-internal-origin', 'foo') .auth(auth.user.username, auth.user.password) .expect(expectedHttpCode); diff --git a/x-pack/test/detection_engine_api_integration/basic/tests/coverage_overview.ts b/x-pack/test/detection_engine_api_integration/basic/tests/coverage_overview.ts index ffa076ffa8e20..e894cea05325c 100644 --- a/x-pack/test/detection_engine_api_integration/basic/tests/coverage_overview.ts +++ b/x-pack/test/detection_engine_api_integration/basic/tests/coverage_overview.ts @@ -20,6 +20,7 @@ import { getSimpleRule, installPrebuiltRulesAndTimelines, } from '../../utils'; +import { createNonSecurityRule } from '../../utils/create_non_security_rule'; // eslint-disable-next-line import/no-default-export export default ({ getService }: FtrProviderContext): void => { @@ -32,11 +33,42 @@ export default ({ getService }: FtrProviderContext): void => { await deleteAllRules(supertest, log); }); + it('does NOT error when there are no security rules', async () => { + await createNonSecurityRule(supertest); + const rule1 = await createRule(supertest, log, { + ...getSimpleRule(), + threat: generateThreatArray(1), + }); + + const { body } = await supertest + .post(RULE_MANAGEMENT_COVERAGE_OVERVIEW_URL) + .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') + .send({}) + .expect(200); + + expect(body).to.eql({ + coverage: { + T001: [rule1.id], + TA001: [rule1.id], + 'T001.001': [rule1.id], + }, + unmapped_rule_ids: [], + rules_data: { + [rule1.id]: { + activity: 'disabled', + name: 'Simple Rule Query', + }, + }, + }); + }); + describe('without filters', () => { it('returns an empty response if there are no rules', async () => { const { body } = await supertest .post(RULE_MANAGEMENT_COVERAGE_OVERVIEW_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .send({}) .expect(200); @@ -56,6 +88,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(RULE_MANAGEMENT_COVERAGE_OVERVIEW_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .send({}) .expect(200); @@ -81,6 +114,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(RULE_MANAGEMENT_COVERAGE_OVERVIEW_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .send({}) .expect(200); @@ -112,6 +146,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(RULE_MANAGEMENT_COVERAGE_OVERVIEW_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .send({ filter: { search_term: 'TA002', @@ -148,6 +183,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(RULE_MANAGEMENT_COVERAGE_OVERVIEW_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .send({ filter: { search_term: 'T002', @@ -184,6 +220,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(RULE_MANAGEMENT_COVERAGE_OVERVIEW_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .send({ filter: { search_term: 'T002.002', @@ -217,6 +254,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(RULE_MANAGEMENT_COVERAGE_OVERVIEW_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .send({ filter: { search_term: 'rule-2', @@ -249,6 +287,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(RULE_MANAGEMENT_COVERAGE_OVERVIEW_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .send({ filter: { search_term: 'index-pattern-2', @@ -283,6 +322,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(RULE_MANAGEMENT_COVERAGE_OVERVIEW_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .send({ filter: { activity: ['disabled'], @@ -319,6 +359,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(RULE_MANAGEMENT_COVERAGE_OVERVIEW_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .send({ filter: { activity: ['enabled'], @@ -342,9 +383,9 @@ export default ({ getService }: FtrProviderContext): void => { }); }); - it('returns response filtered by enabled and disabled rules equal to response if enabled and disabled are not set', async () => { + it('returns all rules if both enabled and disabled filters are specified in the request', async () => { const expectedRule1 = await createRule(supertest, log, { - ...getSimpleRule('rule-1'), + ...getSimpleRule('rule-1', false), name: 'Disabled rule', threat: generateThreatArray(1), }); @@ -357,6 +398,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(RULE_MANAGEMENT_COVERAGE_OVERVIEW_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .send({ filter: { activity: ['enabled', 'disabled'], @@ -406,6 +448,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(RULE_MANAGEMENT_COVERAGE_OVERVIEW_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .send({ filter: { source: ['custom'], diff --git a/x-pack/test/detection_engine_api_integration/basic/tests/create_rules.ts b/x-pack/test/detection_engine_api_integration/basic/tests/create_rules.ts index 57c9651bec55a..00307619d8477 100644 --- a/x-pack/test/detection_engine_api_integration/basic/tests/create_rules.ts +++ b/x-pack/test/detection_engine_api_integration/basic/tests/create_rules.ts @@ -53,6 +53,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(200); @@ -109,6 +110,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(rule) .expect(200); @@ -120,6 +122,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRuleWithoutRuleId()) .expect(200); @@ -131,6 +134,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleMlRule()) .expect(403); @@ -145,12 +149,14 @@ export default ({ getService }: FtrProviderContext) => { await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(200); const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(409); diff --git a/x-pack/test/detection_engine_api_integration/basic/tests/create_rules_bulk.ts b/x-pack/test/detection_engine_api_integration/basic/tests/create_rules_bulk.ts index a506ece93a4c7..d23d92e2887a2 100644 --- a/x-pack/test/detection_engine_api_integration/basic/tests/create_rules_bulk.ts +++ b/x-pack/test/detection_engine_api_integration/basic/tests/create_rules_bulk.ts @@ -51,6 +51,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_CREATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([getSimpleRule()]) .expect(200); @@ -62,6 +63,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_CREATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([getSimpleRuleWithoutRuleId()]) .expect(200); @@ -73,6 +75,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_CREATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([getSimpleRule(), getSimpleRule()]) .expect(200); @@ -91,12 +94,14 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(DETECTION_ENGINE_RULES_BULK_CREATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([getSimpleRule()]) .expect(200); const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_CREATE) .set('kbn-xsrf', 'foo') + .set('elastic-api-version', '2023-10-31') .send([getSimpleRule()]) .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/basic/tests/delete_rules.ts b/x-pack/test/detection_engine_api_integration/basic/tests/delete_rules.ts index d5afe8edfd3f5..b649b16d7ef02 100644 --- a/x-pack/test/detection_engine_api_integration/basic/tests/delete_rules.ts +++ b/x-pack/test/detection_engine_api_integration/basic/tests/delete_rules.ts @@ -46,6 +46,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .delete(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-1`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .expect(200); const bodyToCompare = removeServerGeneratedProperties(body); @@ -59,6 +60,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .delete(`${DETECTION_ENGINE_RULES_URL}?rule_id=${bodyWithCreatedRule.rule_id}`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .expect(200); const bodyToCompare = removeServerGeneratedPropertiesIncludingRuleId(body); @@ -72,6 +74,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .delete(`${DETECTION_ENGINE_RULES_URL}?id=${bodyWithCreatedRule.id}`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .expect(200); const bodyToCompare = removeServerGeneratedPropertiesIncludingRuleId(body); @@ -82,6 +85,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .delete(`${DETECTION_ENGINE_RULES_URL}?id=c1e1b359-7ac1-4e96-bc81-c683c092436f`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .expect(404); expect(body).to.eql({ @@ -94,6 +98,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .delete(`${DETECTION_ENGINE_RULES_URL}?rule_id=fake_id`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .expect(404); expect(body).to.eql({ diff --git a/x-pack/test/detection_engine_api_integration/basic/tests/delete_rules_bulk.ts b/x-pack/test/detection_engine_api_integration/basic/tests/delete_rules_bulk.ts index a7623f58d4557..c2017aead47d8 100644 --- a/x-pack/test/detection_engine_api_integration/basic/tests/delete_rules_bulk.ts +++ b/x-pack/test/detection_engine_api_integration/basic/tests/delete_rules_bulk.ts @@ -46,6 +46,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .delete(DETECTION_ENGINE_RULES_BULK_DELETE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ rule_id: 'rule-1' }]) .expect(200); @@ -59,8 +60,9 @@ export default ({ getService }: FtrProviderContext): void => { // delete that rule by its rule_id const { body } = await supertest .delete(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ rule_id: bodyWithCreatedRule.rule_id }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ rule_id: bodyWithCreatedRule.rule_id }]) .expect(200); const bodyToCompare = removeServerGeneratedPropertiesIncludingRuleId(body[0]); @@ -73,8 +75,9 @@ export default ({ getService }: FtrProviderContext): void => { // delete that rule by its id const { body } = await supertest .delete(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ id: bodyWithCreatedRule.id }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ id: bodyWithCreatedRule.id }]) .expect(200); const bodyToCompare = removeServerGeneratedPropertiesIncludingRuleId(body[0]); @@ -84,8 +87,9 @@ export default ({ getService }: FtrProviderContext): void => { it('should return an error if the ruled_id does not exist when trying to delete a rule_id', async () => { const { body } = await supertest .delete(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ rule_id: 'fake_id' }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ rule_id: 'fake_id' }]) .expect(200); expect(body).to.eql([ @@ -102,8 +106,9 @@ export default ({ getService }: FtrProviderContext): void => { it('should return an error if the id does not exist when trying to delete an id', async () => { const { body } = await supertest .delete(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ id: 'c4e80a0d-e20f-4efc-84c1-08112da5a612' }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ id: 'c4e80a0d-e20f-4efc-84c1-08112da5a612' }]) .expect(200); expect(body).to.eql([ @@ -122,8 +127,9 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .delete(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ id: bodyWithCreatedRule.id }, { id: 'c4e80a0d-e20f-4efc-84c1-08112da5a612' }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ id: bodyWithCreatedRule.id }, { id: 'c4e80a0d-e20f-4efc-84c1-08112da5a612' }]) .expect(200); const bodyToCompare = removeServerGeneratedPropertiesIncludingRuleId(body[0]); @@ -158,6 +164,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_DELETE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ rule_id: 'rule-1' }]) .expect(200); @@ -171,8 +178,9 @@ export default ({ getService }: FtrProviderContext): void => { // delete that rule by its rule_id const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ rule_id: bodyWithCreatedRule.rule_id }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ rule_id: bodyWithCreatedRule.rule_id }]) .expect(200); const bodyToCompare = removeServerGeneratedPropertiesIncludingRuleId(body[0]); @@ -185,8 +193,9 @@ export default ({ getService }: FtrProviderContext): void => { // delete that rule by its id const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ id: bodyWithCreatedRule.id }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ id: bodyWithCreatedRule.id }]) .expect(200); const bodyToCompare = removeServerGeneratedPropertiesIncludingRuleId(body[0]); @@ -196,8 +205,9 @@ export default ({ getService }: FtrProviderContext): void => { it('should return an error if the ruled_id does not exist when trying to delete a rule_id', async () => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ rule_id: 'fake_id' }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ rule_id: 'fake_id' }]) .expect(200); expect(body).to.eql([ @@ -214,8 +224,9 @@ export default ({ getService }: FtrProviderContext): void => { it('should return an error if the id does not exist when trying to delete an id', async () => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ id: 'c4e80a0d-e20f-4efc-84c1-08112da5a612' }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ id: 'c4e80a0d-e20f-4efc-84c1-08112da5a612' }]) .expect(200); expect(body).to.eql([ @@ -234,8 +245,9 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ id: bodyWithCreatedRule.id }, { id: 'c4e80a0d-e20f-4efc-84c1-08112da5a612' }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ id: bodyWithCreatedRule.id }, { id: 'c4e80a0d-e20f-4efc-84c1-08112da5a612' }]) .expect(200); const bodyToCompare = removeServerGeneratedPropertiesIncludingRuleId(body[0]); diff --git a/x-pack/test/detection_engine_api_integration/basic/tests/export_rules.ts b/x-pack/test/detection_engine_api_integration/basic/tests/export_rules.ts index c64e630c2a20e..883c9adcc7ad0 100644 --- a/x-pack/test/detection_engine_api_integration/basic/tests/export_rules.ts +++ b/x-pack/test/detection_engine_api_integration/basic/tests/export_rules.ts @@ -43,6 +43,7 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200) .expect('Content-Type', 'application/ndjson') @@ -55,6 +56,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200) .parse(binaryToString); @@ -71,6 +73,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200) .parse(binaryToString); @@ -103,6 +106,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200) .parse(binaryToString); diff --git a/x-pack/test/detection_engine_api_integration/basic/tests/find_rules.ts b/x-pack/test/detection_engine_api_integration/basic/tests/find_rules.ts index 57f823aceecd6..01ee932f60b1b 100644 --- a/x-pack/test/detection_engine_api_integration/basic/tests/find_rules.ts +++ b/x-pack/test/detection_engine_api_integration/basic/tests/find_rules.ts @@ -33,6 +33,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}/_find`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200); @@ -51,6 +52,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}/_find`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200); @@ -68,6 +70,7 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getComplexRule()) .expect(200); @@ -75,6 +78,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}/_find`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/basic/tests/import_rules.ts b/x-pack/test/detection_engine_api_integration/basic/tests/import_rules.ts index 96efaf2279f27..b79bbf13c1cc6 100644 --- a/x-pack/test/detection_engine_api_integration/basic/tests/import_rules.ts +++ b/x-pack/test/detection_engine_api_integration/basic/tests/import_rules.ts @@ -41,6 +41,7 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect('Content-Type', 'application/json; charset=utf-8') .expect(200); @@ -50,6 +51,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.txt') .expect(400); @@ -63,6 +65,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); @@ -85,11 +88,13 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-1`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); @@ -110,6 +115,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', fileNdJson, 'rules.ndjson') .expect(200); @@ -129,6 +135,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', fileNdJson, 'rules.ndjson') .expect(200); @@ -141,6 +148,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-2']), 'rules.ndjson') .expect(200); @@ -168,6 +176,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(ruleIds, false), 'rules.ndjson') .expect(200); @@ -208,6 +217,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(ruleIds, false), 'rules.ndjson') .expect(500); @@ -221,6 +231,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-1']), 'rules.ndjson') .expect(200); @@ -251,6 +262,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import?overwrite=true`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-1']), 'rules.ndjson') .expect(200); @@ -273,12 +285,14 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); @@ -309,12 +323,14 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import?overwrite=true`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import?overwrite=true`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); @@ -337,6 +353,7 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); @@ -347,11 +364,13 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import?overwrite=true`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', ndjson, 'rules.ndjson') .expect(200); const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-1`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); @@ -369,12 +388,14 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-2', 'rule-3']), 'rules.ndjson') .expect(200); @@ -405,12 +426,14 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-2']), 'rules.ndjson') .expect(200); const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-2', 'rule-3']), 'rules.ndjson') .expect(200); @@ -452,27 +475,32 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-2']), 'rules.ndjson') .expect(200); await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-2', 'rule-3']), 'rules.ndjson') .expect(200); const { body: bodyOfRule1 } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-1`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); const { body: bodyOfRule2 } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-2`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); const { body: bodyOfRule3 } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-3`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/basic/tests/patch_rules.ts b/x-pack/test/detection_engine_api_integration/basic/tests/patch_rules.ts index a7759db8e4705..040a504ee282c 100644 --- a/x-pack/test/detection_engine_api_integration/basic/tests/patch_rules.ts +++ b/x-pack/test/detection_engine_api_integration/basic/tests/patch_rules.ts @@ -45,6 +45,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: 'rule-1', name: 'some other name' }) .expect(200); @@ -62,6 +63,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: 'rule-1', type: 'machine_learning' }) .expect(403); @@ -81,6 +83,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: createRuleBody.rule_id, name: 'some other name' }) .expect(200); @@ -98,6 +101,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ id: createdBody.id, name: 'some other name' }) .expect(200); @@ -115,6 +119,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: 'rule-1', enabled: false }) .expect(200); @@ -132,6 +137,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: 'rule-1', severity: 'low', enabled: false }) .expect(200); @@ -151,6 +157,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: 'rule-1', timeline_title: 'some title', timeline_id: 'some id' }) .expect(200); @@ -158,6 +165,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: 'rule-1', name: 'some other name' }) .expect(200); @@ -175,6 +183,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ id: '5096dec6-b6b9-4d8d-8f93-6c2602079d9d', name: 'some other name' }) .expect(404); @@ -188,6 +197,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: 'fake_id', name: 'some other name' }) .expect(404); diff --git a/x-pack/test/detection_engine_api_integration/basic/tests/patch_rules_bulk.ts b/x-pack/test/detection_engine_api_integration/basic/tests/patch_rules_bulk.ts index 1ed2f14b8f80d..48407ba7df94b 100644 --- a/x-pack/test/detection_engine_api_integration/basic/tests/patch_rules_bulk.ts +++ b/x-pack/test/detection_engine_api_integration/basic/tests/patch_rules_bulk.ts @@ -45,6 +45,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ rule_id: 'rule-1', name: 'some other name' }]) .expect(200); @@ -63,6 +64,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ { rule_id: 'rule-1', name: 'some other name' }, { rule_id: 'rule-2', name: 'some other name' }, @@ -90,6 +92,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ id: createRuleBody.id, name: 'some other name' }]) .expect(200); @@ -108,6 +111,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ { id: createRule1.id, name: 'some other name' }, { id: createRule2.id, name: 'some other name' }, @@ -135,6 +139,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ id: createdBody.id, name: 'some other name' }]) .expect(200); @@ -152,6 +157,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ rule_id: 'rule-1', enabled: false }]) .expect(200); @@ -169,6 +175,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ rule_id: 'rule-1', severity: 'low', enabled: false }]) .expect(200); @@ -188,6 +195,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ rule_id: 'rule-1', timeline_title: 'some title', timeline_id: 'some id' }]) .expect(200); @@ -195,6 +203,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ rule_id: 'rule-1', name: 'some other name' }]) .expect(200); @@ -212,6 +221,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ id: '5096dec6-b6b9-4d8d-8f93-6c2602079d9d', name: 'some other name' }]) .expect(200); @@ -230,6 +240,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ rule_id: 'fake_id', name: 'some other name' }]) .expect(200); @@ -248,6 +259,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ { rule_id: 'rule-1', name: 'some other name' }, { rule_id: 'fake_id', name: 'some other name' }, @@ -278,6 +290,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ { id: createdBody.id, name: 'some other name' }, { id: '5096dec6-b6b9-4d8d-8f93-6c2602079d9d', name: 'some other name' }, diff --git a/x-pack/test/detection_engine_api_integration/basic/tests/read_rules.ts b/x-pack/test/detection_engine_api_integration/basic/tests/read_rules.ts index 39c8e37a62cdb..839f5a15fe161 100644 --- a/x-pack/test/detection_engine_api_integration/basic/tests/read_rules.ts +++ b/x-pack/test/detection_engine_api_integration/basic/tests/read_rules.ts @@ -45,6 +45,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-1`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(200); @@ -58,6 +59,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?id=${createRuleBody.id}`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(200); @@ -71,6 +73,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=${createRuleBody.rule_id}`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(200); @@ -82,6 +85,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?id=c1e1b359-7ac1-4e96-bc81-c683c092436f`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(404); @@ -95,6 +99,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=fake_id`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(404); diff --git a/x-pack/test/detection_engine_api_integration/basic/tests/update_rules.ts b/x-pack/test/detection_engine_api_integration/basic/tests/update_rules.ts index 1a77acf64e765..c9332cd41b4fb 100644 --- a/x-pack/test/detection_engine_api_integration/basic/tests/update_rules.ts +++ b/x-pack/test/detection_engine_api_integration/basic/tests/update_rules.ts @@ -52,6 +52,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(updatedRule) .expect(200); @@ -74,6 +75,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(updatedRule) .expect(403); @@ -97,6 +99,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(updatedRule) .expect(200); @@ -119,6 +122,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(updatedRule) .expect(200); @@ -140,6 +144,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(updatedRule) .expect(200); @@ -163,6 +168,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(ruleUpdate) .expect(200); @@ -173,6 +179,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(ruleUpdate2) .expect(200); @@ -192,6 +199,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(simpleRule) .expect(404); @@ -209,6 +217,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(simpleRule) .expect(404); diff --git a/x-pack/test/detection_engine_api_integration/basic/tests/update_rules_bulk.ts b/x-pack/test/detection_engine_api_integration/basic/tests/update_rules_bulk.ts index ef6d9a303519c..ca4df7a4cd648 100644 --- a/x-pack/test/detection_engine_api_integration/basic/tests/update_rules_bulk.ts +++ b/x-pack/test/detection_engine_api_integration/basic/tests/update_rules_bulk.ts @@ -52,6 +52,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([updatedRule]) .expect(200); @@ -69,6 +70,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRuleUpdate('rule-2')) .expect(200); @@ -82,6 +84,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([updatedRule1, updatedRule2]) .expect(200); @@ -111,6 +114,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([updatedRule1]) .expect(200); @@ -139,6 +143,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([updatedRule1, updatedRule2]) .expect(200); @@ -168,6 +173,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([updatedRule1]) .expect(200); @@ -189,6 +195,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([updatedRule1]) .expect(200); @@ -212,6 +219,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ruleUpdate]) .expect(200); @@ -222,6 +230,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ruleUpdate2]) .expect(200); @@ -241,6 +250,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ruleUpdate]) .expect(200); @@ -263,6 +273,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ruleUpdate]) .expect(200); @@ -289,6 +300,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ruleUpdate, ruleUpdate2]) .expect(200); @@ -326,6 +338,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([rule1, rule2]) .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/check_privileges.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/check_privileges.ts index 060905be10d50..5fb1f0d87a585 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/check_privileges.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/check_privileges.ts @@ -76,6 +76,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .get(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .query({ id }) .expect(200); @@ -114,6 +115,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .get(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .query({ id }) .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/create_new_terms.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/create_new_terms.ts index 606aa00522595..d96fbc6beb55b 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/create_new_terms.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/create_new_terms.ts @@ -33,6 +33,7 @@ export default ({ getService }: FtrProviderContext) => { const response = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(rule); expect(response.status).to.equal(400); @@ -50,6 +51,7 @@ export default ({ getService }: FtrProviderContext) => { const response = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(rule); expect(response.status).to.equal(400); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/create_rule_exceptions.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/create_rule_exceptions.ts index 0de7079af21c0..15ff9c1ad1d15 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/create_rule_exceptions.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/create_rule_exceptions.ts @@ -67,6 +67,7 @@ export default ({ getService }: FtrProviderContext) => { const { body: items } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/${rule.id}/exceptions`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ items: [getRuleExceptionItemMock()], }) @@ -122,6 +123,7 @@ export default ({ getService }: FtrProviderContext) => { const { body: items } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/${rule.id}/exceptions`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ items: [getRuleExceptionItemMock()], }) @@ -195,6 +197,7 @@ export default ({ getService }: FtrProviderContext) => { const { body: items } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/${rule.id}/exceptions`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ items: [getRuleExceptionItemMock()], }) @@ -231,6 +234,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/4656dc92-5832-11ea-8e2d-0242ac130003/exceptions`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ items: [getRuleExceptionItemMock()], }) diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/create_rules.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/create_rules.ts index b624cd95787aa..aa32e1ebb114b 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/create_rules.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/create_rules.ts @@ -85,6 +85,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(savedQueryRule) .expect(200); @@ -97,6 +98,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(200); @@ -131,6 +133,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(rule) .expect(200); @@ -142,6 +145,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(simpleRule) .expect(200); @@ -154,6 +158,7 @@ export default ({ getService }: FtrProviderContext) => { const { body: rule } = await supertest .get(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .query({ id: body.id }) .expect(200); @@ -172,6 +177,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(rule) .expect(200); @@ -227,6 +233,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(rule) .expect(200); @@ -238,6 +245,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRuleWithoutRuleId()) .expect(200); @@ -253,6 +261,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(legacyMlRule) .expect(200); @@ -264,6 +273,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleMlRule()) .expect(200); @@ -275,12 +285,14 @@ export default ({ getService }: FtrProviderContext) => { await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(200); const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(409); @@ -321,6 +333,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(rule) .expect(500); @@ -353,12 +366,14 @@ export default ({ getService }: FtrProviderContext) => { const { body: ruleWithException } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(rule) .expect(200); const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ ...rule, rule_id: 'rule-2' }) .expect(409); @@ -391,12 +406,14 @@ export default ({ getService }: FtrProviderContext) => { await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(rule) .expect(200); await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ ...rule, rule_id: 'rule-2' }) .expect(200); }); @@ -418,6 +435,7 @@ export default ({ getService }: FtrProviderContext) => { .post(DETECTION_ENGINE_RULES_URL) .auth(role, 'changeme') .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(403); }); @@ -429,6 +447,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(rule) .expect(400); @@ -444,6 +463,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ ...rule, threshold: { @@ -464,6 +484,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ ...rule, threshold: { @@ -485,6 +506,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ ...rule, threshold: { @@ -532,6 +554,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(simpleRule) .expect(200); const bodyId = body.id; @@ -546,6 +569,7 @@ export default ({ getService }: FtrProviderContext) => { const { body: rule } = await supertest .get(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .query({ id: bodyId }) .expect(200); @@ -564,6 +588,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(simpleRule) .expect(200); const bodyId = body.id; @@ -578,6 +603,7 @@ export default ({ getService }: FtrProviderContext) => { const { body: rule } = await supertest .get(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .query({ id: bodyId }) .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/create_rules_bulk.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/create_rules_bulk.ts index 35d6ceb038ec2..9b7e558a1a57a 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/create_rules_bulk.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/create_rules_bulk.ts @@ -55,6 +55,7 @@ export default ({ getService }: FtrProviderContext): void => { const { header } = await supertest .post(DETECTION_ENGINE_RULES_BULK_CREATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([getSimpleRule()]) .expect(200); @@ -86,6 +87,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_CREATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([getSimpleRule()]) .expect(200); @@ -120,6 +122,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_CREATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([rule]) .expect(200); @@ -130,6 +133,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_CREATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([getSimpleRuleWithoutRuleId()]) .expect(200); @@ -141,6 +145,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_CREATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([getSimpleRule(), getSimpleRule()]) .expect(200); @@ -159,12 +164,14 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(DETECTION_ENGINE_RULES_BULK_CREATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([getSimpleRule()]) .expect(200); const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_CREATE) .set('kbn-xsrf', 'foo') + .set('elastic-api-version', '2023-10-31') .send([getSimpleRule()]) .expect(200); @@ -179,10 +186,11 @@ export default ({ getService }: FtrProviderContext): void => { ]); }); - it('should return a 200 ok but have a 409 conflict if we attempt to create the rule, which use existing attached rule defult list', async () => { + it('should return a 200 ok but have a 409 conflict if we attempt to create the rule, which use existing attached rule default list', async () => { const { body: ruleWithException } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ ...getSimpleRuleWithoutRuleId(), exceptions_list: [ @@ -199,6 +207,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_CREATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ { ...getSimpleRule(), @@ -229,6 +238,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_CREATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ { ...getSimpleRule(), @@ -296,6 +306,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_CREATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([rule]) .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/delete_rules.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/delete_rules.ts index 27c297bed1ca4..c69433f0fe150 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/delete_rules.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/delete_rules.ts @@ -51,6 +51,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .delete(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-1`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .expect(200); const bodyToCompare = removeServerGeneratedProperties(body); @@ -64,6 +65,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .delete(`${DETECTION_ENGINE_RULES_URL}?rule_id=${bodyWithCreatedRule.rule_id}`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .expect(200); const bodyToCompare = removeServerGeneratedPropertiesIncludingRuleId(body); @@ -77,6 +79,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .delete(`${DETECTION_ENGINE_RULES_URL}?id=${bodyWithCreatedRule.id}`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .expect(200); const bodyToCompare = removeServerGeneratedPropertiesIncludingRuleId(body); @@ -87,6 +90,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .delete(`${DETECTION_ENGINE_RULES_URL}?id=c1e1b359-7ac1-4e96-bc81-c683c092436f`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .expect(404); expect(body).to.eql({ @@ -99,6 +103,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .delete(`${DETECTION_ENGINE_RULES_URL}?rule_id=fake_id`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .expect(404); expect(body).to.eql({ @@ -164,6 +169,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .delete(`${DETECTION_ENGINE_RULES_URL}?id=${createRuleBody.id}`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .expect(200); // ensure the actions contains the response @@ -208,6 +214,7 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .delete(`${DETECTION_ENGINE_RULES_URL}?id=${createRuleBody.id}`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .expect(200); // Test to ensure that we have exactly 0 legacy actions by querying the Alerting client REST API directly diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/delete_rules_bulk.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/delete_rules_bulk.ts index 153aa3c452123..5051f6024cb14 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/delete_rules_bulk.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/delete_rules_bulk.ts @@ -41,6 +41,7 @@ export default ({ getService }: FtrProviderContext): void => { const { header } = await supertest .delete(DETECTION_ENGINE_RULES_BULK_DELETE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ rule_id: 'rule-1' }]) .expect(200); @@ -67,6 +68,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .delete(DETECTION_ENGINE_RULES_BULK_DELETE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ rule_id: 'rule-1' }]) .expect(200); @@ -80,8 +82,9 @@ export default ({ getService }: FtrProviderContext): void => { // delete that rule by its rule_id const { body } = await supertest .delete(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ rule_id: bodyWithCreatedRule.rule_id }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ rule_id: bodyWithCreatedRule.rule_id }]) .expect(200); const bodyToCompare = removeServerGeneratedPropertiesIncludingRuleId(body[0]); @@ -94,8 +97,9 @@ export default ({ getService }: FtrProviderContext): void => { // delete that rule by its id const { body } = await supertest .delete(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ id: bodyWithCreatedRule.id }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ id: bodyWithCreatedRule.id }]) .expect(200); const bodyToCompare = removeServerGeneratedPropertiesIncludingRuleId(body[0]); @@ -105,8 +109,9 @@ export default ({ getService }: FtrProviderContext): void => { it('should return an error if the ruled_id does not exist when trying to delete a rule_id', async () => { const { body } = await supertest .delete(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ rule_id: 'fake_id' }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ rule_id: 'fake_id' }]) .expect(200); expect(body).to.eql([ @@ -123,8 +128,9 @@ export default ({ getService }: FtrProviderContext): void => { it('should return an error if the id does not exist when trying to delete an id', async () => { const { body } = await supertest .delete(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ id: 'c4e80a0d-e20f-4efc-84c1-08112da5a612' }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ id: 'c4e80a0d-e20f-4efc-84c1-08112da5a612' }]) .expect(200); expect(body).to.eql([ @@ -143,8 +149,9 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .delete(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ id: bodyWithCreatedRule.id }, { id: 'c4e80a0d-e20f-4efc-84c1-08112da5a612' }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ id: bodyWithCreatedRule.id }, { id: 'c4e80a0d-e20f-4efc-84c1-08112da5a612' }]) .expect(200); const bodyToCompare = removeServerGeneratedPropertiesIncludingRuleId(body[0]); @@ -179,6 +186,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_DELETE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ rule_id: 'rule-1' }]) .expect(200); @@ -194,6 +202,7 @@ export default ({ getService }: FtrProviderContext): void => { .post(DETECTION_ENGINE_RULES_BULK_DELETE) .send([{ rule_id: bodyWithCreatedRule.rule_id }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .expect(200); const bodyToCompare = removeServerGeneratedPropertiesIncludingRuleId(body[0]); @@ -206,8 +215,9 @@ export default ({ getService }: FtrProviderContext): void => { // delete that rule by its id const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ id: bodyWithCreatedRule.id }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ id: bodyWithCreatedRule.id }]) .expect(200); const bodyToCompare = removeServerGeneratedPropertiesIncludingRuleId(body[0]); @@ -217,8 +227,9 @@ export default ({ getService }: FtrProviderContext): void => { it('should return an error if the ruled_id does not exist when trying to delete a rule_id', async () => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ rule_id: 'fake_id' }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ rule_id: 'fake_id' }]) .expect(200); expect(body).to.eql([ @@ -235,8 +246,9 @@ export default ({ getService }: FtrProviderContext): void => { it('should return an error if the id does not exist when trying to delete an id', async () => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ id: 'c4e80a0d-e20f-4efc-84c1-08112da5a612' }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ id: 'c4e80a0d-e20f-4efc-84c1-08112da5a612' }]) .expect(200); expect(body).to.eql([ @@ -255,8 +267,9 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ id: bodyWithCreatedRule.id }, { id: 'c4e80a0d-e20f-4efc-84c1-08112da5a612' }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ id: bodyWithCreatedRule.id }, { id: 'c4e80a0d-e20f-4efc-84c1-08112da5a612' }]) .expect(200); const bodyToCompare = removeServerGeneratedPropertiesIncludingRuleId(body[0]); @@ -292,8 +305,9 @@ export default ({ getService }: FtrProviderContext): void => { // delete the rule with the legacy action const { body } = await supertest .delete(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ id: createRuleBody.id }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ id: createRuleBody.id }]) .expect(200); // ensure we only get one body back @@ -341,8 +355,9 @@ export default ({ getService }: FtrProviderContext): void => { // delete 2 rules where both have legacy actions const { body } = await supertest .delete(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ id: createRuleBody1.id }, { id: createRuleBody2.id }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ id: createRuleBody1.id }, { id: createRuleBody2.id }]) .expect(200); // ensure we only get two bodies back @@ -402,8 +417,9 @@ export default ({ getService }: FtrProviderContext): void => { // bulk delete the rule await supertest .delete(DETECTION_ENGINE_RULES_BULK_DELETE) - .send([{ id: createRuleBody.id }]) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send([{ id: createRuleBody.id }]) .expect(200); // Test to ensure that we have exactly 0 legacy actions by querying the Alerting client REST API directly diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/export_rules.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/export_rules.ts index cb47021ba3d5e..7a4afd6d44d85 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/export_rules.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/export_rules.ts @@ -46,6 +46,7 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200) .expect('Content-Type', 'application/ndjson') @@ -66,6 +67,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ objects: [{ rule_id: 'rule-1' }], }) @@ -98,6 +100,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200) .parse(binaryToString); @@ -115,6 +118,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200) .parse(binaryToString); @@ -147,6 +151,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200) .parse(binaryToString); @@ -200,6 +205,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200) .parse(binaryToString); @@ -256,6 +262,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200) .parse(binaryToString); @@ -314,6 +321,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200) .parse(binaryToString); @@ -375,6 +383,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200) .parse(binaryToString); @@ -441,6 +450,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200) .parse(binaryToString); @@ -518,6 +528,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200) .parse(binaryToString); @@ -636,6 +647,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200) .parse(binaryToString); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/find_rules.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/find_rules.ts index 795aba6f1cf33..5e5d193d55d8a 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/find_rules.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/find_rules.ts @@ -34,6 +34,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}/_find`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200); @@ -52,6 +53,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}/_find`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200); @@ -69,6 +71,7 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getComplexRule()) .expect(200); @@ -76,6 +79,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}/_find`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200); @@ -114,6 +118,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}/_find`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200); @@ -164,6 +169,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}/_find`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200); @@ -228,6 +234,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}/_find`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/get_rule_management_filters.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/get_rule_management_filters.ts index 441227165eeb5..d505342cfb236 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/get_rule_management_filters.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group1/get_rule_management_filters.ts @@ -28,6 +28,8 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .get(RULE_MANAGEMENT_FILTERS_URL) .set('kbn-xsrf', 'true') + .set('x-elastic-internal-origin', 'Kibana') + .set('elastic-api-version', '1') .send() .expect(200); @@ -50,6 +52,7 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(rule) .expect(200); }); @@ -58,6 +61,8 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .get(RULE_MANAGEMENT_FILTERS_URL) .set('kbn-xsrf', 'true') + .set('x-elastic-internal-origin', 'Kibana') + .set('elastic-api-version', '1') .send() .expect(200); @@ -69,6 +74,8 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .get(RULE_MANAGEMENT_FILTERS_URL) .set('kbn-xsrf', 'true') + .set('x-elastic-internal-origin', 'Kibana') + .set('elastic-api-version', '1') .send() .expect(200); @@ -86,6 +93,8 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .get(RULE_MANAGEMENT_FILTERS_URL) .set('kbn-xsrf', 'true') + .set('x-elastic-internal-origin', 'Kibana') + .set('elastic-api-version', '1') .send() .expect(200); @@ -97,6 +106,8 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .get(RULE_MANAGEMENT_FILTERS_URL) .set('kbn-xsrf', 'true') + .set('x-elastic-internal-origin', 'Kibana') + .set('elastic-api-version', '1') .send() .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/get_rule_execution_results.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/get_rule_execution_results.ts index 947269927218a..b7cca9fd005df 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/get_rule_execution_results.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/get_rule_execution_results.ts @@ -63,6 +63,7 @@ export default ({ getService }: FtrProviderContext) => { const response = await supertest .get(getRuleExecutionResultsUrl('1')) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .query({ start, end }); expect(response.status).to.eql(404); @@ -85,6 +86,7 @@ export default ({ getService }: FtrProviderContext) => { const response = await supertest .get(getRuleExecutionResultsUrl(id)) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .query({ start, end }); expect(response.status).to.eql(200); @@ -111,6 +113,7 @@ export default ({ getService }: FtrProviderContext) => { const response = await supertest .get(getRuleExecutionResultsUrl(id)) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .query({ start, end }); expect(response.status).to.eql(200); @@ -158,6 +161,7 @@ export default ({ getService }: FtrProviderContext) => { const response = await supertest .get(getRuleExecutionResultsUrl(id)) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .query({ start, end }); expect(response.status).to.eql(200); @@ -229,6 +233,8 @@ export default ({ getService }: FtrProviderContext) => { const response = await supertest .get(getRuleExecutionResultsUrl(id)) .set('kbn-xsrf', 'true') + .set('x-elastic-internal-origin', 'Kibana') + .set('elastic-api-version', '1') .query({ start, end, status_filters: 'failed,succeeded' }); // Verify the most recent execution was one of the failedRanAfterDisabled executions, which have a duration of 3ms and are made up of 2 docs per execution, diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/import_export_rules.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/import_export_rules.ts index 9da909a588caf..8943a4b67c99b 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/import_export_rules.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/import_export_rules.ts @@ -110,6 +110,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200) .parse(binaryToString); @@ -117,6 +118,7 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import?overwrite=true&overwrite_exceptions=true`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', Buffer.from(body), 'rules.ndjson') .expect(200); @@ -187,6 +189,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200) .parse(binaryToString); @@ -194,6 +197,7 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import?overwrite=true&overwrite_exceptions=true`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', Buffer.from(body), 'rules.ndjson') .expect(200); @@ -273,6 +277,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200) .parse(binaryToString); @@ -280,6 +285,7 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import?overwrite=true&overwrite_exceptions=true`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', Buffer.from(body), 'rules.ndjson') .expect(200); @@ -349,6 +355,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_export`) + .set('elastic-api-version', '2023-10-31') .set('kbn-xsrf', 'true') .send() .expect(200) @@ -357,6 +364,7 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import?overwrite=true&overwrite_exceptions=true`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', Buffer.from(body), 'rules.ndjson') .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/import_rules.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/import_rules.ts index 5d01eb9ceb3f3..b14e0e87a37c0 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/import_rules.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/import_rules.ts @@ -207,6 +207,7 @@ export default ({ getService }: FtrProviderContext): void => { .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .auth(ROLES.hunter_no_actions, 'changeme') .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); @@ -265,6 +266,7 @@ export default ({ getService }: FtrProviderContext): void => { .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .auth(ROLES.hunter, 'changeme') .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach( 'file', Buffer.from(toNdJsonString([simpleRule, ruleWithConnector])), @@ -344,6 +346,7 @@ export default ({ getService }: FtrProviderContext): void => { .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .auth(ROLES.hunter_no_actions, 'changeme') .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach( 'file', Buffer.from(toNdJsonString([simpleRule, ruleWithConnector])), @@ -390,6 +393,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', ruleToNdjson(rule as RuleCreateProps), 'rules.ndjson') .expect(200); @@ -414,6 +418,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', ruleToNdjson(rule), 'rules.ndjson') .expect(200); @@ -438,6 +443,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', ruleToNdjson(rule), 'rules.ndjson') .expect(200); @@ -467,6 +473,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', ruleToNdjson(rule), 'rules.ndjson') .expect(200); @@ -494,6 +501,7 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect('Content-Type', 'application/json; charset=utf-8') .expect(200); @@ -503,6 +511,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.txt') .expect(400); @@ -516,6 +525,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); @@ -538,11 +548,13 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-1`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); @@ -557,6 +569,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-2']), 'rules.ndjson') .expect(200); @@ -579,6 +592,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-1']), 'rules.ndjson') .expect(200); @@ -609,6 +623,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import?overwrite=true`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-1']), 'rules.ndjson') .expect(200); @@ -631,12 +646,14 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); @@ -667,12 +684,14 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import?overwrite=true`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import?overwrite=true`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); @@ -695,6 +714,7 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); @@ -705,11 +725,13 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import?overwrite=true`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', ndjson, 'rules.ndjson') .expect(200); const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-1`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); @@ -754,6 +776,7 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import?overwrite=true`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', ndjson, 'rules.ndjson') .expect(200); @@ -766,12 +789,14 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-2', 'rule-3']), 'rules.ndjson') .expect(200); @@ -802,12 +827,14 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-2']), 'rules.ndjson') .expect(200); const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-2', 'rule-3']), 'rules.ndjson') .expect(200); @@ -850,27 +877,32 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-2']), 'rules.ndjson') .expect(200); await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-2', 'rule-3']), 'rules.ndjson') .expect(200); const { body: bodyOfRule1 } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-1`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); const { body: bodyOfRule2 } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-2`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); const { body: bodyOfRule3 } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-3`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); @@ -900,6 +932,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', ruleToNdjson(simpleRule), 'rules.ndjson') .expect(200); @@ -967,6 +1000,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach( 'file', Buffer.from(toNdJsonString([simpleRule, ruleWithConnector])), @@ -1018,6 +1052,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', ruleToNdjson(simpleRule), 'rules.ndjson') .expect(200); expect(body).to.eql({ @@ -1112,6 +1147,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import?overwrite=true`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', buffer, 'rules.ndjson') .expect(200); @@ -1189,6 +1225,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', buffer, 'rules.ndjson') .expect(200); @@ -1251,6 +1288,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`/s/${spaceId}${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', buffer, 'rules.ndjson') .expect(200); expect(body.success).to.eql(true); @@ -1266,6 +1304,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`/s/${spaceId}${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', buffer, 'rules.ndjson') .expect(200); @@ -1292,6 +1331,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', buffer, 'rules.ndjson') .expect(200); expect(body).to.eql({ @@ -1316,6 +1356,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', buffer, 'rules.ndjson') .expect(200); expect(body.success).to.equal(false); @@ -1335,6 +1376,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`/s/${spaceId}${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', buffer, 'rules.ndjson') .expect(200); expect(body.success).to.equal(false); @@ -1360,6 +1402,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`/s/${spaceId}${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', buffer, 'rules.ndjson') .expect(200); expect(body).to.eql({ @@ -1387,6 +1430,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', buffer, 'rules.ndjson') .expect(200); expect(body.success).to.equal(true); @@ -1406,6 +1450,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`/s/${spaceId}${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', buffer, 'rules.ndjson') .expect(200); expect(body.success).to.equal(false); @@ -1436,6 +1481,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach( 'file', Buffer.from( @@ -1466,6 +1512,7 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .delete(`${EXCEPTION_LIST_ITEM_URL}?item_id=${'test_item_id'}`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .expect(200); }); @@ -1475,6 +1522,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach( 'file', Buffer.from( @@ -1535,11 +1583,13 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', ruleToNdjson(simpleRule), 'rules.ndjson') .expect(200); const { body: ruleResponse } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-1`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); @@ -1597,6 +1647,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach( 'file', Buffer.from( @@ -1643,6 +1694,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body: ruleResponse } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-1`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); const bodyToCompare = removeServerGeneratedProperties(ruleResponse); @@ -1700,6 +1752,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach( 'file', Buffer.from( @@ -1757,6 +1810,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body: ruleResponse } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-1`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); const bodyToCompare = removeServerGeneratedProperties(ruleResponse); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/index.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/index.ts index 114206c6f851b..cea1ccd419d80 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/index.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/index.ts @@ -37,9 +37,10 @@ export default ({ loadTestFile }: FtrProviderContext): void => { loadTestFile(require.resolve('./throttle')); loadTestFile(require.resolve('./ignore_fields')); loadTestFile(require.resolve('./migrations')); - loadTestFile(require.resolve('./risk_engine/risk_engine_status')); + loadTestFile(require.resolve('./risk_engine/init_and_status_apis')); loadTestFile(require.resolve('./risk_engine/risk_score_preview')); loadTestFile(require.resolve('./risk_engine/risk_score_calculation')); + loadTestFile(require.resolve('./risk_engine/risk_scoring_task_execution')); loadTestFile(require.resolve('./set_alert_tags')); }); }; diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/legacy_actions_migrations.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/legacy_actions_migrations.ts index 9fd2542664f3b..236bf6991c9d6 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/legacy_actions_migrations.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/legacy_actions_migrations.ts @@ -61,6 +61,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ruleId, enabled: false }) .expect(200); @@ -98,6 +99,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ruleId, enabled: false }) .expect(200); @@ -171,6 +173,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ruleId, enabled: false }) .expect(200); @@ -245,6 +248,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ruleId, enabled: false }) .expect(200); @@ -304,6 +308,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ruleId, enabled: false }) .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/patch_rules.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/patch_rules.ts index 9a55755f2e93a..498dde28a632e 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/patch_rules.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/patch_rules.ts @@ -63,6 +63,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: 'rule-1', name: 'some other name' }) .expect(200); @@ -80,6 +81,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: 'rule-1', machine_learning_job_id: 'some_job_id' }) .expect(200); @@ -95,6 +97,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: 'rule-1', name: 'some other name' }) .expect(200); @@ -114,6 +117,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: createRuleBody.rule_id, name: 'some other name' }) .expect(200); @@ -131,6 +135,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ id: createdBody.id, name: 'some other name' }) .expect(200); @@ -148,6 +153,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: 'rule-1', enabled: false }) .expect(200); @@ -165,6 +171,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: 'rule-1', severity: 'low', enabled: false }) .expect(200); @@ -184,6 +191,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: 'rule-1', timeline_title: 'some title', timeline_id: 'some id' }) .expect(200); @@ -191,6 +199,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: 'rule-1', name: 'some other name' }) .expect(200); @@ -211,6 +220,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: 'rule-1', exceptions_list: [ @@ -228,6 +238,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: 'rule-1', exceptions_list: [ @@ -253,6 +264,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: 'rule-1', exceptions_list: [ @@ -295,6 +307,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: 'rule-2', exceptions_list: [ @@ -331,6 +344,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ id: createdBody.id, exceptions_list: [ @@ -375,6 +389,7 @@ export default ({ getService }: FtrProviderContext) => { const patchResponse = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ id: rule.id, enabled: false }) .expect(200); @@ -405,6 +420,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ id: '5096dec6-b6b9-4d8d-8f93-6c2602079d9d', name: 'some other name' }) .expect(404); @@ -418,6 +434,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: 'fake_id', name: 'some other name' }) .expect(404); @@ -442,6 +459,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(rulePatch) .expect(200); @@ -459,6 +477,7 @@ export default ({ getService }: FtrProviderContext) => { const { body: patchedRule } = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ruleId, throttle, actions }) .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/patch_rules_bulk.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/patch_rules_bulk.ts index a5bc551c8aacd..225afd2171657 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/patch_rules_bulk.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/patch_rules_bulk.ts @@ -43,6 +43,7 @@ export default ({ getService }: FtrProviderContext) => { const { header } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ rule_id: 'rule-1', name: 'some other name' }]) .expect(200); @@ -69,6 +70,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ rule_id: 'rule-1', name: 'some other name' }]) .expect(200); @@ -87,6 +89,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ { rule_id: 'rule-1', name: 'some other name' }, { rule_id: 'rule-2', name: 'some other name' }, @@ -114,6 +117,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ id: createRuleBody.id, name: 'some other name' }]) .expect(200); @@ -132,6 +136,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ { id: createRule1.id, name: 'some other name' }, { id: createRule2.id, name: 'some other name' }, @@ -183,6 +188,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ { id: rule1.id, enabled: false }, { id: rule2.id, enabled: false }, @@ -222,6 +228,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ id: createdBody.id, name: 'some other name' }]) .expect(200); @@ -239,6 +246,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ rule_id: 'rule-1', enabled: false }]) .expect(200); @@ -256,6 +264,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ rule_id: 'rule-1', severity: 'low', enabled: false }]) .expect(200); @@ -275,6 +284,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ rule_id: 'rule-1', timeline_title: 'some title', timeline_id: 'some id' }]) .expect(200); @@ -282,6 +292,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ rule_id: 'rule-1', name: 'some other name' }]) .expect(200); @@ -299,6 +310,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ id: '5096dec6-b6b9-4d8d-8f93-6c2602079d9d', name: 'some other name' }]) .expect(200); @@ -317,6 +329,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([{ rule_id: 'fake_id', name: 'some other name' }]) .expect(200); @@ -335,6 +348,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ { rule_id: 'rule-1', name: 'some other name' }, { rule_id: 'fake_id', name: 'some other name' }, @@ -365,6 +379,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ { id: createdBody.id, name: 'some other name' }, { id: '5096dec6-b6b9-4d8d-8f93-6c2602079d9d', name: 'some other name' }, @@ -405,6 +420,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ { rule_id: 'rule-1', @@ -438,6 +454,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .patch(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ { rule_id: 'rule-1', diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/perform_bulk_action.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/perform_bulk_action.ts index 39318ea5f32b9..b1c4ff97838ee 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/perform_bulk_action.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/perform_bulk_action.ts @@ -48,16 +48,24 @@ export default ({ getService }: FtrProviderContext): void => { const esArchiver = getService('esArchiver'); const postBulkAction = () => - supertest.post(DETECTION_ENGINE_RULES_BULK_ACTION).set('kbn-xsrf', 'true'); + supertest + .post(DETECTION_ENGINE_RULES_BULK_ACTION) + .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31'); + const fetchRule = (ruleId: string) => - supertest.get(`${DETECTION_ENGINE_RULES_URL}?rule_id=${ruleId}`).set('kbn-xsrf', 'true'); + supertest + .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=${ruleId}`) + .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31'); const fetchPrebuiltRule = async () => { const { body: findBody } = await supertest .get( `${DETECTION_ENGINE_RULES_URL}/_find?per_page=1&filter=alert.attributes.params.immutable: true` ) - .set('kbn-xsrf', 'true'); + .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31'); return findBody.data[0]; }; @@ -436,6 +444,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body: rulesResponse } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}/_find`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .expect(200); expect(rulesResponse.total).to.eql(2); @@ -541,6 +550,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body: rulesResponse } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}/_find`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .expect(200); expect(rulesResponse.total).to.eql(2); @@ -645,6 +655,7 @@ export default ({ getService }: FtrProviderContext): void => { // Check that the updates have been persisted const { body: rulesResponse } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}/_find`) + .set('elastic-api-version', '2023-10-31') .set('kbn-xsrf', 'true') .expect(200); @@ -692,6 +703,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body: rulesResponse } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}/_find`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .expect(200); expect(rulesResponse.total).to.eql(2); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/perform_bulk_action_dry_run.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/perform_bulk_action_dry_run.ts index efe69bbb236f2..778fe5325cf3b 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/perform_bulk_action_dry_run.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/perform_bulk_action_dry_run.ts @@ -34,13 +34,20 @@ export default ({ getService }: FtrProviderContext): void => { supertest .post(DETECTION_ENGINE_RULES_BULK_ACTION) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .query({ dry_run: true }); const fetchRule = (ruleId: string) => - supertest.get(`${DETECTION_ENGINE_RULES_URL}?rule_id=${ruleId}`).set('kbn-xsrf', 'true'); + supertest + .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=${ruleId}`) + .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31'); const findRules = () => - supertest.get(`${DETECTION_ENGINE_RULES_URL}/_find`).set('kbn-xsrf', 'true'); + supertest + .get(`${DETECTION_ENGINE_RULES_URL}/_find`) + .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31'); describe('perform_bulk_action dry_run', () => { beforeEach(async () => { diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/read_rules.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/read_rules.ts index 21c8024cf3ba1..87fee66b44767 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/read_rules.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/read_rules.ts @@ -46,6 +46,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-1`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(200); @@ -59,6 +60,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?id=${createRuleBody.id}`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(200); @@ -72,6 +74,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=${createRuleBody.rule_id}`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(200); @@ -83,6 +86,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?id=c1e1b359-7ac1-4e96-bc81-c683c092436f`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(404); @@ -96,6 +100,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=fake_id`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(404); @@ -130,6 +135,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?id=${createRuleBody.id}`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(200); @@ -174,6 +180,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?id=${createRuleBody.id}`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(200); @@ -232,6 +239,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?id=${createRuleBody.id}`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRule()) .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/resolve_read_rules.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/resolve_read_rules.ts index 8ff8ada3da385..4536526ff5744 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/resolve_read_rules.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/resolve_read_rules.ts @@ -41,7 +41,11 @@ export default ({ getService }: FtrProviderContext) => { it('should create a "migrated" rule where querying for the new SO _id will resolve the new object and not return the outcome field when outcome === exactMatch', async () => { // link to the new URL with migrated SO id 74f3e6d7-b7bb-477d-ac28-92ee22728e6e const URL = `/s/${spaceId}${DETECTION_ENGINE_RULES_URL}?id=90e3ca0e-71f7-513a-b60a-ac678efd8887`; - const readRulesAliasMatchRes = await supertest.get(URL).set('kbn-xsrf', 'true').send(); + const readRulesAliasMatchRes = await supertest + .get(URL) + .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send(); expect(readRulesAliasMatchRes.body.outcome).to.eql('aliasMatch'); expect(readRulesAliasMatchRes.body.alias_purpose).to.eql('savedObjectConversion'); @@ -51,6 +55,7 @@ export default ({ getService }: FtrProviderContext) => { const readRulesExactMatchRes = await supertest .get(exactMatchURL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(); expect(readRulesExactMatchRes.body.outcome).to.eql(undefined); }); @@ -149,6 +154,7 @@ export default ({ getService }: FtrProviderContext) => { const readRulesConflictRes = await supertest .get(conflictURL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200); expect(readRulesConflictRes.body.outcome).to.eql('conflict'); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/risk_engine_status.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/init_and_status_apis.ts similarity index 89% rename from x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/risk_engine_status.ts rename to x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/init_and_status_apis.ts index 95b319d74c18b..0f607843f4107 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/risk_engine_status.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/init_and_status_apis.ts @@ -6,19 +6,14 @@ */ import expect from '@kbn/expect'; -import { - RISK_ENGINE_INIT_URL, - RISK_ENGINE_DISABLE_URL, - RISK_ENGINE_ENABLE_URL, - RISK_ENGINE_STATUS_URL, -} from '@kbn/security-solution-plugin/common/constants'; import { riskEngineConfigurationTypeName } from '@kbn/security-solution-plugin/server/lib/risk_engine/saved_object'; import { FtrProviderContext } from '../../../common/ftr_provider_context'; import { cleanRiskEngineConfig, legacyTransformIds, - createTransforms, + createLegacyTransforms, clearLegacyTransforms, + riskEngineRouteHelpersFactory, clearTransforms, } from './utils'; @@ -27,6 +22,7 @@ export default ({ getService }: FtrProviderContext) => { const es = getService('es'); const supertest = getService('supertest'); const kibanaServer = getService('kibanaServer'); + const riskEngineRoutes = riskEngineRouteHelpersFactory(supertest); const log = getService('log'); describe('Risk Engine', () => { @@ -44,21 +40,9 @@ export default ({ getService }: FtrProviderContext) => { }); }); - const initRiskEngine = async () => - await supertest.post(RISK_ENGINE_INIT_URL).set('kbn-xsrf', 'true').send().expect(200); - - const getRiskEngineStatus = async () => - await supertest.get(RISK_ENGINE_STATUS_URL).set('kbn-xsrf', 'true').send().expect(200); - - const enableRiskEngine = async () => - await supertest.post(RISK_ENGINE_ENABLE_URL).set('kbn-xsrf', 'true').send().expect(200); - - const disableRiskEngine = async () => - await supertest.post(RISK_ENGINE_DISABLE_URL).set('kbn-xsrf', 'true').send().expect(200); - describe('init api', () => { it('should return response with success status', async () => { - const response = await initRiskEngine(); + const response = await riskEngineRoutes.init(); expect(response.body).to.eql({ result: { errors: [], @@ -78,7 +62,7 @@ export default ({ getService }: FtrProviderContext) => { const latestIndexName = 'risk-score.risk-score-latest-default'; const transformId = 'risk_score_latest_transform_default'; - await initRiskEngine(); + await riskEngineRoutes.init(); const ilmPolicy = await es.ilm.getLifecycle({ name: ilmPolicyName, @@ -308,23 +292,31 @@ export default ({ getService }: FtrProviderContext) => { }); it('should create configuration saved object', async () => { - await initRiskEngine(); + await riskEngineRoutes.init(); const response = await kibanaServer.savedObjects.find({ type: riskEngineConfigurationTypeName, }); expect(response?.saved_objects?.[0]?.attributes).to.eql({ + dataViewId: '.alerts-security.alerts-default', enabled: true, + filter: {}, + interval: '1h', + pageSize: 10000, + range: { + end: 'now', + start: 'now-30d', + }, }); }); it('should create configuration saved object only once', async () => { - await initRiskEngine(); + await riskEngineRoutes.init(); const firstResponse = await kibanaServer.savedObjects.find({ type: riskEngineConfigurationTypeName, }); - await initRiskEngine(); + await riskEngineRoutes.init(); const secondResponse = await kibanaServer.savedObjects.find({ type: riskEngineConfigurationTypeName, }); @@ -336,7 +328,7 @@ export default ({ getService }: FtrProviderContext) => { }); it('should remove legacy risk score transform if it exists', async () => { - await createTransforms({ es }); + await createLegacyTransforms({ es }); for (const transformId of legacyTransformIds) { const tr = await es.transform.getTransform({ @@ -346,7 +338,7 @@ export default ({ getService }: FtrProviderContext) => { expect(tr?.transforms?.[0]?.id).to.eql(transformId); } - await initRiskEngine(); + await riskEngineRoutes.init(); for (const transformId of legacyTransformIds) { try { @@ -362,7 +354,8 @@ export default ({ getService }: FtrProviderContext) => { describe('status api', () => { it('should disable / enable risk engige', async () => { - const status1 = await getRiskEngineStatus(); + const status1 = await riskEngineRoutes.getStatus(); + await riskEngineRoutes.init(); expect(status1.body).to.eql({ risk_engine_status: 'NOT_INSTALLED', @@ -370,9 +363,9 @@ export default ({ getService }: FtrProviderContext) => { is_max_amount_of_risk_engines_reached: false, }); - await initRiskEngine(); + await riskEngineRoutes.init(); - const status2 = await getRiskEngineStatus(); + const status2 = await riskEngineRoutes.getStatus(); expect(status2.body).to.eql({ risk_engine_status: 'ENABLED', @@ -380,8 +373,8 @@ export default ({ getService }: FtrProviderContext) => { is_max_amount_of_risk_engines_reached: false, }); - await disableRiskEngine(); - const status3 = await getRiskEngineStatus(); + await riskEngineRoutes.disable(); + const status3 = await riskEngineRoutes.getStatus(); expect(status3.body).to.eql({ risk_engine_status: 'DISABLED', @@ -389,8 +382,8 @@ export default ({ getService }: FtrProviderContext) => { is_max_amount_of_risk_engines_reached: false, }); - await enableRiskEngine(); - const status4 = await getRiskEngineStatus(); + await riskEngineRoutes.enable(); + const status4 = await riskEngineRoutes.getStatus(); expect(status4.body).to.eql({ risk_engine_status: 'ENABLED', @@ -400,8 +393,8 @@ export default ({ getService }: FtrProviderContext) => { }); it('should return status of legacy risk engine', async () => { - await createTransforms({ es }); - const status1 = await getRiskEngineStatus(); + await createLegacyTransforms({ es }); + const status1 = await riskEngineRoutes.getStatus(); expect(status1.body).to.eql({ risk_engine_status: 'NOT_INSTALLED', @@ -409,9 +402,9 @@ export default ({ getService }: FtrProviderContext) => { is_max_amount_of_risk_engines_reached: false, }); - await initRiskEngine(); + await riskEngineRoutes.init(); - const status2 = await getRiskEngineStatus(); + const status2 = await riskEngineRoutes.getStatus(); expect(status2.body).to.eql({ risk_engine_status: 'ENABLED', diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/risk_score_calculation.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/risk_score_calculation.ts index 3a8ca9b018f45..1f504cce21be4 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/risk_score_calculation.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/risk_score_calculation.ts @@ -62,7 +62,7 @@ export default ({ getService }: FtrProviderContext): void => { }); }; - describe('Risk Engine Scoring - Calculation', () => { + describe('Risk Engine - Risk Scoring Calculation API', () => { context('with auditbeat data', () => { const { indexListOfDocuments } = dataGeneratorFactory({ es, @@ -106,7 +106,7 @@ export default ({ getService }: FtrProviderContext): void => { scores_written: 1, }); - await waitForRiskScoresToBePresent(es, log); + await waitForRiskScoresToBePresent({ es, log }); const scores = await readRiskScores(es); expect(scores.length).to.eql(1); @@ -123,8 +123,7 @@ export default ({ getService }: FtrProviderContext): void => { ]); }); - // FLAKY: https://github.com/elastic/kibana/issues/162736 - describe.skip('paging through calculationss', () => { + describe('paging through calculations', () => { let documentId: string; beforeEach(async () => { documentId = uuidv4(); @@ -163,7 +162,7 @@ export default ({ getService }: FtrProviderContext): void => { scores_written: 10, }); - await waitForRiskScoresToBePresent(es, log); + await waitForRiskScoresToBePresent({ es, log, scoreCount: 10 }); const scores = await readRiskScores(es); expect(scores.length).to.eql(10); @@ -212,7 +211,7 @@ export default ({ getService }: FtrProviderContext): void => { scores_written: 5, }); - await waitForRiskScoresToBePresent(es, log); + await waitForRiskScoresToBePresent({ es, log, scoreCount: 10 }); const scores = await readRiskScores(es); expect(scores.length).to.eql(10); @@ -258,7 +257,7 @@ export default ({ getService }: FtrProviderContext): void => { scores_written: 0, }); - await waitForRiskScoresToBePresent(es, log); + await waitForRiskScoresToBePresent({ es, log, scoreCount: 10 }); const scores = await readRiskScores(es); expect(scores.length).to.eql(10); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/risk_score_preview.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/risk_score_preview.ts index 01db3b4d86035..4a61643293dec 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/risk_score_preview.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/risk_score_preview.ts @@ -55,7 +55,7 @@ export default ({ getService }: FtrProviderContext): void => { return await previewRiskScores({ body: {} }); }; - describe('Risk Engine Scoring - Preview', () => { + describe('Risk Engine - Risk Scoring Preview API', () => { context('with auditbeat data', () => { const { indexListOfDocuments } = dataGeneratorFactory({ es, diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/risk_scoring_task_execution.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/risk_scoring_task_execution.ts new file mode 100644 index 0000000000000..06e55aa1556d0 --- /dev/null +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/risk_scoring_task_execution.ts @@ -0,0 +1,293 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { v4 as uuidv4 } from 'uuid'; +import { FtrProviderContext } from '../../../common/ftr_provider_context'; +import { deleteAllAlerts, deleteAllRules } from '../../../utils'; +import { dataGeneratorFactory } from '../../../utils/data_generator'; +import { + buildDocument, + createAndSyncRuleAndAlertsFactory, + deleteRiskEngineTask, + deleteAllRiskScores, + readRiskScores, + waitForRiskScoresToBePresent, + normalizeScores, + riskEngineRouteHelpersFactory, + updateRiskEngineConfigSO, + getRiskEngineTask, + cleanRiskEngineConfig, + waitForRiskEngineTaskToBeGone, +} from './utils'; + +// eslint-disable-next-line import/no-default-export +export default ({ getService }: FtrProviderContext): void => { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + const es = getService('es'); + const log = getService('log'); + const kibanaServer = getService('kibanaServer'); + + const createAndSyncRuleAndAlerts = createAndSyncRuleAndAlertsFactory({ supertest, log }); + const riskEngineRoutes = riskEngineRouteHelpersFactory(supertest); + + describe('Risk Engine - Risk Scoring Task', () => { + context('with auditbeat data', () => { + const { indexListOfDocuments } = dataGeneratorFactory({ + es, + index: 'ecs_compliant', + log, + }); + + before(async () => { + await esArchiver.load('x-pack/test/functional/es_archives/security_solution/ecs_compliant'); + }); + + after(async () => { + await esArchiver.unload( + 'x-pack/test/functional/es_archives/security_solution/ecs_compliant' + ); + }); + + beforeEach(async () => { + await cleanRiskEngineConfig({ kibanaServer }); + await deleteRiskEngineTask({ es, log }); + await deleteAllRiskScores(log, es); + await deleteAllAlerts(supertest, log, es); + await deleteAllRules(supertest, log); + }); + + afterEach(async () => { + await cleanRiskEngineConfig({ kibanaServer }); + await deleteRiskEngineTask({ es, log }); + await deleteAllRiskScores(log, es); + await deleteAllAlerts(supertest, log, es); + await deleteAllRules(supertest, log); + }); + + describe('with some alerts containing hosts', () => { + let documentId: string; + + beforeEach(async () => { + documentId = uuidv4(); + const baseEvent = buildDocument({ host: { name: 'host-1' } }, documentId); + await indexListOfDocuments( + Array(10) + .fill(baseEvent) + .map((_baseEvent, index) => ({ + ..._baseEvent, + 'host.name': `host-${index}`, + })) + ); + + await createAndSyncRuleAndAlerts({ + query: `id: ${documentId}`, + alerts: 10, + riskScore: 40, + }); + }); + + describe('initializing the risk engine', () => { + beforeEach(async () => { + await riskEngineRoutes.init(); + }); + + it('calculates and persists risk scores for alert documents', async () => { + await waitForRiskScoresToBePresent({ es, log, scoreCount: 10 }); + + const scores = await readRiskScores(es); + expect(normalizeScores(scores).map(({ id_value: idValue }) => idValue)).to.eql( + Array(10) + .fill(0) + .map((_, index) => `host-${index}`) + ); + }); + + describe('disabling and re-enabling the risk engine', () => { + beforeEach(async () => { + await waitForRiskScoresToBePresent({ es, log, scoreCount: 10 }); + await riskEngineRoutes.disable(); + await riskEngineRoutes.enable(); + }); + + it('calculates another round of scores', async () => { + await waitForRiskScoresToBePresent({ es, log, scoreCount: 20 }); + + const scores = await readRiskScores(es); + const expectedHostNames = Array(10) + .fill(0) + .map((_, index) => `host-${index}`); + const actualHostNames = normalizeScores(scores).map( + ({ id_value: idValue }) => idValue + ); + + expect(actualHostNames).to.eql([...expectedHostNames, ...expectedHostNames]); + }); + }); + + describe('disabling the risk engine', () => { + beforeEach(async () => { + await waitForRiskScoresToBePresent({ es, log, scoreCount: 10 }); + }); + + it('removes the risk scoring task', async () => { + const task = await getRiskEngineTask({ es }); + expect(task).not.to.be(undefined); + await riskEngineRoutes.disable(); + await waitForRiskEngineTaskToBeGone({ es, log }); + const disabledTask = await getRiskEngineTask({ es }); + + expect(disabledTask).to.eql(undefined); + }); + }); + + describe('modifying configuration', () => { + beforeEach(async () => { + await riskEngineRoutes.disable(); + }); + + describe('when task interval is modified', () => { + beforeEach(async () => { + await updateRiskEngineConfigSO({ + attributes: { + interval: '1s', + }, + kibanaServer, + }); + await riskEngineRoutes.enable(); + }); + + it('executes multiple times', async () => { + await waitForRiskScoresToBePresent({ es, log, scoreCount: 30 }); + const riskScores = await readRiskScores(es); + + expect(riskScores.length).to.be.greaterThan(29); + }); + }); + }); + }); + }); + + describe('with some alerts containing hosts and others containing users', () => { + let hostId: string; + let userId: string; + + beforeEach(async () => { + hostId = uuidv4(); + const hostEvent = buildDocument({ host: { name: 'host-1' } }, hostId); + await indexListOfDocuments( + Array(10) + .fill(hostEvent) + .map((event, index) => ({ + ...event, + 'host.name': `host-${index}`, + })) + ); + + userId = uuidv4(); + const userEvent = buildDocument({ user: { name: 'user-1' } }, userId); + await indexListOfDocuments( + Array(10) + .fill(userEvent) + .map((event, index) => ({ + ...event, + 'user.name': `user-${index}`, + })) + ); + + await createAndSyncRuleAndAlerts({ + query: `id: ${userId} or id: ${hostId}`, + alerts: 20, + riskScore: 40, + }); + + await riskEngineRoutes.init(); + }); + + it('calculates and persists risk scores for both types of entities', async () => { + await waitForRiskScoresToBePresent({ es, log, scoreCount: 20 }); + const riskScores = await readRiskScores(es); + + expect(riskScores.length).to.eql(20); + const scoredIdentifiers = normalizeScores(riskScores).map( + ({ id_field: idField }) => idField + ); + expect(scoredIdentifiers.includes('host.name')).to.be(true); + expect(scoredIdentifiers.includes('user.name')).to.be(true); + }); + }); + + describe('with alerts in a non-default space', () => { + let namespace: string; + let index: string[]; + let documentId: string; + let createAndSyncRuleAndAlertsForOtherSpace: ReturnType< + typeof createAndSyncRuleAndAlertsFactory + >; + + beforeEach(async () => { + documentId = uuidv4(); + namespace = uuidv4(); + index = [`risk-score.risk-score-${namespace}`]; + + createAndSyncRuleAndAlertsForOtherSpace = createAndSyncRuleAndAlertsFactory({ + supertest, + log, + namespace, + }); + const riskEngineRoutesForNamespace = riskEngineRouteHelpersFactory(supertest, namespace); + + const spaces = getService('spaces'); + await spaces.create({ + id: namespace, + name: namespace, + disabledFeatures: [], + }); + + const baseEvent = buildDocument({ host: { name: 'host-1' } }, documentId); + await indexListOfDocuments( + Array(10) + .fill(baseEvent) + .map((_baseEvent, _index) => ({ + ..._baseEvent, + 'host.name': `host-${_index}`, + })) + ); + + await createAndSyncRuleAndAlertsForOtherSpace({ + query: `id: ${documentId}`, + alerts: 10, + riskScore: 40, + }); + + await riskEngineRoutesForNamespace.init(); + }); + + afterEach(async () => { + await getService('spaces').delete(namespace); + }); + + it('calculates and persists risk scores for alert documents', async () => { + await waitForRiskScoresToBePresent({ + es, + log, + scoreCount: 10, + index, + }); + + const scores = await readRiskScores(es, index); + expect(normalizeScores(scores).map(({ id_value: idValue }) => idValue)).to.eql( + Array(10) + .fill(0) + .map((_, _index) => `host-${_index}`) + ); + }); + }); + }); + }); +}; diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/utils.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/utils.ts index c848a34bd1693..b0fbfc4e92c32 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/utils.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/risk_engine/utils.ts @@ -12,6 +12,12 @@ import type { ToolingLog } from '@kbn/tooling-log'; import type { EcsRiskScore, RiskScore } from '@kbn/security-solution-plugin/common/risk_engine'; import { riskEngineConfigurationTypeName } from '@kbn/security-solution-plugin/server/lib/risk_engine/saved_object'; import type { KbnClient } from '@kbn/test'; +import { + RISK_ENGINE_INIT_URL, + RISK_ENGINE_DISABLE_URL, + RISK_ENGINE_ENABLE_URL, + RISK_ENGINE_STATUS_URL, +} from '@kbn/security-solution-plugin/common/constants'; import { createRule, waitForSignalsToBePresent, @@ -19,6 +25,7 @@ import { getRuleForSignalTesting, countDownTest, waitFor, + routeWithNamespace, } from '../../../utils'; const sanitizeScore = (score: Partial<RiskScore>): Partial<RiskScore> => { @@ -49,7 +56,15 @@ export const buildDocument = (body: object, id?: string) => { }; export const createAndSyncRuleAndAlertsFactory = - ({ supertest, log }: { supertest: SuperTest.SuperTest<SuperTest.Test>; log: ToolingLog }) => + ({ + supertest, + log, + namespace, + }: { + supertest: SuperTest.SuperTest<SuperTest.Test>; + log: ToolingLog; + namespace?: string; + }) => async ({ alerts = 1, riskScore = 21, @@ -64,21 +79,26 @@ export const createAndSyncRuleAndAlertsFactory = riskScoreOverride?: string; }): Promise<void> => { const rule = getRuleForSignalTesting(['ecs_compliant']); - const { id } = await createRule(supertest, log, { - ...rule, - risk_score: riskScore, - query, - max_signals: maxSignals, - ...(riskScoreOverride - ? { - risk_score_mapping: [ - { field: riskScoreOverride, operator: 'equals', value: '', risk_score: undefined }, - ], - } - : {}), - }); - await waitForRuleSuccess({ supertest, log, id }); - await waitForSignalsToBePresent(supertest, log, alerts, [id]); + const { id } = await createRule( + supertest, + log, + { + ...rule, + risk_score: riskScore, + query, + max_signals: maxSignals, + ...(riskScoreOverride + ? { + risk_score_mapping: [ + { field: riskScoreOverride, operator: 'equals', value: '', risk_score: undefined }, + ], + } + : {}), + }, + namespace + ); + await waitForRuleSuccess({ supertest, log, id, namespace }); + await waitForSignalsToBePresent(supertest, log, alerts, [id], namespace); }; /** @@ -99,6 +119,7 @@ export const deleteAllRiskScores = async ( match_all: {}, }, }, + ignore_unavailable: true, refresh: true, }); return { @@ -110,31 +131,133 @@ export const deleteAllRiskScores = async ( ); }; +/** + * Function to read risk scores from ES. By default, it reads from the risk + * score datastream in the default space, but this can be overridden with the + * `index` parameter. + * + * @param {string[]} index - the index or indices to read risk scores from. + * @param {number} size - the size parameter of the query + */ export const readRiskScores = async ( es: Client, - index: string[] = ['risk-score.risk-score-default'] + index: string[] = ['risk-score.risk-score-default'], + size: number = 1000 ): Promise<EcsRiskScore[]> => { const results = await es.search({ - index: 'risk-score.risk-score-default', + index, + size, }); return results.hits.hits.map((hit) => hit._source as EcsRiskScore); }; -export const waitForRiskScoresToBePresent = async ( - es: Client, - log: ToolingLog, - index: string[] = ['risk-score.risk-score-default'] -): Promise<void> => { +/** + * Function to read risk scores from ES and wait for them to be + * present/readable. By default, it reads from the risk score datastream in the + * default space, but this can be overridden with the `index` parameter. + * + * @param {string[]} index - the index or indices to read risk scores from. + * @param {number} scoreCount - the number of risk scores to wait for. Defaults to 1. + */ +export const waitForRiskScoresToBePresent = async ({ + es, + log, + index = ['risk-score.risk-score-default'], + scoreCount = 1, +}: { + es: Client; + log: ToolingLog; + index?: string[]; + scoreCount?: number; +}): Promise<void> => { await waitFor( async () => { - const riskScores = await readRiskScores(es, index); - return riskScores.length > 0; + const riskScores = await readRiskScores(es, index, scoreCount + 10); + return riskScores.length >= scoreCount; }, 'waitForRiskScoresToBePresent', log ); }; +export const getRiskEngineTasks = async ({ + es, + index = ['.kibana_task_manager*'], +}: { + es: Client; + index?: string[]; +}) => { + const result = await es.search({ + index, + query: { match: { 'task.taskType': 'risk_engine:risk_scoring' } }, + }); + + return result.hits.hits?.map((hit) => hit._source); +}; + +export const getRiskEngineTask = async ({ + es, + index = ['.kibana_task_manager*'], +}: { + es: Client; + index?: string[]; +}) => { + const result = await es.search({ + index, + query: { match: { 'task.taskType': 'risk_engine:risk_scoring' } }, + }); + + return result.hits.hits[0]?._source; +}; + +export const deleteRiskEngineTask = async ({ + es, + log, + index = ['.kibana_task_manager*'], +}: { + es: Client; + log: ToolingLog; + index?: string[]; +}) => { + await countDownTest( + async () => { + await es.deleteByQuery({ + index, + query: { + match: { + 'task.taskType': 'risk_engine:risk_scoring', + }, + }, + conflicts: 'proceed', + }); + return { + passed: true, + }; + }, + 'deleteRiskEngineTask', + log + ); +}; + +export const waitForRiskEngineTaskToBeGone = async ({ + es, + log, + index = ['.kibana_task_manager*'], +}: { + es: Client; + log: ToolingLog; + index?: string[]; +}): Promise<void> => { + await waitFor( + async () => { + const task = await getRiskEngineTask({ es, index }); + return task == null; + }, + 'waitForRiskEngineTaskToBeGone', + log + ); +}; + export const getRiskEngineConfigSO = async ({ kibanaServer }: { kibanaServer: KbnClient }) => { const soResponse = await kibanaServer.savedObjects.find({ type: riskEngineConfigurationTypeName, @@ -157,6 +280,28 @@ export const cleanRiskEngineConfig = async ({ } }; +export const updateRiskEngineConfigSO = async ({ + attributes, + kibanaServer, +}: { + attributes: object; + kibanaServer: KbnClient; +}) => { + const so = await getRiskEngineConfigSO({ kibanaServer }); + if (so) { + await kibanaServer.savedObjects.update({ + id: so.id, + type: riskEngineConfigurationTypeName, + attributes: { + ...so.attributes, + ...attributes, + }, + }); + } else { + throw Error('No risk engine config found'); + } +}; + export const legacyTransformIds = [ 'ml_hostriskscore_pivot_transform_default', 'ml_hostriskscore_latest_transform_default', @@ -201,7 +346,7 @@ export const clearLegacyTransforms = async ({ } }; -export const createTransforms = async ({ es }: { es: Client }): Promise<void> => { +export const createLegacyTransforms = async ({ es }: { es: Client }): Promise<void> => { const transforms = legacyTransformIds.map((transform) => es.transform.putTransform({ transform_id: transform, @@ -233,3 +378,36 @@ export const createTransforms = async ({ es }: { es: Client }): Promise<void> => await Promise.all(transforms); }; + +export const riskEngineRouteHelpersFactory = ( + supertest: SuperTest.SuperTest<SuperTest.Test>, + namespace?: string +) => ({ + init: async () => + await supertest + .post(routeWithNamespace(RISK_ENGINE_INIT_URL, namespace)) + .set('kbn-xsrf', 'true') + .send() + .expect(200), + + getStatus: async () => + await supertest + .get(routeWithNamespace(RISK_ENGINE_STATUS_URL, namespace)) + .set('kbn-xsrf', 'true') + .send() + .expect(200), + + enable: async () => + await supertest + .post(routeWithNamespace(RISK_ENGINE_ENABLE_URL, namespace)) + .set('kbn-xsrf', 'true') + .send() + .expect(200), + + disable: async () => + await supertest + .post(routeWithNamespace(RISK_ENGINE_DISABLE_URL, namespace)) + .set('kbn-xsrf', 'true') + .send() + .expect(200), +}); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/throttle.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/throttle.ts index 4434b2977d251..34984d4ea0dc8 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/throttle.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/throttle.ts @@ -322,6 +322,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: rule.rule_id, name: 'some other name' }) .expect(200); const readRule = await getRule(supertest, log, rule.rule_id); @@ -342,6 +343,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: rule.rule_id, name: 'some other name' }) .expect(200); const { @@ -366,6 +368,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: rule.rule_id, actions: [] }) .expect(200); const readRule = await getRule(supertest, log, rule.rule_id); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/update_rules.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/update_rules.ts index 0f26e2b396db1..dad8b37321e7b 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/update_rules.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/update_rules.ts @@ -72,6 +72,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(updatedRule) .expect(200); @@ -94,6 +95,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(updatedRule) .expect(200); @@ -117,6 +119,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(updatedRule) .expect(200); @@ -141,6 +144,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(updatedRule) .expect(200); @@ -190,6 +194,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(updatedRule) .expect(200); @@ -245,6 +250,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(updatedRule) .expect(200); @@ -285,6 +291,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(updatedRule) .expect(200); @@ -306,6 +313,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(updatedRule) .expect(200); @@ -329,6 +337,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(ruleUpdate) .expect(200); @@ -339,6 +348,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(ruleUpdate2) .expect(200); @@ -358,6 +368,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(simpleRule) .expect(404); @@ -375,6 +386,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(simpleRule) .expect(404); @@ -412,6 +424,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(ruleUpdate) .expect(200); @@ -444,6 +457,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(ruleUpdate) .expect(500); @@ -470,6 +484,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ ...getSimpleRule('rule-2'), exceptions_list: [ @@ -511,6 +526,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ ...updatedRule, exceptions_list: [ @@ -539,6 +555,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(rule) .expect(400); @@ -563,6 +580,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(rule) .expect(400); @@ -586,6 +604,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(rule) .expect(400); @@ -615,6 +634,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(rule) .expect(400); @@ -634,6 +654,7 @@ export default ({ getService }: FtrProviderContext) => { const { body: outputRule } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(savedQueryRule) .expect(200); @@ -649,6 +670,7 @@ export default ({ getService }: FtrProviderContext) => { const { body: outputRule } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(savedQueryRule) .expect(200); @@ -664,6 +686,7 @@ export default ({ getService }: FtrProviderContext) => { const { body: outputRule } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(queryRule) .expect(200); @@ -688,6 +711,7 @@ export default ({ getService }: FtrProviderContext) => { const { body: updatedRule } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(ruleToUpdate) .expect(200); @@ -857,6 +881,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(ruleUpdate) .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/update_rules_bulk.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/update_rules_bulk.ts index 440b691ce6b42..669247af1b088 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/update_rules_bulk.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group10/update_rules_bulk.ts @@ -59,6 +59,7 @@ export default ({ getService }: FtrProviderContext) => { const { header } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([updatedRule]) .expect(200); @@ -88,6 +89,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([updatedRule]) .expect(200); @@ -105,6 +107,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(getSimpleRuleUpdate('rule-2')) .expect(200); @@ -118,6 +121,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([updatedRule1, updatedRule2]) .expect(200); @@ -182,6 +186,7 @@ export default ({ getService }: FtrProviderContext) => { const { body }: { body: RuleResponse[] } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([updatedRule1, updatedRule2]) .expect(200); @@ -249,6 +254,7 @@ export default ({ getService }: FtrProviderContext) => { const { body }: { body: RuleResponse[] } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([updatedRule1, updatedRule2]) .expect(200); @@ -274,6 +280,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([updatedRule1]) .expect(200); @@ -302,6 +309,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([updatedRule1, updatedRule2]) .expect(200); @@ -331,6 +339,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([updatedRule1]) .expect(200); @@ -352,6 +361,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([updatedRule1]) .expect(200); @@ -375,6 +385,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ruleUpdate]) .expect(200); @@ -385,6 +396,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ruleUpdate2]) .expect(200); @@ -404,6 +416,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ruleUpdate]) .expect(200); @@ -426,6 +439,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ruleUpdate]) .expect(200); @@ -452,6 +466,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ruleUpdate, ruleUpdate2]) .expect(200); @@ -489,6 +504,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([rule1, rule2]) .expect(200); @@ -529,6 +545,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ { ...rule1, @@ -568,6 +585,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ { ...rule1, @@ -629,6 +647,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(DETECTION_ENGINE_RULES_BULK_UPDATE) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send([ruleToUpdate]) .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group3/exceptions_workflows.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group3/exceptions_workflows.ts index bd768ebb80a78..1ce75c7af5a1e 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group3/exceptions_workflows.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group3/exceptions_workflows.ts @@ -185,6 +185,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ELASTIC_SECURITY_RULE_ID, exceptions_list: [] }) .expect(200); @@ -209,6 +210,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ELASTIC_SECURITY_RULE_ID, exceptions_list: [ @@ -238,6 +240,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ELASTIC_SECURITY_RULE_ID, exceptions_list: [] }) .expect(200); @@ -267,6 +270,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ELASTIC_SECURITY_RULE_ID, exceptions_list: [ @@ -330,6 +334,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ELASTIC_SECURITY_RULE_ID, exceptions_list: [ @@ -386,6 +391,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ruleId, exceptions_list: [ @@ -430,6 +436,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ELASTIC_SECURITY_RULE_ID, exceptions_list: [ @@ -470,6 +477,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ELASTIC_SECURITY_RULE_ID, exceptions_list: [ diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group4/telemetry/task_based/detection_rules.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group4/telemetry/task_based/detection_rules.ts index 266b5b0c8e9e4..041033b96db86 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group4/telemetry/task_based/detection_rules.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group4/telemetry/task_based/detection_rules.ts @@ -374,6 +374,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ELASTIC_SECURITY_RULE_ID, exceptions_list: [ @@ -432,6 +433,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ELASTIC_SECURITY_RULE_ID, exceptions_list: [ @@ -508,6 +510,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ELASTIC_SECURITY_RULE_ID, exceptions_list: [ @@ -584,6 +587,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ELASTIC_SECURITY_RULE_ID, exceptions_list: [ @@ -660,6 +664,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ELASTIC_SECURITY_RULE_ID, exceptions_list: [ @@ -736,6 +741,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ELASTIC_SECURITY_RULE_ID, exceptions_list: [ @@ -836,6 +842,7 @@ export default ({ getService }: FtrProviderContext) => { await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ELASTIC_SECURITY_RULE_ID, exceptions_list: [ diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/group8/exception_operators_data_types/keyword_array.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/group8/exception_operators_data_types/keyword_array.ts index e08d449584140..7d95f6c9ec6bc 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/group8/exception_operators_data_types/keyword_array.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/group8/exception_operators_data_types/keyword_array.ts @@ -154,6 +154,7 @@ export default ({ getService }: FtrProviderContext) => { await waitForSignalsToBePresent(supertest, log, 1, [id]); const signalsOpen = await getSignalsById(supertest, log, id); const hits = signalsOpen.hits.hits.map((hit) => hit._source?.keyword).sort(); + // @ts-expect-error ts upgrade v4.7.4 expect(hits.flat(Number.MAX_SAFE_INTEGER)).to.eql([]); }); }); diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/tests/import_rules.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/tests/import_rules.ts index 0dd453136661f..002bf3ddda8a4 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/tests/import_rules.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/tests/import_rules.ts @@ -123,6 +123,7 @@ export default ({ getService }: FtrProviderContext): void => { .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .auth(ROLES.hunter_no_actions, 'changeme') .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); @@ -162,6 +163,7 @@ export default ({ getService }: FtrProviderContext): void => { .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .auth(ROLES.hunter, 'changeme') .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', ruleToNdjson(simpleRule), 'rules.ndjson') .expect(200); @@ -201,6 +203,7 @@ export default ({ getService }: FtrProviderContext): void => { .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .auth(ROLES.hunter_no_actions, 'changeme') .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', ruleToNdjson(simpleRule), 'rules.ndjson') .expect(200); expect(body).to.eql({ @@ -248,6 +251,7 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect('Content-Type', 'application/json; charset=utf-8') .expect(200); @@ -257,6 +261,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.txt') .expect(400); @@ -270,6 +275,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); @@ -292,11 +298,13 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-1`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); @@ -311,6 +319,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-2']), 'rules.ndjson') .expect(200); @@ -333,6 +342,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-1']), 'rules.ndjson') .expect(200); @@ -363,6 +373,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import?overwrite=true`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-1']), 'rules.ndjson') .expect(200); @@ -385,12 +396,14 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); @@ -421,12 +434,14 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import?overwrite=true`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import?overwrite=true`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); @@ -449,6 +464,7 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); @@ -459,11 +475,13 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import?overwrite=true`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', ndjson, 'rules.ndjson') .expect(200); const { body } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-1`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); @@ -481,12 +499,14 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1']), 'rules.ndjson') .expect(200); const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-2', 'rule-3']), 'rules.ndjson') .expect(200); @@ -517,12 +537,14 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-2']), 'rules.ndjson') .expect(200); const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-2', 'rule-3']), 'rules.ndjson') .expect(200); @@ -565,27 +587,32 @@ export default ({ getService }: FtrProviderContext): void => { await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-2']), 'rules.ndjson') .expect(200); await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', getSimpleRuleAsNdjson(['rule-1', 'rule-2', 'rule-3']), 'rules.ndjson') .expect(200); const { body: bodyOfRule1 } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-1`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); const { body: bodyOfRule2 } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-2`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); const { body: bodyOfRule3 } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-3`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); @@ -615,6 +642,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', ruleToNdjson(simpleRule), 'rules.ndjson') .expect(200); @@ -670,6 +698,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', ruleToNdjson(simpleRule), 'rules.ndjson') .expect(200); expect(body).to.eql({ @@ -725,6 +754,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', buffer, 'rules.ndjson') .expect(200); @@ -781,6 +811,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', buffer, 'rules.ndjson') .expect(200); @@ -830,6 +861,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`/s/${spaceId}${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', buffer, 'rules.ndjson') .expect(200); expect(body.success).to.eql(true); @@ -846,6 +878,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', buffer, 'rules.ndjson') .expect(200); expect(body.success).to.equal(false); @@ -866,6 +899,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`/s/${spaceId}${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', buffer, 'rules.ndjson') .expect(200); expect(body.success).to.equal(false); @@ -884,6 +918,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', buffer, 'rules.ndjson') .expect(200); expect(body.success).to.equal(true); @@ -903,6 +938,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`/s/${spaceId}${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', buffer, 'rules.ndjson') .expect(200); expect(body.success).to.equal(false); @@ -924,6 +960,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach( 'file', Buffer.from( @@ -984,11 +1021,13 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach('file', ruleToNdjson(simpleRule), 'rules.ndjson') .expect(200); const { body: ruleResponse } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-1`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); @@ -1046,6 +1085,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach( 'file', Buffer.from( @@ -1092,6 +1132,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body: ruleResponse } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-1`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); const bodyToCompare = removeServerGeneratedProperties(ruleResponse); @@ -1149,6 +1190,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body } = await supertest .post(`${DETECTION_ENGINE_RULES_URL}/_import`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .attach( 'file', Buffer.from( @@ -1206,6 +1248,7 @@ export default ({ getService }: FtrProviderContext): void => { const { body: ruleResponse } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=rule-1`) + .set('elastic-api-version', '2023-10-31') .send() .expect(200); const bodyToCompare = removeServerGeneratedProperties(ruleResponse); diff --git a/x-pack/test/detection_engine_api_integration/utils/create_non_security_rule.ts b/x-pack/test/detection_engine_api_integration/utils/create_non_security_rule.ts new file mode 100644 index 0000000000000..89bb2bbea5725 --- /dev/null +++ b/x-pack/test/detection_engine_api_integration/utils/create_non_security_rule.ts @@ -0,0 +1,41 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import type SuperTest from 'supertest'; + +const SIMPLE_APM_RULE_DATA = { + name: 'Test rule', + rule_type_id: 'apm.anomaly', + enabled: false, + consumer: 'alerts', + tags: [], + actions: [], + params: { + windowSize: 30, + windowUnit: 'm', + anomalySeverityType: 'critical', + environment: 'ENVIRONMENT_ALL', + }, + schedule: { + interval: '10m', + }, +}; + +/** + * Created a non security rule. Helpful in tests to verify functionality works with presence of non security rules. + * @param supertest The supertest deps + */ +export async function createNonSecurityRule( + supertest: SuperTest.SuperTest<SuperTest.Test> +): Promise<void> { + await supertest + .post('/api/alerting/rule') + .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') + .send(SIMPLE_APM_RULE_DATA) + .expect(200); +} diff --git a/x-pack/test/detection_engine_api_integration/utils/create_rule.ts b/x-pack/test/detection_engine_api_integration/utils/create_rule.ts index 1637233ecd997..d831aba44948f 100644 --- a/x-pack/test/detection_engine_api_integration/utils/create_rule.ts +++ b/x-pack/test/detection_engine_api_integration/utils/create_rule.ts @@ -14,6 +14,7 @@ import type { import { DETECTION_ENGINE_RULES_URL } from '@kbn/security-solution-plugin/common/constants'; import { deleteRule } from './delete_rule'; +import { routeWithNamespace } from './route_with_namespace'; /** * Helper to cut down on the noise in some of the tests. If this detects @@ -27,11 +28,14 @@ import { deleteRule } from './delete_rule'; export const createRule = async ( supertest: SuperTest.SuperTest<SuperTest.Test>, log: ToolingLog, - rule: RuleCreateProps + rule: RuleCreateProps, + namespace?: string ): Promise<RuleResponse> => { + const route = routeWithNamespace(DETECTION_ENGINE_RULES_URL, namespace); const response = await supertest - .post(DETECTION_ENGINE_RULES_URL) + .post(route) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(rule); if (response.status === 409) { if (rule.rule_id != null) { @@ -44,6 +48,7 @@ export const createRule = async ( const secondResponseTry = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(rule); if (secondResponseTry.status !== 200) { throw new Error( diff --git a/x-pack/test/detection_engine_api_integration/utils/create_rule_with_auth.ts b/x-pack/test/detection_engine_api_integration/utils/create_rule_with_auth.ts index feeea8403d9b3..7b5e4435a3dbb 100644 --- a/x-pack/test/detection_engine_api_integration/utils/create_rule_with_auth.ts +++ b/x-pack/test/detection_engine_api_integration/utils/create_rule_with_auth.ts @@ -26,6 +26,7 @@ export const createRuleWithAuth = async ( const { body } = await supertest .post(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .auth(auth.user, auth.pass) .send(rule); return body; diff --git a/x-pack/test/detection_engine_api_integration/utils/create_rule_with_exception_entries.ts b/x-pack/test/detection_engine_api_integration/utils/create_rule_with_exception_entries.ts index a1a2e19650fbe..fac1efa9ad0eb 100644 --- a/x-pack/test/detection_engine_api_integration/utils/create_rule_with_exception_entries.ts +++ b/x-pack/test/detection_engine_api_integration/utils/create_rule_with_exception_entries.ts @@ -58,6 +58,7 @@ export const createRuleWithExceptionEntries = async ( const response = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ rule_id: ruleResponse.rule_id, enabled: true }); if (response.status !== 200) { diff --git a/x-pack/test/detection_engine_api_integration/utils/delete_all_rules.ts b/x-pack/test/detection_engine_api_integration/utils/delete_all_rules.ts index 1bd077defcac1..e0903a8df6f13 100644 --- a/x-pack/test/detection_engine_api_integration/utils/delete_all_rules.ts +++ b/x-pack/test/detection_engine_api_integration/utils/delete_all_rules.ts @@ -27,11 +27,13 @@ export const deleteAllRules = async ( await supertest .post(DETECTION_ENGINE_RULES_BULK_ACTION) .send({ action: 'delete', query: '' }) - .set('kbn-xsrf', 'true'); + .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31'); const { body: finalCheck } = await supertest .get(`${DETECTION_ENGINE_RULES_URL}/_find`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(); return { passed: finalCheck.data.length === 0, diff --git a/x-pack/test/detection_engine_api_integration/utils/delete_rule.ts b/x-pack/test/detection_engine_api_integration/utils/delete_rule.ts index ce108696d0603..f4eff397aba0b 100644 --- a/x-pack/test/detection_engine_api_integration/utils/delete_rule.ts +++ b/x-pack/test/detection_engine_api_integration/utils/delete_rule.ts @@ -23,6 +23,7 @@ export const deleteRule = async ( const response = await supertest .delete(`${DETECTION_ENGINE_RULES_URL}?rule_id=${ruleId}`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .expect(200); return response.body; diff --git a/x-pack/test/detection_engine_api_integration/utils/find_immutable_rule_by_id.ts b/x-pack/test/detection_engine_api_integration/utils/find_immutable_rule_by_id.ts index 6651deb941295..55e7375c48986 100644 --- a/x-pack/test/detection_engine_api_integration/utils/find_immutable_rule_by_id.ts +++ b/x-pack/test/detection_engine_api_integration/utils/find_immutable_rule_by_id.ts @@ -31,6 +31,7 @@ export const findImmutableRuleById = async ( `${DETECTION_ENGINE_RULES_URL}/_find?filter=alert.attributes.params.immutable: true AND alert.attributes.params.ruleId: "${ruleId}"` ) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(); if (response.status !== 200) { log.error( diff --git a/x-pack/test/detection_engine_api_integration/utils/get_rule.ts b/x-pack/test/detection_engine_api_integration/utils/get_rule.ts index 2636cd10ed81f..32b2c0b1d5df6 100644 --- a/x-pack/test/detection_engine_api_integration/utils/get_rule.ts +++ b/x-pack/test/detection_engine_api_integration/utils/get_rule.ts @@ -24,7 +24,8 @@ export const getRule = async ( ): Promise<RuleResponse> => { const response = await supertest .get(`${DETECTION_ENGINE_RULES_URL}?rule_id=${ruleId}`) - .set('kbn-xsrf', 'true'); + .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31'); if (response.status !== 200) { log.error( diff --git a/x-pack/test/detection_engine_api_integration/utils/get_signals_by_ids.ts b/x-pack/test/detection_engine_api_integration/utils/get_signals_by_ids.ts index f9f2eccdaa8b1..ae76f12e05930 100644 --- a/x-pack/test/detection_engine_api_integration/utils/get_signals_by_ids.ts +++ b/x-pack/test/detection_engine_api_integration/utils/get_signals_by_ids.ts @@ -14,6 +14,7 @@ import type { RiskEnrichmentFields } from '@kbn/security-solution-plugin/server/ import { DETECTION_ENGINE_QUERY_SIGNALS_URL } from '@kbn/security-solution-plugin/common/constants'; import { countDownTest } from './count_down_test'; import { getQuerySignalsId } from './get_query_signals_ids'; +import { routeWithNamespace } from './route_with_namespace'; /** * Given an array of rule ids this will return only signals based on that rule id both @@ -25,12 +26,14 @@ export const getSignalsByIds = async ( supertest: SuperTest.SuperTest<SuperTest.Test>, log: ToolingLog, ids: string[], - size?: number + size?: number, + namespace?: string ): Promise<SearchResponse<DetectionAlert & RiskEnrichmentFields>> => { const signalsOpen = await countDownTest<SearchResponse<DetectionAlert & RiskEnrichmentFields>>( async () => { + const route = routeWithNamespace(DETECTION_ENGINE_QUERY_SIGNALS_URL, namespace); const response = await supertest - .post(DETECTION_ENGINE_QUERY_SIGNALS_URL) + .post(route) .set('kbn-xsrf', 'true') .send(getQuerySignalsId(ids, size)); if (response.status !== 200) { diff --git a/x-pack/test/detection_engine_api_integration/utils/index.ts b/x-pack/test/detection_engine_api_integration/utils/index.ts index e02edc7908047..dc41cedbca00e 100644 --- a/x-pack/test/detection_engine_api_integration/utils/index.ts +++ b/x-pack/test/detection_engine_api_integration/utils/index.ts @@ -83,6 +83,7 @@ export * from './perform_search_query'; export * from './preview_rule_with_exception_entries'; export * from './preview_rule'; export * from './refresh_index'; +export * from './route_with_namespace'; export * from './remove_time_fields_from_telemetry_stats'; export * from './remove_server_generated_properties'; export * from './remove_server_generated_properties_including_rule_id'; diff --git a/x-pack/test/detection_engine_api_integration/utils/patch_rule.ts b/x-pack/test/detection_engine_api_integration/utils/patch_rule.ts index 2d87660d989e3..f62f49b20d622 100644 --- a/x-pack/test/detection_engine_api_integration/utils/patch_rule.ts +++ b/x-pack/test/detection_engine_api_integration/utils/patch_rule.ts @@ -28,6 +28,7 @@ export const patchRule = async ( const response = await supertest .patch(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(patchedRule); if (response.status !== 200) { log.error( diff --git a/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/get_installed_rules.ts b/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/get_installed_rules.ts index 85eaee80ed3e8..f796dd06e777b 100644 --- a/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/get_installed_rules.ts +++ b/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/get_installed_rules.ts @@ -23,6 +23,7 @@ export const getInstalledRules = async ( const { body: rulesResponse } = await supertest .get(`${DETECTION_ENGINE_RULES_URL_FIND}?per_page=10000`) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/get_prebuilt_rules_and_timelines_status.ts b/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/get_prebuilt_rules_and_timelines_status.ts index 109c6e148537c..2d03e597dc5af 100644 --- a/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/get_prebuilt_rules_and_timelines_status.ts +++ b/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/get_prebuilt_rules_and_timelines_status.ts @@ -23,6 +23,7 @@ export const getPrebuiltRulesAndTimelinesStatus = async ( const response = await supertest .get(PREBUILT_RULES_STATUS_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/get_prebuilt_rules_status.ts b/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/get_prebuilt_rules_status.ts index cb283d8cf940d..db7d8553ad946 100644 --- a/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/get_prebuilt_rules_status.ts +++ b/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/get_prebuilt_rules_status.ts @@ -22,6 +22,7 @@ export const getPrebuiltRulesStatus = async ( const response = await supertest .get(GET_PREBUILT_RULES_STATUS_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .send() .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/install_prebuilt_rules.ts b/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/install_prebuilt_rules.ts index f05ea093cfc5d..52e34d67a1936 100644 --- a/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/install_prebuilt_rules.ts +++ b/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/install_prebuilt_rules.ts @@ -42,6 +42,7 @@ export const installPrebuiltRules = async ( const response = await supertest .post(PERFORM_RULE_INSTALLATION_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .send(payload) .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/install_prebuilt_rules_and_timelines.ts b/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/install_prebuilt_rules_and_timelines.ts index fdf87a94391c9..776af6074e07e 100644 --- a/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/install_prebuilt_rules_and_timelines.ts +++ b/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/install_prebuilt_rules_and_timelines.ts @@ -36,6 +36,7 @@ export const installPrebuiltRulesAndTimelines = async ( const response = await supertest .put(PREBUILT_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send() .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/review_install_prebuilt_rules.ts b/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/review_install_prebuilt_rules.ts index 1c14aec343e9d..ff7987d776213 100644 --- a/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/review_install_prebuilt_rules.ts +++ b/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/review_install_prebuilt_rules.ts @@ -21,6 +21,7 @@ export const reviewPrebuiltRulesToInstall = async ( const response = await supertest .post(REVIEW_RULE_INSTALLATION_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .send() .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/review_upgrade_prebuilt_rules.ts b/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/review_upgrade_prebuilt_rules.ts index 9b8e817a571d3..fdcdab5dd9ed3 100644 --- a/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/review_upgrade_prebuilt_rules.ts +++ b/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/review_upgrade_prebuilt_rules.ts @@ -21,6 +21,7 @@ export const reviewPrebuiltRulesToUpgrade = async ( const response = await supertest .post(REVIEW_RULE_UPGRADE_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .send() .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/upgrade_prebuilt_rules.ts b/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/upgrade_prebuilt_rules.ts index d9ea277fb1421..1fbbe46e1e7ff 100644 --- a/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/upgrade_prebuilt_rules.ts +++ b/x-pack/test/detection_engine_api_integration/utils/prebuilt_rules/upgrade_prebuilt_rules.ts @@ -38,6 +38,7 @@ export const upgradePrebuiltRules = async ( const response = await supertest .post(PERFORM_RULE_UPGRADE_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '1') .send(payload) .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/utils/route_with_namespace.ts b/x-pack/test/detection_engine_api_integration/utils/route_with_namespace.ts new file mode 100644 index 0000000000000..07e5c4a8049e2 --- /dev/null +++ b/x-pack/test/detection_engine_api_integration/utils/route_with_namespace.ts @@ -0,0 +1,14 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +/** + * Generates a route string with an optional namespace. + * @param route the route string + * @param namespace [optional] the namespace to account for in the route + */ +export const routeWithNamespace = (route: string, namespace?: string) => + namespace ? `/s/${namespace}${route}` : route; diff --git a/x-pack/test/detection_engine_api_integration/utils/update_rule.ts b/x-pack/test/detection_engine_api_integration/utils/update_rule.ts index 344dcdaea13e1..53c1beb272764 100644 --- a/x-pack/test/detection_engine_api_integration/utils/update_rule.ts +++ b/x-pack/test/detection_engine_api_integration/utils/update_rule.ts @@ -28,6 +28,7 @@ export const updateRule = async ( const response = await supertest .put(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send(updatedRule); if (response.status !== 200) { log.error( diff --git a/x-pack/test/detection_engine_api_integration/utils/wait_for_rule_status.ts b/x-pack/test/detection_engine_api_integration/utils/wait_for_rule_status.ts index 69d904da9579d..53393fa58db70 100644 --- a/x-pack/test/detection_engine_api_integration/utils/wait_for_rule_status.ts +++ b/x-pack/test/detection_engine_api_integration/utils/wait_for_rule_status.ts @@ -10,11 +10,13 @@ import type SuperTest from 'supertest'; import { DETECTION_ENGINE_RULES_URL } from '@kbn/security-solution-plugin/common/constants'; import { RuleExecutionStatus } from '@kbn/security-solution-plugin/common/api/detection_engine/rule_monitoring'; import { waitFor } from './wait_for'; +import { routeWithNamespace } from './route_with_namespace'; interface WaitForRuleStatusBaseParams { supertest: SuperTest.SuperTest<SuperTest.Test>; log: ToolingLog; afterDate?: Date; + namespace?: string; } interface WaitForRuleStatusWithId extends WaitForRuleStatusBaseParams { @@ -38,14 +40,16 @@ export type WaitForRuleStatusParams = WaitForRuleStatusWithId | WaitForRuleStatu */ export const waitForRuleStatus = async ( expectedStatus: RuleExecutionStatus, - { supertest, log, afterDate, ...idOrRuleId }: WaitForRuleStatusParams + { supertest, log, afterDate, namespace, ...idOrRuleId }: WaitForRuleStatusParams ): Promise<void> => { await waitFor( async () => { const query = 'id' in idOrRuleId ? { id: idOrRuleId.id } : { rule_id: idOrRuleId.ruleId }; + const route = routeWithNamespace(DETECTION_ENGINE_RULES_URL, namespace); const response = await supertest - .get(DETECTION_ENGINE_RULES_URL) + .get(route) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .query(query) .expect(200); diff --git a/x-pack/test/detection_engine_api_integration/utils/wait_for_signals_to_be_present.ts b/x-pack/test/detection_engine_api_integration/utils/wait_for_signals_to_be_present.ts index 59407b116b2ac..b98ef40671981 100644 --- a/x-pack/test/detection_engine_api_integration/utils/wait_for_signals_to_be_present.ts +++ b/x-pack/test/detection_engine_api_integration/utils/wait_for_signals_to_be_present.ts @@ -21,11 +21,18 @@ export const waitForSignalsToBePresent = async ( supertest: SuperTest.SuperTest<SuperTest.Test>, log: ToolingLog, numberOfSignals = 1, - signalIds: string[] + signalIds: string[], + namespace?: string ): Promise<void> => { await waitFor( async () => { - const signalsOpen = await getSignalsByIds(supertest, log, signalIds, numberOfSignals); + const signalsOpen = await getSignalsByIds( + supertest, + log, + signalIds, + numberOfSignals, + namespace + ); return signalsOpen.hits.hits.length >= numberOfSignals; }, 'waitForSignalsToBePresent', diff --git a/x-pack/test/examples/triggers_actions_ui_examples/global_rule_event_log_list.ts b/x-pack/test/examples/triggers_actions_ui_examples/global_rule_event_log_list.ts new file mode 100644 index 0000000000000..660e76c549ff4 --- /dev/null +++ b/x-pack/test/examples/triggers_actions_ui_examples/global_rule_event_log_list.ts @@ -0,0 +1,32 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { FtrProviderContext } from '../../../../test/functional/ftr_provider_context'; + +// eslint-disable-next-line import/no-default-export +export default ({ getPageObjects, getService }: FtrProviderContext) => { + const testSubjects = getService('testSubjects'); + const PageObjects = getPageObjects(['common']); + const esArchiver = getService('esArchiver'); + + describe('Global rule event log list', function () { + before(async () => { + await esArchiver.load('x-pack/test/functional/es_archives/observability/alerts'); + await PageObjects.common.navigateToApp('triggersActionsUiExample/global_rule_event_log_list'); + }); + after(async () => { + await esArchiver.unload('x-pack/test/functional/es_archives/observability/alerts'); + }); + + it('should load from the shareable lazy loader', async () => { + await testSubjects.find('ruleEventLogListTable'); + const exists = await testSubjects.exists('ruleEventLogListTable'); + expect(exists).to.be(true); + }); + }); +}; diff --git a/x-pack/test/examples/triggers_actions_ui_examples/index.ts b/x-pack/test/examples/triggers_actions_ui_examples/index.ts index 9cc6aa8b6e6b0..19b0b01a35c68 100644 --- a/x-pack/test/examples/triggers_actions_ui_examples/index.ts +++ b/x-pack/test/examples/triggers_actions_ui_examples/index.ts @@ -14,6 +14,7 @@ export default ({ loadTestFile }: FtrProviderContext) => { loadTestFile(require.resolve('./rule_status_filter')); loadTestFile(require.resolve('./rule_tag_badge')); loadTestFile(require.resolve('./rule_event_log_list')); + loadTestFile(require.resolve('./global_rule_event_log_list')); loadTestFile(require.resolve('./rules_list')); loadTestFile(require.resolve('./alerts_table')); loadTestFile(require.resolve('./rules_settings_link')); diff --git a/x-pack/test/fleet_api_integration/apis/agent_policy/agent_policy.ts b/x-pack/test/fleet_api_integration/apis/agent_policy/agent_policy.ts index 90426d9bdfa3e..25eb5e5994083 100644 --- a/x-pack/test/fleet_api_integration/apis/agent_policy/agent_policy.ts +++ b/x-pack/test/fleet_api_integration/apis/agent_policy/agent_policy.ts @@ -454,6 +454,34 @@ export default function (providerContext: FtrProviderContext) { }); }); + it('should copy inactivity timeout', async () => { + const { + body: { item: policyWithTimeout }, + } = await supertest + .post(`/api/fleet/agent_policies`) + .set('kbn-xsrf', 'xxxx') + .send({ + name: 'Inactivity test', + namespace: 'default', + is_managed: true, + inactivity_timeout: 123, + }) + .expect(200); + + const { + body: { item: newPolicy }, + } = await supertest + .post(`/api/fleet/agent_policies/${policyWithTimeout.id}/copy`) + .set('kbn-xsrf', 'xxxx') + .send({ + name: 'Inactivity test copy', + description: 'Test', + }) + .expect(200); + + expect(newPolicy.inactivity_timeout).to.eql(123); + }); + it('should increment package policy copy names', async () => { async function getSystemPackagePolicyCopyVersion(policyId: string) { const { diff --git a/x-pack/test/fleet_api_integration/apis/agents/reassign.ts b/x-pack/test/fleet_api_integration/apis/agents/reassign.ts index 571a0fee11f54..8838a5e0bbcdf 100644 --- a/x-pack/test/fleet_api_integration/apis/agents/reassign.ts +++ b/x-pack/test/fleet_api_integration/apis/agents/reassign.ts @@ -201,7 +201,7 @@ export default function (providerContext: FtrProviderContext) { const intervalId = setInterval(async () => { if (attempts > 2) { clearInterval(intervalId); - reject('action timed out'); + reject(new Error('action timed out')); } ++attempts; const { diff --git a/x-pack/test/fleet_api_integration/apis/agents/request_diagnostics.ts b/x-pack/test/fleet_api_integration/apis/agents/request_diagnostics.ts index 492be32f22861..eeb9fbd3aa229 100644 --- a/x-pack/test/fleet_api_integration/apis/agents/request_diagnostics.ts +++ b/x-pack/test/fleet_api_integration/apis/agents/request_diagnostics.ts @@ -87,7 +87,7 @@ export default function (providerContext: FtrProviderContext) { const intervalId = setInterval(async () => { if (attempts > 2) { clearInterval(intervalId); - reject('action timed out'); + reject(new Error('action timed out')); } ++attempts; const { diff --git a/x-pack/test/fleet_api_integration/apis/agents/unenroll.ts b/x-pack/test/fleet_api_integration/apis/agents/unenroll.ts index 934cd16040cf6..e3153ad422ffc 100644 --- a/x-pack/test/fleet_api_integration/apis/agents/unenroll.ts +++ b/x-pack/test/fleet_api_integration/apis/agents/unenroll.ts @@ -204,9 +204,9 @@ export default function (providerContext: FtrProviderContext) { await new Promise((resolve, reject) => { let attempts = 0; const intervalId = setInterval(async () => { - if (attempts > 2) { + if (attempts > 3) { clearInterval(intervalId); - reject('action timed out'); + reject(new Error('action timed out')); } ++attempts; const { diff --git a/x-pack/test/fleet_api_integration/apis/agents/update_agent_tags.ts b/x-pack/test/fleet_api_integration/apis/agents/update_agent_tags.ts index 197e4da7429bf..0292e62f60896 100644 --- a/x-pack/test/fleet_api_integration/apis/agents/update_agent_tags.ts +++ b/x-pack/test/fleet_api_integration/apis/agents/update_agent_tags.ts @@ -78,7 +78,7 @@ export default function (providerContext: FtrProviderContext) { const intervalId = setInterval(async () => { if (attempts > 4) { clearInterval(intervalId); - reject('action timed out'); + reject(new Error('action timed out')); } ++attempts; const { diff --git a/x-pack/test/fleet_api_integration/apis/agents/upgrade.ts b/x-pack/test/fleet_api_integration/apis/agents/upgrade.ts index 0c31fd5d710cc..b0cdbd9ece49e 100644 --- a/x-pack/test/fleet_api_integration/apis/agents/upgrade.ts +++ b/x-pack/test/fleet_api_integration/apis/agents/upgrade.ts @@ -618,7 +618,7 @@ export default function (providerContext: FtrProviderContext) { const intervalId = setInterval(async () => { if (attempts > 4) { clearInterval(intervalId); - reject('action timed out'); + reject(new Error('action timed out')); } ++attempts; const { diff --git a/x-pack/test/fleet_api_integration/apis/epm/get.ts b/x-pack/test/fleet_api_integration/apis/epm/get.ts index 6924765458318..fb15de6847952 100644 --- a/x-pack/test/fleet_api_integration/apis/epm/get.ts +++ b/x-pack/test/fleet_api_integration/apis/epm/get.ts @@ -123,7 +123,11 @@ export default function (providerContext: FtrProviderContext) { it('Allows the fetching of installed packages', async () => { const res = await supertest.get(`/api/fleet/epm/packages/installed`).expect(200); const packages = res.body.items; - expect(packages.length).to.be(3); + const packageNames = packages.map((pkg: any) => pkg.name); + expect(packageNames).to.contain('apache'); + expect(packageNames).to.contain('endpoint'); + expect(packageNames).to.contain('experimental'); + expect(packageNames.length).to.be(3); }); it('Can be limited with perPage', async () => { const res = await supertest.get(`/api/fleet/epm/packages/installed?perPage=2`).expect(200); diff --git a/x-pack/test/fleet_api_integration/apis/epm/install_tag_assets.ts b/x-pack/test/fleet_api_integration/apis/epm/install_tag_assets.ts index 4c1882ee5ff23..a9b494da4d53c 100644 --- a/x-pack/test/fleet_api_integration/apis/epm/install_tag_assets.ts +++ b/x-pack/test/fleet_api_integration/apis/epm/install_tag_assets.ts @@ -156,7 +156,7 @@ export default function (providerContext: FtrProviderContext) { describe('Handles presence of tags inside integration package', async () => { const testPackage = 'assets_with_tags'; - const testPackageVersion = '0.1.0'; + const testPackageVersion = '0.1.1'; // tag corresponding to `OnlySomeAssets` const ONLY_SOME_ASSETS_TAG = `fleet-shared-tag-${testPackage}-ef823f10-b5af-5fcb-95da-2340a5257599-default`; // tag corresponding to `MixedTypesTag` @@ -167,7 +167,7 @@ export default function (providerContext: FtrProviderContext) { const testPkgArchiveZip = path.join( path.dirname(__filename), - '../fixtures/direct_upload_packages/assets_with_tags-0.1.0.zip' + '../fixtures/direct_upload_packages/assets_with_tags-0.1.1.zip' ); const buf = fs.readFileSync(testPkgArchiveZip); await supertest @@ -187,7 +187,7 @@ export default function (providerContext: FtrProviderContext) { const managedTag = await getTag('fleet-managed-default'); expect(managedTag).not.equal(undefined); - const securitySolutionTag = await getTag('SecuritySolution'); + const securitySolutionTag = await getTag('security-solution-default'); expect(securitySolutionTag).not.equal(undefined); const pkgTag1 = await getTag(ONLY_SOME_ASSETS_TAG); diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/direct_upload_packages/assets_with_tags-0.1.1.zip b/x-pack/test/fleet_api_integration/apis/fixtures/direct_upload_packages/assets_with_tags-0.1.1.zip new file mode 100644 index 0000000000000..b58c83e8f086f Binary files /dev/null and b/x-pack/test/fleet_api_integration/apis/fixtures/direct_upload_packages/assets_with_tags-0.1.1.zip differ diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.0.0/data_stream/log/agent/input/input.yml.hbs b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.0.0/data_stream/log/agent/input/input.yml.hbs index 3c3b8b5df23c2..a562a8dacdae8 100644 --- a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.0.0/data_stream/log/agent/input/input.yml.hbs +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.0.0/data_stream/log/agent/input/input.yml.hbs @@ -1,2 +1,4 @@ package_var_secret: {{package_var_secret}} +package_var_non_secret: {{package_var_non_secret}} input_var_secret: {{input_var_secret}} +input_var_non_secret: {{input_var_non_secret}} diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.0.0/data_stream/log/agent/stream/stream.yml.hbs b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.0.0/data_stream/log/agent/stream/stream.yml.hbs index 81cce3223c9f4..c8a3b08abd942 100644 --- a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.0.0/data_stream/log/agent/stream/stream.yml.hbs +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.0.0/data_stream/log/agent/stream/stream.yml.hbs @@ -1,4 +1,7 @@ config.version: "2" package_var_secret: {{package_var_secret}} +package_var_non_secret: {{package_var_non_secret}} input_var_secret: {{input_var_secret}} +input_var_non_secret: {{input_var_non_secret}} stream_var_secret: {{stream_var_secret}} +stream_var_non_secret: {{stream_var_non_secret}} diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.0.0/data_stream/log/manifest.yml b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.0.0/data_stream/log/manifest.yml index 8ecffc0e4e7d4..46504ff58a894 100644 --- a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.0.0/data_stream/log/manifest.yml +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.0.0/data_stream/log/manifest.yml @@ -10,3 +10,8 @@ streams: multi: false show_user: true secret: true + - name: stream_var_non_secret + type: text + title: Stream Var Non Secret + multi: false + show_user: true diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.0.0/manifest.yml b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.0.0/manifest.yml index 9efcf03ea13ca..d577e1b930713 100644 --- a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.0.0/manifest.yml +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.0.0/manifest.yml @@ -1,7 +1,7 @@ format_version: 1.0.0 name: secrets title: Package with secrets -description: This integration package has 3 secrets. +description: This integration package has 3 secret and 3 non secret vars. version: 1.0.0 categories: [] # Options are experimental, beta, ga @@ -32,6 +32,12 @@ vars: required: true show_user: true secret: true + - name: package_var_non_secret + type: text + title: Package Var Non Secret + multi: false + required: true + show_user: true policy_templates: - name: secrets title: This @@ -48,4 +54,9 @@ policy_templates: title: Input Var Secret multi: false show_user: true - secret: true \ No newline at end of file + secret: true + - name: input_var_non_secret + type: text + title: Input Var Non Secret + multi: false + show_user: true diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/data_stream/log/agent/input/input.yml.hbs b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/data_stream/log/agent/input/input.yml.hbs new file mode 100644 index 0000000000000..a562a8dacdae8 --- /dev/null +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/data_stream/log/agent/input/input.yml.hbs @@ -0,0 +1,4 @@ +package_var_secret: {{package_var_secret}} +package_var_non_secret: {{package_var_non_secret}} +input_var_secret: {{input_var_secret}} +input_var_non_secret: {{input_var_non_secret}} diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/data_stream/log/agent/stream/stream.yml.hbs b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/data_stream/log/agent/stream/stream.yml.hbs new file mode 100644 index 0000000000000..c8a3b08abd942 --- /dev/null +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/data_stream/log/agent/stream/stream.yml.hbs @@ -0,0 +1,7 @@ +config.version: "2" +package_var_secret: {{package_var_secret}} +package_var_non_secret: {{package_var_non_secret}} +input_var_secret: {{input_var_secret}} +input_var_non_secret: {{input_var_non_secret}} +stream_var_secret: {{stream_var_secret}} +stream_var_non_secret: {{stream_var_non_secret}} diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/data_stream/log/fields/fields.yml b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/data_stream/log/fields/fields.yml new file mode 100644 index 0000000000000..6e003ed0ad147 --- /dev/null +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/data_stream/log/fields/fields.yml @@ -0,0 +1,16 @@ +- name: data_stream.type + type: constant_keyword + description: > + Data stream type. +- name: data_stream.dataset + type: constant_keyword + description: > + Data stream dataset. +- name: data_stream.namespace + type: constant_keyword + description: > + Data stream namespace. +- name: '@timestamp' + type: date + description: > + Event timestamp. diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/data_stream/log/manifest.yml b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/data_stream/log/manifest.yml new file mode 100644 index 0000000000000..ffe3c3ad44fe2 --- /dev/null +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/data_stream/log/manifest.yml @@ -0,0 +1,18 @@ +title: Test stream +type: logs +streams: + - input: test_input + title: test input + vars: + - name: stream_var_secret + type: text + title: Stream Var Secret + multi: false + show_user: true + secret: true + - name: stream_var_non_secret + type: text + title: Stream Var Non Secret + multi: false + show_user: true + secret: true diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/docs/README.md b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/docs/README.md new file mode 100644 index 0000000000000..d4265d37b5b63 --- /dev/null +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/docs/README.md @@ -0,0 +1,3 @@ +# secrets + +This package has secrets \ No newline at end of file diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/img/logo.svg b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/img/logo.svg new file mode 100644 index 0000000000000..15b49bcf28aec --- /dev/null +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/img/logo.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"> + <g fill="none" fill-rule="evenodd"> + <path fill="#F04E98" d="M29,32.0001 L15.935,9.4321 C13.48,5.1941 7,6.9351 7,11.8321 L7,52.1681 C7,57.0651 13.48,58.8061 15.935,54.5671 L29,32.0001 Z"/> + <path fill="#FA744E" d="M34.7773,32.0001 L33.3273,34.5051 L20.2613,57.0731 C19.8473,57.7871 19.3533,58.4271 18.8023,59.0001 L34.9273,59.0001 C38.7073,59.0001 42.2213,57.0601 44.2363,53.8611 L58.0003,32.0001 L34.7773,32.0001 Z"/> + <path fill="#343741" d="M44.2363,10.1392 C42.2213,6.9402 38.7073,5.0002 34.9273,5.0002 L18.8023,5.0002 C19.3533,5.5732 19.8473,6.2122 20.2613,6.9272 L33.3273,29.4942 L34.7773,32.0002 L58.0003,32.0002 L44.2363,10.1392 Z"/> + </g> +</svg> \ No newline at end of file diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/manifest.yml b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/manifest.yml new file mode 100644 index 0000000000000..1f616128e2d0b --- /dev/null +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/secrets/1.1.0/manifest.yml @@ -0,0 +1,64 @@ +format_version: 1.0.0 +name: secrets +title: Package with secrets +description: This integration package has 3 secret and 3 non secret vars. +version: 1.1.0 +categories: [] +# Options are experimental, beta, ga +release: beta +# The package type. The options for now are [integration, solution], more type might be added in the future. +# The default type is integration and will be set if empty. +type: integration +license: basic +owner: + github: elastic/fleet + +requirement: + elasticsearch: + versions: ">7.7.0" + kibana: + versions: ">7.7.0" + +icons: + - src: "/img/logo.svg" + size: "16x16" + type: "image/svg+xml" + +vars: + - name: package_var_secret + type: password + title: Package Var Secret + multi: false + required: true + show_user: true + secret: true + - name: package_var_non_secret + type: text + title: Package Var Non Secret + multi: false + required: true + show_user: true + secret: true +policy_templates: + - name: secrets + title: This + description: Test Package for Upgrading Package Policies + inputs: + - type: test_input + title: Test Input + description: Test Input + enabled: true + template_path: input.yml.hbs + vars: + - name: input_var_secret + type: text + title: Input Var Secret + multi: false + show_user: true + secret: true + - name: input_var_non_secret + type: text + title: Input Var Non Secret + multi: false + show_user: true + secret: true diff --git a/x-pack/test/fleet_api_integration/apis/policy_secrets.ts b/x-pack/test/fleet_api_integration/apis/policy_secrets.ts index 63878420084a2..d7d139c2ca884 100644 --- a/x-pack/test/fleet_api_integration/apis/policy_secrets.ts +++ b/x-pack/test/fleet_api_integration/apis/policy_secrets.ts @@ -106,12 +106,14 @@ export default function (providerContext: FtrProviderContext) { enabled: true, vars: { input_var_secret: 'input_secret_val', + input_var_non_secret: 'input_non_secret_val', }, streams: { 'secrets.log': { enabled: true, vars: { stream_var_secret: 'stream_secret_val', + stream_var_non_secret: 'stream_non_secret_val', }, }, }, @@ -119,6 +121,7 @@ export default function (providerContext: FtrProviderContext) { }, vars: { package_var_secret: 'package_secret_val', + package_var_non_secret: 'package_non_secret_val', }, package: { name: 'secrets', @@ -128,6 +131,12 @@ export default function (providerContext: FtrProviderContext) { .expect(200); }; + async function createPolicyWSecretVar() { + const { body: createResBody } = await createPolicyWithSecrets(); + const createdPolicy = createResBody.item; + return createdPolicy; + } + const createFleetServerAgent = async ( agentPolicyId: string, hostname: string, @@ -338,12 +347,14 @@ export default function (providerContext: FtrProviderContext) { enabled: true, vars: { input_var_secret: 'input_secret_val', + input_var_non_secret: 'input_non_secret_val', }, streams: { 'secrets.log': { enabled: true, vars: { stream_var_secret: 'stream_secret_val', + stream_var_non_secret: 'stream_non_secret_val', }, }, }, @@ -351,6 +362,7 @@ export default function (providerContext: FtrProviderContext) { }, vars: { package_var_secret: 'package_secret_val', + package_var_non_secret: 'package_non_secret_val', }, package: { name: 'secrets', @@ -376,10 +388,13 @@ export default function (providerContext: FtrProviderContext) { ]) ).to.eql(true); expectedCompiledStream = { - 'config.version': 2, + 'config.version': '2', package_var_secret: secretVar(packageVarId), + package_var_non_secret: 'package_non_secret_val', input_var_secret: secretVar(inputVarId), + input_var_non_secret: 'input_non_secret_val', stream_var_secret: secretVar(streamVarId), + stream_var_non_secret: 'stream_non_secret_val', }; expect(createdPackagePolicy.inputs[0].streams[0].compiled_stream).to.eql( expectedCompiledStream @@ -387,7 +402,9 @@ export default function (providerContext: FtrProviderContext) { expectedCompiledInput = { package_var_secret: secretVar(packageVarId), + package_var_non_secret: 'package_non_secret_val', input_var_secret: secretVar(inputVarId), + input_var_non_secret: 'input_non_secret_val', }; expect(createdPackagePolicy.inputs[0].compiled_input).to.eql(expectedCompiledInput); @@ -468,12 +485,17 @@ export default function (providerContext: FtrProviderContext) { expect(updatedPackagePolicy.inputs[0].streams[0].compiled_stream).to.eql({ 'config.version': 2, package_var_secret: secretVar(updatedPackageVarId), + package_var_non_secret: 'package_non_secret_val', input_var_secret: secretVar(inputVarId), + input_var_non_secret: 'input_non_secret_val', stream_var_secret: secretVar(streamVarId), + stream_var_non_secret: 'stream_non_secret_val', }); expect(updatedPackagePolicy.inputs[0].compiled_input).to.eql({ package_var_secret: secretVar(updatedPackageVarId), + package_var_non_secret: 'package_non_secret_val', input_var_secret: secretVar(inputVarId), + input_var_non_secret: 'input_non_secret_val', }); expect(updatedPackagePolicy.vars.package_var_secret.value.isSecretRef).to.eql(true); expect(updatedPackagePolicy.vars.package_var_secret.value.id).eql(updatedPackageVarId); @@ -576,12 +598,16 @@ export default function (providerContext: FtrProviderContext) { .set('kbn-xsrf', 'xxxx') .expect(200); - // sleep to allow for secrets to be deleted - await new Promise((resolve) => setTimeout(resolve, 1000)); + for (let i = 0; i < 3; i++) { + await new Promise((resolve) => setTimeout(resolve, 1000)); - const searchRes = await getSecrets(); + const searchRes = await getSecrets(); + if (searchRes.hits.hits.length === 0) { + return; + } + } - expect(searchRes.hits.hits.length).to.eql(0); + throw new Error('Secrets not deleted'); }); it('should not store secrets if fleet server does not meet minimum version', async () => { @@ -594,18 +620,10 @@ export default function (providerContext: FtrProviderContext) { expect(createdPolicy.vars.package_var_secret.value).eql('package_secret_val'); }); - async function createPolicyWSecretVar() { - const { body: createResBody } = await createPolicyWithSecrets(); - const createdPolicy = createResBody.item; - return createdPolicy; - } - it('should not store secrets if there are no fleet servers', async () => { await clearAgents(); - const { body: createResBody } = await createPolicyWithSecrets(); - - const createdPolicy = createResBody.item; + const createdPolicy = await createPolicyWSecretVar(); // secret should be in plain text i.e not a secret refrerence expect(createdPolicy.vars.package_var_secret.value).eql('package_secret_val'); @@ -645,5 +663,76 @@ export default function (providerContext: FtrProviderContext) { expect(createdPolicy.vars.package_var_secret.value.isSecretRef).eql(true); }); + + it('should store new secrets after package upgrade', async () => { + const createdPolicy = await createPolicyWSecretVar(); + + // Install newer version of secrets package + await supertest + .post('/api/fleet/epm/packages/secrets/1.1.0') + .set('kbn-xsrf', 'xxxx') + .send({ force: true }) + .expect(200); + + // Upgrade package policy + await supertest + .post(`/api/fleet/package_policies/upgrade`) + .set('kbn-xsrf', 'xxxx') + .send({ + packagePolicyIds: [createdPolicy.id], + }) + .expect(200); + + // Fetch policy again + const res = await supertest.get(`/api/fleet/package_policies/${createdPolicy.id}`); + const upgradedPolicy = res.body.item; + + const packageSecretVarId = upgradedPolicy.vars.package_var_secret.value.id; + const packageNonSecretVarId = upgradedPolicy.vars.package_var_non_secret.value.id; + const inputSecretVarId = upgradedPolicy.inputs[0].vars.input_var_secret.value.id; + const inputNonSecretVarId = upgradedPolicy.inputs[0].vars.input_var_non_secret.value.id; + const streamSecretVarId = upgradedPolicy.inputs[0].streams[0].vars.stream_var_secret.value.id; + const streamNonSecretVarId = + upgradedPolicy.inputs[0].streams[0].vars.stream_var_non_secret.value.id; + + expect( + arrayIdsEqual(upgradedPolicy.secret_references, [ + { id: packageSecretVarId }, + { id: packageNonSecretVarId }, + { id: inputSecretVarId }, + { id: inputNonSecretVarId }, + { id: streamSecretVarId }, + { id: streamNonSecretVarId }, + ]) + ).to.eql(true); + + expect(upgradedPolicy.inputs[0].compiled_input).to.eql({ + package_var_secret: secretVar(packageSecretVarId), + package_var_non_secret: secretVar(packageNonSecretVarId), + input_var_secret: secretVar(inputSecretVarId), + input_var_non_secret: secretVar(inputNonSecretVarId), + }); + + expect(upgradedPolicy.inputs[0].streams[0].compiled_stream).to.eql({ + 'config.version': '2', + package_var_secret: secretVar(packageSecretVarId), + package_var_non_secret: secretVar(packageNonSecretVarId), + input_var_secret: secretVar(inputSecretVarId), + input_var_non_secret: secretVar(inputNonSecretVarId), + stream_var_secret: secretVar(streamSecretVarId), + stream_var_non_secret: secretVar(streamNonSecretVarId), + }); + + expect(upgradedPolicy.vars.package_var_secret.value.isSecretRef).to.eql(true); + expect(upgradedPolicy.vars.package_var_non_secret.value.isSecretRef).to.eql(true); + expect(upgradedPolicy.inputs[0].vars.input_var_secret.value.isSecretRef).to.eql(true); + expect(upgradedPolicy.inputs[0].vars.input_var_non_secret.value.isSecretRef).to.eql(true); + expect(upgradedPolicy.inputs[0].streams[0].vars.stream_var_secret.value.isSecretRef).to.eql( + true + ); + expect( + upgradedPolicy.inputs[0].streams[0].vars.stream_var_non_secret.value.isSecretRef + ).to.eql(true); + }); }); } diff --git a/x-pack/test/functional/apps/aiops/change_point_detection.ts b/x-pack/test/functional/apps/aiops/change_point_detection.ts index f52e00892acb9..9a25a649170c4 100644 --- a/x-pack/test/functional/apps/aiops/change_point_detection.ts +++ b/x-pack/test/functional/apps/aiops/change_point_detection.ts @@ -16,7 +16,8 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) { // aiops lives in the ML UI so we need some related services. const ml = getService('ml'); - describe('change point detection', async function () { + // Failing: See https://github.com/elastic/kibana/issues/160986 + describe.skip('change point detection', async function () { before(async () => { await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/ml/ecommerce'); await ml.testResources.createIndexPatternIfNeeded('ft_ecommerce', 'order_date'); diff --git a/x-pack/test/functional/apps/discover/index.ts b/x-pack/test/functional/apps/discover/index.ts index bb5ac2f8ea9d4..9f277a85551cd 100644 --- a/x-pack/test/functional/apps/discover/index.ts +++ b/x-pack/test/functional/apps/discover/index.ts @@ -14,6 +14,7 @@ export default function ({ loadTestFile }: FtrProviderContext) { loadTestFile(require.resolve('./async_scripted_fields')); loadTestFile(require.resolve('./reporting')); loadTestFile(require.resolve('./error_handling')); + loadTestFile(require.resolve('./saved_queries')); loadTestFile(require.resolve('./saved_searches')); loadTestFile(require.resolve('./visualize_field')); loadTestFile(require.resolve('./value_suggestions')); diff --git a/x-pack/test/functional/apps/discover/saved_queries.ts b/x-pack/test/functional/apps/discover/saved_queries.ts new file mode 100644 index 0000000000000..66ceb0dd974df --- /dev/null +++ b/x-pack/test/functional/apps/discover/saved_queries.ts @@ -0,0 +1,76 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { FtrProviderContext } from '../../ftr_provider_context'; + +export default function ({ getService, getPageObjects }: FtrProviderContext) { + const browser = getService('browser'); + const esArchiver = getService('esArchiver'); + const kibanaServer = getService('kibanaServer'); + const spaces = getService('spaces'); + const PageObjects = getPageObjects([ + 'common', + 'discover', + 'settings', + 'shareSavedObjectsToSpace', + ]); + const savedQueryManagementComponent = getService('savedQueryManagementComponent'); + const queryBar = getService('queryBar'); + + const savedQueryName = 'shared-saved-query'; + const destinationSpaceId = 'nondefaultspace'; + + describe('Discover Saved Queries', () => { + before('initialize tests', async () => { + await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/logstash_functional'); + await kibanaServer.importExport.load( + 'x-pack/test/functional/fixtures/kbn_archiver/lens/lens_basic.json' + ); + await spaces.create({ + id: destinationSpaceId, + name: 'Non-default Space', + disabledFeatures: [], + }); + }); + + after('clean up archives', async () => { + await esArchiver.unload('x-pack/test/functional/es_archives/logstash_functional'); + await kibanaServer.importExport.unload( + 'x-pack/test/functional/fixtures/kbn_archiver/lens/lens_basic.json' + ); + await spaces.delete(destinationSpaceId); + }); + + describe('Manage saved queries', () => { + it('delete saved query shared in multiple spaces', async () => { + // Navigate to Discover & create a saved query + await PageObjects.common.navigateToApp('discover'); + await queryBar.setQuery('response:200'); + await savedQueryManagementComponent.saveNewQuery(savedQueryName, '', true, false); + await savedQueryManagementComponent.savedQueryExistOrFail(savedQueryName); + await savedQueryManagementComponent.closeSavedQueryManagementComponent(); + + // Navigate to settings & share the saved query between multiple spaces + await PageObjects.common.navigateToApp('settings'); + await PageObjects.settings.clickKibanaSavedObjects(); + await PageObjects.shareSavedObjectsToSpace.openShareToSpaceFlyoutForObject(savedQueryName); + await PageObjects.shareSavedObjectsToSpace.setupForm({ + destinationSpaceId, + }); + await PageObjects.shareSavedObjectsToSpace.saveShare(); + + // Navigate back to Discover and delete the query + await PageObjects.common.navigateToApp('discover'); + await savedQueryManagementComponent.deleteSavedQuery(savedQueryName); + + // Refresh to ensure the object is actually deleted + await browser.refresh(); + await savedQueryManagementComponent.savedQueryMissingOrFail(savedQueryName); + }); + }); + }); +} diff --git a/x-pack/test/functional/apps/infra/constants.ts b/x-pack/test/functional/apps/infra/constants.ts index 8297df165a9b7..156354656fdcb 100644 --- a/x-pack/test/functional/apps/infra/constants.ts +++ b/x-pack/test/functional/apps/infra/constants.ts @@ -47,3 +47,5 @@ export const HOSTS_LINK_LOCAL_STORAGE_KEY = 'inventoryUI:hostsLinkClicked'; export const NODE_DETAILS_PATH = 'detail/host'; export const HOSTS_VIEW_PATH = 'metrics/hosts'; + +export const DATE_PICKER_FORMAT = 'MMM D, YYYY @ HH:mm:ss.SSS'; diff --git a/x-pack/test/functional/apps/infra/hosts_view.ts b/x-pack/test/functional/apps/infra/hosts_view.ts index c0c425b219637..91270e7ebde58 100644 --- a/x-pack/test/functional/apps/infra/hosts_view.ts +++ b/x-pack/test/functional/apps/infra/hosts_view.ts @@ -12,13 +12,17 @@ import { enableInfrastructureHostsView } from '@kbn/observability-plugin/common' import { ALERT_STATUS_ACTIVE, ALERT_STATUS_RECOVERED } from '@kbn/rule-data-utils'; import { WebElementWrapper } from '../../../../../test/functional/services/lib/web_element_wrapper'; import { FtrProviderContext } from '../../ftr_provider_context'; -import { DATES, HOSTS_LINK_LOCAL_STORAGE_KEY, HOSTS_VIEW_PATH } from './constants'; +import { + DATES, + HOSTS_LINK_LOCAL_STORAGE_KEY, + HOSTS_VIEW_PATH, + DATE_PICKER_FORMAT, +} from './constants'; const START_DATE = moment.utc(DATES.metricsAndLogs.hosts.min); const END_DATE = moment.utc(DATES.metricsAndLogs.hosts.max); const START_HOST_PROCESSES_DATE = moment.utc(DATES.metricsAndLogs.hosts.processesDataStartDate); const END_HOST_PROCESSES_DATE = moment.utc(DATES.metricsAndLogs.hosts.processesDataEndDate); -const timepickerFormat = 'MMM D, YYYY @ HH:mm:ss.SSS'; const tableEntries = [ { @@ -265,8 +269,8 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { describe('Tabs', () => { before(async () => { await pageObjects.timePicker.setAbsoluteRange( - START_HOST_PROCESSES_DATE.format(timepickerFormat), - END_HOST_PROCESSES_DATE.format(timepickerFormat) + START_HOST_PROCESSES_DATE.format(DATE_PICKER_FORMAT), + END_HOST_PROCESSES_DATE.format(DATE_PICKER_FORMAT) ); await waitForPageToLoad(); @@ -282,7 +286,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { describe('Overview Tab', () => { before(async () => { - await pageObjects.assetDetails.clickOverviewFlyoutTab(); + await pageObjects.assetDetails.clickOverviewTab(); }); [ @@ -314,7 +318,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { describe('Metadata Tab', () => { before(async () => { - await pageObjects.assetDetails.clickMetadataFlyoutTab(); + await pageObjects.assetDetails.clickMetadataTab(); }); it('should show metadata table', async () => { @@ -342,7 +346,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { describe('Processes Tab', () => { before(async () => { - await pageObjects.assetDetails.clickProcessesFlyoutTab(); + await pageObjects.assetDetails.clickProcessesTab(); }); it('should show processes table', async () => { @@ -352,7 +356,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { describe('Logs Tab', () => { before(async () => { - await pageObjects.assetDetails.clickLogsFlyoutTab(); + await pageObjects.assetDetails.clickLogsTab(); }); it('should render logs tab', async () => { @@ -372,6 +376,15 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { await returnTo(HOSTS_VIEW_PATH); }); + + it('should navigate to Host Details page after click', async () => { + await pageObjects.assetDetails.clickOpenAsPageLink(); + const dateRange = await pageObjects.timePicker.getTimeConfigAsAbsoluteTimes(); + expect(dateRange.start).to.equal(START_HOST_PROCESSES_DATE.format(DATE_PICKER_FORMAT)); + expect(dateRange.end).to.equal(END_HOST_PROCESSES_DATE.format(DATE_PICKER_FORMAT)); + + await returnTo(HOSTS_VIEW_PATH); + }); }); }); }); @@ -382,8 +395,8 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { await pageObjects.common.navigateToApp(HOSTS_VIEW_PATH); await pageObjects.header.waitUntilLoadingHasFinished(); await pageObjects.timePicker.setAbsoluteRange( - START_DATE.format(timepickerFormat), - END_DATE.format(timepickerFormat) + START_DATE.format(DATE_PICKER_FORMAT), + END_DATE.format(DATE_PICKER_FORMAT) ); await waitForPageToLoad(); diff --git a/x-pack/test/functional/apps/infra/node_details.ts b/x-pack/test/functional/apps/infra/node_details.ts index 60b6590eef788..7e2bdba6ecf39 100644 --- a/x-pack/test/functional/apps/infra/node_details.ts +++ b/x-pack/test/functional/apps/infra/node_details.ts @@ -7,9 +7,8 @@ import moment from 'moment'; import expect from '@kbn/expect'; -import rison from '@kbn/rison'; import { FtrProviderContext } from '../../ftr_provider_context'; -import { DATES, NODE_DETAILS_PATH } from './constants'; +import { DATES, NODE_DETAILS_PATH, DATE_PICKER_FORMAT } from './constants'; const START_HOST_ALERTS_DATE = moment.utc(DATES.metricsAndLogs.hosts.min); const END_HOST_ALERTS_DATE = moment.utc(DATES.metricsAndLogs.hosts.max); @@ -23,34 +22,27 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { const esArchiver = getService('esArchiver'); const retry = getService('retry'); const testSubjects = getService('testSubjects'); - const pageObjects = getPageObjects(['assetDetails', 'common', 'infraHome', 'header']); + const pageObjects = getPageObjects([ + 'assetDetails', + 'common', + 'infraHome', + 'header', + 'timePicker', + ]); - const getNodeDetailsUrl = (assetName: string, dateRange: { from: string; to: string }) => { + const getNodeDetailsUrl = (assetName: string) => { const queryParams = new URLSearchParams(); - queryParams.set( - '_a', - rison.encode({ - autoReload: false, - refreshInterval: 5000, - time: { ...dateRange, interval: '>1m' }, - }) - ); - queryParams.set('assetName', assetName); return queryParams.toString(); }; - const navigateToNodeDetails = async ( - assetId: string, - assetName: string, - dateRange: { from: string; to: string } - ) => { + const navigateToNodeDetails = async (assetId: string, assetName: string) => { await pageObjects.common.navigateToUrlWithBrowserHistory( 'infraOps', `/${NODE_DETAILS_PATH}/${assetId}`, - getNodeDetailsUrl(assetName, dateRange), + getNodeDetailsUrl(assetName), { insertTimestamp: false, ensureCurrentUrl: false, @@ -61,35 +53,77 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { describe('Node Details', () => { describe('#With Asset Details', () => { - describe('#Asset Type: host', () => { - before(async () => { - await Promise.all([ - esArchiver.load('x-pack/test/functional/es_archives/infra/alerts'), - esArchiver.load('x-pack/test/functional/es_archives/infra/metrics_and_logs'), - esArchiver.load('x-pack/test/functional/es_archives/infra/metrics_hosts_processes'), - kibanaServer.savedObjects.cleanStandardList(), - ]); - await browser.setWindowSize(1600, 1200); + before(async () => { + await Promise.all([ + esArchiver.load('x-pack/test/functional/es_archives/infra/alerts'), + esArchiver.load('x-pack/test/functional/es_archives/infra/metrics_and_logs'), + esArchiver.load('x-pack/test/functional/es_archives/infra/metrics_hosts_processes'), + kibanaServer.savedObjects.cleanStandardList(), + ]); + await browser.setWindowSize(1600, 1200); - await navigateToNodeDetails('Jennys-MBP.fritz.box', 'Jennys-MBP.fritz.box', { - from: START_HOST_PROCESSES_DATE.toISOString(), - to: END_HOST_PROCESSES_DATE.toISOString(), - }); + await navigateToNodeDetails('Jennys-MBP.fritz.box', 'Jennys-MBP.fritz.box'); + await pageObjects.header.waitUntilLoadingHasFinished(); + }); + + after(async () => { + await Promise.all([ + esArchiver.unload('x-pack/test/functional/es_archives/infra/alerts'), + esArchiver.unload('x-pack/test/functional/es_archives/infra/metrics_and_logs'), + esArchiver.unload('x-pack/test/functional/es_archives/infra/metrics_hosts_processes'), + ]); + }); + + describe('#Date picker', () => { + before(async () => { + await pageObjects.assetDetails.clickOverviewTab(); - await pageObjects.header.waitUntilLoadingHasFinished(); + await pageObjects.timePicker.setAbsoluteRange( + START_HOST_PROCESSES_DATE.format(DATE_PICKER_FORMAT), + END_HOST_PROCESSES_DATE.format(DATE_PICKER_FORMAT) + ); }); after(async () => { - await Promise.all([ - esArchiver.unload('x-pack/test/functional/es_archives/infra/alerts'), - esArchiver.unload('x-pack/test/functional/es_archives/infra/metrics_and_logs'), - esArchiver.unload('x-pack/test/functional/es_archives/infra/metrics_hosts_processes'), - ]); + await pageObjects.assetDetails.clickOverviewTab(); + }); + + [{ tab: 'metadata' }, { tab: 'processes' }, { tab: 'logs' }, { tab: 'anomalies' }].forEach( + ({ tab }) => { + it(`should keep the same date range across tabs: ${tab}`, async () => { + const clickFuncs: Record<string, () => void> = { + metadata: pageObjects.assetDetails.clickMetadataTab, + processes: pageObjects.assetDetails.clickProcessesTab, + logs: pageObjects.assetDetails.clickLogsTab, + anomalies: pageObjects.assetDetails.clickAnomaliesTab, + }; + + await clickFuncs[tab](); + + const datePickerValue = await pageObjects.timePicker.getTimeConfig(); + expect(await pageObjects.timePicker.timePickerExists()).to.be(true); + expect(datePickerValue.start).to.equal( + START_HOST_PROCESSES_DATE.format(DATE_PICKER_FORMAT) + ); + expect(datePickerValue.end).to.equal( + END_HOST_PROCESSES_DATE.format(DATE_PICKER_FORMAT) + ); + }); + } + ); + }); + + describe('#Asset Type: host', () => { + before(async () => { + await pageObjects.timePicker.setAbsoluteRange( + START_HOST_PROCESSES_DATE.format(DATE_PICKER_FORMAT), + END_HOST_PROCESSES_DATE.format(DATE_PICKER_FORMAT) + ); }); describe('Overview Tab', () => { before(async () => { - await pageObjects.assetDetails.clickOverviewFlyoutTab(); + await pageObjects.assetDetails.clickOverviewTab(); }); [ @@ -121,7 +155,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { describe('Metadata Tab', () => { before(async () => { - await pageObjects.assetDetails.clickMetadataFlyoutTab(); + await pageObjects.assetDetails.clickMetadataTab(); }); it('should show metadata table', async () => { @@ -137,7 +171,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { await browser.refresh(); await retry.try(async () => { // Temporary until URL state isn't implemented - await pageObjects.assetDetails.clickMetadataFlyoutTab(); + await pageObjects.assetDetails.clickMetadataTab(); await pageObjects.infraHome.waitForLoading(); const removePinExist = await pageObjects.assetDetails.metadataRemovePinExists(); expect(removePinExist).to.be(true); @@ -151,7 +185,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { describe('Processes Tab', () => { before(async () => { - await pageObjects.assetDetails.clickProcessesFlyoutTab(); + await pageObjects.assetDetails.clickProcessesTab(); }); it('should render processes tab and with Total Value summary', async () => { @@ -170,23 +204,35 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { describe('Logs Tab', () => { before(async () => { - await pageObjects.assetDetails.clickLogsFlyoutTab(); + await pageObjects.assetDetails.clickLogsTab(); }); + it('should render logs tab', async () => { await testSubjects.existOrFail('infraAssetDetailsLogsTabContent'); }); }); + describe('Osquery Tab', () => { + before(async () => { + await pageObjects.assetDetails.clickOsqueryTab(); + }); + + it('should show a date picker', async () => { + expect(await pageObjects.timePicker.timePickerExists()).to.be(false); + }); + }); + describe('Host with alerts and no processes', () => { before(async () => { - await navigateToNodeDetails('demo-stack-mysql-01', 'demo-stack-mysql-01', { - from: START_HOST_ALERTS_DATE.toISOString(), - to: END_HOST_ALERTS_DATE.toISOString(), - }); + await navigateToNodeDetails('demo-stack-mysql-01', 'demo-stack-mysql-01'); + await pageObjects.timePicker.setAbsoluteRange( + START_HOST_ALERTS_DATE.format(DATE_PICKER_FORMAT), + END_HOST_ALERTS_DATE.format(DATE_PICKER_FORMAT) + ); }); it('should render alerts count for a host inside a flyout', async () => { - await pageObjects.assetDetails.clickOverviewFlyoutTab(); + await pageObjects.assetDetails.clickOverviewTab(); retry.tryForTime(30 * 1000, async () => { await observability.components.alertSummaryWidget.getFullSizeComponentSelectorOrFail(); @@ -202,7 +248,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { }); it('should render "N/A" when processes summary is not available in flyout', async () => { - await pageObjects.assetDetails.clickProcessesFlyoutTab(); + await pageObjects.assetDetails.clickProcessesTab(); const processesTotalValue = await pageObjects.assetDetails.getProcessesTabContentTotalValue(); const processValue = await processesTotalValue.getVisibleText(); diff --git a/x-pack/test/functional/apps/ml/short_tests/model_management/model_list.ts b/x-pack/test/functional/apps/ml/short_tests/model_management/model_list.ts index de917a0b888d2..67f3728eab9f9 100644 --- a/x-pack/test/functional/apps/ml/short_tests/model_management/model_list.ts +++ b/x-pack/test/functional/apps/ml/short_tests/model_management/model_list.ts @@ -5,6 +5,7 @@ * 2.0. */ +import { getDefaultOnFailureConfiguration } from '@kbn/ml-plugin/public/application/components/ml_inference/state'; import { FtrProviderContext } from '../../../../ftr_provider_context'; import { SUPPORTED_TRAINED_MODELS } from '../../../../services/ml/api'; @@ -37,6 +38,35 @@ export default function ({ getService }: FtrProviderContext) { modelTypes: ['regression', 'tree_ensemble'], }; + const modelWithoutPipelineDataExpectedValues = { + name: `ml-inference-${modelWithoutPipelineData.modelId}`, + duplicateName: `ml-inference-${modelWithoutPipelineData.modelId}-duplicate`, + description: `Uses the pre-trained data frame analytics model ${modelWithoutPipelineData.modelId} to infer against the data that is being ingested in the pipeline`, + duplicateDescription: 'Edited description', + inferenceConfig: { + regression: { + results_field: 'predicted_value', + num_top_feature_importance_values: 0, + }, + }, + inferenceConfigDuplicate: { + regression: { + results_field: 'predicted_value_for_duplicate', + num_top_feature_importance_values: 0, + }, + }, + editedInferenceConfig: { + regression: { + results_field: 'predicted_value_for_duplicate', + num_top_feature_importance_values: 0, + }, + }, + fieldMap: {}, + editedFieldMap: { + incoming_field: 'old_field', + }, + }; + before(async () => { for (const model of trainedModels) { await ml.api.importTrainedModel(model.id, model.name); @@ -52,6 +82,11 @@ export default function ({ getService }: FtrProviderContext) { after(async () => { await ml.api.stopAllTrainedModelDeploymentsES(); await ml.api.deleteAllTrainedModelsES(); + await ml.api.deleteIngestPipeline(modelWithoutPipelineDataExpectedValues.name, false); + await ml.api.deleteIngestPipeline( + modelWithoutPipelineDataExpectedValues.duplicateName, + false + ); await ml.api.cleanMlIndices(); }); @@ -118,6 +153,129 @@ export default function ({ getService }: FtrProviderContext) { await ml.trainedModelsTable.assertPipelinesTabContent(false); }); + it('deploys the trained model with default values', async () => { + await ml.testExecution.logTestStep('should display the trained model in the table'); + await ml.trainedModelsTable.filterWithSearchString(modelWithoutPipelineData.modelId, 1); + await ml.testExecution.logTestStep( + 'should not show collapsed actions menu for the model in the table' + ); + await ml.trainedModelsTable.assertModelCollapsedActionsButtonExists( + modelWithoutPipelineData.modelId, + false + ); + await ml.testExecution.logTestStep('should show deploy action for the model in the table'); + await ml.trainedModelsTable.assertModelDeployActionButtonExists( + modelWithoutPipelineData.modelId, + true + ); + await ml.testExecution.logTestStep('should open the deploy model flyout'); + await ml.trainedModelsTable.openTrainedModelsInferenceFlyout( + modelWithoutPipelineData.modelId + ); + await ml.testExecution.logTestStep('should complete the deploy model Details step'); + await ml.deployDFAModelFlyout.completeTrainedModelsInferenceFlyoutDetails({ + name: modelWithoutPipelineDataExpectedValues.name, + description: modelWithoutPipelineDataExpectedValues.description, + // If no metadata is provided, the target field will default to empty string + targetField: '', + }); + await ml.testExecution.logTestStep('should complete the deploy model Pipeline Config step'); + await ml.deployDFAModelFlyout.completeTrainedModelsInferenceFlyoutPipelineConfig({ + inferenceConfig: modelWithoutPipelineDataExpectedValues.inferenceConfig, + fieldMap: modelWithoutPipelineDataExpectedValues.fieldMap, + }); + await ml.testExecution.logTestStep( + 'should complete the deploy model pipeline On Failure step' + ); + await ml.deployDFAModelFlyout.completeTrainedModelsInferenceFlyoutOnFailure( + getDefaultOnFailureConfiguration() + ); + await ml.testExecution.logTestStep( + 'should complete the deploy model pipeline Create pipeline step' + ); + await ml.deployDFAModelFlyout.completeTrainedModelsInferenceFlyoutCreateStep({ + description: modelWithoutPipelineDataExpectedValues.description, + processors: [ + { + inference: { + model_id: modelWithoutPipelineData.modelId, + ignore_failure: false, + inference_config: modelWithoutPipelineDataExpectedValues.inferenceConfig, + on_failure: getDefaultOnFailureConfiguration(), + }, + }, + ], + }); + }); + + it('deploys the trained model with custom values', async () => { + await ml.testExecution.logTestStep('should display the trained model in the table'); + await ml.trainedModelsTable.filterWithSearchString(modelWithoutPipelineData.modelId, 1); + await ml.testExecution.logTestStep( + 'should not show collapsed actions menu for the model in the table' + ); + await ml.trainedModelsTable.assertModelCollapsedActionsButtonExists( + modelWithoutPipelineData.modelId, + false + ); + await ml.testExecution.logTestStep('should show deploy action for the model in the table'); + await ml.trainedModelsTable.assertModelDeployActionButtonExists( + modelWithoutPipelineData.modelId, + true + ); + await ml.testExecution.logTestStep('should open the deploy model flyout'); + await ml.trainedModelsTable.openTrainedModelsInferenceFlyout( + modelWithoutPipelineData.modelId + ); + await ml.testExecution.logTestStep('should complete the deploy model Details step'); + await ml.deployDFAModelFlyout.completeTrainedModelsInferenceFlyoutDetails( + { + name: modelWithoutPipelineDataExpectedValues.duplicateName, + description: modelWithoutPipelineDataExpectedValues.duplicateDescription, + targetField: 'myTargetField', + }, + true + ); + await ml.testExecution.logTestStep('should complete the deploy model Pipeline Config step'); + await ml.deployDFAModelFlyout.completeTrainedModelsInferenceFlyoutPipelineConfig( + { + inferenceConfig: modelWithoutPipelineDataExpectedValues.inferenceConfig, + editedInferenceConfig: modelWithoutPipelineDataExpectedValues.editedInferenceConfig, + fieldMap: modelWithoutPipelineDataExpectedValues.fieldMap, + editedFieldMap: modelWithoutPipelineDataExpectedValues.editedFieldMap, + }, + true + ); + await ml.testExecution.logTestStep( + 'should complete the deploy model pipeline On Failure step' + ); + await ml.deployDFAModelFlyout.completeTrainedModelsInferenceFlyoutOnFailure( + getDefaultOnFailureConfiguration(), + true + ); + await ml.testExecution.logTestStep( + 'should complete the deploy model pipeline Create pipeline step' + ); + await ml.deployDFAModelFlyout.completeTrainedModelsInferenceFlyoutCreateStep({ + description: modelWithoutPipelineDataExpectedValues.duplicateDescription, + processors: [ + { + inference: { + field_map: { + incoming_field: 'old_field', + }, + ignore_failure: true, + if: "ctx?.network?.name == 'Guest'", + model_id: modelWithoutPipelineData.modelId, + inference_config: modelWithoutPipelineDataExpectedValues.inferenceConfigDuplicate, + tag: 'tag', + target_field: 'myTargetField', + }, + }, + ], + }); + }); + it('displays the built-in model with only Test action enabled', async () => { await ml.testExecution.logTestStep('should display the model in the table'); await ml.trainedModelsTable.filterWithSearchString(builtInModelData.modelId, 1); diff --git a/x-pack/test/functional/page_objects/asset_details.ts b/x-pack/test/functional/page_objects/asset_details.ts index ee1084a86987e..bcb8738b997bf 100644 --- a/x-pack/test/functional/page_objects/asset_details.ts +++ b/x-pack/test/functional/page_objects/asset_details.ts @@ -11,8 +11,16 @@ export function AssetDetailsProvider({ getService }: FtrProviderContext) { const testSubjects = getService('testSubjects'); return { + async clickApmServicesLink() { + return testSubjects.click('infraAssetDetailsViewAPMServicesButton'); + }, + + async clickOpenAsPageLink() { + return testSubjects.click('infraAssetDetailsOpenAsPageButton'); + }, + // Overview - async clickOverviewFlyoutTab() { + async clickOverviewTab() { return testSubjects.click('infraAssetDetailsOverviewTab'); }, @@ -44,12 +52,8 @@ export function AssetDetailsProvider({ getService }: FtrProviderContext) { return testSubjects.click('infraAssetDetailsMetadataShowAllButton'); }, - async clickApmServicesLink() { - return testSubjects.click('infraAssetDetailsViewAPMServicesButton'); - }, - // Metadata - async clickMetadataFlyoutTab() { + async clickMetadataTab() { return testSubjects.click('infraAssetDetailsMetadataTab'); }, @@ -89,7 +93,7 @@ export function AssetDetailsProvider({ getService }: FtrProviderContext) { }, // Processes - async clickProcessesFlyoutTab() { + async clickProcessesTab() { return testSubjects.click('infraAssetDetailsProcessesTab'); }, @@ -121,12 +125,22 @@ export function AssetDetailsProvider({ getService }: FtrProviderContext) { }, // Logs - async clickLogsFlyoutTab() { + async clickLogsTab() { return testSubjects.click('infraAssetDetailsLogsTab'); }, async logsExists() { await testSubjects.existOrFail('infraAssetDetailsLogsTabContent'); }, + + // Anomalies + async clickAnomaliesTab() { + return testSubjects.click('infraAssetDetailsAnomaliesTab'); + }, + + // Osquery + async clickOsqueryTab() { + return testSubjects.click('infraAssetDetailsOsqueryTab'); + }, }; } diff --git a/x-pack/test/functional/page_objects/index.ts b/x-pack/test/functional/page_objects/index.ts index 7e0409b3c19d1..dc7d2f9ee9a13 100644 --- a/x-pack/test/functional/page_objects/index.ts +++ b/x-pack/test/functional/page_objects/index.ts @@ -41,6 +41,7 @@ import { RoleMappingsPageProvider } from './role_mappings_page'; import { RollupPageObject } from './rollup_page'; import { SearchSessionsPageProvider } from './search_sessions_management_page'; import { SecurityPageObject } from './security_page'; +import { ShareSavedObjectsToSpacePageProvider } from './share_saved_objects_to_space_page'; import { SnapshotRestorePageProvider } from './snapshot_restore_page'; import { SpaceSelectorPageObject } from './space_selector_page'; import { StatusPageObject } from './status_page'; @@ -87,6 +88,7 @@ export const pageObjects = { rollup: RollupPageObject, searchSessionsManagement: SearchSessionsPageProvider, security: SecurityPageObject, + shareSavedObjectsToSpace: ShareSavedObjectsToSpacePageProvider, snapshotRestore: SnapshotRestorePageProvider, spaceSelector: SpaceSelectorPageObject, statusPage: StatusPageObject, diff --git a/x-pack/test/functional/page_objects/share_saved_objects_to_space_page.ts b/x-pack/test/functional/page_objects/share_saved_objects_to_space_page.ts new file mode 100644 index 0000000000000..cca1dc15bb8e7 --- /dev/null +++ b/x-pack/test/functional/page_objects/share_saved_objects_to_space_page.ts @@ -0,0 +1,35 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { FtrProviderContext } from '../ftr_provider_context'; + +export function ShareSavedObjectsToSpacePageProvider({ + getService, + getPageObjects, +}: FtrProviderContext) { + const testSubjects = getService('testSubjects'); + const { savedObjects, common } = getPageObjects(['savedObjects', 'common']); + + return { + async openShareToSpaceFlyoutForObject(objectName: string) { + // This searchForObject narrows down the objects to those matching ANY of the words in the objectName. + // Hopefully the one we want is on the first page of results. + await savedObjects.searchForObject(objectName); + await common.sleep(1000); + await savedObjects.clickShareToSpaceByTitle(objectName); + await testSubjects.existOrFail('share-to-space-flyout'); + }, + + async setupForm({ destinationSpaceId }: { destinationSpaceId: string }) { + await testSubjects.click(`sts-space-selector-row-${destinationSpaceId}`); + }, + + async saveShare() { + await testSubjects.click('sts-save-button'); + }, + }; +} diff --git a/x-pack/test/functional/page_objects/tag_management_page.ts b/x-pack/test/functional/page_objects/tag_management_page.ts index e343cec1c8c29..2dbff16429c93 100644 --- a/x-pack/test/functional/page_objects/tag_management_page.ts +++ b/x-pack/test/functional/page_objects/tag_management_page.ts @@ -270,10 +270,7 @@ export class TagManagementPageObject extends FtrService { */ async waitUntilTableIsLoaded() { return this.retry.try(async () => { - const isLoaded = await this.find.existsByDisplayedByCssSelector( - '*[data-test-subj="tagsManagementTable"]:not(.euiBasicTable-loading)' - ); - + const isLoaded = await this.testSubjects.exists('tagsManagementTable table-is-ready'); if (isLoaded) { return true; } else { diff --git a/x-pack/test/functional/services/cases/api.ts b/x-pack/test/functional/services/cases/api.ts index 59cfa4056364a..8ba5ccbb47ed5 100644 --- a/x-pack/test/functional/services/cases/api.ts +++ b/x-pack/test/functional/services/cases/api.ts @@ -50,10 +50,10 @@ export function CasesAPIServiceProvider({ getService }: FtrProviderContext) { return createCaseAPI(kbnSupertest, caseData); }, - async createNthRandomCases(amount: number = 3) { + async createNthRandomCases(amount: number = 3, owner?: string) { const cases: CasePostRequest[] = Array.from( { length: amount }, - () => generateRandomCaseWithoutConnector() as CasePostRequest + () => generateRandomCaseWithoutConnector(owner) as CasePostRequest ); await pMap(cases, async (caseData) => createCaseAPI(kbnSupertest, caseData), { diff --git a/x-pack/test/functional/services/cases/helpers.ts b/x-pack/test/functional/services/cases/helpers.ts index bedc781f2a8b6..81a6297543825 100644 --- a/x-pack/test/functional/services/cases/helpers.ts +++ b/x-pack/test/functional/services/cases/helpers.ts @@ -9,7 +9,7 @@ import { CasePostRequest } from '@kbn/cases-plugin/common/types/api'; import { CaseConnector } from '@kbn/cases-plugin/common/types/domain'; import { v4 as uuidv4 } from 'uuid'; -export function generateRandomCaseWithoutConnector(): CasePostRequest { +export function generateRandomCaseWithoutConnector(owner = 'cases'): CasePostRequest { return { title: 'random-' + uuidv4(), tags: ['test', uuidv4()], @@ -23,6 +23,6 @@ export function generateRandomCaseWithoutConnector(): CasePostRequest { settings: { syncAlerts: false, }, - owner: 'cases', + owner, }; } diff --git a/x-pack/test/functional/services/ml/api.ts b/x-pack/test/functional/services/ml/api.ts index 08799392bb37c..2536ec0bc564a 100644 --- a/x-pack/test/functional/services/ml/api.ts +++ b/x-pack/test/functional/services/ml/api.ts @@ -1498,9 +1498,11 @@ export function MachineLearningAPIProvider({ getService }: FtrProviderContext) { return ingestPipeline; }, - async deleteIngestPipeline(modelId: string) { + async deleteIngestPipeline(modelId: string, usePrefix: boolean = true) { log.debug(`Deleting ingest pipeline for trained model with id "${modelId}"`); - const { body, status } = await esSupertest.delete(`/_ingest/pipeline/pipeline_${modelId}`); + const { body, status } = await esSupertest.delete( + `/_ingest/pipeline/${usePrefix ? 'pipeline_' : ''}${modelId}` + ); this.assertResponseStatusCode(200, status, body); log.debug('> Ingest pipeline deleted'); diff --git a/x-pack/test/functional/services/ml/deploy_models_flyout.ts b/x-pack/test/functional/services/ml/deploy_models_flyout.ts new file mode 100644 index 0000000000000..ed52ce97c21f5 --- /dev/null +++ b/x-pack/test/functional/services/ml/deploy_models_flyout.ts @@ -0,0 +1,296 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { IngestInferenceProcessor, IngestPipeline } from '@elastic/elasticsearch/lib/api/types'; +import { ProvidedType } from '@kbn/test'; + +import type { FtrProviderContext } from '../../ftr_provider_context'; +import type { MlCommonUI } from './common_ui'; + +export interface TrainedModelRowData { + id: string; + description: string; + modelTypes: string[]; +} + +export type MlDeployTrainedModelsFlyout = ProvidedType<typeof DeployDFAModelFlyoutProvider>; + +export function DeployDFAModelFlyoutProvider( + { getService }: FtrProviderContext, + mlCommonUI: MlCommonUI +) { + const testSubjects = getService('testSubjects'); + const retry = getService('retry'); + const find = getService('find'); + + return new (class DeployTrainedModelsFlyout { + public async setTrainedModelsInferenceFlyoutCustomValue(target: string, customValue: string) { + await mlCommonUI.setValueWithChecks(target, customValue, { + clearWithKeyboard: true, + }); + } + + public async setTrainedModelsInferenceFlyoutCustomDetails(values: { + name: string; + description: string; + targetField: string; + }) { + await this.setTrainedModelsInferenceFlyoutCustomValue( + 'mlTrainedModelsInferencePipelineNameInput', + values.name + ); + await this.setTrainedModelsInferenceFlyoutCustomValue( + 'mlTrainedModelsInferencePipelineDescriptionInput', + values.description + ); + await this.setTrainedModelsInferenceFlyoutCustomValue( + 'mlTrainedModelsInferencePipelineTargetFieldInput', + values.targetField + ); + } + + public async assertTrainedModelsInferenceFlyoutAdditionalSettings( + condition?: string, + tag?: string + ) { + if (condition || tag) { + await this.trainedModelsInferenceOpenAdditionalSettings(); + const actualCondition = await testSubjects.getAttribute( + 'mlTrainedModelsInferenceAdvancedSettingsConditionTextArea', + 'value' + ); + expect(actualCondition).to.eql(condition); + const actualTag = await testSubjects.getAttribute( + 'mlTrainedModelsInferenceAdvancedSettingsTagInput', + 'value' + ); + expect(actualTag).to.eql(tag); + } + } + + public async assertTrainedModelsInferenceFlyoutPipelineConfigValues( + inferenceConfig: IngestInferenceProcessor['inference_config'], + fieldMap: IngestInferenceProcessor['field_map'] + ) { + await retry.tryForTime(5000, async () => { + const actualInferenceConfig = await testSubjects.getVisibleText( + 'mlTrainedModelsInferencePipelineInferenceConfigBlock' + ); + expect(JSON.parse(actualInferenceConfig)).to.eql(inferenceConfig); + }); + + await retry.tryForTime(5000, async () => { + const actualFieldMap = await testSubjects.getVisibleText( + 'mlTrainedModelsInferencePipelineFieldMapBlock' + ); + expect(JSON.parse(actualFieldMap)).to.eql(fieldMap); + }); + } + + public async trainedModelsInferenceFlyoutSaveChanges() { + await testSubjects.existOrFail('mlTrainedModelsInferencePipelineFlyoutSaveChangesButton'); + const saveChangesButton = await testSubjects.find( + 'mlTrainedModelsInferencePipelineFlyoutSaveChangesButton' + ); + await saveChangesButton.click(); + } + + public async setTrainedModelsInferenceFlyoutCustomEditorValues( + selector: string, + value: string + ) { + const configElement = await testSubjects.find(selector); + const editor = await configElement.findByClassName('kibanaCodeEditor'); + await editor.click(); + const input = await find.activeElement(); + await input.clearValueWithKeyboard(); + + for (const chr of value) { + await retry.tryForTime(5000, async () => { + await input.type(chr, { charByChar: true }); + }); + } + } + + public async setTrainedModelsInferenceFlyoutCustomPipelineConfig(values: { + condition: string; + editedInferenceConfig: IngestInferenceProcessor['inference_config']; + editedFieldMap: IngestInferenceProcessor['field_map']; + tag: string; + }) { + // INFERENCE CONFIG + const editInferenceConfigButton = await testSubjects.find( + 'mlTrainedModelsInferencePipelineInferenceConfigEditButton' + ); + await editInferenceConfigButton.click(); + await this.setTrainedModelsInferenceFlyoutCustomEditorValues( + 'mlTrainedModelsInferencePipelineInferenceConfigEditor', + JSON.stringify(values.editedInferenceConfig) + ); + await this.trainedModelsInferenceFlyoutSaveChanges(); + // FIELD MAP + const editFieldMapButton = await testSubjects.find( + 'mlTrainedModelsInferencePipelineFieldMapEditButton' + ); + await editFieldMapButton.click(); + await this.setTrainedModelsInferenceFlyoutCustomEditorValues( + 'mlTrainedModelsInferencePipelineFieldMapEdit', + JSON.stringify(values.editedFieldMap) + ); + await this.trainedModelsInferenceFlyoutSaveChanges(); + // OPEN ADVANCED SETTINGS + await this.trainedModelsInferenceOpenAdditionalSettings(); + await this.setTrainedModelsInferenceFlyoutCustomValue( + 'mlTrainedModelsInferenceAdvancedSettingsConditionTextArea', + values.condition + ); + await this.setTrainedModelsInferenceFlyoutCustomValue( + 'mlTrainedModelsInferenceAdvancedSettingsTagInput', + values.tag + ); + await this.trainedModelsInferenceFlyoutSaveChanges(); + + await this.assertTrainedModelsInferenceFlyoutPipelineConfigValues( + values.editedInferenceConfig, + values.editedFieldMap + ); + await this.assertTrainedModelsInferenceFlyoutAdditionalSettings(values.condition, values.tag); + } + + public async completeTrainedModelsInferenceFlyoutDetails( + expectedValues: { + name: string; + description: string; + targetField: string; + }, + editDefaults: boolean = false + ) { + if (editDefaults) { + await this.setTrainedModelsInferenceFlyoutCustomDetails(expectedValues); + } + const name = await testSubjects.getAttribute( + 'mlTrainedModelsInferencePipelineNameInput', + 'value' + ); + expect(name).to.eql(expectedValues.name); + const description = await testSubjects.getAttribute( + 'mlTrainedModelsInferencePipelineDescriptionInput', + 'value' + ); + expect(description).to.eql(expectedValues.description); + const targetField = await testSubjects.getAttribute( + 'mlTrainedModelsInferencePipelineTargetFieldInput', + 'value' + ); + expect(targetField).to.eql(expectedValues.targetField); + await this.deployModelsContinue('mlTrainedModelsInferencePipelineProcessorConfigStep'); + } + + public async trainedModelsInferenceOpenAdditionalSettings() { + await testSubjects.existOrFail('mlTrainedModelsInferenceAdvancedSettingsAccordion'); + await testSubjects.click('mlTrainedModelsInferenceAdvancedSettingsAccordionButton'); + await testSubjects.existOrFail('mlTrainedModelsInferenceAdvancedSettingsConditionTextArea'); + await testSubjects.existOrFail('mlTrainedModelsInferenceAdvancedSettingsTagInput'); + } + + public async completeTrainedModelsInferenceFlyoutPipelineConfig( + expectedValues: { + inferenceConfig: IngestInferenceProcessor['inference_config']; + editedInferenceConfig?: IngestInferenceProcessor['inference_config']; + fieldMap: IngestInferenceProcessor['field_map']; + editedFieldMap?: IngestInferenceProcessor['field_map']; + }, + editDefaults: boolean = false + ) { + const { inferenceConfig, editedInferenceConfig, fieldMap, editedFieldMap } = expectedValues; + // Check all defaults + await this.assertTrainedModelsInferenceFlyoutPipelineConfigValues(inferenceConfig, fieldMap); + + if (editDefaults) { + await this.setTrainedModelsInferenceFlyoutCustomPipelineConfig({ + condition: "ctx?.network?.name == 'Guest'", + editedFieldMap, + editedInferenceConfig, + tag: 'tag', + }); + } + + await this.deployModelsContinue('mlTrainedModelsInferenceOnFailureStep'); + } + + public async completeTrainedModelsInferenceFlyoutOnFailure( + expectedOnFailure: IngestInferenceProcessor['on_failure'], + editDefaults: boolean = false + ) { + await retry.tryForTime(30 * 1000, async () => { + // Switch should default to unchecked + const ignoreFailureSelected = + (await testSubjects.getAttribute( + 'mlTrainedModelsInferenceIgnoreFailureSwitch', + 'aria-checked' + )) === 'true'; + expect(ignoreFailureSelected).to.eql(false); + // Switch should default to checked + const takeActionOnFailureSelected = + (await testSubjects.getAttribute( + 'mlTrainedModelsInferenceTakeActionOnFailureSwitch', + 'aria-checked' + )) === 'true'; + expect(takeActionOnFailureSelected).to.eql(true); + }); + + const defaultOnFailure = await testSubjects.getVisibleText( + 'mlTrainedModelsInferenceOnFailureCodeBlock' + ); + expect(JSON.parse(defaultOnFailure)).to.eql(expectedOnFailure); + + if (editDefaults) { + await retry.tryForTime(30 * 1000, async () => { + // switch ignore failure to true + await testSubjects.click('mlTrainedModelsInferenceIgnoreFailureSwitch'); + // Switch should now be checked + const isIgnoreFailureSelected = + (await testSubjects.getAttribute( + 'mlTrainedModelsInferenceIgnoreFailureSwitch', + 'aria-checked' + )) === 'true'; + expect(isIgnoreFailureSelected).to.eql(true); + }); + } + await this.deployModelsContinue('mlTrainedModelsInferenceTestStep'); + // skip test step + await this.deployModelsContinue('mlTrainedModelsInferenceReviewAndCreateStep'); + } + + public async completeTrainedModelsInferenceFlyoutCreateStep(expectedConfig: IngestPipeline) { + const pipelineConfig = await testSubjects.getVisibleText( + 'mlTrainedModelsInferenceReviewAndCreateStepConfigBlock' + ); + expect(JSON.parse(pipelineConfig)).to.eql(expectedConfig); + await this.assertDeployModelsCreateButton(); + await retry.tryForTime(30 * 1000, async () => { + await testSubjects.existOrFail('mlTrainedModelsInferenceReviewAndCreateStepSuccessCallout'); + }); + const closeButton = await testSubjects.find('mlTrainedModelsInferencePipelineCloseButton'); + await closeButton.click(); + } + + public async deployModelsContinue(expectedStep?: string) { + await testSubjects.existOrFail('mlTrainedModelsInferencePipelineContinueButton'); + await testSubjects.click('mlTrainedModelsInferencePipelineContinueButton'); + if (expectedStep) { + await testSubjects.existOrFail(expectedStep); + } + } + + public async assertDeployModelsCreateButton(expectedStep?: string) { + await testSubjects.existOrFail('mlTrainedModelsInferencePipelineCreateButton'); + await testSubjects.click('mlTrainedModelsInferencePipelineCreateButton'); + } + })(); +} diff --git a/x-pack/test/functional/services/ml/index.ts b/x-pack/test/functional/services/ml/index.ts index b920b173e2080..ba36b3be3858f 100644 --- a/x-pack/test/functional/services/ml/index.ts +++ b/x-pack/test/functional/services/ml/index.ts @@ -57,6 +57,7 @@ import { MachineLearningDashboardJobSelectionTableProvider } from './dashboard_j import { MachineLearningDashboardEmbeddablesProvider } from './dashboard_embeddables'; import { TrainedModelsProvider } from './trained_models'; import { TrainedModelsTableProvider } from './trained_models_table'; +import { DeployDFAModelFlyoutProvider } from './deploy_models_flyout'; import { MachineLearningJobAnnotationsProvider } from './job_annotations_table'; import { MlNodesPanelProvider } from './ml_nodes_list'; import { MachineLearningCasesProvider } from './cases'; @@ -158,6 +159,7 @@ export function MachineLearningProvider(context: FtrProviderContext) { const swimLane = SwimLaneProvider(context); const trainedModels = TrainedModelsProvider(context, commonUI); const trainedModelsTable = TrainedModelsTableProvider(context, commonUI, trainedModels); + const deployDFAModelFlyout = DeployDFAModelFlyoutProvider(context, commonUI); const mlNodesPanel = MlNodesPanelProvider(context); const notifications = NotificationsProvider(context, commonUI, tableService); @@ -220,6 +222,7 @@ export function MachineLearningProvider(context: FtrProviderContext) { testExecution, testResources, trainedModels, + deployDFAModelFlyout, trainedModelsTable, }; } diff --git a/x-pack/test/functional/services/ml/trained_models_table.ts b/x-pack/test/functional/services/ml/trained_models_table.ts index 9ca3a63615d93..fd993fe93a030 100644 --- a/x-pack/test/functional/services/ml/trained_models_table.ts +++ b/x-pack/test/functional/services/ml/trained_models_table.ts @@ -198,6 +198,19 @@ export function TrainedModelsTableProvider( ); } + public async assertModelDeployActionButtonExists(modelId: string, expectedValue: boolean) { + const actionsExists = await testSubjects.exists( + this.rowSelector(modelId, 'mlModelsTableRowDeployAction') + ); + + expect(actionsExists).to.eql( + expectedValue, + `Expected row deploy action button for trained model '${modelId}' to be ${ + expectedValue ? 'visible' : 'hidden' + } (got ${actionsExists ? 'visible' : 'hidden'})` + ); + } + public async assertModelTestButtonExists(modelId: string, expectedValue: boolean) { const actionExists = await testSubjects.exists( this.rowSelector(modelId, 'mlModelsTableRowTestAction') @@ -226,6 +239,15 @@ export function TrainedModelsTableProvider( await trainedModelsActions.testModelOutput(modelType, inputParams, expectedResult); } + public async openTrainedModelsInferenceFlyout(modelId: string) { + await mlCommonUI.invokeTableRowAction( + this.rowSelector(modelId), + 'mlModelsTableRowDeployAction', + false + ); + await this.assertDeployModelFlyoutExists(); + } + public async deleteModel(modelId: string) { await mlCommonUI.invokeTableRowAction( this.rowSelector(modelId), @@ -264,6 +286,19 @@ export function TrainedModelsTableProvider( ); } + public async deployModelsContinue(expectedStep?: string) { + await testSubjects.existOrFail('mlTrainedModelsInferencePipelineContinueButton'); + await testSubjects.click('mlTrainedModelsInferencePipelineContinueButton'); + if (expectedStep) { + await testSubjects.existOrFail(expectedStep); + } + } + + public async assertDeployModelsCreateButton(expectedStep?: string) { + await testSubjects.existOrFail('mlTrainedModelsInferencePipelineCreateButton'); + await testSubjects.click('mlTrainedModelsInferencePipelineCreateButton'); + } + public async assertDeleteModalExists() { await testSubjects.existOrFail('mlModelsDeleteModal', { timeout: 60 * 1000 }); } @@ -272,6 +307,12 @@ export function TrainedModelsTableProvider( await testSubjects.existOrFail('mlTestModelsFlyout', { timeout: 60 * 1000 }); } + public async assertDeployModelFlyoutExists() { + await testSubjects.existOrFail('mlTrainedModelsInferencePipelineFlyout', { + timeout: 60 * 1000, + }); + } + public async assertStartDeploymentModalExists(expectExist = true) { if (expectExist) { await testSubjects.existOrFail('mlModelsStartDeploymentModal', { timeout: 60 * 1000 }); diff --git a/x-pack/test/functional/services/transform/api.ts b/x-pack/test/functional/services/transform/api.ts index 8fb984e72e0c5..5aad29fff8942 100644 --- a/x-pack/test/functional/services/transform/api.ts +++ b/x-pack/test/functional/services/transform/api.ts @@ -11,10 +11,11 @@ import type { PutTransformsRequestSchema } from '@kbn/transform-plugin/common/ap import { TransformState, TRANSFORM_STATE } from '@kbn/transform-plugin/common/constants'; import type { TransformStats } from '@kbn/transform-plugin/common/types/transform_stats'; -import { GetTransformsResponseSchema } from '@kbn/transform-plugin/common/api_schemas/transforms'; -import { PostTransformsUpdateRequestSchema } from '@kbn/transform-plugin/common/api_schemas/update_transforms'; -import { TransformPivotConfig } from '@kbn/transform-plugin/common/types/transform'; -import { FtrProviderContext } from '../../ftr_provider_context'; +import type { GetTransformsResponseSchema } from '@kbn/transform-plugin/common/api_schemas/transforms'; +import type { PostTransformsUpdateRequestSchema } from '@kbn/transform-plugin/common/api_schemas/update_transforms'; +import type { TransformPivotConfig } from '@kbn/transform-plugin/common/types/transform'; +import type { IndicesCreateRequest } from '@elastic/elasticsearch/lib/api/typesWithBodyKey'; +import type { FtrProviderContext } from '../../ftr_provider_context'; export async function asyncForEach(array: any[], callback: Function) { for (let index = 0; index < array.length; index++) { @@ -39,14 +40,17 @@ export function TransformAPIProvider({ getService }: FtrProviderContext) { ); }, - async createIndices(indices: string) { + async createIndices( + indices: string, + params: IndicesCreateRequest['body'] = {} as NonNullable<IndicesCreateRequest['body']> + ) { log.debug(`Creating indices: '${indices}'...`); if ((await es.indices.exists({ index: indices, allow_no_indices: false })) === true) { log.debug(`Indices '${indices}' already exist. Nothing to create.`); return; } - const createResponse = await es.indices.create({ index: indices }); + const createResponse = await es.indices.create({ index: indices, ...params }); expect(createResponse) .to.have.property('acknowledged') .eql(true, 'Response for create request indices should be acknowledged.'); diff --git a/x-pack/test/functional_with_es_ssl/apps/discover_ml_uptime/discover/search_source_alert.ts b/x-pack/test/functional_with_es_ssl/apps/discover_ml_uptime/discover/search_source_alert.ts index 0a05bfcbf9468..27e68ad83e942 100644 --- a/x-pack/test/functional_with_es_ssl/apps/discover_ml_uptime/discover/search_source_alert.ts +++ b/x-pack/test/functional_with_es_ssl/apps/discover_ml_uptime/discover/search_source_alert.ts @@ -199,7 +199,6 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { const getResultsLink = async () => { // getting the link await dataGrid.clickRowToggle(); - await testSubjects.click('collapseBtn'); const contextMessageElement = await testSubjects.find('tableDocViewRow-context_message-value'); const contextMessage = await contextMessageElement.getVisibleText(); const [, link] = contextMessage.split(`Link\: `); diff --git a/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/shared/config.ts b/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/shared/config.ts new file mode 100644 index 0000000000000..eedd329f2b627 --- /dev/null +++ b/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/shared/config.ts @@ -0,0 +1,35 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { FtrConfigProviderContext, findTestPluginPaths } from '@kbn/test'; +import { resolve } from 'path'; +// @ts-expect-error we have to check types with "allowJs: false" for now, causing this import to fail +import { REPO_ROOT as KIBANA_ROOT } from '@kbn/repo-info'; + +export default async function ({ readConfigFile }: FtrConfigProviderContext) { + const baseConfig = await readConfigFile(require.resolve('../../../config.base.ts')); + + return { + ...baseConfig.getAll(), + testFiles: [require.resolve('.')], + junit: { + reportName: + 'Chrome X-Pack UI Functional Tests with ES SSL - Shared Triggers Actions UI Components', + }, + kbnTestServer: { + ...baseConfig.get('kbnTestServer'), + serverArgs: [ + ...baseConfig.get('kbnTestServer.serverArgs'), + '--env.name=development', + ...findTestPluginPaths([ + resolve(KIBANA_ROOT, 'examples'), + resolve(KIBANA_ROOT, 'x-pack/examples'), + ]), + ], + }, + }; +} diff --git a/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/shared/global_rule_event_log_list.ts b/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/shared/global_rule_event_log_list.ts new file mode 100644 index 0000000000000..2aeb08541d2ab --- /dev/null +++ b/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/shared/global_rule_event_log_list.ts @@ -0,0 +1,219 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { asyncForEach } from '@kbn/std'; +import { FtrProviderContext } from '../../../ftr_provider_context'; +import { Role, User } from '../../../../cases_api_integration/common/lib/authentication/types'; +import { + createUsersAndRoles, + deleteUsersAndRoles, +} from '../../../../cases_api_integration/common/lib/authentication'; +import { getUrlPrefix } from '../../../../alerting_api_integration/common/lib'; +import { getTestAlertData } from '../../../lib/get_test_data'; + +const SPACE2 = { + id: 'space-2', + name: 'Space 2', + disabledFeatures: [], +}; +const ONLY_S2_ROLE: Role = { + name: 'only_s2', + privileges: { + elasticsearch: { + indices: [ + { + names: ['*'], + privileges: ['all'], + }, + ], + }, + kibana: [ + { + base: ['all'], + feature: {}, + spaces: [SPACE2.id], + }, + ], + }, +}; + +const ONLY_S2_USER: User = { + username: 'only_s2_user', + password: 'changeme', + roles: [ONLY_S2_ROLE.name], +}; + +export default ({ getPageObjects, getService }: FtrProviderContext) => { + const testSubjects = getService('testSubjects'); + const PageObjects = getPageObjects(['common', 'header']); + const spaces = getService('spaces'); + const pageObjects = getPageObjects(['security']); + const supertest = getService('supertest'); + const retry = getService('retry'); + const find = getService('find'); + + const ensureRuleHasRan = async (id: string, space: string) => { + const { body } = await supertest + .get(`${getUrlPrefix(space)}/api/alerting/rule/${id}`) + .expect(200); + expect(body.last_run.outcome).eql('succeeded'); + }; + + async function deleteAlerts(rules: Array<{ id: string; space: string }>) { + await asyncForEach(rules, async ({ id, space }) => { + await supertest + .delete(`${getUrlPrefix(space)}/api/alerting/rule/${id}`) + .set('kbn-xsrf', 'foo') + .expect(204); + }); + } + + describe('Shared global rule event log list', function () { + const rulesToDelete: Array<{ + space: string; + id: string; + }> = []; + + before(async () => { + await spaces.delete(SPACE2.id); + await createUsersAndRoles(getService, [ONLY_S2_USER], [ONLY_S2_ROLE]); + await spaces.create(SPACE2); + await PageObjects.common.navigateToApp('triggersActionsUiExample/global_rule_event_log_list'); + }); + + after(async () => { + await deleteAlerts(rulesToDelete); + await deleteUsersAndRoles(getService, [ONLY_S2_USER], [ONLY_S2_ROLE]); + await spaces.delete(SPACE2.id); + await pageObjects.security.forceLogout(); + }); + + it('should load from the shareable lazy loader', async () => { + await PageObjects.common.navigateToApp('triggersActionsUiExample/global_rule_event_log_list'); + const exists = await testSubjects.exists('ruleEventLogListTable'); + const spacesSwitchExists = await testSubjects.exists('showAllSpacesSwitch'); + + expect(exists).to.be(true); + expect(spacesSwitchExists).to.be(true); + }); + + it('should filter out rule types based on filteredRuleTypes prop and respect spaces', async () => { + const { body: createdRule1 } = await supertest + .post(`${getUrlPrefix('default')}/api/alerting/rule`) + .set('kbn-xsrf', 'foo') + .send({ + params: { + threshold: 25, + windowSize: 5, + windowUnit: 'm', + environment: 'ENVIRONMENT_ALL', + }, + consumer: 'alerts', + schedule: { + interval: '1m', + }, + tags: [], + name: 'Error count threshold', + rule_type_id: 'apm.error_rate', + actions: [], + }) + .expect(200); + + rulesToDelete.push({ id: createdRule1.id, space: 'default' }); + + const { body: createdRule2 } = await supertest + .post(`${getUrlPrefix('space-2')}/api/alerting/rule`) + .set('kbn-xsrf', 'foo') + .send({ + params: { + threshold: 30, + windowSize: 5, + windowUnit: 'm', + environment: 'ENVIRONMENT_ALL', + }, + consumer: 'alerts', + schedule: { + interval: '1m', + }, + tags: [], + name: 'Failed transaction', + rule_type_id: 'apm.transaction_error_rate', + actions: [], + }) + .expect(200); + + rulesToDelete.push({ id: createdRule2.id, space: 'space-2' }); + + const { body: createdRule3 } = await supertest + .post(`${getUrlPrefix('default')}/api/alerting/rule`) + .set('kbn-xsrf', 'foo') + .send( + getTestAlertData({ + name: 'test-rule', + }) + ) + .expect(200); + + rulesToDelete.push({ id: createdRule3.id, space: 'default' }); + + await retry.try(async () => { + await ensureRuleHasRan(createdRule1.id, 'default'); + }); + + await retry.try(async () => { + await ensureRuleHasRan(createdRule2.id, 'space-2'); + }); + + await retry.try(async () => { + await ensureRuleHasRan(createdRule3.id, 'default'); + }); + + await PageObjects.common.navigateToApp('triggersActionsUiExample/global_rule_event_log_list'); + + let ruleNameCells = await find.allByCssSelector( + '[data-gridcell-column-id="rule_name"][data-test-subj="dataGridRowCell"]' + ); + + // Should not see the 'test-rule' since that is filtered out by filteredRuleTypes + // Should only see default space rule: Error count threshold + let textCellsMap: Record<string, boolean> = {}; + + await asyncForEach(ruleNameCells, async (cell) => { + const text = await cell.getVisibleText(); + textCellsMap[text] = true; + }); + + expect(textCellsMap['Error count threshold']).eql(true); + expect(textCellsMap['Failed transaction']).eql(undefined); + expect(textCellsMap['test-rule']).eql(undefined); + + const spacesSwitch = await testSubjects.find('showAllSpacesSwitch'); + const switchControl = await spacesSwitch.findByCssSelector('button'); + await switchControl.click(); + + await PageObjects.header.waitUntilLoadingHasFinished(); + + ruleNameCells = await find.allByCssSelector( + '[data-gridcell-column-id="rule_name"][data-test-subj="dataGridRowCell"]' + ); + + // Should not see the 'test-rule' since that is filtered out by filteredRuleTypes + // Should see both space rules: Error count threshold + Failed transaction + textCellsMap = {}; + + await asyncForEach(ruleNameCells, async (cell) => { + const text = await cell.getVisibleText(); + textCellsMap[text] = true; + }); + + expect(textCellsMap['Error count threshold']).eql(true); + expect(textCellsMap['Failed transaction']).eql(true); + expect(textCellsMap['test-rule']).eql(undefined); + }); + }); +}; diff --git a/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/shared/index.ts b/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/shared/index.ts new file mode 100644 index 0000000000000..2eda0c698583c --- /dev/null +++ b/x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/shared/index.ts @@ -0,0 +1,14 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { FtrProviderContext } from '../../../ftr_provider_context'; + +export default ({ loadTestFile }: FtrProviderContext) => { + describe('Shared Components', function () { + loadTestFile(require.resolve('./global_rule_event_log_list')); + }); +}; diff --git a/x-pack/test/lists_api_integration/security_and_spaces/tests/create_lists_index.ts b/x-pack/test/lists_api_integration/security_and_spaces/tests/create_lists_index.ts index 8ae35e0fb0426..ab549f27c4d2d 100644 --- a/x-pack/test/lists_api_integration/security_and_spaces/tests/create_lists_index.ts +++ b/x-pack/test/lists_api_integration/security_and_spaces/tests/create_lists_index.ts @@ -28,14 +28,14 @@ export default ({ getService }: FtrProviderContext) => { await deleteListsIndex(supertest, log); }); - it('should create lists indices', async () => { + it('should create lists data streams', async () => { const { body: fetchedIndices } = await supertest .get(LIST_INDEX) .set('kbn-xsrf', 'true') .expect(404); expect(fetchedIndices).to.eql({ - message: 'index .lists-default and index .items-default does not exist', + message: 'data stream .lists-default and data stream .items-default does not exist', status_code: 404, }); @@ -46,14 +46,15 @@ export default ({ getService }: FtrProviderContext) => { expect(body).to.eql({ list_index: true, list_item_index: true }); }); - it('should update lists indices if old legacy templates exists', async () => { + it('should migrate lists indices to data streams and remove old legacy templates', async () => { // create legacy indices await createLegacyListsIndices(es); - const { body: listsIndex } = await supertest + await supertest .get(LIST_INDEX) .set('kbn-xsrf', 'true') - .expect(200); + // data stream does not exist + .expect(404); // confirm that legacy templates are in use const legacyListsTemplateExists = await getTemplateExists(es, '.lists-default'); @@ -65,10 +66,9 @@ export default ({ getService }: FtrProviderContext) => { expect(legacyItemsTemplateExists).to.equal(true); expect(nonLegacyListsTemplateExists).to.equal(false); expect(nonLegacyItemsTemplateExists).to.equal(false); - expect(listsIndex).to.eql({ list_index: true, list_item_index: true }); - // Expected 409 as index exists already, but now the templates should have been updated - await supertest.post(LIST_INDEX).set('kbn-xsrf', 'true').expect(409); + // migrates old indices to data streams + await supertest.post(LIST_INDEX).set('kbn-xsrf', 'true').expect(200); const { body } = await supertest.get(LIST_INDEX).set('kbn-xsrf', 'true').expect(200); diff --git a/x-pack/test/lists_api_integration/security_and_spaces/tests/find_lists_by_size.ts b/x-pack/test/lists_api_integration/security_and_spaces/tests/find_lists_by_size.ts index 49c1fc71ad27b..9452d95e7f972 100644 --- a/x-pack/test/lists_api_integration/security_and_spaces/tests/find_lists_by_size.ts +++ b/x-pack/test/lists_api_integration/security_and_spaces/tests/find_lists_by_size.ts @@ -7,7 +7,7 @@ import expect from '@kbn/expect'; -import { LIST_URL, FIND_LISTS_BY_SIZE } from '@kbn/securitysolution-list-constants'; +import { LIST_URL, INTERNAL_FIND_LISTS_BY_SIZE } from '@kbn/securitysolution-list-constants'; import { getCreateMinimalListSchemaMock } from '@kbn/lists-plugin/common/schemas/request/create_list_schema.mock'; import { getListResponseMockWithoutAutoGeneratedValues } from '@kbn/lists-plugin/common/schemas/response/list_schema.mock'; import { FtrProviderContext } from '../../common/ftr_provider_context'; @@ -35,7 +35,7 @@ export default ({ getService }: FtrProviderContext): void => { it('should return an empty found body correctly if no lists are loaded', async () => { const { body } = await supertest - .get(`${FIND_LISTS_BY_SIZE}`) + .get(`${INTERNAL_FIND_LISTS_BY_SIZE}`) .set('kbn-xsrf', 'true') .send() .expect(200); @@ -63,7 +63,7 @@ export default ({ getService }: FtrProviderContext): void => { // query the single list from _find_by_size const { body } = await supertest - .get(`${FIND_LISTS_BY_SIZE}`) + .get(`${INTERNAL_FIND_LISTS_BY_SIZE}`) .set('kbn-xsrf', 'true') .send() .expect(200); diff --git a/x-pack/test/lists_api_integration/security_and_spaces/tests/get_exception_filter.ts b/x-pack/test/lists_api_integration/security_and_spaces/tests/get_exception_filter.ts index abe119b066f88..a98f704d8a3d3 100644 --- a/x-pack/test/lists_api_integration/security_and_spaces/tests/get_exception_filter.ts +++ b/x-pack/test/lists_api_integration/security_and_spaces/tests/get_exception_filter.ts @@ -8,7 +8,7 @@ import expect from '@kbn/expect'; import { - EXCEPTION_FILTER, + INTERNAL_EXCEPTION_FILTER, EXCEPTION_LIST_URL, EXCEPTION_LIST_ITEM_URL, } from '@kbn/securitysolution-list-constants'; @@ -39,7 +39,7 @@ export default ({ getService }: FtrProviderContext): void => { it('should return an exception filter if correctly passed exception items', async () => { const { body } = await supertest - .post(`${EXCEPTION_FILTER}`) + .post(`${INTERNAL_EXCEPTION_FILTER}`) .set('kbn-xsrf', 'true') .send(getExceptionFilterFromExceptionItemsSchemaMock()) .expect(200); @@ -119,7 +119,7 @@ export default ({ getService }: FtrProviderContext): void => { }) .expect(200); const { body } = await supertest - .post(`${EXCEPTION_FILTER}`) + .post(`${INTERNAL_EXCEPTION_FILTER}`) .set('kbn-xsrf', 'true') .send(getExceptionFilterFromExceptionIdsSchemaMock()) .expect(200); diff --git a/x-pack/test/lists_api_integration/security_and_spaces/tests/import_list_items.ts b/x-pack/test/lists_api_integration/security_and_spaces/tests/import_list_items.ts index 514ad3eb9f501..89ae216adc865 100644 --- a/x-pack/test/lists_api_integration/security_and_spaces/tests/import_list_items.ts +++ b/x-pack/test/lists_api_integration/security_and_spaces/tests/import_list_items.ts @@ -19,12 +19,14 @@ import { removeListServerGeneratedProperties, removeListItemServerGeneratedProperties, waitFor, + createListsIndices, } from '../../utils'; // eslint-disable-next-line import/no-default-export export default ({ getService }: FtrProviderContext): void => { const supertest = getService('supertest'); const log = getService('log'); + const es = getService('es'); describe('import_list_items', () => { describe('importing list items without an index', () => { @@ -39,7 +41,7 @@ export default ({ getService }: FtrProviderContext): void => { expect(body).to.eql({ status_code: 400, message: - 'To import a list item, the index must exist first. Index ".lists-default" does not exist', + 'To import a list item, the data steam must exist first. Data stream ".lists-default" does not exist', }); }); }); @@ -110,6 +112,36 @@ export default ({ getService }: FtrProviderContext): void => { }; expect(bodyToCompare).to.eql(outputtedList); }); + + describe('legacy index (before migration to data streams)', () => { + beforeEach(async () => { + await deleteListsIndex(supertest, log); + }); + + afterEach(async () => { + await deleteListsIndex(supertest, log); + }); + + it('should import list to legacy index and migrate it', async () => { + // create legacy indices + await createListsIndices(es); + + const { body } = await supertest + .post(`${LIST_ITEM_URL}/_import?type=ip`) + .set('kbn-xsrf', 'true') + .attach('file', getImportListItemAsBuffer(['127.0.0.1', '127.0.0.2']), 'list_items.txt') + .expect('Content-Type', 'application/json; charset=utf-8') + .expect(200); + + const bodyToCompare = removeListServerGeneratedProperties(body); + const outputtedList: Partial<ListSchema> = { + ...getListResponseMockWithoutAutoGeneratedValues(), + name: 'list_items.txt', + description: 'File uploaded from file system of list_items.txt', + }; + expect(bodyToCompare).to.eql(outputtedList); + }); + }); }); }); }; diff --git a/x-pack/test/lists_api_integration/security_and_spaces/tests/index.ts b/x-pack/test/lists_api_integration/security_and_spaces/tests/index.ts index 02b63c732d229..79217043b36bb 100644 --- a/x-pack/test/lists_api_integration/security_and_spaces/tests/index.ts +++ b/x-pack/test/lists_api_integration/security_and_spaces/tests/index.ts @@ -13,6 +13,8 @@ export default ({ loadTestFile }: FtrProviderContext): void => { loadTestFile(require.resolve('./create_lists')); loadTestFile(require.resolve('./create_lists_index')); loadTestFile(require.resolve('./create_list_items')); + loadTestFile(require.resolve('./patch_lists')); + loadTestFile(require.resolve('./patch_list_items')); loadTestFile(require.resolve('./read_lists')); loadTestFile(require.resolve('./read_list_items')); loadTestFile(require.resolve('./update_lists')); diff --git a/x-pack/test/lists_api_integration/security_and_spaces/tests/patch_list_items.ts b/x-pack/test/lists_api_integration/security_and_spaces/tests/patch_list_items.ts new file mode 100644 index 0000000000000..0827b5813b6c4 --- /dev/null +++ b/x-pack/test/lists_api_integration/security_and_spaces/tests/patch_list_items.ts @@ -0,0 +1,281 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; + +import type { + PatchListItemSchema, + CreateListItemSchema, + ListItemSchema, +} from '@kbn/securitysolution-io-ts-list-types'; +import { LIST_URL, LIST_ITEM_URL, LIST_INDEX } from '@kbn/securitysolution-list-constants'; +import { getListItemResponseMockWithoutAutoGeneratedValues } from '@kbn/lists-plugin/common/schemas/response/list_item_schema.mock'; +import { getCreateMinimalListItemSchemaMock } from '@kbn/lists-plugin/common/schemas/request/create_list_item_schema.mock'; +import { getCreateMinimalListSchemaMock } from '@kbn/lists-plugin/common/schemas/request/create_list_schema.mock'; +import { getUpdateMinimalListItemSchemaMock } from '@kbn/lists-plugin/common/schemas/request/update_list_item_schema.mock'; +import { FtrProviderContext } from '../../common/ftr_provider_context'; + +import { + createListsIndex, + deleteListsIndex, + removeListItemServerGeneratedProperties, + createListsIndices, + createListBypassingChecks, + createListItemBypassingChecks, +} from '../../utils'; + +// eslint-disable-next-line import/no-default-export +export default ({ getService }: FtrProviderContext) => { + const supertest = getService('supertest'); + const log = getService('log'); + const retry = getService('retry'); + const es = getService('es'); + + describe('patch_list_items', () => { + describe('patch list items', () => { + beforeEach(async () => { + await createListsIndex(supertest, log); + }); + + afterEach(async () => { + await deleteListsIndex(supertest, log); + }); + + it('should patch a single list item property of value using an id', async () => { + const listItemId = getCreateMinimalListItemSchemaMock().id as string; + // create a simple list + await supertest + .post(LIST_URL) + .set('kbn-xsrf', 'true') + .send(getCreateMinimalListSchemaMock()) + .expect(200); + + // create a simple list item + await supertest + .post(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send(getCreateMinimalListItemSchemaMock()) + .expect(200); + + // patch a simple list item's value + const patchListItemPayload: PatchListItemSchema = { + id: listItemId, + value: '192.168.0.2', + }; + + const { body } = await supertest + .patch(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send(patchListItemPayload); + + const outputListItem: Partial<ListItemSchema> = { + ...getListItemResponseMockWithoutAutoGeneratedValues(), + value: '192.168.0.2', + }; + const bodyToCompare = removeListItemServerGeneratedProperties(body); + expect(bodyToCompare).to.eql(outputListItem); + + await retry.waitFor('updates should be persistent', async () => { + const { body: listItemBody } = await supertest + .get(LIST_ITEM_URL) + .query({ id: getCreateMinimalListItemSchemaMock().id }) + .set('kbn-xsrf', 'true'); + + expect(removeListItemServerGeneratedProperties(listItemBody)).to.eql(outputListItem); + return true; + }); + }); + + it('should patch a single list item of value using an auto-generated id of both list and list item', async () => { + const { id, ...listNoId } = getCreateMinimalListSchemaMock(); + // create a simple list with no id which will use an auto-generated id + const { body: createListBody } = await supertest + .post(LIST_URL) + .set('kbn-xsrf', 'true') + .send(listNoId) + .expect(200); + + // create a simple list item also with an auto-generated id using the list's auto-generated id + const listItem: CreateListItemSchema = { + ...getCreateMinimalListItemSchemaMock(), + list_id: createListBody.id, + }; + const { body: createListItemBody } = await supertest + .post(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send(listItem) + .expect(200); + + // patch a simple list item's value + const patchListItemPayload: PatchListItemSchema = { + id: createListItemBody.id, + value: '192.168.0.2', + }; + + const { body } = await supertest + .patch(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send(patchListItemPayload) + .expect(200); + + const outputListItem: Partial<ListItemSchema> = { + ...getListItemResponseMockWithoutAutoGeneratedValues(), + value: '192.168.0.2', + }; + const bodyToCompare = { + ...removeListItemServerGeneratedProperties(body), + list_id: outputListItem.list_id, + }; + expect(bodyToCompare).to.eql(outputListItem); + + await retry.waitFor('updates should be persistent', async () => { + const { body: listItemBody } = await supertest + .get(LIST_ITEM_URL) + .query({ id: createListItemBody.id }) + .set('kbn-xsrf', 'true'); + const listItemBodyToCompare = { + ...removeListItemServerGeneratedProperties(listItemBody), + list_id: outputListItem.list_id, + }; + expect(listItemBodyToCompare).to.eql(outputListItem); + return true; + }); + }); + + it('should not remove unspecified in patch payload meta property', async () => { + const listItemId = getCreateMinimalListItemSchemaMock().id as string; + // create a simple list + await supertest + .post(LIST_URL) + .set('kbn-xsrf', 'true') + .send(getCreateMinimalListSchemaMock()) + .expect(200); + + // create a simple list item + await supertest + .post(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send({ ...getCreateMinimalListItemSchemaMock(), meta: { test: true } }) + .expect(200); + + // patch a simple list item's value + const patchListItemPayload: PatchListItemSchema = { + id: listItemId, + value: '192.168.0.2', + }; + + const { body } = await supertest + .patch(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send(patchListItemPayload); + + expect(body.meta).to.eql({ test: true }); + + await retry.waitFor('updates should be persistent', async () => { + const { body: listItemBody } = await supertest + .get(LIST_ITEM_URL) + .query({ id: getCreateMinimalListItemSchemaMock().id }) + .set('kbn-xsrf', 'true'); + + expect(listItemBody.meta).to.eql({ test: true }); + return true; + }); + }); + + it('should give a 404 if it is given a fake id', async () => { + // create a simple list + await supertest + .post(LIST_URL) + .set('kbn-xsrf', 'true') + .send(getCreateMinimalListSchemaMock()) + .expect(200); + + // create a simple list item + await supertest + .post(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send(getCreateMinimalListItemSchemaMock()) + .expect(200); + + // patch a simple list item's value + const patchListItemPayload: PatchListItemSchema = { + ...getUpdateMinimalListItemSchemaMock(), + id: 'some-other-id', + value: '192.168.0.2', + }; + + const { body } = await supertest + .patch(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send(patchListItemPayload) + .expect(404); + + expect(body).to.eql({ + status_code: 404, + message: 'list item id: "some-other-id" not found', + }); + }); + + describe('legacy list items index (list created before migration to data stream)', () => { + beforeEach(async () => { + await deleteListsIndex(supertest, log); + }); + + afterEach(async () => { + await deleteListsIndex(supertest, log); + }); + it('should patch list item that was created in legacy index and migrated through LIST_INDEX request', async () => { + const listId = 'random-list'; + const listItemId = 'random-list-item'; + // create legacy indices + await createListsIndices(es); + // create a simple list + await createListBypassingChecks({ es, id: listId }); + await createListItemBypassingChecks({ es, listId, id: listItemId, value: 'random' }); + // migrates old indices to data streams + await supertest.post(LIST_INDEX).set('kbn-xsrf', 'true'); + + const patchPayload: PatchListItemSchema = { + id: listItemId, + value: 'new one', + }; + + const { body } = await supertest + .patch(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send(patchPayload) + .expect(200); + + expect(body.value).to.be('new one'); + }); + + it('should patch list item that was created in legacy index and not yet migrated', async () => { + const listId = 'random-list'; + const listItemId = 'random-list-item'; + // create legacy indices + await createListsIndices(es); + // create a simple list + await createListBypassingChecks({ es, id: listId }); + await createListItemBypassingChecks({ es, listId, id: listItemId, value: 'random' }); + + const patchPayload: PatchListItemSchema = { + id: listItemId, + value: 'new one', + }; + + const { body } = await supertest + .patch(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send(patchPayload) + .expect(200); + + expect(body.value).to.be('new one'); + }); + }); + }); + }); +}; diff --git a/x-pack/test/lists_api_integration/security_and_spaces/tests/patch_lists.ts b/x-pack/test/lists_api_integration/security_and_spaces/tests/patch_lists.ts new file mode 100644 index 0000000000000..87076851bd34c --- /dev/null +++ b/x-pack/test/lists_api_integration/security_and_spaces/tests/patch_lists.ts @@ -0,0 +1,271 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; + +import type { PatchListSchema, ListSchema } from '@kbn/securitysolution-io-ts-list-types'; +import { LIST_URL, LIST_INDEX } from '@kbn/securitysolution-list-constants'; + +import { getCreateMinimalListSchemaMock } from '@kbn/lists-plugin/common/schemas/request/create_list_schema.mock'; +import { getListResponseMockWithoutAutoGeneratedValues } from '@kbn/lists-plugin/common/schemas/response/list_schema.mock'; +import { getUpdateMinimalListSchemaMock } from '@kbn/lists-plugin/common/schemas/request/update_list_schema.mock'; +import { + createListsIndex, + deleteListsIndex, + removeListServerGeneratedProperties, + createListsIndices, + createListBypassingChecks, +} from '../../utils'; +import { FtrProviderContext } from '../../common/ftr_provider_context'; + +// eslint-disable-next-line import/no-default-export +export default ({ getService }: FtrProviderContext) => { + const supertest = getService('supertest'); + const log = getService('log'); + const retry = getService('retry'); + const es = getService('es'); + + describe('patch_lists', () => { + describe('patch lists', () => { + beforeEach(async () => { + await createListsIndex(supertest, log); + }); + + afterEach(async () => { + await deleteListsIndex(supertest, log); + }); + + it('should patch a single list property of name using an id', async () => { + const listId = getCreateMinimalListSchemaMock().id as string; + // create a simple list + await supertest + .post(LIST_URL) + .set('kbn-xsrf', 'true') + .send(getCreateMinimalListSchemaMock()) + .expect(200); + + // patch a simple list's name + const patchedListPayload: PatchListSchema = { + id: listId, + name: 'some other name', + }; + + const { body } = await supertest + .patch(LIST_URL) + .set('kbn-xsrf', 'true') + .send(patchedListPayload) + .expect(200); + + const outputList: Partial<ListSchema> = { + ...getListResponseMockWithoutAutoGeneratedValues(), + name: 'some other name', + version: 2, + }; + const bodyToCompare = removeListServerGeneratedProperties(body); + expect(bodyToCompare).to.eql(outputList); + + await retry.waitFor('patches should be persistent', async () => { + const { body: list } = await supertest + .get(LIST_URL) + .query({ id: listId }) + .set('kbn-xsrf', 'true') + .expect(200); + + expect(list.name).to.be('some other name'); + return true; + }); + }); + + it('should patch a single list property of name using an auto-generated id', async () => { + const { id, ...listNoId } = getCreateMinimalListSchemaMock(); + // create a simple list with no id which will use an auto-generated id + const { body: createListBody } = await supertest + .post(LIST_URL) + .set('kbn-xsrf', 'true') + .send(listNoId) + .expect(200); + + // patch a simple list's name + const patchedListPayload: PatchListSchema = { + id: createListBody.id, + name: 'some other name', + }; + + const { body } = await supertest + .patch(LIST_URL) + .set('kbn-xsrf', 'true') + .send(patchedListPayload) + .expect(200); + + const outputList: Partial<ListSchema> = { + ...getListResponseMockWithoutAutoGeneratedValues(), + name: 'some other name', + version: 2, + }; + const bodyToCompare = removeListServerGeneratedProperties(body); + expect(bodyToCompare).to.eql(outputList); + + await retry.waitFor('patches should be persistent', async () => { + const { body: list } = await supertest + .get(LIST_URL) + .query({ id: createListBody.id }) + .set('kbn-xsrf', 'true'); + + expect(list.name).to.be('some other name'); + return true; + }); + }); + + it('should not remove unspecified fields in payload', async () => { + const listId = getCreateMinimalListSchemaMock().id as string; + // create a simple list + await supertest + .post(LIST_URL) + .set('kbn-xsrf', 'true') + .send(getCreateMinimalListSchemaMock()) + .expect(200); + + // patch a simple list's name + const patchedListPayload: PatchListSchema = { + id: listId, + name: 'some other name', + }; + + const { body } = await supertest + .patch(LIST_URL) + .set('kbn-xsrf', 'true') + .send(patchedListPayload) + .expect(200); + + const outputList: Partial<ListSchema> = { + ...getListResponseMockWithoutAutoGeneratedValues(), + name: 'some other name', + version: 2, + }; + const bodyToCompare = removeListServerGeneratedProperties(body); + expect(bodyToCompare).to.eql(outputList); + + await retry.waitFor('patches should be persistent', async () => { + const { body: list } = await supertest + .get(LIST_URL) + .query({ id: getUpdateMinimalListSchemaMock().id }) + .set('kbn-xsrf', 'true'); + + const persistentBodyToCompare = removeListServerGeneratedProperties(list); + + expect(persistentBodyToCompare).to.eql(outputList); + return true; + }); + }); + + it('should change the version of a list when it patches a property', async () => { + // create a simple list + const { body: createdList } = await supertest + .post(LIST_URL) + .set('kbn-xsrf', 'true') + .send(getCreateMinimalListSchemaMock()) + .expect(200); + + // patch a simple list property of name and description + const patchPayload: PatchListSchema = { + id: createdList.id, + name: 'some other name', + description: 'some other description', + }; + + const { body: patchedList } = await supertest + .patch(LIST_URL) + .set('kbn-xsrf', 'true') + .send(patchPayload); + + expect(createdList.version).to.be(1); + expect(patchedList.version).to.be(2); + + await retry.waitFor('patches should be persistent', async () => { + const { body: list } = await supertest + .get(LIST_URL) + .query({ id: patchedList.id }) + .set('kbn-xsrf', 'true'); + + expect(list.version).to.be(2); + return true; + }); + }); + + it('should give a 404 if it is given a fake id', async () => { + const simpleList: PatchListSchema = { + ...getUpdateMinimalListSchemaMock(), + id: '5096dec6-b6b9-4d8d-8f93-6c2602079d9d', + }; + const { body } = await supertest + .patch(LIST_URL) + .set('kbn-xsrf', 'true') + .send(simpleList) + .expect(404); + + expect(body).to.eql({ + status_code: 404, + message: 'list id: "5096dec6-b6b9-4d8d-8f93-6c2602079d9d" not found', + }); + }); + + describe('legacy list index (list created before migration to data stream)', () => { + beforeEach(async () => { + await deleteListsIndex(supertest, log); + }); + + afterEach(async () => { + await deleteListsIndex(supertest, log); + }); + it('should update list container that was created in legacy index and migrated through LIST_INDEX request', async () => { + const listId = 'random-list'; + // create legacy indices + await createListsIndices(es); + // create a simple list + await createListBypassingChecks({ es, id: listId }); + + // migrates old indices to data streams + await supertest.post(LIST_INDEX).set('kbn-xsrf', 'true'); + + // patch a simple list's name + const patchPayload: PatchListSchema = { + id: listId, + name: 'some other name', + }; + const { body } = await supertest + .patch(LIST_URL) + .set('kbn-xsrf', 'true') + .send(patchPayload) + .expect(200); + + expect(body.name).to.be('some other name'); + }); + + it('should update list container that was created in legacy index and not yet migrated', async () => { + const listId = 'random-list'; + // create legacy indices + await createListsIndices(es); + // create a simple list + await createListBypassingChecks({ es, id: listId }); + + // patch a simple list's name + const patchPayload: PatchListSchema = { + id: listId, + name: 'some other name', + }; + const { body } = await supertest + .patch(LIST_URL) + .set('kbn-xsrf', 'true') + .send(patchPayload) + .expect(200); + + expect(body.name).to.be('some other name'); + }); + }); + }); + }); +}; diff --git a/x-pack/test/lists_api_integration/security_and_spaces/tests/read_list_privileges.ts b/x-pack/test/lists_api_integration/security_and_spaces/tests/read_list_privileges.ts index c84bc80bb0231..9af6143b2152f 100644 --- a/x-pack/test/lists_api_integration/security_and_spaces/tests/read_list_privileges.ts +++ b/x-pack/test/lists_api_integration/security_and_spaces/tests/read_list_privileges.ts @@ -8,7 +8,7 @@ import expect from '@kbn/expect'; import { LIST_PRIVILEGES_URL } from '@kbn/securitysolution-list-constants'; -import { getReadPrivilegeMock } from '@kbn/lists-plugin/server/routes/read_privileges_route.mock'; +import { getReadPrivilegeMock } from '@kbn/lists-plugin/server/routes/list_privileges/read_list_privileges_route.mock'; import { FtrProviderContext } from '../../common/ftr_provider_context'; // eslint-disable-next-line import/no-default-export diff --git a/x-pack/test/lists_api_integration/security_and_spaces/tests/update_list_items.ts b/x-pack/test/lists_api_integration/security_and_spaces/tests/update_list_items.ts index e34ce8ba35465..e2bcddeb24841 100644 --- a/x-pack/test/lists_api_integration/security_and_spaces/tests/update_list_items.ts +++ b/x-pack/test/lists_api_integration/security_and_spaces/tests/update_list_items.ts @@ -12,7 +12,7 @@ import type { CreateListItemSchema, ListItemSchema, } from '@kbn/securitysolution-io-ts-list-types'; -import { LIST_URL, LIST_ITEM_URL } from '@kbn/securitysolution-list-constants'; +import { LIST_URL, LIST_ITEM_URL, LIST_INDEX } from '@kbn/securitysolution-list-constants'; import { getListItemResponseMockWithoutAutoGeneratedValues } from '@kbn/lists-plugin/common/schemas/response/list_item_schema.mock'; import { getCreateMinimalListItemSchemaMock } from '@kbn/lists-plugin/common/schemas/request/create_list_item_schema.mock'; import { getCreateMinimalListSchemaMock } from '@kbn/lists-plugin/common/schemas/request/create_list_schema.mock'; @@ -23,12 +23,17 @@ import { createListsIndex, deleteListsIndex, removeListItemServerGeneratedProperties, + createListsIndices, + createListBypassingChecks, + createListItemBypassingChecks, } from '../../utils'; // eslint-disable-next-line import/no-default-export export default ({ getService }: FtrProviderContext) => { const supertest = getService('supertest'); const log = getService('log'); + const retry = getService('retry'); + const es = getService('es'); describe('update_list_items', () => { describe('update list items', () => { @@ -64,8 +69,7 @@ export default ({ getService }: FtrProviderContext) => { const { body } = await supertest .put(LIST_ITEM_URL) .set('kbn-xsrf', 'true') - .send(updatedListItem) - .expect(200); + .send(updatedListItem); const outputListItem: Partial<ListItemSchema> = { ...getListItemResponseMockWithoutAutoGeneratedValues(), @@ -73,6 +77,16 @@ export default ({ getService }: FtrProviderContext) => { }; const bodyToCompare = removeListItemServerGeneratedProperties(body); expect(bodyToCompare).to.eql(outputListItem); + + await retry.waitFor('updates should be persistent', async () => { + const { body: listItemBody } = await supertest + .get(LIST_ITEM_URL) + .query({ id: getCreateMinimalListItemSchemaMock().id }) + .set('kbn-xsrf', 'true'); + + expect(removeListItemServerGeneratedProperties(listItemBody)).to.eql(outputListItem); + return true; + }); }); it('should update a single list item of value using an auto-generated id of both list and list item', async () => { @@ -116,6 +130,58 @@ export default ({ getService }: FtrProviderContext) => { list_id: outputListItem.list_id, }; expect(bodyToCompare).to.eql(outputListItem); + + await retry.waitFor('updates should be persistent', async () => { + const { body: listItemBody } = await supertest + .get(LIST_ITEM_URL) + .query({ id: createListItemBody.id }) + .set('kbn-xsrf', 'true'); + const listItemBodyToCompare = { + ...removeListItemServerGeneratedProperties(listItemBody), + list_id: outputListItem.list_id, + }; + expect(listItemBodyToCompare).to.eql(outputListItem); + return true; + }); + }); + + it('should remove unspecified in update payload meta property', async () => { + // create a simple list + await supertest + .post(LIST_URL) + .set('kbn-xsrf', 'true') + .send(getCreateMinimalListSchemaMock()) + .expect(200); + + // create a simple list item + await supertest + .post(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send({ ...getCreateMinimalListItemSchemaMock(), meta: { test: true } }) + .expect(200); + + // update a simple list item's value + const updatedListItem: UpdateListItemSchema = { + ...getUpdateMinimalListItemSchemaMock(), + value: '192.168.0.2', + }; + + const { body } = await supertest + .put(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send(updatedListItem); + + expect(body.meta).to.eql(undefined); + + await retry.waitFor('updates should be persistent', async () => { + const { body: listItemBody } = await supertest + .get(LIST_ITEM_URL) + .query({ id: getCreateMinimalListItemSchemaMock().id }) + .set('kbn-xsrf', 'true'); + + expect(listItemBody.meta).to.eql(undefined); + return true; + }); }); it('should give a 404 if it is given a fake id', async () => { @@ -151,6 +217,151 @@ export default ({ getService }: FtrProviderContext) => { message: 'list item id: "some-other-id" not found', }); }); + + describe('version control OCC', () => { + it('should return error if _version in payload mismatched', async () => { + const { id, ...listNoId } = getCreateMinimalListSchemaMock(); + // create a simple list with no id which will use an auto-generated id + const { body: createListBody } = await supertest + .post(LIST_URL) + .set('kbn-xsrf', 'true') + .send(listNoId) + .expect(200); + + // create a simple list item also with an auto-generated id using the list's auto-generated id + const listItem: CreateListItemSchema = { + ...getCreateMinimalListItemSchemaMock(), + list_id: createListBody.id, + }; + const { body: createListItemBody } = await supertest + .post(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send(listItem) + .expect(200); + + // update a simple list item's value + const updatedListItem: UpdateListItemSchema = { + ...getUpdateMinimalListItemSchemaMock(), + id: createListItemBody.id, + value: '192.168.0.2', + _version: createListItemBody._version, + }; + await supertest + .put(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send(updatedListItem) + .expect(200); + + // next update with the same _version should return 409 + const { body: errorBody } = await supertest + .put(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send(updatedListItem) + .expect(409); + + expect(errorBody.message).to.equal( + 'Conflict: versions mismatch. Provided versions:{"if_primary_term":1,"if_seq_no":0} does not match {"if_primary_term":1,"if_seq_no":1}' + ); + }); + + it('should return updated _version', async () => { + const { id, ...listNoId } = getCreateMinimalListSchemaMock(); + // create a simple list with no id which will use an auto-generated id + const { body: createListBody } = await supertest + .post(LIST_URL) + .set('kbn-xsrf', 'true') + .send(listNoId) + .expect(200); + + // create a simple list item also with an auto-generated id using the list's auto-generated id + const listItem: CreateListItemSchema = { + ...getCreateMinimalListItemSchemaMock(), + list_id: createListBody.id, + }; + const { body: createListItemBody } = await supertest + .post(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send(listItem) + .expect(200); + + // update a simple list item's value + const updatedListItem: UpdateListItemSchema = { + ...getUpdateMinimalListItemSchemaMock(), + id: createListItemBody.id, + value: '192.168.0.2', + _version: createListItemBody._version, + }; + const { body: updatedListItemBody } = await supertest + .put(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send(updatedListItem) + .expect(200); + + // next update with the new version should be successful + await supertest + .put(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send({ ...updatedListItem, _version: updatedListItemBody._version }) + .expect(200); + }); + }); + + describe('legacy list items index (list created before migration to data stream)', () => { + beforeEach(async () => { + await deleteListsIndex(supertest, log); + }); + + afterEach(async () => { + await deleteListsIndex(supertest, log); + }); + it('should update list item that was created in legacy index and migrated through LIST_INDEX request', async () => { + const listId = 'random-list'; + const listItemId = 'random-list-item'; + // create legacy indices + await createListsIndices(es); + // create a simple list + await createListBypassingChecks({ es, id: listId }); + await createListItemBypassingChecks({ es, listId, id: listItemId, value: 'random' }); + // migrates old indices to data streams + await supertest.post(LIST_INDEX).set('kbn-xsrf', 'true'); + + const updatedListItem: UpdateListItemSchema = { + id: listItemId, + value: 'new one', + }; + + const { body } = await supertest + .put(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send(updatedListItem) + .expect(200); + + expect(body.value).to.be('new one'); + }); + + it('should update list item that was created in legacy index and not yet migrated', async () => { + const listId = 'random-list'; + const listItemId = 'random-list-item'; + // create legacy indices + await createListsIndices(es); + // create a simple list + await createListBypassingChecks({ es, id: listId }); + await createListItemBypassingChecks({ es, listId, id: listItemId, value: 'random' }); + + const updatedListItem: UpdateListItemSchema = { + id: listItemId, + value: 'new one', + }; + + const { body } = await supertest + .put(LIST_ITEM_URL) + .set('kbn-xsrf', 'true') + .send(updatedListItem) + .expect(200); + + expect(body.value).to.be('new one'); + }); + }); }); }); }; diff --git a/x-pack/test/lists_api_integration/security_and_spaces/tests/update_lists.ts b/x-pack/test/lists_api_integration/security_and_spaces/tests/update_lists.ts index 7861c9fa2aa91..d9fc0bbe38bd3 100644 --- a/x-pack/test/lists_api_integration/security_and_spaces/tests/update_lists.ts +++ b/x-pack/test/lists_api_integration/security_and_spaces/tests/update_lists.ts @@ -8,7 +8,7 @@ import expect from '@kbn/expect'; import type { UpdateListSchema, ListSchema } from '@kbn/securitysolution-io-ts-list-types'; -import { LIST_URL } from '@kbn/securitysolution-list-constants'; +import { LIST_URL, LIST_INDEX } from '@kbn/securitysolution-list-constants'; import { getCreateMinimalListSchemaMock } from '@kbn/lists-plugin/common/schemas/request/create_list_schema.mock'; import { getListResponseMockWithoutAutoGeneratedValues } from '@kbn/lists-plugin/common/schemas/response/list_schema.mock'; @@ -17,6 +17,8 @@ import { createListsIndex, deleteListsIndex, removeListServerGeneratedProperties, + createListsIndices, + createListBypassingChecks, } from '../../utils'; import { FtrProviderContext } from '../../common/ftr_provider_context'; @@ -24,6 +26,8 @@ import { FtrProviderContext } from '../../common/ftr_provider_context'; export default ({ getService }: FtrProviderContext) => { const supertest = getService('supertest'); const log = getService('log'); + const retry = getService('retry'); + const es = getService('es'); describe('update_lists', () => { describe('update lists', () => { @@ -92,6 +96,79 @@ export default ({ getService }: FtrProviderContext) => { }; const bodyToCompare = removeListServerGeneratedProperties(body); expect(bodyToCompare).to.eql(outputList); + + await retry.waitFor('updates should be persistent', async () => { + const { body: list } = await supertest + .get(LIST_URL) + .query({ id: createListBody.id }) + .set('kbn-xsrf', 'true'); + + expect(list.version).to.be(2); + expect(list.name).to.be('some other name'); + return true; + }); + }); + + it('should remove unspecified meta field', async () => { + const { id, ...listNoId } = getCreateMinimalListSchemaMock(); + // create a simple list with no id which will use an auto-generated id + const { body: createListBody } = await supertest + .post(LIST_URL) + .set('kbn-xsrf', 'true') + .send({ ...listNoId, meta: { test: true } }); + + const updatedList: UpdateListSchema = { + ...getUpdateMinimalListSchemaMock(), + id: createListBody.id, + name: 'some other name', + }; + const { body: updatedListBody } = await supertest + .put(LIST_URL) + .set('kbn-xsrf', 'true') + .send(updatedList); + + expect(updatedListBody.meta).to.eql(undefined); + + await retry.waitFor('updates should be persistent', async () => { + const { body: list } = await supertest + .get(LIST_URL) + .query({ id: createListBody.id }) + .set('kbn-xsrf', 'true'); + + expect(list.meta).to.eql(undefined); + return true; + }); + }); + + it('should update meta field', async () => { + const { id, ...listNoId } = getCreateMinimalListSchemaMock(); + // create a simple list with no id which will use an auto-generated id + const { body: createListBody } = await supertest + .post(LIST_URL) + .set('kbn-xsrf', 'true') + .send({ ...listNoId, meta: { test: true } }); + + const updatedList: UpdateListSchema = { + ...getUpdateMinimalListSchemaMock(), + id: createListBody.id, + meta: { foo: 'some random value' }, + }; + const { body: updatedListBody } = await supertest + .put(LIST_URL) + .set('kbn-xsrf', 'true') + .send(updatedList); + + expect(updatedListBody.meta).to.eql({ foo: 'some random value' }); + + await retry.waitFor('updates should be persistent', async () => { + const { body: list } = await supertest + .get(LIST_URL) + .query({ id: createListBody.id }) + .set('kbn-xsrf', 'true'); + + expect(list.meta).to.eql({ foo: 'some random value' }); + return true; + }); }); it('should change the version of a list when it updates a property', async () => { @@ -138,6 +215,126 @@ export default ({ getService }: FtrProviderContext) => { message: 'list id: "5096dec6-b6b9-4d8d-8f93-6c2602079d9d" not found', }); }); + + describe('version control OCC', () => { + it('should return error if _version in payload mismatched', async () => { + const { id, ...listNoId } = getCreateMinimalListSchemaMock(); + // create a simple list with no id which will use an auto-generated id + const { body: createListBody } = await supertest + .post(LIST_URL) + .set('kbn-xsrf', 'true') + .send(listNoId) + .expect(200); + + // update a simple list's name + const updatedList: UpdateListSchema = { + ...getUpdateMinimalListSchemaMock(), + id: createListBody.id, + name: 'some other name', + _version: createListBody._version, + }; + await supertest.put(LIST_URL).set('kbn-xsrf', 'true').send(updatedList).expect(200); + + // next update with the same _version should return 409 + const { body: errorBody } = await supertest + .put(LIST_URL) + .set('kbn-xsrf', 'true') + .send(updatedList) + .expect(409); + + expect(errorBody.message).to.equal( + 'Conflict: versions mismatch. Provided versions:{"if_primary_term":1,"if_seq_no":0} does not match {"if_primary_term":1,"if_seq_no":1}' + ); + }); + + it('should return updated _version', async () => { + const { id, ...listNoId } = getCreateMinimalListSchemaMock(); + // create a simple list with no id which will use an auto-generated id + const { body: createListBody } = await supertest + .post(LIST_URL) + .set('kbn-xsrf', 'true') + .send(listNoId) + .expect(200); + + // update a simple list's name + const updatedList: UpdateListSchema = { + ...getUpdateMinimalListSchemaMock(), + id: createListBody.id, + name: 'some other name', + _version: createListBody._version, + }; + const { body: updatedListBody } = await supertest + .put(LIST_URL) + .set('kbn-xsrf', 'true') + .send(updatedList) + .expect(200); + + // version should be different + expect(updatedListBody._version).not.to.be(createListBody._version); + + // next update with the new version should be successful + await supertest + .put(LIST_URL) + .set('kbn-xsrf', 'true') + .send({ ...updatedList, _version: updatedListBody._version }) + .expect(200); + }); + }); + + describe('legacy list index (list created before migration to data stream)', () => { + beforeEach(async () => { + await deleteListsIndex(supertest, log); + }); + + afterEach(async () => { + await deleteListsIndex(supertest, log); + }); + it('should update list container that was created in legacy index and migrated through LIST_INDEX request', async () => { + const listId = 'random-list'; + // create legacy indices + await createListsIndices(es); + // create a simple list + await createListBypassingChecks({ es, id: listId }); + + // migrates old indices to data streams + await supertest.post(LIST_INDEX).set('kbn-xsrf', 'true'); + + // update a simple list's name + const updatedList: UpdateListSchema = { + ...getUpdateMinimalListSchemaMock(), + id: listId, + name: 'some other name', + }; + const { body } = await supertest + .put(LIST_URL) + .set('kbn-xsrf', 'true') + .send(updatedList) + .expect(200); + + expect(body.name).to.be('some other name'); + }); + + it('should update list container that was created in legacy index and not yet migrated', async () => { + const listId = 'random-list'; + // create legacy indices + await createListsIndices(es); + // create a simple list + await createListBypassingChecks({ es, id: listId }); + + // update a simple list's name + const updatedList: UpdateListSchema = { + ...getUpdateMinimalListSchemaMock(), + id: listId, + name: 'some other name', + }; + const { body } = await supertest + .put(LIST_URL) + .set('kbn-xsrf', 'true') + .send(updatedList) + .expect(200); + expect(body.name).to.be('some other name'); + }); + }); }); }); }; diff --git a/x-pack/test/lists_api_integration/utils.ts b/x-pack/test/lists_api_integration/utils.ts index 13ea80e20b0fd..780042a293dcc 100644 --- a/x-pack/test/lists_api_integration/utils.ts +++ b/x-pack/test/lists_api_integration/utils.ts @@ -6,6 +6,7 @@ */ import type SuperTest from 'supertest'; +import { v4 as uuidv4 } from 'uuid'; import type { Type, @@ -21,10 +22,16 @@ import { LIST_INDEX, LIST_ITEM_URL, } from '@kbn/securitysolution-list-constants'; -import { setPolicy, setTemplate, createBootstrapIndex } from '@kbn/securitysolution-es-utils'; +import { + setPolicy, + setTemplate, + setIndexTemplate, + createBootstrapIndex, +} from '@kbn/securitysolution-es-utils'; import { Client } from '@elastic/elasticsearch'; import { ToolingLog } from '@kbn/tooling-log'; import { getImportListItemAsBuffer } from '@kbn/lists-plugin/common/schemas/request/import_list_item_schema.mock'; +import { encodeHitVersion } from '@kbn/securitysolution-es-utils'; import { countDownTest } from '../detection_engine_api_integration/utils'; @@ -98,8 +105,8 @@ export const removeListServerGeneratedProperties = ( list: Partial<ListSchema> ): Partial<ListSchema> => { /* eslint-disable-next-line @typescript-eslint/naming-convention */ - const { created_at, updated_at, id, tie_breaker_id, _version, ...removedProperties } = list; - return removedProperties; + const { created_at, updated_at, id, tie_breaker_id, _version, '@timestamp': _t, ...props } = list; + return props; }; /** @@ -110,8 +117,8 @@ export const removeListItemServerGeneratedProperties = ( list: Partial<ListItemSchema> ): Partial<ListItemSchema> => { /* eslint-disable-next-line @typescript-eslint/naming-convention */ - const { created_at, updated_at, id, tie_breaker_id, _version, ...removedProperties } = list; - return removedProperties; + const { created_at, updated_at, id, tie_breaker_id, _version, '@timestamp': _t, ...props } = list; + return props; }; /** @@ -418,87 +425,118 @@ export const waitForTextListItems = async ( await Promise.all(itemValues.map((item) => waitForTextListItem(supertest, log, item, fileName))); }; +const testPolicy = { + policy: { + phases: { + hot: { + min_age: '0ms', + actions: { + rollover: { + max_size: '50gb', + }, + }, + }, + }, + }, +}; + +const listsMappings = { + dynamic: 'strict', + properties: { + name: { + type: 'keyword', + }, + deserializer: { + type: 'keyword', + }, + serializer: { + type: 'keyword', + }, + description: { + type: 'keyword', + }, + type: { + type: 'keyword', + }, + tie_breaker_id: { + type: 'keyword', + }, + meta: { + enabled: 'false', + type: 'object', + }, + created_at: { + type: 'date', + }, + updated_at: { + type: 'date', + }, + created_by: { + type: 'keyword', + }, + updated_by: { + type: 'keyword', + }, + version: { + type: 'keyword', + }, + immutable: { + type: 'boolean', + }, + }, +}; + +const itemsMappings = { + dynamic: 'strict', + properties: { + tie_breaker_id: { + type: 'keyword', + }, + list_id: { + type: 'keyword', + }, + deserializer: { + type: 'keyword', + }, + serializer: { + type: 'keyword', + }, + meta: { + enabled: 'false', + type: 'object', + }, + created_at: { + type: 'date', + }, + updated_at: { + type: 'date', + }, + created_by: { + type: 'keyword', + }, + updated_by: { + type: 'keyword', + }, + ip: { + type: 'ip', + }, + keyword: { + type: 'keyword', + }, + }, +}; + /** * Convenience function for creating legacy index templates to * test out logic updating to new index templates * @param es es client */ export const createLegacyListsIndices = async (es: Client) => { - await setPolicy(es, '.lists-default', { - policy: { - phases: { - hot: { - min_age: '0ms', - actions: { - rollover: { - max_size: '50gb', - }, - }, - }, - }, - }, - }); - await setPolicy(es, '.items-default', { - policy: { - phases: { - hot: { - min_age: '0ms', - actions: { - rollover: { - max_size: '50gb', - }, - }, - }, - }, - }, - }); + await setPolicy(es, '.lists-default', testPolicy); + await setPolicy(es, '.items-default', testPolicy); await setTemplate(es, '.lists-default', { index_patterns: [`.lists-default-*`], - mappings: { - dynamic: 'strict', - properties: { - name: { - type: 'keyword', - }, - deserializer: { - type: 'keyword', - }, - serializer: { - type: 'keyword', - }, - description: { - type: 'keyword', - }, - type: { - type: 'keyword', - }, - tie_breaker_id: { - type: 'keyword', - }, - meta: { - enabled: 'false', - type: 'object', - }, - created_at: { - type: 'date', - }, - updated_at: { - type: 'date', - }, - created_by: { - type: 'keyword', - }, - updated_by: { - type: 'keyword', - }, - version: { - type: 'keyword', - }, - immutable: { - type: 'boolean', - }, - }, - }, + mappings: listsMappings, settings: { index: { lifecycle: { @@ -510,42 +548,7 @@ export const createLegacyListsIndices = async (es: Client) => { }); await setTemplate(es, '.items-default', { index_patterns: [`.items-default-*`], - mappings: { - dynamic: 'strict', - properties: { - tie_breaker_id: { - type: 'keyword', - }, - list_id: { - type: 'keyword', - }, - deserializer: { - type: 'keyword', - }, - serializer: { - type: 'keyword', - }, - meta: { - enabled: 'false', - type: 'object', - }, - created_at: { - type: 'date', - }, - updated_at: { - type: 'date', - }, - created_by: { - type: 'keyword', - }, - updated_by: { - type: 'keyword', - }, - ip: { - type: 'ip', - }, - }, - }, + mappings: itemsMappings, settings: { index: { lifecycle: { @@ -558,3 +561,126 @@ export const createLegacyListsIndices = async (es: Client) => { await createBootstrapIndex(es, '.lists-default'); await createBootstrapIndex(es, '.items-default'); }; + +/** + * Utility to create list indices, before they were migrated to data streams + * @param es ES client + */ +export const createListsIndices = async (es: Client) => { + await setPolicy(es, '.lists-default', testPolicy); + await setPolicy(es, '.items-default', testPolicy); + await setIndexTemplate(es, '.lists-default', { + index_patterns: [`.lists-default-*`], + template: { + mappings: listsMappings, + settings: { + index: { + lifecycle: { + name: '.lists-default', + rollover_alias: '.lists-default', + }, + }, + mapping: { + total_fields: { + limit: 10000, + }, + }, + }, + }, + }); + await setIndexTemplate(es, '.items-default', { + index_patterns: [`.items-default-*`], + template: { + mappings: itemsMappings, + settings: { + index: { + lifecycle: { + name: '.items-default', + rollover_alias: '.items-default', + }, + }, + mapping: { + total_fields: { + limit: 10000, + }, + }, + }, + }, + }); + await createBootstrapIndex(es, '.lists-default'); + await createBootstrapIndex(es, '.items-default'); +}; + +/** + * utility to create list directly by using ES, bypassing all checks + * useful, to create list in legacy indices + */ +export const createListBypassingChecks = async ({ es, id }: { es: Client; id: string }) => { + const createdAt = new Date().toISOString(); + const body = { + created_at: createdAt, + created_by: 'mock-user', + description: 'mock-description', + name: 'mock-name', + tie_breaker_id: uuidv4(), + type: 'keyword', + updated_at: createdAt, + updated_by: 'mock-user', + immutable: false, + version: 1, + }; + + const response = await es.create({ + body, + id, + index: '.lists-default', + refresh: 'wait_for', + }); + + return { + _version: encodeHitVersion(response), + id: response._id, + ...body, + }; +}; + +/** + * utility to create list item directly by using ES, bypassing all checks + * useful, to create list item in legacy indices + * supports keyword only + */ +export const createListItemBypassingChecks = async ({ + es, + listId, + id, + value, +}: { + es: Client; + listId: string; + id: string; + value: string; +}) => { + const createdAt = new Date().toISOString(); + const body = { + created_at: createdAt, + created_by: 'mock-user', + tie_breaker_id: uuidv4(), + updated_at: createdAt, + updated_by: 'mock-user', + list_id: listId, + keyword: value, + }; + + const response = await es.create({ + body, + id, + index: '.items-default', + refresh: 'wait_for', + }); + + return { + _version: encodeHitVersion(response), + id: response._id, + ...body, + }; +}; diff --git a/x-pack/test/osquery_cypress/artifact_manager.ts b/x-pack/test/osquery_cypress/artifact_manager.ts index d07fec832722f..0239174434a37 100644 --- a/x-pack/test/osquery_cypress/artifact_manager.ts +++ b/x-pack/test/osquery_cypress/artifact_manager.ts @@ -6,5 +6,5 @@ */ export async function getLatestVersion(): Promise<string> { - return '8.9.0-SNAPSHOT'; + return '8.10.0-SNAPSHOT'; } diff --git a/x-pack/test/osquery_cypress/serverless_cli_config.ts b/x-pack/test/osquery_cypress/serverless_cli_config.ts new file mode 100644 index 0000000000000..8b9f15ded02c6 --- /dev/null +++ b/x-pack/test/osquery_cypress/serverless_cli_config.ts @@ -0,0 +1,46 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { FtrConfigProviderContext } from '@kbn/test'; + +import { startOsqueryCypress } from './runner'; + +export default async function ({ readConfigFile }: FtrConfigProviderContext) { + const securitySolutionCypressConfig = await readConfigFile( + require.resolve( + '../../test_serverless/functional/test_suites/security/cypress/security_config.base.ts' + ) + ); + + return { + ...securitySolutionCypressConfig.getAll(), + + esTestCluster: { + ...securitySolutionCypressConfig.get('esTestCluster'), + serverArgs: [ + ...securitySolutionCypressConfig.get('esTestCluster.serverArgs'), + 'http.host=0.0.0.0', + ], + }, + + kbnTestServer: { + ...securitySolutionCypressConfig.get('kbnTestServer'), + serverArgs: [ + ...securitySolutionCypressConfig.get('kbnTestServer.serverArgs'), + `--xpack.fleet.agents.fleet_server.hosts=["https://host.docker.internal:8220"]`, + `--xpack.fleet.agents.elasticsearch.host=http://host.docker.internal:${securitySolutionCypressConfig.get( + 'servers.elasticsearch.port' + )}`, + `--xpack.fleet.packages.0.name=osquery_manager`, + `--xpack.fleet.packages.0.version=latest`, + `--xpack.fleet.internal.fleetServerStandalone=false`, + ], + }, + + testRunner: startOsqueryCypress, + }; +} diff --git a/x-pack/test/osquery_cypress/utils.ts b/x-pack/test/osquery_cypress/utils.ts index 84c591dbc58bb..572170e0ec301 100644 --- a/x-pack/test/osquery_cypress/utils.ts +++ b/x-pack/test/osquery_cypress/utils.ts @@ -16,12 +16,17 @@ import { } from '@kbn/fleet-plugin/common/types'; import { ToolingLog } from '@kbn/tooling-log'; +export const DEFAULT_HEADERS = Object.freeze({ + 'x-elastic-internal-product': 'security-solution', +}); + export const getInstalledIntegration = async (kbnClient: KbnClient, integrationName: string) => { const { data: { item }, } = await kbnClient.request<{ item: PackagePolicy }>({ method: 'GET', path: `/api/fleet/epm/packages/${integrationName}`, + headers: DEFAULT_HEADERS, }); return item; diff --git a/x-pack/test/plugin_api_integration/plugins/sample_task_plugin/server/init_routes.ts b/x-pack/test/plugin_api_integration/plugins/sample_task_plugin/server/init_routes.ts index 80da1e13712d2..274bac5fc5dc0 100644 --- a/x-pack/test/plugin_api_integration/plugins/sample_task_plugin/server/init_routes.ts +++ b/x-pack/test/plugin_api_integration/plugins/sample_task_plugin/server/init_routes.ts @@ -51,6 +51,7 @@ export function initRoutes( validate: { body: schema.object({ task: schema.object({ + enabled: schema.boolean({ defaultValue: true }), taskType: schema.string(), schedule: schema.maybe( schema.object({ diff --git a/x-pack/test/plugin_api_integration/plugins/sample_task_plugin/server/plugin.ts b/x-pack/test/plugin_api_integration/plugins/sample_task_plugin/server/plugin.ts index a9d76949abc69..d7bb483fcac01 100644 --- a/x-pack/test/plugin_api_integration/plugins/sample_task_plugin/server/plugin.ts +++ b/x-pack/test/plugin_api_integration/plugins/sample_task_plugin/server/plugin.ts @@ -233,6 +233,15 @@ export class SampleTaskManagerFixturePlugin }, }), }, + taskToDisable: { + title: 'Task used for testing it being disabled', + description: '', + maxAttempts: 1, + paramsSchema: schema.object({}), + createTaskRunner: () => ({ + async run() {}, + }), + }, }); const taskWithTiming = { diff --git a/x-pack/test/plugin_api_integration/test_suites/task_manager/check_registered_task_types.ts b/x-pack/test/plugin_api_integration/test_suites/task_manager/check_registered_task_types.ts index 16028a11275d4..1d328f05545d6 100644 --- a/x-pack/test/plugin_api_integration/test_suites/task_manager/check_registered_task_types.ts +++ b/x-pack/test/plugin_api_integration/test_suites/task_manager/check_registered_task_types.ts @@ -34,6 +34,7 @@ export default function ({ getService }: FtrProviderContext) { 'sampleRecurringTaskWithInvalidIndirectParam', 'sampleOneTimeTaskWithInvalidIndirectParam', 'sampleTaskWithParamsSchema', + 'taskToDisable', ]; // This test is meant to fail when any change is made in task manager registered types. diff --git a/x-pack/test/plugin_api_integration/test_suites/task_manager/health_route.ts b/x-pack/test/plugin_api_integration/test_suites/task_manager/health_route.ts index 07e9e3c165be2..066a004df3814 100644 --- a/x-pack/test/plugin_api_integration/test_suites/task_manager/health_route.ts +++ b/x-pack/test/plugin_api_integration/test_suites/task_manager/health_route.ts @@ -307,5 +307,33 @@ export default function ({ getService }: FtrProviderContext) { 'number' ); }); + + it('should exclude disabled tasks', async () => { + const interval = '9s'; + await scheduleTask({ + enabled: false, + taskType: 'taskToDisable', + schedule: { interval }, + }); + + const timestamp = new Date(); + + const health = await retry.try(async () => { + const result = await getHealth(); + expect(new Date(result.stats.runtime.timestamp).getTime()).to.be.greaterThan( + timestamp.getTime() + ); + expect(new Date(result.stats.workload.timestamp).getTime()).to.be.greaterThan( + timestamp.getTime() + ); + return result; + }); + + expect(health.stats.runtime.value.execution.duration.taskToDisable).to.eql(undefined); + expect(health.stats.workload.value.task_types.taskToDisable).to.eql(undefined); + expect(health.stats.workload.value.schedule.find(([val]) => val === interval)).to.eql( + undefined + ); + }); }); } diff --git a/x-pack/test/reporting_functional/reporting_and_timeout.config.ts b/x-pack/test/reporting_functional/reporting_and_timeout.config.ts deleted file mode 100644 index 05e77ea70cd6f..0000000000000 --- a/x-pack/test/reporting_functional/reporting_and_timeout.config.ts +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { FtrConfigProviderContext } from '@kbn/test'; -import { resolve } from 'path'; - -export default async function ({ readConfigFile }: FtrConfigProviderContext) { - const functionalConfig = await readConfigFile(require.resolve('./reporting_and_security.config')); - - return { - ...functionalConfig.getAll(), - junit: { reportName: 'X-Pack Reporting Functional Tests: Reports and Timeout Handling' }, - testFiles: [resolve(__dirname, './reporting_and_timeout')], - kbnTestServer: { - ...functionalConfig.get('kbnTestServer'), - serverArgs: [ - ...functionalConfig.get('kbnTestServer.serverArgs'), - `--xpack.reporting.capture.timeouts.waitForElements=1s`, - ], - }, - }; -} diff --git a/x-pack/test/reporting_functional/reporting_and_timeout/fixtures/baseline/warnings_capture_b.png b/x-pack/test/reporting_functional/reporting_and_timeout/fixtures/baseline/warnings_capture_b.png deleted file mode 100644 index e86939f7ff741..0000000000000 Binary files a/x-pack/test/reporting_functional/reporting_and_timeout/fixtures/baseline/warnings_capture_b.png and /dev/null differ diff --git a/x-pack/test/reporting_functional/reporting_and_timeout/index.ts b/x-pack/test/reporting_functional/reporting_and_timeout/index.ts deleted file mode 100644 index c420c76d77304..0000000000000 --- a/x-pack/test/reporting_functional/reporting_and_timeout/index.ts +++ /dev/null @@ -1,98 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import expect from '@kbn/expect'; -import fs from 'fs'; -import path from 'path'; -import { PNG } from 'pngjs'; -import { FtrProviderContext } from '../ftr_provider_context'; - -// eslint-disable-next-line import/no-default-export -export default function ({ getService, getPageObjects }: FtrProviderContext) { - const PageObjects = getPageObjects(['common', 'reporting', 'dashboard']); - const log = getService('log'); - const reportingAPI = getService('reportingAPI'); - const reportingFunctional = getService('reportingFunctional'); - const browser = getService('browser'); - const png = getService('png'); - const config = getService('config'); - const screenshotDir = config.get('screenshots.directory'); - - // FLAKY: https://github.com/elastic/kibana/issues/135309 - describe.skip('Reporting Functional Tests with forced timeout', function () { - const dashboardTitle = 'Ecom Dashboard Hidden Panel Titles'; - const sessionPngFullPage = 'warnings_capture_session_a'; - const sessionPngCropped = 'warnings_capture_session_b'; - const baselinePng = path.resolve(__dirname, 'fixtures/baseline/warnings_capture_b.png'); - - let url: string; - before(async () => { - await reportingAPI.logTaskManagerHealth(); - await reportingFunctional.initEcommerce(); - - await PageObjects.common.navigateToApp('dashboard'); - await PageObjects.dashboard.loadSavedDashboard(dashboardTitle); - await PageObjects.reporting.setTimepickerInEcommerceDataRange(); - await browser.setWindowSize(800, 850); - - await PageObjects.reporting.openPngReportingPanel(); - await PageObjects.reporting.clickGenerateReportButton(); - - url = await PageObjects.reporting.getReportURL(60000); - - const res = await PageObjects.reporting.getResponse(url); - expect(res.status).to.equal(200); - expect(res.get('content-type')).to.equal('image/png'); - }); - - after(async () => { - await reportingFunctional.teardownEcommerce(); - }); - - it('adds a visual warning in the report output', async () => { - const captureData = await PageObjects.reporting.getRawPdfReportData(url); - const sessionReport = await PageObjects.reporting.writeSessionReport( - sessionPngFullPage, - 'png', - captureData, - screenshotDir - ); - - const region = { height: 320, width: 1540, srcX: 20, srcY: 10 }; - const dstPath = path.resolve(screenshotDir, sessionPngCropped + '.png'); - const dst = new PNG({ width: region.width, height: region.height }); - - const pngSessionFilePath = await new Promise<string>((resolve) => { - fs.createReadStream(sessionReport) - .pipe(new PNG()) - .on('parsed', function () { - log.info(`cropping report to the visual warning area`); - this.bitblt(dst, region.srcX, region.srcY, region.width, region.height, 0, 0); - dst.pack().pipe(fs.createWriteStream(dstPath)); - resolve(dstPath); - }); - }); - - log.info(`saved cropped file to ${dstPath}`); - - expect( - await png.checkIfPngsMatch(pngSessionFilePath, baselinePng, screenshotDir) - ).to.be.lessThan(0.09); - - /** - * This test may fail when styling differences affect the result. To update the snapshot: - * - * 1. Run the functional test, to generate new temporary files for screenshot comparison. - * 2. Save the screenshot as the new baseline file: - * cp \ - * x-pack/test/functional/screenshots/session/warnings_capture_session_b_actual.png \ - * x-pack/test/reporting_functional/reporting_and_timeout/fixtures/baseline/warnings_capture_b.png - * 3. Commit the changes to the .png file - */ - }); - }); -} diff --git a/x-pack/test/saved_object_tagging/functional/tests/listing.ts b/x-pack/test/saved_object_tagging/functional/tests/listing.ts index 8cb8ded66e1f7..7b2d19095359e 100644 --- a/x-pack/test/saved_object_tagging/functional/tests/listing.ts +++ b/x-pack/test/saved_object_tagging/functional/tests/listing.ts @@ -14,8 +14,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) { const PageObjects = getPageObjects(['common', 'security', 'savedObjects', 'tagManagement']); const tagManagementPage = PageObjects.tagManagement; - // FLAKY: https://github.com/elastic/kibana/issues/90578 - describe.skip('table listing', () => { + describe('table listing', () => { before(async () => { await kibanaServer.importExport.load( 'x-pack/test/saved_object_tagging/common/fixtures/es_archiver/functional_base/data.json' diff --git a/x-pack/test/screenshot_creation/apps/response_ops_docs/stack_alerting/es_query_rule.ts b/x-pack/test/screenshot_creation/apps/response_ops_docs/stack_alerting/es_query_rule.ts new file mode 100644 index 0000000000000..f6f41a61f1bb2 --- /dev/null +++ b/x-pack/test/screenshot_creation/apps/response_ops_docs/stack_alerting/es_query_rule.ts @@ -0,0 +1,112 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { FtrProviderContext } from '../../../ftr_provider_context'; + +export default function ({ getService, getPageObjects }: FtrProviderContext) { + const browser = getService('browser'); + const commonScreenshots = getService('commonScreenshots'); + const find = getService('find'); + const rules = getService('rules'); + const testSubjects = getService('testSubjects'); + const pageObjects = getPageObjects(['common', 'header']); + const screenshotDirectories = ['response_ops_docs', 'stack_alerting']; + const ruleName = 'test query rule'; + + const validQueryJson = JSON.stringify({ + query: { + bool: { + filter: [ + { + term: { + 'host.keyword': 'www.elastic.co', + }, + }, + ], + }, + }, + }); + const invalidQueryJson = JSON.stringify({ + query: { + bool: { + filter: [ + { + error_clause: { + 'host.keyword': 'www.elastic.co', + }, + }, + ], + }, + }, + }); + + describe('elasticsearch query rule', function () { + it('create rule screenshot', async () => { + await pageObjects.common.navigateToApp('triggersActions'); + await pageObjects.header.waitUntilLoadingHasFinished(); + await rules.common.clickCreateAlertButton(); + await testSubjects.scrollIntoView('ruleNameInput'); + await testSubjects.setValue('ruleNameInput', ruleName); + await testSubjects.click(`.es-query-SelectOption`); + await testSubjects.click('queryFormType_esQuery'); + const indexSelector = await testSubjects.find('selectIndexExpression'); + await indexSelector.click(); + const indexComboBox = await find.byCssSelector('#indexSelectSearchBox'); + await indexComboBox.type('kibana_sample_data_logs '); + const filterSelectItem = await find.byCssSelector(`.euiFilterSelectItem`); + await filterSelectItem.click(); + await testSubjects.click('thresholdAlertTimeFieldSelect'); + await testSubjects.setValue('thresholdAlertTimeFieldSelect', '@timestamp'); + await testSubjects.click('closePopover'); + await commonScreenshots.takeScreenshot( + 'rule-types-es-query-conditions', + screenshotDirectories, + 1400, + 1500 + ); + // Test a valid query + await testSubjects.setValue('queryJsonEditor', '', { + clearWithKeyboard: true, + }); + const queryJsonEditor = await testSubjects.find('queryJsonEditor'); + await queryJsonEditor.clearValue(); + await testSubjects.setValue('queryJsonEditor', validQueryJson, { + clearWithKeyboard: true, + }); + await testSubjects.click('forLastExpression'); + await testSubjects.setValue('timeWindowSizeNumber', '1'); + await testSubjects.setValue('timeWindowUnitSelect', 'day'); + await browser.pressKeys(browser.keys.ESCAPE); + await testSubjects.click('testQuery'); + await testSubjects.scrollIntoView('ruleNameInput'); + await commonScreenshots.takeScreenshot( + 'rule-types-es-query-valid', + screenshotDirectories, + 1400, + 1500 + ); + // Test an invalid query + await testSubjects.setValue('queryJsonEditor', '', { + clearWithKeyboard: true, + }); + await queryJsonEditor.clearValue(); + await testSubjects.setValue('queryJsonEditor', invalidQueryJson, { + clearWithKeyboard: true, + }); + await testSubjects.click('testQuery'); + await testSubjects.scrollIntoView('ruleNameInput'); + await pageObjects.header.waitUntilLoadingHasFinished(); + await commonScreenshots.takeScreenshot( + 'rule-types-es-query-invalid', + screenshotDirectories, + 1400, + 1500 + ); + await testSubjects.click('cancelSaveRuleButton'); + }); + }); +} diff --git a/x-pack/test/screenshot_creation/apps/response_ops_docs/stack_alerting/index.ts b/x-pack/test/screenshot_creation/apps/response_ops_docs/stack_alerting/index.ts index 768cce8a408f4..e4a2877173834 100644 --- a/x-pack/test/screenshot_creation/apps/response_ops_docs/stack_alerting/index.ts +++ b/x-pack/test/screenshot_creation/apps/response_ops_docs/stack_alerting/index.ts @@ -100,8 +100,9 @@ export default function ({ loadTestFile, getService }: FtrProviderContext) { await actions.api.deleteAllConnectors(); }); - loadTestFile(require.resolve('./list_view')); + loadTestFile(require.resolve('./es_query_rule')); loadTestFile(require.resolve('./index_threshold_rule')); + loadTestFile(require.resolve('./list_view')); loadTestFile(require.resolve('./metrics_threshold_rule')); loadTestFile(require.resolve('./tracking_containment_rule')); }); diff --git a/x-pack/test/screenshot_creation/apps/response_ops_docs/stack_connectors/connector_types.ts b/x-pack/test/screenshot_creation/apps/response_ops_docs/stack_connectors/connector_types.ts index 7b4b35d64f389..f4907a1df0969 100644 --- a/x-pack/test/screenshot_creation/apps/response_ops_docs/stack_connectors/connector_types.ts +++ b/x-pack/test/screenshot_creation/apps/response_ops_docs/stack_connectors/connector_types.ts @@ -23,6 +23,10 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { `"rule_name": "{{rule.name}}",\n` + `"alert_id": "{{alert.id}}",\n` + `"context_message": "{{context.message}}"\n`; + const webhookJson = + `{\n` + + `"short_description": "{{context.rule.name}}",\n` + + `"description": "{{context.rule.description}}"`; const emailConnectorName = 'my-email-connector'; describe('connector types', function () { @@ -151,5 +155,21 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { 1024 ); }); + + it('webhook connector screenshots', async () => { + await pageObjects.common.navigateToApp('connectors'); + await pageObjects.header.waitUntilLoadingHasFinished(); + await actions.common.openNewConnectorForm('webhook'); + await testSubjects.setValue('nameInput', 'Webhook test connector'); + await testSubjects.setValue('webhookUrlText', 'https://example.com'); + await testSubjects.setValue('webhookUserInput', 'testuser'); + await testSubjects.setValue('webhookPasswordInput', 'password'); + await commonScreenshots.takeScreenshot('webhook-connector', screenshotDirectories); + const saveTestButton = await testSubjects.find('create-connector-flyout-save-test-btn'); + await saveTestButton.click(); + await testSubjects.setValue('actionJsonEditor', webhookJson); + await commonScreenshots.takeScreenshot('webhook-params-test', screenshotDirectories); + await testSubjects.click('euiFlyoutCloseButton'); + }); }); } diff --git a/x-pack/test/security_api_integration/packages/helpers/kibana.jsonc b/x-pack/test/security_api_integration/packages/helpers/kibana.jsonc index 6eeec0c14c5cd..accbad4620166 100644 --- a/x-pack/test/security_api_integration/packages/helpers/kibana.jsonc +++ b/x-pack/test/security_api_integration/packages/helpers/kibana.jsonc @@ -1,6 +1,6 @@ { "type": "shared-common", "id": "@kbn/security-api-integration-helpers", - "owner": "@elastic/kibana-core", + "owner": "@elastic/kibana-security", "devOnly": true } diff --git a/x-pack/test/security_solution_cypress/cypress/cypress_ci.config.ts b/x-pack/test/security_solution_cypress/cypress/cypress_ci.config.ts index 6927775fcce8a..fe15c610cd7cf 100644 --- a/x-pack/test/security_solution_cypress/cypress/cypress_ci.config.ts +++ b/x-pack/test/security_solution_cypress/cypress/cypress_ci.config.ts @@ -10,9 +10,14 @@ import { esArchiver } from './support/es_archiver'; // eslint-disable-next-line import/no-default-export export default defineCypressConfig({ + reporter: '../../../node_modules/cypress-multi-reporters', + reporterOptions: { + configFile: './cypress/reporter_config.json', + }, defaultCommandTimeout: 150000, env: { grepFilterSpecs: true, + grepOmitFiltered: true, grepTags: '@ess', }, execTimeout: 150000, diff --git a/x-pack/test/security_solution_cypress/cypress/cypress_ci_serverless.config.ts b/x-pack/test/security_solution_cypress/cypress/cypress_ci_serverless.config.ts index 86ab94768f8e2..5ce5af4e639f6 100644 --- a/x-pack/test/security_solution_cypress/cypress/cypress_ci_serverless.config.ts +++ b/x-pack/test/security_solution_cypress/cypress/cypress_ci_serverless.config.ts @@ -10,9 +10,14 @@ import { esArchiver } from './support/es_archiver'; // eslint-disable-next-line import/no-default-export export default defineCypressConfig({ + reporter: '../../../node_modules/cypress-multi-reporters', + reporterOptions: { + configFile: './cypress/reporter_config.json', + }, defaultCommandTimeout: 150000, env: { grepFilterSpecs: true, + grepOmitFiltered: true, grepTags: '@serverless --@brokenInServerless', }, execTimeout: 150000, diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/data_sources/create_runtime_field.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/data_sources/create_runtime_field.cy.ts index 3f30d0d73d999..60f75e3a89a44 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/data_sources/create_runtime_field.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/data_sources/create_runtime_field.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../tags'; - import { login, visit } from '../../tasks/login'; import { openTimelineUsingToggle } from '../../tasks/security_main'; import { openTimelineFieldsBrowser, populateTimeline } from '../../tasks/timeline'; @@ -27,7 +25,7 @@ import { GET_TIMELINE_HEADER } from '../../screens/timeline'; const alertRunTimeField = 'field.name.alert.page'; const timelineRuntimeField = 'field.name.timeline'; -describe('Create DataView runtime field', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Create DataView runtime field', { tags: ['@ess', '@serverless'] }, () => { before(() => { deleteRuntimeField('security-solution-default', alertRunTimeField); deleteRuntimeField('security-solution-default', timelineRuntimeField); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/data_sources/sourcerer.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/data_sources/sourcerer.cy.ts index 255e20dda250c..1a776101e4f8b 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/data_sources/sourcerer.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/data_sources/sourcerer.cy.ts @@ -9,7 +9,6 @@ import { DEFAULT_ALERTS_INDEX, DEFAULT_INDEX_PATTERN, } from '@kbn/security-solution-plugin/common/constants'; -import { tag } from '../../tags'; import { login, loginWithUser, visit, visitWithUser } from '../../tasks/login'; @@ -51,7 +50,7 @@ describe('Sourcerer', () => { cy.task('esArchiverResetKibana'); dataViews.forEach((dataView: string) => postDataView(dataView)); }); - describe('permissions', { tags: tag.ESS }, () => { + describe('permissions', { tags: '@ess' }, () => { before(() => { createUsersAndRoles(usersToCreate, rolesToCreate); }); @@ -62,7 +61,7 @@ describe('Sourcerer', () => { }); }); - describe('Default scope', { tags: [tag.ESS, tag.SERVERLESS] }, () => { + describe('Default scope', { tags: ['@ess', '@serverless'] }, () => { beforeEach(() => { cy.clearLocalStorage(); login(); @@ -124,7 +123,7 @@ describe('Sourcerer', () => { it( 'adds a pattern to the default index and correctly filters out auditbeat-*', - { tags: tag.BROKEN_IN_SERVERLESS }, + { tags: '@brokenInServerless' }, () => { openSourcerer(); isSourcererSelection(`auditbeat-*`); @@ -139,7 +138,7 @@ describe('Sourcerer', () => { ); }); }); -describe('Timeline scope', { tags: tag.BROKEN_IN_SERVERLESS }, () => { +describe('Timeline scope', { tags: '@brokenInServerless' }, () => { beforeEach(() => { cy.clearLocalStorage(); login(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/alert_tags.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/alert_tags.cy.ts index 940e01b0b9ced..39758e5a097c8 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/alert_tags.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/alert_tags.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../tags'; - import { getNewRule } from '../../objects/rule'; import { clickAlertTag, @@ -26,7 +24,7 @@ import { UNSELECTED_ALERT_TAG, } from '../../screens/alerts'; -describe('Alert tagging', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Alert tagging', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); cy.task('esArchiverResetKibana'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/alerts_charts.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/alerts_charts.cy.ts index e2ce8ab68f4b1..656239c7308d3 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/alerts_charts.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/alerts_charts.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../tags'; - import { getNewRule } from '../../objects/rule'; import { ALERTS_COUNT } from '../../screens/alerts'; import { @@ -26,7 +24,7 @@ import { } from '../../screens/search_bar'; import { TOASTER } from '../../screens/alerts_detection_rules'; -describe('Histogram legend hover actions', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Histogram legend hover actions', { tags: ['@ess', '@serverless'] }, () => { const ruleConfigs = getNewRule(); before(() => { diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/alerts_detection_callouts_index_outdated.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/alerts_detection_callouts_index_outdated.cy.ts index 1a1b47e925c91..f9aa9d08c2954 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/alerts_detection_callouts_index_outdated.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/alerts_detection_callouts_index_outdated.cy.ts @@ -6,7 +6,6 @@ */ import { ROLES } from '@kbn/security-solution-plugin/common/test'; -import { tag } from '../../tags'; import { DETECTIONS_RULE_MANAGEMENT_URL, ALERTS_URL } from '../../urls/navigation'; import { getNewRule } from '../../objects/rule'; @@ -33,7 +32,7 @@ const waitForPageTitleToBeShown = () => { describe( 'Detections > Need Admin Callouts indicating an admin is needed to migrate the alert data set', - { tags: tag.ESS }, + { tags: '@ess' }, () => { before(() => { // First, we have to open the app on behalf of a privileged user in order to initialize it. diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/cti_enrichments.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/cti_enrichments.cy.ts index 35a328cb7aabe..27921bb9b2d70 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/cti_enrichments.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/cti_enrichments.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../tags'; - import { disableExpandableFlyout } from '../../tasks/api_calls/kibana_advanced_settings'; import { getNewThreatIndicatorRule, indicatorRuleMatchingDoc } from '../../objects/rule'; import { cleanKibana } from '../../tasks/common'; @@ -30,7 +28,7 @@ import { openJsonView, openThreatIndicatorDetails } from '../../tasks/alerts_det import { DETECTIONS_RULE_MANAGEMENT_URL } from '../../urls/navigation'; import { addsFieldsToTimeline } from '../../tasks/rule_details'; -describe('CTI Enrichment', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('CTI Enrichment', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); cy.task('esArchiverLoad', 'threat_indicator'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/enrichments.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/enrichments.cy.ts index 07a5ceb837c48..3cf0665795cf6 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/enrichments.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/enrichments.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../tags'; - import { getNewRule } from '../../objects/rule'; import { HOST_RISK_HEADER_COLIMN, @@ -32,7 +30,7 @@ import { login, visit } from '../../tasks/login'; import { ALERTS_URL } from '../../urls/navigation'; -describe('Enrichment', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Enrichment', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); cy.task('esArchiverLoad', 'risk_users'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/missing_privileges_callout.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/missing_privileges_callout.cy.ts index 767b2ecbdd5c2..0568037b5c693 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/missing_privileges_callout.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/missing_privileges_callout.cy.ts @@ -6,7 +6,6 @@ */ import { ROLES } from '@kbn/security-solution-plugin/common/test'; -import { tag } from '../../tags'; import { DETECTIONS_RULE_MANAGEMENT_URL, ALERTS_URL } from '../../urls/navigation'; import { getNewRule } from '../../objects/rule'; @@ -43,7 +42,7 @@ const waitForPageTitleToBeShown = () => { cy.get(PAGE_TITLE).should('be.visible'); }; -describe('Detections > Callouts', { tags: tag.ESS }, () => { +describe('Detections > Callouts', { tags: '@ess' }, () => { before(() => { // First, we have to open the app on behalf of a privileged user in order to initialize it. // Otherwise the app will be disabled and show a "welcome"-like page. diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/ransomware_detection.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/ransomware_detection.cy.ts index 5d2b91416e85c..93e0ce8ba8f4e 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/ransomware_detection.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/ransomware_detection.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../tags'; - import { waitForAlertsToPopulate } from '../../tasks/create_new_rule'; import { login, visit } from '../../tasks/login'; @@ -16,7 +14,7 @@ import { TIMELINE_QUERY, TIMELINE_VIEW_IN_ANALYZER } from '../../screens/timelin import { selectAlertsHistogram } from '../../tasks/alerts'; import { createTimeline } from '../../tasks/timelines'; -describe('Ransomware Detection Alerts', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Ransomware Detection Alerts', { tags: ['@ess', '@serverless'] }, () => { before(() => { cy.task('esArchiverLoad', 'ransomware_detection'); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/ransomware_prevention.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/ransomware_prevention.cy.ts index d289e9061db80..4f6379b3a6bd9 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/ransomware_prevention.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_alerts/ransomware_prevention.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../tags'; - import { waitForAlertsToPopulate } from '../../tasks/create_new_rule'; import { login, visit } from '../../tasks/login'; @@ -16,7 +14,7 @@ import { TIMELINE_QUERY, TIMELINE_VIEW_IN_ANALYZER } from '../../screens/timelin import { selectAlertsHistogram } from '../../tasks/alerts'; import { createTimeline } from '../../tasks/timelines'; -describe('Ransomware Prevention Alerts', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Ransomware Prevention Alerts', { tags: ['@ess', '@serverless'] }, () => { before(() => { cy.task('esArchiverLoad', 'ransomware_prevention'); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_install_update_authorization.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_install_update_authorization.cy.ts index 8f97d240488e5..30059c9ad5855 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_install_update_authorization.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_install_update_authorization.cy.ts @@ -11,10 +11,8 @@ import { RULES_UPDATES, } from '@kbn/security-solution-plugin/common/constants'; import { ROLES } from '@kbn/security-solution-plugin/common/test'; -import { tag } from '../../../tags'; import { createRuleAssetSavedObject } from '../../../helpers/rules'; -import { waitForRulesTableToBeLoaded } from '../../../tasks/alerts_detection_rules'; import { createAndInstallMockedPrebuiltRules } from '../../../tasks/api_calls/prebuilt_rules'; import { resetRulesTableState, deleteAlertsAndRules } from '../../../tasks/common'; import { login, waitForPageWithoutDateRange } from '../../../tasks/login'; @@ -59,14 +57,13 @@ const loadPageAsReadOnlyUser = (url: string) => { describe( 'Detection rules, Prebuilt Rules Installation and Update - Authorization/RBAC', - { tags: tag.ESS }, + { tags: '@ess' }, () => { beforeEach(() => { login(); resetRulesTableState(); deleteAlertsAndRules(); cy.task('esArchiverResetKibana'); - waitForRulesTableToBeLoaded(); createAndInstallMockedPrebuiltRules({ rules: [OUTDATED_RULE_1, OUTDATED_RULE_2] }); }); @@ -83,7 +80,6 @@ describe( // Now login with read-only user in preparation for test createAndInstallMockedPrebuiltRules({ rules: [RULE_1, RULE_2], installToKibana: false }); loadPageAsReadOnlyUser(SECURITY_DETECTIONS_RULES_URL); - waitForRulesTableToBeLoaded(); }); it('should not be able to install prebuilt rules', () => { @@ -111,7 +107,6 @@ describe( }); // Now login with read-only user in preparation for test loadPageAsReadOnlyUser(SECURITY_DETECTIONS_RULES_URL); - waitForRulesTableToBeLoaded(); }); it('should not be able to upgrade prebuilt rules', () => { diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_install_update_error_handling.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_install_update_error_handling.cy.ts index a5be1d78c537a..c9fe54f66f0be 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_install_update_error_handling.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_install_update_error_handling.cy.ts @@ -5,14 +5,10 @@ * 2.0. */ -import { tag } from '../../../tags'; - import { createRuleAssetSavedObject } from '../../../helpers/rules'; -import { waitForRulesTableToBeLoaded } from '../../../tasks/alerts_detection_rules'; import { createAndInstallMockedPrebuiltRules } from '../../../tasks/api_calls/prebuilt_rules'; import { resetRulesTableState, deleteAlertsAndRules, reload } from '../../../tasks/common'; -import { login, visitWithoutDateRange } from '../../../tasks/login'; -import { SECURITY_DETECTIONS_RULES_URL } from '../../../urls/navigation'; +import { login, visitSecurityDetectionRulesPage } from '../../../tasks/login'; import { addElasticRulesButtonClick, assertRuleAvailableForInstallAndInstallOne, @@ -28,7 +24,7 @@ import { describe( 'Detection rules, Prebuilt Rules Installation and Update - Error handling', - { tags: tag.ESS }, + { tags: '@ess' }, () => { beforeEach(() => { login(); @@ -36,7 +32,7 @@ describe( deleteAlertsAndRules(); cy.task('esArchiverResetKibana'); - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); + visitSecurityDetectionRulesPage(); }); describe('Installation of prebuilt rules - Should fail gracefully with toast error message when', () => { @@ -50,7 +46,6 @@ describe( }); beforeEach(() => { createAndInstallMockedPrebuiltRules({ rules: [RULE_1, RULE_2], installToKibana: false }); - waitForRulesTableToBeLoaded(); }); it('installing prebuilt rules one by one', () => { @@ -114,7 +109,6 @@ describe( rules: [UPDATED_RULE_1, UPDATED_RULE_2], installToKibana: false, }); - waitForRulesTableToBeLoaded(); reload(); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_install_update_workflows.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_install_update_workflows.cy.ts index 8863dbf2f1239..b6852c698e635 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_install_update_workflows.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_install_update_workflows.cy.ts @@ -7,7 +7,7 @@ import type { BulkInstallPackageInfo } from '@kbn/fleet-plugin/common'; import type { Rule } from '@kbn/security-solution-plugin/public/detection_engine/rule_management/logic/types'; -import { tag } from '../../../tags'; + import { createRuleAssetSavedObject } from '../../../helpers/rules'; import { GO_BACK_TO_RULES_TABLE_BUTTON, @@ -20,14 +20,12 @@ import { SELECT_ALL_RULES_ON_PAGE_CHECKBOX, TOASTER, } from '../../../screens/alerts_detection_rules'; -import { waitForRulesTableToBeLoaded } from '../../../tasks/alerts_detection_rules'; import { getRuleAssets, createAndInstallMockedPrebuiltRules, } from '../../../tasks/api_calls/prebuilt_rules'; import { resetRulesTableState, deleteAlertsAndRules, reload } from '../../../tasks/common'; -import { login, visitWithoutDateRange } from '../../../tasks/login'; -import { SECURITY_DETECTIONS_RULES_URL } from '../../../urls/navigation'; +import { login, visitSecurityDetectionRulesPage } from '../../../tasks/login'; import { addElasticRulesButtonClick, assertRuleAvailableForInstallAndInstallOne, @@ -43,7 +41,7 @@ import { describe( 'Detection rules, Prebuilt Rules Installation and Update workflow', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { beforeEach(() => { login(); @@ -51,7 +49,7 @@ describe( deleteAlertsAndRules(); cy.task('esArchiverResetKibana'); - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); + visitSecurityDetectionRulesPage(); }); describe('Installation of prebuilt rules package via Fleet', () => { @@ -60,7 +58,6 @@ describe( cy.intercept('POST', '/api/fleet/epm/packages/security_detection_engine/*').as( 'installPackage' ); - waitForRulesTableToBeLoaded(); }); it('should install package from Fleet in the background', () => { @@ -150,7 +147,6 @@ describe( }); beforeEach(() => { createAndInstallMockedPrebuiltRules({ rules: [RULE_1, RULE_2], installToKibana: false }); - waitForRulesTableToBeLoaded(); cy.intercept('POST', '/internal/detection_engine/prebuilt_rules/installation/_perform').as( 'installPrebuiltRules' ); @@ -232,7 +228,6 @@ describe( rules: [UPDATED_RULE_1, UPDATED_RULE_2], installToKibana: false, }); - waitForRulesTableToBeLoaded(); reload(); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_management.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_management.cy.ts index 128f8d27b5da2..9eb5f33bcdb4d 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_management.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_management.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../../tags'; - import { createRuleAssetSavedObject } from '../../../helpers/rules'; import { COLLAPSED_ACTION_BTN, @@ -14,16 +12,15 @@ import { ADD_ELASTIC_RULES_BTN, RULES_EMPTY_PROMPT, RULES_MONITORING_TAB, - RULES_ROW, - RULES_MANAGEMENT_TABLE, RULE_SWITCH, SELECT_ALL_RULES_ON_PAGE_CHECKBOX, INSTALL_ALL_RULES_BUTTON, } from '../../../screens/alerts_detection_rules'; import { deleteFirstRule, + getRulesManagementTableRows, selectAllRules, - selectNumberOfRules, + selectRulesByName, waitForPrebuiltDetectionRulesToBeLoaded, waitForRuleToUpdate, } from '../../../tasks/alerts_detection_rules'; @@ -51,7 +48,7 @@ const rules = Array.from(Array(5)).map((_, i) => { }); }); -describe('Prebuilt rules', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Prebuilt rules', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); }); @@ -69,7 +66,7 @@ describe('Prebuilt rules', { tags: [tag.ESS, tag.SERVERLESS] }, () => { describe('Alerts rules, prebuilt rules', () => { it('Loads prebuilt rules', () => { // Check that the rules table contains rules - cy.get(RULES_MANAGEMENT_TABLE).find(RULES_ROW).should('have.length.gte', 1); + getRulesManagementTableRows().should('have.length.gte', 1); // Check the correct count of prebuilt rules is displayed getAvailablePrebuiltRulesCount().then((availablePrebuiltRulesCount) => { @@ -111,8 +108,7 @@ describe('Prebuilt rules', { tags: [tag.ESS, tag.SERVERLESS] }, () => { }); it('Does not allow to delete one rule when more than one is selected', () => { - const numberOfRulesToBeSelected = 2; - selectNumberOfRules(numberOfRulesToBeSelected); + selectAllRules(); cy.get(COLLAPSED_ACTION_BTN).each((collapsedItemActionBtn) => { cy.wrap(collapsedItemActionBtn).should('have.attr', 'disabled'); @@ -153,16 +149,16 @@ describe('Prebuilt rules', { tags: [tag.ESS, tag.SERVERLESS] }, () => { it('Deletes and recovers more than one rule', () => { getAvailablePrebuiltRulesCount().then((availablePrebuiltRulesCount) => { - const numberOfRulesToBeSelected = 2; + const rulesToDelete = ['Test rule 1', 'Test rule 2'] as const; const expectedNumberOfRulesAfterDeletion = availablePrebuiltRulesCount - 2; const expectedNumberOfRulesAfterRecovering = availablePrebuiltRulesCount; - selectNumberOfRules(numberOfRulesToBeSelected); + selectRulesByName(rulesToDelete); deleteSelectedRules(); cy.get(ADD_ELASTIC_RULES_BTN).should( 'have.text', - `Add Elastic rules${numberOfRulesToBeSelected}` + `Add Elastic rules${rulesToDelete.length}` ); cy.get(ELASTIC_RULES_BTN).should( 'have.text', diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_notifications.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_notifications.cy.ts index abeaee0820558..9202b77044e93 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_notifications.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/prebuilt_rules/prebuilt_rules_notifications.cy.ts @@ -5,14 +5,13 @@ * 2.0. */ -import { tag } from '../../../tags'; - import { createRuleAssetSavedObject } from '../../../helpers/rules'; -import { ADD_ELASTIC_RULES_BTN, RULES_UPDATES_TAB } from '../../../screens/alerts_detection_rules'; import { - deleteFirstRule, - waitForRulesTableToBeLoaded, -} from '../../../tasks/alerts_detection_rules'; + ADD_ELASTIC_RULES_BTN, + ADD_ELASTIC_RULES_EMPTY_PROMPT_BTN, + RULES_UPDATES_TAB, +} from '../../../screens/alerts_detection_rules'; +import { deleteFirstRule } from '../../../tasks/alerts_detection_rules'; import { installAllPrebuiltRulesRequest, createAndInstallMockedPrebuiltRules, @@ -23,8 +22,7 @@ import { reload, deletePrebuiltRulesAssets, } from '../../../tasks/common'; -import { login, visitWithoutDateRange } from '../../../tasks/login'; -import { SECURITY_DETECTIONS_RULES_URL } from '../../../urls/navigation'; +import { login, visitSecurityDetectionRulesPage } from '../../../tasks/login'; const RULE_1 = createRuleAssetSavedObject({ name: 'Test rule 1', @@ -33,7 +31,7 @@ const RULE_1 = createRuleAssetSavedObject({ describe( 'Detection rules, Prebuilt Rules Installation and Update Notifications', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { beforeEach(() => { login(); @@ -45,8 +43,10 @@ describe( describe('No notifications', () => { it('should NOT display install or update notifications when no prebuilt assets and no rules are installed', () => { - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); - waitForRulesTableToBeLoaded(); + visitSecurityDetectionRulesPage(); + + cy.get(ADD_ELASTIC_RULES_EMPTY_PROMPT_BTN).should('be.visible'); + // TODO: test plan asserts "should NOT see a CTA to install prebuilt rules" // but current behavior is to always show the CTA, even with no prebuilt rule assets installed // Update that behaviour and then update this test. @@ -55,8 +55,7 @@ describe( it('should NOT display install or update notifications when latest rules are installed', () => { createAndInstallMockedPrebuiltRules({ rules: [RULE_1], installToKibana: true }); - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); - waitForRulesTableToBeLoaded(); + visitSecurityDetectionRulesPage(); /* Assert that there are no installation or update notifications */ /* Add Elastic Rules button should not contain a number badge */ @@ -73,7 +72,7 @@ describe( describe('Rules installation notification when no rules have been installed', () => { beforeEach(() => { - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); + visitSecurityDetectionRulesPage(); }); it('should notify user about prebuilt rules available for installation', () => { @@ -101,8 +100,7 @@ describe( rules: [RULE_2, RULE_3], installToKibana: false, }); - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); - waitForRulesTableToBeLoaded(); + visitSecurityDetectionRulesPage(); }); }); @@ -139,8 +137,7 @@ describe( version: 2, }); createAndInstallMockedPrebuiltRules({ rules: [UPDATED_RULE], installToKibana: false }); - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); - waitForRulesTableToBeLoaded(); + visitSecurityDetectionRulesPage(); reload(); }); }); @@ -174,8 +171,7 @@ describe( rules: [RULE_2, UPDATED_RULE], installToKibana: false, }); - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); - waitForRulesTableToBeLoaded(); + visitSecurityDetectionRulesPage(); }); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_actions/rule_actions.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_actions/rule_actions.cy.ts index 021735f679a20..a4b15f68cdcb9 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_actions/rule_actions.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_actions/rule_actions.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../../tags'; - import { getIndexConnector } from '../../../objects/connector'; import { getSimpleCustomQueryRule } from '../../../objects/rule'; @@ -31,7 +29,7 @@ import { RULE_CREATION } from '../../../urls/navigation'; describe( 'Rule actions during detection rule creation', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { const indexConnector = getIndexConnector(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/custom_query_rule.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/custom_query_rule.cy.ts index 8c053a073fd66..b62e2f8a28ad6 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/custom_query_rule.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/custom_query_rule.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../../tags'; - import { ruleFields } from '../../../data/detection_engine'; import { getNewRule, @@ -21,7 +19,6 @@ import { CUSTOM_RULES_BTN, RISK_SCORE, RULE_NAME, - RULES_ROW, RULES_MANAGEMENT_TABLE, RULE_SWITCH, SEVERITY, @@ -77,13 +74,16 @@ import { deleteFirstRule, deleteRuleFromDetailsPage, editFirstRule, + expectManagementTableRules, + getRulesManagementTableRows, goToRuleDetails, - selectNumberOfRules, + goToTheRuleDetailsOf, + selectRulesByName, } from '../../../tasks/alerts_detection_rules'; import { deleteSelectedRules } from '../../../tasks/rules_bulk_actions'; -import { createRule } from '../../../tasks/api_calls/rules'; +import { createRule, findAllRules } from '../../../tasks/api_calls/rules'; import { createTimeline } from '../../../tasks/api_calls/timelines'; -import { cleanKibana, deleteAlertsAndRules, deleteConnectors } from '../../../tasks/common'; +import { deleteAlertsAndRules, deleteConnectors } from '../../../tasks/common'; import { addEmailConnectorAndRuleAction } from '../../../tasks/common/rule_actions'; import { createAndEnableRule, @@ -109,21 +109,18 @@ import { waitForTheRuleToBeExecuted, } from '../../../tasks/create_new_rule'; import { saveEditedRule } from '../../../tasks/edit_rule'; -import { login, visit } from '../../../tasks/login'; +import { login, visit, visitSecurityDetectionRulesPage } from '../../../tasks/login'; import { enablesRule, getDetails } from '../../../tasks/rule_details'; -import { RULE_CREATION, DETECTIONS_RULE_MANAGEMENT_URL } from '../../../urls/navigation'; +import { RULE_CREATION } from '../../../urls/navigation'; -describe('Custom query rules', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { - before(() => { - cleanKibana(); +describe('Custom query rules', { tags: ['@ess', '@brokenInServerless'] }, () => { + beforeEach(() => { + deleteAlertsAndRules(); }); describe('Custom detection rules creation', () => { - const expectedNumberOfRules = 1; - beforeEach(() => { - deleteAlertsAndRules(); createTimeline(getTimeline()) .then((response) => { return response.body.data.persistTimeline.timeline.savedObjectId; @@ -140,7 +137,7 @@ describe('Custom query rules', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () cy.get(DEFINE_CONTINUE_BUTTON).click(); cy.log('Filling about section'); - fillRuleName(); + fillRuleName('Test Rule'); fillDescription(); fillSeverity(); fillRiskScore(); @@ -174,7 +171,7 @@ describe('Custom query rules', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () cy.get(CUSTOM_RULES_BTN).should('have.text', 'Custom rules (1)'); cy.log('Asserting rule view in rules list'); - cy.get(RULES_MANAGEMENT_TABLE).find(RULES_ROW).should('have.length', expectedNumberOfRules); + expectManagementTableRules(['Test Rule']); cy.get(RULE_NAME).should('have.text', ruleFields.ruleName); cy.get(RISK_SCORE).should('have.text', ruleFields.riskScore); cy.get(SEVERITY) @@ -241,109 +238,104 @@ describe('Custom query rules', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () describe('Custom detection rules deletion and edition', () => { context('Deletion', () => { beforeEach(() => { - deleteAlertsAndRules(); - createRule(getNewRule({ rule_id: 'rule1', enabled: true, max_signals: 500 })); - createRule(getNewOverrideRule({ rule_id: 'rule2', enabled: true, max_signals: 500 })); - createRule(getExistingRule({ rule_id: 'rule3', enabled: true })); + createRule( + getNewRule({ rule_id: 'rule1', name: 'New Rule Test', enabled: false, max_signals: 500 }) + ); + createRule( + getNewOverrideRule({ + rule_id: 'rule2', + name: 'Override Rule', + enabled: false, + max_signals: 500, + }) + ); + createRule(getExistingRule({ rule_id: 'rule3', name: 'Rule 1', enabled: false })); login(); - visit(DETECTIONS_RULE_MANAGEMENT_URL); + visitSecurityDetectionRulesPage(); }); it('Deletes one rule', () => { - cy.get(RULES_MANAGEMENT_TABLE) - .find(RULES_ROW) - .then((rules) => { - const initialNumberOfRules = rules.length; - const expectedNumberOfRulesAfterDeletion = initialNumberOfRules - 1; + getRulesManagementTableRows().then((rules) => { + const initialNumberOfRules = rules.length; + const expectedNumberOfRulesAfterDeletion = initialNumberOfRules - 1; - cy.request({ url: '/api/detection_engine/rules/_find' }).then(({ body }) => { - const numberOfRules = body.data.length; - expect(numberOfRules).to.eql(initialNumberOfRules); - }); + findAllRules().then(({ body }) => { + const numberOfRules = body.data.length; + expect(numberOfRules).to.eql(initialNumberOfRules); + }); - deleteFirstRule(); + deleteFirstRule(); - cy.get(RULES_MANAGEMENT_TABLE) - .find(RULES_ROW) - .should('have.length', expectedNumberOfRulesAfterDeletion); - cy.request({ url: '/api/detection_engine/rules/_find' }).then(({ body }) => { - const numberOfRules = body.data.length; - expect(numberOfRules).to.eql(expectedNumberOfRulesAfterDeletion); - }); - cy.get(CUSTOM_RULES_BTN).should( - 'have.text', - `Custom rules (${expectedNumberOfRulesAfterDeletion})` - ); + getRulesManagementTableRows().should('have.length', expectedNumberOfRulesAfterDeletion); + findAllRules().then(({ body }) => { + const numberOfRules = body.data.length; + expect(numberOfRules).to.eql(expectedNumberOfRulesAfterDeletion); }); + cy.get(CUSTOM_RULES_BTN).should( + 'have.text', + `Custom rules (${expectedNumberOfRulesAfterDeletion})` + ); + }); }); it('Deletes more than one rule', () => { - cy.get(RULES_MANAGEMENT_TABLE) - .find(RULES_ROW) - .then((rules) => { - const initialNumberOfRules = rules.length; - const numberOfRulesToBeDeleted = 2; - const expectedNumberOfRulesAfterDeletion = - initialNumberOfRules - numberOfRulesToBeDeleted; - - selectNumberOfRules(numberOfRulesToBeDeleted); - deleteSelectedRules(); - - cy.get(RULES_MANAGEMENT_TABLE) - .get(RULES_ROW) - .first() - .within(() => { - cy.get(RULE_SWITCH).should('not.exist'); - }); - - cy.get(RULES_MANAGEMENT_TABLE) - .find(RULES_ROW) - .should('have.length', expectedNumberOfRulesAfterDeletion); - cy.request({ url: '/api/detection_engine/rules/_find' }).then(({ body }) => { + getRulesManagementTableRows().then((rules) => { + const rulesToDelete = ['New Rule Test', 'Override Rule'] as const; + const initialNumberOfRules = rules.length; + const numberOfRulesToBeDeleted = 2; + const expectedNumberOfRulesAfterDeletion = + initialNumberOfRules - numberOfRulesToBeDeleted; + + selectRulesByName(rulesToDelete); + deleteSelectedRules(); + + getRulesManagementTableRows() + .first() + .within(() => { + cy.get(RULE_SWITCH).should('not.exist'); + }); + + getRulesManagementTableRows().should('have.length', expectedNumberOfRulesAfterDeletion); + findAllRules().then(({ body }) => { + const numberOfRules = body.data.length; + expect(numberOfRules).to.eql(expectedNumberOfRulesAfterDeletion); + }); + getRulesManagementTableRows() + .first() + .within(() => { + cy.get(RULE_SWITCH).should('exist'); + }); + cy.get(CUSTOM_RULES_BTN).should( + 'have.text', + `Custom rules (${expectedNumberOfRulesAfterDeletion})` + ); + }); + }); + + it('Deletes one rule from detail page', () => { + getRulesManagementTableRows().then((rules) => { + const initialNumberOfRules = rules.length; + const expectedNumberOfRulesAfterDeletion = initialNumberOfRules - 1; + + goToTheRuleDetailsOf('New Rule Test'); + cy.intercept('POST', '/api/detection_engine/rules/_bulk_delete').as('deleteRule'); + + deleteRuleFromDetailsPage(); + + // @ts-expect-error update types + cy.waitFor('@deleteRule').then(() => { + cy.get(RULES_MANAGEMENT_TABLE).should('exist'); + getRulesManagementTableRows().should('have.length', expectedNumberOfRulesAfterDeletion); + findAllRules().then(({ body }) => { const numberOfRules = body.data.length; expect(numberOfRules).to.eql(expectedNumberOfRulesAfterDeletion); }); - cy.get(RULES_MANAGEMENT_TABLE) - .get(RULES_ROW) - .first() - .within(() => { - cy.get(RULE_SWITCH).should('exist'); - }); cy.get(CUSTOM_RULES_BTN).should( 'have.text', `Custom rules (${expectedNumberOfRulesAfterDeletion})` ); }); - }); - - it('Deletes one rule from detail page', () => { - cy.get(RULES_MANAGEMENT_TABLE) - .find(RULES_ROW) - .then((rules) => { - const initialNumberOfRules = rules.length; - const expectedNumberOfRulesAfterDeletion = initialNumberOfRules - 1; - - goToRuleDetails(); - cy.intercept('POST', '/api/detection_engine/rules/_bulk_delete').as('deleteRule'); - - deleteRuleFromDetailsPage(); - - // @ts-expect-error update types - cy.waitFor('@deleteRule').then(() => { - cy.get(RULES_MANAGEMENT_TABLE).should('exist'); - cy.get(RULES_MANAGEMENT_TABLE) - .find(RULES_ROW) - .should('have.length', expectedNumberOfRulesAfterDeletion); - cy.request({ url: '/api/detection_engine/rules/_find' }).then(({ body }) => { - const numberOfRules = body.data.length; - expect(numberOfRules).to.eql(expectedNumberOfRulesAfterDeletion); - }); - cy.get(CUSTOM_RULES_BTN).should( - 'have.text', - `Custom rules (${expectedNumberOfRulesAfterDeletion})` - ); - }); - }); + }); }); }); @@ -353,11 +345,10 @@ describe('Custom query rules', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () const expectedEditedIndexPatterns = rule.index; beforeEach(() => { - login(); - deleteAlertsAndRules(); deleteConnectors(); createRule(getExistingRule({ rule_id: 'rule1', enabled: true })); - visit(DETECTIONS_RULE_MANAGEMENT_URL); + login(); + visitSecurityDetectionRulesPage(); }); it('Only modifies rule active status on enable/disable', () => { diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/custom_query_rule_data_view.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/custom_query_rule_data_view.cy.ts index e352af5671ae0..d1a0eb1d5eea2 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/custom_query_rule_data_view.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/custom_query_rule_data_view.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../../tags'; - import { formatMitreAttackDescription, getHumanizedDuration } from '../../../helpers/rules'; import { getDataViewRule } from '../../../objects/rule'; import { ALERTS_COUNT, ALERT_GRID_CELL } from '../../../screens/alerts'; @@ -15,8 +13,6 @@ import { CUSTOM_RULES_BTN, RISK_SCORE, RULE_NAME, - RULES_ROW, - RULES_MANAGEMENT_TABLE, RULE_SWITCH, SEVERITY, } from '../../../screens/alerts_detection_rules'; @@ -52,7 +48,10 @@ import { EDIT_RULE_SETTINGS_LINK, } from '../../../screens/rule_details'; -import { goToRuleDetails } from '../../../tasks/alerts_detection_rules'; +import { + getRulesManagementTableRows, + goToRuleDetails, +} from '../../../tasks/alerts_detection_rules'; import { postDataView } from '../../../tasks/common'; import { createAndEnableRule, @@ -69,7 +68,7 @@ import { getDetails } from '../../../tasks/rule_details'; import { RULE_CREATION } from '../../../urls/navigation'; -describe('Custom query rules', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('Custom query rules', { tags: ['@ess', '@brokenInServerless'] }, () => { describe('Custom detection rules creation with data views', () => { const rule = getDataViewRule(); const expectedUrls = rule.references?.join(''); @@ -100,7 +99,7 @@ describe('Custom query rules', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () cy.get(CUSTOM_RULES_BTN).should('have.text', 'Custom rules (1)'); - cy.get(RULES_MANAGEMENT_TABLE).find(RULES_ROW).should('have.length', expectedNumberOfRules); + getRulesManagementTableRows().should('have.length', expectedNumberOfRules); cy.get(RULE_NAME).should('have.text', rule.name); cy.get(RISK_SCORE).should('have.text', rule.risk_score); cy.get(SEVERITY).should('have.text', 'High'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/custom_saved_query_rule.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/custom_saved_query_rule.cy.ts index 5c512e4c2eff8..fc9dd511aa21f 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/custom_saved_query_rule.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/custom_saved_query_rule.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../../tags'; - import { getNewRule, getSavedQueryRule } from '../../../objects/rule'; import { @@ -47,7 +45,7 @@ const savedQueryName = 'custom saved query'; const savedQueryQuery = 'process.name: test'; const savedQueryFilterKey = 'testAgent.value'; -describe('Custom saved_query rules', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('Custom saved_query rules', { tags: ['@ess', '@brokenInServerless'] }, () => { before(() => { cleanKibana(); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/event_correlation_rule.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/event_correlation_rule.cy.ts index 2d06b9ec977e7..73e501009656a 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/event_correlation_rule.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/event_correlation_rule.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../../tags'; - import { formatMitreAttackDescription, getHumanizedDuration } from '../../../helpers/rules'; import { getEqlRule, getEqlSequenceRule, getIndexPatterns } from '../../../objects/rule'; @@ -63,7 +61,7 @@ import { login, visit } from '../../../tasks/login'; import { RULE_CREATION } from '../../../urls/navigation'; -describe('EQL rules', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('EQL rules', { tags: ['@ess', '@brokenInServerless'] }, () => { before(() => { cleanKibana(); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/indicator_match_rule.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/indicator_match_rule.cy.ts index 9f2e8a796ee95..b78d67d58980a 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/indicator_match_rule.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/indicator_match_rule.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../../tags'; - import { formatMitreAttackDescription, getHumanizedDuration } from '../../../helpers/rules'; import { getIndexPatterns, @@ -62,9 +60,9 @@ import { duplicateFirstRule, duplicateRuleFromMenu, goToRuleDetails, - selectNumberOfRules, checkDuplicatedRule, expectNumberOfRules, + selectAllRules, } from '../../../tasks/alerts_detection_rules'; import { duplicateSelectedRulesWithExceptions } from '../../../tasks/rules_bulk_actions'; import { createRule } from '../../../tasks/api_calls/rules'; @@ -110,7 +108,7 @@ import { DETECTIONS_RULE_MANAGEMENT_URL, RULE_CREATION } from '../../../urls/nav const DEFAULT_THREAT_MATCH_QUERY = '@timestamp >= "now-30d/d"'; -describe('indicator match', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('indicator match', { tags: ['@ess', '@brokenInServerless'] }, () => { describe('Detection rules, Indicator Match', () => { const expectedUrls = getNewThreatIndicatorRule().references?.join(''); const expectedFalsePositives = getNewThreatIndicatorRule().false_positives?.join(''); @@ -555,7 +553,7 @@ describe('indicator match', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => }); it("Allows the rule to be duplicated from the table's bulk actions", () => { - selectNumberOfRules(1); + selectAllRules(); duplicateSelectedRulesWithExceptions(); checkDuplicatedRule(); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/machine_learning_rule.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/machine_learning_rule.cy.ts index 815da8ae92cb1..e65764dff6203 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/machine_learning_rule.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/machine_learning_rule.cy.ts @@ -5,7 +5,6 @@ * 2.0. */ import { isArray } from 'lodash'; -import { tag } from '../../../tags'; import { formatMitreAttackDescription, getHumanizedDuration } from '../../../helpers/rules'; import { getMachineLearningRule } from '../../../objects/rule'; @@ -54,7 +53,7 @@ import { login, visitWithoutDateRange } from '../../../tasks/login'; import { RULE_CREATION } from '../../../urls/navigation'; -describe('Detection rules, machine learning', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('Detection rules, machine learning', { tags: ['@ess', '@brokenInServerless'] }, () => { const expectedUrls = (getMachineLearningRule().references ?? []).join(''); const expectedFalsePositives = (getMachineLearningRule().false_positives ?? []).join(''); const expectedTags = (getMachineLearningRule().tags ?? []).join(''); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/new_terms_rule.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/new_terms_rule.cy.ts index 14b4b9ad2c717..e81dfd3d057d4 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/new_terms_rule.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/new_terms_rule.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../../tags'; - import { formatMitreAttackDescription, getHumanizedDuration } from '../../../helpers/rules'; import { getIndexPatterns, getNewTermsRule } from '../../../objects/rule'; @@ -61,7 +59,7 @@ import { login, visit } from '../../../tasks/login'; import { RULE_CREATION } from '../../../urls/navigation'; -describe('New Terms rules', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('New Terms rules', { tags: ['@ess', '@brokenInServerless'] }, () => { before(() => { cleanKibana(); login(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/override.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/override.cy.ts index 01f7ff28e2507..e63a78977de6b 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/override.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/override.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../../tags'; - import { formatMitreAttackDescription, getHumanizedDuration } from '../../../helpers/rules'; import { getIndexPatterns, getNewOverrideRule, getSeveritiesOverride } from '../../../objects/rule'; @@ -63,7 +61,7 @@ import { getDetails } from '../../../tasks/rule_details'; import { RULE_CREATION } from '../../../urls/navigation'; -describe('Detection rules, override', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('Detection rules, override', { tags: ['@ess', '@brokenInServerless'] }, () => { const rule = getNewOverrideRule(); const expectedUrls = rule.references?.join(''); const expectedFalsePositives = rule.false_positives?.join(''); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/threshold_rule.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/threshold_rule.cy.ts index 7c29afc4c0abe..c3d3deb58d520 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/threshold_rule.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation/threshold_rule.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../../tags'; - import { formatMitreAttackDescription, getHumanizedDuration } from '../../../helpers/rules'; import { getIndexPatterns, getNewThresholdRule } from '../../../objects/rule'; @@ -61,7 +59,7 @@ import { login, visitWithoutDateRange } from '../../../tasks/login'; import { RULE_CREATION } from '../../../urls/navigation'; -describe('Detection rules, threshold', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('Detection rules, threshold', { tags: ['@ess', '@brokenInServerless'] }, () => { const rule = getNewThresholdRule(); const expectedUrls = rule.references?.join(''); const expectedFalsePositives = rule.false_positives?.join(''); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/authorization/all_rules_read_only.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/authorization/all_rules_read_only.cy.ts index bd8c5743d37b2..dfb598bfa369b 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/authorization/all_rules_read_only.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/authorization/all_rules_read_only.cy.ts @@ -6,7 +6,6 @@ */ import { ROLES } from '@kbn/security-solution-plugin/common/test'; -import { tag } from '../../../../tags'; import { getNewRule } from '../../../../objects/rule'; import { @@ -15,7 +14,6 @@ import { RULE_NAME, } from '../../../../screens/alerts_detection_rules'; import { VALUE_LISTS_MODAL_ACTIVATOR } from '../../../../screens/lists'; -import { waitForRulesTableToBeLoaded } from '../../../../tasks/alerts_detection_rules'; import { createRule } from '../../../../tasks/api_calls/rules'; import { cleanKibana } from '../../../../tasks/common'; import { @@ -24,19 +22,17 @@ import { waitForCallOutToBeShown, MISSING_PRIVILEGES_CALLOUT, } from '../../../../tasks/common/callouts'; -import { login, visitWithoutDateRange } from '../../../../tasks/login'; -import { SECURITY_DETECTIONS_RULES_URL } from '../../../../urls/navigation'; +import { login, visitSecurityDetectionRulesPage } from '../../../../tasks/login'; -describe('All rules - read only', { tags: tag.ESS }, () => { +describe('All rules - read only', { tags: '@ess' }, () => { before(() => { cleanKibana(); - createRule(getNewRule({ rule_id: '1' })); + createRule(getNewRule({ rule_id: '1', enabled: false })); }); beforeEach(() => { login(ROLES.reader); - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL, ROLES.reader); - waitForRulesTableToBeLoaded(); + visitSecurityDetectionRulesPage(ROLES.reader); cy.get(RULE_NAME).should('have.text', getNewRule().name); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/maintenance_windows/maintenance_window_callout.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/maintenance_windows/maintenance_window_callout.cy.ts index e72e8d1664119..605ce523eb35b 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/maintenance_windows/maintenance_window_callout.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/maintenance_windows/maintenance_window_callout.cy.ts @@ -8,12 +8,11 @@ import { INTERNAL_ALERTING_API_MAINTENANCE_WINDOW_PATH } from '@kbn/alerting-plugin/common'; import type { MaintenanceWindowCreateBody } from '@kbn/alerting-plugin/common'; import type { AsApiContract } from '@kbn/alerting-plugin/server/routes/lib'; -import { tag } from '../../../../tags'; import { cleanKibana } from '../../../../tasks/common'; import { login, visit } from '../../../../tasks/login'; import { DETECTIONS_RULE_MANAGEMENT_URL } from '../../../../urls/navigation'; -describe('Maintenance window callout on Rule Management page', { tags: [tag.ESS] }, () => { +describe('Maintenance window callout on Rule Management page', { tags: ['@ess'] }, () => { let maintenanceWindowId = ''; before(() => { diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/related_integrations/related_integrations.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/related_integrations/related_integrations.cy.ts index c13079d1dd134..0d41e51852203 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/related_integrations/related_integrations.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/related_integrations/related_integrations.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../../../tags'; - import { DETECTIONS_RULE_MANAGEMENT_URL } from '../../../../urls/navigation'; import { FIELD } from '../../../../screens/alerts_details'; @@ -54,7 +52,7 @@ Note that the rule we are using for testing purposes has the following character - Integration: unknown */ -describe('Related integrations', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('Related integrations', { tags: ['@ess', '@brokenInServerless'] }, () => { before(() => { cleanKibana(); login(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/bulk_actions/bulk_duplicate_rules.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/bulk_actions/bulk_duplicate_rules.cy.ts index bc228b7160a89..447f399c24a20 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/bulk_actions/bulk_duplicate_rules.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/bulk_actions/bulk_duplicate_rules.cy.ts @@ -5,13 +5,11 @@ * 2.0. */ -import { tag } from '../../../../../tags'; - import { - waitForRulesTableToBeLoaded, goToTheRuleDetailsOf, - selectNumberOfRules, expectManagementTableRules, + selectAllRules, + disableAutoRefresh, } from '../../../../../tasks/alerts_detection_rules'; import { duplicateSelectedRulesWithoutExceptions, @@ -19,9 +17,8 @@ import { duplicateSelectedRulesWithNonExpiredExceptions, } from '../../../../../tasks/rules_bulk_actions'; import { goToExceptionsTab, viewExpiredExceptionItems } from '../../../../../tasks/rule_details'; -import { login, visitWithoutDateRange } from '../../../../../tasks/login'; +import { login, visitSecurityDetectionRulesPage } from '../../../../../tasks/login'; -import { SECURITY_DETECTIONS_RULES_URL } from '../../../../../urls/navigation'; import { createRule } from '../../../../../tasks/api_calls/rules'; import { cleanKibana, @@ -55,7 +52,7 @@ const EXPIRED_EXCEPTION_ITEM_NAME = 'Sample exception item'; const NON_EXPIRED_EXCEPTION_ITEM_NAME = 'Sample exception item with future expiration'; -describe('Detection rules, bulk duplicate', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Detection rules, bulk duplicate', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); }); @@ -66,55 +63,54 @@ describe('Detection rules, bulk duplicate', { tags: [tag.ESS, tag.SERVERLESS] }, resetRulesTableState(); deleteAlertsAndRules(); cy.task('esArchiverResetKibana'); - createRule(getNewRule({ name: RULE_NAME, ...defaultRuleData, rule_id: '1' })).then( - (response) => { - createRuleExceptionItem(response.body.id, [ - { - description: 'Exception item for rule default exception list', - entries: [ - { - field: 'user.name', - operator: 'included', - type: 'match', - value: 'some value', - }, - ], - name: EXPIRED_EXCEPTION_ITEM_NAME, - type: 'simple', - expire_time: expiredDate, - }, - { - description: 'Exception item for rule default exception list', - entries: [ - { - field: 'user.name', - operator: 'included', - type: 'match', - value: 'some value', - }, - ], - name: NON_EXPIRED_EXCEPTION_ITEM_NAME, - type: 'simple', - expire_time: futureDate, - }, - ]); - } - ); - - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); - - waitForRulesTableToBeLoaded(); + createRule( + getNewRule({ name: RULE_NAME, ...defaultRuleData, rule_id: '1', enabled: false }) + ).then((response) => { + createRuleExceptionItem(response.body.id, [ + { + description: 'Exception item for rule default exception list', + entries: [ + { + field: 'user.name', + operator: 'included', + type: 'match', + value: 'some value', + }, + ], + name: EXPIRED_EXCEPTION_ITEM_NAME, + type: 'simple', + expire_time: expiredDate, + }, + { + description: 'Exception item for rule default exception list', + entries: [ + { + field: 'user.name', + operator: 'included', + type: 'match', + value: 'some value', + }, + ], + name: NON_EXPIRED_EXCEPTION_ITEM_NAME, + type: 'simple', + expire_time: futureDate, + }, + ]); + }); + + visitSecurityDetectionRulesPage(); + disableAutoRefresh(); }); it('Duplicates rules', () => { - selectNumberOfRules(1); + selectAllRules(); duplicateSelectedRulesWithoutExceptions(); expectManagementTableRules([`${RULE_NAME} [Duplicate]`]); }); describe('With exceptions', () => { it('Duplicates rules with expired exceptions', () => { - selectNumberOfRules(1); + selectAllRules(); duplicateSelectedRulesWithExceptions(); expectManagementTableRules([`${RULE_NAME} [Duplicate]`]); goToTheRuleDetailsOf(`${RULE_NAME} [Duplicate]`); @@ -125,7 +121,7 @@ describe('Detection rules, bulk duplicate', { tags: [tag.ESS, tag.SERVERLESS] }, }); it('Duplicates rules with exceptions, excluding expired exceptions', () => { - selectNumberOfRules(1); + selectAllRules(); duplicateSelectedRulesWithNonExpiredExceptions(); expectManagementTableRules([`${RULE_NAME} [Duplicate]`]); goToTheRuleDetailsOf(`${RULE_NAME} [Duplicate]`); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/bulk_actions/bulk_edit_rules.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/bulk_actions/bulk_edit_rules.cy.ts index 9aea185783e7d..4b86a8344836c 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/bulk_actions/bulk_edit_rules.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/bulk_actions/bulk_edit_rules.cy.ts @@ -5,12 +5,9 @@ * 2.0. */ -import { tag } from '../../../../../tags'; - import { MODAL_CONFIRMATION_BTN, MODAL_CONFIRMATION_BODY, - RULE_CHECKBOX, RULES_TAGS_POPOVER_BTN, MODAL_ERROR_BODY, } from '../../../../../screens/alerts_detection_rules'; @@ -26,20 +23,22 @@ import { import { TIMELINE_TEMPLATE_DETAILS } from '../../../../../screens/rule_details'; -import { EUI_FILTER_SELECT_ITEM } from '../../../../../screens/common/controls'; +import { EUI_CHECKBOX, EUI_FILTER_SELECT_ITEM } from '../../../../../screens/common/controls'; import { - waitForRulesTableToBeLoaded, selectAllRules, goToTheRuleDetailsOf, - selectNumberOfRules, testAllTagsBadges, testTagsBadge, testMultipleSelectedRulesLabel, filterByElasticRules, clickErrorToastBtn, - unselectRuleByName, cancelConfirmationModal, + selectRulesByName, + getRulesManagementTableRows, + selectAllRulesOnPage, + getRuleRow, + disableAutoRefresh, } from '../../../../../tasks/alerts_detection_rules'; import { @@ -73,10 +72,9 @@ import { assertDefaultValuesAreAppliedToScheduleFields, } from '../../../../../tasks/rules_bulk_actions'; +import { createRuleAssetSavedObject } from '../../../../../helpers/rules'; import { hasIndexPatterns, getDetails } from '../../../../../tasks/rule_details'; -import { login, visitWithoutDateRange } from '../../../../../tasks/login'; - -import { SECURITY_DETECTIONS_RULES_URL } from '../../../../../urls/navigation'; +import { login, visitSecurityDetectionRulesPage } from '../../../../../tasks/login'; import { createRule } from '../../../../../tasks/api_calls/rules'; import { loadPrepackagedTimelineTemplates } from '../../../../../tasks/api_calls/timelines'; import { @@ -95,10 +93,11 @@ import { } from '../../../../../objects/rule'; import { + createAndInstallMockedPrebuiltRules, getAvailablePrebuiltRulesCount, - excessivelyInstallAllPrebuiltRules, + preventPrebuiltRulesPackageInstallation, } from '../../../../../tasks/api_calls/prebuilt_rules'; -import { setRowsPerPageTo } from '../../../../../tasks/table_pagination'; +import { setRowsPerPageTo, sortByTableColumn } from '../../../../../tasks/table_pagination'; const RULE_NAME = 'Custom rule for bulk actions'; const EUI_SELECTABLE_LIST_ITEM_SR_TEXT = '. To check this option, press Enter.'; @@ -106,16 +105,8 @@ const EUI_SELECTABLE_LIST_ITEM_SR_TEXT = '. To check this option, press Enter.'; const prePopulatedIndexPatterns = ['index-1-*', 'index-2-*']; const prePopulatedTags = ['test-default-tag-1', 'test-default-tag-2']; -const expectedNumberOfCustomRulesToBeEdited = 6; const expectedNumberOfMachineLearningRulesToBeEdited = 1; -/** - * total number of custom rules that are not Machine learning - */ -const expectedNumberOfNotMLRules = - expectedNumberOfCustomRulesToBeEdited - expectedNumberOfMachineLearningRulesToBeEdited; -const numberOfRulesPerPage = 5; - const defaultRuleData = { index: prePopulatedIndexPatterns, tags: prePopulatedTags, @@ -123,7 +114,7 @@ const defaultRuleData = { timeline_id: '495ad7a7-316e-4544-8a0f-9c098daee76e', }; -describe('Detection rules, bulk edit', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('Detection rules, bulk edit', { tags: ['@ess', '@brokenInServerless'] }, () => { before(() => { cleanKibana(); }); @@ -132,20 +123,55 @@ describe('Detection rules, bulk edit', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLES // Make sure persisted rules table state is cleared resetRulesTableState(); deleteAlertsAndRules(); + preventPrebuiltRulesPackageInstallation(); // Make sure prebuilt rules aren't pulled from Fleet API cy.task('esArchiverResetKibana'); - createRule(getNewRule({ name: RULE_NAME, ...defaultRuleData, rule_id: '1' })); - createRule(getEqlRule({ ...defaultRuleData, rule_id: '2' })); - createRule(getMachineLearningRule({ tags: ['test-default-tag-1', 'test-default-tag-2'] })); - createRule(getNewThreatIndicatorRule({ ...defaultRuleData, rule_id: '4' })); - createRule(getNewThresholdRule({ ...defaultRuleData, rule_id: '5' })); - createRule(getNewTermsRule({ ...defaultRuleData, rule_id: '6' })); - - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); - - waitForRulesTableToBeLoaded(); + createRule(getNewRule({ name: RULE_NAME, ...defaultRuleData, rule_id: '1', enabled: false })); + createRule( + getEqlRule({ ...defaultRuleData, rule_id: '2', name: 'New EQL Rule', enabled: false }) + ); + createRule( + getMachineLearningRule({ + name: 'New ML Rule Test', + tags: ['test-default-tag-1', 'test-default-tag-2'], + enabled: false, + }) + ); + createRule( + getNewThreatIndicatorRule({ + ...defaultRuleData, + rule_id: '4', + name: 'Threat Indicator Rule Test', + enabled: false, + }) + ); + createRule( + getNewThresholdRule({ + ...defaultRuleData, + rule_id: '5', + name: 'Threshold Rule', + enabled: false, + }) + ); + createRule( + getNewTermsRule({ ...defaultRuleData, rule_id: '6', name: 'New Terms Rule', enabled: false }) + ); + + visitSecurityDetectionRulesPage(); + disableAutoRefresh(); }); describe('Prerequisites', () => { + const PREBUILT_RULES = [ + createRuleAssetSavedObject({ + name: 'Prebuilt rule 1', + rule_id: 'rule_1', + }), + createRuleAssetSavedObject({ + name: 'Prebuilt rule 2', + rule_id: 'rule_2', + }), + ]; + it('No rules selected', () => { openBulkActionsMenu(); @@ -156,80 +182,85 @@ describe('Detection rules, bulk edit', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLES }); it('Only prebuilt rules selected', () => { - const expectedNumberOfSelectedRules = 10; - - excessivelyInstallAllPrebuiltRules(); + createAndInstallMockedPrebuiltRules({ rules: PREBUILT_RULES }); // select Elastic(prebuilt) rules, check if we can't proceed further, as Elastic rules are not editable filterByElasticRules(); - selectNumberOfRules(expectedNumberOfSelectedRules); + selectAllRulesOnPage(); clickApplyTimelineTemplatesMenuItem(); - // check modal window for Elastic rule that can't be edited - checkPrebuiltRulesCannotBeModified(expectedNumberOfSelectedRules); + getRulesManagementTableRows().then((rows) => { + // check modal window for Elastic rule that can't be edited + checkPrebuiltRulesCannotBeModified(rows.length); - // the confirm button closes modal - cy.get(MODAL_CONFIRMATION_BTN).should('have.text', 'Close').click(); - cy.get(MODAL_CONFIRMATION_BODY).should('not.exist'); + // the confirm button closes modal + cy.get(MODAL_CONFIRMATION_BTN).should('have.text', 'Close').click(); + cy.get(MODAL_CONFIRMATION_BODY).should('not.exist'); + }); }); it('Prebuilt and custom rules selected: user proceeds with custom rules editing', () => { - excessivelyInstallAllPrebuiltRules(); + getRulesManagementTableRows().then((existedRulesRows) => { + createAndInstallMockedPrebuiltRules({ rules: PREBUILT_RULES }); - // modal window should show how many rules can be edit, how many not - selectAllRules(); - clickAddTagsMenuItem(); - waitForMixedRulesBulkEditModal(expectedNumberOfCustomRulesToBeEdited); + // modal window should show how many rules can be edit, how many not + selectAllRules(); + clickAddTagsMenuItem(); - getAvailablePrebuiltRulesCount().then((availablePrebuiltRulesCount) => { - checkPrebuiltRulesCannotBeModified(availablePrebuiltRulesCount); - }); + waitForMixedRulesBulkEditModal(existedRulesRows.length); - // user can proceed with custom rule editing - cy.get(MODAL_CONFIRMATION_BTN) - .should('have.text', `Edit ${expectedNumberOfCustomRulesToBeEdited} custom rules`) - .click(); + getAvailablePrebuiltRulesCount().then((availablePrebuiltRulesCount) => { + checkPrebuiltRulesCannotBeModified(availablePrebuiltRulesCount); + }); - // action should finish - typeTags(['test-tag']); - submitBulkEditForm(); - waitForBulkEditActionToFinish({ updatedCount: expectedNumberOfCustomRulesToBeEdited }); + // user can proceed with custom rule editing + cy.get(MODAL_CONFIRMATION_BTN) + .should('have.text', `Edit ${existedRulesRows.length} custom rules`) + .click(); + + // action should finish + typeTags(['test-tag']); + submitBulkEditForm(); + waitForBulkEditActionToFinish({ updatedCount: existedRulesRows.length }); + }); }); it('Prebuilt and custom rules selected: user cancels action', () => { - excessivelyInstallAllPrebuiltRules(); + createAndInstallMockedPrebuiltRules({ rules: PREBUILT_RULES }); - // modal window should show how many rules can be edit, how many not - selectAllRules(); - clickAddTagsMenuItem(); - waitForMixedRulesBulkEditModal(expectedNumberOfCustomRulesToBeEdited); + getRulesManagementTableRows().then((rows) => { + // modal window should show how many rules can be edit, how many not + selectAllRules(); + clickAddTagsMenuItem(); + waitForMixedRulesBulkEditModal(rows.length); - getAvailablePrebuiltRulesCount().then((availablePrebuiltRulesCount) => { - checkPrebuiltRulesCannotBeModified(availablePrebuiltRulesCount); - }); + checkPrebuiltRulesCannotBeModified(PREBUILT_RULES.length); - // user cancels action and modal disappears - cancelConfirmationModal(); + // user cancels action and modal disappears + cancelConfirmationModal(); + }); }); it('should not lose rules selection after edit action', () => { - const rulesCount = 4; + const rulesToUpdate = [RULE_NAME, 'New EQL Rule', 'New Terms Rule'] as const; // Switch to 5 rules per page, to have few pages in pagination(ideal way to test auto refresh and selection of few items) - setRowsPerPageTo(numberOfRulesPerPage); - selectNumberOfRules(rulesCount); + setRowsPerPageTo(5); + // and make the rules order isn't changing (set sorting by rule name) over time if rules are run + sortByTableColumn('Rule'); + selectRulesByName(rulesToUpdate); // open add tags form and add 2 new tags openBulkEditAddTagsForm(); typeTags(['new-tag-1']); submitBulkEditForm(); - waitForBulkEditActionToFinish({ updatedCount: rulesCount }); + waitForBulkEditActionToFinish({ updatedCount: rulesToUpdate.length }); - testMultipleSelectedRulesLabel(rulesCount); + testMultipleSelectedRulesLabel(rulesToUpdate.length); // check if first four(rulesCount) rules still selected and tags are updated - for (let i = 0; i < rulesCount; i += 1) { - cy.get(RULE_CHECKBOX).eq(i).should('be.checked'); - cy.get(RULES_TAGS_POPOVER_BTN) - .eq(i) + for (const ruleName of rulesToUpdate) { + getRuleRow(ruleName).find(EUI_CHECKBOX).should('be.checked'); + getRuleRow(ruleName) + .find(RULES_TAGS_POPOVER_BTN) .each(($el) => { testTagsBadge($el, prePopulatedTags.concat(['new-tag-1'])); }); @@ -239,7 +270,7 @@ describe('Detection rules, bulk edit', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLES describe('Tags actions', () => { it('Display list of tags in tags select', () => { - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); + selectAllRules(); openBulkEditAddTagsForm(); openTagsSelect(); @@ -252,119 +283,131 @@ describe('Detection rules, bulk edit', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLES }); it('Add tags to custom rules', () => { - const tagsToBeAdded = ['tag-to-add-1', 'tag-to-add-2']; - const resultingTags = [...prePopulatedTags, ...tagsToBeAdded]; + getRulesManagementTableRows().then((rows) => { + const tagsToBeAdded = ['tag-to-add-1', 'tag-to-add-2']; + const resultingTags = [...prePopulatedTags, ...tagsToBeAdded]; - // check if only pre-populated tags exist in the tags filter - checkTagsInTagsFilter(prePopulatedTags, EUI_SELECTABLE_LIST_ITEM_SR_TEXT); + // check if only pre-populated tags exist in the tags filter + checkTagsInTagsFilter(prePopulatedTags, EUI_SELECTABLE_LIST_ITEM_SR_TEXT); - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); + selectAllRules(); - // open add tags form and add 2 new tags - openBulkEditAddTagsForm(); - typeTags(tagsToBeAdded); - submitBulkEditForm(); - waitForBulkEditActionToFinish({ updatedCount: expectedNumberOfCustomRulesToBeEdited }); + // open add tags form and add 2 new tags + openBulkEditAddTagsForm(); + typeTags(tagsToBeAdded); + submitBulkEditForm(); + waitForBulkEditActionToFinish({ updatedCount: rows.length }); - // check if all rules have been updated with new tags - testAllTagsBadges(resultingTags); + // check if all rules have been updated with new tags + testAllTagsBadges(resultingTags); - // check that new tags were added to tags filter - // tags in tags filter sorted alphabetically - const resultingTagsInFilter = [...resultingTags].sort(); - checkTagsInTagsFilter(resultingTagsInFilter, EUI_SELECTABLE_LIST_ITEM_SR_TEXT); + // check that new tags were added to tags filter + // tags in tags filter sorted alphabetically + const resultingTagsInFilter = [...resultingTags].sort(); + checkTagsInTagsFilter(resultingTagsInFilter, EUI_SELECTABLE_LIST_ITEM_SR_TEXT); + }); }); it('Display success toast after adding tags', () => { - const tagsToBeAdded = ['tag-to-add-1', 'tag-to-add-2']; + getRulesManagementTableRows().then((rows) => { + const tagsToBeAdded = ['tag-to-add-1', 'tag-to-add-2']; - // check if only pre-populated tags exist in the tags filter - checkTagsInTagsFilter(prePopulatedTags, EUI_SELECTABLE_LIST_ITEM_SR_TEXT); + // check if only pre-populated tags exist in the tags filter + checkTagsInTagsFilter(prePopulatedTags, EUI_SELECTABLE_LIST_ITEM_SR_TEXT); - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); + selectAllRules(); - // open add tags form and add 2 new tags - openBulkEditAddTagsForm(); - typeTags(tagsToBeAdded); - submitBulkEditForm(); - waitForBulkEditActionToFinish({ updatedCount: expectedNumberOfCustomRulesToBeEdited }); + // open add tags form and add 2 new tags + openBulkEditAddTagsForm(); + typeTags(tagsToBeAdded); + submitBulkEditForm(); + waitForBulkEditActionToFinish({ updatedCount: rows.length }); + }); }); it('Overwrite tags in custom rules', () => { - const tagsToOverwrite = ['overwrite-tag-1']; + getRulesManagementTableRows().then((rows) => { + const tagsToOverwrite = ['overwrite-tag-1']; - // check if only pre-populated tags exist in the tags filter - checkTagsInTagsFilter(prePopulatedTags, EUI_SELECTABLE_LIST_ITEM_SR_TEXT); + // check if only pre-populated tags exist in the tags filter + checkTagsInTagsFilter(prePopulatedTags, EUI_SELECTABLE_LIST_ITEM_SR_TEXT); - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); + selectAllRules(); - // open add tags form, check overwrite tags and warning message, type tags - openBulkEditAddTagsForm(); - checkOverwriteTagsCheckbox(); + // open add tags form, check overwrite tags and warning message, type tags + openBulkEditAddTagsForm(); + checkOverwriteTagsCheckbox(); - cy.get(RULES_BULK_EDIT_TAGS_WARNING).should( - 'have.text', - `You’re about to overwrite tags for ${expectedNumberOfCustomRulesToBeEdited} selected rules, press Save to apply changes.` - ); + cy.get(RULES_BULK_EDIT_TAGS_WARNING).should( + 'have.text', + `You’re about to overwrite tags for ${rows.length} selected rules, press Save to apply changes.` + ); - typeTags(tagsToOverwrite); - submitBulkEditForm(); - waitForBulkEditActionToFinish({ updatedCount: expectedNumberOfCustomRulesToBeEdited }); + typeTags(tagsToOverwrite); + submitBulkEditForm(); + waitForBulkEditActionToFinish({ updatedCount: rows.length }); - // check if all rules have been updated with new tags - testAllTagsBadges(tagsToOverwrite); + // check if all rules have been updated with new tags + testAllTagsBadges(tagsToOverwrite); - // check that only new tags are in the tag filter - checkTagsInTagsFilter(tagsToOverwrite, EUI_SELECTABLE_LIST_ITEM_SR_TEXT); + // check that only new tags are in the tag filter + checkTagsInTagsFilter(tagsToOverwrite, EUI_SELECTABLE_LIST_ITEM_SR_TEXT); + }); }); it('Delete tags from custom rules', () => { - const tagsToDelete = prePopulatedTags.slice(0, 1); - const resultingTags = prePopulatedTags.slice(1); + getRulesManagementTableRows().then((rows) => { + const tagsToDelete = prePopulatedTags.slice(0, 1); + const resultingTags = prePopulatedTags.slice(1); - // check if only pre-populated tags exist in the tags filter - checkTagsInTagsFilter(prePopulatedTags, EUI_SELECTABLE_LIST_ITEM_SR_TEXT); + // check if only pre-populated tags exist in the tags filter + checkTagsInTagsFilter(prePopulatedTags, EUI_SELECTABLE_LIST_ITEM_SR_TEXT); - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); + selectAllRules(); - // open add tags form, check overwrite tags, type tags - openBulkEditDeleteTagsForm(); - typeTags(tagsToDelete); - submitBulkEditForm(); - waitForBulkEditActionToFinish({ updatedCount: expectedNumberOfCustomRulesToBeEdited }); + // open add tags form, check overwrite tags, type tags + openBulkEditDeleteTagsForm(); + typeTags(tagsToDelete); + submitBulkEditForm(); + waitForBulkEditActionToFinish({ updatedCount: rows.length }); - // check tags has been removed from all rules - testAllTagsBadges(resultingTags); + // check tags has been removed from all rules + testAllTagsBadges(resultingTags); - // check that tags were removed from the tag filter - checkTagsInTagsFilter(resultingTags, EUI_SELECTABLE_LIST_ITEM_SR_TEXT); + // check that tags were removed from the tag filter + checkTagsInTagsFilter(resultingTags, EUI_SELECTABLE_LIST_ITEM_SR_TEXT); + }); }); }); describe('Index patterns', () => { it('Index pattern action applied to custom rules, including machine learning: user proceeds with edit of custom non machine learning rule', () => { - const indexPattersToBeAdded = ['index-to-add-1-*', 'index-to-add-2-*']; - const resultingIndexPatterns = [...prePopulatedIndexPatterns, ...indexPattersToBeAdded]; + getRulesManagementTableRows().then((rows) => { + const indexPattersToBeAdded = ['index-to-add-1-*', 'index-to-add-2-*']; + const resultingIndexPatterns = [...prePopulatedIndexPatterns, ...indexPattersToBeAdded]; - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); - clickAddIndexPatternsMenuItem(); + selectAllRules(); + clickAddIndexPatternsMenuItem(); - // confirm editing custom rules, that are not Machine Learning - checkMachineLearningRulesCannotBeModified(expectedNumberOfMachineLearningRulesToBeEdited); - cy.get(MODAL_CONFIRMATION_BTN).click(); + // confirm editing custom rules, that are not Machine Learning + checkMachineLearningRulesCannotBeModified(expectedNumberOfMachineLearningRulesToBeEdited); + cy.get(MODAL_CONFIRMATION_BTN).click(); - typeIndexPatterns(indexPattersToBeAdded); - submitBulkEditForm(); + typeIndexPatterns(indexPattersToBeAdded); + submitBulkEditForm(); - waitForBulkEditActionToFinish({ updatedCount: expectedNumberOfNotMLRules }); + waitForBulkEditActionToFinish({ + updatedCount: rows.length - expectedNumberOfMachineLearningRulesToBeEdited, + }); - // check if rule has been updated - goToTheRuleDetailsOf(RULE_NAME); - hasIndexPatterns(resultingIndexPatterns.join('')); + // check if rule has been updated + goToTheRuleDetailsOf(RULE_NAME); + hasIndexPatterns(resultingIndexPatterns.join('')); + }); }); it('Index pattern action applied to custom rules, including machine learning: user cancels action', () => { - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); + selectAllRules(); clickAddIndexPatternsMenuItem(); // confirm editing custom rules, that are not Machine Learning @@ -375,46 +418,68 @@ describe('Detection rules, bulk edit', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLES }); it('Add index patterns to custom rules', () => { - const indexPattersToBeAdded = ['index-to-add-1-*', 'index-to-add-2-*']; - const resultingIndexPatterns = [...prePopulatedIndexPatterns, ...indexPattersToBeAdded]; - - // select only rules that are not ML - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); - unselectRuleByName(getMachineLearningRule().name); - - openBulkEditAddIndexPatternsForm(); - typeIndexPatterns(indexPattersToBeAdded); - submitBulkEditForm(); - - waitForBulkEditActionToFinish({ updatedCount: expectedNumberOfNotMLRules }); + getRulesManagementTableRows().then((rows) => { + const indexPattersToBeAdded = ['index-to-add-1-*', 'index-to-add-2-*']; + const resultingIndexPatterns = [...prePopulatedIndexPatterns, ...indexPattersToBeAdded]; + + // select only rules that are not ML + selectRulesByName([ + RULE_NAME, + 'New EQL Rule', + 'Threat Indicator Rule Test', + 'Threshold Rule', + 'New Terms Rule', + ]); + + openBulkEditAddIndexPatternsForm(); + typeIndexPatterns(indexPattersToBeAdded); + submitBulkEditForm(); + + waitForBulkEditActionToFinish({ + updatedCount: rows.length - expectedNumberOfMachineLearningRulesToBeEdited, + }); - // check if rule has been updated - goToTheRuleDetailsOf(RULE_NAME); - hasIndexPatterns(resultingIndexPatterns.join('')); + // check if rule has been updated + goToTheRuleDetailsOf(RULE_NAME); + hasIndexPatterns(resultingIndexPatterns.join('')); + }); }); it('Display success toast after editing the index pattern', () => { - const indexPattersToBeAdded = ['index-to-add-1-*', 'index-to-add-2-*']; - - // select only rules that are not ML - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); - unselectRuleByName(getMachineLearningRule().name); - - openBulkEditAddIndexPatternsForm(); - typeIndexPatterns(indexPattersToBeAdded); - submitBulkEditForm(); - - waitForBulkEditActionToFinish({ - updatedCount: expectedNumberOfNotMLRules, + getRulesManagementTableRows().then((rows) => { + const indexPattersToBeAdded = ['index-to-add-1-*', 'index-to-add-2-*']; + + // select only rules that are not ML + selectRulesByName([ + RULE_NAME, + 'New EQL Rule', + 'Threat Indicator Rule Test', + 'Threshold Rule', + 'New Terms Rule', + ]); + + openBulkEditAddIndexPatternsForm(); + typeIndexPatterns(indexPattersToBeAdded); + submitBulkEditForm(); + + waitForBulkEditActionToFinish({ + updatedCount: rows.length - expectedNumberOfMachineLearningRulesToBeEdited, + }); }); }); it('Overwrite index patterns in custom rules', () => { + const rulesToSelect = [ + RULE_NAME, + 'New EQL Rule', + 'Threat Indicator Rule Test', + 'Threshold Rule', + 'New Terms Rule', + ] as const; const indexPattersToWrite = ['index-to-write-1-*', 'index-to-write-2-*']; // select only rules that are not ML - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); - unselectRuleByName(getMachineLearningRule().name); + selectRulesByName(rulesToSelect); openBulkEditAddIndexPatternsForm(); @@ -422,13 +487,13 @@ describe('Detection rules, bulk edit', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLES checkOverwriteIndexPatternsCheckbox(); cy.get(RULES_BULK_EDIT_INDEX_PATTERNS_WARNING).should( 'have.text', - `You’re about to overwrite index patterns for ${expectedNumberOfNotMLRules} selected rules, press Save to apply changes.` + `You’re about to overwrite index patterns for ${rulesToSelect.length} selected rules, press Save to apply changes.` ); typeIndexPatterns(indexPattersToWrite); submitBulkEditForm(); - waitForBulkEditActionToFinish({ updatedCount: expectedNumberOfNotMLRules }); + waitForBulkEditActionToFinish({ updatedCount: rulesToSelect.length }); // check if rule has been updated goToTheRuleDetailsOf(RULE_NAME); @@ -436,18 +501,24 @@ describe('Detection rules, bulk edit', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLES }); it('Delete index patterns from custom rules', () => { + const rulesToSelect = [ + RULE_NAME, + 'New EQL Rule', + 'Threat Indicator Rule Test', + 'Threshold Rule', + 'New Terms Rule', + ] as const; const indexPatternsToDelete = prePopulatedIndexPatterns.slice(0, 1); const resultingIndexPatterns = prePopulatedIndexPatterns.slice(1); // select only not ML rules - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); - unselectRuleByName(getMachineLearningRule().name); + selectRulesByName(rulesToSelect); openBulkEditDeleteIndexPatternsForm(); typeIndexPatterns(indexPatternsToDelete); submitBulkEditForm(); - waitForBulkEditActionToFinish({ updatedCount: expectedNumberOfNotMLRules }); + waitForBulkEditActionToFinish({ updatedCount: rulesToSelect.length }); // check if rule has been updated goToTheRuleDetailsOf(RULE_NAME); @@ -455,16 +526,23 @@ describe('Detection rules, bulk edit', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLES }); it('Delete all index patterns from custom rules', () => { + const rulesToSelect = [ + RULE_NAME, + 'New EQL Rule', + 'Threat Indicator Rule Test', + 'Threshold Rule', + 'New Terms Rule', + ] as const; + // select only rules that are not ML - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); - unselectRuleByName(getMachineLearningRule().name); + selectRulesByName(rulesToSelect); openBulkEditDeleteIndexPatternsForm(); typeIndexPatterns(prePopulatedIndexPatterns); submitBulkEditForm(); // error toast should be displayed that that rules edit failed - waitForBulkEditActionToFinish({ failedCount: expectedNumberOfNotMLRules }); + waitForBulkEditActionToFinish({ failedCount: rulesToSelect.length }); // on error toast button click display error that index patterns can't be empty clickErrorToastBtn(); @@ -478,97 +556,107 @@ describe('Detection rules, bulk edit', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLES }); it('Apply timeline template to custom rules', () => { - const timelineTemplateName = 'Generic Endpoint Timeline'; + getRulesManagementTableRows().then((rows) => { + const timelineTemplateName = 'Generic Endpoint Timeline'; - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); + selectAllRules(); - // open Timeline template form, check warning, select timeline template - clickApplyTimelineTemplatesMenuItem(); - cy.get(RULES_BULK_EDIT_TIMELINE_TEMPLATES_WARNING).contains( - `You're about to apply changes to ${expectedNumberOfCustomRulesToBeEdited} selected rules. If you previously applied Timeline templates to these rules, they will be overwritten or (if you select 'None') reset to none.` - ); - selectTimelineTemplate(timelineTemplateName); + // open Timeline template form, check warning, select timeline template + clickApplyTimelineTemplatesMenuItem(); + cy.get(RULES_BULK_EDIT_TIMELINE_TEMPLATES_WARNING).contains( + `You're about to apply changes to ${rows.length} selected rules. If you previously applied Timeline templates to these rules, they will be overwritten or (if you select 'None') reset to none.` + ); + selectTimelineTemplate(timelineTemplateName); - submitBulkEditForm(); - waitForBulkEditActionToFinish({ updatedCount: expectedNumberOfCustomRulesToBeEdited }); + submitBulkEditForm(); + waitForBulkEditActionToFinish({ updatedCount: rows.length }); - // check if timeline template has been updated to selected one - goToTheRuleDetailsOf(RULE_NAME); - getDetails(TIMELINE_TEMPLATE_DETAILS).should('have.text', timelineTemplateName); + // check if timeline template has been updated to selected one + goToTheRuleDetailsOf(RULE_NAME); + getDetails(TIMELINE_TEMPLATE_DETAILS).should('have.text', timelineTemplateName); + }); }); it('Reset timeline template to None for custom rules', () => { - const noneTimelineTemplate = 'None'; + getRulesManagementTableRows().then((rows) => { + const noneTimelineTemplate = 'None'; - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); + selectAllRules(); - // open Timeline template form, submit form without picking timeline template as None is selected by default - clickApplyTimelineTemplatesMenuItem(); + // open Timeline template form, submit form without picking timeline template as None is selected by default + clickApplyTimelineTemplatesMenuItem(); - submitBulkEditForm(); - waitForBulkEditActionToFinish({ updatedCount: expectedNumberOfCustomRulesToBeEdited }); + submitBulkEditForm(); + waitForBulkEditActionToFinish({ updatedCount: rows.length }); - // check if timeline template has been updated to selected one, by opening rule that have had timeline prior to editing - goToTheRuleDetailsOf(RULE_NAME); - getDetails(TIMELINE_TEMPLATE_DETAILS).should('have.text', noneTimelineTemplate); + // check if timeline template has been updated to selected one, by opening rule that have had timeline prior to editing + goToTheRuleDetailsOf(RULE_NAME); + getDetails(TIMELINE_TEMPLATE_DETAILS).should('have.text', noneTimelineTemplate); + }); }); }); describe('Schedule', () => { it('Default values are applied to bulk edit schedule fields', () => { - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); - clickUpdateScheduleMenuItem(); + getRulesManagementTableRows().then((rows) => { + selectAllRules(); + clickUpdateScheduleMenuItem(); - assertUpdateScheduleWarningExists(expectedNumberOfCustomRulesToBeEdited); + assertUpdateScheduleWarningExists(rows.length); - assertDefaultValuesAreAppliedToScheduleFields({ - interval: 5, - lookback: 1, + assertDefaultValuesAreAppliedToScheduleFields({ + interval: 5, + lookback: 1, + }); }); }); it('Updates schedule for custom rules', () => { - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); - clickUpdateScheduleMenuItem(); + getRulesManagementTableRows().then((rows) => { + selectAllRules(); + clickUpdateScheduleMenuItem(); - assertUpdateScheduleWarningExists(expectedNumberOfCustomRulesToBeEdited); + assertUpdateScheduleWarningExists(rows.length); - typeScheduleInterval('20'); - setScheduleIntervalTimeUnit('Hours'); + typeScheduleInterval('20'); + setScheduleIntervalTimeUnit('Hours'); - typeScheduleLookback('10'); - setScheduleLookbackTimeUnit('Minutes'); + typeScheduleLookback('10'); + setScheduleLookbackTimeUnit('Minutes'); - submitBulkEditForm(); - waitForBulkEditActionToFinish({ updatedCount: expectedNumberOfCustomRulesToBeEdited }); + submitBulkEditForm(); + waitForBulkEditActionToFinish({ updatedCount: rows.length }); - goToTheRuleDetailsOf(RULE_NAME); + goToTheRuleDetailsOf(RULE_NAME); - assertRuleScheduleValues({ - interval: '20h', - lookback: '10m', + assertRuleScheduleValues({ + interval: '20h', + lookback: '10m', + }); }); }); it('Validates invalid inputs when scheduling for custom rules', () => { - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); - clickUpdateScheduleMenuItem(); + getRulesManagementTableRows().then((rows) => { + selectAllRules(); + clickUpdateScheduleMenuItem(); - // Validate invalid values are corrected to minimumValue - for 0 and negative values - typeScheduleInterval('0'); - setScheduleIntervalTimeUnit('Hours'); + // Validate invalid values are corrected to minimumValue - for 0 and negative values + typeScheduleInterval('0'); + setScheduleIntervalTimeUnit('Hours'); - typeScheduleLookback('-5'); - setScheduleLookbackTimeUnit('Seconds'); + typeScheduleLookback('-5'); + setScheduleLookbackTimeUnit('Seconds'); - submitBulkEditForm(); - waitForBulkEditActionToFinish({ updatedCount: expectedNumberOfCustomRulesToBeEdited }); + submitBulkEditForm(); + waitForBulkEditActionToFinish({ updatedCount: rows.length }); - goToTheRuleDetailsOf(RULE_NAME); + goToTheRuleDetailsOf(RULE_NAME); - assertRuleScheduleValues({ - interval: '1h', - lookback: '1s', + assertRuleScheduleValues({ + interval: '1h', + lookback: '1s', + }); }); }); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/bulk_actions/bulk_edit_rules_actions.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/bulk_actions/bulk_edit_rules_actions.cy.ts index 3b3755dc66d3f..997ded389422e 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/bulk_actions/bulk_edit_rules_actions.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/bulk_actions/bulk_edit_rules_actions.cy.ts @@ -12,7 +12,6 @@ import { waitForCallOutToBeShown, } from '../../../../../tasks/common/callouts'; import { createRuleAssetSavedObject } from '../../../../../helpers/rules'; -import { tag } from '../../../../../tags'; import { RULES_BULK_EDIT_ACTIONS_INFO, @@ -36,9 +35,11 @@ import { pickSummaryOfAlertsOption, } from '../../../../../tasks/common/rule_actions'; import { - waitForRulesTableToBeLoaded, - selectNumberOfRules, goToEditRuleActionsSettingsOf, + expectManagementTableRules, + selectAllRules, + selectRulesByName, + getRulesManagementTableRows, disableAutoRefresh, } from '../../../../../tasks/alerts_detection_rules'; import { @@ -48,9 +49,7 @@ import { openBulkEditRuleActionsForm, openBulkActionsMenu, } from '../../../../../tasks/rules_bulk_actions'; -import { login, visitWithoutDateRange } from '../../../../../tasks/login'; - -import { SECURITY_DETECTIONS_RULES_URL } from '../../../../../urls/navigation'; +import { login, visitSecurityDetectionRulesPage } from '../../../../../tasks/login'; import { createRule } from '../../../../../tasks/api_calls/rules'; import { createSlackConnector } from '../../../../../tasks/api_calls/connectors'; @@ -70,17 +69,13 @@ import { } from '../../../../../tasks/api_calls/prebuilt_rules'; const ruleNameToAssert = 'Custom rule name with actions'; -const expectedNumberOfCustomRulesToBeEdited = 7; -// 7 custom rules of different types + 2 prebuilt. -// number of selected rules doesn't matter, we only want to make sure they will be edited an no modal window displayed as for other actions -const expectedNumberOfRulesToBeEdited = expectedNumberOfCustomRulesToBeEdited + 2; const expectedExistingSlackMessage = 'Existing slack action'; const expectedSlackMessage = 'Slack action test message'; describe( 'Detection rules, bulk edit of rule actions', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { beforeEach(() => { cleanKibana(); @@ -106,15 +101,33 @@ describe( }, ]; - createRule(getNewRule({ name: ruleNameToAssert, rule_id: '1', max_signals: 500, actions })); + createRule( + getNewRule({ + rule_id: '1', + name: ruleNameToAssert, + max_signals: 500, + actions, + enabled: false, + }) + ); }); - createRule(getEqlRule({ rule_id: '2' })); - createRule(getMachineLearningRule({ rule_id: '3' })); - createRule(getNewThreatIndicatorRule({ rule_id: '4' })); - createRule(getNewThresholdRule({ rule_id: '5' })); - createRule(getNewTermsRule({ rule_id: '6' })); - createRule(getNewRule({ saved_id: 'mocked', rule_id: '7' })); + createRule(getEqlRule({ rule_id: '2', name: 'New EQL Rule', enabled: false })); + createRule( + getMachineLearningRule({ rule_id: '3', name: 'New ML Rule Test', enabled: false }) + ); + createRule( + getNewThreatIndicatorRule({ + rule_id: '4', + name: 'Threat Indicator Rule Test', + enabled: false, + }) + ); + createRule(getNewThresholdRule({ rule_id: '5', name: 'Threshold Rule', enabled: false })); + createRule(getNewTermsRule({ rule_id: '6', name: 'New Terms Rule', enabled: false })); + createRule( + getNewRule({ saved_id: 'mocked', rule_id: '7', name: 'New Rule Test', enabled: false }) + ); createSlackConnector(); @@ -136,11 +149,22 @@ describe( context('Restricted action privileges', () => { it("User with no privileges can't add rule actions", () => { login(ROLES.hunter_no_actions); - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL, ROLES.hunter_no_actions); + visitSecurityDetectionRulesPage(ROLES.hunter_no_actions); + + expectManagementTableRules([ + ruleNameToAssert, + 'New EQL Rule', + 'New ML Rule Test', + 'Threat Indicator Rule Test', + 'Threshold Rule', + 'New Terms Rule', + 'New Rule Test', + 'Test rule 1', + 'Test rule 2', + ]); waitForCallOutToBeShown(MISSING_PRIVILEGES_CALLOUT, 'primary'); - waitForRulesTableToBeLoaded(); - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); + selectAllRules(); openBulkActionsMenu(); @@ -151,9 +175,20 @@ describe( context('All actions privileges', () => { beforeEach(() => { login(); - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); - waitForRulesTableToBeLoaded(); + visitSecurityDetectionRulesPage(); disableAutoRefresh(); + + expectManagementTableRules([ + ruleNameToAssert, + 'New EQL Rule', + 'New ML Rule Test', + 'Threat Indicator Rule Test', + 'Threshold Rule', + 'New Terms Rule', + 'New Rule Test', + 'Test rule 1', + 'Test rule 2', + ]); }); it('Add a rule action to rules (existing connector)', () => { @@ -164,62 +199,75 @@ describe( excessivelyInstallAllPrebuiltRules(); - // select both custom and prebuilt rules - selectNumberOfRules(expectedNumberOfRulesToBeEdited); - openBulkEditRuleActionsForm(); + getRulesManagementTableRows().then((rows) => { + // select both custom and prebuilt rules + selectAllRules(); + openBulkEditRuleActionsForm(); - // ensure rule actions info callout displayed on the form - cy.get(RULES_BULK_EDIT_ACTIONS_INFO).should('be.visible'); + // ensure rule actions info callout displayed on the form + cy.get(RULES_BULK_EDIT_ACTIONS_INFO).should('be.visible'); - addSlackRuleAction(expectedSlackMessage); - pickSummaryOfAlertsOption(); - pickCustomFrequencyOption(expectedActionFrequency); + addSlackRuleAction(expectedSlackMessage); + pickSummaryOfAlertsOption(); + pickCustomFrequencyOption(expectedActionFrequency); - submitBulkEditForm(); - waitForBulkEditActionToFinish({ updatedCount: expectedNumberOfRulesToBeEdited }); + submitBulkEditForm(); + waitForBulkEditActionToFinish({ updatedCount: rows.length }); - // check if rule has been updated - goToEditRuleActionsSettingsOf(ruleNameToAssert); + // check if rule has been updated + goToEditRuleActionsSettingsOf(ruleNameToAssert); - assertSelectedSummaryOfAlertsOption(); - assertSelectedCustomFrequencyOption(expectedActionFrequency, 1); - assertSlackRuleAction(expectedExistingSlackMessage, 0); - assertSlackRuleAction(expectedSlackMessage, 1); - // ensure there is no third action - cy.get(actionFormSelector(2)).should('not.exist'); + assertSelectedSummaryOfAlertsOption(); + assertSelectedCustomFrequencyOption(expectedActionFrequency, 1); + assertSlackRuleAction(expectedExistingSlackMessage, 0); + assertSlackRuleAction(expectedSlackMessage, 1); + // ensure there is no third action + cy.get(actionFormSelector(2)).should('not.exist'); + }); }); it('Overwrite rule actions in rules', () => { excessivelyInstallAllPrebuiltRules(); - // select both custom and prebuilt rules - selectNumberOfRules(expectedNumberOfRulesToBeEdited); - openBulkEditRuleActionsForm(); - - addSlackRuleAction(expectedSlackMessage); - pickSummaryOfAlertsOption(); - pickPerRuleRunFrequencyOption(); - - // check overwrite box, ensure warning is displayed - checkOverwriteRuleActionsCheckbox(); - cy.get(RULES_BULK_EDIT_ACTIONS_WARNING).contains( - `You're about to overwrite rule actions for ${expectedNumberOfRulesToBeEdited} selected rules` - ); - - submitBulkEditForm(); - waitForBulkEditActionToFinish({ updatedCount: expectedNumberOfRulesToBeEdited }); - - // check if rule has been updated - goToEditRuleActionsSettingsOf(ruleNameToAssert); - - assertSelectedSummaryOfAlertsOption(); - assertSelectedPerRuleRunFrequencyOption(); - assertSlackRuleAction(expectedSlackMessage); - // ensure existing action was overwritten - cy.get(actionFormSelector(1)).should('not.exist'); + getRulesManagementTableRows().then((rows) => { + // select both custom and prebuilt rules + selectAllRules(); + openBulkEditRuleActionsForm(); + + addSlackRuleAction(expectedSlackMessage); + pickSummaryOfAlertsOption(); + pickPerRuleRunFrequencyOption(); + + // check overwrite box, ensure warning is displayed + checkOverwriteRuleActionsCheckbox(); + cy.get(RULES_BULK_EDIT_ACTIONS_WARNING).contains( + `You're about to overwrite rule actions for ${rows.length} selected rules` + ); + + submitBulkEditForm(); + waitForBulkEditActionToFinish({ updatedCount: rows.length }); + + // check if rule has been updated + goToEditRuleActionsSettingsOf(ruleNameToAssert); + + assertSelectedSummaryOfAlertsOption(); + assertSelectedPerRuleRunFrequencyOption(); + assertSlackRuleAction(expectedSlackMessage); + // ensure existing action was overwritten + cy.get(actionFormSelector(1)).should('not.exist'); + }); }); it('Add a rule action to rules (new connector)', () => { + const rulesToSelect = [ + ruleNameToAssert, + 'New EQL Rule', + 'New ML Rule Test', + 'Threat Indicator Rule Test', + 'Threshold Rule', + 'New Terms Rule', + 'New Rule Test', + ] as const; const expectedActionFrequency: RuleActionCustomFrequency = { throttle: 2, throttleUnit: 'h', @@ -227,7 +275,7 @@ describe( const expectedEmail = 'test@example.com'; const expectedSubject = 'Subject'; - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); + selectRulesByName(rulesToSelect); openBulkEditRuleActionsForm(); addEmailConnectorAndRuleAction(expectedEmail, expectedSubject); @@ -235,7 +283,7 @@ describe( pickCustomFrequencyOption(expectedActionFrequency); submitBulkEditForm(); - waitForBulkEditActionToFinish({ updatedCount: expectedNumberOfCustomRulesToBeEdited }); + waitForBulkEditActionToFinish({ updatedCount: rulesToSelect.length }); // check if rule has been updated goToEditRuleActionsSettingsOf(ruleNameToAssert); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/bulk_actions/bulk_edit_rules_data_view.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/bulk_actions/bulk_edit_rules_data_view.cy.ts index 9ac8cfbe5ddd0..32e96dd8f3cfb 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/bulk_actions/bulk_edit_rules_data_view.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/bulk_actions/bulk_edit_rules_data_view.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../../../../tags'; - import { RULES_BULK_EDIT_DATA_VIEWS_WARNING, RULES_BULK_EDIT_OVERWRITE_DATA_VIEW_CHECKBOX, @@ -15,10 +13,12 @@ import { import { DATA_VIEW_DETAILS, INDEX_PATTERNS_DETAILS } from '../../../../../screens/rule_details'; import { - waitForRulesTableToBeLoaded, goToRuleDetails, - selectNumberOfRules, goToTheRuleDetailsOf, + expectManagementTableRules, + selectAllRules, + getRulesManagementTableRows, + disableAutoRefresh, } from '../../../../../tasks/alerts_detection_rules'; import { @@ -36,9 +36,8 @@ import { getDetails, assertDetailsNotExist, } from '../../../../../tasks/rule_details'; -import { login, visitWithoutDateRange } from '../../../../../tasks/login'; +import { login, visitSecurityDetectionRulesPage } from '../../../../../tasks/login'; -import { SECURITY_DETECTIONS_RULES_URL } from '../../../../../urls/navigation'; import { createRule } from '../../../../../tasks/api_calls/rules'; import { cleanKibana, deleteAlertsAndRules, postDataView } from '../../../../../tasks/common'; @@ -54,11 +53,9 @@ const DATA_VIEW_ID = 'auditbeat'; const expectedIndexPatterns = ['index-1-*', 'index-2-*']; -const expectedNumberOfCustomRulesToBeEdited = 6; - describe( 'Bulk editing index patterns of rules with a data view only', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { before(() => { cleanKibana(); @@ -71,185 +68,244 @@ describe( postDataView(DATA_VIEW_ID); - createRule(getNewRule({ index: undefined, data_view_id: DATA_VIEW_ID, rule_id: '1' })); - createRule(getEqlRule({ index: undefined, data_view_id: DATA_VIEW_ID, rule_id: '2' })); createRule( - getNewThreatIndicatorRule({ index: undefined, data_view_id: DATA_VIEW_ID, rule_id: '3' }) + getNewRule({ + index: undefined, + data_view_id: DATA_VIEW_ID, + rule_id: '1', + name: 'New Rule Test 1', + enabled: false, + }) + ); + createRule( + getEqlRule({ + index: undefined, + data_view_id: DATA_VIEW_ID, + rule_id: '2', + name: 'New EQL Rule', + enabled: false, + }) ); createRule( - getNewThresholdRule({ index: undefined, data_view_id: DATA_VIEW_ID, rule_id: '4' }) + getNewThreatIndicatorRule({ + index: undefined, + data_view_id: DATA_VIEW_ID, + rule_id: '3', + name: 'Threat Indicator Rule Test', + enabled: false, + }) + ); + createRule( + getNewThresholdRule({ + index: undefined, + data_view_id: DATA_VIEW_ID, + rule_id: '4', + name: 'Threshold Rule', + enabled: false, + }) + ); + createRule( + getNewTermsRule({ + index: undefined, + data_view_id: DATA_VIEW_ID, + rule_id: '5', + name: 'New Terms Rule', + enabled: false, + }) ); - createRule(getNewTermsRule({ index: undefined, data_view_id: DATA_VIEW_ID, rule_id: '5' })); createRule( getNewRule({ index: undefined, data_view_id: DATA_VIEW_ID, saved_id: 'mocked', rule_id: '6', + name: 'New Rule Test 2', + enabled: false, }) ); - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); - - waitForRulesTableToBeLoaded(); + visitSecurityDetectionRulesPage(); + disableAutoRefresh(); + + expectManagementTableRules([ + 'New Rule Test 1', + 'New EQL Rule', + 'Threat Indicator Rule Test', + 'Threshold Rule', + 'New Terms Rule', + 'New Rule Test 2', + ]); }); it('Add index patterns to custom rules with configured data view: all rules are skipped', () => { - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); - - openBulkEditAddIndexPatternsForm(); - typeIndexPatterns(expectedIndexPatterns); - submitBulkEditForm(); - - waitForBulkEditActionToFinish({ - skippedCount: expectedNumberOfCustomRulesToBeEdited, - showDataViewsWarning: true, + getRulesManagementTableRows().then((rows) => { + selectAllRules(); + + openBulkEditAddIndexPatternsForm(); + typeIndexPatterns(expectedIndexPatterns); + submitBulkEditForm(); + + waitForBulkEditActionToFinish({ + skippedCount: rows.length, + showDataViewsWarning: true, + }); + + // check if rule still has data view and index patterns field does not exist + goToRuleDetails(); + getDetails(DATA_VIEW_DETAILS).contains(DATA_VIEW_ID); + assertDetailsNotExist(INDEX_PATTERNS_DETAILS); }); - - // check if rule still has data view and index patterns field does not exist - goToRuleDetails(); - getDetails(DATA_VIEW_DETAILS).contains(DATA_VIEW_ID); - assertDetailsNotExist(INDEX_PATTERNS_DETAILS); }); it('Add index patterns to custom rules with configured data view when data view checkbox is checked: rules are updated', () => { - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); + getRulesManagementTableRows().then((rows) => { + selectAllRules(); - openBulkEditAddIndexPatternsForm(); - typeIndexPatterns(expectedIndexPatterns); + openBulkEditAddIndexPatternsForm(); + typeIndexPatterns(expectedIndexPatterns); - // click on data view overwrite checkbox, ensure warning is displayed - cy.get(RULES_BULK_EDIT_DATA_VIEWS_WARNING).should('not.exist'); - checkOverwriteDataViewCheckbox(); - cy.get(RULES_BULK_EDIT_DATA_VIEWS_WARNING).should('be.visible'); + // click on data view overwrite checkbox, ensure warning is displayed + cy.get(RULES_BULK_EDIT_DATA_VIEWS_WARNING).should('not.exist'); + checkOverwriteDataViewCheckbox(); + cy.get(RULES_BULK_EDIT_DATA_VIEWS_WARNING).should('be.visible'); - submitBulkEditForm(); + submitBulkEditForm(); - waitForBulkEditActionToFinish({ updatedCount: expectedNumberOfCustomRulesToBeEdited }); + waitForBulkEditActionToFinish({ updatedCount: rows.length }); - // check if rule has been updated with index patterns and data view does not exist - goToRuleDetails(); - hasIndexPatterns(expectedIndexPatterns.join('')); - assertDetailsNotExist(DATA_VIEW_DETAILS); + // check if rule has been updated with index patterns and data view does not exist + goToRuleDetails(); + hasIndexPatterns(expectedIndexPatterns.join('')); + assertDetailsNotExist(DATA_VIEW_DETAILS); + }); }); it('Overwrite index patterns in custom rules with configured data view when overwrite data view checkbox is NOT checked:: rules are skipped', () => { - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); - - openBulkEditAddIndexPatternsForm(); - typeIndexPatterns(expectedIndexPatterns); - checkOverwriteIndexPatternsCheckbox(); - submitBulkEditForm(); - - waitForBulkEditActionToFinish({ - skippedCount: expectedNumberOfCustomRulesToBeEdited, - showDataViewsWarning: true, + getRulesManagementTableRows().then((rows) => { + selectAllRules(); + + openBulkEditAddIndexPatternsForm(); + typeIndexPatterns(expectedIndexPatterns); + checkOverwriteIndexPatternsCheckbox(); + submitBulkEditForm(); + + waitForBulkEditActionToFinish({ + skippedCount: rows.length, + showDataViewsWarning: true, + }); + + // check if rule still has data view and index patterns field does not exist + goToRuleDetails(); + getDetails(DATA_VIEW_DETAILS).contains(DATA_VIEW_ID); + assertDetailsNotExist(INDEX_PATTERNS_DETAILS); }); - - // check if rule still has data view and index patterns field does not exist - goToRuleDetails(); - getDetails(DATA_VIEW_DETAILS).contains(DATA_VIEW_ID); - assertDetailsNotExist(INDEX_PATTERNS_DETAILS); }); it('Overwrite index patterns in custom rules with configured data view when overwrite data view checkbox is checked: rules are updated', () => { - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); + getRulesManagementTableRows().then((rows) => { + selectAllRules(); - openBulkEditAddIndexPatternsForm(); - typeIndexPatterns(expectedIndexPatterns); - checkOverwriteIndexPatternsCheckbox(); - checkOverwriteDataViewCheckbox(); + openBulkEditAddIndexPatternsForm(); + typeIndexPatterns(expectedIndexPatterns); + checkOverwriteIndexPatternsCheckbox(); + checkOverwriteDataViewCheckbox(); - submitBulkEditForm(); + submitBulkEditForm(); - waitForBulkEditActionToFinish({ updatedCount: expectedNumberOfCustomRulesToBeEdited }); + waitForBulkEditActionToFinish({ updatedCount: rows.length }); - // check if rule has been overwritten with index patterns and data view does not exist - goToRuleDetails(); - hasIndexPatterns(expectedIndexPatterns.join('')); - assertDetailsNotExist(DATA_VIEW_DETAILS); + // check if rule has been overwritten with index patterns and data view does not exist + goToRuleDetails(); + hasIndexPatterns(expectedIndexPatterns.join('')); + assertDetailsNotExist(DATA_VIEW_DETAILS); + }); }); it('Delete index patterns in custom rules with configured data view: rules are skipped', () => { - selectNumberOfRules(expectedNumberOfCustomRulesToBeEdited); + getRulesManagementTableRows().then((rows) => { + selectAllRules(); - openBulkEditDeleteIndexPatternsForm(); - typeIndexPatterns(expectedIndexPatterns); + openBulkEditDeleteIndexPatternsForm(); + typeIndexPatterns(expectedIndexPatterns); - // in delete form data view checkbox is absent - cy.get(RULES_BULK_EDIT_OVERWRITE_DATA_VIEW_CHECKBOX).should('not.exist'); + // in delete form data view checkbox is absent + cy.get(RULES_BULK_EDIT_OVERWRITE_DATA_VIEW_CHECKBOX).should('not.exist'); - submitBulkEditForm(); + submitBulkEditForm(); - waitForBulkEditActionToFinish({ - skippedCount: expectedNumberOfCustomRulesToBeEdited, - showDataViewsWarning: true, - }); + waitForBulkEditActionToFinish({ + skippedCount: rows.length, + showDataViewsWarning: true, + }); - // check if rule still has data view and index patterns field does not exist - goToRuleDetails(); - getDetails(DATA_VIEW_DETAILS).contains(DATA_VIEW_ID); + // check if rule still has data view and index patterns field does not exist + goToRuleDetails(); + getDetails(DATA_VIEW_DETAILS).contains(DATA_VIEW_ID); + }); }); } ); -describe('Bulk editing index patterns of rules with index patterns and rules with a data view', () => { - const customRulesNumber = 2; +describe( + 'Bulk editing index patterns of rules with index patterns and rules with a data view', + { tags: ['@ess', '@brokenInServerless'] }, + () => { + before(() => { + cleanKibana(); + }); - before(() => { - cleanKibana(); - }); + beforeEach(() => { + login(); + deleteAlertsAndRules(); + cy.task('esArchiverResetKibana'); - beforeEach(() => { - login(); - deleteAlertsAndRules(); - cy.task('esArchiverResetKibana'); + postDataView(DATA_VIEW_ID); - postDataView(DATA_VIEW_ID); + createRule( + getNewRule({ name: 'with dataview', index: [], data_view_id: DATA_VIEW_ID, rule_id: '1' }) + ); + createRule(getNewRule({ name: 'no data view', index: ['test-index-1-*'], rule_id: '2' })); - createRule( - getNewRule({ name: 'with dataview', index: [], data_view_id: DATA_VIEW_ID, rule_id: '1' }) - ); - createRule(getNewRule({ name: 'no data view', index: ['test-index-1-*'], rule_id: '2' })); + visitSecurityDetectionRulesPage(); + disableAutoRefresh(); - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); + expectManagementTableRules(['with dataview', 'no data view']); + }); - waitForRulesTableToBeLoaded(); - }); + it('Add index patterns to custom rules: one rule is updated, one rule is skipped', () => { + selectAllRules(); - it('Add index patterns to custom rules: one rule is updated, one rule is skipped', () => { - selectNumberOfRules(customRulesNumber); + openBulkEditAddIndexPatternsForm(); + typeIndexPatterns(expectedIndexPatterns); + submitBulkEditForm(); - openBulkEditAddIndexPatternsForm(); - typeIndexPatterns(expectedIndexPatterns); - submitBulkEditForm(); + waitForBulkEditActionToFinish({ + updatedCount: 1, + skippedCount: 1, + showDataViewsWarning: true, + }); - waitForBulkEditActionToFinish({ - updatedCount: 1, - skippedCount: 1, - showDataViewsWarning: true, + // check if rule still has data view and index patterns field does not exist + goToTheRuleDetailsOf('with dataview'); + getDetails(DATA_VIEW_DETAILS).contains(DATA_VIEW_ID); + assertDetailsNotExist(INDEX_PATTERNS_DETAILS); }); - // check if rule still has data view and index patterns field does not exist - goToTheRuleDetailsOf('with dataview'); - getDetails(DATA_VIEW_DETAILS).contains(DATA_VIEW_ID); - assertDetailsNotExist(INDEX_PATTERNS_DETAILS); - }); + it('Add index patterns to custom rules when overwrite data view checkbox is checked: all rules are updated', () => { + selectAllRules(); - it('Add index patterns to custom rules when overwrite data view checkbox is checked: all rules are updated', () => { - selectNumberOfRules(customRulesNumber); + openBulkEditAddIndexPatternsForm(); + typeIndexPatterns(expectedIndexPatterns); + checkOverwriteDataViewCheckbox(); + submitBulkEditForm(); - openBulkEditAddIndexPatternsForm(); - typeIndexPatterns(expectedIndexPatterns); - checkOverwriteDataViewCheckbox(); - submitBulkEditForm(); + waitForBulkEditActionToFinish({ + updatedCount: 2, + }); - waitForBulkEditActionToFinish({ - updatedCount: 2, + // check if rule still has data view and index patterns field does not exist + goToRuleDetails(); + assertDetailsNotExist(DATA_VIEW_DETAILS); }); - - // check if rule still has data view and index patterns field does not exist - goToRuleDetails(); - assertDetailsNotExist(DATA_VIEW_DETAILS); - }); -}); + } +); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/import_export/export_rule.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/import_export/export_rule.cy.ts index e88920efd9726..a9c6d6d693129 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/import_export/export_rule.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/import_export/export_rule.cy.ts @@ -6,7 +6,6 @@ */ import path from 'path'; -import { tag } from '../../../../../tags'; import { expectedExportedRule, getNewRule } from '../../../../../objects/rule'; import { @@ -17,7 +16,6 @@ import { } from '../../../../../screens/alerts_detection_rules'; import { filterByElasticRules, - selectNumberOfRules, selectAllRules, waitForRuleExecution, exportRule, @@ -57,7 +55,7 @@ const prebuiltRules = Array.from(Array(7)).map((_, i) => { }); }); -describe('Export rules', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('Export rules', { tags: ['@ess', '@brokenInServerless'] }, () => { const downloadsFolder = Cypress.config('downloadsFolder'); before(() => { @@ -74,7 +72,7 @@ describe('Export rules', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { // Prevent installation of whole prebuilt rules package, use mock prebuilt rules instead preventPrebuiltRulesPackageInstallation(); visitWithoutDateRange(DETECTIONS_RULE_MANAGEMENT_URL); - createRule(getNewRule({ name: 'Rule to export' })).as('ruleResponse'); + createRule(getNewRule({ name: 'Rule to export', enabled: false })).as('ruleResponse'); }); it('exports a custom rule', function () { @@ -106,7 +104,7 @@ describe('Export rules', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { createAndInstallMockedPrebuiltRules({ rules: prebuiltRules }); filterByElasticRules(); - selectNumberOfRules(prebuiltRules.length); + selectAllRules(); bulkExportRules(); cy.get(MODAL_CONFIRMATION_BODY).contains( @@ -160,6 +158,7 @@ describe('Export rules', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { }, ], rule_id: '2', + enabled: false, }) ) ); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/import_export/import_rules.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/import_export/import_rules.cy.ts index 4c3eaaefd03c1..f42dabbbc030b 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/import_export/import_rules.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/import_export/import_rules.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../../../../tags'; - import { TOASTER } from '../../../../../screens/alerts_detection_rules'; import { expectManagementTableRules, @@ -19,7 +17,7 @@ import { login, visitWithoutDateRange } from '../../../../../tasks/login'; import { DETECTIONS_RULE_MANAGEMENT_URL } from '../../../../../urls/navigation'; const RULES_TO_IMPORT_FILENAME = 'cypress/fixtures/7_16_rules.ndjson'; -describe('Import rules', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('Import rules', { tags: ['@ess', '@brokenInServerless'] }, () => { before(() => { cleanKibana(); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/snoozing/rule_snoozing.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/snoozing/rule_snoozing.cy.ts index c16ca1a337622..3771d4a5858ac 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/snoozing/rule_snoozing.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rule_actions/snoozing/rule_snoozing.cy.ts @@ -7,17 +7,16 @@ import { INTERNAL_ALERTING_API_FIND_RULES_PATH } from '@kbn/alerting-plugin/common'; import type { RuleResponse } from '@kbn/security-solution-plugin/common/api/detection_engine'; -import { tag } from '../../../../../tags'; import { createRule, snoozeRule as snoozeRuleViaAPI } from '../../../../../tasks/api_calls/rules'; import { cleanKibana, deleteAlertsAndRules, deleteConnectors } from '../../../../../tasks/common'; -import { login, visitWithoutDateRange } from '../../../../../tasks/login'; -import { getNewRule } from '../../../../../objects/rule'; import { - ruleDetailsUrl, - ruleEditUrl, - SECURITY_DETECTIONS_RULES_URL, -} from '../../../../../urls/navigation'; + login, + visitSecurityDetectionRulesPage, + visitWithoutDateRange, +} from '../../../../../tasks/login'; +import { getNewRule } from '../../../../../objects/rule'; +import { ruleDetailsUrl, ruleEditUrl } from '../../../../../urls/navigation'; import { internalAlertingSnoozeRule } from '../../../../../urls/routes'; import { RULES_MANAGEMENT_TABLE, RULE_NAME } from '../../../../../screens/alerts_detection_rules'; import { @@ -33,7 +32,11 @@ import { unsnoozeRuleInTable, } from '../../../../../tasks/rule_snoozing'; import { createSlackConnector } from '../../../../../tasks/api_calls/connectors'; -import { duplicateFirstRule, importRules } from '../../../../../tasks/alerts_detection_rules'; +import { + disableAutoRefresh, + duplicateFirstRule, + importRules, +} from '../../../../../tasks/alerts_detection_rules'; import { goToActionsStepTab } from '../../../../../tasks/create_new_rule'; import { goToRuleEditSettings } from '../../../../../tasks/rule_details'; import { actionFormSelector } from '../../../../../screens/common/rule_actions'; @@ -44,7 +47,7 @@ import { TOOLTIP } from '../../../../../screens/common'; const RULES_TO_IMPORT_FILENAME = 'cypress/fixtures/7_16_rules.ndjson'; -describe('rule snoozing', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('rule snoozing', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); }); @@ -55,9 +58,10 @@ describe('rule snoozing', { tags: [tag.ESS, tag.SERVERLESS] }, () => { }); it('ensures the rule is snoozed on the rules management page, rule details page and rule editing page', () => { - createRule(getNewRule({ name: 'Test on all pages' })); + createRule(getNewRule({ name: 'Test on all pages', enabled: false })); - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); + visitSecurityDetectionRulesPage(); + disableAutoRefresh(); snoozeRuleInTable({ tableSelector: RULES_MANAGEMENT_TABLE, @@ -79,9 +83,10 @@ describe('rule snoozing', { tags: [tag.ESS, tag.SERVERLESS] }, () => { describe('Rules management table', () => { it('snoozes a rule without actions for 3 hours', () => { - createRule(getNewRule({ name: 'Test rule without actions' })); + createRule(getNewRule({ name: 'Test rule without actions', enabled: false })); - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); + visitSecurityDetectionRulesPage(); + disableAutoRefresh(); snoozeRuleInTable({ tableSelector: RULES_MANAGEMENT_TABLE, @@ -100,7 +105,8 @@ describe('rule snoozing', { tags: [tag.ESS, tag.SERVERLESS] }, () => { it('snoozes a rule with actions for 2 days', () => { createRuleWithActions({ name: 'Test rule with actions' }, createRule); - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); + visitSecurityDetectionRulesPage(); + disableAutoRefresh(); snoozeRuleInTable({ tableSelector: RULES_MANAGEMENT_TABLE, @@ -119,7 +125,8 @@ describe('rule snoozing', { tags: [tag.ESS, tag.SERVERLESS] }, () => { it('unsnoozes a rule with actions', () => { createSnoozedRule(getNewRule({ name: 'Snoozed rule' })); - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); + visitSecurityDetectionRulesPage(); + disableAutoRefresh(); unsnoozeRuleInTable({ tableSelector: RULES_MANAGEMENT_TABLE, @@ -134,9 +141,10 @@ describe('rule snoozing', { tags: [tag.ESS, tag.SERVERLESS] }, () => { }); it('ensures snooze settings persist after page reload', () => { - createRule(getNewRule({ name: 'Test persistence' })); + createRule(getNewRule({ name: 'Test persistence', enabled: false })); - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); + visitSecurityDetectionRulesPage(); + disableAutoRefresh(); snoozeRuleInTable({ tableSelector: RULES_MANAGEMENT_TABLE, @@ -154,14 +162,16 @@ describe('rule snoozing', { tags: [tag.ESS, tag.SERVERLESS] }, () => { }); it('ensures a duplicated rule is not snoozed', () => { - createRule(getNewRule({ name: 'Test rule' })); + createRule(getNewRule({ name: 'Test rule', enabled: false })); - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); + visitSecurityDetectionRulesPage(); + disableAutoRefresh(); duplicateFirstRule(); // Make sure rules table is shown as it navigates to rule editing page after successful duplication - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); + visitSecurityDetectionRulesPage(); + disableAutoRefresh(); expectRuleUnsnoozedInTable({ tableSelector: RULES_MANAGEMENT_TABLE, @@ -197,7 +207,7 @@ describe('rule snoozing', { tags: [tag.ESS, tag.SERVERLESS] }, () => { }); it('ensures imported rules are unsnoozed', () => { - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); + visitSecurityDetectionRulesPage(); importRules(RULES_TO_IMPORT_FILENAME); @@ -214,7 +224,7 @@ describe('rule snoozing', { tags: [tag.ESS, tag.SERVERLESS] }, () => { describe('Handling errors', () => { it('shows an error if unable to load snooze settings', () => { - createRule(getNewRule({ name: 'Test rule' })).then(({ body: rule }) => { + createRule(getNewRule({ name: 'Test rule', enabled: false })).then(({ body: rule }) => { cy.intercept('GET', `${INTERNAL_ALERTING_API_FIND_RULES_PATH}*`, { statusCode: 500, }); @@ -228,7 +238,7 @@ describe('rule snoozing', { tags: [tag.ESS, tag.SERVERLESS] }, () => { }); it('shows an error if unable to save snooze settings', () => { - createRule(getNewRule({ name: 'Test rule' })).then(({ body: rule }) => { + createRule(getNewRule({ name: 'Test rule', enabled: false })).then(({ body: rule }) => { cy.intercept('POST', internalAlertingSnoozeRule(rule.id), { forceNetworkError: true }); visitWithoutDateRange(ruleDetailsUrl(rule.id)); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_auto_refresh.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_auto_refresh.cy.ts index d56beb1fec0e0..4d38fbda5525b 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_auto_refresh.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_auto_refresh.cy.ts @@ -5,24 +5,23 @@ * 2.0. */ -import { tag } from '../../../../tags'; - import { - RULE_CHECKBOX, REFRESH_RULES_STATUS, RULES_TABLE_AUTOREFRESH_INDICATOR, RULES_MANAGEMENT_TABLE, } from '../../../../screens/alerts_detection_rules'; +import { EUI_CHECKBOX } from '../../../../screens/common/controls'; import { selectAllRules, clearAllRuleSelection, - selectNumberOfRules, mockGlobalClock, disableAutoRefresh, expectAutoRefreshIsDisabled, expectAutoRefreshIsEnabled, expectAutoRefreshIsDeactivated, expectNumberOfRules, + selectRulesByName, + getRuleRow, } from '../../../../tasks/alerts_detection_rules'; import { login, visit, visitWithoutDateRange } from '../../../../tasks/login'; @@ -34,13 +33,13 @@ import { getNewRule } from '../../../../objects/rule'; const DEFAULT_RULE_REFRESH_INTERVAL_VALUE = 60000; const NUM_OF_TEST_RULES = 6; -describe('Rules table: auto-refresh', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('Rules table: auto-refresh', { tags: ['@ess', '@brokenInServerless'] }, () => { before(() => { cleanKibana(); login(); for (let i = 1; i <= NUM_OF_TEST_RULES; ++i) { - createRule(getNewRule({ name: `Test rule ${i}`, rule_id: `${i}` })); + createRule(getNewRule({ name: `Test rule ${i}`, rule_id: `${i}`, enabled: false })); } }); @@ -68,7 +67,7 @@ describe('Rules table: auto-refresh', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS expectNumberOfRules(RULES_MANAGEMENT_TABLE, NUM_OF_TEST_RULES); - selectNumberOfRules(1); + selectRulesByName(['Test rule 1']); // mock 1 minute passing to make sure refresh is not conducted cy.get(RULES_TABLE_AUTOREFRESH_INDICATOR).should('not.exist'); @@ -76,7 +75,7 @@ describe('Rules table: auto-refresh', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS cy.get(RULES_TABLE_AUTOREFRESH_INDICATOR).should('not.exist'); // ensure rule is still selected - cy.get(RULE_CHECKBOX).first().should('be.checked'); + getRuleRow('Test rule 1').find(EUI_CHECKBOX).should('be.checked'); cy.get(REFRESH_RULES_STATUS).should('have.not.text', 'Updated now'); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_filtering.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_filtering.cy.ts index 3c113648e2a23..61cd1a33499ad 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_filtering.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_filtering.cy.ts @@ -5,30 +5,24 @@ * 2.0. */ -import { tag } from '../../../../tags'; - import { cleanKibana, resetRulesTableState, deleteAlertsAndRules } from '../../../../tasks/common'; -import { login, visitWithoutDateRange } from '../../../../tasks/login'; +import { login, visitSecurityDetectionRulesPage } from '../../../../tasks/login'; import { expectRulesWithExecutionStatus, filterByExecutionStatus, expectNumberOfRulesShownOnPage, } from '../../../../tasks/rule_filters'; -import { SECURITY_DETECTIONS_RULES_URL } from '../../../../urls/navigation'; - -import { waitForRulesTableToBeLoaded } from '../../../../tasks/alerts_detection_rules'; - import { createRule, waitForRulesToFinishExecution } from '../../../../tasks/api_calls/rules'; import { deleteIndex, createIndex, createDocument, } from '../../../../tasks/api_calls/elasticsearch'; - +import { disableAutoRefresh } from '../../../../tasks/alerts_detection_rules'; import { getNewRule } from '../../../../objects/rule'; -describe('Rules table: filtering', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Rules table: filtering', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); }); @@ -58,6 +52,7 @@ describe('Rules table: filtering', { tags: [tag.ESS, tag.SERVERLESS] }, () => { name: 'Successful rule', rule_id: 'successful_rule', index: ['test_index'], + enabled: true, }) ); @@ -66,6 +61,7 @@ describe('Rules table: filtering', { tags: [tag.ESS, tag.SERVERLESS] }, () => { name: 'Warning rule', rule_id: 'warning_rule', index: ['non_existent_index'], + enabled: true, }) ); @@ -76,14 +72,14 @@ describe('Rules table: filtering', { tags: [tag.ESS, tag.SERVERLESS] }, () => { index: ['test_index'], // Setting a crazy large "Additional look-back time" to force a failure from: 'now-9007199254746990s', + enabled: true, }) ); waitForRulesToFinishExecution(['successful_rule', 'warning_rule', 'failed_rule'], new Date()); - visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL); - - waitForRulesTableToBeLoaded(); + visitSecurityDetectionRulesPage(); + disableAutoRefresh(); // Initial table state - before filtering by status expectNumberOfRulesShownOnPage(3); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_links.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_links.cy.ts index fe638d41f6587..d4465760ee97f 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_links.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_links.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../../../tags'; - import { getNewRule } from '../../../../objects/rule'; import { RULES_MONITORING_TAB, RULE_NAME } from '../../../../screens/alerts_detection_rules'; import { createRule } from '../../../../tasks/api_calls/rules'; @@ -14,7 +12,7 @@ import { cleanKibana, deleteAlertsAndRules } from '../../../../tasks/common'; import { login, visitWithoutDateRange } from '../../../../tasks/login'; import { DETECTIONS_RULE_MANAGEMENT_URL } from '../../../../urls/navigation'; -describe('Rules table: links', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Rules table: links', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); }); @@ -22,7 +20,7 @@ describe('Rules table: links', { tags: [tag.ESS, tag.SERVERLESS] }, () => { beforeEach(() => { login(); deleteAlertsAndRules(); - createRule(getNewRule({ rule_id: 'rule1' })); + createRule(getNewRule({ rule_id: 'rule1', enabled: false })); visitWithoutDateRange(DETECTIONS_RULE_MANAGEMENT_URL); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_persistent_state.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_persistent_state.cy.ts index a6ef9d1d0115e..7bf4d9e6eef24 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_persistent_state.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_persistent_state.cy.ts @@ -6,7 +6,6 @@ */ import { encode } from '@kbn/rison'; -import { tag } from '../../../../tags'; import { cleanKibana, resetRulesTableState } from '../../../../tasks/common'; import { login, visit } from '../../../../tasks/login'; @@ -100,7 +99,7 @@ function expectDefaultRulesTableState(): void { expectTablePage(1); } -describe('Rules table: persistent state', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Rules table: persistent state', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); createTestRules(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_selection.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_selection.cy.ts index 3ff965be8c663..ae28214315a40 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_selection.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_selection.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../../../tags'; - import { createRuleAssetSavedObject } from '../../../../helpers/rules'; import { SELECTED_RULES_NUMBER_LABEL, @@ -14,8 +12,8 @@ import { SELECT_ALL_RULES_ON_PAGE_CHECKBOX, } from '../../../../screens/alerts_detection_rules'; import { - selectNumberOfRules, - unselectNumberOfRules, + selectRulesByName, + unselectRulesByName, waitForPrebuiltDetectionRulesToBeLoaded, } from '../../../../tasks/alerts_detection_rules'; import { @@ -35,7 +33,7 @@ const RULE_2 = createRuleAssetSavedObject({ rule_id: 'rule_2', }); -describe('Rules table: selection', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Rules table: selection', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); }); @@ -51,11 +49,11 @@ describe('Rules table: selection', { tags: [tag.ESS, tag.SERVERLESS] }, () => { it('should correctly update the selection label when rules are individually selected and unselected', () => { waitForPrebuiltDetectionRulesToBeLoaded(); - selectNumberOfRules(2); + selectRulesByName(['Test rule 1', 'Test rule 2']); cy.get(SELECTED_RULES_NUMBER_LABEL).should('contain.text', '2'); - unselectNumberOfRules(2); + unselectRulesByName(['Test rule 1', 'Test rule 2']); cy.get(SELECTED_RULES_NUMBER_LABEL).should('contain.text', '0'); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_sorting.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_sorting.cy.ts index 99b7cc9a3a8e1..47a7aa80f1dd9 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_sorting.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_management/rules_table/rules_table_sorting.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../../../tags'; - import { FIRST_RULE, RULE_NAME, @@ -14,11 +12,10 @@ import { SECOND_RULE, FOURTH_RULE, RULES_MANAGEMENT_TABLE, - RULES_ROW, } from '../../../../screens/alerts_detection_rules'; import { enableRule, - waitForRulesTableToBeLoaded, + getRulesManagementTableRows, waitForRuleToUpdate, } from '../../../../tasks/alerts_detection_rules'; import { login, visit } from '../../../../tasks/login'; @@ -39,14 +36,14 @@ import { } from '../../../../tasks/table_pagination'; import { TABLE_FIRST_PAGE, TABLE_SECOND_PAGE } from '../../../../screens/table_pagination'; -describe('Rules table: sorting', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Rules table: sorting', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); login(); - createRule(getNewRule({ rule_id: '1' })); - createRule(getExistingRule({ rule_id: '2' })); - createRule(getNewOverrideRule({ rule_id: '3' })); - createRule(getNewThresholdRule({ rule_id: '4' })); + createRule(getNewRule({ rule_id: '1', enabled: false })); + createRule(getExistingRule({ rule_id: '2', enabled: false })); + createRule(getNewOverrideRule({ rule_id: '3', enabled: false })); + createRule(getNewThresholdRule({ rule_id: '4', enabled: false })); }); beforeEach(() => { @@ -55,7 +52,6 @@ describe('Rules table: sorting', { tags: [tag.ESS, tag.SERVERLESS] }, () => { it('Sorts by enabled rules', () => { visit(DETECTIONS_RULE_MANAGEMENT_URL); - waitForRulesTableToBeLoaded(); enableRule(SECOND_RULE); waitForRuleToUpdate(); @@ -72,11 +68,10 @@ describe('Rules table: sorting', { tags: [tag.ESS, tag.SERVERLESS] }, () => { }); it('Pagination updates page number and results', () => { - createRule(getNewRule({ name: 'Test a rule', rule_id: '5' })); - createRule(getNewRule({ name: 'Not same as first rule', rule_id: '6' })); + createRule(getNewRule({ name: 'Test a rule', rule_id: '5', enabled: false })); + createRule(getNewRule({ name: 'Not same as first rule', rule_id: '6', enabled: false })); visit(DETECTIONS_RULE_MANAGEMENT_URL); - waitForRulesTableToBeLoaded(); setRowsPerPageTo(5); cy.get(RULES_MANAGEMENT_TABLE).find(TABLE_FIRST_PAGE).should('have.attr', 'aria-current'); @@ -88,7 +83,7 @@ describe('Rules table: sorting', { tags: [tag.ESS, tag.SERVERLESS] }, () => { .then((ruleNameFirstPage) => { goToTablePage(2); // Check that the rules table shows at least one row - cy.get(RULES_MANAGEMENT_TABLE).find(RULES_ROW).should('have.length.gte', 1); + getRulesManagementTableRows().should('have.length.gte', 1); // Check that the rules table doesn't show the rule from the first page cy.get(RULES_MANAGEMENT_TABLE).should('not.contain', ruleNameFirstPage); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/value_lists/value_lists.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/value_lists/value_lists.cy.ts index 697ccadbdbc7f..3aa68a9f8029a 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/value_lists/value_lists.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/value_lists/value_lists.cy.ts @@ -6,7 +6,6 @@ */ import { ROLES } from '@kbn/security-solution-plugin/common/test'; -import { tag } from '../../../tags'; import { login, visitWithoutDateRange } from '../../../tasks/login'; import { DETECTIONS_RULE_MANAGEMENT_URL } from '../../../urls/navigation'; @@ -36,7 +35,7 @@ const IPS_LIST_FILE_NAME = 'ip_list.txt'; const CIDRS_LIST_FILE_NAME = 'cidr_list.txt'; describe('value lists', () => { - describe('management modal', { tags: [tag.ESS, tag.SERVERLESS] }, () => { + describe('management modal', { tags: ['@ess', '@serverless'] }, () => { beforeEach(() => { login(); deleteValueLists([TEXT_LIST_FILE_NAME, IPS_LIST_FILE_NAME, CIDRS_LIST_FILE_NAME]); @@ -251,7 +250,7 @@ describe('value lists', () => { }); }); - describe('user with restricted access role', { tags: tag.ESS }, () => { + describe('user with restricted access role', { tags: '@ess' }, () => { it('Does not allow a t1 analyst user to upload a value list', () => { login(ROLES.t1_analyst); visitWithoutDateRange(DETECTIONS_RULE_MANAGEMENT_URL, ROLES.t1_analyst); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/entity_analytics/entity_analytics_management_page.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/entity_analytics/entity_analytics_management_page.cy.ts index b70a25a676459..ae83f8b769b17 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/entity_analytics/entity_analytics_management_page.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/entity_analytics/entity_analytics_management_page.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../tags'; - import { PAGE_TITLE, HOST_RISK_PREVIEW_TABLE, @@ -21,9 +19,9 @@ import { import { deleteRiskScore, installRiskScoreModule } from '../../tasks/api_calls/risk_scores'; import { RiskScoreEntity } from '../../tasks/risk_scores/common'; -import { login, visit, visitWithoutDateRange } from '../../tasks/login'; +import { login, visit } from '../../tasks/login'; import { cleanKibana } from '../../tasks/common'; -import { ENTITY_ANALYTICS_MANAGEMENT_URL, ALERTS_URL } from '../../urls/navigation'; +import { ENTITY_ANALYTICS_MANAGEMENT_URL } from '../../urls/navigation'; import { getNewRule } from '../../objects/rule'; import { createRule } from '../../tasks/api_calls/rules'; import { @@ -44,8 +42,10 @@ import { describe( 'Entity analytics management page', { - env: { ftrConfig: { enableExperimental: ['riskScoringRoutesEnabled'] } }, - tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS], + env: { + ftrConfig: { enableExperimental: ['riskScoringRoutesEnabled', 'riskScoringPersistence'] }, + }, + tags: ['@ess', '@brokenInServerless'], }, () => { before(() => { @@ -55,7 +55,6 @@ describe( beforeEach(() => { login(); - visitWithoutDateRange(ALERTS_URL); createRule(getNewRule({ query: 'user.name:* or host.name:*', risk_score: 70 })); deleteConfiguration(); visit(ENTITY_ANALYTICS_MANAGEMENT_URL); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/alerts_table_flow/endpoint_exceptions.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/alerts_table_flow/endpoint_exceptions.cy.ts index bef92ab69444b..05dfb695956b5 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/alerts_table_flow/endpoint_exceptions.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/alerts_table_flow/endpoint_exceptions.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../../tags'; - import { deleteAlertsAndRules } from '../../../tasks/common'; import { expandFirstAlert, @@ -45,7 +43,7 @@ import { goToEndpointExceptionsTab } from '../../../tasks/rule_details'; // See https://github.com/elastic/kibana/issues/163967 describe.skip( 'Endpoint Exceptions workflows from Alert', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { const ITEM_NAME = 'Sample Exception List Item'; const ITEM_NAME_EDIT = 'Sample Exception List Item'; diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/alerts_table_flow/rule_exceptions/auto_populate_with_alert_data.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/alerts_table_flow/rule_exceptions/auto_populate_with_alert_data.cy.ts index 5a2451d42d86e..82cfc48100402 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/alerts_table_flow/rule_exceptions/auto_populate_with_alert_data.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/alerts_table_flow/rule_exceptions/auto_populate_with_alert_data.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../../tags'; import { LOADING_INDICATOR } from '../../../../screens/security_header'; import { getEndpointRule } from '../../../../objects/rule'; import { createRule } from '../../../../tasks/api_calls/rules'; @@ -42,7 +41,7 @@ import { waitForAlertsToPopulate } from '../../../../tasks/create_new_rule'; // See https://github.com/elastic/kibana/issues/163967 describe.skip( 'Auto populate exception with Alert data', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { const ITEM_NAME = 'Sample Exception Item'; const ITEM_NAME_EDIT = 'Sample Exception Item Edit'; diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/entry/flyout_validation.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/entry/flyout_validation.cy.ts index 92b63e1eb9137..078f743e1cea7 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/entry/flyout_validation.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/entry/flyout_validation.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { getNewRule } from '../../../objects/rule'; @@ -66,7 +65,7 @@ import { getExceptionList } from '../../../objects/exception'; // to test in enzyme and very small changes can inadvertently add // bugs. As the complexity within the builder grows, these should // ensure the most basic logic holds. -describe.skip('Exceptions flyout', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe.skip('Exceptions flyout', { tags: ['@ess', '@serverless'] }, () => { before(() => { cy.task('esArchiverResetKibana'); // this is a made-up index that has just the necessary diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/entry/multiple_conditions.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/entry/multiple_conditions.cy.ts index 424bc9dfd5505..5c71da0e14a35 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/entry/multiple_conditions.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/entry/multiple_conditions.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { getNewRule } from '../../../objects/rule'; @@ -31,7 +30,7 @@ import { DETECTIONS_RULE_MANAGEMENT_URL } from '../../../urls/navigation'; describe( 'Add multiple conditions and validate the generated exceptions', - { tags: [tag.ESS, tag.SERVERLESS] }, + { tags: ['@ess', '@serverless'] }, () => { beforeEach(() => { cy.task('esArchiverResetKibana'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/entry/use_value_list.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/entry/use_value_list.cy.ts index 381024e413794..51f0e954f63ce 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/entry/use_value_list.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/entry/use_value_list.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { addExceptionEntryFieldMatchIncludedValue, @@ -51,7 +50,7 @@ const goToRulesAndOpenValueListModal = () => { openValueListsModal(); }; -describe('Use Value list in exception entry', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Use Value list in exception entry', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); login(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/rule_details_flow/add_edit_endpoint_exception.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/rule_details_flow/add_edit_endpoint_exception.cy.ts index 4f523c9fe0290..47f6717fa3143 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/rule_details_flow/add_edit_endpoint_exception.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/rule_details_flow/add_edit_endpoint_exception.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { getNewRule } from '../../../objects/rule'; @@ -45,7 +44,7 @@ import { } from '../../../screens/exceptions'; import { createEndpointExceptionList } from '../../../tasks/api_calls/exceptions'; -describe('Add endpoint exception from rule details', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Add endpoint exception from rule details', { tags: ['@ess', '@serverless'] }, () => { const ITEM_NAME = 'Sample Exception List Item'; before(() => { diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/rule_details_flow/add_edit_exception.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/rule_details_flow/add_edit_exception.cy.ts index c86f79ee0e264..6a51085df468b 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/rule_details_flow/add_edit_exception.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/rule_details_flow/add_edit_exception.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { getException, getExceptionList } from '../../../objects/exception'; import { getNewRule } from '../../../objects/rule'; @@ -60,284 +59,277 @@ import { } from '../../../tasks/api_calls/exceptions'; import { waitForAlertsToPopulate } from '../../../tasks/create_new_rule'; -describe( - 'Add/edit exception from rule details', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, - () => { - const NUMBER_OF_AUDITBEAT_EXCEPTIONS_ALERTS = '1 alert'; - const FIELD_DIFFERENT_FROM_EXISTING_ITEM_FIELD = 'agent.name'; - const ITEM_FIELD = 'unique_value.test'; - - before(() => { - cy.task('esArchiverResetKibana'); - cy.task('esArchiverLoad', 'exceptions'); - login(); - }); - - after(() => { - cy.task('esArchiverUnload', 'exceptions'); - }); - - describe('existing list and items', () => { - const exceptionList = getExceptionList(); - beforeEach(() => { - deleteAlertsAndRules(); - deleteExceptionList(exceptionList.list_id, exceptionList.namespace_type); - // create rule with exceptions - createExceptionList(exceptionList, exceptionList.list_id).then((response) => { - createRule( - getNewRule({ - query: 'agent.name:*', - index: ['exceptions*'], - exceptions_list: [ - { - id: response.body.id, - list_id: exceptionList.list_id, - type: exceptionList.type, - namespace_type: exceptionList.namespace_type, - }, - ], - rule_id: '2', - }) - ); - createExceptionListItem(exceptionList.list_id, { - list_id: exceptionList.list_id, - item_id: 'simple_list_item', - tags: [], - type: 'simple', - description: 'Test exception item 2', - name: 'Sample Exception List Item 2', - namespace_type: 'single', - entries: [ +describe('Add/edit exception from rule details', { tags: ['@ess', '@brokenInServerless'] }, () => { + const NUMBER_OF_AUDITBEAT_EXCEPTIONS_ALERTS = '1 alert'; + const FIELD_DIFFERENT_FROM_EXISTING_ITEM_FIELD = 'agent.name'; + const ITEM_FIELD = 'unique_value.test'; + + before(() => { + cy.task('esArchiverResetKibana'); + cy.task('esArchiverLoad', 'exceptions'); + login(); + }); + + after(() => { + cy.task('esArchiverUnload', 'exceptions'); + }); + + describe('existing list and items', () => { + const exceptionList = getExceptionList(); + beforeEach(() => { + deleteAlertsAndRules(); + deleteExceptionList(exceptionList.list_id, exceptionList.namespace_type); + // create rule with exceptions + createExceptionList(exceptionList, exceptionList.list_id).then((response) => { + createRule( + getNewRule({ + query: 'agent.name:*', + index: ['exceptions*'], + exceptions_list: [ { - field: ITEM_FIELD, - operator: 'included', - type: 'match_any', - value: ['foo'], + id: response.body.id, + list_id: exceptionList.list_id, + type: exceptionList.type, + namespace_type: exceptionList.namespace_type, }, ], - }); + rule_id: '2', + }) + ); + createExceptionListItem(exceptionList.list_id, { + list_id: exceptionList.list_id, + item_id: 'simple_list_item', + tags: [], + type: 'simple', + description: 'Test exception item 2', + name: 'Sample Exception List Item 2', + namespace_type: 'single', + entries: [ + { + field: ITEM_FIELD, + operator: 'included', + type: 'match_any', + value: ['foo'], + }, + ], }); - - login(); - visitWithoutDateRange(DETECTIONS_RULE_MANAGEMENT_URL); - goToRuleDetails(); - goToExceptionsTab(); }); - it('Edits an exception item', () => { - const NEW_ITEM_NAME = 'Exception item-EDITED'; - const ITEM_NAME = 'Sample Exception List Item 2'; + login(); + visitWithoutDateRange(DETECTIONS_RULE_MANAGEMENT_URL); + goToRuleDetails(); + goToExceptionsTab(); + }); - // displays existing exception items - cy.get(EXCEPTION_ITEM_VIEWER_CONTAINER).should('have.length', 1); - cy.get(NO_EXCEPTIONS_EXIST_PROMPT).should('not.exist'); - cy.get(EXCEPTION_CARD_ITEM_NAME).should('have.text', ITEM_NAME); - cy.get(EXCEPTION_CARD_ITEM_CONDITIONS).should( - 'have.text', - ' unique_value.testis one of foo' - ); + it('Edits an exception item', () => { + const NEW_ITEM_NAME = 'Exception item-EDITED'; + const ITEM_NAME = 'Sample Exception List Item 2'; - // open edit exception modal - openEditException(); + // displays existing exception items + cy.get(EXCEPTION_ITEM_VIEWER_CONTAINER).should('have.length', 1); + cy.get(NO_EXCEPTIONS_EXIST_PROMPT).should('not.exist'); + cy.get(EXCEPTION_CARD_ITEM_NAME).should('have.text', ITEM_NAME); + cy.get(EXCEPTION_CARD_ITEM_CONDITIONS).should('have.text', ' unique_value.testis one of foo'); - // edit exception item name - editExceptionFlyoutItemName(NEW_ITEM_NAME); + // open edit exception modal + openEditException(); - // check that the existing item's field is being populated - cy.get(EXCEPTION_ITEM_CONTAINER) - .eq(0) - .find(FIELD_INPUT_PARENT) - .eq(0) - .should('have.text', ITEM_FIELD); - cy.get(VALUES_MATCH_ANY_INPUT).should('have.text', 'foo'); + // edit exception item name + editExceptionFlyoutItemName(NEW_ITEM_NAME); - // edit conditions - editException(FIELD_DIFFERENT_FROM_EXISTING_ITEM_FIELD, 0, 0); + // check that the existing item's field is being populated + cy.get(EXCEPTION_ITEM_CONTAINER) + .eq(0) + .find(FIELD_INPUT_PARENT) + .eq(0) + .should('have.text', ITEM_FIELD); + cy.get(VALUES_MATCH_ANY_INPUT).should('have.text', 'foo'); - // submit - submitEditedExceptionItem(); + // edit conditions + editException(FIELD_DIFFERENT_FROM_EXISTING_ITEM_FIELD, 0, 0); - // new exception item displays - cy.get(EXCEPTION_ITEM_VIEWER_CONTAINER).should('have.length', 1); + // submit + submitEditedExceptionItem(); - // check that updates stuck - cy.get(EXCEPTION_CARD_ITEM_NAME).should('have.text', NEW_ITEM_NAME); - cy.get(EXCEPTION_CARD_ITEM_CONDITIONS).should('have.text', ' agent.nameIS foo'); - }); + // new exception item displays + cy.get(EXCEPTION_ITEM_VIEWER_CONTAINER).should('have.length', 1); - describe('rule with existing shared exceptions', () => { - it('Creates an exception item to add to shared list', () => { - // displays existing exception items - cy.get(EXCEPTION_ITEM_VIEWER_CONTAINER).should('have.length', 1); - cy.get(NO_EXCEPTIONS_EXIST_PROMPT).should('not.exist'); + // check that updates stuck + cy.get(EXCEPTION_CARD_ITEM_NAME).should('have.text', NEW_ITEM_NAME); + cy.get(EXCEPTION_CARD_ITEM_CONDITIONS).should('have.text', ' agent.nameIS foo'); + }); - // open add exception modal - addExceptionFlyoutFromViewerHeader(); + describe('rule with existing shared exceptions', () => { + it('Creates an exception item to add to shared list', () => { + // displays existing exception items + cy.get(EXCEPTION_ITEM_VIEWER_CONTAINER).should('have.length', 1); + cy.get(NO_EXCEPTIONS_EXIST_PROMPT).should('not.exist'); - // add exception item conditions - addExceptionConditions(getException()); + // open add exception modal + addExceptionFlyoutFromViewerHeader(); - // Name is required so want to check that submit is still disabled - cy.get(CONFIRM_BTN).should('have.attr', 'disabled'); + // add exception item conditions + addExceptionConditions(getException()); - // add exception item name - addExceptionFlyoutItemName('My item name'); + // Name is required so want to check that submit is still disabled + cy.get(CONFIRM_BTN).should('have.attr', 'disabled'); - // select to add exception item to a shared list - selectSharedListToAddExceptionTo(1); + // add exception item name + addExceptionFlyoutItemName('My item name'); - // not testing close alert functionality here, just ensuring that the options appear as expected - cy.get(CLOSE_ALERTS_CHECKBOX).should('exist'); - cy.get(CLOSE_ALERTS_CHECKBOX).should('not.have.attr', 'disabled'); + // select to add exception item to a shared list + selectSharedListToAddExceptionTo(1); - // submit - submitNewExceptionItem(); + // not testing close alert functionality here, just ensuring that the options appear as expected + cy.get(CLOSE_ALERTS_CHECKBOX).should('exist'); + cy.get(CLOSE_ALERTS_CHECKBOX).should('not.have.attr', 'disabled'); - // new exception item displays - cy.get(EXCEPTION_ITEM_VIEWER_CONTAINER).should('have.length', 2); - }); + // submit + submitNewExceptionItem(); - it('Creates an exception item to add to rule only', () => { - // displays existing exception items - cy.get(EXCEPTION_ITEM_VIEWER_CONTAINER).should('have.length', 1); - cy.get(NO_EXCEPTIONS_EXIST_PROMPT).should('not.exist'); + // new exception item displays + cy.get(EXCEPTION_ITEM_VIEWER_CONTAINER).should('have.length', 2); + }); - // open add exception modal - addExceptionFlyoutFromViewerHeader(); + it('Creates an exception item to add to rule only', () => { + // displays existing exception items + cy.get(EXCEPTION_ITEM_VIEWER_CONTAINER).should('have.length', 1); + cy.get(NO_EXCEPTIONS_EXIST_PROMPT).should('not.exist'); - // add exception item conditions - addExceptionConditions(getException()); + // open add exception modal + addExceptionFlyoutFromViewerHeader(); - // Name is required so want to check that submit is still disabled - cy.get(CONFIRM_BTN).should('have.attr', 'disabled'); + // add exception item conditions + addExceptionConditions(getException()); + + // Name is required so want to check that submit is still disabled + cy.get(CONFIRM_BTN).should('have.attr', 'disabled'); - // add exception item name - addExceptionFlyoutItemName('My item name'); + // add exception item name + addExceptionFlyoutItemName('My item name'); - // select to add exception item to rule only - selectAddToRuleRadio(); + // select to add exception item to rule only + selectAddToRuleRadio(); - // not testing close alert functionality here, just ensuring that the options appear as expected - cy.get(CLOSE_ALERTS_CHECKBOX).should('exist'); - cy.get(CLOSE_ALERTS_CHECKBOX).should('not.have.attr', 'disabled'); + // not testing close alert functionality here, just ensuring that the options appear as expected + cy.get(CLOSE_ALERTS_CHECKBOX).should('exist'); + cy.get(CLOSE_ALERTS_CHECKBOX).should('not.have.attr', 'disabled'); - // submit - submitNewExceptionItem(); + // submit + submitNewExceptionItem(); - // new exception item displays - cy.get(EXCEPTION_ITEM_VIEWER_CONTAINER).should('have.length', 2); - }); + // new exception item displays + cy.get(EXCEPTION_ITEM_VIEWER_CONTAINER).should('have.length', 2); + }); - // Trying to figure out with EUI why the search won't trigger - it('Can search for items', () => { - // displays existing exception items - cy.get(EXCEPTION_ITEM_VIEWER_CONTAINER).should('have.length', 1); - cy.get(NO_EXCEPTIONS_EXIST_PROMPT).should('not.exist'); + // Trying to figure out with EUI why the search won't trigger + it('Can search for items', () => { + // displays existing exception items + cy.get(EXCEPTION_ITEM_VIEWER_CONTAINER).should('have.length', 1); + cy.get(NO_EXCEPTIONS_EXIST_PROMPT).should('not.exist'); - // can search for an exception value - searchForExceptionItem('foo'); + // can search for an exception value + searchForExceptionItem('foo'); - // new exception item displays - cy.get(EXCEPTION_ITEM_VIEWER_CONTAINER).should('have.length', 1); + // new exception item displays + cy.get(EXCEPTION_ITEM_VIEWER_CONTAINER).should('have.length', 1); - // displays empty search result view if no matches found - searchForExceptionItem('abc'); + // displays empty search result view if no matches found + searchForExceptionItem('abc'); - // new exception item displays - cy.get(NO_EXCEPTIONS_SEARCH_RESULTS_PROMPT).should('exist'); - }); + // new exception item displays + cy.get(NO_EXCEPTIONS_SEARCH_RESULTS_PROMPT).should('exist'); }); }); + }); + + describe('rule without existing exceptions', () => { + beforeEach(() => { + deleteAlertsAndRules(); + createRule( + getNewRule({ + query: 'agent.name:*', + index: ['exceptions*'], + interval: '10s', + rule_id: 'rule_testing', + }) + ); + login(); + visitWithoutDateRange(DETECTIONS_RULE_MANAGEMENT_URL); + goToRuleDetails(); + goToExceptionsTab(); + }); - describe('rule without existing exceptions', () => { - beforeEach(() => { - deleteAlertsAndRules(); - createRule( - getNewRule({ - query: 'agent.name:*', - index: ['exceptions*'], - interval: '10s', - rule_id: 'rule_testing', - }) - ); - login(); - visitWithoutDateRange(DETECTIONS_RULE_MANAGEMENT_URL); - goToRuleDetails(); - goToExceptionsTab(); - }); - - afterEach(() => { - cy.task('esArchiverUnload', 'exceptions_2'); - }); + afterEach(() => { + cy.task('esArchiverUnload', 'exceptions_2'); + }); - it('Cannot create an item to add to rule but not shared list as rule has no lists attached', () => { - // when no exceptions exist, empty component shows with action to add exception - cy.get(NO_EXCEPTIONS_EXIST_PROMPT).should('exist'); + it('Cannot create an item to add to rule but not shared list as rule has no lists attached', () => { + // when no exceptions exist, empty component shows with action to add exception + cy.get(NO_EXCEPTIONS_EXIST_PROMPT).should('exist'); - // open add exception modal - openExceptionFlyoutFromEmptyViewerPrompt(); + // open add exception modal + openExceptionFlyoutFromEmptyViewerPrompt(); - // add exception item conditions - addExceptionConditions({ - field: 'agent.name', - operator: 'is', - values: ['foo'], - }); + // add exception item conditions + addExceptionConditions({ + field: 'agent.name', + operator: 'is', + values: ['foo'], + }); - // Name is required so want to check that submit is still disabled - cy.get(CONFIRM_BTN).should('have.attr', 'disabled'); + // Name is required so want to check that submit is still disabled + cy.get(CONFIRM_BTN).should('have.attr', 'disabled'); - // add exception item name - addExceptionFlyoutItemName('My item name'); + // add exception item name + addExceptionFlyoutItemName('My item name'); - // select to add exception item to rule only - selectAddToRuleRadio(); + // select to add exception item to rule only + selectAddToRuleRadio(); - // Check that add to shared list is disabled, should be unless - // rule has shared lists attached to it already - cy.get(ADD_TO_SHARED_LIST_RADIO_INPUT).should('have.attr', 'disabled'); + // Check that add to shared list is disabled, should be unless + // rule has shared lists attached to it already + cy.get(ADD_TO_SHARED_LIST_RADIO_INPUT).should('have.attr', 'disabled'); - // Close matching alerts - selectBulkCloseAlerts(); + // Close matching alerts + selectBulkCloseAlerts(); - // submit - submitNewExceptionItem(); + // submit + submitNewExceptionItem(); - // new exception item displays - cy.get(EXCEPTION_ITEM_VIEWER_CONTAINER).should('have.length', 1); + // new exception item displays + cy.get(EXCEPTION_ITEM_VIEWER_CONTAINER).should('have.length', 1); - // Alerts table should now be empty from having added exception and closed - // matching alert - goToAlertsTab(); - cy.get(EMPTY_ALERT_TABLE).should('exist'); + // Alerts table should now be empty from having added exception and closed + // matching alert + goToAlertsTab(); + cy.get(EMPTY_ALERT_TABLE).should('exist'); - // Closed alert should appear in table - goToClosedAlertsOnRuleDetailsPage(); - cy.get(ALERTS_COUNT).should('exist'); - cy.get(ALERTS_COUNT).should('have.text', `${NUMBER_OF_AUDITBEAT_EXCEPTIONS_ALERTS}`); + // Closed alert should appear in table + goToClosedAlertsOnRuleDetailsPage(); + cy.get(ALERTS_COUNT).should('exist'); + cy.get(ALERTS_COUNT).should('have.text', `${NUMBER_OF_AUDITBEAT_EXCEPTIONS_ALERTS}`); - // Remove the exception and load an event that would have matched that exception - // to show that said exception now starts to show up again - goToExceptionsTab(); + // Remove the exception and load an event that would have matched that exception + // to show that said exception now starts to show up again + goToExceptionsTab(); - // when removing exception and again, no more exist, empty screen shows again - removeException(); - cy.get(NO_EXCEPTIONS_EXIST_PROMPT).should('exist'); + // when removing exception and again, no more exist, empty screen shows again + removeException(); + cy.get(NO_EXCEPTIONS_EXIST_PROMPT).should('exist'); - // load more docs - cy.task('esArchiverLoad', 'exceptions_2'); + // load more docs + cy.task('esArchiverLoad', 'exceptions_2'); - // now that there are no more exceptions, the docs should match and populate alerts - goToAlertsTab(); - waitForAlertsToPopulate(); - goToOpenedAlertsOnRuleDetailsPage(); - waitForTheRuleToBeExecuted(); - waitForAlertsToPopulate(); + // now that there are no more exceptions, the docs should match and populate alerts + goToAlertsTab(); + waitForAlertsToPopulate(); + goToOpenedAlertsOnRuleDetailsPage(); + waitForTheRuleToBeExecuted(); + waitForAlertsToPopulate(); - cy.get(ALERTS_COUNT).should('exist'); - cy.get(ALERTS_COUNT).should('have.text', '2 alerts'); - }); + cy.get(ALERTS_COUNT).should('exist'); + cy.get(ALERTS_COUNT).should('have.text', '2 alerts'); }); - } -); + }); +}); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/rule_details_flow/add_edit_exception_data_view.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/rule_details_flow/add_edit_exception_data_view.cy.ts index ab0595b23f889..ada21eb844450 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/rule_details_flow/add_edit_exception_data_view.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/rule_details_flow/add_edit_exception_data_view.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { getNewRule } from '../../../objects/rule'; import { ALERTS_COUNT, EMPTY_ALERT_TABLE } from '../../../screens/alerts'; @@ -44,7 +43,7 @@ import { waitForAlertsToPopulate } from '../../../tasks/create_new_rule'; describe( 'Add exception using data views from rule details', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { const NUMBER_OF_AUDITBEAT_EXCEPTIONS_ALERTS = '1 alert'; const ITEM_NAME = 'Sample Exception List Item'; diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/rule_details_flow/read_only_view.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/rule_details_flow/read_only_view.cy.ts index 626bb6ff80bcd..6ecb3c1e40602 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/rule_details_flow/read_only_view.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/rule_details_flow/read_only_view.cy.ts @@ -5,20 +5,14 @@ * 2.0. */ import { ROLES } from '@kbn/security-solution-plugin/common/test'; -import { tag } from '../../../tags'; import { getExceptionList } from '../../../objects/exception'; import { getNewRule } from '../../../objects/rule'; import { createRule } from '../../../tasks/api_calls/rules'; -import { login, visitWithoutDateRange } from '../../../tasks/login'; +import { login, visitSecurityDetectionRulesPage } from '../../../tasks/login'; import { goToExceptionsTab, goToAlertsTab } from '../../../tasks/rule_details'; -import { - disableAutoRefresh, - goToRuleDetails, - waitForRulesTableToBeLoaded, -} from '../../../tasks/alerts_detection_rules'; -import { DETECTIONS_RULE_MANAGEMENT_URL } from '../../../urls/navigation'; -import { cleanKibana, deleteAlertsAndRules } from '../../../tasks/common'; +import { goToTheRuleDetailsOf } from '../../../tasks/alerts_detection_rules'; +import { deleteAlertsAndRules } from '../../../tasks/common'; import { NO_EXCEPTIONS_EXIST_PROMPT, EXCEPTION_ITEM_VIEWER_CONTAINER, @@ -32,15 +26,18 @@ import { deleteExceptionList, } from '../../../tasks/api_calls/exceptions'; -describe('Exceptions viewer read only', { tags: tag.ESS }, () => { +describe('Exceptions viewer read only', { tags: '@ess' }, () => { const exceptionList = getExceptionList(); - before(() => { - cleanKibana(); + beforeEach(() => { + deleteAlertsAndRules(); + deleteExceptionList(exceptionList.list_id, exceptionList.namespace_type); + // create rule with exceptions createExceptionList(exceptionList, exceptionList.list_id).then((response) => { createRule( getNewRule({ + name: 'Test exceptions rule', query: 'agent.name:*', index: ['exceptions*'], exceptions_list: [ @@ -55,22 +52,13 @@ describe('Exceptions viewer read only', { tags: tag.ESS }, () => { }) ); }); - }); - beforeEach(() => { login(ROLES.reader); - visitWithoutDateRange(DETECTIONS_RULE_MANAGEMENT_URL, ROLES.reader); - waitForRulesTableToBeLoaded(); - disableAutoRefresh(); - goToRuleDetails(); + visitSecurityDetectionRulesPage(ROLES.reader); + goToTheRuleDetailsOf('Test exceptions rule'); goToExceptionsTab(); }); - after(() => { - deleteAlertsAndRules(); - deleteExceptionList(exceptionList.list_id, exceptionList.namespace_type); - }); - it('Cannot add an exception from empty viewer screen', () => { // when no exceptions exist, empty component shows with action to add exception cy.get(NO_EXCEPTIONS_EXIST_PROMPT).should('exist'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/list_detail_page/list_details.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/list_detail_page/list_details.cy.ts index dca4ee9d805f0..50cd2dae04ec5 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/list_detail_page/list_details.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/list_detail_page/list_details.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../../tags'; import { getExceptionList } from '../../../../objects/exception'; import { getNewRule } from '../../../../objects/rule'; @@ -41,7 +40,7 @@ const getExceptionList1 = () => ({ const EXCEPTION_LIST_NAME = 'Newly created list'; -describe('Exception list detail page', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Exception list detail page', { tags: ['@ess', '@serverless'] }, () => { before(() => { cy.task('esArchiverResetKibana'); login(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/manage_exceptions.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/manage_exceptions.cy.ts index 9a56d20d244de..7f343b46a3467 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/manage_exceptions.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/manage_exceptions.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { getNewRule } from '../../../objects/rule'; import { login, visitWithoutDateRange } from '../../../tasks/login'; @@ -39,7 +38,7 @@ import { waitForExceptionsTableToBeLoaded, } from '../../../tasks/exceptions_table'; -describe('Add, edit and delete exception', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Add, edit and delete exception', { tags: ['@ess', '@serverless'] }, () => { before(() => { cy.task('esArchiverResetKibana'); cy.task('esArchiverLoad', 'exceptions'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/duplicate_lists.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/duplicate_lists.cy.ts index 3f73aaf88a01e..33fd21bceddcc 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/duplicate_lists.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/duplicate_lists.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../../tags'; import { createRule } from '../../../../tasks/api_calls/rules'; import { getExceptionList } from '../../../../objects/exception'; @@ -41,7 +40,7 @@ const getExceptionList2 = () => ({ list_id: 'exception_list_2', }); -describe('Duplicate List', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Duplicate List', { tags: ['@ess', '@serverless'] }, () => { beforeEach(() => { cy.task('esArchiverResetKibana'); login(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/filter_table.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/filter_table.cy.ts index 52e7386032608..2d74476d41a1f 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/filter_table.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/filter_table.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../../tags'; import { getExceptionList } from '../../../../objects/exception'; import { getNewRule } from '../../../../objects/rule'; @@ -36,7 +35,7 @@ const getExceptionList2 = () => ({ name: EXCEPTION_LIST_NAME_TWO, list_id: 'exception_list_2', }); -describe('Filter Lists', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Filter Lists', { tags: ['@ess', '@serverless'] }, () => { beforeEach(() => { cy.task('esArchiverResetKibana'); login(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/import_lists.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/import_lists.cy.ts index d453b2f89edbe..ac9c0be83b5c1 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/import_lists.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/import_lists.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../../tags'; import { IMPORT_SHARED_EXCEPTION_LISTS_CLOSE_BTN, @@ -21,7 +20,7 @@ import { import { login, visitWithoutDateRange } from '../../../../tasks/login'; import { EXCEPTIONS_URL } from '../../../../urls/navigation'; -describe('Import Lists', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Import Lists', { tags: ['@ess', '@serverless'] }, () => { const LIST_TO_IMPORT_FILENAME = 'cypress/fixtures/7_16_exception_list.ndjson'; before(() => { cy.task('esArchiverResetKibana'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/manage_lists.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/manage_lists.cy.ts index a1f3e9eb96faf..59488f6a92132 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/manage_lists.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/manage_lists.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../../tags'; import { getExceptionList, expectedExportedExceptionList } from '../../../../objects/exception'; import { getNewRule } from '../../../../objects/rule'; @@ -47,7 +46,7 @@ const getExceptionList2 = () => ({ describe( 'Manage lists from "Shared Exception Lists" page', - { tags: [tag.ESS, tag.SERVERLESS] }, + { tags: ['@ess', '@serverless'] }, () => { describe('Create/Export/Delete List', () => { before(() => { diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/read_only.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/read_only.cy.ts index b11d3de105b83..c6ac43547fadb 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/read_only.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/exceptions/shared_exception_lists_management/shared_exception_list_page/read_only.cy.ts @@ -5,7 +5,6 @@ * 2.0. */ import { ROLES } from '@kbn/security-solution-plugin/common/test'; -import { tag } from '../../../../tags'; import { getExceptionList } from '../../../../objects/exception'; import { @@ -22,7 +21,7 @@ import { import { login, visitWithoutDateRange } from '../../../../tasks/login'; import { EXCEPTIONS_URL } from '../../../../urls/navigation'; -describe('Shared exception lists - read only', { tags: tag.ESS }, () => { +describe('Shared exception lists - read only', { tags: '@ess' }, () => { before(() => { cy.task('esArchiverResetKibana'); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/attach_alert_to_case.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/attach_alert_to_case.cy.ts index a60c45c0add28..4762c88c551c1 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/attach_alert_to_case.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/attach_alert_to_case.cy.ts @@ -5,7 +5,6 @@ * 2.0. */ import { ROLES } from '@kbn/security-solution-plugin/common/test'; -import { tag } from '../../../tags'; import { getNewRule } from '../../../objects/rule'; @@ -25,7 +24,7 @@ const loadDetectionsPage = (role: ROLES) => { waitForAlertsToPopulate(); }; -describe('Alerts timeline', () => { +describe('Alerts timeline', { tags: '@ess' }, () => { before(() => { // First we login as a privileged user to create alerts. cleanKibana(); @@ -35,7 +34,7 @@ describe('Alerts timeline', () => { waitForAlertsToPopulate(); }); - context('Privileges: read only', { tags: tag.ESS }, () => { + context('Privileges: read only', { tags: '@ess' }, () => { beforeEach(() => { loadDetectionsPage(ROLES.reader); }); @@ -53,7 +52,7 @@ describe('Alerts timeline', () => { }); }); - context('Privileges: can crud', { tags: tag.ESS }, () => { + context('Privileges: can crud', { tags: '@ess' }, () => { beforeEach(() => { loadDetectionsPage(ROLES.platform_engineer); cy.get(LOADING_INDICATOR).should('not.exist'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/attach_timeline.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/attach_timeline.cy.ts index 669d73fc597a9..c7b63a8790b5f 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/attach_timeline.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/attach_timeline.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { login, visitTimeline } from '../../../tasks/login'; import { @@ -20,36 +19,36 @@ import { createTimeline } from '../../../tasks/api_calls/timelines'; import { cleanKibana, deleteTimelines } from '../../../tasks/common'; import { createCase } from '../../../tasks/api_calls/cases'; -describe('attach timeline to case', { tags: [tag.ESS, tag.SERVERLESS] }, () => { - context('without cases created', () => { - before(() => { - cleanKibana(); - }); +describe( + 'attach timeline to case', + { tags: ['@ess', '@serverless', '@brokenInServerless'] }, + () => { + context('without cases created', () => { + before(() => { + cleanKibana(); + }); - beforeEach(() => { - login(); - deleteTimelines(); - createTimeline(getTimeline()).then((response) => { - cy.wrap(response.body.data.persistTimeline.timeline).as('myTimeline'); + beforeEach(() => { + login(); + deleteTimelines(); + createTimeline(getTimeline()).then((response) => { + cy.wrap(response.body.data.persistTimeline.timeline).as('myTimeline'); + }); }); - }); - it('attach timeline to a new case', { tags: tag.BROKEN_IN_SERVERLESS }, function () { - visitTimeline(this.myTimeline.savedObjectId); - attachTimelineToNewCase(); + it('attach timeline to a new case', function () { + visitTimeline(this.myTimeline.savedObjectId); + attachTimelineToNewCase(); - cy.location('origin').then((origin) => { - cy.get(DESCRIPTION_INPUT).should( - 'have.text', - `[${this.myTimeline.title}](${origin}/app/security/timelines?timeline=(id:%27${this.myTimeline.savedObjectId}%27,isOpen:!t))` - ); + cy.location('origin').then((origin) => { + cy.get(DESCRIPTION_INPUT).should( + 'have.text', + `[${this.myTimeline.title}](${origin}/app/security/timelines?timeline=(id:%27${this.myTimeline.savedObjectId}%27,isOpen:!t))` + ); + }); }); - }); - it( - 'attach timeline to an existing case with no case', - { tags: tag.BROKEN_IN_SERVERLESS }, - function () { + it('attach timeline to an existing case with no case', function () { visitTimeline(this.myTimeline.savedObjectId); attachTimelineToExistingCase(); addNewCase(); @@ -60,47 +59,47 @@ describe('attach timeline to case', { tags: [tag.ESS, tag.SERVERLESS] }, () => { `[${this.myTimeline.title}](${origin}/app/security/timelines?timeline=(id:%27${this.myTimeline.savedObjectId}%27,isOpen:!t))` ); }); - } - ); - }); - - context('with cases created', { tags: tag.BROKEN_IN_SERVERLESS }, () => { - before(() => { - login(); - deleteTimelines(); - createTimeline(getTimeline()).then((response) => - cy.wrap(response.body.data.persistTimeline.timeline.savedObjectId).as('timelineId') - ); - createCase(getCase1()).then((response) => cy.wrap(response.body.id).as('caseId')); + }); }); - beforeEach(() => { - login(); - }); + context('with cases created', () => { + before(() => { + login(); + deleteTimelines(); + createTimeline(getTimeline()).then((response) => + cy.wrap(response.body.data.persistTimeline.timeline.savedObjectId).as('timelineId') + ); + createCase(getCase1()).then((response) => cy.wrap(response.body.id).as('caseId')); + }); + + beforeEach(() => { + login(); + }); - it('attach timeline to an existing case', function () { - visitTimeline(this.timelineId); - attachTimelineToExistingCase(); - selectCase(this.caseId); + it('attach timeline to an existing case', function () { + visitTimeline(this.timelineId); + attachTimelineToExistingCase(); + selectCase(this.caseId); - cy.location('origin').then((origin) => { - cy.get(ADD_COMMENT_INPUT).should( - 'have.text', - `[${getTimeline().title}](${origin}/app/security/timelines?timeline=(id:%27${ - this.timelineId - }%27,isOpen:!t))` - ); + cy.location('origin').then((origin) => { + cy.get(ADD_COMMENT_INPUT).should( + 'have.text', + `[${getTimeline().title}](${origin}/app/security/timelines?timeline=(id:%27${ + this.timelineId + }%27,isOpen:!t))` + ); + }); }); - }); - it('modal can be re-opened once closed', function () { - visitTimeline(this.timelineId); - attachTimelineToExistingCase(); - cy.get('[data-test-subj="all-cases-modal-cancel-button"]').click({ force: true }); + it('modal can be re-opened once closed', function () { + visitTimeline(this.timelineId); + attachTimelineToExistingCase(); + cy.get('[data-test-subj="all-cases-modal-cancel-button"]').click({ force: true }); - cy.get('[data-test-subj="all-cases-modal"]').should('not.exist'); - attachTimelineToExistingCase(); - cy.get('[data-test-subj="all-cases-modal"]').should('be.visible'); + cy.get('[data-test-subj="all-cases-modal"]').should('not.exist'); + attachTimelineToExistingCase(); + cy.get('[data-test-subj="all-cases-modal"]').should('be.visible'); + }); }); - }); -}); + } +); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/connector_options.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/connector_options.cy.ts index 0b4b0372b2f2f..b355da43ff179 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/connector_options.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/connector_options.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { login, visitWithoutDateRange } from '../../../tasks/login'; import { @@ -29,7 +28,7 @@ import { CASES_URL } from '../../../urls/navigation'; import { CONNECTOR_CARD_DETAILS, CONNECTOR_TITLE } from '../../../screens/case_details'; import { cleanKibana } from '../../../tasks/common'; -describe('Cases connector incident fields', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Cases connector incident fields', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); login(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/connectors.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/connectors.cy.ts index 2789b72b09acf..fb80591bcd4e8 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/connectors.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/connectors.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { getServiceNowConnector, getServiceNowITSMHealthResponse } from '../../../objects/case'; @@ -21,7 +20,7 @@ import { login, visitWithoutDateRange } from '../../../tasks/login'; import { CASES_URL } from '../../../urls/navigation'; -describe('Cases connectors', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Cases connectors', { tags: ['@ess', '@serverless'] }, () => { const configureResult = { connector: { id: 'e271c3b8-f702-4fbc-98e0-db942b573bbd', diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/creation.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/creation.cy.ts index 868c80a7b743f..ee654719a4390 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/creation.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/creation.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import type { TestCase } from '../../../objects/case'; import { getCase1 } from '../../../objects/case'; @@ -54,7 +53,7 @@ import { loginWithUser, visit, visitWithoutDateRange } from '../../../tasks/logi import { CASES_URL, OVERVIEW_URL } from '../../../urls/navigation'; -describe('Cases', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Cases', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); createTimeline(getCase1().timeline).then((response) => diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/privileges.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/privileges.cy.ts index fa494a832a634..57000344f119f 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/privileges.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/cases/privileges.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import type { TestCaseWithoutTimeline } from '../../../objects/case'; import { ALL_CASES_CREATE_NEW_CASE_BTN, ALL_CASES_NAME } from '../../../screens/all_cases'; @@ -49,7 +48,7 @@ const testCase: TestCaseWithoutTimeline = { owner: 'securitySolution', }; -describe('Cases privileges', { tags: tag.ESS }, () => { +describe('Cases privileges', { tags: '@ess' }, () => { before(() => { cleanKibana(); createUsersAndRoles(usersToCreate, rolesToCreate); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/dashboards/enable_risk_score.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/dashboards/enable_risk_score.cy.ts index d7c7aca013282..e509125fb7ab5 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/dashboards/enable_risk_score.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/dashboards/enable_risk_score.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { getNewRule } from '../../../objects/rule'; import { @@ -33,7 +32,7 @@ import { ENTITY_ANALYTICS_URL } from '../../../urls/navigation'; const spaceId = 'default'; -describe('Enable risk scores', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Enable risk scores', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); login(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/dashboards/entity_analytics.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/dashboards/entity_analytics.cy.ts index 14d326febf11a..cea38567dbf70 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/dashboards/entity_analytics.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/dashboards/entity_analytics.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { login, visit } from '../../../tasks/login'; @@ -56,7 +55,7 @@ const SIEM_KIBANA_HOST_ALERTS = 2; const SIEM_KIBANA_HOST_NAME = 'siem-kibana'; const END_DATE = 'Jan 19, 2019 @ 20:33:29.186'; -describe('Entity Analytics Dashboard', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('Entity Analytics Dashboard', { tags: ['@ess', '@brokenInServerless'] }, () => { before(() => { cleanKibana(); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/dashboards/upgrade_risk_score.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/dashboards/upgrade_risk_score.cy.ts index de6d2ad295b58..0d327b36f5179 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/dashboards/upgrade_risk_score.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/dashboards/upgrade_risk_score.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { getNewRule } from '../../../objects/rule'; import { @@ -39,7 +38,7 @@ import { ENTITY_ANALYTICS_URL } from '../../../urls/navigation'; const spaceId = 'default'; -describe('Upgrade risk scores', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Upgrade risk scores', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); login(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/filters/pinned_filters.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/filters/pinned_filters.cy.ts index d1c2649d901d3..94b5ed82c42d6 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/filters/pinned_filters.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/filters/pinned_filters.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { login, visitWithoutDateRange } from '../../../tasks/login'; @@ -23,7 +22,7 @@ import { import { ALERTS_PAGE } from '../../../screens/kibana_navigation'; import { postDataView } from '../../../tasks/common'; -describe('pinned filters', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('pinned filters', { tags: ['@ess', '@serverless', '@brokenInServerless'] }, () => { before(() => { postDataView('audit*'); }); @@ -32,7 +31,7 @@ describe('pinned filters', { tags: [tag.ESS, tag.SERVERLESS] }, () => { login(); }); - it('show pinned filters on security', { tags: tag.BROKEN_IN_SERVERLESS }, () => { + it('show pinned filters on security', () => { visitWithoutDateRange(DISCOVER_WITH_PINNED_FILTER_URL); cy.get(GLOBAL_SEARCH_BAR_FILTER_ITEM).find(GLOBAL_SEARCH_BAR_PINNED_FILTER).should('exist'); @@ -42,7 +41,7 @@ describe('pinned filters', { tags: [tag.ESS, tag.SERVERLESS] }, () => { cy.get(GLOBAL_SEARCH_BAR_FILTER_ITEM).should('have.text', 'host.name: test-host'); }); - it('does not show discover filters on security', { tags: tag.BROKEN_IN_SERVERLESS }, () => { + it('does not show discover filters on security', () => { visitWithoutDateRange(DISCOVER_WITH_FILTER_URL); cy.get(GLOBAL_SEARCH_BAR_FILTER_ITEM).should('exist'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/guided_onboarding/tour.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/guided_onboarding/tour.cy.ts index eaad7fb549bf6..947f8c9a2e483 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/guided_onboarding/tour.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/guided_onboarding/tour.cy.ts @@ -5,7 +5,6 @@ * 2.0. */ import { AlertsCasesTourSteps } from '@kbn/security-solution-plugin/public/common/components/guided_onboarding_tour/tour_config'; -import { tag } from '../../../tags'; import { disableExpandableFlyout } from '../../../tasks/api_calls/kibana_advanced_settings'; import { navigateFromHeaderTo } from '../../../tasks/security_header'; @@ -30,7 +29,7 @@ import { waitForAlertsToPopulate } from '../../../tasks/create_new_rule'; import { login, visit } from '../../../tasks/login'; import { startAlertsCasesTour } from '../../../tasks/api_calls/tour'; -describe('Guided onboarding tour', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('Guided onboarding tour', { tags: ['@ess', '@brokenInServerless'] }, () => { before(() => { cleanKibana(); login(); @@ -72,7 +71,7 @@ describe('Guided onboarding tour', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] } describe.skip( 'persists tour steps in flyout on flyout toggle', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { const stepsInAlertsFlyout = [ AlertsCasesTourSteps.reviewAlertDetailsFlyout, @@ -83,25 +82,21 @@ describe('Guided onboarding tour', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] } const stepsInCasesFlyout = [AlertsCasesTourSteps.createCase, AlertsCasesTourSteps.submitCase]; stepsInAlertsFlyout.forEach((step) => { - it( - `step: ${step}, resets to ${step}`, - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, - () => { - startTour(); - goToStep(step); - assertTourStepExist(step); - closeAlertFlyout(); - assertTourStepNotExist(step); - expandFirstAlert(); - assertTourStepExist(step); - } - ); + it(`step: ${step}, resets to ${step}`, { tags: ['@ess', '@brokenInServerless'] }, () => { + startTour(); + goToStep(step); + assertTourStepExist(step); + closeAlertFlyout(); + assertTourStepNotExist(step); + expandFirstAlert(); + assertTourStepExist(step); + }); }); stepsInCasesFlyout.forEach((step) => { it( `step: ${step}, resets to ${AlertsCasesTourSteps.createCase}`, - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { startTour(); goToStep(step); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/host_details/risk_tab.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/host_details/risk_tab.cy.ts index e6b7d1636de28..cdfd01c034c33 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/host_details/risk_tab.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/host_details/risk_tab.cy.ts @@ -4,14 +4,13 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { login, visitHostDetailsPage } from '../../../tasks/login'; import { cleanKibana, waitForTableToLoad } from '../../../tasks/common'; import { TABLE_CELL, TABLE_ROWS } from '../../../screens/alerts_details'; -describe('risk tab', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('risk tab', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); cy.task('esArchiverLoad', 'risk_hosts'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/hosts/events_viewer.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/hosts/events_viewer.cy.ts index 54583bae3042e..95976d90f9557 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/hosts/events_viewer.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/hosts/events_viewer.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { FIELDS_BROWSER_CHECKBOX, @@ -46,7 +45,7 @@ const defaultHeadersInDefaultEcsCategory = [ { id: 'destination.ip' }, ]; -describe('Events Viewer', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('Events Viewer', { tags: ['@ess', '@brokenInServerless'] }, () => { before(() => { cy.task('esArchiverLoad', 'auditbeat_big'); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/hosts/host_risk_tab.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/hosts/host_risk_tab.cy.ts index 0f6b1823f3388..ce59d0de0b9ad 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/hosts/host_risk_tab.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/hosts/host_risk_tab.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { cleanKibana } from '../../../tasks/common'; import { @@ -22,7 +21,7 @@ import { login, visit } from '../../../tasks/login'; import { HOSTS_URL } from '../../../urls/navigation'; import { clearSearchBar, kqlSearch } from '../../../tasks/security_header'; -describe('risk tab', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('risk tab', { tags: ['@ess', '@brokenInServerless'] }, () => { before(() => { cleanKibana(); cy.task('esArchiverLoad', 'risk_hosts'); @@ -46,7 +45,7 @@ describe('risk tab', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { clearSearchBar(); }); - it('filters the table', () => { + it.skip('filters the table', () => { openRiskTableFilterAndSelectTheCriticalOption(); cy.get(HOST_BY_RISK_TABLE_CELL).eq(3).should('not.have.text', 'siem-kibana'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/hosts/hosts_risk_column.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/hosts/hosts_risk_column.cy.ts index b38dda89423ac..664e5767dc2b9 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/hosts/hosts_risk_column.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/hosts/hosts_risk_column.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { login, visit } from '../../../tasks/login'; @@ -13,7 +12,7 @@ import { cleanKibana } from '../../../tasks/common'; import { TABLE_CELL } from '../../../screens/alerts_details'; import { kqlSearch } from '../../../tasks/security_header'; -describe('All hosts table', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('All hosts table', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); cy.task('esArchiverLoad', 'risk_hosts'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/network/hover_actions.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/network/hover_actions.cy.ts index 30104b2aa8a88..036fd908a8f0d 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/network/hover_actions.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/network/hover_actions.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { TOP_N_CONTAINER } from '../../../screens/network/flows'; import { GLOBAL_SEARCH_BAR_FILTER_ITEM } from '../../../screens/search_bar'; @@ -26,7 +25,7 @@ import { openTimelineUsingToggle } from '../../../tasks/security_main'; const testDomain = 'myTest'; // tracked by https://github.com/elastic/kibana/issues/161874 -describe.skip('Hover actions', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe.skip('Hover actions', { tags: ['@ess', '@serverless'] }, () => { const onBeforeLoadCallback = (win: Cypress.AUTWindow) => { // avoid cypress being held by windows prompt and timeout cy.stub(win, 'prompt').returns(true); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/network/overflow_items.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/network/overflow_items.cy.ts index 1dc34f50e2b7a..71bdd66b9b381 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/network/overflow_items.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/network/overflow_items.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { ADD_TO_TIMELINE, @@ -23,7 +22,7 @@ import { NETWORK_URL } from '../../../urls/navigation'; const testDomainOne = 'myTest'; const testDomainTwo = 'myTest2'; -describe('Overflow items', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Overflow items', { tags: ['@ess', '@serverless'] }, () => { context('Network stats and tables', () => { before(() => { cy.task('esArchiverLoad', 'network'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/overview/overview.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/overview/overview.cy.ts index b031a73b69e37..eec86830718a7 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/overview/overview.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/overview/overview.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { HOST_STATS, NETWORK_STATS, OVERVIEW_EMPTY_PAGE } from '../../../screens/overview'; @@ -17,7 +16,7 @@ import { cleanKibana } from '../../../tasks/common'; import { createTimeline, favoriteTimeline } from '../../../tasks/api_calls/timelines'; import { getTimeline } from '../../../objects/timeline'; -describe('Overview Page', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Overview Page', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); cy.task('esArchiverLoad', 'overview'); @@ -65,7 +64,7 @@ describe('Overview Page', { tags: [tag.ESS, tag.SERVERLESS] }, () => { }); }); -describe('Overview page with no data', { tags: tag.BROKEN_IN_SERVERLESS }, () => { +describe('Overview page with no data', { tags: '@brokenInServerless' }, () => { before(() => { cy.task('esArchiverUnload', 'auditbeat'); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/explore/pagination/pagination.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/explore/pagination/pagination.cy.ts index 93a2e2b9d2dbb..3f9b31b819c42 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/explore/pagination/pagination.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/explore/pagination/pagination.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { PROCESS_NAME_FIELD, @@ -21,7 +20,7 @@ import { ALL_HOSTS_TABLE } from '../../../screens/hosts/all_hosts'; import { ALL_USERS_TABLE } from '../../../screens/users/all_users'; import { goToTablePage, sortFirstTableColumn } from '../../../tasks/table_pagination'; -describe('Pagination', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Pagination', { tags: ['@ess', '@serverless'] }, () => { describe('Host uncommon processes table)', () => { before(() => { cy.task('esArchiverLoad', 'host_uncommon_processes'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/header/navigation.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/header/navigation.cy.ts index 55321e4027e37..3ae0c6eda82b4 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/header/navigation.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/header/navigation.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../tags'; import { CASES, @@ -78,7 +77,7 @@ import { THREAT_INTELLIGENCE_PAGE, } from '../../screens/kibana_navigation'; -describe('top-level navigation common to all pages in the Security app', { tags: tag.ESS }, () => { +describe('top-level navigation common to all pages in the Security app', { tags: '@ess' }, () => { beforeEach(() => { login(); visit(TIMELINES_URL); @@ -200,7 +199,7 @@ describe('top-level navigation common to all pages in the Security app', { tags: }); }); -describe('Kibana navigation to all pages in the Security app ', { tags: tag.ESS }, () => { +describe('Kibana navigation to all pages in the Security app ', { tags: '@ess' }, () => { beforeEach(() => { login(); visit(KIBANA_HOME); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/header/search_bar.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/header/search_bar.cy.ts index aec33676ad60f..b4c33004e9675 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/header/search_bar.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/header/search_bar.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../tags'; import { login, visit } from '../../tasks/login'; import { @@ -23,7 +22,7 @@ import { getHostIpFilter } from '../../objects/filter'; import { HOSTS_URL } from '../../urls/navigation'; import { waitForAllHostsToBeLoaded } from '../../tasks/hosts/all_hosts'; -describe('SearchBar', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('SearchBar', { tags: ['@ess', '@serverless'] }, () => { beforeEach(() => { login(); visit(HOSTS_URL); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/inspect/inspect_button.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/inspect/inspect_button.cy.ts index a71b22ead9f5f..209422bcf7eb7 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/inspect/inspect_button.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/inspect/inspect_button.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../tags'; import { INSPECT_BUTTONS_IN_SECURITY, @@ -23,7 +22,7 @@ import { selectDataView } from '../../tasks/sourcerer'; const DATA_VIEW = 'auditbeat-*'; -describe('Inspect Explore pages', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Inspect Explore pages', { tags: ['@ess', '@serverless'] }, () => { before(() => { cy.task('esArchiverLoad', 'risk_users'); cy.task('esArchiverLoad', 'risk_hosts'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/alert_table_action_column.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/alert_table_action_column.cy.ts index 9b8babc551503..a8acec0019db6 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/alert_table_action_column.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/alert_table_action_column.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { OVERLAY_CONTAINER } from '../../../screens/alerts'; import { @@ -16,7 +15,7 @@ import { waitForAlertsToPopulate } from '../../../tasks/create_new_rule'; import { login, visit } from '../../../tasks/login'; import { ALERTS_URL } from '../../../urls/navigation'; -describe('Alerts Table Action column', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Alerts Table Action column', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); cy.task('esArchiverLoad', 'process_ancestry'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/alerts_cell_actions.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/alerts_cell_actions.cy.ts index be84fba1cb9e5..d702ec2e13acb 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/alerts_cell_actions.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/alerts_cell_actions.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { getNewRule } from '../../../objects/rule'; import { CELL_COPY_BUTTON, FILTER_BADGE, SHOW_TOP_N_HEADER } from '../../../screens/alerts'; @@ -38,7 +37,7 @@ import { openActiveTimeline } from '../../../tasks/timeline'; import { ALERTS_URL } from '../../../urls/navigation'; -describe('Alerts cell actions', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('Alerts cell actions', { tags: ['@ess', '@brokenInServerless'] }, () => { before(() => { cleanKibana(); createRule(getNewRule()); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/alerts_details.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/alerts_details.cy.ts index 0808b79de216e..d4ecaf16df975 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/alerts_details.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/alerts_details.cy.ts @@ -5,7 +5,7 @@ * 2.0. */ import type { DataTableModel } from '@kbn/securitysolution-data-table'; -import { tag } from '../../../tags'; + import { disableExpandableFlyout } from '../../../tasks/api_calls/kibana_advanced_settings'; import { ALERT_FLYOUT, @@ -35,7 +35,7 @@ import { ALERT_SUMMARY_SEVERITY_DONUT_CHART } from '../../../screens/alerts'; import { getLocalstorageEntryAsObject } from '../../../helpers/common'; import { goToRuleDetails } from '../../../tasks/alerts_detection_rules'; -describe('Alert details flyout', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Alert details flyout', { tags: ['@ess', '@serverless'] }, () => { describe('Basic functions', () => { before(() => { cleanKibana(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/building_block_alerts.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/building_block_alerts.cy.ts index d215f88886093..6d3dc872e9c3c 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/building_block_alerts.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/building_block_alerts.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { getBuildingBlockRule } from '../../../objects/rule'; import { OVERVIEW_ALERTS_HISTOGRAM_EMPTY } from '../../../screens/overview'; @@ -25,7 +24,7 @@ const EXPECTED_NUMBER_OF_ALERTS = 5; describe( 'Alerts generated by building block rules', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { before(() => { cy.task('esArchiverLoad', 'auditbeat_big'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/changing_alert_status.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/changing_alert_status.cy.ts index d714226e4021d..6eb08bb5930a0 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/changing_alert_status.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/changing_alert_status.cy.ts @@ -5,7 +5,6 @@ * 2.0. */ import { ROLES } from '@kbn/security-solution-plugin/common/test'; -import { tag } from '../../../tags'; import { getNewRule } from '../../../objects/rule'; import { @@ -39,7 +38,7 @@ import { login, visit } from '../../../tasks/login'; import { ALERTS_URL } from '../../../urls/navigation'; -describe('Changing alert status', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('Changing alert status', { tags: ['@ess', '@brokenInServerless'] }, () => { before(() => { cy.task('esArchiverLoad', 'auditbeat_big'); cleanKibana(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/detection_page_filters.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/detection_page_filters.cy.ts index bfb97b6bc9c34..c5821fbfb76fe 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/detection_page_filters.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/detection_page_filters.cy.ts @@ -8,7 +8,6 @@ import { encode } from '@kbn/rison'; import type { FilterItemObj } from '@kbn/security-solution-plugin/public/common/components/filter_group/types'; import { DEFAULT_DETECTION_PAGE_FILTERS } from '@kbn/security-solution-plugin/common/constants'; import { formatPageFilterSearchParam } from '@kbn/security-solution-plugin/common/utils/format_page_filter_search_param'; -import { tag } from '../../../tags'; import { getNewRule } from '../../../objects/rule'; import { @@ -108,7 +107,7 @@ const assertFilterControlsWithFilterObject = ( }); }; -describe(`Detections : Page Filters`, { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe(`Detections : Page Filters`, { tags: ['@ess', '@brokenInServerless'] }, () => { before(() => { cleanKibana(); createRule(getNewRule({ rule_id: 'custom_rule_filters' })); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_analyzer_graph_tab.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_analyzer_graph_tab.cy.ts index a413a3097b3f0..3e77e1ad9eb76 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_analyzer_graph_tab.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_analyzer_graph_tab.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../../../tags'; - import { DOCUMENT_DETAILS_FLYOUT_VISUALIZE_TAB_GRAPH_ANALYZER_BUTTON, DOCUMENT_DETAILS_FLYOUT_VISUALIZE_TAB_GRAPH_ANALYZER_CONTENT, @@ -26,9 +24,10 @@ import { getNewRule } from '../../../../objects/rule'; import { ALERTS_URL } from '../../../../urls/navigation'; import { waitForAlertsToPopulate } from '../../../../tasks/create_new_rule'; -describe( +// TODO enable once the visualize tabs are back +describe.skip( 'Alert details expandable flyout left panel analyzer graph', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { beforeEach(() => { cleanKibana(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_correlations_tab.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_correlations_tab.cy.ts index b80e9cdd76646..b2a9460e4128e 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_correlations_tab.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_correlations_tab.cy.ts @@ -4,25 +4,24 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../../tags'; import { createRule } from '../../../../tasks/api_calls/rules'; import { getNewRule } from '../../../../objects/rule'; import { - CORRELATIONS_ANCESTRY_SECTION, - CORRELATIONS_ANCESTRY_TABLE, - CORRELATIONS_CASES_SECTION, - CORRELATIONS_SESSION_SECTION, - CORRELATIONS_SOURCE_SECTION, + CORRELATIONS_ANCESTRY_SECTION_INVESTIGATE_IN_TIMELINE_BUTTON, + CORRELATIONS_ANCESTRY_SECTION_TABLE, + CORRELATIONS_ANCESTRY_SECTION_TITLE, + CORRELATIONS_CASES_SECTION_TABLE, + CORRELATIONS_CASES_SECTION_TITLE, + CORRELATIONS_SESSION_SECTION_INVESTIGATE_IN_TIMELINE_BUTTON, + CORRELATIONS_SESSION_SECTION_TABLE, + CORRELATIONS_SESSION_SECTION_TITLE, DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_CORRELATIONS_BUTTON, } from '../../../../screens/expandable_flyout/alert_details_left_panel_correlations_tab'; import { DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB, DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_BUTTON_GROUP, } from '../../../../screens/expandable_flyout/alert_details_left_panel'; -import { - expandCorrelationsSection, - openCorrelationsTab, -} from '../../../../tasks/expandable_flyout/alert_details_left_panel_correlations_tab'; +import { openCorrelationsTab } from '../../../../tasks/expandable_flyout/alert_details_left_panel_correlations_tab'; import { openInsightsTab } from '../../../../tasks/expandable_flyout/alert_details_left_panel'; import { expandDocumentDetailsExpandableFlyoutLeftSection } from '../../../../tasks/expandable_flyout/alert_details_right_panel'; import { @@ -36,7 +35,7 @@ import { ALERTS_URL } from '../../../../urls/navigation'; describe( 'Expandable flyout left panel correlations', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { beforeEach(() => { cleanKibana(); @@ -71,23 +70,40 @@ describe( cy.log('should render all the correlations sections'); - cy.get(CORRELATIONS_ANCESTRY_SECTION) + cy.get(CORRELATIONS_ANCESTRY_SECTION_TITLE).scrollIntoView(); + cy.get(CORRELATIONS_ANCESTRY_SECTION_TITLE) .should('be.visible') - .and('have.text', '1 alert related by ancestry'); + .and('contain.text', '1 alert related by ancestry'); + cy.get(CORRELATIONS_ANCESTRY_SECTION_TABLE).should('be.visible'); + cy.get(CORRELATIONS_ANCESTRY_SECTION_INVESTIGATE_IN_TIMELINE_BUTTON).should('be.visible'); - cy.get(CORRELATIONS_SOURCE_SECTION) - .should('be.visible') - .and('have.text', '0 alerts related by source event'); + // TODO get proper data to test this section + // cy.get(CORRELATIONS_SOURCE_SECTION).scrollIntoView(); + // cy.get(CORRELATIONS_SOURCE_SECTION) + // .should('be.visible') + // .and('contain.text', '0 alerts related by source event'); + // cy.get(CORRELATIONS_SOURCE_SECTION_TABLE).should('be.visible'); + // cy.get(CORRELATIONS_SESSION_SECTION_INVESTIGATE_IN_TIMELINE_BUTTON).should('be.visible'); - cy.get(CORRELATIONS_SESSION_SECTION) + cy.get(CORRELATIONS_SESSION_SECTION_TITLE).scrollIntoView(); + cy.get(CORRELATIONS_SESSION_SECTION_TITLE) .should('be.visible') - .and('have.text', '1 alert related by session'); + .and('contain.text', '1 alert related by session'); + cy.get(CORRELATIONS_SESSION_SECTION_TABLE).should('be.visible'); + cy.get(CORRELATIONS_SESSION_SECTION_INVESTIGATE_IN_TIMELINE_BUTTON).should('be.visible'); - cy.get(CORRELATIONS_CASES_SECTION).should('be.visible').and('have.text', '1 related case'); - - expandCorrelationsSection(CORRELATIONS_ANCESTRY_SECTION); + cy.get(CORRELATIONS_CASES_SECTION_TITLE).scrollIntoView(); + cy.get(CORRELATIONS_CASES_SECTION_TITLE) + .should('be.visible') + .and('contain.text', '1 related case'); + cy.get(CORRELATIONS_CASES_SECTION_TABLE).should('be.visible'); - cy.get(CORRELATIONS_ANCESTRY_TABLE).should('be.visible'); + // TODO get proper data to test suppressed alerts + // cy.get(CORRELATIONS_SUPPRESSED_ALERTS_TITLE).scrollIntoView(); + // cy.get(CORRELATIONS_SUPPRESSED_ALERTS_TITLE) + // .should('be.visible') + // .and('contain.text', '1 suppressed alert'); + // cy.get(CORRELATIONS_SUPPRESSED_ALERTS_INVESTIGATE_IN_TIMELINE_BUTTON).should('be.visible'); }); } ); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_entities_tab.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_entities_tab.cy.ts index 66433f2c193a3..fc087cbe3164c 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_entities_tab.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_entities_tab.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../../tags'; import { DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_ENTITIES_BUTTON, @@ -28,7 +27,7 @@ import { waitForAlertsToPopulate } from '../../../../tasks/create_new_rule'; describe( 'Alert details expandable flyout left panel entities', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { beforeEach(() => { cleanKibana(); @@ -42,7 +41,7 @@ describe( openEntitiesTab(); }); - it('should display analyzer graph and node list under Insights Entities', () => { + it('should display host details and user details under Insights Entities', () => { cy.get(DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB) .should('be.visible') .and('have.text', 'Insights'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_investigation_tab.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_investigation_tab.cy.ts index 13bae3fe61d67..5a6a8179408e4 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_investigation_tab.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_investigation_tab.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../../tags'; import { DOCUMENT_DETAILS_FLYOUT_INVESTIGATION_TAB, @@ -22,7 +21,7 @@ import { waitForAlertsToPopulate } from '../../../../tasks/create_new_rule'; describe( 'Alert details expandable flyout left panel investigation', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { beforeEach(() => { cleanKibana(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_prevalence_tab.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_prevalence_tab.cy.ts index 0db69f8471bbb..baff17ce85d03 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_prevalence_tab.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_prevalence_tab.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../../tags'; import { openPrevalenceTab } from '../../../../tasks/expandable_flyout/alert_details_left_panel_prevalence_tab'; import { openInsightsTab } from '../../../../tasks/expandable_flyout/alert_details_left_panel'; @@ -23,6 +22,7 @@ import { DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_PREVALENCE_TABLE_HOST_PREVALENCE_CELL, DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_PREVALENCE_TABLE_USER_PREVALENCE_CELL, DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_PREVALENCE_TABLE, + DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_PREVALENCE_DATE_PICKER, } from '../../../../screens/expandable_flyout/alert_details_left_panel_prevalence_tab'; import { cleanKibana } from '../../../../tasks/common'; import { login, visit } from '../../../../tasks/login'; @@ -44,7 +44,7 @@ describe('Alert details expandable flyout left panel prevalence', () => { openPrevalenceTab(); }); - it('should display prevalence tab', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { + it('should display prevalence tab', { tags: ['@ess', '@brokenInServerless'] }, () => { cy.get(DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB).should('be.visible').and('have.text', 'Insights'); cy.get(DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_BUTTON_GROUP).should('be.visible'); @@ -53,6 +53,8 @@ describe('Alert details expandable flyout left panel prevalence', () => { .should('be.visible') .and('have.text', 'Prevalence'); + cy.get(DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_PREVALENCE_DATE_PICKER).should('be.visible'); + cy.get(DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_PREVALENCE_TABLE).should('be.visible'); cy.get(DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_PREVALENCE_TABLE_TYPE_CELL) .should('contain.text', 'host.name') diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_session_view_tab.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_session_view_tab.cy.ts index 190e45a0e5f4a..3c5b5a6535e64 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_session_view_tab.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_session_view_tab.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../../tags'; import { DOCUMENT_DETAILS_FLYOUT_VISUALIZE_TAB_SESSION_VIEW_BUTTON, @@ -23,9 +22,10 @@ import { getNewRule } from '../../../../objects/rule'; import { ALERTS_URL } from '../../../../urls/navigation'; import { waitForAlertsToPopulate } from '../../../../tasks/create_new_rule'; -describe( +// TODO enable once the visualize tabs are back +describe.skip( 'Alert details expandable flyout left panel session view', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { beforeEach(() => { cleanKibana(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_threat_intelligence_tab.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_threat_intelligence_tab.cy.ts index af5504b08ce7b..0e702f5ae720e 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_threat_intelligence_tab.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_left_panel_threat_intelligence_tab.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../../tags'; import { createRule } from '../../../../tasks/api_calls/rules'; import { getNewRule } from '../../../../objects/rule'; @@ -25,7 +24,7 @@ import { DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_THREAT_INTELLIGENCE_BUTTON } from describe( 'Expandable flyout left panel threat intelligence', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { beforeEach(() => { cleanKibana(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_preview_panel_alert_reason_preview.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_preview_panel_alert_reason_preview.cy.ts index 83d2dbee62212..0b32f60e94c0c 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_preview_panel_alert_reason_preview.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_preview_panel_alert_reason_preview.cy.ts @@ -14,11 +14,10 @@ import { createRule } from '../../../../tasks/api_calls/rules'; import { getNewRule } from '../../../../objects/rule'; import { ALERTS_URL } from '../../../../urls/navigation'; import { waitForAlertsToPopulate } from '../../../../tasks/create_new_rule'; -import { tag } from '../../../../tags'; describe( 'Alert details expandable flyout rule preview panel', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { const rule = getNewRule(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_preview_panel_rule_preview.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_preview_panel_rule_preview.cy.ts index d22d1894b5325..27c33010d46e1 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_preview_panel_rule_preview.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_preview_panel_rule_preview.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../../tags'; import { expandFirstAlertExpandableFlyout } from '../../../../tasks/expandable_flyout/common'; import { @@ -51,7 +50,7 @@ describe('Alert details expandable flyout rule preview panel', () => { describe('rule preview', () => { it( 'should display rule preview and its sub sections', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { cy.log('rule preview panel'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_right_panel.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_right_panel.cy.ts index 612d49f328fef..8ea94301138ce 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_right_panel.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_right_panel.cy.ts @@ -6,7 +6,6 @@ */ import { upperFirst } from 'lodash'; -import { tag } from '../../../../tags'; import { DOCUMENT_DETAILS_FLYOUT_FOOTER_ADD_TO_NEW_CASE_CREATE_BUTTON, @@ -69,7 +68,7 @@ import { waitForAlertsToPopulate } from '../../../../tasks/create_new_rule'; describe( 'Alert details expandable flyout right panel', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { const rule = getNewRule(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_right_panel_json_tab.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_right_panel_json_tab.cy.ts index 482ffd4a16417..01c11a671cb64 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_right_panel_json_tab.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_right_panel_json_tab.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../../tags'; import { scrollWithinDocumentDetailsExpandableFlyoutRightSection } from '../../../../tasks/expandable_flyout/alert_details_right_panel_json_tab'; import { openJsonTab } from '../../../../tasks/expandable_flyout/alert_details_right_panel'; @@ -19,7 +18,7 @@ import { waitForAlertsToPopulate } from '../../../../tasks/create_new_rule'; describe( 'Alert details expandable flyout right panel json tab', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { beforeEach(() => { cleanKibana(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_right_panel_overview_tab.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_right_panel_overview_tab.cy.ts index 050463b70ae50..6c9f14cbc7a04 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_right_panel_overview_tab.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_right_panel_overview_tab.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../../../tags'; - import { collapseDocumentDetailsExpandableFlyoutLeftSection } from '../../../../tasks/expandable_flyout/alert_details_right_panel'; import { DOCUMENT_DETAILS_FLYOUT_INVESTIGATION_TAB_CONTENT } from '../../../../screens/expandable_flyout/alert_details_left_panel_investigation_tab'; import { @@ -16,7 +14,7 @@ import { import { DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_ABOUT_SECTION_CONTENT, DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_ABOUT_SECTION_HEADER, - DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_ANALYZER_PREVIEW_CONTENT, + DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_ANALYZER_PREVIEW_CONTAINER, DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_DESCRIPTION_DETAILS, DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_DESCRIPTION_TITLE, DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_OPEN_RULE_PREVIEW_BUTTON, @@ -24,7 +22,9 @@ import { DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_HIGHLIGHTED_FIELDS_HEADER_TITLE, DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_CONTENT, DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_HEADER, - DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_VALUES, + DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_VALUES_RELATED_ALERTS_BY_ANCESTRY, + DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_VALUES_RELATED_ALERTS_BY_SESSION, + DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_VALUES_RELATED_CASES, DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_ENTITIES_CONTENT, DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_ENTITIES_HEADER, DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_PREVALENCE_CONTENT, @@ -40,7 +40,7 @@ import { DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_MITRE_ATTACK_TITLE, DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_REASON_DETAILS, DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_REASON_TITLE, - DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_SESSION_PREVIEW_CONTENT, + DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_SESSION_PREVIEW_CONTAINER, DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_HIGHLIGHTED_FIELDS_TABLE_FIELD_CELL, DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_HIGHLIGHTED_FIELDS_TABLE_VALUE_CELL, DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_RESPONSE_SECTION_EMPTY_RESPONSE, @@ -69,7 +69,7 @@ import { describe( 'Alert details expandable flyout right panel overview tab', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { const rule = getNewRule(); @@ -140,13 +140,15 @@ describe( cy.log('analyzer graph preview'); - cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_ANALYZER_PREVIEW_CONTENT).scrollIntoView(); - cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_ANALYZER_PREVIEW_CONTENT).should('be.visible'); + cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_ANALYZER_PREVIEW_CONTAINER).scrollIntoView(); + cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_ANALYZER_PREVIEW_CONTAINER).should( + 'be.visible' + ); cy.log('session view preview'); - cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_SESSION_PREVIEW_CONTENT).scrollIntoView(); - cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_SESSION_PREVIEW_CONTENT).should('be.visible'); + cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_SESSION_PREVIEW_CONTAINER).scrollIntoView(); + cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_SESSION_PREVIEW_CONTAINER).should('be.visible'); }); }); @@ -167,7 +169,7 @@ describe( cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INVESTIGATION_GUIDE_BUTTON) .should('be.visible') - .and('have.text', 'Investigation guide'); + .and('have.text', 'Show investigation guide'); cy.log('should navigate to left Investigation tab'); @@ -291,21 +293,23 @@ describe( cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_CONTENT) .should('be.visible') .within(() => { - // TODO the order in which these appear is not deterministic currently, hence this can cause flakiness - cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_VALUES) - .eq(0) + // cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_VALUES_SUPPRESSED_ALERTS) + // .should('be.visible') + // .and('have.text', '1 suppressed alert'); // TODO populate rule with alert suppression + cy.get( + DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_VALUES_RELATED_ALERTS_BY_ANCESTRY + ) .should('be.visible') .and('have.text', '1 alert related by ancestry'); - // cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_VALUES) - // .eq(2) + // cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_VALUES_RELATED_ALERTS_BY_SAME_SOURCE_EVENT) // .should('be.visible') // .and('have.text', '1 alert related by the same source event'); // TODO work on getting proper data to display some same source data here - cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_VALUES) - .eq(2) + cy.get( + DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_VALUES_RELATED_ALERTS_BY_SESSION + ) .should('be.visible') .and('have.text', '1 alert related by session'); - cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_VALUES) - .eq(1) + cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_VALUES_RELATED_CASES) .should('be.visible') .and('have.text', '1 related case'); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_right_panel_table_tab.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_right_panel_table_tab.cy.ts index ec6768c5ddc3c..8a6c025316d0a 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_right_panel_table_tab.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_right_panel_table_tab.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../../tags'; import { openTableTab } from '../../../../tasks/expandable_flyout/alert_details_right_panel'; import { expandFirstAlertExpandableFlyout } from '../../../../tasks/expandable_flyout/common'; @@ -34,7 +33,7 @@ import { waitForAlertsToPopulate } from '../../../../tasks/create_new_rule'; describe( 'Alert details expandable flyout right panel table tab', - { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, + { tags: ['@ess', '@brokenInServerless'] }, () => { beforeEach(() => { cleanKibana(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_url_sync.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_url_sync.cy.ts index e61c41234d22b..97385e87f2f33 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_url_sync.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/expandable_flyout/alert_details_url_sync.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../../tags'; import { getNewRule } from '../../../../objects/rule'; import { cleanKibana } from '../../../../tasks/common'; @@ -16,7 +15,7 @@ import { closeFlyout } from '../../../../tasks/expandable_flyout/alert_details_r import { expandFirstAlertExpandableFlyout } from '../../../../tasks/expandable_flyout/common'; import { DOCUMENT_DETAILS_FLYOUT_HEADER_TITLE } from '../../../../screens/expandable_flyout/alert_details_right_panel'; -describe('Expandable flyout state sync', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('Expandable flyout state sync', { tags: ['@ess', '@brokenInServerless'] }, () => { const rule = getNewRule(); beforeEach(() => { diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/investigate_in_timeline.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/investigate_in_timeline.cy.ts index f4e2530be4e88..22a80ba6fda9c 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/investigate_in_timeline.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/investigate_in_timeline.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { disableExpandableFlyout } from '../../../tasks/api_calls/kibana_advanced_settings'; import { getNewRule } from '../../../objects/rule'; @@ -28,7 +27,7 @@ import { } from '../../../screens/alerts_details'; import { verifyInsightCount } from '../../../tasks/alerts_details'; -describe('Investigate in timeline', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Investigate in timeline', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); createRule(getNewRule()); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/navigation.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/navigation.cy.ts index 120ae0130e369..18afd6d5e71d7 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/navigation.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/navigation.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { expandFirstAlert, waitForAlerts } from '../../../tasks/alerts'; import { createRule } from '../../../tasks/api_calls/rules'; @@ -24,7 +23,7 @@ import { OPEN_ALERT_DETAILS_PAGE } from '../../../screens/alerts_details'; // This is skipped as the details page POC will be removed in favor of the expanded alert flyout // https://github.com/elastic/kibana/issues/154477 -describe.skip('Alert Details Page Navigation', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe.skip('Alert Details Page Navigation', { tags: ['@ess', '@serverless'] }, () => { describe('navigating to alert details page', () => { const rule = getNewRule(); before(() => { diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/resolver.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/resolver.cy.ts index fdb910a12aca0..722e196706859 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/resolver.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/alerts/resolver.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { ANALYZER_NODE } from '../../../screens/alerts'; @@ -18,7 +17,7 @@ import { waitForAlertsToPopulate } from '../../../tasks/create_new_rule'; import { login, visit } from '../../../tasks/login'; import { ALERTS_URL } from '../../../urls/navigation'; -describe('Analyze events view for alerts', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Analyze events view for alerts', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); createRule(getNewRule()); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/dasbhoards/detection_response.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/dasbhoards/detection_response.cy.ts index d399648842977..6be251aa5e618 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/dasbhoards/detection_response.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/dasbhoards/detection_response.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { getNewRule } from '../../../objects/rule'; import { ALERTS_COUNT } from '../../../screens/alerts'; @@ -43,7 +42,7 @@ import { ALERTS_URL, DASHBOARDS_URL, DETECTIONS_RESPONSE_URL } from '../../../ur const TEST_USER_NAME = 'test'; const SIEM_KIBANA_HOST_NAME = 'siem-kibana'; -describe('Detection response view', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('Detection response view', { tags: ['@ess', '@brokenInServerless'] }, () => { before(() => { cleanKibana(); createRule(getNewRule()); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timeline_templates/creation.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timeline_templates/creation.cy.ts index 1a07cac483c03..f31d75cf960ff 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timeline_templates/creation.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timeline_templates/creation.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { getTimeline } from '../../../objects/timeline'; @@ -49,7 +48,7 @@ import { openTimeline, waitForTimelinesPanelToBeLoaded } from '../../../tasks/ti import { TIMELINES_URL } from '../../../urls/navigation'; -describe('Timeline Templates', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Timeline Templates', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timeline_templates/export.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timeline_templates/export.cy.ts index 52efe04b5957b..a87061d02d513 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timeline_templates/export.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timeline_templates/export.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { exportTimeline } from '../../../tasks/timelines'; import { login, visitWithoutDateRange } from '../../../tasks/login'; @@ -18,7 +17,7 @@ import { createTimelineTemplate } from '../../../tasks/api_calls/timelines'; import { cleanKibana } from '../../../tasks/common'; import { searchByTitle } from '../../../tasks/table_pagination'; -describe('Export timelines', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Export timelines', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/bulk_add_to_timeline.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/bulk_add_to_timeline.cy.ts index 6bf2ee2fca787..3470c21aa0ed3 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/bulk_add_to_timeline.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/bulk_add_to_timeline.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { getNewRule } from '../../../objects/rule'; import { SELECTED_ALERTS } from '../../../screens/alerts'; @@ -23,7 +22,7 @@ import { openEvents, openSessions } from '../../../tasks/hosts/main'; import { login, visit } from '../../../tasks/login'; import { ALERTS_URL, HOSTS_URL } from '../../../urls/navigation'; -describe('Bulk Investigate in Timeline', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Bulk Investigate in Timeline', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); cy.task('esArchiverLoad', 'bulk_process'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/correlation_tab.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/correlation_tab.cy.ts index 31ed9a15f8394..9772de0dddb89 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/correlation_tab.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/correlation_tab.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { openTimeline } from '../../../tasks/timelines'; import { getTimeline } from '../../../objects/timeline'; @@ -23,7 +22,7 @@ import { TIMELINES_URL } from '../../../urls/navigation'; import { EQL_QUERY_VALIDATION_ERROR } from '../../../screens/create_new_rule'; import { deleteTimelines } from '../../../tasks/common'; -describe('Correlation tab', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Correlation tab', { tags: ['@ess', '@serverless'] }, () => { const eql = 'any where process.name == "zsh"'; beforeEach(() => { diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/creation.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/creation.cy.ts index d6cece5eb0bc0..6ae1b15a4f8ad 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/creation.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/creation.cy.ts @@ -5,7 +5,6 @@ * 2.0. */ import { ROLES } from '@kbn/security-solution-plugin/common/test'; -import { tag } from '../../../tags'; import { getTimeline } from '../../../objects/timeline'; @@ -43,7 +42,7 @@ import { import { OVERVIEW_URL, TIMELINE_TEMPLATES_URL } from '../../../urls/navigation'; -describe.skip('Create a timeline from a template', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe.skip('Create a timeline from a template', { tags: ['@ess', '@serverless'] }, () => { before(() => { deleteTimelines(); login(); @@ -57,7 +56,7 @@ describe.skip('Create a timeline from a template', { tags: [tag.ESS, tag.SERVERL it( 'Should have the same query and open the timeline modal', - { tags: tag.BROKEN_IN_SERVERLESS }, + { tags: '@brokenInServerless' }, () => { selectCustomTemplates(); expandEventAction(); @@ -77,7 +76,7 @@ describe('Timelines', (): void => { }); describe('Toggle create timeline from plus icon', () => { - context('Privileges: CRUD', { tags: tag.ESS }, () => { + context('Privileges: CRUD', { tags: '@ess' }, () => { beforeEach(() => { login(); visit(OVERVIEW_URL); @@ -90,7 +89,7 @@ describe('Timelines', (): void => { }); }); - context('Privileges: READ', { tags: tag.ESS }, () => { + context('Privileges: READ', { tags: '@ess' }, () => { beforeEach(() => { login(ROLES.reader); visit(OVERVIEW_URL, undefined, ROLES.reader); @@ -112,7 +111,7 @@ describe('Timelines', (): void => { describe.skip( 'Creates a timeline by clicking untitled timeline from bottom bar', - { tags: tag.BROKEN_IN_SERVERLESS }, + { tags: '@brokenInServerless' }, () => { beforeEach(() => { login(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/data_providers.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/data_providers.cy.ts index aaac56b7c2413..c3add90e6531f 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/data_providers.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/data_providers.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { TIMELINE_DROPPED_DATA_PROVIDERS, @@ -30,7 +29,7 @@ import { getTimeline } from '../../../objects/timeline'; import { HOSTS_URL } from '../../../urls/navigation'; import { cleanKibana, scrollToBottom } from '../../../tasks/common'; -describe('timeline data providers', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('timeline data providers', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); }); @@ -58,16 +57,20 @@ describe('timeline data providers', { tags: [tag.ESS, tag.SERVERLESS] }, () => { cy.get(TIMELINE_DATA_PROVIDERS_ACTION_MENU).should('exist'); }); - it('persists timeline when data provider is updated by dragging a field from data grid', () => { - updateDataProviderbyDraggingField('host.name', 0); - waitForTimelineChanges(); - cy.reload(); - cy.get(`${GET_TIMELINE_GRID_CELL('host.name')}`) - .first() - .then((hostname) => { - cy.get(TIMELINE_DATA_PROVIDERS_CONTAINER).contains(`host.name: "${hostname.text()}"`); - }); - }); + it.skip( + 'persists timeline when data provider is updated by dragging a field from data grid', + { tags: ['@brokenInServerless'] }, + () => { + updateDataProviderbyDraggingField('host.name', 0); + waitForTimelineChanges(); + cy.reload(); + cy.get(`${GET_TIMELINE_GRID_CELL('host.name')}`) + .first() + .then((hostname) => { + cy.get(TIMELINE_DATA_PROVIDERS_CONTAINER).contains(`host.name: "${hostname.text()}"`); + }); + } + ); it('persists timeline when a field is added by hover action "Add To Timeline" in data provider ', () => { addDataProvider({ field: 'host.name', operator: 'exists' }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/export.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/export.cy.ts index 4c58a03904855..56020248a9133 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/export.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/export.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { exportTimeline, @@ -21,7 +20,7 @@ import { createTimeline } from '../../../tasks/api_calls/timelines'; import { expectedExportedTimeline, getTimeline } from '../../../objects/timeline'; import { cleanKibana } from '../../../tasks/common'; -describe('Export timelines', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Export timelines', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); login(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/fields_browser.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/fields_browser.cy.ts index b0287d26c11ef..4806098a37d1c 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/fields_browser.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/fields_browser.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { FIELDS_BROWSER_CATEGORIES_COUNT, @@ -50,7 +49,7 @@ const defaultHeaders = [ { id: 'user.name' }, ]; -describe('Fields Browser', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Fields Browser', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/flyout_button.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/flyout_button.cy.ts index 3cfe4260f3d9d..b4138b7cf5d66 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/flyout_button.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/flyout_button.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { TIMELINE_BOTTOM_BAR_TOGGLE_BUTTON } from '../../../screens/security_main'; import { CREATE_NEW_TIMELINE, TIMELINE_FLYOUT_HEADER } from '../../../screens/timeline'; @@ -24,7 +23,7 @@ import { import { HOSTS_URL } from '../../../urls/navigation'; -describe('timeline flyout button', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('timeline flyout button', { tags: ['@ess', '@brokenInServerless'] }, () => { before(() => { cleanKibana(); }); @@ -50,7 +49,7 @@ describe('timeline flyout button', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] } it( 're-focuses the toggle button when timeline is closed by clicking the [X] close button', - { tags: tag.BROKEN_IN_SERVERLESS }, + { tags: '@brokenInServerless' }, () => { openTimelineUsingToggle(); closeTimelineUsingCloseButton(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/full_screen.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/full_screen.cy.ts index e28d12969ff99..78aeca210a4e0 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/full_screen.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/full_screen.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { TIMELINE_HEADER, TIMELINE_TABS } from '../../../screens/timeline'; import { cleanKibana } from '../../../tasks/common'; @@ -19,7 +18,7 @@ import { populateTimeline } from '../../../tasks/timeline'; import { HOSTS_URL } from '../../../urls/navigation'; -describe('Toggle full screen', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Toggle full screen', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/inspect.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/inspect.cy.ts index 9c50d534a5d10..2c468d46036aa 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/inspect.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/inspect.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { INSPECT_MODAL } from '../../../screens/inspect'; @@ -14,7 +13,7 @@ import { executeTimelineKQL, openTimelineInspectButton } from '../../../tasks/ti import { HOSTS_URL } from '../../../urls/navigation'; -describe('Inspect', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Inspect', { tags: ['@ess', '@serverless'] }, () => { context('Timeline', () => { it('inspects the timeline', () => { const hostExistsQuery = 'host.name: *'; diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/local_storage.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/local_storage.cy.ts index ad1b79de8c63f..876b288569fb9 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/local_storage.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/local_storage.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { reload } from '../../../tasks/common'; import { login, visit } from '../../../tasks/login'; @@ -14,7 +13,7 @@ import { DATAGRID_HEADERS, DATAGRID_HEADER } from '../../../screens/timeline'; import { waitsForEventsToBeLoaded } from '../../../tasks/hosts/events'; import { removeColumn } from '../../../tasks/timeline'; -describe('persistent timeline', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('persistent timeline', { tags: ['@ess', '@serverless', '@brokenInServerless'] }, () => { before(() => { login(); visit(HOSTS_URL); @@ -28,7 +27,7 @@ describe('persistent timeline', { tags: [tag.ESS, tag.SERVERLESS] }, () => { ); }); - it('persist the deletion of a column', { tags: tag.BROKEN_IN_SERVERLESS }, function () { + it('persist the deletion of a column', function () { /* For testing purposes we are going to use the message column */ const COLUMN = 'message'; diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/notes_tab.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/notes_tab.cy.ts index 2c891ea89534a..63d2ccbfb8c2e 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/notes_tab.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/notes_tab.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { getTimelineNonValidQuery } from '../../../objects/timeline'; @@ -36,7 +35,7 @@ import { TIMELINES_URL } from '../../../urls/navigation'; const text = 'system_indices_superuser'; const link = 'https://www.elastic.co/'; -describe.skip('Timeline notes tab', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe.skip('Timeline notes tab', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); login(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/open_timeline.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/open_timeline.cy.ts index bc09f0318cc83..5456a270e77bb 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/open_timeline.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/open_timeline.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { getTimeline } from '../../../objects/timeline'; @@ -36,7 +35,7 @@ import { import { TIMELINES_URL } from '../../../urls/navigation'; -describe('Open timeline', { tags: [tag.BROKEN_IN_SERVERLESS, tag.ESS] }, () => { +describe('Open timeline', { tags: ['@brokenInServerless', '@ess'] }, () => { describe('Open timeline modal', () => { before(function () { cleanKibana(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/overview.cy.tsx b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/overview.cy.tsx index ff01b83df97b1..e2673ab88cdcd 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/overview.cy.tsx +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/overview.cy.tsx @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { TIMELINES_OVERVIEW_TABLE, @@ -25,7 +24,7 @@ import { createTimeline, favoriteTimeline } from '../../../tasks/api_calls/timel import { TIMELINES_URL } from '../../../urls/navigation'; -describe('timeline overview search', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('timeline overview search', { tags: ['@ess', 'serverless'] }, () => { before(() => { cleanKibana(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/pagination.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/pagination.cy.ts index df9a9d32fa08b..a92956be8e134 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/pagination.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/pagination.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { TIMELINE_EVENT, @@ -24,7 +23,7 @@ import { populateTimeline } from '../../../tasks/timeline'; import { HOSTS_URL } from '../../../urls/navigation'; const defaultPageSize = 25; -describe('Pagination', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Pagination', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); cy.task('esArchiverLoad', 'timeline'); @@ -49,7 +48,7 @@ describe('Pagination', { tags: [tag.ESS, tag.SERVERLESS] }, () => { cy.get(TIMELINE_EVENTS_COUNT_PER_PAGE).should('contain.text', defaultPageSize); }); - it('should be able to go to next / previous page', { tags: tag.BROKEN_IN_SERVERLESS }, () => { + it('should be able to go to next / previous page', { tags: '@brokenInServerless' }, () => { cy.get(`${TIMELINE_FLYOUT} ${TIMELINE_EVENTS_COUNT_NEXT_PAGE}`).first().click(); cy.get(`${TIMELINE_FLYOUT} ${TIMELINE_EVENTS_COUNT_PREV_PAGE}`).first().click(); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/query_tab.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/query_tab.cy.ts index e4661d5e7ef20..037b03ea7e330 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/query_tab.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/query_tab.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { getTimeline } from '../../../objects/timeline'; @@ -31,7 +30,7 @@ import { import { TIMELINES_URL } from '../../../urls/navigation'; -describe.skip('Timeline query tab', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe.skip('Timeline query tab', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); login(); @@ -82,7 +81,7 @@ describe.skip('Timeline query tab', { tags: [tag.ESS, tag.SERVERLESS] }, () => { .and('match', /Unpin the event in row 2/); }); - it('should have an unlock icon', { tags: tag.BROKEN_IN_SERVERLESS }, () => { + it('should have an unlock icon', { tags: '@brokenInServerless' }, () => { cy.get(UNLOCKED_ICON).should('be.visible'); }); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/row_renderers.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/row_renderers.cy.ts index bbb54d9c0d7e4..2483f41f48b9d 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/row_renderers.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/row_renderers.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { elementsOverlap } from '../../../helpers/rules'; import { @@ -25,7 +24,7 @@ import { populateTimeline } from '../../../tasks/timeline'; import { HOSTS_URL } from '../../../urls/navigation'; -describe('Row renderers', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Row renderers', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/search_or_filter.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/search_or_filter.cy.ts index 903a9c28acaeb..6a7d8bb820d9c 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/search_or_filter.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/search_or_filter.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { ADD_FILTER, @@ -27,7 +26,7 @@ import { waitForTimelinesPanelToBeLoaded } from '../../../tasks/timelines'; import { HOSTS_URL, TIMELINES_URL } from '../../../urls/navigation'; -describe('Timeline search and filters', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('Timeline search and filters', { tags: ['@ess', '@brokenInServerless'] }, () => { before(() => { cleanKibana(); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/toggle_column.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/toggle_column.cy.ts index 76604b3fc12f2..5cdb4462839c2 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/toggle_column.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/toggle_column.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import { ID_HEADER_FIELD, TIMESTAMP_HEADER_FIELD } from '../../../screens/timeline'; import { cleanKibana } from '../../../tasks/common'; @@ -20,7 +19,7 @@ import { import { HOSTS_URL } from '../../../urls/navigation'; -describe('toggle column in timeline', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('toggle column in timeline', { tags: ['@ess', '@serverless'] }, () => { before(() => { cleanKibana(); cy.intercept('POST', '/api/timeline/_export?file_name=timelines_export.ndjson').as('export'); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/unsaved_timeline.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/unsaved_timeline.cy.ts index 5614d649531b7..4a11ec2dbb09e 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/unsaved_timeline.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/unsaved_timeline.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../../tags'; import type { Timeline } from '../../../objects/timeline'; import { @@ -34,7 +33,7 @@ import { } from '../../../tasks/timeline'; import { HOSTS_URL, MANAGE_URL } from '../../../urls/navigation'; -describe('Save Timeline Prompts', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Save Timeline Prompts', { tags: ['@ess', '@serverless', '@brokenInServerless'] }, () => { before(() => { cleanKibana(); login(); @@ -55,146 +54,114 @@ describe('Save Timeline Prompts', { tags: [tag.ESS, tag.SERVERLESS] }, () => { createNewTimeline(); }); - it( - 'unchanged & unsaved timeline should NOT prompt when user navigates away', - { tags: tag.BROKEN_IN_SERVERLESS }, - () => { - openKibanaNavigation(); - navigateFromKibanaCollapsibleTo(OBSERVABILITY_ALERTS_PAGE); - cy.url().should('not.contain', HOSTS_URL); - } - ); + it('unchanged & unsaved timeline should NOT prompt when user navigates away', () => { + openKibanaNavigation(); + navigateFromKibanaCollapsibleTo(OBSERVABILITY_ALERTS_PAGE); + cy.url().should('not.contain', HOSTS_URL); + }); - it( - 'Changed & unsaved timeline should prompt when user navigates away from security solution', - { tags: tag.BROKEN_IN_SERVERLESS }, - () => { - populateTimeline(); - waitForTimelineChanges(); - closeTimelineUsingToggle(); - openKibanaNavigation(); - navigateFromKibanaCollapsibleTo(OBSERVABILITY_ALERTS_PAGE); - cy.get(APP_LEAVE_CONFIRM_MODAL).should('be.visible'); - cy.get(MODAL_CONFIRMATION_BTN).click(); - } - ); + it('Changed & unsaved timeline should prompt when user navigates away from security solution', () => { + populateTimeline(); + waitForTimelineChanges(); + closeTimelineUsingToggle(); + openKibanaNavigation(); + navigateFromKibanaCollapsibleTo(OBSERVABILITY_ALERTS_PAGE); + cy.get(APP_LEAVE_CONFIRM_MODAL).should('be.visible'); + cy.get(MODAL_CONFIRMATION_BTN).click(); + }); - it( - 'Changed & unsaved timeline should NOT prompt when user navigates away within security solution where timelines are enabled', - { tags: tag.BROKEN_IN_SERVERLESS }, - () => { - populateTimeline(); + it('Changed & unsaved timeline should NOT prompt when user navigates away within security solution where timelines are enabled', () => { + populateTimeline(); - waitForTimelineChanges(); - closeTimelineUsingToggle(); - // navigate to any other page in security solution - openKibanaNavigation(); - cy.get(CASES_PAGE).click(); - cy.get(APP_LEAVE_CONFIRM_MODAL).should('not.exist'); - } - ); + waitForTimelineChanges(); + closeTimelineUsingToggle(); + // navigate to any other page in security solution + openKibanaNavigation(); + cy.get(CASES_PAGE).click(); + cy.get(APP_LEAVE_CONFIRM_MODAL).should('not.exist'); + }); - it( - 'Changed & unsaved timeline should prompt when user navigates away within security solution where timelines are disbaled eg. admin screen', - { tags: tag.BROKEN_IN_SERVERLESS }, - () => { - populateTimeline(); - waitForTimelineChanges(); - openKibanaNavigation(); - cy.get(MANAGE_PAGE).click(); - cy.get(APP_LEAVE_CONFIRM_MODAL).should('be.visible'); - cy.get(MODAL_CONFIRMATION_BTN).click(); - } - ); + it('Changed & unsaved timeline should prompt when user navigates away within security solution where timelines are disabled eg. admin screen', () => { + populateTimeline(); + waitForTimelineChanges(); + openKibanaNavigation(); + cy.get(MANAGE_PAGE).click(); + cy.get(APP_LEAVE_CONFIRM_MODAL).should('be.visible'); + cy.get(MODAL_CONFIRMATION_BTN).click(); + }); - it( - 'Changed & saved timeline should NOT prompt when user navigates away out of security solution', - { tags: tag.BROKEN_IN_SERVERLESS }, - () => { - populateTimeline(); - waitForTimelineChanges(); - closeTimelineUsingToggle(); - openKibanaNavigation(); - navigateFromKibanaCollapsibleTo(OBSERVABILITY_ALERTS_PAGE); - cy.get(APP_LEAVE_CONFIRM_MODAL).should('be.visible'); - cy.get(MODAL_CONFIRMATION_CANCEL_BTN).click(); - addNameAndDescriptionToTimeline( - { - title: 'Some Timeline', - description: 'Some Timeline', - } as Timeline, - true - ); - openKibanaNavigation(); - navigateFromKibanaCollapsibleTo(OBSERVABILITY_ALERTS_PAGE); - cy.url().should('not.contain', HOSTS_URL); - } - ); + it('Changed & saved timeline should NOT prompt when user navigates away out of security solution', () => { + populateTimeline(); + waitForTimelineChanges(); + closeTimelineUsingToggle(); + openKibanaNavigation(); + navigateFromKibanaCollapsibleTo(OBSERVABILITY_ALERTS_PAGE); + cy.get(APP_LEAVE_CONFIRM_MODAL).should('be.visible'); + cy.get(MODAL_CONFIRMATION_CANCEL_BTN).click(); + addNameAndDescriptionToTimeline( + { + title: 'Some Timeline', + description: 'Some Timeline', + } as Timeline, + true + ); + openKibanaNavigation(); + navigateFromKibanaCollapsibleTo(OBSERVABILITY_ALERTS_PAGE); + cy.url().should('not.contain', HOSTS_URL); + }); - it( - 'Changed & saved timeline should NOT prompt when user navigates within security solution where timelines are disabled', - { tags: tag.BROKEN_IN_SERVERLESS }, - () => { - populateTimeline(); - waitForTimelineChanges(); - closeTimelineUsingToggle(); - openKibanaNavigation(); - cy.get(MANAGE_PAGE).click(); - cy.get(APP_LEAVE_CONFIRM_MODAL).should('be.visible'); - cy.get(MODAL_CONFIRMATION_CANCEL_BTN).click(); - addNameAndDescriptionToTimeline( - { - title: 'Some Timeline', - description: 'Some Timeline', - } as Timeline, - true - ); - openKibanaNavigation(); - cy.get(MANAGE_PAGE).click(); - cy.url().should('not.contain', HOSTS_URL); - } - ); + it('Changed & saved timeline should NOT prompt when user navigates within security solution where timelines are disabled', () => { + populateTimeline(); + waitForTimelineChanges(); + closeTimelineUsingToggle(); + openKibanaNavigation(); + cy.get(MANAGE_PAGE).click(); + cy.get(APP_LEAVE_CONFIRM_MODAL).should('be.visible'); + cy.get(MODAL_CONFIRMATION_CANCEL_BTN).click(); + addNameAndDescriptionToTimeline( + { + title: 'Some Timeline', + description: 'Some Timeline', + } as Timeline, + true + ); + openKibanaNavigation(); + cy.get(MANAGE_PAGE).click(); + cy.url().should('not.contain', HOSTS_URL); + }); - it( - 'When user navigates to the page where timeline is present, Time save modal should not exists.', - { tags: tag.BROKEN_IN_SERVERLESS }, - () => { - populateTimeline(); - waitForTimelineChanges(); - closeTimelineUsingToggle(); - openKibanaNavigation(); - cy.get(MANAGE_PAGE).click(); - cy.get(APP_LEAVE_CONFIRM_MODAL).should('be.visible'); - cy.get(MODAL_CONFIRMATION_BTN).click(); + it('When user navigates to the page where timeline is present, Time save modal should not exists.', () => { + populateTimeline(); + waitForTimelineChanges(); + closeTimelineUsingToggle(); + openKibanaNavigation(); + cy.get(MANAGE_PAGE).click(); + cy.get(APP_LEAVE_CONFIRM_MODAL).should('be.visible'); + cy.get(MODAL_CONFIRMATION_BTN).click(); - // Navigate back to HOSTS_URL and ensure that - // timeline save modal is NOT present + // Navigate back to HOSTS_URL and ensure that + // timeline save modal is NOT present - openKibanaNavigation(); - cy.get(ALERTS_PAGE).click(); - cy.get(TIMELINE_SAVE_MODAL).should('not.exist'); - } - ); + openKibanaNavigation(); + cy.get(ALERTS_PAGE).click(); + cy.get(TIMELINE_SAVE_MODAL).should('not.exist'); + }); - it( - 'Changed and unsaved timeline should NOT prompt when user navigates from the page where timeline is disabled', - { tags: tag.BROKEN_IN_SERVERLESS }, - () => { - populateTimeline(); - waitForTimelineChanges(); - closeTimelineUsingToggle(); - openKibanaNavigation(); - cy.get(MANAGE_PAGE).click(); - cy.get(APP_LEAVE_CONFIRM_MODAL).should('be.visible'); - cy.get(MODAL_CONFIRMATION_BTN).click(); - // now we have come from MANAGE_PAGE where timeline is disabled - // to outside app where timeline is not present. - // There should be NO confirmation model in that case. - openKibanaNavigation(); - navigateFromKibanaCollapsibleTo(OBSERVABILITY_ALERTS_PAGE); - // should not be manage page i.e. successfull navigation - cy.get(TIMELINE_SAVE_MODAL).should('not.exist'); - cy.url().should('not.contain', MANAGE_URL); - } - ); + it('Changed and unsaved timeline should NOT prompt when user navigates from the page where timeline is disabled', () => { + populateTimeline(); + waitForTimelineChanges(); + closeTimelineUsingToggle(); + openKibanaNavigation(); + cy.get(MANAGE_PAGE).click(); + cy.get(APP_LEAVE_CONFIRM_MODAL).should('be.visible'); + cy.get(MODAL_CONFIRMATION_BTN).click(); + // now we have come from MANAGE_PAGE where timeline is disabled + // to outside app where timeline is not present. + // There should be NO confirmation model in that case. + openKibanaNavigation(); + navigateFromKibanaCollapsibleTo(OBSERVABILITY_ALERTS_PAGE); + // should not be manage page i.e. successfull navigation + cy.get(TIMELINE_SAVE_MODAL).should('not.exist'); + cy.url().should('not.contain', MANAGE_URL); + }); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/url_state.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/url_state.cy.ts index 8eed754a18600..b8195ef5cb77a 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/url_state.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/url_state.cy.ts @@ -5,7 +5,6 @@ * 2.0. */ import { encode } from '@kbn/rison'; -import { tag } from '../../../tags'; import { getTimeline } from '../../../objects/timeline'; @@ -23,7 +22,7 @@ import { login, visitWithoutDateRange, visit } from '../../../tasks/login'; import { TIMELINES_URL } from '../../../urls/navigation'; -describe('Open timeline', { tags: [tag.BROKEN_IN_SERVERLESS, tag.ESS] }, () => { +describe('Open timeline', { tags: ['@brokenInServerless', '@ess'] }, () => { let timelineSavedObjectId: string | null = null; before(function () { cleanKibana(); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/ml/ml_conditional_links.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/ml/ml_conditional_links.cy.ts index 11ae0be3373e1..69e2a5732befb 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/ml/ml_conditional_links.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/ml/ml_conditional_links.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../tags'; import { KQL_INPUT } from '../../screens/security_header'; @@ -26,7 +25,7 @@ import { mlNetworkSingleIpNullKqlQuery, } from '../../urls/ml_conditional_links'; -describe('ml conditional links', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('ml conditional links', { tags: ['@ess', '@brokenInServerless'] }, () => { beforeEach(() => { login(); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/overview/cti_link_panel.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/overview/cti_link_panel.cy.ts index f8044b318c76e..fd41df836216d 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/overview/cti_link_panel.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/overview/cti_link_panel.cy.ts @@ -4,7 +4,6 @@ * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ -import { tag } from '../../tags'; import { OVERVIEW_CTI_ENABLE_MODULE_BUTTON, @@ -16,7 +15,7 @@ import { import { login, visit } from '../../tasks/login'; import { OVERVIEW_URL } from '../../urls/navigation'; -describe('CTI Link Panel', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('CTI Link Panel', { tags: ['@ess', '@serverless'] }, () => { beforeEach(() => { login(); }); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/urls/compatibility.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/urls/compatibility.cy.ts index 990e960011b32..fc08070266dcb 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/urls/compatibility.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/urls/compatibility.cy.ts @@ -5,7 +5,6 @@ * 2.0. */ import { ROLES } from '@kbn/security-solution-plugin/common/test'; -import { tag } from '../../tags'; import { login, visit, visitWithoutDateRange } from '../../tasks/login'; @@ -35,7 +34,7 @@ const ABSOLUTE_DATE = { const RULE_ID = '5a4a0460-d822-11eb-8962-bfd4aff0a9b3'; -describe('URL compatibility', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('URL compatibility', { tags: ['@ess', '@brokenInServerless'] }, () => { beforeEach(() => { login(ROLES.platform_engineer); visit(SECURITY_DETECTIONS_URL); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/urls/not_found.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/urls/not_found.cy.ts index 0a5ca24b510df..fc1e08db5512e 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/urls/not_found.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/urls/not_found.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../tags'; - import { login, visit } from '../../tasks/login'; import { @@ -26,7 +24,7 @@ import { NOT_FOUND } from '../../screens/common/page'; const mockRuleId = '5a4a0460-d822-11eb-8962-bfd4aff0a9b3'; -describe('Display not found page', { tags: [tag.ESS, tag.SERVERLESS] }, () => { +describe('Display not found page', { tags: ['@ess', '@serverless'] }, () => { beforeEach(() => { login(); visit(TIMELINES_URL); diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/urls/state.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/urls/state.cy.ts index 8b6a6c2587be4..dc7b651084fc8 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/urls/state.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/urls/state.cy.ts @@ -5,8 +5,6 @@ * 2.0. */ -import { tag } from '../../tags'; - import { DATE_PICKER_APPLY_BUTTON_TIMELINE, DATE_PICKER_END_DATE_POPOVER_BUTTON, @@ -72,7 +70,7 @@ const ABSOLUTE_DATE = { firefoxStartTimeTyped: '2019-08-01T14:33:29', }; -describe('url state', { tags: [tag.ESS, tag.BROKEN_IN_SERVERLESS] }, () => { +describe('url state', { tags: ['@ess', '@brokenInServerless'] }, () => { beforeEach(() => { login(); }); diff --git a/x-pack/test/security_solution_cypress/cypress/screens/alerts_detection_rules.ts b/x-pack/test/security_solution_cypress/cypress/screens/alerts_detection_rules.ts index ab5a2697d4be4..1ae1ed9d95dbb 100644 --- a/x-pack/test/security_solution_cypress/cypress/screens/alerts_detection_rules.ts +++ b/x-pack/test/security_solution_cypress/cypress/screens/alerts_detection_rules.ts @@ -63,9 +63,6 @@ export const UPGRADE_SELECTED_RULES_BUTTON = '[data-test-subj="upgradeSelectedRu export const GO_BACK_TO_RULES_TABLE_BUTTON = '[data-test-subj="addRulesGoBackToRulesTableBtn"]'; -export const RULES_TABLE_INITIAL_LOADING_INDICATOR = - '[data-test-subj="initialLoadingPanelAllRulesTable"]'; - export const RULES_TABLE_REFRESH_INDICATOR = '[data-test-subj="loading-spinner"]'; export const RULES_TABLE_AUTOREFRESH_INDICATOR = '[data-test-subj="loadingRulesInfoProgress"]'; diff --git a/x-pack/test/security_solution_cypress/cypress/screens/common/page.ts b/x-pack/test/security_solution_cypress/cypress/screens/common/page.ts index f81d5543b830f..eb5b384ddf521 100644 --- a/x-pack/test/security_solution_cypress/cypress/screens/common/page.ts +++ b/x-pack/test/security_solution_cypress/cypress/screens/common/page.ts @@ -10,3 +10,5 @@ export const PAGE_TITLE = '[data-test-subj="header-page-title"]'; export const NOT_FOUND = '[data-test-subj="notFoundPage"]'; export const LOADING_SPINNER = '.euiLoadingSpinner'; + +export const PAGE_CONTENT_SPINNER = `[data-test-subj="pageContainer"] ${LOADING_SPINNER}`; diff --git a/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_left_panel_correlations_tab.ts b/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_left_panel_correlations_tab.ts index 2e01659976b1e..e63d6f0b72a83 100644 --- a/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_left_panel_correlations_tab.ts +++ b/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_left_panel_correlations_tab.ts @@ -8,33 +8,70 @@ import { INSIGHTS_TAB_CORRELATIONS_BUTTON_TEST_ID } from '@kbn/security-solution-plugin/public/flyout/left/tabs/test_ids'; import { CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TEST_ID, - CORRELATIONS_DETAILS_BY_ANCESTRY_TABLE_TEST_ID, CORRELATIONS_DETAILS_BY_SESSION_SECTION_TEST_ID, CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TEST_ID, CORRELATIONS_DETAILS_CASES_SECTION_TEST_ID, + CORRELATIONS_DETAILS_SUPPRESSED_ALERTS_SECTION_TEST_ID, } from '@kbn/security-solution-plugin/public/flyout/left/components/test_ids'; +import { EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID } from '@kbn/security-solution-plugin/public/flyout/shared/components/test_ids'; import { getDataTestSubjectSelector } from '../../helpers/common'; export const DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_CORRELATIONS_BUTTON = getDataTestSubjectSelector( INSIGHTS_TAB_CORRELATIONS_BUTTON_TEST_ID ); -export const CORRELATIONS_ANCESTRY_SECTION = getDataTestSubjectSelector( - CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TEST_ID +export const CORRELATIONS_ANCESTRY_SECTION_TITLE = getDataTestSubjectSelector( + EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID(CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TEST_ID) ); -export const CORRELATIONS_SOURCE_SECTION = getDataTestSubjectSelector( - CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TEST_ID +export const CORRELATIONS_ANCESTRY_SECTION_TABLE = getDataTestSubjectSelector( + `${CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TEST_ID}Table` ); -export const CORRELATIONS_SESSION_SECTION = getDataTestSubjectSelector( - CORRELATIONS_DETAILS_BY_SESSION_SECTION_TEST_ID +export const CORRELATIONS_ANCESTRY_SECTION_INVESTIGATE_IN_TIMELINE_BUTTON = + getDataTestSubjectSelector( + `${CORRELATIONS_DETAILS_BY_ANCESTRY_SECTION_TEST_ID}InvestigateInTimeline` + ); + +export const CORRELATIONS_SOURCE_SECTION_TITLE = getDataTestSubjectSelector( + EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID(CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TEST_ID) +); + +export const CORRELATIONS_SOURCE_SECTION_TABLE = getDataTestSubjectSelector( + `${CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TEST_ID}Table` +); + +export const CORRELATIONS_SOURCE_SECTION_INVESTIGATE_IN_TIMELINE_BUTTON = + getDataTestSubjectSelector( + `${CORRELATIONS_DETAILS_BY_SOURCE_SECTION_TEST_ID}InvestigateInTimeline` + ); + +export const CORRELATIONS_SESSION_SECTION_TITLE = getDataTestSubjectSelector( + EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID(CORRELATIONS_DETAILS_BY_SESSION_SECTION_TEST_ID) ); -export const CORRELATIONS_CASES_SECTION = getDataTestSubjectSelector( - CORRELATIONS_DETAILS_CASES_SECTION_TEST_ID +export const CORRELATIONS_SESSION_SECTION_TABLE = getDataTestSubjectSelector( + `${CORRELATIONS_DETAILS_BY_SESSION_SECTION_TEST_ID}Table` ); -export const CORRELATIONS_ANCESTRY_TABLE = getDataTestSubjectSelector( - CORRELATIONS_DETAILS_BY_ANCESTRY_TABLE_TEST_ID +export const CORRELATIONS_SESSION_SECTION_INVESTIGATE_IN_TIMELINE_BUTTON = + getDataTestSubjectSelector( + `${CORRELATIONS_DETAILS_BY_SESSION_SECTION_TEST_ID}InvestigateInTimeline` + ); + +export const CORRELATIONS_CASES_SECTION_TITLE = getDataTestSubjectSelector( + EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID(CORRELATIONS_DETAILS_CASES_SECTION_TEST_ID) +); + +export const CORRELATIONS_CASES_SECTION_TABLE = getDataTestSubjectSelector( + `${CORRELATIONS_DETAILS_CASES_SECTION_TEST_ID}Table` ); + +export const CORRELATIONS_SUPPRESSED_ALERTS_TITLE = getDataTestSubjectSelector( + EXPANDABLE_PANEL_HEADER_TITLE_TEXT_TEST_ID(CORRELATIONS_DETAILS_SUPPRESSED_ALERTS_SECTION_TEST_ID) +); + +export const CORRELATIONS_SUPPRESSED_ALERTS_INVESTIGATE_IN_TIMELINE_BUTTON = + getDataTestSubjectSelector( + `${CORRELATIONS_DETAILS_SUPPRESSED_ALERTS_SECTION_TEST_ID}InvestigateInTimeline` + ); diff --git a/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_left_panel_entities_tab.ts b/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_left_panel_entities_tab.ts index 20e8940aa5488..5374943cce29c 100644 --- a/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_left_panel_entities_tab.ts +++ b/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_left_panel_entities_tab.ts @@ -11,6 +11,7 @@ import { USER_DETAILS_TEST_ID, } from '@kbn/security-solution-plugin/public/flyout/left/components/test_ids'; import { INSIGHTS_TAB_ENTITIES_BUTTON_TEST_ID } from '@kbn/security-solution-plugin/public/flyout/left/tabs/test_ids'; +import { EXPANDABLE_PANEL_CONTENT_TEST_ID } from '@kbn/security-solution-plugin/public/flyout/shared/components/test_ids'; import { getDataTestSubjectSelector } from '../../helpers/common'; export const DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_ENTITIES_BUTTON = getDataTestSubjectSelector( @@ -19,7 +20,9 @@ export const DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_ENTITIES_BUTTON = getDataTestS export const DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_ENTITIES_CONTENT = getDataTestSubjectSelector(ENTITIES_DETAILS_TEST_ID); -export const DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_USER_DETAILS = - getDataTestSubjectSelector(USER_DETAILS_TEST_ID); -export const DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_HOST_DETAILS = - getDataTestSubjectSelector(HOST_DETAILS_TEST_ID); +export const DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_USER_DETAILS = getDataTestSubjectSelector( + EXPANDABLE_PANEL_CONTENT_TEST_ID(USER_DETAILS_TEST_ID) +); +export const DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_HOST_DETAILS = getDataTestSubjectSelector( + EXPANDABLE_PANEL_CONTENT_TEST_ID(HOST_DETAILS_TEST_ID) +); diff --git a/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_left_panel_prevalence_tab.ts b/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_left_panel_prevalence_tab.ts index 0b343d4375233..5ba9a8fafed98 100644 --- a/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_left_panel_prevalence_tab.ts +++ b/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_left_panel_prevalence_tab.ts @@ -9,10 +9,11 @@ import { PREVALENCE_DETAILS_TABLE_ALERT_COUNT_CELL_TEST_ID, PREVALENCE_DETAILS_TABLE_DOC_COUNT_CELL_TEST_ID, PREVALENCE_DETAILS_TABLE_HOST_PREVALENCE_CELL_TEST_ID, - PREVALENCE_DETAILS_TABLE_NAME_CELL_TEST_ID, + PREVALENCE_DETAILS_TABLE_VALUE_CELL_TEST_ID, PREVALENCE_DETAILS_TABLE_TEST_ID, - PREVALENCE_DETAILS_TABLE_TYPE_CELL_TEST_ID, + PREVALENCE_DETAILS_TABLE_FIELD_CELL_TEST_ID, PREVALENCE_DETAILS_TABLE_USER_PREVALENCE_CELL_TEST_ID, + PREVALENCE_DETAILS_DATE_PICKER_TEST_ID, } from '@kbn/security-solution-plugin/public/flyout/left/components/test_ids'; import { INSIGHTS_TAB_PREVALENCE_BUTTON_TEST_ID } from '@kbn/security-solution-plugin/public/flyout/left/tabs/test_ids'; import { getDataTestSubjectSelector } from '../../helpers/common'; @@ -20,13 +21,15 @@ import { getDataTestSubjectSelector } from '../../helpers/common'; export const DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_PREVALENCE_BUTTON = getDataTestSubjectSelector( INSIGHTS_TAB_PREVALENCE_BUTTON_TEST_ID ); +export const DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_PREVALENCE_DATE_PICKER = + getDataTestSubjectSelector(PREVALENCE_DETAILS_DATE_PICKER_TEST_ID); export const DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_PREVALENCE_TABLE = getDataTestSubjectSelector( PREVALENCE_DETAILS_TABLE_TEST_ID ); export const DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_PREVALENCE_TABLE_TYPE_CELL = - getDataTestSubjectSelector(PREVALENCE_DETAILS_TABLE_TYPE_CELL_TEST_ID); + getDataTestSubjectSelector(PREVALENCE_DETAILS_TABLE_FIELD_CELL_TEST_ID); export const DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_PREVALENCE_TABLE_NAME_CELL = - getDataTestSubjectSelector(PREVALENCE_DETAILS_TABLE_NAME_CELL_TEST_ID); + getDataTestSubjectSelector(PREVALENCE_DETAILS_TABLE_VALUE_CELL_TEST_ID); export const DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_PREVALENCE_TABLE_ALERT_COUNT_CELL = getDataTestSubjectSelector(PREVALENCE_DETAILS_TABLE_ALERT_COUNT_CELL_TEST_ID); export const DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_PREVALENCE_TABLE_DOC_COUNT_CELL = diff --git a/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_right_panel_json_tab.ts b/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_right_panel_json_tab.ts index f3cd1a262b281..62fb75d4b82e0 100644 --- a/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_right_panel_json_tab.ts +++ b/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_right_panel_json_tab.ts @@ -6,7 +6,10 @@ */ import { JSON_TAB_CONTENT_TEST_ID } from '@kbn/security-solution-plugin/public/flyout/right/tabs/test_ids'; +import { RIGHT_SECTION } from '@kbn/expandable-flyout/src/components/test_ids'; import { getDataTestSubjectSelector } from '../../helpers/common'; +export const DOCUMENT_DETAILS_FLYOUT_RIGHT_PANEL_CONTENT = + getDataTestSubjectSelector(RIGHT_SECTION); export const DOCUMENT_DETAILS_FLYOUT_JSON_TAB_CONTENT = getDataTestSubjectSelector(JSON_TAB_CONTENT_TEST_ID); diff --git a/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_right_panel_overview_tab.ts b/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_right_panel_overview_tab.ts index ebfb40a3091f5..7cf96daca6f0c 100644 --- a/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_right_panel_overview_tab.ts +++ b/x-pack/test/security_solution_cypress/cypress/screens/expandable_flyout/alert_details_right_panel_overview_tab.ts @@ -5,6 +5,10 @@ * 2.0. */ +import { + EXPANDABLE_PANEL_CONTENT_TEST_ID, + EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID, +} from '@kbn/security-solution-plugin/public/flyout/shared/components/test_ids'; import { ABOUT_SECTION_CONTENT_TEST_ID, ABOUT_SECTION_HEADER_TEST_ID, @@ -13,10 +17,7 @@ import { RULE_SUMMARY_BUTTON_TEST_ID, HIGHLIGHTED_FIELDS_DETAILS_TEST_ID, HIGHLIGHTED_FIELDS_TITLE_TEST_ID, - INSIGHTS_CORRELATIONS_CONTENT_TEST_ID, INSIGHTS_HEADER_TEST_ID, - INSIGHTS_PREVALENCE_CONTENT_TEST_ID, - INSIGHTS_THREAT_INTELLIGENCE_CONTENT_TEST_ID, INVESTIGATION_GUIDE_BUTTON_TEST_ID, INVESTIGATION_SECTION_CONTENT_TEST_ID, INVESTIGATION_SECTION_HEADER_TEST_ID, @@ -28,17 +29,19 @@ import { HIGHLIGHTED_FIELDS_CELL_TEST_ID, RESPONSE_SECTION_HEADER_TEST_ID, RESPONSE_EMPTY_TEST_ID, - INSIGHTS_ENTITIES_TITLE_LINK_TEST_ID, - INSIGHTS_ENTITIES_CONTENT_TEST_ID, - INSIGHTS_THREAT_INTELLIGENCE_TITLE_LINK_TEST_ID, - INSIGHTS_CORRELATIONS_TITLE_LINK_TEST_ID, - INSIGHTS_PREVALENCE_TITLE_LINK_TEST_ID, - INSIGHTS_THREAT_INTELLIGENCE_VALUE_TEST_ID, - INSIGHTS_CORRELATIONS_VALUE_TEST_ID, - ANALYZER_PREVIEW_CONTENT_TEST_ID, - SESSION_PREVIEW_CONTENT_TEST_ID, - INSIGHTS_PREVALENCE_VALUE_TEST_ID, + INSIGHTS_THREAT_INTELLIGENCE_TEST_ID, + INSIGHTS_CORRELATIONS_TEST_ID, + INSIGHTS_PREVALENCE_TEST_ID, + SUMMARY_ROW_VALUE_TEST_ID, + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_ANCESTRY_TEST_ID, + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SAME_SOURCE_EVENT_TEST_ID, + INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SESSION_TEST_ID, + INSIGHTS_CORRELATIONS_RELATED_CASES_TEST_ID, + INSIGHTS_CORRELATIONS_SUPPRESSED_ALERTS_TEST_ID, + INSIGHTS_ENTITIES_TEST_ID, REASON_DETAILS_PREVIEW_BUTTON_TEST_ID, + ANALYZER_PREVIEW_TEST_ID, + SESSION_PREVIEW_TEST_ID, } from '@kbn/security-solution-plugin/public/flyout/right/components/test_ids'; import { getDataTestSubjectSelector } from '../../helpers/common'; @@ -95,45 +98,71 @@ export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_SECTION_HEADER = /* Insights Entities */ export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_ENTITIES_HEADER = - getDataTestSubjectSelector(INSIGHTS_ENTITIES_TITLE_LINK_TEST_ID); + getDataTestSubjectSelector(EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID(INSIGHTS_ENTITIES_TEST_ID)); export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_ENTITIES_CONTENT = - getDataTestSubjectSelector(INSIGHTS_ENTITIES_CONTENT_TEST_ID); + getDataTestSubjectSelector(EXPANDABLE_PANEL_CONTENT_TEST_ID(INSIGHTS_ENTITIES_TEST_ID)); /* Insights Threat Intelligence */ export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_THREAT_INTELLIGENCE_HEADER = - getDataTestSubjectSelector(INSIGHTS_THREAT_INTELLIGENCE_TITLE_LINK_TEST_ID); + getDataTestSubjectSelector( + EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID(INSIGHTS_THREAT_INTELLIGENCE_TEST_ID) + ); export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_THREAT_INTELLIGENCE_CONTENT = - getDataTestSubjectSelector(INSIGHTS_THREAT_INTELLIGENCE_CONTENT_TEST_ID); + getDataTestSubjectSelector( + EXPANDABLE_PANEL_CONTENT_TEST_ID(INSIGHTS_THREAT_INTELLIGENCE_TEST_ID) + ); export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_THREAT_INTELLIGENCE_VALUES = - getDataTestSubjectSelector(INSIGHTS_THREAT_INTELLIGENCE_VALUE_TEST_ID); + getDataTestSubjectSelector(SUMMARY_ROW_VALUE_TEST_ID(INSIGHTS_THREAT_INTELLIGENCE_TEST_ID)); /* Insights Correlations */ export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_HEADER = - getDataTestSubjectSelector(INSIGHTS_CORRELATIONS_TITLE_LINK_TEST_ID); + getDataTestSubjectSelector( + EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID(INSIGHTS_CORRELATIONS_TEST_ID) + ); export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_CONTENT = - getDataTestSubjectSelector(INSIGHTS_CORRELATIONS_CONTENT_TEST_ID); -export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_VALUES = - getDataTestSubjectSelector(INSIGHTS_CORRELATIONS_VALUE_TEST_ID); + getDataTestSubjectSelector(EXPANDABLE_PANEL_CONTENT_TEST_ID(INSIGHTS_CORRELATIONS_TEST_ID)); +export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_VALUES_SUPPRESSED_ALERTS = + getDataTestSubjectSelector( + SUMMARY_ROW_VALUE_TEST_ID(INSIGHTS_CORRELATIONS_SUPPRESSED_ALERTS_TEST_ID) + ); +export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_VALUES_RELATED_ALERTS_BY_ANCESTRY = + getDataTestSubjectSelector( + SUMMARY_ROW_VALUE_TEST_ID(INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_ANCESTRY_TEST_ID) + ); +export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_VALUES_RELATED_ALERTS_BY_SAME_SOURCE_EVENT = + getDataTestSubjectSelector( + SUMMARY_ROW_VALUE_TEST_ID(INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SAME_SOURCE_EVENT_TEST_ID) + ); +export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_VALUES_RELATED_ALERTS_BY_SESSION = + getDataTestSubjectSelector( + SUMMARY_ROW_VALUE_TEST_ID(INSIGHTS_CORRELATIONS_RELATED_ALERTS_BY_SESSION_TEST_ID) + ); +export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_CORRELATIONS_VALUES_RELATED_CASES = + getDataTestSubjectSelector( + SUMMARY_ROW_VALUE_TEST_ID(INSIGHTS_CORRELATIONS_RELATED_CASES_TEST_ID) + ); /* Insights Prevalence */ export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_PREVALENCE_HEADER = - getDataTestSubjectSelector(INSIGHTS_PREVALENCE_TITLE_LINK_TEST_ID); + getDataTestSubjectSelector( + EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID(INSIGHTS_PREVALENCE_TEST_ID) + ); export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_PREVALENCE_CONTENT = - getDataTestSubjectSelector(INSIGHTS_PREVALENCE_CONTENT_TEST_ID); + getDataTestSubjectSelector(EXPANDABLE_PANEL_CONTENT_TEST_ID(INSIGHTS_PREVALENCE_TEST_ID)); export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_INSIGHTS_PREVALENCE_VALUES = - getDataTestSubjectSelector(INSIGHTS_PREVALENCE_VALUE_TEST_ID); + getDataTestSubjectSelector(INSIGHTS_PREVALENCE_TEST_ID); /* Visualization section */ export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_VISUALIZATIONS_SECTION_HEADER = getDataTestSubjectSelector(VISUALIZATIONS_SECTION_HEADER_TEST_ID); -export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_ANALYZER_PREVIEW_CONTENT = - getDataTestSubjectSelector(ANALYZER_PREVIEW_CONTENT_TEST_ID); -export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_SESSION_PREVIEW_CONTENT = - getDataTestSubjectSelector(SESSION_PREVIEW_CONTENT_TEST_ID); +export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_ANALYZER_PREVIEW_CONTAINER = + getDataTestSubjectSelector(EXPANDABLE_PANEL_CONTENT_TEST_ID(ANALYZER_PREVIEW_TEST_ID)); +export const DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_SESSION_PREVIEW_CONTAINER = + getDataTestSubjectSelector(EXPANDABLE_PANEL_CONTENT_TEST_ID(SESSION_PREVIEW_TEST_ID)); /* Response section */ diff --git a/x-pack/test/security_solution_cypress/cypress/screens/rule_details.ts b/x-pack/test/security_solution_cypress/cypress/screens/rule_details.ts index 057ff0ab16a2a..97149957448b6 100644 --- a/x-pack/test/security_solution_cypress/cypress/screens/rule_details.ts +++ b/x-pack/test/security_solution_cypress/cypress/screens/rule_details.ts @@ -5,7 +5,8 @@ * 2.0. */ -export const ALL_ACTIONS = '[data-test-subj="rules-details-popover-button-icon"]'; +export const POPOVER_ACTIONS_TRIGGER_BUTTON = + '[data-test-subj="rules-details-popover-button-icon"]'; export const ABOUT_INVESTIGATION_NOTES = '[data-test-subj="stepAboutDetailsNoteContent"]'; diff --git a/x-pack/test/security_solution_cypress/cypress/tasks/alerts_detection_rules.ts b/x-pack/test/security_solution_cypress/cypress/tasks/alerts_detection_rules.ts index 6604cdfe1ba90..3170084e39778 100644 --- a/x-pack/test/security_solution_cypress/cypress/tasks/alerts_detection_rules.ts +++ b/x-pack/test/security_solution_cypress/cypress/tasks/alerts_detection_rules.ts @@ -11,8 +11,6 @@ import { CUSTOM_RULES_BTN, DELETE_RULE_ACTION_BTN, RULES_SELECTED_TAG, - RULES_TABLE_INITIAL_LOADING_INDICATOR, - RULE_CHECKBOX, RULE_NAME, RULE_SWITCH, RULE_SWITCH_LOADER, @@ -56,16 +54,20 @@ import { ADD_ELASTIC_RULES_EMPTY_PROMPT_BTN, CONFIRM_DELETE_RULE_BTN, AUTO_REFRESH_POPOVER_TRIGGER_BUTTON, + SELECT_ALL_RULES_ON_PAGE_CHECKBOX, } from '../screens/alerts_detection_rules'; import type { RULES_MONITORING_TABLE } from '../screens/alerts_detection_rules'; import { EUI_CHECKBOX } from '../screens/common/controls'; -import { ALL_ACTIONS } from '../screens/rule_details'; +import { POPOVER_ACTIONS_TRIGGER_BUTTON, RULE_NAME_HEADER } from '../screens/rule_details'; import { EDIT_SUBMIT_BUTTON } from '../screens/edit_rule'; import { LOADING_INDICATOR } from '../screens/security_header'; +import { PAGE_CONTENT_SPINNER } from '../screens/common/page'; import { goToRuleEditSettings } from './rule_details'; import { goToActionsStepTab } from './create_new_rule'; +export const getRulesManagementTableRows = () => cy.get(RULES_MANAGEMENT_TABLE).find(RULES_ROW); + export const enableRule = (rulePosition: number) => { cy.get(RULE_SWITCH).eq(rulePosition).click(); }; @@ -93,7 +95,7 @@ export const duplicateFirstRule = () => { */ export const duplicateRuleFromMenu = () => { cy.get(LOADING_INDICATOR).should('not.exist'); - cy.get(ALL_ACTIONS).click({ force: true }); + cy.get(POPOVER_ACTIONS_TRIGGER_BUTTON).click({ force: true }); cy.get(DUPLICATE_RULE_MENU_PANEL_BTN).should('be.visible'); // Because of a fade effect and fast clicking this can produce more than one click @@ -119,15 +121,7 @@ export const deleteFirstRule = () => { }; export const deleteRuleFromDetailsPage = () => { - cy.get(ALL_ACTIONS).should('be.visible'); - // We cannot use cy.root().pipe($el) withing this function and instead have to use a cy.wait() - // for the click handler to be registered. If you see flake here because of click handler issues - // increase the cy.wait(). The reason we cannot use cypress pipe is because multiple clicks on ALL_ACTIONS - // causes the pop up to show and then the next click for it to hide. Multiple clicks can cause - // the DOM to queue up and once we detect that the element is visible it can then become invisible later - // eslint-disable-next-line cypress/no-unnecessary-waiting - cy.wait(1000); - cy.get(ALL_ACTIONS).click(); + cy.get(POPOVER_ACTIONS_TRIGGER_BUTTON).click(); cy.get(RULE_DETAILS_DELETE_BTN).click(); cy.get(RULE_DETAILS_DELETE_BTN).should('not.exist'); cy.get(CONFIRM_DELETE_RULE_BTN).click(); @@ -185,48 +179,34 @@ export const filterByDisabledRules = () => { cy.get(DISABLED_RULES_BTN).click(); }; +/** + * @deprecated use goToTheRuleDetailsOf + */ export const goToRuleDetails = () => { cy.get(RULE_NAME).first().click(); }; export const goToTheRuleDetailsOf = (ruleName: string) => { cy.contains(RULE_NAME, ruleName).click(); + + cy.get(PAGE_CONTENT_SPINNER).should('be.visible'); + cy.contains(RULE_NAME_HEADER, ruleName).should('be.visible'); + cy.get(PAGE_CONTENT_SPINNER).should('not.exist'); }; export const openIntegrationsPopover = () => { cy.get(INTEGRATIONS_POPOVER).click(); }; -/** - * Selects the number of rules. Since there can be missing click handlers - * when the page loads at first, we use a pipe and a trigger of click - * on it and then check to ensure that it is checked before continuing - * with the tests. - * @param numberOfRules The number of rules to click/check - */ -export const selectNumberOfRules = (numberOfRules: number) => { - for (let i = 0; i < numberOfRules; i++) { - cy.get(RULE_CHECKBOX).eq(i).check(); - cy.get(RULE_CHECKBOX).eq(i).should('be.checked'); +export const selectRulesByName = (ruleNames: Readonly<string[]>) => { + for (const ruleName of ruleNames) { + selectRuleByName(ruleName); } }; -export const unselectRuleByName = (ruleName: string) => { - cy.contains(RULE_NAME, ruleName).parents(RULES_ROW).find(EUI_CHECKBOX).uncheck(); - cy.contains(RULE_NAME, ruleName).parents(RULES_ROW).find(EUI_CHECKBOX).should('not.be.checked'); -}; - -/** - * Unselects a passed number of rules. To use together with selectNumberOfRules - * as this utility will expect and check the passed number of rules - * to have been previously checked. - * @param numberOfRules The number of rules to click/check - */ -export const unselectNumberOfRules = (numberOfRules: number) => { - for (let i = 0; i < numberOfRules; i++) { - cy.get(RULE_CHECKBOX).eq(i).should('be.checked'); - cy.get(RULE_CHECKBOX).eq(i).uncheck(); - cy.get(RULE_CHECKBOX).eq(i).should('not.be.checked'); +export const unselectRulesByName = (ruleNames: Readonly<string[]>) => { + for (const ruleName of ruleNames) { + unselectRuleByName(ruleName); } }; @@ -236,6 +216,12 @@ export const selectAllRules = () => { cy.get(SELECT_ALL_RULES_BTN).contains('Clear'); }; +export const selectAllRulesOnPage = () => { + cy.log('Select all rules on page'); + cy.get(SELECT_ALL_RULES_ON_PAGE_CHECKBOX).check(); + cy.get(SELECT_ALL_RULES_ON_PAGE_CHECKBOX).should('be.checked'); +}; + export const clearAllRuleSelection = () => { cy.log('Clear all rules selection'); cy.get(SELECT_ALL_RULES_BTN).contains('Clear').click(); @@ -266,21 +252,6 @@ export const waitForRulesTableToShow = () => { cy.get(RULES_MANAGEMENT_TABLE, { timeout: 300000 }).should('exist'); }; -/** - * Because the Rule Management page is relatively slow, in order to avoid timeouts and flakiness, - * we almost always want to wait until the Rules table is "loaded" before we do anything with it. - * - * This task can be needed for some tests that e.g. check the table load/refetch/pagination logic. - * It waits for the table's own loading indicator to show up and disappear. - * - * NOTE: Normally, we should not rely on loading indicators in tests, because due to their - * dynamic nature it's possible to introduce race conditions and flakiness. - */ -export const waitForRulesTableToBeLoaded = () => { - // Wait up to 5 minutes for the rules to load as in CI containers this can be very slow - cy.get(RULES_TABLE_INITIAL_LOADING_INDICATOR, { timeout: 300000 }).should('not.exist'); -}; - export const waitForRulesTableToBeRefreshed = () => { cy.get(RULES_TABLE_REFRESH_INDICATOR).should('exist'); cy.get(RULES_TABLE_REFRESH_INDICATOR).should('not.exist'); @@ -523,3 +494,19 @@ export const goToEditRuleActionsSettingsOf = (name: string) => { cy.get(EDIT_SUBMIT_BUTTON).should('be.enabled'); goToActionsStepTab(); }; + +export const getRuleRow = (ruleName: string) => cy.contains(RULE_NAME, ruleName).parents(RULES_ROW); + +const selectRuleByName = (ruleName: string) => { + cy.log(`Select rule "${ruleName}"`); + getRuleRow(ruleName).find(EUI_CHECKBOX).check(); + cy.log(`Make sure rule "${ruleName}" has been selected`); + getRuleRow(ruleName).find(EUI_CHECKBOX).should('be.checked'); +}; + +const unselectRuleByName = (ruleName: string) => { + cy.log(`Unselect rule "${ruleName}"`); + getRuleRow(ruleName).find(EUI_CHECKBOX).uncheck(); + cy.log(`Make sure rule "${ruleName}" has been unselected`); + getRuleRow(ruleName).find(EUI_CHECKBOX).should('not.be.checked'); +}; diff --git a/x-pack/test/security_solution_cypress/cypress/tasks/api_calls/prebuilt_rules.ts b/x-pack/test/security_solution_cypress/cypress/tasks/api_calls/prebuilt_rules.ts index c11c1afb01404..756a5f25d540c 100644 --- a/x-pack/test/security_solution_cypress/cypress/tasks/api_calls/prebuilt_rules.ts +++ b/x-pack/test/security_solution_cypress/cypress/tasks/api_calls/prebuilt_rules.ts @@ -14,7 +14,11 @@ export const getPrebuiltRulesStatus = () => { return cy.request<PrePackagedRulesStatusResponse>({ method: 'GET', url: 'api/detection_engine/rules/prepackaged/_status', - headers: { 'kbn-xsrf': 'cypress-creds', 'x-elastic-internal-origin': 'security-solution' }, + headers: { + 'kbn-xsrf': 'cypress-creds', + 'x-elastic-internal-origin': 'security-solution', + 'elastic-api-version': '2023-10-31', + }, }); }; @@ -34,7 +38,11 @@ export const installAllPrebuiltRulesRequest = () => { return cy.request({ method: 'POST', url: 'internal/detection_engine/prebuilt_rules/installation/_perform', - headers: { 'kbn-xsrf': 'cypress-creds', 'x-elastic-internal-origin': 'security-solution' }, + headers: { + 'kbn-xsrf': 'cypress-creds', + 'x-elastic-internal-origin': 'security-solution', + 'elastic-api-version': '1', + }, body: { mode: 'ALL_RULES', }, @@ -74,45 +82,6 @@ export const excessivelyInstallAllPrebuiltRules = () => { installAllPrebuiltRulesRequest(); }; -export const waitUntilAllRuleAssetsCreated = ( - rules: Array<typeof SAMPLE_PREBUILT_RULE>, - index = '.kibana_security_solution' -) => - cy.waitUntil( - () => { - return cy - .request({ - method: 'GET', - url: `${Cypress.env('ELASTICSEARCH_URL')}/${index}/_search`, - headers: { - 'kbn-xsrf': 'cypress-creds', - 'x-elastic-internal-origin': 'security-solution', - 'Content-Type': 'application/json', - }, - failOnStatusCode: false, - body: { - query: { - match: { - type: 'security-rule', - }, - }, - }, - }) - .then((response) => { - const areAllRulesCreated = rules.every((rule) => - // Checking that all the expected rules are stored in ES - response.body.hits.hits.some( - (storedRule: { _source: typeof SAMPLE_PREBUILT_RULE }) => - storedRule._source['security-rule'].rule_id === rule['security-rule'].rule_id - ) - ); - - return areAllRulesCreated; - }); - }, - { interval: 500, timeout: 12000 } - ); - export const createNewRuleAsset = ({ index = '.kibana_security_solution', rule = SAMPLE_PREBUILT_RULE, @@ -122,7 +91,7 @@ export const createNewRuleAsset = ({ }) => { const url = `${Cypress.env('ELASTICSEARCH_URL')}/${index}/_doc/security-rule:${ rule['security-rule'].rule_id - }`; + }?refresh`; cy.log('URL', url); cy.waitUntil( () => { @@ -168,7 +137,7 @@ export const bulkCreateRuleAssets = ({ cy.request({ method: 'PUT', - url: `${Cypress.env('ELASTICSEARCH_URL')}/${index}/_mapping`, + url: `${Cypress.env('ELASTICSEARCH_URL')}/${index}/_mapping?refresh`, body: { dynamic: true, }, @@ -241,21 +210,17 @@ export const createAndInstallMockedPrebuiltRules = ({ rules, installToKibana = true, }: { - rules?: Array<typeof SAMPLE_PREBUILT_RULE>; + rules: Array<typeof SAMPLE_PREBUILT_RULE>; installToKibana?: boolean; }) => { cy.log('Install prebuilt rules', rules?.length); preventPrebuiltRulesPackageInstallation(); // TODO: use this bulk method once the issue with Cypress is fixed // bulkCreateRuleAssets({ rules }); - rules?.forEach((rule) => { + rules.forEach((rule) => { createNewRuleAsset({ rule }); }); - if (rules?.length) { - waitUntilAllRuleAssetsCreated(rules); - } - if (installToKibana) { return installAllPrebuiltRulesRequest(); } diff --git a/x-pack/test/security_solution_cypress/cypress/tasks/api_calls/rules.ts b/x-pack/test/security_solution_cypress/cypress/tasks/api_calls/rules.ts index 20551524d4340..254d93cac5078 100644 --- a/x-pack/test/security_solution_cypress/cypress/tasks/api_calls/rules.ts +++ b/x-pack/test/security_solution_cypress/cypress/tasks/api_calls/rules.ts @@ -18,6 +18,17 @@ import type { FetchRulesResponse } from '@kbn/security-solution-plugin/public/de import { internalAlertingSnoozeRule } from '../../urls/routes'; import { rootRequest } from '../common'; +export const findAllRules = () => { + return rootRequest<FetchRulesResponse>({ + url: DETECTION_ENGINE_RULES_URL_FIND, + headers: { + 'kbn-xsrf': 'cypress-creds', + 'x-elastic-internal-origin': 'security-solution', + 'elastic-api-version': '2023-10-31', + }, + }); +}; + export const createRule = ( rule: RuleCreateProps ): Cypress.Chainable<Cypress.Response<RuleResponse>> => { @@ -25,7 +36,11 @@ export const createRule = ( method: 'POST', url: DETECTION_ENGINE_RULES_URL, body: rule, - headers: { 'kbn-xsrf': 'cypress-creds', 'x-elastic-internal-origin': 'security-solution' }, + headers: { + 'kbn-xsrf': 'cypress-creds', + 'x-elastic-internal-origin': 'security-solution', + 'elastic-api-version': '2023-10-31', + }, failOnStatusCode: false, }); }; @@ -54,7 +69,11 @@ export const deleteCustomRule = (ruleId = '1') => { rootRequest({ method: 'DELETE', url: `api/detection_engine/rules?rule_id=${ruleId}`, - headers: { 'kbn-xsrf': 'cypress-creds', 'x-elastic-internal-origin': 'security-solution' }, + headers: { + 'kbn-xsrf': 'cypress-creds', + 'x-elastic-internal-origin': 'security-solution', + 'elastic-api-version': '2023-10-31', + }, failOnStatusCode: false, }); }; @@ -73,6 +92,7 @@ export const importRule = (ndjsonPath: string) => { 'kbn-xsrf': 'cypress-creds', 'content-type': 'multipart/form-data', 'x-elastic-internal-origin': 'security-solution', + 'elastic-api-version': '2023-10-31', }, body: formdata, }) @@ -91,6 +111,7 @@ export const waitForRulesToFinishExecution = (ruleIds: string[], afterDate?: Dat 'kbn-xsrf': 'cypress-creds', 'content-type': 'multipart/form-data', 'x-elastic-internal-origin': 'security-solution', + 'elastic-api-version': '2023-10-31', }, }).then((response) => { const areAllRulesFinished = ruleIds.every((ruleId) => diff --git a/x-pack/test/security_solution_cypress/cypress/tasks/common.ts b/x-pack/test/security_solution_cypress/cypress/tasks/common.ts index a1a6cf8a476f8..ba4cd07cc4a51 100644 --- a/x-pack/test/security_solution_cypress/cypress/tasks/common.ts +++ b/x-pack/test/security_solution_cypress/cypress/tasks/common.ts @@ -108,13 +108,17 @@ export const deleteAlertsAndRules = () => { action: 'delete', }, failOnStatusCode: false, - headers: { 'kbn-xsrf': 'cypress-creds', 'x-elastic-internal-origin': 'security-solution' }, + headers: { + 'kbn-xsrf': 'cypress-creds', + 'x-elastic-internal-origin': 'security-solution', + 'elastic-api-version': '2023-10-31', + }, timeout: 300000, }); rootRequest({ method: 'POST', - url: `${kibanaIndexUrl}/_delete_by_query?conflicts=proceed`, + url: `${kibanaIndexUrl}/_delete_by_query?conflicts=proceed&refresh`, body: { query: { bool: { @@ -134,7 +138,7 @@ export const deleteAlertsAndRules = () => { method: 'POST', url: `${Cypress.env( 'ELASTICSEARCH_URL' - )}/.lists-*,.items-*,.alerts-security.alerts-*/_delete_by_query?conflicts=proceed&scroll_size=10000`, + )}/.lists-*,.items-*,.alerts-security.alerts-*/_delete_by_query?conflicts=proceed&scroll_size=10000&refresh`, body: { query: { match_all: {}, @@ -147,7 +151,7 @@ export const deleteTimelines = () => { const kibanaIndexUrl = `${Cypress.env('ELASTICSEARCH_URL')}/.kibana_\*`; rootRequest({ method: 'POST', - url: `${kibanaIndexUrl}/_delete_by_query?conflicts=proceed`, + url: `${kibanaIndexUrl}/_delete_by_query?conflicts=proceed&refresh`, body: { query: { bool: { @@ -177,7 +181,7 @@ export const deleteCases = () => { const kibanaIndexUrl = `${Cypress.env('ELASTICSEARCH_URL')}/.kibana_\*`; rootRequest({ method: 'POST', - url: `${kibanaIndexUrl}/_delete_by_query?conflicts=proceed`, + url: `${kibanaIndexUrl}/_delete_by_query?conflicts=proceed&refresh`, body: { query: { bool: { @@ -198,7 +202,7 @@ export const deleteConnectors = () => { const kibanaIndexUrl = `${Cypress.env('ELASTICSEARCH_URL')}/.kibana_\*`; rootRequest({ method: 'POST', - url: `${kibanaIndexUrl}/_delete_by_query?conflicts=proceed`, + url: `${kibanaIndexUrl}/_delete_by_query?conflicts=proceed&refresh`, body: { query: { bool: { @@ -219,7 +223,7 @@ export const deletePrebuiltRulesAssets = () => { const kibanaIndexUrl = `${Cypress.env('ELASTICSEARCH_URL')}/.kibana_\*`; rootRequest({ method: 'POST', - url: `${kibanaIndexUrl}/_delete_by_query?conflicts=proceed`, + url: `${kibanaIndexUrl}/_delete_by_query?conflicts=proceed&refresh`, body: { query: { bool: { diff --git a/x-pack/test/security_solution_cypress/cypress/tasks/expandable_flyout/alert_details_right_panel_json_tab.ts b/x-pack/test/security_solution_cypress/cypress/tasks/expandable_flyout/alert_details_right_panel_json_tab.ts index eee3c446c5a9f..8affc2c7c4ce9 100644 --- a/x-pack/test/security_solution_cypress/cypress/tasks/expandable_flyout/alert_details_right_panel_json_tab.ts +++ b/x-pack/test/security_solution_cypress/cypress/tasks/expandable_flyout/alert_details_right_panel_json_tab.ts @@ -5,11 +5,11 @@ * 2.0. */ -import { getClassSelector } from '../../helpers/common'; +import { DOCUMENT_DETAILS_FLYOUT_RIGHT_PANEL_CONTENT } from '../../screens/expandable_flyout/alert_details_right_panel_json_tab'; /** * Scroll to x-y positions within the right section of the document details expandable flyout * // TODO revisit this as it seems very fragile: the first element found is the timeline flyout, which isn't visible but still exist in the DOM */ export const scrollWithinDocumentDetailsExpandableFlyoutRightSection = (x: number, y: number) => - cy.get(getClassSelector('euiFlyout')).last().scrollTo(x, y); + cy.get(DOCUMENT_DETAILS_FLYOUT_RIGHT_PANEL_CONTENT).last().scrollTo(x, y); diff --git a/x-pack/test/security_solution_cypress/cypress/tasks/expandable_flyout/alert_details_right_panel_overview_tab.ts b/x-pack/test/security_solution_cypress/cypress/tasks/expandable_flyout/alert_details_right_panel_overview_tab.ts index b94a8be090fa4..3dfc2dc4e9a30 100644 --- a/x-pack/test/security_solution_cypress/cypress/tasks/expandable_flyout/alert_details_right_panel_overview_tab.ts +++ b/x-pack/test/security_solution_cypress/cypress/tasks/expandable_flyout/alert_details_right_panel_overview_tab.ts @@ -5,11 +5,12 @@ * 2.0. */ +import { EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID } from '@kbn/security-solution-plugin/public/flyout/shared/components/test_ids'; import { - INSIGHTS_CORRELATIONS_TITLE_LINK_TEST_ID, - INSIGHTS_ENTITIES_TITLE_LINK_TEST_ID, - INSIGHTS_PREVALENCE_TITLE_LINK_TEST_ID, - INSIGHTS_THREAT_INTELLIGENCE_TITLE_LINK_TEST_ID, + INSIGHTS_CORRELATIONS_TEST_ID, + INSIGHTS_ENTITIES_TEST_ID, + INSIGHTS_PREVALENCE_TEST_ID, + INSIGHTS_THREAT_INTELLIGENCE_TEST_ID, } from '@kbn/security-solution-plugin/public/flyout/right/components/test_ids'; import { DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_ABOUT_SECTION_HEADER, @@ -60,32 +61,36 @@ export const toggleOverviewTabInsightsSection = () => { * Click on the header in the right section, Insights, Entities */ export const navigateToEntitiesDetails = () => { - cy.get(INSIGHTS_ENTITIES_TITLE_LINK_TEST_ID).scrollIntoView(); - cy.get(INSIGHTS_ENTITIES_TITLE_LINK_TEST_ID).should('be.visible').click(); + const TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID(INSIGHTS_ENTITIES_TEST_ID); + cy.get(TEST_ID).scrollIntoView(); + cy.get(TEST_ID).should('be.visible').click(); }; /** * Click on the header in the right section, Insights, Threat Intelligence */ export const navigateToThreatIntelligenceDetails = () => { - cy.get(INSIGHTS_THREAT_INTELLIGENCE_TITLE_LINK_TEST_ID).scrollIntoView(); - cy.get(INSIGHTS_THREAT_INTELLIGENCE_TITLE_LINK_TEST_ID).should('be.visible').click(); + const TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID(INSIGHTS_THREAT_INTELLIGENCE_TEST_ID); + cy.get(TEST_ID).scrollIntoView(); + cy.get(TEST_ID).should('be.visible').click(); }; /** * Click on the header in the right section, Insights, Correlations */ export const navigateToCorrelationsDetails = () => { - cy.get(INSIGHTS_CORRELATIONS_TITLE_LINK_TEST_ID).scrollIntoView(); - cy.get(INSIGHTS_CORRELATIONS_TITLE_LINK_TEST_ID).should('be.visible').click(); + const TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID(INSIGHTS_CORRELATIONS_TEST_ID); + cy.get(TEST_ID).scrollIntoView(); + cy.get(TEST_ID).should('be.visible').click(); }; /** * Click on the view all button under the right section, Insights, Prevalence */ export const navigateToPrevalenceDetails = () => { - cy.get(INSIGHTS_PREVALENCE_TITLE_LINK_TEST_ID).scrollIntoView(); - cy.get(INSIGHTS_PREVALENCE_TITLE_LINK_TEST_ID).should('be.visible').click(); + const TEST_ID = EXPANDABLE_PANEL_HEADER_TITLE_LINK_TEST_ID(INSIGHTS_PREVALENCE_TEST_ID); + cy.get(TEST_ID).scrollIntoView(); + cy.get(TEST_ID).should('be.visible').click(); }; /* Visualizations section */ diff --git a/x-pack/test/security_solution_cypress/cypress/tasks/login.ts b/x-pack/test/security_solution_cypress/cypress/tasks/login.ts index 0769c8172402a..f0b7832e488c9 100644 --- a/x-pack/test/security_solution_cypress/cypress/tasks/login.ts +++ b/x-pack/test/security_solution_cypress/cypress/tasks/login.ts @@ -12,7 +12,13 @@ import Url from 'url'; import type { ROLES } from '@kbn/security-solution-plugin/common/test'; import { NEW_FEATURES_TOUR_STORAGE_KEYS } from '@kbn/security-solution-plugin/common/constants'; -import { hostDetailsUrl, LOGOUT_URL, userDetailsUrl } from '../urls/navigation'; +import { + hostDetailsUrl, + LOGOUT_URL, + SECURITY_DETECTIONS_RULES_URL, + userDetailsUrl, +} from '../urls/navigation'; +import { resetRulesTableState } from './common'; /** * Credentials in the `kibana.dev.yml` config file will be used to authenticate @@ -393,6 +399,11 @@ export const visitHostDetailsPage = (hostName = 'suricata-iowa') => { cy.get('[data-test-subj="loading-spinner"]').should('not.exist'); }; +export const visitSecurityDetectionRulesPage = (role?: ROLES) => { + resetRulesTableState(); // Clear persistent rules filter data before page loading + visitWithoutDateRange(SECURITY_DETECTIONS_RULES_URL, role); +}; + export const visitUserDetailsPage = (userName = 'test') => { visit(userDetailsUrl(userName)); }; diff --git a/x-pack/test/security_solution_cypress/cypress/tsconfig.json b/x-pack/test/security_solution_cypress/cypress/tsconfig.json index 8ee21e233a223..30634b2af8052 100644 --- a/x-pack/test/security_solution_cypress/cypress/tsconfig.json +++ b/x-pack/test/security_solution_cypress/cypress/tsconfig.json @@ -43,5 +43,6 @@ "@kbn/fleet-plugin", "@kbn/cases-components", "@kbn/security-solution-plugin", + "@kbn/expandable-flyout", ] } diff --git a/x-pack/test/security_solution_cypress/package.json b/x-pack/test/security_solution_cypress/package.json index 741205b8f7771..d63c7640feede 100644 --- a/x-pack/test/security_solution_cypress/package.json +++ b/x-pack/test/security_solution_cypress/package.json @@ -7,20 +7,20 @@ "scripts": { "cypress": "../../../node_modules/.bin/cypress", "cypress:open:ess": "TZ=UTC node ../../plugins/security_solution/scripts/start_cypress_parallel open --spec './cypress/e2e/**/*.cy.ts' --config-file ../../test/security_solution_cypress/cypress/cypress.config.ts --ftr-config-file ../../test/security_solution_cypress/cli_config", - "cypress:run:ess": "yarn cypress:ess --config-file ../../test/security_solution_cypress/cypress/cypress_ci.config.ts --browser chrome --spec './cypress/e2e/{,!(investigations,explore)/**/}*.cy.ts'; status=$?; yarn junit:merge && exit $status", - "cypress:run:cases:ess": "yarn cypress:ess --config-file ../../test/security_solution_cypress/cypress/cypress_ci.config.ts --browser chrome --spec './cypress/e2e/explore/cases/*.cy.ts' --ftr-config-file ../../test/security_solution_cypress/cli_config; status=$?; yarn junit:merge && exit $status", - "cypress:ess": "TZ=UTC node ../../plugins/security_solution/scripts/start_cypress_parallel run --config-file ../../test/security_solution_cypress/cypress/cypress_ci.config.ts --ftr-config-file ../../test/security_solution_cypress/cli_config --reporter ../../../node_modules/cypress-multi-reporters --reporter-options configFile=./cypress/reporter_config.json", - "cypress:run:respops:ess": "yarn cypress:ess --config-file ../../test/security_solution_cypress/cypress/cypress_ci.config.ts --browser chrome --spec './cypress/e2e/(detection_alerts|detection_rules|exceptions)/*.cy.ts' --ftr-config-file ../../test/security_solution_cypress/cli_config; status=$?; yarn junit:merge && exit $status", - "cypress:investigations:run:ess": "yarn cypress:ess --config-file ../../test/security_solution_cypress/cypress/cypress_ci.config.ts --browser chrome --spec './cypress/e2e/investigations/**/*.cy.ts' --ftr-config-file ../../test/security_solution_cypress/cli_config; status=$?; yarn junit:merge && exit $status", - "cypress:explore:run:ess": "yarn cypress:ess --config-file ../../test/security_solution_cypress/cypress/cypress_ci.config.ts --browser chrome --spec './cypress/e2e/explore/**/*.cy.ts' --ftr-config-file ../../test/security_solution_cypress/cli_config; status=$?; yarn junit:merge && exit $status", + "cypress:run:ess": "yarn cypress:ess --spec './cypress/e2e/!(investigations|explore)/**/*.cy.ts'", + "cypress:run:cases:ess": "yarn cypress:ess --spec './cypress/e2e/explore/cases/*.cy.ts'", + "cypress:ess": "TZ=UTC node ../../plugins/security_solution/scripts/start_cypress_parallel run --config-file ../../test/security_solution_cypress/cypress/cypress_ci.config.ts --ftr-config-file ../../test/security_solution_cypress/cli_config", + "cypress:run:respops:ess": "yarn cypress:ess --spec './cypress/e2e/(detection_alerts|detection_rules|exceptions)/*.cy.ts'", + "cypress:investigations:run:ess": "yarn cypress:ess --spec './cypress/e2e/investigations/**/*.cy.ts'", + "cypress:explore:run:ess": "yarn cypress:ess --spec './cypress/e2e/explore/**/*.cy.ts'", "cypress:changed-specs-only:ess": "yarn cypress:ess --changed-specs-only --env burn=2", "junit:merge": "../../../node_modules/.bin/mochawesome-merge ../../../target/kibana-security-solution/cypress/results/mochawesome*.json > ../../../target/kibana-security-solution/cypress/results/output.json && ../../../node_modules/.bin/marge ../../../target/kibana-security-solution/cypress/results/output.json --reportDir ../../../target/kibana-security-solution/cypress/results && yarn junit:transform && mkdir -p ../../../target/junit && cp ../../../target/kibana-security-solution/cypress/results/*.xml ../../../target/junit/", "junit:transform": "node ../../plugins/security_solution/scripts/junit_transformer --pathPattern '../../../target/kibana-security-solution/cypress/results/*.xml' --rootDirectory ../../../ --reportName 'Security Solution Cypress' --writeInPlace", - "cypress:serverless": "TZ=UTC node ../../plugins/security_solution/scripts/start_cypress_parallel --config-file ../../test/security_solution_cypress/cypress/cypress_ci_serverless.config.ts --ftr-config-file ../../test/security_solution_cypress/serverless_config --reporter ../../../node_modules/cypress-multi-reporters --reporter-options configFile=./cypress/reporter_config.json", + "cypress:serverless": "TZ=UTC node ../../plugins/security_solution/scripts/start_cypress_parallel --config-file ../../test/security_solution_cypress/cypress/cypress_ci_serverless.config.ts --ftr-config-file ../../test/security_solution_cypress/serverless_config", "cypress:open:serverless": "yarn cypress:serverless open --config-file ../../test/security_solution_cypress/cypress/cypress_serverless.config.ts --spec './cypress/e2e/**/*.cy.ts'", - "cypress:run:serverless": "yarn cypress:serverless --spec './cypress/e2e/{,!(investigations,explore)/**/}*.cy.ts'; status=$?; yarn junit:merge && exit $status", - "cypress:investigations:run:serverless": "yarn cypress:serverless --spec './cypress/e2e/investigations/**/*.cy.ts'; status=$?; yarn junit:merge && exit $status", - "cypress:explore:run:serverless": "yarn cypress:serverless --spec './cypress/e2e/explore/**/*.cy.ts'; status=$?; yarn junit:merge && exit $status", + "cypress:run:serverless": "yarn cypress:serverless --spec '**/cypress/e2e/!(investigations|explore)/**/*.cy.ts'", + "cypress:investigations:run:serverless": "yarn cypress:serverless --spec './cypress/e2e/investigations/**/*.cy.ts'", + "cypress:explore:run:serverless": "yarn cypress:serverless --spec './cypress/e2e/explore/**/*.cy.ts'", "cypress:changed-specs-only:serverless": "yarn cypress:serverless --changed-specs-only --env burn=2" } } diff --git a/x-pack/test/security_solution_endpoint/apps/integrations/artifact_entries_list.ts b/x-pack/test/security_solution_endpoint/apps/integrations/artifact_entries_list.ts index f6584f9802e51..d62487d4fa383 100644 --- a/x-pack/test/security_solution_endpoint/apps/integrations/artifact_entries_list.ts +++ b/x-pack/test/security_solution_endpoint/apps/integrations/artifact_entries_list.ts @@ -232,8 +232,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { }; for (const testData of getArtifactsListTestsData()) { - // FLAKY: https://github.com/elastic/kibana/issues/163140 - describe.skip(`When on the ${testData.title} entries list`, function () { + describe(`When on the ${testData.title} entries list`, function () { beforeEach(async () => { policyInfo = await policyTestResources.createPolicy(); await removeAllArtifacts(); diff --git a/x-pack/test/security_solution_endpoint/apps/integrations/mocks.ts b/x-pack/test/security_solution_endpoint/apps/integrations/mocks.ts index 1d5ab43c28a32..168e688894f15 100644 --- a/x-pack/test/security_solution_endpoint/apps/integrations/mocks.ts +++ b/x-pack/test/security_solution_endpoint/apps/integrations/mocks.ts @@ -242,6 +242,11 @@ export const getArtifactsListTestsData = () => [ type: 'click', selector: 'fieldAutocompleteComboBox', }, + { + type: 'input', + selector: 'fieldAutocompleteComboBox', + value: 'agent.id', + }, { type: 'customClick', selector: 'button[title="agent.id"]', @@ -369,7 +374,8 @@ export const getArtifactsListTestsData = () => [ { type: 'input', selector: 'blocklist-form-values-input', - value: 'A4370C0CF81686C0B696FA6261c9d3e0d810ae704ab8301839dffd5d5112f476', + value: + 'A4370C0CF81686C0B696FA6261c9d3e0d810ae704ab8301839dffd5d5112f476,aedb279e378BED6C2DB3C9DC9e12ba635e0b391c,741462ab431a22233C787BAAB9B653C7', }, { type: 'click', @@ -380,7 +386,7 @@ export const getArtifactsListTestsData = () => [ { selector: 'blocklistPage-card-criteriaConditions', value: - 'OSIS Windows\nAND file.hash.*IS ONE OF\nA4370C0CF81686C0B696FA6261c9d3e0d810ae704ab8301839dffd5d5112f476', + 'OSIS Windows\nAND file.hash.*IS ONE OF\n741462ab431a22233c787baab9b653c7\naedb279e378bed6c2db3c9dc9e12ba635e0b391c\na4370c0cf81686c0b696fa6261c9d3e0d810ae704ab8301839dffd5d5112f476', }, ], }, @@ -402,12 +408,20 @@ export const getArtifactsListTestsData = () => [ }, { type: 'click', - selector: 'blocklist-form-file.path', + selector: 'blocklist-form-file.path.caseless', }, { type: 'clear', selector: - 'blocklist-form-values-input-A4370C0CF81686C0B696FA6261c9d3e0d810ae704ab8301839dffd5d5112f476', + 'blocklist-form-values-input-a4370c0cf81686c0b696fa6261c9d3e0d810ae704ab8301839dffd5d5112f476', + }, + { + type: 'clear', + selector: 'blocklist-form-values-input-741462ab431a22233c787baab9b653c7', + }, + { + type: 'clear', + selector: 'blocklist-form-values-input-aedb279e378bed6c2db3c9dc9e12ba635e0b391c', }, { type: 'input', @@ -435,7 +449,7 @@ export const getArtifactsListTestsData = () => [ }, ], waitForValue: - 'OSIS Windows\nAND file.pathIS ONE OF\nc:\\randomFolder\\randomFile.exe\nc:\\randomFolder\\randomFile2.exe', + 'OSIS Windows\nAND file.path.caselessIS ONE OF\nc:\\randomFolder\\randomFile.exe\nc:\\randomFolder\\randomFile2.exe', }, delete: { confirmSelector: 'blocklistDeletionConfirm', @@ -450,19 +464,41 @@ export const getArtifactsListTestsData = () => [ type: 'blocklist', identifier: 'endpoint-blocklist-windows-v1', relative_url: - '/api/fleet/artifacts/endpoint-blocklist-windows-v1/d2b12779ee542a6c4742d505cd0c684b0f55436a97074c62e7de7155344c74bc', - body: 'eJxVzEEKgzAUBNC7ZF0kMRqjOyt4CSnym/+DgVTFxFKR3r0pdFNmN2+Yk9EcN0eBNcPJ4rESa1hwj9UTu/yZdeQxoXWesgnClIUJ8lKl2bLSBnHZkrrZ+B0JU/s7oxeYOBoIhCPMR4In+D3JwNpCVrzjXa+F0qrjV1WrvlW5EqZGSRy14EAVL+CuJRda1mgtllgKkduiUuz2/uYDrE49EA==', + '/api/fleet/artifacts/endpoint-blocklist-windows-v1/637f1e8795406904980ae2ab4a69cea967756571507f6bd7fc94cde0add20df2', + body: 'eJylzsFqwzAMgOF38bkU27Jlu69SQpEtmQTSNCTpWCl595qyy45bj9IvxPdUMm3LIKs6nZ9qe8yiTmodrvMo6vCr1UFGbrEOoxx7WvvjlX27uc2y0HZbWhqmMt5ZuG1/Psk3le1SaBW+0PRo4YvGeytnFZxxaCk7MGStBSghhkyUU0bfBtXt3X74q2ntyXyAIuFsQxIIMQtjsZyhJC5JjM2E4EVnSKb8G2c9fsJzEHTRpUaDEYvOmLASWjQNCaI5Gk0StKMcQZsIiWtlz94YW13AN7vbX9OOoO0=', encryption_algorithm: 'none', package_name: 'endpoint', - encoded_size: 160, - encoded_sha256: '8620957e33599029c5f96fa689e0df2206960f582130ccdea64f22403fc05e50', - decoded_size: 196, - decoded_sha256: 'd2b12779ee542a6c4742d505cd0c684b0f55436a97074c62e7de7155344c74bc', + encoded_size: 218, + encoded_sha256: '751aacf865573055bef82795d23d99b7ab695eb5fb2a36f1231f02f52da8adc0', + decoded_size: 501, + decoded_sha256: '637f1e8795406904980ae2ab4a69cea967756571507f6bd7fc94cde0add20df2', compression_algorithm: 'zlib', created: '2000-01-01T00:00:00.000Z', }), getExpectedUpdatedArtifactBodyWhenCreate: (): ArtifactBodyType => ({ entries: [ + { + type: 'simple', + entries: [ + { + field: 'file.hash.md5', + operator: 'included', + type: 'exact_cased_any', + value: ['741462ab431a22233c787baab9b653c7'], + }, + ], + }, + { + type: 'simple', + entries: [ + { + field: 'file.hash.sha1', + operator: 'included', + type: 'exact_cased_any', + value: ['aedb279e378bed6c2db3c9dc9e12ba635e0b391c'], + }, + ], + }, { type: 'simple', entries: [ @@ -470,7 +506,7 @@ export const getArtifactsListTestsData = () => [ field: 'file.hash.sha256', operator: 'included', type: 'exact_cased_any', - value: ['A4370C0CF81686C0B696FA6261c9d3e0d810ae704ab8301839dffd5d5112f476'], + value: ['a4370c0cf81686c0b696fa6261c9d3e0d810ae704ab8301839dffd5d5112f476'], }, ], }, @@ -480,14 +516,14 @@ export const getArtifactsListTestsData = () => [ type: 'blocklist', identifier: 'endpoint-blocklist-windows-v1', relative_url: - '/api/fleet/artifacts/endpoint-blocklist-windows-v1/2df413b3c01b54be7e9106e92c39297ca72d32bcd626c3f7eb7d395db8e905fe', - body: 'eJx9jcEKwjAQRH9F9iwePOYD/IlWypKdYmCbhCSVltJ/dysieJE5zbxhZiPEVgIquW6jtmaQoxqmrKDzDxsDVAyOQXHJ3B7GU0bhlorFIXqdBWLpZwUL+zZ4rpCB42rgyTob6ci7vi8cJU23pILydcc2luP69K9zfZfu+6EXorpEbA==', + '/api/fleet/artifacts/endpoint-blocklist-windows-v1/3ead6ce4e34cb4411083a44bfe813d9442d296981ee8d56e727e6cff14dea0f0', + body: 'eJx9jUEKwzAQA79S9lx66NEP6CeSEhZboYaNbWynJIT8vetSArkUnaQR0kYINXsUMt1GdU0gQ8VPSUDXExs9xCkcveCWuL6Ux4TMNWaNfbAyOzhNfytY2NbBcoGglIHDquzNMivsyJq+zxxcnB5RHPLh2jyW9n7517l/S8+96QOI6kW/', encryption_algorithm: 'none', package_name: 'endpoint', - encoded_size: 130, - encoded_sha256: '3fb42b56c16ef38f8ecb62c082a7f3dddf4a52998a83c97d16688e854e15a502', - decoded_size: 194, - decoded_sha256: '2df413b3c01b54be7e9106e92c39297ca72d32bcd626c3f7eb7d395db8e905fe', + encoded_size: 132, + encoded_sha256: '9f81934389ff29599c0b0f16aa91b9f5cebd95d51271a47ea469662a61a29884', + decoded_size: 197, + decoded_sha256: '3ead6ce4e34cb4411083a44bfe813d9442d296981ee8d56e727e6cff14dea0f0', compression_algorithm: 'zlib', created: '2000-01-01T00:00:00.000Z', }), diff --git a/x-pack/test/security_solution_ftr/services/detections/index.ts b/x-pack/test/security_solution_ftr/services/detections/index.ts index ebfcaebe467e5..bc7c8855796ac 100644 --- a/x-pack/test/security_solution_ftr/services/detections/index.ts +++ b/x-pack/test/security_solution_ftr/services/detections/index.ts @@ -63,6 +63,7 @@ export class DetectionsTestService extends FtrService { return this.supertest .get(DETECTION_ENGINE_RULES_URL) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .query({ rule_id: ELASTIC_SECURITY_RULE_ID }) .send() .then(this.getHttpResponseFailureHandler()) @@ -82,6 +83,7 @@ export class DetectionsTestService extends FtrService { await this.supertest .post(DETECTION_ENGINE_RULES_BULK_ACTION) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ action: 'disable', ids: [endpointSecurityRule.id], @@ -95,6 +97,7 @@ export class DetectionsTestService extends FtrService { await this.supertest .post(DETECTION_ENGINE_RULES_BULK_ACTION) .set('kbn-xsrf', 'true') + .set('elastic-api-version', '2023-10-31') .send({ action: 'enable', ids: [endpointSecurityRule.id], diff --git a/x-pack/test_serverless/api_integration/services/index.ts b/x-pack/test_serverless/api_integration/services/index.ts index 8102eeb9f4c1b..06e7c33fd7099 100644 --- a/x-pack/test_serverless/api_integration/services/index.ts +++ b/x-pack/test_serverless/api_integration/services/index.ts @@ -12,6 +12,7 @@ import { services as svlSharedServices } from '../../shared/services'; import { SvlCommonApiServiceProvider } from './svl_common_api'; import { AlertingApiProvider } from './alerting_api'; +import { SamlToolsProvider } from './saml_tools'; import { DataViewApiProvider } from './data_view_api'; export const services = { @@ -20,6 +21,7 @@ export const services = { svlCommonApi: SvlCommonApiServiceProvider, alertingApi: AlertingApiProvider, + samlTools: SamlToolsProvider, dataViewApi: DataViewApiProvider, }; diff --git a/x-pack/test_serverless/api_integration/services/saml_tools.ts b/x-pack/test_serverless/api_integration/services/saml_tools.ts new file mode 100644 index 0000000000000..4756109fc667d --- /dev/null +++ b/x-pack/test_serverless/api_integration/services/saml_tools.ts @@ -0,0 +1,42 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +// eslint-disable-next-line @kbn/imports/no_boundary_crossing +import { getSAMLResponse } from '@kbn/security-api-integration-helpers/saml/saml_tools'; +import { kbnTestConfig } from '@kbn/test'; + +import { parse as parseCookie } from 'tough-cookie'; + +import { FtrProviderContext } from '../ftr_provider_context'; + +export function SamlToolsProvider({ getService }: FtrProviderContext) { + const supertestWithoutAuth = getService('supertestWithoutAuth'); + const randomness = getService('randomness'); + const svlCommonApi = getService('svlCommonApi'); + + function createSAMLResponse(options = {}) { + return getSAMLResponse({ + destination: `http://localhost:${kbnTestConfig.getPort()}/api/security/saml/callback`, + sessionIndex: String(randomness.naturalNumber()), + ...options, + }); + } + + return { + async login(username: string) { + const samlAuthenticationResponse = await supertestWithoutAuth + .post('/api/security/saml/callback') + .set(svlCommonApi.getCommonRequestHeader()) + .send({ SAMLResponse: await createSAMLResponse({ username }) }); + expect(samlAuthenticationResponse.status).to.equal(302); + expect(samlAuthenticationResponse.header.location).to.equal('/'); + const sessionCookie = parseCookie(samlAuthenticationResponse.header['set-cookie'][0])!; + return { Cookie: sessionCookie.cookieString() }; + }, + }; +} diff --git a/x-pack/test_serverless/api_integration/services/svl_common_api.ts b/x-pack/test_serverless/api_integration/services/svl_common_api.ts index 15b4f15f851fe..b23c8f70a3092 100644 --- a/x-pack/test_serverless/api_integration/services/svl_common_api.ts +++ b/x-pack/test_serverless/api_integration/services/svl_common_api.ts @@ -36,5 +36,14 @@ export function SvlCommonApiServiceProvider({}: FtrProviderContext) { )}'` ); }, + + assertApiNotFound(body: unknown, status: number) { + expect(body).to.eql({ + statusCode: 404, + error: 'Not Found', + message: 'Not Found', + }); + expect(status).to.eql(404); + }, }; } diff --git a/x-pack/test_serverless/api_integration/test_suites/common/encrypted_saved_objects.ts b/x-pack/test_serverless/api_integration/test_suites/common/encrypted_saved_objects.ts new file mode 100644 index 0000000000000..be5dc924c839d --- /dev/null +++ b/x-pack/test_serverless/api_integration/test_suites/common/encrypted_saved_objects.ts @@ -0,0 +1,26 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { FtrProviderContext } from '../../ftr_provider_context'; + +export default function ({ getService }: FtrProviderContext) { + const svlCommonApi = getService('svlCommonApi'); + const supertest = getService('supertest'); + + describe('encrypted saved objects', function () { + describe('route access', () => { + describe('disabled', () => { + it('rotate key', async () => { + const { body, status } = await supertest + .post('/api/encrypted_saved_objects/_rotate_key') + .set(svlCommonApi.getCommonRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + }); + }); + }); +} diff --git a/x-pack/test_serverless/api_integration/test_suites/common/index.ts b/x-pack/test_serverless/api_integration/test_suites/common/index.ts index dbd561a07197c..4ea6b50bb8f2f 100644 --- a/x-pack/test_serverless/api_integration/test_suites/common/index.ts +++ b/x-pack/test_serverless/api_integration/test_suites/common/index.ts @@ -9,10 +9,22 @@ import { FtrProviderContext } from '../../ftr_provider_context'; export default function ({ loadTestFile }: FtrProviderContext) { describe('serverless common API', function () { - loadTestFile(require.resolve('./security_users')); + loadTestFile(require.resolve('./encrypted_saved_objects')); + loadTestFile(require.resolve('./security/anonymous')); + loadTestFile(require.resolve('./security/api_keys')); + loadTestFile(require.resolve('./security/authentication')); + loadTestFile(require.resolve('./security/authentication_http')); + loadTestFile(require.resolve('./security/authorization')); + loadTestFile(require.resolve('./security/misc')); + loadTestFile(require.resolve('./security/response_headers')); + loadTestFile(require.resolve('./security/role_mappings')); + loadTestFile(require.resolve('./security/sessions')); + loadTestFile(require.resolve('./security/users')); + loadTestFile(require.resolve('./security/user_profiles')); + loadTestFile(require.resolve('./security/views')); loadTestFile(require.resolve('./spaces')); - loadTestFile(require.resolve('./security_response_headers')); loadTestFile(require.resolve('./rollups')); + loadTestFile(require.resolve('./scripted_fields')); loadTestFile(require.resolve('./index_management')); loadTestFile(require.resolve('./alerting')); loadTestFile(require.resolve('./ingest_pipelines')); diff --git a/x-pack/test_serverless/api_integration/test_suites/common/index_management/index.ts b/x-pack/test_serverless/api_integration/test_suites/common/index_management/index.ts index dd7d8bc20e624..52f166c343ff9 100644 --- a/x-pack/test_serverless/api_integration/test_suites/common/index_management/index.ts +++ b/x-pack/test_serverless/api_integration/test_suites/common/index_management/index.ts @@ -10,5 +10,6 @@ import { FtrProviderContext } from '../../../ftr_provider_context'; export default function ({ loadTestFile }: FtrProviderContext) { describe('Index Management APIs', function () { loadTestFile(require.resolve('./index_templates')); + loadTestFile(require.resolve('./indices')); }); } diff --git a/x-pack/test_serverless/api_integration/test_suites/common/index_management/indices.ts b/x-pack/test_serverless/api_integration/test_suites/common/index_management/indices.ts new file mode 100644 index 0000000000000..f9700dfaff70a --- /dev/null +++ b/x-pack/test_serverless/api_integration/test_suites/common/index_management/indices.ts @@ -0,0 +1,83 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from 'expect'; +import { FtrProviderContext } from '../../../ftr_provider_context'; + +const API_BASE_PATH = '/api/index_management'; +const INTERNAL_API_BASE_PATH = '/internal/index_management'; +const expectedKeys = ['aliases', 'hidden', 'isFrozen', 'primary', 'replica', 'name'].sort(); + +export default function ({ getService }: FtrProviderContext) { + const supertest = getService('supertest'); + const es = getService('es'); + const log = getService('log'); + + describe('Indices', function () { + const indexName = `index-${Math.random()}`; + + before(async () => { + // Create a new index to test against + try { + await es.indices.create({ index: indexName }); + } catch (err) { + log.debug('[Setup error] Error creating index'); + throw err; + } + }); + + after(async () => { + // Cleanup index created for testing purposes + try { + await es.indices.delete({ + index: indexName, + }); + } catch (err) { + log.debug('[Cleanup error] Error deleting index'); + throw err; + } + }); + + describe('get all', () => { + it('should list indices with the expected parameters', async () => { + const { body: indices } = await supertest + .get(`${API_BASE_PATH}/indices`) + .set('kbn-xsrf', 'xxx') + .set('x-elastic-internal-origin', 'xxx') + .expect(200); + + const indexFound = indices.find((index: { name: string }) => index.name === indexName); + + expect(indexFound).toBeTruthy(); + + expect(Object.keys(indexFound).sort()).toEqual(expectedKeys); + }); + }); + + describe('get index', () => { + it('returns index details for the specified index name', async () => { + const { body: index } = await supertest + .get(`${INTERNAL_API_BASE_PATH}/indices/${indexName}`) + .set('kbn-xsrf', 'xxx') + .set('x-elastic-internal-origin', 'xxx') + .expect(200); + + expect(index).toBeTruthy(); + + expect(Object.keys(index).sort()).toEqual(expectedKeys); + }); + + it('throws 404 for a non-existent index', async () => { + await supertest + .get(`${INTERNAL_API_BASE_PATH}/indices/non_existent`) + .set('kbn-xsrf', 'xxx') + .set('x-elastic-internal-origin', 'xxx') + .expect(404); + }); + }); + }); +} diff --git a/x-pack/test_serverless/api_integration/test_suites/common/scripted_fields.ts b/x-pack/test_serverless/api_integration/test_suites/common/scripted_fields.ts new file mode 100644 index 0000000000000..f3969e07eea7e --- /dev/null +++ b/x-pack/test_serverless/api_integration/test_suites/common/scripted_fields.ts @@ -0,0 +1,48 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from 'expect'; +import { DATA_VIEW_PATH } from '@kbn/data-views-plugin/server'; +import { FtrProviderContext } from '../../ftr_provider_context'; + +export default function ({ getService }: FtrProviderContext) { + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('scripted fields disabled', function () { + before(async () => { + await esArchiver.load('test/api_integration/fixtures/es_archiver/index_patterns/basic_index'); + }); + + after(async () => { + await esArchiver.unload( + 'test/api_integration/fixtures/es_archiver/index_patterns/basic_index' + ); + }); + it('scripted fields are ignored when disabled', async () => { + const response = await supertest + .post(DATA_VIEW_PATH) + .set('kbn-xsrf', 'some-xsrf-token') + .send({ + data_view: { + title: 'basic_index', + fields: { + foo_scripted: { + name: 'foo_scripted', + type: 'string', + scripted: true, + script: "doc['field_name'].value", + }, + }, + }, + }); + + expect(response.status).toBe(200); + expect(response.body.data_view.fields.foo_scripted).toBeUndefined(); + }); + }); +} diff --git a/x-pack/test_serverless/api_integration/test_suites/common/security/anonymous.ts b/x-pack/test_serverless/api_integration/test_suites/common/security/anonymous.ts new file mode 100644 index 0000000000000..0b08aa18ce128 --- /dev/null +++ b/x-pack/test_serverless/api_integration/test_suites/common/security/anonymous.ts @@ -0,0 +1,33 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { FtrProviderContext } from '../../../ftr_provider_context'; + +export default function ({ getService }: FtrProviderContext) { + const svlCommonApi = getService('svlCommonApi'); + const supertest = getService('supertest'); + + describe('security/anonymous', function () { + describe('route access', () => { + describe('disabled', () => { + it('get access capabilities', async () => { + const { body, status } = await supertest + .get('/internal/security/anonymous_access/capabilities') + .set(svlCommonApi.getCommonRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + it('get access state', async () => { + const { body, status } = await supertest + .get('/internal/security/anonymous_access/state') + .set(svlCommonApi.getCommonRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + }); + }); + }); +} diff --git a/x-pack/test_serverless/api_integration/test_suites/common/security/api_keys.ts b/x-pack/test_serverless/api_integration/test_suites/common/security/api_keys.ts new file mode 100644 index 0000000000000..256a0fcfe32a4 --- /dev/null +++ b/x-pack/test_serverless/api_integration/test_suites/common/security/api_keys.ts @@ -0,0 +1,212 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from 'expect'; +import { FtrProviderContext } from '../../../ftr_provider_context'; + +export default function ({ getService }: FtrProviderContext) { + const svlCommonApi = getService('svlCommonApi'); + const supertest = getService('supertest'); + let roleMapping: { id: string; name: string; api_key: string; encoded: string }; + + describe('security/api_keys', function () { + describe('route access', () => { + describe('internal', () => { + before(async () => { + const { body, status } = await supertest + .post('/internal/security/api_key') + .set(svlCommonApi.getInternalRequestHeader()) + .send({ + name: 'test', + metadata: {}, + role_descriptors: {}, + }); + expect(status).toBe(200); + roleMapping = body; + }); + + after(async () => { + const { body, status } = await supertest + .get('/internal/security/api_key?isAdmin=true') + .set(svlCommonApi.getInternalRequestHeader()); + + if (status === 200) { + await supertest + .post('/internal/security/api_key/invalidate') + .set(svlCommonApi.getInternalRequestHeader()) + .send({ + apiKeys: body?.apiKeys, + isAdmin: true, + }); + } + }); + + it('create', async () => { + let body: unknown; + let status: number; + const requestBody = { + name: 'create_test', + metadata: {}, + role_descriptors: {}, + }; + + ({ body, status } = await supertest + .post('/internal/security/api_key') + .set(svlCommonApi.getCommonRequestHeader()) + .send(requestBody)); + // expect a rejection because we're not using the internal header + expect(body).toEqual({ + statusCode: 400, + error: 'Bad Request', + message: expect.stringContaining( + 'method [post] exists but is not available with the current configuration' + ), + }); + expect(status).toBe(400); + + ({ body, status } = await supertest + .post('/internal/security/api_key') + .set(svlCommonApi.getInternalRequestHeader()) + .send(requestBody)); + // expect success because we're using the internal header + expect(body).toEqual(expect.objectContaining({ name: 'create_test' })); + expect(status).toBe(200); + }); + + it('update', async () => { + let body: unknown; + let status: number; + const requestBody = { + id: roleMapping.id, + metadata: { test: 'value' }, + role_descriptors: {}, + }; + + ({ body, status } = await supertest + .put('/internal/security/api_key') + .set(svlCommonApi.getCommonRequestHeader()) + .send(requestBody)); + // expect a rejection because we're not using the internal header + expect(body).toEqual({ + statusCode: 400, + error: 'Bad Request', + message: expect.stringContaining( + 'method [put] exists but is not available with the current configuration' + ), + }); + expect(status).toBe(400); + + ({ body, status } = await supertest + .put('/internal/security/api_key') + .set(svlCommonApi.getInternalRequestHeader()) + .send(requestBody)); + // expect success because we're using the internal header + expect(body).toEqual(expect.objectContaining({ updated: true })); + expect(status).toBe(200); + }); + + it('get all', async () => { + let body: unknown; + let status: number; + + ({ body, status } = await supertest + .get('/internal/security/api_key?isAdmin=true') + .set(svlCommonApi.getCommonRequestHeader())); + // expect a rejection because we're not using the internal header + expect(body).toEqual({ + statusCode: 400, + error: 'Bad Request', + message: expect.stringContaining( + 'method [get] exists but is not available with the current configuration' + ), + }); + expect(status).toBe(400); + + ({ body, status } = await supertest + .get('/internal/security/api_key?isAdmin=true') + .set(svlCommonApi.getInternalRequestHeader())); + // expect success because we're using the internal header + expect(body).toEqual( + expect.objectContaining({ + apiKeys: expect.arrayContaining([expect.objectContaining({ id: roleMapping.id })]), + }) + ); + expect(status).toBe(200); + }); + + it('get enabled', async () => { + let body: unknown; + let status: number; + + ({ body, status } = await supertest + .get('/internal/security/api_key/_enabled') + .set(svlCommonApi.getCommonRequestHeader())); + // expect a rejection because we're not using the internal header + expect(body).toEqual({ + statusCode: 400, + error: 'Bad Request', + message: expect.stringContaining( + 'method [get] exists but is not available with the current configuration' + ), + }); + expect(status).toBe(400); + + ({ body, status } = await supertest + .get('/internal/security/api_key/_enabled') + .set(svlCommonApi.getInternalRequestHeader())); + // expect success because we're using the internal header + expect(body).toEqual({ apiKeysEnabled: true }); + expect(status).toBe(200); + }); + + it('invalidate', async () => { + let body: unknown; + let status: number; + const requestBody = { + apiKeys: [ + { + id: roleMapping.id, + name: roleMapping.name, + }, + ], + isAdmin: true, + }; + + ({ body, status } = await supertest + .post('/internal/security/api_key/invalidate') + .set(svlCommonApi.getCommonRequestHeader()) + .send(requestBody)); + // expect a rejection because we're not using the internal header + expect(body).toEqual({ + statusCode: 400, + error: 'Bad Request', + message: expect.stringContaining( + 'method [post] exists but is not available with the current configuration' + ), + }); + expect(status).toBe(400); + + ({ body, status } = await supertest + .post('/internal/security/api_key/invalidate') + .set(svlCommonApi.getInternalRequestHeader()) + .send(requestBody)); + // expect success because we're using the internal header + expect(body).toEqual({ + errors: [], + itemsInvalidated: [ + { + id: roleMapping.id, + name: roleMapping.name, + }, + ], + }); + expect(status).toBe(200); + }); + }); + }); + }); +} diff --git a/x-pack/test_serverless/api_integration/test_suites/common/security/authentication.ts b/x-pack/test_serverless/api_integration/test_suites/common/security/authentication.ts new file mode 100644 index 0000000000000..590adbe267b45 --- /dev/null +++ b/x-pack/test_serverless/api_integration/test_suites/common/security/authentication.ts @@ -0,0 +1,201 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from 'expect'; +import { FtrProviderContext } from '../../../ftr_provider_context'; + +export default function ({ getService }: FtrProviderContext) { + const svlCommonApi = getService('svlCommonApi'); + const supertest = getService('supertest'); + + describe('security/authentication', function () { + describe('route access', () => { + describe('disabled', () => { + // ToDo: uncomment when we disable login + // it('login', async () => { + // const { body, status } = await supertest + // .post('/internal/security/login') + // .set(svlCommonApi.getInternalRequestHeader()); + // svlCommonApi.assertApiNotFound(body, status); + // }); + + it('logout (deprecated)', async () => { + const { body, status } = await supertest + .get('/api/security/v1/logout') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + it('get current user (deprecated)', async () => { + const { body, status } = await supertest + .get('/internal/security/v1/me') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + it('acknowledge access agreement', async () => { + const { body, status } = await supertest + .post('/internal/security/access_agreement/acknowledge') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + describe('OIDC', () => { + it('OIDC implicit', async () => { + const { body, status } = await supertest + .get('/api/security/oidc/implicit') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + it('OIDC implicit (deprecated)', async () => { + const { body, status } = await supertest + .get('/api/security/v1/oidc/implicit') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + it('OIDC implicit.js', async () => { + const { body, status } = await supertest + .get('/internal/security/oidc/implicit.js') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + it('OIDC callback', async () => { + const { body, status } = await supertest + .get('/api/security/oidc/callback') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + it('OIDC callback (deprecated)', async () => { + const { body, status } = await supertest + .get('/api/security/v1/oidc') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + it('OIDC login', async () => { + const { body, status } = await supertest + .post('/api/security/oidc/initiate_login') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + it('OIDC login (deprecated)', async () => { + const { body, status } = await supertest + .post('/api/security/v1/oidc') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + it('OIDC 3rd party login', async () => { + const { body, status } = await supertest + .get('/api/security/oidc/initiate_login') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + }); + + it('SAML callback (deprecated)', async () => { + const { body, status } = await supertest + .post('/api/security/v1/saml') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + }); + + describe('internal', () => { + it('get current user', async () => { + let body: any; + let status: number; + + ({ body, status } = await supertest + .get('/internal/security/me') + .set(svlCommonApi.getCommonRequestHeader())); + // expect a rejection because we're not using the internal header + expect(body).toEqual({ + statusCode: 400, + error: 'Bad Request', + message: expect.stringContaining( + 'method [get] exists but is not available with the current configuration' + ), + }); + expect(status).toBe(400); + + ({ body, status } = await supertest + .get('/internal/security/me') + .set(svlCommonApi.getInternalRequestHeader())); + // expect success because we're using the internal header + expect(body).toEqual({ + authentication_provider: { name: '__http__', type: 'http' }, + authentication_realm: { name: 'reserved', type: 'reserved' }, + authentication_type: 'realm', + elastic_cloud_user: false, + email: null, + enabled: true, + full_name: null, + lookup_realm: { name: 'reserved', type: 'reserved' }, + metadata: { _reserved: true }, + roles: ['superuser'], + username: 'elastic', + }); + expect(status).toBe(200); + }); + + // ToDo: remove when we disable login + it('login', async () => { + let body: any; + let status: number; + + ({ body, status } = await supertest + .post('/internal/security/login') + .set(svlCommonApi.getCommonRequestHeader())); + // expect a rejection because we're not using the internal header + expect(body).toEqual({ + statusCode: 400, + error: 'Bad Request', + message: expect.stringContaining( + 'method [post] exists but is not available with the current configuration' + ), + }); + expect(status).toBe(400); + + ({ body, status } = await supertest + .post('/internal/security/login') + .set(svlCommonApi.getInternalRequestHeader())); + expect(status).not.toBe(404); + }); + }); + + describe('public', () => { + it('logout', async () => { + const { status } = await supertest.get('/api/security/logout'); + expect(status).toBe(302); + }); + + it('SAML callback', async () => { + const { body, status } = await supertest + .post('/api/security/saml/callback') + .set(svlCommonApi.getCommonRequestHeader()) + .send({ + SAMLResponse: '', + }); + + // Should fail with 401 (not 404) because there is no valid SAML response in the request body + expect(body).toEqual({ + error: 'Unauthorized', + message: 'Unauthorized', + statusCode: 401, + }); + expect(status).not.toBe(404); + }); + }); + }); + }); +} diff --git a/x-pack/test_serverless/api_integration/test_suites/common/security/authentication_http.ts b/x-pack/test_serverless/api_integration/test_suites/common/security/authentication_http.ts new file mode 100644 index 0000000000000..1555ebe352df9 --- /dev/null +++ b/x-pack/test_serverless/api_integration/test_suites/common/security/authentication_http.ts @@ -0,0 +1,51 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { FtrProviderContext } from '../../../ftr_provider_context'; + +export default function ({ getService }: FtrProviderContext) { + const svlCommonApi = getService('svlCommonApi'); + const supertest = getService('supertestWithoutAuth'); + + describe('security/authentication/http', function () { + it('allows JWT HTTP authentication only for selected routes', async () => { + const jsonWebToken = + 'eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwczovL2tpYmFuYS5lbGFzdGljLmNvL2p3dC8iLCJzdWIiOiJlbGFzdGljLWFnZW50IiwiYXVkIjoiZWxhc3RpY3NlYXJjaCIsIm5hbWUiOiJFbGFzdGljIEFnZW50IiwiaWF0Ijo5NDY2ODQ4MDAsImV4cCI6NDA3MDkwODgwMH0.P7RHKZlLskS5DfVRqoVO4ivoIq9rXl2-GW6hhC9NvTSkwphYivcjpTVcyENZvxTTvJJNqcyx6rF3T-7otTTIHBOZIMhZauc5dob-sqcN_mT2htqm3BpSdlJlz60TBq6diOtlNhV212gQCEJMPZj0MNj7kZRj_GsECrTaU7FU0A3HAzkbdx15vQJMKZiFbbQCVI7-X2J0bZzQKIWfMHD-VgHFwOe6nomT-jbYIXtCBDd6fNj1zTKRl-_uzjVqNK-h8YW1h6tE4xvZmXyHQ1-9yNKZIWC7iEaPkBLaBKQulLU5MvW3AtVDUhzm6--5H1J85JH5QhRrnKYRon7ZW5q1AQ'; + + // Check 5 routes that are currently known to accept JWT as a means of authentication. + for (const allowedPath of [ + '/api/status', + '/api/stats', + '/api/task_manager/_background_task_utilization', + '/internal/task_manager/_background_task_utilization', + '/api/task_manager/metrics', + ]) { + await supertest + .get(allowedPath) + .set('Authorization', `Bearer ${jsonWebToken}`) + .set('ES-Client-Authentication', 'SharedSecret my_super_secret') + .set(svlCommonApi.getInternalRequestHeader()) + .expect(200); + } + + // Make sure it's not possible to use JWT to have interactive sessions. + await supertest + .get('/') + .set('Authorization', `Bearer ${jsonWebToken}`) + .set('ES-Client-Authentication', 'SharedSecret my_super_secret') + .expect(401); + + // Make sure it's not possible to use JWT to access any other APIs. + await supertest + .get('/internal/security/me') + .set('Authorization', `Bearer ${jsonWebToken}`) + .set('ES-Client-Authentication', 'SharedSecret my_super_secret') + .set(svlCommonApi.getInternalRequestHeader()) + .expect(401); + }); + }); +} diff --git a/x-pack/test_serverless/api_integration/test_suites/common/security/authorization.ts b/x-pack/test_serverless/api_integration/test_suites/common/security/authorization.ts new file mode 100644 index 0000000000000..d2f5db13da9bc --- /dev/null +++ b/x-pack/test_serverless/api_integration/test_suites/common/security/authorization.ts @@ -0,0 +1,110 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from 'expect'; +import { FtrProviderContext } from '../../../ftr_provider_context'; + +export default function ({ getService }: FtrProviderContext) { + const svlCommonApi = getService('svlCommonApi'); + const supertest = getService('supertest'); + + describe('security/authorization', function () { + describe('route access', () => { + describe('disabled', () => { + it('get all privileges', async () => { + const { body, status } = await supertest + .get('/api/security/privileges') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + it('get built-in elasticsearch privileges', async () => { + const { body, status } = await supertest + .get('/internal/security/esPrivileges/builtin') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + // ToDo: Uncomment when we disable role APIs + // it('create/update role', async () => { + // const { body, status } = await supertest + // .put('/api/security/role/test') + // .set(svlCommonApi.getInternalRequestHeader()); + // svlCommonApi.assertApiNotFound(body, status); + // }); + + // it('get role', async () => { + // const { body, status } = await supertest + // .get('/api/security/role/superuser') + // .set(svlCommonApi.getInternalRequestHeader()); + // svlCommonApi.assertApiNotFound(body, status); + // }); + + // it('get all roles', async () => { + // const { body, status } = await supertest + // .get('/api/security/role') + // .set(svlCommonApi.getInternalRequestHeader()); + // svlCommonApi.assertApiNotFound(body, status); + // }); + + // it('delete role', async () => { + // const { body, status } = await supertest + // .delete('/api/security/role/superuser') + // .set(svlCommonApi.getInternalRequestHeader()); + // svlCommonApi.assertApiNotFound(body, status); + // }); + + it('get shared saved object permissions', async () => { + const { body, status } = await supertest + .get('/internal/security/_share_saved_object_permissions') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + }); + + // ToDo: remove when we disable role APIs + describe('internal', () => { + it('create/update role', async () => { + const { status } = await supertest + .put('/api/security/role/test') + .set(svlCommonApi.getInternalRequestHeader()); + expect(status).not.toBe(404); + }); + + it('get role', async () => { + const { status } = await supertest + .get('/api/security/role/superuser') + .set(svlCommonApi.getInternalRequestHeader()); + expect(status).not.toBe(404); + }); + + it('get all roles', async () => { + const { status } = await supertest + .get('/api/security/role') + .set(svlCommonApi.getInternalRequestHeader()); + expect(status).not.toBe(404); + }); + + it('delete role', async () => { + const { status } = await supertest + .delete('/api/security/role/superuser') + .set(svlCommonApi.getInternalRequestHeader()); + expect(status).not.toBe(404); + }); + }); + + describe('public', () => { + it('reset session page', async () => { + const { status } = await supertest + .get('/internal/security/reset_session_page.js') + .set(svlCommonApi.getCommonRequestHeader()); + expect(status).toBe(200); + }); + }); + }); + }); +} diff --git a/x-pack/test_serverless/api_integration/test_suites/common/security/misc.ts b/x-pack/test_serverless/api_integration/test_suites/common/security/misc.ts new file mode 100644 index 0000000000000..2b49b3a96ab20 --- /dev/null +++ b/x-pack/test_serverless/api_integration/test_suites/common/security/misc.ts @@ -0,0 +1,58 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from 'expect'; +import { FtrProviderContext } from '../../../ftr_provider_context'; + +export default function ({ getService }: FtrProviderContext) { + const svlCommonApi = getService('svlCommonApi'); + const supertest = getService('supertest'); + + describe('security/misc', function () { + describe('route access', () => { + describe('disabled', () => { + it('get index fields', async () => { + const { body, status } = await supertest + .get('/internal/security/fields/test') + .set(svlCommonApi.getInternalRequestHeader()) + .send({ params: 'params' }); + svlCommonApi.assertApiNotFound(body, status); + }); + + it('fix deprecated roles', async () => { + const { body, status } = await supertest + .post('/internal/security/deprecations/kibana_user_role/_fix_users') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + it('fix deprecated role mappings', async () => { + const { body, status } = await supertest + .post('/internal/security/deprecations/kibana_user_role/_fix_role_mappings') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + it('get security checkup state', async () => { + const { body, status } = await supertest + .get('/internal/security/security_checkup/state') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + }); + + describe('internal', () => { + it('get record auth type', async () => { + const { status } = await supertest + .post('/internal/security/analytics/_record_auth_type') + .set(svlCommonApi.getInternalRequestHeader()); + expect(status).toBe(200); + }); + }); + }); + }); +} diff --git a/x-pack/test_serverless/api_integration/test_suites/common/security_response_headers.ts b/x-pack/test_serverless/api_integration/test_suites/common/security/response_headers.ts similarity index 95% rename from x-pack/test_serverless/api_integration/test_suites/common/security_response_headers.ts rename to x-pack/test_serverless/api_integration/test_suites/common/security/response_headers.ts index 01d1c1b147aa8..56a52914cf9a0 100644 --- a/x-pack/test_serverless/api_integration/test_suites/common/security_response_headers.ts +++ b/x-pack/test_serverless/api_integration/test_suites/common/security/response_headers.ts @@ -6,13 +6,13 @@ */ import expect from 'expect'; -import { FtrProviderContext } from '../../ftr_provider_context'; +import { FtrProviderContext } from '../../../ftr_provider_context'; export default function ({ getService }: FtrProviderContext) { const svlCommonApi = getService('svlCommonApi'); const supertest = getService('supertest'); - describe('security response headers', function () { + describe('security/response_headers', function () { const defaultCSP = `script-src 'self'; worker-src blob: 'self'; style-src 'unsafe-inline' 'self'; frame-ancestors 'self'`; const defaultCOOP = 'same-origin'; const defaultPermissionsPolicy = diff --git a/x-pack/test_serverless/api_integration/test_suites/common/security/role_mappings.ts b/x-pack/test_serverless/api_integration/test_suites/common/security/role_mappings.ts new file mode 100644 index 0000000000000..4d1f25cfd772f --- /dev/null +++ b/x-pack/test_serverless/api_integration/test_suites/common/security/role_mappings.ts @@ -0,0 +1,55 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { FtrProviderContext } from '../../../ftr_provider_context'; + +export default function ({ getService }: FtrProviderContext) { + const svlCommonApi = getService('svlCommonApi'); + const supertest = getService('supertest'); + + describe('security/role_mappings', function () { + describe('route access', () => { + describe('disabled', () => { + it('create/update role mapping', async () => { + const { body, status } = await supertest + .post('/internal/security/role_mapping/test') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + it('get role mapping', async () => { + const { body, status } = await supertest + .get('/internal/security/role_mapping/test') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + it('get all role mappings', async () => { + const { body, status } = await supertest + .get('/internal/security/role_mapping') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + it('delete role mapping', async () => { + // this test works because the message for a missing endpoint is different from a missing role mapping + const { body, status } = await supertest + .delete('/internal/security/role_mapping/test') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + it('role mapping feature check', async () => { + const { body, status } = await supertest + .get('/internal/security/_check_role_mapping_features') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + }); + }); + }); +} diff --git a/x-pack/test_serverless/api_integration/test_suites/common/security/sessions.ts b/x-pack/test_serverless/api_integration/test_suites/common/security/sessions.ts new file mode 100644 index 0000000000000..2148447fa736f --- /dev/null +++ b/x-pack/test_serverless/api_integration/test_suites/common/security/sessions.ts @@ -0,0 +1,78 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from 'expect'; +import { FtrProviderContext } from '../../../ftr_provider_context'; + +export default function ({ getService }: FtrProviderContext) { + const svlCommonApi = getService('svlCommonApi'); + const supertest = getService('supertest'); + + describe('security/sessions', function () { + describe('route access', () => { + describe('disabled', () => { + it('invalidate', async () => { + const { body, status } = await supertest + .post('/api/security/session/_invalidate') + .set(svlCommonApi.getInternalRequestHeader()) + .send({ match: 'all' }); + svlCommonApi.assertApiNotFound(body, status); + }); + }); + + describe('internal', () => { + it('get session info', async () => { + let body: any; + let status: number; + + ({ body, status } = await supertest + .get('/internal/security/session') + .set(svlCommonApi.getCommonRequestHeader())); + // expect a rejection because we're not using the internal header + expect(body).toEqual({ + statusCode: 400, + error: 'Bad Request', + message: expect.stringContaining( + 'method [get] exists but is not available with the current configuration' + ), + }); + expect(status).toBe(400); + + ({ body, status } = await supertest + .get('/internal/security/session') + .set(svlCommonApi.getInternalRequestHeader())); + // expect 204 because there is no session + expect(status).toBe(204); + }); + + it('extend', async () => { + let body: any; + let status: number; + + ({ body, status } = await supertest + .post('/internal/security/session') + .set(svlCommonApi.getCommonRequestHeader())); + // expect a rejection because we're not using the internal header + expect(body).toEqual({ + statusCode: 400, + error: 'Bad Request', + message: expect.stringContaining( + 'method [post] exists but is not available with the current configuration' + ), + }); + expect(status).toBe(400); + + ({ body, status } = await supertest + .post('/internal/security/session') + .set(svlCommonApi.getInternalRequestHeader())); + // expect redirect + expect(status).toBe(302); + }); + }); + }); + }); +} diff --git a/x-pack/test_serverless/api_integration/test_suites/common/security/user_profiles.ts b/x-pack/test_serverless/api_integration/test_suites/common/security/user_profiles.ts new file mode 100644 index 0000000000000..79555fd0953f6 --- /dev/null +++ b/x-pack/test_serverless/api_integration/test_suites/common/security/user_profiles.ts @@ -0,0 +1,48 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from 'expect'; +import { kibanaTestUser } from '@kbn/test'; +import { FtrProviderContext } from '../../../ftr_provider_context'; + +export default function ({ getService }: FtrProviderContext) { + const svlCommonApi = getService('svlCommonApi'); + const supertestWithoutAuth = getService('supertestWithoutAuth'); + const samlTools = getService('samlTools'); + + describe('security/user_profiles', function () { + describe('route access', () => { + describe('internal', () => { + it('update', async () => { + const { status } = await supertestWithoutAuth + .post(`/internal/security/user_profile/_data`) + .set(svlCommonApi.getInternalRequestHeader()) + .set(await samlTools.login(kibanaTestUser.username)) + .send({ key: 'value' }); + expect(status).not.toBe(404); + }); + + it('get current', async () => { + const { status } = await supertestWithoutAuth + .get(`/internal/security/user_profile`) + .set(svlCommonApi.getInternalRequestHeader()) + .set(await samlTools.login(kibanaTestUser.username)); + expect(status).not.toBe(404); + }); + + it('bulk get', async () => { + const { status } = await supertestWithoutAuth + .get(`/internal/security/user_profile`) + .set(svlCommonApi.getInternalRequestHeader()) + .set(await samlTools.login(kibanaTestUser.username)) + .send({ uids: ['12345678'] }); + expect(status).not.toBe(404); + }); + }); + }); + }); +} diff --git a/x-pack/test_serverless/api_integration/test_suites/common/security/users.ts b/x-pack/test_serverless/api_integration/test_suites/common/security/users.ts new file mode 100644 index 0000000000000..2feaa8878d1ef --- /dev/null +++ b/x-pack/test_serverless/api_integration/test_suites/common/security/users.ts @@ -0,0 +1,132 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from 'expect'; +import { FtrProviderContext } from '../../../ftr_provider_context'; + +export default function ({ getService }: FtrProviderContext) { + const svlCommonApi = getService('svlCommonApi'); + const supertest = getService('supertest'); + + describe('security/users', function () { + describe('route access', () => { + // ToDo: uncomment when we disable user APIs + // describe('disabled', () => { + // it('get', async () => { + // const { body, status } = await supertest + // .get('/internal/security/users/elastic') + // .set(svlCommonApi.getInternalRequestHeader()); + // svlCommonApi.assertApiNotFound(body, status); + // }); + + // it('get all', async () => { + // const { body, status } = await supertest + // .get('/internal/security/users') + // .set(svlCommonApi.getInternalRequestHeader()); + // svlCommonApi.assertApiNotFound(body, status); + // }); + + // it('create/update', async () => { + // const { body, status } = await supertest + // .post(`/internal/security/users/some_testuser`) + // .set(svlCommonApi.getInternalRequestHeader()) + // .send({ username: 'some_testuser', password: 'testpassword', roles: [] }); + // svlCommonApi.assertApiNotFound(body, status); + // }); + + // it('delete', async () => { + // const { body, status } = await supertest + // .delete(`/internal/security/users/elastic`) + // .set(svlCommonApi.getInternalRequestHeader()); + // svlCommonApi.assertApiNotFound(body, status); + // }); + + // it('disable', async () => { + // const { body, status } = await supertest + // .post(`/internal/security/users/elastic/_disable`) + // .set(svlCommonApi.getInternalRequestHeader()); + // svlCommonApi.assertApiNotFound(body, status); + // }); + + // it('enable', async () => { + // const { body, status } = await supertest + // .post(`/internal/security/users/elastic/_enable`) + // .set(svlCommonApi.getInternalRequestHeader()); + // svlCommonApi.assertApiNotFound(body, status); + // }); + + // it('set password', async () => { + // const { body, status } = await supertest + // .post(`/internal/security/users/{username}/password`) + // .set(svlCommonApi.getInternalRequestHeader()) + // .send({ + // password: 'old_pw', + // newPassword: 'new_pw', + // }); + // svlCommonApi.assertApiNotFound(body, status); + // }); + // }); + + // ToDo: remove when we disable user APIs + describe('internal', () => { + it('get', async () => { + const { status } = await supertest + .get('/internal/security/users/elastic') + .set(svlCommonApi.getInternalRequestHeader()); + expect(status).not.toBe(404); + }); + + it('get all', async () => { + const { status } = await supertest + .get('/internal/security/users') + .set(svlCommonApi.getInternalRequestHeader()); + expect(status).not.toBe(404); + }); + + it('create/update', async () => { + const { status } = await supertest + .post(`/internal/security/users/some_testuser`) + .set(svlCommonApi.getInternalRequestHeader()) + .send({ username: 'some_testuser', password: 'testpassword', roles: [] }); + expect(status).not.toBe(404); + }); + + it('delete', async () => { + const { status } = await supertest + .delete(`/internal/security/users/elastic`) + .set(svlCommonApi.getInternalRequestHeader()); + expect(status).not.toBe(404); + }); + + it('disable', async () => { + const { status } = await supertest + .post(`/internal/security/users/elastic/_disable`) + .set(svlCommonApi.getInternalRequestHeader()); + expect(status).not.toBe(404); + }); + + it('enable', async () => { + const { status } = await supertest + .post(`/internal/security/users/elastic/_enable`) + .set(svlCommonApi.getInternalRequestHeader()); + expect(status).not.toBe(404); + }); + + it('set password', async () => { + const { status } = await supertest + .post(`/internal/security/users/{username}/password`) + .set(svlCommonApi.getInternalRequestHeader()) + .send({ + password: 'old_pw', + newPassword: 'new_pw', + }); + expect(status).not.toBe(404); + }); + }); + }); + }); +} diff --git a/x-pack/test_serverless/api_integration/test_suites/common/security/views.ts b/x-pack/test_serverless/api_integration/test_suites/common/security/views.ts new file mode 100644 index 0000000000000..ac1d994252c57 --- /dev/null +++ b/x-pack/test_serverless/api_integration/test_suites/common/security/views.ts @@ -0,0 +1,114 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from 'expect'; +import { FtrProviderContext } from '../../../ftr_provider_context'; + +export default function ({ getService }: FtrProviderContext) { + const svlCommonApi = getService('svlCommonApi'); + const supertest = getService('supertest'); + + describe('security/views', function () { + describe('route access', () => { + describe('disabled', () => { + // ToDo: uncomment these when we disable login routes + // it('login', async () => { + // const { body, status } = await supertest + // .get('/login') + // .set(svlCommonApi.getInternalRequestHeader()); + // svlCommonApi.assertApiNotFound(body, status); + // }); + + // it('get login state', async () => { + // const { body, status } = await supertest + // .get('/internal/security/login_state') + // .set(svlCommonApi.getInternalRequestHeader()); + // svlCommonApi.assertApiNotFound(body, status); + // }); + + it('access agreement', async () => { + const { body, status } = await supertest + .get('/security/access_agreement') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + + it('get access agreement state', async () => { + const { body, status } = await supertest + .get('/internal/security/access_agreement/state') + .set(svlCommonApi.getInternalRequestHeader()); + svlCommonApi.assertApiNotFound(body, status); + }); + }); + + describe('public', () => { + it('login', async () => { + const { status } = await supertest + .get('/login') + .set(svlCommonApi.getInternalRequestHeader()); + expect(status).toBe(302); + }); + + it('get login state', async () => { + const { status } = await supertest + .get('/internal/security/login_state') + .set(svlCommonApi.getInternalRequestHeader()); + expect(status).toBe(200); + }); + + it('capture URL', async () => { + const { status } = await supertest + .get('/internal/security/capture-url') + .set(svlCommonApi.getCommonRequestHeader()); + expect(status).toBe(200); + }); + + it('space selector', async () => { + const { status } = await supertest + .get('/spaces/space_selector') + .set(svlCommonApi.getCommonRequestHeader()); + expect(status).toBe(200); + }); + + it('enter space', async () => { + const { status } = await supertest + .get('/spaces/enter') + .set(svlCommonApi.getCommonRequestHeader()); + expect(status).toBe(302); + }); + + it('account', async () => { + const { status } = await supertest + .get('/security/account') + .set(svlCommonApi.getCommonRequestHeader()); + expect(status).toBe(200); + }); + + it('logged out', async () => { + const { status } = await supertest + .get('/security/logged_out') + .set(svlCommonApi.getCommonRequestHeader()); + expect(status).toBe(200); + }); + + it('logout', async () => { + const { status } = await supertest + .get('/logout') + .set(svlCommonApi.getCommonRequestHeader()); + expect(status).toBe(200); + }); + + it('overwritten session', async () => { + const { status } = await supertest + .get('/security/overwritten_session') + .set(svlCommonApi.getCommonRequestHeader()); + expect(status).toBe(200); + }); + }); + }); + }); +} diff --git a/x-pack/test_serverless/api_integration/test_suites/common/security_users.ts b/x-pack/test_serverless/api_integration/test_suites/common/security_users.ts deleted file mode 100644 index 2c82e216505b9..0000000000000 --- a/x-pack/test_serverless/api_integration/test_suites/common/security_users.ts +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -import { FtrProviderContext } from '../../ftr_provider_context'; - -export default function ({ getService }: FtrProviderContext) { - const svlCommonApi = getService('svlCommonApi'); - const supertest = getService('supertest'); - - // Test should be unskipped when the API is disabled - // https://github.com/elastic/kibana/issues/161337 - describe.skip('security/users', function () { - it('rejects request to create user', async () => { - const { body, status } = await supertest - .post(`/internal/security/users/some_testuser`) - .set(svlCommonApi.getInternalRequestHeader()) - .send({ username: 'some_testuser', password: 'testpassword', roles: [] }); - - // in a non-serverless environment this would succeed with a 200 - svlCommonApi.assertResponseStatusCode(400, status, body); - }); - }); -} diff --git a/x-pack/test_serverless/api_integration/test_suites/common/spaces.ts b/x-pack/test_serverless/api_integration/test_suites/common/spaces.ts index fcb3dfe84fd17..78c2456f85ca1 100644 --- a/x-pack/test_serverless/api_integration/test_suites/common/spaces.ts +++ b/x-pack/test_serverless/api_integration/test_suites/common/spaces.ts @@ -13,44 +13,200 @@ export default function ({ getService }: FtrProviderContext) { const supertest = getService('supertest'); describe('spaces', function () { - it('rejects request to create a space', async () => { - const { body, status } = await supertest - .post('/api/spaces/space') - .set(svlCommonApi.getInternalRequestHeader()) - .send({ - id: 'custom', - name: 'Custom', - disabledFeatures: [], - }); - - // in a non-serverless environment this would succeed with a 200 - expect(body).toEqual({ - statusCode: 400, - error: 'Bad Request', - message: - 'Unable to create Space, this exceeds the maximum number of spaces set by the xpack.spaces.maxSpaces setting', + describe('route access', () => { + describe('disabled', () => { + it('#delete', async () => { + const { body, status } = await supertest + .delete('/api/spaces/space/default') + .set(svlCommonApi.getCommonRequestHeader()); + + // normally we'd get a 400 bad request if we tried to delete the default space + svlCommonApi.assertApiNotFound(body, status); + }); + + it('#create', async () => { + const { body, status } = await supertest + .post('/api/spaces/space') + .set(svlCommonApi.getCommonRequestHeader()) + .send({ + id: 'custom', + name: 'Custom', + disabledFeatures: [], + }); + + svlCommonApi.assertApiNotFound(body, status); + }); + + it('#update requires internal header', async () => { + const { body, status } = await supertest + .put('/api/spaces/space/default') + .set(svlCommonApi.getCommonRequestHeader()) + .send({ + id: 'default', + name: 'UPDATED!', + disabledFeatures: [], + }); + + svlCommonApi.assertApiNotFound(body, status); + }); + + it('#copyToSpace', async () => { + const { body, status } = await supertest + .post('/api/spaces/_copy_saved_objects') + .set(svlCommonApi.getCommonRequestHeader()); + + // without a request body we would normally a 400 bad request if the endpoint was registered + svlCommonApi.assertApiNotFound(body, status); + }); + + it('#resolveCopyToSpaceErrors', async () => { + const { body, status } = await supertest + .post('/api/spaces/_resolve_copy_saved_objects_errors') + .set(svlCommonApi.getCommonRequestHeader()); + + // without a request body we would normally a 400 bad request if the endpoint was registered + svlCommonApi.assertApiNotFound(body, status); + }); + + it('#updateObjectsSpaces', async () => { + const { body, status } = await supertest + .post('/api/spaces/_update_objects_spaces') + .set(svlCommonApi.getCommonRequestHeader()); + + // without a request body we would normally a 400 bad request if the endpoint was registered + svlCommonApi.assertApiNotFound(body, status); + }); + + it('#getShareableReferences', async () => { + const { body, status } = await supertest + .post('/api/spaces/_get_shareable_references') + .set(svlCommonApi.getCommonRequestHeader()); + + // without a request body we would normally a 400 bad request if the endpoint was registered + svlCommonApi.assertApiNotFound(body, status); + }); + + it('#disableLegacyUrlAliases', async () => { + const { body, status } = await supertest + .post('/api/spaces/_disable_legacy_url_aliases') + .set(svlCommonApi.getCommonRequestHeader()); + + // without a request body we would normally a 400 bad request if the endpoint was registered + svlCommonApi.assertApiNotFound(body, status); + }); }); - expect(status).toBe(400); - }); - it('rejects request to update a space with disabledFeatures', async () => { - const { body, status } = await supertest - .put('/api/spaces/space/default') - .set(svlCommonApi.getInternalRequestHeader()) - .send({ - id: 'custom', - name: 'Custom', - disabledFeatures: ['some-feature'], - }); - - // in a non-serverless environment this would succeed with a 200 - expect(body).toEqual({ - statusCode: 400, - error: 'Bad Request', - message: - 'Unable to update Space, the disabledFeatures array must be empty when xpack.spaces.allowFeatureVisibility setting is disabled', + describe('internal', () => { + it('#get requires internal header', async () => { + let body: any; + let status: number; + + ({ body, status } = await supertest + .get('/api/spaces/space/default') + .set(svlCommonApi.getCommonRequestHeader())); + // expect a rejection because we're not using the internal header + expect(body).toEqual({ + statusCode: 400, + error: 'Bad Request', + message: expect.stringContaining( + 'method [get] exists but is not available with the current configuration' + ), + }); + expect(status).toBe(400); + + ({ body, status } = await supertest + .get('/api/spaces/space/default') + .set(svlCommonApi.getInternalRequestHeader())); + // expect success because we're using the internal header + expect(body).toEqual( + expect.objectContaining({ + id: 'default', + }) + ); + expect(status).toBe(200); + }); + + it('#getAll requires internal header', async () => { + let body: any; + let status: number; + + ({ body, status } = await supertest + .get('/api/spaces/space') + .set(svlCommonApi.getCommonRequestHeader())); + // expect a rejection because we're not using the internal header + expect(body).toEqual({ + statusCode: 400, + error: 'Bad Request', + message: expect.stringContaining( + 'method [get] exists but is not available with the current configuration' + ), + }); + expect(status).toBe(400); + + ({ body, status } = await supertest + .get('/api/spaces/space') + .set(svlCommonApi.getInternalRequestHeader())); + // expect success because we're using the internal header + expect(body).toEqual( + expect.arrayContaining([ + expect.objectContaining({ + id: 'default', + }), + ]) + ); + expect(status).toBe(200); + }); + + it('#getActiveSpace requires internal header', async () => { + let body: any; + let status: number; + + ({ body, status } = await supertest + .get('/internal/spaces/_active_space') + .set(svlCommonApi.getCommonRequestHeader())); + // expect a rejection because we're not using the internal header + expect(body).toEqual({ + statusCode: 400, + error: 'Bad Request', + message: expect.stringContaining( + 'method [get] exists but is not available with the current configuration' + ), + }); + expect(status).toBe(400); + + ({ body, status } = await supertest + .get('/internal/spaces/_active_space') + .set(svlCommonApi.getInternalRequestHeader())); + // expect success because we're using the internal header + expect(body).toEqual( + expect.objectContaining({ + id: 'default', + }) + ); + expect(status).toBe(200); + }); }); - expect(status).toBe(400); }); + + // TODO: Re-enable test-suite once users can create and update spaces in the Serverless offering. + // it('rejects request to update a space with disabledFeatures', async () => { + // const { body, status } = await supertest + // .put('/api/spaces/space/default') + // .set(svlCommonApi.getInternalRequestHeader()) + // .send({ + // id: 'custom', + // name: 'Custom', + // disabledFeatures: ['some-feature'], + // }); + // + // // in a non-serverless environment this would succeed with a 200 + // expect(body).toEqual({ + // statusCode: 400, + // error: 'Bad Request', + // message: + // 'Unable to update Space, the disabledFeatures array must be empty when xpack.spaces.allowFeatureVisibility setting is disabled', + // }); + // expect(status).toBe(400); + // }); }); } diff --git a/x-pack/test_serverless/functional/test_suites/common/data_view_mgmt.ts b/x-pack/test_serverless/functional/test_suites/common/data_view_mgmt.ts new file mode 100644 index 0000000000000..7e41ed68f8def --- /dev/null +++ b/x-pack/test_serverless/functional/test_suites/common/data_view_mgmt.ts @@ -0,0 +1,54 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from 'expect'; +import { DATA_VIEW_PATH } from '@kbn/data-views-plugin/server'; +import { FtrProviderContext } from '../../ftr_provider_context'; + +const archivePath = 'test/api_integration/fixtures/es_archiver/index_patterns/basic_index'; + +export default function ({ getService, getPageObjects }: FtrProviderContext) { + const PageObjects = getPageObjects(['settings', 'common', 'header']); + const esArchiver = getService('esArchiver'); + const supertest = getService('supertest'); + const testSubjects = getService('testSubjects'); + + describe('Data View Management', function () { + let dataViewId = ''; + + before(async () => { + await esArchiver.load(archivePath); + + const response = await supertest + .post(DATA_VIEW_PATH) + .set('kbn-xsrf', 'some-xsrf-token') + .send({ + data_view: { + title: 'basic_index', + }, + override: true, + }); + + expect(response.status).toBe(200); + dataViewId = response.body.data_view.id; + }); + + after(async () => { + await esArchiver.unload(archivePath); + await supertest.delete(`${DATA_VIEW_PATH}/${dataViewId}`).set('kbn-xsrf', 'some-xsrf-token'); + }); + + it('Scripted fields tab is missing', async () => { + await PageObjects.common.navigateToUrl('management', 'kibana/dataViews', { + shouldUseHashForSubUrl: false, + }); + await testSubjects.click('detail-link-basic_index'); + await testSubjects.exists('tab-indexedFields'); + await testSubjects.missingOrFail('tab-scriptedFields'); + }); + }); +} diff --git a/x-pack/test_serverless/functional/test_suites/common/index.ts b/x-pack/test_serverless/functional/test_suites/common/index.ts index 7150589527b04..08e816c9bdfda 100644 --- a/x-pack/test_serverless/functional/test_suites/common/index.ts +++ b/x-pack/test_serverless/functional/test_suites/common/index.ts @@ -17,5 +17,8 @@ export default function ({ loadTestFile }: FtrProviderContext) { // Management loadTestFile(require.resolve('./index_management')); + + // Data View Management + loadTestFile(require.resolve('./data_view_mgmt')); }); } diff --git a/x-pack/test_serverless/functional/test_suites/common/index_management/index.ts b/x-pack/test_serverless/functional/test_suites/common/index_management/index.ts index 52472972a1faa..e4c394551af72 100644 --- a/x-pack/test_serverless/functional/test_suites/common/index_management/index.ts +++ b/x-pack/test_serverless/functional/test_suites/common/index_management/index.ts @@ -10,5 +10,6 @@ import { FtrProviderContext } from '../../../ftr_provider_context'; export default ({ loadTestFile }: FtrProviderContext) => { describe('Index Management', function () { loadTestFile(require.resolve('./index_templates')); + loadTestFile(require.resolve('./indices')); }); }; diff --git a/x-pack/test_serverless/functional/test_suites/common/index_management/indices.ts b/x-pack/test_serverless/functional/test_suites/common/index_management/indices.ts new file mode 100644 index 0000000000000..02b6acdfbfa56 --- /dev/null +++ b/x-pack/test_serverless/functional/test_suites/common/index_management/indices.ts @@ -0,0 +1,35 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { FtrProviderContext } from '../../../ftr_provider_context'; + +export default ({ getPageObjects, getService }: FtrProviderContext) => { + const testSubjects = getService('testSubjects'); + const pageObjects = getPageObjects(['common', 'indexManagement', 'header']); + const browser = getService('browser'); + const security = getService('security'); + const retry = getService('retry'); + + describe('Indices', function () { + before(async () => { + await security.testUser.setRoles(['index_management_user']); + await pageObjects.common.navigateToApp('indexManagement'); + // Navigate to the indices tab + await pageObjects.indexManagement.changeTabs('indicesTab'); + }); + + it('renders the indices tab', async () => { + await retry.waitFor('indices list to be visible', async () => { + return await testSubjects.exists('indicesList'); + }); + + const url = await browser.getCurrentUrl(); + expect(url).to.contain(`/indices`); + }); + }); +}; diff --git a/x-pack/test_serverless/functional/test_suites/observability/cases/configure.ts b/x-pack/test_serverless/functional/test_suites/observability/cases/configure.ts new file mode 100644 index 0000000000000..bc007a7ad4b7b --- /dev/null +++ b/x-pack/test_serverless/functional/test_suites/observability/cases/configure.ts @@ -0,0 +1,58 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { FtrProviderContext } from '../../../ftr_provider_context'; + +export default ({ getPageObject, getService }: FtrProviderContext) => { + const common = getPageObject('common'); + const svlCommonNavigation = getPageObject('svlCommonNavigation'); + const svlObltNavigation = getService('svlObltNavigation'); + const testSubjects = getService('testSubjects'); + const cases = getService('cases'); + const toasts = getService('toasts'); + + describe('Configure', function () { + before(async () => { + await svlObltNavigation.navigateToLandingPage(); + + await svlCommonNavigation.sidenav.clickLink({ deepLinkId: 'observability-overview:cases' }); + + await common.clickAndValidate('configure-case-button', 'case-configure-title'); + }); + + after(async () => { + await cases.api.deleteAllCases(); + }); + + describe('Closure options', function () { + it('defaults the closure option correctly', async () => { + await cases.common.assertRadioGroupValue('closure-options-radio-group', 'close-by-user'); + }); + + it('change closure option successfully', async () => { + await cases.common.selectRadioGroupValue('closure-options-radio-group', 'close-by-pushing'); + const toast = await toasts.getToastElement(1); + expect(await toast.getVisibleText()).to.be('Saved external connection settings'); + await toasts.dismissAllToasts(); + }); + }); + + describe('Connectors', function () { + it('defaults the connector to none correctly', async () => { + expect(await testSubjects.exists('dropdown-connector-no-connector')).to.be(true); + }); + + it('opens and closes the connectors flyout correctly', async () => { + await common.clickAndValidate('dropdown-connectors', 'dropdown-connector-add-connector'); + await common.clickAndValidate('dropdown-connector-add-connector', 'euiFlyoutCloseButton'); + await testSubjects.click('euiFlyoutCloseButton'); + expect(await testSubjects.exists('euiFlyoutCloseButton')).to.be(false); + }); + }); + }); +}; diff --git a/x-pack/test_serverless/functional/test_suites/observability/cases/create_case_form.ts b/x-pack/test_serverless/functional/test_suites/observability/cases/create_case_form.ts new file mode 100644 index 0000000000000..fdf12469cad3d --- /dev/null +++ b/x-pack/test_serverless/functional/test_suites/observability/cases/create_case_form.ts @@ -0,0 +1,138 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { v4 as uuidv4 } from 'uuid'; +import { CaseSeverity } from '@kbn/cases-plugin/common/types/domain'; +import { OBSERVABILITY_OWNER } from '@kbn/cases-plugin/common'; +import { FtrProviderContext } from '../../../ftr_provider_context'; +import { navigateToCasesApp } from '../../../../shared/lib/cases'; + +const owner = OBSERVABILITY_OWNER; + +export default ({ getService, getPageObject }: FtrProviderContext) => { + describe('Create case', function () { + const find = getService('find'); + const cases = getService('cases'); + const testSubjects = getService('testSubjects'); + const config = getService('config'); + + beforeEach(async () => { + await navigateToCasesApp(getPageObject, getService, owner); + }); + + after(async () => { + await cases.api.deleteAllCases(); + }); + + it('creates a case', async () => { + const caseTitle = 'test-' + uuidv4(); + await cases.create.openCreateCasePage(); + await cases.create.createCase({ + title: caseTitle, + description: 'test description', + tag: 'tagme', + severity: CaseSeverity.HIGH, + category: 'new', + }); + + await testSubjects.click('create-case-submit'); + + await testSubjects.existOrFail('case-view-title', { + timeout: config.get('timeouts.waitFor'), + }); + + // validate title + const title = await find.byCssSelector('[data-test-subj="editable-title-header-value"]'); + expect(await title.getVisibleText()).equal(caseTitle); + + // validate description + const description = await testSubjects.find('scrollable-markdown'); + expect(await description.getVisibleText()).equal('test description'); + + // validate tag exists + await testSubjects.existOrFail('tag-tagme'); + + // validate category exists + await testSubjects.existOrFail('category-viewer-new'); + + // validate no connector added + const button = await find.byCssSelector('[data-test-subj*="case-callout"] button'); + expect(await button.getVisibleText()).equal('Add connector'); + }); + + it('displays errors correctly while creating a case', async () => { + const caseTitle = Array(161).fill('x').toString(); + const longTag = Array(256).fill('a').toString(); + const longCategory = Array(51).fill('x').toString(); + + await cases.create.openCreateCasePage(); + await cases.create.createCase({ + title: caseTitle, + description: '', + tag: longTag, + severity: CaseSeverity.HIGH, + category: longCategory, + }); + + await testSubjects.click('create-case-submit'); + + const title = await find.byCssSelector('[data-test-subj="caseTitle"]'); + expect(await title.getVisibleText()).contain( + 'The length of the name is too long. The maximum length is 160 characters.' + ); + + const description = await testSubjects.find('caseDescription'); + expect(await description.getVisibleText()).contain('A description is required.'); + + const tags = await testSubjects.find('caseTags'); + expect(await tags.getVisibleText()).contain( + 'The length of the tag is too long. The maximum length is 256 characters.' + ); + + const category = await testSubjects.find('case-create-form-category'); + expect(await category.getVisibleText()).contain( + 'The length of the category is too long. The maximum length is 50 characters.' + ); + }); + + it('trims fields correctly while creating a case', async () => { + const titleWithSpace = 'This is a title with spaces '; + const descriptionWithSpace = + 'This is a case description with empty spaces at the end!! '; + const categoryWithSpace = 'security '; + const tagWithSpace = 'coke '; + + await cases.create.openCreateCasePage(); + await cases.create.createCase({ + title: titleWithSpace, + description: descriptionWithSpace, + tag: tagWithSpace, + severity: CaseSeverity.HIGH, + category: categoryWithSpace, + }); + + await testSubjects.click('create-case-submit'); + + // validate title is trimmed + const title = await find.byCssSelector('[data-test-subj="editable-title-header-value"]'); + expect(await title.getVisibleText()).equal(titleWithSpace.trim()); + + // validate description is trimmed + const description = await testSubjects.find('scrollable-markdown'); + expect(await description.getVisibleText()).equal(descriptionWithSpace.trim()); + + // validate tag exists and is trimmed + const tag = await testSubjects.find(`tag-${tagWithSpace.trim()}`); + expect(await tag.getVisibleText()).equal(tagWithSpace.trim()); + + // validate category exists and is trimmed + const category = await testSubjects.find(`category-viewer-${categoryWithSpace.trim()}`); + expect(await category.getVisibleText()).equal(categoryWithSpace.trim()); + }); + }); +}; diff --git a/x-pack/test_serverless/functional/test_suites/observability/cases/list_view.ts b/x-pack/test_serverless/functional/test_suites/observability/cases/list_view.ts new file mode 100644 index 0000000000000..cb4aa44b09c35 --- /dev/null +++ b/x-pack/test_serverless/functional/test_suites/observability/cases/list_view.ts @@ -0,0 +1,284 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { CaseSeverity, CaseStatuses } from '@kbn/cases-plugin/common/types/domain'; +import { SeverityAll } from '@kbn/cases-plugin/common/ui'; +import { FtrProviderContext } from '../../../ftr_provider_context'; + +export default ({ getPageObject, getService }: FtrProviderContext) => { + const header = getPageObject('header'); + const testSubjects = getService('testSubjects'); + const cases = getService('cases'); + const svlCommonNavigation = getPageObject('svlCommonNavigation'); + const svlObltNavigation = getService('svlObltNavigation'); + + describe('cases list', () => { + before(async () => { + await svlObltNavigation.navigateToLandingPage(); + await svlCommonNavigation.sidenav.clickLink({ deepLinkId: 'observability-overview:cases' }); + }); + + after(async () => { + await cases.api.deleteAllCases(); + await cases.casesTable.waitForCasesToBeDeleted(); + }); + + describe('empty state', () => { + it('displays an empty list with an add button correctly', async () => { + await testSubjects.existOrFail('cases-table-add-case'); + }); + }); + + describe('listing', () => { + createNCasesBeforeDeleteAllAfter(2, getPageObject, getService); + + it('lists cases correctly', async () => { + await cases.casesTable.validateCasesTableHasNthRows(2); + }); + }); + + describe('bulk actions', () => { + describe('delete', () => { + createNCasesBeforeDeleteAllAfter(8, getPageObject, getService); + + it('bulk delete cases from the list', async () => { + await cases.casesTable.selectAndDeleteAllCases(); + await cases.casesTable.waitForTableToFinishLoading(); + await cases.casesTable.validateCasesTableHasNthRows(0); + }); + }); + + describe('status', () => { + createNCasesBeforeDeleteAllAfter(2, getPageObject, getService); + + it('change the status of cases to in-progress correctly', async () => { + await cases.casesTable.selectAndChangeStatusOfAllCases(CaseStatuses['in-progress']); + await cases.casesTable.waitForTableToFinishLoading(); + await testSubjects.missingOrFail('case-status-badge-open'); + }); + }); + + describe('severity', () => { + createNCasesBeforeDeleteAllAfter(2, getPageObject, getService); + + it('change the severity of cases to medium correctly', async () => { + await cases.casesTable.selectAndChangeSeverityOfAllCases(CaseSeverity.MEDIUM); + await cases.casesTable.waitForTableToFinishLoading(); + await testSubjects.missingOrFail('case-table-column-severity-low'); + }); + }); + + describe('tags', () => { + let caseIds: string[] = []; + beforeEach(async () => { + caseIds = []; + const case1 = await cases.api.createCase({ + title: 'case 1', + tags: ['one', 'three'], + owner: 'observability', + }); + const case2 = await cases.api.createCase({ + title: 'case 2', + tags: ['two', 'four'], + owner: 'observability', + }); + const case3 = await cases.api.createCase({ + title: 'case 3', + tags: ['two', 'five'], + owner: 'observability', + }); + + caseIds.push(case1.id); + caseIds.push(case2.id); + caseIds.push(case3.id); + + await header.waitUntilLoadingHasFinished(); + await cases.casesTable.waitForCasesToBeListed(); + }); + + afterEach(async () => { + await cases.api.deleteAllCases(); + await cases.casesTable.waitForCasesToBeDeleted(); + }); + + it('bulk edit tags', async () => { + /** + * Case 3 tags: two, five + * Case 2 tags: two, four + * Case 1 tags: one, three + * All tags: one, two, three, four, five. + * + * It selects Case 3 and Case 2 because the table orders + * the cases in descending order by creation date and clicks + * the one, three, and five tags + */ + await cases.casesTable.bulkEditTags([0, 1], ['two', 'three', 'five']); + await header.waitUntilLoadingHasFinished(); + const case1 = await cases.api.getCase({ caseId: caseIds[0] }); + const case2 = await cases.api.getCase({ caseId: caseIds[1] }); + const case3 = await cases.api.getCase({ caseId: caseIds[2] }); + + expect(case3.tags).eql(['five', 'three']); + expect(case2.tags).eql(['four', 'five', 'three']); + expect(case1.tags).eql(['one', 'three']); + }); + + it('adds a new tag', async () => { + await cases.casesTable.bulkAddNewTag([0, 1], 'tw'); + await header.waitUntilLoadingHasFinished(); + + const case1 = await cases.api.getCase({ caseId: caseIds[0] }); + const case2 = await cases.api.getCase({ caseId: caseIds[1] }); + const case3 = await cases.api.getCase({ caseId: caseIds[2] }); + + expect(case3.tags).eql(['two', 'five', 'tw']); + expect(case2.tags).eql(['two', 'four', 'tw']); + expect(case1.tags).eql(['one', 'three']); + }); + }); + }); + + describe('severity filtering', () => { + before(async () => { + await svlCommonNavigation.sidenav.clickLink({ deepLinkId: 'observability-overview:cases' }); + + await cases.api.createCase({ severity: CaseSeverity.LOW, owner: 'observability' }); + await cases.api.createCase({ severity: CaseSeverity.LOW, owner: 'observability' }); + await cases.api.createCase({ severity: CaseSeverity.HIGH, owner: 'observability' }); + await cases.api.createCase({ severity: CaseSeverity.HIGH, owner: 'observability' }); + await cases.api.createCase({ severity: CaseSeverity.CRITICAL, owner: 'observability' }); + await header.waitUntilLoadingHasFinished(); + await cases.casesTable.waitForCasesToBeListed(); + }); + + beforeEach(async () => { + /** + * There is no easy way to clear the filtering. + * Refreshing the page seems to be easier. + */ + await svlCommonNavigation.sidenav.clickLink({ deepLinkId: 'observability-overview:cases' }); + }); + + after(async () => { + await cases.api.deleteAllCases(); + await cases.casesTable.waitForCasesToBeDeleted(); + }); + + it('filters cases by severity', async () => { + // by default filter by all + await cases.casesTable.validateCasesTableHasNthRows(5); + + // low + await cases.casesTable.filterBySeverity(CaseSeverity.LOW); + await cases.casesTable.validateCasesTableHasNthRows(2); + + // high + await cases.casesTable.filterBySeverity(CaseSeverity.HIGH); + await cases.casesTable.validateCasesTableHasNthRows(2); + + // critical + await cases.casesTable.filterBySeverity(CaseSeverity.CRITICAL); + await cases.casesTable.validateCasesTableHasNthRows(1); + + // back to all + await cases.casesTable.filterBySeverity(SeverityAll); + await cases.casesTable.validateCasesTableHasNthRows(5); + }); + }); + + describe('pagination', () => { + createNCasesBeforeDeleteAllAfter(12, getPageObject, getService); + + it('paginates cases correctly', async () => { + await testSubjects.click('tablePaginationPopoverButton'); + await testSubjects.click('tablePagination-25-rows'); + await testSubjects.missingOrFail('pagination-button-1'); + await testSubjects.click('tablePaginationPopoverButton'); + await testSubjects.click('tablePagination-10-rows'); + await testSubjects.isEnabled('pagination-button-1'); + await testSubjects.click('pagination-button-1'); + await testSubjects.isEnabled('pagination-button-0'); + }); + }); + + describe('row actions', () => { + describe('Status', () => { + createNCasesBeforeDeleteAllAfter(1, getPageObject, getService); + + it('to in progress', async () => { + await cases.casesTable.changeStatus(CaseStatuses['in-progress'], 0); + await testSubjects.existOrFail(`case-status-badge-${CaseStatuses['in-progress']}`); + }); + + it('to closed', async () => { + await cases.casesTable.changeStatus(CaseStatuses.closed, 0); + await testSubjects.existOrFail(`case-status-badge-${CaseStatuses.closed}`); + }); + + it('to open', async () => { + await cases.casesTable.changeStatus(CaseStatuses.open, 0); + await testSubjects.existOrFail(`case-status-badge-${CaseStatuses.open}`); + }); + }); + + describe('Severity', () => { + createNCasesBeforeDeleteAllAfter(1, getPageObject, getService); + + it('to medium', async () => { + await cases.casesTable.changeSeverity(CaseSeverity.MEDIUM, 0); + await testSubjects.existOrFail(`case-table-column-severity-${CaseSeverity.MEDIUM}`); + }); + + it('to high', async () => { + await cases.casesTable.changeSeverity(CaseSeverity.HIGH, 0); + await testSubjects.existOrFail(`case-table-column-severity-${CaseSeverity.HIGH}`); + }); + + it('to critical', async () => { + await cases.casesTable.changeSeverity(CaseSeverity.CRITICAL, 0); + await testSubjects.existOrFail(`case-table-column-severity-${CaseSeverity.CRITICAL}`); + }); + + it('to low', async () => { + await cases.casesTable.changeSeverity(CaseSeverity.LOW, 0); + await testSubjects.existOrFail(`case-table-column-severity-${CaseSeverity.LOW}`); + }); + }); + + describe('Delete', () => { + createNCasesBeforeDeleteAllAfter(1, getPageObject, getService); + + it('deletes a case correctly', async () => { + await cases.casesTable.deleteCase(0); + await cases.casesTable.waitForTableToFinishLoading(); + await cases.casesTable.validateCasesTableHasNthRows(0); + }); + }); + }); + }); +}; + +const createNCasesBeforeDeleteAllAfter = ( + numCasesToCreate: number, + getPageObject: FtrProviderContext['getPageObject'], + getService: FtrProviderContext['getService'] +) => { + const cases = getService('cases'); + const header = getPageObject('header'); + + before(async () => { + await cases.api.createNthRandomCases(numCasesToCreate, 'observability'); + await header.waitUntilLoadingHasFinished(); + await cases.casesTable.waitForCasesToBeListed(); + }); + + after(async () => { + await cases.api.deleteAllCases(); + await cases.casesTable.waitForCasesToBeDeleted(); + }); +}; diff --git a/x-pack/test_serverless/functional/test_suites/observability/index.ts b/x-pack/test_serverless/functional/test_suites/observability/index.ts index 70e76dbf3955f..f376e49f56daf 100644 --- a/x-pack/test_serverless/functional/test_suites/observability/index.ts +++ b/x-pack/test_serverless/functional/test_suites/observability/index.ts @@ -14,5 +14,8 @@ export default function ({ loadTestFile }: FtrProviderContext) { loadTestFile(require.resolve('./navigation')); loadDiscoverLogExplorerSuite(loadTestFile); loadTestFile(require.resolve('./cases/attachment_framework')); + loadTestFile(require.resolve('./cases/configure')); + loadTestFile(require.resolve('./cases/list_view')); + loadTestFile(require.resolve('./cases/create_case_form')); }); } diff --git a/x-pack/test_serverless/functional/test_suites/security/cypress/cypress.config.ts b/x-pack/test_serverless/functional/test_suites/security/cypress/cypress.config.ts index 0dad550eca84f..33d7c582835d2 100644 --- a/x-pack/test_serverless/functional/test_suites/security/cypress/cypress.config.ts +++ b/x-pack/test_serverless/functional/test_suites/security/cypress/cypress.config.ts @@ -6,7 +6,8 @@ */ import { defineCypressConfig } from '@kbn/cypress-config'; -import { setupDataLoaderTasks } from './support/setup_data_loader_tasks'; +import { dataLoaders as setupEndpointDataLoaders } from '@kbn/security-solution-plugin/public/management/cypress/support/data_loaders'; +import { setupUserDataLoader } from './support/setup_data_loader_tasks'; export default defineCypressConfig({ defaultCommandTimeout: 60000, @@ -25,7 +26,9 @@ export default defineCypressConfig({ supportFile: './support/e2e.js', specPattern: './e2e/**/*.cy.ts', setupNodeEvents: (on, config) => { - setupDataLoaderTasks(on, config); + // Reuse data loaders from endpoint management cypress setup + setupEndpointDataLoaders(on, config); + setupUserDataLoader(on, config, {}); }, }, }); diff --git a/x-pack/test_serverless/functional/test_suites/security/cypress/cypress.d.ts b/x-pack/test_serverless/functional/test_suites/security/cypress/cypress.d.ts index 00efee075c879..a3e6066621aa1 100644 --- a/x-pack/test_serverless/functional/test_suites/security/cypress/cypress.d.ts +++ b/x-pack/test_serverless/functional/test_suites/security/cypress/cypress.d.ts @@ -42,7 +42,7 @@ export interface LoadUserAndRoleCyTaskOptions { declare global { namespace Cypress { interface SuiteConfigOverrides { - env: { + env?: { ftrConfig: SecuritySolutionDescribeBlockFtrConfig; }; } diff --git a/x-pack/test_serverless/functional/test_suites/security/cypress/support/setup_data_loader_tasks.ts b/x-pack/test_serverless/functional/test_suites/security/cypress/support/setup_data_loader_tasks.ts index 5f6f03e50250e..65cbcf5aac212 100644 --- a/x-pack/test_serverless/functional/test_suites/security/cypress/support/setup_data_loader_tasks.ts +++ b/x-pack/test_serverless/functional/test_suites/security/cypress/support/setup_data_loader_tasks.ts @@ -6,17 +6,22 @@ */ import { createRuntimeServices } from '@kbn/security-solution-plugin/scripts/endpoint/common/stack_services'; -import { dataLoaders } from '@kbn/security-solution-plugin/public/management/cypress/support/data_loaders'; import { LoadUserAndRoleCyTaskOptions } from '../cypress'; -import { LoadedRoleAndUser, SecurityRoleAndUserLoader } from '../../../../../shared/lib'; +import { + LoadedRoleAndUser, + SecurityRoleAndUserLoader, + YamlRoleDefinitions, +} from '../../../../../shared/lib'; -export const setupDataLoaderTasks = ( +interface AdditionalDefinitions { + roleDefinitions?: YamlRoleDefinitions; + additionalRoleName?: string; +} +export const setupUserDataLoader = ( on: Cypress.PluginEvents, - config: Cypress.PluginConfigOptions + config: Cypress.PluginConfigOptions, + { roleDefinitions, additionalRoleName }: AdditionalDefinitions ) => { - // Reuse data loaders from endpoint management cypress setup - dataLoaders(on, config); - const stackServicesPromise = createRuntimeServices({ kibanaUrl: config.env.KIBANA_URL, elasticsearchUrl: config.env.ELASTICSEARCH_URL, @@ -29,7 +34,7 @@ export const setupDataLoaderTasks = ( const roleAndUserLoaderPromise: Promise<SecurityRoleAndUserLoader> = stackServicesPromise.then( ({ kbnClient, log }) => { - return new SecurityRoleAndUserLoader(kbnClient, log); + return new SecurityRoleAndUserLoader(kbnClient, log, roleDefinitions); } ); @@ -39,7 +44,7 @@ export const setupDataLoaderTasks = ( * @param name */ loadUserAndRole: async ({ name }: LoadUserAndRoleCyTaskOptions): Promise<LoadedRoleAndUser> => { - return (await roleAndUserLoaderPromise).load(name); + return (await roleAndUserLoaderPromise).load(name, additionalRoleName); }, }); }; diff --git a/x-pack/test_serverless/functional/test_suites/security/cypress/tasks/endpoint_management/response_actions.ts b/x-pack/test_serverless/functional/test_suites/security/cypress/tasks/endpoint_management/response_actions.ts index 52bf32414268a..cf371fe63c40a 100644 --- a/x-pack/test_serverless/functional/test_suites/security/cypress/tasks/endpoint_management/response_actions.ts +++ b/x-pack/test_serverless/functional/test_suites/security/cypress/tasks/endpoint_management/response_actions.ts @@ -33,7 +33,7 @@ export const ensureResponseActionAuthzAccess = ( password: string ): Cypress.Chainable => { let url: string = ''; - let apiPayload: unknown = { + let apiPayload: any = { endpoint_ids: ['some-id'], }; diff --git a/x-pack/test_serverless/functional/test_suites/security/cypress/tasks/login.ts b/x-pack/test_serverless/functional/test_suites/security/cypress/tasks/login.ts index 7b9d571d8c7c9..a8cd016ed6159 100644 --- a/x-pack/test_serverless/functional/test_suites/security/cypress/tasks/login.ts +++ b/x-pack/test_serverless/functional/test_suites/security/cypress/tasks/login.ts @@ -6,7 +6,6 @@ */ import { request } from '@kbn/security-solution-plugin/public/management/cypress/tasks/common'; -import { isLocalhost } from '@kbn/security-solution-plugin/scripts/endpoint/common/is_localhost'; import type { ServerlessRoleName } from '../../../../../shared/lib'; import { STANDARD_HTTP_HEADERS } from '../../../../../shared/lib/security/default_http_headers'; @@ -32,7 +31,7 @@ const sendApiLoginRequest = ( url: url.toString(), body: { providerType: 'basic', - providerName: isLocalhost(url.hostname) ? 'basic' : 'cloud-basic', + providerName: 'basic', currentURL: '/', params: { username, diff --git a/x-pack/test_serverless/functional/test_suites/security/ftr/cases/configure.ts b/x-pack/test_serverless/functional/test_suites/security/ftr/cases/configure.ts new file mode 100644 index 0000000000000..58931d60d6836 --- /dev/null +++ b/x-pack/test_serverless/functional/test_suites/security/ftr/cases/configure.ts @@ -0,0 +1,57 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { FtrProviderContext } from '../../../../ftr_provider_context'; + +export default ({ getPageObject, getService }: FtrProviderContext) => { + const common = getPageObject('common'); + const svlSecNavigation = getService('svlSecNavigation'); + const testSubjects = getService('testSubjects'); + const cases = getService('cases'); + const toasts = getService('toasts'); + + describe('Configure', function () { + before(async () => { + await svlSecNavigation.navigateToLandingPage(); + + await testSubjects.click('solutionSideNavItemLink-cases'); + + await common.clickAndValidate('configure-case-button', 'case-configure-title'); + }); + + after(async () => { + await cases.api.deleteAllCases(); + }); + + describe('Closure options', function () { + it('defaults the closure option correctly', async () => { + await cases.common.assertRadioGroupValue('closure-options-radio-group', 'close-by-user'); + }); + + it('change closure option successfully', async () => { + await cases.common.selectRadioGroupValue('closure-options-radio-group', 'close-by-pushing'); + const toast = await toasts.getToastElement(1); + expect(await toast.getVisibleText()).to.be('Saved external connection settings'); + await toasts.dismissAllToasts(); + }); + }); + + describe('Connectors', function () { + it('defaults the connector to none correctly', async () => { + expect(await testSubjects.exists('dropdown-connector-no-connector')).to.be(true); + }); + + it('opens and closes the connectors flyout correctly', async () => { + await common.clickAndValidate('dropdown-connectors', 'dropdown-connector-add-connector'); + await common.clickAndValidate('dropdown-connector-add-connector', 'euiFlyoutCloseButton'); + await testSubjects.click('euiFlyoutCloseButton'); + expect(await testSubjects.exists('euiFlyoutCloseButton')).to.be(false); + }); + }); + }); +}; diff --git a/x-pack/test_serverless/functional/test_suites/security/ftr/cases/create_case_form.ts b/x-pack/test_serverless/functional/test_suites/security/ftr/cases/create_case_form.ts new file mode 100644 index 0000000000000..f5da1e966b778 --- /dev/null +++ b/x-pack/test_serverless/functional/test_suites/security/ftr/cases/create_case_form.ts @@ -0,0 +1,138 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { v4 as uuidv4 } from 'uuid'; +import { CaseSeverity } from '@kbn/cases-plugin/common/types/domain'; +import { SECURITY_SOLUTION_OWNER } from '@kbn/cases-plugin/common'; +import { FtrProviderContext } from '../../../../ftr_provider_context'; +import { navigateToCasesApp } from '../../../../../shared/lib/cases'; + +const owner = SECURITY_SOLUTION_OWNER; + +export default ({ getService, getPageObject }: FtrProviderContext) => { + describe('Create case', function () { + const find = getService('find'); + const cases = getService('cases'); + const testSubjects = getService('testSubjects'); + const config = getService('config'); + + beforeEach(async () => { + await navigateToCasesApp(getPageObject, getService, owner); + }); + + after(async () => { + await cases.api.deleteAllCases(); + }); + + it('creates a case', async () => { + const caseTitle = 'test-' + uuidv4(); + await cases.create.openCreateCasePage(); + await cases.create.createCase({ + title: caseTitle, + description: 'test description', + tag: 'tagme', + severity: CaseSeverity.HIGH, + category: 'new', + }); + + await testSubjects.click('create-case-submit'); + + await testSubjects.existOrFail('case-view-title', { + timeout: config.get('timeouts.waitFor'), + }); + + // validate title + const title = await find.byCssSelector('[data-test-subj="editable-title-header-value"]'); + expect(await title.getVisibleText()).equal(caseTitle); + + // validate description + const description = await testSubjects.find('scrollable-markdown'); + expect(await description.getVisibleText()).equal('test description'); + + // validate tag exists + await testSubjects.existOrFail('tag-tagme'); + + // validate category exists + await testSubjects.existOrFail('category-viewer-new'); + + // validate no connector added + const button = await find.byCssSelector('[data-test-subj*="case-callout"] button'); + expect(await button.getVisibleText()).equal('Add connector'); + }); + + it('displays errors correctly while creating a case', async () => { + const caseTitle = Array(161).fill('x').toString(); + const longTag = Array(256).fill('a').toString(); + const longCategory = Array(51).fill('x').toString(); + + await cases.create.openCreateCasePage(); + await cases.create.createCase({ + title: caseTitle, + description: '', + tag: longTag, + severity: CaseSeverity.HIGH, + category: longCategory, + }); + + await testSubjects.click('create-case-submit'); + + const title = await find.byCssSelector('[data-test-subj="caseTitle"]'); + expect(await title.getVisibleText()).contain( + 'The length of the name is too long. The maximum length is 160 characters.' + ); + + const description = await testSubjects.find('caseDescription'); + expect(await description.getVisibleText()).contain('A description is required.'); + + const tags = await testSubjects.find('caseTags'); + expect(await tags.getVisibleText()).contain( + 'The length of the tag is too long. The maximum length is 256 characters.' + ); + + const category = await testSubjects.find('case-create-form-category'); + expect(await category.getVisibleText()).contain( + 'The length of the category is too long. The maximum length is 50 characters.' + ); + }); + + it('trims fields correctly while creating a case', async () => { + const titleWithSpace = 'This is a title with spaces '; + const descriptionWithSpace = + 'This is a case description with empty spaces at the end!! '; + const categoryWithSpace = 'security '; + const tagWithSpace = 'coke '; + + await cases.create.openCreateCasePage(); + await cases.create.createCase({ + title: titleWithSpace, + description: descriptionWithSpace, + tag: tagWithSpace, + severity: CaseSeverity.HIGH, + category: categoryWithSpace, + }); + + await testSubjects.click('create-case-submit'); + + // validate title is trimmed + const title = await find.byCssSelector('[data-test-subj="editable-title-header-value"]'); + expect(await title.getVisibleText()).equal(titleWithSpace.trim()); + + // validate description is trimmed + const description = await testSubjects.find('scrollable-markdown'); + expect(await description.getVisibleText()).equal(descriptionWithSpace.trim()); + + // validate tag exists and is trimmed + const tag = await testSubjects.find(`tag-${tagWithSpace.trim()}`); + expect(await tag.getVisibleText()).equal(tagWithSpace.trim()); + + // validate category exists and is trimmed + const category = await testSubjects.find(`category-viewer-${categoryWithSpace.trim()}`); + expect(await category.getVisibleText()).equal(categoryWithSpace.trim()); + }); + }); +}; diff --git a/x-pack/test_serverless/functional/test_suites/security/ftr/cases/list_view.ts b/x-pack/test_serverless/functional/test_suites/security/ftr/cases/list_view.ts new file mode 100644 index 0000000000000..6854b3df61061 --- /dev/null +++ b/x-pack/test_serverless/functional/test_suites/security/ftr/cases/list_view.ts @@ -0,0 +1,284 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; +import { CaseSeverity, CaseStatuses } from '@kbn/cases-plugin/common/types/domain'; +import { SeverityAll } from '@kbn/cases-plugin/common/ui'; +import { FtrProviderContext } from '../../../../ftr_provider_context'; + +export default ({ getPageObject, getService }: FtrProviderContext) => { + const header = getPageObject('header'); + const testSubjects = getService('testSubjects'); + const cases = getService('cases'); + const svlSecNavigation = getService('svlSecNavigation'); + + describe('cases list', () => { + before(async () => { + await svlSecNavigation.navigateToLandingPage(); + + await testSubjects.click('solutionSideNavItemLink-cases'); + }); + + after(async () => { + await cases.api.deleteAllCases(); + await cases.casesTable.waitForCasesToBeDeleted(); + }); + + describe('empty state', () => { + it('displays an empty list with an add button correctly', async () => { + await testSubjects.existOrFail('cases-table-add-case'); + }); + }); + + describe('listing', () => { + createNCasesBeforeDeleteAllAfter(2, getPageObject, getService); + + it('lists cases correctly', async () => { + await cases.casesTable.validateCasesTableHasNthRows(2); + }); + }); + + describe('bulk actions', () => { + describe('delete', () => { + createNCasesBeforeDeleteAllAfter(8, getPageObject, getService); + + it('bulk delete cases from the list', async () => { + await cases.casesTable.selectAndDeleteAllCases(); + await cases.casesTable.waitForTableToFinishLoading(); + await cases.casesTable.validateCasesTableHasNthRows(0); + }); + }); + + describe('status', () => { + createNCasesBeforeDeleteAllAfter(2, getPageObject, getService); + + it('change the status of cases to in-progress correctly', async () => { + await cases.casesTable.selectAndChangeStatusOfAllCases(CaseStatuses['in-progress']); + await cases.casesTable.waitForTableToFinishLoading(); + await testSubjects.missingOrFail('case-status-badge-open'); + }); + }); + + describe('severity', () => { + createNCasesBeforeDeleteAllAfter(2, getPageObject, getService); + + it('change the severity of cases to medium correctly', async () => { + await cases.casesTable.selectAndChangeSeverityOfAllCases(CaseSeverity.MEDIUM); + await cases.casesTable.waitForTableToFinishLoading(); + await testSubjects.missingOrFail('case-table-column-severity-low'); + }); + }); + + describe('tags', () => { + let caseIds: string[] = []; + beforeEach(async () => { + caseIds = []; + const case1 = await cases.api.createCase({ + title: 'case 1', + tags: ['one', 'three'], + owner: 'securitySolution', + }); + const case2 = await cases.api.createCase({ + title: 'case 2', + tags: ['two', 'four'], + owner: 'securitySolution', + }); + const case3 = await cases.api.createCase({ + title: 'case 3', + tags: ['two', 'five'], + owner: 'securitySolution', + }); + + caseIds.push(case1.id); + caseIds.push(case2.id); + caseIds.push(case3.id); + + await header.waitUntilLoadingHasFinished(); + await cases.casesTable.waitForCasesToBeListed(); + }); + + afterEach(async () => { + await cases.api.deleteAllCases(); + await cases.casesTable.waitForCasesToBeDeleted(); + }); + + it('bulk edit tags', async () => { + /** + * Case 3 tags: two, five + * Case 2 tags: two, four + * Case 1 tags: one, three + * All tags: one, two, three, four, five. + * + * It selects Case 3 and Case 2 because the table orders + * the cases in descending order by creation date and clicks + * the one, three, and five tags + */ + await cases.casesTable.bulkEditTags([0, 1], ['two', 'three', 'five']); + await header.waitUntilLoadingHasFinished(); + const case1 = await cases.api.getCase({ caseId: caseIds[0] }); + const case2 = await cases.api.getCase({ caseId: caseIds[1] }); + const case3 = await cases.api.getCase({ caseId: caseIds[2] }); + + expect(case3.tags).eql(['five', 'three']); + expect(case2.tags).eql(['four', 'five', 'three']); + expect(case1.tags).eql(['one', 'three']); + }); + + it('adds a new tag', async () => { + await cases.casesTable.bulkAddNewTag([0, 1], 'tw'); + await header.waitUntilLoadingHasFinished(); + + const case1 = await cases.api.getCase({ caseId: caseIds[0] }); + const case2 = await cases.api.getCase({ caseId: caseIds[1] }); + const case3 = await cases.api.getCase({ caseId: caseIds[2] }); + + expect(case3.tags).eql(['two', 'five', 'tw']); + expect(case2.tags).eql(['two', 'four', 'tw']); + expect(case1.tags).eql(['one', 'three']); + }); + }); + }); + + describe('severity filtering', () => { + before(async () => { + await testSubjects.click('solutionSideNavItemLink-cases'); + + await cases.api.createCase({ severity: CaseSeverity.LOW, owner: 'securitySolution' }); + await cases.api.createCase({ severity: CaseSeverity.LOW, owner: 'securitySolution' }); + await cases.api.createCase({ severity: CaseSeverity.HIGH, owner: 'securitySolution' }); + await cases.api.createCase({ severity: CaseSeverity.HIGH, owner: 'securitySolution' }); + await cases.api.createCase({ severity: CaseSeverity.CRITICAL, owner: 'securitySolution' }); + await header.waitUntilLoadingHasFinished(); + await cases.casesTable.waitForCasesToBeListed(); + }); + + beforeEach(async () => { + /** + * There is no easy way to clear the filtering. + * Refreshing the page seems to be easier. + */ + await testSubjects.click('solutionSideNavItemLink-cases'); + }); + + after(async () => { + await cases.api.deleteAllCases(); + await cases.casesTable.waitForCasesToBeDeleted(); + }); + + it('filters cases by severity', async () => { + // by default filter by all + await cases.casesTable.validateCasesTableHasNthRows(5); + + // low + await cases.casesTable.filterBySeverity(CaseSeverity.LOW); + await cases.casesTable.validateCasesTableHasNthRows(2); + + // high + await cases.casesTable.filterBySeverity(CaseSeverity.HIGH); + await cases.casesTable.validateCasesTableHasNthRows(2); + + // critical + await cases.casesTable.filterBySeverity(CaseSeverity.CRITICAL); + await cases.casesTable.validateCasesTableHasNthRows(1); + + // back to all + await cases.casesTable.filterBySeverity(SeverityAll); + await cases.casesTable.validateCasesTableHasNthRows(5); + }); + }); + + describe('pagination', () => { + createNCasesBeforeDeleteAllAfter(12, getPageObject, getService); + + it('paginates cases correctly', async () => { + await testSubjects.click('tablePaginationPopoverButton'); + await testSubjects.click('tablePagination-25-rows'); + await testSubjects.missingOrFail('pagination-button-1'); + await testSubjects.click('tablePaginationPopoverButton'); + await testSubjects.click('tablePagination-10-rows'); + await testSubjects.isEnabled('pagination-button-1'); + await testSubjects.click('pagination-button-1'); + await testSubjects.isEnabled('pagination-button-0'); + }); + }); + + describe('row actions', () => { + describe('Status', () => { + createNCasesBeforeDeleteAllAfter(1, getPageObject, getService); + + it('to in progress', async () => { + await cases.casesTable.changeStatus(CaseStatuses['in-progress'], 0); + await testSubjects.existOrFail(`case-status-badge-${CaseStatuses['in-progress']}`); + }); + + it('to closed', async () => { + await cases.casesTable.changeStatus(CaseStatuses.closed, 0); + await testSubjects.existOrFail(`case-status-badge-${CaseStatuses.closed}`); + }); + + it('to open', async () => { + await cases.casesTable.changeStatus(CaseStatuses.open, 0); + await testSubjects.existOrFail(`case-status-badge-${CaseStatuses.open}`); + }); + }); + + describe('Severity', () => { + createNCasesBeforeDeleteAllAfter(1, getPageObject, getService); + + it('to medium', async () => { + await cases.casesTable.changeSeverity(CaseSeverity.MEDIUM, 0); + await testSubjects.existOrFail(`case-table-column-severity-${CaseSeverity.MEDIUM}`); + }); + + it('to high', async () => { + await cases.casesTable.changeSeverity(CaseSeverity.HIGH, 0); + await testSubjects.existOrFail(`case-table-column-severity-${CaseSeverity.HIGH}`); + }); + + it('to critical', async () => { + await cases.casesTable.changeSeverity(CaseSeverity.CRITICAL, 0); + await testSubjects.existOrFail(`case-table-column-severity-${CaseSeverity.CRITICAL}`); + }); + + it('to low', async () => { + await cases.casesTable.changeSeverity(CaseSeverity.LOW, 0); + await testSubjects.existOrFail(`case-table-column-severity-${CaseSeverity.LOW}`); + }); + }); + + describe('Delete', () => { + createNCasesBeforeDeleteAllAfter(1, getPageObject, getService); + + it('deletes a case correctly', async () => { + await cases.casesTable.deleteCase(0); + await cases.casesTable.waitForTableToFinishLoading(); + await cases.casesTable.validateCasesTableHasNthRows(0); + }); + }); + }); + }); +}; + +const createNCasesBeforeDeleteAllAfter = ( + numCasesToCreate: number, + getPageObject: FtrProviderContext['getPageObject'], + getService: FtrProviderContext['getService'] +) => { + const cases = getService('cases'); + const header = getPageObject('header'); + + before(async () => { + await cases.api.createNthRandomCases(numCasesToCreate, 'securitySolution'); + await header.waitUntilLoadingHasFinished(); + await cases.casesTable.waitForCasesToBeListed(); + }); + + after(async () => { + await cases.api.deleteAllCases(); + await cases.casesTable.waitForCasesToBeDeleted(); + }); +}; diff --git a/x-pack/test_serverless/functional/test_suites/security/index.ts b/x-pack/test_serverless/functional/test_suites/security/index.ts index cd762bbee7d5d..f64b4b8395dad 100644 --- a/x-pack/test_serverless/functional/test_suites/security/index.ts +++ b/x-pack/test_serverless/functional/test_suites/security/index.ts @@ -13,5 +13,8 @@ export default function ({ loadTestFile }: FtrProviderContext) { loadTestFile(require.resolve('./ftr/navigation')); loadTestFile(require.resolve('./ftr/management')); loadTestFile(require.resolve('./ftr/cases/attachment_framework')); + loadTestFile(require.resolve('./ftr/cases/list_view')); + loadTestFile(require.resolve('./ftr/cases/create_case_form')); + loadTestFile(require.resolve('./ftr/cases/configure')); }); } diff --git a/x-pack/test_serverless/shared/config.base.ts b/x-pack/test_serverless/shared/config.base.ts index 3cd2f21310809..4a61bf164be2c 100644 --- a/x-pack/test_serverless/shared/config.base.ts +++ b/x-pack/test_serverless/shared/config.base.ts @@ -18,12 +18,51 @@ export default async () => { elasticsearch: esTestConfig.getUrlParts(), }; + // "Fake" SAML provider + const idpPath = resolve( + __dirname, + '../../test/security_api_integration/plugins/saml_provider/metadata.xml' + ); + const samlIdPPlugin = resolve( + __dirname, + '../../test/security_api_integration/plugins/saml_provider' + ); + + const jwksPath = require.resolve('@kbn/security-api-integration-helpers/oidc/jwks.json'); + return { servers, esTestCluster: { license: 'trial', from: 'snapshot', + serverArgs: [ + 'xpack.security.authc.realms.file.file1.order=-100', + + 'xpack.security.authc.realms.jwt.jwt1.order=-98', + `xpack.security.authc.realms.jwt.jwt1.token_type=access_token`, + 'xpack.security.authc.realms.jwt.jwt1.client_authentication.type=shared_secret', + `xpack.security.authc.realms.jwt.jwt1.client_authentication.shared_secret=my_super_secret`, + `xpack.security.authc.realms.jwt.jwt1.allowed_issuer=https://kibana.elastic.co/jwt/`, + `xpack.security.authc.realms.jwt.jwt1.allowed_subjects=elastic-agent`, + 'xpack.security.authc.realms.jwt.jwt1.allowed_audiences=elasticsearch', + `xpack.security.authc.realms.jwt.jwt1.allowed_signature_algorithms=[RS256]`, + `xpack.security.authc.realms.jwt.jwt1.claims.principal=sub`, + `xpack.security.authc.realms.jwt.jwt1.pkc_jwkset_path=${jwksPath}`, + + // TODO: We should set this flag to `false` as soon as we fully migrate tests to SAML and file realms. + `xpack.security.authc.realms.native.native1.enabled=true`, + `xpack.security.authc.realms.native.native1.order=-97`, + + 'xpack.security.authc.token.enabled=true', + 'xpack.security.authc.realms.saml.cloud-saml-kibana.order=101', + `xpack.security.authc.realms.saml.cloud-saml-kibana.idp.metadata.path=${idpPath}`, + 'xpack.security.authc.realms.saml.cloud-saml-kibana.idp.entity_id=http://www.elastic.co/saml1', + `xpack.security.authc.realms.saml.cloud-saml-kibana.sp.entity_id=http://localhost:${servers.kibana.port}`, + `xpack.security.authc.realms.saml.cloud-saml-kibana.sp.logout=http://localhost:${servers.kibana.port}/logout`, + `xpack.security.authc.realms.saml.cloud-saml-kibana.sp.acs=http://localhost:${servers.kibana.port}/api/security/saml/callback`, + 'xpack.security.authc.realms.saml.cloud-saml-kibana.attributes.principal=urn:oid:0.0.7', + ], }, kbnTestServer: { @@ -34,7 +73,7 @@ export default async () => { sourceArgs: ['--no-base-path', '--env.name=development'], serverArgs: [ `--server.restrictInternalApis=true`, - `--server.port=${kbnTestConfig.getPort()}`, + `--server.port=${servers.kibana.port}`, '--status.allowAnonymous=true', // We shouldn't embed credentials into the URL since Kibana requests to Elasticsearch should // either include `kibanaServerTestUser` credentials, or credentials provided by the test @@ -60,6 +99,16 @@ export default async () => { appenders: ['deprecation'], }, ])}`, + // This ensures that we register the Security SAML API endpoints. + // In the real world the SAML config is injected by control plane. + // basic: { 'basic': { order: 0 } }, + `--plugin-path=${samlIdPPlugin}`, + '--xpack.cloud.id=ftr_fake_cloud_id', + '--xpack.security.authc.selector.enabled=false', + `--xpack.security.authc.providers=${JSON.stringify({ + basic: { basic: { order: 0 } }, + saml: { 'cloud-saml-kibana': { order: 1, realm: 'cloud-saml-kibana' } }, + })}`, '--xpack.encryptedSavedObjects.encryptionKey="wuGNaIhoMpk5sO4UBxgr3NyW1sFcLgIf"', `--server.publicBaseUrl=${servers.kibana.protocol}://${servers.kibana.hostname}:${servers.kibana.port}`, ], diff --git a/x-pack/test_serverless/shared/lib/cases/helpers.ts b/x-pack/test_serverless/shared/lib/cases/helpers.ts new file mode 100644 index 0000000000000..cbae461f98ca5 --- /dev/null +++ b/x-pack/test_serverless/shared/lib/cases/helpers.ts @@ -0,0 +1,28 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { SECURITY_SOLUTION_OWNER } from '@kbn/cases-plugin/common'; +import { FtrProviderContext } from '../../../functional/ftr_provider_context'; + +export const navigateToCasesApp = async ( + getPageObject: FtrProviderContext['getPageObject'], + getService: FtrProviderContext['getService'], + owner: string +) => { + const testSubjects = getService('testSubjects'); + + const common = getPageObject('common'); + const svlCommonNavigation = getPageObject('svlCommonNavigation'); + + await common.navigateToApp('landingPage'); + + if (owner === SECURITY_SOLUTION_OWNER) { + await testSubjects.click('solutionSideNavItemLink-cases'); + } else { + await svlCommonNavigation.sidenav.clickLink({ deepLinkId: 'observability-overview:cases' }); + } +}; diff --git a/x-pack/test_serverless/shared/lib/cases/index.ts b/x-pack/test_serverless/shared/lib/cases/index.ts new file mode 100644 index 0000000000000..6c315f929b9bb --- /dev/null +++ b/x-pack/test_serverless/shared/lib/cases/index.ts @@ -0,0 +1,8 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export * from './helpers'; diff --git a/x-pack/test_serverless/shared/lib/index.ts b/x-pack/test_serverless/shared/lib/index.ts index 5248649ac1b51..e8a7526591f40 100644 --- a/x-pack/test_serverless/shared/lib/index.ts +++ b/x-pack/test_serverless/shared/lib/index.ts @@ -6,3 +6,4 @@ */ export * from './security'; +export * from './cases'; diff --git a/x-pack/test_serverless/shared/lib/security/index.ts b/x-pack/test_serverless/shared/lib/security/index.ts index 0a27a614b8d7d..6cc463dc51efe 100644 --- a/x-pack/test_serverless/shared/lib/security/index.ts +++ b/x-pack/test_serverless/shared/lib/security/index.ts @@ -6,3 +6,4 @@ */ export * from './kibana_roles'; +export * from './types'; diff --git a/x-pack/test_serverless/shared/lib/security/kibana_roles/kibana_roles.ts b/x-pack/test_serverless/shared/lib/security/kibana_roles/kibana_roles.ts index d8311af59bb80..ddfeef06c6a2e 100644 --- a/x-pack/test_serverless/shared/lib/security/kibana_roles/kibana_roles.ts +++ b/x-pack/test_serverless/shared/lib/security/kibana_roles/kibana_roles.ts @@ -8,27 +8,15 @@ import { safeLoad as loadYaml } from 'js-yaml'; import { readFileSync } from 'fs'; import * as path from 'path'; -import { cloneDeep } from 'lodash'; +import { cloneDeep, merge } from 'lodash'; import { FeaturesPrivileges, Role, RoleIndexPrivilege } from '@kbn/security-plugin/common'; +import { ServerlessRoleName } from '../types'; const ROLES_YAML_FILE_PATH = path.join(__dirname, 'project_controller_security_roles.yml'); -const ROLE_NAMES = [ - 't1_analyst', - 't2_analyst', - 't3_analyst', - 'threat_intelligence_analyst', - 'rule_author', - 'soc_manager', - 'detections_admin', - 'platform_engineer', - 'endpoint_operations_analyst', - 'endpoint_policy_manager', -] as const; +const ROLE_NAMES = Object.values(ServerlessRoleName); -export type ServerlessRoleName = typeof ROLE_NAMES[number]; - -type YamlRoleDefinitions = Record< +export type YamlRoleDefinitions = Record< ServerlessRoleName, { cluster: string[] | null; @@ -45,10 +33,16 @@ const roleDefinitions = loadYaml(readFileSync(ROLES_YAML_FILE_PATH, 'utf8')) as export type ServerlessSecurityRoles = Record<ServerlessRoleName, Role>; -export const getServerlessSecurityKibanaRoleDefinitions = (): ServerlessSecurityRoles => { +export const getServerlessSecurityKibanaRoleDefinitions = ( + additionalRoleDefinitions?: YamlRoleDefinitions +): ServerlessSecurityRoles => { const definitions = cloneDeep(roleDefinitions); + const mergedDefinitions: YamlRoleDefinitions = merge( + definitions, + additionalRoleDefinitions || {} + ); - return Object.entries(definitions).reduce((roles, [roleName, definition]) => { + return Object.entries(mergedDefinitions).reduce((roles, [roleName, definition]) => { if (!ROLE_NAMES.includes(roleName as ServerlessRoleName)) { throw new Error( `Un-expected role [${roleName}] found in YAML file [${ROLES_YAML_FILE_PATH}]` diff --git a/x-pack/test_serverless/shared/lib/security/kibana_roles/role_loader.ts b/x-pack/test_serverless/shared/lib/security/kibana_roles/role_loader.ts index 3f331876e1759..a0f0f447955a6 100644 --- a/x-pack/test_serverless/shared/lib/security/kibana_roles/role_loader.ts +++ b/x-pack/test_serverless/shared/lib/security/kibana_roles/role_loader.ts @@ -15,6 +15,7 @@ import { AxiosError } from 'axios'; import { getServerlessSecurityKibanaRoleDefinitions, ServerlessSecurityRoles, + YamlRoleDefinitions, } from './kibana_roles'; import { STANDARD_HTTP_HEADERS } from '../default_http_headers'; @@ -46,19 +47,22 @@ export class RoleAndUserLoader<R extends Record<string, Role> = Record<string, R }; } - async load(name: keyof R): Promise<LoadedRoleAndUser> { + async load(name: keyof R, additionalRoleName?: string): Promise<LoadedRoleAndUser> { const role = this.roles[name]; if (!role) { throw new Error( - `Unknown role: [${name}]. Valid values are: [${Object.keys(this.roles).join(', ')}]` + `Unknown role: [${String(name)}]. Valid values are: [${Object.keys(this.roles).join(', ')}]` ); } const roleName = role.name; - + const roleNames = [roleName]; + if (additionalRoleName) { + roleNames.push(additionalRoleName); + } await this.createRole(role); - await this.createUser(roleName, 'changeme', [roleName]); + await this.createUser(roleName, 'changeme', roleNames); return { role: roleName, @@ -123,7 +127,11 @@ export class RoleAndUserLoader<R extends Record<string, Role> = Record<string, R } export class SecurityRoleAndUserLoader extends RoleAndUserLoader<ServerlessSecurityRoles> { - constructor(kbnClient: KbnClient, logger: ToolingLog) { - super(kbnClient, logger, getServerlessSecurityKibanaRoleDefinitions()); + constructor( + kbnClient: KbnClient, + logger: ToolingLog, + additionalRoleDefinitions?: YamlRoleDefinitions + ) { + super(kbnClient, logger, getServerlessSecurityKibanaRoleDefinitions(additionalRoleDefinitions)); } } diff --git a/x-pack/test_serverless/shared/lib/security/types.ts b/x-pack/test_serverless/shared/lib/security/types.ts new file mode 100644 index 0000000000000..e2176c9a35790 --- /dev/null +++ b/x-pack/test_serverless/shared/lib/security/types.ts @@ -0,0 +1,20 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export enum ServerlessRoleName { + T1_ANALYST = 't1_analyst', + T2_ANALYST = 't2_analyst', + T3_ANALYST = 't3_analyst', + THREAT_INTELLIGENCE_ANALYST = 'threat_intelligence_analyst', + RULE_AUTHOR = 'rule_author', + SOC_MANAGER = 'soc_manager', + DETECTIONS_ADMIN = 'detections_admin', + PLATFORM_ENGINEER = 'platform_engineer', + ENDPOINT_OPERATIONS_ANALYST = 'endpoint_operations_analyst', + ENDPOINT_POLICY_MANAGER = 'endpoint_policy_manager', + READER = 'reader', // custom role to test lack of permissions +} diff --git a/x-pack/test_serverless/tsconfig.json b/x-pack/test_serverless/tsconfig.json index eb69a37884039..b986a6134525b 100644 --- a/x-pack/test_serverless/tsconfig.json +++ b/x-pack/test_serverless/tsconfig.json @@ -47,5 +47,6 @@ "@kbn/core-http-common", "@kbn/data-views-plugin", "@kbn/core-saved-objects-server", + "@kbn/security-api-integration-helpers", ] } diff --git a/yarn.lock b/yarn.lock index 61fe8a795521c..774ec13a90362 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1577,10 +1577,10 @@ resolved "https://registry.yarnpkg.com/@elastic/eslint-plugin-eui/-/eslint-plugin-eui-0.0.2.tgz#56b9ef03984a05cc213772ae3713ea8ef47b0314" integrity sha512-IoxURM5zraoQ7C8f+mJb9HYSENiZGgRVcG4tLQxE61yHNNRDXtGDWTZh8N1KIHcsqN1CEPETjuzBXkJYF/fDiQ== -"@elastic/eui@87.1.0": - version "87.1.0" - resolved "https://registry.yarnpkg.com/@elastic/eui/-/eui-87.1.0.tgz#1ef2c5634d2efafbdd3fde6a68c037f3cad2f30e" - integrity sha512-dnvgTveGqyDoWrG1DRE3LbTWMlDaChDEENs3hw6B5sO6koNOCfsNm7JwJje7ARQbk82/kuymy+zfQsnkOA3sTA== +"@elastic/eui@87.2.0": + version "87.2.0" + resolved "https://registry.yarnpkg.com/@elastic/eui/-/eui-87.2.0.tgz#6feabaea7daa03c1d9a906ed2f97312eec12bfe0" + integrity sha512-U4pDkDHTgYf39/D4o9inOcKMedDf+Y4sv42fRydg/blBYNbDCTlU/3z4fhpO2rA03kDyMFohMmRMt4aBrirBTA== dependencies: "@hello-pangea/dnd" "^16.2.0" "@types/lodash" "^4.14.194" @@ -5310,6 +5310,10 @@ version "0.0.0" uid "" +"@kbn/security-solution-upselling@link:x-pack/packages/security-solution/upselling": + version "0.0.0" + uid "" + "@kbn/security-test-endpoints-plugin@link:x-pack/test/security_functional/plugins/test_endpoints": version "0.0.0" uid "" @@ -28865,10 +28869,10 @@ typescript-tuple@^2.2.1: dependencies: typescript-compare "^0.0.2" -typescript@4.6.3, typescript@^3.3.3333, typescript@^4.6.3, typescript@^4.8.4, typescript@^5.0.4: - version "4.6.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.6.3.tgz#eefeafa6afdd31d725584c67a0eaba80f6fc6c6c" - integrity sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw== +typescript@4.7.4, typescript@^3.3.3333, typescript@^4.6.3, typescript@^4.8.4, typescript@^5.0.4: + version "4.7.4" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.7.4.tgz#1a88596d1cf47d59507a1bcdfb5b9dfe4d488235" + integrity sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ== typewise-core@^1.2, typewise-core@^1.2.0: version "1.2.0"